diff --git a/.eslintignore b/.eslintignore index 7de3c52e39db..8f4a4355350a 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,4 +1,4 @@ /lib /docs -/__tests__/fixtures/cli-utils.js +/tests/fixtures/cli-utils.js /stubs/* diff --git a/jit/corePlugins/accessibility.js b/jit/corePlugins/accessibility.js deleted file mode 100644 index e3242bcf76f4..000000000000 --- a/jit/corePlugins/accessibility.js +++ /dev/null @@ -1,25 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.sr-only': { - position: 'absolute', - width: '1px', - height: '1px', - padding: '0', - margin: '-1px', - overflow: 'hidden', - clip: 'rect(0, 0, 0, 0)', - whiteSpace: 'nowrap', - borderWidth: '0', - }, - '.not-sr-only': { - position: 'static', - width: 'auto', - height: 'auto', - padding: '0', - margin: '0', - overflow: 'visible', - clip: 'auto', - whiteSpace: 'normal', - }, -}) diff --git a/jit/corePlugins/alignContent.js b/jit/corePlugins/alignContent.js deleted file mode 100644 index 69e275aa952d..000000000000 --- a/jit/corePlugins/alignContent.js +++ /dev/null @@ -1,22 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.content-center': { - 'align-content': 'center', - }, - '.content-start': { - 'align-content': 'flex-start', - }, - '.content-end': { - 'align-content': 'flex-end', - }, - '.content-between': { - 'align-content': 'space-between', - }, - '.content-around': { - 'align-content': 'space-around', - }, - '.content-evenly': { - 'align-content': 'space-evenly', - }, -}) diff --git a/jit/corePlugins/alignItems.js b/jit/corePlugins/alignItems.js deleted file mode 100644 index fa44536ea73a..000000000000 --- a/jit/corePlugins/alignItems.js +++ /dev/null @@ -1,19 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.items-start': { - 'align-items': 'flex-start', - }, - '.items-end': { - 'align-items': 'flex-end', - }, - '.items-center': { - 'align-items': 'center', - }, - '.items-baseline': { - 'align-items': 'baseline', - }, - '.items-stretch': { - 'align-items': 'stretch', - }, -}) diff --git a/jit/corePlugins/alignSelf.js b/jit/corePlugins/alignSelf.js deleted file mode 100644 index 87b769bbb7fc..000000000000 --- a/jit/corePlugins/alignSelf.js +++ /dev/null @@ -1,19 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.self-auto': { - 'align-self': 'auto', - }, - '.self-start': { - 'align-self': 'flex-start', - }, - '.self-end': { - 'align-self': 'flex-end', - }, - '.self-center': { - 'align-self': 'center', - }, - '.self-stretch': { - 'align-self': 'stretch', - }, -}) diff --git a/jit/corePlugins/animation.js b/jit/corePlugins/animation.js deleted file mode 100644 index a45ed9f7fef0..000000000000 --- a/jit/corePlugins/animation.js +++ /dev/null @@ -1,39 +0,0 @@ -const { nameClass } = require('../pluginUtils') -const transformThemeValue = require('../../lib/util/transformThemeValue').default -const parseAnimationValue = require('../../lib/util/parseAnimationValue').default - -module.exports = function ({ matchUtilities, theme }) { - let keyframes = Object.fromEntries( - Object.entries(theme('keyframes')).map(([key, value]) => { - return [ - key, - [ - { - [`@keyframes ${key}`]: value, - }, - { respectVariants: false }, - ], - ] - }) - ) - - let transformValue = transformThemeValue('animation') - matchUtilities({ - animate: [ - (modifier, { theme }) => { - let value = transformValue(theme.animation[modifier]) - - if (modifier === '' || value === undefined) { - return [] - } - - let { name: animationName } = parseAnimationValue(value) - - return [ - keyframes[animationName], - { [nameClass('animate', modifier)]: { animation: value } }, - ].filter(Boolean) - }, - ], - }) -} diff --git a/jit/corePlugins/appearance.js b/jit/corePlugins/appearance.js deleted file mode 100644 index 18593e3bc80c..000000000000 --- a/jit/corePlugins/appearance.js +++ /dev/null @@ -1,5 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.appearance-none': { appearance: 'none' }, -}) diff --git a/jit/corePlugins/backgroundAttachment.js b/jit/corePlugins/backgroundAttachment.js deleted file mode 100644 index db77f01d9453..000000000000 --- a/jit/corePlugins/backgroundAttachment.js +++ /dev/null @@ -1,7 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.bg-fixed': { 'background-attachment': 'fixed' }, - '.bg-local': { 'background-attachment': 'local' }, - '.bg-scroll': { 'background-attachment': 'scroll' }, -}) diff --git a/jit/corePlugins/backgroundBlendMode.js b/jit/corePlugins/backgroundBlendMode.js deleted file mode 100644 index 45dd9a17a5d0..000000000000 --- a/jit/corePlugins/backgroundBlendMode.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../../lib/plugins/backgroundBlendMode').default() diff --git a/jit/corePlugins/backgroundClip.js b/jit/corePlugins/backgroundClip.js deleted file mode 100644 index 155719925b02..000000000000 --- a/jit/corePlugins/backgroundClip.js +++ /dev/null @@ -1,8 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.bg-clip-border': { 'background-clip': 'border-box' }, - '.bg-clip-padding': { 'background-clip': 'padding-box' }, - '.bg-clip-content': { 'background-clip': 'content-box' }, - '.bg-clip-text': { 'background-clip': 'text' }, -}) diff --git a/jit/corePlugins/backgroundColor.js b/jit/corePlugins/backgroundColor.js deleted file mode 100644 index a69b06caa4c0..000000000000 --- a/jit/corePlugins/backgroundColor.js +++ /dev/null @@ -1,29 +0,0 @@ -const flattenColorPalette = require('../../lib/util/flattenColorPalette').default -const withAlphaVariable = require('../../lib/util/withAlphaVariable').default -const { asColor, nameClass } = require('../pluginUtils') - -module.exports = function ({ corePlugins, matchUtilities, theme }) { - let colorPalette = flattenColorPalette(theme('backgroundColor')) - - matchUtilities({ - bg: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - if (corePlugins('backgroundOpacity')) { - return { - [nameClass('bg', modifier)]: withAlphaVariable({ - color: value, - property: 'background-color', - variable: '--tw-bg-opacity', - }), - } - } - - return { [nameClass('bg', modifier)]: { 'background-color': value } } - }, - }) -} diff --git a/jit/corePlugins/backgroundImage.js b/jit/corePlugins/backgroundImage.js deleted file mode 100644 index 69162875d739..000000000000 --- a/jit/corePlugins/backgroundImage.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - bg: (modifier, { theme }) => { - let value = theme.backgroundImage[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('bg', modifier)]: { 'background-image': value } } - }, - }) -} diff --git a/jit/corePlugins/backgroundOpacity.js b/jit/corePlugins/backgroundOpacity.js deleted file mode 100644 index ab1b6655464b..000000000000 --- a/jit/corePlugins/backgroundOpacity.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'bg-opacity': (modifier, { theme }) => { - let value = asValue(modifier, theme.backgroundOpacity) - - if (value === undefined) { - return [] - } - - return { [nameClass('bg-opacity', modifier)]: { '--tw-bg-opacity': value } } - }, - }) -} diff --git a/jit/corePlugins/backgroundOrigin.js b/jit/corePlugins/backgroundOrigin.js deleted file mode 100644 index 9f6d318c2ef8..000000000000 --- a/jit/corePlugins/backgroundOrigin.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../../lib/plugins/backgroundOrigin').default() diff --git a/jit/corePlugins/backgroundPosition.js b/jit/corePlugins/backgroundPosition.js deleted file mode 100644 index c1a793b3db03..000000000000 --- a/jit/corePlugins/backgroundPosition.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - bg: (modifier, { theme }) => { - let value = theme.backgroundPosition[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('bg', modifier)]: { 'background-position': value } } - }, - }) -} diff --git a/jit/corePlugins/backgroundRepeat.js b/jit/corePlugins/backgroundRepeat.js deleted file mode 100644 index a3c4e85fc96e..000000000000 --- a/jit/corePlugins/backgroundRepeat.js +++ /dev/null @@ -1,10 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.bg-repeat': { 'background-repeat': 'repeat' }, - '.bg-no-repeat': { 'background-repeat': 'no-repeat' }, - '.bg-repeat-x': { 'background-repeat': 'repeat-x' }, - '.bg-repeat-y': { 'background-repeat': 'repeat-y' }, - '.bg-repeat-round': { 'background-repeat': 'round' }, - '.bg-repeat-space': { 'background-repeat': 'space' }, -}) diff --git a/jit/corePlugins/backgroundSize.js b/jit/corePlugins/backgroundSize.js deleted file mode 100644 index 1659021abae3..000000000000 --- a/jit/corePlugins/backgroundSize.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - bg: (modifier, { theme }) => { - let value = theme.backgroundSize[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('bg', modifier)]: { 'background-size': value } } - }, - }) -} diff --git a/jit/corePlugins/borderCollapse.js b/jit/corePlugins/borderCollapse.js deleted file mode 100644 index 5815d7df4b4b..000000000000 --- a/jit/corePlugins/borderCollapse.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.border-collapse': { 'border-collapse': 'collapse' }, - '.border-separate': { 'border-collapse': 'separate' }, -}) diff --git a/jit/corePlugins/borderColor.js b/jit/corePlugins/borderColor.js deleted file mode 100644 index dd79c54a5cd6..000000000000 --- a/jit/corePlugins/borderColor.js +++ /dev/null @@ -1,35 +0,0 @@ -const flattenColorPalette = require('../../lib/util/flattenColorPalette').default -const withAlphaVariable = require('../../lib/util/withAlphaVariable').default -const { asColor, nameClass } = require('../pluginUtils') - -module.exports = function ({ corePlugins, matchUtilities, theme }) { - let colorPalette = flattenColorPalette(theme('borderColor')) - - matchUtilities({ - border: (modifier) => { - if (modifier === 'DEFAULT') { - return [] - } - - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - if (corePlugins('borderOpacity')) { - return { - [nameClass('border', modifier)]: withAlphaVariable({ - color: value, - property: 'border-color', - variable: '--tw-border-opacity', - }), - } - } - - return { - [nameClass('border', modifier)]: { 'border-color': value }, - } - }, - }) -} diff --git a/jit/corePlugins/borderOpacity.js b/jit/corePlugins/borderOpacity.js deleted file mode 100644 index 4fc4917d87a9..000000000000 --- a/jit/corePlugins/borderOpacity.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'border-opacity': (modifier, { theme }) => { - let value = asValue(modifier, theme.borderOpacity) - - if (value === undefined) { - return [] - } - - return { [nameClass('border-opacity', modifier)]: { '--tw-border-opacity': value } } - }, - }) -} diff --git a/jit/corePlugins/borderRadius.js b/jit/corePlugins/borderRadius.js deleted file mode 100644 index b3d271c9f198..000000000000 --- a/jit/corePlugins/borderRadius.js +++ /dev/null @@ -1,111 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - rounded: (modifier, { theme }) => { - let value = asLength(modifier, theme['borderRadius']) - - if (value === undefined) { - return [] - } - - return { [nameClass('rounded', modifier)]: { 'border-radius': value } } - }, - }) - matchUtilities({ - 'rounded-t': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderRadius']) - - if (value === undefined) { - return [] - } - - return { - [nameClass('rounded-t', modifier)]: { - 'border-top-left-radius': value, - 'border-top-right-radius': value, - }, - } - }, - 'rounded-r': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderRadius']) - - if (value === undefined) { - return [] - } - - return { - [nameClass('rounded-r', modifier)]: { - 'border-top-right-radius': value, - 'border-bottom-right-radius': value, - }, - } - }, - 'rounded-b': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderRadius']) - - if (value === undefined) { - return [] - } - - return { - [nameClass('rounded-b', modifier)]: { - 'border-bottom-right-radius': value, - 'border-bottom-left-radius': value, - }, - } - }, - 'rounded-l': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderRadius']) - - if (value === undefined) { - return [] - } - - return { - [nameClass('rounded-l', modifier)]: { - 'border-top-left-radius': value, - 'border-bottom-left-radius': value, - }, - } - }, - }) - matchUtilities({ - 'rounded-tl': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderRadius']) - - if (value === undefined) { - return [] - } - - return { [nameClass('rounded-tl', modifier)]: { 'border-top-left-radius': value } } - }, - 'rounded-tr': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderRadius']) - - if (value === undefined) { - return [] - } - - return { [nameClass('rounded-tr', modifier)]: { 'border-top-right-radius': value } } - }, - 'rounded-br': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderRadius']) - - if (value === undefined) { - return [] - } - - return { [nameClass('rounded-br', modifier)]: { 'border-bottom-right-radius': value } } - }, - 'rounded-bl': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderRadius']) - - if (value === undefined) { - return [] - } - - return { [nameClass('rounded-bl', modifier)]: { 'border-bottom-left-radius': value } } - }, - }) -} diff --git a/jit/corePlugins/borderStyle.js b/jit/corePlugins/borderStyle.js deleted file mode 100644 index 042e25b9987b..000000000000 --- a/jit/corePlugins/borderStyle.js +++ /dev/null @@ -1,19 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.border-solid': { - 'border-style': 'solid', - }, - '.border-dashed': { - 'border-style': 'dashed', - }, - '.border-dotted': { - 'border-style': 'dotted', - }, - '.border-double': { - 'border-style': 'double', - }, - '.border-none': { - 'border-style': 'none', - }, -}) diff --git a/jit/corePlugins/borderWidth.js b/jit/corePlugins/borderWidth.js deleted file mode 100644 index 2177ff5b7d32..000000000000 --- a/jit/corePlugins/borderWidth.js +++ /dev/null @@ -1,53 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - border: (modifier, { theme }) => { - let value = asLength(modifier, theme['borderWidth']) - - if (value === undefined) { - return [] - } - - return { [nameClass('border', modifier)]: { 'border-width': value } } - }, - }) - matchUtilities({ - 'border-t': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderWidth']) - - if (value === undefined) { - return [] - } - - return { [nameClass('border-t', modifier)]: { 'border-top-width': value } } - }, - 'border-r': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderWidth']) - - if (value === undefined) { - return [] - } - - return { [nameClass('border-r', modifier)]: { 'border-right-width': value } } - }, - 'border-b': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderWidth']) - - if (value === undefined) { - return [] - } - - return { [nameClass('border-b', modifier)]: { 'border-bottom-width': value } } - }, - 'border-l': (modifier, { theme }) => { - let value = asLength(modifier, theme['borderWidth']) - - if (value === undefined) { - return [] - } - - return { [nameClass('border-l', modifier)]: { 'border-left-width': value } } - }, - }) -} diff --git a/jit/corePlugins/boxDecorationBreak.js b/jit/corePlugins/boxDecorationBreak.js deleted file mode 100644 index bc21bdd97305..000000000000 --- a/jit/corePlugins/boxDecorationBreak.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../../lib/plugins/boxDecorationBreak').default() diff --git a/jit/corePlugins/boxShadow.js b/jit/corePlugins/boxShadow.js deleted file mode 100644 index dcca1040c406..000000000000 --- a/jit/corePlugins/boxShadow.js +++ /dev/null @@ -1,37 +0,0 @@ -const { nameClass } = require('../pluginUtils') -const transformThemeValue = require('../../lib/util/transformThemeValue').default - -let transformValue = transformThemeValue('boxShadow') -let shadowReset = { - '*': { - '--tw-shadow': '0 0 #0000', - }, -} - -module.exports = function ({ addBase, matchUtilities }) { - addBase(shadowReset) - matchUtilities({ - shadow: (modifier, { theme }) => { - modifier = modifier === '' ? 'DEFAULT' : modifier - - 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(', '), - }, - }, - ] - }, - }) -} diff --git a/jit/corePlugins/boxSizing.js b/jit/corePlugins/boxSizing.js deleted file mode 100644 index 5ca7893f88a7..000000000000 --- a/jit/corePlugins/boxSizing.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.box-border': { 'box-sizing': 'border-box' }, - '.box-content': { 'box-sizing': 'content-box' }, -}) diff --git a/jit/corePlugins/clear.js b/jit/corePlugins/clear.js deleted file mode 100644 index d8242454f09c..000000000000 --- a/jit/corePlugins/clear.js +++ /dev/null @@ -1,8 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.clear-left': { clear: 'left' }, - '.clear-right': { clear: 'right' }, - '.clear-both': { clear: 'both' }, - '.clear-none': { clear: 'none' }, -}) diff --git a/jit/corePlugins/container.js b/jit/corePlugins/container.js deleted file mode 100644 index cf278e798459..000000000000 --- a/jit/corePlugins/container.js +++ /dev/null @@ -1,3 +0,0 @@ -const container = require('../../lib/plugins/container') - -module.exports = container() diff --git a/jit/corePlugins/css/preflight.css b/jit/corePlugins/css/preflight.css deleted file mode 100644 index ac74dd0613b2..000000000000 --- a/jit/corePlugins/css/preflight.css +++ /dev/null @@ -1,240 +0,0 @@ -/** - * Manually forked from SUIT CSS Base: https://github.com/suitcss/base - * A thin layer on top of normalize.css that provides a starting point more - * suitable for web applications. - */ - -/** - * Removes the default spacing and border for appropriate elements. - */ - -blockquote, -dl, -dd, -h1, -h2, -h3, -h4, -h5, -h6, -hr, -figure, -p, -pre { - margin: 0; -} - -button { - background-color: transparent; - background-image: none; -} - -/** - * Work around a Firefox/IE bug where the transparent `button` background - * results in a loss of the default `button` focus styles. - */ - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -fieldset { - margin: 0; - padding: 0; -} - -ol, -ul { - list-style: none; - margin: 0; - padding: 0; -} - -/** - * Tailwind custom reset styles - */ - -/** - * 1. Use the user's configured `sans` font-family (with Tailwind's default - * sans-serif font stack as a fallback) as a sane default. - * 2. Use Tailwind's default "normal" line-height so the user isn't forced - * to override it to ensure consistency even when using the default theme. - */ - -html { - font-family: theme('fontFamily.sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"); /* 1 */ - line-height: 1.5; /* 2 */ -} - - -/** - * Inherit font-family and line-height from `html` so users can set them as - * a class directly on the `html` element. - */ - -body { - font-family: inherit; - line-height: inherit; -} - -/** - * 1. Prevent padding and border from affecting element width. - * - * We used to set this in the html element and inherit from - * the parent element for everything else. This caused issues - * in shadow-dom-enhanced elements like
where the content - * is wrapped by a div with box-sizing set to `content-box`. - * - * https://github.com/mozdevs/cssremedy/issues/4 - * - * - * 2. Allow adding a border to an element by just adding a border-width. - * - * By default, the way the browser specifies that an element should have no - * border is by setting it's border-style to `none` in the user-agent - * stylesheet. - * - * In order to easily add borders to elements by just setting the `border-width` - * property, we change the default border-style for all elements to `solid`, and - * use border-width to hide them instead. This way our `border` utilities only - * need to set the `border-width` property instead of the entire `border` - * shorthand, making our border utilities much more straightforward to compose. - * - * https://github.com/tailwindcss/tailwindcss/pull/116 - */ - -*, -::before, -::after { - box-sizing: border-box; /* 1 */ - border-width: 0; /* 2 */ - border-style: solid; /* 2 */ - border-color: theme('borderColor.DEFAULT', currentColor); /* 2 */ -} - -/* - * Ensure horizontal rules are visible by default - */ - -hr { - border-top-width: 1px; -} - -/** - * Undo the `border-style: none` reset that Normalize applies to images so that - * our `border-{width}` utilities have the expected effect. - * - * The Normalize reset is unnecessary for us since we default the border-width - * to 0 on all elements. - * - * https://github.com/tailwindcss/tailwindcss/issues/362 - */ - -img { - border-style: solid; -} - -textarea { - resize: vertical; -} - -input::placeholder, -textarea::placeholder { - opacity: 1; - color: theme('colors.gray.400', #a1a1aa); -} - -button, -[role="button"] { - cursor: pointer; -} - -table { - border-collapse: collapse; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: inherit; - font-weight: inherit; -} - -/** - * Reset links to optimize for opt-in styling instead of - * opt-out. - */ - -a { - color: inherit; - text-decoration: inherit; -} - -/** - * Reset form element properties that are easy to forget to - * style explicitly so you don't inadvertently introduce - * styles that deviate from your design system. These styles - * supplement a partial reset that is already applied by - * normalize.css. - */ - -button, -input, -optgroup, -select, -textarea { - padding: 0; - line-height: inherit; - color: inherit; -} - -/** - * Use the configured 'mono' font family for elements that - * are expected to be rendered with a monospace font, falling - * back to the system monospace stack if there is no configured - * 'mono' font family. - */ - -pre, -code, -kbd, -samp { - font-family: theme('fontFamily.mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace); -} - -/** - * Make replaced elements `display: block` by default as that's - * the behavior you want almost all of the time. Inspired by - * CSS Remedy, with `svg` added as well. - * - * https://github.com/mozdevs/cssremedy/issues/14 - */ - -img, -svg, -video, -canvas, -audio, -iframe, -embed, -object { - display: block; - vertical-align: middle; -} - -/** - * Constrain images and videos to the parent width and preserve - * their instrinsic aspect ratio. - * - * https://github.com/mozdevs/cssremedy/issues/14 - */ - -img, -video { - max-width: 100%; - height: auto; -} diff --git a/jit/corePlugins/cursor.js b/jit/corePlugins/cursor.js deleted file mode 100644 index 22065f619c2d..000000000000 --- a/jit/corePlugins/cursor.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - cursor: (modifier, { theme }) => { - let value = asValue(modifier, theme.cursor) - - if (value === undefined) { - return [] - } - - return { [nameClass('cursor', modifier)]: { cursor: value } } - }, - }) -} diff --git a/jit/corePlugins/display.js b/jit/corePlugins/display.js deleted file mode 100644 index 891902e9ef6b..000000000000 --- a/jit/corePlugins/display.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../../lib/plugins/display').default() diff --git a/jit/corePlugins/divideColor.js b/jit/corePlugins/divideColor.js deleted file mode 100644 index a3f1e6678079..000000000000 --- a/jit/corePlugins/divideColor.js +++ /dev/null @@ -1,34 +0,0 @@ -const flattenColorPalette = require('../../lib/util/flattenColorPalette').default -const withAlphaVariable = require('../../lib/util/withAlphaVariable').default -const { asColor, nameClass } = require('../pluginUtils') - -module.exports = function ({ corePlugins, matchUtilities, theme }) { - let colorPalette = flattenColorPalette(theme('divideColor')) - - // TODO: Make sure there is no issue with DEFAULT here - matchUtilities({ - divide: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - if (corePlugins('divideOpacity')) { - return { - [`${nameClass('divide', modifier)} > :not([hidden]) ~ :not([hidden])`]: withAlphaVariable({ - color: colorPalette[modifier], - property: 'border-color', - variable: '--tw-divide-opacity', - }), - } - } - - return { - [`${nameClass('divide', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - 'border-color': value, - }, - } - }, - }) -} diff --git a/jit/corePlugins/divideOpacity.js b/jit/corePlugins/divideOpacity.js deleted file mode 100644 index 9c2fa2495213..000000000000 --- a/jit/corePlugins/divideOpacity.js +++ /dev/null @@ -1,19 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'divide-opacity': (modifier, { theme }) => { - let value = asValue(modifier, theme.divideOpacity) - - if (value === undefined) { - return [] - } - - return { - [`${nameClass('divide-opacity', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-divide-opacity': value, - }, - } - }, - }) -} diff --git a/jit/corePlugins/divideStyle.js b/jit/corePlugins/divideStyle.js deleted file mode 100644 index ece35bc0f9b3..000000000000 --- a/jit/corePlugins/divideStyle.js +++ /dev/null @@ -1,19 +0,0 @@ -module.exports = function ({ addUtilities }) { - addUtilities({ - '.divide-solid > :not([hidden]) ~ :not([hidden])': { - 'border-style': 'solid', - }, - '.divide-dashed > :not([hidden]) ~ :not([hidden])': { - 'border-style': 'dashed', - }, - '.divide-dotted > :not([hidden]) ~ :not([hidden])': { - 'border-style': 'dotted', - }, - '.divide-double > :not([hidden]) ~ :not([hidden])': { - 'border-style': 'double', - }, - '.divide-none > :not([hidden]) ~ :not([hidden])': { - 'border-style': 'none', - }, - }) -} diff --git a/jit/corePlugins/divideWidth.js b/jit/corePlugins/divideWidth.js deleted file mode 100644 index d572ddb2f81b..000000000000 --- a/jit/corePlugins/divideWidth.js +++ /dev/null @@ -1,49 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ addUtilities, matchUtilities }) { - matchUtilities({ - 'divide-x': (modifier, { theme }) => { - let value = asLength(modifier, theme['divideWidth']) - - if (value === undefined) { - return [] - } - - value = value === '0' ? '0px' : value - - return { - [`${nameClass('divide-x', modifier)} > :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 [] - } - - value = value === '0' ? '0px' : value - - return { - [`${nameClass('divide-y', modifier)} > :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({ - '.divide-y-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-y-reverse': '1', - }, - '.divide-x-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-x-reverse': '1', - }, - }) -} diff --git a/jit/corePlugins/fill.js b/jit/corePlugins/fill.js deleted file mode 100644 index 4d1df2c08c72..000000000000 --- a/jit/corePlugins/fill.js +++ /dev/null @@ -1,19 +0,0 @@ -const flattenColorPalette = require('../../lib/util/flattenColorPalette').default -const toColorValue = require('../../lib/util/toColorValue').default -const { asColor, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities, theme }) { - let colorPalette = flattenColorPalette(theme('fill')) - - matchUtilities({ - fill: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - return { [nameClass('fill', modifier)]: { fill: toColorValue(value) } } - }, - }) -} diff --git a/jit/corePlugins/flex.js b/jit/corePlugins/flex.js deleted file mode 100644 index 0567bd9172d8..000000000000 --- a/jit/corePlugins/flex.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - flex: (modifier, { theme }) => { - let value = theme.flex[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('flex', modifier)]: { flex: theme.flex[modifier] } } - }, - }) -} diff --git a/jit/corePlugins/flexDirection.js b/jit/corePlugins/flexDirection.js deleted file mode 100644 index 620ee123106c..000000000000 --- a/jit/corePlugins/flexDirection.js +++ /dev/null @@ -1,16 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.flex-row': { - 'flex-direction': 'row', - }, - '.flex-row-reverse': { - 'flex-direction': 'row-reverse', - }, - '.flex-col': { - 'flex-direction': 'column', - }, - '.flex-col-reverse': { - 'flex-direction': 'column-reverse', - }, -}) diff --git a/jit/corePlugins/flexGrow.js b/jit/corePlugins/flexGrow.js deleted file mode 100644 index b02b0f7e10f1..000000000000 --- a/jit/corePlugins/flexGrow.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'flex-grow': (modifier, { theme }) => { - let value = asValue(modifier, theme.flexGrow) - - if (value === undefined) { - return [] - } - - return { [nameClass('flex-grow', modifier)]: { 'flex-grow': value } } - }, - }) -} diff --git a/jit/corePlugins/flexShrink.js b/jit/corePlugins/flexShrink.js deleted file mode 100644 index c789785de9d1..000000000000 --- a/jit/corePlugins/flexShrink.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'flex-shrink': (modifier, { theme }) => { - let value = asValue(modifier, theme.flexShrink) - - if (value === undefined) { - return [] - } - - return { [nameClass('flex-shrink', modifier)]: { 'flex-shrink': value } } - }, - }) -} diff --git a/jit/corePlugins/flexWrap.js b/jit/corePlugins/flexWrap.js deleted file mode 100644 index b9ac5a7cbdff..000000000000 --- a/jit/corePlugins/flexWrap.js +++ /dev/null @@ -1,13 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.flex-wrap': { - 'flex-wrap': 'wrap', - }, - '.flex-wrap-reverse': { - 'flex-wrap': 'wrap-reverse', - }, - '.flex-nowrap': { - 'flex-wrap': 'nowrap', - }, -}) diff --git a/jit/corePlugins/float.js b/jit/corePlugins/float.js deleted file mode 100644 index c58164fdeacd..000000000000 --- a/jit/corePlugins/float.js +++ /dev/null @@ -1,7 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.float-right': { float: 'right' }, - '.float-left': { float: 'left' }, - '.float-none': { float: 'none' }, -}) diff --git a/jit/corePlugins/fontFamily.js b/jit/corePlugins/fontFamily.js deleted file mode 100644 index 2d7607851cc1..000000000000 --- a/jit/corePlugins/fontFamily.js +++ /dev/null @@ -1,18 +0,0 @@ -const { nameClass } = require('../pluginUtils') -const transformThemeValue = require('../../lib/util/transformThemeValue').default - -module.exports = function ({ matchUtilities }) { - let transformValue = transformThemeValue('fontFamily') - - matchUtilities({ - font: (modifier, { theme }) => { - let value = transformValue(theme.fontFamily[modifier]) - - if (modifier === '' || value === undefined) { - return [] - } - - return { [nameClass('font', modifier)]: { 'font-family': transformValue(value) } } - }, - }) -} diff --git a/jit/corePlugins/fontSize.js b/jit/corePlugins/fontSize.js deleted file mode 100644 index e20e4663cb68..000000000000 --- a/jit/corePlugins/fontSize.js +++ /dev/null @@ -1,45 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') -const { isPlainObject } = require('../lib/utils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - text: (modifier, { theme }) => { - let value = theme.fontSize[modifier] - - if (value === undefined) { - value = asLength(modifier, {}) - - return value === undefined - ? [] - : { - [nameClass('text', modifier)]: { - 'font-size': value, - }, - } - } - - let [fontSize, options] = Array.isArray(value) ? value : [value] - let { lineHeight, letterSpacing } = isPlainObject(options) - ? options - : { - lineHeight: options, - } - - return { - [nameClass('text', modifier)]: { - 'font-size': fontSize, - ...(lineHeight === undefined - ? {} - : { - 'line-height': lineHeight, - }), - ...(letterSpacing === undefined - ? {} - : { - 'letter-spacing': letterSpacing, - }), - }, - } - }, - }) -} diff --git a/jit/corePlugins/fontSmoothing.js b/jit/corePlugins/fontSmoothing.js deleted file mode 100644 index 3ee692fdb38a..000000000000 --- a/jit/corePlugins/fontSmoothing.js +++ /dev/null @@ -1,12 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.antialiased': { - '-webkit-font-smoothing': 'antialiased', - '-moz-osx-font-smoothing': 'grayscale', - }, - '.subpixel-antialiased': { - '-webkit-font-smoothing': 'auto', - '-moz-osx-font-smoothing': 'auto', - }, -}) diff --git a/jit/corePlugins/fontStyle.js b/jit/corePlugins/fontStyle.js deleted file mode 100644 index d8cd51483ddc..000000000000 --- a/jit/corePlugins/fontStyle.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.italic': { 'font-style': 'italic' }, - '.not-italic': { 'font-style': 'normal' }, -}) diff --git a/jit/corePlugins/fontVariantNumeric.js b/jit/corePlugins/fontVariantNumeric.js deleted file mode 100644 index 727f27cf0a68..000000000000 --- a/jit/corePlugins/fontVariantNumeric.js +++ /dev/null @@ -1,39 +0,0 @@ -let fontVariantBaseStyles = { - '.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions': { - '--tw-ordinal': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-slashed-zero': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-numeric-figure': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-numeric-spacing': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-numeric-fraction': 'var(--tw-empty,/*!*/ /*!*/)', - 'font-variant-numeric': - 'var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)', - }, -} - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'normal-nums': fontVariantBaseStyles, - ordinal: fontVariantBaseStyles, - 'slashed-zero': fontVariantBaseStyles, - 'lining-nums': fontVariantBaseStyles, - 'oldstyle-nums': fontVariantBaseStyles, - 'proportional-nums': fontVariantBaseStyles, - 'tabular-nums': fontVariantBaseStyles, - 'diagonal-fractions': fontVariantBaseStyles, - 'stacked-fractions': fontVariantBaseStyles, - }) - - matchUtilities({ - 'normal-nums': { '.normal-nums': { 'font-variant-numeric': 'normal' } }, - ordinal: { '.ordinal': { '--tw-ordinal': 'ordinal' } }, - 'slashed-zero': { '.slashed-zero': { '--tw-slashed-zero': 'slashed-zero' } }, - 'lining-nums': { '.lining-nums': { '--tw-numeric-figure': 'lining-nums' } }, - 'oldstyle-nums': { '.oldstyle-nums': { '--tw-numeric-figure': 'oldstyle-nums' } }, - 'proportional-nums': { '.proportional-nums': { '--tw-numeric-spacing': 'proportional-nums' } }, - 'tabular-nums': { '.tabular-nums': { '--tw-numeric-spacing': 'tabular-nums' } }, - 'diagonal-fractions': { - '.diagonal-fractions': { '--tw-numeric-fraction': 'diagonal-fractions' }, - }, - 'stacked-fractions': { '.stacked-fractions': { '--tw-numeric-fraction': 'stacked-fractions' } }, - }) -} diff --git a/jit/corePlugins/fontWeight.js b/jit/corePlugins/fontWeight.js deleted file mode 100644 index 3365d46f3ec8..000000000000 --- a/jit/corePlugins/fontWeight.js +++ /dev/null @@ -1,14 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - font: (modifier, { theme }) => { - let value = theme.fontWeight[modifier] - if (value === undefined) { - return [] - } - - return { [nameClass('font', modifier)]: { 'font-weight': value } } - }, - }) -} diff --git a/jit/corePlugins/gap.js b/jit/corePlugins/gap.js deleted file mode 100644 index 5519cd76a4a8..000000000000 --- a/jit/corePlugins/gap.js +++ /dev/null @@ -1,35 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - gap: (modifier, { theme }) => { - let value = asLength(modifier, theme['gap']) - - if (value === undefined) { - return [] - } - - return { [nameClass('gap', modifier)]: { gap: value } } - }, - }) - matchUtilities({ - 'gap-x': (modifier, { theme }) => { - let value = asLength(modifier, theme['gap']) - - if (value === undefined) { - return [] - } - - return { [nameClass('gap-x', modifier)]: { 'column-gap': value } } - }, - 'gap-y': (modifier, { theme }) => { - let value = asLength(modifier, theme['gap']) - - if (value === undefined) { - return [] - } - - return { [nameClass('gap-y', modifier)]: { 'row-gap': value } } - }, - }) -} diff --git a/jit/corePlugins/gradientColorStops.js b/jit/corePlugins/gradientColorStops.js deleted file mode 100644 index a1497ae285eb..000000000000 --- a/jit/corePlugins/gradientColorStops.js +++ /dev/null @@ -1,75 +0,0 @@ -const flattenColorPalette = require('../../lib/util/flattenColorPalette').default -const toColorValue = require('../../lib/util/toColorValue').default -const toRgba = require('../../lib/util/withAlphaVariable').toRgba -const { asColor, nameClass } = require('../pluginUtils') - -function transparentTo(value) { - if (typeof value === 'function') { - return value({ opacityValue: 0 }) - } - - try { - const [r, g, b] = toRgba(value) - return `rgba(${r}, ${g}, ${b}, 0)` - } catch (_error) { - return `rgba(255, 255, 255, 0)` - } -} - -module.exports = function ({ matchUtilities, theme }) { - let colorPalette = flattenColorPalette(theme('gradientColorStops')) - - matchUtilities({ - from: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - 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})`, - }, - } - }, - }) - matchUtilities({ - via: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - let transparentToValue = transparentTo(value) - - return { - [nameClass('via', modifier)]: { - '--tw-gradient-stops': `var(--tw-gradient-from), ${toColorValue( - value, - 'via' - )}, var(--tw-gradient-to, ${transparentToValue})`, - }, - } - }, - }) - matchUtilities({ - to: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - return { - [nameClass('to', modifier)]: { - '--tw-gradient-to': toColorValue(value, 'to'), - }, - } - }, - }) -} diff --git a/jit/corePlugins/gridAutoColumns.js b/jit/corePlugins/gridAutoColumns.js deleted file mode 100644 index 90a970b94203..000000000000 --- a/jit/corePlugins/gridAutoColumns.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asList, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'auto-cols': (modifier, { theme }) => { - let value = asList(modifier, theme.gridAutoColumns) - - if (value === undefined) { - return [] - } - - return { [nameClass('auto-cols', modifier)]: { 'grid-auto-columns': value } } - }, - }) -} diff --git a/jit/corePlugins/gridAutoFlow.js b/jit/corePlugins/gridAutoFlow.js deleted file mode 100644 index 42d3366856cb..000000000000 --- a/jit/corePlugins/gridAutoFlow.js +++ /dev/null @@ -1,8 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.grid-flow-row': { gridAutoFlow: 'row' }, - '.grid-flow-col': { gridAutoFlow: 'column' }, - '.grid-flow-row-dense': { gridAutoFlow: 'row dense' }, - '.grid-flow-col-dense': { gridAutoFlow: 'column dense' }, -}) diff --git a/jit/corePlugins/gridAutoRows.js b/jit/corePlugins/gridAutoRows.js deleted file mode 100644 index 0e40b6698b91..000000000000 --- a/jit/corePlugins/gridAutoRows.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asList, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'auto-rows': (modifier, { theme }) => { - let value = asList(modifier, theme.gridAutoRows) - - if (value === undefined) { - return [] - } - - return { [nameClass('auto-rows', modifier)]: { 'grid-auto-rows': value } } - }, - }) -} diff --git a/jit/corePlugins/gridColumn.js b/jit/corePlugins/gridColumn.js deleted file mode 100644 index 241615bead4e..000000000000 --- a/jit/corePlugins/gridColumn.js +++ /dev/null @@ -1,13 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - col: (modifier, { theme }) => { - if (modifier === '' || theme.gridColumn[modifier] === undefined) { - return [] - } - - return { [nameClass('col', modifier)]: { 'grid-column': theme.gridColumn[modifier] } } - }, - }) -} diff --git a/jit/corePlugins/gridColumnEnd.js b/jit/corePlugins/gridColumnEnd.js deleted file mode 100644 index 53c7543c43e4..000000000000 --- a/jit/corePlugins/gridColumnEnd.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'col-end': (modifier, { theme }) => { - let value = theme.gridColumnEnd[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('col-end', modifier)]: { 'grid-column-end': value } } - }, - }) -} diff --git a/jit/corePlugins/gridColumnStart.js b/jit/corePlugins/gridColumnStart.js deleted file mode 100644 index e9adf8474073..000000000000 --- a/jit/corePlugins/gridColumnStart.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'col-start': (modifier, { theme }) => { - let value = theme.gridColumnStart[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('col-start', modifier)]: { 'grid-column-start': value } } - }, - }) -} diff --git a/jit/corePlugins/gridRow.js b/jit/corePlugins/gridRow.js deleted file mode 100644 index 2e560c3fadb7..000000000000 --- a/jit/corePlugins/gridRow.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - row: (modifier, { theme }) => { - let value = theme.gridRow[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('row', modifier)]: { 'grid-row': value } } - }, - }) -} diff --git a/jit/corePlugins/gridRowEnd.js b/jit/corePlugins/gridRowEnd.js deleted file mode 100644 index 64d6e56f1c18..000000000000 --- a/jit/corePlugins/gridRowEnd.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'row-end': (modifier, { theme }) => { - let value = theme.gridRowEnd[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('row-end', modifier)]: { 'grid-row-end': value } } - }, - }) -} diff --git a/jit/corePlugins/gridRowStart.js b/jit/corePlugins/gridRowStart.js deleted file mode 100644 index 683918ed3360..000000000000 --- a/jit/corePlugins/gridRowStart.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'row-start': (modifier, { theme }) => { - let value = theme.gridRowStart[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('row-start', modifier)]: { 'grid-row-start': value } } - }, - }) -} diff --git a/jit/corePlugins/gridTemplateColumns.js b/jit/corePlugins/gridTemplateColumns.js deleted file mode 100644 index 745b5ba7b37f..000000000000 --- a/jit/corePlugins/gridTemplateColumns.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asList, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'grid-cols': (modifier, { theme }) => { - let value = asList(modifier, theme.gridTemplateColumns) - - if (value === undefined) { - return [] - } - - return { [nameClass('grid-cols', modifier)]: { 'grid-template-columns': value } } - }, - }) -} diff --git a/jit/corePlugins/gridTemplateRows.js b/jit/corePlugins/gridTemplateRows.js deleted file mode 100644 index bff4eb3cd716..000000000000 --- a/jit/corePlugins/gridTemplateRows.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asList, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'grid-rows': (modifier, { theme }) => { - let value = asList(modifier, theme.gridTemplateRows) - - if (value === undefined) { - return [] - } - - return { [nameClass('grid-rows', modifier)]: { 'grid-template-rows': value } } - }, - }) -} diff --git a/jit/corePlugins/height.js b/jit/corePlugins/height.js deleted file mode 100644 index 83b594e1d0a8..000000000000 --- a/jit/corePlugins/height.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - h: (modifier, { theme }) => { - let value = asValue(modifier, theme['height']) - - if (value === undefined) { - return [] - } - - return { [nameClass('h', modifier)]: { height: value } } - }, - }) -} diff --git a/jit/corePlugins/index.js b/jit/corePlugins/index.js deleted file mode 100644 index decf3112ea14..000000000000 --- a/jit/corePlugins/index.js +++ /dev/null @@ -1,322 +0,0 @@ -const postcss = require('postcss') -const buildMediaQuery = require('../../lib/util/buildMediaQuery').default -const prefixSelector = require('../../lib/util/prefixSelector').default -const { - updateLastClasses, - updateAllClasses, - transformAllSelectors, - transformAllClasses, - transformLastClasses, -} = require('../pluginUtils') - -module.exports = { - pseudoClassVariants: function ({ config, addVariant }) { - let pseudoVariants = [ - ['first', 'first-child'], - ['last', 'last-child'], - ['odd', 'nth-child(odd)'], - ['even', 'nth-child(even)'], - 'visited', - 'checked', - 'focus-within', - 'hover', - 'focus', - 'focus-visible', - 'active', - 'disabled', - ] - - for (let variant of pseudoVariants) { - let [variantName, state] = Array.isArray(variant) ? variant : [variant, variant] - - addVariant( - variantName, - transformAllClasses((className, { withPseudo }) => { - return withPseudo(`${variantName}${config('separator')}${className}`, state) - }) - ) - } - - for (let variant of pseudoVariants) { - let [variantName, state] = Array.isArray(variant) ? variant : [variant, variant] - let groupVariantName = `group-${variantName}` - - addVariant( - groupVariantName, - transformAllSelectors((selector) => { - let variantSelector = updateAllClasses(selector, (className) => { - return `${groupVariantName}${config('separator')}${className}` - }) - - if (variantSelector === selector) { - return null - } - - let groupSelector = prefixSelector( - config('prefix'), - `.group${config('separator')}${state}` - ) - - return `${groupSelector} ${variantSelector}` - }) - ) - } - }, - directionVariants: function ({ config, addVariant }) { - addVariant( - 'ltr', - transformAllSelectors( - (selector) => - `[dir="ltr"] ${updateAllClasses( - selector, - (className) => `ltr${config('separator')}${className}` - )}` - ) - ) - - addVariant( - 'rtl', - transformAllSelectors( - (selector) => - `[dir="rtl"] ${updateAllClasses( - selector, - (className) => `rtl${config('separator')}${className}` - )}` - ) - ) - }, - reducedMotionVariants: function ({ config, addVariant }) { - addVariant( - 'motion-safe', - transformLastClasses( - (className) => { - return `motion-safe${config('separator')}${className}` - }, - () => postcss.atRule({ name: 'media', params: '(prefers-reduced-motion: no-preference)' }) - ) - ) - - addVariant( - 'motion-reduce', - transformLastClasses( - (className) => { - return `motion-reduce${config('separator')}${className}` - }, - () => postcss.atRule({ name: 'media', params: '(prefers-reduced-motion: reduce)' }) - ) - ) - }, - darkVariants: function ({ config, addVariant }) { - if (config('darkMode') === 'class') { - addVariant( - 'dark', - transformAllSelectors((selector) => { - let variantSelector = updateLastClasses(selector, (className) => { - return `dark${config('separator')}${className}` - }) - - if (variantSelector === selector) { - return null - } - - let darkSelector = prefixSelector(config('prefix'), `.dark`) - - return `${darkSelector} ${variantSelector}` - }) - ) - } else if (config('darkMode') === 'media') { - addVariant( - 'dark', - transformLastClasses( - (className) => { - return `dark${config('separator')}${className}` - }, - () => postcss.atRule({ name: 'media', params: '(prefers-color-scheme: dark)' }) - ) - ) - } - }, - screenVariants: function ({ config, theme, addVariant }) { - for (let screen in theme('screens')) { - let size = theme('screens')[screen] - let query = buildMediaQuery(size) - - addVariant( - screen, - transformLastClasses( - (className) => { - return `${screen}${config('separator')}${className}` - }, - () => postcss.atRule({ name: 'media', params: query }) - ) - ) - } - }, - - // Base - preflight: require('./preflight'), - - // Components - container: require('./container'), - - // Utilitiles - accessibility: require('./accessibility'), - pointerEvents: require('./pointerEvents'), - visibility: require('./visibility'), - position: require('./position'), - inset: require('./inset'), - isolation: require('./isolation'), - zIndex: require('./zIndex'), - order: require('./order'), - gridColumn: require('./gridColumn'), - gridColumnEnd: require('./gridColumnEnd'), - gridColumnStart: require('./gridColumnStart'), - gridRow: require('./gridRow'), - gridRowEnd: require('./gridRowEnd'), - gridRowStart: require('./gridRowStart'), - float: require('./float'), - clear: require('./clear'), - margin: require('./margin'), - boxSizing: require('./boxSizing'), - display: require('./display'), - height: require('./height'), - maxHeight: require('./maxHeight'), - minHeight: require('./minHeight'), - width: require('./width'), - minWidth: require('./minWidth'), - maxWidth: require('./maxWidth'), - flex: require('./flex'), - flexShrink: require('./flexShrink'), - flexGrow: require('./flexGrow'), - tableLayout: require('./tableLayout'), - borderCollapse: require('./borderCollapse'), - - transform: require('./transform'), - transformOrigin: require('./transformOrigin'), - translate: require('./translate'), - rotate: require('./rotate'), - skew: require('./skew'), - scale: require('./scale'), - - animation: require('./animation'), - - cursor: require('./cursor'), - userSelect: require('./userSelect'), - resize: require('./resize'), - - listStylePosition: require('./listStylePosition'), - listStyleType: require('./listStyleType'), - - appearance: require('./appearance'), - gridAutoColumns: require('./gridAutoColumns'), - gridAutoFlow: require('./gridAutoFlow'), - gridAutoRows: require('./gridAutoRows'), - gridTemplateColumns: require('./gridTemplateColumns'), - gridTemplateRows: require('./gridTemplateRows'), - flexDirection: require('./flexDirection'), - flexWrap: require('./flexWrap'), - placeContent: require('./placeContent'), - placeItems: require('./placeItems'), - alignContent: require('./alignContent'), - alignItems: require('./alignItems'), - justifyContent: require('./justifyContent'), - justifyItems: require('./justifyItems'), - gap: require('./gap'), - space: require('./space'), - divideWidth: require('./divideWidth'), - divideStyle: require('./divideStyle'), - divideColor: require('./divideColor'), - divideOpacity: require('./divideOpacity'), - - placeSelf: require('./placeSelf'), - alignSelf: require('./alignSelf'), - justifySelf: require('./justifySelf'), - - overflow: require('./overflow'), - overscrollBehavior: require('./overscrollBehavior'), - textOverflow: require('./textOverflow'), - whitespace: require('./whitespace'), - wordBreak: require('./wordBreak'), - - borderRadius: require('./borderRadius'), - borderWidth: require('./borderWidth'), - borderStyle: require('./borderStyle'), - borderColor: require('./borderColor'), - borderOpacity: require('./borderOpacity'), - - backgroundColor: require('./backgroundColor'), - backgroundOpacity: require('./backgroundOpacity'), - backgroundImage: require('./backgroundImage'), - gradientColorStops: require('./gradientColorStops'), - boxDecorationBreak: require('./boxDecorationBreak'), - backgroundSize: require('./backgroundSize'), - backgroundAttachment: require('./backgroundAttachment'), - backgroundClip: require('./backgroundClip'), - backgroundPosition: require('./backgroundPosition'), - backgroundRepeat: require('./backgroundRepeat'), - backgroundOrigin: require('./backgroundOrigin'), - - fill: require('./fill'), - stroke: require('./stroke'), - strokeWidth: require('./strokeWidth'), - - objectFit: require('./objectFit'), - objectPosition: require('./objectPosition'), - - padding: require('./padding'), - - textAlign: require('./textAlign'), - verticalAlign: require('./verticalAlign'), - fontFamily: require('./fontFamily'), - fontSize: require('./fontSize'), - fontWeight: require('./fontWeight'), - textTransform: require('./textTransform'), - fontStyle: require('./fontStyle'), - fontVariantNumeric: require('./fontVariantNumeric'), - lineHeight: require('./lineHeight'), - letterSpacing: require('./letterSpacing'), - textColor: require('./textColor'), - textOpacity: require('./textOpacity'), - textDecoration: require('./textDecoration'), - fontSmoothing: require('./fontSmoothing'), - placeholderColor: require('./placeholderColor'), - placeholderOpacity: require('./placeholderOpacity'), - - opacity: require('./opacity'), - backgroundBlendMode: require('./backgroundBlendMode'), - mixBlendMode: require('./mixBlendMode'), - boxShadow: require('./boxShadow'), - outline: require('./outline'), - ringWidth: require('./ringWidth'), - ringColor: require('./ringColor'), - ringOpacity: require('./ringOpacity'), - ringOffsetWidth: require('./ringOffsetWidth'), - ringOffsetColor: require('./ringOffsetColor'), - - filter: require('../../lib/plugins/filter').default(), - blur: require('../../lib/plugins/blur').default(), - brightness: require('../../lib/plugins/brightness').default(), - contrast: require('../../lib/plugins/contrast').default(), - dropShadow: require('../../lib/plugins/dropShadow').default(), - grayscale: require('../../lib/plugins/grayscale').default(), - hueRotate: require('../../lib/plugins/hueRotate').default(), - invert: require('../../lib/plugins/invert').default(), - saturate: require('../../lib/plugins/saturate').default(), - sepia: require('../../lib/plugins/sepia').default(), - - backdropFilter: require('../../lib/plugins/backdropFilter').default(), - backdropBlur: require('../../lib/plugins/backdropBlur').default(), - backdropBrightness: require('../../lib/plugins/backdropBrightness').default(), - backdropContrast: require('../../lib/plugins/backdropContrast').default(), - backdropGrayscale: require('../../lib/plugins/backdropGrayscale').default(), - backdropHueRotate: require('../../lib/plugins/backdropHueRotate').default(), - backdropInvert: require('../../lib/plugins/backdropInvert').default(), - backdropOpacity: require('../../lib/plugins/backdropOpacity').default(), - backdropSaturate: require('../../lib/plugins/backdropSaturate').default(), - backdropSepia: require('../../lib/plugins/backdropSepia').default(), - - transitionProperty: require('./transitionProperty'), - transitionDelay: require('./transitionDelay'), - transitionDuration: require('./transitionDuration'), - transitionTimingFunction: require('./transitionTimingFunction'), -} diff --git a/jit/corePlugins/inset.js b/jit/corePlugins/inset.js deleted file mode 100644 index 31be50069870..000000000000 --- a/jit/corePlugins/inset.js +++ /dev/null @@ -1,75 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - inset: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { - [nameClass('inset', modifier)]: { 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 } } - }, - 'inset-y': (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('inset-y', modifier)]: { top: value, bottom: value } } - }, - }) - matchUtilities({ - top: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('top', modifier)]: { top: value } } - }, - right: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('right', modifier)]: { right: value } } - }, - bottom: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('bottom', modifier)]: { bottom: value } } - }, - left: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('left', modifier)]: { left: value } } - }, - }) -} diff --git a/jit/corePlugins/isolation.js b/jit/corePlugins/isolation.js deleted file mode 100644 index e3f6cdbd0d66..000000000000 --- a/jit/corePlugins/isolation.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../../lib/plugins/isolation').default() diff --git a/jit/corePlugins/justifyContent.js b/jit/corePlugins/justifyContent.js deleted file mode 100644 index 5914e79f3f5d..000000000000 --- a/jit/corePlugins/justifyContent.js +++ /dev/null @@ -1,22 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.justify-start': { - 'justify-content': 'flex-start', - }, - '.justify-end': { - 'justify-content': 'flex-end', - }, - '.justify-center': { - 'justify-content': 'center', - }, - '.justify-between': { - 'justify-content': 'space-between', - }, - '.justify-around': { - 'justify-content': 'space-around', - }, - '.justify-evenly': { - 'justify-content': 'space-evenly', - }, -}) diff --git a/jit/corePlugins/justifyItems.js b/jit/corePlugins/justifyItems.js deleted file mode 100644 index ec098317c3f4..000000000000 --- a/jit/corePlugins/justifyItems.js +++ /dev/null @@ -1,16 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.justify-items-start': { - 'justify-items': 'start', - }, - '.justify-items-end': { - 'justify-items': 'end', - }, - '.justify-items-center': { - 'justify-items': 'center', - }, - '.justify-items-stretch': { - 'justify-items': 'stretch', - }, -}) diff --git a/jit/corePlugins/justifySelf.js b/jit/corePlugins/justifySelf.js deleted file mode 100644 index dcedf3053deb..000000000000 --- a/jit/corePlugins/justifySelf.js +++ /dev/null @@ -1,19 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.justify-self-auto': { - 'justify-self': 'auto', - }, - '.justify-self-start': { - 'justify-self': 'start', - }, - '.justify-self-end': { - 'justify-self': 'end', - }, - '.justify-self-center': { - 'justify-self': 'center', - }, - '.justify-self-stretch': { - 'justify-self': 'stretch', - }, -}) diff --git a/jit/corePlugins/letterSpacing.js b/jit/corePlugins/letterSpacing.js deleted file mode 100644 index a4111e9b2105..000000000000 --- a/jit/corePlugins/letterSpacing.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - tracking: (modifier, { theme }) => { - let value = asLength(modifier, theme['letterSpacing']) - - if (value === undefined) { - return [] - } - - return { [nameClass('tracking', modifier)]: { 'letter-spacing': value } } - }, - }) -} diff --git a/jit/corePlugins/lineHeight.js b/jit/corePlugins/lineHeight.js deleted file mode 100644 index c9e9795ec576..000000000000 --- a/jit/corePlugins/lineHeight.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - leading: (modifier, { theme }) => { - let value = asLength(modifier, theme['lineHeight']) - - if (value === undefined) { - return [] - } - - return { [nameClass('leading', modifier)]: { 'line-height': value } } - }, - }) -} diff --git a/jit/corePlugins/listStylePosition.js b/jit/corePlugins/listStylePosition.js deleted file mode 100644 index 43c8ee5c3f88..000000000000 --- a/jit/corePlugins/listStylePosition.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.list-inside': { 'list-style-position': 'inside' }, - '.list-outside': { 'list-style-position': 'outside' }, -}) diff --git a/jit/corePlugins/listStyleType.js b/jit/corePlugins/listStyleType.js deleted file mode 100644 index 275d2dd17f72..000000000000 --- a/jit/corePlugins/listStyleType.js +++ /dev/null @@ -1,13 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - list: (modifier, { theme }) => { - if (modifier === '' || theme.listStyleType[modifier] === undefined) { - return [] - } - - return { [nameClass('list', modifier)]: { 'list-style-type': theme.listStyleType[modifier] } } - }, - }) -} diff --git a/jit/corePlugins/margin.js b/jit/corePlugins/margin.js deleted file mode 100644 index 863960523230..000000000000 --- a/jit/corePlugins/margin.js +++ /dev/null @@ -1,73 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - m: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('m', modifier)]: { margin: value } } - }, - }) - matchUtilities({ - mx: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('mx', modifier)]: { 'margin-left': value, 'margin-right': value } } - }, - my: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('my', modifier)]: { 'margin-top': value, 'margin-bottom': value } } - }, - }) - matchUtilities({ - mt: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('mt', modifier)]: { 'margin-top': value } } - }, - mr: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('mr', modifier)]: { 'margin-right': value } } - }, - mb: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('mb', modifier)]: { 'margin-bottom': value } } - }, - ml: (modifier, { theme }) => { - let value = asValue(modifier, theme['margin']) - - if (value === undefined) { - return [] - } - - return { [nameClass('ml', modifier)]: { 'margin-left': value } } - }, - }) -} diff --git a/jit/corePlugins/maxHeight.js b/jit/corePlugins/maxHeight.js deleted file mode 100644 index 432a7ee1123e..000000000000 --- a/jit/corePlugins/maxHeight.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'max-h': (modifier, { theme }) => { - let value = asValue(modifier, theme['maxHeight']) - - if (value === undefined) { - return [] - } - - return { [nameClass('max-h', modifier)]: { 'max-height': value } } - }, - }) -} diff --git a/jit/corePlugins/maxWidth.js b/jit/corePlugins/maxWidth.js deleted file mode 100644 index d519d667caa3..000000000000 --- a/jit/corePlugins/maxWidth.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'max-w': (modifier, { theme }) => { - let value = asValue(modifier, theme['maxWidth']) - - if (value === undefined) { - return [] - } - - return { [nameClass('max-w', modifier)]: { 'max-width': value } } - }, - }) -} diff --git a/jit/corePlugins/minHeight.js b/jit/corePlugins/minHeight.js deleted file mode 100644 index a78682ee3e0b..000000000000 --- a/jit/corePlugins/minHeight.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'min-h': (modifier, { theme }) => { - let value = asValue(modifier, theme['minHeight']) - - if (value === undefined) { - return [] - } - - return { [nameClass('min-h', modifier)]: { 'min-height': value } } - }, - }) -} diff --git a/jit/corePlugins/minWidth.js b/jit/corePlugins/minWidth.js deleted file mode 100644 index 3a6be87b4bb2..000000000000 --- a/jit/corePlugins/minWidth.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'min-w': (modifier, { theme }) => { - let value = asValue(modifier, theme['minWidth']) - - if (value === undefined) { - return [] - } - - return { [nameClass('min-w', modifier)]: { 'min-width': value } } - }, - }) -} diff --git a/jit/corePlugins/mixBlendMode.js b/jit/corePlugins/mixBlendMode.js deleted file mode 100644 index 7eba2c3e26c4..000000000000 --- a/jit/corePlugins/mixBlendMode.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../../lib/plugins/mixBlendMode').default() diff --git a/jit/corePlugins/objectFit.js b/jit/corePlugins/objectFit.js deleted file mode 100644 index 5d6389ad3396..000000000000 --- a/jit/corePlugins/objectFit.js +++ /dev/null @@ -1,9 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.object-contain': { 'object-fit': 'contain' }, - '.object-cover': { 'object-fit': 'cover' }, - '.object-fill': { 'object-fit': 'fill' }, - '.object-none': { 'object-fit': 'none' }, - '.object-scale-down': { 'object-fit': 'scale-down' }, -}) diff --git a/jit/corePlugins/objectPosition.js b/jit/corePlugins/objectPosition.js deleted file mode 100644 index 01afca056292..000000000000 --- a/jit/corePlugins/objectPosition.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - object: (modifier, { theme }) => { - if (modifier === '' || theme.objectPosition[modifier] === undefined) { - return [] - } - - return { - [nameClass('object', modifier)]: { 'object-position': theme.objectPosition[modifier] }, - } - }, - }) -} diff --git a/jit/corePlugins/opacity.js b/jit/corePlugins/opacity.js deleted file mode 100644 index 2fc8fc851c3c..000000000000 --- a/jit/corePlugins/opacity.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - opacity: (modifier, { theme }) => { - let value = asValue(modifier, theme.opacity) - - if (value === undefined) { - return [] - } - - return { [nameClass('opacity', modifier)]: { opacity: value } } - }, - }) -} diff --git a/jit/corePlugins/order.js b/jit/corePlugins/order.js deleted file mode 100644 index e17cf14c9c27..000000000000 --- a/jit/corePlugins/order.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - order: (modifier, { theme }) => { - let value = asValue(modifier, theme.order) - - if (value === undefined) { - return [] - } - - return { [nameClass('order', modifier)]: { order: value } } - }, - }) -} diff --git a/jit/corePlugins/outline.js b/jit/corePlugins/outline.js deleted file mode 100644 index c19beb1a3526..000000000000 --- a/jit/corePlugins/outline.js +++ /dev/null @@ -1,22 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - outline: (modifier, { theme }) => { - let value = theme.outline[modifier] - - if (value === undefined) { - return [] - } - - let [outline, outlineOffset = '0'] = Array.isArray(value) ? value : [value] - - return { - [nameClass('outline', modifier)]: { - outline, - 'outline-offset': outlineOffset, - }, - } - }, - }) -} diff --git a/jit/corePlugins/overflow.js b/jit/corePlugins/overflow.js deleted file mode 100644 index 2ef1f11adbe1..000000000000 --- a/jit/corePlugins/overflow.js +++ /dev/null @@ -1,16 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.overflow-auto': { overflow: 'auto' }, - '.overflow-hidden': { overflow: 'hidden' }, - '.overflow-visible': { overflow: 'visible' }, - '.overflow-scroll': { overflow: 'scroll' }, - '.overflow-x-auto': { 'overflow-x': 'auto' }, - '.overflow-y-auto': { 'overflow-y': 'auto' }, - '.overflow-x-hidden': { 'overflow-x': 'hidden' }, - '.overflow-y-hidden': { 'overflow-y': 'hidden' }, - '.overflow-x-visible': { 'overflow-x': 'visible' }, - '.overflow-y-visible': { 'overflow-y': 'visible' }, - '.overflow-x-scroll': { 'overflow-x': 'scroll' }, - '.overflow-y-scroll': { 'overflow-y': 'scroll' }, -}) diff --git a/jit/corePlugins/overscrollBehavior.js b/jit/corePlugins/overscrollBehavior.js deleted file mode 100644 index d6baf94db4c7..000000000000 --- a/jit/corePlugins/overscrollBehavior.js +++ /dev/null @@ -1,13 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.overscroll-auto': { 'overscroll-behavior': 'auto' }, - '.overscroll-contain': { 'overscroll-behavior': 'contain' }, - '.overscroll-none': { 'overscroll-behavior': 'none' }, - '.overscroll-y-auto': { 'overscroll-behavior-y': 'auto' }, - '.overscroll-y-contain': { 'overscroll-behavior-y': 'contain' }, - '.overscroll-y-none': { 'overscroll-behavior-y': 'none' }, - '.overscroll-x-auto': { 'overscroll-behavior-x': 'auto' }, - '.overscroll-x-contain': { 'overscroll-behavior-x': 'contain' }, - '.overscroll-x-none': { 'overscroll-behavior-x': 'none' }, -}) diff --git a/jit/corePlugins/padding.js b/jit/corePlugins/padding.js deleted file mode 100644 index eaf64aea8ce9..000000000000 --- a/jit/corePlugins/padding.js +++ /dev/null @@ -1,73 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - p: (modifier, { theme }) => { - let value = asValue(modifier, theme['padding']) - - if (value === undefined) { - return [] - } - - return { [nameClass('p', modifier)]: { padding: value } } - }, - }) - matchUtilities({ - px: (modifier, { theme }) => { - let value = asValue(modifier, theme['padding']) - - if (value === undefined) { - return [] - } - - return { [nameClass('px', modifier)]: { 'padding-left': value, 'padding-right': value } } - }, - py: (modifier, { theme }) => { - let value = asValue(modifier, theme['padding']) - - if (value === undefined) { - return [] - } - - return { [nameClass('py', modifier)]: { 'padding-top': value, 'padding-bottom': value } } - }, - }) - matchUtilities({ - pt: (modifier, { theme }) => { - let value = asValue(modifier, theme['padding']) - - if (value === undefined) { - return [] - } - - return { [nameClass('pt', modifier)]: { 'padding-top': value } } - }, - pr: (modifier, { theme }) => { - let value = asValue(modifier, theme['padding']) - - if (value === undefined) { - return [] - } - - return { [nameClass('pr', modifier)]: { 'padding-right': value } } - }, - pb: (modifier, { theme }) => { - let value = asValue(modifier, theme['padding']) - - if (value === undefined) { - return [] - } - - return { [nameClass('pb', modifier)]: { 'padding-bottom': value } } - }, - pl: (modifier, { theme }) => { - let value = asValue(modifier, theme['padding']) - - if (value === undefined) { - return [] - } - - return { [nameClass('pl', modifier)]: { 'padding-left': value } } - }, - }) -} diff --git a/jit/corePlugins/placeContent.js b/jit/corePlugins/placeContent.js deleted file mode 100644 index f20baa873559..000000000000 --- a/jit/corePlugins/placeContent.js +++ /dev/null @@ -1,25 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.place-content-center': { - 'place-content': 'center', - }, - '.place-content-start': { - 'place-content': 'start', - }, - '.place-content-end': { - 'place-content': 'end', - }, - '.place-content-between': { - 'place-content': 'space-between', - }, - '.place-content-around': { - 'place-content': 'space-around', - }, - '.place-content-evenly': { - 'place-content': 'space-evenly', - }, - '.place-content-stretch': { - 'place-content': 'stretch', - }, -}) diff --git a/jit/corePlugins/placeItems.js b/jit/corePlugins/placeItems.js deleted file mode 100644 index abd1f61a2461..000000000000 --- a/jit/corePlugins/placeItems.js +++ /dev/null @@ -1,16 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.place-items-start': { - 'place-items': 'start', - }, - '.place-items-end': { - 'place-items': 'end', - }, - '.place-items-center': { - 'place-items': 'center', - }, - '.place-items-stretch': { - 'place-items': 'stretch', - }, -}) diff --git a/jit/corePlugins/placeSelf.js b/jit/corePlugins/placeSelf.js deleted file mode 100644 index df6c6d1fb296..000000000000 --- a/jit/corePlugins/placeSelf.js +++ /dev/null @@ -1,19 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.place-self-auto': { - 'place-self': 'auto', - }, - '.place-self-start': { - 'place-self': 'start', - }, - '.place-self-end': { - 'place-self': 'end', - }, - '.place-self-center': { - 'place-self': 'center', - }, - '.place-self-stretch': { - 'place-self': 'stretch', - }, -}) diff --git a/jit/corePlugins/placeholderColor.js b/jit/corePlugins/placeholderColor.js deleted file mode 100644 index d1d19a1789e8..000000000000 --- a/jit/corePlugins/placeholderColor.js +++ /dev/null @@ -1,31 +0,0 @@ -const flattenColorPalette = require('../../lib/util/flattenColorPalette').default -const withAlphaVariable = require('../../lib/util/withAlphaVariable').default -const { asColor, nameClass } = require('../pluginUtils') - -module.exports = function ({ corePlugins, matchUtilities, theme }) { - let colorPalette = flattenColorPalette(theme('placeholderColor')) - - matchUtilities({ - placeholder: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - if (corePlugins('placeholderOpacity')) { - return { - [`${nameClass('placeholder', modifier)}::placeholder`]: withAlphaVariable({ - color: value, - property: 'color', - variable: '--tw-placeholder-opacity', - }), - } - } - - return { - [`${nameClass('placeholder', modifier)}::placeholder`]: { color: value }, - } - }, - }) -} diff --git a/jit/corePlugins/placeholderOpacity.js b/jit/corePlugins/placeholderOpacity.js deleted file mode 100644 index 98614028d55e..000000000000 --- a/jit/corePlugins/placeholderOpacity.js +++ /dev/null @@ -1,19 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - 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, - }, - } - }, - }) -} diff --git a/jit/corePlugins/pointerEvents.js b/jit/corePlugins/pointerEvents.js deleted file mode 100644 index 2b8fee6b0f6c..000000000000 --- a/jit/corePlugins/pointerEvents.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.pointer-events-none': { 'pointer-events': 'none' }, - '.pointer-events-auto': { 'pointer-events': 'auto' }, -}) diff --git a/jit/corePlugins/position.js b/jit/corePlugins/position.js deleted file mode 100644 index 48554d4a9bc9..000000000000 --- a/jit/corePlugins/position.js +++ /dev/null @@ -1,11 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.static': { position: 'static' }, - '.fixed': { position: 'fixed' }, - '.absolute': { position: 'absolute' }, - '.relative': { position: 'relative' }, - '.sticky': { - position: 'sticky', - }, -}) diff --git a/jit/corePlugins/preflight.js b/jit/corePlugins/preflight.js deleted file mode 100644 index 64de4c7dbc1d..000000000000 --- a/jit/corePlugins/preflight.js +++ /dev/null @@ -1,3 +0,0 @@ -const preflight = require('../../lib/plugins/preflight').default - -module.exports = preflight() diff --git a/jit/corePlugins/resize.js b/jit/corePlugins/resize.js deleted file mode 100644 index 8fb65f855153..000000000000 --- a/jit/corePlugins/resize.js +++ /dev/null @@ -1,8 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.resize-none': { resize: 'none' }, - '.resize-y': { resize: 'vertical' }, - '.resize-x': { resize: 'horizontal' }, - '.resize': { resize: 'both' }, -}) diff --git a/jit/corePlugins/ringColor.js b/jit/corePlugins/ringColor.js deleted file mode 100644 index 347a00794e62..000000000000 --- a/jit/corePlugins/ringColor.js +++ /dev/null @@ -1,29 +0,0 @@ -const flattenColorPalette = require('../../lib/util/flattenColorPalette').default -const withAlphaVariable = require('../../lib/util/withAlphaVariable').default -const { asColor, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities, theme }) { - 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', - }), - } - }, - }) -} diff --git a/jit/corePlugins/ringOffsetColor.js b/jit/corePlugins/ringOffsetColor.js deleted file mode 100644 index 73b61b2f0503..000000000000 --- a/jit/corePlugins/ringOffsetColor.js +++ /dev/null @@ -1,23 +0,0 @@ -const flattenColorPalette = require('../../lib/util/flattenColorPalette').default -const toColorValue = require('../../lib/util/toColorValue').default -const { asColor, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities, theme }) { - let colorPalette = flattenColorPalette(theme('ringOffsetColor')) - - matchUtilities({ - 'ring-offset': (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - return { - [nameClass('ring-offset', modifier)]: { - '--tw-ring-offset-color': toColorValue(value), - }, - } - }, - }) -} diff --git a/jit/corePlugins/ringOffsetWidth.js b/jit/corePlugins/ringOffsetWidth.js deleted file mode 100644 index a4a5109af315..000000000000 --- a/jit/corePlugins/ringOffsetWidth.js +++ /dev/null @@ -1,19 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'ring-offset': (modifier, { theme }) => { - let value = asLength(modifier, theme['ringOffsetWidth']) - - if (value === undefined) { - return [] - } - - return { - [nameClass('ring-offset', modifier)]: { - '--tw-ring-offset-width': value, - }, - } - }, - }) -} diff --git a/jit/corePlugins/ringOpacity.js b/jit/corePlugins/ringOpacity.js deleted file mode 100644 index a093882fac5d..000000000000 --- a/jit/corePlugins/ringOpacity.js +++ /dev/null @@ -1,19 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'ring-opacity': (modifier, { theme }) => { - let value = asValue(modifier, theme['ringOpacity']) - - if (value === undefined) { - return [] - } - - return { - [nameClass('ring-opacity', modifier)]: { - '--tw-ring-opacity': value, - }, - } - }, - }) -} diff --git a/jit/corePlugins/ringWidth.js b/jit/corePlugins/ringWidth.js deleted file mode 100644 index 1716be1c802c..000000000000 --- a/jit/corePlugins/ringWidth.js +++ /dev/null @@ -1,60 +0,0 @@ -const dlv = require('dlv') -const toRgba = require('../../lib/util/withAlphaVariable').toRgba -const { asLength, nameClass } = require('../pluginUtils') - -function safeCall(callback, defaultValue) { - try { - return callback() - } catch (_error) { - return defaultValue - } -} - -module.exports = function ({ addBase, matchUtilities, addUtilities, jit: { theme } }) { - let ringColorDefault = (([r, g, b]) => { - return `rgba(${r}, ${g}, ${b}, ${dlv(theme, ['ringOpacity', 'DEFAULT'], '0.5')})` - })(safeCall(() => toRgba(dlv(theme, ['ringColor', 'DEFAULT'])), ['147', '197', '253'])) - - let ringReset = { - '*': { - '--tw-ring-inset': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-ring-offset-width': dlv(theme, ['ringOffsetWidth', 'DEFAULT'], '0px'), - '--tw-ring-offset-color': dlv(theme, ['ringOffsetColor', 'DEFAULT'], '#fff'), - '--tw-ring-color': ringColorDefault, - '--tw-ring-offset-shadow': '0 0 #0000', - '--tw-ring-shadow': '0 0 #0000', - }, - } - - addBase(ringReset) - - matchUtilities({ - ring: (modifier, { theme }) => { - let value = asLength(modifier, theme['ringWidth']) - - if (value === undefined) { - return [] - } - - 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', - }, - }) -} diff --git a/jit/corePlugins/rotate.js b/jit/corePlugins/rotate.js deleted file mode 100644 index 170b6d825c5b..000000000000 --- a/jit/corePlugins/rotate.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asAngle, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - rotate: (modifier, { theme }) => { - let value = asAngle(modifier, theme.rotate) - - if (value === undefined) { - return [] - } - - return { [nameClass('rotate', modifier)]: { '--tw-rotate': value } } - }, - }) -} diff --git a/jit/corePlugins/scale.js b/jit/corePlugins/scale.js deleted file mode 100644 index 9e5a1dae298e..000000000000 --- a/jit/corePlugins/scale.js +++ /dev/null @@ -1,35 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - scale: (modifier, { theme }) => { - let value = asValue(modifier, theme.scale) - - if (value === undefined) { - return [] - } - - return { [nameClass('scale', modifier)]: { '--tw-scale-x': value, '--tw-scale-y': value } } - }, - }) - matchUtilities({ - 'scale-x': (modifier, { theme }) => { - let value = asValue(modifier, theme.scale) - - if (value === undefined) { - return [] - } - - return { [nameClass('scale-x', modifier)]: { '--tw-scale-x': value } } - }, - 'scale-y': (modifier, { theme }) => { - let value = asValue(modifier, theme.scale) - - if (value === undefined) { - return [] - } - - return { [nameClass('scale-y', modifier)]: { '--tw-scale-y': value } } - }, - }) -} diff --git a/jit/corePlugins/skew.js b/jit/corePlugins/skew.js deleted file mode 100644 index 6e53571c6b38..000000000000 --- a/jit/corePlugins/skew.js +++ /dev/null @@ -1,24 +0,0 @@ -const { asAngle, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'skew-x': (modifier, { theme }) => { - let value = asAngle(modifier, theme.skew) - - if (value === undefined) { - return [] - } - - return { [nameClass('skew-x', modifier)]: { '--tw-skew-x': value } } - }, - 'skew-y': (modifier, { theme }) => { - let value = asAngle(modifier, theme.skew) - - if (value === undefined) { - return [] - } - - return { [nameClass('skew-y', modifier)]: { '--tw-skew-y': value } } - }, - }) -} diff --git a/jit/corePlugins/space.js b/jit/corePlugins/space.js deleted file mode 100644 index 6a33c3c90258..000000000000 --- a/jit/corePlugins/space.js +++ /dev/null @@ -1,45 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities, addUtilities }) { - matchUtilities({ - 'space-x': (modifier, { theme }) => { - let value = asLength(modifier, theme['space']) - - if (value === undefined) { - return [] - } - - return { - [`${nameClass('space-x', modifier)} > :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 = asLength(modifier, theme['space']) - - if (value === undefined) { - return [] - } - - return { - [`${nameClass('space-y', modifier)} > :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({ - '.space-y-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-space-y-reverse': '1', - }, - '.space-x-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-space-x-reverse': '1', - }, - }) -} diff --git a/jit/corePlugins/stroke.js b/jit/corePlugins/stroke.js deleted file mode 100644 index 3a7d1f722a36..000000000000 --- a/jit/corePlugins/stroke.js +++ /dev/null @@ -1,19 +0,0 @@ -const flattenColorPalette = require('../../lib/util/flattenColorPalette').default -const toColorValue = require('../../lib/util/toColorValue').default -const { asColor, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities, theme }) { - let colorPalette = flattenColorPalette(theme('stroke')) - - matchUtilities({ - stroke: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - return { [nameClass('stroke', modifier)]: { stroke: toColorValue(value) } } - }, - }) -} diff --git a/jit/corePlugins/strokeWidth.js b/jit/corePlugins/strokeWidth.js deleted file mode 100644 index de7f68aa8d47..000000000000 --- a/jit/corePlugins/strokeWidth.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - stroke: (modifier, { theme }) => { - let value = asLength(modifier, theme['strokeWidth']) - - if (value === undefined) { - return [] - } - - return { [nameClass('stroke', modifier)]: { 'stroke-width': value } } - }, - }) -} diff --git a/jit/corePlugins/tableLayout.js b/jit/corePlugins/tableLayout.js deleted file mode 100644 index ba7e966b228b..000000000000 --- a/jit/corePlugins/tableLayout.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.table-auto': { 'table-layout': 'auto' }, - '.table-fixed': { 'table-layout': 'fixed' }, -}) diff --git a/jit/corePlugins/textAlign.js b/jit/corePlugins/textAlign.js deleted file mode 100644 index 880e5d628324..000000000000 --- a/jit/corePlugins/textAlign.js +++ /dev/null @@ -1,8 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.text-left': { 'text-align': 'left' }, - '.text-center': { 'text-align': 'center' }, - '.text-right': { 'text-align': 'right' }, - '.text-justify': { 'text-align': 'justify' }, -}) diff --git a/jit/corePlugins/textColor.js b/jit/corePlugins/textColor.js deleted file mode 100644 index ccd139b4dbff..000000000000 --- a/jit/corePlugins/textColor.js +++ /dev/null @@ -1,31 +0,0 @@ -const flattenColorPalette = require('../../lib/util/flattenColorPalette').default -const withAlphaVariable = require('../../lib/util/withAlphaVariable').default -const { asColor, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities, theme }) { - let colorPalette = flattenColorPalette(theme('textColor')) - - matchUtilities({ - text: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - if (corePlugins('textOpacity')) { - return { - [nameClass('text', modifier)]: withAlphaVariable({ - color: value, - property: 'color', - variable: '--tw-text-opacity', - }), - } - } - - return { - [nameClass('text', modifier)]: { color: value }, - } - }, - }) -} diff --git a/jit/corePlugins/textDecoration.js b/jit/corePlugins/textDecoration.js deleted file mode 100644 index 6771e90036c3..000000000000 --- a/jit/corePlugins/textDecoration.js +++ /dev/null @@ -1,7 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.underline': { 'text-decoration': 'underline' }, - '.line-through': { 'text-decoration': 'line-through' }, - '.no-underline': { 'text-decoration': 'none' }, -}) diff --git a/jit/corePlugins/textOpacity.js b/jit/corePlugins/textOpacity.js deleted file mode 100644 index 5e2836257245..000000000000 --- a/jit/corePlugins/textOpacity.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'text-opacity': (modifier, { theme }) => { - let value = asValue(modifier, theme.textOpacity) - - if (value === undefined) { - return [] - } - - return { [nameClass('text-opacity', modifier)]: { '--tw-text-opacity': value } } - }, - }) -} diff --git a/jit/corePlugins/textOverflow.js b/jit/corePlugins/textOverflow.js deleted file mode 100644 index e5d6e7d0a19c..000000000000 --- a/jit/corePlugins/textOverflow.js +++ /dev/null @@ -1,15 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = [ - createSimpleStaticUtilityPlugin({ - '.truncate': { - overflow: 'hidden', - 'text-overflow': 'ellipsis', - 'white-space': 'nowrap', - }, - }), - createSimpleStaticUtilityPlugin({ - '.overflow-ellipsis': { 'text-overflow': 'ellipsis' }, - '.overflow-clip': { 'text-overflow': 'clip' }, - }), -] diff --git a/jit/corePlugins/textTransform.js b/jit/corePlugins/textTransform.js deleted file mode 100644 index 42cb1487a895..000000000000 --- a/jit/corePlugins/textTransform.js +++ /dev/null @@ -1,8 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.uppercase': { 'text-transform': 'uppercase' }, - '.lowercase': { 'text-transform': 'lowercase' }, - '.capitalize': { 'text-transform': 'capitalize' }, - '.normal-case': { 'text-transform': 'none' }, -}) diff --git a/jit/corePlugins/transform.js b/jit/corePlugins/transform.js deleted file mode 100644 index d17f0af592ba..000000000000 --- a/jit/corePlugins/transform.js +++ /dev/null @@ -1,40 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.transform': { - '--tw-translate-x': '0', - '--tw-translate-y': '0', - '--tw-rotate': '0', - '--tw-skew-x': '0', - '--tw-skew-y': '0', - '--tw-scale-x': '1', - '--tw-scale-y': '1', - transform: [ - 'translateX(var(--tw-translate-x))', - 'translateY(var(--tw-translate-y))', - 'rotate(var(--tw-rotate))', - 'skewX(var(--tw-skew-x))', - 'skewY(var(--tw-skew-y))', - 'scaleX(var(--tw-scale-x))', - 'scaleY(var(--tw-scale-y))', - ].join(' '), - }, - '.transform-gpu': { - '--tw-translate-x': '0', - '--tw-translate-y': '0', - '--tw-rotate': '0', - '--tw-skew-x': '0', - '--tw-skew-y': '0', - '--tw-scale-x': '1', - '--tw-scale-y': '1', - transform: [ - 'translate3d(var(--tw-translate-x), var(--tw-translate-y), 0)', - 'rotate(var(--tw-rotate))', - 'skewX(var(--tw-skew-x))', - 'skewY(var(--tw-skew-y))', - 'scaleX(var(--tw-scale-x))', - 'scaleY(var(--tw-scale-y))', - ].join(' '), - }, - '.transform-none': { transform: 'none' }, -}) diff --git a/jit/corePlugins/transformOrigin.js b/jit/corePlugins/transformOrigin.js deleted file mode 100644 index 32735553ee86..000000000000 --- a/jit/corePlugins/transformOrigin.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - origin: (modifier, { theme }) => { - let value = theme.transformOrigin[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('origin', modifier)]: { 'transform-origin': value } } - }, - }) -} diff --git a/jit/corePlugins/transitionDelay.js b/jit/corePlugins/transitionDelay.js deleted file mode 100644 index 567101f60d14..000000000000 --- a/jit/corePlugins/transitionDelay.js +++ /dev/null @@ -1,17 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - delay: (modifier, { theme }) => { - let value = theme.transitionDelay[modifier] - - if (value === undefined) { - return [] - } - - return { - [nameClass('delay', modifier)]: { 'transition-delay': value }, - } - }, - }) -} diff --git a/jit/corePlugins/transitionDuration.js b/jit/corePlugins/transitionDuration.js deleted file mode 100644 index 26667a9e203b..000000000000 --- a/jit/corePlugins/transitionDuration.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass, asValue } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - duration: (modifier, { theme }) => { - let value = asValue(modifier, theme.transitionDuration) - - if (value === undefined) { - return [] - } - - return { [nameClass('duration', modifier)]: { 'transition-duration': value } } - }, - }) -} diff --git a/jit/corePlugins/transitionProperty.js b/jit/corePlugins/transitionProperty.js deleted file mode 100644 index 2f7ac7e1f973..000000000000 --- a/jit/corePlugins/transitionProperty.js +++ /dev/null @@ -1,28 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities, theme }) { - let defaultTimingFunction = theme('transitionTimingFunction.DEFAULT') - let defaultDuration = theme('transitionDuration.DEFAULT') - - matchUtilities({ - transition: (modifier, { theme }) => { - let value = theme.transitionProperty[modifier] - - if (value === undefined) { - return [] - } - - return { - [nameClass('transition', modifier)]: { - 'transition-property': value, - ...(value === 'none' - ? {} - : { - 'transition-timing-function': defaultTimingFunction, - 'transition-duration': defaultDuration, - }), - }, - } - }, - }) -} diff --git a/jit/corePlugins/transitionTimingFunction.js b/jit/corePlugins/transitionTimingFunction.js deleted file mode 100644 index cdfb9955a639..000000000000 --- a/jit/corePlugins/transitionTimingFunction.js +++ /dev/null @@ -1,15 +0,0 @@ -const { nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - ease: (modifier, { theme }) => { - let value = theme.transitionTimingFunction[modifier] - - if (value === undefined) { - return [] - } - - return { [nameClass('ease', modifier)]: { 'transition-timing-function': value } } - }, - }) -} diff --git a/jit/corePlugins/translate.js b/jit/corePlugins/translate.js deleted file mode 100644 index c81fbf944f37..000000000000 --- a/jit/corePlugins/translate.js +++ /dev/null @@ -1,24 +0,0 @@ -const { asLength, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - 'translate-x': (modifier, { theme }) => { - let value = asLength(modifier, theme['translate']) - - if (value === undefined) { - return [] - } - - return { [nameClass('translate-x', modifier)]: { '--tw-translate-x': value } } - }, - 'translate-y': (modifier, { theme }) => { - let value = asLength(modifier, theme['translate']) - - if (value === undefined) { - return [] - } - - return { [nameClass('translate-y', modifier)]: { '--tw-translate-y': value } } - }, - }) -} diff --git a/jit/corePlugins/userSelect.js b/jit/corePlugins/userSelect.js deleted file mode 100644 index 895700801649..000000000000 --- a/jit/corePlugins/userSelect.js +++ /dev/null @@ -1,8 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.select-none': { 'user-select': 'none' }, - '.select-text': { 'user-select': 'text' }, - '.select-all': { 'user-select': 'all' }, - '.select-auto': { 'user-select': 'auto' }, -}) diff --git a/jit/corePlugins/verticalAlign.js b/jit/corePlugins/verticalAlign.js deleted file mode 100644 index 0a49d19f7878..000000000000 --- a/jit/corePlugins/verticalAlign.js +++ /dev/null @@ -1,10 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.align-baseline': { 'vertical-align': 'baseline' }, - '.align-top': { 'vertical-align': 'top' }, - '.align-middle': { 'vertical-align': 'middle' }, - '.align-bottom': { 'vertical-align': 'bottom' }, - '.align-text-top': { 'vertical-align': 'text-top' }, - '.align-text-bottom': { 'vertical-align': 'text-bottom' }, -}) diff --git a/jit/corePlugins/visibility.js b/jit/corePlugins/visibility.js deleted file mode 100644 index c4bb8d63ddbd..000000000000 --- a/jit/corePlugins/visibility.js +++ /dev/null @@ -1,6 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.visible': { visibility: 'visible' }, - '.invisible': { visibility: 'hidden' }, -}) diff --git a/jit/corePlugins/whitespace.js b/jit/corePlugins/whitespace.js deleted file mode 100644 index 755d4086f5e9..000000000000 --- a/jit/corePlugins/whitespace.js +++ /dev/null @@ -1,9 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.whitespace-normal': { 'white-space': 'normal' }, - '.whitespace-nowrap': { 'white-space': 'nowrap' }, - '.whitespace-pre': { 'white-space': 'pre' }, - '.whitespace-pre-line': { 'white-space': 'pre-line' }, - '.whitespace-pre-wrap': { 'white-space': 'pre-wrap' }, -}) diff --git a/jit/corePlugins/width.js b/jit/corePlugins/width.js deleted file mode 100644 index 3ce8590a7929..000000000000 --- a/jit/corePlugins/width.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - w: (modifier, { theme }) => { - let value = asValue(modifier, theme['width']) - - if (value === undefined) { - return [] - } - - return { [nameClass('w', modifier)]: { width: value } } - }, - }) -} diff --git a/jit/corePlugins/wordBreak.js b/jit/corePlugins/wordBreak.js deleted file mode 100644 index 8b3eec1cbbd3..000000000000 --- a/jit/corePlugins/wordBreak.js +++ /dev/null @@ -1,12 +0,0 @@ -const { createSimpleStaticUtilityPlugin } = require('../pluginUtils') - -module.exports = createSimpleStaticUtilityPlugin({ - '.break-normal': { - 'overflow-wrap': 'normal', - 'word-break': 'normal', - }, - '.break-words': { - 'overflow-wrap': 'break-word', - }, - '.break-all': { 'word-break': 'break-all' }, -}) diff --git a/jit/corePlugins/zIndex.js b/jit/corePlugins/zIndex.js deleted file mode 100644 index 9ce3e286aa59..000000000000 --- a/jit/corePlugins/zIndex.js +++ /dev/null @@ -1,15 +0,0 @@ -const { asValue, nameClass } = require('../pluginUtils') - -module.exports = function ({ matchUtilities }) { - matchUtilities({ - z: (modifier, { theme }) => { - let value = asValue(modifier, theme.zIndex) - - if (value === undefined) { - return [] - } - - return { [nameClass('z', modifier)]: { 'z-index': value } } - }, - }) -} diff --git a/jit/lib/sharedState.js b/jit/lib/sharedState.js deleted file mode 100644 index ecec1cdfef04..000000000000 --- a/jit/lib/sharedState.js +++ /dev/null @@ -1,15 +0,0 @@ -const LRU = require('quick-lru') - -module.exports = { - env: { - TAILWIND_MODE: process.env.TAILWIND_MODE, - NODE_ENV: process.env.NODE_ENV, - DEBUG: process.env.DEBUG !== undefined, - TAILWIND_DISABLE_TOUCH: process.env.TAILWIND_DISABLE_TOUCH !== undefined, - TAILWIND_TOUCH_DIR: process.env.TAILWIND_TOUCH_DIR, - }, - contextMap: new Map(), - configContextMap: new Map(), - contextSourcesMap: new Map(), - contentMatchCache: new LRU({ maxSize: 25000 }), -} diff --git a/jit/lib/utils.js b/jit/lib/utils.js deleted file mode 100644 index 6b754159ed0f..000000000000 --- a/jit/lib/utils.js +++ /dev/null @@ -1,105 +0,0 @@ -const postcss = require('postcss') -const tailwindUtils = { - escapeClassName: require('../../lib/util/escapeClassName').default, - nameClass: require('../../lib/util/nameClass').default, -} - -// Takes our lightweight rule structure and turns it into a PostCSS node. -// This is likely a hot path and should be as optimized as possible. We -// use a cache for the actual rules so that we are never recreating them -// if we've already done the work, but we need to be careful we don't -// mutate these nodes after we get them because we reuse the same -// reference. -function toPostCssNode(rule, postCssNodeCache) { - if (postCssNodeCache.has(rule)) { - return postCssNodeCache.get(rule) - } - - let [selector, childRule] = rule - let node - - if (selector[0] === '@') { - let name = selector.slice(1, selector.indexOf(' ')) - let params = selector.slice(selector.indexOf(' ') + 1) - node = postcss.atRule({ name, params }) - - if (Array.isArray(childRule)) { - // It's a rule tuple - node.append( - childRule.map((rule) => { - return toPostCssNode(rule, postCssNodeCache) - }) - ) - } else { - // It's an object, like pairs in keyframes - for (let property in childRule) { - node.append( - postcss.decl({ - prop: property, - value: childRule[property], - }) - ) - } - } - } else { - // Regular rule (like a class), children are definitely declarations, - // not other rules - node = postcss.rule({ - selector: rule[0], - nodes: Object.entries(rule[1]).map(([prop, value]) => { - return postcss.decl({ prop, value }) - }), - }) - } - - postCssNodeCache.set(rule, node) - - return node -} - -function bigSign(bigIntValue) { - return (bigIntValue > 0n) - (bigIntValue < 0n) -} - -function isPlainObject(value) { - if (Object.prototype.toString.call(value) !== '[object Object]') { - return false - } - - const prototype = Object.getPrototypeOf(value) - return prototype === null || prototype === Object.prototype -} - -// workaround for minifier bug which splits selectors by commas, -// even when they are escaped (e.g. \,) -function escapeCommas(className) { - return className.replace(/\\,/g, '\\2c ') -} - -function escapeClassName(...args) { - return escapeCommas(tailwindUtils.escapeClassName(...args)) -} - -function nameClass(...args) { - return escapeCommas(tailwindUtils.nameClass(...args)) -} - -/** - * Clone generated and/or cached nodes to ensure no future - * postcss plugins can mutate the rules and mess up our cache - * - * @param {import('postcss').Node[]} nodes - * */ -function cloneNodes(nodes) { - return nodes.map((node) => node.clone()) -} - -module.exports = { - toPostCssNode, - bigSign, - isPlainObject, - escapeClassName, - escapeCommas, - nameClass, - cloneNodes, -} diff --git a/package.json b/package.json index db741e3715e5..c81537c11059 100644 --- a/package.json +++ b/package.json @@ -111,10 +111,6 @@ "testTimeout": 30000, "setupFilesAfterEnv": [ "/jest/customMatchers.js" - ], - "testPathIgnorePatterns": [ - "/__tests__/fixtures/", - "/__tests__/util/" ] }, "engines": { diff --git a/scripts/rebuildFixtures.js b/scripts/rebuildFixtures.js index 29ba7282b99c..59bb692af79e 100644 --- a/scripts/rebuildFixtures.js +++ b/scripts/rebuildFixtures.js @@ -30,18 +30,18 @@ console.info('\nRebuilding fixtures...\n') Promise.all([ build({ - from: '__tests__/fixtures/tailwind-input.css', - to: '__tests__/fixtures/tailwind-output.css', + from: 'tests/fixtures/tailwind-input.css', + to: 'tests/fixtures/tailwind-output.css', config: {}, }), build({ - from: '__tests__/fixtures/tailwind-input.css', - to: '__tests__/fixtures/tailwind-output-important.css', + from: 'tests/fixtures/tailwind-input.css', + to: 'tests/fixtures/tailwind-output-important.css', config: { important: true }, }), build({ - from: '__tests__/fixtures/tailwind-input.css', - to: '__tests__/fixtures/tailwind-output-no-color-opacity.css', + from: 'tests/fixtures/tailwind-input.css', + to: 'tests/fixtures/tailwind-output-no-color-opacity.css', config: { corePlugins: { textOpacity: false, @@ -53,8 +53,8 @@ Promise.all([ }, }), build({ - from: '__tests__/fixtures/tailwind-input.css', - to: '__tests__/fixtures/tailwind-output-flagged.css', + from: 'tests/fixtures/tailwind-input.css', + to: 'tests/fixtures/tailwind-output-flagged.css', config: { future: 'all', experimental: 'all', diff --git a/src/corePluginList.js b/src/corePluginList.js deleted file mode 100644 index 48496869ccda..000000000000 --- a/src/corePluginList.js +++ /dev/null @@ -1,146 +0,0 @@ -export const corePluginList = [ - 'preflight', - 'container', - 'space', - 'divideWidth', - 'divideColor', - 'divideStyle', - 'divideOpacity', - 'accessibility', - 'appearance', - 'backgroundAttachment', - 'backgroundClip', - 'backgroundColor', - 'backgroundImage', - 'gradientColorStops', - 'backgroundOpacity', - 'backgroundPosition', - 'backgroundRepeat', - 'backgroundSize', - 'backgroundOrigin', - 'borderCollapse', - 'borderColor', - 'borderOpacity', - 'borderRadius', - 'borderStyle', - 'borderWidth', - 'boxDecorationBreak', - 'boxSizing', - 'cursor', - 'display', - 'flexDirection', - 'flexWrap', - 'placeItems', - 'placeContent', - 'placeSelf', - 'alignItems', - 'alignContent', - 'alignSelf', - 'justifyItems', - 'justifyContent', - 'justifySelf', - 'flex', - 'flexGrow', - 'flexShrink', - 'order', - 'float', - 'clear', - 'fontFamily', - 'fontWeight', - 'height', - 'fontSize', - 'lineHeight', - 'listStylePosition', - 'listStyleType', - 'margin', - 'maxHeight', - 'maxWidth', - 'minHeight', - 'minWidth', - 'objectFit', - 'objectPosition', - 'opacity', - 'outline', - 'overflow', - 'overscrollBehavior', - 'padding', - 'placeholderColor', - 'placeholderOpacity', - 'pointerEvents', - 'position', - 'inset', - 'resize', - 'boxShadow', - 'ringWidth', - 'ringOffsetColor', - 'ringOffsetWidth', - 'ringColor', - 'ringOpacity', - 'fill', - 'stroke', - 'strokeWidth', - 'tableLayout', - 'textAlign', - 'textColor', - 'textOpacity', - 'textOverflow', - 'fontStyle', - 'textTransform', - 'textDecoration', - 'fontSmoothing', - 'fontVariantNumeric', - 'letterSpacing', - 'userSelect', - 'verticalAlign', - 'visibility', - 'whitespace', - 'wordBreak', - 'width', - 'zIndex', - 'isolation', - 'gap', - 'gridAutoFlow', - 'gridTemplateColumns', - 'gridAutoColumns', - 'gridColumn', - 'gridColumnStart', - 'gridColumnEnd', - 'gridTemplateRows', - 'gridAutoRows', - 'gridRow', - 'gridRowStart', - 'gridRowEnd', - 'transform', - 'transformOrigin', - 'scale', - 'rotate', - 'translate', - 'skew', - 'transitionProperty', - 'transitionTimingFunction', - 'transitionDuration', - 'transitionDelay', - 'animation', - 'mixBlendMode', - 'backgroundBlendMode', - 'filter', - 'blur', - 'brightness', - 'contrast', - 'dropShadow', - 'grayscale', - 'hueRotate', - 'invert', - 'saturate', - 'sepia', - 'backdropFilter', - 'backdropBlur', - 'backdropBrightness', - 'backdropContrast', - 'backdropGrayscale', - 'backdropHueRotate', - 'backdropInvert', - 'backdropOpacity', - 'backdropSaturate', - 'backdropSepia', -] diff --git a/src/corePlugins.js b/src/corePlugins.js index 4cd58d5cd977..10ad57102627 100644 --- a/src/corePlugins.js +++ b/src/corePlugins.js @@ -1,10 +1,9 @@ -import { corePluginList } from './corePluginList.js' import * as plugins from './plugins/index.js' import configurePlugins from './util/configurePlugins' export default function ({ corePlugins: corePluginConfig }) { - return configurePlugins(corePluginConfig, corePluginList).map((pluginName) => { + return configurePlugins(corePluginConfig, Object.keys(plugins)).map((pluginName) => { return plugins[pluginName]() }) } diff --git a/src/index.js b/src/index.js index fcc4cc6b11b9..00102e3b0fe6 100644 --- a/src/index.js +++ b/src/index.js @@ -13,6 +13,8 @@ import { supportedConfigFiles } from './constants' import defaultConfig from '../stubs/defaultConfig.stub.js' import log from './util/log' +import jitPlugins from './jit' + function resolveConfigPath(filePath) { // require('tailwindcss')({ theme: ..., variants: ... }) if (_.isObject(filePath) && !_.has(filePath, 'config') && !_.isEmpty(filePath)) { @@ -83,7 +85,7 @@ module.exports = function (config) { return { postcssPlugin: 'tailwindcss', - plugins: require('../jit/index.js')(config), + plugins: jitPlugins(config), } } diff --git a/src/index.postcss7.js b/src/index.postcss7.js index fd767f3ebd8a..a04a5ffa3720 100644 --- a/src/index.postcss7.js +++ b/src/index.postcss7.js @@ -14,6 +14,8 @@ import { supportedConfigFiles } from './constants' import defaultConfig from '../stubs/defaultConfig.stub.js' import log from './util/log' +import jitPlugins from './jit' + function resolveConfigPath(filePath) { // require('tailwindcss')({ theme: ..., variants: ... }) if (_.isObject(filePath) && !_.has(filePath, 'config') && !_.isEmpty(filePath)) { @@ -82,7 +84,7 @@ const plugin = postcss.plugin('tailwindcss', (config) => { warned = true } - return postcss(require('../jit/index.js')(config)) + return postcss(jitPlugins(config)) } const plugins = [] diff --git a/src/jit/corePlugins.js b/src/jit/corePlugins.js new file mode 100644 index 000000000000..11886db4fff8 --- /dev/null +++ b/src/jit/corePlugins.js @@ -0,0 +1,174 @@ +import postcss from 'postcss' +import * as corePlugins from '../plugins' +import buildMediaQuery from '../util/buildMediaQuery' +import prefixSelector from '../util/prefixSelector' +import { + updateLastClasses, + updateAllClasses, + transformAllSelectors, + transformAllClasses, + transformLastClasses, +} from '../util/pluginUtils' + +export default { + pseudoClassVariants: function ({ config, addVariant }) { + let pseudoVariants = [ + ['first', 'first-child'], + ['last', 'last-child'], + ['odd', 'nth-child(odd)'], + ['even', 'nth-child(even)'], + 'visited', + 'checked', + 'focus-within', + 'hover', + 'focus', + 'focus-visible', + 'active', + 'disabled', + ] + + for (let variant of pseudoVariants) { + let [variantName, state] = Array.isArray(variant) ? variant : [variant, variant] + + addVariant( + variantName, + transformAllClasses((className, { withPseudo }) => { + return withPseudo(`${variantName}${config('separator')}${className}`, state) + }) + ) + } + + for (let variant of pseudoVariants) { + let [variantName, state] = Array.isArray(variant) ? variant : [variant, variant] + let groupVariantName = `group-${variantName}` + + addVariant( + groupVariantName, + transformAllSelectors((selector) => { + let variantSelector = updateAllClasses(selector, (className) => { + return `${groupVariantName}${config('separator')}${className}` + }) + + if (variantSelector === selector) { + return null + } + + let groupSelector = prefixSelector( + config('prefix'), + `.group${config('separator')}${state}` + ) + + return `${groupSelector} ${variantSelector}` + }) + ) + } + }, + directionVariants: function ({ config, addVariant }) { + addVariant( + 'ltr', + transformAllSelectors( + (selector) => + `[dir="ltr"] ${updateAllClasses( + selector, + (className) => `ltr${config('separator')}${className}` + )}` + ) + ) + + addVariant( + 'rtl', + transformAllSelectors( + (selector) => + `[dir="rtl"] ${updateAllClasses( + selector, + (className) => `rtl${config('separator')}${className}` + )}` + ) + ) + }, + reducedMotionVariants: function ({ config, addVariant }) { + addVariant( + 'motion-safe', + transformLastClasses( + (className) => { + return `motion-safe${config('separator')}${className}` + }, + () => + postcss.atRule({ + name: 'media', + params: '(prefers-reduced-motion: no-preference)', + }) + ) + ) + + addVariant( + 'motion-reduce', + transformLastClasses( + (className) => { + return `motion-reduce${config('separator')}${className}` + }, + () => + postcss.atRule({ + name: 'media', + params: '(prefers-reduced-motion: reduce)', + }) + ) + ) + }, + darkVariants: function ({ config, addVariant }) { + if (config('darkMode') === 'class') { + addVariant( + 'dark', + transformAllSelectors((selector) => { + let variantSelector = updateLastClasses(selector, (className) => { + return `dark${config('separator')}${className}` + }) + + if (variantSelector === selector) { + return null + } + + let darkSelector = prefixSelector(config('prefix'), `.dark`) + + return `${darkSelector} ${variantSelector}` + }) + ) + } else if (config('darkMode') === 'media') { + addVariant( + 'dark', + transformLastClasses( + (className) => { + return `dark${config('separator')}${className}` + }, + () => + postcss.atRule({ + name: 'media', + params: '(prefers-color-scheme: dark)', + }) + ) + ) + } + }, + screenVariants: function ({ config, theme, addVariant }) { + for (let screen in theme('screens')) { + let size = theme('screens')[screen] + let query = buildMediaQuery(size) + + addVariant( + screen, + transformLastClasses( + (className) => { + return `${screen}${config('separator')}${className}` + }, + () => postcss.atRule({ name: 'media', params: query }) + ) + ) + } + }, + + ...Object.fromEntries( + Object.entries(corePlugins).map(([pluginName, plugin]) => { + return [pluginName, plugin()] + }) + ), +} diff --git a/jit/index.js b/src/jit/index.js similarity index 62% rename from jit/index.js rename to src/jit/index.js index e7d466deb832..0c8f63c2fcd1 100644 --- a/jit/index.js +++ b/src/jit/index.js @@ -1,18 +1,18 @@ -const postcss = require('postcss') +import postcss from 'postcss' -const evaluateTailwindFunctions = require('../lib/lib/evaluateTailwindFunctions').default -const substituteScreenAtRules = require('../lib/lib/substituteScreenAtRules').default +import evaluateTailwindFunctions from '../lib/evaluateTailwindFunctions' +import substituteScreenAtRules from '../lib/substituteScreenAtRules' -const rewriteTailwindImports = require('./lib/rewriteTailwindImports') -const setupContext = require('./lib/setupContext') -const removeLayerAtRules = require('./lib/removeLayerAtRules') -const expandTailwindAtRules = require('./lib/expandTailwindAtRules') -const expandApplyAtRules = require('./lib/expandApplyAtRules') -const collapseAdjacentRules = require('./lib/collapseAdjacentRules') +import rewriteTailwindImports from './lib/rewriteTailwindImports' +import setupContext from './lib/setupContext' +import removeLayerAtRules from './lib/removeLayerAtRules' +import expandTailwindAtRules from './lib/expandTailwindAtRules' +import expandApplyAtRules from './lib/expandApplyAtRules' +import collapseAdjacentRules from './lib/collapseAdjacentRules' -const { env } = require('./lib/sharedState') +import { env } from './lib/sharedState' -module.exports = (configOrPath = {}) => { +export default function (configOrPath = {}) { return [ env.DEBUG && function (root) { @@ -57,5 +57,3 @@ module.exports = (configOrPath = {}) => { }, ].filter(Boolean) } - -module.exports.postcss = true diff --git a/jit/lib/collapseAdjacentRules.js b/src/jit/lib/collapseAdjacentRules.js similarity index 90% rename from jit/lib/collapseAdjacentRules.js rename to src/jit/lib/collapseAdjacentRules.js index 5f9c0166a9c7..7afdd6f6289e 100644 --- a/jit/lib/collapseAdjacentRules.js +++ b/src/jit/lib/collapseAdjacentRules.js @@ -4,7 +4,7 @@ let comparisonMap = { } let types = new Set(Object.keys(comparisonMap)) -function collapseAdjacentRules() { +export default function collapseAdjacentRules() { return (root) => { let currentRule = null root.each((node) => { @@ -31,5 +31,3 @@ function collapseAdjacentRules() { }) } } - -module.exports = collapseAdjacentRules diff --git a/jit/lib/expandApplyAtRules.js b/src/jit/lib/expandApplyAtRules.js similarity index 96% rename from jit/lib/expandApplyAtRules.js rename to src/jit/lib/expandApplyAtRules.js index d76274df5a8e..138819240c13 100644 --- a/jit/lib/expandApplyAtRules.js +++ b/src/jit/lib/expandApplyAtRules.js @@ -1,6 +1,7 @@ -const postcss = require('postcss') -const { resolveMatches } = require('./generateRules') -const { bigSign, escapeClassName } = require('./utils') +import postcss from 'postcss' +import { resolveMatches } from './generateRules' +import bigSign from '../../util/bigSign' +import escapeClassName from '../../util/escapeClassName' function buildApplyCache(applyCandidates, context) { for (let candidate of applyCandidates) { @@ -228,11 +229,9 @@ function processApply(root, context) { } } -function expandApplyAtRules(context) { +export default function expandApplyAtRules(context) { return (root) => { partitionApplyParents(root) processApply(root, context) } } - -module.exports = expandApplyAtRules diff --git a/jit/lib/expandTailwindAtRules.js b/src/jit/lib/expandTailwindAtRules.js similarity index 95% rename from jit/lib/expandTailwindAtRules.js rename to src/jit/lib/expandTailwindAtRules.js index 5ed97751c4f3..1560895b692f 100644 --- a/jit/lib/expandTailwindAtRules.js +++ b/src/jit/lib/expandTailwindAtRules.js @@ -1,10 +1,11 @@ -const fs = require('fs') -const path = require('path') -const fastGlob = require('fast-glob') -const parseGlob = require('parse-glob') -const sharedState = require('./sharedState') -const { generateRules } = require('./generateRules') -const { bigSign, cloneNodes } = require('./utils') +import fs from 'fs' +import path from 'path' +import fastGlob from 'fast-glob' +import parseGlob from 'parse-glob' +import * as sharedState from './sharedState' +import { generateRules } from './generateRules' +import bigSign from '../../util/bigSign' +import cloneNodes from '../../util/cloneNodes' let env = sharedState.env let contentMatchCache = sharedState.contentMatchCache @@ -107,7 +108,7 @@ function buildStylesheet(rules, context) { return returnValue } -function expandTailwindAtRules(context, registerDependency) { +export default function expandTailwindAtRules(context, registerDependency) { return (root) => { let foundTailwind = false let layerNodes = { @@ -278,5 +279,3 @@ function expandTailwindAtRules(context, registerDependency) { context.changedFiles.clear() } } - -module.exports = expandTailwindAtRules diff --git a/jit/lib/generateRules.js b/src/jit/lib/generateRules.js similarity index 95% rename from jit/lib/generateRules.js rename to src/jit/lib/generateRules.js index 5d06d2beeaf0..43bfd6c67e26 100644 --- a/jit/lib/generateRules.js +++ b/src/jit/lib/generateRules.js @@ -1,9 +1,9 @@ -const postcss = require('postcss') -const parseObjectStyles = require('../../lib/util/parseObjectStyles').default -const { isPlainObject } = require('./utils') -const selectorParser = require('postcss-selector-parser') -const prefixSelector = require('../../lib/util/prefixSelector').default -const { updateAllClasses } = require('../pluginUtils') +import postcss from 'postcss' +import selectorParser from 'postcss-selector-parser' +import parseObjectStyles from '../../util/parseObjectStyles' +import isPlainObject from '../../util/isPlainObject' +import prefixSelector from '../../util/prefixSelector' +import { updateAllClasses } from '../../util/pluginUtils' let classNameParser = selectorParser((selectors) => { return selectors.first.filter(({ type }) => type === 'class').pop().value @@ -312,7 +312,4 @@ function generateRules(candidates, context) { }) } -module.exports = { - resolveMatches, - generateRules, -} +export { resolveMatches, generateRules } diff --git a/jit/lib/removeLayerAtRules.js b/src/jit/lib/removeLayerAtRules.js similarity index 70% rename from jit/lib/removeLayerAtRules.js rename to src/jit/lib/removeLayerAtRules.js index 91fcaeb5991d..009ae2004828 100644 --- a/jit/lib/removeLayerAtRules.js +++ b/src/jit/lib/removeLayerAtRules.js @@ -1,4 +1,4 @@ -function removeLayerAtRules() { +export default function removeLayerAtRules() { return (root) => { root.walkAtRules((rule) => { if (['layer', 'responsive', 'variants'].includes(rule.name)) { @@ -7,5 +7,3 @@ function removeLayerAtRules() { }) } } - -module.exports = removeLayerAtRules diff --git a/jit/lib/rewriteTailwindImports.js b/src/jit/lib/rewriteTailwindImports.js similarity index 90% rename from jit/lib/rewriteTailwindImports.js rename to src/jit/lib/rewriteTailwindImports.js index 31a39c91bc08..b022ebd64473 100644 --- a/jit/lib/rewriteTailwindImports.js +++ b/src/jit/lib/rewriteTailwindImports.js @@ -1,4 +1,4 @@ -function rewriteTailwindImports(root) { +export default function rewriteTailwindImports(root) { root.walkAtRules('import', (atRule) => { if (atRule.params === '"tailwindcss/base"' || atRule.params === "'tailwindcss/base'") { atRule.name = 'tailwind' @@ -24,5 +24,3 @@ function rewriteTailwindImports(root) { } }) } - -module.exports = rewriteTailwindImports diff --git a/jit/lib/setupContext.js b/src/jit/lib/setupContext.js similarity index 95% rename from jit/lib/setupContext.js rename to src/jit/lib/setupContext.js index aeb32cc75c3d..c4bf0cbe4497 100644 --- a/jit/lib/setupContext.js +++ b/src/jit/lib/setupContext.js @@ -1,26 +1,28 @@ -const fs = require('fs') -const url = require('url') -const os = require('os') -const path = require('path') -const crypto = require('crypto') -const chokidar = require('chokidar') -const postcss = require('postcss') -const hash = require('object-hash') -const dlv = require('dlv') -const selectorParser = require('postcss-selector-parser') -const LRU = require('quick-lru') -const normalizePath = require('normalize-path') - -const transformThemeValue = require('../../lib/util/transformThemeValue').default -const parseObjectStyles = require('../../lib/util/parseObjectStyles').default -const getModuleDependencies = require('../../lib/lib/getModuleDependencies').default -const prefixSelector = require('../../lib/util/prefixSelector').default - -const resolveConfig = require('../../resolveConfig') - -const sharedState = require('./sharedState') -const corePlugins = require('../corePlugins') -const { isPlainObject, escapeClassName } = require('./utils') +import fs from 'fs' +import url from 'url' +import os from 'os' +import path from 'path' +import crypto from 'crypto' +import chokidar from 'chokidar' +import postcss from 'postcss' +import hash from 'object-hash' +import dlv from 'dlv' +import selectorParser from 'postcss-selector-parser' +import LRU from 'quick-lru' +import normalizePath from 'normalize-path' + +import transformThemeValue from '../../util/transformThemeValue' +import parseObjectStyles from '../../util/parseObjectStyles' +import getModuleDependencies from '../../lib/getModuleDependencies' +import prefixSelector from '../../util/prefixSelector' + +import resolveConfig from '../../../resolveConfig' + +import corePlugins from '../corePlugins' +import isPlainObject from '../../util/isPlainObject' +import escapeClassName from '../../util/escapeClassName' + +import * as sharedState from './sharedState' let contextMap = sharedState.contextMap let configContextMap = sharedState.configContextMap @@ -675,7 +677,7 @@ function cleanupContext(context) { // Retrieve an existing context from cache if possible (since contexts are unique per // source path), or set up a new one (including setting up watchers and registering // plugins) then return it -function setupContext(configOrPath) { +export default function setupContext(configOrPath) { return (result, root) => { let foundTailwind = false @@ -852,5 +854,3 @@ function setupContext(configOrPath) { return context } } - -module.exports = setupContext diff --git a/src/jit/lib/sharedState.js b/src/jit/lib/sharedState.js new file mode 100644 index 000000000000..78ed1ce5d9ff --- /dev/null +++ b/src/jit/lib/sharedState.js @@ -0,0 +1,13 @@ +import LRU from 'quick-lru' + +export const env = { + TAILWIND_MODE: process.env.TAILWIND_MODE, + NODE_ENV: process.env.NODE_ENV, + DEBUG: process.env.DEBUG !== undefined, + TAILWIND_DISABLE_TOUCH: process.env.TAILWIND_DISABLE_TOUCH !== undefined, + TAILWIND_TOUCH_DIR: process.env.TAILWIND_TOUCH_DIR, +} +export const contextMap = new Map() +export const configContextMap = new Map() +export const contextSourcesMap = new Map() +export const contentMatchCache = new LRU({ maxSize: 25000 }) diff --git a/src/plugins/animation.js b/src/plugins/animation.js index b3d7d07690e4..0a055fe28894 100644 --- a/src/plugins/animation.js +++ b/src/plugins/animation.js @@ -1,27 +1,62 @@ import _ from 'lodash' -import nameClass from '../util/nameClass' import parseAnimationValue from '../util/parseAnimationValue' +import nameClass from '../util/nameClass' export default function () { - return function ({ addUtilities, theme, variants, prefix }) { - const prefixName = (name) => prefix(`.${name}`).slice(1) - const keyframesConfig = theme('keyframes') - const keyframesStyles = _.mapKeys( - keyframesConfig, - (_keyframes, name) => `@keyframes ${prefixName(name)}` - ) + 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 }, + ], + ] + }) + ) + + matchUtilities({ + animate: [ + (modifier, { theme }) => { + let value = theme.animation[modifier] + + if (value === undefined) { + return [] + } + + let { name: animationName } = parseAnimationValue(value) + + return [ + keyframes[animationName], + { [nameClass('animate', modifier)]: { animation: value } }, + ].filter(Boolean) + }, + ], + }) + } 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 }) + 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')) + 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')) + } } } diff --git a/src/plugins/backdropBlur.js b/src/plugins/backdropBlur.js index 8872a9d3d292..690a6c3c94d6 100644 --- a/src/plugins/backdropBlur.js +++ b/src/plugins/backdropBlur.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/backdropBrightness.js b/src/plugins/backdropBrightness.js index e7e4cc792b91..2ba1628dba79 100644 --- a/src/plugins/backdropBrightness.js +++ b/src/plugins/backdropBrightness.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/backdropContrast.js b/src/plugins/backdropContrast.js index 5eeb0cf0321e..ab5c54013e45 100644 --- a/src/plugins/backdropContrast.js +++ b/src/plugins/backdropContrast.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/backdropGrayscale.js b/src/plugins/backdropGrayscale.js index 6efa696ba956..193bf313db2c 100644 --- a/src/plugins/backdropGrayscale.js +++ b/src/plugins/backdropGrayscale.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/backdropHueRotate.js b/src/plugins/backdropHueRotate.js index 31cedb700c2a..8c804f999cfb 100644 --- a/src/plugins/backdropHueRotate.js +++ b/src/plugins/backdropHueRotate.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/backdropInvert.js b/src/plugins/backdropInvert.js index 2055216a39b0..51e892a0189e 100644 --- a/src/plugins/backdropInvert.js +++ b/src/plugins/backdropInvert.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/backdropOpacity.js b/src/plugins/backdropOpacity.js index 0abdfaba6cc3..c61629b6a491 100644 --- a/src/plugins/backdropOpacity.js +++ b/src/plugins/backdropOpacity.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/backdropSaturate.js b/src/plugins/backdropSaturate.js index 2f124f55d8fa..2d3130ca603e 100644 --- a/src/plugins/backdropSaturate.js +++ b/src/plugins/backdropSaturate.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/backdropSepia.js b/src/plugins/backdropSepia.js index a1282365c3a4..9085ded64df3 100644 --- a/src/plugins/backdropSepia.js +++ b/src/plugins/backdropSepia.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/backgroundColor.js b/src/plugins/backgroundColor.js index cbde662f37c9..ec420a2e2fd6 100644 --- a/src/plugins/backgroundColor.js +++ b/src/plugins/backgroundColor.js @@ -3,29 +3,60 @@ 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 ({ addUtilities, theme, variants, corePlugins }) { - const colors = flattenColorPalette(theme('backgroundColor')) - - const getProperties = (value) => { - if (corePlugins('backgroundOpacity')) { - return withAlphaVariable({ - color: value, - property: 'background-color', - variable: '--tw-bg-opacity', - }) - } + return function ({ config, matchUtilities, addUtilities, theme, variants, corePlugins }) { + if (config('mode') === 'jit') { + let colorPalette = flattenColorPalette(theme('backgroundColor')) - return { 'background-color': toColorValue(value) } - } + matchUtilities({ + bg: (modifier) => { + let value = asColor(modifier, colorPalette) - const utilities = _.fromPairs( - _.map(colors, (value, modifier) => { - return [nameClass('bg', modifier), getProperties(value)] + if (value === undefined) { + return [] + } + + if (!corePlugins('backgroundOpacity')) { + return { + [nameClass('bg', modifier)]: { + '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', + }) + } - addUtilities(utilities, variants('backgroundColor')) + return { 'background-color': toColorValue(value) } + } + + const utilities = _.fromPairs( + _.map(colors, (value, modifier) => { + return [nameClass('bg', modifier), getProperties(value)] + }) + ) + + addUtilities(utilities, variants('backgroundColor')) + } } } diff --git a/src/plugins/backgroundImage.js b/src/plugins/backgroundImage.js index dce7cbeb53f4..ce1c7f31560d 100644 --- a/src/plugins/backgroundImage.js +++ b/src/plugins/backgroundImage.js @@ -1,19 +1,8 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' +import { asLookupValue } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(theme('backgroundImage'), (value, modifier) => { - return [ - nameClass('bg', modifier), - { - 'background-image': value, - }, - ] - }) - ) - - addUtilities(utilities, variants('backgroundImage')) - } + return createUtilityPlugin('backgroundImage', [['bg', ['background-image']]], { + resolveArbitraryValue: asLookupValue, + }) } diff --git a/src/plugins/backgroundPosition.js b/src/plugins/backgroundPosition.js index 6d29e71d6a52..10a26a3cd623 100644 --- a/src/plugins/backgroundPosition.js +++ b/src/plugins/backgroundPosition.js @@ -1,19 +1,8 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' +import { asLookupValue } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(theme('backgroundPosition'), (value, modifier) => { - return [ - nameClass('bg', modifier), - { - 'background-position': value, - }, - ] - }) - ) - - addUtilities(utilities, variants('backgroundPosition')) - } + return createUtilityPlugin('backgroundPosition', [['bg', ['background-position']]], { + resolveArbitraryValue: asLookupValue, + }) } diff --git a/src/plugins/backgroundSize.js b/src/plugins/backgroundSize.js index 8f362a8b1c28..5b9138227285 100644 --- a/src/plugins/backgroundSize.js +++ b/src/plugins/backgroundSize.js @@ -1,19 +1,8 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' +import { asLookupValue } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(theme('backgroundSize'), (value, modifier) => { - return [ - nameClass('bg', modifier), - { - 'background-size': value, - }, - ] - }) - ) - - addUtilities(utilities, variants('backgroundSize')) - } + return createUtilityPlugin('backgroundSize', [['bg', ['background-size']]], { + resolveArbitraryValue: asLookupValue, + }) } diff --git a/src/plugins/blur.js b/src/plugins/blur.js index 4b293ae1d799..0faabe2118e8 100644 --- a/src/plugins/blur.js +++ b/src/plugins/blur.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/borderColor.js b/src/plugins/borderColor.js index df68ce3a0fd7..a8251c4edf81 100644 --- a/src/plugins/borderColor.js +++ b/src/plugins/borderColor.js @@ -1,31 +1,66 @@ import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import nameClass from '../util/nameClass' 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 ({ addUtilities, theme, variants, corePlugins }) { - const colors = flattenColorPalette(theme('borderColor')) - - const getProperties = (value) => { - if (corePlugins('borderOpacity')) { - return withAlphaVariable({ - color: value, - property: 'border-color', - variable: '--tw-border-opacity', - }) - } + return function ({ config, matchUtilities, addUtilities, theme, variants, corePlugins }) { + if (config('mode') === 'jit') { + let colorPalette = flattenColorPalette(theme('borderColor')) - return { 'border-color': toColorValue(value) } - } + matchUtilities({ + border: (modifier) => { + if (modifier === 'DEFAULT') { + return [] + } + + let value = asColor(modifier, colorPalette) + + if (value === undefined) { + return [] + } - const utilities = _.fromPairs( - _.map(_.omit(colors, 'DEFAULT'), (value, modifier) => { - return [nameClass('border', modifier), getProperties(value)] + if (!corePlugins('borderOpacity')) { + return { + [nameClass('border', modifier)]: { + '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) } + } - addUtilities(utilities, variants('borderColor')) + const utilities = _.fromPairs( + _.map(_.omit(colors, 'DEFAULT'), (value, modifier) => { + return [nameClass('border', modifier), getProperties(value)] + }) + ) + + addUtilities(utilities, variants('borderColor')) + } } } diff --git a/src/plugins/borderRadius.js b/src/plugins/borderRadius.js index 1df34a5352e8..e52aeec3143c 100644 --- a/src/plugins/borderRadius.js +++ b/src/plugins/borderRadius.js @@ -1,44 +1,19 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - const generators = [ - (value, modifier) => ({ - [nameClass('rounded', modifier)]: { borderRadius: `${value}` }, - }), - (value, modifier) => ({ - [nameClass('rounded-t', modifier)]: { - borderTopLeftRadius: `${value}`, - borderTopRightRadius: `${value}`, - }, - [nameClass('rounded-r', modifier)]: { - borderTopRightRadius: `${value}`, - borderBottomRightRadius: `${value}`, - }, - [nameClass('rounded-b', modifier)]: { - borderBottomRightRadius: `${value}`, - borderBottomLeftRadius: `${value}`, - }, - [nameClass('rounded-l', modifier)]: { - borderTopLeftRadius: `${value}`, - borderBottomLeftRadius: `${value}`, - }, - }), - (value, modifier) => ({ - [nameClass('rounded-tl', modifier)]: { borderTopLeftRadius: `${value}` }, - [nameClass('rounded-tr', modifier)]: { borderTopRightRadius: `${value}` }, - [nameClass('rounded-br', modifier)]: { borderBottomRightRadius: `${value}` }, - [nameClass('rounded-bl', modifier)]: { borderBottomLeftRadius: `${value}` }, - }), - ] - - const utilities = _.flatMap(generators, (generator) => { - return _.flatMap(theme('borderRadius'), (value, modifier) => { - return generator(value, modifier) - }) - }) - - addUtilities(utilities, variants('borderRadius')) - } + return createUtilityPlugin('borderRadius', [ + ['rounded', ['border-radius']], + [ + ['rounded-t', ['border-top-left-radius', 'border-top-right-radius']], + ['rounded-r', ['border-top-right-radius', 'border-bottom-right-radius']], + ['rounded-b', ['border-bottom-right-radius', 'border-bottom-left-radius']], + ['rounded-l', ['border-top-left-radius', 'border-bottom-left-radius']], + ], + [ + ['rounded-tl', ['border-top-left-radius']], + ['rounded-tr', ['border-top-right-radius']], + ['rounded-br', ['border-bottom-right-radius']], + ['rounded-bl', ['border-bottom-left-radius']], + ], + ]) } diff --git a/src/plugins/borderWidth.js b/src/plugins/borderWidth.js index 1e7a81003040..39871f28742a 100644 --- a/src/plugins/borderWidth.js +++ b/src/plugins/borderWidth.js @@ -1,26 +1,18 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import { asLength } from '../util/pluginUtils' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - const generators = [ - (value, modifier) => ({ - [nameClass('border', modifier)]: { borderWidth: `${value}` }, - }), - (value, modifier) => ({ - [nameClass('border-t', modifier)]: { borderTopWidth: `${value}` }, - [nameClass('border-r', modifier)]: { borderRightWidth: `${value}` }, - [nameClass('border-b', modifier)]: { borderBottomWidth: `${value}` }, - [nameClass('border-l', modifier)]: { borderLeftWidth: `${value}` }, - }), - ] - - const utilities = _.flatMap(generators, (generator) => { - return _.flatMap(theme('borderWidth'), (value, modifier) => { - return generator(value, modifier) - }) - }) - - addUtilities(utilities, variants('borderWidth')) - } + return createUtilityPlugin( + 'borderWidth', + [ + ['border', ['border-width']], + [ + ['border-t', ['border-top-width']], + ['border-r', ['border-right-width']], + ['border-b', ['border-bottom-width']], + ['border-l', ['border-left-width']], + ], + ], + { resolveArbitraryValue: asLength } + ) } diff --git a/src/plugins/boxShadow.js b/src/plugins/boxShadow.js index e29cd014c0fb..5391e1ccbbc7 100644 --- a/src/plugins/boxShadow.js +++ b/src/plugins/boxShadow.js @@ -1,33 +1,67 @@ import _ from 'lodash' +import transformThemeValue from '../util/transformThemeValue' import nameClass from '../util/nameClass' +let transformValue = transformThemeValue('boxShadow') +let shadowReset = { + '*': { + '--tw-shadow': '0 0 #0000', + }, +} + export default function () { - return function ({ addUtilities, theme, variants }) { - addUtilities( - { - '*': { - '--tw-shadow': '0 0 #0000', - }, - }, - { respectImportant: false } - ) + return function ({ config, matchUtilities, addBase, addUtilities, theme, variants }) { + if (config('mode') === 'jit') { + addBase(shadowReset) + matchUtilities({ + shadow: (modifier, { theme }) => { + let value = transformValue(theme.boxShadow[modifier]) - 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(', '), - }, - ] + 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 } + ) + + 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(', '), + }, + ] + }) + ) - addUtilities(utilities, variants('boxShadow')) + addUtilities(utilities, variants('boxShadow')) + } } } diff --git a/src/plugins/brightness.js b/src/plugins/brightness.js index 0b632da99974..dc7af61de27d 100644 --- a/src/plugins/brightness.js +++ b/src/plugins/brightness.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/contrast.js b/src/plugins/contrast.js index 7593f98512c3..bb5503ba2989 100644 --- a/src/plugins/contrast.js +++ b/src/plugins/contrast.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/cursor.js b/src/plugins/cursor.js index bfd32d135197..42096c659ddc 100644 --- a/src/plugins/cursor.js +++ b/src/plugins/cursor.js @@ -1,19 +1,5 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(theme('cursor'), (value, modifier) => { - return [ - nameClass('cursor', modifier), - { - cursor: value, - }, - ] - }) - ) - - addUtilities(utilities, variants('cursor')) - } + return createUtilityPlugin('cursor') } diff --git a/src/plugins/divideColor.js b/src/plugins/divideColor.js index 3550509f9485..1e90968dc34a 100644 --- a/src/plugins/divideColor.js +++ b/src/plugins/divideColor.js @@ -1,34 +1,72 @@ import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import nameClass from '../util/nameClass' 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 ({ addUtilities, theme, variants, corePlugins }) { - const colors = flattenColorPalette(theme('divideColor')) - - const getProperties = (value) => { - if (corePlugins('divideOpacity')) { - return withAlphaVariable({ - color: value, - property: 'border-color', - variable: '--tw-divide-opacity', - }) - } + return function ({ config, matchUtilities, addUtilities, theme, variants, corePlugins }) { + if (config('mode') === 'jit') { + let colorPalette = flattenColorPalette(theme('divideColor')) - return { 'border-color': toColorValue(value) } - } + matchUtilities({ + divide: (modifier) => { + if (modifier === 'DEFAULT') { + return [] + } + + let value = asColor(modifier, colorPalette) + + if (value === undefined) { + return [] + } - const utilities = _.fromPairs( - _.map(_.omit(colors, 'DEFAULT'), (value, modifier) => { - return [ - `${nameClass('divide', modifier)} > :not([hidden]) ~ :not([hidden])`, - getProperties(value), - ] + if (!corePlugins('divideOpacity')) { + return { + [`${nameClass('divide', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + 'border-color': value, + }, + } + } + + return { + [`${nameClass( + 'divide', + modifier + )} > :not([hidden]) ~ :not([hidden])`]: withAlphaVariable({ + color: colorPalette[modifier], + 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) } + } - addUtilities(utilities, variants('divideColor')) + 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 d5bc595d89e3..3f247794821b 100644 --- a/src/plugins/divideOpacity.js +++ b/src/plugins/divideOpacity.js @@ -1,19 +1,38 @@ import _ from 'lodash' import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(theme('divideOpacity'), (value, modifier) => { - return [ - `${nameClass('divide-opacity', modifier)} > :not([hidden]) ~ :not([hidden])`, - { - '--tw-divide-opacity': value, - }, - ] + 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 { + [`${nameClass('divide-opacity', modifier)} > :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')) + addUtilities(utilities, variants('divideOpacity')) + } } } diff --git a/src/plugins/divideWidth.js b/src/plugins/divideWidth.js index 7c3eb5cf785f..05a1f42e3607 100644 --- a/src/plugins/divideWidth.js +++ b/src/plugins/divideWidth.js @@ -1,42 +1,91 @@ import _ from 'lodash' import nameClass from '../util/nameClass' +import { asLength } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - 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', - }, + 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 [] + } + + value = value === '0' ? '0px' : value + + return { + [`${nameClass('divide-x', modifier)} > :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 [] + } + + value = value === '0' ? '0px' : value + + return { + [`${nameClass('divide-y', modifier)} > :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({ + '.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)))`, + }, + } }, ] - }) - addUtilities(utilities, variants('divideWidth')) + 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')) + } } } diff --git a/src/plugins/fill.js b/src/plugins/fill.js index 19c339779c40..a31353de6b8c 100644 --- a/src/plugins/fill.js +++ b/src/plugins/fill.js @@ -1,18 +1,35 @@ import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import nameClass from '../util/nameClass' import toColorValue from '../util/toColorValue' +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - const colors = flattenColorPalette(theme('fill')) + return function ({ config, matchUtilities, addUtilities, theme, variants }) { + if (config('mode') === 'jit') { + let colorPalette = flattenColorPalette(theme('fill')) + + matchUtilities({ + fill: (modifier) => { + let value = asValue(modifier, colorPalette) - const utilities = _.fromPairs( - _.map(colors, (value, modifier) => { - return [nameClass('fill', modifier), { fill: toColorValue(value) }] + if (value === undefined) { + return [] + } + + return { [nameClass('fill', modifier)]: { 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')) + addUtilities(utilities, variants('fill')) + } } } diff --git a/src/plugins/flex.js b/src/plugins/flex.js index 6f51d9ad97d9..f833f5013043 100644 --- a/src/plugins/flex.js +++ b/src/plugins/flex.js @@ -1,19 +1,5 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(theme('flex'), (value, modifier) => { - return [ - nameClass('flex', modifier), - { - flex: value, - }, - ] - }) - ) - - addUtilities(utilities, variants('flex')) - } + return createUtilityPlugin('flex') } diff --git a/src/plugins/flexGrow.js b/src/plugins/flexGrow.js index d4d8a7366cae..9c82903a220b 100644 --- a/src/plugins/flexGrow.js +++ b/src/plugins/flexGrow.js @@ -1,20 +1,5 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - addUtilities( - _.fromPairs( - _.map(theme('flexGrow'), (value, modifier) => { - return [ - nameClass('flex-grow', modifier), - { - 'flex-grow': value, - }, - ] - }) - ), - variants('flexGrow') - ) - } + return createUtilityPlugin('flexGrow', [['flex-grow', ['flex-grow']]]) } diff --git a/src/plugins/flexShrink.js b/src/plugins/flexShrink.js index 842a2fd80006..c9be406ea62a 100644 --- a/src/plugins/flexShrink.js +++ b/src/plugins/flexShrink.js @@ -1,20 +1,5 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - addUtilities( - _.fromPairs( - _.map(theme('flexShrink'), (value, modifier) => { - return [ - nameClass('flex-shrink', modifier), - { - 'flex-shrink': value, - }, - ] - }) - ), - variants('flexShrink') - ) - } + return createUtilityPlugin('flexShrink', [['flex-shrink', ['flex-shrink']]]) } diff --git a/src/plugins/fontFamily.js b/src/plugins/fontFamily.js index 6153989f66cf..609af73e8a9c 100644 --- a/src/plugins/fontFamily.js +++ b/src/plugins/fontFamily.js @@ -1,5 +1,8 @@ import createUtilityPlugin from '../util/createUtilityPlugin' +import { asLookupValue } from '../util/pluginUtils' export default function () { - return createUtilityPlugin('fontFamily', [['font', ['fontFamily']]]) + return createUtilityPlugin('fontFamily', [['font', ['fontFamily']]], { + resolveArbitraryValue: asLookupValue, + }) } diff --git a/src/plugins/fontSize.js b/src/plugins/fontSize.js index 17453ef8bd01..24c5218b192a 100644 --- a/src/plugins/fontSize.js +++ b/src/plugins/fontSize.js @@ -1,36 +1,81 @@ import _ from 'lodash' import nameClass from '../util/nameClass' +import { asLength } from '../util/pluginUtils' +import isPlainObject from '../util/isPlainObject' export default function () { - return function ({ addUtilities, theme, variants }) { - 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 function ({ config, matchUtilities, addUtilities, theme, variants }) { + if (config('mode') === 'jit') { + matchUtilities({ + text: (modifier, { theme }) => { + let value = theme.fontSize[modifier] - return [ - nameClass('text', modifier), - { - 'font-size': fontSize, - ...(lineHeight === undefined - ? {} - : { - 'line-height': lineHeight, - }), - ...(letterSpacing === undefined - ? {} + if (value === undefined) { + value = asLength(modifier, {}) + + return value === undefined + ? [] : { - 'letter-spacing': letterSpacing, - }), - }, - ] + [nameClass('text', modifier)]: { + 'font-size': value, + }, + } + } + + let [fontSize, options] = Array.isArray(value) ? value : [value] + let { lineHeight, letterSpacing } = isPlainObject(options) + ? options + : { + lineHeight: options, + } + + return { + [nameClass('text', modifier)]: { + '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')) + addUtilities(utilities, variants('fontSize')) + } } } diff --git a/src/plugins/fontVariantNumeric.js b/src/plugins/fontVariantNumeric.js index 726225f405f5..b8656bdea352 100644 --- a/src/plugins/fontVariantNumeric.js +++ b/src/plugins/fontVariantNumeric.js @@ -1,45 +1,81 @@ +let fontVariantBaseStyles = { + '.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions': { + '--tw-ordinal': 'var(--tw-empty,/*!*/ /*!*/)', + '--tw-slashed-zero': 'var(--tw-empty,/*!*/ /*!*/)', + '--tw-numeric-figure': 'var(--tw-empty,/*!*/ /*!*/)', + '--tw-numeric-spacing': 'var(--tw-empty,/*!*/ /*!*/)', + '--tw-numeric-fraction': 'var(--tw-empty,/*!*/ /*!*/)', + 'font-variant-numeric': + 'var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)', + }, +} + export default function () { - return function ({ addUtilities, variants }) { - addUtilities( - { - '.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions': { - '--tw-ordinal': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-slashed-zero': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-numeric-figure': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-numeric-spacing': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-numeric-fraction': 'var(--tw-empty,/*!*/ /*!*/)', - 'font-variant-numeric': - 'var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)', - }, - '.normal-nums': { - 'font-variant-numeric': 'normal', - }, - '.ordinal': { - '--tw-ordinal': 'ordinal', - }, - '.slashed-zero': { - '--tw-slashed-zero': 'slashed-zero', - }, - '.lining-nums': { - '--tw-numeric-figure': 'lining-nums', - }, - '.oldstyle-nums': { - '--tw-numeric-figure': 'oldstyle-nums', - }, - '.proportional-nums': { - '--tw-numeric-spacing': 'proportional-nums', + return function ({ config, matchUtilities, addUtilities, variants }) { + if (config('mode') === 'jit') { + matchUtilities({ + 'normal-nums': fontVariantBaseStyles, + ordinal: fontVariantBaseStyles, + 'slashed-zero': fontVariantBaseStyles, + 'lining-nums': fontVariantBaseStyles, + 'oldstyle-nums': fontVariantBaseStyles, + 'proportional-nums': fontVariantBaseStyles, + 'tabular-nums': fontVariantBaseStyles, + 'diagonal-fractions': fontVariantBaseStyles, + 'stacked-fractions': fontVariantBaseStyles, + }) + + matchUtilities({ + 'normal-nums': { '.normal-nums': { 'font-variant-numeric': 'normal' } }, + ordinal: { '.ordinal': { '--tw-ordinal': 'ordinal' } }, + 'slashed-zero': { '.slashed-zero': { '--tw-slashed-zero': 'slashed-zero' } }, + 'lining-nums': { '.lining-nums': { '--tw-numeric-figure': 'lining-nums' } }, + 'oldstyle-nums': { '.oldstyle-nums': { '--tw-numeric-figure': 'oldstyle-nums' } }, + 'proportional-nums': { + '.proportional-nums': { '--tw-numeric-spacing': 'proportional-nums' }, }, - '.tabular-nums': { - '--tw-numeric-spacing': 'tabular-nums', + 'tabular-nums': { '.tabular-nums': { '--tw-numeric-spacing': 'tabular-nums' } }, + 'diagonal-fractions': { + '.diagonal-fractions': { '--tw-numeric-fraction': 'diagonal-fractions' }, }, - '.diagonal-fractions': { - '--tw-numeric-fraction': 'diagonal-fractions', + 'stacked-fractions': { + '.stacked-fractions': { '--tw-numeric-fraction': 'stacked-fractions' }, }, - '.stacked-fractions': { - '--tw-numeric-fraction': 'stacked-fractions', + }) + } else { + addUtilities( + { + ...fontVariantBaseStyles, + '.normal-nums': { + 'font-variant-numeric': 'normal', + }, + '.ordinal': { + '--tw-ordinal': 'ordinal', + }, + '.slashed-zero': { + '--tw-slashed-zero': 'slashed-zero', + }, + '.lining-nums': { + '--tw-numeric-figure': 'lining-nums', + }, + '.oldstyle-nums': { + '--tw-numeric-figure': 'oldstyle-nums', + }, + '.proportional-nums': { + '--tw-numeric-spacing': 'proportional-nums', + }, + '.tabular-nums': { + '--tw-numeric-spacing': 'tabular-nums', + }, + '.diagonal-fractions': { + '--tw-numeric-fraction': 'diagonal-fractions', + }, + '.stacked-fractions': { + '--tw-numeric-fraction': 'stacked-fractions', + }, }, - }, - variants('fontVariantNumeric') - ) + variants('fontVariantNumeric') + ) + } } } diff --git a/src/plugins/fontWeight.js b/src/plugins/fontWeight.js index 2e96e107880c..9e65ae58cb86 100644 --- a/src/plugins/fontWeight.js +++ b/src/plugins/fontWeight.js @@ -1,5 +1,8 @@ import createUtilityPlugin from '../util/createUtilityPlugin' +import { asLookupValue } from '../util/pluginUtils' export default function () { - return createUtilityPlugin('fontWeight', [['font', ['fontWeight']]]) + return createUtilityPlugin('fontWeight', [['font', ['fontWeight']]], { + resolveArbitraryValue: asLookupValue, + }) } diff --git a/src/plugins/gap.js b/src/plugins/gap.js index 452aaee91185..0056faa4c1ae 100644 --- a/src/plugins/gap.js +++ b/src/plugins/gap.js @@ -3,7 +3,9 @@ import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { return createUtilityPlugin('gap', [ ['gap', ['gap']], - ['gap-x', ['columnGap']], - ['gap-y', ['rowGap']], + [ + ['gap-x', ['columnGap']], + ['gap-y', ['rowGap']], + ], ]) } diff --git a/src/plugins/gradientColorStops.js b/src/plugins/gradientColorStops.js index 9cc1d177972f..6938d3464f97 100644 --- a/src/plugins/gradientColorStops.js +++ b/src/plugins/gradientColorStops.js @@ -1,47 +1,110 @@ import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import nameClass from '../util/nameClass' 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 ({ addUtilities, theme, variants }) { - const colors = flattenColorPalette(theme('gradientColorStops')) + return function ({ config, matchUtilities, addUtilities, theme, variants }) { + let colorPalette = flattenColorPalette(theme('gradientColorStops')) - const utilities = _(colors) - .map((value, modifier) => { - const transparentTo = withAlphaValue(value, 0, 'rgba(255, 255, 255, 0)') + if (config('mode') === 'jit') { + matchUtilities({ + from: (modifier) => { + let value = asValue(modifier, colorPalette) - return [ - [ - nameClass('from', modifier), - { + if (value === undefined) { + return [] + } + + 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, ${transparentTo})`, + '--tw-gradient-stops': `var(--tw-gradient-from), var(--tw-gradient-to, ${transparentToValue})`, }, - ], - [ - nameClass('via', modifier), - { + } + }, + }) + matchUtilities({ + via: (modifier) => { + let value = asValue(modifier, colorPalette) + + if (value === undefined) { + return [] + } + + let transparentToValue = transparentTo(value) + + return { + [nameClass('via', modifier)]: { '--tw-gradient-stops': `var(--tw-gradient-from), ${toColorValue( value, 'via' - )}, var(--tw-gradient-to, ${transparentTo})`, + )}, var(--tw-gradient-to, ${transparentToValue})`, }, - ], - [ - nameClass('to', modifier), - { + } + }, + }) + matchUtilities({ + to: (modifier) => { + let value = asValue(modifier, colorPalette) + + if (value === undefined) { + return [] + } + + return { + [nameClass('to', modifier)]: { '--tw-gradient-to': toColorValue(value, 'to'), }, - ], - ] + } + }, }) - .unzip() - .flatten() - .fromPairs() - .value() + } 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')) + addUtilities(utilities, variants('gradientColorStops')) + } } } diff --git a/src/plugins/grayscale.js b/src/plugins/grayscale.js index 3250d6c4ac33..10f7e896e75a 100644 --- a/src/plugins/grayscale.js +++ b/src/plugins/grayscale.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/gridTemplateColumns.js b/src/plugins/gridTemplateColumns.js index c2c620f4dfbc..032b546c9e9f 100644 --- a/src/plugins/gridTemplateColumns.js +++ b/src/plugins/gridTemplateColumns.js @@ -1,5 +1,8 @@ +import { asList } from '../util/pluginUtils' import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return createUtilityPlugin('gridTemplateColumns', [['grid-cols', ['gridTemplateColumns']]]) + return createUtilityPlugin('gridTemplateColumns', [['grid-cols', ['gridTemplateColumns']]], { + resolveArbitraryValue: asList, + }) } diff --git a/src/plugins/gridTemplateRows.js b/src/plugins/gridTemplateRows.js index eaf7376bc84d..4c86f68ae4d7 100644 --- a/src/plugins/gridTemplateRows.js +++ b/src/plugins/gridTemplateRows.js @@ -1,5 +1,8 @@ +import { asList } from '../util/pluginUtils' import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return createUtilityPlugin('gridTemplateRows', [['grid-rows', ['gridTemplateRows']]]) + return createUtilityPlugin('gridTemplateRows', [['grid-rows', ['gridTemplateRows']]], { + resolveArbitraryValue: asList, + }) } diff --git a/src/plugins/hueRotate.js b/src/plugins/hueRotate.js index 8dff3f6bf3fb..1be4193e062a 100644 --- a/src/plugins/hueRotate.js +++ b/src/plugins/hueRotate.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/index.js b/src/plugins/index.js index 60673fc3d5c1..bea0b2a08e05 100644 --- a/src/plugins/index.js +++ b/src/plugins/index.js @@ -1,144 +1,163 @@ +export { default as preflight } from './preflight' + +export { default as container } from './container' + export { default as accessibility } from './accessibility' -export { default as alignContent } from './alignContent' -export { default as alignItems } from './alignItems' -export { default as alignSelf } from './alignSelf' -export { default as animation } from './animation' -export { default as appearance } from './appearance' -export { default as backdropBlur } from './backdropBlur' -export { default as backdropBrightness } from './backdropBrightness' -export { default as backdropContrast } from './backdropContrast' -export { default as backdropFilter } from './backdropFilter' -export { default as backdropGrayscale } from './backdropGrayscale' -export { default as backdropHueRotate } from './backdropHueRotate' -export { default as backdropInvert } from './backdropInvert' -export { default as backdropOpacity } from './backdropOpacity' -export { default as backdropSaturate } from './backdropSaturate' -export { default as backdropSepia } from './backdropSepia' -export { default as backgroundAttachment } from './backgroundAttachment' -export { default as backgroundBlendMode } from './backgroundBlendMode' -export { default as backgroundClip } from './backgroundClip' -export { default as backgroundColor } from './backgroundColor' -export { default as backgroundImage } from './backgroundImage' -export { default as backgroundOpacity } from './backgroundOpacity' -export { default as backgroundPosition } from './backgroundPosition' -export { default as backgroundRepeat } from './backgroundRepeat' -export { default as backgroundSize } from './backgroundSize' -export { default as backgroundOrigin } from './backgroundOrigin' -export { default as blur } from './blur' -export { default as borderCollapse } from './borderCollapse' -export { default as borderColor } from './borderColor' -export { default as borderOpacity } from './borderOpacity' -export { default as borderRadius } from './borderRadius' -export { default as borderStyle } from './borderStyle' -export { default as borderWidth } from './borderWidth' -export { default as boxDecorationBreak } from './boxDecorationBreak' -export { default as boxShadow } from './boxShadow' -export { default as boxSizing } from './boxSizing' -export { default as brightness } from './brightness' +export { default as pointerEvents } from './pointerEvents' +export { default as visibility } from './visibility' +export { default as position } from './position' +export { default as inset } from './inset' +export { default as isolation } from './isolation' +export { default as zIndex } from './zIndex' +export { default as order } from './order' +export { default as gridColumn } from './gridColumn' +export { default as gridColumnStart } from './gridColumnStart' +export { default as gridColumnEnd } from './gridColumnEnd' +export { default as gridRow } from './gridRow' +export { default as gridRowStart } from './gridRowStart' +export { default as gridRowEnd } from './gridRowEnd' +export { default as float } from './float' export { default as clear } from './clear' -export { default as container } from './container' -export { default as contrast } from './contrast' -export { default as cursor } from './cursor' +export { default as margin } from './margin' +export { default as boxSizing } from './boxSizing' export { default as display } from './display' -export { default as divideColor } from './divideColor' -export { default as divideOpacity } from './divideOpacity' -export { default as divideStyle } from './divideStyle' -export { default as divideWidth } from './divideWidth' -export { default as dropShadow } from './dropShadow' -export { default as fill } from './fill' -export { default as filter } from './filter' +export { default as height } from './height' +export { default as maxHeight } from './maxHeight' +export { default as minHeight } from './minHeight' +export { default as width } from './width' +export { default as minWidth } from './minWidth' +export { default as maxWidth } from './maxWidth' export { default as flex } from './flex' -export { default as flexDirection } from './flexDirection' -export { default as flexGrow } from './flexGrow' export { default as flexShrink } from './flexShrink' -export { default as flexWrap } from './flexWrap' -export { default as float } from './float' -export { default as fontFamily } from './fontFamily' -export { default as fontSize } from './fontSize' -export { default as fontSmoothing } from './fontSmoothing' -export { default as fontStyle } from './fontStyle' -export { default as fontVariantNumeric } from './fontVariantNumeric' -export { default as fontWeight } from './fontWeight' -export { default as gap } from './gap' -export { default as gradientColorStops } from './gradientColorStops' -export { default as grayscale } from './grayscale' +export { default as flexGrow } from './flexGrow' +export { default as tableLayout } from './tableLayout' +export { default as borderCollapse } from './borderCollapse' + +export { default as transform } from './transform' +export { default as transformOrigin } from './transformOrigin' +export { default as translate } from './translate' +export { default as rotate } from './rotate' +export { default as skew } from './skew' +export { default as scale } from './scale' + +export { default as animation } from './animation' + +export { default as cursor } from './cursor' +export { default as userSelect } from './userSelect' +export { default as resize } from './resize' + +export { default as listStylePosition } from './listStylePosition' +export { default as listStyleType } from './listStyleType' + +export { default as appearance } from './appearance' export { default as gridAutoColumns } from './gridAutoColumns' export { default as gridAutoFlow } from './gridAutoFlow' export { default as gridAutoRows } from './gridAutoRows' -export { default as gridColumn } from './gridColumn' -export { default as gridColumnEnd } from './gridColumnEnd' -export { default as gridColumnStart } from './gridColumnStart' -export { default as gridRow } from './gridRow' -export { default as gridRowEnd } from './gridRowEnd' -export { default as gridRowStart } from './gridRowStart' export { default as gridTemplateColumns } from './gridTemplateColumns' export { default as gridTemplateRows } from './gridTemplateRows' -export { default as height } from './height' -export { default as hueRotate } from './hueRotate' -export { default as inset } from './inset' -export { default as invert } from './invert' -export { default as isolation } from './isolation' +export { default as flexDirection } from './flexDirection' +export { default as flexWrap } from './flexWrap' +export { default as placeContent } from './placeContent' +export { default as placeItems } from './placeItems' +export { default as alignContent } from './alignContent' +export { default as alignItems } from './alignItems' export { default as justifyContent } from './justifyContent' export { default as justifyItems } from './justifyItems' +export { default as gap } from './gap' +export { default as space } from './space' +export { default as divideWidth } from './divideWidth' +export { default as divideStyle } from './divideStyle' +export { default as divideColor } from './divideColor' +export { default as divideOpacity } from './divideOpacity' + +export { default as placeSelf } from './placeSelf' +export { default as alignSelf } from './alignSelf' export { default as justifySelf } from './justifySelf' -export { default as letterSpacing } from './letterSpacing' -export { default as lineHeight } from './lineHeight' -export { default as listStylePosition } from './listStylePosition' -export { default as listStyleType } from './listStyleType' -export { default as margin } from './margin' -export { default as maxHeight } from './maxHeight' -export { default as maxWidth } from './maxWidth' -export { default as minHeight } from './minHeight' -export { default as minWidth } from './minWidth' -export { default as mixBlendMode } from './mixBlendMode' -export { default as objectFit } from './objectFit' -export { default as objectPosition } from './objectPosition' -export { default as opacity } from './opacity' -export { default as order } from './order' -export { default as outline } from './outline' + export { default as overflow } from './overflow' export { default as overscrollBehavior } from './overscrollBehavior' +export { default as textOverflow } from './textOverflow' +export { default as whitespace } from './whitespace' +export { default as wordBreak } from './wordBreak' + +export { default as borderRadius } from './borderRadius' +export { default as borderWidth } from './borderWidth' +export { default as borderStyle } from './borderStyle' +export { default as borderColor } from './borderColor' +export { default as borderOpacity } from './borderOpacity' + +export { default as backgroundColor } from './backgroundColor' +export { default as backgroundOpacity } from './backgroundOpacity' +export { default as backgroundImage } from './backgroundImage' +export { default as gradientColorStops } from './gradientColorStops' +export { default as boxDecorationBreak } from './boxDecorationBreak' +export { default as backgroundSize } from './backgroundSize' +export { default as backgroundAttachment } from './backgroundAttachment' +export { default as backgroundClip } from './backgroundClip' +export { default as backgroundPosition } from './backgroundPosition' +export { default as backgroundRepeat } from './backgroundRepeat' +export { default as backgroundOrigin } from './backgroundOrigin' + +export { default as fill } from './fill' +export { default as stroke } from './stroke' +export { default as strokeWidth } from './strokeWidth' + +export { default as objectFit } from './objectFit' +export { default as objectPosition } from './objectPosition' + export { default as padding } from './padding' -export { default as placeContent } from './placeContent' + +export { default as textAlign } from './textAlign' +export { default as verticalAlign } from './verticalAlign' +export { default as fontFamily } from './fontFamily' +export { default as fontSize } from './fontSize' +export { default as fontWeight } from './fontWeight' +export { default as textTransform } from './textTransform' +export { default as fontStyle } from './fontStyle' +export { default as fontVariantNumeric } from './fontVariantNumeric' +export { default as lineHeight } from './lineHeight' +export { default as letterSpacing } from './letterSpacing' +export { default as textColor } from './textColor' +export { default as textOpacity } from './textOpacity' +export { default as textDecoration } from './textDecoration' +export { default as fontSmoothing } from './fontSmoothing' export { default as placeholderColor } from './placeholderColor' export { default as placeholderOpacity } from './placeholderOpacity' -export { default as placeItems } from './placeItems' -export { default as placeSelf } from './placeSelf' -export { default as pointerEvents } from './pointerEvents' -export { default as position } from './position' -export { default as preflight } from './preflight' -export { default as resize } from './resize' + +export { default as opacity } from './opacity' +export { default as backgroundBlendMode } from './backgroundBlendMode' +export { default as mixBlendMode } from './mixBlendMode' +export { default as boxShadow } from './boxShadow' +export { default as outline } from './outline' +export { default as ringWidth } from './ringWidth' export { default as ringColor } from './ringColor' -export { default as ringOffsetColor } from './ringOffsetColor' -export { default as ringOffsetWidth } from './ringOffsetWidth' export { default as ringOpacity } from './ringOpacity' -export { default as ringWidth } from './ringWidth' -export { default as rotate } from './rotate' +export { default as ringOffsetWidth } from './ringOffsetWidth' +export { default as ringOffsetColor } from './ringOffsetColor' + +export { default as filter } from './filter' +export { default as blur } from './blur' +export { default as brightness } from './brightness' +export { default as contrast } from './contrast' +export { default as dropShadow } from './dropShadow' +export { default as grayscale } from './grayscale' +export { default as hueRotate } from './hueRotate' +export { default as invert } from './invert' export { default as saturate } from './saturate' -export { default as scale } from './scale' export { default as sepia } from './sepia' -export { default as skew } from './skew' -export { default as space } from './space' -export { default as stroke } from './stroke' -export { default as strokeWidth } from './strokeWidth' -export { default as tableLayout } from './tableLayout' -export { default as textAlign } from './textAlign' -export { default as textColor } from './textColor' -export { default as textDecoration } from './textDecoration' -export { default as textOpacity } from './textOpacity' -export { default as textOverflow } from './textOverflow' -export { default as textTransform } from './textTransform' -export { default as transform } from './transform' -export { default as transformOrigin } from './transformOrigin' + +export { default as backdropFilter } from './backdropFilter' +export { default as backdropBlur } from './backdropBlur' +export { default as backdropBrightness } from './backdropBrightness' +export { default as backdropContrast } from './backdropContrast' +export { default as backdropGrayscale } from './backdropGrayscale' +export { default as backdropHueRotate } from './backdropHueRotate' +export { default as backdropInvert } from './backdropInvert' +export { default as backdropOpacity } from './backdropOpacity' +export { default as backdropSaturate } from './backdropSaturate' +export { default as backdropSepia } from './backdropSepia' + +export { default as transitionProperty } from './transitionProperty' export { default as transitionDelay } from './transitionDelay' export { default as transitionDuration } from './transitionDuration' -export { default as transitionProperty } from './transitionProperty' export { default as transitionTimingFunction } from './transitionTimingFunction' -export { default as translate } from './translate' -export { default as userSelect } from './userSelect' -export { default as verticalAlign } from './verticalAlign' -export { default as visibility } from './visibility' -export { default as whitespace } from './whitespace' -export { default as width } from './width' -export { default as wordBreak } from './wordBreak' -export { default as zIndex } from './zIndex' diff --git a/src/plugins/inset.js b/src/plugins/inset.js index d64873fcd1fc..2ae1653ec647 100644 --- a/src/plugins/inset.js +++ b/src/plugins/inset.js @@ -1,39 +1,123 @@ import _ from 'lodash' import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - const generators = [ - (size, modifier) => ({ - [nameClass('inset', modifier)]: { - top: `${size}`, - right: `${size}`, - bottom: `${size}`, - left: `${size}`, + 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 { + [nameClass('inset', modifier)]: { + 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 }, + } + }, + 'inset-y': (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { + [nameClass('inset-y', modifier)]: { top: value, bottom: value }, + } + }, + }) + matchUtilities({ + top: (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { [nameClass('top', modifier)]: { top: value } } }, - }), - (size, modifier) => ({ - [nameClass('inset-y', modifier)]: { - top: `${size}`, - bottom: `${size}`, + right: (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { [nameClass('right', modifier)]: { right: value } } + }, + bottom: (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { [nameClass('bottom', modifier)]: { bottom: value } } }, - [nameClass('inset-x', modifier)]: { - right: `${size}`, - left: `${size}`, + left: (modifier, { theme }) => { + let value = asValue(modifier, theme['inset']) + + if (value === undefined) { + return [] + } + + return { [nameClass('left', modifier)]: { left: value } } }, - }), - (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')) + }) + } 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')) + } } } diff --git a/src/plugins/invert.js b/src/plugins/invert.js index 9a313fd1e9a5..7821cfe3df23 100644 --- a/src/plugins/invert.js +++ b/src/plugins/invert.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/margin.js b/src/plugins/margin.js index d558c76f827b..a10b03e61783 100644 --- a/src/plugins/margin.js +++ b/src/plugins/margin.js @@ -1,34 +1,17 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - const generators = [ - (size, modifier) => ({ - [nameClass('m', modifier)]: { margin: `${size}` }, - }), - (size, modifier) => ({ - [nameClass('my', modifier)]: { - 'margin-top': `${size}`, - 'margin-bottom': `${size}`, - }, - [nameClass('mx', modifier)]: { - 'margin-left': `${size}`, - 'margin-right': `${size}`, - }, - }), - (size, modifier) => ({ - [nameClass('mt', modifier)]: { 'margin-top': `${size}` }, - [nameClass('mr', modifier)]: { 'margin-right': `${size}` }, - [nameClass('mb', modifier)]: { 'margin-bottom': `${size}` }, - [nameClass('ml', modifier)]: { 'margin-left': `${size}` }, - }), - ] - - const utilities = _.flatMap(generators, (generator) => { - return _.flatMap(theme('margin'), generator) - }) - - addUtilities(utilities, variants('margin')) - } + return createUtilityPlugin('margin', [ + ['m', ['margin']], + [ + ['mx', ['margin-left', 'margin-right']], + ['my', ['margin-top', 'margin-bottom']], + ], + [ + ['mt', ['margin-top']], + ['mr', ['margin-right']], + ['mb', ['margin-bottom']], + ['ml', ['margin-left']], + ], + ]) } diff --git a/src/plugins/objectPosition.js b/src/plugins/objectPosition.js index bd39a3cbfae3..62906a61946c 100644 --- a/src/plugins/objectPosition.js +++ b/src/plugins/objectPosition.js @@ -1,5 +1,8 @@ import createUtilityPlugin from '../util/createUtilityPlugin' +import { asLookupValue } from '../util/pluginUtils' export default function () { - return createUtilityPlugin('objectPosition', [['object', ['objectPosition']]]) + return createUtilityPlugin('objectPosition', [['object', ['object-position']]], { + resolveArbitraryValue: asLookupValue, + }) } diff --git a/src/plugins/order.js b/src/plugins/order.js index a534e4ee4cf5..a75b20dc8901 100644 --- a/src/plugins/order.js +++ b/src/plugins/order.js @@ -1,5 +1,5 @@ import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return createUtilityPlugin('order', [['order', ['order']]]) + return createUtilityPlugin('order') } diff --git a/src/plugins/outline.js b/src/plugins/outline.js index c91846e020b1..42d002b600f4 100644 --- a/src/plugins/outline.js +++ b/src/plugins/outline.js @@ -1,22 +1,44 @@ import _ from 'lodash' import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(theme('outline'), (value, modifier) => { - const [outline, outlineOffset = '0'] = Array.isArray(value) ? value : [value] + return function ({ config, matchUtilities, addUtilities, theme, variants }) { + if (config('mode') === 'jit') { + matchUtilities({ + outline: (modifier, { theme }) => { + let value = asValue(modifier, theme.outline) - return [ - nameClass('outline', modifier), - { - outline, - outlineOffset, - }, - ] + if (value === undefined) { + return [] + } + + let [outline, outlineOffset = '0'] = Array.isArray(value) ? value : [value] + + return { + [nameClass('outline', modifier)]: { + 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')) + addUtilities(utilities, variants('outline')) + } } } diff --git a/src/plugins/padding.js b/src/plugins/padding.js index 85c489127eb3..2dafb81c0e18 100644 --- a/src/plugins/padding.js +++ b/src/plugins/padding.js @@ -1,28 +1,17 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - const generators = [ - (size, modifier) => ({ - [nameClass('p', modifier)]: { padding: `${size}` }, - }), - (size, modifier) => ({ - [nameClass('py', modifier)]: { 'padding-top': `${size}`, 'padding-bottom': `${size}` }, - [nameClass('px', modifier)]: { 'padding-left': `${size}`, 'padding-right': `${size}` }, - }), - (size, modifier) => ({ - [nameClass('pt', modifier)]: { 'padding-top': `${size}` }, - [nameClass('pr', modifier)]: { 'padding-right': `${size}` }, - [nameClass('pb', modifier)]: { 'padding-bottom': `${size}` }, - [nameClass('pl', modifier)]: { 'padding-left': `${size}` }, - }), - ] - - const utilities = _.flatMap(generators, (generator) => { - return _.flatMap(theme('padding'), generator) - }) - - addUtilities(utilities, variants('padding')) - } + return createUtilityPlugin('padding', [ + ['p', ['padding']], + [ + ['px', ['padding-left', 'padding-right']], + ['py', ['padding-top', 'padding-bottom']], + ], + [ + ['pt', ['padding-top']], + ['pr', ['padding-right']], + ['pb', ['padding-bottom']], + ['pl', ['padding-left']], + ], + ]) } diff --git a/src/plugins/placeholderColor.js b/src/plugins/placeholderColor.js index 70497f3430da..957d1085f58f 100644 --- a/src/plugins/placeholderColor.js +++ b/src/plugins/placeholderColor.js @@ -1,31 +1,62 @@ import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import nameClass from '../util/nameClass' 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 ({ addUtilities, theme, variants, corePlugins }) { - const colors = flattenColorPalette(theme('placeholderColor')) - - const getProperties = (value) => { - if (corePlugins('placeholderOpacity')) { - return withAlphaVariable({ - color: value, - property: 'color', - variable: '--tw-placeholder-opacity', - }) - } + return function ({ config, matchUtilities, addUtilities, theme, variants, corePlugins }) { + if (config('mode') === 'jit') { + let colorPalette = flattenColorPalette(theme('placeholderColor')) - return { color: toColorValue(value) } - } + matchUtilities({ + placeholder: (modifier) => { + let value = asValue(modifier, colorPalette) + + if (value === undefined) { + return [] + } + + if (!corePlugins('placeholderOpacity')) { + return { + [`${nameClass('placeholder', modifier)}::placeholder`]: { + color: value, + }, + } + } - const utilities = _.fromPairs( - _.map(colors, (value, modifier) => { - return [`${nameClass('placeholder', modifier)}::placeholder`, getProperties(value)] + return { + [`${nameClass('placeholder', modifier)}::placeholder`]: withAlphaVariable({ + color: value, + property: 'color', + variable: '--tw-placeholder-opacity', + }), + } + }, }) - ) + } else { + const colors = flattenColorPalette(theme('placeholderColor')) - addUtilities(utilities, variants('placeholderColor')) + const getProperties = (value) => { + if (corePlugins('placeholderOpacity')) { + return withAlphaVariable({ + color: value, + property: 'color', + variable: '--tw-placeholder-opacity', + }) + } + + return { color: toColorValue(value) } + } + + 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 06bea94d36d5..d78c58f5c93a 100644 --- a/src/plugins/placeholderOpacity.js +++ b/src/plugins/placeholderOpacity.js @@ -1,19 +1,38 @@ import _ from 'lodash' import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(theme('placeholderOpacity'), (value, modifier) => { - return [ - `${nameClass('placeholder-opacity', modifier)}::placeholder`, - { - '--tw-placeholder-opacity': value, - }, - ] + 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, + }, + } + }, }) - ) + } else { + const utilities = _.fromPairs( + _.map(theme('placeholderOpacity'), (value, modifier) => { + return [ + `${nameClass('placeholder-opacity', modifier)}::placeholder`, + { + '--tw-placeholder-opacity': value, + }, + ] + }) + ) - addUtilities(utilities, variants('placeholderOpacity')) + addUtilities(utilities, variants('placeholderOpacity')) + } } } diff --git a/src/plugins/ringColor.js b/src/plugins/ringColor.js index 9b466729eff4..cc18c54c9735 100644 --- a/src/plugins/ringColor.js +++ b/src/plugins/ringColor.js @@ -1,26 +1,53 @@ import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import nameClass from '../util/nameClass' import withAlphaVariable from '../util/withAlphaVariable' +import nameClass from '../util/nameClass' +import { asColor } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - const colors = flattenColorPalette(theme('ringColor')) - - const getProperties = (value) => { - return withAlphaVariable({ - color: value, - property: '--tw-ring-color', - variable: '--tw-ring-opacity', - }) - } + return function ({ config, matchUtilities, addUtilities, theme, variants }) { + if (config('mode') === 'jit') { + let colorPalette = flattenColorPalette(theme('ringColor')) + + matchUtilities({ + ring: (modifier) => { + if (modifier === 'DEFAULT') { + return [] + } - const utilities = _.fromPairs( - _.map(_.omit(colors, 'DEFAULT'), (value, modifier) => { - return [nameClass('ring', modifier), getProperties(value)] + let value = asColor(modifier, colorPalette) + + if (value === undefined) { + return [] + } + + return { + [nameClass('ring', modifier)]: 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', + }) + } - addUtilities(utilities, variants('ringColor')) + 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 00953bc488c7..86f73291df9b 100644 --- a/src/plugins/ringOffsetColor.js +++ b/src/plugins/ringOffsetColor.js @@ -1,21 +1,42 @@ import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import nameClass from '../util/nameClass' import toColorValue from '../util/toColorValue' +import nameClass from '../util/nameClass' +import { asColor } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - 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), - }, - ] + 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 { + [nameClass('ring-offset', modifier)]: { + '--tw-ring-offset-color': toColorValue(value), + }, + } + }, }) - ) - addUtilities(utilities, variants('ringOffsetColor')) + } 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')) + } } } diff --git a/src/plugins/ringOffsetWidth.js b/src/plugins/ringOffsetWidth.js index 2d927efe59ff..65c55aa675ba 100644 --- a/src/plugins/ringOffsetWidth.js +++ b/src/plugins/ringOffsetWidth.js @@ -1,18 +1,8 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' +import { asLength } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(_.omit(theme('ringOffsetWidth'), 'DEFAULT'), (value, modifier) => { - return [ - nameClass('ring-offset', modifier), - { - '--tw-ring-offset-width': value, - }, - ] - }) - ) - addUtilities(utilities, variants('ringOffsetWidth')) - } + return createUtilityPlugin('ringOffsetWidth', [['ring-offset', ['--tw-ring-offset-width']]], { + resolveArbitraryValue: asLength, + }) } diff --git a/src/plugins/ringOpacity.js b/src/plugins/ringOpacity.js index 1ebdb78b7b81..39bdc00b0936 100644 --- a/src/plugins/ringOpacity.js +++ b/src/plugins/ringOpacity.js @@ -1,18 +1,7 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' +import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { - return function ({ addUtilities, theme, variants }) { - const utilities = _.fromPairs( - _.map(_.omit(theme('ringOpacity'), 'DEFAULT'), (value, modifier) => { - return [ - nameClass('ring-opacity', modifier), - { - '--tw-ring-opacity': value, - }, - ] - }) - ) - addUtilities(utilities, variants('ringOpacity')) - } + return createUtilityPlugin('ringOpacity', [['ring-opacity', ['--tw-ring-opacity']]], { + filterDefault: true, + }) } diff --git a/src/plugins/ringWidth.js b/src/plugins/ringWidth.js index 177bddb6e515..d50079deb5d7 100644 --- a/src/plugins/ringWidth.js +++ b/src/plugins/ringWidth.js @@ -1,9 +1,10 @@ import _ from 'lodash' -import nameClass from '../util/nameClass' import { withAlphaValue } from '../util/withAlphaVariable' +import nameClass from '../util/nameClass' +import { asLength } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { + return function ({ config, matchUtilities, addBase, addUtilities, theme, variants }) { const ringOpacityDefault = theme('ringOpacity.DEFAULT', '0.5') const ringColorDefault = withAlphaValue( theme('ringColor.DEFAULT'), @@ -11,8 +12,8 @@ export default function () { `rgba(147, 197, 253, ${ringOpacityDefault})` ) - addUtilities( - { + if (config('mode') === 'jit') { + let ringReset = { '*': { '--tw-ring-inset': 'var(--tw-empty,/*!*/ /*!*/)', '--tw-ring-offset-width': theme('ringOffsetWidth.DEFAULT', '0px'), @@ -21,36 +22,81 @@ export default function () { '--tw-ring-offset-shadow': '0 0 #0000', '--tw-ring-shadow': '0 0 #0000', }, - }, - { respectImportant: false } - ) + } - 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(', '), - }, - ] + addBase(ringReset) + + matchUtilities({ + ring: (modifier, { theme }) => { + let value = asLength(modifier, theme['ringWidth']) + + if (value === undefined) { + return [] + } + + 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, + + addUtilities({ + '.ring-inset': { + '--tw-ring-inset': 'inset', + }, + }) + } else { + addUtilities( { - '.ring-inset': { - '--tw-ring-inset': 'inset', + '*': { + '--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', }, }, - ], - variants('ringWidth') - ) + { respectImportant: false } + ) + + 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') + ) + } } } diff --git a/src/plugins/saturate.js b/src/plugins/saturate.js index b1a2d8eb8913..00220771f1ba 100644 --- a/src/plugins/saturate.js +++ b/src/plugins/saturate.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/scale.js b/src/plugins/scale.js index dcf940dfc173..9c1408fd7698 100644 --- a/src/plugins/scale.js +++ b/src/plugins/scale.js @@ -3,7 +3,9 @@ import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { return createUtilityPlugin('scale', [ ['scale', ['--tw-scale-x', '--tw-scale-y']], - ['scale-x', ['--tw-scale-x']], - ['scale-y', ['--tw-scale-y']], + [ + ['scale-x', ['--tw-scale-x']], + ['scale-y', ['--tw-scale-y']], + ], ]) } diff --git a/src/plugins/sepia.js b/src/plugins/sepia.js index eb7446e5b107..7fa08101ed04 100644 --- a/src/plugins/sepia.js +++ b/src/plugins/sepia.js @@ -1,5 +1,6 @@ import _ from 'lodash' -const { asValue, nameClass } = require('../../jit/pluginUtils') +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addUtilities, theme, variants }) { diff --git a/src/plugins/skew.js b/src/plugins/skew.js index 921091f9fbac..271a04f9c811 100644 --- a/src/plugins/skew.js +++ b/src/plugins/skew.js @@ -2,7 +2,9 @@ import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { return createUtilityPlugin('skew', [ - ['skew-x', ['--tw-skew-x']], - ['skew-y', ['--tw-skew-y']], + [ + ['skew-x', ['--tw-skew-x']], + ['skew-y', ['--tw-skew-y']], + ], ]) } diff --git a/src/plugins/space.js b/src/plugins/space.js index 66a326af0304..25f469ef520b 100644 --- a/src/plugins/space.js +++ b/src/plugins/space.js @@ -1,40 +1,89 @@ import _ from 'lodash' import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - 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', - }, + 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 [] + } + + value = value === '0' ? '0px' : value + + return { + [`${nameClass('space-x', modifier)} > :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 [] + } + + value = value === '0' ? '0px' : value + + return { + [`${nameClass('space-y', modifier)} > :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({ + '.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)))`, + }, + } }, ] - }) - addUtilities(utilities, variants('space')) + 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')) + } } } diff --git a/src/plugins/stroke.js b/src/plugins/stroke.js index c3b4cca660f9..b015b7602d24 100644 --- a/src/plugins/stroke.js +++ b/src/plugins/stroke.js @@ -1,18 +1,35 @@ import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import nameClass from '../util/nameClass' import toColorValue from '../util/toColorValue' +import nameClass from '../util/nameClass' +import { asColor } from '../util/pluginUtils' export default function () { - return function ({ addUtilities, theme, variants }) { - const colors = flattenColorPalette(theme('stroke')) + return function ({ config, matchUtilities, addUtilities, theme, variants }) { + if (config('mode') === 'jit') { + let colorPalette = flattenColorPalette(theme('stroke')) + + matchUtilities({ + stroke: (modifier) => { + let value = asColor(modifier, colorPalette) - const utilities = _.fromPairs( - _.map(colors, (value, modifier) => { - return [nameClass('stroke', modifier), { stroke: toColorValue(value) }] + if (value === undefined) { + return [] + } + + 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')) + addUtilities(utilities, variants('stroke')) + } } } diff --git a/src/plugins/strokeWidth.js b/src/plugins/strokeWidth.js index cfea8d9aa93e..c001d95192b7 100644 --- a/src/plugins/strokeWidth.js +++ b/src/plugins/strokeWidth.js @@ -1,5 +1,8 @@ import createUtilityPlugin from '../util/createUtilityPlugin' +import { asLength } from '../util/pluginUtils' export default function () { - return createUtilityPlugin('strokeWidth', [['stroke', ['strokeWidth']]]) + return createUtilityPlugin('strokeWidth', [['stroke', ['stroke-width']]], { + resolveArbitraryValue: asLength, + }) } diff --git a/src/plugins/textColor.js b/src/plugins/textColor.js index 17d6e393ba3c..db249d2009e6 100644 --- a/src/plugins/textColor.js +++ b/src/plugins/textColor.js @@ -1,31 +1,62 @@ import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import nameClass from '../util/nameClass' 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 ({ addUtilities, theme, variants, corePlugins }) { - const colors = flattenColorPalette(theme('textColor')) - - const getProperties = (value) => { - if (corePlugins('textOpacity')) { - return withAlphaVariable({ - color: value, - property: 'color', - variable: '--tw-text-opacity', - }) - } + return function ({ config, matchUtilities, addUtilities, theme, variants, corePlugins }) { + if (config('mode') === 'jit') { + let colorPalette = flattenColorPalette(theme('textColor')) - return { color: toColorValue(value) } - } + matchUtilities({ + text: (modifier) => { + let value = asColor(modifier, colorPalette) + + if (value === undefined) { + return [] + } + + if (!corePlugins('textOpacity')) { + return { + [nameClass('text', modifier)]: { + color: value, + }, + } + } - const utilities = _.fromPairs( - _.map(colors, (value, modifier) => { - return [nameClass('text', modifier), getProperties(value)] + return { + [nameClass('text', modifier)]: withAlphaVariable({ + color: value, + property: 'color', + variable: '--tw-text-opacity', + }), + } + }, }) - ) + } else { + const colors = flattenColorPalette(theme('textColor')) - addUtilities(utilities, variants('textColor')) + const getProperties = (value) => { + if (corePlugins('textOpacity')) { + return withAlphaVariable({ + color: value, + property: 'color', + variable: '--tw-text-opacity', + }) + } + + return { color: toColorValue(value) } + } + + const utilities = _.fromPairs( + _.map(colors, (value, modifier) => { + return [nameClass('text', modifier), getProperties(value)] + }) + ) + + addUtilities(utilities, variants('textColor')) + } } } diff --git a/src/plugins/textOverflow.js b/src/plugins/textOverflow.js index 9d99aafaf1dd..a66e9f16a346 100644 --- a/src/plugins/textOverflow.js +++ b/src/plugins/textOverflow.js @@ -7,6 +7,12 @@ export default function () { 'text-overflow': 'ellipsis', 'white-space': 'nowrap', }, + }, + variants('textOverflow') + ) + + addUtilities( + { '.overflow-ellipsis': { 'text-overflow': 'ellipsis' }, '.overflow-clip': { 'text-overflow': 'clip' }, }, diff --git a/src/plugins/transitionProperty.js b/src/plugins/transitionProperty.js index c15e04e62629..d67109beea16 100644 --- a/src/plugins/transitionProperty.js +++ b/src/plugins/transitionProperty.js @@ -2,27 +2,51 @@ import _ from 'lodash' import nameClass from '../util/nameClass' export default function () { - return function ({ addUtilities, theme, variants }) { + return function ({ config, matchUtilities, addUtilities, theme, variants }) { const defaultTimingFunction = theme('transitionTimingFunction.DEFAULT') const defaultDuration = theme('transitionDuration.DEFAULT') - const utilities = _.fromPairs( - _.map(theme('transitionProperty'), (value, modifier) => { - return [ - nameClass('transition', modifier), - { - 'transition-property': value, - ...(value === 'none' - ? {} - : { - 'transition-timing-function': defaultTimingFunction, - 'transition-duration': defaultDuration, - }), - }, - ] + if (config('mode') === 'jit') { + matchUtilities({ + transition: (modifier, { theme }) => { + let value = theme.transitionProperty[modifier] + + if (value === undefined) { + return [] + } + + return { + [nameClass('transition', modifier)]: { + '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')) + addUtilities(utilities, variants('transitionProperty')) + } } } diff --git a/src/plugins/translate.js b/src/plugins/translate.js index dd092f8f54a6..7db108727d8c 100644 --- a/src/plugins/translate.js +++ b/src/plugins/translate.js @@ -2,7 +2,9 @@ import createUtilityPlugin from '../util/createUtilityPlugin' export default function () { return createUtilityPlugin('translate', [ - ['translate-x', ['--tw-translate-x']], - ['translate-y', ['--tw-translate-y']], + [ + ['translate-x', ['--tw-translate-x']], + ['translate-y', ['--tw-translate-y']], + ], ]) } diff --git a/src/util/bigSign.js b/src/util/bigSign.js new file mode 100644 index 000000000000..8514aefb9cc9 --- /dev/null +++ b/src/util/bigSign.js @@ -0,0 +1,3 @@ +export default function bigSign(bigIntValue) { + return (bigIntValue > 0n) - (bigIntValue < 0n) +} diff --git a/src/util/cloneNodes.js b/src/util/cloneNodes.js index ed8292ecf0ea..df4d465681e1 100644 --- a/src/util/cloneNodes.js +++ b/src/util/cloneNodes.js @@ -1,5 +1,3 @@ -import _ from 'lodash' - export default function cloneNodes(nodes) { - return _.map(nodes, (node) => node.clone()) + return nodes.map((node) => node.clone()) } diff --git a/src/util/createUtilityPlugin.js b/src/util/createUtilityPlugin.js index da6c5eae5ee7..e5098edfaa48 100644 --- a/src/util/createUtilityPlugin.js +++ b/src/util/createUtilityPlugin.js @@ -1,31 +1,65 @@ import fromPairs from 'lodash/fromPairs' import toPairs from 'lodash/toPairs' import castArray from 'lodash/castArray' -import nameClass from './nameClass' import transformThemeValue from './transformThemeValue' +import nameClass from '../util/nameClass' +import { asValue } from '../util/pluginUtils' export default function createUtilityPlugin( themeKey, - utilityVariations, - { filterDefault = false } = {} + utilityVariations = [[themeKey, [themeKey]]], + { filterDefault = false, resolveArbitraryValue = asValue } = {} ) { const transformValue = transformThemeValue(themeKey) - return function ({ addUtilities, variants, theme }) { - const pairs = toPairs(theme(themeKey)) - const utilities = utilityVariations.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)])), - ] - }) - ) - }) - return addUtilities(utilities, variants(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)]) + ), + ] + }) + ) + }) + }) + + return addUtilities(utilities, variants(themeKey)) + } } } diff --git a/src/util/escapeClassName.js b/src/util/escapeClassName.js index 34c764fdedbd..2469c37ad24f 100644 --- a/src/util/escapeClassName.js +++ b/src/util/escapeClassName.js @@ -1,9 +1,6 @@ import parser from 'postcss-selector-parser' import get from 'lodash/get' - -function escapeCommas(className) { - return className.replace(/\\,/g, '\\2c ') -} +import escapeCommas from './escapeCommas' export default function escapeClassName(className) { const node = parser.className() diff --git a/src/util/escapeCommas.js b/src/util/escapeCommas.js new file mode 100644 index 000000000000..e7f1c7339678 --- /dev/null +++ b/src/util/escapeCommas.js @@ -0,0 +1,3 @@ +export default function escapeCommas(className) { + return className.replace(/\\,/g, '\\2c ') +} diff --git a/src/util/isPlainObject.js b/src/util/isPlainObject.js new file mode 100644 index 000000000000..7563f3218fcd --- /dev/null +++ b/src/util/isPlainObject.js @@ -0,0 +1,8 @@ +export default function isPlainObject(value) { + if (Object.prototype.toString.call(value) !== '[object Object]') { + return false + } + + const prototype = Object.getPrototypeOf(value) + return prototype === null || prototype === Object.prototype +} diff --git a/src/util/nameClass.js b/src/util/nameClass.js index 2e7774472174..2bb0548bd0f9 100644 --- a/src/util/nameClass.js +++ b/src/util/nameClass.js @@ -1,8 +1,5 @@ import escapeClassName from './escapeClassName' - -function escapeCommas(className) { - return className.replace(/\\,/g, '\\2c ') -} +import escapeCommas from './escapeCommas' function asClass(name) { return escapeCommas(`.${escapeClassName(name)}`) diff --git a/jit/pluginUtils.js b/src/util/pluginUtils.js similarity index 59% rename from jit/pluginUtils.js rename to src/util/pluginUtils.js index 290a74b21c93..a754e750db22 100644 --- a/jit/pluginUtils.js +++ b/src/util/pluginUtils.js @@ -1,9 +1,9 @@ -const selectorParser = require('postcss-selector-parser') -const postcss = require('postcss') -const createColor = require('color') -const { nameClass, escapeCommas } = require('./lib/utils') +import selectorParser from 'postcss-selector-parser' +import postcss from 'postcss' +import createColor from 'color' +import escapeCommas from './escapeCommas' -function updateAllClasses(selectors, updateClass) { +export function updateAllClasses(selectors, updateClass) { let parser = selectorParser((selectors) => { selectors.walkClasses((sel) => { let updatedClass = updateClass(sel.value, { @@ -24,7 +24,7 @@ function updateAllClasses(selectors, updateClass) { return result } -function updateLastClasses(selectors, updateClass) { +export function updateLastClasses(selectors, updateClass) { let parser = selectorParser((selectors) => { selectors.each((sel) => { let lastClass = sel.filter(({ type }) => type === 'class').pop() @@ -50,7 +50,7 @@ function updateLastClasses(selectors, updateClass) { return result } -function transformAllSelectors(transformSelector, wrap = null) { +export function transformAllSelectors(transformSelector, wrap = null) { return ({ container }) => { container.walkRules((rule) => { let transformed = rule.selector.split(',').map(transformSelector).join(',') @@ -66,7 +66,7 @@ function transformAllSelectors(transformSelector, wrap = null) { } } -function transformAllClasses(transformClass) { +export function transformAllClasses(transformClass) { return ({ container }) => { container.walkRules((rule) => { let selector = rule.selector @@ -77,7 +77,7 @@ function transformAllClasses(transformClass) { } } -function transformLastClasses(transformClass, wrap = null) { +export function transformLastClasses(transformClass, wrap = null) { return ({ container }) => { container.walkRules((rule) => { let selector = rule.selector @@ -94,7 +94,11 @@ function transformLastClasses(transformClass, wrap = null) { } } -function asValue(modifier, lookup = {}, { validate = () => true, transform = (v) => v } = {}) { +export function asValue( + modifier, + lookup = {}, + { validate = () => true, transform = (v) => v } = {} +) { let value = lookup[modifier] if (value !== undefined) { @@ -118,7 +122,7 @@ function asValue(modifier, lookup = {}, { validate = () => true, transform = (v) ) } -function asUnit(modifier, units, lookup = {}) { +export function asUnit(modifier, units, lookup = {}) { return asValue(modifier, lookup, { validate: (value) => { let unitsPattern = `(?:${units.join('|')})` @@ -133,73 +137,72 @@ function asUnit(modifier, units, lookup = {}) { }) } -module.exports = { - nameClass, - updateAllClasses, - updateLastClasses, - transformAllSelectors, - transformAllClasses, - transformLastClasses, - createSimpleStaticUtilityPlugin(styles) { - return function ({ matchUtilities }) { - matchUtilities( - Object.entries(styles).reduce((newStyles, [selector, rules]) => { - let result = { [selector]: rules } - newStyles[selector.slice(1)] = [result] - return newStyles - }, {}) - ) - } - }, - asValue, - asList(modifier, lookup = {}) { - return asValue(modifier, lookup, { - transform: (value) => { - return postcss.list - .comma(value) - .map((v) => v.replace(/,/g, ', ')) - .join(' ') - }, - }) - }, - asColor(modifier, lookup = {}) { - return asValue(modifier, lookup, { - validate: (value) => { - try { - createColor(value) - return true - } catch (e) { - return false - } - }, - }) - }, - asAngle(modifier, lookup = {}) { - return asUnit(modifier, ['deg', 'grad', 'rad', 'turn'], lookup) - }, - asLength(modifier, lookup = {}) { - return asUnit( - modifier, - [ - 'cm', - 'mm', - 'Q', - 'in', - 'pc', - 'pt', - 'px', - 'em', - 'ex', - 'ch', - 'rem', - 'lh', - 'vw', - 'vh', - 'vmin', - 'vmax', - '%', - ], - 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) => { + return postcss.list + .comma(value) + .map((v) => v.replace(/,/g, ', ')) + .join(' ') + }, + }) +} + +export function asColor(modifier, lookup = {}) { + return asValue(modifier, lookup, { + validate: (value) => { + try { + createColor(value) + return true + } catch (e) { + return false + } + }, + }) +} + +export function asAngle(modifier, lookup = {}) { + return asUnit(modifier, ['deg', 'grad', 'rad', 'turn'], lookup) +} + +export function asLength(modifier, lookup = {}) { + return asUnit( + modifier, + [ + 'cm', + 'mm', + 'Q', + 'in', + 'pc', + 'pt', + 'px', + 'em', + 'ex', + 'ch', + 'rem', + 'lh', + 'vw', + 'vh', + 'vmin', + 'vmax', + '%', + ], + lookup + ) +} + +export function asLookupValue(modifier, lookup = {}) { + return lookup[modifier] } diff --git a/src/util/resolveConfig.js b/src/util/resolveConfig.js index 774512fdb448..3da92b8b63a6 100644 --- a/src/util/resolveConfig.js +++ b/src/util/resolveConfig.js @@ -10,7 +10,7 @@ import toPath from 'lodash/toPath' import head from 'lodash/head' import isPlainObject from 'lodash/isPlainObject' import negateValue from './negateValue' -import { corePluginList } from '../corePluginList' +import * as corePlugins from '../plugins' import configurePlugins from './configurePlugins' import defaultConfig from '../../stubs/defaultConfig.stub' @@ -241,7 +241,7 @@ function resolveCorePlugins(corePluginConfigs) { return corePluginConfig({ corePlugins: resolved }) } return configurePlugins(corePluginConfig, resolved) - }, corePluginList) + }, Object.keys(corePlugins)) return result } diff --git a/__tests__/applyAtRule.test.js b/tests/applyAtRule.test.js similarity index 99% rename from __tests__/applyAtRule.test.js rename to tests/applyAtRule.test.js index 3cf53394c26d..2f254d290e15 100644 --- a/__tests__/applyAtRule.test.js +++ b/tests/applyAtRule.test.js @@ -50,9 +50,9 @@ test('apply values can contain newlines', () => { const expected = ` .a { + margin: 1rem; display: flex; flex-direction: column; - margin: 1rem; padding: 1rem; } ` @@ -606,16 +606,19 @@ test('you can apply complex classes recursively', () => { ` const expected = ` + .button { + border-radius: 0.75rem; + } + .button:focus { --tw-border-opacity: 1; } .button { - border-radius: 0.75rem; - padding-top: 0.5rem; - padding-bottom: 0.5rem; padding-left: 1.5rem; padding-right: 1.5rem; + padding-top: 0.5rem; + padding-bottom: 0.5rem; } .button:hover { @@ -628,6 +631,7 @@ test('you can apply complex classes recursively', () => { background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); --tw-text-opacity: 1; color: rgba(229, 231, 235, var(--tw-text-opacity)); + border-radius: 0.75rem; } .button-yellow:focus { @@ -635,11 +639,10 @@ test('you can apply complex classes recursively', () => { } .button-yellow { - border-radius: 0.75rem; - padding-top: 0.5rem; - padding-bottom: 0.5rem; padding-left: 1.5rem; padding-right: 1.5rem; + padding-top: 0.5rem; + padding-bottom: 0.5rem; } .button-yellow:hover { @@ -699,14 +702,12 @@ test('applied classes are always inserted before subsequent declarations in the const expected = ` .foo { background: blue; + text-align: right; opacity: 0.5; } .foo:hover { opacity: 1; } - .foo { - text-align: right; - } @media (min-width: 640px) { .foo { vertical-align: middle; @@ -732,15 +733,19 @@ test('adjacent rules are collapsed after being applied', () => { } ` const expected = ` + .foo { + position: absolute; + } .foo:hover { --tw-bg-opacity: 1; background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); - opacity: 0.5; } .foo { - position: absolute; text-align: right; } + .foo:hover { + opacity: 0.5; + } @media (min-width: 640px) { .foo { text-align: center; @@ -819,13 +824,11 @@ test('you can apply classes to rules within at-rules', () => { @supports (display: grid) { .baz .bar { float: left; + text-align: right; } .baz .bar:hover { opacity: 0.5; } - .baz .bar { - text-align: right; - } @media (min-width: 768px) { .baz .bar { float: right; diff --git a/__tests__/cli.compile.test.js b/tests/cli.compile.test.js similarity index 100% rename from __tests__/cli.compile.test.js rename to tests/cli.compile.test.js diff --git a/__tests__/cli.test.js b/tests/cli.test.js similarity index 100% rename from __tests__/cli.test.js rename to tests/cli.test.js diff --git a/__tests__/cli.utils.test.js b/tests/cli.utils.test.js similarity index 100% rename from __tests__/cli.utils.test.js rename to tests/cli.utils.test.js diff --git a/__tests__/configurePlugins.test.js b/tests/configurePlugins.test.js similarity index 100% rename from __tests__/configurePlugins.test.js rename to tests/configurePlugins.test.js diff --git a/__tests__/containerPlugin.test.js b/tests/containerPlugin.test.js similarity index 100% rename from __tests__/containerPlugin.test.js rename to tests/containerPlugin.test.js diff --git a/__tests__/customConfig.test.js b/tests/customConfig.test.js similarity index 100% rename from __tests__/customConfig.test.js rename to tests/customConfig.test.js diff --git a/__tests__/darkMode.test.js b/tests/darkMode.test.js similarity index 100% rename from __tests__/darkMode.test.js rename to tests/darkMode.test.js diff --git a/__tests__/defaultConfig.test.js b/tests/defaultConfig.test.js similarity index 100% rename from __tests__/defaultConfig.test.js rename to tests/defaultConfig.test.js diff --git a/__tests__/defaultTheme.test.js b/tests/defaultTheme.test.js similarity index 100% rename from __tests__/defaultTheme.test.js rename to tests/defaultTheme.test.js diff --git a/__tests__/escapeClassName.test.js b/tests/escapeClassName.test.js similarity index 100% rename from __tests__/escapeClassName.test.js rename to tests/escapeClassName.test.js diff --git a/__tests__/fixtures/custom-config.js b/tests/fixtures/custom-config.js similarity index 100% rename from __tests__/fixtures/custom-config.js rename to tests/fixtures/custom-config.js diff --git a/__tests__/fixtures/esm-package.json b/tests/fixtures/esm-package.json similarity index 100% rename from __tests__/fixtures/esm-package.json rename to tests/fixtures/esm-package.json diff --git a/__tests__/fixtures/purge-example.html b/tests/fixtures/purge-example.html similarity index 100% rename from __tests__/fixtures/purge-example.html rename to tests/fixtures/purge-example.html diff --git a/__tests__/fixtures/tailwind-input-import.css b/tests/fixtures/tailwind-input-import.css similarity index 100% rename from __tests__/fixtures/tailwind-input-import.css rename to tests/fixtures/tailwind-input-import.css diff --git a/__tests__/fixtures/tailwind-input-with-explicit-screen-utilities.css b/tests/fixtures/tailwind-input-with-explicit-screen-utilities.css similarity index 100% rename from __tests__/fixtures/tailwind-input-with-explicit-screen-utilities.css rename to tests/fixtures/tailwind-input-with-explicit-screen-utilities.css diff --git a/__tests__/fixtures/tailwind-input.css b/tests/fixtures/tailwind-input.css similarity index 100% rename from __tests__/fixtures/tailwind-input.css rename to tests/fixtures/tailwind-input.css diff --git a/__tests__/fixtures/tailwind-output-flagged.css b/tests/fixtures/tailwind-output-flagged.css similarity index 100% rename from __tests__/fixtures/tailwind-output-flagged.css rename to tests/fixtures/tailwind-output-flagged.css index 02c2ca013c6f..5c234b57f7f5 100644 --- a/__tests__/fixtures/tailwind-output-flagged.css +++ b/tests/fixtures/tailwind-output-flagged.css @@ -573,10199 +573,9355 @@ video { } } -.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)); +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } -.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))); +.not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } -.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)); +.focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } -.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))); +.focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } -.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)); +.focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } -.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))); +.focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } -.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)); +.pointer-events-none { + pointer-events: none; } -.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))); +.pointer-events-auto { + pointer-events: auto; } -.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)); +.visible { + visibility: visible; } -.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))); +.invisible { + visibility: hidden; } -.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)); +.static { + position: static; } -.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))); +.fixed { + position: fixed; } -.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)); +.absolute { + position: absolute; } -.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))); +.relative { + position: relative; } -.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)); +.sticky { + position: sticky; } -.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))); +.inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } -.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)); +.inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } -.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))); +.inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } -.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)); +.inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } -.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))); +.inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } -.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)); +.inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } -.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))); +.inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } -.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)); +.inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } -.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))); +.inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } -.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)); +.inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } -.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))); +.inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } -.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)); +.inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } -.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))); +.inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } -.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)); +.inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } -.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))); +.inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } -.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)); +.inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } -.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))); +.inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } -.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)); +.inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } -.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))); +.inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } -.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)); +.inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } -.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))); +.inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } -.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)); +.inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } -.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))); +.inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } -.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)); +.inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } -.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))); +.inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } -.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)); +.inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } -.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))); +.inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } -.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)); +.inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } -.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))); +.inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } -.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)); +.inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } -.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))); +.inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } -.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)); +.inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } -.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))); +.inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } -.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)); +.inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } -.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))); +.inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } -.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)); +.inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } -.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))); +.-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } -.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)); +.-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } -.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))); +.-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } -.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)); +.-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } -.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))); +.-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } -.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)); +.-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } -.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))); +.-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } -.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)); +.-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } -.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))); +.-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } -.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)); +.-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } -.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))); +.-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } -.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)); +.-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } -.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))); +.-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } -.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)); +.-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } -.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))); +.-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } -.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)); +.-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } -.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))); +.-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } -.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)); +.-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } -.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))); +.-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } -.-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)); +.-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } -.-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))); +.-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } -.-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)); +.-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } -.-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))); +.-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } -.-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)); +.-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } -.-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))); +.-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } -.-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)); +.-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } -.-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))); +.-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } -.-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)); +.-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } -.-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))); +.-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } -.-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)); +.-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } -.-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))); +.-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } -.-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)); +.-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } -.-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))); +.-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } -.-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)); +.-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } -.-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))); +.-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } -.-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)); +.inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } -.-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))); +.inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } -.-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)); +.inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } -.-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))); +.inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } -.-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)); +.inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } -.-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))); +.inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } -.-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)); +.inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } -.-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))); +.-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } -.-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)); +.-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } -.-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))); +.-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } -.-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)); +.-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } -.-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))); +.-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } -.-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)); +.-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } -.-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))); +.-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } -.-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)); +.inset-y-0 { + top: 0px; + bottom: 0px; } -.-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))); +.inset-x-0 { + right: 0px; + left: 0px; } -.-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)); +.inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } -.-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))); +.inset-x-1 { + right: 0.25rem; + left: 0.25rem; } -.-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)); +.inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } -.-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))); +.inset-x-2 { + right: 0.5rem; + left: 0.5rem; } -.-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)); +.inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } -.-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))); +.inset-x-3 { + right: 0.75rem; + left: 0.75rem; } -.-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)); +.inset-y-4 { + top: 1rem; + bottom: 1rem; } -.-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))); +.inset-x-4 { + right: 1rem; + left: 1rem; } -.-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)); +.inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } -.-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))); +.inset-x-5 { + right: 1.25rem; + left: 1.25rem; } -.-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)); +.inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } -.-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))); +.inset-x-6 { + right: 1.5rem; + left: 1.5rem; } -.-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)); +.inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } -.-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))); +.inset-x-7 { + right: 1.75rem; + left: 1.75rem; } -.-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)); +.inset-y-8 { + top: 2rem; + bottom: 2rem; } -.-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)); +.inset-x-8 { + right: 2rem; + left: 2rem; } -.-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))); +.inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } -.-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)); +.inset-x-9 { + right: 2.25rem; + left: 2.25rem; } -.-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))); +.inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } -.-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)); +.inset-x-10 { + right: 2.5rem; + left: 2.5rem; } -.-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))); +.inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } -.-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)); +.inset-x-11 { + right: 2.75rem; + left: 2.75rem; } -.-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))); +.inset-y-12 { + top: 3rem; + bottom: 3rem; } -.-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)); +.inset-x-12 { + right: 3rem; + left: 3rem; } -.-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))); +.inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } -.-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)); +.inset-x-14 { + right: 3.5rem; + left: 3.5rem; } -.-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))); +.inset-y-16 { + top: 4rem; + bottom: 4rem; } -.-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)); +.inset-x-16 { + right: 4rem; + left: 4rem; } -.-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))); +.inset-y-20 { + top: 5rem; + bottom: 5rem; } -.-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)); +.inset-x-20 { + right: 5rem; + left: 5rem; } -.-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))); +.inset-y-24 { + top: 6rem; + bottom: 6rem; } -.-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)); +.inset-x-24 { + right: 6rem; + left: 6rem; } -.-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))); +.inset-y-28 { + top: 7rem; + bottom: 7rem; } -.-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)); +.inset-x-28 { + right: 7rem; + left: 7rem; } -.-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))); +.inset-y-32 { + top: 8rem; + bottom: 8rem; } -.-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)); +.inset-x-32 { + right: 8rem; + left: 8rem; } -.-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))); +.inset-y-36 { + top: 9rem; + bottom: 9rem; } -.space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; +.inset-x-36 { + right: 9rem; + left: 9rem; } -.space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; +.inset-y-40 { + top: 10rem; + bottom: 10rem; } -.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)); +.inset-x-40 { + right: 10rem; + left: 10rem; } -.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))); +.inset-y-44 { + top: 11rem; + bottom: 11rem; } -.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)); +.inset-x-44 { + right: 11rem; + left: 11rem; } -.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))); +.inset-y-48 { + top: 12rem; + bottom: 12rem; } -.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)); +.inset-x-48 { + right: 12rem; + left: 12rem; } -.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))); +.inset-y-52 { + top: 13rem; + bottom: 13rem; } -.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)); +.inset-x-52 { + right: 13rem; + left: 13rem; } -.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))); +.inset-y-56 { + top: 14rem; + bottom: 14rem; } -.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)); +.inset-x-56 { + right: 14rem; + left: 14rem; } -.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))); +.inset-y-60 { + top: 15rem; + bottom: 15rem; } -.divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; +.inset-x-60 { + right: 15rem; + left: 15rem; } -.divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; +.inset-y-64 { + top: 16rem; + bottom: 16rem; } -.divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; +.inset-x-64 { + right: 16rem; + left: 16rem; } -.divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; +.inset-y-72 { + top: 18rem; + bottom: 18rem; } -.divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); +.inset-x-72 { + right: 18rem; + left: 18rem; } -.divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); +.inset-y-80 { + top: 20rem; + bottom: 20rem; } -.divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); +.inset-x-80 { + right: 20rem; + left: 20rem; } -.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); +.inset-y-96 { + top: 24rem; + bottom: 24rem; } -.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); +.inset-x-96 { + right: 24rem; + left: 24rem; } -.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); +.inset-y-auto { + top: auto; + bottom: auto; } -.divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); +.inset-x-auto { + right: auto; + left: auto; } -.divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); +.inset-y-px { + top: 1px; + bottom: 1px; } -.divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); +.inset-x-px { + right: 1px; + left: 1px; } -.divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); +.inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } -.divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); +.inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } -.divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); +.inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } -.divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); +.inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } -.divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); +.inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } -.divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); +.inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } -.divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); +.inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } -.divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); +.inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } -.divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); +.-inset-y-0 { + top: 0px; + bottom: 0px; } -.divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); +.-inset-x-0 { + right: 0px; + left: 0px; } -.divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); +.-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } -.divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); +.-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } -.divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); +.-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } -.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); +.-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } -.divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); +.-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } -.divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); +.-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } -.divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); +.-inset-y-4 { + top: -1rem; + bottom: -1rem; } -.divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); +.-inset-x-4 { + right: -1rem; + left: -1rem; } -.divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); +.-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } -.divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); +.-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } -.divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); +.-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } -.divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); +.-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } -.divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); +.-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } -.divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); +.-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } -.divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); +.-inset-y-8 { + top: -2rem; + bottom: -2rem; } -.divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); +.-inset-x-8 { + right: -2rem; + left: -2rem; } -.divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); +.-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } -.divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); +.-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } -.divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); +.-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } -.divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); +.-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } -.divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); +.-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } -.divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); +.-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } -.divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); +.-inset-y-12 { + top: -3rem; + bottom: -3rem; } -.divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); +.-inset-x-12 { + right: -3rem; + left: -3rem; } -.divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); +.-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } -.divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); +.-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } -.divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); +.-inset-y-16 { + top: -4rem; + bottom: -4rem; } -.divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); +.-inset-x-16 { + right: -4rem; + left: -4rem; } -.divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); +.-inset-y-20 { + top: -5rem; + bottom: -5rem; } -.divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); +.-inset-x-20 { + right: -5rem; + left: -5rem; } -.divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); +.-inset-y-24 { + top: -6rem; + bottom: -6rem; } -.divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); +.-inset-x-24 { + right: -6rem; + left: -6rem; } -.divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); +.-inset-y-28 { + top: -7rem; + bottom: -7rem; } -.divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); +.-inset-x-28 { + right: -7rem; + left: -7rem; } -.divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); +.-inset-y-32 { + top: -8rem; + bottom: -8rem; } -.divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); +.-inset-x-32 { + right: -8rem; + left: -8rem; } -.divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); +.-inset-y-36 { + top: -9rem; + bottom: -9rem; } -.divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); +.-inset-x-36 { + right: -9rem; + left: -9rem; } -.divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); +.-inset-y-40 { + top: -10rem; + bottom: -10rem; } -.divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); +.-inset-x-40 { + right: -10rem; + left: -10rem; } -.divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); +.-inset-y-44 { + top: -11rem; + bottom: -11rem; } -.divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); +.-inset-x-44 { + right: -11rem; + left: -11rem; } -.divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); +.-inset-y-48 { + top: -12rem; + bottom: -12rem; } -.divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); +.-inset-x-48 { + right: -12rem; + left: -12rem; } -.divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); +.-inset-y-52 { + top: -13rem; + bottom: -13rem; } -.divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); +.-inset-x-52 { + right: -13rem; + left: -13rem; } -.divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); +.-inset-y-56 { + top: -14rem; + bottom: -14rem; } -.divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); +.-inset-x-56 { + right: -14rem; + left: -14rem; } -.divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); +.-inset-y-60 { + top: -15rem; + bottom: -15rem; } -.divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); +.-inset-x-60 { + right: -15rem; + left: -15rem; } -.divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); +.-inset-y-64 { + top: -16rem; + bottom: -16rem; } -.divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); +.-inset-x-64 { + right: -16rem; + left: -16rem; } -.divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); +.-inset-y-72 { + top: -18rem; + bottom: -18rem; } -.divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); +.-inset-x-72 { + right: -18rem; + left: -18rem; } -.divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); +.-inset-y-80 { + top: -20rem; + bottom: -20rem; } -.divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); +.-inset-x-80 { + right: -20rem; + left: -20rem; } -.divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); +.-inset-y-96 { + top: -24rem; + bottom: -24rem; } -.divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); +.-inset-x-96 { + right: -24rem; + left: -24rem; } -.divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); +.-inset-y-px { + top: -1px; + bottom: -1px; } -.divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); +.-inset-x-px { + right: -1px; + left: -1px; } -.divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); +.-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } -.divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); +.-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } -.divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); +.-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } -.divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; +.-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } -.divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; +.-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } -.divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; +.-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } -.divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; +.-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } -.divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; +.-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } -.divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; +.inset-y-1\/2 { + top: 50%; + bottom: 50%; } -.divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; +.inset-x-1\/2 { + right: 50%; + left: 50%; } -.divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; +.inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } -.divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; +.inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } -.divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; +.inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } -.divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; +.inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } -.divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; +.inset-y-1\/4 { + top: 25%; + bottom: 25%; } -.divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; +.inset-x-1\/4 { + right: 25%; + left: 25%; } -.divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; +.inset-y-2\/4 { + top: 50%; + bottom: 50%; } -.divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; +.inset-x-2\/4 { + right: 50%; + left: 50%; } -.divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; +.inset-y-3\/4 { + top: 75%; + bottom: 75%; } -.divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; +.inset-x-3\/4 { + right: 75%; + left: 75%; } -.divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; +.inset-y-full { + top: 100%; + bottom: 100%; } -.divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; +.inset-x-full { + right: 100%; + left: 100%; } -.divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; +.-inset-y-1\/2 { + top: -50%; + bottom: -50%; } -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; +.-inset-x-1\/2 { + right: -50%; + left: -50%; } -.not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; +.-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } -.focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; +.-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } -.focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; +.-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } -.focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; +.-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } -.focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; +.-inset-y-1\/4 { + top: -25%; + bottom: -25%; } -.appearance-none { - appearance: none; +.-inset-x-1\/4 { + right: -25%; + left: -25%; } -.bg-fixed { - background-attachment: fixed; +.-inset-y-2\/4 { + top: -50%; + bottom: -50%; } -.bg-local { - background-attachment: local; +.-inset-x-2\/4 { + right: -50%; + left: -50%; } -.bg-scroll { - background-attachment: scroll; +.-inset-y-3\/4 { + top: -75%; + bottom: -75%; } -.bg-clip-border { - background-clip: border-box; +.-inset-x-3\/4 { + right: -75%; + left: -75%; } -.bg-clip-padding { - background-clip: padding-box; +.-inset-y-full { + top: -100%; + bottom: -100%; } -.bg-clip-content { - background-clip: content-box; +.-inset-x-full { + right: -100%; + left: -100%; } -.bg-clip-text { - background-clip: text; +.top-0 { + top: 0px; } -.bg-transparent { - background-color: transparent; +.right-0 { + right: 0px; } -.bg-current { - background-color: currentColor; +.bottom-0 { + bottom: 0px; } -.bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +.left-0 { + left: 0px; } -.bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +.top-1 { + top: 0.25rem; } -.bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +.right-1 { + right: 0.25rem; } -.bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +.bottom-1 { + bottom: 0.25rem; } -.bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +.left-1 { + left: 0.25rem; } -.bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +.top-2 { + top: 0.5rem; } -.bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +.right-2 { + right: 0.5rem; } -.bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +.bottom-2 { + bottom: 0.5rem; } -.bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +.left-2 { + left: 0.5rem; } -.bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +.top-3 { + top: 0.75rem; } -.bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +.right-3 { + right: 0.75rem; } -.bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +.bottom-3 { + bottom: 0.75rem; } -.bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); +.left-3 { + left: 0.75rem; } -.bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); +.top-4 { + top: 1rem; } -.bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); +.right-4 { + right: 1rem; } -.bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); +.bottom-4 { + bottom: 1rem; } -.bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); +.left-4 { + left: 1rem; } -.bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); +.top-5 { + top: 1.25rem; } -.bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); +.right-5 { + right: 1.25rem; } -.bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); +.bottom-5 { + bottom: 1.25rem; } -.bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); +.left-5 { + left: 1.25rem; } -.bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); +.top-6 { + top: 1.5rem; } -.bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); +.right-6 { + right: 1.5rem; } -.bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); +.bottom-6 { + bottom: 1.5rem; } -.bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); +.left-6 { + left: 1.5rem; } -.bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); +.top-7 { + top: 1.75rem; } -.bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); +.right-7 { + right: 1.75rem; } -.bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +.bottom-7 { + bottom: 1.75rem; } -.bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); +.left-7 { + left: 1.75rem; } -.bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); +.top-8 { + top: 2rem; } -.bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); +.right-8 { + right: 2rem; } -.bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); +.bottom-8 { + bottom: 2rem; } -.bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); +.left-8 { + left: 2rem; } -.bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); +.top-9 { + top: 2.25rem; } -.bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); +.right-9 { + right: 2.25rem; } -.bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); +.bottom-9 { + bottom: 2.25rem; } -.bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); +.left-9 { + left: 2.25rem; } -.bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); +.top-10 { + top: 2.5rem; } -.bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); +.right-10 { + right: 2.5rem; } -.bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); +.bottom-10 { + bottom: 2.5rem; } -.bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); +.left-10 { + left: 2.5rem; } -.bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); +.top-11 { + top: 2.75rem; } -.bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); +.right-11 { + right: 2.75rem; } -.bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); +.bottom-11 { + bottom: 2.75rem; } -.bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); +.left-11 { + left: 2.75rem; } -.bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); +.top-12 { + top: 3rem; } -.bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); +.right-12 { + right: 3rem; } -.bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +.bottom-12 { + bottom: 3rem; } -.bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); +.left-12 { + left: 3rem; } -.bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); +.top-14 { + top: 3.5rem; } -.bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); +.right-14 { + right: 3.5rem; } -.bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); +.bottom-14 { + bottom: 3.5rem; } -.bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); +.left-14 { + left: 3.5rem; } -.bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); +.top-16 { + top: 4rem; } -.bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); +.right-16 { + right: 4rem; } -.bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); +.bottom-16 { + bottom: 4rem; } -.bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); +.left-16 { + left: 4rem; } -.bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); +.top-20 { + top: 5rem; } -.bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); +.right-20 { + right: 5rem; } -.bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); +.bottom-20 { + bottom: 5rem; } -.bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); +.left-20 { + left: 5rem; } -.bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); +.top-24 { + top: 6rem; } -.bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); +.right-24 { + right: 6rem; } -.bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); +.bottom-24 { + bottom: 6rem; } -.bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); +.left-24 { + left: 6rem; } -.bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); +.top-28 { + top: 7rem; } -.bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); +.right-28 { + right: 7rem; } -.bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); +.bottom-28 { + bottom: 7rem; } -.bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); +.left-28 { + left: 7rem; } -.bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); +.top-32 { + top: 8rem; } -.bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); +.right-32 { + right: 8rem; } -.bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); +.bottom-32 { + bottom: 8rem; } -.bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); +.left-32 { + left: 8rem; } -.bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); +.top-36 { + top: 9rem; } -.bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); +.right-36 { + right: 9rem; } -.bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); +.bottom-36 { + bottom: 9rem; } -.bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); +.left-36 { + left: 9rem; } -.bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); +.top-40 { + top: 10rem; } -.bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); +.right-40 { + right: 10rem; } -.bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); +.bottom-40 { + bottom: 10rem; } -.bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); +.left-40 { + left: 10rem; } -.bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); +.top-44 { + top: 11rem; } -.group:hover .group-hover\:bg-transparent { - background-color: transparent; +.right-44 { + right: 11rem; } -.group:hover .group-hover\:bg-current { - background-color: currentColor; +.bottom-44 { + bottom: 11rem; } -.group:hover .group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +.left-44 { + left: 11rem; } -.group:hover .group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +.top-48 { + top: 12rem; } -.group:hover .group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +.right-48 { + right: 12rem; } -.group:hover .group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +.bottom-48 { + bottom: 12rem; } -.group:hover .group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +.left-48 { + left: 12rem; } -.group:hover .group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +.top-52 { + top: 13rem; } -.group:hover .group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +.right-52 { + right: 13rem; } -.group:hover .group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +.bottom-52 { + bottom: 13rem; } -.group:hover .group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +.left-52 { + left: 13rem; } -.group:hover .group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +.top-56 { + top: 14rem; } -.group:hover .group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +.right-56 { + right: 14rem; } -.group:hover .group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +.bottom-56 { + bottom: 14rem; } -.group:hover .group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); +.left-56 { + left: 14rem; } -.group:hover .group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); +.top-60 { + top: 15rem; } -.group:hover .group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); +.right-60 { + right: 15rem; } -.group:hover .group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); +.bottom-60 { + bottom: 15rem; } -.group:hover .group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); +.left-60 { + left: 15rem; } -.group:hover .group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); +.top-64 { + top: 16rem; } -.group:hover .group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); +.right-64 { + right: 16rem; } -.group:hover .group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); +.bottom-64 { + bottom: 16rem; } -.group:hover .group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); +.left-64 { + left: 16rem; } -.group:hover .group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); +.top-72 { + top: 18rem; } -.group:hover .group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); +.right-72 { + right: 18rem; } -.group:hover .group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); +.bottom-72 { + bottom: 18rem; } -.group:hover .group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); +.left-72 { + left: 18rem; } -.group:hover .group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); +.top-80 { + top: 20rem; } -.group:hover .group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); +.right-80 { + right: 20rem; } -.group:hover .group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +.bottom-80 { + bottom: 20rem; } -.group:hover .group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); +.left-80 { + left: 20rem; } -.group:hover .group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); +.top-96 { + top: 24rem; } -.group:hover .group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); +.right-96 { + right: 24rem; } -.group:hover .group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); +.bottom-96 { + bottom: 24rem; } -.group:hover .group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); +.left-96 { + left: 24rem; } -.group:hover .group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); +.top-auto { + top: auto; } -.group:hover .group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); +.right-auto { + right: auto; } -.group:hover .group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); +.bottom-auto { + bottom: auto; } -.group:hover .group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); +.left-auto { + left: auto; } -.group:hover .group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); +.top-px { + top: 1px; } -.group:hover .group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); +.right-px { + right: 1px; } -.group:hover .group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); +.bottom-px { + bottom: 1px; } -.group:hover .group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); +.left-px { + left: 1px; } -.group:hover .group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); +.top-0\.5 { + top: 0.125rem; } -.group:hover .group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); +.right-0\.5 { + right: 0.125rem; } -.group:hover .group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); +.bottom-0\.5 { + bottom: 0.125rem; } -.group:hover .group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); +.left-0\.5 { + left: 0.125rem; } -.group:hover .group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); +.top-1\.5 { + top: 0.375rem; } -.group:hover .group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); +.right-1\.5 { + right: 0.375rem; } -.group:hover .group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +.bottom-1\.5 { + bottom: 0.375rem; } -.group:hover .group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); +.left-1\.5 { + left: 0.375rem; } -.group:hover .group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); +.top-2\.5 { + top: 0.625rem; } -.group:hover .group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); +.right-2\.5 { + right: 0.625rem; } -.group:hover .group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); +.bottom-2\.5 { + bottom: 0.625rem; } -.group:hover .group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); +.left-2\.5 { + left: 0.625rem; } -.group:hover .group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); +.top-3\.5 { + top: 0.875rem; } -.group:hover .group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); +.right-3\.5 { + right: 0.875rem; } -.group:hover .group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); +.bottom-3\.5 { + bottom: 0.875rem; } -.group:hover .group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); +.left-3\.5 { + left: 0.875rem; } -.group:hover .group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); +.-top-0 { + top: 0px; } -.group:hover .group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); +.-right-0 { + right: 0px; } -.group:hover .group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); +.-bottom-0 { + bottom: 0px; } -.group:hover .group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); +.-left-0 { + left: 0px; } -.group:hover .group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); +.-top-1 { + top: -0.25rem; } -.group:hover .group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); +.-right-1 { + right: -0.25rem; } -.group:hover .group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); +.-bottom-1 { + bottom: -0.25rem; } -.group:hover .group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); +.-left-1 { + left: -0.25rem; } -.group:hover .group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); +.-top-2 { + top: -0.5rem; } -.group:hover .group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); +.-right-2 { + right: -0.5rem; } -.group:hover .group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); +.-bottom-2 { + bottom: -0.5rem; } -.group:hover .group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); +.-left-2 { + left: -0.5rem; } -.group:hover .group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); +.-top-3 { + top: -0.75rem; } -.group:hover .group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); +.-right-3 { + right: -0.75rem; } -.group:hover .group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); +.-bottom-3 { + bottom: -0.75rem; } -.group:hover .group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); +.-left-3 { + left: -0.75rem; } -.group:hover .group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); +.-top-4 { + top: -1rem; } -.group:hover .group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); +.-right-4 { + right: -1rem; } -.group:hover .group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); +.-bottom-4 { + bottom: -1rem; } -.group:hover .group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); +.-left-4 { + left: -1rem; } -.group:hover .group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); +.-top-5 { + top: -1.25rem; } -.group:hover .group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); +.-right-5 { + right: -1.25rem; } -.group:hover .group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); +.-bottom-5 { + bottom: -1.25rem; } -.group:hover .group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); +.-left-5 { + left: -1.25rem; } -.group:hover .group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); +.-top-6 { + top: -1.5rem; } -.focus-within\:bg-transparent:focus-within { - background-color: transparent; +.-right-6 { + right: -1.5rem; } -.focus-within\:bg-current:focus-within { - background-color: currentColor; +.-bottom-6 { + bottom: -1.5rem; } -.focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +.-left-6 { + left: -1.5rem; } -.focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +.-top-7 { + top: -1.75rem; } -.focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +.-right-7 { + right: -1.75rem; } -.focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +.-bottom-7 { + bottom: -1.75rem; } -.focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +.-left-7 { + left: -1.75rem; } -.focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +.-top-8 { + top: -2rem; } -.focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +.-right-8 { + right: -2rem; } -.focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +.-bottom-8 { + bottom: -2rem; } -.focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +.-left-8 { + left: -2rem; } -.focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +.-top-9 { + top: -2.25rem; } -.focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +.-right-9 { + right: -2.25rem; } -.focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +.-bottom-9 { + bottom: -2.25rem; } -.focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); +.-left-9 { + left: -2.25rem; } -.focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); +.-top-10 { + top: -2.5rem; } -.focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); +.-right-10 { + right: -2.5rem; } -.focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); +.-bottom-10 { + bottom: -2.5rem; } -.focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); +.-left-10 { + left: -2.5rem; } -.focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); +.-top-11 { + top: -2.75rem; } -.focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); +.-right-11 { + right: -2.75rem; } -.focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); +.-bottom-11 { + bottom: -2.75rem; } -.focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); +.-left-11 { + left: -2.75rem; } -.focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); +.-top-12 { + top: -3rem; } -.focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); +.-right-12 { + right: -3rem; } -.focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); +.-bottom-12 { + bottom: -3rem; } -.focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); +.-left-12 { + left: -3rem; } -.focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); +.-top-14 { + top: -3.5rem; } -.focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); +.-right-14 { + right: -3.5rem; } -.focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +.-bottom-14 { + bottom: -3.5rem; } -.focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); +.-left-14 { + left: -3.5rem; } -.focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); +.-top-16 { + top: -4rem; } -.focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); +.-right-16 { + right: -4rem; } -.focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); +.-bottom-16 { + bottom: -4rem; } -.focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); +.-left-16 { + left: -4rem; } -.focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); +.-top-20 { + top: -5rem; } -.focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); +.-right-20 { + right: -5rem; } -.focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); +.-bottom-20 { + bottom: -5rem; } -.focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); +.-left-20 { + left: -5rem; } -.focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); +.-top-24 { + top: -6rem; } -.focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); +.-right-24 { + right: -6rem; } -.focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); +.-bottom-24 { + bottom: -6rem; } -.focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); +.-left-24 { + left: -6rem; } -.focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); +.-top-28 { + top: -7rem; } -.focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); +.-right-28 { + right: -7rem; } -.focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); +.-bottom-28 { + bottom: -7rem; } -.focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); +.-left-28 { + left: -7rem; } -.focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); +.-top-32 { + top: -8rem; } -.focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); +.-right-32 { + right: -8rem; } -.focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +.-bottom-32 { + bottom: -8rem; } -.focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); +.-left-32 { + left: -8rem; } -.focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); +.-top-36 { + top: -9rem; } -.focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); +.-right-36 { + right: -9rem; } -.focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); +.-bottom-36 { + bottom: -9rem; } -.focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); +.-left-36 { + left: -9rem; } -.focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); +.-top-40 { + top: -10rem; } -.focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); +.-right-40 { + right: -10rem; } -.focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); +.-bottom-40 { + bottom: -10rem; } -.focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); +.-left-40 { + left: -10rem; } -.focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); +.-top-44 { + top: -11rem; } -.focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); +.-right-44 { + right: -11rem; } -.focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); +.-bottom-44 { + bottom: -11rem; } -.focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); +.-left-44 { + left: -11rem; } -.focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); +.-top-48 { + top: -12rem; } -.focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); +.-right-48 { + right: -12rem; } -.focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); +.-bottom-48 { + bottom: -12rem; } -.focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); +.-left-48 { + left: -12rem; } -.focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); +.-top-52 { + top: -13rem; } -.focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); +.-right-52 { + right: -13rem; } -.focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); +.-bottom-52 { + bottom: -13rem; } -.focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); +.-left-52 { + left: -13rem; } -.focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); +.-top-56 { + top: -14rem; } -.focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); +.-right-56 { + right: -14rem; } -.focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); +.-bottom-56 { + bottom: -14rem; } -.focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); +.-left-56 { + left: -14rem; } -.focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); +.-top-60 { + top: -15rem; } -.focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); +.-right-60 { + right: -15rem; } -.focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); +.-bottom-60 { + bottom: -15rem; } -.focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); +.-left-60 { + left: -15rem; } -.focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); +.-top-64 { + top: -16rem; } -.focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); +.-right-64 { + right: -16rem; } -.focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); +.-bottom-64 { + bottom: -16rem; } -.focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); +.-left-64 { + left: -16rem; } -.focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); +.-top-72 { + top: -18rem; } -.hover\:bg-transparent:hover { - background-color: transparent; +.-right-72 { + right: -18rem; } -.hover\:bg-current:hover { - background-color: currentColor; +.-bottom-72 { + bottom: -18rem; } -.hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +.-left-72 { + left: -18rem; } -.hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +.-top-80 { + top: -20rem; } -.hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +.-right-80 { + right: -20rem; } -.hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +.-bottom-80 { + bottom: -20rem; } -.hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +.-left-80 { + left: -20rem; } -.hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +.-top-96 { + top: -24rem; } -.hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +.-right-96 { + right: -24rem; } -.hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +.-bottom-96 { + bottom: -24rem; } -.hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +.-left-96 { + left: -24rem; } -.hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +.-top-px { + top: -1px; } -.hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +.-right-px { + right: -1px; } -.hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +.-bottom-px { + bottom: -1px; } -.hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); +.-left-px { + left: -1px; } -.hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); +.-top-0\.5 { + top: -0.125rem; } -.hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); +.-right-0\.5 { + right: -0.125rem; } -.hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); +.-bottom-0\.5 { + bottom: -0.125rem; } -.hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); +.-left-0\.5 { + left: -0.125rem; } -.hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); +.-top-1\.5 { + top: -0.375rem; } -.hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); +.-right-1\.5 { + right: -0.375rem; } -.hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); +.-bottom-1\.5 { + bottom: -0.375rem; } -.hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); +.-left-1\.5 { + left: -0.375rem; } -.hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); +.-top-2\.5 { + top: -0.625rem; } -.hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); +.-right-2\.5 { + right: -0.625rem; } -.hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); +.-bottom-2\.5 { + bottom: -0.625rem; } -.hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); +.-left-2\.5 { + left: -0.625rem; } -.hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); +.-top-3\.5 { + top: -0.875rem; } -.hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); +.-right-3\.5 { + right: -0.875rem; } -.hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +.-bottom-3\.5 { + bottom: -0.875rem; } -.hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); +.-left-3\.5 { + left: -0.875rem; } -.hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); +.top-1\/2 { + top: 50%; } -.hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); +.right-1\/2 { + right: 50%; } -.hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); +.bottom-1\/2 { + bottom: 50%; } -.hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); +.left-1\/2 { + left: 50%; } -.hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); +.top-1\/3 { + top: 33.333333%; } -.hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); +.right-1\/3 { + right: 33.333333%; } -.hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); +.bottom-1\/3 { + bottom: 33.333333%; } -.hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); +.left-1\/3 { + left: 33.333333%; } -.hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); +.top-2\/3 { + top: 66.666667%; } -.hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); +.right-2\/3 { + right: 66.666667%; } -.hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); +.bottom-2\/3 { + bottom: 66.666667%; } -.hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); +.left-2\/3 { + left: 66.666667%; } -.hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); +.top-1\/4 { + top: 25%; } -.hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); +.right-1\/4 { + right: 25%; } -.hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); +.bottom-1\/4 { + bottom: 25%; } -.hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); +.left-1\/4 { + left: 25%; } -.hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); +.top-2\/4 { + top: 50%; } -.hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); +.right-2\/4 { + right: 50%; } -.hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +.bottom-2\/4 { + bottom: 50%; } -.hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); +.left-2\/4 { + left: 50%; } -.hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); +.top-3\/4 { + top: 75%; } -.hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); +.right-3\/4 { + right: 75%; } -.hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); +.bottom-3\/4 { + bottom: 75%; } -.hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); +.left-3\/4 { + left: 75%; } -.hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); +.top-full { + top: 100%; } -.hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); +.right-full { + right: 100%; } -.hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); +.bottom-full { + bottom: 100%; } -.hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); +.left-full { + left: 100%; } -.hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); +.-top-1\/2 { + top: -50%; } -.hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); +.-right-1\/2 { + right: -50%; } -.hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); +.-bottom-1\/2 { + bottom: -50%; } -.hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); +.-left-1\/2 { + left: -50%; } -.hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); +.-top-1\/3 { + top: -33.333333%; } -.hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); +.-right-1\/3 { + right: -33.333333%; } -.hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); +.-bottom-1\/3 { + bottom: -33.333333%; } -.hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); +.-left-1\/3 { + left: -33.333333%; } -.hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); +.-top-2\/3 { + top: -66.666667%; } -.hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); +.-right-2\/3 { + right: -66.666667%; } -.hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); +.-bottom-2\/3 { + bottom: -66.666667%; } -.hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); +.-left-2\/3 { + left: -66.666667%; } -.hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); +.-top-1\/4 { + top: -25%; } -.hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); +.-right-1\/4 { + right: -25%; } -.hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); +.-bottom-1\/4 { + bottom: -25%; } -.hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); +.-left-1\/4 { + left: -25%; } -.hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); +.-top-2\/4 { + top: -50%; } -.hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); +.-right-2\/4 { + right: -50%; } -.hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); +.-bottom-2\/4 { + bottom: -50%; } -.hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); +.-left-2\/4 { + left: -50%; } -.hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); +.-top-3\/4 { + top: -75%; } -.hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); +.-right-3\/4 { + right: -75%; } -.hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); +.-bottom-3\/4 { + bottom: -75%; } -.hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); +.-left-3\/4 { + left: -75%; } -.hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); +.-top-full { + top: -100%; } -.focus\:bg-transparent:focus { - background-color: transparent; +.-right-full { + right: -100%; } -.focus\:bg-current:focus { - background-color: currentColor; +.-bottom-full { + bottom: -100%; } -.focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +.-left-full { + left: -100%; } -.focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +.isolate { + isolation: isolate; } -.focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +.isolation-auto { + isolation: auto; } -.focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +.z-0 { + z-index: 0; } -.focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +.z-10 { + z-index: 10; } -.focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +.z-20 { + z-index: 20; } -.focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +.z-30 { + z-index: 30; } -.focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +.z-40 { + z-index: 40; } -.focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +.z-50 { + z-index: 50; } -.focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +.z-auto { + z-index: auto; } -.focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +.focus-within\:z-0:focus-within { + z-index: 0; } -.focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +.focus-within\:z-10:focus-within { + z-index: 10; } -.focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); +.focus-within\:z-20:focus-within { + z-index: 20; } -.focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); +.focus-within\:z-30:focus-within { + z-index: 30; } -.focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); +.focus-within\:z-40:focus-within { + z-index: 40; } -.focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); +.focus-within\:z-50:focus-within { + z-index: 50; } -.focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); +.focus-within\:z-auto:focus-within { + z-index: auto; } -.focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); +.focus\:z-0:focus { + z-index: 0; } -.focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); +.focus\:z-10:focus { + z-index: 10; } -.focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); +.focus\:z-20:focus { + z-index: 20; } -.focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); +.focus\:z-30:focus { + z-index: 30; } -.focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); +.focus\:z-40:focus { + z-index: 40; } -.focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); +.focus\:z-50:focus { + z-index: 50; } -.focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); +.focus\:z-auto:focus { + z-index: auto; } -.focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); +.order-1 { + order: 1; } -.focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); +.order-2 { + order: 2; } -.focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); +.order-3 { + order: 3; } -.focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +.order-4 { + order: 4; } -.focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); +.order-5 { + order: 5; } -.focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); +.order-6 { + order: 6; } -.focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); +.order-7 { + order: 7; } -.focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); +.order-8 { + order: 8; } -.focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); +.order-9 { + order: 9; } -.focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); +.order-10 { + order: 10; } -.focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); +.order-11 { + order: 11; } -.focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); +.order-12 { + order: 12; } -.focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); +.order-first { + order: -9999; } -.focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); +.order-last { + order: 9999; } -.focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); +.order-none { + order: 0; } -.focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); +.col-auto { + grid-column: auto; } -.focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); +.col-span-1 { + grid-column: span 1 / span 1; } -.focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); +.col-span-2 { + grid-column: span 2 / span 2; } -.focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); +.col-span-3 { + grid-column: span 3 / span 3; } -.focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); +.col-span-4 { + grid-column: span 4 / span 4; } -.focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); +.col-span-5 { + grid-column: span 5 / span 5; } -.focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); +.col-span-6 { + grid-column: span 6 / span 6; } -.focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); +.col-span-7 { + grid-column: span 7 / span 7; } -.focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +.col-span-8 { + grid-column: span 8 / span 8; } -.focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); +.col-span-9 { + grid-column: span 9 / span 9; } -.focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); +.col-span-10 { + grid-column: span 10 / span 10; } -.focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); +.col-span-11 { + grid-column: span 11 / span 11; } -.focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); +.col-span-12 { + grid-column: span 12 / span 12; } -.focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); +.col-span-full { + grid-column: 1 / -1; } -.focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); +.col-start-1 { + grid-column-start: 1; } -.focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); +.col-start-2 { + grid-column-start: 2; } -.focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); +.col-start-3 { + grid-column-start: 3; } -.focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); +.col-start-4 { + grid-column-start: 4; } -.focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); +.col-start-5 { + grid-column-start: 5; } -.focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); +.col-start-6 { + grid-column-start: 6; } -.focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); +.col-start-7 { + grid-column-start: 7; } -.focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); +.col-start-8 { + grid-column-start: 8; } -.focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); +.col-start-9 { + grid-column-start: 9; } -.focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); +.col-start-10 { + grid-column-start: 10; } -.focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); +.col-start-11 { + grid-column-start: 11; } -.focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); +.col-start-12 { + grid-column-start: 12; } -.focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); +.col-start-13 { + grid-column-start: 13; } -.focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); +.col-start-auto { + grid-column-start: auto; } -.focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); +.col-end-1 { + grid-column-end: 1; } -.focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); +.col-end-2 { + grid-column-end: 2; } -.focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); +.col-end-3 { + grid-column-end: 3; } -.focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); +.col-end-4 { + grid-column-end: 4; } -.focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); +.col-end-5 { + grid-column-end: 5; } -.focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); +.col-end-6 { + grid-column-end: 6; } -.focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); +.col-end-7 { + grid-column-end: 7; } -.focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); +.col-end-8 { + grid-column-end: 8; } -.focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); +.col-end-9 { + grid-column-end: 9; } -.focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); +.col-end-10 { + grid-column-end: 10; } -.focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); +.col-end-11 { + grid-column-end: 11; } -.focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); +.col-end-12 { + grid-column-end: 12; } -.focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); +.col-end-13 { + grid-column-end: 13; } -.focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); +.col-end-auto { + grid-column-end: auto; } -.focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); +.row-auto { + grid-row: auto; } -.bg-none { - background-image: none; +.row-span-1 { + grid-row: span 1 / span 1; } -.bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); +.row-span-2 { + grid-row: span 2 / span 2; } -.bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); +.row-span-3 { + grid-row: span 3 / span 3; } -.bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); +.row-span-4 { + grid-row: span 4 / span 4; } -.bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); +.row-span-5 { + grid-row: span 5 / span 5; } -.bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); +.row-span-6 { + grid-row: span 6 / span 6; } -.bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); +.row-span-full { + grid-row: 1 / -1; } -.bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); +.row-start-1 { + grid-row-start: 1; } -.bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); +.row-start-2 { + grid-row-start: 2; } -.from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.row-start-3 { + grid-row-start: 3; } -.from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.row-start-4 { + grid-row-start: 4; } -.from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.row-start-5 { + grid-row-start: 5; } -.from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.row-start-6 { + grid-row-start: 6; } -.from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.row-start-7 { + grid-row-start: 7; } -.from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.row-start-auto { + grid-row-start: auto; } -.from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.row-end-1 { + grid-row-end: 1; } -.from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.row-end-2 { + grid-row-end: 2; } -.from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.row-end-3 { + grid-row-end: 3; } -.from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.row-end-4 { + grid-row-end: 4; } -.from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.row-end-5 { + grid-row-end: 5; } -.from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.row-end-6 { + grid-row-end: 6; } -.from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.row-end-7 { + grid-row-end: 7; } -.from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.row-end-auto { + grid-row-end: auto; } -.from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.float-right { + float: right; } -.from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.float-left { + float: left; } -.from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.float-none { + float: none; } -.from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.clear-left { + clear: left; } -.from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.clear-right { + clear: right; } -.from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.clear-both { + clear: both; } -.from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.clear-none { + clear: none; } -.from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.m-0 { + margin: 0px; } -.from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.m-1 { + margin: 0.25rem; } -.from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.m-2 { + margin: 0.5rem; } -.from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.m-3 { + margin: 0.75rem; } -.from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.m-4 { + margin: 1rem; } -.from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.m-5 { + margin: 1.25rem; } -.from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.m-6 { + margin: 1.5rem; } -.from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.m-7 { + margin: 1.75rem; } -.from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.m-8 { + margin: 2rem; } -.from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.m-9 { + margin: 2.25rem; } -.from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.m-10 { + margin: 2.5rem; } -.from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.m-11 { + margin: 2.75rem; } -.from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.m-12 { + margin: 3rem; } -.from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.m-14 { + margin: 3.5rem; } -.from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.m-16 { + margin: 4rem; } -.from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.m-20 { + margin: 5rem; } -.from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.m-24 { + margin: 6rem; } -.from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.m-28 { + margin: 7rem; } -.from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.m-32 { + margin: 8rem; } -.from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.m-36 { + margin: 9rem; } -.from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.m-40 { + margin: 10rem; } -.from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.m-44 { + margin: 11rem; } -.from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.m-48 { + margin: 12rem; } -.from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.m-52 { + margin: 13rem; } -.from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.m-56 { + margin: 14rem; } -.from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.m-60 { + margin: 15rem; } -.from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.m-64 { + margin: 16rem; } -.from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.m-72 { + margin: 18rem; } -.from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.m-80 { + margin: 20rem; } -.from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.m-96 { + margin: 24rem; } -.from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.m-auto { + margin: auto; } -.from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.m-px { + margin: 1px; } -.from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.m-0\.5 { + margin: 0.125rem; } -.from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.m-1\.5 { + margin: 0.375rem; } -.from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.m-2\.5 { + margin: 0.625rem; } -.from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.m-3\.5 { + margin: 0.875rem; } -.from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.-m-0 { + margin: 0px; } -.from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.-m-1 { + margin: -0.25rem; } -.from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.-m-2 { + margin: -0.5rem; } -.from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.-m-3 { + margin: -0.75rem; } -.from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.-m-4 { + margin: -1rem; } -.from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.-m-5 { + margin: -1.25rem; } -.from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.-m-6 { + margin: -1.5rem; } -.from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.-m-7 { + margin: -1.75rem; } -.from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.-m-8 { + margin: -2rem; } -.from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.-m-9 { + margin: -2.25rem; } -.from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.-m-10 { + margin: -2.5rem; } -.from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.-m-11 { + margin: -2.75rem; } -.from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.-m-12 { + margin: -3rem; } -.from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.-m-14 { + margin: -3.5rem; } -.from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.-m-16 { + margin: -4rem; } -.from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.-m-20 { + margin: -5rem; } -.from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.-m-24 { + margin: -6rem; } -.from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.-m-28 { + margin: -7rem; } -.from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.-m-32 { + margin: -8rem; } -.from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.-m-36 { + margin: -9rem; } -.from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.-m-40 { + margin: -10rem; } -.from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.-m-44 { + margin: -11rem; } -.from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.-m-48 { + margin: -12rem; } -.from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.-m-52 { + margin: -13rem; } -.from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.-m-56 { + margin: -14rem; } -.from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.-m-60 { + margin: -15rem; } -.from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.-m-64 { + margin: -16rem; } -.via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-m-72 { + margin: -18rem; } -.via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-m-80 { + margin: -20rem; } -.via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-m-96 { + margin: -24rem; } -.via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-m-px { + margin: -1px; } -.via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.-m-0\.5 { + margin: -0.125rem; } -.via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.-m-1\.5 { + margin: -0.375rem; } -.via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.-m-2\.5 { + margin: -0.625rem; } -.via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.-m-3\.5 { + margin: -0.875rem; } -.via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.mx-0 { + margin-left: 0px; + margin-right: 0px; } -.via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } -.via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } -.via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } -.via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.mx-4 { + margin-left: 1rem; + margin-right: 1rem; } -.via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } -.via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } -.via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } -.via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.mx-8 { + margin-left: 2rem; + margin-right: 2rem; } -.via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } -.via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } -.via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } -.via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.mx-12 { + margin-left: 3rem; + margin-right: 3rem; } -.via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } -.via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.mx-16 { + margin-left: 4rem; + margin-right: 4rem; } -.via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.mx-20 { + margin-left: 5rem; + margin-right: 5rem; } -.via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.mx-24 { + margin-left: 6rem; + margin-right: 6rem; } -.via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.mx-28 { + margin-left: 7rem; + margin-right: 7rem; } -.via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.mx-32 { + margin-left: 8rem; + margin-right: 8rem; } -.via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.mx-36 { + margin-left: 9rem; + margin-right: 9rem; } -.via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.mx-40 { + margin-left: 10rem; + margin-right: 10rem; } -.via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.mx-44 { + margin-left: 11rem; + margin-right: 11rem; } -.via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.mx-48 { + margin-left: 12rem; + margin-right: 12rem; } -.via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.mx-52 { + margin-left: 13rem; + margin-right: 13rem; } -.via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.mx-56 { + margin-left: 14rem; + margin-right: 14rem; } -.via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.mx-60 { + margin-left: 15rem; + margin-right: 15rem; } -.via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.mx-64 { + margin-left: 16rem; + margin-right: 16rem; } -.via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.mx-72 { + margin-left: 18rem; + margin-right: 18rem; } -.via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.mx-80 { + margin-left: 20rem; + margin-right: 20rem; } -.via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.mx-96 { + margin-left: 24rem; + margin-right: 24rem; } -.via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.mx-auto { + margin-left: auto; + margin-right: auto; } -.via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.mx-px { + margin-left: 1px; + margin-right: 1px; } -.via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } -.via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } -.via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } -.via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } -.via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.-mx-0 { + margin-left: 0px; + margin-right: 0px; } -.via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } -.via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } -.via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } -.via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } -.via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } -.via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } -.via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } -.via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } -.via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } -.via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } -.via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } -.via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } -.via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } -.via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } -.via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } -.via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } -.via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } -.via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } -.via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } -.via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } -.via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } -.via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } -.via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } -.via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } -.via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } -.via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } -.via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } -.via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } -.via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } -.via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.-mx-px { + margin-left: -1px; + margin-right: -1px; } -.via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } -.via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } -.via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } -.via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } -.via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.my-0 { + margin-top: 0px; + margin-bottom: 0px; } -.via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } -.via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } -.via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } -.via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } -.to-transparent { - --tw-gradient-to: transparent; +.my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } -.to-current { - --tw-gradient-to: currentColor; +.my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } -.to-black { - --tw-gradient-to: #000; +.my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } -.to-white { - --tw-gradient-to: #fff; +.my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } -.to-gray-50 { - --tw-gradient-to: #f9fafb; +.my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } -.to-gray-100 { - --tw-gradient-to: #f3f4f6; +.my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } -.to-gray-200 { - --tw-gradient-to: #e5e7eb; +.my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } -.to-gray-300 { - --tw-gradient-to: #d1d5db; +.my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } -.to-gray-400 { - --tw-gradient-to: #9ca3af; +.my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } -.to-gray-500 { - --tw-gradient-to: #6b7280; +.my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } -.to-gray-600 { - --tw-gradient-to: #4b5563; +.my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } -.to-gray-700 { - --tw-gradient-to: #374151; +.my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } -.to-gray-800 { - --tw-gradient-to: #1f2937; +.my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } -.to-gray-900 { - --tw-gradient-to: #111827; +.my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } -.to-red-50 { - --tw-gradient-to: #fef2f2; +.my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } -.to-red-100 { - --tw-gradient-to: #fee2e2; +.my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } -.to-red-200 { - --tw-gradient-to: #fecaca; +.my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } -.to-red-300 { - --tw-gradient-to: #fca5a5; +.my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } -.to-red-400 { - --tw-gradient-to: #f87171; +.my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } -.to-red-500 { - --tw-gradient-to: #ef4444; +.my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } -.to-red-600 { - --tw-gradient-to: #dc2626; +.my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } -.to-red-700 { - --tw-gradient-to: #b91c1c; +.my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } -.to-red-800 { - --tw-gradient-to: #991b1b; +.my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } -.to-red-900 { - --tw-gradient-to: #7f1d1d; +.my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } -.to-yellow-50 { - --tw-gradient-to: #fffbeb; +.my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } -.to-yellow-100 { - --tw-gradient-to: #fef3c7; +.my-auto { + margin-top: auto; + margin-bottom: auto; } -.to-yellow-200 { - --tw-gradient-to: #fde68a; +.my-px { + margin-top: 1px; + margin-bottom: 1px; } -.to-yellow-300 { - --tw-gradient-to: #fcd34d; +.my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } -.to-yellow-400 { - --tw-gradient-to: #fbbf24; +.my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } -.to-yellow-500 { - --tw-gradient-to: #f59e0b; +.my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } -.to-yellow-600 { - --tw-gradient-to: #d97706; +.my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } -.to-yellow-700 { - --tw-gradient-to: #b45309; +.-my-0 { + margin-top: 0px; + margin-bottom: 0px; } -.to-yellow-800 { - --tw-gradient-to: #92400e; +.-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } -.to-yellow-900 { - --tw-gradient-to: #78350f; +.-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } -.to-green-50 { - --tw-gradient-to: #ecfdf5; +.-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } -.to-green-100 { - --tw-gradient-to: #d1fae5; +.-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } -.to-green-200 { - --tw-gradient-to: #a7f3d0; +.-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } -.to-green-300 { - --tw-gradient-to: #6ee7b7; +.-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } -.to-green-400 { - --tw-gradient-to: #34d399; +.-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } -.to-green-500 { - --tw-gradient-to: #10b981; +.-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } -.to-green-600 { - --tw-gradient-to: #059669; +.-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } -.to-green-700 { - --tw-gradient-to: #047857; +.-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } -.to-green-800 { - --tw-gradient-to: #065f46; +.-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } -.to-green-900 { - --tw-gradient-to: #064e3b; +.-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } -.to-blue-50 { - --tw-gradient-to: #eff6ff; +.-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } -.to-blue-100 { - --tw-gradient-to: #dbeafe; +.-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } -.to-blue-200 { - --tw-gradient-to: #bfdbfe; +.-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } -.to-blue-300 { - --tw-gradient-to: #93c5fd; +.-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } -.to-blue-400 { - --tw-gradient-to: #60a5fa; +.-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } -.to-blue-500 { - --tw-gradient-to: #3b82f6; +.-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } -.to-blue-600 { - --tw-gradient-to: #2563eb; +.-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } -.to-blue-700 { - --tw-gradient-to: #1d4ed8; +.-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } -.to-blue-800 { - --tw-gradient-to: #1e40af; +.-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } -.to-blue-900 { - --tw-gradient-to: #1e3a8a; +.-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } -.to-indigo-50 { - --tw-gradient-to: #eef2ff; +.-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } -.to-indigo-100 { - --tw-gradient-to: #e0e7ff; +.-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } -.to-indigo-200 { - --tw-gradient-to: #c7d2fe; +.-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } -.to-indigo-300 { - --tw-gradient-to: #a5b4fc; +.-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } -.to-indigo-400 { - --tw-gradient-to: #818cf8; +.-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } -.to-indigo-500 { - --tw-gradient-to: #6366f1; +.-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } -.to-indigo-600 { - --tw-gradient-to: #4f46e5; +.-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } -.to-indigo-700 { - --tw-gradient-to: #4338ca; +.-my-px { + margin-top: -1px; + margin-bottom: -1px; } -.to-indigo-800 { - --tw-gradient-to: #3730a3; +.-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } -.to-indigo-900 { - --tw-gradient-to: #312e81; +.-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } -.to-purple-50 { - --tw-gradient-to: #f5f3ff; +.-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } -.to-purple-100 { - --tw-gradient-to: #ede9fe; +.-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } -.to-purple-200 { - --tw-gradient-to: #ddd6fe; +.mt-0 { + margin-top: 0px; } -.to-purple-300 { - --tw-gradient-to: #c4b5fd; +.mt-1 { + margin-top: 0.25rem; } -.to-purple-400 { - --tw-gradient-to: #a78bfa; +.mt-2 { + margin-top: 0.5rem; } -.to-purple-500 { - --tw-gradient-to: #8b5cf6; +.mt-3 { + margin-top: 0.75rem; } -.to-purple-600 { - --tw-gradient-to: #7c3aed; +.mt-4 { + margin-top: 1rem; } -.to-purple-700 { - --tw-gradient-to: #6d28d9; +.mt-5 { + margin-top: 1.25rem; } -.to-purple-800 { - --tw-gradient-to: #5b21b6; +.mt-6 { + margin-top: 1.5rem; } -.to-purple-900 { - --tw-gradient-to: #4c1d95; +.mt-7 { + margin-top: 1.75rem; } -.to-pink-50 { - --tw-gradient-to: #fdf2f8; +.mt-8 { + margin-top: 2rem; } -.to-pink-100 { - --tw-gradient-to: #fce7f3; +.mt-9 { + margin-top: 2.25rem; } -.to-pink-200 { - --tw-gradient-to: #fbcfe8; +.mt-10 { + margin-top: 2.5rem; } -.to-pink-300 { - --tw-gradient-to: #f9a8d4; +.mt-11 { + margin-top: 2.75rem; } -.to-pink-400 { - --tw-gradient-to: #f472b6; +.mt-12 { + margin-top: 3rem; } -.to-pink-500 { - --tw-gradient-to: #ec4899; +.mt-14 { + margin-top: 3.5rem; } -.to-pink-600 { - --tw-gradient-to: #db2777; +.mt-16 { + margin-top: 4rem; } -.to-pink-700 { - --tw-gradient-to: #be185d; +.mt-20 { + margin-top: 5rem; } -.to-pink-800 { - --tw-gradient-to: #9d174d; +.mt-24 { + margin-top: 6rem; } -.to-pink-900 { - --tw-gradient-to: #831843; +.mt-28 { + margin-top: 7rem; } -.hover\:from-transparent:hover { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mt-32 { + margin-top: 8rem; } -.hover\:from-current:hover { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mt-36 { + margin-top: 9rem; } -.hover\:from-black:hover { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mt-40 { + margin-top: 10rem; } -.hover\:from-white:hover { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mt-44 { + margin-top: 11rem; } -.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)); +.mt-48 { + margin-top: 12rem; } -.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)); +.mt-52 { + margin-top: 13rem; } -.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)); +.mt-56 { + margin-top: 14rem; } -.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)); +.mt-60 { + margin-top: 15rem; } -.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)); +.mt-64 { + margin-top: 16rem; } -.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)); +.mt-72 { + margin-top: 18rem; } -.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)); +.mt-80 { + margin-top: 20rem; } -.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)); +.mt-96 { + margin-top: 24rem; } -.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)); +.mt-auto { + margin-top: auto; } -.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)); +.mt-px { + margin-top: 1px; } -.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)); +.mt-0\.5 { + margin-top: 0.125rem; } -.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)); +.mt-1\.5 { + margin-top: 0.375rem; } -.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)); +.mt-2\.5 { + margin-top: 0.625rem; } -.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)); +.mt-3\.5 { + margin-top: 0.875rem; } -.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)); +.-mt-0 { + margin-top: 0px; } -.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)); +.-mt-1 { + margin-top: -0.25rem; } -.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)); +.-mt-2 { + margin-top: -0.5rem; } -.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)); +.-mt-3 { + margin-top: -0.75rem; } -.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)); +.-mt-4 { + margin-top: -1rem; } -.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)); +.-mt-5 { + margin-top: -1.25rem; } -.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)); +.-mt-6 { + margin-top: -1.5rem; } -.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)); +.-mt-7 { + margin-top: -1.75rem; } -.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)); +.-mt-8 { + margin-top: -2rem; } -.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)); +.-mt-9 { + margin-top: -2.25rem; } -.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)); +.-mt-10 { + margin-top: -2.5rem; } -.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)); +.-mt-11 { + margin-top: -2.75rem; } -.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)); +.-mt-12 { + margin-top: -3rem; } -.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)); +.-mt-14 { + margin-top: -3.5rem; } -.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)); +.-mt-16 { + margin-top: -4rem; } -.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)); +.-mt-20 { + margin-top: -5rem; } -.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)); +.-mt-24 { + margin-top: -6rem; } -.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)); +.-mt-28 { + margin-top: -7rem; } -.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)); +.-mt-32 { + margin-top: -8rem; } -.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)); +.-mt-36 { + margin-top: -9rem; } -.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)); +.-mt-40 { + margin-top: -10rem; } -.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)); +.-mt-44 { + margin-top: -11rem; } -.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)); +.-mt-48 { + margin-top: -12rem; } -.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)); +.-mt-52 { + margin-top: -13rem; } -.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)); +.-mt-56 { + margin-top: -14rem; } -.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)); +.-mt-60 { + margin-top: -15rem; } -.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)); +.-mt-64 { + margin-top: -16rem; } -.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)); +.-mt-72 { + margin-top: -18rem; } -.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)); +.-mt-80 { + margin-top: -20rem; } -.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)); +.-mt-96 { + margin-top: -24rem; } -.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)); +.-mt-px { + margin-top: -1px; } -.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)); +.-mt-0\.5 { + margin-top: -0.125rem; } -.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)); +.-mt-1\.5 { + margin-top: -0.375rem; } -.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)); +.-mt-2\.5 { + margin-top: -0.625rem; } -.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)); +.-mt-3\.5 { + margin-top: -0.875rem; } -.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)); +.mr-0 { + margin-right: 0px; } -.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)); +.mr-1 { + margin-right: 0.25rem; } -.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)); +.mr-2 { + margin-right: 0.5rem; } -.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)); +.mr-3 { + margin-right: 0.75rem; } -.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)); +.mr-4 { + margin-right: 1rem; } -.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)); +.mr-5 { + margin-right: 1.25rem; } -.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)); +.mr-6 { + margin-right: 1.5rem; } -.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)); +.mr-7 { + margin-right: 1.75rem; } -.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)); +.mr-8 { + margin-right: 2rem; } -.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)); +.mr-9 { + margin-right: 2.25rem; } -.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)); +.mr-10 { + margin-right: 2.5rem; } -.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)); +.mr-11 { + margin-right: 2.75rem; } -.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)); +.mr-12 { + margin-right: 3rem; } -.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)); +.mr-14 { + margin-right: 3.5rem; } -.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)); +.mr-16 { + margin-right: 4rem; } -.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)); +.mr-20 { + margin-right: 5rem; } -.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)); +.mr-24 { + margin-right: 6rem; } -.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)); +.mr-28 { + margin-right: 7rem; } -.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)); +.mr-32 { + margin-right: 8rem; } -.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)); +.mr-36 { + margin-right: 9rem; } -.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)); +.mr-40 { + margin-right: 10rem; } -.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)); +.mr-44 { + margin-right: 11rem; } -.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)); +.mr-48 { + margin-right: 12rem; } -.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)); +.mr-52 { + margin-right: 13rem; } -.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)); +.mr-56 { + margin-right: 14rem; } -.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)); +.mr-60 { + margin-right: 15rem; } -.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)); +.mr-64 { + margin-right: 16rem; } -.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)); +.mr-72 { + margin-right: 18rem; } -.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)); +.mr-80 { + margin-right: 20rem; } -.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)); +.mr-96 { + margin-right: 24rem; } -.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)); +.mr-auto { + margin-right: auto; } -.hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mr-px { + margin-right: 1px; } -.hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mr-0\.5 { + margin-right: 0.125rem; } -.hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mr-1\.5 { + margin-right: 0.375rem; } -.hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mr-2\.5 { + margin-right: 0.625rem; } -.hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.mr-3\.5 { + margin-right: 0.875rem; } -.hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.-mr-0 { + margin-right: 0px; } -.hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.-mr-1 { + margin-right: -0.25rem; } -.hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.-mr-2 { + margin-right: -0.5rem; } -.hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.-mr-3 { + margin-right: -0.75rem; } -.hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.-mr-4 { + margin-right: -1rem; } -.hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.-mr-5 { + margin-right: -1.25rem; } -.hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.-mr-6 { + margin-right: -1.5rem; } -.hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.-mr-7 { + margin-right: -1.75rem; } -.hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.-mr-8 { + margin-right: -2rem; } -.hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.-mr-9 { + margin-right: -2.25rem; } -.hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.-mr-10 { + margin-right: -2.5rem; } -.hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.-mr-11 { + margin-right: -2.75rem; } -.hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.-mr-12 { + margin-right: -3rem; } -.hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.-mr-14 { + margin-right: -3.5rem; } -.hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.-mr-16 { + margin-right: -4rem; } -.hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.-mr-20 { + margin-right: -5rem; } -.hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.-mr-24 { + margin-right: -6rem; } -.hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.-mr-28 { + margin-right: -7rem; } -.hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.-mr-32 { + margin-right: -8rem; } -.hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.-mr-36 { + margin-right: -9rem; } -.hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.-mr-40 { + margin-right: -10rem; } -.hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.-mr-44 { + margin-right: -11rem; } -.hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.-mr-48 { + margin-right: -12rem; } -.hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.-mr-52 { + margin-right: -13rem; } -.hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.-mr-56 { + margin-right: -14rem; } -.hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.-mr-60 { + margin-right: -15rem; } -.hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.-mr-64 { + margin-right: -16rem; } -.hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.-mr-72 { + margin-right: -18rem; } -.hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.-mr-80 { + margin-right: -20rem; } -.hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.-mr-96 { + margin-right: -24rem; } -.hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.-mr-px { + margin-right: -1px; } -.hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.-mr-0\.5 { + margin-right: -0.125rem; } -.hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.-mr-1\.5 { + margin-right: -0.375rem; } -.hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.-mr-2\.5 { + margin-right: -0.625rem; } -.hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.-mr-3\.5 { + margin-right: -0.875rem; } -.hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.mb-0 { + margin-bottom: 0px; } -.hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.mb-1 { + margin-bottom: 0.25rem; } -.hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.mb-2 { + margin-bottom: 0.5rem; } -.hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.mb-3 { + margin-bottom: 0.75rem; } -.hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.mb-4 { + margin-bottom: 1rem; } -.hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.mb-5 { + margin-bottom: 1.25rem; } -.hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.mb-6 { + margin-bottom: 1.5rem; } -.hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.mb-7 { + margin-bottom: 1.75rem; } -.hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.mb-8 { + margin-bottom: 2rem; } -.hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.mb-9 { + margin-bottom: 2.25rem; } -.hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.mb-10 { + margin-bottom: 2.5rem; } -.hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.mb-11 { + margin-bottom: 2.75rem; } -.hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.mb-12 { + margin-bottom: 3rem; } -.hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.mb-14 { + margin-bottom: 3.5rem; } -.hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.mb-16 { + margin-bottom: 4rem; } -.hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.mb-20 { + margin-bottom: 5rem; } -.hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.mb-24 { + margin-bottom: 6rem; } -.hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.mb-28 { + margin-bottom: 7rem; } -.hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.mb-32 { + margin-bottom: 8rem; } -.hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.mb-36 { + margin-bottom: 9rem; } -.hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.mb-40 { + margin-bottom: 10rem; } -.hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.mb-44 { + margin-bottom: 11rem; } -.hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.mb-48 { + margin-bottom: 12rem; } -.hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.mb-52 { + margin-bottom: 13rem; } -.hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.mb-56 { + margin-bottom: 14rem; } -.hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.mb-60 { + margin-bottom: 15rem; } -.hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.mb-64 { + margin-bottom: 16rem; } -.hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.mb-72 { + margin-bottom: 18rem; } -.hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.mb-80 { + margin-bottom: 20rem; } -.hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.mb-96 { + margin-bottom: 24rem; } -.hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.mb-auto { + margin-bottom: auto; } -.hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.mb-px { + margin-bottom: 1px; } -.hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.mb-0\.5 { + margin-bottom: 0.125rem; } -.hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.mb-1\.5 { + margin-bottom: 0.375rem; } -.hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.mb-2\.5 { + margin-bottom: 0.625rem; } -.hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.mb-3\.5 { + margin-bottom: 0.875rem; } -.hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.-mb-0 { + margin-bottom: 0px; } -.hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.-mb-1 { + margin-bottom: -0.25rem; } -.hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.-mb-2 { + margin-bottom: -0.5rem; } -.hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.-mb-3 { + margin-bottom: -0.75rem; } -.hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.-mb-4 { + margin-bottom: -1rem; } -.hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.-mb-5 { + margin-bottom: -1.25rem; } -.hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.-mb-6 { + margin-bottom: -1.5rem; } -.hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.-mb-7 { + margin-bottom: -1.75rem; } -.hover\:to-transparent:hover { - --tw-gradient-to: transparent; +.-mb-8 { + margin-bottom: -2rem; } -.hover\:to-current:hover { - --tw-gradient-to: currentColor; +.-mb-9 { + margin-bottom: -2.25rem; } -.hover\:to-black:hover { - --tw-gradient-to: #000; +.-mb-10 { + margin-bottom: -2.5rem; } -.hover\:to-white:hover { - --tw-gradient-to: #fff; +.-mb-11 { + margin-bottom: -2.75rem; } -.hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; +.-mb-12 { + margin-bottom: -3rem; } -.hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; +.-mb-14 { + margin-bottom: -3.5rem; } -.hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; +.-mb-16 { + margin-bottom: -4rem; } -.hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; +.-mb-20 { + margin-bottom: -5rem; } -.hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; +.-mb-24 { + margin-bottom: -6rem; } -.hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; +.-mb-28 { + margin-bottom: -7rem; } -.hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; -} +.-mb-32 { + margin-bottom: -8rem; +} -.hover\:to-gray-700:hover { - --tw-gradient-to: #374151; +.-mb-36 { + margin-bottom: -9rem; } -.hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; +.-mb-40 { + margin-bottom: -10rem; } -.hover\:to-gray-900:hover { - --tw-gradient-to: #111827; +.-mb-44 { + margin-bottom: -11rem; } -.hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; +.-mb-48 { + margin-bottom: -12rem; } -.hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; +.-mb-52 { + margin-bottom: -13rem; } -.hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; +.-mb-56 { + margin-bottom: -14rem; } -.hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; +.-mb-60 { + margin-bottom: -15rem; } -.hover\:to-red-400:hover { - --tw-gradient-to: #f87171; +.-mb-64 { + margin-bottom: -16rem; } -.hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; +.-mb-72 { + margin-bottom: -18rem; } -.hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; +.-mb-80 { + margin-bottom: -20rem; } -.hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; +.-mb-96 { + margin-bottom: -24rem; } -.hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; +.-mb-px { + margin-bottom: -1px; } -.hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; +.-mb-0\.5 { + margin-bottom: -0.125rem; } -.hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; +.-mb-1\.5 { + margin-bottom: -0.375rem; } -.hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; +.-mb-2\.5 { + margin-bottom: -0.625rem; } -.hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; +.-mb-3\.5 { + margin-bottom: -0.875rem; } -.hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; +.ml-0 { + margin-left: 0px; } -.hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; +.ml-1 { + margin-left: 0.25rem; } -.hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; +.ml-2 { + margin-left: 0.5rem; } -.hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; +.ml-3 { + margin-left: 0.75rem; } -.hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; +.ml-4 { + margin-left: 1rem; } -.hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; +.ml-5 { + margin-left: 1.25rem; } -.hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; +.ml-6 { + margin-left: 1.5rem; } -.hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; +.ml-7 { + margin-left: 1.75rem; } -.hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; +.ml-8 { + margin-left: 2rem; } -.hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; +.ml-9 { + margin-left: 2.25rem; } -.hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; +.ml-10 { + margin-left: 2.5rem; } -.hover\:to-green-400:hover { - --tw-gradient-to: #34d399; +.ml-11 { + margin-left: 2.75rem; } -.hover\:to-green-500:hover { - --tw-gradient-to: #10b981; +.ml-12 { + margin-left: 3rem; } -.hover\:to-green-600:hover { - --tw-gradient-to: #059669; +.ml-14 { + margin-left: 3.5rem; } -.hover\:to-green-700:hover { - --tw-gradient-to: #047857; +.ml-16 { + margin-left: 4rem; } -.hover\:to-green-800:hover { - --tw-gradient-to: #065f46; +.ml-20 { + margin-left: 5rem; } -.hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; +.ml-24 { + margin-left: 6rem; } -.hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; +.ml-28 { + margin-left: 7rem; } -.hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; +.ml-32 { + margin-left: 8rem; } -.hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; +.ml-36 { + margin-left: 9rem; } -.hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; +.ml-40 { + margin-left: 10rem; } -.hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; +.ml-44 { + margin-left: 11rem; } -.hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; +.ml-48 { + margin-left: 12rem; } -.hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; +.ml-52 { + margin-left: 13rem; } -.hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; +.ml-56 { + margin-left: 14rem; } -.hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; +.ml-60 { + margin-left: 15rem; } -.hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; +.ml-64 { + margin-left: 16rem; } -.hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; +.ml-72 { + margin-left: 18rem; } -.hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; +.ml-80 { + margin-left: 20rem; } -.hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; +.ml-96 { + margin-left: 24rem; } -.hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; +.ml-auto { + margin-left: auto; } -.hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; +.ml-px { + margin-left: 1px; } -.hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; +.ml-0\.5 { + margin-left: 0.125rem; } -.hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; +.ml-1\.5 { + margin-left: 0.375rem; } -.hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; +.ml-2\.5 { + margin-left: 0.625rem; } -.hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; +.ml-3\.5 { + margin-left: 0.875rem; } -.hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; +.-ml-0 { + margin-left: 0px; } -.hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; +.-ml-1 { + margin-left: -0.25rem; } -.hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; +.-ml-2 { + margin-left: -0.5rem; } -.hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; +.-ml-3 { + margin-left: -0.75rem; } -.hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; +.-ml-4 { + margin-left: -1rem; } -.hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; +.-ml-5 { + margin-left: -1.25rem; } -.hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; +.-ml-6 { + margin-left: -1.5rem; } -.hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; +.-ml-7 { + margin-left: -1.75rem; } -.hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; +.-ml-8 { + margin-left: -2rem; } -.hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; +.-ml-9 { + margin-left: -2.25rem; } -.hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; +.-ml-10 { + margin-left: -2.5rem; } -.hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; +.-ml-11 { + margin-left: -2.75rem; } -.hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; +.-ml-12 { + margin-left: -3rem; } -.hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; +.-ml-14 { + margin-left: -3.5rem; } -.hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; +.-ml-16 { + margin-left: -4rem; } -.hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; +.-ml-20 { + margin-left: -5rem; } -.hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; +.-ml-24 { + margin-left: -6rem; } -.hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; +.-ml-28 { + margin-left: -7rem; } -.hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; +.-ml-32 { + margin-left: -8rem; } -.hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; +.-ml-36 { + margin-left: -9rem; } -.hover\:to-pink-900:hover { - --tw-gradient-to: #831843; +.-ml-40 { + margin-left: -10rem; } -.focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-ml-44 { + margin-left: -11rem; } -.focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-ml-48 { + margin-left: -12rem; } -.focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-ml-52 { + margin-left: -13rem; } -.focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-ml-56 { + margin-left: -14rem; } -.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)); +.-ml-60 { + margin-left: -15rem; } -.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)); +.-ml-64 { + margin-left: -16rem; } -.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)); +.-ml-72 { + margin-left: -18rem; } -.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)); +.-ml-80 { + margin-left: -20rem; } -.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)); +.-ml-96 { + margin-left: -24rem; } -.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)); +.-ml-px { + margin-left: -1px; } -.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)); +.-ml-0\.5 { + margin-left: -0.125rem; } -.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)); +.-ml-1\.5 { + margin-left: -0.375rem; } -.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)); +.-ml-2\.5 { + margin-left: -0.625rem; } -.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)); +.-ml-3\.5 { + margin-left: -0.875rem; } -.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)); +.box-border { + box-sizing: border-box; } -.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)); +.box-content { + box-sizing: content-box; } -.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)); +.block { + display: block; } -.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)); +.inline-block { + display: inline-block; } -.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)); +.inline { + display: inline; } -.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)); +.flex { + display: flex; } -.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)); +.inline-flex { + display: inline-flex; } -.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)); +.table { + display: table; } -.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)); +.inline-table { + display: inline-table; } -.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)); +.table-caption { + display: table-caption; } -.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)); +.table-cell { + display: table-cell; } -.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)); +.table-column { + display: table-column; } -.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)); +.table-column-group { + display: table-column-group; } -.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)); +.table-footer-group { + display: table-footer-group; } -.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)); +.table-header-group { + display: table-header-group; } -.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)); +.table-row-group { + display: table-row-group; } -.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)); +.table-row { + display: table-row; } -.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)); +.flow-root { + display: flow-root; } -.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)); +.grid { + display: grid; } -.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)); +.inline-grid { + display: inline-grid; } -.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)); +.contents { + display: contents; } -.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)); +.list-item { + display: list-item; } -.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)); +.hidden { + display: none; } -.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)); +.h-0 { + height: 0px; } -.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)); +.h-1 { + height: 0.25rem; } -.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)); +.h-2 { + height: 0.5rem; } -.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)); +.h-3 { + height: 0.75rem; } -.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)); +.h-4 { + height: 1rem; } -.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)); +.h-5 { + height: 1.25rem; } -.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)); +.h-6 { + height: 1.5rem; } -.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)); +.h-7 { + height: 1.75rem; } -.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)); +.h-8 { + height: 2rem; } -.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)); +.h-9 { + height: 2.25rem; } -.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)); +.h-10 { + height: 2.5rem; } -.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)); +.h-11 { + height: 2.75rem; } -.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)); +.h-12 { + height: 3rem; } -.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)); +.h-14 { + height: 3.5rem; } -.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)); +.h-16 { + height: 4rem; } -.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)); +.h-20 { + height: 5rem; } -.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)); +.h-24 { + height: 6rem; } -.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)); +.h-28 { + height: 7rem; } -.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)); +.h-32 { + height: 8rem; } -.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)); +.h-36 { + height: 9rem; } -.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)); +.h-40 { + height: 10rem; } -.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)); +.h-44 { + height: 11rem; } -.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)); +.h-48 { + height: 12rem; } -.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)); +.h-52 { + height: 13rem; } -.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)); +.h-56 { + height: 14rem; } -.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)); +.h-60 { + height: 15rem; } -.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)); +.h-64 { + height: 16rem; } -.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)); +.h-72 { + height: 18rem; } -.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)); +.h-80 { + height: 20rem; } -.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)); +.h-96 { + height: 24rem; } -.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)); +.h-auto { + height: auto; } -.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)); +.h-px { + height: 1px; } -.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)); +.h-0\.5 { + height: 0.125rem; } -.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)); +.h-1\.5 { + height: 0.375rem; } -.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)); +.h-2\.5 { + height: 0.625rem; } -.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)); +.h-3\.5 { + height: 0.875rem; } -.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)); +.h-1\/2 { + height: 50%; } -.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)); +.h-1\/3 { + height: 33.333333%; } -.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)); +.h-2\/3 { + height: 66.666667%; } -.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)); +.h-1\/4 { + height: 25%; } -.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)); +.h-2\/4 { + height: 50%; } -.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)); +.h-3\/4 { + height: 75%; } -.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)); +.h-1\/5 { + height: 20%; } -.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)); +.h-2\/5 { + height: 40%; } -.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)); +.h-3\/5 { + height: 60%; } -.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)); +.h-4\/5 { + height: 80%; } -.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)); +.h-1\/6 { + height: 16.666667%; } -.focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.h-2\/6 { + height: 33.333333%; } -.focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.h-3\/6 { + height: 50%; } -.focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.h-4\/6 { + height: 66.666667%; } -.focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.h-5\/6 { + height: 83.333333%; } -.focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.h-full { + height: 100%; } -.focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.h-screen { + height: 100vh; } -.focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.max-h-0 { + max-height: 0px; } -.focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.max-h-1 { + max-height: 0.25rem; } -.focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.max-h-2 { + max-height: 0.5rem; } -.focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.max-h-3 { + max-height: 0.75rem; } -.focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.max-h-4 { + max-height: 1rem; } -.focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.max-h-5 { + max-height: 1.25rem; } -.focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.max-h-6 { + max-height: 1.5rem; } -.focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.max-h-7 { + max-height: 1.75rem; } -.focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.max-h-8 { + max-height: 2rem; } -.focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.max-h-9 { + max-height: 2.25rem; } -.focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.max-h-10 { + max-height: 2.5rem; } -.focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.max-h-11 { + max-height: 2.75rem; } -.focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.max-h-12 { + max-height: 3rem; } -.focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.max-h-14 { + max-height: 3.5rem; } -.focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.max-h-16 { + max-height: 4rem; } -.focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.max-h-20 { + max-height: 5rem; } -.focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.max-h-24 { + max-height: 6rem; } -.focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.max-h-28 { + max-height: 7rem; } -.focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.max-h-32 { + max-height: 8rem; } -.focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.max-h-36 { + max-height: 9rem; } -.focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.max-h-40 { + max-height: 10rem; } -.focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.max-h-44 { + max-height: 11rem; } -.focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.max-h-48 { + max-height: 12rem; } -.focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.max-h-52 { + max-height: 13rem; } -.focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.max-h-56 { + max-height: 14rem; } -.focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.max-h-60 { + max-height: 15rem; } -.focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.max-h-64 { + max-height: 16rem; } -.focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.max-h-72 { + max-height: 18rem; } -.focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.max-h-80 { + max-height: 20rem; } -.focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.max-h-96 { + max-height: 24rem; } -.focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.max-h-px { + max-height: 1px; } -.focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.max-h-0\.5 { + max-height: 0.125rem; } -.focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.max-h-1\.5 { + max-height: 0.375rem; } -.focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.max-h-2\.5 { + max-height: 0.625rem; } -.focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.max-h-3\.5 { + max-height: 0.875rem; } -.focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.max-h-full { + max-height: 100%; } -.focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.max-h-screen { + max-height: 100vh; } -.focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.min-h-0 { + min-height: 0px; } -.focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.min-h-full { + min-height: 100%; } -.focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.min-h-screen { + min-height: 100vh; } -.focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.w-0 { + width: 0px; } -.focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.w-1 { + width: 0.25rem; } -.focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.w-2 { + width: 0.5rem; } -.focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.w-3 { + width: 0.75rem; } -.focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.w-4 { + width: 1rem; } -.focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.w-5 { + width: 1.25rem; } -.focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.w-6 { + width: 1.5rem; } -.focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.w-7 { + width: 1.75rem; } -.focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.w-8 { + width: 2rem; } -.focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.w-9 { + width: 2.25rem; } -.focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.w-10 { + width: 2.5rem; } -.focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.w-11 { + width: 2.75rem; } -.focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.w-12 { + width: 3rem; } -.focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.w-14 { + width: 3.5rem; } -.focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.w-16 { + width: 4rem; } -.focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.w-20 { + width: 5rem; } -.focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.w-24 { + width: 6rem; } -.focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.w-28 { + width: 7rem; } -.focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.w-32 { + width: 8rem; } -.focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.w-36 { + width: 9rem; } -.focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.w-40 { + width: 10rem; } -.focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.w-44 { + width: 11rem; } -.focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.w-48 { + width: 12rem; } -.focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.w-52 { + width: 13rem; } -.focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.w-56 { + width: 14rem; } -.focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.w-60 { + width: 15rem; } -.focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.w-64 { + width: 16rem; } -.focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.w-72 { + width: 18rem; } -.focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.w-80 { + width: 20rem; } -.focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.w-96 { + width: 24rem; } -.focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.w-auto { + width: auto; } -.focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.w-px { + width: 1px; } -.focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.w-0\.5 { + width: 0.125rem; } -.focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.w-1\.5 { + width: 0.375rem; } -.focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.w-2\.5 { + width: 0.625rem; } -.focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.w-3\.5 { + width: 0.875rem; } -.focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.w-1\/2 { + width: 50%; } -.focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.w-1\/3 { + width: 33.333333%; } -.focus\:to-transparent:focus { - --tw-gradient-to: transparent; +.w-2\/3 { + width: 66.666667%; } -.focus\:to-current:focus { - --tw-gradient-to: currentColor; +.w-1\/4 { + width: 25%; } -.focus\:to-black:focus { - --tw-gradient-to: #000; +.w-2\/4 { + width: 50%; } -.focus\:to-white:focus { - --tw-gradient-to: #fff; +.w-3\/4 { + width: 75%; } -.focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; +.w-1\/5 { + width: 20%; } -.focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; +.w-2\/5 { + width: 40%; } -.focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; +.w-3\/5 { + width: 60%; } -.focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; +.w-4\/5 { + width: 80%; } -.focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; +.w-1\/6 { + width: 16.666667%; } -.focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; +.w-2\/6 { + width: 33.333333%; } -.focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; +.w-3\/6 { + width: 50%; } -.focus\:to-gray-700:focus { - --tw-gradient-to: #374151; +.w-4\/6 { + width: 66.666667%; } -.focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; +.w-5\/6 { + width: 83.333333%; } -.focus\:to-gray-900:focus { - --tw-gradient-to: #111827; +.w-1\/12 { + width: 8.333333%; } -.focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; +.w-2\/12 { + width: 16.666667%; } -.focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; +.w-3\/12 { + width: 25%; } -.focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; +.w-4\/12 { + width: 33.333333%; } -.focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; +.w-5\/12 { + width: 41.666667%; } -.focus\:to-red-400:focus { - --tw-gradient-to: #f87171; +.w-6\/12 { + width: 50%; } -.focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; +.w-7\/12 { + width: 58.333333%; } -.focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; +.w-8\/12 { + width: 66.666667%; } -.focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; +.w-9\/12 { + width: 75%; } -.focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; +.w-10\/12 { + width: 83.333333%; } -.focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; +.w-11\/12 { + width: 91.666667%; } -.focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; +.w-full { + width: 100%; } -.focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; +.w-screen { + width: 100vw; } -.focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; +.w-min { + width: min-content; } -.focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; +.w-max { + width: max-content; } -.focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; +.min-w-0 { + min-width: 0px; } -.focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; +.min-w-full { + min-width: 100%; } -.focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; +.min-w-min { + min-width: min-content; } -.focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; +.min-w-max { + min-width: max-content; } -.focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; +.max-w-0 { + max-width: 0rem; } -.focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; +.max-w-none { + max-width: none; } -.focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; +.max-w-xs { + max-width: 20rem; } -.focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; +.max-w-sm { + max-width: 24rem; } -.focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; +.max-w-md { + max-width: 28rem; } -.focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; +.max-w-lg { + max-width: 32rem; } -.focus\:to-green-400:focus { - --tw-gradient-to: #34d399; +.max-w-xl { + max-width: 36rem; } -.focus\:to-green-500:focus { - --tw-gradient-to: #10b981; +.max-w-2xl { + max-width: 42rem; } -.focus\:to-green-600:focus { - --tw-gradient-to: #059669; +.max-w-3xl { + max-width: 48rem; } -.focus\:to-green-700:focus { - --tw-gradient-to: #047857; +.max-w-4xl { + max-width: 56rem; } -.focus\:to-green-800:focus { - --tw-gradient-to: #065f46; +.max-w-5xl { + max-width: 64rem; } -.focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; +.max-w-6xl { + max-width: 72rem; } -.focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; +.max-w-7xl { + max-width: 80rem; } -.focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; +.max-w-full { + max-width: 100%; } -.focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; +.max-w-min { + max-width: min-content; } -.focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; +.max-w-max { + max-width: max-content; } -.focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; +.max-w-prose { + max-width: 65ch; } -.focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; +.max-w-screen-sm { + max-width: 640px; } -.focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; +.max-w-screen-md { + max-width: 768px; } -.focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; +.max-w-screen-lg { + max-width: 1024px; } -.focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; +.max-w-screen-xl { + max-width: 1280px; } -.focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; +.max-w-screen-2xl { + max-width: 1536px; } -.focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; +.flex-1 { + flex: 1 1 0%; } -.focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; +.flex-auto { + flex: 1 1 auto; } -.focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; +.flex-initial { + flex: 0 1 auto; } -.focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; +.flex-none { + flex: none; } -.focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; +.flex-shrink-0 { + flex-shrink: 0; } -.focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; +.flex-shrink { + flex-shrink: 1; } -.focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; +.flex-grow-0 { + flex-grow: 0; } -.focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; +.flex-grow { + flex-grow: 1; } -.focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; +.table-auto { + table-layout: auto; } -.focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; +.table-fixed { + table-layout: fixed; } -.focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; +.border-collapse { + border-collapse: collapse; } -.focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; +.border-separate { + border-collapse: separate; } -.focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; +.transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } -.focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; +.transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } -.focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; +.transform-none { + transform: none; } -.focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; +.origin-center { + transform-origin: center; } -.focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; +.origin-top { + transform-origin: top; } -.focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; +.origin-top-right { + transform-origin: top right; } -.focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; +.origin-right { + transform-origin: right; } -.focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; +.origin-bottom-right { + transform-origin: bottom right; } -.focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; +.origin-bottom { + transform-origin: bottom; } -.focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; +.origin-bottom-left { + transform-origin: bottom left; } -.focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; +.origin-left { + transform-origin: left; } -.focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; +.origin-top-left { + transform-origin: top left; } -.focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; +.translate-x-0 { + --tw-translate-x: 0px; } -.focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; +.translate-x-1 { + --tw-translate-x: 0.25rem; } -.focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; +.translate-x-2 { + --tw-translate-x: 0.5rem; } -.focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; +.translate-x-3 { + --tw-translate-x: 0.75rem; } -.focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; +.translate-x-4 { + --tw-translate-x: 1rem; } -.focus\:to-pink-900:focus { - --tw-gradient-to: #831843; +.translate-x-5 { + --tw-translate-x: 1.25rem; } -.bg-opacity-0 { - --tw-bg-opacity: 0; +.translate-x-6 { + --tw-translate-x: 1.5rem; } -.bg-opacity-5 { - --tw-bg-opacity: 0.05; +.translate-x-7 { + --tw-translate-x: 1.75rem; } -.bg-opacity-10 { - --tw-bg-opacity: 0.1; +.translate-x-8 { + --tw-translate-x: 2rem; } -.bg-opacity-20 { - --tw-bg-opacity: 0.2; +.translate-x-9 { + --tw-translate-x: 2.25rem; } -.bg-opacity-25 { - --tw-bg-opacity: 0.25; +.translate-x-10 { + --tw-translate-x: 2.5rem; } -.bg-opacity-30 { - --tw-bg-opacity: 0.3; +.translate-x-11 { + --tw-translate-x: 2.75rem; } -.bg-opacity-40 { - --tw-bg-opacity: 0.4; +.translate-x-12 { + --tw-translate-x: 3rem; } -.bg-opacity-50 { - --tw-bg-opacity: 0.5; +.translate-x-14 { + --tw-translate-x: 3.5rem; } -.bg-opacity-60 { - --tw-bg-opacity: 0.6; +.translate-x-16 { + --tw-translate-x: 4rem; } -.bg-opacity-70 { - --tw-bg-opacity: 0.7; +.translate-x-20 { + --tw-translate-x: 5rem; } -.bg-opacity-75 { - --tw-bg-opacity: 0.75; +.translate-x-24 { + --tw-translate-x: 6rem; } -.bg-opacity-80 { - --tw-bg-opacity: 0.8; +.translate-x-28 { + --tw-translate-x: 7rem; } -.bg-opacity-90 { - --tw-bg-opacity: 0.9; +.translate-x-32 { + --tw-translate-x: 8rem; } -.bg-opacity-95 { - --tw-bg-opacity: 0.95; +.translate-x-36 { + --tw-translate-x: 9rem; } -.bg-opacity-100 { - --tw-bg-opacity: 1; +.translate-x-40 { + --tw-translate-x: 10rem; } -.group:hover .group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; +.translate-x-44 { + --tw-translate-x: 11rem; } -.group:hover .group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; +.translate-x-48 { + --tw-translate-x: 12rem; } -.group:hover .group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; +.translate-x-52 { + --tw-translate-x: 13rem; } -.group:hover .group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; +.translate-x-56 { + --tw-translate-x: 14rem; } -.group:hover .group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; +.translate-x-60 { + --tw-translate-x: 15rem; } -.group:hover .group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; +.translate-x-64 { + --tw-translate-x: 16rem; } -.group:hover .group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; +.translate-x-72 { + --tw-translate-x: 18rem; } -.group:hover .group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; +.translate-x-80 { + --tw-translate-x: 20rem; } -.group:hover .group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; +.translate-x-96 { + --tw-translate-x: 24rem; } -.group:hover .group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; +.translate-x-px { + --tw-translate-x: 1px; } -.group:hover .group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; +.translate-x-0\.5 { + --tw-translate-x: 0.125rem; } -.group:hover .group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; +.translate-x-1\.5 { + --tw-translate-x: 0.375rem; } -.group:hover .group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; +.translate-x-2\.5 { + --tw-translate-x: 0.625rem; } -.group:hover .group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; +.translate-x-3\.5 { + --tw-translate-x: 0.875rem; } -.group:hover .group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; +.-translate-x-0 { + --tw-translate-x: 0px; } -.focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; +.-translate-x-1 { + --tw-translate-x: -0.25rem; } -.focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; +.-translate-x-2 { + --tw-translate-x: -0.5rem; } -.focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; +.-translate-x-3 { + --tw-translate-x: -0.75rem; } -.focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; +.-translate-x-4 { + --tw-translate-x: -1rem; } -.focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; +.-translate-x-5 { + --tw-translate-x: -1.25rem; } -.focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; +.-translate-x-6 { + --tw-translate-x: -1.5rem; } -.focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; +.-translate-x-7 { + --tw-translate-x: -1.75rem; } -.focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; +.-translate-x-8 { + --tw-translate-x: -2rem; } -.focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; +.-translate-x-9 { + --tw-translate-x: -2.25rem; } -.focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; +.-translate-x-10 { + --tw-translate-x: -2.5rem; } -.focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; +.-translate-x-11 { + --tw-translate-x: -2.75rem; } -.focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; +.-translate-x-12 { + --tw-translate-x: -3rem; } -.focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; +.-translate-x-14 { + --tw-translate-x: -3.5rem; } -.focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; +.-translate-x-16 { + --tw-translate-x: -4rem; } -.focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; +.-translate-x-20 { + --tw-translate-x: -5rem; } -.hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; +.-translate-x-24 { + --tw-translate-x: -6rem; } -.hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; +.-translate-x-28 { + --tw-translate-x: -7rem; } -.hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; +.-translate-x-32 { + --tw-translate-x: -8rem; } -.hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; +.-translate-x-36 { + --tw-translate-x: -9rem; } -.hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; +.-translate-x-40 { + --tw-translate-x: -10rem; } -.hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; +.-translate-x-44 { + --tw-translate-x: -11rem; } -.hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; +.-translate-x-48 { + --tw-translate-x: -12rem; } -.hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; +.-translate-x-52 { + --tw-translate-x: -13rem; } -.hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; +.-translate-x-56 { + --tw-translate-x: -14rem; } -.hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; +.-translate-x-60 { + --tw-translate-x: -15rem; } -.hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; +.-translate-x-64 { + --tw-translate-x: -16rem; } -.hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; +.-translate-x-72 { + --tw-translate-x: -18rem; } -.hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; +.-translate-x-80 { + --tw-translate-x: -20rem; } -.hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; +.-translate-x-96 { + --tw-translate-x: -24rem; } -.hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; +.-translate-x-px { + --tw-translate-x: -1px; } -.focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; +.-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } -.focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; +.-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } -.focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; +.-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } -.focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; +.-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } -.focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; +.translate-x-1\/2 { + --tw-translate-x: 50%; } -.focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; +.translate-x-1\/3 { + --tw-translate-x: 33.333333%; } -.focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; +.translate-x-2\/3 { + --tw-translate-x: 66.666667%; } -.focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; +.translate-x-1\/4 { + --tw-translate-x: 25%; } -.focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; +.translate-x-2\/4 { + --tw-translate-x: 50%; } -.focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; +.translate-x-3\/4 { + --tw-translate-x: 75%; } -.focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; +.translate-x-full { + --tw-translate-x: 100%; } -.focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; +.-translate-x-1\/2 { + --tw-translate-x: -50%; } -.focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; +.-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } -.focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; +.-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } -.focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; +.-translate-x-1\/4 { + --tw-translate-x: -25%; } -.bg-bottom { - background-position: bottom; +.-translate-x-2\/4 { + --tw-translate-x: -50%; } -.bg-center { - background-position: center; +.-translate-x-3\/4 { + --tw-translate-x: -75%; } -.bg-left { - background-position: left; +.-translate-x-full { + --tw-translate-x: -100%; } -.bg-left-bottom { - background-position: left bottom; +.translate-y-0 { + --tw-translate-y: 0px; } -.bg-left-top { - background-position: left top; +.translate-y-1 { + --tw-translate-y: 0.25rem; } -.bg-right { - background-position: right; +.translate-y-2 { + --tw-translate-y: 0.5rem; } -.bg-right-bottom { - background-position: right bottom; +.translate-y-3 { + --tw-translate-y: 0.75rem; } -.bg-right-top { - background-position: right top; +.translate-y-4 { + --tw-translate-y: 1rem; } -.bg-top { - background-position: top; +.translate-y-5 { + --tw-translate-y: 1.25rem; } -.bg-repeat { - background-repeat: repeat; +.translate-y-6 { + --tw-translate-y: 1.5rem; } -.bg-no-repeat { - background-repeat: no-repeat; +.translate-y-7 { + --tw-translate-y: 1.75rem; } -.bg-repeat-x { - background-repeat: repeat-x; +.translate-y-8 { + --tw-translate-y: 2rem; } -.bg-repeat-y { - background-repeat: repeat-y; +.translate-y-9 { + --tw-translate-y: 2.25rem; } -.bg-repeat-round { - background-repeat: round; +.translate-y-10 { + --tw-translate-y: 2.5rem; } -.bg-repeat-space { - background-repeat: space; +.translate-y-11 { + --tw-translate-y: 2.75rem; } -.bg-auto { - background-size: auto; +.translate-y-12 { + --tw-translate-y: 3rem; } -.bg-cover { - background-size: cover; +.translate-y-14 { + --tw-translate-y: 3.5rem; } -.bg-contain { - background-size: contain; +.translate-y-16 { + --tw-translate-y: 4rem; } -.bg-origin-border { - background-origin: border-box; +.translate-y-20 { + --tw-translate-y: 5rem; } -.bg-origin-padding { - background-origin: padding-box; +.translate-y-24 { + --tw-translate-y: 6rem; } -.bg-origin-content { - background-origin: content-box; +.translate-y-28 { + --tw-translate-y: 7rem; } -.border-collapse { - border-collapse: collapse; +.translate-y-32 { + --tw-translate-y: 8rem; } -.border-separate { - border-collapse: separate; +.translate-y-36 { + --tw-translate-y: 9rem; } -.border-transparent { - border-color: transparent; +.translate-y-40 { + --tw-translate-y: 10rem; } -.border-current { - border-color: currentColor; +.translate-y-44 { + --tw-translate-y: 11rem; } -.border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +.translate-y-48 { + --tw-translate-y: 12rem; } -.border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +.translate-y-52 { + --tw-translate-y: 13rem; } -.border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +.translate-y-56 { + --tw-translate-y: 14rem; } -.border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +.translate-y-60 { + --tw-translate-y: 15rem; } -.border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +.translate-y-64 { + --tw-translate-y: 16rem; } -.border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +.translate-y-72 { + --tw-translate-y: 18rem; } -.border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +.translate-y-80 { + --tw-translate-y: 20rem; } -.border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +.translate-y-96 { + --tw-translate-y: 24rem; } -.border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +.translate-y-px { + --tw-translate-y: 1px; } -.border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +.translate-y-0\.5 { + --tw-translate-y: 0.125rem; } -.border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +.translate-y-1\.5 { + --tw-translate-y: 0.375rem; } -.border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +.translate-y-2\.5 { + --tw-translate-y: 0.625rem; } -.border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); +.translate-y-3\.5 { + --tw-translate-y: 0.875rem; } -.border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); +.-translate-y-0 { + --tw-translate-y: 0px; } -.border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); +.-translate-y-1 { + --tw-translate-y: -0.25rem; } -.border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); +.-translate-y-2 { + --tw-translate-y: -0.5rem; } -.border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); +.-translate-y-3 { + --tw-translate-y: -0.75rem; } -.border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); +.-translate-y-4 { + --tw-translate-y: -1rem; } -.border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); +.-translate-y-5 { + --tw-translate-y: -1.25rem; } -.border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); +.-translate-y-6 { + --tw-translate-y: -1.5rem; } -.border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); +.-translate-y-7 { + --tw-translate-y: -1.75rem; } -.border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); +.-translate-y-8 { + --tw-translate-y: -2rem; } -.border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); +.-translate-y-9 { + --tw-translate-y: -2.25rem; } -.border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); +.-translate-y-10 { + --tw-translate-y: -2.5rem; } -.border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); +.-translate-y-11 { + --tw-translate-y: -2.75rem; } -.border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); +.-translate-y-12 { + --tw-translate-y: -3rem; } -.border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); +.-translate-y-14 { + --tw-translate-y: -3.5rem; } -.border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +.-translate-y-16 { + --tw-translate-y: -4rem; } -.border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); +.-translate-y-20 { + --tw-translate-y: -5rem; } -.border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); +.-translate-y-24 { + --tw-translate-y: -6rem; } -.border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); +.-translate-y-28 { + --tw-translate-y: -7rem; } -.border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); +.-translate-y-32 { + --tw-translate-y: -8rem; } -.border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); +.-translate-y-36 { + --tw-translate-y: -9rem; } -.border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); +.-translate-y-40 { + --tw-translate-y: -10rem; } -.border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); +.-translate-y-44 { + --tw-translate-y: -11rem; } -.border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); +.-translate-y-48 { + --tw-translate-y: -12rem; } -.border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); +.-translate-y-52 { + --tw-translate-y: -13rem; } -.border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); +.-translate-y-56 { + --tw-translate-y: -14rem; } -.border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); +.-translate-y-60 { + --tw-translate-y: -15rem; } -.border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); +.-translate-y-64 { + --tw-translate-y: -16rem; } -.border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); +.-translate-y-72 { + --tw-translate-y: -18rem; } -.border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); +.-translate-y-80 { + --tw-translate-y: -20rem; } -.border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); +.-translate-y-96 { + --tw-translate-y: -24rem; } -.border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); +.-translate-y-px { + --tw-translate-y: -1px; } -.border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); +.-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } -.border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); +.-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } -.border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); +.-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } -.border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +.-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } -.border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); +.translate-y-1\/2 { + --tw-translate-y: 50%; } -.border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); +.translate-y-1\/3 { + --tw-translate-y: 33.333333%; } -.border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); +.translate-y-2\/3 { + --tw-translate-y: 66.666667%; } -.border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); +.translate-y-1\/4 { + --tw-translate-y: 25%; } -.border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); +.translate-y-2\/4 { + --tw-translate-y: 50%; } -.border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); +.translate-y-3\/4 { + --tw-translate-y: 75%; } -.border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); +.translate-y-full { + --tw-translate-y: 100%; } -.border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); +.-translate-y-1\/2 { + --tw-translate-y: -50%; } -.border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); +.-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } -.border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); +.-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } -.border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); +.-translate-y-1\/4 { + --tw-translate-y: -25%; } -.border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); +.-translate-y-2\/4 { + --tw-translate-y: -50%; } -.border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); +.-translate-y-3\/4 { + --tw-translate-y: -75%; } -.border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); +.-translate-y-full { + --tw-translate-y: -100%; } -.border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); +.hover\:translate-x-0:hover { + --tw-translate-x: 0px; } -.border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); +.hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } -.border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); +.hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } -.border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); +.hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } -.border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); +.hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } -.border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); +.hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } -.border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); +.hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } -.border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); +.hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } -.border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); +.hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } -.border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); +.hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } -.border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); +.hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } -.border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); +.hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } -.border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); +.hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } -.border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); +.hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } -.border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); +.hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } -.border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); +.hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } -.border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); +.hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } -.border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); +.hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } -.border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); +.hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } -.border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); +.hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } -.group:hover .group-hover\:border-transparent { - border-color: transparent; +.hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } -.group:hover .group-hover\:border-current { - border-color: currentColor; +.hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } -.group:hover .group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +.hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } -.group:hover .group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +.hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } -.group:hover .group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +.hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } -.group:hover .group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +.hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } -.group:hover .group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +.hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } -.group:hover .group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +.hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } -.group:hover .group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +.hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } -.group:hover .group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +.hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } -.group:hover .group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +.hover\:translate-x-px:hover { + --tw-translate-x: 1px; } -.group:hover .group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +.hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } -.group:hover .group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +.hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } -.group:hover .group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +.hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } -.group:hover .group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); +.hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } -.group:hover .group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); +.hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } -.group:hover .group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); +.hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } -.group:hover .group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); +.hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } -.group:hover .group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); +.hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } -.group:hover .group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); +.hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } -.group:hover .group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); +.hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } -.group:hover .group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); +.hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } -.group:hover .group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); +.hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } -.group:hover .group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); +.hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } -.group:hover .group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); +.hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } -.group:hover .group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); +.hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } -.group:hover .group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); +.hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } -.group:hover .group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); +.hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } -.group:hover .group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); +.hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } -.group:hover .group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +.hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } -.group:hover .group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); +.hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } -.group:hover .group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); +.hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } -.group:hover .group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); +.hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } -.group:hover .group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); +.hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } -.group:hover .group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); +.hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } -.group:hover .group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); +.hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } -.group:hover .group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); +.hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } -.group:hover .group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); +.hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } -.group:hover .group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); +.hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } -.group:hover .group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); +.hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } -.group:hover .group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); +.hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } -.group:hover .group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); +.hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } -.group:hover .group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); +.hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } -.group:hover .group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); +.hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } -.group:hover .group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); +.hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } -.group:hover .group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); +.hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } -.group:hover .group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); +.hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } -.group:hover .group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); +.hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } -.group:hover .group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); +.hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } -.group:hover .group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +.hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } -.group:hover .group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); +.hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } -.group:hover .group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); +.hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } -.group:hover .group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); +.hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } -.group:hover .group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); +.hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } -.group:hover .group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); +.hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } -.group:hover .group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); +.hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } -.group:hover .group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); +.hover\:translate-x-full:hover { + --tw-translate-x: 100%; } -.group:hover .group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); +.hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } -.group:hover .group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); +.hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } -.group:hover .group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); +.hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } -.group:hover .group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); +.hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } -.group:hover .group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); +.hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } -.group:hover .group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); +.hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } -.group:hover .group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); +.hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } -.group:hover .group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); +.hover\:translate-y-0:hover { + --tw-translate-y: 0px; } -.group:hover .group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); +.hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } -.group:hover .group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); +.hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } -.group:hover .group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); +.hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } -.group:hover .group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); +.hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } -.group:hover .group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); +.hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } -.group:hover .group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); +.hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } -.group:hover .group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); +.hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } -.group:hover .group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); +.hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } -.group:hover .group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); +.hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } -.group:hover .group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); +.hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } -.group:hover .group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); +.hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } -.group:hover .group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); +.hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } -.group:hover .group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); +.hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } -.group:hover .group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); +.hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } -.group:hover .group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); +.hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } -.group:hover .group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); +.hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } -.group:hover .group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); +.hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } -.group:hover .group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); +.hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } -.group:hover .group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); +.hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } -.focus-within\:border-transparent:focus-within { - border-color: transparent; +.hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } -.focus-within\:border-current:focus-within { - border-color: currentColor; +.hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } -.focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +.hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } -.focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +.hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } -.focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +.hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } -.focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +.hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } -.focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +.hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } -.focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +.hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } -.focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +.hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } -.focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +.hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } -.focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +.hover\:translate-y-px:hover { + --tw-translate-y: 1px; } -.focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +.hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } -.focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +.hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } -.focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +.hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } -.focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); +.hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } -.focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); +.hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } -.focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); +.hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } -.focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); +.hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } -.focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); +.hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } -.focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); +.hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } -.focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); +.hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } -.focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); +.hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } -.focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); +.hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } -.focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); +.hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } -.focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); +.hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } -.focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); +.hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } -.focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); +.hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } -.focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); +.hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } -.focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); +.hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } -.focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +.hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } -.focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); +.hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } -.focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); +.hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } -.focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); +.hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } -.focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); +.hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } -.focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); +.hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } -.focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); +.hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } -.focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); +.hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } -.focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); +.hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } -.focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); +.hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } -.focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); +.hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } -.focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); +.hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } -.focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); +.hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } -.focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); +.hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } -.focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); +.hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } -.focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); +.hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } -.focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); +.hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } -.focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); +.hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } -.focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); +.hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } -.focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); +.hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } -.focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +.hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } -.focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); +.hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } -.focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); +.hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } -.focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); +.hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } -.focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); +.hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } -.focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); +.hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } -.focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); +.hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } -.focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); +.hover\:translate-y-full:hover { + --tw-translate-y: 100%; } -.focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); +.hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } -.focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); +.hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } -.focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); +.hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } -.focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); +.hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } -.focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); +.hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } -.focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); +.hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } -.focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); +.hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } -.focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); +.focus\:translate-x-0:focus { + --tw-translate-x: 0px; } -.focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); +.focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } -.focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); +.focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } -.focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); +.focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } -.focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); +.focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } -.focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); +.focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } -.focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); +.focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } -.focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); +.focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } -.focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); +.focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } -.focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); +.focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } -.focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); +.focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } -.focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); +.focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } -.focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); +.focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } -.focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); +.focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } -.focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); +.focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } -.focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); +.focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } -.focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); +.focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } -.focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); +.focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } -.focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); +.focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } -.focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); +.focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } -.hover\:border-transparent:hover { - border-color: transparent; +.focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } -.hover\:border-current:hover { - border-color: currentColor; +.focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } -.hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +.focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } -.hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +.focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } -.hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +.focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } -.hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +.focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } -.hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +.focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } -.hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +.focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } -.hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +.focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } -.hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +.focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } -.hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +.focus\:translate-x-px:focus { + --tw-translate-x: 1px; } -.hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +.focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } -.hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +.focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } -.hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +.focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } -.hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); +.focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } -.hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); +.focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } -.hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); +.focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } -.hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); +.focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } -.hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); +.focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } -.hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); +.focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } -.hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); +.focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } -.hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); +.focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } -.hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); +.focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } -.hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); +.focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } -.hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); +.focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } -.hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); +.focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } -.hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); +.focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } -.hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); +.focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } -.hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); +.focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } -.hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +.focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } -.hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); +.focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } -.hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); +.focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } -.hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); +.focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } -.hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); +.focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } -.hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); +.focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } -.hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); +.focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } -.hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); +.focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } -.hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); +.focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } -.hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); +.focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } -.hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); +.focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } -.hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); +.focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } -.hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); +.focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } -.hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); +.focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } -.hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); +.focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } -.hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); +.focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } -.hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); +.focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } -.hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); +.focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } -.hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); +.focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } -.hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); +.focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } -.hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +.focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } -.hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); +.focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } -.hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); +.focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } -.hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); +.focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } -.hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); +.focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } -.hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); +.focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } -.hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); +.focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } -.hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); +.focus\:translate-x-full:focus { + --tw-translate-x: 100%; } -.hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); +.focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } -.hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); +.focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } -.hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); +.focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } -.hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); +.focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } -.hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); +.focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } -.hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); +.focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } -.hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); +.focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } -.hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); +.focus\:translate-y-0:focus { + --tw-translate-y: 0px; } -.hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); +.focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } -.hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); +.focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } -.hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); +.focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } -.hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); +.focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } -.hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); +.focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } -.hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); +.focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } -.hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); +.focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } -.hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); +.focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } -.hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); +.focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } -.hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); +.focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } -.hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); +.focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } -.hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); +.focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } -.hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); +.focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } -.hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); +.focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } -.hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); +.focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } -.hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); +.focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } -.hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); +.focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } -.hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); +.focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } -.hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); +.focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } -.focus\:border-transparent:focus { - border-color: transparent; +.focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } -.focus\:border-current:focus { - border-color: currentColor; +.focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } -.focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +.focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } -.focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +.focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } -.focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +.focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } -.focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +.focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } -.focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +.focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } -.focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +.focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } -.focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +.focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } -.focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +.focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } -.focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +.focus\:translate-y-px:focus { + --tw-translate-y: 1px; } -.focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +.focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } -.focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +.focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } -.focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +.focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } -.focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); +.focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } -.focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); +.focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } -.focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); +.focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } -.focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); +.focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } -.focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); +.focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } -.focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); +.focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } -.focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); +.focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } -.focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); +.focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } -.focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); +.focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } -.focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); +.focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } -.focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); +.focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } -.focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); +.focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } -.focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); +.focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } -.focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); +.focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } -.focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); +.focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } -.focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +.focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } -.focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); +.focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } -.focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); +.focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } -.focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); +.focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } -.focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); +.focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } -.focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); +.focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } -.focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); +.focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } -.focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); +.focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } -.focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); +.focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } -.focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); +.focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } -.focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); +.focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } -.focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); +.focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } -.focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); +.focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } -.focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); +.focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } -.focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); +.focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } -.focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); +.focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } -.focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); +.focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } -.focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); +.focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } -.focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); +.focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } -.focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); +.focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } -.focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +.focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } -.focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); +.focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } -.focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); +.focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } -.focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); +.focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } -.focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); +.focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } -.focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); +.focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } -.focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); +.focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } -.focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); +.focus\:translate-y-full:focus { + --tw-translate-y: 100%; } -.focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); +.focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } -.focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); +.focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } -.focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); +.focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } -.focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); +.focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } -.focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); +.focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } -.focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); +.focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } -.focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); +.focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } -.focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); +.rotate-0 { + --tw-rotate: 0deg; } -.focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); +.rotate-1 { + --tw-rotate: 1deg; } -.focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); +.rotate-2 { + --tw-rotate: 2deg; } -.focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); +.rotate-3 { + --tw-rotate: 3deg; } -.focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); +.rotate-6 { + --tw-rotate: 6deg; } -.focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); +.rotate-12 { + --tw-rotate: 12deg; } -.focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); +.rotate-45 { + --tw-rotate: 45deg; } -.focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); +.rotate-90 { + --tw-rotate: 90deg; } -.focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); +.rotate-180 { + --tw-rotate: 180deg; } -.focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); +.-rotate-180 { + --tw-rotate: -180deg; } -.focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); +.-rotate-90 { + --tw-rotate: -90deg; } -.focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); +.-rotate-45 { + --tw-rotate: -45deg; } -.focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); +.-rotate-12 { + --tw-rotate: -12deg; } -.focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); +.-rotate-6 { + --tw-rotate: -6deg; } -.focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); +.-rotate-3 { + --tw-rotate: -3deg; } -.focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); +.-rotate-2 { + --tw-rotate: -2deg; } -.focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); +.-rotate-1 { + --tw-rotate: -1deg; } -.focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); +.hover\:rotate-0:hover { + --tw-rotate: 0deg; } -.focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); +.hover\:rotate-1:hover { + --tw-rotate: 1deg; } -.focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); +.hover\:rotate-2:hover { + --tw-rotate: 2deg; } -.border-opacity-0 { - --tw-border-opacity: 0; +.hover\:rotate-3:hover { + --tw-rotate: 3deg; } -.border-opacity-5 { - --tw-border-opacity: 0.05; +.hover\:rotate-6:hover { + --tw-rotate: 6deg; } -.border-opacity-10 { - --tw-border-opacity: 0.1; +.hover\:rotate-12:hover { + --tw-rotate: 12deg; } -.border-opacity-20 { - --tw-border-opacity: 0.2; +.hover\:rotate-45:hover { + --tw-rotate: 45deg; } -.border-opacity-25 { - --tw-border-opacity: 0.25; +.hover\:rotate-90:hover { + --tw-rotate: 90deg; } -.border-opacity-30 { - --tw-border-opacity: 0.3; +.hover\:rotate-180:hover { + --tw-rotate: 180deg; } -.border-opacity-40 { - --tw-border-opacity: 0.4; +.hover\:-rotate-180:hover { + --tw-rotate: -180deg; } -.border-opacity-50 { - --tw-border-opacity: 0.5; +.hover\:-rotate-90:hover { + --tw-rotate: -90deg; } -.border-opacity-60 { - --tw-border-opacity: 0.6; +.hover\:-rotate-45:hover { + --tw-rotate: -45deg; } -.border-opacity-70 { - --tw-border-opacity: 0.7; +.hover\:-rotate-12:hover { + --tw-rotate: -12deg; } -.border-opacity-75 { - --tw-border-opacity: 0.75; +.hover\:-rotate-6:hover { + --tw-rotate: -6deg; } -.border-opacity-80 { - --tw-border-opacity: 0.8; +.hover\:-rotate-3:hover { + --tw-rotate: -3deg; } -.border-opacity-90 { - --tw-border-opacity: 0.9; +.hover\:-rotate-2:hover { + --tw-rotate: -2deg; } -.border-opacity-95 { - --tw-border-opacity: 0.95; +.hover\:-rotate-1:hover { + --tw-rotate: -1deg; } -.border-opacity-100 { - --tw-border-opacity: 1; +.focus\:rotate-0:focus { + --tw-rotate: 0deg; } -.group:hover .group-hover\:border-opacity-0 { - --tw-border-opacity: 0; +.focus\:rotate-1:focus { + --tw-rotate: 1deg; } -.group:hover .group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; +.focus\:rotate-2:focus { + --tw-rotate: 2deg; } -.group:hover .group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; +.focus\:rotate-3:focus { + --tw-rotate: 3deg; } -.group:hover .group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; +.focus\:rotate-6:focus { + --tw-rotate: 6deg; } -.group:hover .group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; +.focus\:rotate-12:focus { + --tw-rotate: 12deg; } -.group:hover .group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; +.focus\:rotate-45:focus { + --tw-rotate: 45deg; } -.group:hover .group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; +.focus\:rotate-90:focus { + --tw-rotate: 90deg; } -.group:hover .group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; +.focus\:rotate-180:focus { + --tw-rotate: 180deg; } -.group:hover .group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; +.focus\:-rotate-180:focus { + --tw-rotate: -180deg; } -.group:hover .group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; +.focus\:-rotate-90:focus { + --tw-rotate: -90deg; } -.group:hover .group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; +.focus\:-rotate-45:focus { + --tw-rotate: -45deg; } -.group:hover .group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; +.focus\:-rotate-12:focus { + --tw-rotate: -12deg; } -.group:hover .group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; +.focus\:-rotate-6:focus { + --tw-rotate: -6deg; } -.group:hover .group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; +.focus\:-rotate-3:focus { + --tw-rotate: -3deg; } -.group:hover .group-hover\:border-opacity-100 { - --tw-border-opacity: 1; +.focus\:-rotate-2:focus { + --tw-rotate: -2deg; } -.focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; +.focus\:-rotate-1:focus { + --tw-rotate: -1deg; } -.focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; +.skew-x-0 { + --tw-skew-x: 0deg; } -.focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; +.skew-x-1 { + --tw-skew-x: 1deg; } -.focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; +.skew-x-2 { + --tw-skew-x: 2deg; } -.focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; +.skew-x-3 { + --tw-skew-x: 3deg; } -.focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; +.skew-x-6 { + --tw-skew-x: 6deg; } -.focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; +.skew-x-12 { + --tw-skew-x: 12deg; } -.focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; +.-skew-x-12 { + --tw-skew-x: -12deg; } -.focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; +.-skew-x-6 { + --tw-skew-x: -6deg; } -.focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; +.-skew-x-3 { + --tw-skew-x: -3deg; } -.focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; +.-skew-x-2 { + --tw-skew-x: -2deg; } -.focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; +.-skew-x-1 { + --tw-skew-x: -1deg; } -.focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; +.skew-y-0 { + --tw-skew-y: 0deg; } -.focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; +.skew-y-1 { + --tw-skew-y: 1deg; } -.focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; +.skew-y-2 { + --tw-skew-y: 2deg; } -.hover\:border-opacity-0:hover { - --tw-border-opacity: 0; +.skew-y-3 { + --tw-skew-y: 3deg; } -.hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; +.skew-y-6 { + --tw-skew-y: 6deg; } -.hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; +.skew-y-12 { + --tw-skew-y: 12deg; } -.hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; +.-skew-y-12 { + --tw-skew-y: -12deg; } -.hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; +.-skew-y-6 { + --tw-skew-y: -6deg; } -.hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; +.-skew-y-3 { + --tw-skew-y: -3deg; } -.hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; +.-skew-y-2 { + --tw-skew-y: -2deg; } -.hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; +.-skew-y-1 { + --tw-skew-y: -1deg; } -.hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; +.hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } -.hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; +.hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } -.hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; +.hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } -.hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; +.hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } -.hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; +.hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } -.hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; +.hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } -.hover\:border-opacity-100:hover { - --tw-border-opacity: 1; +.hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } -.focus\:border-opacity-0:focus { - --tw-border-opacity: 0; +.hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } -.focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; +.hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } -.focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; +.hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } -.focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; +.hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } -.focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; +.hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } -.focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; +.hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } -.focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; +.hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } -.focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; +.hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } -.focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; +.hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } -.focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; +.hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } -.focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; +.hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } -.focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; +.hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } -.focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; +.hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } -.focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; +.hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } -.focus\:border-opacity-100:focus { - --tw-border-opacity: 1; +.hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } -.rounded-none { - border-radius: 0px; +.focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } -.rounded-sm { - border-radius: 0.125rem; +.focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } -.rounded { - border-radius: 0.25rem; +.focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } -.rounded-md { - border-radius: 0.375rem; +.focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } -.rounded-lg { - border-radius: 0.5rem; +.focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } -.rounded-xl { - border-radius: 0.75rem; +.focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } -.rounded-2xl { - border-radius: 1rem; +.focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } -.rounded-3xl { - border-radius: 1.5rem; +.focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } -.rounded-full { - border-radius: 9999px; +.focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } -.rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; +.focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } -.rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; +.focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } -.rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; +.focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } -.rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; +.focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } -.rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; +.focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } -.rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; +.focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } -.rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; +.focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } -.rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; +.focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } -.rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; +.focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } -.rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; +.focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } -.rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; +.focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } -.rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; +.focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } -.rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; +.focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } -.rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; +.scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } -.rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; +.scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } -.rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; +.scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } -.rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; +.scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } -.rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; +.scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } -.rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; +.scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } -.rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; +.scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; +.scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; +.scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; +.scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; +.scale-x-0 { + --tw-scale-x: 0; } -.rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; +.scale-x-50 { + --tw-scale-x: .5; } -.rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; +.scale-x-75 { + --tw-scale-x: .75; } -.rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; +.scale-x-90 { + --tw-scale-x: .9; } -.rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; +.scale-x-95 { + --tw-scale-x: .95; } -.rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; +.scale-x-100 { + --tw-scale-x: 1; } -.rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; +.scale-x-105 { + --tw-scale-x: 1.05; } -.rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; +.scale-x-110 { + --tw-scale-x: 1.1; } -.rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; +.scale-x-125 { + --tw-scale-x: 1.25; } -.rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; +.scale-x-150 { + --tw-scale-x: 1.5; } -.rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; +.scale-y-0 { + --tw-scale-y: 0; } -.rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; +.scale-y-50 { + --tw-scale-y: .5; } -.rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; +.scale-y-75 { + --tw-scale-y: .75; } -.rounded-tl-none { - border-top-left-radius: 0px; +.scale-y-90 { + --tw-scale-y: .9; } -.rounded-tr-none { - border-top-right-radius: 0px; +.scale-y-95 { + --tw-scale-y: .95; } -.rounded-br-none { - border-bottom-right-radius: 0px; +.scale-y-100 { + --tw-scale-y: 1; } -.rounded-bl-none { - border-bottom-left-radius: 0px; +.scale-y-105 { + --tw-scale-y: 1.05; } -.rounded-tl-sm { - border-top-left-radius: 0.125rem; +.scale-y-110 { + --tw-scale-y: 1.1; } -.rounded-tr-sm { - border-top-right-radius: 0.125rem; +.scale-y-125 { + --tw-scale-y: 1.25; } -.rounded-br-sm { - border-bottom-right-radius: 0.125rem; +.scale-y-150 { + --tw-scale-y: 1.5; } -.rounded-bl-sm { - border-bottom-left-radius: 0.125rem; +.hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } -.rounded-tl { - border-top-left-radius: 0.25rem; +.hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } -.rounded-tr { - border-top-right-radius: 0.25rem; +.hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } -.rounded-br { - border-bottom-right-radius: 0.25rem; +.hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } -.rounded-bl { - border-bottom-left-radius: 0.25rem; +.hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } -.rounded-tl-md { - border-top-left-radius: 0.375rem; +.hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } -.rounded-tr-md { - border-top-right-radius: 0.375rem; +.hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.rounded-br-md { - border-bottom-right-radius: 0.375rem; +.hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.rounded-bl-md { - border-bottom-left-radius: 0.375rem; +.hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.rounded-tl-lg { - border-top-left-radius: 0.5rem; +.hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.rounded-tr-lg { - border-top-right-radius: 0.5rem; +.hover\:scale-x-0:hover { + --tw-scale-x: 0; } -.rounded-br-lg { - border-bottom-right-radius: 0.5rem; +.hover\:scale-x-50:hover { + --tw-scale-x: .5; } -.rounded-bl-lg { - border-bottom-left-radius: 0.5rem; +.hover\:scale-x-75:hover { + --tw-scale-x: .75; } -.rounded-tl-xl { - border-top-left-radius: 0.75rem; +.hover\:scale-x-90:hover { + --tw-scale-x: .9; } -.rounded-tr-xl { - border-top-right-radius: 0.75rem; +.hover\:scale-x-95:hover { + --tw-scale-x: .95; } -.rounded-br-xl { - border-bottom-right-radius: 0.75rem; +.hover\:scale-x-100:hover { + --tw-scale-x: 1; } -.rounded-bl-xl { - border-bottom-left-radius: 0.75rem; +.hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } -.rounded-tl-2xl { - border-top-left-radius: 1rem; +.hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } -.rounded-tr-2xl { - border-top-right-radius: 1rem; +.hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } -.rounded-br-2xl { - border-bottom-right-radius: 1rem; +.hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } -.rounded-bl-2xl { - border-bottom-left-radius: 1rem; +.hover\:scale-y-0:hover { + --tw-scale-y: 0; } -.rounded-tl-3xl { - border-top-left-radius: 1.5rem; +.hover\:scale-y-50:hover { + --tw-scale-y: .5; } -.rounded-tr-3xl { - border-top-right-radius: 1.5rem; +.hover\:scale-y-75:hover { + --tw-scale-y: .75; } -.rounded-br-3xl { - border-bottom-right-radius: 1.5rem; +.hover\:scale-y-90:hover { + --tw-scale-y: .9; } -.rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; +.hover\:scale-y-95:hover { + --tw-scale-y: .95; } -.rounded-tl-full { - border-top-left-radius: 9999px; +.hover\:scale-y-100:hover { + --tw-scale-y: 1; } -.rounded-tr-full { - border-top-right-radius: 9999px; +.hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } -.rounded-br-full { - border-bottom-right-radius: 9999px; +.hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } -.rounded-bl-full { - border-bottom-left-radius: 9999px; +.hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } -.border-solid { - border-style: solid; +.hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } -.border-dashed { - border-style: dashed; +.focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } -.border-dotted { - border-style: dotted; +.focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } -.border-double { - border-style: double; +.focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } -.border-none { - border-style: none; +.focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } -.border-0 { - border-width: 0px; +.focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } -.border-2 { - border-width: 2px; +.focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } -.border-4 { - border-width: 4px; +.focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.border-8 { - border-width: 8px; +.focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.border { - border-width: 1px; +.focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.border-t-0 { - border-top-width: 0px; +.focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.border-r-0 { - border-right-width: 0px; +.focus\:scale-x-0:focus { + --tw-scale-x: 0; } -.border-b-0 { - border-bottom-width: 0px; +.focus\:scale-x-50:focus { + --tw-scale-x: .5; } -.border-l-0 { - border-left-width: 0px; +.focus\:scale-x-75:focus { + --tw-scale-x: .75; } -.border-t-2 { - border-top-width: 2px; +.focus\:scale-x-90:focus { + --tw-scale-x: .9; } -.border-r-2 { - border-right-width: 2px; +.focus\:scale-x-95:focus { + --tw-scale-x: .95; } -.border-b-2 { - border-bottom-width: 2px; +.focus\:scale-x-100:focus { + --tw-scale-x: 1; } -.border-l-2 { - border-left-width: 2px; +.focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } -.border-t-4 { - border-top-width: 4px; +.focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } -.border-r-4 { - border-right-width: 4px; +.focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } -.border-b-4 { - border-bottom-width: 4px; +.focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } -.border-l-4 { - border-left-width: 4px; +.focus\:scale-y-0:focus { + --tw-scale-y: 0; } -.border-t-8 { - border-top-width: 8px; +.focus\:scale-y-50:focus { + --tw-scale-y: .5; } -.border-r-8 { - border-right-width: 8px; +.focus\:scale-y-75:focus { + --tw-scale-y: .75; } -.border-b-8 { - border-bottom-width: 8px; +.focus\:scale-y-90:focus { + --tw-scale-y: .9; } -.border-l-8 { - border-left-width: 8px; +.focus\:scale-y-95:focus { + --tw-scale-y: .95; } -.border-t { - border-top-width: 1px; +.focus\:scale-y-100:focus { + --tw-scale-y: 1; } -.border-r { - border-right-width: 1px; +.focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } -.border-b { - border-bottom-width: 1px; +.focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } -.border-l { - border-left-width: 1px; +.focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } -.decoration-slice { - box-decoration-break: slice; +.focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } -.decoration-clone { - box-decoration-break: clone; +@keyframes spin { + to { + transform: rotate(360deg); + } } -.box-border { - box-sizing: border-box; +@keyframes ping { + 75%, 100% { + transform: scale(2); + opacity: 0; + } } -.box-content { - box-sizing: content-box; +@keyframes pulse { + 50% { + opacity: .5; + } +} + +@keyframes bounce { + 0%, 100% { + transform: translateY(-25%); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50% { + transform: none; + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} + +.animate-none { + animation: none; +} + +.animate-spin { + animation: spin 1s linear infinite; +} + +.animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; +} + +.animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; +} + +.animate-bounce { + animation: bounce 1s infinite; } .cursor-auto { @@ -10800,88 +9956,188 @@ video { cursor: not-allowed; } -.block { - display: block; +.select-none { + user-select: none; } -.inline-block { - display: inline-block; +.select-text { + user-select: text; } -.inline { - display: inline; +.select-all { + user-select: all; } -.flex { - display: flex; +.select-auto { + user-select: auto; } -.inline-flex { - display: inline-flex; +.resize-none { + resize: none; } -.table { - display: table; +.resize-y { + resize: vertical; } -.inline-table { - display: inline-table; +.resize-x { + resize: horizontal; } -.table-caption { - display: table-caption; +.resize { + resize: both; } -.table-cell { - display: table-cell; +.list-inside { + list-style-position: inside; } -.table-column { - display: table-column; +.list-outside { + list-style-position: outside; } -.table-column-group { - display: table-column-group; +.list-none { + list-style-type: none; } -.table-footer-group { - display: table-footer-group; +.list-disc { + list-style-type: disc; } -.table-header-group { - display: table-header-group; +.list-decimal { + list-style-type: decimal; } -.table-row-group { - display: table-row-group; +.appearance-none { + appearance: none; } -.table-row { - display: table-row; +.auto-cols-auto { + grid-auto-columns: auto; } -.flow-root { - display: flow-root; +.auto-cols-min { + grid-auto-columns: min-content; } -.grid { - display: grid; +.auto-cols-max { + grid-auto-columns: max-content; } -.inline-grid { - display: inline-grid; +.auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } -.contents { - display: contents; +.grid-flow-row { + grid-auto-flow: row; } -.list-item { - display: list-item; +.grid-flow-col { + grid-auto-flow: column; } -.hidden { - display: none; +.grid-flow-row-dense { + grid-auto-flow: row dense; +} + +.grid-flow-col-dense { + grid-auto-flow: column dense; +} + +.auto-rows-auto { + grid-auto-rows: auto; +} + +.auto-rows-min { + grid-auto-rows: min-content; +} + +.auto-rows-max { + grid-auto-rows: max-content; +} + +.auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); +} + +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); +} + +.grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); +} + +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); +} + +.grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); +} + +.grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); +} + +.grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); +} + +.grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); +} + +.grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); +} + +.grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); +} + +.grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); +} + +.grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); +} + +.grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); +} + +.grid-cols-none { + grid-template-columns: none; +} + +.grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); +} + +.grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); +} + +.grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); +} + +.grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); +} + +.grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); +} + +.grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); +} + +.grid-rows-none { + grid-template-rows: none; } .flex-row { @@ -10912,22 +10168,6 @@ video { flex-wrap: nowrap; } -.place-items-start { - place-items: start; -} - -.place-items-end { - place-items: end; -} - -.place-items-center { - place-items: center; -} - -.place-items-stretch { - place-items: stretch; -} - .place-content-center { place-content: center; } @@ -10956,44 +10196,20 @@ video { place-content: stretch; } -.place-self-auto { - place-self: auto; -} - -.place-self-start { - place-self: start; -} - -.place-self-end { - place-self: end; -} - -.place-self-center { - place-self: center; -} - -.place-self-stretch { - place-self: stretch; -} - -.items-start { - align-items: flex-start; -} - -.items-end { - align-items: flex-end; +.place-items-start { + place-items: start; } -.items-center { - align-items: center; +.place-items-end { + place-items: end; } -.items-baseline { - align-items: baseline; +.place-items-center { + place-items: center; } -.items-stretch { - align-items: stretch; +.place-items-stretch { + place-items: stretch; } .content-center { @@ -11020,40 +10236,24 @@ video { align-content: space-evenly; } -.self-auto { - align-self: auto; -} - -.self-start { - align-self: flex-start; -} - -.self-end { - align-self: flex-end; -} - -.self-center { - align-self: center; -} - -.self-stretch { - align-self: stretch; +.items-start { + align-items: flex-start; } -.justify-items-start { - justify-items: start; +.items-end { + align-items: flex-end; } -.justify-items-end { - justify-items: end; +.items-center { + align-items: center; } -.justify-items-center { - justify-items: center; +.items-baseline { + align-items: baseline; } -.justify-items-stretch { - justify-items: stretch; +.items-stretch { + align-items: stretch; } .justify-start { @@ -11080,11142 +10280,11863 @@ video { justify-content: space-evenly; } -.justify-self-auto { - justify-self: auto; +.justify-items-start { + justify-items: start; } -.justify-self-start { - justify-self: start; +.justify-items-end { + justify-items: end; } -.justify-self-end { - justify-self: end; +.justify-items-center { + justify-items: center; } -.justify-self-center { - justify-self: center; +.justify-items-stretch { + justify-items: stretch; } -.justify-self-stretch { - justify-self: stretch; +.gap-0 { + gap: 0px; } -.flex-1 { - flex: 1 1 0%; +.gap-1 { + gap: 0.25rem; } -.flex-auto { - flex: 1 1 auto; +.gap-2 { + gap: 0.5rem; } -.flex-initial { - flex: 0 1 auto; +.gap-3 { + gap: 0.75rem; } -.flex-none { - flex: none; +.gap-4 { + gap: 1rem; } -.flex-grow-0 { - flex-grow: 0; +.gap-5 { + gap: 1.25rem; } -.flex-grow { - flex-grow: 1; +.gap-6 { + gap: 1.5rem; } -.flex-shrink-0 { - flex-shrink: 0; +.gap-7 { + gap: 1.75rem; } -.flex-shrink { - flex-shrink: 1; +.gap-8 { + gap: 2rem; } -.order-1 { - order: 1; +.gap-9 { + gap: 2.25rem; } -.order-2 { - order: 2; +.gap-10 { + gap: 2.5rem; } -.order-3 { - order: 3; +.gap-11 { + gap: 2.75rem; } -.order-4 { - order: 4; +.gap-12 { + gap: 3rem; } -.order-5 { - order: 5; +.gap-14 { + gap: 3.5rem; } -.order-6 { - order: 6; +.gap-16 { + gap: 4rem; } -.order-7 { - order: 7; +.gap-20 { + gap: 5rem; } -.order-8 { - order: 8; +.gap-24 { + gap: 6rem; } -.order-9 { - order: 9; +.gap-28 { + gap: 7rem; } -.order-10 { - order: 10; +.gap-32 { + gap: 8rem; } -.order-11 { - order: 11; +.gap-36 { + gap: 9rem; } -.order-12 { - order: 12; +.gap-40 { + gap: 10rem; } -.order-first { - order: -9999; +.gap-44 { + gap: 11rem; } -.order-last { - order: 9999; +.gap-48 { + gap: 12rem; } -.order-none { - order: 0; +.gap-52 { + gap: 13rem; } -.float-right { - float: right; +.gap-56 { + gap: 14rem; } -.float-left { - float: left; +.gap-60 { + gap: 15rem; } -.float-none { - float: none; +.gap-64 { + gap: 16rem; } -.clear-left { - clear: left; +.gap-72 { + gap: 18rem; } -.clear-right { - clear: right; +.gap-80 { + gap: 20rem; } -.clear-both { - clear: both; +.gap-96 { + gap: 24rem; } -.clear-none { - clear: none; +.gap-px { + gap: 1px; } -.font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +.gap-0\.5 { + gap: 0.125rem; } -.font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; +.gap-1\.5 { + gap: 0.375rem; } -.font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +.gap-2\.5 { + gap: 0.625rem; } -.font-thin { - font-weight: 100; +.gap-3\.5 { + gap: 0.875rem; } -.font-extralight { - font-weight: 200; +.gap-x-0 { + column-gap: 0px; } -.font-light { - font-weight: 300; +.gap-x-1 { + column-gap: 0.25rem; } -.font-normal { - font-weight: 400; +.gap-x-2 { + column-gap: 0.5rem; } -.font-medium { - font-weight: 500; +.gap-x-3 { + column-gap: 0.75rem; } -.font-semibold { - font-weight: 600; +.gap-x-4 { + column-gap: 1rem; } -.font-bold { - font-weight: 700; +.gap-x-5 { + column-gap: 1.25rem; } -.font-extrabold { - font-weight: 800; +.gap-x-6 { + column-gap: 1.5rem; } -.font-black { - font-weight: 900; +.gap-x-7 { + column-gap: 1.75rem; } -.h-0 { - height: 0px; +.gap-x-8 { + column-gap: 2rem; } -.h-1 { - height: 0.25rem; +.gap-x-9 { + column-gap: 2.25rem; } -.h-2 { - height: 0.5rem; +.gap-x-10 { + column-gap: 2.5rem; } -.h-3 { - height: 0.75rem; +.gap-x-11 { + column-gap: 2.75rem; } -.h-4 { - height: 1rem; +.gap-x-12 { + column-gap: 3rem; } -.h-5 { - height: 1.25rem; +.gap-x-14 { + column-gap: 3.5rem; } -.h-6 { - height: 1.5rem; +.gap-x-16 { + column-gap: 4rem; } -.h-7 { - height: 1.75rem; +.gap-x-20 { + column-gap: 5rem; } -.h-8 { - height: 2rem; +.gap-x-24 { + column-gap: 6rem; } -.h-9 { - height: 2.25rem; +.gap-x-28 { + column-gap: 7rem; } -.h-10 { - height: 2.5rem; +.gap-x-32 { + column-gap: 8rem; } -.h-11 { - height: 2.75rem; +.gap-x-36 { + column-gap: 9rem; } -.h-12 { - height: 3rem; +.gap-x-40 { + column-gap: 10rem; } -.h-14 { - height: 3.5rem; +.gap-x-44 { + column-gap: 11rem; } -.h-16 { - height: 4rem; +.gap-x-48 { + column-gap: 12rem; } -.h-20 { - height: 5rem; +.gap-x-52 { + column-gap: 13rem; } -.h-24 { - height: 6rem; +.gap-x-56 { + column-gap: 14rem; } -.h-28 { - height: 7rem; +.gap-x-60 { + column-gap: 15rem; } -.h-32 { - height: 8rem; +.gap-x-64 { + column-gap: 16rem; } -.h-36 { - height: 9rem; +.gap-x-72 { + column-gap: 18rem; } -.h-40 { - height: 10rem; +.gap-x-80 { + column-gap: 20rem; } -.h-44 { - height: 11rem; +.gap-x-96 { + column-gap: 24rem; } -.h-48 { - height: 12rem; +.gap-x-px { + column-gap: 1px; } -.h-52 { - height: 13rem; +.gap-x-0\.5 { + column-gap: 0.125rem; } -.h-56 { - height: 14rem; +.gap-x-1\.5 { + column-gap: 0.375rem; } -.h-60 { - height: 15rem; +.gap-x-2\.5 { + column-gap: 0.625rem; } -.h-64 { - height: 16rem; +.gap-x-3\.5 { + column-gap: 0.875rem; } -.h-72 { - height: 18rem; +.gap-y-0 { + row-gap: 0px; } -.h-80 { - height: 20rem; +.gap-y-1 { + row-gap: 0.25rem; } -.h-96 { - height: 24rem; +.gap-y-2 { + row-gap: 0.5rem; } -.h-auto { - height: auto; +.gap-y-3 { + row-gap: 0.75rem; } -.h-px { - height: 1px; +.gap-y-4 { + row-gap: 1rem; } -.h-0\.5 { - height: 0.125rem; +.gap-y-5 { + row-gap: 1.25rem; } -.h-1\.5 { - height: 0.375rem; +.gap-y-6 { + row-gap: 1.5rem; } -.h-2\.5 { - height: 0.625rem; +.gap-y-7 { + row-gap: 1.75rem; } -.h-3\.5 { - height: 0.875rem; +.gap-y-8 { + row-gap: 2rem; } -.h-1\/2 { - height: 50%; +.gap-y-9 { + row-gap: 2.25rem; } -.h-1\/3 { - height: 33.333333%; +.gap-y-10 { + row-gap: 2.5rem; } -.h-2\/3 { - height: 66.666667%; +.gap-y-11 { + row-gap: 2.75rem; } -.h-1\/4 { - height: 25%; +.gap-y-12 { + row-gap: 3rem; } -.h-2\/4 { - height: 50%; +.gap-y-14 { + row-gap: 3.5rem; } -.h-3\/4 { - height: 75%; +.gap-y-16 { + row-gap: 4rem; } -.h-1\/5 { - height: 20%; +.gap-y-20 { + row-gap: 5rem; } -.h-2\/5 { - height: 40%; +.gap-y-24 { + row-gap: 6rem; } -.h-3\/5 { - height: 60%; +.gap-y-28 { + row-gap: 7rem; } -.h-4\/5 { - height: 80%; +.gap-y-32 { + row-gap: 8rem; } -.h-1\/6 { - height: 16.666667%; +.gap-y-36 { + row-gap: 9rem; } -.h-2\/6 { - height: 33.333333%; +.gap-y-40 { + row-gap: 10rem; } -.h-3\/6 { - height: 50%; +.gap-y-44 { + row-gap: 11rem; } -.h-4\/6 { - height: 66.666667%; +.gap-y-48 { + row-gap: 12rem; } -.h-5\/6 { - height: 83.333333%; +.gap-y-52 { + row-gap: 13rem; } -.h-full { - height: 100%; +.gap-y-56 { + row-gap: 14rem; } -.h-screen { - height: 100vh; +.gap-y-60 { + row-gap: 15rem; } -.text-xs { - font-size: 0.75rem; - line-height: 1rem; +.gap-y-64 { + row-gap: 16rem; } -.text-sm { - font-size: 0.875rem; - line-height: 1.25rem; +.gap-y-72 { + row-gap: 18rem; } -.text-base { - font-size: 1rem; - line-height: 1.5rem; +.gap-y-80 { + row-gap: 20rem; } -.text-lg { - font-size: 1.125rem; - line-height: 1.75rem; +.gap-y-96 { + row-gap: 24rem; } -.text-xl { - font-size: 1.25rem; - line-height: 1.75rem; +.gap-y-px { + row-gap: 1px; } -.text-2xl { - font-size: 1.5rem; - line-height: 2rem; +.gap-y-0\.5 { + row-gap: 0.125rem; } -.text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; +.gap-y-1\.5 { + row-gap: 0.375rem; } -.text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; +.gap-y-2\.5 { + row-gap: 0.625rem; } -.text-5xl { - font-size: 3rem; - line-height: 1; +.gap-y-3\.5 { + row-gap: 0.875rem; } -.text-6xl { - font-size: 3.75rem; - line-height: 1; +.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)); } -.text-7xl { - font-size: 4.5rem; - line-height: 1; +.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))); } -.text-8xl { - font-size: 6rem; - line-height: 1; +.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)); } -.text-9xl { - font-size: 8rem; - line-height: 1; +.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))); } -.leading-3 { - line-height: .75rem; +.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)); } -.leading-4 { - line-height: 1rem; +.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))); } -.leading-5 { - line-height: 1.25rem; +.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)); } -.leading-6 { - line-height: 1.5rem; +.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))); } -.leading-7 { - line-height: 1.75rem; +.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)); } -.leading-8 { - line-height: 2rem; +.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))); } -.leading-9 { - line-height: 2.25rem; +.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)); } -.leading-10 { - line-height: 2.5rem; +.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))); } -.leading-none { - line-height: 1; +.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)); } -.leading-tight { - line-height: 1.25; +.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))); } -.leading-snug { - line-height: 1.375; +.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)); } -.leading-normal { - line-height: 1.5; +.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))); } -.leading-relaxed { - line-height: 1.625; +.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)); } -.leading-loose { - line-height: 2; +.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))); } -.list-inside { - list-style-position: inside; +.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)); } -.list-outside { - list-style-position: outside; +.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))); } -.list-none { - list-style-type: none; +.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)); } -.list-disc { - list-style-type: disc; +.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))); } -.list-decimal { - list-style-type: decimal; +.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)); } -.m-0 { - margin: 0px; +.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))); } -.m-1 { - margin: 0.25rem; +.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)); } -.m-2 { - margin: 0.5rem; +.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))); } -.m-3 { - margin: 0.75rem; +.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)); } -.m-4 { - margin: 1rem; +.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))); } -.m-5 { - margin: 1.25rem; +.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)); } -.m-6 { - margin: 1.5rem; +.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))); } -.m-7 { - margin: 1.75rem; +.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)); } -.m-8 { - margin: 2rem; +.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))); } -.m-9 { - margin: 2.25rem; +.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)); } -.m-10 { - margin: 2.5rem; +.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))); } -.m-11 { - margin: 2.75rem; +.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)); } -.m-12 { - margin: 3rem; +.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))); } -.m-14 { - margin: 3.5rem; +.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)); } -.m-16 { - margin: 4rem; +.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))); } -.m-20 { - margin: 5rem; +.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)); } -.m-24 { - margin: 6rem; +.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))); } -.m-28 { - margin: 7rem; +.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)); } -.m-32 { - margin: 8rem; +.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))); } -.m-36 { - margin: 9rem; +.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)); } -.m-40 { - margin: 10rem; +.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))); } -.m-44 { - margin: 11rem; +.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)); } -.m-48 { - margin: 12rem; +.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))); } -.m-52 { - margin: 13rem; +.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)); } -.m-56 { - margin: 14rem; +.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))); } -.m-60 { - margin: 15rem; +.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)); } -.m-64 { - margin: 16rem; +.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))); } -.m-72 { - margin: 18rem; +.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)); } -.m-80 { - margin: 20rem; +.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))); } -.m-96 { - margin: 24rem; +.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)); } -.m-auto { - margin: auto; +.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))); } -.m-px { - margin: 1px; +.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)); } -.m-0\.5 { - margin: 0.125rem; +.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))); } -.m-1\.5 { - margin: 0.375rem; +.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)); } -.m-2\.5 { - margin: 0.625rem; +.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))); } -.m-3\.5 { - margin: 0.875rem; +.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)); } -.-m-0 { - margin: 0px; +.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))); } -.-m-1 { - margin: -0.25rem; +.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)); } -.-m-2 { - margin: -0.5rem; +.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))); } -.-m-3 { - margin: -0.75rem; +.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)); } -.-m-4 { - margin: -1rem; +.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))); } -.-m-5 { - margin: -1.25rem; +.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)); } -.-m-6 { - margin: -1.5rem; +.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))); } -.-m-7 { - margin: -1.75rem; +.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)); } -.-m-8 { - margin: -2rem; +.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))); } -.-m-9 { - margin: -2.25rem; +.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)); } -.-m-10 { - margin: -2.5rem; +.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))); } -.-m-11 { - margin: -2.75rem; +.-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)); } -.-m-12 { - margin: -3rem; +.-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))); } -.-m-14 { - margin: -3.5rem; +.-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)); } -.-m-16 { - margin: -4rem; +.-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))); } -.-m-20 { - margin: -5rem; +.-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)); } -.-m-24 { - margin: -6rem; +.-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))); } -.-m-28 { - margin: -7rem; +.-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)); } -.-m-32 { - margin: -8rem; +.-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))); } -.-m-36 { - margin: -9rem; +.-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)); } -.-m-40 { - margin: -10rem; +.-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))); } -.-m-44 { - margin: -11rem; +.-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)); } -.-m-48 { - margin: -12rem; +.-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))); } -.-m-52 { - margin: -13rem; +.-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)); } -.-m-56 { - margin: -14rem; +.-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))); } -.-m-60 { - margin: -15rem; +.-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)); } -.-m-64 { - margin: -16rem; +.-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))); } -.-m-72 { - margin: -18rem; +.-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)); } -.-m-80 { - margin: -20rem; +.-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))); } -.-m-96 { - margin: -24rem; +.-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)); } -.-m-px { - margin: -1px; +.-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))); } -.-m-0\.5 { - margin: -0.125rem; +.-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)); } -.-m-1\.5 { - margin: -0.375rem; +.-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))); } -.-m-2\.5 { - margin: -0.625rem; +.-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)); } -.-m-3\.5 { - margin: -0.875rem; +.-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))); } -.my-0 { - margin-top: 0px; - margin-bottom: 0px; +.-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)); } -.mx-0 { - margin-left: 0px; - margin-right: 0px; +.-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))); } -.my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; +.-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)); } -.mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; +.-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))); } -.my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; +.-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)); } -.mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; +.-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))); } -.my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; +.-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)); } -.mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; +.-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))); } -.my-4 { - margin-top: 1rem; - margin-bottom: 1rem; +.-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)); } -.mx-4 { - margin-left: 1rem; - margin-right: 1rem; +.-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))); } -.my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; +.-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)); } -.mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; +.-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))); } -.my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; +.-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)); } -.mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; +.-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))); } -.my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; +.-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)); } -.mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; +.-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))); } -.my-8 { - margin-top: 2rem; - margin-bottom: 2rem; +.-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)); } -.mx-8 { - margin-left: 2rem; - margin-right: 2rem; +.-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))); } -.my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; +.-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)); } -.mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; +.-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))); } -.my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; +.-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)); } -.mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; +.-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))); } -.my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; +.-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)); } -.mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; +.-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))); } -.my-12 { - margin-top: 3rem; - margin-bottom: 3rem; +.-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)); } -.mx-12 { - margin-left: 3rem; - margin-right: 3rem; +.-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))); } -.my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; +.-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)); } -.mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; +.-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))); } -.my-16 { - margin-top: 4rem; - margin-bottom: 4rem; +.-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)); } -.mx-16 { - margin-left: 4rem; - margin-right: 4rem; +.-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))); } -.my-20 { - margin-top: 5rem; - margin-bottom: 5rem; +.-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)); } -.mx-20 { - margin-left: 5rem; - margin-right: 5rem; +.-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))); } -.my-24 { - margin-top: 6rem; - margin-bottom: 6rem; +.-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)); } -.mx-24 { - margin-left: 6rem; - margin-right: 6rem; +.-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))); } -.my-28 { - margin-top: 7rem; - margin-bottom: 7rem; +.-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)); } -.mx-28 { - margin-left: 7rem; - margin-right: 7rem; +.-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))); } -.my-32 { - margin-top: 8rem; - margin-bottom: 8rem; +.-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)); } -.mx-32 { - margin-left: 8rem; - margin-right: 8rem; +.-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))); } -.my-36 { - margin-top: 9rem; - margin-bottom: 9rem; +.-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)); } -.mx-36 { - margin-left: 9rem; - margin-right: 9rem; +.-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))); } -.my-40 { - margin-top: 10rem; - margin-bottom: 10rem; +.-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)); } -.mx-40 { - margin-left: 10rem; - margin-right: 10rem; +.-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))); } -.my-44 { - margin-top: 11rem; - margin-bottom: 11rem; +.-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)); } -.mx-44 { - margin-left: 11rem; - margin-right: 11rem; +.-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))); } -.my-48 { - margin-top: 12rem; - margin-bottom: 12rem; +.-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)); } -.mx-48 { - margin-left: 12rem; - margin-right: 12rem; +.-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))); } -.my-52 { - margin-top: 13rem; - margin-bottom: 13rem; +.space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } -.mx-52 { - margin-left: 13rem; - margin-right: 13rem; +.space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } -.my-56 { - margin-top: 14rem; - margin-bottom: 14rem; +.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)); } -.mx-56 { - margin-left: 14rem; - margin-right: 14rem; +.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))); } -.my-60 { - margin-top: 15rem; - margin-bottom: 15rem; +.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)); } -.mx-60 { - margin-left: 15rem; - margin-right: 15rem; +.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))); } -.my-64 { - margin-top: 16rem; - margin-bottom: 16rem; +.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)); } -.mx-64 { - margin-left: 16rem; - margin-right: 16rem; +.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))); } -.my-72 { - margin-top: 18rem; - margin-bottom: 18rem; +.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)); } -.mx-72 { - margin-left: 18rem; - margin-right: 18rem; +.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))); } -.my-80 { - margin-top: 20rem; - margin-bottom: 20rem; +.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)); } -.mx-80 { - margin-left: 20rem; - margin-right: 20rem; +.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))); } -.my-96 { - margin-top: 24rem; - margin-bottom: 24rem; +.divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } -.mx-96 { - margin-left: 24rem; - margin-right: 24rem; +.divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } -.my-auto { - margin-top: auto; - margin-bottom: auto; +.divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } -.mx-auto { - margin-left: auto; - margin-right: auto; +.divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } -.my-px { - margin-top: 1px; - margin-bottom: 1px; +.divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } -.mx-px { - margin-left: 1px; - margin-right: 1px; +.divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } -.my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; +.divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } -.mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; +.divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } -.my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; +.divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } -.mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; +.divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } -.my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; +.divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } -.mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; +.divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } -.my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; +.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } -.mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; +.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } -.-my-0 { - margin-top: 0px; - margin-bottom: 0px; +.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } -.-mx-0 { - margin-left: 0px; - margin-right: 0px; +.divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } -.-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; +.divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } -.-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; +.divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } -.-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; +.divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } -.-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; +.divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } -.-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; +.divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } -.-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; +.divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } -.-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; +.divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } -.-mx-4 { - margin-left: -1rem; - margin-right: -1rem; +.divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } -.-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; +.divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } -.-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; +.divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } -.-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; +.divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } -.-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; +.divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } -.-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; +.divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } -.-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; +.divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } -.-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; +.divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } -.-mx-8 { - margin-left: -2rem; - margin-right: -2rem; +.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } -.-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; +.divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } -.-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; +.divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } -.-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; +.divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } -.-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; +.divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } -.-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; +.divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } -.-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; +.divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } -.-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; +.divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } -.-mx-12 { - margin-left: -3rem; - margin-right: -3rem; +.divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } -.-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; +.divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } -.-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; +.divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } -.-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; +.divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } -.-mx-16 { - margin-left: -4rem; - margin-right: -4rem; +.divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } -.-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; +.divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } -.-mx-20 { - margin-left: -5rem; - margin-right: -5rem; +.divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } -.-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; +.divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } -.-mx-24 { - margin-left: -6rem; - margin-right: -6rem; +.divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } -.-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; +.divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } -.-mx-28 { - margin-left: -7rem; - margin-right: -7rem; +.divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } -.-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; +.divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } -.-mx-32 { - margin-left: -8rem; - margin-right: -8rem; +.divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } -.-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; +.divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } -.-mx-36 { - margin-left: -9rem; - margin-right: -9rem; +.divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } -.-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; +.divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } -.-mx-40 { - margin-left: -10rem; - margin-right: -10rem; +.divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } -.-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; +.divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } -.-mx-44 { - margin-left: -11rem; - margin-right: -11rem; +.divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } -.-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; +.divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } -.-mx-48 { - margin-left: -12rem; - margin-right: -12rem; +.divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } -.-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; +.divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } -.-mx-52 { - margin-left: -13rem; - margin-right: -13rem; +.divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } -.-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; +.divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } -.-mx-56 { - margin-left: -14rem; - margin-right: -14rem; +.divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } -.-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; +.divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } -.-mx-60 { - margin-left: -15rem; - margin-right: -15rem; +.divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } -.-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; +.divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } -.-mx-64 { - margin-left: -16rem; - margin-right: -16rem; +.divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } -.-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; +.divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } -.-mx-72 { - margin-left: -18rem; - margin-right: -18rem; +.divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } -.-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; +.divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } -.-mx-80 { - margin-left: -20rem; - margin-right: -20rem; +.divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } -.-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; +.divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } -.-mx-96 { - margin-left: -24rem; - margin-right: -24rem; +.divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } -.-my-px { - margin-top: -1px; - margin-bottom: -1px; +.divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } -.-mx-px { - margin-left: -1px; - margin-right: -1px; +.divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } -.-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; +.divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } -.-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; +.divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } -.-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; +.divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } -.-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; +.divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } -.-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; +.divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } -.-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; +.divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } -.-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; +.divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } -.-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; +.divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } -.mt-0 { - margin-top: 0px; +.divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } -.mr-0 { - margin-right: 0px; +.divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } -.mb-0 { - margin-bottom: 0px; +.divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } -.ml-0 { - margin-left: 0px; +.divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } -.mt-1 { - margin-top: 0.25rem; +.divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } -.mr-1 { - margin-right: 0.25rem; +.divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } -.mb-1 { - margin-bottom: 0.25rem; +.divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } -.ml-1 { - margin-left: 0.25rem; +.divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } -.mt-2 { - margin-top: 0.5rem; +.divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } -.mr-2 { - margin-right: 0.5rem; +.divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } -.mb-2 { - margin-bottom: 0.5rem; +.divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } -.ml-2 { - margin-left: 0.5rem; +.divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } -.mt-3 { - margin-top: 0.75rem; +.divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } -.mr-3 { - margin-right: 0.75rem; +.divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } -.mb-3 { - margin-bottom: 0.75rem; +.divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } -.ml-3 { - margin-left: 0.75rem; +.divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } -.mt-4 { - margin-top: 1rem; +.divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } -.mr-4 { - margin-right: 1rem; +.divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } -.mb-4 { - margin-bottom: 1rem; +.divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } -.ml-4 { - margin-left: 1rem; +.divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } -.mt-5 { - margin-top: 1.25rem; +.divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } -.mr-5 { - margin-right: 1.25rem; +.divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } -.mb-5 { - margin-bottom: 1.25rem; +.place-self-auto { + place-self: auto; } -.ml-5 { - margin-left: 1.25rem; +.place-self-start { + place-self: start; } -.mt-6 { - margin-top: 1.5rem; +.place-self-end { + place-self: end; } -.mr-6 { - margin-right: 1.5rem; +.place-self-center { + place-self: center; } -.mb-6 { - margin-bottom: 1.5rem; +.place-self-stretch { + place-self: stretch; } -.ml-6 { - margin-left: 1.5rem; +.self-auto { + align-self: auto; } -.mt-7 { - margin-top: 1.75rem; +.self-start { + align-self: flex-start; } -.mr-7 { - margin-right: 1.75rem; +.self-end { + align-self: flex-end; } -.mb-7 { - margin-bottom: 1.75rem; +.self-center { + align-self: center; } -.ml-7 { - margin-left: 1.75rem; +.self-stretch { + align-self: stretch; } -.mt-8 { - margin-top: 2rem; +.justify-self-auto { + justify-self: auto; } -.mr-8 { - margin-right: 2rem; +.justify-self-start { + justify-self: start; } -.mb-8 { - margin-bottom: 2rem; +.justify-self-end { + justify-self: end; } -.ml-8 { - margin-left: 2rem; +.justify-self-center { + justify-self: center; } -.mt-9 { - margin-top: 2.25rem; +.justify-self-stretch { + justify-self: stretch; } -.mr-9 { - margin-right: 2.25rem; +.overflow-auto { + overflow: auto; } -.mb-9 { - margin-bottom: 2.25rem; +.overflow-hidden { + overflow: hidden; } -.ml-9 { - margin-left: 2.25rem; +.overflow-visible { + overflow: visible; } -.mt-10 { - margin-top: 2.5rem; +.overflow-scroll { + overflow: scroll; } -.mr-10 { - margin-right: 2.5rem; +.overflow-x-auto { + overflow-x: auto; } -.mb-10 { - margin-bottom: 2.5rem; +.overflow-y-auto { + overflow-y: auto; } -.ml-10 { - margin-left: 2.5rem; +.overflow-x-hidden { + overflow-x: hidden; } -.mt-11 { - margin-top: 2.75rem; +.overflow-y-hidden { + overflow-y: hidden; } -.mr-11 { - margin-right: 2.75rem; +.overflow-x-visible { + overflow-x: visible; } -.mb-11 { - margin-bottom: 2.75rem; +.overflow-y-visible { + overflow-y: visible; } -.ml-11 { - margin-left: 2.75rem; +.overflow-x-scroll { + overflow-x: scroll; } -.mt-12 { - margin-top: 3rem; +.overflow-y-scroll { + overflow-y: scroll; } -.mr-12 { - margin-right: 3rem; +.overscroll-auto { + overscroll-behavior: auto; } -.mb-12 { - margin-bottom: 3rem; +.overscroll-contain { + overscroll-behavior: contain; } -.ml-12 { - margin-left: 3rem; +.overscroll-none { + overscroll-behavior: none; } -.mt-14 { - margin-top: 3.5rem; +.overscroll-y-auto { + overscroll-behavior-y: auto; } -.mr-14 { - margin-right: 3.5rem; +.overscroll-y-contain { + overscroll-behavior-y: contain; } -.mb-14 { - margin-bottom: 3.5rem; +.overscroll-y-none { + overscroll-behavior-y: none; } -.ml-14 { - margin-left: 3.5rem; +.overscroll-x-auto { + overscroll-behavior-x: auto; } -.mt-16 { - margin-top: 4rem; -} - -.mr-16 { - margin-right: 4rem; +.overscroll-x-contain { + overscroll-behavior-x: contain; } -.mb-16 { - margin-bottom: 4rem; +.overscroll-x-none { + overscroll-behavior-x: none; } -.ml-16 { - margin-left: 4rem; +.truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } -.mt-20 { - margin-top: 5rem; +.overflow-ellipsis { + text-overflow: ellipsis; } -.mr-20 { - margin-right: 5rem; +.overflow-clip { + text-overflow: clip; } -.mb-20 { - margin-bottom: 5rem; +.whitespace-normal { + white-space: normal; } -.ml-20 { - margin-left: 5rem; +.whitespace-nowrap { + white-space: nowrap; } -.mt-24 { - margin-top: 6rem; +.whitespace-pre { + white-space: pre; } -.mr-24 { - margin-right: 6rem; +.whitespace-pre-line { + white-space: pre-line; } -.mb-24 { - margin-bottom: 6rem; +.whitespace-pre-wrap { + white-space: pre-wrap; } -.ml-24 { - margin-left: 6rem; +.break-normal { + overflow-wrap: normal; + word-break: normal; } -.mt-28 { - margin-top: 7rem; +.break-words { + overflow-wrap: break-word; } -.mr-28 { - margin-right: 7rem; +.break-all { + word-break: break-all; } -.mb-28 { - margin-bottom: 7rem; +.rounded-none { + border-radius: 0px; } -.ml-28 { - margin-left: 7rem; +.rounded-sm { + border-radius: 0.125rem; } -.mt-32 { - margin-top: 8rem; +.rounded { + border-radius: 0.25rem; } -.mr-32 { - margin-right: 8rem; +.rounded-md { + border-radius: 0.375rem; } -.mb-32 { - margin-bottom: 8rem; +.rounded-lg { + border-radius: 0.5rem; } -.ml-32 { - margin-left: 8rem; +.rounded-xl { + border-radius: 0.75rem; } -.mt-36 { - margin-top: 9rem; +.rounded-2xl { + border-radius: 1rem; } -.mr-36 { - margin-right: 9rem; +.rounded-3xl { + border-radius: 1.5rem; } -.mb-36 { - margin-bottom: 9rem; +.rounded-full { + border-radius: 9999px; } -.ml-36 { - margin-left: 9rem; +.rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } -.mt-40 { - margin-top: 10rem; +.rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } -.mr-40 { - margin-right: 10rem; +.rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } -.mb-40 { - margin-bottom: 10rem; +.rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } -.ml-40 { - margin-left: 10rem; +.rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } -.mt-44 { - margin-top: 11rem; +.rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } -.mr-44 { - margin-right: 11rem; +.rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } -.mb-44 { - margin-bottom: 11rem; +.rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } -.ml-44 { - margin-left: 11rem; +.rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } -.mt-48 { - margin-top: 12rem; +.rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } -.mr-48 { - margin-right: 12rem; +.rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } -.mb-48 { - margin-bottom: 12rem; +.rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } -.ml-48 { - margin-left: 12rem; +.rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } -.mt-52 { - margin-top: 13rem; +.rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } -.mr-52 { - margin-right: 13rem; +.rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } -.mb-52 { - margin-bottom: 13rem; +.rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } -.ml-52 { - margin-left: 13rem; +.rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } -.mt-56 { - margin-top: 14rem; +.rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } -.mr-56 { - margin-right: 14rem; +.rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } -.mb-56 { - margin-bottom: 14rem; +.rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } -.ml-56 { - margin-left: 14rem; +.rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } -.mt-60 { - margin-top: 15rem; +.rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } -.mr-60 { - margin-right: 15rem; +.rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } -.mb-60 { - margin-bottom: 15rem; +.rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } -.ml-60 { - margin-left: 15rem; +.rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } -.mt-64 { - margin-top: 16rem; +.rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } -.mr-64 { - margin-right: 16rem; +.rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } -.mb-64 { - margin-bottom: 16rem; +.rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } -.ml-64 { - margin-left: 16rem; +.rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } -.mt-72 { - margin-top: 18rem; +.rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } -.mr-72 { - margin-right: 18rem; +.rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } -.mb-72 { - margin-bottom: 18rem; +.rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } -.ml-72 { - margin-left: 18rem; +.rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } -.mt-80 { - margin-top: 20rem; +.rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } -.mr-80 { - margin-right: 20rem; +.rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } -.mb-80 { - margin-bottom: 20rem; +.rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } -.ml-80 { - margin-left: 20rem; +.rounded-tl-none { + border-top-left-radius: 0px; } -.mt-96 { - margin-top: 24rem; +.rounded-tl-sm { + border-top-left-radius: 0.125rem; } -.mr-96 { - margin-right: 24rem; +.rounded-tl { + border-top-left-radius: 0.25rem; } -.mb-96 { - margin-bottom: 24rem; +.rounded-tl-md { + border-top-left-radius: 0.375rem; } -.ml-96 { - margin-left: 24rem; +.rounded-tl-lg { + border-top-left-radius: 0.5rem; } -.mt-auto { - margin-top: auto; +.rounded-tl-xl { + border-top-left-radius: 0.75rem; } -.mr-auto { - margin-right: auto; +.rounded-tl-2xl { + border-top-left-radius: 1rem; } -.mb-auto { - margin-bottom: auto; +.rounded-tl-3xl { + border-top-left-radius: 1.5rem; } -.ml-auto { - margin-left: auto; +.rounded-tl-full { + border-top-left-radius: 9999px; } -.mt-px { - margin-top: 1px; +.rounded-tr-none { + border-top-right-radius: 0px; } -.mr-px { - margin-right: 1px; +.rounded-tr-sm { + border-top-right-radius: 0.125rem; } -.mb-px { - margin-bottom: 1px; +.rounded-tr { + border-top-right-radius: 0.25rem; } -.ml-px { - margin-left: 1px; +.rounded-tr-md { + border-top-right-radius: 0.375rem; } -.mt-0\.5 { - margin-top: 0.125rem; +.rounded-tr-lg { + border-top-right-radius: 0.5rem; } -.mr-0\.5 { - margin-right: 0.125rem; +.rounded-tr-xl { + border-top-right-radius: 0.75rem; } -.mb-0\.5 { - margin-bottom: 0.125rem; +.rounded-tr-2xl { + border-top-right-radius: 1rem; } -.ml-0\.5 { - margin-left: 0.125rem; +.rounded-tr-3xl { + border-top-right-radius: 1.5rem; } -.mt-1\.5 { - margin-top: 0.375rem; +.rounded-tr-full { + border-top-right-radius: 9999px; } -.mr-1\.5 { - margin-right: 0.375rem; +.rounded-br-none { + border-bottom-right-radius: 0px; } -.mb-1\.5 { - margin-bottom: 0.375rem; +.rounded-br-sm { + border-bottom-right-radius: 0.125rem; } -.ml-1\.5 { - margin-left: 0.375rem; +.rounded-br { + border-bottom-right-radius: 0.25rem; } -.mt-2\.5 { - margin-top: 0.625rem; +.rounded-br-md { + border-bottom-right-radius: 0.375rem; } -.mr-2\.5 { - margin-right: 0.625rem; +.rounded-br-lg { + border-bottom-right-radius: 0.5rem; } -.mb-2\.5 { - margin-bottom: 0.625rem; +.rounded-br-xl { + border-bottom-right-radius: 0.75rem; } -.ml-2\.5 { - margin-left: 0.625rem; +.rounded-br-2xl { + border-bottom-right-radius: 1rem; } -.mt-3\.5 { - margin-top: 0.875rem; +.rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } -.mr-3\.5 { - margin-right: 0.875rem; +.rounded-br-full { + border-bottom-right-radius: 9999px; } -.mb-3\.5 { - margin-bottom: 0.875rem; +.rounded-bl-none { + border-bottom-left-radius: 0px; } -.ml-3\.5 { - margin-left: 0.875rem; +.rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } -.-mt-0 { - margin-top: 0px; +.rounded-bl { + border-bottom-left-radius: 0.25rem; } -.-mr-0 { - margin-right: 0px; +.rounded-bl-md { + border-bottom-left-radius: 0.375rem; } -.-mb-0 { - margin-bottom: 0px; +.rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } -.-ml-0 { - margin-left: 0px; +.rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } -.-mt-1 { - margin-top: -0.25rem; +.rounded-bl-2xl { + border-bottom-left-radius: 1rem; } -.-mr-1 { - margin-right: -0.25rem; +.rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } -.-mb-1 { - margin-bottom: -0.25rem; +.rounded-bl-full { + border-bottom-left-radius: 9999px; } -.-ml-1 { - margin-left: -0.25rem; +.border-0 { + border-width: 0px; } -.-mt-2 { - margin-top: -0.5rem; +.border-2 { + border-width: 2px; } -.-mr-2 { - margin-right: -0.5rem; +.border-4 { + border-width: 4px; } -.-mb-2 { - margin-bottom: -0.5rem; +.border-8 { + border-width: 8px; } -.-ml-2 { - margin-left: -0.5rem; +.border { + border-width: 1px; } -.-mt-3 { - margin-top: -0.75rem; +.border-t-0 { + border-top-width: 0px; } -.-mr-3 { - margin-right: -0.75rem; +.border-t-2 { + border-top-width: 2px; } -.-mb-3 { - margin-bottom: -0.75rem; +.border-t-4 { + border-top-width: 4px; } -.-ml-3 { - margin-left: -0.75rem; +.border-t-8 { + border-top-width: 8px; } -.-mt-4 { - margin-top: -1rem; +.border-t { + border-top-width: 1px; } -.-mr-4 { - margin-right: -1rem; +.border-r-0 { + border-right-width: 0px; } -.-mb-4 { - margin-bottom: -1rem; +.border-r-2 { + border-right-width: 2px; } -.-ml-4 { - margin-left: -1rem; +.border-r-4 { + border-right-width: 4px; } -.-mt-5 { - margin-top: -1.25rem; +.border-r-8 { + border-right-width: 8px; } -.-mr-5 { - margin-right: -1.25rem; +.border-r { + border-right-width: 1px; } -.-mb-5 { - margin-bottom: -1.25rem; +.border-b-0 { + border-bottom-width: 0px; } -.-ml-5 { - margin-left: -1.25rem; +.border-b-2 { + border-bottom-width: 2px; } -.-mt-6 { - margin-top: -1.5rem; +.border-b-4 { + border-bottom-width: 4px; } -.-mr-6 { - margin-right: -1.5rem; +.border-b-8 { + border-bottom-width: 8px; } -.-mb-6 { - margin-bottom: -1.5rem; +.border-b { + border-bottom-width: 1px; } -.-ml-6 { - margin-left: -1.5rem; +.border-l-0 { + border-left-width: 0px; } -.-mt-7 { - margin-top: -1.75rem; +.border-l-2 { + border-left-width: 2px; } -.-mr-7 { - margin-right: -1.75rem; +.border-l-4 { + border-left-width: 4px; } -.-mb-7 { - margin-bottom: -1.75rem; +.border-l-8 { + border-left-width: 8px; } -.-ml-7 { - margin-left: -1.75rem; +.border-l { + border-left-width: 1px; } -.-mt-8 { - margin-top: -2rem; +.border-solid { + border-style: solid; } -.-mr-8 { - margin-right: -2rem; +.border-dashed { + border-style: dashed; } -.-mb-8 { - margin-bottom: -2rem; +.border-dotted { + border-style: dotted; } -.-ml-8 { - margin-left: -2rem; +.border-double { + border-style: double; } -.-mt-9 { - margin-top: -2.25rem; +.border-none { + border-style: none; } -.-mr-9 { - margin-right: -2.25rem; +.border-transparent { + border-color: transparent; } -.-mb-9 { - margin-bottom: -2.25rem; +.border-current { + border-color: currentColor; } -.-ml-9 { - margin-left: -2.25rem; +.border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } -.-mt-10 { - margin-top: -2.5rem; +.border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } -.-mr-10 { - margin-right: -2.5rem; +.border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } -.-mb-10 { - margin-bottom: -2.5rem; +.border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } -.-ml-10 { - margin-left: -2.5rem; +.border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } -.-mt-11 { - margin-top: -2.75rem; +.border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } -.-mr-11 { - margin-right: -2.75rem; +.border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } -.-mb-11 { - margin-bottom: -2.75rem; +.border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } -.-ml-11 { - margin-left: -2.75rem; +.border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } -.-mt-12 { - margin-top: -3rem; +.border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } -.-mr-12 { - margin-right: -3rem; +.border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } -.-mb-12 { - margin-bottom: -3rem; +.border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } -.-ml-12 { - margin-left: -3rem; +.border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } -.-mt-14 { - margin-top: -3.5rem; +.border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } -.-mr-14 { - margin-right: -3.5rem; +.border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } -.-mb-14 { - margin-bottom: -3.5rem; +.border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } -.-ml-14 { - margin-left: -3.5rem; +.border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } -.-mt-16 { - margin-top: -4rem; +.border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } -.-mr-16 { - margin-right: -4rem; +.border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } -.-mb-16 { - margin-bottom: -4rem; +.border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } -.-ml-16 { - margin-left: -4rem; +.border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } -.-mt-20 { - margin-top: -5rem; +.border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } -.-mr-20 { - margin-right: -5rem; +.border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } -.-mb-20 { - margin-bottom: -5rem; +.border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } -.-ml-20 { - margin-left: -5rem; +.border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } -.-mt-24 { - margin-top: -6rem; +.border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } -.-mr-24 { - margin-right: -6rem; +.border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } -.-mb-24 { - margin-bottom: -6rem; +.border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } -.-ml-24 { - margin-left: -6rem; +.border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } -.-mt-28 { - margin-top: -7rem; +.border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } -.-mr-28 { - margin-right: -7rem; +.border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } -.-mb-28 { - margin-bottom: -7rem; +.border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } -.-ml-28 { - margin-left: -7rem; +.border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } -.-mt-32 { - margin-top: -8rem; +.border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } -.-mr-32 { - margin-right: -8rem; +.border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } -.-mb-32 { - margin-bottom: -8rem; +.border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } -.-ml-32 { - margin-left: -8rem; +.border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } -.-mt-36 { - margin-top: -9rem; +.border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } -.-mr-36 { - margin-right: -9rem; +.border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } -.-mb-36 { - margin-bottom: -9rem; +.border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } -.-ml-36 { - margin-left: -9rem; +.border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } -.-mt-40 { - margin-top: -10rem; +.border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } -.-mr-40 { - margin-right: -10rem; +.border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } -.-mb-40 { - margin-bottom: -10rem; +.border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } -.-ml-40 { - margin-left: -10rem; +.border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } -.-mt-44 { - margin-top: -11rem; +.border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } -.-mr-44 { - margin-right: -11rem; +.border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } -.-mb-44 { - margin-bottom: -11rem; +.border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } -.-ml-44 { - margin-left: -11rem; +.border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } -.-mt-48 { - margin-top: -12rem; +.border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } -.-mr-48 { - margin-right: -12rem; +.border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } -.-mb-48 { - margin-bottom: -12rem; +.border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } -.-ml-48 { - margin-left: -12rem; +.border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } -.-mt-52 { - margin-top: -13rem; +.border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } -.-mr-52 { - margin-right: -13rem; +.border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } -.-mb-52 { - margin-bottom: -13rem; +.border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } -.-ml-52 { - margin-left: -13rem; +.border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } -.-mt-56 { - margin-top: -14rem; +.border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } -.-mr-56 { - margin-right: -14rem; +.border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } -.-mb-56 { - margin-bottom: -14rem; +.border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } -.-ml-56 { - margin-left: -14rem; +.border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } -.-mt-60 { - margin-top: -15rem; +.border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } -.-mr-60 { - margin-right: -15rem; +.border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } -.-mb-60 { - margin-bottom: -15rem; +.border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } -.-ml-60 { - margin-left: -15rem; +.border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } -.-mt-64 { - margin-top: -16rem; +.border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } -.-mr-64 { - margin-right: -16rem; +.border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } -.-mb-64 { - margin-bottom: -16rem; +.border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } -.-ml-64 { - margin-left: -16rem; +.border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } -.-mt-72 { - margin-top: -18rem; +.border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } -.-mr-72 { - margin-right: -18rem; +.border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } -.-mb-72 { - margin-bottom: -18rem; +.border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } -.-ml-72 { - margin-left: -18rem; +.border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } -.-mt-80 { - margin-top: -20rem; +.border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } -.-mr-80 { - margin-right: -20rem; +.border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } -.-mb-80 { - margin-bottom: -20rem; +.border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } -.-ml-80 { - margin-left: -20rem; +.border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } -.-mt-96 { - margin-top: -24rem; +.border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } -.-mr-96 { - margin-right: -24rem; +.border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } -.-mb-96 { - margin-bottom: -24rem; +.border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } -.-ml-96 { - margin-left: -24rem; +.border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } -.-mt-px { - margin-top: -1px; +.border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } -.-mr-px { - margin-right: -1px; +.group:hover .group-hover\:border-transparent { + border-color: transparent; } -.-mb-px { - margin-bottom: -1px; +.group:hover .group-hover\:border-current { + border-color: currentColor; } -.-ml-px { - margin-left: -1px; +.group:hover .group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } -.-mt-0\.5 { - margin-top: -0.125rem; +.group:hover .group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } -.-mr-0\.5 { - margin-right: -0.125rem; +.group:hover .group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } -.-mb-0\.5 { - margin-bottom: -0.125rem; +.group:hover .group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } -.-ml-0\.5 { - margin-left: -0.125rem; +.group:hover .group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } -.-mt-1\.5 { - margin-top: -0.375rem; +.group:hover .group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } -.-mr-1\.5 { - margin-right: -0.375rem; +.group:hover .group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } -.-mb-1\.5 { - margin-bottom: -0.375rem; +.group:hover .group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } -.-ml-1\.5 { - margin-left: -0.375rem; +.group:hover .group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } -.-mt-2\.5 { - margin-top: -0.625rem; +.group:hover .group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } -.-mr-2\.5 { - margin-right: -0.625rem; +.group:hover .group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } -.-mb-2\.5 { - margin-bottom: -0.625rem; +.group:hover .group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } -.-ml-2\.5 { - margin-left: -0.625rem; +.group:hover .group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } -.-mt-3\.5 { - margin-top: -0.875rem; +.group:hover .group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } -.-mr-3\.5 { - margin-right: -0.875rem; +.group:hover .group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } -.-mb-3\.5 { - margin-bottom: -0.875rem; +.group:hover .group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } -.-ml-3\.5 { - margin-left: -0.875rem; +.group:hover .group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } -.max-h-0 { - max-height: 0px; +.group:hover .group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } -.max-h-1 { - max-height: 0.25rem; +.group:hover .group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } -.max-h-2 { - max-height: 0.5rem; +.group:hover .group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } -.max-h-3 { - max-height: 0.75rem; +.group:hover .group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } -.max-h-4 { - max-height: 1rem; +.group:hover .group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } -.max-h-5 { - max-height: 1.25rem; +.group:hover .group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } -.max-h-6 { - max-height: 1.5rem; +.group:hover .group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } -.max-h-7 { - max-height: 1.75rem; +.group:hover .group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } -.max-h-8 { - max-height: 2rem; +.group:hover .group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } -.max-h-9 { - max-height: 2.25rem; +.group:hover .group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } -.max-h-10 { - max-height: 2.5rem; +.group:hover .group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } -.max-h-11 { - max-height: 2.75rem; +.group:hover .group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } -.max-h-12 { - max-height: 3rem; +.group:hover .group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } -.max-h-14 { - max-height: 3.5rem; +.group:hover .group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } -.max-h-16 { - max-height: 4rem; +.group:hover .group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } -.max-h-20 { - max-height: 5rem; +.group:hover .group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } -.max-h-24 { - max-height: 6rem; +.group:hover .group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } -.max-h-28 { - max-height: 7rem; +.group:hover .group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } -.max-h-32 { - max-height: 8rem; +.group:hover .group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } -.max-h-36 { - max-height: 9rem; +.group:hover .group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } -.max-h-40 { - max-height: 10rem; +.group:hover .group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } -.max-h-44 { - max-height: 11rem; +.group:hover .group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } -.max-h-48 { - max-height: 12rem; +.group:hover .group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } -.max-h-52 { - max-height: 13rem; +.group:hover .group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } -.max-h-56 { - max-height: 14rem; +.group:hover .group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } -.max-h-60 { - max-height: 15rem; +.group:hover .group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } -.max-h-64 { - max-height: 16rem; +.group:hover .group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } -.max-h-72 { - max-height: 18rem; +.group:hover .group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } -.max-h-80 { - max-height: 20rem; +.group:hover .group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } -.max-h-96 { - max-height: 24rem; +.group:hover .group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } -.max-h-px { - max-height: 1px; +.group:hover .group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } -.max-h-0\.5 { - max-height: 0.125rem; +.group:hover .group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } -.max-h-1\.5 { - max-height: 0.375rem; +.group:hover .group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } -.max-h-2\.5 { - max-height: 0.625rem; +.group:hover .group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } -.max-h-3\.5 { - max-height: 0.875rem; +.group:hover .group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } -.max-h-full { - max-height: 100%; +.group:hover .group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } -.max-h-screen { - max-height: 100vh; +.group:hover .group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } -.max-w-0 { - max-width: 0rem; +.group:hover .group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } -.max-w-none { - max-width: none; +.group:hover .group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } -.max-w-xs { - max-width: 20rem; +.group:hover .group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } -.max-w-sm { - max-width: 24rem; +.group:hover .group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } -.max-w-md { - max-width: 28rem; +.group:hover .group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } -.max-w-lg { - max-width: 32rem; +.group:hover .group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } -.max-w-xl { - max-width: 36rem; +.group:hover .group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } -.max-w-2xl { - max-width: 42rem; +.group:hover .group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } -.max-w-3xl { - max-width: 48rem; +.group:hover .group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } -.max-w-4xl { - max-width: 56rem; +.group:hover .group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } -.max-w-5xl { - max-width: 64rem; +.group:hover .group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } -.max-w-6xl { - max-width: 72rem; +.group:hover .group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } -.max-w-7xl { - max-width: 80rem; +.group:hover .group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } -.max-w-full { - max-width: 100%; +.group:hover .group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } -.max-w-min { - max-width: min-content; +.group:hover .group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } -.max-w-max { - max-width: max-content; +.group:hover .group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } -.max-w-prose { - max-width: 65ch; +.group:hover .group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } -.max-w-screen-sm { - max-width: 640px; +.group:hover .group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } -.max-w-screen-md { - max-width: 768px; +.group:hover .group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } -.max-w-screen-lg { - max-width: 1024px; +.group:hover .group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } -.max-w-screen-xl { - max-width: 1280px; +.group:hover .group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } -.max-w-screen-2xl { - max-width: 1536px; +.group:hover .group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } -.min-h-0 { - min-height: 0px; +.group:hover .group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } -.min-h-full { - min-height: 100%; +.group:hover .group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } -.min-h-screen { - min-height: 100vh; +.group:hover .group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } -.min-w-0 { - min-width: 0px; +.group:hover .group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } -.min-w-full { - min-width: 100%; +.group:hover .group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } -.min-w-min { - min-width: min-content; +.group:hover .group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } -.min-w-max { - min-width: max-content; +.focus-within\:border-transparent:focus-within { + border-color: transparent; } -.object-contain { - object-fit: contain; +.focus-within\:border-current:focus-within { + border-color: currentColor; } -.object-cover { - object-fit: cover; +.focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } -.object-fill { - object-fit: fill; +.focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } -.object-none { - object-fit: none; +.focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } -.object-scale-down { - object-fit: scale-down; +.focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } -.object-bottom { - object-position: bottom; +.focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } -.object-center { - object-position: center; +.focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } -.object-left { - object-position: left; +.focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } -.object-left-bottom { - object-position: left bottom; +.focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } -.object-left-top { - object-position: left top; +.focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } -.object-right { - object-position: right; +.focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } -.object-right-bottom { - object-position: right bottom; +.focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } -.object-right-top { - object-position: right top; +.focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } -.object-top { - object-position: top; +.focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } -.opacity-0 { - opacity: 0; +.focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } -.opacity-5 { - opacity: 0.05; +.focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } -.opacity-10 { - opacity: 0.1; +.focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } -.opacity-20 { - opacity: 0.2; +.focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } -.opacity-25 { - opacity: 0.25; +.focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } -.opacity-30 { - opacity: 0.3; +.focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } -.opacity-40 { - opacity: 0.4; +.focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } -.opacity-50 { - opacity: 0.5; +.focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } -.opacity-60 { - opacity: 0.6; +.focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } -.opacity-70 { - opacity: 0.7; +.focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } -.opacity-75 { - opacity: 0.75; +.focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } -.opacity-80 { - opacity: 0.8; +.focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } -.opacity-90 { - opacity: 0.9; +.focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } -.opacity-95 { - opacity: 0.95; +.focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } -.opacity-100 { - opacity: 1; +.focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-0 { - opacity: 0; +.focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-5 { - opacity: 0.05; +.focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-10 { - opacity: 0.1; +.focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-20 { - opacity: 0.2; +.focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-25 { - opacity: 0.25; +.focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-30 { - opacity: 0.3; +.focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-40 { - opacity: 0.4; +.focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-50 { - opacity: 0.5; +.focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-60 { - opacity: 0.6; +.focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-70 { - opacity: 0.7; +.focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-75 { - opacity: 0.75; +.focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-80 { - opacity: 0.8; +.focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-90 { - opacity: 0.9; +.focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-95 { - opacity: 0.95; +.focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-100 { - opacity: 1; +.focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } -.focus-within\:opacity-0:focus-within { - opacity: 0; +.focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } -.focus-within\:opacity-5:focus-within { - opacity: 0.05; +.focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } -.focus-within\:opacity-10:focus-within { - opacity: 0.1; +.focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } -.focus-within\:opacity-20:focus-within { - opacity: 0.2; +.focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } -.focus-within\:opacity-25:focus-within { - opacity: 0.25; +.focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } -.focus-within\:opacity-30:focus-within { - opacity: 0.3; +.focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } -.focus-within\:opacity-40:focus-within { - opacity: 0.4; +.focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } -.focus-within\:opacity-50:focus-within { - opacity: 0.5; +.focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } -.focus-within\:opacity-60:focus-within { - opacity: 0.6; +.focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } -.focus-within\:opacity-70:focus-within { - opacity: 0.7; +.focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } -.focus-within\:opacity-75:focus-within { - opacity: 0.75; +.focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } -.focus-within\:opacity-80:focus-within { - opacity: 0.8; +.focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } -.focus-within\:opacity-90:focus-within { - opacity: 0.9; +.focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } -.focus-within\:opacity-95:focus-within { - opacity: 0.95; +.focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } -.focus-within\:opacity-100:focus-within { - opacity: 1; +.focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } -.hover\:opacity-0:hover { - opacity: 0; +.focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } -.hover\:opacity-5:hover { - opacity: 0.05; +.focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } -.hover\:opacity-10:hover { - opacity: 0.1; +.focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } -.hover\:opacity-20:hover { - opacity: 0.2; +.focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } -.hover\:opacity-25:hover { - opacity: 0.25; +.focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } -.hover\:opacity-30:hover { - opacity: 0.3; +.focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } -.hover\:opacity-40:hover { - opacity: 0.4; +.focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } -.hover\:opacity-50:hover { - opacity: 0.5; +.focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } -.hover\:opacity-60:hover { - opacity: 0.6; +.focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } -.hover\:opacity-70:hover { - opacity: 0.7; +.focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } -.hover\:opacity-75:hover { - opacity: 0.75; +.focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } -.hover\:opacity-80:hover { - opacity: 0.8; +.focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } -.hover\:opacity-90:hover { - opacity: 0.9; +.focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } -.hover\:opacity-95:hover { - opacity: 0.95; +.focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } -.hover\:opacity-100:hover { - opacity: 1; +.focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } -.focus\:opacity-0:focus { - opacity: 0; +.focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } -.focus\:opacity-5:focus { - opacity: 0.05; +.focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } -.focus\:opacity-10:focus { - opacity: 0.1; +.focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } -.focus\:opacity-20:focus { - opacity: 0.2; +.focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } -.focus\:opacity-25:focus { - opacity: 0.25; +.focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } -.focus\:opacity-30:focus { - opacity: 0.3; +.focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } -.focus\:opacity-40:focus { - opacity: 0.4; +.focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } -.focus\:opacity-50:focus { - opacity: 0.5; +.focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } -.focus\:opacity-60:focus { - opacity: 0.6; +.focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } -.focus\:opacity-70:focus { - opacity: 0.7; +.hover\:border-transparent:hover { + border-color: transparent; } -.focus\:opacity-75:focus { - opacity: 0.75; +.hover\:border-current:hover { + border-color: currentColor; } -.focus\:opacity-80:focus { - opacity: 0.8; +.hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } -.focus\:opacity-90:focus { - opacity: 0.9; +.hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } -.focus\:opacity-95:focus { - opacity: 0.95; +.hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } -.focus\:opacity-100:focus { - opacity: 1; +.hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } -.outline-none { - outline: 2px solid transparent; - outline-offset: 2px; +.hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } -.outline-white { - outline: 2px dotted white; - outline-offset: 2px; +.hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } -.outline-black { - outline: 2px dotted black; - outline-offset: 2px; +.hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } -.focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; +.hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } -.focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; +.hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } -.focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; +.hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } -.focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; +.hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } -.focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; +.hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } -.focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; +.hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } -.overflow-auto { - overflow: auto; +.hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } -.overflow-hidden { - overflow: hidden; +.hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } -.overflow-visible { - overflow: visible; +.hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } -.overflow-scroll { - overflow: scroll; +.hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } -.overflow-x-auto { - overflow-x: auto; +.hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } -.overflow-y-auto { - overflow-y: auto; +.hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } -.overflow-x-hidden { - overflow-x: hidden; +.hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } -.overflow-y-hidden { - overflow-y: hidden; +.hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } -.overflow-x-visible { - overflow-x: visible; +.hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } -.overflow-y-visible { - overflow-y: visible; +.hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } -.overflow-x-scroll { - overflow-x: scroll; +.hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } -.overflow-y-scroll { - overflow-y: scroll; +.hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } -.overscroll-auto { - overscroll-behavior: auto; +.hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } -.overscroll-contain { - overscroll-behavior: contain; +.hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } -.overscroll-none { - overscroll-behavior: none; +.hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } -.overscroll-y-auto { - overscroll-behavior-y: auto; +.hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } -.overscroll-y-contain { - overscroll-behavior-y: contain; +.hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } -.overscroll-y-none { - overscroll-behavior-y: none; +.hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } -.overscroll-x-auto { - overscroll-behavior-x: auto; +.hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } -.overscroll-x-contain { - overscroll-behavior-x: contain; +.hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } -.overscroll-x-none { - overscroll-behavior-x: none; +.hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } -.p-0 { - padding: 0px; +.hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } -.p-1 { - padding: 0.25rem; +.hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } -.p-2 { - padding: 0.5rem; +.hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } -.p-3 { - padding: 0.75rem; +.hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } -.p-4 { - padding: 1rem; +.hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } -.p-5 { - padding: 1.25rem; +.hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } -.p-6 { - padding: 1.5rem; +.hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } -.p-7 { - padding: 1.75rem; +.hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } -.p-8 { - padding: 2rem; +.hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } -.p-9 { - padding: 2.25rem; +.hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } -.p-10 { - padding: 2.5rem; +.hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } -.p-11 { - padding: 2.75rem; +.hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } -.p-12 { - padding: 3rem; +.hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } -.p-14 { - padding: 3.5rem; +.hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } -.p-16 { - padding: 4rem; -} - -.p-20 { - padding: 5rem; +.hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } -.p-24 { - padding: 6rem; +.hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } -.p-28 { - padding: 7rem; +.hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } -.p-32 { - padding: 8rem; +.hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } -.p-36 { - padding: 9rem; +.hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } -.p-40 { - padding: 10rem; +.hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } -.p-44 { - padding: 11rem; +.hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } -.p-48 { - padding: 12rem; +.hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } -.p-52 { - padding: 13rem; +.hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } -.p-56 { - padding: 14rem; +.hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } -.p-60 { - padding: 15rem; +.hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } -.p-64 { - padding: 16rem; +.hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } -.p-72 { - padding: 18rem; +.hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } -.p-80 { - padding: 20rem; +.hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } -.p-96 { - padding: 24rem; +.hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } -.p-px { - padding: 1px; +.hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } -.p-0\.5 { - padding: 0.125rem; +.hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } -.p-1\.5 { - padding: 0.375rem; +.hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } -.p-2\.5 { - padding: 0.625rem; +.hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } -.p-3\.5 { - padding: 0.875rem; +.hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } -.py-0 { - padding-top: 0px; - padding-bottom: 0px; +.hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } -.px-0 { - padding-left: 0px; - padding-right: 0px; +.hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } -.py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; +.hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } -.px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; +.hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } -.py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; +.hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } -.px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; +.hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } -.py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; +.hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } -.px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; +.hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } -.py-4 { - padding-top: 1rem; - padding-bottom: 1rem; +.hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } -.px-4 { - padding-left: 1rem; - padding-right: 1rem; +.hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } -.py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; +.hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } -.px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; +.hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } -.py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; +.hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } -.px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; +.hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } -.py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; +.focus\:border-transparent:focus { + border-color: transparent; } -.px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; +.focus\:border-current:focus { + border-color: currentColor; } -.py-8 { - padding-top: 2rem; - padding-bottom: 2rem; +.focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } -.px-8 { - padding-left: 2rem; - padding-right: 2rem; +.focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } -.py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; +.focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } -.px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; +.focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } -.py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; +.focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } -.px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; +.focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } -.py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; +.focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } -.px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; +.focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } -.py-12 { - padding-top: 3rem; - padding-bottom: 3rem; +.focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } -.px-12 { - padding-left: 3rem; - padding-right: 3rem; +.focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } -.py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; +.focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } -.px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; +.focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } -.py-16 { - padding-top: 4rem; - padding-bottom: 4rem; +.focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } -.px-16 { - padding-left: 4rem; - padding-right: 4rem; +.focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } -.py-20 { - padding-top: 5rem; - padding-bottom: 5rem; +.focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } -.px-20 { - padding-left: 5rem; - padding-right: 5rem; +.focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } -.py-24 { - padding-top: 6rem; - padding-bottom: 6rem; +.focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } -.px-24 { - padding-left: 6rem; - padding-right: 6rem; +.focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } -.py-28 { - padding-top: 7rem; - padding-bottom: 7rem; +.focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } -.px-28 { - padding-left: 7rem; - padding-right: 7rem; +.focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } -.py-32 { - padding-top: 8rem; - padding-bottom: 8rem; +.focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } -.px-32 { - padding-left: 8rem; - padding-right: 8rem; +.focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } -.py-36 { - padding-top: 9rem; - padding-bottom: 9rem; +.focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } -.px-36 { - padding-left: 9rem; - padding-right: 9rem; +.focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } -.py-40 { - padding-top: 10rem; - padding-bottom: 10rem; +.focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } -.px-40 { - padding-left: 10rem; - padding-right: 10rem; +.focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } -.py-44 { - padding-top: 11rem; - padding-bottom: 11rem; +.focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } -.px-44 { - padding-left: 11rem; - padding-right: 11rem; +.focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } -.py-48 { - padding-top: 12rem; - padding-bottom: 12rem; +.focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } -.px-48 { - padding-left: 12rem; - padding-right: 12rem; +.focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } -.py-52 { - padding-top: 13rem; - padding-bottom: 13rem; +.focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } -.px-52 { - padding-left: 13rem; - padding-right: 13rem; +.focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } -.py-56 { - padding-top: 14rem; - padding-bottom: 14rem; +.focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } -.px-56 { - padding-left: 14rem; - padding-right: 14rem; +.focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } -.py-60 { - padding-top: 15rem; - padding-bottom: 15rem; +.focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } -.px-60 { - padding-left: 15rem; - padding-right: 15rem; +.focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } -.py-64 { - padding-top: 16rem; - padding-bottom: 16rem; +.focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } -.px-64 { - padding-left: 16rem; - padding-right: 16rem; +.focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } -.py-72 { - padding-top: 18rem; - padding-bottom: 18rem; +.focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } -.px-72 { - padding-left: 18rem; - padding-right: 18rem; +.focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } -.py-80 { - padding-top: 20rem; - padding-bottom: 20rem; +.focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } -.px-80 { - padding-left: 20rem; - padding-right: 20rem; +.focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } -.py-96 { - padding-top: 24rem; - padding-bottom: 24rem; +.focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } -.px-96 { - padding-left: 24rem; - padding-right: 24rem; +.focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } -.py-px { - padding-top: 1px; - padding-bottom: 1px; +.focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } -.px-px { - padding-left: 1px; - padding-right: 1px; +.focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } -.py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; +.focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } -.px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; +.focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } -.py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; +.focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } -.px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; +.focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } -.py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; +.focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } -.px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; +.focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } -.py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; +.focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } -.px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; +.focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } -.pt-0 { - padding-top: 0px; +.focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } -.pr-0 { - padding-right: 0px; +.focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } -.pb-0 { - padding-bottom: 0px; +.focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } -.pl-0 { - padding-left: 0px; +.focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } -.pt-1 { - padding-top: 0.25rem; +.focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } -.pr-1 { - padding-right: 0.25rem; +.focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } -.pb-1 { - padding-bottom: 0.25rem; +.focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } -.pl-1 { - padding-left: 0.25rem; +.focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } -.pt-2 { - padding-top: 0.5rem; +.focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } -.pr-2 { - padding-right: 0.5rem; +.focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } -.pb-2 { - padding-bottom: 0.5rem; +.focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } -.pl-2 { - padding-left: 0.5rem; +.focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } -.pt-3 { - padding-top: 0.75rem; +.focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } -.pr-3 { - padding-right: 0.75rem; +.focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } -.pb-3 { - padding-bottom: 0.75rem; +.focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } -.pl-3 { - padding-left: 0.75rem; +.focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } -.pt-4 { - padding-top: 1rem; +.focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } -.pr-4 { - padding-right: 1rem; +.focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } -.pb-4 { - padding-bottom: 1rem; +.focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } -.pl-4 { - padding-left: 1rem; +.focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } -.pt-5 { - padding-top: 1.25rem; +.focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } -.pr-5 { - padding-right: 1.25rem; +.focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } -.pb-5 { - padding-bottom: 1.25rem; +.focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } -.pl-5 { - padding-left: 1.25rem; +.focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } -.pt-6 { - padding-top: 1.5rem; +.focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } -.pr-6 { - padding-right: 1.5rem; +.focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } -.pb-6 { - padding-bottom: 1.5rem; +.focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } -.pl-6 { - padding-left: 1.5rem; +.focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } -.pt-7 { - padding-top: 1.75rem; +.border-opacity-0 { + --tw-border-opacity: 0; } -.pr-7 { - padding-right: 1.75rem; +.border-opacity-5 { + --tw-border-opacity: 0.05; } -.pb-7 { - padding-bottom: 1.75rem; +.border-opacity-10 { + --tw-border-opacity: 0.1; } -.pl-7 { - padding-left: 1.75rem; +.border-opacity-20 { + --tw-border-opacity: 0.2; } -.pt-8 { - padding-top: 2rem; +.border-opacity-25 { + --tw-border-opacity: 0.25; } -.pr-8 { - padding-right: 2rem; +.border-opacity-30 { + --tw-border-opacity: 0.3; } -.pb-8 { - padding-bottom: 2rem; +.border-opacity-40 { + --tw-border-opacity: 0.4; } -.pl-8 { - padding-left: 2rem; +.border-opacity-50 { + --tw-border-opacity: 0.5; } -.pt-9 { - padding-top: 2.25rem; +.border-opacity-60 { + --tw-border-opacity: 0.6; } -.pr-9 { - padding-right: 2.25rem; +.border-opacity-70 { + --tw-border-opacity: 0.7; } -.pb-9 { - padding-bottom: 2.25rem; +.border-opacity-75 { + --tw-border-opacity: 0.75; } -.pl-9 { - padding-left: 2.25rem; +.border-opacity-80 { + --tw-border-opacity: 0.8; } -.pt-10 { - padding-top: 2.5rem; +.border-opacity-90 { + --tw-border-opacity: 0.9; } -.pr-10 { - padding-right: 2.5rem; +.border-opacity-95 { + --tw-border-opacity: 0.95; } -.pb-10 { - padding-bottom: 2.5rem; +.border-opacity-100 { + --tw-border-opacity: 1; } -.pl-10 { - padding-left: 2.5rem; +.group:hover .group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } -.pt-11 { - padding-top: 2.75rem; +.group:hover .group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } -.pr-11 { - padding-right: 2.75rem; +.group:hover .group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } -.pb-11 { - padding-bottom: 2.75rem; +.group:hover .group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } -.pl-11 { - padding-left: 2.75rem; +.group:hover .group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } -.pt-12 { - padding-top: 3rem; +.group:hover .group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } -.pr-12 { - padding-right: 3rem; +.group:hover .group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } -.pb-12 { - padding-bottom: 3rem; +.group:hover .group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } -.pl-12 { - padding-left: 3rem; +.group:hover .group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } -.pt-14 { - padding-top: 3.5rem; +.group:hover .group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } -.pr-14 { - padding-right: 3.5rem; +.group:hover .group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } -.pb-14 { - padding-bottom: 3.5rem; +.group:hover .group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } -.pl-14 { - padding-left: 3.5rem; +.group:hover .group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } -.pt-16 { - padding-top: 4rem; +.group:hover .group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } -.pr-16 { - padding-right: 4rem; +.group:hover .group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } -.pb-16 { - padding-bottom: 4rem; +.focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } -.pl-16 { - padding-left: 4rem; +.focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } -.pt-20 { - padding-top: 5rem; +.focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } -.pr-20 { - padding-right: 5rem; +.focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } -.pb-20 { - padding-bottom: 5rem; +.focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } -.pl-20 { - padding-left: 5rem; +.focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } -.pt-24 { - padding-top: 6rem; +.focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } -.pr-24 { - padding-right: 6rem; +.focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } -.pb-24 { - padding-bottom: 6rem; +.focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } -.pl-24 { - padding-left: 6rem; +.focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } -.pt-28 { - padding-top: 7rem; +.focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } -.pr-28 { - padding-right: 7rem; +.focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } -.pb-28 { - padding-bottom: 7rem; +.focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } -.pl-28 { - padding-left: 7rem; +.focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } -.pt-32 { - padding-top: 8rem; +.focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } -.pr-32 { - padding-right: 8rem; +.hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } -.pb-32 { - padding-bottom: 8rem; +.hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } -.pl-32 { - padding-left: 8rem; +.hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } -.pt-36 { - padding-top: 9rem; +.hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } -.pr-36 { - padding-right: 9rem; +.hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } -.pb-36 { - padding-bottom: 9rem; +.hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } -.pl-36 { - padding-left: 9rem; +.hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } -.pt-40 { - padding-top: 10rem; +.hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } -.pr-40 { - padding-right: 10rem; +.hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } -.pb-40 { - padding-bottom: 10rem; +.hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } -.pl-40 { - padding-left: 10rem; +.hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } -.pt-44 { - padding-top: 11rem; +.hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } -.pr-44 { - padding-right: 11rem; +.hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } -.pb-44 { - padding-bottom: 11rem; +.hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } -.pl-44 { - padding-left: 11rem; +.hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } -.pt-48 { - padding-top: 12rem; +.focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } -.pr-48 { - padding-right: 12rem; +.focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } -.pb-48 { - padding-bottom: 12rem; +.focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } -.pl-48 { - padding-left: 12rem; +.focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } -.pt-52 { - padding-top: 13rem; +.focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } -.pr-52 { - padding-right: 13rem; +.focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } -.pb-52 { - padding-bottom: 13rem; +.focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } -.pl-52 { - padding-left: 13rem; +.focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } -.pt-56 { - padding-top: 14rem; +.focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } -.pr-56 { - padding-right: 14rem; +.focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } -.pb-56 { - padding-bottom: 14rem; +.focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } -.pl-56 { - padding-left: 14rem; +.focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } -.pt-60 { - padding-top: 15rem; +.focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } -.pr-60 { - padding-right: 15rem; +.focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } -.pb-60 { - padding-bottom: 15rem; +.focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } -.pl-60 { - padding-left: 15rem; +.bg-transparent { + background-color: transparent; } -.pt-64 { - padding-top: 16rem; +.bg-current { + background-color: currentColor; } -.pr-64 { - padding-right: 16rem; +.bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } -.pb-64 { - padding-bottom: 16rem; +.bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } -.pl-64 { - padding-left: 16rem; +.bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } -.pt-72 { - padding-top: 18rem; +.bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } -.pr-72 { - padding-right: 18rem; +.bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } -.pb-72 { - padding-bottom: 18rem; +.bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } -.pl-72 { - padding-left: 18rem; +.bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } -.pt-80 { - padding-top: 20rem; +.bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } -.pr-80 { - padding-right: 20rem; +.bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } -.pb-80 { - padding-bottom: 20rem; +.bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } -.pl-80 { - padding-left: 20rem; +.bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } -.pt-96 { - padding-top: 24rem; +.bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } -.pr-96 { - padding-right: 24rem; +.bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } -.pb-96 { - padding-bottom: 24rem; +.bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } -.pl-96 { - padding-left: 24rem; +.bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } -.pt-px { - padding-top: 1px; +.bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } -.pr-px { - padding-right: 1px; +.bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } -.pb-px { - padding-bottom: 1px; +.bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } -.pl-px { - padding-left: 1px; +.bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } -.pt-0\.5 { - padding-top: 0.125rem; +.bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } -.pr-0\.5 { - padding-right: 0.125rem; +.bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } -.pb-0\.5 { - padding-bottom: 0.125rem; +.bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } -.pl-0\.5 { - padding-left: 0.125rem; +.bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } -.pt-1\.5 { - padding-top: 0.375rem; +.bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } -.pr-1\.5 { - padding-right: 0.375rem; +.bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } -.pb-1\.5 { - padding-bottom: 0.375rem; +.bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } -.pl-1\.5 { - padding-left: 0.375rem; +.bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } -.pt-2\.5 { - padding-top: 0.625rem; +.bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } -.pr-2\.5 { - padding-right: 0.625rem; +.bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } -.pb-2\.5 { - padding-bottom: 0.625rem; +.bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } -.pl-2\.5 { - padding-left: 0.625rem; +.bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } -.pt-3\.5 { - padding-top: 0.875rem; +.bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } -.pr-3\.5 { - padding-right: 0.875rem; +.bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } -.pb-3\.5 { - padding-bottom: 0.875rem; +.bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } -.pl-3\.5 { - padding-left: 0.875rem; +.bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } -.placeholder-transparent::placeholder { - color: transparent; +.bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } -.placeholder-current::placeholder { - color: currentColor; +.bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } -.placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +.bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } -.placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +.bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } -.placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +.bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } -.placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +.bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } -.placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +.bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } -.placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +.bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } -.placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +.bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } -.placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +.bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } -.placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +.bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } -.placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +.bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } -.placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +.bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } -.placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +.bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } -.placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); +.bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } -.placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); +.bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } -.placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); +.bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } -.placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); +.bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } -.placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); +.bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } -.placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); +.bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } -.placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); +.bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } -.placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); +.bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } -.placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); +.bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } -.placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); +.bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } -.placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); +.bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } -.placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); +.bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } -.placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); +.bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } -.placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); +.bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } -.placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); +.bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } -.placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +.bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } -.placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); +.bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } -.placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); +.bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } -.placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); +.bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } -.placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); +.bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } -.placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); +.bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } -.placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); +.bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } -.placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); +.bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } -.placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); +.bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } -.placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); +.bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } -.placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); +.bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } -.placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); +.bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } -.placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); +.bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } -.placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); +.bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } -.placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); +.bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } -.placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); +.bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } -.placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); +.bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } -.placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); +.bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } -.placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-transparent { + background-color: transparent; } -.placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-current { + background-color: currentColor; } -.placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } -.placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } -.placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } -.placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } -.placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } -.placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } -.placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } -.placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } -.placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } -.placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } -.placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } -.placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } -.placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } -.placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } -.placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } -.placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } -.placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } -.placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } -.placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } -.placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } -.placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } -.placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } -.placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } -.placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } -.placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } -.placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } -.placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } -.placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } -.placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } -.placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } -.placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } -.placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } -.placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } -.placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } -.placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } -.focus\:placeholder-transparent:focus::placeholder { - color: transparent; +.group:hover .group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } -.focus\:placeholder-current:focus::placeholder { - color: currentColor; +.group:hover .group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } -.focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } -.focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } -.focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } -.focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } -.focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } -.focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } -.focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } -.focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } -.focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } -.focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } -.focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } -.focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } -.focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } -.focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } -.focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } -.focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } -.focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } -.focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } -.focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); +.focus-within\:bg-transparent:focus-within { + background-color: transparent; } -.focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); +.focus-within\:bg-current:focus-within { + background-color: currentColor; } -.focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +.focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); +.focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); +.focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); +.focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); +.focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } -.placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; +.focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } -.placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; +.focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } -.placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; +.focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } -.placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; +.focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } -.placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; +.focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } -.placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; +.focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } -.placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; +.focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } -.placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; +.focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } -.placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; +.focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } -.placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; +.focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } -.placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; +.focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } -.placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; +.focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } -.placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; +.focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } -.placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; +.focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } -.placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; +.focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; +.focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; +.focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; +.focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; +.focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; +.focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; +.focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; +.focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; +.focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; +.focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; +.focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; +.focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; +.focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; +.focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; +.focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; +.focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } -.pointer-events-none { - pointer-events: none; +.focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } -.pointer-events-auto { - pointer-events: auto; +.focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } -.static { - position: static; +.focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } -.fixed { - position: fixed; +.focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } -.absolute { - position: absolute; +.focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } -.relative { - position: relative; +.focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } -.sticky { - position: sticky; +.focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } -.inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; +.focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } -.inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; +.focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } -.inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; +.focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } -.inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; +.focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } -.inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; +.focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } -.inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; +.focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } -.inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; +.focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } -.inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; +.focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } -.inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; +.focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } -.inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; +.focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } -.inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; +.hover\:bg-transparent:hover { + background-color: transparent; } -.inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; +.hover\:bg-current:hover { + background-color: currentColor; } -.inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; +.hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } -.inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; +.hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } -.inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; +.hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } -.inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; +.hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } -.inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; +.hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } -.inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; +.hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } -.inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; +.hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } -.inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; +.hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } -.inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; +.hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } -.inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; +.hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } -.inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; +.hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } -.inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; +.hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } -.inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; +.hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } -.inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; +.hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } -.inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; +.hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } -.inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; +.hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } -.inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; +.hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } -.inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; +.hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } -.inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; +.hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } -.inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; +.hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } -.inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; +.hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } -.inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; +.hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } -.inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; +.hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } -.inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; +.hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } -.-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; +.hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } -.-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; +.hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } -.-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; +.hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } -.-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; +.hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } -.-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; +.hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } -.-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; +.hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } -.-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; +.hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } -.-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; +.hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } -.-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; +.hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } -.-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; +.hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } -.-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; +.hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } -.-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; +.hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } -.-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; +.hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } -.-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; +.hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } -.-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; +.hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } -.-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; +.hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } -.-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; +.hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } -.-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; +.hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } -.-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; +.hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } -.-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; +.hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } -.-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; +.hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } -.-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; +.hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } -.-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; +.hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } -.-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; +.hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } -.-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; +.hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } -.-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; +.hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } -.-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; +.hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } -.-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; +.hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } -.-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; +.hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } -.-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; +.hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } -.-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; +.hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } -.-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; +.hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } -.-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; +.hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } -.-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; +.hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } -.-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; +.hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } -.inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; +.hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } -.inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; +.hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } -.inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; +.hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } -.inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; +.hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } -.inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; +.hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } -.inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; +.hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } -.inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; +.hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } -.-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; +.hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } -.-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; +.hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } -.-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; +.hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } -.-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; +.hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } -.-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; +.hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } -.-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; +.hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } -.-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; +.hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } -.inset-y-0 { - top: 0px; - bottom: 0px; +.hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } -.inset-x-0 { - right: 0px; - left: 0px; +.hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } -.inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; +.hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } -.inset-x-1 { - right: 0.25rem; - left: 0.25rem; +.hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } -.inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; +.hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } -.inset-x-2 { - right: 0.5rem; - left: 0.5rem; +.hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } -.inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; +.hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } -.inset-x-3 { - right: 0.75rem; - left: 0.75rem; +.hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } -.inset-y-4 { - top: 1rem; - bottom: 1rem; +.hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } -.inset-x-4 { - right: 1rem; - left: 1rem; +.focus\:bg-transparent:focus { + background-color: transparent; } -.inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; +.focus\:bg-current:focus { + background-color: currentColor; } -.inset-x-5 { - right: 1.25rem; - left: 1.25rem; +.focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } -.inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; +.focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } -.inset-x-6 { - right: 1.5rem; - left: 1.5rem; +.focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } -.inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; +.focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } -.inset-x-7 { - right: 1.75rem; - left: 1.75rem; +.focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } -.inset-y-8 { - top: 2rem; - bottom: 2rem; +.focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } -.inset-x-8 { - right: 2rem; - left: 2rem; +.focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } -.inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; +.focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } -.inset-x-9 { - right: 2.25rem; - left: 2.25rem; +.focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } -.inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; +.focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } -.inset-x-10 { - right: 2.5rem; - left: 2.5rem; +.focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } -.inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; +.focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } -.inset-x-11 { - right: 2.75rem; - left: 2.75rem; +.focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } -.inset-y-12 { - top: 3rem; - bottom: 3rem; +.focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } -.inset-x-12 { - right: 3rem; - left: 3rem; +.focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } -.inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; +.focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } -.inset-x-14 { - right: 3.5rem; - left: 3.5rem; +.focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } -.inset-y-16 { - top: 4rem; - bottom: 4rem; +.focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } -.inset-x-16 { - right: 4rem; - left: 4rem; +.focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } -.inset-y-20 { - top: 5rem; - bottom: 5rem; +.focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } -.inset-x-20 { - right: 5rem; - left: 5rem; +.focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } -.inset-y-24 { - top: 6rem; - bottom: 6rem; +.focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } -.inset-x-24 { - right: 6rem; - left: 6rem; +.focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } -.inset-y-28 { - top: 7rem; - bottom: 7rem; +.focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } -.inset-x-28 { - right: 7rem; - left: 7rem; +.focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } -.inset-y-32 { - top: 8rem; - bottom: 8rem; +.focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } -.inset-x-32 { - right: 8rem; - left: 8rem; +.focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } -.inset-y-36 { - top: 9rem; - bottom: 9rem; +.focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } -.inset-x-36 { - right: 9rem; - left: 9rem; +.focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } -.inset-y-40 { - top: 10rem; - bottom: 10rem; +.focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } -.inset-x-40 { - right: 10rem; - left: 10rem; +.focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } -.inset-y-44 { - top: 11rem; - bottom: 11rem; +.focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } -.inset-x-44 { - right: 11rem; - left: 11rem; +.focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } -.inset-y-48 { - top: 12rem; - bottom: 12rem; +.focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } -.inset-x-48 { - right: 12rem; - left: 12rem; +.focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } -.inset-y-52 { - top: 13rem; - bottom: 13rem; +.focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } -.inset-x-52 { - right: 13rem; - left: 13rem; +.focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } -.inset-y-56 { - top: 14rem; - bottom: 14rem; +.focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } -.inset-x-56 { - right: 14rem; - left: 14rem; +.focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } -.inset-y-60 { - top: 15rem; - bottom: 15rem; +.focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } -.inset-x-60 { - right: 15rem; - left: 15rem; +.focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } -.inset-y-64 { - top: 16rem; - bottom: 16rem; +.focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } -.inset-x-64 { - right: 16rem; - left: 16rem; +.focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } -.inset-y-72 { - top: 18rem; - bottom: 18rem; +.focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } -.inset-x-72 { - right: 18rem; - left: 18rem; +.focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } -.inset-y-80 { - top: 20rem; - bottom: 20rem; +.focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } -.inset-x-80 { - right: 20rem; - left: 20rem; +.focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } -.inset-y-96 { - top: 24rem; - bottom: 24rem; +.focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } -.inset-x-96 { - right: 24rem; - left: 24rem; +.focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } -.inset-y-auto { - top: auto; - bottom: auto; +.focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } -.inset-x-auto { - right: auto; - left: auto; +.focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } -.inset-y-px { - top: 1px; - bottom: 1px; +.focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } -.inset-x-px { - right: 1px; - left: 1px; +.focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } -.inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; +.focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } -.inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; +.focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } -.inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; +.focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } -.inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; +.focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } -.inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; +.focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } -.inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; +.focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } -.inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; +.focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } -.inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; +.focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } -.-inset-y-0 { - top: 0px; - bottom: 0px; +.focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } -.-inset-x-0 { - right: 0px; - left: 0px; +.focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } -.-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; +.focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } -.-inset-x-1 { - right: -0.25rem; - left: -0.25rem; +.focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } -.-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; +.focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } -.-inset-x-2 { - right: -0.5rem; - left: -0.5rem; +.focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } -.-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; +.focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } -.-inset-x-3 { - right: -0.75rem; - left: -0.75rem; +.focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } -.-inset-y-4 { - top: -1rem; - bottom: -1rem; +.focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } -.-inset-x-4 { - right: -1rem; - left: -1rem; +.focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } -.-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; +.focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } -.-inset-x-5 { - right: -1.25rem; - left: -1.25rem; +.focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } -.-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; +.focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } -.-inset-x-6 { - right: -1.5rem; - left: -1.5rem; +.focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } -.-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; +.focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } -.-inset-x-7 { - right: -1.75rem; - left: -1.75rem; +.focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } -.-inset-y-8 { - top: -2rem; - bottom: -2rem; +.focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } -.-inset-x-8 { - right: -2rem; - left: -2rem; +.focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } -.-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; +.focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } -.-inset-x-9 { - right: -2.25rem; - left: -2.25rem; +.focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } -.-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; +.focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } -.-inset-x-10 { - right: -2.5rem; - left: -2.5rem; +.bg-opacity-0 { + --tw-bg-opacity: 0; } -.-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; +.bg-opacity-5 { + --tw-bg-opacity: 0.05; } -.-inset-x-11 { - right: -2.75rem; - left: -2.75rem; +.bg-opacity-10 { + --tw-bg-opacity: 0.1; } -.-inset-y-12 { - top: -3rem; - bottom: -3rem; +.bg-opacity-20 { + --tw-bg-opacity: 0.2; } -.-inset-x-12 { - right: -3rem; - left: -3rem; +.bg-opacity-25 { + --tw-bg-opacity: 0.25; } -.-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; +.bg-opacity-30 { + --tw-bg-opacity: 0.3; } -.-inset-x-14 { - right: -3.5rem; - left: -3.5rem; +.bg-opacity-40 { + --tw-bg-opacity: 0.4; } -.-inset-y-16 { - top: -4rem; - bottom: -4rem; +.bg-opacity-50 { + --tw-bg-opacity: 0.5; } -.-inset-x-16 { - right: -4rem; - left: -4rem; +.bg-opacity-60 { + --tw-bg-opacity: 0.6; } -.-inset-y-20 { - top: -5rem; - bottom: -5rem; +.bg-opacity-70 { + --tw-bg-opacity: 0.7; } -.-inset-x-20 { - right: -5rem; - left: -5rem; +.bg-opacity-75 { + --tw-bg-opacity: 0.75; } -.-inset-y-24 { - top: -6rem; - bottom: -6rem; +.bg-opacity-80 { + --tw-bg-opacity: 0.8; } -.-inset-x-24 { - right: -6rem; - left: -6rem; +.bg-opacity-90 { + --tw-bg-opacity: 0.9; } -.-inset-y-28 { - top: -7rem; - bottom: -7rem; +.bg-opacity-95 { + --tw-bg-opacity: 0.95; } -.-inset-x-28 { - right: -7rem; - left: -7rem; +.bg-opacity-100 { + --tw-bg-opacity: 1; } -.-inset-y-32 { - top: -8rem; - bottom: -8rem; +.group:hover .group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } -.-inset-x-32 { - right: -8rem; - left: -8rem; +.group:hover .group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } -.-inset-y-36 { - top: -9rem; - bottom: -9rem; +.group:hover .group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } -.-inset-x-36 { - right: -9rem; - left: -9rem; +.group:hover .group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } -.-inset-y-40 { - top: -10rem; - bottom: -10rem; +.group:hover .group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } -.-inset-x-40 { - right: -10rem; - left: -10rem; +.group:hover .group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } -.-inset-y-44 { - top: -11rem; - bottom: -11rem; +.group:hover .group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } -.-inset-x-44 { - right: -11rem; - left: -11rem; +.group:hover .group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } -.-inset-y-48 { - top: -12rem; - bottom: -12rem; +.group:hover .group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } -.-inset-x-48 { - right: -12rem; - left: -12rem; +.group:hover .group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } -.-inset-y-52 { - top: -13rem; - bottom: -13rem; +.group:hover .group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } -.-inset-x-52 { - right: -13rem; - left: -13rem; +.group:hover .group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } -.-inset-y-56 { - top: -14rem; - bottom: -14rem; +.group:hover .group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } -.-inset-x-56 { - right: -14rem; - left: -14rem; +.group:hover .group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } -.-inset-y-60 { - top: -15rem; - bottom: -15rem; +.group:hover .group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } -.-inset-x-60 { - right: -15rem; - left: -15rem; +.focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } -.-inset-y-64 { - top: -16rem; - bottom: -16rem; +.focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } -.-inset-x-64 { - right: -16rem; - left: -16rem; +.focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } -.-inset-y-72 { - top: -18rem; - bottom: -18rem; +.focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } -.-inset-x-72 { - right: -18rem; - left: -18rem; +.focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } -.-inset-y-80 { - top: -20rem; - bottom: -20rem; +.focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } -.-inset-x-80 { - right: -20rem; - left: -20rem; +.focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } -.-inset-y-96 { - top: -24rem; - bottom: -24rem; +.focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } -.-inset-x-96 { - right: -24rem; - left: -24rem; +.focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } -.-inset-y-px { - top: -1px; - bottom: -1px; +.focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } -.-inset-x-px { - right: -1px; - left: -1px; +.focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } -.-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; +.focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } -.-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; +.focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } -.-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; +.focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } -.-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; +.focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } -.-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; +.hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } -.-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; +.hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } -.-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; +.hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } -.-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; +.hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } -.inset-y-1\/2 { - top: 50%; - bottom: 50%; +.hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } -.inset-x-1\/2 { - right: 50%; - left: 50%; +.hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } -.inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; +.hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } -.inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; +.hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } -.inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; +.hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } -.inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; +.hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } -.inset-y-1\/4 { - top: 25%; - bottom: 25%; +.hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } -.inset-x-1\/4 { - right: 25%; - left: 25%; +.hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } -.inset-y-2\/4 { - top: 50%; - bottom: 50%; +.hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } -.inset-x-2\/4 { - right: 50%; - left: 50%; +.hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } -.inset-y-3\/4 { - top: 75%; - bottom: 75%; +.hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } -.inset-x-3\/4 { - right: 75%; - left: 75%; +.focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } -.inset-y-full { - top: 100%; - bottom: 100%; +.focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } -.inset-x-full { - right: 100%; - left: 100%; +.focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } -.-inset-y-1\/2 { - top: -50%; - bottom: -50%; +.focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } -.-inset-x-1\/2 { - right: -50%; - left: -50%; +.focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } -.-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; +.focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } -.-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; +.focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } -.-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; +.focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } -.-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; +.focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } -.-inset-y-1\/4 { - top: -25%; - bottom: -25%; +.focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } -.-inset-x-1\/4 { - right: -25%; - left: -25%; +.focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } -.-inset-y-2\/4 { - top: -50%; - bottom: -50%; +.focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } -.-inset-x-2\/4 { - right: -50%; - left: -50%; +.focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } -.-inset-y-3\/4 { - top: -75%; - bottom: -75%; +.focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } -.-inset-x-3\/4 { - right: -75%; - left: -75%; +.focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } -.-inset-y-full { - top: -100%; - bottom: -100%; +.bg-none { + background-image: none; } -.-inset-x-full { - right: -100%; - left: -100%; +.bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } -.top-0 { - top: 0px; +.bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } -.right-0 { - right: 0px; +.bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } -.bottom-0 { - bottom: 0px; +.bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } -.left-0 { - left: 0px; +.bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } -.top-1 { - top: 0.25rem; +.bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } -.right-1 { - right: 0.25rem; +.bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } -.bottom-1 { - bottom: 0.25rem; +.bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } -.left-1 { - left: 0.25rem; +.from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.top-2 { - top: 0.5rem; +.from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.right-2 { - right: 0.5rem; +.from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.bottom-2 { - bottom: 0.5rem; +.from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.left-2 { - left: 0.5rem; +.from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.top-3 { - top: 0.75rem; +.from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.right-3 { - right: 0.75rem; +.from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.bottom-3 { - bottom: 0.75rem; +.from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.left-3 { - left: 0.75rem; +.from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.top-4 { - top: 1rem; +.from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.right-4 { - right: 1rem; +.from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.bottom-4 { - bottom: 1rem; +.from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.left-4 { - left: 1rem; +.from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.top-5 { - top: 1.25rem; +.from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.right-5 { - right: 1.25rem; +.from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.bottom-5 { - bottom: 1.25rem; +.from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.left-5 { - left: 1.25rem; +.from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.top-6 { - top: 1.5rem; +.from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.right-6 { - right: 1.5rem; +.from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.bottom-6 { - bottom: 1.5rem; +.from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.left-6 { - left: 1.5rem; +.from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.top-7 { - top: 1.75rem; +.from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.right-7 { - right: 1.75rem; +.from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.bottom-7 { - bottom: 1.75rem; +.from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.left-7 { - left: 1.75rem; +.from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.top-8 { - top: 2rem; +.from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.right-8 { - right: 2rem; +.from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.bottom-8 { - bottom: 2rem; +.from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.left-8 { - left: 2rem; +.from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.top-9 { - top: 2.25rem; +.from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.right-9 { - right: 2.25rem; +.from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.bottom-9 { - bottom: 2.25rem; +.from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.left-9 { - left: 2.25rem; +.from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.top-10 { - top: 2.5rem; +.from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.right-10 { - right: 2.5rem; +.from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.bottom-10 { - bottom: 2.5rem; +.from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.left-10 { - left: 2.5rem; +.from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.top-11 { - top: 2.75rem; +.from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.right-11 { - right: 2.75rem; +.from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.bottom-11 { - bottom: 2.75rem; +.from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.left-11 { - left: 2.75rem; +.from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.top-12 { - top: 3rem; +.from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.right-12 { - right: 3rem; +.from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.bottom-12 { - bottom: 3rem; +.from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.left-12 { - left: 3rem; +.from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.top-14 { - top: 3.5rem; +.from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.right-14 { - right: 3.5rem; +.from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.bottom-14 { - bottom: 3.5rem; +.from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.left-14 { - left: 3.5rem; +.from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.top-16 { - top: 4rem; +.from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.right-16 { - right: 4rem; +.from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.bottom-16 { - bottom: 4rem; +.from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.left-16 { - left: 4rem; +.from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.top-20 { - top: 5rem; +.from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.right-20 { - right: 5rem; +.from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.bottom-20 { - bottom: 5rem; +.from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.left-20 { - left: 5rem; +.from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.top-24 { - top: 6rem; +.from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.right-24 { - right: 6rem; +.from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.bottom-24 { - bottom: 6rem; +.from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.left-24 { - left: 6rem; +.from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.top-28 { - top: 7rem; +.from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.right-28 { - right: 7rem; +.from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.bottom-28 { - bottom: 7rem; +.from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.left-28 { - left: 7rem; +.from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.top-32 { - top: 8rem; +.from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.right-32 { - right: 8rem; +.from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.bottom-32 { - bottom: 8rem; +.from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.left-32 { - left: 8rem; +.from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.top-36 { - top: 9rem; +.from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.right-36 { - right: 9rem; +.from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.bottom-36 { - bottom: 9rem; +.from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.left-36 { - left: 9rem; +.from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.top-40 { - top: 10rem; +.from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.right-40 { - right: 10rem; +.from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.bottom-40 { - bottom: 10rem; +.from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.left-40 { - left: 10rem; +.from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.top-44 { - top: 11rem; +.from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.right-44 { - right: 11rem; +.from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.bottom-44 { - bottom: 11rem; +.from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.left-44 { - left: 11rem; +.from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.top-48 { - top: 12rem; +.from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.right-48 { - right: 12rem; +.from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.bottom-48 { - bottom: 12rem; +.from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.left-48 { - left: 12rem; +.via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.top-52 { - top: 13rem; +.via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.right-52 { - right: 13rem; +.via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.bottom-52 { - bottom: 13rem; +.via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.left-52 { - left: 13rem; +.via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.top-56 { - top: 14rem; +.via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.right-56 { - right: 14rem; +.via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.bottom-56 { - bottom: 14rem; +.via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.left-56 { - left: 14rem; +.via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.top-60 { - top: 15rem; +.via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.right-60 { - right: 15rem; +.via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.bottom-60 { - bottom: 15rem; +.via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.left-60 { - left: 15rem; +.via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.top-64 { - top: 16rem; +.via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.right-64 { - right: 16rem; +.via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.bottom-64 { - bottom: 16rem; +.via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.left-64 { - left: 16rem; +.via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.top-72 { - top: 18rem; +.via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.right-72 { - right: 18rem; +.via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.bottom-72 { - bottom: 18rem; +.via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.left-72 { - left: 18rem; +.via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.top-80 { - top: 20rem; +.via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.right-80 { - right: 20rem; +.via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.bottom-80 { - bottom: 20rem; +.via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.left-80 { - left: 20rem; +.via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.top-96 { - top: 24rem; +.via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.right-96 { - right: 24rem; +.via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.bottom-96 { - bottom: 24rem; +.via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.left-96 { - left: 24rem; +.via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.top-auto { - top: auto; +.via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.right-auto { - right: auto; +.via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.bottom-auto { - bottom: auto; +.via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.left-auto { - left: auto; +.via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.top-px { - top: 1px; +.via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.right-px { - right: 1px; +.via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.bottom-px { - bottom: 1px; +.via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.left-px { - left: 1px; +.via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.top-0\.5 { - top: 0.125rem; +.via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.right-0\.5 { - right: 0.125rem; +.via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.bottom-0\.5 { - bottom: 0.125rem; +.via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.left-0\.5 { - left: 0.125rem; +.via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.top-1\.5 { - top: 0.375rem; +.via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.right-1\.5 { - right: 0.375rem; +.via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.bottom-1\.5 { - bottom: 0.375rem; +.via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.left-1\.5 { - left: 0.375rem; +.via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.top-2\.5 { - top: 0.625rem; +.via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.right-2\.5 { - right: 0.625rem; +.via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.bottom-2\.5 { - bottom: 0.625rem; +.via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.left-2\.5 { - left: 0.625rem; +.via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.top-3\.5 { - top: 0.875rem; +.via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.right-3\.5 { - right: 0.875rem; +.via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.bottom-3\.5 { - bottom: 0.875rem; +.via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.left-3\.5 { - left: 0.875rem; +.via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.-top-0 { - top: 0px; +.via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.-right-0 { - right: 0px; +.via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.-bottom-0 { - bottom: 0px; +.via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.-left-0 { - left: 0px; +.via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.-top-1 { - top: -0.25rem; +.via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.-right-1 { - right: -0.25rem; +.via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.-bottom-1 { - bottom: -0.25rem; +.via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.-left-1 { - left: -0.25rem; +.via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.-top-2 { - top: -0.5rem; +.via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.-right-2 { - right: -0.5rem; +.via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.-bottom-2 { - bottom: -0.5rem; +.via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.-left-2 { - left: -0.5rem; +.via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.-top-3 { - top: -0.75rem; +.via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.-right-3 { - right: -0.75rem; +.via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.-bottom-3 { - bottom: -0.75rem; +.via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.-left-3 { - left: -0.75rem; +.via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.-top-4 { - top: -1rem; +.via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.-right-4 { - right: -1rem; +.via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.-bottom-4 { - bottom: -1rem; +.via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.-left-4 { - left: -1rem; +.via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.-top-5 { - top: -1.25rem; +.via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.-right-5 { - right: -1.25rem; +.via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.-bottom-5 { - bottom: -1.25rem; +.via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.-left-5 { - left: -1.25rem; +.via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.-top-6 { - top: -1.5rem; +.via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.-right-6 { - right: -1.5rem; +.via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.-bottom-6 { - bottom: -1.5rem; +.via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.-left-6 { - left: -1.5rem; +.via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.-top-7 { - top: -1.75rem; +.via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.-right-7 { - right: -1.75rem; +.via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.-bottom-7 { - bottom: -1.75rem; +.via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.-left-7 { - left: -1.75rem; +.to-transparent { + --tw-gradient-to: transparent; } -.-top-8 { - top: -2rem; +.to-current { + --tw-gradient-to: currentColor; } -.-right-8 { - right: -2rem; +.to-black { + --tw-gradient-to: #000; } -.-bottom-8 { - bottom: -2rem; +.to-white { + --tw-gradient-to: #fff; } -.-left-8 { - left: -2rem; +.to-gray-50 { + --tw-gradient-to: #f9fafb; } -.-top-9 { - top: -2.25rem; +.to-gray-100 { + --tw-gradient-to: #f3f4f6; } -.-right-9 { - right: -2.25rem; +.to-gray-200 { + --tw-gradient-to: #e5e7eb; } -.-bottom-9 { - bottom: -2.25rem; +.to-gray-300 { + --tw-gradient-to: #d1d5db; } -.-left-9 { - left: -2.25rem; +.to-gray-400 { + --tw-gradient-to: #9ca3af; } -.-top-10 { - top: -2.5rem; +.to-gray-500 { + --tw-gradient-to: #6b7280; } -.-right-10 { - right: -2.5rem; +.to-gray-600 { + --tw-gradient-to: #4b5563; } -.-bottom-10 { - bottom: -2.5rem; +.to-gray-700 { + --tw-gradient-to: #374151; } -.-left-10 { - left: -2.5rem; +.to-gray-800 { + --tw-gradient-to: #1f2937; } -.-top-11 { - top: -2.75rem; +.to-gray-900 { + --tw-gradient-to: #111827; } -.-right-11 { - right: -2.75rem; +.to-red-50 { + --tw-gradient-to: #fef2f2; } -.-bottom-11 { - bottom: -2.75rem; +.to-red-100 { + --tw-gradient-to: #fee2e2; } -.-left-11 { - left: -2.75rem; +.to-red-200 { + --tw-gradient-to: #fecaca; } -.-top-12 { - top: -3rem; +.to-red-300 { + --tw-gradient-to: #fca5a5; } -.-right-12 { - right: -3rem; +.to-red-400 { + --tw-gradient-to: #f87171; } -.-bottom-12 { - bottom: -3rem; +.to-red-500 { + --tw-gradient-to: #ef4444; } -.-left-12 { - left: -3rem; +.to-red-600 { + --tw-gradient-to: #dc2626; } -.-top-14 { - top: -3.5rem; +.to-red-700 { + --tw-gradient-to: #b91c1c; } -.-right-14 { - right: -3.5rem; +.to-red-800 { + --tw-gradient-to: #991b1b; } -.-bottom-14 { - bottom: -3.5rem; +.to-red-900 { + --tw-gradient-to: #7f1d1d; } -.-left-14 { - left: -3.5rem; +.to-yellow-50 { + --tw-gradient-to: #fffbeb; } -.-top-16 { - top: -4rem; +.to-yellow-100 { + --tw-gradient-to: #fef3c7; } -.-right-16 { - right: -4rem; +.to-yellow-200 { + --tw-gradient-to: #fde68a; } -.-bottom-16 { - bottom: -4rem; +.to-yellow-300 { + --tw-gradient-to: #fcd34d; } -.-left-16 { - left: -4rem; +.to-yellow-400 { + --tw-gradient-to: #fbbf24; } -.-top-20 { - top: -5rem; +.to-yellow-500 { + --tw-gradient-to: #f59e0b; } -.-right-20 { - right: -5rem; +.to-yellow-600 { + --tw-gradient-to: #d97706; } -.-bottom-20 { - bottom: -5rem; +.to-yellow-700 { + --tw-gradient-to: #b45309; } -.-left-20 { - left: -5rem; +.to-yellow-800 { + --tw-gradient-to: #92400e; } -.-top-24 { - top: -6rem; +.to-yellow-900 { + --tw-gradient-to: #78350f; } -.-right-24 { - right: -6rem; +.to-green-50 { + --tw-gradient-to: #ecfdf5; } -.-bottom-24 { - bottom: -6rem; +.to-green-100 { + --tw-gradient-to: #d1fae5; } -.-left-24 { - left: -6rem; +.to-green-200 { + --tw-gradient-to: #a7f3d0; } -.-top-28 { - top: -7rem; +.to-green-300 { + --tw-gradient-to: #6ee7b7; } -.-right-28 { - right: -7rem; +.to-green-400 { + --tw-gradient-to: #34d399; } -.-bottom-28 { - bottom: -7rem; +.to-green-500 { + --tw-gradient-to: #10b981; } -.-left-28 { - left: -7rem; +.to-green-600 { + --tw-gradient-to: #059669; } -.-top-32 { - top: -8rem; +.to-green-700 { + --tw-gradient-to: #047857; } -.-right-32 { - right: -8rem; +.to-green-800 { + --tw-gradient-to: #065f46; } -.-bottom-32 { - bottom: -8rem; +.to-green-900 { + --tw-gradient-to: #064e3b; } -.-left-32 { - left: -8rem; +.to-blue-50 { + --tw-gradient-to: #eff6ff; } -.-top-36 { - top: -9rem; +.to-blue-100 { + --tw-gradient-to: #dbeafe; } -.-right-36 { - right: -9rem; +.to-blue-200 { + --tw-gradient-to: #bfdbfe; } -.-bottom-36 { - bottom: -9rem; +.to-blue-300 { + --tw-gradient-to: #93c5fd; } -.-left-36 { - left: -9rem; +.to-blue-400 { + --tw-gradient-to: #60a5fa; } -.-top-40 { - top: -10rem; +.to-blue-500 { + --tw-gradient-to: #3b82f6; } -.-right-40 { - right: -10rem; +.to-blue-600 { + --tw-gradient-to: #2563eb; } -.-bottom-40 { - bottom: -10rem; +.to-blue-700 { + --tw-gradient-to: #1d4ed8; } -.-left-40 { - left: -10rem; +.to-blue-800 { + --tw-gradient-to: #1e40af; } -.-top-44 { - top: -11rem; +.to-blue-900 { + --tw-gradient-to: #1e3a8a; } -.-right-44 { - right: -11rem; +.to-indigo-50 { + --tw-gradient-to: #eef2ff; } -.-bottom-44 { - bottom: -11rem; +.to-indigo-100 { + --tw-gradient-to: #e0e7ff; } -.-left-44 { - left: -11rem; +.to-indigo-200 { + --tw-gradient-to: #c7d2fe; } -.-top-48 { - top: -12rem; +.to-indigo-300 { + --tw-gradient-to: #a5b4fc; } -.-right-48 { - right: -12rem; +.to-indigo-400 { + --tw-gradient-to: #818cf8; } -.-bottom-48 { - bottom: -12rem; +.to-indigo-500 { + --tw-gradient-to: #6366f1; } -.-left-48 { - left: -12rem; +.to-indigo-600 { + --tw-gradient-to: #4f46e5; } -.-top-52 { - top: -13rem; +.to-indigo-700 { + --tw-gradient-to: #4338ca; } -.-right-52 { - right: -13rem; +.to-indigo-800 { + --tw-gradient-to: #3730a3; } -.-bottom-52 { - bottom: -13rem; +.to-indigo-900 { + --tw-gradient-to: #312e81; } -.-left-52 { - left: -13rem; +.to-purple-50 { + --tw-gradient-to: #f5f3ff; } -.-top-56 { - top: -14rem; +.to-purple-100 { + --tw-gradient-to: #ede9fe; } -.-right-56 { - right: -14rem; +.to-purple-200 { + --tw-gradient-to: #ddd6fe; } -.-bottom-56 { - bottom: -14rem; +.to-purple-300 { + --tw-gradient-to: #c4b5fd; } -.-left-56 { - left: -14rem; +.to-purple-400 { + --tw-gradient-to: #a78bfa; } -.-top-60 { - top: -15rem; +.to-purple-500 { + --tw-gradient-to: #8b5cf6; } -.-right-60 { - right: -15rem; +.to-purple-600 { + --tw-gradient-to: #7c3aed; } -.-bottom-60 { - bottom: -15rem; +.to-purple-700 { + --tw-gradient-to: #6d28d9; } -.-left-60 { - left: -15rem; +.to-purple-800 { + --tw-gradient-to: #5b21b6; } -.-top-64 { - top: -16rem; +.to-purple-900 { + --tw-gradient-to: #4c1d95; } -.-right-64 { - right: -16rem; +.to-pink-50 { + --tw-gradient-to: #fdf2f8; } -.-bottom-64 { - bottom: -16rem; +.to-pink-100 { + --tw-gradient-to: #fce7f3; } -.-left-64 { - left: -16rem; +.to-pink-200 { + --tw-gradient-to: #fbcfe8; } -.-top-72 { - top: -18rem; +.to-pink-300 { + --tw-gradient-to: #f9a8d4; } -.-right-72 { - right: -18rem; +.to-pink-400 { + --tw-gradient-to: #f472b6; } -.-bottom-72 { - bottom: -18rem; +.to-pink-500 { + --tw-gradient-to: #ec4899; } -.-left-72 { - left: -18rem; +.to-pink-600 { + --tw-gradient-to: #db2777; } -.-top-80 { - top: -20rem; +.to-pink-700 { + --tw-gradient-to: #be185d; } -.-right-80 { - right: -20rem; +.to-pink-800 { + --tw-gradient-to: #9d174d; } -.-bottom-80 { - bottom: -20rem; +.to-pink-900 { + --tw-gradient-to: #831843; } -.-left-80 { - left: -20rem; +.hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.-top-96 { - top: -24rem; +.hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.-right-96 { - right: -24rem; +.hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.-bottom-96 { - bottom: -24rem; +.hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.-left-96 { - left: -24rem; +.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)); } -.-top-px { - top: -1px; +.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)); } -.-right-px { - right: -1px; +.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)); } -.-bottom-px { - bottom: -1px; +.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)); } -.-left-px { - left: -1px; +.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)); } -.-top-0\.5 { - top: -0.125rem; +.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)); } -.-right-0\.5 { - right: -0.125rem; +.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)); } -.-bottom-0\.5 { - bottom: -0.125rem; +.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)); } -.-left-0\.5 { - left: -0.125rem; +.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)); } -.-top-1\.5 { - top: -0.375rem; +.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)); } -.-right-1\.5 { - right: -0.375rem; +.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)); } -.-bottom-1\.5 { - bottom: -0.375rem; +.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)); } -.-left-1\.5 { - left: -0.375rem; +.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)); } -.-top-2\.5 { - top: -0.625rem; +.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)); } -.-right-2\.5 { - right: -0.625rem; +.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)); } -.-bottom-2\.5 { - bottom: -0.625rem; +.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)); } -.-left-2\.5 { - left: -0.625rem; +.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)); } -.-top-3\.5 { - top: -0.875rem; +.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)); } -.-right-3\.5 { - right: -0.875rem; +.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)); } -.-bottom-3\.5 { - bottom: -0.875rem; +.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)); } -.-left-3\.5 { - left: -0.875rem; +.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)); } -.top-1\/2 { - top: 50%; +.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)); } -.right-1\/2 { - right: 50%; +.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)); } -.bottom-1\/2 { - bottom: 50%; +.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)); } -.left-1\/2 { - left: 50%; +.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)); } -.top-1\/3 { - top: 33.333333%; +.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)); } -.right-1\/3 { - right: 33.333333%; +.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)); } -.bottom-1\/3 { - bottom: 33.333333%; +.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)); } -.left-1\/3 { - left: 33.333333%; +.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)); } -.top-2\/3 { - top: 66.666667%; +.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)); } -.right-2\/3 { - right: 66.666667%; +.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)); } -.bottom-2\/3 { - bottom: 66.666667%; +.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)); } -.left-2\/3 { - left: 66.666667%; +.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)); } -.top-1\/4 { - top: 25%; +.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)); } -.right-1\/4 { - right: 25%; +.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)); } -.bottom-1\/4 { - bottom: 25%; +.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)); } -.left-1\/4 { - left: 25%; +.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)); } -.top-2\/4 { - top: 50%; +.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)); } -.right-2\/4 { - right: 50%; +.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)); } -.bottom-2\/4 { - bottom: 50%; +.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)); } -.left-2\/4 { - left: 50%; +.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)); } -.top-3\/4 { - top: 75%; +.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)); } -.right-3\/4 { - right: 75%; +.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)); } -.bottom-3\/4 { - bottom: 75%; +.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)); } -.left-3\/4 { - left: 75%; +.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)); } -.top-full { - top: 100%; +.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)); } -.right-full { - right: 100%; +.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)); } -.bottom-full { - bottom: 100%; +.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)); } -.left-full { - left: 100%; +.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)); } -.-top-1\/2 { - top: -50%; +.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)); } -.-right-1\/2 { - right: -50%; +.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)); } -.-bottom-1\/2 { - bottom: -50%; +.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)); } -.-left-1\/2 { - left: -50%; +.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)); } -.-top-1\/3 { - top: -33.333333%; +.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)); } -.-right-1\/3 { - right: -33.333333%; +.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)); } -.-bottom-1\/3 { - bottom: -33.333333%; +.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)); } -.-left-1\/3 { - left: -33.333333%; +.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)); } -.-top-2\/3 { - top: -66.666667%; +.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)); } -.-right-2\/3 { - right: -66.666667%; +.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)); } -.-bottom-2\/3 { - bottom: -66.666667%; +.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)); } -.-left-2\/3 { - left: -66.666667%; +.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)); } -.-top-1\/4 { - top: -25%; +.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)); } -.-right-1\/4 { - right: -25%; +.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)); } -.-bottom-1\/4 { - bottom: -25%; +.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)); } -.-left-1\/4 { - left: -25%; +.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)); } -.-top-2\/4 { - top: -50%; +.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)); } -.-right-2\/4 { - right: -50%; +.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)); } -.-bottom-2\/4 { - bottom: -50%; +.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)); } -.-left-2\/4 { - left: -50%; +.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)); } -.-top-3\/4 { - top: -75%; +.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)); } -.-right-3\/4 { - right: -75%; +.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)); } -.-bottom-3\/4 { - bottom: -75%; +.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)); } -.-left-3\/4 { - left: -75%; +.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)); } -.-top-full { - top: -100%; +.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)); } -.-right-full { - right: -100%; +.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)); } -.-bottom-full { - bottom: -100%; +.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)); } -.-left-full { - left: -100%; +.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)); } -.resize-none { - resize: none; +.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)); } -.resize-y { - resize: vertical; +.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)); } -.resize-x { - resize: horizontal; +.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)); } -.resize { - resize: both; +.hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -* { - --tw-shadow: 0 0 #0000; +.hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.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); +.hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.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); +.hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.group:hover .group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.group:hover .group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.group:hover .group-hover\: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); +.hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.group:hover .group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.group:hover .group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.group:hover .group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.group:hover .group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.group:hover .group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.focus-within\:shadow-md:focus-within { - --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); +.hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.hover\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.hover\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.hover\:shadow-md:hover { - --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); +.hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.hover\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.hover\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.hover\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.hover\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.hover\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.focus\:shadow-md:focus { - --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); +.hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -* { - --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgba(59, 130, 246, 0.5); - --tw-ring-offset-shadow: 0 0 #0000; - --tw-ring-shadow: 0 0 #0000; +.hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.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); +.hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.ring-inset { - --tw-ring-inset: inset; +.hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; +.hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.focus\:ring-inset:focus { - --tw-ring-inset: inset; +.hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.ring-offset-transparent { - --tw-ring-offset-color: transparent; +.hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.ring-offset-current { - --tw-ring-offset-color: currentColor; +.hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.ring-offset-black { - --tw-ring-offset-color: #000; +.hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.ring-offset-white { - --tw-ring-offset-color: #fff; +.hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; +.hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; +.hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; +.hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; +.hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; +.hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; +.hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; +.hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.ring-offset-gray-700 { - --tw-ring-offset-color: #374151; +.hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; +.hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.ring-offset-gray-900 { - --tw-ring-offset-color: #111827; +.hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; +.hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; +.hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; +.hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; +.hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.ring-offset-red-400 { - --tw-ring-offset-color: #f87171; +.hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; +.hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; +.hover\:to-transparent:hover { + --tw-gradient-to: transparent; } -.ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; +.hover\:to-current:hover { + --tw-gradient-to: currentColor; } -.ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; +.hover\:to-black:hover { + --tw-gradient-to: #000; } -.ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; +.hover\:to-white:hover { + --tw-gradient-to: #fff; } -.ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; +.hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } -.ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; +.hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } -.ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; +.hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } -.ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; +.hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } -.ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; +.hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } -.ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; +.hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } -.ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; +.hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } -.ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; +.hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } -.ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; +.hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } -.ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; +.hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } -.ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; +.hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } -.ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; +.hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } -.ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; +.hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } -.ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; +.hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } -.ring-offset-green-400 { - --tw-ring-offset-color: #34d399; +.hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } -.ring-offset-green-500 { - --tw-ring-offset-color: #10b981; +.hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } -.ring-offset-green-600 { - --tw-ring-offset-color: #059669; +.hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } -.ring-offset-green-700 { - --tw-ring-offset-color: #047857; +.hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } -.ring-offset-green-800 { - --tw-ring-offset-color: #065f46; +.hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } -.ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; +.hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } -.ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; +.hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } -.ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; +.hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } -.ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; +.hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } -.ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; +.hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } -.ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; +.hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } -.ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; +.hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } -.ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; +.hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } -.ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; +.hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } -.ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; +.hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } -.ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; +.hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } -.ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; +.hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } -.ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; +.hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } -.ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; +.hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } -.ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; +.hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } -.ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; +.hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } -.ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; +.hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } -.ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; +.hover\:to-green-600:hover { + --tw-gradient-to: #059669; } -.ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; +.hover\:to-green-700:hover { + --tw-gradient-to: #047857; } -.ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; +.hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } -.ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; +.hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } -.ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; +.hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } -.ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; +.hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } -.ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; +.hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } -.ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; +.hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } -.ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; +.hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } -.ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; +.hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } -.ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; +.hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } -.ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; +.hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } -.ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; +.hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } -.ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; +.hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } -.ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; +.hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } -.ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; +.hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } -.ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; +.hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } -.ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; +.hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } -.ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; +.hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } -.ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; -} +.hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; +} -.ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; +.hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } -.ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; +.hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } -.ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; +.hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } -.ring-offset-pink-900 { - --tw-ring-offset-color: #831843; +.hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } -.focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; +.hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } -.focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; +.hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } -.focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; +.hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } -.focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; +.hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } -.focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; +.hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } -.focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; +.hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } -.focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; +.hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } -.focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; +.hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } -.focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; +.hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } -.focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; +.hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } -.focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; +.hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } -.focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; +.hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } -.focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; +.hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } -.focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; +.hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } -.focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; +.hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } -.focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; +.hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } -.focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; +.hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } -.focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; +.hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } -.focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; +.hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } -.focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; +.hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } -.focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; +.focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; +.focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; +.focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; +.focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; +.focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; +.focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; +.focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; +.focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; +.focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; +.focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; +.focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; +.focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; +.focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; +.focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; +.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)); } -.focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; +.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)); } -.focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; +.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)); } -.focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; +.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)); } -.focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; +.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)); } -.focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; +.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)); } -.focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; +.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)); } -.focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; +.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)); } -.focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; +.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)); } -.focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; +.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)); } -.focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; +.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)); } -.focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; +.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)); } -.focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; +.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)); } -.focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; +.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)); } -.focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; +.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)); } -.focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; +.focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; +.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)); } -.focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; +.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)); } -.focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; +.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)); } -.focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; +.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)); } -.focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; +.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)); } -.focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; +.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)); } -.focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; +.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)); } -.focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; +.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)); } -.focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; +.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)); } -.focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; +.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)); } -.focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; +.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)); } -.focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; +.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)); } -.focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; +.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)); } -.focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; +.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)); } -.focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; +.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)); } -.focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; +.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)); } -.focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; +.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)); } -.focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; +.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)); } -.focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; +.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)); } -.focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; +.focus\:from-blue-500:focus { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; +.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)); } -.focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; +.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)); } -.focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; +.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)); } -.focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; +.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)); } -.focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; +.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)); } -.focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; +.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)); } -.focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; +.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)); } -.focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; +.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)); } -.focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; +.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)); } -.focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; +.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)); } -.focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; +.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)); } -.focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; +.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)); } -.focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; +.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)); } -.focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; +.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)); } -.focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; +.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)); } -.focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; +.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)); } -.focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; +.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)); } -.focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; +.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)); } -.focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; +.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)); } -.focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; +.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)); } -.focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; +.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)); } -.focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; +.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)); } -.focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; +.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)); } -.focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; +.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)); } -.focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; +.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)); } -.focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; +.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)); } -.focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; +.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)); } -.focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; +.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)); } -.focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; +.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)); } -.focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; +.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)); } -.focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; +.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)); } -.focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; +.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)); } -.focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; +.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)); } -.focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; +.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)); } -.focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; +.focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; +.focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; +.focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; +.focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; +.focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; +.focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; +.focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; +.focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; +.focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; +.focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; +.focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; +.focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; +.focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; +.focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; +.focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; +.focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; +.focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; +.focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; +.focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; +.focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; +.focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; +.focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; +.focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; +.focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; +.focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; +.focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; +.focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; +.focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; +.focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; +.focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; +.focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; +.focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; +.focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; +.focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; +.focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; +.focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; +.focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; +.focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; +.focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; +.focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; +.focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; +.focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; +.focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; +.focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; +.focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; +.focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; +.focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; +.focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; +.focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; +.focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; +.focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; +.focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; +.focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; +.focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; +.focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; +.focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; +.focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; +.focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; +.focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; +.focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; +.focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; +.focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; +.focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; +.focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.ring-offset-0 { - --tw-ring-offset-width: 0px; +.focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.ring-offset-1 { - --tw-ring-offset-width: 1px; +.focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.ring-offset-2 { - --tw-ring-offset-width: 2px; +.focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.ring-offset-4 { - --tw-ring-offset-width: 4px; +.focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.ring-offset-8 { - --tw-ring-offset-width: 8px; +.focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; +.focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; +.focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; +.focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; +.focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; +.focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; +.focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; +.focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; +.focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; +.focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; +.focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.ring-transparent { - --tw-ring-color: transparent; +.focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.ring-current { - --tw-ring-color: currentColor; +.focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +.focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +.focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +.focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +.focus\:to-transparent:focus { + --tw-gradient-to: transparent; } -.ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +.focus\:to-current:focus { + --tw-gradient-to: currentColor; } -.ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +.focus\:to-black:focus { + --tw-gradient-to: #000; } -.ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +.focus\:to-white:focus { + --tw-gradient-to: #fff; } -.ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +.focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } -.ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +.focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } -.ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +.focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } -.ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +.focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } -.ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +.focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } -.ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); +.focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } -.ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); +.focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } -.ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); +.focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } -.ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); +.focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } -.ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); +.focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } -.ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); +.focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } -.ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); +.focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } -.ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); +.focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } -.ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); +.focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } -.ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); +.focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } -.ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); +.focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } -.ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); +.focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } -.ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); +.focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } -.ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); +.focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } -.ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); +.focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } -.ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +.focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } -.ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); +.focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } -.ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); +.focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } -.ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); +.focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } -.ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); +.focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } -.ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); +.focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } -.ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); +.focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } -.ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); +.focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } -.ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); +.focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } -.ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); +.focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } -.ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); +.focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } -.ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); +.focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } -.ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); +.focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } -.ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); +.focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } -.ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); +.focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } -.ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); +.focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } -.ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); +.focus\:to-green-600:focus { + --tw-gradient-to: #059669; } -.ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); +.focus\:to-green-700:focus { + --tw-gradient-to: #047857; } -.ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); +.focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } -.ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); +.focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } -.ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +.focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } -.ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); +.focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } -.ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); +.focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } -.ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); +.focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } -.ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); +.focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } -.ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); +.focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } -.ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); +.focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } -.ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); +.focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } -.ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); +.focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } -.ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); +.focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } -.ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); +.focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } -.ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); +.focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } -.ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); +.focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } -.ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); +.focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } -.ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); +.focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } -.ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); +.focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } -.ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); +.focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } -.ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); +.focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } -.ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); +.focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } -.ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); +.focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } -.ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); +.focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } -.ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); +.focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } -.ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); +.focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } -.ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); +.focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } -.ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); +.focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } -.ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); +.focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } -.ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); +.focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } -.ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); +.focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } -.ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); +.focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } -.ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); +.focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } -.ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); +.focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } -.ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); +.focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } -.ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); +.focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } -.ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); +.focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } -.ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); +.focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } -.focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; +.focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } -.focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; +.focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } -.focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +.focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } -.focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +.focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } -.focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +.focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } -.focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +.decoration-slice { + box-decoration-break: slice; } -.focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +.decoration-clone { + box-decoration-break: clone; } -.focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +.bg-auto { + background-size: auto; } -.focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +.bg-cover { + background-size: cover; } -.focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +.bg-contain { + background-size: contain; } -.focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +.bg-fixed { + background-attachment: fixed; } -.focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +.bg-local { + background-attachment: local; } -.focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +.bg-scroll { + background-attachment: scroll; } -.focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +.bg-clip-border { + background-clip: border-box; } -.focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); +.bg-clip-padding { + background-clip: padding-box; } -.focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); +.bg-clip-content { + background-clip: content-box; } -.focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); +.bg-clip-text { + background-clip: text; } -.focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); +.bg-bottom { + background-position: bottom; } -.focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); +.bg-center { + background-position: center; } -.focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); +.bg-left { + background-position: left; } -.focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); +.bg-left-bottom { + background-position: left bottom; } -.focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); +.bg-left-top { + background-position: left top; } -.focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); +.bg-right { + background-position: right; } -.focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); +.bg-right-bottom { + background-position: right bottom; } -.focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); +.bg-right-top { + background-position: right top; } -.focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); +.bg-top { + background-position: top; } -.focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); +.bg-repeat { + background-repeat: repeat; } -.focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); +.bg-no-repeat { + background-repeat: no-repeat; } -.focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); +.bg-repeat-x { + background-repeat: repeat-x; } -.focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +.bg-repeat-y { + background-repeat: repeat-y; } -.focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); +.bg-repeat-round { + background-repeat: round; } -.focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); +.bg-repeat-space { + background-repeat: space; } -.focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); +.bg-origin-border { + background-origin: border-box; } -.focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); +.bg-origin-padding { + background-origin: padding-box; } -.focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); +.bg-origin-content { + background-origin: content-box; } -.focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); +.fill-current { + fill: currentColor; } -.focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); +.stroke-current { + stroke: currentColor; } -.focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); +.stroke-0 { + stroke-width: 0; } -.focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); +.stroke-1 { + stroke-width: 1; } -.focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); +.stroke-2 { + stroke-width: 2; } -.focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); +.object-contain { + object-fit: contain; } -.focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); +.object-cover { + object-fit: cover; } -.focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); +.object-fill { + object-fit: fill; } -.focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); +.object-none { + object-fit: none; } -.focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); +.object-scale-down { + object-fit: scale-down; } -.focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); +.object-bottom { + object-position: bottom; } -.focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); +.object-center { + object-position: center; } -.focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); +.object-left { + object-position: left; } -.focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); +.object-left-bottom { + object-position: left bottom; } -.focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +.object-left-top { + object-position: left top; } -.focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); +.object-right { + object-position: right; } -.focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); +.object-right-bottom { + object-position: right bottom; } -.focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); +.object-right-top { + object-position: right top; } -.focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); +.object-top { + object-position: top; } -.focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); +.p-0 { + padding: 0px; } -.focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); +.p-1 { + padding: 0.25rem; } -.focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); +.p-2 { + padding: 0.5rem; } -.focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); +.p-3 { + padding: 0.75rem; } -.focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); +.p-4 { + padding: 1rem; } -.focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); +.p-5 { + padding: 1.25rem; } -.focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); +.p-6 { + padding: 1.5rem; } -.focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); +.p-7 { + padding: 1.75rem; } -.focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); +.p-8 { + padding: 2rem; } -.focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); +.p-9 { + padding: 2.25rem; } -.focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); +.p-10 { + padding: 2.5rem; } -.focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); +.p-11 { + padding: 2.75rem; } -.focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); +.p-12 { + padding: 3rem; } -.focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); +.p-14 { + padding: 3.5rem; } -.focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); +.p-16 { + padding: 4rem; } -.focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); +.p-20 { + padding: 5rem; } -.focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); +.p-24 { + padding: 6rem; } -.focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); +.p-28 { + padding: 7rem; } -.focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); +.p-32 { + padding: 8rem; } -.focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); +.p-36 { + padding: 9rem; } -.focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); +.p-40 { + padding: 10rem; } -.focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); +.p-44 { + padding: 11rem; } -.focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); +.p-48 { + padding: 12rem; } -.focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); +.p-52 { + padding: 13rem; } -.focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); +.p-56 { + padding: 14rem; } -.focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); +.p-60 { + padding: 15rem; } -.focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); +.p-64 { + padding: 16rem; } -.focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); +.p-72 { + padding: 18rem; } -.focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); +.p-80 { + padding: 20rem; } -.focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); +.p-96 { + padding: 24rem; } -.focus\:ring-transparent:focus { - --tw-ring-color: transparent; +.p-px { + padding: 1px; } -.focus\:ring-current:focus { - --tw-ring-color: currentColor; +.p-0\.5 { + padding: 0.125rem; } -.focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +.p-1\.5 { + padding: 0.375rem; } -.focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +.p-2\.5 { + padding: 0.625rem; } -.focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +.p-3\.5 { + padding: 0.875rem; } -.focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +.px-0 { + padding-left: 0px; + padding-right: 0px; } -.focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +.px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } -.focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +.px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } -.focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +.px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } -.focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +.px-4 { + padding-left: 1rem; + padding-right: 1rem; } -.focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +.px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } -.focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +.px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } -.focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +.px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } -.focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +.px-8 { + padding-left: 2rem; + padding-right: 2rem; } -.focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); +.px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } -.focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); +.px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } -.focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); +.px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } -.focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); +.px-12 { + padding-left: 3rem; + padding-right: 3rem; } -.focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); +.px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } -.focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); +.px-16 { + padding-left: 4rem; + padding-right: 4rem; } -.focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); +.px-20 { + padding-left: 5rem; + padding-right: 5rem; } -.focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); +.px-24 { + padding-left: 6rem; + padding-right: 6rem; } -.focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); +.px-28 { + padding-left: 7rem; + padding-right: 7rem; } -.focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); +.px-32 { + padding-left: 8rem; + padding-right: 8rem; } -.focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); +.px-36 { + padding-left: 9rem; + padding-right: 9rem; } -.focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); +.px-40 { + padding-left: 10rem; + padding-right: 10rem; } -.focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); +.px-44 { + padding-left: 11rem; + padding-right: 11rem; } -.focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); +.px-48 { + padding-left: 12rem; + padding-right: 12rem; } -.focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); +.px-52 { + padding-left: 13rem; + padding-right: 13rem; } -.focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +.px-56 { + padding-left: 14rem; + padding-right: 14rem; } -.focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); +.px-60 { + padding-left: 15rem; + padding-right: 15rem; } -.focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); +.px-64 { + padding-left: 16rem; + padding-right: 16rem; } -.focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); +.px-72 { + padding-left: 18rem; + padding-right: 18rem; } -.focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); +.px-80 { + padding-left: 20rem; + padding-right: 20rem; } -.focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); +.px-96 { + padding-left: 24rem; + padding-right: 24rem; } -.focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); +.px-px { + padding-left: 1px; + padding-right: 1px; } -.focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); +.px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } -.focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); +.px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } -.focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); +.px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } -.focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); +.px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } -.focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); +.py-0 { + padding-top: 0px; + padding-bottom: 0px; } -.focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); +.py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } -.focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); +.py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } -.focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); +.py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } -.focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); +.py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } -.focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); +.py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } -.focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); +.py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } -.focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); +.py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } -.focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); +.py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } -.focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +.py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } -.focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); +.py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } -.focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); +.py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } -.focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); +.py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } -.focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); +.py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } -.focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); +.py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } -.focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); +.py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } -.focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); +.py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } -.focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); +.py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } -.focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); +.py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } -.focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); +.py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } -.focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); +.py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } -.focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); +.py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } -.focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); +.py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } -.focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); +.py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } -.focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); +.py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } -.focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); +.py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } -.focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); +.py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } -.focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); +.py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } -.focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); +.py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } -.focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); +.py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } -.focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); +.py-px { + padding-top: 1px; + padding-bottom: 1px; } -.focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); +.py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } -.focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); +.py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } -.focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); +.py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } -.focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); +.py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } -.focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); +.pt-0 { + padding-top: 0px; } -.focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); +.pt-1 { + padding-top: 0.25rem; } -.focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); +.pt-2 { + padding-top: 0.5rem; } -.focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); +.pt-3 { + padding-top: 0.75rem; } -.focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); +.pt-4 { + padding-top: 1rem; } -.focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); +.pt-5 { + padding-top: 1.25rem; } -.focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); +.pt-6 { + padding-top: 1.5rem; } -.focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); +.pt-7 { + padding-top: 1.75rem; } -.focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); +.pt-8 { + padding-top: 2rem; } -.ring-opacity-0 { - --tw-ring-opacity: 0; +.pt-9 { + padding-top: 2.25rem; } -.ring-opacity-5 { - --tw-ring-opacity: 0.05; +.pt-10 { + padding-top: 2.5rem; } -.ring-opacity-10 { - --tw-ring-opacity: 0.1; +.pt-11 { + padding-top: 2.75rem; } -.ring-opacity-20 { - --tw-ring-opacity: 0.2; +.pt-12 { + padding-top: 3rem; } -.ring-opacity-25 { - --tw-ring-opacity: 0.25; +.pt-14 { + padding-top: 3.5rem; } -.ring-opacity-30 { - --tw-ring-opacity: 0.3; +.pt-16 { + padding-top: 4rem; } -.ring-opacity-40 { - --tw-ring-opacity: 0.4; +.pt-20 { + padding-top: 5rem; } -.ring-opacity-50 { - --tw-ring-opacity: 0.5; +.pt-24 { + padding-top: 6rem; } -.ring-opacity-60 { - --tw-ring-opacity: 0.6; +.pt-28 { + padding-top: 7rem; } -.ring-opacity-70 { - --tw-ring-opacity: 0.7; +.pt-32 { + padding-top: 8rem; } -.ring-opacity-75 { - --tw-ring-opacity: 0.75; +.pt-36 { + padding-top: 9rem; } -.ring-opacity-80 { - --tw-ring-opacity: 0.8; +.pt-40 { + padding-top: 10rem; } -.ring-opacity-90 { - --tw-ring-opacity: 0.9; +.pt-44 { + padding-top: 11rem; } -.ring-opacity-95 { - --tw-ring-opacity: 0.95; +.pt-48 { + padding-top: 12rem; } -.ring-opacity-100 { - --tw-ring-opacity: 1; +.pt-52 { + padding-top: 13rem; } -.focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; +.pt-56 { + padding-top: 14rem; } -.focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; +.pt-60 { + padding-top: 15rem; } -.focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; +.pt-64 { + padding-top: 16rem; } -.focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; +.pt-72 { + padding-top: 18rem; } -.focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; +.pt-80 { + padding-top: 20rem; } -.focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; +.pt-96 { + padding-top: 24rem; } -.focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; +.pt-px { + padding-top: 1px; } -.focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; +.pt-0\.5 { + padding-top: 0.125rem; } -.focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; +.pt-1\.5 { + padding-top: 0.375rem; } -.focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; +.pt-2\.5 { + padding-top: 0.625rem; } -.focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; +.pt-3\.5 { + padding-top: 0.875rem; } -.focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; +.pr-0 { + padding-right: 0px; } -.focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; +.pr-1 { + padding-right: 0.25rem; } -.focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; +.pr-2 { + padding-right: 0.5rem; } -.focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; +.pr-3 { + padding-right: 0.75rem; } -.focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; +.pr-4 { + padding-right: 1rem; } -.focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; +.pr-5 { + padding-right: 1.25rem; } -.focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; +.pr-6 { + padding-right: 1.5rem; } -.focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; +.pr-7 { + padding-right: 1.75rem; } -.focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; +.pr-8 { + padding-right: 2rem; } -.focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; +.pr-9 { + padding-right: 2.25rem; } -.focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; +.pr-10 { + padding-right: 2.5rem; } -.focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; +.pr-11 { + padding-right: 2.75rem; } -.focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; +.pr-12 { + padding-right: 3rem; } -.focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; +.pr-14 { + padding-right: 3.5rem; } -.focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; +.pr-16 { + padding-right: 4rem; } -.focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; +.pr-20 { + padding-right: 5rem; } -.focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; +.pr-24 { + padding-right: 6rem; } -.focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; +.pr-28 { + padding-right: 7rem; } -.focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; +.pr-32 { + padding-right: 8rem; } -.fill-current { - fill: currentColor; +.pr-36 { + padding-right: 9rem; } -.stroke-current { - stroke: currentColor; +.pr-40 { + padding-right: 10rem; } -.stroke-0 { - stroke-width: 0; +.pr-44 { + padding-right: 11rem; } -.stroke-1 { - stroke-width: 1; +.pr-48 { + padding-right: 12rem; } -.stroke-2 { - stroke-width: 2; +.pr-52 { + padding-right: 13rem; } -.table-auto { - table-layout: auto; +.pr-56 { + padding-right: 14rem; } -.table-fixed { - table-layout: fixed; +.pr-60 { + padding-right: 15rem; +} + +.pr-64 { + padding-right: 16rem; +} + +.pr-72 { + padding-right: 18rem; +} + +.pr-80 { + padding-right: 20rem; +} + +.pr-96 { + padding-right: 24rem; +} + +.pr-px { + padding-right: 1px; +} + +.pr-0\.5 { + padding-right: 0.125rem; +} + +.pr-1\.5 { + padding-right: 0.375rem; +} + +.pr-2\.5 { + padding-right: 0.625rem; +} + +.pr-3\.5 { + padding-right: 0.875rem; +} + +.pb-0 { + padding-bottom: 0px; +} + +.pb-1 { + padding-bottom: 0.25rem; +} + +.pb-2 { + padding-bottom: 0.5rem; +} + +.pb-3 { + padding-bottom: 0.75rem; +} + +.pb-4 { + padding-bottom: 1rem; +} + +.pb-5 { + padding-bottom: 1.25rem; +} + +.pb-6 { + padding-bottom: 1.5rem; +} + +.pb-7 { + padding-bottom: 1.75rem; +} + +.pb-8 { + padding-bottom: 2rem; +} + +.pb-9 { + padding-bottom: 2.25rem; +} + +.pb-10 { + padding-bottom: 2.5rem; +} + +.pb-11 { + padding-bottom: 2.75rem; +} + +.pb-12 { + padding-bottom: 3rem; +} + +.pb-14 { + padding-bottom: 3.5rem; +} + +.pb-16 { + padding-bottom: 4rem; +} + +.pb-20 { + padding-bottom: 5rem; +} + +.pb-24 { + padding-bottom: 6rem; +} + +.pb-28 { + padding-bottom: 7rem; +} + +.pb-32 { + padding-bottom: 8rem; +} + +.pb-36 { + padding-bottom: 9rem; +} + +.pb-40 { + padding-bottom: 10rem; +} + +.pb-44 { + padding-bottom: 11rem; +} + +.pb-48 { + padding-bottom: 12rem; +} + +.pb-52 { + padding-bottom: 13rem; +} + +.pb-56 { + padding-bottom: 14rem; +} + +.pb-60 { + padding-bottom: 15rem; +} + +.pb-64 { + padding-bottom: 16rem; +} + +.pb-72 { + padding-bottom: 18rem; +} + +.pb-80 { + padding-bottom: 20rem; +} + +.pb-96 { + padding-bottom: 24rem; +} + +.pb-px { + padding-bottom: 1px; +} + +.pb-0\.5 { + padding-bottom: 0.125rem; +} + +.pb-1\.5 { + padding-bottom: 0.375rem; +} + +.pb-2\.5 { + padding-bottom: 0.625rem; +} + +.pb-3\.5 { + padding-bottom: 0.875rem; +} + +.pl-0 { + padding-left: 0px; +} + +.pl-1 { + padding-left: 0.25rem; +} + +.pl-2 { + padding-left: 0.5rem; +} + +.pl-3 { + padding-left: 0.75rem; +} + +.pl-4 { + padding-left: 1rem; +} + +.pl-5 { + padding-left: 1.25rem; +} + +.pl-6 { + padding-left: 1.5rem; +} + +.pl-7 { + padding-left: 1.75rem; +} + +.pl-8 { + padding-left: 2rem; +} + +.pl-9 { + padding-left: 2.25rem; +} + +.pl-10 { + padding-left: 2.5rem; +} + +.pl-11 { + padding-left: 2.75rem; +} + +.pl-12 { + padding-left: 3rem; +} + +.pl-14 { + padding-left: 3.5rem; +} + +.pl-16 { + padding-left: 4rem; +} + +.pl-20 { + padding-left: 5rem; +} + +.pl-24 { + padding-left: 6rem; +} + +.pl-28 { + padding-left: 7rem; +} + +.pl-32 { + padding-left: 8rem; +} + +.pl-36 { + padding-left: 9rem; +} + +.pl-40 { + padding-left: 10rem; +} + +.pl-44 { + padding-left: 11rem; +} + +.pl-48 { + padding-left: 12rem; +} + +.pl-52 { + padding-left: 13rem; +} + +.pl-56 { + padding-left: 14rem; +} + +.pl-60 { + padding-left: 15rem; +} + +.pl-64 { + padding-left: 16rem; +} + +.pl-72 { + padding-left: 18rem; +} + +.pl-80 { + padding-left: 20rem; +} + +.pl-96 { + padding-left: 24rem; +} + +.pl-px { + padding-left: 1px; +} + +.pl-0\.5 { + padding-left: 0.125rem; +} + +.pl-1\.5 { + padding-left: 0.375rem; +} + +.pl-2\.5 { + padding-left: 0.625rem; +} + +.pl-3\.5 { + padding-left: 0.875rem; } .text-left { @@ -22234,6 +22155,292 @@ video { text-align: justify; } +.align-baseline { + vertical-align: baseline; +} + +.align-top { + vertical-align: top; +} + +.align-middle { + vertical-align: middle; +} + +.align-bottom { + vertical-align: bottom; +} + +.align-text-top { + vertical-align: text-top; +} + +.align-text-bottom { + vertical-align: text-bottom; +} + +.font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} + +.font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; +} + +.font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +.text-xs { + font-size: 0.75rem; + line-height: 1rem; +} + +.text-sm { + font-size: 0.875rem; + line-height: 1.25rem; +} + +.text-base { + font-size: 1rem; + line-height: 1.5rem; +} + +.text-lg { + font-size: 1.125rem; + line-height: 1.75rem; +} + +.text-xl { + font-size: 1.25rem; + line-height: 1.75rem; +} + +.text-2xl { + font-size: 1.5rem; + line-height: 2rem; +} + +.text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; +} + +.text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; +} + +.text-5xl { + font-size: 3rem; + line-height: 1; +} + +.text-6xl { + font-size: 3.75rem; + line-height: 1; +} + +.text-7xl { + font-size: 4.5rem; + line-height: 1; +} + +.text-8xl { + font-size: 6rem; + line-height: 1; +} + +.text-9xl { + font-size: 8rem; + line-height: 1; +} + +.font-thin { + font-weight: 100; +} + +.font-extralight { + font-weight: 200; +} + +.font-light { + font-weight: 300; +} + +.font-normal { + font-weight: 400; +} + +.font-medium { + font-weight: 500; +} + +.font-semibold { + font-weight: 600; +} + +.font-bold { + font-weight: 700; +} + +.font-extrabold { + font-weight: 800; +} + +.font-black { + font-weight: 900; +} + +.uppercase { + text-transform: uppercase; +} + +.lowercase { + text-transform: lowercase; +} + +.capitalize { + text-transform: capitalize; +} + +.normal-case { + text-transform: none; +} + +.italic { + font-style: italic; +} + +.not-italic { + font-style: normal; +} + +.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); +} + +.normal-nums { + font-variant-numeric: normal; +} + +.ordinal { + --tw-ordinal: ordinal; +} + +.slashed-zero { + --tw-slashed-zero: slashed-zero; +} + +.lining-nums { + --tw-numeric-figure: lining-nums; +} + +.oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; +} + +.proportional-nums { + --tw-numeric-spacing: proportional-nums; +} + +.tabular-nums { + --tw-numeric-spacing: tabular-nums; +} + +.diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; +} + +.stacked-fractions { + --tw-numeric-fraction: stacked-fractions; +} + +.leading-3 { + line-height: .75rem; +} + +.leading-4 { + line-height: 1rem; +} + +.leading-5 { + line-height: 1.25rem; +} + +.leading-6 { + line-height: 1.5rem; +} + +.leading-7 { + line-height: 1.75rem; +} + +.leading-8 { + line-height: 2rem; +} + +.leading-9 { + line-height: 2.25rem; +} + +.leading-10 { + line-height: 2.5rem; +} + +.leading-none { + line-height: 1; +} + +.leading-tight { + line-height: 1.25; +} + +.leading-snug { + line-height: 1.375; +} + +.leading-normal { + line-height: 1.5; +} + +.leading-relaxed { + line-height: 1.625; +} + +.leading-loose { + line-height: 2; +} + +.tracking-tighter { + letter-spacing: -0.05em; +} + +.tracking-tight { + letter-spacing: -0.025em; +} + +.tracking-normal { + letter-spacing: 0em; +} + +.tracking-wide { + letter-spacing: 0.025em; +} + +.tracking-wider { + letter-spacing: 0.05em; +} + +.tracking-widest { + letter-spacing: 0.1em; +} + .text-transparent { color: transparent; } @@ -24624,44 +24831,6 @@ video { --tw-text-opacity: 1; } -.truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.overflow-ellipsis { - text-overflow: ellipsis; -} - -.overflow-clip { - text-overflow: clip; -} - -.italic { - font-style: italic; -} - -.not-italic { - font-style: normal; -} - -.uppercase { - text-transform: uppercase; -} - -.lowercase { - text-transform: lowercase; -} - -.capitalize { - text-transform: capitalize; -} - -.normal-case { - text-transform: none; -} - .underline { text-decoration: underline; } @@ -24732,4557 +24901,4268 @@ video { -moz-osx-font-smoothing: auto; } -.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); +.placeholder-transparent::placeholder { + color: transparent; } -.normal-nums { - font-variant-numeric: normal; +.placeholder-current::placeholder { + color: currentColor; } -.ordinal { - --tw-ordinal: ordinal; +.placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } -.slashed-zero { - --tw-slashed-zero: slashed-zero; +.placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } -.lining-nums { - --tw-numeric-figure: lining-nums; +.placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } -.oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; +.placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } -.proportional-nums { - --tw-numeric-spacing: proportional-nums; +.placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } -.tabular-nums { - --tw-numeric-spacing: tabular-nums; +.placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } -.diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; +.placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } -.stacked-fractions { - --tw-numeric-fraction: stacked-fractions; +.placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } -.tracking-tighter { - letter-spacing: -0.05em; +.placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } -.tracking-tight { - letter-spacing: -0.025em; +.placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } -.tracking-normal { - letter-spacing: 0em; +.placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } -.tracking-wide { - letter-spacing: 0.025em; +.placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } -.tracking-wider { - letter-spacing: 0.05em; +.placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } -.tracking-widest { - letter-spacing: 0.1em; +.placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } -.select-none { - user-select: none; +.placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } -.select-text { - user-select: text; +.placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } -.select-all { - user-select: all; +.placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } -.select-auto { - user-select: auto; +.placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } -.align-baseline { - vertical-align: baseline; +.placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } -.align-top { - vertical-align: top; +.placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } -.align-middle { - vertical-align: middle; +.placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } -.align-bottom { - vertical-align: bottom; +.placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } -.align-text-top { - vertical-align: text-top; +.placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } -.align-text-bottom { - vertical-align: text-bottom; +.placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } -.visible { - visibility: visible; +.placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } -.invisible { - visibility: hidden; +.placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } -.whitespace-normal { - white-space: normal; +.placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } -.whitespace-nowrap { - white-space: nowrap; +.placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } -.whitespace-pre { - white-space: pre; +.placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } -.whitespace-pre-line { - white-space: pre-line; +.placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } -.whitespace-pre-wrap { - white-space: pre-wrap; +.placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } -.break-normal { - overflow-wrap: normal; - word-break: normal; +.placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } -.break-words { - overflow-wrap: break-word; +.placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } -.break-all { - word-break: break-all; +.placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } -.w-0 { - width: 0px; +.placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } -.w-1 { - width: 0.25rem; +.placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } -.w-2 { - width: 0.5rem; +.placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } -.w-3 { - width: 0.75rem; +.placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } -.w-4 { - width: 1rem; +.placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } -.w-5 { - width: 1.25rem; +.placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } -.w-6 { - width: 1.5rem; +.placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } -.w-7 { - width: 1.75rem; +.placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } -.w-8 { - width: 2rem; +.placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } -.w-9 { - width: 2.25rem; +.placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } -.w-10 { - width: 2.5rem; +.placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } -.w-11 { - width: 2.75rem; +.placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } -.w-12 { - width: 3rem; +.placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } -.w-14 { - width: 3.5rem; +.placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } -.w-16 { - width: 4rem; +.placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } -.w-20 { - width: 5rem; +.placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } -.w-24 { - width: 6rem; +.placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } -.w-28 { - width: 7rem; +.placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } -.w-32 { - width: 8rem; +.placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } -.w-36 { - width: 9rem; +.placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } -.w-40 { - width: 10rem; +.placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } -.w-44 { - width: 11rem; +.placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } -.w-48 { - width: 12rem; +.placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } -.w-52 { - width: 13rem; +.placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } -.w-56 { - width: 14rem; +.placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } -.w-60 { - width: 15rem; +.placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } -.w-64 { - width: 16rem; +.placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } -.w-72 { - width: 18rem; +.placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } -.w-80 { - width: 20rem; +.placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } -.w-96 { - width: 24rem; +.placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } -.w-auto { - width: auto; +.placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } -.w-px { - width: 1px; +.placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } -.w-0\.5 { - width: 0.125rem; +.placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } -.w-1\.5 { - width: 0.375rem; +.placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } -.w-2\.5 { - width: 0.625rem; +.placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } -.w-3\.5 { - width: 0.875rem; +.placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } -.w-1\/2 { - width: 50%; +.placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } -.w-1\/3 { - width: 33.333333%; +.placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } -.w-2\/3 { - width: 66.666667%; +.placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } -.w-1\/4 { - width: 25%; +.placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } -.w-2\/4 { - width: 50%; +.placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } -.w-3\/4 { - width: 75%; +.placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } -.w-1\/5 { - width: 20%; +.placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } -.w-2\/5 { - width: 40%; +.placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } -.w-3\/5 { - width: 60%; +.placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } -.w-4\/5 { - width: 80%; +.placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } -.w-1\/6 { - width: 16.666667%; +.placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } -.w-2\/6 { - width: 33.333333%; +.placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } -.w-3\/6 { - width: 50%; +.focus\:placeholder-transparent:focus::placeholder { + color: transparent; } -.w-4\/6 { - width: 66.666667%; +.focus\:placeholder-current:focus::placeholder { + color: currentColor; } -.w-5\/6 { - width: 83.333333%; +.focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } -.w-1\/12 { - width: 8.333333%; +.focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } -.w-2\/12 { - width: 16.666667%; +.focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } -.w-3\/12 { - width: 25%; +.focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } -.w-4\/12 { - width: 33.333333%; +.focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } -.w-5\/12 { - width: 41.666667%; +.focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } -.w-6\/12 { - width: 50%; +.focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } -.w-7\/12 { - width: 58.333333%; +.focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } -.w-8\/12 { - width: 66.666667%; +.focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } -.w-9\/12 { - width: 75%; +.focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } -.w-10\/12 { - width: 83.333333%; +.focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } -.w-11\/12 { - width: 91.666667%; +.focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } -.w-full { - width: 100%; +.focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } -.w-screen { - width: 100vw; +.focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } -.w-min { - width: min-content; +.focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } -.w-max { - width: max-content; +.focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } -.z-0 { - z-index: 0; +.focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } -.z-10 { - z-index: 10; +.focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } -.z-20 { - z-index: 20; +.focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } -.z-30 { - z-index: 30; +.focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } -.z-40 { - z-index: 40; +.focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } -.z-50 { - z-index: 50; +.focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } -.z-auto { - z-index: auto; +.focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } -.focus-within\:z-0:focus-within { - z-index: 0; +.focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } -.focus-within\:z-10:focus-within { - z-index: 10; +.focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } -.focus-within\:z-20:focus-within { - z-index: 20; +.focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } -.focus-within\:z-30:focus-within { - z-index: 30; +.focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } -.focus-within\:z-40:focus-within { - z-index: 40; +.focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } -.focus-within\:z-50:focus-within { - z-index: 50; +.focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } -.focus-within\:z-auto:focus-within { - z-index: auto; +.focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } -.focus\:z-0:focus { - z-index: 0; +.focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } -.focus\:z-10:focus { - z-index: 10; +.focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } -.focus\:z-20:focus { - z-index: 20; +.focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } -.focus\:z-30:focus { - z-index: 30; +.focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } -.focus\:z-40:focus { - z-index: 40; +.focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } -.focus\:z-50:focus { - z-index: 50; +.focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } -.focus\:z-auto:focus { - z-index: auto; +.focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } -.isolate { - isolation: isolate; +.focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } -.isolation-auto { - isolation: auto; +.focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } -.gap-0 { - gap: 0px; +.focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } -.gap-1 { - gap: 0.25rem; +.focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } -.gap-2 { - gap: 0.5rem; +.focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } -.gap-3 { - gap: 0.75rem; +.focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } -.gap-4 { - gap: 1rem; +.focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } -.gap-5 { - gap: 1.25rem; +.focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } -.gap-6 { - gap: 1.5rem; +.focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } -.gap-7 { - gap: 1.75rem; +.focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } -.gap-8 { - gap: 2rem; +.focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } -.gap-9 { - gap: 2.25rem; +.focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } -.gap-10 { - gap: 2.5rem; +.focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } -.gap-11 { - gap: 2.75rem; +.focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } -.gap-12 { - gap: 3rem; +.focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } -.gap-14 { - gap: 3.5rem; +.focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } -.gap-16 { - gap: 4rem; +.focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } -.gap-20 { - gap: 5rem; +.focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } -.gap-24 { - gap: 6rem; +.focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } -.gap-28 { - gap: 7rem; +.focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } -.gap-32 { - gap: 8rem; +.focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } -.gap-36 { - gap: 9rem; +.focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } -.gap-40 { - gap: 10rem; +.focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } -.gap-44 { - gap: 11rem; +.focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } -.gap-48 { - gap: 12rem; +.focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } -.gap-52 { - gap: 13rem; +.focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } -.gap-56 { - gap: 14rem; +.focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } -.gap-60 { - gap: 15rem; +.focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } -.gap-64 { - gap: 16rem; +.focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } -.gap-72 { - gap: 18rem; +.focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } -.gap-80 { - gap: 20rem; +.focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } -.gap-96 { - gap: 24rem; +.focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } -.gap-px { - gap: 1px; +.focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } -.gap-0\.5 { - gap: 0.125rem; +.focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } -.gap-1\.5 { - gap: 0.375rem; +.focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } -.gap-2\.5 { - gap: 0.625rem; +.focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } -.gap-3\.5 { - gap: 0.875rem; +.focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } -.gap-x-0 { - column-gap: 0px; +.focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } -.gap-x-1 { - column-gap: 0.25rem; +.focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } -.gap-x-2 { - column-gap: 0.5rem; +.focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } -.gap-x-3 { - column-gap: 0.75rem; +.focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } -.gap-x-4 { - column-gap: 1rem; +.focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } -.gap-x-5 { - column-gap: 1.25rem; +.focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } -.gap-x-6 { - column-gap: 1.5rem; +.focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } -.gap-x-7 { - column-gap: 1.75rem; +.focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } -.gap-x-8 { - column-gap: 2rem; +.placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } -.gap-x-9 { - column-gap: 2.25rem; +.placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } -.gap-x-10 { - column-gap: 2.5rem; +.placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } -.gap-x-11 { - column-gap: 2.75rem; +.placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } -.gap-x-12 { - column-gap: 3rem; +.placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } -.gap-x-14 { - column-gap: 3.5rem; +.placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } -.gap-x-16 { - column-gap: 4rem; +.placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } -.gap-x-20 { - column-gap: 5rem; +.placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } -.gap-x-24 { - column-gap: 6rem; +.placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } -.gap-x-28 { - column-gap: 7rem; +.placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } -.gap-x-32 { - column-gap: 8rem; +.placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } -.gap-x-36 { - column-gap: 9rem; +.placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } -.gap-x-40 { - column-gap: 10rem; +.placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } -.gap-x-44 { - column-gap: 11rem; +.placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } -.gap-x-48 { - column-gap: 12rem; +.placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } -.gap-x-52 { - column-gap: 13rem; +.focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } -.gap-x-56 { - column-gap: 14rem; +.focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } -.gap-x-60 { - column-gap: 15rem; +.focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } -.gap-x-64 { - column-gap: 16rem; +.focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } -.gap-x-72 { - column-gap: 18rem; +.focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } -.gap-x-80 { - column-gap: 20rem; +.focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } -.gap-x-96 { - column-gap: 24rem; +.focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } -.gap-x-px { - column-gap: 1px; +.focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } -.gap-x-0\.5 { - column-gap: 0.125rem; +.focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } -.gap-x-1\.5 { - column-gap: 0.375rem; +.focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } -.gap-x-2\.5 { - column-gap: 0.625rem; +.focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } -.gap-x-3\.5 { - column-gap: 0.875rem; +.focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } -.gap-y-0 { - row-gap: 0px; +.focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } -.gap-y-1 { - row-gap: 0.25rem; +.focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } -.gap-y-2 { - row-gap: 0.5rem; +.focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } -.gap-y-3 { - row-gap: 0.75rem; +.opacity-0 { + opacity: 0; } -.gap-y-4 { - row-gap: 1rem; +.opacity-5 { + opacity: 0.05; } -.gap-y-5 { - row-gap: 1.25rem; +.opacity-10 { + opacity: 0.1; } -.gap-y-6 { - row-gap: 1.5rem; +.opacity-20 { + opacity: 0.2; } -.gap-y-7 { - row-gap: 1.75rem; +.opacity-25 { + opacity: 0.25; } -.gap-y-8 { - row-gap: 2rem; +.opacity-30 { + opacity: 0.3; } -.gap-y-9 { - row-gap: 2.25rem; +.opacity-40 { + opacity: 0.4; } -.gap-y-10 { - row-gap: 2.5rem; +.opacity-50 { + opacity: 0.5; } -.gap-y-11 { - row-gap: 2.75rem; +.opacity-60 { + opacity: 0.6; } -.gap-y-12 { - row-gap: 3rem; +.opacity-70 { + opacity: 0.7; } -.gap-y-14 { - row-gap: 3.5rem; +.opacity-75 { + opacity: 0.75; } -.gap-y-16 { - row-gap: 4rem; +.opacity-80 { + opacity: 0.8; } -.gap-y-20 { - row-gap: 5rem; +.opacity-90 { + opacity: 0.9; } -.gap-y-24 { - row-gap: 6rem; +.opacity-95 { + opacity: 0.95; } -.gap-y-28 { - row-gap: 7rem; +.opacity-100 { + opacity: 1; } -.gap-y-32 { - row-gap: 8rem; +.group:hover .group-hover\:opacity-0 { + opacity: 0; } -.gap-y-36 { - row-gap: 9rem; +.group:hover .group-hover\:opacity-5 { + opacity: 0.05; } -.gap-y-40 { - row-gap: 10rem; +.group:hover .group-hover\:opacity-10 { + opacity: 0.1; } -.gap-y-44 { - row-gap: 11rem; +.group:hover .group-hover\:opacity-20 { + opacity: 0.2; } -.gap-y-48 { - row-gap: 12rem; +.group:hover .group-hover\:opacity-25 { + opacity: 0.25; } -.gap-y-52 { - row-gap: 13rem; +.group:hover .group-hover\:opacity-30 { + opacity: 0.3; } -.gap-y-56 { - row-gap: 14rem; +.group:hover .group-hover\:opacity-40 { + opacity: 0.4; } -.gap-y-60 { - row-gap: 15rem; +.group:hover .group-hover\:opacity-50 { + opacity: 0.5; } -.gap-y-64 { - row-gap: 16rem; +.group:hover .group-hover\:opacity-60 { + opacity: 0.6; } -.gap-y-72 { - row-gap: 18rem; +.group:hover .group-hover\:opacity-70 { + opacity: 0.7; } -.gap-y-80 { - row-gap: 20rem; +.group:hover .group-hover\:opacity-75 { + opacity: 0.75; } -.gap-y-96 { - row-gap: 24rem; +.group:hover .group-hover\:opacity-80 { + opacity: 0.8; } -.gap-y-px { - row-gap: 1px; +.group:hover .group-hover\:opacity-90 { + opacity: 0.9; } -.gap-y-0\.5 { - row-gap: 0.125rem; +.group:hover .group-hover\:opacity-95 { + opacity: 0.95; } -.gap-y-1\.5 { - row-gap: 0.375rem; +.group:hover .group-hover\:opacity-100 { + opacity: 1; } -.gap-y-2\.5 { - row-gap: 0.625rem; +.focus-within\:opacity-0:focus-within { + opacity: 0; } -.gap-y-3\.5 { - row-gap: 0.875rem; +.focus-within\:opacity-5:focus-within { + opacity: 0.05; } -.grid-flow-row { - grid-auto-flow: row; +.focus-within\:opacity-10:focus-within { + opacity: 0.1; } -.grid-flow-col { - grid-auto-flow: column; +.focus-within\:opacity-20:focus-within { + opacity: 0.2; } -.grid-flow-row-dense { - grid-auto-flow: row dense; +.focus-within\:opacity-25:focus-within { + opacity: 0.25; } -.grid-flow-col-dense { - grid-auto-flow: column dense; +.focus-within\:opacity-30:focus-within { + opacity: 0.3; } -.grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); +.focus-within\:opacity-40:focus-within { + opacity: 0.4; } -.grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); +.focus-within\:opacity-50:focus-within { + opacity: 0.5; } -.grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); +.focus-within\:opacity-60:focus-within { + opacity: 0.6; } -.grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); +.focus-within\:opacity-70:focus-within { + opacity: 0.7; } -.grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); +.focus-within\:opacity-75:focus-within { + opacity: 0.75; } -.grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); +.focus-within\:opacity-80:focus-within { + opacity: 0.8; } -.grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); +.focus-within\:opacity-90:focus-within { + opacity: 0.9; } -.grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); +.focus-within\:opacity-95:focus-within { + opacity: 0.95; } -.grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); +.focus-within\:opacity-100:focus-within { + opacity: 1; } -.grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); +.hover\:opacity-0:hover { + opacity: 0; } -.grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); +.hover\:opacity-5:hover { + opacity: 0.05; } -.grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); +.hover\:opacity-10:hover { + opacity: 0.1; } -.grid-cols-none { - grid-template-columns: none; +.hover\:opacity-20:hover { + opacity: 0.2; } -.auto-cols-auto { - grid-auto-columns: auto; +.hover\:opacity-25:hover { + opacity: 0.25; } -.auto-cols-min { - grid-auto-columns: min-content; +.hover\:opacity-30:hover { + opacity: 0.3; } -.auto-cols-max { - grid-auto-columns: max-content; +.hover\:opacity-40:hover { + opacity: 0.4; } -.auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); +.hover\:opacity-50:hover { + opacity: 0.5; } -.col-auto { - grid-column: auto; +.hover\:opacity-60:hover { + opacity: 0.6; } -.col-span-1 { - grid-column: span 1 / span 1; +.hover\:opacity-70:hover { + opacity: 0.7; } -.col-span-2 { - grid-column: span 2 / span 2; +.hover\:opacity-75:hover { + opacity: 0.75; } -.col-span-3 { - grid-column: span 3 / span 3; +.hover\:opacity-80:hover { + opacity: 0.8; } -.col-span-4 { - grid-column: span 4 / span 4; +.hover\:opacity-90:hover { + opacity: 0.9; } -.col-span-5 { - grid-column: span 5 / span 5; +.hover\:opacity-95:hover { + opacity: 0.95; } -.col-span-6 { - grid-column: span 6 / span 6; +.hover\:opacity-100:hover { + opacity: 1; } -.col-span-7 { - grid-column: span 7 / span 7; +.focus\:opacity-0:focus { + opacity: 0; } -.col-span-8 { - grid-column: span 8 / span 8; +.focus\:opacity-5:focus { + opacity: 0.05; } -.col-span-9 { - grid-column: span 9 / span 9; +.focus\:opacity-10:focus { + opacity: 0.1; } -.col-span-10 { - grid-column: span 10 / span 10; +.focus\:opacity-20:focus { + opacity: 0.2; } -.col-span-11 { - grid-column: span 11 / span 11; +.focus\:opacity-25:focus { + opacity: 0.25; } -.col-span-12 { - grid-column: span 12 / span 12; +.focus\:opacity-30:focus { + opacity: 0.3; } -.col-span-full { - grid-column: 1 / -1; +.focus\:opacity-40:focus { + opacity: 0.4; } -.col-start-1 { - grid-column-start: 1; +.focus\:opacity-50:focus { + opacity: 0.5; } -.col-start-2 { - grid-column-start: 2; +.focus\:opacity-60:focus { + opacity: 0.6; } -.col-start-3 { - grid-column-start: 3; +.focus\:opacity-70:focus { + opacity: 0.7; } -.col-start-4 { - grid-column-start: 4; +.focus\:opacity-75:focus { + opacity: 0.75; } -.col-start-5 { - grid-column-start: 5; +.focus\:opacity-80:focus { + opacity: 0.8; } -.col-start-6 { - grid-column-start: 6; +.focus\:opacity-90:focus { + opacity: 0.9; } -.col-start-7 { - grid-column-start: 7; +.focus\:opacity-95:focus { + opacity: 0.95; } -.col-start-8 { - grid-column-start: 8; +.focus\:opacity-100:focus { + opacity: 1; } -.col-start-9 { - grid-column-start: 9; +.bg-blend-normal { + background-blend-mode: normal; } -.col-start-10 { - grid-column-start: 10; +.bg-blend-multiply { + background-blend-mode: multiply; } -.col-start-11 { - grid-column-start: 11; +.bg-blend-screen { + background-blend-mode: screen; } -.col-start-12 { - grid-column-start: 12; +.bg-blend-overlay { + background-blend-mode: overlay; } -.col-start-13 { - grid-column-start: 13; +.bg-blend-darken { + background-blend-mode: darken; } -.col-start-auto { - grid-column-start: auto; +.bg-blend-lighten { + background-blend-mode: lighten; } -.col-end-1 { - grid-column-end: 1; +.bg-blend-color-dodge { + background-blend-mode: color-dodge; } -.col-end-2 { - grid-column-end: 2; +.bg-blend-color-burn { + background-blend-mode: color-burn; } -.col-end-3 { - grid-column-end: 3; +.bg-blend-hard-light { + background-blend-mode: hard-light; } -.col-end-4 { - grid-column-end: 4; +.bg-blend-soft-light { + background-blend-mode: soft-light; } -.col-end-5 { - grid-column-end: 5; +.bg-blend-difference { + background-blend-mode: difference; } -.col-end-6 { - grid-column-end: 6; +.bg-blend-exclusion { + background-blend-mode: exclusion; } -.col-end-7 { - grid-column-end: 7; +.bg-blend-hue { + background-blend-mode: hue; } -.col-end-8 { - grid-column-end: 8; +.bg-blend-saturation { + background-blend-mode: saturation; } -.col-end-9 { - grid-column-end: 9; +.bg-blend-color { + background-blend-mode: color; } -.col-end-10 { - grid-column-end: 10; +.bg-blend-luminosity { + background-blend-mode: luminosity; } -.col-end-11 { - grid-column-end: 11; +.mix-blend-normal { + mix-blend-mode: normal; } -.col-end-12 { - grid-column-end: 12; +.mix-blend-multiply { + mix-blend-mode: multiply; } -.col-end-13 { - grid-column-end: 13; +.mix-blend-screen { + mix-blend-mode: screen; } -.col-end-auto { - grid-column-end: auto; +.mix-blend-overlay { + mix-blend-mode: overlay; } -.grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); +.mix-blend-darken { + mix-blend-mode: darken; } -.grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); +.mix-blend-lighten { + mix-blend-mode: lighten; } -.grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); +.mix-blend-color-dodge { + mix-blend-mode: color-dodge; } -.grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); +.mix-blend-color-burn { + mix-blend-mode: color-burn; } -.grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); +.mix-blend-hard-light { + mix-blend-mode: hard-light; } -.grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); +.mix-blend-soft-light { + mix-blend-mode: soft-light; } -.grid-rows-none { - grid-template-rows: none; +.mix-blend-difference { + mix-blend-mode: difference; } -.auto-rows-auto { - grid-auto-rows: auto; +.mix-blend-exclusion { + mix-blend-mode: exclusion; } -.auto-rows-min { - grid-auto-rows: min-content; +.mix-blend-hue { + mix-blend-mode: hue; } -.auto-rows-max { - grid-auto-rows: max-content; +.mix-blend-saturation { + mix-blend-mode: saturation; } -.auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); +.mix-blend-color { + mix-blend-mode: color; } -.row-auto { - grid-row: auto; +.mix-blend-luminosity { + mix-blend-mode: luminosity; } -.row-span-1 { - grid-row: span 1 / span 1; +* { + --tw-shadow: 0 0 #0000; } -.row-span-2 { - grid-row: span 2 / span 2; +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-3 { - grid-row: span 3 / span 3; +.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); } -.row-span-4 { - grid-row: span 4 / span 4; +.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); } -.row-span-5 { - grid-row: span 5 / span 5; +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-6 { - grid-row: span 6 / span 6; +.shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-full { - grid-row: 1 / -1; +.shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-1 { - grid-row-start: 1; +.shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-2 { - grid-row-start: 2; +.shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-3 { - grid-row-start: 3; +.group:hover .group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-4 { - grid-row-start: 4; +.group:hover .group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-5 { - grid-row-start: 5; +.group:hover .group-hover\: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); } -.row-start-6 { - grid-row-start: 6; +.group:hover .group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-7 { - grid-row-start: 7; +.group:hover .group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-auto { - grid-row-start: auto; +.group:hover .group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-1 { - grid-row-end: 1; +.group:hover .group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-2 { - grid-row-end: 2; +.group:hover .group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-3 { - grid-row-end: 3; +.focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-4 { - grid-row-end: 4; +.focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-5 { - grid-row-end: 5; +.focus-within\:shadow-md:focus-within { + --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); } -.row-end-6 { - grid-row-end: 6; +.focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-7 { - grid-row-end: 7; +.focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-auto { - grid-row-end: auto; +.focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +.focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +.focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.transform-none { - transform: none; +.hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-center { - transform-origin: center; +.hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-top { - transform-origin: top; +.hover\:shadow-md:hover { + --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); } -.origin-top-right { - transform-origin: top right; +.hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-right { - transform-origin: right; +.hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-bottom-right { - transform-origin: bottom right; +.hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-bottom { - transform-origin: bottom; +.hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-bottom-left { - transform-origin: bottom left; +.hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-left { - transform-origin: left; +.focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-top-left { - transform-origin: top left; +.focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; +.focus\:shadow-md:focus { + --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); } -.scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; +.focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; +.focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; +.focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; +.focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; +.focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; +.outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } -.scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; +.outline-white { + outline: 2px dotted white; + outline-offset: 2px; } -.scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; +.outline-black { + outline: 2px dotted black; + outline-offset: 2px; } -.scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; +.focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } -.scale-x-0 { - --tw-scale-x: 0; +.focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } -.scale-x-50 { - --tw-scale-x: .5; +.focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } -.scale-x-75 { - --tw-scale-x: .75; +.focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } -.scale-x-90 { - --tw-scale-x: .9; +.focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } -.scale-x-95 { - --tw-scale-x: .95; +.focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } -.scale-x-100 { - --tw-scale-x: 1; +* { + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgba(59, 130, 246, 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; } -.scale-x-105 { - --tw-scale-x: 1.05; +.ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-x-110 { - --tw-scale-x: 1.1; +.ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-x-125 { - --tw-scale-x: 1.25; +.ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-x-150 { - --tw-scale-x: 1.5; +.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); } -.scale-y-0 { - --tw-scale-y: 0; +.ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-50 { - --tw-scale-y: .5; +.ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-75 { - --tw-scale-y: .75; +.ring-inset { + --tw-ring-inset: inset; } -.scale-y-90 { - --tw-scale-y: .9; +.focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-95 { - --tw-scale-y: .95; +.focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-100 { - --tw-scale-y: 1; +.focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-105 { - --tw-scale-y: 1.05; +.focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-110 { - --tw-scale-y: 1.1; +.focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-125 { - --tw-scale-y: 1.25; +.focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-150 { - --tw-scale-y: 1.5; +.focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } -.hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; +.focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; +.focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; +.focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; +.focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; +.focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; +.focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; +.focus\:ring-inset:focus { + --tw-ring-inset: inset; } -.hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; +.ring-transparent { + --tw-ring-color: transparent; } -.hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; +.ring-current { + --tw-ring-color: currentColor; } -.hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; +.ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } -.hover\:scale-x-0:hover { - --tw-scale-x: 0; +.ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } -.hover\:scale-x-50:hover { - --tw-scale-x: .5; +.ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } -.hover\:scale-x-75:hover { - --tw-scale-x: .75; +.ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } -.hover\:scale-x-90:hover { - --tw-scale-x: .9; +.ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } -.hover\:scale-x-95:hover { - --tw-scale-x: .95; +.ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } -.hover\:scale-x-100:hover { - --tw-scale-x: 1; +.ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } -.hover\:scale-x-105:hover { - --tw-scale-x: 1.05; +.ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } -.hover\:scale-x-110:hover { - --tw-scale-x: 1.1; +.ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } -.hover\:scale-x-125:hover { - --tw-scale-x: 1.25; +.ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } -.hover\:scale-x-150:hover { - --tw-scale-x: 1.5; +.ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } -.hover\:scale-y-0:hover { - --tw-scale-y: 0; +.ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } -.hover\:scale-y-50:hover { - --tw-scale-y: .5; +.ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } -.hover\:scale-y-75:hover { - --tw-scale-y: .75; +.ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } -.hover\:scale-y-90:hover { - --tw-scale-y: .9; +.ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } -.hover\:scale-y-95:hover { - --tw-scale-y: .95; +.ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } -.hover\:scale-y-100:hover { - --tw-scale-y: 1; +.ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } -.hover\:scale-y-105:hover { - --tw-scale-y: 1.05; +.ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } -.hover\:scale-y-110:hover { - --tw-scale-y: 1.1; +.ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } -.hover\:scale-y-125:hover { - --tw-scale-y: 1.25; +.ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } -.hover\:scale-y-150:hover { - --tw-scale-y: 1.5; +.ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } -.focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; +.ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } -.focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; +.ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } -.focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; +.ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } -.focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; +.ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } -.focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; +.ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } -.focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; +.ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } -.focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; +.ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } -.focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; +.ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } -.focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; +.ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } -.focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; +.ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } -.focus\:scale-x-0:focus { - --tw-scale-x: 0; +.ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } -.focus\:scale-x-50:focus { - --tw-scale-x: .5; +.ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } -.focus\:scale-x-75:focus { - --tw-scale-x: .75; +.ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } -.focus\:scale-x-90:focus { - --tw-scale-x: .9; +.ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } -.focus\:scale-x-95:focus { - --tw-scale-x: .95; +.ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } -.focus\:scale-x-100:focus { - --tw-scale-x: 1; +.ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } -.focus\:scale-x-105:focus { - --tw-scale-x: 1.05; +.ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } -.focus\:scale-x-110:focus { - --tw-scale-x: 1.1; +.ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } -.focus\:scale-x-125:focus { - --tw-scale-x: 1.25; +.ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } -.focus\:scale-x-150:focus { - --tw-scale-x: 1.5; +.ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } -.focus\:scale-y-0:focus { - --tw-scale-y: 0; +.ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } -.focus\:scale-y-50:focus { - --tw-scale-y: .5; +.ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } -.focus\:scale-y-75:focus { - --tw-scale-y: .75; +.ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } -.focus\:scale-y-90:focus { - --tw-scale-y: .9; +.ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } -.focus\:scale-y-95:focus { - --tw-scale-y: .95; +.ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } -.focus\:scale-y-100:focus { - --tw-scale-y: 1; +.ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } -.focus\:scale-y-105:focus { - --tw-scale-y: 1.05; +.ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } -.focus\:scale-y-110:focus { - --tw-scale-y: 1.1; +.ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } -.focus\:scale-y-125:focus { - --tw-scale-y: 1.25; +.ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } -.focus\:scale-y-150:focus { - --tw-scale-y: 1.5; +.ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } -.rotate-0 { - --tw-rotate: 0deg; +.ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } -.rotate-1 { - --tw-rotate: 1deg; +.ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } -.rotate-2 { - --tw-rotate: 2deg; +.ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } -.rotate-3 { - --tw-rotate: 3deg; +.ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } -.rotate-6 { - --tw-rotate: 6deg; +.ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } -.rotate-12 { - --tw-rotate: 12deg; +.ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } -.rotate-45 { - --tw-rotate: 45deg; +.ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } -.rotate-90 { - --tw-rotate: 90deg; +.ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } -.rotate-180 { - --tw-rotate: 180deg; +.ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } -.-rotate-180 { - --tw-rotate: -180deg; +.ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } -.-rotate-90 { - --tw-rotate: -90deg; +.ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } -.-rotate-45 { - --tw-rotate: -45deg; +.ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } -.-rotate-12 { - --tw-rotate: -12deg; +.ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } -.-rotate-6 { - --tw-rotate: -6deg; +.ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } -.-rotate-3 { - --tw-rotate: -3deg; +.ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } -.-rotate-2 { - --tw-rotate: -2deg; +.ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } -.-rotate-1 { - --tw-rotate: -1deg; +.ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } -.hover\:rotate-0:hover { - --tw-rotate: 0deg; +.ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } -.hover\:rotate-1:hover { - --tw-rotate: 1deg; +.ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } -.hover\:rotate-2:hover { - --tw-rotate: 2deg; +.ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } -.hover\:rotate-3:hover { - --tw-rotate: 3deg; +.ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } -.hover\:rotate-6:hover { - --tw-rotate: 6deg; +.ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } -.hover\:rotate-12:hover { - --tw-rotate: 12deg; +.ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } -.hover\:rotate-45:hover { - --tw-rotate: 45deg; +.ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } -.hover\:rotate-90:hover { - --tw-rotate: 90deg; +.ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } -.hover\:rotate-180:hover { - --tw-rotate: 180deg; +.ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } -.hover\:-rotate-180:hover { - --tw-rotate: -180deg; +.ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } -.hover\:-rotate-90:hover { - --tw-rotate: -90deg; +.ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } -.hover\:-rotate-45:hover { - --tw-rotate: -45deg; +.ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } -.hover\:-rotate-12:hover { - --tw-rotate: -12deg; +.ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } -.hover\:-rotate-6:hover { - --tw-rotate: -6deg; +.ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } -.hover\:-rotate-3:hover { - --tw-rotate: -3deg; +.focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } -.hover\:-rotate-2:hover { - --tw-rotate: -2deg; +.focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } -.hover\:-rotate-1:hover { - --tw-rotate: -1deg; +.focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } -.focus\:rotate-0:focus { - --tw-rotate: 0deg; +.focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } -.focus\:rotate-1:focus { - --tw-rotate: 1deg; +.focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } -.focus\:rotate-2:focus { - --tw-rotate: 2deg; +.focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } -.focus\:rotate-3:focus { - --tw-rotate: 3deg; +.focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } -.focus\:rotate-6:focus { - --tw-rotate: 6deg; +.focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } -.focus\:rotate-12:focus { - --tw-rotate: 12deg; +.focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } -.focus\:rotate-45:focus { - --tw-rotate: 45deg; +.focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } -.focus\:rotate-90:focus { - --tw-rotate: 90deg; +.focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } -.focus\:rotate-180:focus { - --tw-rotate: 180deg; +.focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } -.focus\:-rotate-180:focus { - --tw-rotate: -180deg; +.focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } -.focus\:-rotate-90:focus { - --tw-rotate: -90deg; +.focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } -.focus\:-rotate-45:focus { - --tw-rotate: -45deg; +.focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } -.focus\:-rotate-12:focus { - --tw-rotate: -12deg; +.focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } -.focus\:-rotate-6:focus { - --tw-rotate: -6deg; +.focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } -.focus\:-rotate-3:focus { - --tw-rotate: -3deg; +.focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } -.focus\:-rotate-2:focus { - --tw-rotate: -2deg; +.focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } -.focus\:-rotate-1:focus { - --tw-rotate: -1deg; +.focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } -.translate-x-0 { - --tw-translate-x: 0px; +.focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } -.translate-x-1 { - --tw-translate-x: 0.25rem; +.focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } -.translate-x-2 { - --tw-translate-x: 0.5rem; +.focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } -.translate-x-3 { - --tw-translate-x: 0.75rem; +.focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } -.translate-x-4 { - --tw-translate-x: 1rem; +.focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } -.translate-x-5 { - --tw-translate-x: 1.25rem; +.focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } -.translate-x-6 { - --tw-translate-x: 1.5rem; +.focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } -.translate-x-7 { - --tw-translate-x: 1.75rem; +.focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } -.translate-x-8 { - --tw-translate-x: 2rem; +.focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } -.translate-x-9 { - --tw-translate-x: 2.25rem; +.focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } -.translate-x-10 { - --tw-translate-x: 2.5rem; +.focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } -.translate-x-11 { - --tw-translate-x: 2.75rem; +.focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } -.translate-x-12 { - --tw-translate-x: 3rem; +.focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } -.translate-x-14 { - --tw-translate-x: 3.5rem; +.focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } -.translate-x-16 { - --tw-translate-x: 4rem; +.focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } -.translate-x-20 { - --tw-translate-x: 5rem; +.focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } -.translate-x-24 { - --tw-translate-x: 6rem; +.focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } -.translate-x-28 { - --tw-translate-x: 7rem; +.focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } -.translate-x-32 { - --tw-translate-x: 8rem; +.focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } -.translate-x-36 { - --tw-translate-x: 9rem; +.focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } -.translate-x-40 { - --tw-translate-x: 10rem; +.focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } -.translate-x-44 { - --tw-translate-x: 11rem; +.focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } -.translate-x-48 { - --tw-translate-x: 12rem; +.focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } -.translate-x-52 { - --tw-translate-x: 13rem; +.focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } -.translate-x-56 { - --tw-translate-x: 14rem; +.focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } -.translate-x-60 { - --tw-translate-x: 15rem; +.focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } -.translate-x-64 { - --tw-translate-x: 16rem; +.focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } -.translate-x-72 { - --tw-translate-x: 18rem; +.focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } -.translate-x-80 { - --tw-translate-x: 20rem; +.focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } -.translate-x-96 { - --tw-translate-x: 24rem; +.focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } -.translate-x-px { - --tw-translate-x: 1px; +.focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } -.translate-x-0\.5 { - --tw-translate-x: 0.125rem; +.focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } -.translate-x-1\.5 { - --tw-translate-x: 0.375rem; +.focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } -.translate-x-2\.5 { - --tw-translate-x: 0.625rem; +.focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } -.translate-x-3\.5 { - --tw-translate-x: 0.875rem; +.focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } -.-translate-x-0 { - --tw-translate-x: 0px; +.focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } -.-translate-x-1 { - --tw-translate-x: -0.25rem; +.focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } -.-translate-x-2 { - --tw-translate-x: -0.5rem; +.focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } -.-translate-x-3 { - --tw-translate-x: -0.75rem; +.focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } -.-translate-x-4 { - --tw-translate-x: -1rem; +.focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } -.-translate-x-5 { - --tw-translate-x: -1.25rem; +.focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } -.-translate-x-6 { - --tw-translate-x: -1.5rem; +.focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } -.-translate-x-7 { - --tw-translate-x: -1.75rem; +.focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } -.-translate-x-8 { - --tw-translate-x: -2rem; +.focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } -.-translate-x-9 { - --tw-translate-x: -2.25rem; +.focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } -.-translate-x-10 { - --tw-translate-x: -2.5rem; +.focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } -.-translate-x-11 { - --tw-translate-x: -2.75rem; +.focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } -.-translate-x-12 { - --tw-translate-x: -3rem; +.focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } -.-translate-x-14 { - --tw-translate-x: -3.5rem; +.focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } -.-translate-x-16 { - --tw-translate-x: -4rem; +.focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } -.-translate-x-20 { - --tw-translate-x: -5rem; +.focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } -.-translate-x-24 { - --tw-translate-x: -6rem; +.focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } -.-translate-x-28 { - --tw-translate-x: -7rem; +.focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } -.-translate-x-32 { - --tw-translate-x: -8rem; +.focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } -.-translate-x-36 { - --tw-translate-x: -9rem; +.focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } -.-translate-x-40 { - --tw-translate-x: -10rem; +.focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } -.-translate-x-44 { - --tw-translate-x: -11rem; +.focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } -.-translate-x-48 { - --tw-translate-x: -12rem; +.focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } -.-translate-x-52 { - --tw-translate-x: -13rem; +.focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } -.-translate-x-56 { - --tw-translate-x: -14rem; +.focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } -.-translate-x-60 { - --tw-translate-x: -15rem; +.focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } -.-translate-x-64 { - --tw-translate-x: -16rem; +.focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } -.-translate-x-72 { - --tw-translate-x: -18rem; +.focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } -.-translate-x-80 { - --tw-translate-x: -20rem; +.focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } -.-translate-x-96 { - --tw-translate-x: -24rem; +.focus\:ring-transparent:focus { + --tw-ring-color: transparent; } -.-translate-x-px { - --tw-translate-x: -1px; +.focus\:ring-current:focus { + --tw-ring-color: currentColor; } -.-translate-x-0\.5 { - --tw-translate-x: -0.125rem; +.focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } -.-translate-x-1\.5 { - --tw-translate-x: -0.375rem; +.focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } -.-translate-x-2\.5 { - --tw-translate-x: -0.625rem; +.focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } -.-translate-x-3\.5 { - --tw-translate-x: -0.875rem; +.focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } -.translate-x-1\/2 { - --tw-translate-x: 50%; +.focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } -.translate-x-1\/3 { - --tw-translate-x: 33.333333%; +.focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } -.translate-x-2\/3 { - --tw-translate-x: 66.666667%; +.focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } -.translate-x-1\/4 { - --tw-translate-x: 25%; +.focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } -.translate-x-2\/4 { - --tw-translate-x: 50%; +.focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } -.translate-x-3\/4 { - --tw-translate-x: 75%; +.focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } -.translate-x-full { - --tw-translate-x: 100%; +.focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } -.-translate-x-1\/2 { - --tw-translate-x: -50%; +.focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } -.-translate-x-1\/3 { - --tw-translate-x: -33.333333%; +.focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } -.-translate-x-2\/3 { - --tw-translate-x: -66.666667%; +.focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } -.-translate-x-1\/4 { - --tw-translate-x: -25%; +.focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } -.-translate-x-2\/4 { - --tw-translate-x: -50%; +.focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } -.-translate-x-3\/4 { - --tw-translate-x: -75%; +.focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } -.-translate-x-full { - --tw-translate-x: -100%; +.focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } -.translate-y-0 { - --tw-translate-y: 0px; +.focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } -.translate-y-1 { - --tw-translate-y: 0.25rem; +.focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } -.translate-y-2 { - --tw-translate-y: 0.5rem; +.focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } -.translate-y-3 { - --tw-translate-y: 0.75rem; +.focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } -.translate-y-4 { - --tw-translate-y: 1rem; +.focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } -.translate-y-5 { - --tw-translate-y: 1.25rem; +.focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } -.translate-y-6 { - --tw-translate-y: 1.5rem; +.focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } -.translate-y-7 { - --tw-translate-y: 1.75rem; +.focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } -.translate-y-8 { - --tw-translate-y: 2rem; +.focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } -.translate-y-9 { - --tw-translate-y: 2.25rem; +.focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } -.translate-y-10 { - --tw-translate-y: 2.5rem; +.focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } -.translate-y-11 { - --tw-translate-y: 2.75rem; +.focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } -.translate-y-12 { - --tw-translate-y: 3rem; +.focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } -.translate-y-14 { - --tw-translate-y: 3.5rem; +.focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } -.translate-y-16 { - --tw-translate-y: 4rem; +.focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } -.translate-y-20 { - --tw-translate-y: 5rem; +.focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } -.translate-y-24 { - --tw-translate-y: 6rem; +.focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } -.translate-y-28 { - --tw-translate-y: 7rem; +.focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } -.translate-y-32 { - --tw-translate-y: 8rem; +.focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } -.translate-y-36 { - --tw-translate-y: 9rem; +.focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } -.translate-y-40 { - --tw-translate-y: 10rem; +.focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } -.translate-y-44 { - --tw-translate-y: 11rem; +.focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } -.translate-y-48 { - --tw-translate-y: 12rem; +.focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } -.translate-y-52 { - --tw-translate-y: 13rem; +.focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } -.translate-y-56 { - --tw-translate-y: 14rem; +.focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } -.translate-y-60 { - --tw-translate-y: 15rem; +.focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } -.translate-y-64 { - --tw-translate-y: 16rem; +.focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } -.translate-y-72 { - --tw-translate-y: 18rem; +.focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } -.translate-y-80 { - --tw-translate-y: 20rem; +.focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } -.translate-y-96 { - --tw-translate-y: 24rem; +.focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } -.translate-y-px { - --tw-translate-y: 1px; +.focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } -.translate-y-0\.5 { - --tw-translate-y: 0.125rem; +.focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } -.translate-y-1\.5 { - --tw-translate-y: 0.375rem; +.focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } -.translate-y-2\.5 { - --tw-translate-y: 0.625rem; +.focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } -.translate-y-3\.5 { - --tw-translate-y: 0.875rem; +.focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } -.-translate-y-0 { - --tw-translate-y: 0px; +.focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } -.-translate-y-1 { - --tw-translate-y: -0.25rem; +.focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } -.-translate-y-2 { - --tw-translate-y: -0.5rem; +.focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } -.-translate-y-3 { - --tw-translate-y: -0.75rem; +.focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } -.-translate-y-4 { - --tw-translate-y: -1rem; +.focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } -.-translate-y-5 { - --tw-translate-y: -1.25rem; +.focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } -.-translate-y-6 { - --tw-translate-y: -1.5rem; +.focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } -.-translate-y-7 { - --tw-translate-y: -1.75rem; +.focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } -.-translate-y-8 { - --tw-translate-y: -2rem; +.focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } -.-translate-y-9 { - --tw-translate-y: -2.25rem; +.focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } -.-translate-y-10 { - --tw-translate-y: -2.5rem; +.focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } -.-translate-y-11 { - --tw-translate-y: -2.75rem; +.focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } -.-translate-y-12 { - --tw-translate-y: -3rem; +.focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } -.-translate-y-14 { - --tw-translate-y: -3.5rem; +.focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } -.-translate-y-16 { - --tw-translate-y: -4rem; +.focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } -.-translate-y-20 { - --tw-translate-y: -5rem; +.focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } -.-translate-y-24 { - --tw-translate-y: -6rem; +.focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } -.-translate-y-28 { - --tw-translate-y: -7rem; +.focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } -.-translate-y-32 { - --tw-translate-y: -8rem; +.focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } -.-translate-y-36 { - --tw-translate-y: -9rem; +.focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } -.-translate-y-40 { - --tw-translate-y: -10rem; +.focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } -.-translate-y-44 { - --tw-translate-y: -11rem; +.focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } -.-translate-y-48 { - --tw-translate-y: -12rem; -} - -.-translate-y-52 { - --tw-translate-y: -13rem; +.focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } -.-translate-y-56 { - --tw-translate-y: -14rem; +.focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } -.-translate-y-60 { - --tw-translate-y: -15rem; +.focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } -.-translate-y-64 { - --tw-translate-y: -16rem; +.focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } -.-translate-y-72 { - --tw-translate-y: -18rem; +.focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } -.-translate-y-80 { - --tw-translate-y: -20rem; +.focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } -.-translate-y-96 { - --tw-translate-y: -24rem; +.focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } -.-translate-y-px { - --tw-translate-y: -1px; +.ring-opacity-0 { + --tw-ring-opacity: 0; } -.-translate-y-0\.5 { - --tw-translate-y: -0.125rem; +.ring-opacity-5 { + --tw-ring-opacity: 0.05; } -.-translate-y-1\.5 { - --tw-translate-y: -0.375rem; +.ring-opacity-10 { + --tw-ring-opacity: 0.1; } -.-translate-y-2\.5 { - --tw-translate-y: -0.625rem; +.ring-opacity-20 { + --tw-ring-opacity: 0.2; } -.-translate-y-3\.5 { - --tw-translate-y: -0.875rem; +.ring-opacity-25 { + --tw-ring-opacity: 0.25; } -.translate-y-1\/2 { - --tw-translate-y: 50%; +.ring-opacity-30 { + --tw-ring-opacity: 0.3; } -.translate-y-1\/3 { - --tw-translate-y: 33.333333%; +.ring-opacity-40 { + --tw-ring-opacity: 0.4; } -.translate-y-2\/3 { - --tw-translate-y: 66.666667%; +.ring-opacity-50 { + --tw-ring-opacity: 0.5; } -.translate-y-1\/4 { - --tw-translate-y: 25%; +.ring-opacity-60 { + --tw-ring-opacity: 0.6; } -.translate-y-2\/4 { - --tw-translate-y: 50%; +.ring-opacity-70 { + --tw-ring-opacity: 0.7; } -.translate-y-3\/4 { - --tw-translate-y: 75%; +.ring-opacity-75 { + --tw-ring-opacity: 0.75; } -.translate-y-full { - --tw-translate-y: 100%; +.ring-opacity-80 { + --tw-ring-opacity: 0.8; } -.-translate-y-1\/2 { - --tw-translate-y: -50%; +.ring-opacity-90 { + --tw-ring-opacity: 0.9; } -.-translate-y-1\/3 { - --tw-translate-y: -33.333333%; +.ring-opacity-95 { + --tw-ring-opacity: 0.95; } -.-translate-y-2\/3 { - --tw-translate-y: -66.666667%; +.ring-opacity-100 { + --tw-ring-opacity: 1; } -.-translate-y-1\/4 { - --tw-translate-y: -25%; +.focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } -.-translate-y-2\/4 { - --tw-translate-y: -50%; +.focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } -.-translate-y-3\/4 { - --tw-translate-y: -75%; +.focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } -.-translate-y-full { - --tw-translate-y: -100%; +.focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } -.hover\:translate-x-0:hover { - --tw-translate-x: 0px; +.focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } -.hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; +.focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } -.hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; +.focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } -.hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; +.focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } -.hover\:translate-x-4:hover { - --tw-translate-x: 1rem; +.focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } -.hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; +.focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } -.hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; +.focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } -.hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; +.focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } -.hover\:translate-x-8:hover { - --tw-translate-x: 2rem; +.focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } -.hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; +.focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } -.hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; +.focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } -.hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; +.focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } -.hover\:translate-x-12:hover { - --tw-translate-x: 3rem; +.focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } -.hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; +.focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } -.hover\:translate-x-16:hover { - --tw-translate-x: 4rem; +.focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } -.hover\:translate-x-20:hover { - --tw-translate-x: 5rem; +.focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } -.hover\:translate-x-24:hover { - --tw-translate-x: 6rem; +.focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } -.hover\:translate-x-28:hover { - --tw-translate-x: 7rem; +.focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } -.hover\:translate-x-32:hover { - --tw-translate-x: 8rem; +.focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } -.hover\:translate-x-36:hover { - --tw-translate-x: 9rem; +.focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } -.hover\:translate-x-40:hover { - --tw-translate-x: 10rem; +.focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } -.hover\:translate-x-44:hover { - --tw-translate-x: 11rem; +.focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } -.hover\:translate-x-48:hover { - --tw-translate-x: 12rem; +.focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } -.hover\:translate-x-52:hover { - --tw-translate-x: 13rem; +.focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } -.hover\:translate-x-56:hover { - --tw-translate-x: 14rem; +.focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } -.hover\:translate-x-60:hover { - --tw-translate-x: 15rem; +.focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } -.hover\:translate-x-64:hover { - --tw-translate-x: 16rem; +.ring-offset-0 { + --tw-ring-offset-width: 0px; } -.hover\:translate-x-72:hover { - --tw-translate-x: 18rem; +.ring-offset-1 { + --tw-ring-offset-width: 1px; } -.hover\:translate-x-80:hover { - --tw-translate-x: 20rem; +.ring-offset-2 { + --tw-ring-offset-width: 2px; } -.hover\:translate-x-96:hover { - --tw-translate-x: 24rem; +.ring-offset-4 { + --tw-ring-offset-width: 4px; } -.hover\:translate-x-px:hover { - --tw-translate-x: 1px; +.ring-offset-8 { + --tw-ring-offset-width: 8px; } -.hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; +.focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } -.hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; +.focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } -.hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; +.focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } -.hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; +.focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } -.hover\:-translate-x-0:hover { - --tw-translate-x: 0px; +.focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } -.hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; +.focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } -.hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; +.focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } -.hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; +.focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } -.hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; +.focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } -.hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; +.focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } -.hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; +.ring-offset-transparent { + --tw-ring-offset-color: transparent; } -.hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; +.ring-offset-current { + --tw-ring-offset-color: currentColor; } -.hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; +.ring-offset-black { + --tw-ring-offset-color: #000; } -.hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; +.ring-offset-white { + --tw-ring-offset-color: #fff; } -.hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; +.ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } -.hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; +.ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } -.hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; +.ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } -.hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; +.ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } -.hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; +.ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } -.hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; +.ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } -.hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; +.ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } -.hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; +.ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } -.hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; +.ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } -.hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; +.ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } -.hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; +.ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } -.hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; +.ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } -.hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; +.ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } -.hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; +.ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } -.hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; +.ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } -.hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; +.ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } -.hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; +.ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } -.hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; +.ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } -.hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; +.ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } -.hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; +.ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } -.hover\:-translate-x-px:hover { - --tw-translate-x: -1px; +.ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } -.hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; +.ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } -.hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; +.ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } -.hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; +.ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } -.hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; +.ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } -.hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; +.ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } -.hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; +.ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } -.hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; +.ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } -.hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; +.ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } -.hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; +.ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } -.hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; +.ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } -.hover\:translate-x-full:hover { - --tw-translate-x: 100%; +.ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } -.hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; +.ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } -.hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; +.ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } -.hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; +.ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } -.hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; +.ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } -.hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; +.ring-offset-green-600 { + --tw-ring-offset-color: #059669; } -.hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; +.ring-offset-green-700 { + --tw-ring-offset-color: #047857; } -.hover\:-translate-x-full:hover { - --tw-translate-x: -100%; +.ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } -.hover\:translate-y-0:hover { - --tw-translate-y: 0px; +.ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } -.hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; +.ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } -.hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; +.ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } -.hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; +.ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } -.hover\:translate-y-4:hover { - --tw-translate-y: 1rem; +.ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } -.hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; +.ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } -.hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; +.ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } -.hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; +.ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } -.hover\:translate-y-8:hover { - --tw-translate-y: 2rem; +.ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } -.hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; +.ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } -.hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; +.ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } -.hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; +.ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } -.hover\:translate-y-12:hover { - --tw-translate-y: 3rem; +.ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } -.hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; +.ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } -.hover\:translate-y-16:hover { - --tw-translate-y: 4rem; +.ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } -.hover\:translate-y-20:hover { - --tw-translate-y: 5rem; +.ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } -.hover\:translate-y-24:hover { - --tw-translate-y: 6rem; +.ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } -.hover\:translate-y-28:hover { - --tw-translate-y: 7rem; +.ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } -.hover\:translate-y-32:hover { - --tw-translate-y: 8rem; +.ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } -.hover\:translate-y-36:hover { - --tw-translate-y: 9rem; +.ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } -.hover\:translate-y-40:hover { - --tw-translate-y: 10rem; +.ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } -.hover\:translate-y-44:hover { - --tw-translate-y: 11rem; +.ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } -.hover\:translate-y-48:hover { - --tw-translate-y: 12rem; +.ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } -.hover\:translate-y-52:hover { - --tw-translate-y: 13rem; +.ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } -.hover\:translate-y-56:hover { - --tw-translate-y: 14rem; +.ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } -.hover\:translate-y-60:hover { - --tw-translate-y: 15rem; +.ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } -.hover\:translate-y-64:hover { - --tw-translate-y: 16rem; +.ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } -.hover\:translate-y-72:hover { - --tw-translate-y: 18rem; +.ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } -.hover\:translate-y-80:hover { - --tw-translate-y: 20rem; +.ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } -.hover\:translate-y-96:hover { - --tw-translate-y: 24rem; +.ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } -.hover\:translate-y-px:hover { - --tw-translate-y: 1px; +.ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } -.hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; +.ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } -.hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; +.ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } -.hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; +.ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } -.hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; +.ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } -.hover\:-translate-y-0:hover { - --tw-translate-y: 0px; +.ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } -.hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; +.ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } -.hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; +.ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } -.hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; +.ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } -.hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; +.ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } -.hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; +.ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } -.hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; +.focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } -.hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; +.focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } -.hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; +.focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } -.hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; +.focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } -.hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; +.focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } -.hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; +.focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } -.hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; +.focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } -.hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; +.focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } -.hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; +.focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } -.hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; +.focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } -.hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; +.focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } -.hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; +.focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } -.hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; +.focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } -.hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; +.focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } -.hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; +.focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } -.hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; +.focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } -.hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; +.focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } -.hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; +.focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } -.hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; +.focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } -.hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; +.focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } -.hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; +.focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } -.hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; +.focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } -.hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; +.focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } -.hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; +.focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } -.hover\:-translate-y-px:hover { - --tw-translate-y: -1px; +.focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } -.hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; +.focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } -.hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; +.focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } -.hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; +.focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } -.hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; +.focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } -.hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; +.focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } -.hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; +.focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } -.hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; +.focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } -.hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; +.focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } -.hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; +.focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } -.hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; +.focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } -.hover\:translate-y-full:hover { - --tw-translate-y: 100%; +.focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } -.hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; +.focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } -.hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; +.focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } -.hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; +.focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } -.hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; +.focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } -.hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; +.focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } -.hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; +.focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } -.hover\:-translate-y-full:hover { - --tw-translate-y: -100%; +.focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } -.focus\:translate-x-0:focus { - --tw-translate-x: 0px; +.focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } -.focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; +.focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } -.focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; +.focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } -.focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; +.focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } -.focus\:translate-x-4:focus { - --tw-translate-x: 1rem; +.focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } -.focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; +.focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } -.focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; +.focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } -.focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; +.focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } -.focus\:translate-x-8:focus { - --tw-translate-x: 2rem; +.focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } -.focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; +.focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } -.focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; +.focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } -.focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; +.focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } -.focus\:translate-x-12:focus { - --tw-translate-x: 3rem; +.focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } -.focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; +.focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } -.focus\:translate-x-16:focus { - --tw-translate-x: 4rem; +.focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } -.focus\:translate-x-20:focus { - --tw-translate-x: 5rem; +.focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } -.focus\:translate-x-24:focus { - --tw-translate-x: 6rem; +.focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } -.focus\:translate-x-28:focus { - --tw-translate-x: 7rem; +.focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } -.focus\:translate-x-32:focus { - --tw-translate-x: 8rem; +.focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } -.focus\:translate-x-36:focus { - --tw-translate-x: 9rem; +.focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } -.focus\:translate-x-40:focus { - --tw-translate-x: 10rem; +.focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } -.focus\:translate-x-44:focus { - --tw-translate-x: 11rem; +.focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } -.focus\:translate-x-48:focus { - --tw-translate-x: 12rem; +.focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } -.focus\:translate-x-52:focus { - --tw-translate-x: 13rem; +.focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } -.focus\:translate-x-56:focus { - --tw-translate-x: 14rem; +.focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } -.focus\:translate-x-60:focus { - --tw-translate-x: 15rem; +.focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } -.focus\:translate-x-64:focus { - --tw-translate-x: 16rem; +.focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } -.focus\:translate-x-72:focus { - --tw-translate-x: 18rem; +.focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } -.focus\:translate-x-80:focus { - --tw-translate-x: 20rem; +.focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } -.focus\:translate-x-96:focus { - --tw-translate-x: 24rem; +.focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } -.focus\:translate-x-px:focus { - --tw-translate-x: 1px; +.focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } -.focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; +.focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } -.focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; +.focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } -.focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; +.focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } -.focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; +.focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } -.focus\:-translate-x-0:focus { - --tw-translate-x: 0px; +.focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } -.focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; +.focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } -.focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; +.focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } -.focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; +.focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } -.focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; +.focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } -.focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; +.focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } -.focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; +.focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } -.focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; +.focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } -.focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; +.focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } -.focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; +.focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } -.focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; +.focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } -.focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; +.focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } -.focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; +.focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } -.focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; +.focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } -.focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; +.focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } -.focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; +.focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } -.focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; +.focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } -.focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; +.focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } -.focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; +.focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } -.focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; +.focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } -.focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; +.focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } -.focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; +.focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } -.focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; +.focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } -.focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; +.focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } -.focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; +.focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } -.focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; -} - -.focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; -} - -.focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; -} - -.focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; -} - -.focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; -} - -.focus\:-translate-x-px:focus { - --tw-translate-x: -1px; -} - -.focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; -} - -.focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; -} - -.focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; -} - -.focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; -} - -.focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; -} - -.focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; -} - -.focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; -} - -.focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; -} - -.focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; -} - -.focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; -} - -.focus\:translate-x-full:focus { - --tw-translate-x: 100%; -} - -.focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; -} - -.focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; -} - -.focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; -} - -.focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; -} - -.focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; -} - -.focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; -} - -.focus\:-translate-x-full:focus { - --tw-translate-x: -100%; -} - -.focus\:translate-y-0:focus { - --tw-translate-y: 0px; -} - -.focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; -} - -.focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; -} - -.focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; -} - -.focus\:translate-y-4:focus { - --tw-translate-y: 1rem; -} - -.focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; -} - -.focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; -} - -.focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; -} - -.focus\:translate-y-8:focus { - --tw-translate-y: 2rem; -} - -.focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; -} - -.focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; -} - -.focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; -} - -.focus\:translate-y-12:focus { - --tw-translate-y: 3rem; -} - -.focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; -} - -.focus\:translate-y-16:focus { - --tw-translate-y: 4rem; -} - -.focus\:translate-y-20:focus { - --tw-translate-y: 5rem; -} - -.focus\:translate-y-24:focus { - --tw-translate-y: 6rem; -} - -.focus\:translate-y-28:focus { - --tw-translate-y: 7rem; -} - -.focus\:translate-y-32:focus { - --tw-translate-y: 8rem; -} - -.focus\:translate-y-36:focus { - --tw-translate-y: 9rem; -} - -.focus\:translate-y-40:focus { - --tw-translate-y: 10rem; -} - -.focus\:translate-y-44:focus { - --tw-translate-y: 11rem; -} - -.focus\:translate-y-48:focus { - --tw-translate-y: 12rem; -} - -.focus\:translate-y-52:focus { - --tw-translate-y: 13rem; -} - -.focus\:translate-y-56:focus { - --tw-translate-y: 14rem; -} - -.focus\:translate-y-60:focus { - --tw-translate-y: 15rem; -} - -.focus\:translate-y-64:focus { - --tw-translate-y: 16rem; -} - -.focus\:translate-y-72:focus { - --tw-translate-y: 18rem; -} - -.focus\:translate-y-80:focus { - --tw-translate-y: 20rem; -} - -.focus\:translate-y-96:focus { - --tw-translate-y: 24rem; -} - -.focus\:translate-y-px:focus { - --tw-translate-y: 1px; -} - -.focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; -} - -.focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; -} - -.focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; -} - -.focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; -} - -.focus\:-translate-y-0:focus { - --tw-translate-y: 0px; -} - -.focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; -} - -.focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; -} - -.focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; -} - -.focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; -} - -.focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; -} - -.focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; -} - -.focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; -} - -.focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; -} - -.focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; -} - -.focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; -} - -.focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; -} - -.focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; -} - -.focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; -} - -.focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; -} - -.focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; -} - -.focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; -} - -.focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; -} - -.focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; -} - -.focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; -} - -.focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; -} - -.focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; -} - -.focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; -} - -.focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; -} - -.focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; -} - -.focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; -} - -.focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; -} - -.focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; -} - -.focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; -} - -.focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; -} - -.focus\:-translate-y-px:focus { - --tw-translate-y: -1px; -} - -.focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; -} - -.focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; -} - -.focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; -} - -.focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; -} - -.focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; -} - -.focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; -} - -.focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; -} - -.focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; -} - -.focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; -} - -.focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; -} - -.focus\:translate-y-full:focus { - --tw-translate-y: 100%; -} - -.focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; -} - -.focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; -} - -.focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; -} - -.focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; -} - -.focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; -} - -.focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; -} - -.focus\:-translate-y-full:focus { - --tw-translate-y: -100%; -} - -.skew-x-0 { - --tw-skew-x: 0deg; -} - -.skew-x-1 { - --tw-skew-x: 1deg; -} - -.skew-x-2 { - --tw-skew-x: 2deg; -} - -.skew-x-3 { - --tw-skew-x: 3deg; -} - -.skew-x-6 { - --tw-skew-x: 6deg; -} - -.skew-x-12 { - --tw-skew-x: 12deg; -} - -.-skew-x-12 { - --tw-skew-x: -12deg; -} - -.-skew-x-6 { - --tw-skew-x: -6deg; -} - -.-skew-x-3 { - --tw-skew-x: -3deg; -} - -.-skew-x-2 { - --tw-skew-x: -2deg; -} - -.-skew-x-1 { - --tw-skew-x: -1deg; -} - -.skew-y-0 { - --tw-skew-y: 0deg; -} - -.skew-y-1 { - --tw-skew-y: 1deg; -} - -.skew-y-2 { - --tw-skew-y: 2deg; -} - -.skew-y-3 { - --tw-skew-y: 3deg; -} - -.skew-y-6 { - --tw-skew-y: 6deg; -} - -.skew-y-12 { - --tw-skew-y: 12deg; -} - -.-skew-y-12 { - --tw-skew-y: -12deg; -} - -.-skew-y-6 { - --tw-skew-y: -6deg; -} - -.-skew-y-3 { - --tw-skew-y: -3deg; -} - -.-skew-y-2 { - --tw-skew-y: -2deg; -} - -.-skew-y-1 { - --tw-skew-y: -1deg; -} - -.hover\:skew-x-0:hover { - --tw-skew-x: 0deg; -} - -.hover\:skew-x-1:hover { - --tw-skew-x: 1deg; -} - -.hover\:skew-x-2:hover { - --tw-skew-x: 2deg; -} - -.hover\:skew-x-3:hover { - --tw-skew-x: 3deg; -} - -.hover\:skew-x-6:hover { - --tw-skew-x: 6deg; -} - -.hover\:skew-x-12:hover { - --tw-skew-x: 12deg; -} - -.hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; -} - -.hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; -} - -.hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; -} - -.hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; -} - -.hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; -} - -.hover\:skew-y-0:hover { - --tw-skew-y: 0deg; -} - -.hover\:skew-y-1:hover { - --tw-skew-y: 1deg; -} - -.hover\:skew-y-2:hover { - --tw-skew-y: 2deg; -} - -.hover\:skew-y-3:hover { - --tw-skew-y: 3deg; -} - -.hover\:skew-y-6:hover { - --tw-skew-y: 6deg; -} - -.hover\:skew-y-12:hover { - --tw-skew-y: 12deg; -} - -.hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; -} - -.hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; -} - -.hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; -} - -.hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; -} - -.hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; -} - -.focus\:skew-x-0:focus { - --tw-skew-x: 0deg; -} - -.focus\:skew-x-1:focus { - --tw-skew-x: 1deg; -} - -.focus\:skew-x-2:focus { - --tw-skew-x: 2deg; -} - -.focus\:skew-x-3:focus { - --tw-skew-x: 3deg; -} - -.focus\:skew-x-6:focus { - --tw-skew-x: 6deg; -} - -.focus\:skew-x-12:focus { - --tw-skew-x: 12deg; -} - -.focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; -} - -.focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; -} - -.focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; -} - -.focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; -} - -.focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; -} - -.focus\:skew-y-0:focus { - --tw-skew-y: 0deg; -} - -.focus\:skew-y-1:focus { - --tw-skew-y: 1deg; -} - -.focus\:skew-y-2:focus { - --tw-skew-y: 2deg; -} - -.focus\:skew-y-3:focus { - --tw-skew-y: 3deg; -} - -.focus\:skew-y-6:focus { - --tw-skew-y: 6deg; -} - -.focus\:skew-y-12:focus { - --tw-skew-y: 12deg; -} - -.focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; -} - -.focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; -} - -.focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; -} - -.focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; -} - -.focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; -} - -.transition-none { - transition-property: none; -} - -.transition-all { - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.transition-colors { - transition-property: background-color, border-color, color, fill, stroke; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; +.focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } -.transition-opacity { - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; +.focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } -.transition-shadow { - transition-property: box-shadow; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; +.focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } -.transition-transform { - transition-property: transform; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; +.focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } -.ease-linear { - transition-timing-function: linear; +.focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } -.ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +.focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } -.ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +.focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } -.ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +.focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } -.duration-75 { - transition-duration: 75ms; +.focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } -.duration-100 { - transition-duration: 100ms; +.focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } -.duration-150 { - transition-duration: 150ms; +.focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } -.duration-200 { - transition-duration: 200ms; +.focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } -.duration-300 { - transition-duration: 300ms; +.focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } -.duration-500 { - transition-duration: 500ms; +.focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } -.duration-700 { - transition-duration: 700ms; +.focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } -.duration-1000 { - transition-duration: 1000ms; +.focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } -.delay-75 { - transition-delay: 75ms; +.focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } -.delay-100 { - transition-delay: 100ms; +.focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } -.delay-150 { - transition-delay: 150ms; +.focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } -.delay-200 { - transition-delay: 200ms; +.focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } -.delay-300 { - transition-delay: 300ms; +.focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } -.delay-500 { - transition-delay: 500ms; +.focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } -.delay-700 { - transition-delay: 700ms; +.focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } -.delay-1000 { - transition-delay: 1000ms; +.focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } -@keyframes spin { - to { - transform: rotate(360deg); - } +.focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } -@keyframes ping { - 75%, 100% { - transform: scale(2); - opacity: 0; - } +.focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } -@keyframes pulse { - 50% { - opacity: .5; - } +.focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } -@keyframes bounce { - 0%, 100% { - transform: translateY(-25%); - animation-timing-function: cubic-bezier(0.8,0,1,1); - } - - 50% { - transform: none; - animation-timing-function: cubic-bezier(0,0,0.2,1); - } +.focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } -.animate-none { - animation: none; +.focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } -.animate-spin { - animation: spin 1s linear infinite; +.focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } -.animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; +.focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } -.animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; +.focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } -.animate-bounce { - animation: bounce 1s infinite; +.focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } -.mix-blend-normal { - mix-blend-mode: normal; +.focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } -.mix-blend-multiply { - mix-blend-mode: multiply; +.focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } -.mix-blend-screen { - mix-blend-mode: screen; +.focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } -.mix-blend-overlay { - mix-blend-mode: overlay; +.focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } -.mix-blend-darken { - mix-blend-mode: darken; +.focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } -.mix-blend-lighten { - mix-blend-mode: lighten; +.focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } -.mix-blend-color-dodge { - mix-blend-mode: color-dodge; +.focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } -.mix-blend-color-burn { - mix-blend-mode: color-burn; +.focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } -.mix-blend-hard-light { - mix-blend-mode: hard-light; +.focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } -.mix-blend-soft-light { - mix-blend-mode: soft-light; +.focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } -.mix-blend-difference { - mix-blend-mode: difference; +.focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } -.mix-blend-exclusion { - mix-blend-mode: exclusion; +.focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } -.mix-blend-hue { - mix-blend-mode: hue; +.focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } -.mix-blend-saturation { - mix-blend-mode: saturation; +.focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } -.mix-blend-color { - mix-blend-mode: color; +.focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } -.mix-blend-luminosity { - mix-blend-mode: luminosity; +.focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } -.bg-blend-normal { - background-blend-mode: normal; +.focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } -.bg-blend-multiply { - background-blend-mode: multiply; +.focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } -.bg-blend-screen { - background-blend-mode: screen; +.focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } -.bg-blend-overlay { - background-blend-mode: overlay; +.focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } -.bg-blend-darken { - background-blend-mode: darken; +.focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } -.bg-blend-lighten { - background-blend-mode: lighten; +.focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } -.bg-blend-color-dodge { - background-blend-mode: color-dodge; +.focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } -.bg-blend-color-burn { - background-blend-mode: color-burn; +.focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } -.bg-blend-hard-light { - background-blend-mode: hard-light; +.focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } -.bg-blend-soft-light { - background-blend-mode: soft-light; +.focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } -.bg-blend-difference { - background-blend-mode: difference; +.focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } -.bg-blend-exclusion { - background-blend-mode: exclusion; +.focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } -.bg-blend-hue { - background-blend-mode: hue; +.focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } -.bg-blend-saturation { - background-blend-mode: saturation; +.focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } -.bg-blend-color { - background-blend-mode: color; +.focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } -.bg-blend-luminosity { - background-blend-mode: luminosity; +.focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } .filter { @@ -29791,27 +29671,147 @@ video { --tw-backdrop-sepia: sepia(100%); } -.example { - font-weight: 700; - color: #ef4444; +.transition-none { + transition-property: none; } -@media (min-width: 640px) { - .sm\:container { - width: 100%; - } +.transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} - @media (min-width: 640px) { - .sm\:container { - max-width: 640px; - } - } +.transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} - @media (min-width: 768px) { - .sm\:container { - max-width: 768px; - } - } +.transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.delay-75 { + transition-delay: 75ms; +} + +.delay-100 { + transition-delay: 100ms; +} + +.delay-150 { + transition-delay: 150ms; +} + +.delay-200 { + transition-delay: 200ms; +} + +.delay-300 { + transition-delay: 300ms; +} + +.delay-500 { + transition-delay: 500ms; +} + +.delay-700 { + transition-delay: 700ms; +} + +.delay-1000 { + transition-delay: 1000ms; +} + +.duration-75 { + transition-duration: 75ms; +} + +.duration-100 { + transition-duration: 100ms; +} + +.duration-150 { + transition-duration: 150ms; +} + +.duration-200 { + transition-duration: 200ms; +} + +.duration-300 { + transition-duration: 300ms; +} + +.duration-500 { + transition-duration: 500ms; +} + +.duration-700 { + transition-duration: 700ms; +} + +.duration-1000 { + transition-duration: 1000ms; +} + +.ease-linear { + transition-timing-function: linear; +} + +.ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +} + +.ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +} + +.ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} + +.example { + font-weight: 700; + color: #ef4444; +} + +@media (min-width: 640px) { + .sm\:container { + width: 100%; + } + + @media (min-width: 640px) { + .sm\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .sm\:container { + max-width: 768px; + } + } @media (min-width: 1024px) { .sm\:container { @@ -29825,21658 +29825,21847 @@ video { } } - @media (min-width: 1536px) { - .sm\:container { - max-width: 1536px; - } + @media (min-width: 1536px) { + .sm\:container { + max-width: 1536px; + } + } + + .sm\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:pointer-events-none { + pointer-events: none; + } + + .sm\:pointer-events-auto { + pointer-events: auto; + } + + .sm\:visible { + visibility: visible; + } + + .sm\:invisible { + visibility: hidden; + } + + .sm\:static { + position: static; + } + + .sm\:fixed { + position: fixed; + } + + .sm\:absolute { + position: absolute; + } + + .sm\:relative { + position: relative; + } + + .sm\:sticky { + position: sticky; + } + + .sm\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .sm\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .sm\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .sm\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; + } + + .sm\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; + } + + .sm\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; + } + + .sm\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; + } + + .sm\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; + } + + .sm\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; + } + + .sm\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; + } + + .sm\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; + } + + .sm\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; + } + + .sm\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; + } + + .sm\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .sm\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; + } + + .sm\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; + } + + .sm\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; + } + + .sm\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; + } + + .sm\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; + } + + .sm\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; + } + + .sm\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; + } + + .sm\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; + } + + .sm\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; + } + + .sm\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; + } + + .sm\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; + } + + .sm\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; + } + + .sm\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; + } + + .sm\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; + } + + .sm\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; + } + + .sm\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; + } + + .sm\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .sm\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; + } + + .sm\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .sm\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .sm\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .sm\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .sm\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .sm\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .sm\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .sm\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; + } + + .sm\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; + } + + .sm\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; + } + + .sm\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; + } + + .sm\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; + } + + .sm\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; + } + + .sm\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; + } + + .sm\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; + } + + .sm\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; + } + + .sm\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; + } + + .sm\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .sm\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; + } + + .sm\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; + } + + .sm\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; + } + + .sm\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; + } + + .sm\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; + } + + .sm\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; + } + + .sm\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; + } + + .sm\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; + } + + .sm\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; + } + + .sm\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; + } + + .sm\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; + } + + .sm\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; + } + + .sm\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; + } + + .sm\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; + } + + .sm\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; + } + + .sm\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; + } + + .sm\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .sm\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .sm\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .sm\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .sm\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .sm\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .sm\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .sm\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .sm\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .sm\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .sm\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .sm\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .sm\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .sm\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .sm\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .sm\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .sm\:inset-x-0 { + right: 0px; + left: 0px; + } + + .sm\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .sm\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .sm\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .sm\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .sm\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .sm\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; + } + + .sm\:inset-y-4 { + top: 1rem; + bottom: 1rem; + } + + .sm\:inset-x-4 { + right: 1rem; + left: 1rem; + } + + .sm\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; + } + + .sm\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; + } + + .sm\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; + } + + .sm\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; + } + + .sm\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; + } + + .sm\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; + } + + .sm\:inset-y-8 { + top: 2rem; + bottom: 2rem; + } + + .sm\:inset-x-8 { + right: 2rem; + left: 2rem; + } + + .sm\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; + } + + .sm\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; + } + + .sm\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; + } + + .sm\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; + } + + .sm\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; + } + + .sm\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; + } + + .sm\:inset-y-12 { + top: 3rem; + bottom: 3rem; + } + + .sm\:inset-x-12 { + right: 3rem; + left: 3rem; + } + + .sm\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .sm\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .sm\:inset-y-16 { + top: 4rem; + bottom: 4rem; + } + + .sm\:inset-x-16 { + right: 4rem; + left: 4rem; + } + + .sm\:inset-y-20 { + top: 5rem; + bottom: 5rem; + } + + .sm\:inset-x-20 { + right: 5rem; + left: 5rem; + } + + .sm\:inset-y-24 { + top: 6rem; + bottom: 6rem; + } + + .sm\:inset-x-24 { + right: 6rem; + left: 6rem; + } + + .sm\:inset-y-28 { + top: 7rem; + bottom: 7rem; + } + + .sm\:inset-x-28 { + right: 7rem; + left: 7rem; + } + + .sm\:inset-y-32 { + top: 8rem; + bottom: 8rem; + } + + .sm\:inset-x-32 { + right: 8rem; + left: 8rem; + } + + .sm\:inset-y-36 { + top: 9rem; + bottom: 9rem; + } + + .sm\:inset-x-36 { + right: 9rem; + left: 9rem; + } + + .sm\:inset-y-40 { + top: 10rem; + bottom: 10rem; + } + + .sm\:inset-x-40 { + right: 10rem; + left: 10rem; + } + + .sm\:inset-y-44 { + top: 11rem; + bottom: 11rem; + } + + .sm\:inset-x-44 { + right: 11rem; + left: 11rem; + } + + .sm\:inset-y-48 { + top: 12rem; + bottom: 12rem; + } + + .sm\:inset-x-48 { + right: 12rem; + left: 12rem; + } + + .sm\:inset-y-52 { + top: 13rem; + bottom: 13rem; + } + + .sm\:inset-x-52 { + right: 13rem; + left: 13rem; + } + + .sm\:inset-y-56 { + top: 14rem; + bottom: 14rem; + } + + .sm\:inset-x-56 { + right: 14rem; + left: 14rem; + } + + .sm\:inset-y-60 { + top: 15rem; + bottom: 15rem; + } + + .sm\:inset-x-60 { + right: 15rem; + left: 15rem; + } + + .sm\:inset-y-64 { + top: 16rem; + bottom: 16rem; + } + + .sm\:inset-x-64 { + right: 16rem; + left: 16rem; + } + + .sm\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .sm\: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\:inset-x-72 { + right: 18rem; + left: 18rem; } - .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\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .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\:inset-x-80 { + right: 20rem; + left: 20rem; } - .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\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .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\:inset-x-96 { + right: 24rem; + left: 24rem; } - .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\:inset-y-auto { + top: auto; + bottom: auto; } - .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\:inset-x-auto { + right: auto; + left: auto; } - .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\:inset-y-px { + top: 1px; + bottom: 1px; } - .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\:inset-x-px { + right: 1px; + left: 1px; } - .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\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .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\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .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\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .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\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .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\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .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\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .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\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .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\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .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\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .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\:-inset-x-0 { + right: 0px; + left: 0px; } - .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\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .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\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .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\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .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\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .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\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .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\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .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\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .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\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .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\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .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\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } - .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\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - .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\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - .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\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - .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\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - .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\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - .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\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .sm\:right-6 { + right: 1.5rem; } - .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .sm\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .sm\:right-9 { + right: 2.25rem; } - .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .sm\:bottom-9 { + bottom: 2.25rem; } - .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .sm\:left-9 { + left: 2.25rem; } - .sm\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .sm\:top-10 { + top: 2.5rem; } - .sm\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + .sm\:right-10 { + right: 2.5rem; } - .sm\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + .sm\:bottom-10 { + bottom: 2.5rem; } - .sm\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + .sm\:left-10 { + left: 2.5rem; } - .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + .sm\:top-11 { + top: 2.75rem; } - .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + .sm\:right-11 { + right: 2.75rem; } - .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + .sm\:bottom-11 { + bottom: 2.75rem; } - .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + .sm\:left-11 { + left: 2.75rem; } - .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + .sm\:top-12 { + top: 3rem; } - .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + .sm\:right-12 { + right: 3rem; } - .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + .sm\:bottom-12 { + bottom: 3rem; } - .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + .sm\:left-12 { + left: 3rem; } - .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + .sm\:top-14 { + top: 3.5rem; } - .sm\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); + .sm\:right-14 { + right: 3.5rem; } - .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); + .sm\:bottom-14 { + bottom: 3.5rem; } - .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); + .sm\:left-14 { + left: 3.5rem; } - .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); + .sm\:top-16 { + top: 4rem; } - .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); + .sm\:right-16 { + right: 4rem; } - .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); + .sm\:bottom-16 { + bottom: 4rem; } - .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); + .sm\:left-16 { + left: 4rem; } - .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); + .sm\:top-20 { + top: 5rem; } - .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); + .sm\:right-20 { + right: 5rem; } - .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); + .sm\:bottom-20 { + bottom: 5rem; } - .sm\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); + .sm\:left-20 { + left: 5rem; } - .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); + .sm\:top-24 { + top: 6rem; } - .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); + .sm\:right-24 { + right: 6rem; } - .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); + .sm\:bottom-24 { + bottom: 6rem; } - .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); + .sm\:left-24 { + left: 6rem; } - .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + .sm\:top-28 { + top: 7rem; } - .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); + .sm\:right-28 { + right: 7rem; } - .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); + .sm\:bottom-28 { + bottom: 7rem; } - .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); + .sm\:left-28 { + left: 7rem; } - .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); + .sm\:top-32 { + top: 8rem; } - .sm\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); + .sm\:right-32 { + right: 8rem; } - .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); + .sm\:bottom-32 { + bottom: 8rem; } - .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); + .sm\:left-32 { + left: 8rem; } - .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); + .sm\:top-36 { + top: 9rem; } - .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); + .sm\:right-36 { + right: 9rem; } - .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); + .sm\:bottom-36 { + bottom: 9rem; } - .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); + .sm\:left-36 { + left: 9rem; } - .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); + .sm\:top-40 { + top: 10rem; } - .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); + .sm\:right-40 { + right: 10rem; } - .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); + .sm\:bottom-40 { + bottom: 10rem; } - .sm\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); + .sm\:left-40 { + left: 10rem; } - .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); + .sm\:top-44 { + top: 11rem; } - .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); + .sm\:right-44 { + right: 11rem; } - .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); + .sm\:bottom-44 { + bottom: 11rem; } - .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); + .sm\:left-44 { + left: 11rem; } - .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + .sm\:top-48 { + top: 12rem; } - .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); + .sm\:right-48 { + right: 12rem; } - .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); + .sm\:bottom-48 { + bottom: 12rem; } - .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); + .sm\:left-48 { + left: 12rem; } - .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); + .sm\:top-52 { + top: 13rem; } - .sm\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); + .sm\:right-52 { + right: 13rem; } - .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); + .sm\:bottom-52 { + bottom: 13rem; } - .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); + .sm\:left-52 { + left: 13rem; } - .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); + .sm\:top-56 { + top: 14rem; } - .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); + .sm\:right-56 { + right: 14rem; } - .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); + .sm\:bottom-56 { + bottom: 14rem; } - .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); + .sm\:left-56 { + left: 14rem; } - .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); + .sm\:top-60 { + top: 15rem; } - .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); + .sm\:right-60 { + right: 15rem; } - .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); + .sm\:bottom-60 { + bottom: 15rem; } - .sm\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); + .sm\:left-60 { + left: 15rem; } - .sm\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); + .sm\:top-64 { + top: 16rem; } - .sm\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); + .sm\:right-64 { + right: 16rem; } - .sm\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); + .sm\:bottom-64 { + bottom: 16rem; } - .sm\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); + .sm\:left-64 { + left: 16rem; } - .sm\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); + .sm\:top-72 { + top: 18rem; } - .sm\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); + .sm\:right-72 { + right: 18rem; } - .sm\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); + .sm\:bottom-72 { + bottom: 18rem; } - .sm\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); + .sm\:left-72 { + left: 18rem; } - .sm\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); + .sm\:top-80 { + top: 20rem; } - .sm\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); + .sm\:right-80 { + right: 20rem; } - .sm\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); + .sm\:bottom-80 { + bottom: 20rem; } - .sm\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); + .sm\:left-80 { + left: 20rem; } - .sm\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); + .sm\:top-96 { + top: 24rem; } - .sm\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); + .sm\:right-96 { + right: 24rem; } - .sm\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); + .sm\:bottom-96 { + bottom: 24rem; } - .sm\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); + .sm\:left-96 { + left: 24rem; } - .sm\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); + .sm\:top-auto { + top: auto; } - .sm\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); + .sm\:right-auto { + right: auto; } - .sm\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); + .sm\:bottom-auto { + bottom: auto; } - .sm\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .sm\:left-auto { + left: auto; } - .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .sm\:top-px { + top: 1px; } - .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .sm\:right-px { + right: 1px; } - .sm\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .sm\:bottom-px { + bottom: 1px; } - .sm\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .sm\:left-px { + left: 1px; } - .sm\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; + .sm\:top-0\.5 { + top: 0.125rem; } - .sm\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; + .sm\:right-0\.5 { + right: 0.125rem; } - .sm\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; + .sm\:bottom-0\.5 { + bottom: 0.125rem; } - .sm\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; + .sm\:left-0\.5 { + left: 0.125rem; } - .sm\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; + .sm\:top-1\.5 { + top: 0.375rem; } - .sm\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; + .sm\:right-1\.5 { + right: 0.375rem; } - .sm\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; + .sm\:bottom-1\.5 { + bottom: 0.375rem; } - .sm\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; + .sm\:left-1\.5 { + left: 0.375rem; } - .sm\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; + .sm\:top-2\.5 { + top: 0.625rem; } - .sm\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; + .sm\:right-2\.5 { + right: 0.625rem; } - .sm\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; + .sm\:bottom-2\.5 { + bottom: 0.625rem; } - .sm\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; + .sm\:left-2\.5 { + left: 0.625rem; } - .sm\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; + .sm\:top-3\.5 { + top: 0.875rem; } - .sm\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; + .sm\:right-3\.5 { + right: 0.875rem; } - .sm\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; + .sm\:bottom-3\.5 { + bottom: 0.875rem; } - .sm\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .sm\:left-3\.5 { + left: 0.875rem; } - .sm\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .sm\:-top-0 { + top: 0px; } - .sm\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .sm\:-right-0 { + right: 0px; } - .sm\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .sm\:-bottom-0 { + bottom: 0px; } - .sm\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .sm\:-left-0 { + left: 0px; } - .sm\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .sm\:-top-1 { + top: -0.25rem; } - .sm\:appearance-none { - appearance: none; + .sm\:-right-1 { + right: -0.25rem; } - .sm\:bg-fixed { - background-attachment: fixed; + .sm\:-bottom-1 { + bottom: -0.25rem; } - .sm\:bg-local { - background-attachment: local; + .sm\:-left-1 { + left: -0.25rem; } - .sm\:bg-scroll { - background-attachment: scroll; + .sm\:-top-2 { + top: -0.5rem; } - .sm\:bg-clip-border { - background-clip: border-box; + .sm\:-right-2 { + right: -0.5rem; } - .sm\:bg-clip-padding { - background-clip: padding-box; + .sm\:-bottom-2 { + bottom: -0.5rem; } - .sm\:bg-clip-content { - background-clip: content-box; + .sm\:-left-2 { + left: -0.5rem; } - .sm\:bg-clip-text { - background-clip: text; + .sm\:-top-3 { + top: -0.75rem; } - .sm\:bg-transparent { - background-color: transparent; + .sm\:-right-3 { + right: -0.75rem; } - .sm\:bg-current { - background-color: currentColor; + .sm\:-bottom-3 { + bottom: -0.75rem; } - .sm\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .sm\:-left-3 { + left: -0.75rem; } - .sm\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .sm\:-top-4 { + top: -1rem; } - .sm\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .sm\:-right-4 { + right: -1rem; } - .sm\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .sm\:-bottom-4 { + bottom: -1rem; } - .sm\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .sm\:-left-4 { + left: -1rem; } - .sm\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .sm\:-top-5 { + top: -1.25rem; } - .sm\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .sm\:-right-5 { + right: -1.25rem; } - .sm\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .sm\:-bottom-5 { + bottom: -1.25rem; } - .sm\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .sm\:-left-5 { + left: -1.25rem; } - .sm\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .sm\:-top-6 { + top: -1.5rem; } - .sm\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .sm\:-right-6 { + right: -1.5rem; } - .sm\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .sm\:-bottom-6 { + bottom: -1.5rem; } - .sm\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .sm\:-left-6 { + left: -1.5rem; } - .sm\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .sm\:-top-7 { + top: -1.75rem; } - .sm\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .sm\:-right-7 { + right: -1.75rem; } - .sm\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .sm\:-bottom-7 { + bottom: -1.75rem; } - .sm\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .sm\:-left-7 { + left: -1.75rem; } - .sm\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .sm\:-top-8 { + top: -2rem; } - .sm\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .sm\:-right-8 { + right: -2rem; } - .sm\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .sm\:-bottom-8 { + bottom: -2rem; } - .sm\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .sm\:-left-8 { + left: -2rem; } - .sm\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .sm\:-top-9 { + top: -2.25rem; } - .sm\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .sm\:-right-9 { + right: -2.25rem; } - .sm\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .sm\:-bottom-9 { + bottom: -2.25rem; } - .sm\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .sm\:-left-9 { + left: -2.25rem; } - .sm\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .sm\:-top-10 { + top: -2.5rem; } - .sm\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .sm\:-right-10 { + right: -2.5rem; } - .sm\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .sm\:-bottom-10 { + bottom: -2.5rem; } - .sm\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .sm\:-left-10 { + left: -2.5rem; } - .sm\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .sm\:-top-11 { + top: -2.75rem; } - .sm\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .sm\:-right-11 { + right: -2.75rem; } - .sm\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .sm\:-bottom-11 { + bottom: -2.75rem; } - .sm\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .sm\:-left-11 { + left: -2.75rem; } - .sm\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .sm\:-top-12 { + top: -3rem; } - .sm\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .sm\:-right-12 { + right: -3rem; } - .sm\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .sm\:-bottom-12 { + bottom: -3rem; } - .sm\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .sm\:-left-12 { + left: -3rem; } - .sm\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .sm\:-top-14 { + top: -3.5rem; } - .sm\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .sm\:-right-14 { + right: -3.5rem; } - .sm\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .sm\:-bottom-14 { + bottom: -3.5rem; } - .sm\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .sm\:-left-14 { + left: -3.5rem; } - .sm\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .sm\:-top-16 { + top: -4rem; } - .sm\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .sm\:-right-16 { + right: -4rem; } - .sm\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .sm\:-bottom-16 { + bottom: -4rem; } - .sm\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .sm\:-left-16 { + left: -4rem; } - .sm\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .sm\:-top-20 { + top: -5rem; } - .sm\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .sm\:-right-20 { + right: -5rem; } - .sm\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .sm\:-bottom-20 { + bottom: -5rem; } - .sm\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .sm\:-left-20 { + left: -5rem; } - .sm\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .sm\:-top-24 { + top: -6rem; } - .sm\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .sm\:-right-24 { + right: -6rem; } - .sm\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .sm\:-bottom-24 { + bottom: -6rem; } - .sm\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .sm\:-left-24 { + left: -6rem; } - .sm\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .sm\:-top-28 { + top: -7rem; } - .sm\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .sm\:-right-28 { + right: -7rem; } - .sm\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .sm\:-bottom-28 { + bottom: -7rem; } - .sm\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .sm\:-left-28 { + left: -7rem; } - .sm\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .sm\:-top-32 { + top: -8rem; } - .sm\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .sm\:-right-32 { + right: -8rem; } - .sm\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .sm\:-bottom-32 { + bottom: -8rem; } - .sm\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .sm\:-left-32 { + left: -8rem; } - .sm\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .sm\:-top-36 { + top: -9rem; } - .sm\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .sm\:-right-36 { + right: -9rem; } - .sm\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .sm\:-bottom-36 { + bottom: -9rem; } - .sm\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .sm\:-left-36 { + left: -9rem; } - .sm\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .sm\:-top-40 { + top: -10rem; } - .sm\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .sm\:-right-40 { + right: -10rem; } - .sm\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .sm\:-bottom-40 { + bottom: -10rem; } - .sm\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .sm\:-left-40 { + left: -10rem; } - .sm\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .sm\:-top-44 { + top: -11rem; } - .sm\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .sm\:-right-44 { + right: -11rem; } - .sm\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .sm\:-bottom-44 { + bottom: -11rem; } - .sm\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .sm\:-left-44 { + left: -11rem; } - .sm\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .sm\:-top-48 { + top: -12rem; } - .sm\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .sm\:-right-48 { + right: -12rem; } - .sm\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .sm\:-bottom-48 { + bottom: -12rem; } - .sm\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .sm\:-left-48 { + left: -12rem; } - .sm\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .sm\:-top-52 { + top: -13rem; } - .sm\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .sm\:-right-52 { + right: -13rem; } - .sm\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .sm\:-bottom-52 { + bottom: -13rem; + } + + .sm\:-left-52 { + left: -13rem; } - .sm\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .sm\:-top-56 { + top: -14rem; } - .sm\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .sm\:-right-56 { + right: -14rem; } - .group:hover .sm\:group-hover\:bg-transparent { - background-color: transparent; + .sm\:-bottom-56 { + bottom: -14rem; } - .group:hover .sm\:group-hover\:bg-current { - background-color: currentColor; + .sm\:-left-56 { + left: -14rem; } - .group:hover .sm\:group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .sm\:-top-60 { + top: -15rem; } - .group:hover .sm\:group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .sm\:-right-60 { + right: -15rem; } - .group:hover .sm\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .sm\:-bottom-60 { + bottom: -15rem; } - .group:hover .sm\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .sm\:-left-60 { + left: -15rem; } - .group:hover .sm\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .sm\:-top-64 { + top: -16rem; } - .group:hover .sm\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .sm\:-right-64 { + right: -16rem; } - .group:hover .sm\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .sm\:-bottom-64 { + bottom: -16rem; } - .group:hover .sm\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .sm\:-left-64 { + left: -16rem; } - .group:hover .sm\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .sm\:-top-72 { + top: -18rem; } - .group:hover .sm\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .sm\:-right-72 { + right: -18rem; } - .group:hover .sm\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .sm\:-bottom-72 { + bottom: -18rem; } - .group:hover .sm\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .sm\:-left-72 { + left: -18rem; } - .group:hover .sm\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .sm\:-top-80 { + top: -20rem; } - .group:hover .sm\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .sm\:-right-80 { + right: -20rem; } - .group:hover .sm\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .sm\:-bottom-80 { + bottom: -20rem; } - .group:hover .sm\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .sm\:-left-80 { + left: -20rem; } - .group:hover .sm\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .sm\:-top-96 { + top: -24rem; } - .group:hover .sm\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .sm\:-right-96 { + right: -24rem; } - .group:hover .sm\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .sm\:-bottom-96 { + bottom: -24rem; } - .group:hover .sm\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .sm\:-left-96 { + left: -24rem; } - .group:hover .sm\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .sm\:-top-px { + top: -1px; } - .group:hover .sm\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .sm\:-right-px { + right: -1px; } - .group:hover .sm\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .sm\:-bottom-px { + bottom: -1px; } - .group:hover .sm\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .sm\:-left-px { + left: -1px; } - .group:hover .sm\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .sm\:-top-0\.5 { + top: -0.125rem; } - .group:hover .sm\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .sm\:-right-0\.5 { + right: -0.125rem; } - .group:hover .sm\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .sm\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .sm\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .sm\:-left-0\.5 { + left: -0.125rem; } - .group:hover .sm\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .sm\:-top-1\.5 { + top: -0.375rem; } - .group:hover .sm\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .sm\:-right-1\.5 { + right: -0.375rem; } - .group:hover .sm\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .sm\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .sm\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .sm\:-left-1\.5 { + left: -0.375rem; } - .group:hover .sm\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .sm\:-top-2\.5 { + top: -0.625rem; } - .group:hover .sm\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .sm\:-right-2\.5 { + right: -0.625rem; } - .group:hover .sm\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .sm\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .sm\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .sm\:-left-2\.5 { + left: -0.625rem; } - .group:hover .sm\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .sm\:-top-3\.5 { + top: -0.875rem; } - .group:hover .sm\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .sm\:-right-3\.5 { + right: -0.875rem; } - .group:hover .sm\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .sm\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .sm\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .sm\:-left-3\.5 { + left: -0.875rem; } - .group:hover .sm\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .sm\:top-1\/2 { + top: 50%; } - .group:hover .sm\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .sm\:right-1\/2 { + right: 50%; } - .group:hover .sm\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .sm\:bottom-1\/2 { + bottom: 50%; } - .group:hover .sm\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .sm\:left-1\/2 { + left: 50%; } - .group:hover .sm\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .sm\:top-1\/3 { + top: 33.333333%; } - .group:hover .sm\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .sm\:right-1\/3 { + right: 33.333333%; } - .group:hover .sm\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .sm\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .sm\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .sm\:left-1\/3 { + left: 33.333333%; } - .group:hover .sm\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .sm\:top-2\/3 { + top: 66.666667%; } - .group:hover .sm\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .sm\:right-2\/3 { + right: 66.666667%; } - .group:hover .sm\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .sm\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .sm\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .sm\:left-2\/3 { + left: 66.666667%; } - .group:hover .sm\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .sm\:top-1\/4 { + top: 25%; } - .group:hover .sm\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .sm\:right-1\/4 { + right: 25%; } - .group:hover .sm\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .sm\:bottom-1\/4 { + bottom: 25%; } - .group:hover .sm\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .sm\:left-1\/4 { + left: 25%; } - .group:hover .sm\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .sm\:top-2\/4 { + top: 50%; } - .group:hover .sm\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .sm\:right-2\/4 { + right: 50%; } - .group:hover .sm\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .sm\:bottom-2\/4 { + bottom: 50%; } - .group:hover .sm\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .sm\:left-2\/4 { + left: 50%; } - .group:hover .sm\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .sm\:top-3\/4 { + top: 75%; } - .group:hover .sm\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .sm\:right-3\/4 { + right: 75%; } - .group:hover .sm\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .sm\:bottom-3\/4 { + bottom: 75%; } - .group:hover .sm\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .sm\:left-3\/4 { + left: 75%; } - .group:hover .sm\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .sm\:top-full { + top: 100%; } - .group:hover .sm\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .sm\:right-full { + right: 100%; } - .group:hover .sm\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .sm\:bottom-full { + bottom: 100%; } - .group:hover .sm\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .sm\:left-full { + left: 100%; } - .group:hover .sm\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .sm\:-top-1\/2 { + top: -50%; } - .group:hover .sm\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .sm\:-right-1\/2 { + right: -50%; } - .group:hover .sm\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .sm\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .sm\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .sm\:-left-1\/2 { + left: -50%; } - .group:hover .sm\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .sm\:-top-1\/3 { + top: -33.333333%; } - .group:hover .sm\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .sm\:-right-1\/3 { + right: -33.333333%; } - .group:hover .sm\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .sm\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .sm\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .sm\:-left-1\/3 { + left: -33.333333%; } - .group:hover .sm\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .sm\:-top-2\/3 { + top: -66.666667%; } - .group:hover .sm\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .sm\:-right-2\/3 { + right: -66.666667%; } - .group:hover .sm\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .sm\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .sm\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .sm\:-left-2\/3 { + left: -66.666667%; } - .group:hover .sm\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .sm\:-top-1\/4 { + top: -25%; } - .group:hover .sm\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .sm\:-right-1\/4 { + right: -25%; } - .sm\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .sm\:-bottom-1\/4 { + bottom: -25%; } - .sm\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .sm\:-left-1\/4 { + left: -25%; } - .sm\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .sm\:-top-2\/4 { + top: -50%; } - .sm\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .sm\:-right-2\/4 { + right: -50%; } - .sm\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .sm\:-bottom-2\/4 { + bottom: -50%; } - .sm\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .sm\:-left-2\/4 { + left: -50%; } - .sm\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .sm\:-top-3\/4 { + top: -75%; } - .sm\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .sm\:-right-3\/4 { + right: -75%; } - .sm\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .sm\:-bottom-3\/4 { + bottom: -75%; } - .sm\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .sm\:-left-3\/4 { + left: -75%; } - .sm\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .sm\:-top-full { + top: -100%; } - .sm\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .sm\:-right-full { + right: -100%; } - .sm\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .sm\:-bottom-full { + bottom: -100%; } - .sm\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .sm\:-left-full { + left: -100%; } - .sm\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .sm\:isolate { + isolation: isolate; } - .sm\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .sm\:isolation-auto { + isolation: auto; } - .sm\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .sm\:z-0 { + z-index: 0; } - .sm\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .sm\:z-10 { + z-index: 10; } - .sm\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .sm\:z-20 { + z-index: 20; } - .sm\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .sm\:z-30 { + z-index: 30; } - .sm\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .sm\:z-40 { + z-index: 40; } - .sm\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .sm\:z-50 { + z-index: 50; } - .sm\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .sm\:z-auto { + z-index: auto; } - .sm\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .sm\:focus-within\:z-0:focus-within { + z-index: 0; } - .sm\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .sm\:focus-within\:z-10:focus-within { + z-index: 10; } - .sm\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .sm\:focus-within\:z-20:focus-within { + z-index: 20; } - .sm\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .sm\:focus-within\:z-30:focus-within { + z-index: 30; } - .sm\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .sm\:focus-within\:z-40:focus-within { + z-index: 40; } - .sm\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .sm\:focus-within\:z-50:focus-within { + z-index: 50; } - .sm\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .sm\:focus-within\:z-auto:focus-within { + z-index: auto; } - .sm\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .sm\:focus\:z-0:focus { + z-index: 0; } - .sm\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .sm\:focus\:z-10:focus { + z-index: 10; } - .sm\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .sm\:focus\:z-20:focus { + z-index: 20; } - .sm\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .sm\:focus\:z-30:focus { + z-index: 30; } - .sm\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .sm\:focus\:z-40:focus { + z-index: 40; } - .sm\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .sm\:focus\:z-50:focus { + z-index: 50; } - .sm\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .sm\:focus\:z-auto:focus { + z-index: auto; } - .sm\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .sm\:order-1 { + order: 1; } - .sm\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .sm\:order-2 { + order: 2; } - .sm\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .sm\:order-3 { + order: 3; } - .sm\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .sm\:order-4 { + order: 4; } - .sm\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .sm\:order-5 { + order: 5; } - .sm\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .sm\:order-6 { + order: 6; } - .sm\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .sm\:order-7 { + order: 7; } - .sm\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .sm\:order-8 { + order: 8; } - .sm\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .sm\:order-9 { + order: 9; } - .sm\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .sm\:order-10 { + order: 10; } - .sm\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .sm\:order-11 { + order: 11; } - .sm\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .sm\:order-12 { + order: 12; } - .sm\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .sm\:order-first { + order: -9999; } - .sm\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .sm\:order-last { + order: 9999; } - .sm\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .sm\:order-none { + order: 0; } - .sm\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .sm\:col-auto { + grid-column: auto; } - .sm\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .sm\:col-span-1 { + grid-column: span 1 / span 1; } - .sm\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .sm\:col-span-2 { + grid-column: span 2 / span 2; } - .sm\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .sm\:col-span-3 { + grid-column: span 3 / span 3; } - .sm\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .sm\:col-span-4 { + grid-column: span 4 / span 4; } - .sm\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .sm\:col-span-5 { + grid-column: span 5 / span 5; } - .sm\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .sm\:col-span-6 { + grid-column: span 6 / span 6; } - .sm\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .sm\:col-span-7 { + grid-column: span 7 / span 7; } - .sm\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .sm\:col-span-8 { + grid-column: span 8 / span 8; } - .sm\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .sm\:col-span-9 { + grid-column: span 9 / span 9; } - .sm\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .sm\:col-span-10 { + grid-column: span 10 / span 10; } - .sm\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .sm\:col-span-11 { + grid-column: span 11 / span 11; } - .sm\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .sm\:col-span-12 { + grid-column: span 12 / span 12; } - .sm\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .sm\:col-span-full { + grid-column: 1 / -1; } - .sm\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .sm\:col-start-1 { + grid-column-start: 1; } - .sm\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .sm\:col-start-2 { + grid-column-start: 2; } - .sm\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .sm\:col-start-3 { + grid-column-start: 3; } - .sm\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .sm\:col-start-4 { + grid-column-start: 4; } - .sm\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .sm\:col-start-5 { + grid-column-start: 5; } - .sm\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .sm\:col-start-6 { + grid-column-start: 6; } - .sm\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .sm\:col-start-7 { + grid-column-start: 7; } - .sm\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .sm\:col-start-8 { + grid-column-start: 8; } - .sm\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .sm\:col-start-9 { + grid-column-start: 9; } - .sm\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .sm\:col-start-10 { + grid-column-start: 10; } - .sm\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .sm\:col-start-11 { + grid-column-start: 11; } - .sm\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .sm\:col-start-12 { + grid-column-start: 12; } - .sm\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .sm\:col-start-13 { + grid-column-start: 13; } - .sm\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .sm\:col-start-auto { + grid-column-start: auto; } - .sm\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .sm\:col-end-1 { + grid-column-end: 1; } - .sm\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .sm\:col-end-2 { + grid-column-end: 2; } - .sm\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .sm\:col-end-3 { + grid-column-end: 3; } - .sm\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .sm\:col-end-4 { + grid-column-end: 4; } - .sm\:hover\:bg-transparent:hover { - background-color: transparent; + .sm\:col-end-5 { + grid-column-end: 5; } - .sm\:hover\:bg-current:hover { - background-color: currentColor; + .sm\:col-end-6 { + grid-column-end: 6; } - .sm\:hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .sm\:col-end-7 { + grid-column-end: 7; } - .sm\:hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .sm\:col-end-8 { + grid-column-end: 8; } - .sm\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .sm\:col-end-9 { + grid-column-end: 9; } - .sm\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .sm\:col-end-10 { + grid-column-end: 10; } - .sm\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .sm\:col-end-11 { + grid-column-end: 11; } - .sm\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .sm\:col-end-12 { + grid-column-end: 12; } - .sm\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .sm\:col-end-13 { + grid-column-end: 13; } - .sm\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .sm\:col-end-auto { + grid-column-end: auto; } - .sm\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .sm\:row-auto { + grid-row: auto; } - .sm\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .sm\:row-span-1 { + grid-row: span 1 / span 1; } - .sm\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .sm\:row-span-2 { + grid-row: span 2 / span 2; } - .sm\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .sm\:row-span-3 { + grid-row: span 3 / span 3; } - .sm\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .sm\:row-span-4 { + grid-row: span 4 / span 4; } - .sm\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .sm\:row-span-5 { + grid-row: span 5 / span 5; } - .sm\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .sm\:row-span-6 { + grid-row: span 6 / span 6; } - .sm\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .sm\:row-span-full { + grid-row: 1 / -1; } - .sm\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .sm\:row-start-1 { + grid-row-start: 1; } - .sm\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .sm\:row-start-2 { + grid-row-start: 2; } - .sm\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .sm\:row-start-3 { + grid-row-start: 3; } - .sm\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .sm\:row-start-4 { + grid-row-start: 4; } - .sm\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .sm\:row-start-5 { + grid-row-start: 5; } - .sm\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .sm\:row-start-6 { + grid-row-start: 6; } - .sm\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .sm\:row-start-7 { + grid-row-start: 7; } - .sm\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .sm\:row-start-auto { + grid-row-start: auto; } - .sm\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .sm\:row-end-1 { + grid-row-end: 1; } - .sm\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .sm\:row-end-2 { + grid-row-end: 2; } - .sm\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .sm\:row-end-3 { + grid-row-end: 3; } - .sm\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .sm\:row-end-4 { + grid-row-end: 4; } - .sm\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .sm\:row-end-5 { + grid-row-end: 5; } - .sm\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .sm\:row-end-6 { + grid-row-end: 6; } - .sm\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .sm\:row-end-7 { + grid-row-end: 7; } - .sm\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .sm\:row-end-auto { + grid-row-end: auto; } - .sm\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .sm\:float-right { + float: right; } - .sm\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .sm\:float-left { + float: left; } - .sm\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .sm\:float-none { + float: none; } - .sm\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .sm\:clear-left { + clear: left; } - .sm\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .sm\:clear-right { + clear: right; } - .sm\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .sm\:clear-both { + clear: both; } - .sm\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .sm\:clear-none { + clear: none; } - .sm\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .sm\:m-0 { + margin: 0px; } - .sm\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .sm\:m-1 { + margin: 0.25rem; } - .sm\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .sm\:m-2 { + margin: 0.5rem; } - .sm\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .sm\:m-3 { + margin: 0.75rem; } - .sm\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .sm\:m-4 { + margin: 1rem; } - .sm\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .sm\:m-5 { + margin: 1.25rem; } - .sm\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .sm\:m-6 { + margin: 1.5rem; } - .sm\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .sm\:m-7 { + margin: 1.75rem; } - .sm\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .sm\:m-8 { + margin: 2rem; } - .sm\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .sm\:m-9 { + margin: 2.25rem; } - .sm\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .sm\:m-10 { + margin: 2.5rem; } - .sm\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .sm\:m-11 { + margin: 2.75rem; } - .sm\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .sm\:m-12 { + margin: 3rem; } - .sm\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .sm\:m-14 { + margin: 3.5rem; } - .sm\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .sm\:m-16 { + margin: 4rem; } - .sm\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .sm\:m-20 { + margin: 5rem; } - .sm\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .sm\:m-24 { + margin: 6rem; } - .sm\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .sm\:m-28 { + margin: 7rem; } - .sm\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .sm\:m-32 { + margin: 8rem; } - .sm\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .sm\:m-36 { + margin: 9rem; } - .sm\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .sm\:m-40 { + margin: 10rem; } - .sm\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .sm\:m-44 { + margin: 11rem; } - .sm\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .sm\:m-48 { + margin: 12rem; } - .sm\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .sm\:m-52 { + margin: 13rem; } - .sm\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .sm\:m-56 { + margin: 14rem; } - .sm\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .sm\:m-60 { + margin: 15rem; } - .sm\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .sm\:m-64 { + margin: 16rem; } - .sm\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .sm\:m-72 { + margin: 18rem; } - .sm\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .sm\:m-80 { + margin: 20rem; } - .sm\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .sm\:m-96 { + margin: 24rem; } - .sm\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .sm\:m-auto { + margin: auto; } - .sm\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .sm\:m-px { + margin: 1px; } - .sm\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .sm\:m-0\.5 { + margin: 0.125rem; } - .sm\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .sm\:m-1\.5 { + margin: 0.375rem; } - .sm\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .sm\:m-2\.5 { + margin: 0.625rem; } - .sm\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .sm\:m-3\.5 { + margin: 0.875rem; } - .sm\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .sm\:-m-0 { + margin: 0px; } - .sm\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .sm\:-m-1 { + margin: -0.25rem; } - .sm\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .sm\:-m-2 { + margin: -0.5rem; } - .sm\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .sm\:-m-3 { + margin: -0.75rem; } - .sm\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .sm\:-m-4 { + margin: -1rem; } - .sm\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .sm\:-m-5 { + margin: -1.25rem; } - .sm\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .sm\:-m-6 { + margin: -1.5rem; } - .sm\:focus\:bg-transparent:focus { - background-color: transparent; + .sm\:-m-7 { + margin: -1.75rem; } - .sm\:focus\:bg-current:focus { - background-color: currentColor; + .sm\:-m-8 { + margin: -2rem; } - .sm\:focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .sm\:-m-9 { + margin: -2.25rem; } - .sm\:focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .sm\:-m-10 { + margin: -2.5rem; } - .sm\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .sm\:-m-11 { + margin: -2.75rem; } - .sm\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .sm\:-m-12 { + margin: -3rem; } - .sm\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .sm\:-m-14 { + margin: -3.5rem; } - .sm\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .sm\:-m-16 { + margin: -4rem; } - .sm\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .sm\:-m-20 { + margin: -5rem; } - .sm\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .sm\:-m-24 { + margin: -6rem; } - .sm\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .sm\:-m-28 { + margin: -7rem; } - .sm\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .sm\:-m-32 { + margin: -8rem; } - .sm\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .sm\:-m-36 { + margin: -9rem; } - .sm\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .sm\:-m-40 { + margin: -10rem; } - .sm\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .sm\:-m-44 { + margin: -11rem; } - .sm\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .sm\:-m-48 { + margin: -12rem; } - .sm\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .sm\:-m-52 { + margin: -13rem; } - .sm\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .sm\:-m-56 { + margin: -14rem; } - .sm\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .sm\:-m-60 { + margin: -15rem; } - .sm\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .sm\:-m-64 { + margin: -16rem; } - .sm\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .sm\:-m-72 { + margin: -18rem; } - .sm\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .sm\:-m-80 { + margin: -20rem; } - .sm\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .sm\:-m-96 { + margin: -24rem; } - .sm\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .sm\:-m-px { + margin: -1px; } - .sm\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .sm\:-m-0\.5 { + margin: -0.125rem; } - .sm\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .sm\:-m-1\.5 { + margin: -0.375rem; } - .sm\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .sm\:-m-2\.5 { + margin: -0.625rem; } - .sm\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .sm\:-m-3\.5 { + margin: -0.875rem; } - .sm\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .sm\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .sm\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .sm\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .sm\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .sm\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .sm\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .sm\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .sm\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .sm\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .sm\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .sm\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .sm\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .sm\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .sm\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .sm\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .sm\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .sm\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .sm\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .sm\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .sm\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .sm\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .sm\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .sm\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .sm\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .sm\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .sm\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .sm\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .sm\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .sm\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .sm\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .sm\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .sm\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .sm\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .sm\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .sm\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .sm\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .sm\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .sm\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .sm\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .sm\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .sm\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .sm\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .sm\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .sm\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .sm\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .sm\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .sm\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .sm\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .sm\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .sm\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .sm\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .sm\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .sm\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .sm\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .sm\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .sm\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .sm\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .sm\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .sm\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .sm\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .sm\:mx-auto { + margin-left: auto; + margin-right: auto; } - .sm\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .sm\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .sm\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .sm\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .sm\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .sm\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .sm\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .sm\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .sm\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .sm\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .sm\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .sm\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .sm\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .sm\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .sm\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .sm\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .sm\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .sm\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .sm\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .sm\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .sm\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .sm\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .sm\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .sm\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .sm\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .sm\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .sm\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .sm\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .sm\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .sm\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .sm\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .sm\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .sm\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .sm\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .sm\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .sm\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .sm\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .sm\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .sm\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .sm\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .sm\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .sm\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .sm\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .sm\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .sm\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .sm\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .sm\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .sm\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .sm\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .sm\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .sm\:bg-none { - background-image: none; + .sm\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .sm\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .sm\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .sm\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .sm\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .sm\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .sm\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .sm\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .sm\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .sm\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .sm\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .sm\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .sm\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .sm\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .sm\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .sm\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .sm\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .sm\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .sm\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .sm\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .sm\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .sm\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .sm\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .sm\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .sm\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .sm\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .sm\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .sm\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .sm\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .sm\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .sm\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .sm\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .sm\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .sm\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .sm\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .sm\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .sm\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .sm\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .sm\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .sm\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .sm\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .sm\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .sm\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .sm\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .sm\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .sm\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .sm\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .sm\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .sm\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .sm\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .sm\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .sm\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .sm\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .sm\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .sm\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .sm\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .sm\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .sm\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .sm\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .sm\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .sm\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .sm\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .sm\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .sm\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .sm\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .sm\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .sm\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .sm\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .sm\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .sm\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .sm\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .sm\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .sm\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .sm\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .sm\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .sm\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .sm\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .sm\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .sm\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .sm\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .sm\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .sm\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .sm\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .sm\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .sm\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .sm\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .sm\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .sm\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .sm\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .sm\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .sm\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .sm\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .sm\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .sm\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .sm\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:mt-0 { + margin-top: 0px; } - .sm\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:mt-1 { + margin-top: 0.25rem; } - .sm\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:mt-2 { + margin-top: 0.5rem; } - .sm\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:mt-3 { + margin-top: 0.75rem; } - .sm\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:mt-4 { + margin-top: 1rem; } - .sm\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:mt-5 { + margin-top: 1.25rem; } - .sm\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:mt-6 { + margin-top: 1.5rem; } - .sm\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:mt-7 { + margin-top: 1.75rem; } - .sm\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:mt-8 { + margin-top: 2rem; } - .sm\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:mt-9 { + margin-top: 2.25rem; } - .sm\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:mt-10 { + margin-top: 2.5rem; } - .sm\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:mt-11 { + margin-top: 2.75rem; } - .sm\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:mt-12 { + margin-top: 3rem; } - .sm\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:mt-14 { + margin-top: 3.5rem; } - .sm\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:mt-16 { + margin-top: 4rem; } - .sm\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:mt-20 { + margin-top: 5rem; } - .sm\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:mt-24 { + margin-top: 6rem; } - .sm\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:mt-28 { + margin-top: 7rem; } - .sm\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:mt-32 { + margin-top: 8rem; } - .sm\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:mt-36 { + margin-top: 9rem; } - .sm\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:mt-40 { + margin-top: 10rem; } - .sm\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:mt-44 { + margin-top: 11rem; } - .sm\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:mt-48 { + margin-top: 12rem; } - .sm\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:mt-52 { + margin-top: 13rem; } - .sm\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:mt-56 { + margin-top: 14rem; } - .sm\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:mt-60 { + margin-top: 15rem; } - .sm\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:mt-64 { + margin-top: 16rem; } - .sm\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:mt-72 { + margin-top: 18rem; } - .sm\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:mt-80 { + margin-top: 20rem; } - .sm\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:mt-96 { + margin-top: 24rem; } - .sm\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:mt-auto { + margin-top: auto; } - .sm\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:mt-px { + margin-top: 1px; } - .sm\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:mt-0\.5 { + margin-top: 0.125rem; } - .sm\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:mt-1\.5 { + margin-top: 0.375rem; } - .sm\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:mt-2\.5 { + margin-top: 0.625rem; } - .sm\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:mt-3\.5 { + margin-top: 0.875rem; } - .sm\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:-mt-0 { + margin-top: 0px; } - .sm\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:-mt-1 { + margin-top: -0.25rem; } - .sm\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:-mt-2 { + margin-top: -0.5rem; } - .sm\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:-mt-3 { + margin-top: -0.75rem; } - .sm\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:-mt-4 { + margin-top: -1rem; } - .sm\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:-mt-5 { + margin-top: -1.25rem; } - .sm\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:-mt-6 { + margin-top: -1.5rem; } - .sm\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:-mt-7 { + margin-top: -1.75rem; } - .sm\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:-mt-8 { + margin-top: -2rem; } - .sm\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:-mt-9 { + margin-top: -2.25rem; } - .sm\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:-mt-10 { + margin-top: -2.5rem; } - .sm\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:-mt-11 { + margin-top: -2.75rem; } - .sm\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:-mt-12 { + margin-top: -3rem; } - .sm\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:-mt-14 { + margin-top: -3.5rem; } - .sm\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:-mt-16 { + margin-top: -4rem; } - .sm\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:-mt-20 { + margin-top: -5rem; } - .sm\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:-mt-24 { + margin-top: -6rem; } - .sm\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:-mt-28 { + margin-top: -7rem; } - .sm\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:-mt-32 { + margin-top: -8rem; } - .sm\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:-mt-36 { + margin-top: -9rem; } - .sm\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:-mt-40 { + margin-top: -10rem; } - .sm\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:-mt-44 { + margin-top: -11rem; } - .sm\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:-mt-48 { + margin-top: -12rem; } - .sm\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:-mt-52 { + margin-top: -13rem; } - .sm\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:-mt-56 { + margin-top: -14rem; } - .sm\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:-mt-60 { + margin-top: -15rem; } - .sm\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:-mt-64 { + margin-top: -16rem; } - .sm\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:-mt-72 { + margin-top: -18rem; } - .sm\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:-mt-80 { + margin-top: -20rem; } - .sm\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:-mt-96 { + margin-top: -24rem; } - .sm\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:-mt-px { + margin-top: -1px; } - .sm\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:-mt-0\.5 { + margin-top: -0.125rem; } - .sm\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:-mt-1\.5 { + margin-top: -0.375rem; } - .sm\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:-mt-2\.5 { + margin-top: -0.625rem; } - .sm\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:-mt-3\.5 { + margin-top: -0.875rem; } - .sm\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:mr-0 { + margin-right: 0px; } - .sm\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:mr-1 { + margin-right: 0.25rem; } - .sm\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:mr-2 { + margin-right: 0.5rem; } - .sm\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:mr-3 { + margin-right: 0.75rem; } - .sm\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:mr-4 { + margin-right: 1rem; } - .sm\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:mr-5 { + margin-right: 1.25rem; } - .sm\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:mr-6 { + margin-right: 1.5rem; } - .sm\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:mr-7 { + margin-right: 1.75rem; } - .sm\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:mr-8 { + margin-right: 2rem; } - .sm\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:mr-9 { + margin-right: 2.25rem; } - .sm\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:mr-10 { + margin-right: 2.5rem; } - .sm\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:mr-11 { + margin-right: 2.75rem; } - .sm\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:mr-12 { + margin-right: 3rem; } - .sm\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:mr-14 { + margin-right: 3.5rem; } - .sm\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:mr-16 { + margin-right: 4rem; } - .sm\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:mr-20 { + margin-right: 5rem; } - .sm\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:mr-24 { + margin-right: 6rem; } - .sm\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:mr-28 { + margin-right: 7rem; } - .sm\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:mr-32 { + margin-right: 8rem; } - .sm\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:mr-36 { + margin-right: 9rem; } - .sm\:to-transparent { - --tw-gradient-to: transparent; + .sm\:mr-40 { + margin-right: 10rem; } - .sm\:to-current { - --tw-gradient-to: currentColor; + .sm\:mr-44 { + margin-right: 11rem; } - .sm\:to-black { - --tw-gradient-to: #000; + .sm\:mr-48 { + margin-right: 12rem; } - .sm\:to-white { - --tw-gradient-to: #fff; + .sm\:mr-52 { + margin-right: 13rem; } - .sm\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .sm\:mr-56 { + margin-right: 14rem; } - .sm\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .sm\:mr-60 { + margin-right: 15rem; } - .sm\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .sm\:mr-64 { + margin-right: 16rem; } - .sm\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .sm\:mr-72 { + margin-right: 18rem; } - .sm\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .sm\:mr-80 { + margin-right: 20rem; } - .sm\:to-gray-500 { - --tw-gradient-to: #6b7280; + .sm\:mr-96 { + margin-right: 24rem; } - .sm\:to-gray-600 { - --tw-gradient-to: #4b5563; + .sm\:mr-auto { + margin-right: auto; } - .sm\:to-gray-700 { - --tw-gradient-to: #374151; + .sm\:mr-px { + margin-right: 1px; } - .sm\:to-gray-800 { - --tw-gradient-to: #1f2937; + .sm\:mr-0\.5 { + margin-right: 0.125rem; } - .sm\:to-gray-900 { - --tw-gradient-to: #111827; + .sm\:mr-1\.5 { + margin-right: 0.375rem; } - .sm\:to-red-50 { - --tw-gradient-to: #fef2f2; + .sm\:mr-2\.5 { + margin-right: 0.625rem; } - .sm\:to-red-100 { - --tw-gradient-to: #fee2e2; + .sm\:mr-3\.5 { + margin-right: 0.875rem; } - .sm\:to-red-200 { - --tw-gradient-to: #fecaca; + .sm\:-mr-0 { + margin-right: 0px; } - .sm\:to-red-300 { - --tw-gradient-to: #fca5a5; + .sm\:-mr-1 { + margin-right: -0.25rem; } - .sm\:to-red-400 { - --tw-gradient-to: #f87171; + .sm\:-mr-2 { + margin-right: -0.5rem; } - .sm\:to-red-500 { - --tw-gradient-to: #ef4444; + .sm\:-mr-3 { + margin-right: -0.75rem; } - .sm\:to-red-600 { - --tw-gradient-to: #dc2626; + .sm\:-mr-4 { + margin-right: -1rem; } - .sm\:to-red-700 { - --tw-gradient-to: #b91c1c; + .sm\:-mr-5 { + margin-right: -1.25rem; } - .sm\:to-red-800 { - --tw-gradient-to: #991b1b; + .sm\:-mr-6 { + margin-right: -1.5rem; } - .sm\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .sm\:-mr-7 { + margin-right: -1.75rem; } - .sm\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .sm\:-mr-8 { + margin-right: -2rem; } - .sm\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .sm\:-mr-9 { + margin-right: -2.25rem; } - .sm\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .sm\:-mr-10 { + margin-right: -2.5rem; } - .sm\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .sm\:-mr-11 { + margin-right: -2.75rem; } - .sm\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .sm\:-mr-12 { + margin-right: -3rem; } - .sm\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .sm\:-mr-14 { + margin-right: -3.5rem; } - .sm\:to-yellow-600 { - --tw-gradient-to: #d97706; + .sm\:-mr-16 { + margin-right: -4rem; } - .sm\:to-yellow-700 { - --tw-gradient-to: #b45309; + .sm\:-mr-20 { + margin-right: -5rem; } - .sm\:to-yellow-800 { - --tw-gradient-to: #92400e; + .sm\:-mr-24 { + margin-right: -6rem; } - .sm\:to-yellow-900 { - --tw-gradient-to: #78350f; + .sm\:-mr-28 { + margin-right: -7rem; } - .sm\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .sm\:-mr-32 { + margin-right: -8rem; } - .sm\:to-green-100 { - --tw-gradient-to: #d1fae5; + .sm\:-mr-36 { + margin-right: -9rem; } - .sm\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .sm\:-mr-40 { + margin-right: -10rem; } - .sm\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .sm\:-mr-44 { + margin-right: -11rem; } - .sm\:to-green-400 { - --tw-gradient-to: #34d399; + .sm\:-mr-48 { + margin-right: -12rem; } - .sm\:to-green-500 { - --tw-gradient-to: #10b981; + .sm\:-mr-52 { + margin-right: -13rem; } - .sm\:to-green-600 { - --tw-gradient-to: #059669; + .sm\:-mr-56 { + margin-right: -14rem; } - .sm\:to-green-700 { - --tw-gradient-to: #047857; + .sm\:-mr-60 { + margin-right: -15rem; } - .sm\:to-green-800 { - --tw-gradient-to: #065f46; + .sm\:-mr-64 { + margin-right: -16rem; } - .sm\:to-green-900 { - --tw-gradient-to: #064e3b; + .sm\:-mr-72 { + margin-right: -18rem; } - .sm\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .sm\:-mr-80 { + margin-right: -20rem; } - .sm\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .sm\:-mr-96 { + margin-right: -24rem; } - .sm\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .sm\:-mr-px { + margin-right: -1px; } - .sm\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .sm\:-mr-0\.5 { + margin-right: -0.125rem; } - .sm\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .sm\:-mr-1\.5 { + margin-right: -0.375rem; } - .sm\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .sm\:-mr-2\.5 { + margin-right: -0.625rem; } - .sm\:to-blue-600 { - --tw-gradient-to: #2563eb; + .sm\:-mr-3\.5 { + margin-right: -0.875rem; } - .sm\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .sm\:mb-0 { + margin-bottom: 0px; } - .sm\:to-blue-800 { - --tw-gradient-to: #1e40af; + .sm\:mb-1 { + margin-bottom: 0.25rem; } - .sm\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .sm\:mb-2 { + margin-bottom: 0.5rem; } - .sm\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .sm\:mb-3 { + margin-bottom: 0.75rem; } - .sm\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .sm\:mb-4 { + margin-bottom: 1rem; } - .sm\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .sm\:mb-5 { + margin-bottom: 1.25rem; } - .sm\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .sm\:mb-6 { + margin-bottom: 1.5rem; } - .sm\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .sm\:mb-7 { + margin-bottom: 1.75rem; } - .sm\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .sm\:mb-8 { + margin-bottom: 2rem; } - .sm\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .sm\:mb-9 { + margin-bottom: 2.25rem; } - .sm\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .sm\:mb-10 { + margin-bottom: 2.5rem; } - .sm\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .sm\:mb-11 { + margin-bottom: 2.75rem; } - .sm\:to-indigo-900 { - --tw-gradient-to: #312e81; + .sm\:mb-12 { + margin-bottom: 3rem; } - .sm\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .sm\:mb-14 { + margin-bottom: 3.5rem; } - .sm\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .sm\:mb-16 { + margin-bottom: 4rem; } - .sm\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .sm\:mb-20 { + margin-bottom: 5rem; } - .sm\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .sm\:mb-24 { + margin-bottom: 6rem; } - .sm\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .sm\:mb-28 { + margin-bottom: 7rem; } - .sm\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .sm\:mb-32 { + margin-bottom: 8rem; } - .sm\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .sm\:mb-36 { + margin-bottom: 9rem; } - .sm\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .sm\:mb-40 { + margin-bottom: 10rem; } - .sm\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .sm\:mb-44 { + margin-bottom: 11rem; } - .sm\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .sm\:mb-48 { + margin-bottom: 12rem; } - .sm\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .sm\:mb-52 { + margin-bottom: 13rem; } - .sm\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .sm\:mb-56 { + margin-bottom: 14rem; } - .sm\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .sm\:mb-60 { + margin-bottom: 15rem; } - .sm\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .sm\:mb-64 { + margin-bottom: 16rem; } - .sm\:to-pink-400 { - --tw-gradient-to: #f472b6; + .sm\:mb-72 { + margin-bottom: 18rem; } - .sm\:to-pink-500 { - --tw-gradient-to: #ec4899; + .sm\:mb-80 { + margin-bottom: 20rem; } - .sm\:to-pink-600 { - --tw-gradient-to: #db2777; + .sm\:mb-96 { + margin-bottom: 24rem; } - .sm\:to-pink-700 { - --tw-gradient-to: #be185d; + .sm\:mb-auto { + margin-bottom: auto; } - .sm\:to-pink-800 { - --tw-gradient-to: #9d174d; + .sm\:mb-px { + margin-bottom: 1px; } - .sm\:to-pink-900 { - --tw-gradient-to: #831843; + .sm\:mb-0\.5 { + margin-bottom: 0.125rem; } - .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\:mb-1\.5 { + margin-bottom: 0.375rem; } - .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\:mb-2\.5 { + margin-bottom: 0.625rem; } - .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\:mb-3\.5 { + margin-bottom: 0.875rem; } - .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\:-mb-0 { + margin-bottom: 0px; } - .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\:-mb-1 { + margin-bottom: -0.25rem; } - .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\:-mb-2 { + margin-bottom: -0.5rem; } - .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\:-mb-3 { + margin-bottom: -0.75rem; } - .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\:-mb-4 { + margin-bottom: -1rem; } - .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\:-mb-5 { + margin-bottom: -1.25rem; } - .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\:-mb-6 { + margin-bottom: -1.5rem; } - .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\:-mb-7 { + margin-bottom: -1.75rem; } - .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\:-mb-8 { + margin-bottom: -2rem; } - .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\:-mb-9 { + margin-bottom: -2.25rem; } - .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\:-mb-10 { + margin-bottom: -2.5rem; } - .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\:-mb-11 { + margin-bottom: -2.75rem; } - .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\:-mb-12 { + margin-bottom: -3rem; } - .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\:-mb-14 { + margin-bottom: -3.5rem; } - .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\:-mb-16 { + margin-bottom: -4rem; } - .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\:-mb-20 { + margin-bottom: -5rem; } - .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\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .sm\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:-ml-10 { + margin-left: -2.5rem; } - .sm\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:-ml-11 { + margin-left: -2.75rem; } - .sm\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:-ml-12 { + margin-left: -3rem; } - .sm\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:-ml-14 { + margin-left: -3.5rem; } - .sm\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:-ml-16 { + margin-left: -4rem; } - .sm\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:-ml-20 { + margin-left: -5rem; } - .sm\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:-ml-24 { + margin-left: -6rem; } - .sm\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:-ml-28 { + margin-left: -7rem; } - .sm\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:-ml-32 { + margin-left: -8rem; } - .sm\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:-ml-36 { + margin-left: -9rem; } - .sm\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:-ml-40 { + margin-left: -10rem; } - .sm\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:-ml-44 { + margin-left: -11rem; } - .sm\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:-ml-48 { + margin-left: -12rem; } - .sm\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:-ml-52 { + margin-left: -13rem; } - .sm\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:-ml-56 { + margin-left: -14rem; } - .sm\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:-ml-60 { + margin-left: -15rem; } - .sm\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:-ml-64 { + margin-left: -16rem; } - .sm\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:-ml-72 { + margin-left: -18rem; } - .sm\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:-ml-80 { + margin-left: -20rem; } - .sm\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:-ml-96 { + margin-left: -24rem; } - .sm\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:-ml-px { + margin-left: -1px; } - .sm\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:-ml-0\.5 { + margin-left: -0.125rem; } - .sm\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:-ml-1\.5 { + margin-left: -0.375rem; } - .sm\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:-ml-2\.5 { + margin-left: -0.625rem; } - .sm\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:-ml-3\.5 { + margin-left: -0.875rem; } - .sm\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:box-border { + box-sizing: border-box; } - .sm\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:box-content { + box-sizing: content-box; } - .sm\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:block { + display: block; } - .sm\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:inline-block { + display: inline-block; } - .sm\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:inline { + display: inline; } - .sm\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:flex { + display: flex; } - .sm\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:inline-flex { + display: inline-flex; } - .sm\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:table { + display: table; } - .sm\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:inline-table { + display: inline-table; } - .sm\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:table-caption { + display: table-caption; } - .sm\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:table-cell { + display: table-cell; } - .sm\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:table-column { + display: table-column; } - .sm\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:table-column-group { + display: table-column-group; } - .sm\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:table-footer-group { + display: table-footer-group; } - .sm\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:table-header-group { + display: table-header-group; } - .sm\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:table-row-group { + display: table-row-group; } - .sm\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:table-row { + display: table-row; } - .sm\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:flow-root { + display: flow-root; } - .sm\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:grid { + display: grid; } - .sm\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:inline-grid { + display: inline-grid; } - .sm\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:contents { + display: contents; } - .sm\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:list-item { + display: list-item; } - .sm\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:hidden { + display: none; } - .sm\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:h-0 { + height: 0px; } - .sm\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:h-1 { + height: 0.25rem; } - .sm\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:h-2 { + height: 0.5rem; } - .sm\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:h-3 { + height: 0.75rem; } - .sm\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:h-4 { + height: 1rem; } - .sm\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:h-5 { + height: 1.25rem; } - .sm\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:h-6 { + height: 1.5rem; } - .sm\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:h-7 { + height: 1.75rem; } - .sm\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:h-8 { + height: 2rem; } - .sm\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:h-9 { + height: 2.25rem; } - .sm\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:h-10 { + height: 2.5rem; } - .sm\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:h-11 { + height: 2.75rem; } - .sm\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:h-12 { + height: 3rem; } - .sm\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:h-14 { + height: 3.5rem; } - .sm\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:h-16 { + height: 4rem; } - .sm\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:h-20 { + height: 5rem; } - .sm\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:h-24 { + height: 6rem; } - .sm\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:h-28 { + height: 7rem; } - .sm\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:h-32 { + height: 8rem; } - .sm\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:h-36 { + height: 9rem; } - .sm\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:h-40 { + height: 10rem; } - .sm\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:h-44 { + height: 11rem; } - .sm\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:h-48 { + height: 12rem; } - .sm\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:h-52 { + height: 13rem; } - .sm\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:h-56 { + height: 14rem; } - .sm\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:h-60 { + height: 15rem; } - .sm\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:h-64 { + height: 16rem; } - .sm\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:h-72 { + height: 18rem; } - .sm\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:h-80 { + height: 20rem; } - .sm\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:h-96 { + height: 24rem; } - .sm\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:h-auto { + height: auto; } - .sm\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:h-px { + height: 1px; } - .sm\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:h-0\.5 { + height: 0.125rem; } - .sm\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:h-1\.5 { + height: 0.375rem; } - .sm\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:h-2\.5 { + height: 0.625rem; } - .sm\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:h-3\.5 { + height: 0.875rem; } - .sm\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .sm\:h-1\/2 { + height: 50%; } - .sm\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .sm\:h-1\/3 { + height: 33.333333%; } - .sm\:hover\:to-black:hover { - --tw-gradient-to: #000; + .sm\:h-2\/3 { + height: 66.666667%; } - .sm\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .sm\:h-1\/4 { + height: 25%; } - .sm\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .sm\:h-2\/4 { + height: 50%; } - .sm\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .sm\:h-3\/4 { + height: 75%; } - .sm\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .sm\:h-1\/5 { + height: 20%; } - .sm\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .sm\:h-2\/5 { + height: 40%; } - .sm\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .sm\:h-3\/5 { + height: 60%; } - .sm\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .sm\:h-4\/5 { + height: 80%; } - .sm\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .sm\:h-1\/6 { + height: 16.666667%; } - .sm\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .sm\:h-2\/6 { + height: 33.333333%; } - .sm\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .sm\:h-3\/6 { + height: 50%; } - .sm\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .sm\:h-4\/6 { + height: 66.666667%; } - .sm\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .sm\:h-5\/6 { + height: 83.333333%; } - .sm\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .sm\:h-full { + height: 100%; } - .sm\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .sm\:h-screen { + height: 100vh; } - .sm\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .sm\:max-h-0 { + max-height: 0px; } - .sm\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .sm\:max-h-1 { + max-height: 0.25rem; } - .sm\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .sm\:max-h-2 { + max-height: 0.5rem; } - .sm\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .sm\:max-h-3 { + max-height: 0.75rem; } - .sm\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .sm\:max-h-4 { + max-height: 1rem; } - .sm\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .sm\:max-h-5 { + max-height: 1.25rem; } - .sm\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .sm\:max-h-6 { + max-height: 1.5rem; } - .sm\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .sm\:max-h-7 { + max-height: 1.75rem; } - .sm\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .sm\:max-h-8 { + max-height: 2rem; } - .sm\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .sm\:max-h-9 { + max-height: 2.25rem; } - .sm\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .sm\:max-h-10 { + max-height: 2.5rem; } - .sm\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .sm\:max-h-11 { + max-height: 2.75rem; } - .sm\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .sm\:max-h-12 { + max-height: 3rem; } - .sm\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .sm\:max-h-14 { + max-height: 3.5rem; } - .sm\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .sm\:max-h-16 { + max-height: 4rem; } - .sm\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .sm\:max-h-20 { + max-height: 5rem; } - .sm\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .sm\:max-h-24 { + max-height: 6rem; } - .sm\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .sm\:max-h-28 { + max-height: 7rem; } - .sm\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .sm\:max-h-32 { + max-height: 8rem; } - .sm\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .sm\:max-h-36 { + max-height: 9rem; } - .sm\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .sm\:max-h-40 { + max-height: 10rem; } - .sm\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .sm\:max-h-44 { + max-height: 11rem; } - .sm\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .sm\:max-h-48 { + max-height: 12rem; } - .sm\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .sm\:max-h-52 { + max-height: 13rem; } - .sm\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .sm\:max-h-56 { + max-height: 14rem; } - .sm\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .sm\:max-h-60 { + max-height: 15rem; } - .sm\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .sm\:max-h-64 { + max-height: 16rem; } - .sm\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .sm\:max-h-72 { + max-height: 18rem; } - .sm\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .sm\:max-h-80 { + max-height: 20rem; } - .sm\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .sm\:max-h-96 { + max-height: 24rem; } - .sm\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .sm\:max-h-px { + max-height: 1px; } - .sm\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .sm\:max-h-0\.5 { + max-height: 0.125rem; } - .sm\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .sm\:max-h-1\.5 { + max-height: 0.375rem; } - .sm\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .sm\:max-h-2\.5 { + max-height: 0.625rem; } - .sm\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .sm\:max-h-3\.5 { + max-height: 0.875rem; } - .sm\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .sm\:max-h-full { + max-height: 100%; } - .sm\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .sm\:max-h-screen { + max-height: 100vh; } - .sm\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .sm\:min-h-0 { + min-height: 0px; } - .sm\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .sm\:min-h-full { + min-height: 100%; } - .sm\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .sm\:min-h-screen { + min-height: 100vh; } - .sm\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .sm\:w-0 { + width: 0px; } - .sm\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .sm\:w-1 { + width: 0.25rem; } - .sm\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .sm\:w-2 { + width: 0.5rem; } - .sm\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .sm\:w-3 { + width: 0.75rem; } - .sm\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .sm\:w-4 { + width: 1rem; } - .sm\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .sm\:w-5 { + width: 1.25rem; } - .sm\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .sm\:w-6 { + width: 1.5rem; } - .sm\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .sm\:w-7 { + width: 1.75rem; } - .sm\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .sm\:w-8 { + width: 2rem; } - .sm\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .sm\:w-9 { + width: 2.25rem; } - .sm\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .sm\:w-10 { + width: 2.5rem; } - .sm\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .sm\:w-11 { + width: 2.75rem; } - .sm\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .sm\:w-12 { + width: 3rem; } - .sm\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .sm\:w-14 { + width: 3.5rem; } - .sm\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .sm\:w-16 { + width: 4rem; } - .sm\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .sm\:w-20 { + width: 5rem; } - .sm\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .sm\:w-24 { + width: 6rem; } - .sm\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .sm\:w-28 { + width: 7rem; } - .sm\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .sm\:w-32 { + width: 8rem; } - .sm\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .sm\:w-36 { + width: 9rem; } - .sm\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .sm\:w-40 { + width: 10rem; } - .sm\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .sm\:w-44 { + width: 11rem; } - .sm\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .sm\:w-48 { + width: 12rem; } - .sm\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .sm\:w-52 { + width: 13rem; } - .sm\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .sm\:w-56 { + width: 14rem; } - .sm\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .sm\:w-60 { + width: 15rem; } - .sm\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .sm\:w-64 { + width: 16rem; } - .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\:w-72 { + width: 18rem; } - .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\:w-80 { + width: 20rem; } - .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\:w-96 { + width: 24rem; } - .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\:w-auto { + width: auto; } - .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\:w-px { + width: 1px; } - .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\:w-0\.5 { + width: 0.125rem; } - .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\:w-1\.5 { + width: 0.375rem; } - .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\:w-2\.5 { + width: 0.625rem; } - .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\:w-3\.5 { + width: 0.875rem; } - .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\:w-1\/2 { + width: 50%; } - .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\:w-1\/3 { + width: 33.333333%; } - .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\:w-2\/3 { + width: 66.666667%; } - .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\:w-1\/4 { + width: 25%; } - .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\:w-2\/4 { + width: 50%; } - .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\:w-3\/4 { + width: 75%; } - .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\:w-1\/5 { + width: 20%; } - .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\:w-2\/5 { + width: 40%; } - .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\:w-3\/5 { + width: 60%; } - .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\:w-4\/5 { + width: 80%; } - .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\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .sm\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .sm\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .sm\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:origin-bottom-right { + transform-origin: bottom right; } - .sm\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:origin-bottom { + transform-origin: bottom; } - .sm\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:origin-bottom-left { + transform-origin: bottom left; } - .sm\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:origin-left { + transform-origin: left; } - .sm\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:origin-top-left { + transform-origin: top left; } - .sm\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:translate-x-0 { + --tw-translate-x: 0px; } - .sm\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .sm\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .sm\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .sm\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:translate-x-4 { + --tw-translate-x: 1rem; } - .sm\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .sm\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .sm\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .sm\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:translate-x-8 { + --tw-translate-x: 2rem; } - .sm\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .sm\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .sm\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .sm\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:translate-x-12 { + --tw-translate-x: 3rem; } - .sm\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .sm\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:translate-x-16 { + --tw-translate-x: 4rem; } - .sm\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:translate-x-20 { + --tw-translate-x: 5rem; } - .sm\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:translate-x-24 { + --tw-translate-x: 6rem; } - .sm\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:translate-x-28 { + --tw-translate-x: 7rem; } - .sm\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:translate-x-32 { + --tw-translate-x: 8rem; } - .sm\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:translate-x-36 { + --tw-translate-x: 9rem; } - .sm\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:translate-x-40 { + --tw-translate-x: 10rem; } - .sm\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:translate-x-44 { + --tw-translate-x: 11rem; } - .sm\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:translate-x-48 { + --tw-translate-x: 12rem; } - .sm\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:translate-x-52 { + --tw-translate-x: 13rem; } - .sm\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:translate-x-56 { + --tw-translate-x: 14rem; } - .sm\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:translate-x-60 { + --tw-translate-x: 15rem; } - .sm\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:translate-x-64 { + --tw-translate-x: 16rem; } - .sm\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:translate-x-72 { + --tw-translate-x: 18rem; } - .sm\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:translate-x-80 { + --tw-translate-x: 20rem; } - .sm\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:translate-x-96 { + --tw-translate-x: 24rem; } - .sm\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:translate-x-px { + --tw-translate-x: 1px; } - .sm\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .sm\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .sm\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .sm\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .sm\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:-translate-x-0 { + --tw-translate-x: 0px; } - .sm\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .sm\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .sm\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .sm\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:-translate-x-4 { + --tw-translate-x: -1rem; } - .sm\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .sm\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .sm\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .sm\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:-translate-x-8 { + --tw-translate-x: -2rem; } - .sm\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .sm\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .sm\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .sm\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:-translate-x-12 { + --tw-translate-x: -3rem; } - .sm\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .sm\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:-translate-x-16 { + --tw-translate-x: -4rem; } - .sm\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:-translate-x-20 { + --tw-translate-x: -5rem; } - .sm\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:-translate-x-24 { + --tw-translate-x: -6rem; } - .sm\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:-translate-x-28 { + --tw-translate-x: -7rem; } - .sm\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:-translate-x-32 { + --tw-translate-x: -8rem; } - .sm\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:-translate-x-36 { + --tw-translate-x: -9rem; } - .sm\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:-translate-x-40 { + --tw-translate-x: -10rem; } - .sm\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:-translate-x-44 { + --tw-translate-x: -11rem; } - .sm\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:-translate-x-48 { + --tw-translate-x: -12rem; } - .sm\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:-translate-x-52 { + --tw-translate-x: -13rem; } - .sm\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:-translate-x-56 { + --tw-translate-x: -14rem; } - .sm\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:-translate-x-60 { + --tw-translate-x: -15rem; } - .sm\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:-translate-x-64 { + --tw-translate-x: -16rem; } - .sm\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:-translate-x-72 { + --tw-translate-x: -18rem; } - .sm\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:-translate-x-80 { + --tw-translate-x: -20rem; } - .sm\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:-translate-x-96 { + --tw-translate-x: -24rem; } - .sm\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:-translate-x-px { + --tw-translate-x: -1px; } - .sm\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .sm\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .sm\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .sm\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .sm\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .sm\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .sm\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .sm\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .sm\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .sm\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .sm\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:translate-x-full { + --tw-translate-x: 100%; } - .sm\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .sm\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .sm\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .sm\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .sm\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .sm\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .sm\:focus\:to-black:focus { - --tw-gradient-to: #000; + .sm\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .sm\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .sm\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .sm\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .sm\:-translate-x-full { + --tw-translate-x: -100%; } - .sm\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .sm\:translate-y-0 { + --tw-translate-y: 0px; } - .sm\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .sm\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .sm\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .sm\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .sm\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .sm\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .sm\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .sm\:translate-y-4 { + --tw-translate-y: 1rem; } - .sm\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .sm\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .sm\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .sm\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .sm\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .sm\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .sm\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .sm\:translate-y-8 { + --tw-translate-y: 2rem; } - .sm\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .sm\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .sm\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .sm\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .sm\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .sm\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .sm\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .sm\:translate-y-12 { + --tw-translate-y: 3rem; } - .sm\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .sm\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .sm\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .sm\:translate-y-16 { + --tw-translate-y: 4rem; } - .sm\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .sm\:translate-y-20 { + --tw-translate-y: 5rem; } - .sm\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .sm\:translate-y-24 { + --tw-translate-y: 6rem; } - .sm\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .sm\:translate-y-28 { + --tw-translate-y: 7rem; } - .sm\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .sm\:translate-y-32 { + --tw-translate-y: 8rem; } - .sm\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .sm\:translate-y-36 { + --tw-translate-y: 9rem; } - .sm\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .sm\:translate-y-40 { + --tw-translate-y: 10rem; } - .sm\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .sm\:translate-y-44 { + --tw-translate-y: 11rem; } - .sm\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .sm\:translate-y-48 { + --tw-translate-y: 12rem; } - .sm\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .sm\:translate-y-52 { + --tw-translate-y: 13rem; } - .sm\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .sm\:translate-y-56 { + --tw-translate-y: 14rem; } - .sm\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .sm\:translate-y-60 { + --tw-translate-y: 15rem; } - .sm\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .sm\:translate-y-64 { + --tw-translate-y: 16rem; } - .sm\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .sm\:translate-y-72 { + --tw-translate-y: 18rem; } - .sm\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .sm\:translate-y-80 { + --tw-translate-y: 20rem; } - .sm\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .sm\:translate-y-96 { + --tw-translate-y: 24rem; } - .sm\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .sm\:translate-y-px { + --tw-translate-y: 1px; } - .sm\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .sm\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .sm\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .sm\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .sm\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .sm\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .sm\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .sm\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .sm\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .sm\:-translate-y-0 { + --tw-translate-y: 0px; } - .sm\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .sm\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .sm\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .sm\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .sm\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .sm\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .sm\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .sm\:-translate-y-4 { + --tw-translate-y: -1rem; } - .sm\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .sm\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .sm\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .sm\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .sm\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .sm\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .sm\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .sm\:-translate-y-8 { + --tw-translate-y: -2rem; } - .sm\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .sm\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .sm\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .sm\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .sm\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .sm\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .sm\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .sm\:-translate-y-12 { + --tw-translate-y: -3rem; } - .sm\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .sm\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .sm\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .sm\:-translate-y-16 { + --tw-translate-y: -4rem; } - .sm\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .sm\:-translate-y-20 { + --tw-translate-y: -5rem; } - .sm\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .sm\:-translate-y-24 { + --tw-translate-y: -6rem; } - .sm\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .sm\:-translate-y-28 { + --tw-translate-y: -7rem; } - .sm\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .sm\:-translate-y-32 { + --tw-translate-y: -8rem; } - .sm\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .sm\:-translate-y-36 { + --tw-translate-y: -9rem; } - .sm\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .sm\:-translate-y-40 { + --tw-translate-y: -10rem; } - .sm\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .sm\:-translate-y-44 { + --tw-translate-y: -11rem; } - .sm\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .sm\:-translate-y-48 { + --tw-translate-y: -12rem; } - .sm\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .sm\:-translate-y-52 { + --tw-translate-y: -13rem; } - .sm\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .sm\:-translate-y-56 { + --tw-translate-y: -14rem; } - .sm\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .sm\:-translate-y-60 { + --tw-translate-y: -15rem; } - .sm\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .sm\:-translate-y-64 { + --tw-translate-y: -16rem; } - .sm\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .sm\:-translate-y-72 { + --tw-translate-y: -18rem; } - .sm\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .sm\:-translate-y-80 { + --tw-translate-y: -20rem; } - .sm\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .sm\:-translate-y-96 { + --tw-translate-y: -24rem; } - .sm\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .sm\:-translate-y-px { + --tw-translate-y: -1px; } - .sm\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .sm\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .sm\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .sm\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .sm\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .sm\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .sm\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .sm\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .sm\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .sm\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .sm\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .sm\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .sm\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .sm\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .sm\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .sm\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .sm\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .sm\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .sm\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .sm\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .sm\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .sm\:translate-y-full { + --tw-translate-y: 100%; } - .sm\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .sm\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .sm\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .sm\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .sm\:bg-opacity-0 { - --tw-bg-opacity: 0; + .sm\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .sm\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .sm\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .sm\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .sm\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .sm\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .sm\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .sm\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .sm\:-translate-y-full { + --tw-translate-y: -100%; } - .sm\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .sm\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .sm\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .sm\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .sm\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .sm\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .sm\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .sm\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .sm\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .sm\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .sm\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .sm\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .sm\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .sm\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .sm\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .sm\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .sm\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .sm\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .sm\:bg-opacity-100 { - --tw-bg-opacity: 1; + .sm\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .group:hover .sm\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; + .sm\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .group:hover .sm\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .sm\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .group:hover .sm\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .sm\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .group:hover .sm\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .sm\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .group:hover .sm\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .sm\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .group:hover .sm\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .sm\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .group:hover .sm\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .sm\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .group:hover .sm\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .sm\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .group:hover .sm\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .sm\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .group:hover .sm\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .sm\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .group:hover .sm\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .sm\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .group:hover .sm\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .sm\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .group:hover .sm\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .sm\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .group:hover .sm\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .sm\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .group:hover .sm\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; + .sm\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .sm\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; + .sm\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .sm\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; + .sm\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .sm\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; + .sm\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .sm\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; + .sm\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .sm\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; + .sm\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .sm\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; + .sm\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .sm\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; + .sm\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .sm\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; + .sm\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .sm\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; + .sm\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .sm\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; + .sm\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .sm\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; + .sm\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .sm\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; + .sm\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .sm\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; + .sm\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .sm\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; + .sm\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .sm\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; + .sm\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .sm\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; + .sm\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .sm\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; + .sm\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .sm\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; + .sm\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .sm\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; + .sm\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .sm\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; + .sm\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .sm\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; + .sm\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .sm\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; + .sm\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .sm\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; + .sm\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .sm\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; + .sm\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .sm\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; + .sm\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .sm\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; + .sm\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .sm\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; + .sm\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .sm\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; + .sm\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .sm\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; + .sm\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .sm\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; + .sm\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .sm\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; + .sm\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .sm\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; + .sm\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .sm\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; + .sm\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .sm\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; + .sm\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .sm\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; + .sm\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .sm\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; + .sm\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .sm\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; + .sm\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .sm\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; + .sm\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .sm\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; + .sm\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .sm\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; + .sm\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .sm\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; + .sm\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .sm\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; + .sm\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .sm\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; + .sm\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .sm\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; + .sm\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .sm\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; + .sm\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .sm\:bg-bottom { - background-position: bottom; + .sm\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .sm\:bg-center { - background-position: center; + .sm\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .sm\:bg-left { - background-position: left; + .sm\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .sm\:bg-left-bottom { - background-position: left bottom; + .sm\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .sm\:bg-left-top { - background-position: left top; + .sm\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .sm\:bg-right { - background-position: right; + .sm\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .sm\:bg-right-bottom { - background-position: right bottom; + .sm\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .sm\:bg-right-top { - background-position: right top; + .sm\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .sm\:bg-top { - background-position: top; + .sm\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .sm\:bg-repeat { - background-repeat: repeat; + .sm\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .sm\:bg-no-repeat { - background-repeat: no-repeat; + .sm\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .sm\:bg-repeat-x { - background-repeat: repeat-x; + .sm\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .sm\:bg-repeat-y { - background-repeat: repeat-y; + .sm\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .sm\:bg-repeat-round { - background-repeat: round; + .sm\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .sm\:bg-repeat-space { - background-repeat: space; + .sm\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .sm\:bg-auto { - background-size: auto; + .sm\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .sm\:bg-cover { - background-size: cover; + .sm\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .sm\:bg-contain { - background-size: contain; + .sm\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .sm\:bg-origin-border { - background-origin: border-box; + .sm\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .sm\:bg-origin-padding { - background-origin: padding-box; + .sm\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .sm\:bg-origin-content { - background-origin: content-box; + .sm\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .sm\:border-collapse { - border-collapse: collapse; + .sm\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .sm\:border-separate { - border-collapse: separate; + .sm\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .sm\:border-transparent { - border-color: transparent; + .sm\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .sm\:border-current { - border-color: currentColor; + .sm\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .sm\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .sm\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .sm\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .sm\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .sm\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .sm\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .sm\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .sm\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .sm\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .sm\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .sm\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .sm\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .sm\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .sm\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .sm\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .sm\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .sm\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .sm\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .sm\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .sm\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .sm\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .sm\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .sm\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .sm\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .sm\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .sm\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .sm\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .sm\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .sm\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .sm\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .sm\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .sm\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .sm\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .sm\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .sm\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .sm\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .sm\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .sm\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .sm\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .sm\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .sm\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .sm\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .sm\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .sm\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .sm\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .sm\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .sm\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .sm\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .sm\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .sm\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .sm\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .sm\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .sm\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .sm\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .sm\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .sm\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .sm\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .sm\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .sm\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .sm\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .sm\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .sm\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .sm\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .sm\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .sm\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .sm\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .sm\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .sm\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .sm\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .sm\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .sm\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .sm\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .sm\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .sm\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .sm\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .sm\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .sm\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .sm\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .sm\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .sm\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .sm\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .sm\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .sm\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .sm\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .sm\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .sm\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .sm\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .sm\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .sm\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .sm\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .sm\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .sm\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .sm\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .sm\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .sm\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .sm\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .sm\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .sm\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .sm\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .sm\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .sm\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .sm\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .sm\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .sm\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .sm\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .sm\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .sm\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .sm\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .sm\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .sm\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .sm\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .sm\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .sm\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .sm\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .sm\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .sm\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .sm\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .sm\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .sm\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .sm\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .sm\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .sm\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .sm\:group-hover\:border-transparent { - border-color: transparent; + .sm\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .sm\:group-hover\:border-current { - border-color: currentColor; + .sm\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .sm\:group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .sm\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .sm\:group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .sm\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .sm\:group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .sm\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .sm\:group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .sm\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .sm\:group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .sm\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .sm\:group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .sm\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .sm\:group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .sm\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .sm\:group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .sm\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .sm\:group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .sm\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .sm\:group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .sm\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .sm\:group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .sm\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .sm\:group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .sm\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .sm\:group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .sm\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .sm\:group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .sm\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .sm\:group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .sm\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .sm\:group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .sm\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .sm\:group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .sm\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .sm\:group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .sm\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .sm\:group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .sm\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .sm\:group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .sm\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .sm\:group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .sm\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .sm\:group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .sm\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .sm\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .sm\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .sm\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .sm\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .sm\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .sm\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .sm\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .group:hover .sm\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .group:hover .sm\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .group:hover .sm\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .group:hover .sm\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .group:hover .sm\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .group:hover .sm\:group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .group:hover .sm\:group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - - .group:hover .sm\:group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + + .sm\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .group:hover .sm\:group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .group:hover .sm\:group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .group:hover .sm\:group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .group:hover .sm\:group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .group:hover .sm\:group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .group:hover .sm\:group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .group:hover .sm\:group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .group:hover .sm\:group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .group:hover .sm\:group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .group:hover .sm\:group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .group:hover .sm\:group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .group:hover .sm\:group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .group:hover .sm\:group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .group:hover .sm\:group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .group:hover .sm\:group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .group:hover .sm\:group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .group:hover .sm\:group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .group:hover .sm\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .group:hover .sm\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .group:hover .sm\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .group:hover .sm\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .group:hover .sm\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .group:hover .sm\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .group:hover .sm\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .group:hover .sm\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .sm\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .group:hover .sm\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .sm\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .group:hover .sm\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .sm\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .group:hover .sm\:group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .sm\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .group:hover .sm\:group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .sm\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .group:hover .sm\:group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .sm\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .group:hover .sm\:group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .sm\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .group:hover .sm\:group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .group:hover .sm\:group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .group:hover .sm\:group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .group:hover .sm\:group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .group:hover .sm\:group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .group:hover .sm\:group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .group:hover .sm\:group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .group:hover .sm\:group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .sm\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .group:hover .sm\:group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .sm\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .group:hover .sm\:group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .sm\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .group:hover .sm\:group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .sm\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .group:hover .sm\:group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .sm\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .group:hover .sm\:group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .sm\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .group:hover .sm\:group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .sm\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .group:hover .sm\:group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .sm\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .group:hover .sm\:group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .sm\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .sm\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .sm\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .sm\:focus-within\:border-current:focus-within { - border-color: currentColor; + .sm\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .sm\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .sm\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .sm\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .sm\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .sm\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .sm\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .sm\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .sm\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .sm\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .sm\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .sm\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .sm\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .sm\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .sm\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .sm\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .sm\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .sm\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .sm\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .sm\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .sm\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .sm\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .sm\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .sm\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .sm\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .sm\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .sm\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .sm\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .sm\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .sm\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .sm\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .sm\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .sm\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .sm\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .sm\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .sm\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .sm\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .sm\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .sm\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .sm\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .sm\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .sm\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .sm\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .sm\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .sm\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .sm\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .sm\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .sm\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .sm\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .sm\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .sm\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .sm\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .sm\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .sm\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .sm\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .sm\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .sm\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .sm\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .sm\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .sm\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .sm\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .sm\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .sm\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .sm\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .sm\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .sm\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .sm\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .sm\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .sm\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .sm\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .sm\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .sm\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .sm\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .sm\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .sm\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .sm\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .sm\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .sm\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .sm\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .sm\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .sm\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .sm\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .sm\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .sm\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .sm\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .sm\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .sm\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .sm\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .sm\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .sm\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .sm\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .sm\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .sm\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .sm\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .sm\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .sm\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .sm\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .sm\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .sm\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .sm\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .sm\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .sm\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .sm\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .sm\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .sm\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .sm\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .sm\:rotate-0 { + --tw-rotate: 0deg; } - .sm\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .sm\:rotate-1 { + --tw-rotate: 1deg; } - .sm\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .sm\:rotate-2 { + --tw-rotate: 2deg; } - .sm\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .sm\:rotate-3 { + --tw-rotate: 3deg; } - .sm\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .sm\:rotate-6 { + --tw-rotate: 6deg; } - .sm\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .sm\:rotate-12 { + --tw-rotate: 12deg; } - .sm\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .sm\:rotate-45 { + --tw-rotate: 45deg; } - .sm\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .sm\:rotate-90 { + --tw-rotate: 90deg; } - .sm\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .sm\:rotate-180 { + --tw-rotate: 180deg; } - .sm\:hover\:border-transparent:hover { - border-color: transparent; + .sm\:-rotate-180 { + --tw-rotate: -180deg; } - .sm\:hover\:border-current:hover { - border-color: currentColor; + .sm\:-rotate-90 { + --tw-rotate: -90deg; } - .sm\:hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .sm\:-rotate-45 { + --tw-rotate: -45deg; } - .sm\:hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .sm\:-rotate-12 { + --tw-rotate: -12deg; } - .sm\:hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .sm\:-rotate-6 { + --tw-rotate: -6deg; } - .sm\:hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .sm\:-rotate-3 { + --tw-rotate: -3deg; } - .sm\:hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .sm\:-rotate-2 { + --tw-rotate: -2deg; } - .sm\:hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .sm\:-rotate-1 { + --tw-rotate: -1deg; } - .sm\:hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .sm\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .sm\:hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .sm\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .sm\:hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .sm\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .sm\:hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .sm\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .sm\:hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .sm\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .sm\:hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .sm\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .sm\:hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .sm\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .sm\:hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .sm\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .sm\:hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .sm\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .sm\:hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .sm\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .sm\:hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .sm\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .sm\:hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .sm\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .sm\:hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .sm\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .sm\:hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .sm\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .sm\:hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .sm\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .sm\:hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .sm\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .sm\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .sm\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .sm\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .sm\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .sm\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .sm\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .sm\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .sm\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .sm\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .sm\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .sm\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .sm\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .sm\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .sm\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .sm\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .sm\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .sm\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .sm\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .sm\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .sm\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .sm\:hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .sm\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .sm\:hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .sm\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .sm\:hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .sm\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .sm\:hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .sm\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .sm\:hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .sm\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .sm\:hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .sm\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .sm\:hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .sm\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .sm\:hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .sm\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .sm\:hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .sm\:skew-x-0 { + --tw-skew-x: 0deg; } - .sm\:hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .sm\:skew-x-1 { + --tw-skew-x: 1deg; } - .sm\:hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .sm\:skew-x-2 { + --tw-skew-x: 2deg; } - .sm\:hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .sm\:skew-x-3 { + --tw-skew-x: 3deg; } - .sm\:hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .sm\:skew-x-6 { + --tw-skew-x: 6deg; } - .sm\:hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .sm\:skew-x-12 { + --tw-skew-x: 12deg; } - .sm\:hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .sm\:-skew-x-12 { + --tw-skew-x: -12deg; } - .sm\:hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .sm\:-skew-x-6 { + --tw-skew-x: -6deg; } - .sm\:hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .sm\:-skew-x-3 { + --tw-skew-x: -3deg; } - .sm\:hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .sm\:-skew-x-2 { + --tw-skew-x: -2deg; } - .sm\:hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .sm\:-skew-x-1 { + --tw-skew-x: -1deg; } - .sm\:hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .sm\:skew-y-0 { + --tw-skew-y: 0deg; } - .sm\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .sm\:skew-y-1 { + --tw-skew-y: 1deg; } - .sm\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .sm\:skew-y-2 { + --tw-skew-y: 2deg; } - .sm\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .sm\:skew-y-3 { + --tw-skew-y: 3deg; } - .sm\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .sm\:skew-y-6 { + --tw-skew-y: 6deg; } - .sm\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .sm\:skew-y-12 { + --tw-skew-y: 12deg; } - .sm\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .sm\:-skew-y-12 { + --tw-skew-y: -12deg; } - .sm\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .sm\:-skew-y-6 { + --tw-skew-y: -6deg; } - .sm\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .sm\:-skew-y-3 { + --tw-skew-y: -3deg; } - .sm\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .sm\:-skew-y-2 { + --tw-skew-y: -2deg; } - .sm\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .sm\:-skew-y-1 { + --tw-skew-y: -1deg; } - .sm\:hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .sm\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .sm\:hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .sm\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .sm\:hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .sm\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .sm\:hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .sm\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .sm\:hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .sm\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .sm\:hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .sm\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .sm\:hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .sm\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .sm\:hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .sm\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .sm\:hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .sm\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .sm\:hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .sm\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .sm\:hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .sm\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .sm\:hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .sm\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .sm\:hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .sm\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .sm\:hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .sm\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .sm\:hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .sm\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .sm\:hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .sm\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .sm\:hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .sm\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .sm\:hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .sm\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .sm\:hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .sm\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .sm\:hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .sm\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .sm\:focus\:border-transparent:focus { - border-color: transparent; + .sm\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .sm\:focus\:border-current:focus { - border-color: currentColor; + .sm\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .sm\:focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .sm\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .sm\:focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .sm\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .sm\:focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .sm\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .sm\:focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .sm\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .sm\:focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .sm\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .sm\:focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .sm\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .sm\:focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .sm\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .sm\:focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .sm\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .sm\:focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .sm\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .sm\:focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .sm\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .sm\:focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .sm\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .sm\:focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .sm\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .sm\:focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .sm\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .sm\:focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .sm\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .sm\:focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .sm\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .sm\:focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .sm\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .sm\:focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .sm\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .sm\:focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .sm\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .sm\:focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .sm\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .sm\:focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .sm\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .sm\:focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .sm\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .sm\:focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .sm\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .sm\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .sm\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .sm\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .sm\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .sm\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .sm\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .sm\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .sm\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .sm\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .sm\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .sm\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .sm\:scale-x-0 { + --tw-scale-x: 0; } - .sm\:focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .sm\:scale-x-50 { + --tw-scale-x: .5; } - .sm\:focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .sm\:scale-x-75 { + --tw-scale-x: .75; } - .sm\:focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .sm\:scale-x-90 { + --tw-scale-x: .9; } - .sm\:focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .sm\:scale-x-95 { + --tw-scale-x: .95; } - .sm\:focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .sm\:scale-x-100 { + --tw-scale-x: 1; } - .sm\:focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .sm\:scale-x-105 { + --tw-scale-x: 1.05; } - .sm\:focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .sm\:scale-x-110 { + --tw-scale-x: 1.1; } - .sm\:focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .sm\:scale-x-125 { + --tw-scale-x: 1.25; } - .sm\:focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .sm\:scale-x-150 { + --tw-scale-x: 1.5; } - .sm\:focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .sm\:scale-y-0 { + --tw-scale-y: 0; } - .sm\:focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .sm\:scale-y-50 { + --tw-scale-y: .5; } - .sm\:focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .sm\:scale-y-75 { + --tw-scale-y: .75; } - .sm\:focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .sm\:scale-y-90 { + --tw-scale-y: .9; } - .sm\:focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .sm\:scale-y-95 { + --tw-scale-y: .95; } - .sm\:focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .sm\:scale-y-100 { + --tw-scale-y: 1; } - .sm\:focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .sm\:scale-y-105 { + --tw-scale-y: 1.05; } - .sm\:focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .sm\:scale-y-110 { + --tw-scale-y: 1.1; } - .sm\:focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .sm\:scale-y-125 { + --tw-scale-y: 1.25; } - .sm\:focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .sm\:scale-y-150 { + --tw-scale-y: 1.5; } - .sm\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .sm\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .sm\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .sm\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .sm\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .sm\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .sm\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .sm\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .sm\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .sm\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .sm\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .sm\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .sm\:focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .sm\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .sm\:focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .sm\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .sm\:focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .sm\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .sm\:focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .sm\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .sm\:focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .sm\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .sm\:focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .sm\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .sm\:focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .sm\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .sm\:focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .sm\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .sm\:focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .sm\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .sm\:focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .sm\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .sm\:focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .sm\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .sm\:focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .sm\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .sm\:focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .sm\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .sm\:focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .sm\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .sm\:focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .sm\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .sm\:focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .sm\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .sm\:focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .sm\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .sm\:focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .sm\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .sm\:focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .sm\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .sm\:border-opacity-0 { - --tw-border-opacity: 0; + .sm\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:border-opacity-5 { - --tw-border-opacity: 0.05; + .sm\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:border-opacity-10 { - --tw-border-opacity: 0.1; + .sm\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:border-opacity-20 { - --tw-border-opacity: 0.2; + .sm\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:border-opacity-25 { - --tw-border-opacity: 0.25; + .sm\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:border-opacity-30 { - --tw-border-opacity: 0.3; + .sm\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:border-opacity-40 { - --tw-border-opacity: 0.4; + .sm\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:border-opacity-50 { - --tw-border-opacity: 0.5; + .sm\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:border-opacity-60 { - --tw-border-opacity: 0.6; + .sm\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:border-opacity-70 { - --tw-border-opacity: 0.7; + .sm\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:border-opacity-75 { - --tw-border-opacity: 0.75; + .sm\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .sm\:border-opacity-80 { - --tw-border-opacity: 0.8; + .sm\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .sm\:border-opacity-90 { - --tw-border-opacity: 0.9; + .sm\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .sm\:border-opacity-95 { - --tw-border-opacity: 0.95; + .sm\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .sm\:border-opacity-100 { - --tw-border-opacity: 1; + .sm\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .group:hover .sm\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0; + .sm\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .group:hover .sm\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; + .sm\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .group:hover .sm\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; + .sm\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .group:hover .sm\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; + .sm\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .group:hover .sm\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; + .sm\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .group:hover .sm\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; + .sm\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .group:hover .sm\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; + .sm\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .group:hover .sm\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; + .sm\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .group:hover .sm\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; + .sm\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .group:hover .sm\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; + .sm\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .group:hover .sm\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; + .sm\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .group:hover .sm\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; + .sm\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .group:hover .sm\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; + .sm\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .group:hover .sm\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; + .sm\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .group:hover .sm\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1; + .sm\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .sm\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; + .sm\:animate-none { + animation: none; } - .sm\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; + .sm\:animate-spin { + animation: spin 1s linear infinite; } - .sm\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; + .sm\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .sm\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; + .sm\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .sm\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; + .sm\:animate-bounce { + animation: bounce 1s infinite; } - .sm\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; + .sm\:cursor-auto { + cursor: auto; } - .sm\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; + .sm\:cursor-default { + cursor: default; } - .sm\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; + .sm\:cursor-pointer { + cursor: pointer; } - .sm\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; + .sm\:cursor-wait { + cursor: wait; } - .sm\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; + .sm\:cursor-text { + cursor: text; } - .sm\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; + .sm\:cursor-move { + cursor: move; } - .sm\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; + .sm\:cursor-help { + cursor: help; } - .sm\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; + .sm\:cursor-not-allowed { + cursor: not-allowed; } - .sm\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; + .sm\:select-none { + user-select: none; } - .sm\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; + .sm\:select-text { + user-select: text; } - .sm\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0; + .sm\:select-all { + user-select: all; } - .sm\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; + .sm\:select-auto { + user-select: auto; } - .sm\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; + .sm\:resize-none { + resize: none; } - .sm\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; + .sm\:resize-y { + resize: vertical; } - .sm\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; + .sm\:resize-x { + resize: horizontal; } - .sm\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; + .sm\:resize { + resize: both; } - .sm\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; + .sm\:list-inside { + list-style-position: inside; } - .sm\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; + .sm\:list-outside { + list-style-position: outside; } - .sm\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; + .sm\:list-none { + list-style-type: none; } - .sm\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; + .sm\:list-disc { + list-style-type: disc; } - .sm\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; + .sm\:list-decimal { + list-style-type: decimal; } - .sm\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; + .sm\:appearance-none { + appearance: none; } - .sm\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; + .sm\:auto-cols-auto { + grid-auto-columns: auto; } - .sm\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; + .sm\:auto-cols-min { + grid-auto-columns: min-content; } - .sm\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1; + .sm\:auto-cols-max { + grid-auto-columns: max-content; } - .sm\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0; + .sm\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .sm\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; + .sm\:grid-flow-row { + grid-auto-flow: row; } - .sm\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; + .sm\:grid-flow-col { + grid-auto-flow: column; } - .sm\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; + .sm\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .sm\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; + .sm\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .sm\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; + .sm\:auto-rows-auto { + grid-auto-rows: auto; } - .sm\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; + .sm\:auto-rows-min { + grid-auto-rows: min-content; } - .sm\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; + .sm\:auto-rows-max { + grid-auto-rows: max-content; } - .sm\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; + .sm\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .sm\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; + .sm\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .sm\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; + .sm\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .sm\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; + .sm\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .sm\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; + .sm\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .sm\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; + .sm\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .sm\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1; + .sm\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .sm\:rounded-none { - border-radius: 0px; + .sm\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .sm\:rounded-sm { - border-radius: 0.125rem; + .sm\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .sm\:rounded { - border-radius: 0.25rem; + .sm\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .sm\:rounded-md { - border-radius: 0.375rem; + .sm\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .sm\:rounded-lg { - border-radius: 0.5rem; + .sm\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .sm\:rounded-xl { - border-radius: 0.75rem; + .sm\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .sm\:rounded-2xl { - border-radius: 1rem; + .sm\:grid-cols-none { + grid-template-columns: none; } - .sm\:rounded-3xl { - border-radius: 1.5rem; + .sm\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .sm\:rounded-full { - border-radius: 9999px; + .sm\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .sm\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .sm\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .sm\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .sm\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .sm\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .sm\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .sm\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .sm\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .sm\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .sm\:grid-rows-none { + grid-template-rows: none; } - .sm\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .sm\:flex-row { + flex-direction: row; } - .sm\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .sm\:flex-row-reverse { + flex-direction: row-reverse; } - .sm\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .sm\:flex-col { + flex-direction: column; } - .sm\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .sm\:flex-col-reverse { + flex-direction: column-reverse; } - .sm\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .sm\:flex-wrap { + flex-wrap: wrap; } - .sm\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .sm\:flex-wrap-reverse { + flex-wrap: wrap-reverse; } - .sm\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .sm\:flex-nowrap { + flex-wrap: nowrap; } - .sm\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .sm\:place-content-center { + place-content: center; } - .sm\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .sm\:place-content-start { + place-content: start; } - .sm\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .sm\:place-content-end { + place-content: end; } - .sm\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .sm\:place-content-between { + place-content: space-between; } - .sm\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .sm\:place-content-around { + place-content: space-around; } - .sm\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .sm\:place-content-evenly { + place-content: space-evenly; } - .sm\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .sm\:place-content-stretch { + place-content: stretch; } - .sm\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .sm\:place-items-start { + place-items: start; } - .sm\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .sm\:place-items-end { + place-items: end; } - .sm\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .sm\:place-items-center { + place-items: center; } - .sm\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .sm\:place-items-stretch { + place-items: stretch; } - .sm\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .sm\:content-center { + align-content: center; } - .sm\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .sm\:content-start { + align-content: flex-start; } - .sm\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .sm\:content-end { + align-content: flex-end; } - .sm\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .sm\:content-between { + align-content: space-between; } - .sm\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .sm\:content-around { + align-content: space-around; } - .sm\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .sm\:content-evenly { + align-content: space-evenly; } - .sm\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .sm\:items-start { + align-items: flex-start; } - .sm\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .sm\:items-end { + align-items: flex-end; } - .sm\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .sm\:items-center { + align-items: center; } - .sm\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .sm\:items-baseline { + align-items: baseline; } - .sm\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .sm\:items-stretch { + align-items: stretch; } - .sm\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .sm\:justify-start { + justify-content: flex-start; } - .sm\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .sm\:justify-end { + justify-content: flex-end; } - .sm\:rounded-tl-none { - border-top-left-radius: 0px; + .sm\:justify-center { + justify-content: center; } - .sm\:rounded-tr-none { - border-top-right-radius: 0px; + .sm\:justify-between { + justify-content: space-between; + } + + .sm\:justify-around { + justify-content: space-around; } - .sm\:rounded-br-none { - border-bottom-right-radius: 0px; + .sm\:justify-evenly { + justify-content: space-evenly; } - .sm\:rounded-bl-none { - border-bottom-left-radius: 0px; + .sm\:justify-items-start { + justify-items: start; } - .sm\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .sm\:justify-items-end { + justify-items: end; } - .sm\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .sm\:justify-items-center { + justify-items: center; } - .sm\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .sm\:justify-items-stretch { + justify-items: stretch; } - .sm\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .sm\:gap-0 { + gap: 0px; } - .sm\:rounded-tl { - border-top-left-radius: 0.25rem; + .sm\:gap-1 { + gap: 0.25rem; } - .sm\:rounded-tr { - border-top-right-radius: 0.25rem; + .sm\:gap-2 { + gap: 0.5rem; } - .sm\:rounded-br { - border-bottom-right-radius: 0.25rem; + .sm\:gap-3 { + gap: 0.75rem; } - .sm\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .sm\:gap-4 { + gap: 1rem; } - .sm\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .sm\:gap-5 { + gap: 1.25rem; } - .sm\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .sm\:gap-6 { + gap: 1.5rem; } - .sm\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .sm\:gap-7 { + gap: 1.75rem; } - .sm\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .sm\:gap-8 { + gap: 2rem; } - .sm\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .sm\:gap-9 { + gap: 2.25rem; } - .sm\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .sm\:gap-10 { + gap: 2.5rem; } - .sm\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .sm\:gap-11 { + gap: 2.75rem; } - .sm\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .sm\:gap-12 { + gap: 3rem; } - .sm\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .sm\:gap-14 { + gap: 3.5rem; } - .sm\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .sm\:gap-16 { + gap: 4rem; } - .sm\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .sm\:gap-20 { + gap: 5rem; } - .sm\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .sm\:gap-24 { + gap: 6rem; } - .sm\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .sm\:gap-28 { + gap: 7rem; } - .sm\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .sm\:gap-32 { + gap: 8rem; } - .sm\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .sm\:gap-36 { + gap: 9rem; } - .sm\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .sm\:gap-40 { + gap: 10rem; } - .sm\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .sm\:gap-44 { + gap: 11rem; } - .sm\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .sm\:gap-48 { + gap: 12rem; } - .sm\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .sm\:gap-52 { + gap: 13rem; } - .sm\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .sm\:gap-56 { + gap: 14rem; } - .sm\:rounded-tl-full { - border-top-left-radius: 9999px; + .sm\:gap-60 { + gap: 15rem; } - .sm\:rounded-tr-full { - border-top-right-radius: 9999px; + .sm\:gap-64 { + gap: 16rem; } - .sm\:rounded-br-full { - border-bottom-right-radius: 9999px; + .sm\:gap-72 { + gap: 18rem; } - .sm\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .sm\:gap-80 { + gap: 20rem; } - .sm\:border-solid { - border-style: solid; + .sm\:gap-96 { + gap: 24rem; } - .sm\:border-dashed { - border-style: dashed; + .sm\:gap-px { + gap: 1px; } - .sm\:border-dotted { - border-style: dotted; + .sm\:gap-0\.5 { + gap: 0.125rem; } - .sm\:border-double { - border-style: double; + .sm\:gap-1\.5 { + gap: 0.375rem; } - .sm\:border-none { - border-style: none; + .sm\:gap-2\.5 { + gap: 0.625rem; } - .sm\:border-0 { - border-width: 0px; + .sm\:gap-3\.5 { + gap: 0.875rem; } - .sm\:border-2 { - border-width: 2px; + .sm\:gap-x-0 { + column-gap: 0px; } - .sm\:border-4 { - border-width: 4px; + .sm\:gap-x-1 { + column-gap: 0.25rem; } - .sm\:border-8 { - border-width: 8px; + .sm\:gap-x-2 { + column-gap: 0.5rem; } - .sm\:border { - border-width: 1px; + .sm\:gap-x-3 { + column-gap: 0.75rem; } - .sm\:border-t-0 { - border-top-width: 0px; + .sm\:gap-x-4 { + column-gap: 1rem; } - .sm\:border-r-0 { - border-right-width: 0px; + .sm\:gap-x-5 { + column-gap: 1.25rem; } - .sm\:border-b-0 { - border-bottom-width: 0px; + .sm\:gap-x-6 { + column-gap: 1.5rem; } - .sm\:border-l-0 { - border-left-width: 0px; + .sm\:gap-x-7 { + column-gap: 1.75rem; } - .sm\:border-t-2 { - border-top-width: 2px; + .sm\:gap-x-8 { + column-gap: 2rem; } - .sm\:border-r-2 { - border-right-width: 2px; + .sm\:gap-x-9 { + column-gap: 2.25rem; } - .sm\:border-b-2 { - border-bottom-width: 2px; + .sm\:gap-x-10 { + column-gap: 2.5rem; } - .sm\:border-l-2 { - border-left-width: 2px; + .sm\:gap-x-11 { + column-gap: 2.75rem; } - .sm\:border-t-4 { - border-top-width: 4px; + .sm\:gap-x-12 { + column-gap: 3rem; } - .sm\:border-r-4 { - border-right-width: 4px; + .sm\:gap-x-14 { + column-gap: 3.5rem; } - .sm\:border-b-4 { - border-bottom-width: 4px; + .sm\:gap-x-16 { + column-gap: 4rem; } - .sm\:border-l-4 { - border-left-width: 4px; + .sm\:gap-x-20 { + column-gap: 5rem; } - .sm\:border-t-8 { - border-top-width: 8px; + .sm\:gap-x-24 { + column-gap: 6rem; } - .sm\:border-r-8 { - border-right-width: 8px; + .sm\:gap-x-28 { + column-gap: 7rem; } - .sm\:border-b-8 { - border-bottom-width: 8px; + .sm\:gap-x-32 { + column-gap: 8rem; } - .sm\:border-l-8 { - border-left-width: 8px; + .sm\:gap-x-36 { + column-gap: 9rem; } - .sm\:border-t { - border-top-width: 1px; + .sm\:gap-x-40 { + column-gap: 10rem; } - .sm\:border-r { - border-right-width: 1px; + .sm\:gap-x-44 { + column-gap: 11rem; } - .sm\:border-b { - border-bottom-width: 1px; + .sm\:gap-x-48 { + column-gap: 12rem; } - .sm\:border-l { - border-left-width: 1px; + .sm\:gap-x-52 { + column-gap: 13rem; } - .sm\:decoration-slice { - box-decoration-break: slice; + .sm\:gap-x-56 { + column-gap: 14rem; } - .sm\:decoration-clone { - box-decoration-break: clone; + .sm\:gap-x-60 { + column-gap: 15rem; } - .sm\:box-border { - box-sizing: border-box; + .sm\:gap-x-64 { + column-gap: 16rem; } - .sm\:box-content { - box-sizing: content-box; + .sm\:gap-x-72 { + column-gap: 18rem; } - .sm\:cursor-auto { - cursor: auto; + .sm\:gap-x-80 { + column-gap: 20rem; } - .sm\:cursor-default { - cursor: default; + .sm\:gap-x-96 { + column-gap: 24rem; } - .sm\:cursor-pointer { - cursor: pointer; + .sm\:gap-x-px { + column-gap: 1px; } - .sm\:cursor-wait { - cursor: wait; + .sm\:gap-x-0\.5 { + column-gap: 0.125rem; } - .sm\:cursor-text { - cursor: text; + .sm\:gap-x-1\.5 { + column-gap: 0.375rem; } - .sm\:cursor-move { - cursor: move; + .sm\:gap-x-2\.5 { + column-gap: 0.625rem; } - .sm\:cursor-help { - cursor: help; + .sm\:gap-x-3\.5 { + column-gap: 0.875rem; } - .sm\:cursor-not-allowed { - cursor: not-allowed; + .sm\:gap-y-0 { + row-gap: 0px; } - .sm\:block { - display: block; + .sm\:gap-y-1 { + row-gap: 0.25rem; } - .sm\:inline-block { - display: inline-block; + .sm\:gap-y-2 { + row-gap: 0.5rem; } - .sm\:inline { - display: inline; + .sm\:gap-y-3 { + row-gap: 0.75rem; } - .sm\:flex { - display: flex; + .sm\:gap-y-4 { + row-gap: 1rem; } - .sm\:inline-flex { - display: inline-flex; + .sm\:gap-y-5 { + row-gap: 1.25rem; } - .sm\:table { - display: table; + .sm\:gap-y-6 { + row-gap: 1.5rem; } - .sm\:inline-table { - display: inline-table; + .sm\:gap-y-7 { + row-gap: 1.75rem; } - .sm\:table-caption { - display: table-caption; + .sm\:gap-y-8 { + row-gap: 2rem; } - .sm\:table-cell { - display: table-cell; + .sm\:gap-y-9 { + row-gap: 2.25rem; } - .sm\:table-column { - display: table-column; + .sm\:gap-y-10 { + row-gap: 2.5rem; } - .sm\:table-column-group { - display: table-column-group; + .sm\:gap-y-11 { + row-gap: 2.75rem; } - .sm\:table-footer-group { - display: table-footer-group; + .sm\:gap-y-12 { + row-gap: 3rem; } - .sm\:table-header-group { - display: table-header-group; + .sm\:gap-y-14 { + row-gap: 3.5rem; } - .sm\:table-row-group { - display: table-row-group; + .sm\:gap-y-16 { + row-gap: 4rem; } - .sm\:table-row { - display: table-row; + .sm\:gap-y-20 { + row-gap: 5rem; } - .sm\:flow-root { - display: flow-root; + .sm\:gap-y-24 { + row-gap: 6rem; } - .sm\:grid { - display: grid; + .sm\:gap-y-28 { + row-gap: 7rem; } - .sm\:inline-grid { - display: inline-grid; + .sm\:gap-y-32 { + row-gap: 8rem; } - .sm\:contents { - display: contents; + .sm\:gap-y-36 { + row-gap: 9rem; } - .sm\:list-item { - display: list-item; + .sm\:gap-y-40 { + row-gap: 10rem; } - .sm\:hidden { - display: none; + .sm\:gap-y-44 { + row-gap: 11rem; } - .sm\:flex-row { - flex-direction: row; + .sm\:gap-y-48 { + row-gap: 12rem; } - .sm\:flex-row-reverse { - flex-direction: row-reverse; + .sm\:gap-y-52 { + row-gap: 13rem; } - .sm\:flex-col { - flex-direction: column; + .sm\:gap-y-56 { + row-gap: 14rem; } - .sm\:flex-col-reverse { - flex-direction: column-reverse; + .sm\:gap-y-60 { + row-gap: 15rem; } - .sm\:flex-wrap { - flex-wrap: wrap; + .sm\:gap-y-64 { + row-gap: 16rem; } - .sm\:flex-wrap-reverse { - flex-wrap: wrap-reverse; + .sm\:gap-y-72 { + row-gap: 18rem; } - .sm\:flex-nowrap { - flex-wrap: nowrap; + .sm\:gap-y-80 { + row-gap: 20rem; } - .sm\:place-items-start { - place-items: start; + .sm\:gap-y-96 { + row-gap: 24rem; } - .sm\:place-items-end { - place-items: end; + .sm\:gap-y-px { + row-gap: 1px; } - .sm\:place-items-center { - place-items: center; + .sm\:gap-y-0\.5 { + row-gap: 0.125rem; } - .sm\:place-items-stretch { - place-items: stretch; + .sm\:gap-y-1\.5 { + row-gap: 0.375rem; } - .sm\:place-content-center { - place-content: center; + .sm\:gap-y-2\.5 { + row-gap: 0.625rem; } - .sm\:place-content-start { - place-content: start; + .sm\:gap-y-3\.5 { + row-gap: 0.875rem; } - .sm\:place-content-end { - place-content: end; + .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\:place-content-between { - place-content: space-between; + .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\:place-content-around { - place-content: space-around; + .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\:place-content-evenly { - place-content: space-evenly; + .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\:place-content-stretch { - place-content: stretch; + .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\:place-self-auto { - place-self: auto; + .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\:place-self-start { - place-self: start; + .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\:place-self-end { - place-self: end; + .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\:place-self-center { - place-self: center; + .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\:place-self-stretch { - place-self: stretch; + .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\:items-start { - align-items: flex-start; + .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\:items-end { - align-items: flex-end; + .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\:items-center { - align-items: center; + .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\:items-baseline { - align-items: baseline; + .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\:items-stretch { - align-items: stretch; + .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\:content-center { - align-content: center; + .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\:content-start { - align-content: flex-start; + .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\:content-end { - align-content: flex-end; + .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\:content-between { - align-content: space-between; + .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\:content-around { - align-content: space-around; + .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\:content-evenly { - align-content: space-evenly; + .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\:self-auto { - align-self: auto; + .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\:self-start { - align-self: flex-start; + .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\:self-end { - align-self: flex-end; + .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\:self-center { - align-self: center; + .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\:self-stretch { - align-self: stretch; + .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\:justify-items-start { - justify-items: start; + .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\:justify-items-end { - justify-items: end; + .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\:justify-items-center { - justify-items: center; + .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\:justify-items-stretch { - justify-items: stretch; + .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\:justify-start { - justify-content: flex-start; + .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\:justify-end { - justify-content: flex-end; + .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\:justify-center { - justify-content: center; + .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\:justify-between { - justify-content: space-between; + .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\:justify-around { - justify-content: space-around; + .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\:justify-evenly { - justify-content: space-evenly; + .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\:justify-self-auto { - justify-self: auto; + .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\:justify-self-start { - justify-self: start; + .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\:justify-self-end { - justify-self: end; + .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\:justify-self-center { - justify-self: center; + .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\:justify-self-stretch { - justify-self: stretch; + .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\:flex-1 { - flex: 1 1 0%; + .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\:flex-auto { - flex: 1 1 auto; + .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\:flex-initial { - flex: 0 1 auto; + .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\:flex-none { - flex: none; + .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\:flex-grow-0 { - flex-grow: 0; + .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\:flex-grow { - flex-grow: 1; + .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\:flex-shrink-0 { - flex-shrink: 0; + .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\:flex-shrink { - flex-shrink: 1; + .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\:order-1 { - order: 1; + .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\:order-2 { - order: 2; + .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\:order-3 { - order: 3; + .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\:order-4 { - order: 4; + .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\:order-5 { - order: 5; + .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\:order-6 { - order: 6; + .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\:order-7 { - order: 7; + .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\:order-8 { - order: 8; + .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\:order-9 { - order: 9; + .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\:order-10 { - order: 10; + .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\:order-11 { - order: 11; + .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\:order-12 { - order: 12; + .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\:order-first { - order: -9999; + .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\:order-last { - order: 9999; + .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\:order-none { - order: 0; + .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\:float-right { - float: right; + .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\:float-left { - float: left; + .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\:float-none { - float: none; + .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\:clear-left { - clear: left; + .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\:clear-right { - clear: right; + .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\:clear-both { - clear: both; + .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\:clear-none { - clear: none; + .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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .sm\:-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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .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\:font-thin { - font-weight: 100; + .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\:font-extralight { - font-weight: 200; + .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\:font-light { - font-weight: 300; + .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\:font-normal { - font-weight: 400; + .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\:font-medium { - font-weight: 500; + .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\:font-semibold { - font-weight: 600; + .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\:font-bold { - font-weight: 700; + .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\:font-extrabold { - font-weight: 800; + .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\:font-black { - font-weight: 900; + .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\:h-0 { - height: 0px; + .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\:h-1 { - height: 0.25rem; + .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\:h-2 { - height: 0.5rem; + .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\:h-3 { - height: 0.75rem; + .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\:h-4 { - height: 1rem; + .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\:h-5 { - height: 1.25rem; + .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\:h-6 { - height: 1.5rem; + .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\:h-7 { - height: 1.75rem; + .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\:h-8 { - height: 2rem; + .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\:h-9 { - height: 2.25rem; + .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\:h-10 { - height: 2.5rem; + .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\:h-11 { - height: 2.75rem; + .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\:h-12 { - height: 3rem; + .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\:h-14 { - height: 3.5rem; + .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\:h-16 { - height: 4rem; + .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\:h-20 { - height: 5rem; + .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\:h-24 { - height: 6rem; + .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\:h-28 { - height: 7rem; + .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\:h-32 { - height: 8rem; + .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\:h-36 { - height: 9rem; + .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\:h-40 { - height: 10rem; + .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\:h-44 { - height: 11rem; + .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\:h-48 { - height: 12rem; + .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\:h-52 { - height: 13rem; + .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\:h-56 { - height: 14rem; + .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\:h-60 { - height: 15rem; + .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\:h-64 { - height: 16rem; + .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\:h-72 { - height: 18rem; + .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\:h-80 { - height: 20rem; + .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\:h-96 { - height: 24rem; + .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\:h-auto { - height: auto; + .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\:h-px { - height: 1px; + .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\:h-0\.5 { - height: 0.125rem; + .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\:h-1\.5 { - height: 0.375rem; + .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\:h-2\.5 { - height: 0.625rem; + .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\:h-3\.5 { - height: 0.875rem; + .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\:h-1\/2 { - height: 50%; + .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\:h-1\/3 { - height: 33.333333%; + .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\:h-2\/3 { - height: 66.666667%; + .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\:h-1\/4 { - height: 25%; + .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\:h-2\/4 { - height: 50%; + .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\:h-3\/4 { - height: 75%; + .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\:h-1\/5 { - height: 20%; + .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\:h-2\/5 { - height: 40%; + .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\:h-3\/5 { - height: 60%; + .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\:h-4\/5 { - height: 80%; + .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\:h-1\/6 { - height: 16.666667%; + .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\:h-2\/6 { - height: 33.333333%; + .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\:h-3\/6 { - height: 50%; + .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\:h-4\/6 { - height: 66.666667%; + .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\:h-5\/6 { - height: 83.333333%; + .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\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .sm\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .sm\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .sm\:leading-7 { - line-height: 1.75rem; + .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .sm\:leading-8 { - line-height: 2rem; + .sm\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .sm\:leading-9 { - line-height: 2.25rem; + .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .sm\:leading-10 { - line-height: 2.5rem; + .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .sm\:leading-none { - line-height: 1; + .sm\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .sm\:leading-tight { - line-height: 1.25; + .sm\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .sm\:leading-snug { - line-height: 1.375; + .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .sm\:leading-normal { - line-height: 1.5; + .sm\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .sm\:leading-relaxed { - line-height: 1.625; + .sm\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } - .sm\:leading-loose { - line-height: 2; + .sm\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } - .sm\:list-inside { - list-style-position: inside; + .sm\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } - .sm\:list-outside { - list-style-position: outside; + .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } - .sm\:list-none { - list-style-type: none; + .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } - .sm\:list-disc { - list-style-type: disc; + .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } - .sm\:list-decimal { - list-style-type: decimal; + .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } - .sm\:m-0 { - margin: 0px; + .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } - .sm\:m-1 { - margin: 0.25rem; + .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } - .sm\:m-2 { - margin: 0.5rem; + .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } - .sm\:m-3 { - margin: 0.75rem; + .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } - .sm\:m-4 { - margin: 1rem; + .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } - .sm\:m-5 { - margin: 1.25rem; + .sm\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } - .sm\:m-6 { - margin: 1.5rem; + .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } - .sm\:m-7 { - margin: 1.75rem; + .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } - .sm\:m-8 { - margin: 2rem; + .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } - .sm\:m-9 { - margin: 2.25rem; + .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } - .sm\:m-10 { - margin: 2.5rem; + .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } - .sm\:m-11 { - margin: 2.75rem; + .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } - .sm\:m-12 { - margin: 3rem; + .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } - .sm\:m-14 { - margin: 3.5rem; + .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } - .sm\:m-16 { - margin: 4rem; + .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } - .sm\:m-20 { - margin: 5rem; + .sm\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } - .sm\:m-24 { - margin: 6rem; + .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } - .sm\:m-28 { - margin: 7rem; + .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } - .sm\:m-32 { - margin: 8rem; + .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } - .sm\:m-36 { - margin: 9rem; + .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } - .sm\:m-40 { - margin: 10rem; + .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } - .sm\:m-44 { - margin: 11rem; + .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } - .sm\:m-48 { - margin: 12rem; + .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } - .sm\:m-52 { - margin: 13rem; + .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } - .sm\:m-56 { - margin: 14rem; + .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } - .sm\:m-60 { - margin: 15rem; + .sm\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } - .sm\:m-64 { - margin: 16rem; + .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } - .sm\:m-72 { - margin: 18rem; + .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } - .sm\:m-80 { - margin: 20rem; + .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } - .sm\:m-96 { - margin: 24rem; + .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } - .sm\:m-auto { - margin: auto; + .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } - .sm\:m-px { - margin: 1px; + .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } - .sm\:m-0\.5 { - margin: 0.125rem; + .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } - .sm\:m-1\.5 { - margin: 0.375rem; + .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } - .sm\:m-2\.5 { - margin: 0.625rem; + .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } - .sm\:m-3\.5 { - margin: 0.875rem; + .sm\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } - .sm\:-m-0 { - margin: 0px; + .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } - .sm\:-m-1 { - margin: -0.25rem; + .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } - .sm\:-m-2 { - margin: -0.5rem; + .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } - .sm\:-m-3 { - margin: -0.75rem; + .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } - .sm\:-m-4 { - margin: -1rem; + .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } - .sm\:-m-5 { - margin: -1.25rem; + .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } - .sm\:-m-6 { - margin: -1.5rem; + .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } - .sm\:-m-7 { - margin: -1.75rem; + .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } - .sm\:-m-8 { - margin: -2rem; + .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } - .sm\:-m-9 { - margin: -2.25rem; + .sm\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } - .sm\:-m-10 { - margin: -2.5rem; + .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } - .sm\:-m-11 { - margin: -2.75rem; + .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } - .sm\:-m-12 { - margin: -3rem; + .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } - .sm\:-m-14 { - margin: -3.5rem; + .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } - .sm\:-m-16 { - margin: -4rem; + .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } - .sm\:-m-20 { - margin: -5rem; + .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } - .sm\:-m-24 { - margin: -6rem; + .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } - .sm\:-m-28 { - margin: -7rem; + .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } - .sm\:-m-32 { - margin: -8rem; + .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } - .sm\:-m-36 { - margin: -9rem; + .sm\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } - .sm\:-m-40 { - margin: -10rem; + .sm\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } - .sm\:-m-44 { - margin: -11rem; + .sm\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } - .sm\:-m-48 { - margin: -12rem; + .sm\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } - .sm\:-m-52 { - margin: -13rem; + .sm\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } - .sm\:-m-56 { - margin: -14rem; + .sm\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } - .sm\:-m-60 { - margin: -15rem; + .sm\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } - .sm\:-m-64 { - margin: -16rem; + .sm\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } - .sm\:-m-72 { - margin: -18rem; + .sm\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } - .sm\:-m-80 { - margin: -20rem; + .sm\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } - .sm\:-m-96 { - margin: -24rem; + .sm\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } - .sm\:-m-px { - margin: -1px; + .sm\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } - .sm\:-m-0\.5 { - margin: -0.125rem; + .sm\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } - .sm\:-m-1\.5 { - margin: -0.375rem; + .sm\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } - .sm\:-m-2\.5 { - margin: -0.625rem; + .sm\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } - .sm\:-m-3\.5 { - margin: -0.875rem; + .sm\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } - .sm\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .sm\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } - .sm\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .sm\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } - .sm\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .sm\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } - .sm\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .sm\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } - .sm\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .sm\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } - .sm\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .sm\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } - .sm\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .sm\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } - .sm\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .sm\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } - .sm\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .sm\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } - .sm\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .sm\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } - .sm\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .sm\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } - .sm\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .sm\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } - .sm\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .sm\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } - .sm\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .sm\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } - .sm\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .sm\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } - .sm\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .sm\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } - .sm\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .sm\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } - .sm\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .sm\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } - .sm\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .sm\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } - .sm\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .sm\:place-self-auto { + place-self: auto; } - .sm\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .sm\:place-self-start { + place-self: start; } - .sm\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .sm\:place-self-end { + place-self: end; } - .sm\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .sm\:place-self-center { + place-self: center; } - .sm\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .sm\:place-self-stretch { + place-self: stretch; } - .sm\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .sm\:self-auto { + align-self: auto; } - .sm\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .sm\:self-start { + align-self: flex-start; } - .sm\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .sm\:self-end { + align-self: flex-end; } - .sm\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .sm\:self-center { + align-self: center; } - .sm\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .sm\:self-stretch { + align-self: stretch; } - .sm\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .sm\:justify-self-auto { + justify-self: auto; } - .sm\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .sm\:justify-self-start { + justify-self: start; } - .sm\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .sm\:justify-self-end { + justify-self: end; } - .sm\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .sm\:justify-self-center { + justify-self: center; } - .sm\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .sm\:justify-self-stretch { + justify-self: stretch; } - .sm\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .sm\:overflow-auto { + overflow: auto; } - .sm\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .sm\:overflow-hidden { + overflow: hidden; } - .sm\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .sm\:overflow-visible { + overflow: visible; } - .sm\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .sm\:overflow-scroll { + overflow: scroll; } - .sm\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .sm\:overflow-x-auto { + overflow-x: auto; } - .sm\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .sm\:overflow-y-auto { + overflow-y: auto; } - .sm\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .sm\:overflow-x-hidden { + overflow-x: hidden; } - .sm\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .sm\:overflow-y-hidden { + overflow-y: hidden; } - .sm\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .sm\:overflow-x-visible { + overflow-x: visible; } - .sm\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .sm\:overflow-y-visible { + overflow-y: visible; } - .sm\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .sm\:overflow-x-scroll { + overflow-x: scroll; } - .sm\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .sm\:overflow-y-scroll { + overflow-y: scroll; } - .sm\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .sm\:overscroll-auto { + overscroll-behavior: auto; } - .sm\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .sm\:overscroll-contain { + overscroll-behavior: contain; } - .sm\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .sm\:overscroll-none { + overscroll-behavior: none; } - .sm\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .sm\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .sm\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .sm\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .sm\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .sm\:overscroll-y-none { + overscroll-behavior-y: none; } - .sm\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .sm\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .sm\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .sm\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .sm\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .sm\:overscroll-x-none { + overscroll-behavior-x: none; } - .sm\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .sm\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .sm\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .sm\:overflow-ellipsis { + text-overflow: ellipsis; } - .sm\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .sm\:overflow-clip { + text-overflow: clip; } - .sm\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .sm\:whitespace-normal { + white-space: normal; } - .sm\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .sm\:whitespace-nowrap { + white-space: nowrap; } - .sm\:my-auto { - margin-top: auto; - margin-bottom: auto; + .sm\:whitespace-pre { + white-space: pre; } - .sm\:mx-auto { - margin-left: auto; - margin-right: auto; + .sm\:whitespace-pre-line { + white-space: pre-line; } - .sm\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .sm\:whitespace-pre-wrap { + white-space: pre-wrap; } - .sm\:mx-px { - margin-left: 1px; - margin-right: 1px; + .sm\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .sm\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .sm\:break-words { + overflow-wrap: break-word; } - .sm\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .sm\:break-all { + word-break: break-all; } - .sm\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .sm\:rounded-none { + border-radius: 0px; } - .sm\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .sm\:rounded-sm { + border-radius: 0.125rem; } - .sm\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .sm\:rounded { + border-radius: 0.25rem; } - .sm\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .sm\:rounded-md { + border-radius: 0.375rem; } - .sm\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .sm\:rounded-lg { + border-radius: 0.5rem; } - .sm\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .sm\:rounded-xl { + border-radius: 0.75rem; } - .sm\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .sm\:rounded-2xl { + border-radius: 1rem; } - .sm\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .sm\:rounded-3xl { + border-radius: 1.5rem; } - .sm\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .sm\:rounded-full { + border-radius: 9999px; } - .sm\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .sm\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .sm\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .sm\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .sm\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .sm\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .sm\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .sm\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .sm\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .sm\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .sm\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .sm\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .sm\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .sm\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .sm\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .sm\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .sm\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .sm\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .sm\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .sm\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .sm\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .sm\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .sm\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .sm\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .sm\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .sm\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .sm\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .sm\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .sm\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .sm\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .sm\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .sm\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .sm\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .sm\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .sm\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .sm\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .sm\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .sm\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .sm\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .sm\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .sm\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .sm\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .sm\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .sm\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .sm\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .sm\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .sm\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .sm\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .sm\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .sm\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .sm\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .sm\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .sm\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .sm\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .sm\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .sm\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .sm\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .sm\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .sm\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .sm\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .sm\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .sm\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .sm\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .sm\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .sm\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .sm\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .sm\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .sm\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .sm\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .sm\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .sm\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .sm\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .sm\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .sm\:rounded-tl-none { + border-top-left-radius: 0px; } - .sm\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .sm\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .sm\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .sm\:rounded-tl { + border-top-left-radius: 0.25rem; } - .sm\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .sm\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .sm\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .sm\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .sm\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .sm\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .sm\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .sm\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .sm\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .sm\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .sm\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .sm\:rounded-tl-full { + border-top-left-radius: 9999px; } - .sm\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .sm\:rounded-tr-none { + border-top-right-radius: 0px; } - .sm\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .sm\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .sm\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .sm\:rounded-tr { + border-top-right-radius: 0.25rem; } - .sm\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .sm\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .sm\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .sm\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .sm\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .sm\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .sm\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .sm\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .sm\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .sm\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .sm\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .sm\:rounded-tr-full { + border-top-right-radius: 9999px; } - .sm\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .sm\:rounded-br-none { + border-bottom-right-radius: 0px; } - .sm\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .sm\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .sm\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .sm\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .sm\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .sm\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .sm\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .sm\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .sm\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .sm\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .sm\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .sm\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .sm\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .sm\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .sm\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .sm\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .sm\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .sm\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .sm\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .sm\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .sm\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .sm\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .sm\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .sm\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .sm\:mt-0 { - margin-top: 0px; + .sm\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .sm\:mr-0 { - margin-right: 0px; + .sm\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .sm\:mb-0 { - margin-bottom: 0px; + .sm\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .sm\:ml-0 { - margin-left: 0px; + .sm\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .sm\:mt-1 { - margin-top: 0.25rem; + .sm\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .sm\:mr-1 { - margin-right: 0.25rem; + .sm\:border-0 { + border-width: 0px; } - .sm\:mb-1 { - margin-bottom: 0.25rem; + .sm\:border-2 { + border-width: 2px; } - .sm\:ml-1 { - margin-left: 0.25rem; + .sm\:border-4 { + border-width: 4px; } - .sm\:mt-2 { - margin-top: 0.5rem; + .sm\:border-8 { + border-width: 8px; } - .sm\:mr-2 { - margin-right: 0.5rem; + .sm\:border { + border-width: 1px; } - .sm\:mb-2 { - margin-bottom: 0.5rem; + .sm\:border-t-0 { + border-top-width: 0px; } - .sm\:ml-2 { - margin-left: 0.5rem; + .sm\:border-t-2 { + border-top-width: 2px; } - .sm\:mt-3 { - margin-top: 0.75rem; + .sm\:border-t-4 { + border-top-width: 4px; } - .sm\:mr-3 { - margin-right: 0.75rem; + .sm\:border-t-8 { + border-top-width: 8px; } - .sm\:mb-3 { - margin-bottom: 0.75rem; + .sm\:border-t { + border-top-width: 1px; } - .sm\:ml-3 { - margin-left: 0.75rem; + .sm\:border-r-0 { + border-right-width: 0px; } - .sm\:mt-4 { - margin-top: 1rem; + .sm\:border-r-2 { + border-right-width: 2px; } - .sm\:mr-4 { - margin-right: 1rem; + .sm\:border-r-4 { + border-right-width: 4px; } - .sm\:mb-4 { - margin-bottom: 1rem; + .sm\:border-r-8 { + border-right-width: 8px; } - .sm\:ml-4 { - margin-left: 1rem; + .sm\:border-r { + border-right-width: 1px; } - .sm\:mt-5 { - margin-top: 1.25rem; + .sm\:border-b-0 { + border-bottom-width: 0px; } - .sm\:mr-5 { - margin-right: 1.25rem; + .sm\:border-b-2 { + border-bottom-width: 2px; } - .sm\:mb-5 { - margin-bottom: 1.25rem; + .sm\:border-b-4 { + border-bottom-width: 4px; } - .sm\:ml-5 { - margin-left: 1.25rem; + .sm\:border-b-8 { + border-bottom-width: 8px; } - .sm\:mt-6 { - margin-top: 1.5rem; + .sm\:border-b { + border-bottom-width: 1px; } - .sm\:mr-6 { - margin-right: 1.5rem; + .sm\:border-l-0 { + border-left-width: 0px; } - .sm\:mb-6 { - margin-bottom: 1.5rem; + .sm\:border-l-2 { + border-left-width: 2px; } - .sm\:ml-6 { - margin-left: 1.5rem; + .sm\:border-l-4 { + border-left-width: 4px; } - .sm\:mt-7 { - margin-top: 1.75rem; + .sm\:border-l-8 { + border-left-width: 8px; } - .sm\:mr-7 { - margin-right: 1.75rem; + .sm\:border-l { + border-left-width: 1px; } - .sm\:mb-7 { - margin-bottom: 1.75rem; + .sm\:border-solid { + border-style: solid; } - .sm\:ml-7 { - margin-left: 1.75rem; + .sm\:border-dashed { + border-style: dashed; } - .sm\:mt-8 { - margin-top: 2rem; + .sm\:border-dotted { + border-style: dotted; } - .sm\:mr-8 { - margin-right: 2rem; + .sm\:border-double { + border-style: double; } - .sm\:mb-8 { - margin-bottom: 2rem; + .sm\:border-none { + border-style: none; } - .sm\:ml-8 { - margin-left: 2rem; + .sm\:border-transparent { + border-color: transparent; } - .sm\:mt-9 { - margin-top: 2.25rem; + .sm\:border-current { + border-color: currentColor; } - .sm\:mr-9 { - margin-right: 2.25rem; + .sm\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .sm\:mb-9 { - margin-bottom: 2.25rem; + .sm\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .sm\:ml-9 { - margin-left: 2.25rem; + .sm\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .sm\:mt-10 { - margin-top: 2.5rem; + .sm\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .sm\:mr-10 { - margin-right: 2.5rem; + .sm\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .sm\:mb-10 { - margin-bottom: 2.5rem; + .sm\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .sm\:ml-10 { - margin-left: 2.5rem; + .sm\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .sm\:mt-11 { - margin-top: 2.75rem; + .sm\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .sm\:mr-11 { - margin-right: 2.75rem; + .sm\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .sm\:mb-11 { - margin-bottom: 2.75rem; + .sm\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .sm\:ml-11 { - margin-left: 2.75rem; + .sm\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .sm\:mt-12 { - margin-top: 3rem; + .sm\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .sm\:mr-12 { - margin-right: 3rem; + .sm\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .sm\:mb-12 { - margin-bottom: 3rem; + .sm\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .sm\:ml-12 { - margin-left: 3rem; + .sm\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .sm\:mt-14 { - margin-top: 3.5rem; + .sm\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .sm\:mr-14 { - margin-right: 3.5rem; + .sm\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .sm\:mb-14 { - margin-bottom: 3.5rem; + .sm\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .sm\:ml-14 { - margin-left: 3.5rem; + .sm\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .sm\:mt-16 { - margin-top: 4rem; + .sm\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .sm\:mr-16 { - margin-right: 4rem; + .sm\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .sm\:mb-16 { - margin-bottom: 4rem; + .sm\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .sm\:ml-16 { - margin-left: 4rem; + .sm\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .sm\:mt-20 { - margin-top: 5rem; + .sm\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .sm\:mr-20 { - margin-right: 5rem; + .sm\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .sm\:mb-20 { - margin-bottom: 5rem; + .sm\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .sm\:ml-20 { - margin-left: 5rem; + .sm\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .sm\:mt-24 { - margin-top: 6rem; + .sm\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .sm\:mr-24 { - margin-right: 6rem; + .sm\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .sm\:mb-24 { - margin-bottom: 6rem; + .sm\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .sm\:ml-24 { - margin-left: 6rem; + .sm\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .sm\:mt-28 { - margin-top: 7rem; + .sm\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .sm\:mr-28 { - margin-right: 7rem; + .sm\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .sm\:mb-28 { - margin-bottom: 7rem; + .sm\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .sm\:ml-28 { - margin-left: 7rem; + .sm\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .sm\:mt-32 { - margin-top: 8rem; + .sm\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .sm\:mr-32 { - margin-right: 8rem; + .sm\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .sm\:mb-32 { - margin-bottom: 8rem; + .sm\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .sm\:ml-32 { - margin-left: 8rem; + .sm\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .sm\:mt-36 { - margin-top: 9rem; + .sm\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .sm\:mr-36 { - margin-right: 9rem; + .sm\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .sm\:mb-36 { - margin-bottom: 9rem; + .sm\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .sm\:ml-36 { - margin-left: 9rem; + .sm\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .sm\:mt-40 { - margin-top: 10rem; + .sm\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .sm\:mr-40 { - margin-right: 10rem; + .sm\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .sm\:mb-40 { - margin-bottom: 10rem; + .sm\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .sm\:ml-40 { - margin-left: 10rem; + .sm\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .sm\:mt-44 { - margin-top: 11rem; + .sm\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .sm\:mr-44 { - margin-right: 11rem; + .sm\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .sm\:mb-44 { - margin-bottom: 11rem; + .sm\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .sm\:ml-44 { - margin-left: 11rem; + .sm\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .sm\:mt-48 { - margin-top: 12rem; + .sm\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .sm\:mr-48 { - margin-right: 12rem; + .sm\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .sm\:mb-48 { - margin-bottom: 12rem; + .sm\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .sm\:ml-48 { - margin-left: 12rem; + .sm\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .sm\:mt-52 { - margin-top: 13rem; + .sm\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .sm\:mr-52 { - margin-right: 13rem; + .sm\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .sm\:mb-52 { - margin-bottom: 13rem; + .sm\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .sm\:ml-52 { - margin-left: 13rem; + .sm\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .sm\:mt-56 { - margin-top: 14rem; + .sm\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .sm\:mr-56 { - margin-right: 14rem; + .sm\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .sm\:mb-56 { - margin-bottom: 14rem; + .sm\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .sm\:ml-56 { - margin-left: 14rem; + .sm\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .sm\:mt-60 { - margin-top: 15rem; + .sm\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .sm\:mr-60 { - margin-right: 15rem; + .sm\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .sm\:mb-60 { - margin-bottom: 15rem; + .sm\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .sm\:ml-60 { - margin-left: 15rem; + .sm\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .sm\:mt-64 { - margin-top: 16rem; + .sm\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .sm\:mr-64 { - margin-right: 16rem; + .sm\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .sm\:mb-64 { - margin-bottom: 16rem; + .sm\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .sm\:ml-64 { - margin-left: 16rem; + .sm\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .sm\:mt-72 { - margin-top: 18rem; + .sm\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .sm\:mr-72 { - margin-right: 18rem; + .sm\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .sm\:mb-72 { - margin-bottom: 18rem; + .sm\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .sm\:ml-72 { - margin-left: 18rem; + .sm\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .sm\:mt-80 { - margin-top: 20rem; + .sm\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + } + + .sm\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .sm\:mr-80 { - margin-right: 20rem; + .sm\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .sm\:mb-80 { - margin-bottom: 20rem; + .sm\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .sm\:ml-80 { - margin-left: 20rem; + .sm\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .sm\:mt-96 { - margin-top: 24rem; + .sm\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .sm\:mr-96 { - margin-right: 24rem; + .sm\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .sm\:mb-96 { - margin-bottom: 24rem; + .group:hover .sm\:group-hover\:border-transparent { + border-color: transparent; } - .sm\:ml-96 { - margin-left: 24rem; + .group:hover .sm\:group-hover\:border-current { + border-color: currentColor; } - .sm\:mt-auto { - margin-top: auto; + .group:hover .sm\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .sm\:mr-auto { - margin-right: auto; + .group:hover .sm\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .sm\:mb-auto { - margin-bottom: auto; + .group:hover .sm\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .sm\:ml-auto { - margin-left: auto; + .group:hover .sm\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .sm\:mt-px { - margin-top: 1px; + .group:hover .sm\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .sm\:mr-px { - margin-right: 1px; + .group:hover .sm\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .sm\:mb-px { - margin-bottom: 1px; + .group:hover .sm\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .sm\:ml-px { - margin-left: 1px; + .group:hover .sm\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .sm\:mt-0\.5 { - margin-top: 0.125rem; + .group:hover .sm\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .sm\:mr-0\.5 { - margin-right: 0.125rem; + .group:hover .sm\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .sm\:mb-0\.5 { - margin-bottom: 0.125rem; + .group:hover .sm\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .sm\:ml-0\.5 { - margin-left: 0.125rem; + .group:hover .sm\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .sm\:mt-1\.5 { - margin-top: 0.375rem; + .group:hover .sm\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .sm\:mr-1\.5 { - margin-right: 0.375rem; + .group:hover .sm\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .sm\:mb-1\.5 { - margin-bottom: 0.375rem; + .group:hover .sm\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .sm\:ml-1\.5 { - margin-left: 0.375rem; + .group:hover .sm\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .sm\:mt-2\.5 { - margin-top: 0.625rem; + .group:hover .sm\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .sm\:mr-2\.5 { - margin-right: 0.625rem; + .group:hover .sm\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .sm\:mb-2\.5 { - margin-bottom: 0.625rem; + .group:hover .sm\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .sm\:ml-2\.5 { - margin-left: 0.625rem; + .group:hover .sm\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .sm\:mt-3\.5 { - margin-top: 0.875rem; + .group:hover .sm\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .sm\:mr-3\.5 { - margin-right: 0.875rem; + .group:hover .sm\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .sm\:mb-3\.5 { - margin-bottom: 0.875rem; + .group:hover .sm\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .sm\:ml-3\.5 { - margin-left: 0.875rem; + .group:hover .sm\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .sm\:-mt-0 { - margin-top: 0px; + .group:hover .sm\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .sm\:-mr-0 { - margin-right: 0px; + .group:hover .sm\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .sm\:-mb-0 { - margin-bottom: 0px; + .group:hover .sm\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .sm\:-ml-0 { - margin-left: 0px; + .group:hover .sm\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .sm\:-mt-1 { - margin-top: -0.25rem; + .group:hover .sm\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .sm\:-mr-1 { - margin-right: -0.25rem; + .group:hover .sm\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .sm\:-mb-1 { - margin-bottom: -0.25rem; + .group:hover .sm\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .sm\:-ml-1 { - margin-left: -0.25rem; + .group:hover .sm\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .sm\:-mt-2 { - margin-top: -0.5rem; + .group:hover .sm\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .sm\:-mr-2 { - margin-right: -0.5rem; + .group:hover .sm\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .sm\:-mb-2 { - margin-bottom: -0.5rem; + .group:hover .sm\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .sm\:-ml-2 { - margin-left: -0.5rem; + .group:hover .sm\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .sm\:-mt-3 { - margin-top: -0.75rem; + .group:hover .sm\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .sm\:-mr-3 { - margin-right: -0.75rem; + .group:hover .sm\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .sm\:-mb-3 { - margin-bottom: -0.75rem; + .group:hover .sm\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .sm\:-ml-3 { - margin-left: -0.75rem; + .group:hover .sm\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .sm\:-mt-4 { - margin-top: -1rem; + .group:hover .sm\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .sm\:-mr-4 { - margin-right: -1rem; + .group:hover .sm\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .sm\:-mb-4 { - margin-bottom: -1rem; + .group:hover .sm\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .sm\:-ml-4 { - margin-left: -1rem; + .group:hover .sm\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .sm\:-mt-5 { - margin-top: -1.25rem; + .group:hover .sm\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .sm\:-mr-5 { - margin-right: -1.25rem; + .group:hover .sm\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .sm\:-mb-5 { - margin-bottom: -1.25rem; + .group:hover .sm\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .sm\:-ml-5 { - margin-left: -1.25rem; + .group:hover .sm\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .sm\:-mt-6 { - margin-top: -1.5rem; + .group:hover .sm\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .sm\:-mr-6 { - margin-right: -1.5rem; + .group:hover .sm\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .sm\:-mb-6 { - margin-bottom: -1.5rem; + .group:hover .sm\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .sm\:-ml-6 { - margin-left: -1.5rem; + .group:hover .sm\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .sm\:-mt-7 { - margin-top: -1.75rem; + .group:hover .sm\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .sm\:-mr-7 { - margin-right: -1.75rem; + .group:hover .sm\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .sm\:-mb-7 { - margin-bottom: -1.75rem; + .group:hover .sm\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .sm\:-ml-7 { - margin-left: -1.75rem; + .group:hover .sm\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .sm\:-mt-8 { - margin-top: -2rem; + .group:hover .sm\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .sm\:-mr-8 { - margin-right: -2rem; + .group:hover .sm\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .sm\:-mb-8 { - margin-bottom: -2rem; + .group:hover .sm\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .sm\:-ml-8 { - margin-left: -2rem; + .group:hover .sm\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .sm\:-mt-9 { - margin-top: -2.25rem; + .group:hover .sm\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .sm\:-mr-9 { - margin-right: -2.25rem; + .group:hover .sm\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .sm\:-mb-9 { - margin-bottom: -2.25rem; + .group:hover .sm\:group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .sm\:-ml-9 { - margin-left: -2.25rem; + .group:hover .sm\:group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .sm\:-mt-10 { - margin-top: -2.5rem; + .group:hover .sm\:group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .sm\:-mr-10 { - margin-right: -2.5rem; + .group:hover .sm\:group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .sm\:-mb-10 { - margin-bottom: -2.5rem; + .group:hover .sm\:group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .sm\:-ml-10 { - margin-left: -2.5rem; + .group:hover .sm\:group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .sm\:-mt-11 { - margin-top: -2.75rem; + .group:hover .sm\:group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .sm\:-mr-11 { - margin-right: -2.75rem; + .group:hover .sm\:group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .sm\:-mb-11 { - margin-bottom: -2.75rem; + .group:hover .sm\:group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .sm\:-ml-11 { - margin-left: -2.75rem; + .group:hover .sm\:group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .sm\:-mt-12 { - margin-top: -3rem; + .group:hover .sm\:group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .sm\:-mr-12 { - margin-right: -3rem; + .group:hover .sm\:group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .sm\:-mb-12 { - margin-bottom: -3rem; + .group:hover .sm\:group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .sm\:-ml-12 { - margin-left: -3rem; + .group:hover .sm\:group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .sm\:-mt-14 { - margin-top: -3.5rem; + .group:hover .sm\:group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .sm\:-mr-14 { - margin-right: -3.5rem; + .group:hover .sm\:group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .sm\:-mb-14 { - margin-bottom: -3.5rem; + .group:hover .sm\:group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .sm\:-ml-14 { - margin-left: -3.5rem; + .group:hover .sm\:group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .sm\:-mt-16 { - margin-top: -4rem; + .group:hover .sm\:group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .sm\:-mr-16 { - margin-right: -4rem; + .group:hover .sm\:group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .sm\:-mb-16 { - margin-bottom: -4rem; + .sm\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .sm\:-ml-16 { - margin-left: -4rem; + .sm\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .sm\:-mt-20 { - margin-top: -5rem; + .sm\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .sm\:-mr-20 { - margin-right: -5rem; + .sm\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .sm\:-mb-20 { - margin-bottom: -5rem; + .sm\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .sm\:-ml-20 { - margin-left: -5rem; + .sm\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .sm\:-mt-24 { - margin-top: -6rem; + .sm\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .sm\:-mr-24 { - margin-right: -6rem; + .sm\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .sm\:-mb-24 { - margin-bottom: -6rem; + .sm\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .sm\:-ml-24 { - margin-left: -6rem; + .sm\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .sm\:-mt-28 { - margin-top: -7rem; + .sm\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .sm\:-mr-28 { - margin-right: -7rem; + .sm\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .sm\:-mb-28 { - margin-bottom: -7rem; + .sm\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .sm\:-ml-28 { - margin-left: -7rem; + .sm\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .sm\:-mt-32 { - margin-top: -8rem; + .sm\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .sm\:-mr-32 { - margin-right: -8rem; + .sm\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .sm\:-mb-32 { - margin-bottom: -8rem; + .sm\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .sm\:-ml-32 { - margin-left: -8rem; + .sm\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .sm\:-mt-36 { - margin-top: -9rem; + .sm\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .sm\:-mr-36 { - margin-right: -9rem; + .sm\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .sm\:-mb-36 { - margin-bottom: -9rem; + .sm\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .sm\:-ml-36 { - margin-left: -9rem; + .sm\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .sm\:-mt-40 { - margin-top: -10rem; + .sm\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .sm\:-mr-40 { - margin-right: -10rem; + .sm\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .sm\:-mb-40 { - margin-bottom: -10rem; + .sm\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .sm\:-ml-40 { - margin-left: -10rem; + .sm\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .sm\:-mt-44 { - margin-top: -11rem; + .sm\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .sm\:-mr-44 { - margin-right: -11rem; + .sm\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .sm\:-mb-44 { - margin-bottom: -11rem; + .sm\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .sm\:-ml-44 { - margin-left: -11rem; + .sm\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .sm\:-mt-48 { - margin-top: -12rem; + .sm\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .sm\:-mr-48 { - margin-right: -12rem; + .sm\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .sm\:-mb-48 { - margin-bottom: -12rem; + .sm\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .sm\:-ml-48 { - margin-left: -12rem; + .sm\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .sm\:-mt-52 { - margin-top: -13rem; + .sm\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .sm\:-mr-52 { - margin-right: -13rem; + .sm\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .sm\:-mb-52 { - margin-bottom: -13rem; + .sm\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .sm\:-ml-52 { - margin-left: -13rem; + .sm\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .sm\:-mt-56 { - margin-top: -14rem; + .sm\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .sm\:-mr-56 { - margin-right: -14rem; + .sm\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .sm\:-mb-56 { - margin-bottom: -14rem; + .sm\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .sm\:-ml-56 { - margin-left: -14rem; + .sm\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .sm\:-mt-60 { - margin-top: -15rem; + .sm\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .sm\:-mr-60 { - margin-right: -15rem; + .sm\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .sm\:-mb-60 { - margin-bottom: -15rem; + .sm\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .sm\:-ml-60 { - margin-left: -15rem; + .sm\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .sm\:-mt-64 { - margin-top: -16rem; + .sm\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .sm\:-mr-64 { - margin-right: -16rem; + .sm\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .sm\:-mb-64 { - margin-bottom: -16rem; + .sm\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .sm\:-ml-64 { - margin-left: -16rem; + .sm\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .sm\:-mt-72 { - margin-top: -18rem; + .sm\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .sm\:-mr-72 { - margin-right: -18rem; + .sm\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .sm\:-mb-72 { - margin-bottom: -18rem; + .sm\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .sm\:-ml-72 { - margin-left: -18rem; + .sm\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .sm\:-mt-80 { - margin-top: -20rem; + .sm\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .sm\:-mr-80 { - margin-right: -20rem; + .sm\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .sm\:-mb-80 { - margin-bottom: -20rem; + .sm\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .sm\:-ml-80 { - margin-left: -20rem; + .sm\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .sm\:-mt-96 { - margin-top: -24rem; + .sm\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .sm\:-mr-96 { - margin-right: -24rem; + .sm\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .sm\:-mb-96 { - margin-bottom: -24rem; + .sm\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .sm\:-ml-96 { - margin-left: -24rem; + .sm\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .sm\:-mt-px { - margin-top: -1px; + .sm\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .sm\:-mr-px { - margin-right: -1px; + .sm\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .sm\:-mb-px { - margin-bottom: -1px; + .sm\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .sm\:-ml-px { - margin-left: -1px; + .sm\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .sm\:-mt-0\.5 { - margin-top: -0.125rem; + .sm\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .sm\:-mr-0\.5 { - margin-right: -0.125rem; + .sm\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .sm\:-mb-0\.5 { - margin-bottom: -0.125rem; + .sm\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .sm\:-ml-0\.5 { - margin-left: -0.125rem; + .sm\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .sm\:-mt-1\.5 { - margin-top: -0.375rem; + .sm\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .sm\:-mr-1\.5 { - margin-right: -0.375rem; + .sm\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .sm\:-mb-1\.5 { - margin-bottom: -0.375rem; + .sm\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .sm\:-ml-1\.5 { - margin-left: -0.375rem; + .sm\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .sm\:-mt-2\.5 { - margin-top: -0.625rem; + .sm\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .sm\:-mr-2\.5 { - margin-right: -0.625rem; + .sm\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .sm\:-mb-2\.5 { - margin-bottom: -0.625rem; + .sm\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .sm\:-ml-2\.5 { - margin-left: -0.625rem; + .sm\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .sm\:-mt-3\.5 { - margin-top: -0.875rem; + .sm\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .sm\:-mr-3\.5 { - margin-right: -0.875rem; + .sm\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .sm\:-mb-3\.5 { - margin-bottom: -0.875rem; + .sm\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .sm\:-ml-3\.5 { - margin-left: -0.875rem; + .sm\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .sm\:max-h-0 { - max-height: 0px; + .sm\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .sm\:max-h-1 { - max-height: 0.25rem; + .sm\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .sm\:max-h-2 { - max-height: 0.5rem; + .sm\:hover\:border-transparent:hover { + border-color: transparent; } - .sm\:max-h-3 { - max-height: 0.75rem; + .sm\:hover\:border-current:hover { + border-color: currentColor; } - .sm\:max-h-4 { - max-height: 1rem; + .sm\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .sm\:max-h-5 { - max-height: 1.25rem; + .sm\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .sm\:max-h-6 { - max-height: 1.5rem; + .sm\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .sm\:max-h-7 { - max-height: 1.75rem; + .sm\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .sm\:max-h-8 { - max-height: 2rem; + .sm\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .sm\:max-h-9 { - max-height: 2.25rem; + .sm\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .sm\:max-h-10 { - max-height: 2.5rem; + .sm\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .sm\:max-h-11 { - max-height: 2.75rem; + .sm\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .sm\:max-h-12 { - max-height: 3rem; + .sm\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .sm\:max-h-14 { - max-height: 3.5rem; + .sm\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .sm\:max-h-16 { - max-height: 4rem; + .sm\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .sm\:max-h-20 { - max-height: 5rem; + .sm\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .sm\:max-h-24 { - max-height: 6rem; + .sm\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .sm\:max-h-28 { - max-height: 7rem; + .sm\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .sm\:max-h-32 { - max-height: 8rem; + .sm\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .sm\:max-h-36 { - max-height: 9rem; + .sm\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .sm\:max-h-40 { - max-height: 10rem; + .sm\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .sm\:max-h-44 { - max-height: 11rem; + .sm\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .sm\:max-h-48 { - max-height: 12rem; + .sm\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .sm\:max-h-52 { - max-height: 13rem; + .sm\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .sm\:max-h-56 { - max-height: 14rem; + .sm\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .sm\:max-h-60 { - max-height: 15rem; + .sm\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .sm\:max-h-64 { - max-height: 16rem; + .sm\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .sm\:max-h-72 { - max-height: 18rem; + .sm\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .sm\:max-h-80 { - max-height: 20rem; + .sm\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .sm\:max-h-96 { - max-height: 24rem; + .sm\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .sm\:max-h-px { - max-height: 1px; + .sm\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .sm\:max-h-0\.5 { - max-height: 0.125rem; + .sm\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .sm\:max-h-1\.5 { - max-height: 0.375rem; + .sm\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .sm\:max-h-2\.5 { - max-height: 0.625rem; + .sm\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .sm\:max-h-3\.5 { - max-height: 0.875rem; + .sm\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .sm\:max-h-full { - max-height: 100%; + .sm\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .sm\:max-h-screen { - max-height: 100vh; + .sm\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .sm\:max-w-0 { - max-width: 0rem; + .sm\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .sm\:max-w-none { - max-width: none; + .sm\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .sm\:max-w-xs { - max-width: 20rem; + .sm\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .sm\:max-w-sm { - max-width: 24rem; + .sm\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .sm\:max-w-md { - max-width: 28rem; + .sm\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .sm\:max-w-lg { - max-width: 32rem; + .sm\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .sm\:max-w-xl { - max-width: 36rem; + .sm\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .sm\:max-w-2xl { - max-width: 42rem; + .sm\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .sm\:max-w-3xl { - max-width: 48rem; + .sm\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .sm\:max-w-4xl { - max-width: 56rem; + .sm\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .sm\:max-w-5xl { - max-width: 64rem; + .sm\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .sm\:max-w-6xl { - max-width: 72rem; + .sm\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .sm\:max-w-7xl { - max-width: 80rem; + .sm\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .sm\:max-w-full { - max-width: 100%; + .sm\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .sm\:max-w-min { - max-width: min-content; + .sm\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .sm\:max-w-max { - max-width: max-content; + .sm\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .sm\:max-w-prose { - max-width: 65ch; + .sm\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .sm\:max-w-screen-sm { - max-width: 640px; + .sm\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .sm\:max-w-screen-md { - max-width: 768px; + .sm\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .sm\:max-w-screen-lg { - max-width: 1024px; + .sm\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .sm\:max-w-screen-xl { - max-width: 1280px; + .sm\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .sm\:max-w-screen-2xl { - max-width: 1536px; + .sm\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .sm\:min-h-0 { - min-height: 0px; + .sm\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .sm\:min-h-full { - min-height: 100%; + .sm\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .sm\:min-h-screen { - min-height: 100vh; + .sm\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .sm\:min-w-0 { - min-width: 0px; + .sm\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .sm\:min-w-full { - min-width: 100%; + .sm\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .sm\:min-w-min { - min-width: min-content; + .sm\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .sm\:min-w-max { - min-width: max-content; + .sm\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .sm\:object-contain { - object-fit: contain; + .sm\:hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .sm\:object-cover { - object-fit: cover; + .sm\:hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .sm\:object-fill { - object-fit: fill; + .sm\:hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .sm\:object-none { - object-fit: none; + .sm\:hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .sm\:object-scale-down { - object-fit: scale-down; + .sm\:hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .sm\:object-bottom { - object-position: bottom; + .sm\:hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .sm\:object-center { - object-position: center; + .sm\:hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .sm\:object-left { - object-position: left; + .sm\:hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .sm\:object-left-bottom { - object-position: left bottom; + .sm\:hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .sm\:object-left-top { - object-position: left top; + .sm\:hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .sm\:object-right { - object-position: right; + .sm\:hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .sm\:object-right-bottom { - object-position: right bottom; + .sm\:hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .sm\:object-right-top { - object-position: right top; + .sm\:hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .sm\:object-top { - object-position: top; + .sm\:hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .sm\:opacity-0 { - opacity: 0; + .sm\:hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .sm\:opacity-5 { - opacity: 0.05; + .sm\:hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .sm\:opacity-10 { - opacity: 0.1; + .sm\:hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .sm\:opacity-20 { - opacity: 0.2; + .sm\:hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .sm\:opacity-25 { - opacity: 0.25; + .sm\:hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .sm\:opacity-30 { - opacity: 0.3; + .sm\:hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .sm\:opacity-40 { - opacity: 0.4; + .sm\:focus\:border-transparent:focus { + border-color: transparent; } - .sm\:opacity-50 { - opacity: 0.5; + .sm\:focus\:border-current:focus { + border-color: currentColor; } - .sm\:opacity-60 { - opacity: 0.6; + .sm\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .sm\:opacity-70 { - opacity: 0.7; + .sm\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .sm\:opacity-75 { - opacity: 0.75; + .sm\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .sm\:opacity-80 { - opacity: 0.8; + .sm\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .sm\:opacity-90 { - opacity: 0.9; + .sm\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .sm\:opacity-95 { - opacity: 0.95; + .sm\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .sm\:opacity-100 { - opacity: 1; + .sm\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-0 { - opacity: 0; + .sm\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-5 { - opacity: 0.05; + .sm\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-10 { - opacity: 0.1; + .sm\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-20 { - opacity: 0.2; + .sm\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-25 { - opacity: 0.25; + .sm\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-30 { - opacity: 0.3; + .sm\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-40 { - opacity: 0.4; + .sm\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-50 { - opacity: 0.5; + .sm\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-60 { - opacity: 0.6; + .sm\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-70 { - opacity: 0.7; + .sm\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-75 { - opacity: 0.75; + .sm\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-80 { - opacity: 0.8; + .sm\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-90 { - opacity: 0.9; + .sm\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-95 { - opacity: 0.95; + .sm\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-100 { - opacity: 1; + .sm\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-0:focus-within { - opacity: 0; + .sm\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .sm\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .sm\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .sm\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .sm\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .sm\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .sm\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .sm\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .sm\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .sm\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .sm\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .sm\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .sm\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .sm\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-100:focus-within { - opacity: 1; + .sm\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .sm\:hover\:opacity-0:hover { - opacity: 0; + .sm\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .sm\:hover\:opacity-5:hover { - opacity: 0.05; + .sm\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .sm\:hover\:opacity-10:hover { - opacity: 0.1; + .sm\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .sm\:hover\:opacity-20:hover { - opacity: 0.2; + .sm\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .sm\:hover\:opacity-25:hover { - opacity: 0.25; + .sm\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .sm\:hover\:opacity-30:hover { - opacity: 0.3; + .sm\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .sm\:hover\:opacity-40:hover { - opacity: 0.4; + .sm\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .sm\:hover\:opacity-50:hover { - opacity: 0.5; + .sm\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .sm\:hover\:opacity-60:hover { - opacity: 0.6; + .sm\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .sm\:hover\:opacity-70:hover { - opacity: 0.7; + .sm\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .sm\:hover\:opacity-75:hover { - opacity: 0.75; + .sm\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .sm\:hover\:opacity-80:hover { - opacity: 0.8; + .sm\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .sm\:hover\:opacity-90:hover { - opacity: 0.9; + .sm\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .sm\:hover\:opacity-95:hover { - opacity: 0.95; + .sm\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .sm\:hover\:opacity-100:hover { - opacity: 1; + .sm\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .sm\:focus\:opacity-0:focus { - opacity: 0; + .sm\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .sm\:focus\:opacity-5:focus { - opacity: 0.05; + .sm\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .sm\:focus\:opacity-10:focus { - opacity: 0.1; + .sm\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .sm\:focus\:opacity-20:focus { - opacity: 0.2; + .sm\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .sm\:focus\:opacity-25:focus { - opacity: 0.25; + .sm\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .sm\:focus\:opacity-30:focus { - opacity: 0.3; + .sm\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .sm\:focus\:opacity-40:focus { - opacity: 0.4; + .sm\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .sm\:focus\:opacity-50:focus { - opacity: 0.5; + .sm\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .sm\:focus\:opacity-60:focus { - opacity: 0.6; + .sm\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .sm\:focus\:opacity-70:focus { - opacity: 0.7; + .sm\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .sm\:focus\:opacity-75:focus { - opacity: 0.75; + .sm\:focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .sm\:focus\:opacity-80:focus { - opacity: 0.8; + .sm\:focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .sm\:focus\:opacity-90:focus { - opacity: 0.9; + .sm\:focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .sm\:focus\:opacity-95:focus { - opacity: 0.95; + .sm\:focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .sm\:focus\:opacity-100:focus { - opacity: 1; + .sm\:focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .sm\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .sm\:focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .sm\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .sm\:focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .sm\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .sm\:focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .sm\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .sm\:focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .sm\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .sm\:focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .sm\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .sm\:focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .sm\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .sm\:focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .sm\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .sm\:focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .sm\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .sm\:focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .sm\:overflow-auto { - overflow: auto; + .sm\:focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .sm\:overflow-hidden { - overflow: hidden; + .sm\:focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .sm\:overflow-visible { - overflow: visible; + .sm\:focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .sm\:overflow-scroll { - overflow: scroll; + .sm\:focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .sm\:overflow-x-auto { - overflow-x: auto; + .sm\:focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .sm\:overflow-y-auto { - overflow-y: auto; + .sm\:focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .sm\:overflow-x-hidden { - overflow-x: hidden; + .sm\:border-opacity-0 { + --tw-border-opacity: 0; } - .sm\:overflow-y-hidden { - overflow-y: hidden; + .sm\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .sm\:overflow-x-visible { - overflow-x: visible; + .sm\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .sm\:overflow-y-visible { - overflow-y: visible; + .sm\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .sm\:overflow-x-scroll { - overflow-x: scroll; + .sm\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .sm\:overflow-y-scroll { - overflow-y: scroll; + .sm\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .sm\:overscroll-auto { - overscroll-behavior: auto; + .sm\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .sm\:overscroll-contain { - overscroll-behavior: contain; + .sm\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .sm\:overscroll-none { - overscroll-behavior: none; + .sm\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .sm\:overscroll-y-auto { - overscroll-behavior-y: auto; + .sm\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .sm\:overscroll-y-contain { - overscroll-behavior-y: contain; + .sm\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .sm\:overscroll-y-none { - overscroll-behavior-y: none; + .sm\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .sm\:overscroll-x-auto { - overscroll-behavior-x: auto; + .sm\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .sm\:overscroll-x-contain { - overscroll-behavior-x: contain; + .sm\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .sm\:overscroll-x-none { - overscroll-behavior-x: none; + .sm\:border-opacity-100 { + --tw-border-opacity: 1; } - .sm\:p-0 { - padding: 0px; + .group:hover .sm\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } - .sm\:p-1 { - padding: 0.25rem; + .group:hover .sm\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .sm\:p-2 { - padding: 0.5rem; + .group:hover .sm\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .sm\:p-3 { - padding: 0.75rem; + .group:hover .sm\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .sm\:p-4 { - padding: 1rem; + .group:hover .sm\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .sm\:p-5 { - padding: 1.25rem; + .group:hover .sm\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .sm\:p-6 { - padding: 1.5rem; + .group:hover .sm\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .sm\:p-7 { - padding: 1.75rem; + .group:hover .sm\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .sm\:p-8 { - padding: 2rem; + .group:hover .sm\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .sm\:p-9 { - padding: 2.25rem; + .group:hover .sm\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .sm\:p-10 { - padding: 2.5rem; + .group:hover .sm\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .sm\:p-11 { - padding: 2.75rem; + .group:hover .sm\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .sm\:p-12 { - padding: 3rem; + .group:hover .sm\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .sm\:p-14 { - padding: 3.5rem; + .group:hover .sm\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .sm\:p-16 { - padding: 4rem; + .group:hover .sm\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } - .sm\:p-20 { - padding: 5rem; + .sm\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } - .sm\:p-24 { - padding: 6rem; + .sm\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } - .sm\:p-28 { - padding: 7rem; + .sm\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } - .sm\:p-32 { - padding: 8rem; + .sm\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } - .sm\:p-36 { - padding: 9rem; + .sm\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } - .sm\:p-40 { - padding: 10rem; + .sm\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } - .sm\:p-44 { - padding: 11rem; + .sm\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } - .sm\:p-48 { - padding: 12rem; + .sm\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } - .sm\:p-52 { - padding: 13rem; + .sm\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } - .sm\:p-56 { - padding: 14rem; + .sm\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } - .sm\:p-60 { - padding: 15rem; + .sm\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } - .sm\:p-64 { - padding: 16rem; + .sm\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } - .sm\:p-72 { - padding: 18rem; + .sm\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } - .sm\:p-80 { - padding: 20rem; + .sm\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } - .sm\:p-96 { - padding: 24rem; + .sm\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } - .sm\:p-px { - padding: 1px; + .sm\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } - .sm\:p-0\.5 { - padding: 0.125rem; + .sm\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } - .sm\:p-1\.5 { - padding: 0.375rem; + .sm\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } - .sm\:p-2\.5 { - padding: 0.625rem; + .sm\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } - .sm\:p-3\.5 { - padding: 0.875rem; + .sm\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } - .sm\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .sm\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } - .sm\:px-0 { - padding-left: 0px; - padding-right: 0px; + .sm\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } - .sm\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .sm\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } - .sm\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .sm\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } - .sm\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .sm\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } - .sm\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .sm\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } - .sm\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .sm\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } - .sm\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .sm\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } - .sm\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .sm\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } - .sm\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .sm\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } - .sm\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .sm\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } - .sm\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .sm\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } - .sm\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .sm\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } - .sm\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .sm\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } - .sm\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .sm\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } - .sm\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .sm\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } - .sm\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .sm\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } - .sm\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .sm\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } - .sm\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .sm\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } - .sm\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .sm\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } - .sm\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .sm\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } - .sm\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .sm\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } - .sm\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .sm\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } - .sm\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .sm\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } - .sm\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .sm\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } - .sm\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .sm\:bg-transparent { + background-color: transparent; } - .sm\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .sm\:bg-current { + background-color: currentColor; } - .sm\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .sm\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .sm\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .sm\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .sm\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .sm\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .sm\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .sm\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .sm\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .sm\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .sm\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .sm\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .sm\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .sm\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .sm\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .sm\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .sm\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .sm\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .sm\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .sm\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .sm\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .sm\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .sm\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .sm\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .sm\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .sm\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .sm\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .sm\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .sm\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .sm\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .sm\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .sm\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .sm\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .sm\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .sm\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .sm\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .sm\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .sm\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .sm\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .sm\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .sm\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .sm\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .sm\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .sm\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .sm\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .sm\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .sm\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .sm\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .sm\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .sm\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .sm\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .sm\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .sm\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .sm\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .sm\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .sm\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .sm\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .sm\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .sm\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .sm\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .sm\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .sm\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .sm\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .sm\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .sm\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .sm\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .sm\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .sm\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .sm\:px-px { - padding-left: 1px; - padding-right: 1px; + .sm\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .sm\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .sm\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .sm\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .sm\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .sm\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .sm\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .sm\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .sm\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .sm\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .sm\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .sm\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .sm\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .sm\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .sm\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .sm\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .sm\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .sm\:pt-0 { - padding-top: 0px; + .sm\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .sm\:pr-0 { - padding-right: 0px; + .sm\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .sm\:pb-0 { - padding-bottom: 0px; + .sm\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .sm\:pl-0 { - padding-left: 0px; + .sm\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .sm\:pt-1 { - padding-top: 0.25rem; + .sm\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .sm\:pr-1 { - padding-right: 0.25rem; + .sm\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .sm\:pb-1 { - padding-bottom: 0.25rem; + .sm\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .sm\:pl-1 { - padding-left: 0.25rem; + .sm\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .sm\:pt-2 { - padding-top: 0.5rem; + .sm\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .sm\:pr-2 { - padding-right: 0.5rem; + .sm\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .sm\:pb-2 { - padding-bottom: 0.5rem; + .sm\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .sm\:pl-2 { - padding-left: 0.5rem; + .sm\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .sm\:pt-3 { - padding-top: 0.75rem; + .sm\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .sm\:pr-3 { - padding-right: 0.75rem; + .sm\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .sm\:pb-3 { - padding-bottom: 0.75rem; + .sm\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .sm\:pl-3 { - padding-left: 0.75rem; + .sm\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .sm\:pt-4 { - padding-top: 1rem; + .sm\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .sm\:pr-4 { - padding-right: 1rem; + .sm\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .sm\:pb-4 { - padding-bottom: 1rem; + .sm\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .sm\:pl-4 { - padding-left: 1rem; + .sm\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .sm\:pt-5 { - padding-top: 1.25rem; + .sm\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .sm\:pr-5 { - padding-right: 1.25rem; + .sm\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .sm\:pb-5 { - padding-bottom: 1.25rem; + .sm\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .sm\:pl-5 { - padding-left: 1.25rem; + .sm\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .sm\:pt-6 { - padding-top: 1.5rem; + .sm\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .sm\:pr-6 { - padding-right: 1.5rem; + .sm\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .sm\:pb-6 { - padding-bottom: 1.5rem; + .sm\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .sm\:pl-6 { - padding-left: 1.5rem; + .sm\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .sm\:pt-7 { - padding-top: 1.75rem; + .sm\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .sm\:pr-7 { - padding-right: 1.75rem; + .sm\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .sm\:pb-7 { - padding-bottom: 1.75rem; + .sm\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .sm\:pl-7 { - padding-left: 1.75rem; + .sm\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .sm\:pt-8 { - padding-top: 2rem; + .sm\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .sm\:pr-8 { - padding-right: 2rem; + .sm\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .sm\:pb-8 { - padding-bottom: 2rem; + .sm\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .sm\:pl-8 { - padding-left: 2rem; + .sm\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .sm\:pt-9 { - padding-top: 2.25rem; + .sm\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .sm\:pr-9 { - padding-right: 2.25rem; + .sm\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .sm\:pb-9 { - padding-bottom: 2.25rem; + .sm\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .sm\:pl-9 { - padding-left: 2.25rem; + .group:hover .sm\:group-hover\:bg-transparent { + background-color: transparent; } - .sm\:pt-10 { - padding-top: 2.5rem; + .group:hover .sm\:group-hover\:bg-current { + background-color: currentColor; } - .sm\:pr-10 { - padding-right: 2.5rem; + .group:hover .sm\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .sm\:pb-10 { - padding-bottom: 2.5rem; + .group:hover .sm\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .sm\:pl-10 { - padding-left: 2.5rem; + .group:hover .sm\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .sm\:pt-11 { - padding-top: 2.75rem; + .group:hover .sm\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .sm\:pr-11 { - padding-right: 2.75rem; + .group:hover .sm\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .sm\:pb-11 { - padding-bottom: 2.75rem; + .group:hover .sm\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .sm\:pl-11 { - padding-left: 2.75rem; + .group:hover .sm\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .sm\:pt-12 { - padding-top: 3rem; + .group:hover .sm\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .sm\:pr-12 { - padding-right: 3rem; + .group:hover .sm\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .sm\:pb-12 { - padding-bottom: 3rem; + .group:hover .sm\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .sm\:pl-12 { - padding-left: 3rem; + .group:hover .sm\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .sm\:pt-14 { - padding-top: 3.5rem; + .group:hover .sm\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .sm\:pr-14 { - padding-right: 3.5rem; + .group:hover .sm\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .sm\:pb-14 { - padding-bottom: 3.5rem; + .group:hover .sm\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .sm\:pl-14 { - padding-left: 3.5rem; + .group:hover .sm\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .sm\:pt-16 { - padding-top: 4rem; + .group:hover .sm\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .sm\:pr-16 { - padding-right: 4rem; + .group:hover .sm\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .sm\:pb-16 { - padding-bottom: 4rem; + .group:hover .sm\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .sm\:pl-16 { - padding-left: 4rem; + .group:hover .sm\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .sm\:pt-20 { - padding-top: 5rem; + .group:hover .sm\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .sm\:pr-20 { - padding-right: 5rem; + .group:hover .sm\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .sm\:pb-20 { - padding-bottom: 5rem; + .group:hover .sm\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .sm\:pl-20 { - padding-left: 5rem; + .group:hover .sm\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .sm\:pt-24 { - padding-top: 6rem; + .group:hover .sm\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .sm\:pr-24 { - padding-right: 6rem; + .group:hover .sm\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .sm\:pb-24 { - padding-bottom: 6rem; + .group:hover .sm\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .sm\:pl-24 { - padding-left: 6rem; + .group:hover .sm\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .sm\:pt-28 { - padding-top: 7rem; + .group:hover .sm\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .sm\:pr-28 { - padding-right: 7rem; + .group:hover .sm\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .sm\:pb-28 { - padding-bottom: 7rem; + .group:hover .sm\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .sm\:pl-28 { - padding-left: 7rem; + .group:hover .sm\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .sm\:pt-32 { - padding-top: 8rem; + .group:hover .sm\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .sm\:pr-32 { - padding-right: 8rem; + .group:hover .sm\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .sm\:pb-32 { - padding-bottom: 8rem; + .group:hover .sm\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .sm\:pl-32 { - padding-left: 8rem; + .group:hover .sm\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .sm\:pt-36 { - padding-top: 9rem; + .group:hover .sm\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .sm\:pr-36 { - padding-right: 9rem; + .group:hover .sm\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .sm\:pb-36 { - padding-bottom: 9rem; + .group:hover .sm\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .sm\:pl-36 { - padding-left: 9rem; + .group:hover .sm\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .sm\:pt-40 { - padding-top: 10rem; + .group:hover .sm\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .sm\:pr-40 { - padding-right: 10rem; + .group:hover .sm\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .sm\:pb-40 { - padding-bottom: 10rem; + .group:hover .sm\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .sm\:pl-40 { - padding-left: 10rem; + .group:hover .sm\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .sm\:pt-44 { - padding-top: 11rem; + .group:hover .sm\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .sm\:pr-44 { - padding-right: 11rem; + .group:hover .sm\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .sm\:pb-44 { - padding-bottom: 11rem; + .group:hover .sm\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .sm\:pl-44 { - padding-left: 11rem; + .group:hover .sm\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .sm\:pt-48 { - padding-top: 12rem; + .group:hover .sm\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .sm\:pr-48 { - padding-right: 12rem; + .group:hover .sm\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .sm\:pb-48 { - padding-bottom: 12rem; + .group:hover .sm\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .sm\:pl-48 { - padding-left: 12rem; + .group:hover .sm\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .sm\:pt-52 { - padding-top: 13rem; + .group:hover .sm\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .sm\:pr-52 { - padding-right: 13rem; + .group:hover .sm\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .sm\:pb-52 { - padding-bottom: 13rem; + .group:hover .sm\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .sm\:pl-52 { - padding-left: 13rem; + .group:hover .sm\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .sm\:pt-56 { - padding-top: 14rem; + .group:hover .sm\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .sm\:pr-56 { - padding-right: 14rem; + .group:hover .sm\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .sm\:pb-56 { - padding-bottom: 14rem; + .group:hover .sm\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .sm\:pl-56 { - padding-left: 14rem; + .group:hover .sm\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .sm\:pt-60 { - padding-top: 15rem; + .group:hover .sm\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .sm\:pr-60 { - padding-right: 15rem; + .group:hover .sm\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .sm\:pb-60 { - padding-bottom: 15rem; + .group:hover .sm\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .sm\:pl-60 { - padding-left: 15rem; + .group:hover .sm\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .sm\:pt-64 { - padding-top: 16rem; + .group:hover .sm\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .sm\:pr-64 { - padding-right: 16rem; + .group:hover .sm\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .sm\:pb-64 { - padding-bottom: 16rem; + .group:hover .sm\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .sm\:pl-64 { - padding-left: 16rem; + .group:hover .sm\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .sm\:pt-72 { - padding-top: 18rem; + .group:hover .sm\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .sm\:pr-72 { - padding-right: 18rem; + .group:hover .sm\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .sm\:pb-72 { - padding-bottom: 18rem; + .group:hover .sm\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .sm\:pl-72 { - padding-left: 18rem; + .group:hover .sm\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .sm\:pt-80 { - padding-top: 20rem; + .group:hover .sm\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .sm\:pr-80 { - padding-right: 20rem; + .group:hover .sm\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .sm\:pb-80 { - padding-bottom: 20rem; + .group:hover .sm\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .sm\:pl-80 { - padding-left: 20rem; + .group:hover .sm\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .sm\:pt-96 { - padding-top: 24rem; + .group:hover .sm\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .sm\:pr-96 { - padding-right: 24rem; + .group:hover .sm\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .sm\:pb-96 { - padding-bottom: 24rem; + .group:hover .sm\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .sm\:pl-96 { - padding-left: 24rem; + .group:hover .sm\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .sm\:pt-px { - padding-top: 1px; + .group:hover .sm\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .sm\:pr-px { - padding-right: 1px; + .group:hover .sm\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .sm\:pb-px { - padding-bottom: 1px; + .group:hover .sm\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .sm\:pl-px { - padding-left: 1px; + .sm\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .sm\:pt-0\.5 { - padding-top: 0.125rem; + .sm\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .sm\:pr-0\.5 { - padding-right: 0.125rem; + .sm\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .sm\:pb-0\.5 { - padding-bottom: 0.125rem; + .sm\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .sm\:pl-0\.5 { - padding-left: 0.125rem; + .sm\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .sm\:pt-1\.5 { - padding-top: 0.375rem; + .sm\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .sm\:pr-1\.5 { - padding-right: 0.375rem; + .sm\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .sm\:pb-1\.5 { - padding-bottom: 0.375rem; + .sm\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .sm\:pl-1\.5 { - padding-left: 0.375rem; + .sm\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .sm\:pt-2\.5 { - padding-top: 0.625rem; + .sm\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .sm\:pr-2\.5 { - padding-right: 0.625rem; + .sm\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .sm\:pb-2\.5 { - padding-bottom: 0.625rem; + .sm\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .sm\:pl-2\.5 { - padding-left: 0.625rem; + .sm\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .sm\:pt-3\.5 { - padding-top: 0.875rem; + .sm\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .sm\:pr-3\.5 { - padding-right: 0.875rem; + .sm\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .sm\:pb-3\.5 { - padding-bottom: 0.875rem; + .sm\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .sm\:pl-3\.5 { - padding-left: 0.875rem; + .sm\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .sm\:placeholder-transparent::placeholder { - color: transparent; + .sm\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .sm\:placeholder-current::placeholder { - color: currentColor; + .sm\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .sm\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .sm\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .sm\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .sm\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .sm\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .sm\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .sm\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .sm\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .sm\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .sm\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .sm\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .sm\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .sm\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .sm\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .sm\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .sm\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .sm\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .sm\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .sm\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .sm\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .sm\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .sm\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-transparent:hover { + background-color: transparent; } - .sm\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-current:hover { + background-color: currentColor; } - .sm\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .sm\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .sm\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-transparent:focus { + background-color: transparent; } - .sm\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-current:focus { + background-color: currentColor; } - .sm\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; + .sm\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; + .sm\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; + .sm\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; + .sm\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; + .sm\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; + .sm\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; + .sm\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; + .sm\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; + .sm\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; + .sm\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; + .sm\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; + .sm\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; + .sm\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; + .sm\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; + .sm\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; + .sm\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; + .sm\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; + .sm\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; + .sm\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; + .sm\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; + .sm\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; + .sm\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; + .sm\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; + .sm\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; + .sm\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; + .sm\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; + .sm\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; + .sm\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; + .sm\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; + .sm\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .sm\:pointer-events-none { - pointer-events: none; + .sm\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .sm\:pointer-events-auto { - pointer-events: auto; + .sm\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .sm\:static { - position: static; + .sm\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .sm\:fixed { - position: fixed; + .sm\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .sm\:absolute { - position: absolute; + .sm\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .sm\:relative { - position: relative; + .sm\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .sm\:sticky { - position: sticky; + .sm\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .sm\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .sm\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .sm\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .sm\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .sm\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .sm\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .sm\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .sm\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .sm\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .sm\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .sm\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .sm\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .sm\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .sm\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .sm\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .sm\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .sm\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .sm\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .sm\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .sm\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .sm\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .sm\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .sm\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .sm\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .sm\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .sm\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .sm\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .sm\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .sm\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .sm\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .sm\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .sm\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .sm\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .sm\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .sm\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .sm\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .sm\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .sm\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .sm\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .sm\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .sm\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .sm\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .sm\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .sm\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .sm\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .sm\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .sm\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .sm\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .sm\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .sm\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .sm\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .sm\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .sm\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .sm\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .sm\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .sm\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .sm\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .sm\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .sm\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .sm\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .sm\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .sm\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .sm\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .sm\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .sm\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .sm\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .sm\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .sm\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .sm\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .sm\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .sm\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .sm\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .sm\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .sm\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .sm\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .sm\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .sm\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .sm\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .sm\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .sm\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .sm\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .sm\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .sm\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .sm\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .sm\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .sm\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .sm\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .sm\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .sm\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .sm\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .sm\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .group:hover .sm\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .sm\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .group:hover .sm\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .sm\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .group:hover .sm\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .sm\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .group:hover .sm\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .sm\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .group:hover .sm\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .sm\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .group:hover .sm\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .sm\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .group:hover .sm\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .sm\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .group:hover .sm\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .sm\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .group:hover .sm\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .sm\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .group:hover .sm\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .sm\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .group:hover .sm\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .sm\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .group:hover .sm\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .sm\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .group:hover .sm\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .sm\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .group:hover .sm\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .sm\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .group:hover .sm\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .sm\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .sm\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } - .sm\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .sm\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } - .sm\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .sm\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } - .sm\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .sm\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } - .sm\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .sm\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } - .sm\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .sm\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } - .sm\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .sm\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } - .sm\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .sm\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } - .sm\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .sm\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } - .sm\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .sm\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } - .sm\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .sm\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } - .sm\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .sm\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } - .sm\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .sm\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } - .sm\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .sm\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } - .sm\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .sm\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } - .sm\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .sm\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } - .sm\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .sm\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } - .sm\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .sm\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } - .sm\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .sm\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } - .sm\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .sm\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } - .sm\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .sm\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } - .sm\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .sm\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } - .sm\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .sm\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } - .sm\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .sm\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } - .sm\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .sm\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } - .sm\:inset-y-0 { - top: 0px; - bottom: 0px; + .sm\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } - .sm\:inset-x-0 { - right: 0px; - left: 0px; + .sm\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } - .sm\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .sm\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } - .sm\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .sm\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } - .sm\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .sm\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } - .sm\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .sm\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } - .sm\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .sm\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } - .sm\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .sm\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } - .sm\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .sm\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } - .sm\:inset-x-4 { - right: 1rem; - left: 1rem; + .sm\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } - .sm\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .sm\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } - .sm\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .sm\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } - .sm\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .sm\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } - .sm\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .sm\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } - .sm\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .sm\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } - .sm\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .sm\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } - .sm\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .sm\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } - .sm\:inset-x-8 { - right: 2rem; - left: 2rem; + .sm\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } - .sm\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .sm\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } - .sm\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .sm\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } - .sm\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .sm\:bg-none { + background-image: none; } - .sm\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .sm\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .sm\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .sm\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .sm\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .sm\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .sm\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .sm\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .sm\:inset-x-12 { - right: 3rem; - left: 3rem; + .sm\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .sm\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .sm\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .sm\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .sm\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .sm\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .sm\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .sm\:inset-x-16 { - right: 4rem; - left: 4rem; + .sm\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .sm\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:inset-x-20 { - right: 5rem; - left: 5rem; + .sm\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .sm\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:inset-x-24 { - right: 6rem; - left: 6rem; + .sm\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .sm\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:inset-x-28 { - right: 7rem; - left: 7rem; + .sm\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .sm\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:inset-x-32 { - right: 8rem; - left: 8rem; + .sm\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .sm\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:inset-x-36 { - right: 9rem; - left: 9rem; + .sm\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .sm\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:inset-x-40 { - right: 10rem; - left: 10rem; + .sm\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .sm\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:inset-x-44 { - right: 11rem; - left: 11rem; + .sm\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .sm\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:inset-x-48 { - right: 12rem; - left: 12rem; + .sm\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .sm\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:inset-x-52 { - right: 13rem; - left: 13rem; + .sm\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .sm\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:inset-x-56 { - right: 14rem; - left: 14rem; + .sm\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .sm\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:inset-x-60 { - right: 15rem; - left: 15rem; + .sm\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .sm\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:inset-x-64 { - right: 16rem; - left: 16rem; + .sm\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .sm\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:inset-x-72 { - right: 18rem; - left: 18rem; + .sm\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .sm\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:inset-x-80 { - right: 20rem; - left: 20rem; + .sm\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .sm\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:inset-x-96 { - right: 24rem; - left: 24rem; + .sm\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:inset-y-auto { - top: auto; - bottom: auto; + .sm\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:inset-x-auto { - right: auto; - left: auto; + .sm\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:inset-y-px { - top: 1px; - bottom: 1px; + .sm\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:inset-x-px { - right: 1px; - left: 1px; + .sm\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .sm\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .sm\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .sm\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .sm\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .sm\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .sm\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .sm\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .sm\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:-inset-y-0 { - top: 0px; - bottom: 0px; + .sm\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:-inset-x-0 { - right: 0px; - left: 0px; + .sm\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .sm\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .sm\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .sm\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .sm\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .sm\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .sm\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .sm\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:-inset-x-4 { - right: -1rem; - left: -1rem; + .sm\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .sm\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .sm\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .sm\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .sm\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .sm\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .sm\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .sm\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:-inset-x-8 { - right: -2rem; - left: -2rem; + .sm\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .sm\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .sm\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .sm\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .sm\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .sm\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .sm\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .sm\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:-inset-x-12 { - right: -3rem; - left: -3rem; + .sm\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .sm\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .sm\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .sm\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:-inset-x-16 { - right: -4rem; - left: -4rem; + .sm\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .sm\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:-inset-x-20 { - right: -5rem; - left: -5rem; + .sm\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .sm\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:-inset-x-24 { - right: -6rem; - left: -6rem; + .sm\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .sm\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:-inset-x-28 { - right: -7rem; - left: -7rem; + .sm\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .sm\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:-inset-x-32 { - right: -8rem; - left: -8rem; + .sm\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .sm\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:-inset-x-36 { - right: -9rem; - left: -9rem; + .sm\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .sm\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:-inset-x-40 { - right: -10rem; - left: -10rem; + .sm\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .sm\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-inset-x-44 { - right: -11rem; - left: -11rem; + .sm\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .sm\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-inset-x-48 { - right: -12rem; - left: -12rem; + .sm\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .sm\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:-inset-x-52 { - right: -13rem; - left: -13rem; + .sm\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .sm\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:-inset-x-56 { - right: -14rem; - left: -14rem; + .sm\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .sm\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:-inset-x-60 { - right: -15rem; - left: -15rem; + .sm\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .sm\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:-inset-x-64 { - right: -16rem; - left: -16rem; + .sm\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .sm\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:-inset-x-72 { - right: -18rem; - left: -18rem; + .sm\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .sm\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:-inset-x-80 { - right: -20rem; - left: -20rem; + .sm\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .sm\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:-inset-x-96 { - right: -24rem; - left: -24rem; + .sm\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:-inset-y-px { - top: -1px; - bottom: -1px; + .sm\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:-inset-x-px { - right: -1px; - left: -1px; + .sm\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .sm\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .sm\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .sm\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .sm\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .sm\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .sm\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .sm\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .sm\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .sm\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:inset-x-1\/2 { - right: 50%; - left: 50%; + .sm\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .sm\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .sm\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .sm\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .sm\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .sm\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:inset-x-1\/4 { - right: 25%; - left: 25%; + .sm\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .sm\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:inset-x-2\/4 { - right: 50%; - left: 50%; + .sm\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .sm\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:inset-x-3\/4 { - right: 75%; - left: 75%; + .sm\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:inset-y-full { - top: 100%; - bottom: 100%; + .sm\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:inset-x-full { - right: 100%; - left: 100%; + .sm\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .sm\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .sm\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .sm\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .sm\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .sm\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .sm\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .sm\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .sm\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .sm\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .sm\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .sm\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .sm\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:-inset-y-full { - top: -100%; - bottom: -100%; + .sm\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:-inset-x-full { - right: -100%; - left: -100%; + .sm\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:top-0 { - top: 0px; + .sm\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:right-0 { - right: 0px; + .sm\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:bottom-0 { - bottom: 0px; + .sm\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:left-0 { - left: 0px; + .sm\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:top-1 { - top: 0.25rem; + .sm\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:right-1 { - right: 0.25rem; + .sm\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:bottom-1 { - bottom: 0.25rem; + .sm\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:left-1 { - left: 0.25rem; + .sm\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:top-2 { - top: 0.5rem; + .sm\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:right-2 { - right: 0.5rem; + .sm\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:bottom-2 { - bottom: 0.5rem; + .sm\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:left-2 { - left: 0.5rem; + .sm\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:top-3 { - top: 0.75rem; + .sm\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:right-3 { - right: 0.75rem; + .sm\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:bottom-3 { - bottom: 0.75rem; + .sm\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:left-3 { - left: 0.75rem; + .sm\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:top-4 { - top: 1rem; + .sm\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:right-4 { - right: 1rem; + .sm\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:bottom-4 { - bottom: 1rem; + .sm\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:left-4 { - left: 1rem; + .sm\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:top-5 { - top: 1.25rem; + .sm\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:right-5 { - right: 1.25rem; + .sm\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:bottom-5 { - bottom: 1.25rem; + .sm\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:left-5 { - left: 1.25rem; + .sm\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:top-6 { - top: 1.5rem; + .sm\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:right-6 { - right: 1.5rem; + .sm\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:bottom-6 { - bottom: 1.5rem; + .sm\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:left-6 { - left: 1.5rem; + .sm\:to-transparent { + --tw-gradient-to: transparent; } - .sm\:top-7 { - top: 1.75rem; + .sm\:to-current { + --tw-gradient-to: currentColor; } - .sm\:right-7 { - right: 1.75rem; + .sm\:to-black { + --tw-gradient-to: #000; } - .sm\:bottom-7 { - bottom: 1.75rem; + .sm\:to-white { + --tw-gradient-to: #fff; } - .sm\:left-7 { - left: 1.75rem; + .sm\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .sm\:top-8 { - top: 2rem; + .sm\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .sm\:right-8 { - right: 2rem; + .sm\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .sm\:bottom-8 { - bottom: 2rem; + .sm\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .sm\:left-8 { - left: 2rem; + .sm\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .sm\:top-9 { - top: 2.25rem; + .sm\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .sm\:right-9 { - right: 2.25rem; + .sm\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .sm\:bottom-9 { - bottom: 2.25rem; + .sm\:to-gray-700 { + --tw-gradient-to: #374151; } - .sm\:left-9 { - left: 2.25rem; + .sm\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .sm\:top-10 { - top: 2.5rem; + .sm\:to-gray-900 { + --tw-gradient-to: #111827; } - .sm\:right-10 { - right: 2.5rem; + .sm\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .sm\:bottom-10 { - bottom: 2.5rem; + .sm\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .sm\:left-10 { - left: 2.5rem; + .sm\:to-red-200 { + --tw-gradient-to: #fecaca; } - .sm\:top-11 { - top: 2.75rem; + .sm\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .sm\:right-11 { - right: 2.75rem; + .sm\:to-red-400 { + --tw-gradient-to: #f87171; } - .sm\:bottom-11 { - bottom: 2.75rem; + .sm\:to-red-500 { + --tw-gradient-to: #ef4444; } - .sm\:left-11 { - left: 2.75rem; + .sm\:to-red-600 { + --tw-gradient-to: #dc2626; } - .sm\:top-12 { - top: 3rem; + .sm\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .sm\:right-12 { - right: 3rem; + .sm\:to-red-800 { + --tw-gradient-to: #991b1b; } - .sm\:bottom-12 { - bottom: 3rem; + .sm\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .sm\:left-12 { - left: 3rem; + .sm\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .sm\:top-14 { - top: 3.5rem; + .sm\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .sm\:right-14 { - right: 3.5rem; + .sm\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .sm\:bottom-14 { - bottom: 3.5rem; + .sm\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .sm\:left-14 { - left: 3.5rem; + .sm\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .sm\:top-16 { - top: 4rem; + .sm\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .sm\:right-16 { - right: 4rem; + .sm\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .sm\:bottom-16 { - bottom: 4rem; + .sm\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .sm\:left-16 { - left: 4rem; + .sm\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .sm\:top-20 { - top: 5rem; + .sm\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .sm\:right-20 { - right: 5rem; + .sm\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .sm\:bottom-20 { - bottom: 5rem; + .sm\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .sm\:left-20 { - left: 5rem; + .sm\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .sm\:top-24 { - top: 6rem; + .sm\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .sm\:right-24 { - right: 6rem; + .sm\:to-green-400 { + --tw-gradient-to: #34d399; } - .sm\:bottom-24 { - bottom: 6rem; + .sm\:to-green-500 { + --tw-gradient-to: #10b981; } - .sm\:left-24 { - left: 6rem; + .sm\:to-green-600 { + --tw-gradient-to: #059669; } - .sm\:top-28 { - top: 7rem; + .sm\:to-green-700 { + --tw-gradient-to: #047857; } - .sm\:right-28 { - right: 7rem; + .sm\:to-green-800 { + --tw-gradient-to: #065f46; } - .sm\:bottom-28 { - bottom: 7rem; + .sm\:to-green-900 { + --tw-gradient-to: #064e3b; } - .sm\:left-28 { - left: 7rem; + .sm\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .sm\:top-32 { - top: 8rem; + .sm\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .sm\:right-32 { - right: 8rem; + .sm\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .sm\:bottom-32 { - bottom: 8rem; + .sm\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .sm\:left-32 { - left: 8rem; + .sm\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .sm\:top-36 { - top: 9rem; + .sm\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .sm\:right-36 { - right: 9rem; + .sm\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .sm\:bottom-36 { - bottom: 9rem; + .sm\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .sm\:left-36 { - left: 9rem; + .sm\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .sm\:top-40 { - top: 10rem; + .sm\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .sm\:right-40 { - right: 10rem; + .sm\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .sm\:bottom-40 { - bottom: 10rem; + .sm\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .sm\:left-40 { - left: 10rem; + .sm\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .sm\:top-44 { - top: 11rem; + .sm\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .sm\:right-44 { - right: 11rem; + .sm\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .sm\:bottom-44 { - bottom: 11rem; + .sm\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .sm\:left-44 { - left: 11rem; + .sm\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .sm\:top-48 { - top: 12rem; + .sm\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .sm\:right-48 { - right: 12rem; + .sm\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .sm\:bottom-48 { - bottom: 12rem; + .sm\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .sm\:left-48 { - left: 12rem; + .sm\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .sm\:top-52 { - top: 13rem; + .sm\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .sm\:right-52 { - right: 13rem; + .sm\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .sm\:bottom-52 { - bottom: 13rem; + .sm\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .sm\:left-52 { - left: 13rem; + .sm\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .sm\:top-56 { - top: 14rem; + .sm\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .sm\:right-56 { - right: 14rem; + .sm\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .sm\:bottom-56 { - bottom: 14rem; + .sm\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .sm\:left-56 { - left: 14rem; + .sm\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .sm\:top-60 { - top: 15rem; + .sm\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .sm\:right-60 { - right: 15rem; + .sm\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .sm\:bottom-60 { - bottom: 15rem; + .sm\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .sm\:left-60 { - left: 15rem; + .sm\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .sm\:top-64 { - top: 16rem; + .sm\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .sm\:right-64 { - right: 16rem; + .sm\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .sm\:bottom-64 { - bottom: 16rem; + .sm\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .sm\:left-64 { - left: 16rem; + .sm\:to-pink-600 { + --tw-gradient-to: #db2777; } - .sm\:top-72 { - top: 18rem; + .sm\:to-pink-700 { + --tw-gradient-to: #be185d; } - .sm\:right-72 { - right: 18rem; + .sm\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .sm\:bottom-72 { - bottom: 18rem; + .sm\:to-pink-900 { + --tw-gradient-to: #831843; } - .sm\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .sm\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-top-14 { - top: -3.5rem; + .sm\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-right-14 { - right: -3.5rem; + .sm\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-bottom-14 { - bottom: -3.5rem; + .sm\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-left-14 { - left: -3.5rem; + .sm\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:-top-16 { - top: -4rem; + .sm\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:-right-16 { - right: -4rem; + .sm\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:-bottom-16 { - bottom: -4rem; + .sm\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:-left-16 { - left: -4rem; + .sm\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:-top-20 { - top: -5rem; + .sm\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:-right-20 { - right: -5rem; + .sm\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:-bottom-20 { - bottom: -5rem; + .sm\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:-left-20 { - left: -5rem; + .sm\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:-top-24 { - top: -6rem; + .sm\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:-right-24 { - right: -6rem; + .sm\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:-bottom-24 { - bottom: -6rem; + .sm\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:-left-24 { - left: -6rem; + .sm\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:-top-28 { - top: -7rem; + .sm\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:-right-28 { - right: -7rem; + .sm\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:-bottom-28 { - bottom: -7rem; + .sm\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:-left-28 { - left: -7rem; + .sm\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:-top-32 { - top: -8rem; + .sm\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:-right-32 { - right: -8rem; + .sm\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:-bottom-32 { - bottom: -8rem; + .sm\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:-left-32 { - left: -8rem; + .sm\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:-top-36 { - top: -9rem; + .sm\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:-right-36 { - right: -9rem; + .sm\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:-bottom-36 { - bottom: -9rem; + .sm\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:-left-36 { - left: -9rem; + .sm\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:-top-40 { - top: -10rem; + .sm\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:-right-40 { - right: -10rem; + .sm\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:-bottom-40 { - bottom: -10rem; + .sm\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:-left-40 { - left: -10rem; + .sm\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:-top-44 { - top: -11rem; + .sm\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:-right-44 { - right: -11rem; + .sm\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:-bottom-44 { - bottom: -11rem; + .sm\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:-left-44 { - left: -11rem; + .sm\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:-top-48 { - top: -12rem; + .sm\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:-right-48 { - right: -12rem; + .sm\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:-bottom-48 { - bottom: -12rem; + .sm\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:-left-48 { - left: -12rem; + .sm\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:-top-52 { - top: -13rem; + .sm\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:-right-52 { - right: -13rem; + .sm\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:-bottom-52 { - bottom: -13rem; + .sm\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:-left-52 { - left: -13rem; + .sm\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:-top-56 { - top: -14rem; + .sm\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:-right-56 { - right: -14rem; + .sm\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:-bottom-56 { - bottom: -14rem; + .sm\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:-left-56 { - left: -14rem; + .sm\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:-top-60 { - top: -15rem; + .sm\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:-right-60 { - right: -15rem; + .sm\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:-bottom-60 { - bottom: -15rem; + .sm\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:-left-60 { - left: -15rem; + .sm\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:-top-64 { - top: -16rem; + .sm\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:-right-64 { - right: -16rem; + .sm\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:-bottom-64 { - bottom: -16rem; + .sm\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:-left-64 { - left: -16rem; + .sm\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:-top-72 { - top: -18rem; + .sm\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:-right-72 { - right: -18rem; + .sm\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:-bottom-72 { - bottom: -18rem; + .sm\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:-left-72 { - left: -18rem; + .sm\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:-top-80 { - top: -20rem; + .sm\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:-right-80 { - right: -20rem; + .sm\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:-bottom-80 { - bottom: -20rem; + .sm\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:-left-80 { - left: -20rem; + .sm\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:-top-96 { - top: -24rem; + .sm\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:-right-96 { - right: -24rem; + .sm\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:-bottom-96 { - bottom: -24rem; + .sm\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:-left-96 { - left: -24rem; + .sm\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:-top-px { - top: -1px; + .sm\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:-right-px { - right: -1px; + .sm\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:-bottom-px { - bottom: -1px; + .sm\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:-left-px { - left: -1px; + .sm\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:-top-0\.5 { - top: -0.125rem; + .sm\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:-right-0\.5 { - right: -0.125rem; + .sm\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:-bottom-0\.5 { - bottom: -0.125rem; + .sm\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:-left-0\.5 { - left: -0.125rem; + .sm\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:-top-1\.5 { - top: -0.375rem; + .sm\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:-right-1\.5 { - right: -0.375rem; + .sm\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:-bottom-1\.5 { - bottom: -0.375rem; + .sm\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:-left-1\.5 { - left: -0.375rem; + .sm\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:-top-2\.5 { - top: -0.625rem; + .sm\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:-right-2\.5 { - right: -0.625rem; + .sm\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:-bottom-2\.5 { - bottom: -0.625rem; + .sm\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:-left-2\.5 { - left: -0.625rem; + .sm\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .sm\:-top-3\.5 { - top: -0.875rem; + .sm\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .sm\:-right-3\.5 { - right: -0.875rem; + .sm\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .sm\:-bottom-3\.5 { - bottom: -0.875rem; + .sm\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .sm\:-left-3\.5 { - left: -0.875rem; + .sm\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .sm\:top-1\/2 { - top: 50%; + .sm\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .sm\:right-1\/2 { - right: 50%; + .sm\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .sm\:bottom-1\/2 { - bottom: 50%; + .sm\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .sm\:left-1\/2 { - left: 50%; + .sm\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .sm\:top-1\/3 { - top: 33.333333%; + .sm\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .sm\:right-1\/3 { - right: 33.333333%; + .sm\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .sm\:bottom-1\/3 { - bottom: 33.333333%; + .sm\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .sm\:left-1\/3 { - left: 33.333333%; + .sm\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .sm\:top-2\/3 { - top: 66.666667%; + .sm\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .sm\:right-2\/3 { - right: 66.666667%; + .sm\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .sm\:bottom-2\/3 { - bottom: 66.666667%; + .sm\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .sm\:left-2\/3 { - left: 66.666667%; + .sm\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .sm\:top-1\/4 { - top: 25%; + .sm\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .sm\:right-1\/4 { - right: 25%; + .sm\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .sm\:bottom-1\/4 { - bottom: 25%; + .sm\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .sm\:left-1\/4 { - left: 25%; + .sm\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .sm\:top-2\/4 { - top: 50%; + .sm\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .sm\:right-2\/4 { - right: 50%; + .sm\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .sm\:bottom-2\/4 { - bottom: 50%; + .sm\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .sm\:left-2\/4 { - left: 50%; + .sm\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .sm\:top-3\/4 { - top: 75%; + .sm\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .sm\:right-3\/4 { - right: 75%; + .sm\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .sm\:bottom-3\/4 { - bottom: 75%; + .sm\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .sm\:left-3\/4 { - left: 75%; + .sm\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .sm\:top-full { - top: 100%; + .sm\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .sm\:right-full { - right: 100%; + .sm\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .sm\:bottom-full { - bottom: 100%; + .sm\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .sm\:left-full { - left: 100%; + .sm\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .sm\:-top-1\/2 { - top: -50%; + .sm\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .sm\:-right-1\/2 { - right: -50%; + .sm\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .sm\:-bottom-1\/2 { - bottom: -50%; + .sm\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .sm\:-left-1\/2 { - left: -50%; + .sm\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .sm\:-top-1\/3 { - top: -33.333333%; + .sm\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .sm\:-right-1\/3 { - right: -33.333333%; + .sm\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .sm\:-bottom-1\/3 { - bottom: -33.333333%; + .sm\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .sm\:-left-1\/3 { - left: -33.333333%; + .sm\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .sm\:-top-2\/3 { - top: -66.666667%; + .sm\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .sm\:-right-2\/3 { - right: -66.666667%; + .sm\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .sm\:-bottom-2\/3 { - bottom: -66.666667%; + .sm\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .sm\:-left-2\/3 { - left: -66.666667%; + .sm\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .sm\:-top-1\/4 { - top: -25%; + .sm\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .sm\:-right-1\/4 { - right: -25%; + .sm\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .sm\:-bottom-1\/4 { - bottom: -25%; + .sm\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .sm\:-left-1\/4 { - left: -25%; + .sm\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .sm\:-top-2\/4 { - top: -50%; + .sm\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .sm\:-right-2\/4 { - right: -50%; + .sm\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .sm\:-bottom-2\/4 { - bottom: -50%; + .sm\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .sm\:-left-2\/4 { - left: -50%; + .sm\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .sm\:-top-3\/4 { - top: -75%; + .sm\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .sm\:-right-3\/4 { - right: -75%; + .sm\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .sm\:-bottom-3\/4 { - bottom: -75%; + .sm\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .sm\:-left-3\/4 { - left: -75%; + .sm\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .sm\:-top-full { - top: -100%; + .sm\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .sm\:-right-full { - right: -100%; + .sm\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .sm\:-bottom-full { - bottom: -100%; + .sm\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .sm\:-left-full { - left: -100%; + .sm\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .sm\:resize-none { - resize: none; + .sm\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .sm\:resize-y { - resize: vertical; + .sm\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .sm\:resize-x { - resize: horizontal; + .sm\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .sm\:resize { - resize: both; + .sm\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .sm\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .sm\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .sm\: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); + .sm\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .sm\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .sm\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .sm\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .sm\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .sm\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .sm\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .sm\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .sm\:group-hover\: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); + .sm\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .sm\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .sm\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .sm\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .sm\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .sm\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .sm\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .sm\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .sm\:focus-within\:shadow-md:focus-within { - --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); + .sm\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .sm\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .sm\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .sm\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .sm\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .sm\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .sm\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .sm\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .sm\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .sm\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .sm\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .sm\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .sm\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .sm\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .sm\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .sm\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .sm\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .sm\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .sm\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .sm\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .sm\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .sm\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .sm\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .sm\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .sm\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .sm\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .sm\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .sm\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .sm\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .sm\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .sm\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .sm\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .sm\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .sm\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .sm\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .sm\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .sm\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .sm\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .sm\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .sm\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .sm\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .sm\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .sm\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .sm\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .sm\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .sm\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .sm\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .sm\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .sm\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .sm\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .sm\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .sm\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .sm\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .sm\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .sm\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .sm\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .sm\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .sm\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .sm\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .sm\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .sm\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .sm\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .sm\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .sm\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .sm\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .sm\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .sm\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .sm\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .sm\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .sm\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .sm\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .sm\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .sm\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .sm\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .sm\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .sm\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .sm\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .sm\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .sm\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .sm\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .sm\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .sm\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .sm\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .sm\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .sm\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .sm\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .sm\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .sm\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .sm\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .sm\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .sm\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .sm\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .sm\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .sm\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .sm\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .sm\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .sm\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .sm\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .sm\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .sm\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .sm\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .sm\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .sm\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .sm\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .sm\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .sm\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .sm\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .sm\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .sm\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .sm\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .sm\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .sm\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .sm\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .sm\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .sm\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .sm\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .sm\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .sm\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .sm\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .sm\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .sm\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .sm\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .sm\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .sm\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .sm\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .sm\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .sm\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .sm\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .sm\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .sm\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .sm\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .sm\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .sm\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .sm\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .sm\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .sm\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .sm\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .sm\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .sm\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .sm\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .sm\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .sm\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .sm\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .sm\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .sm\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .sm\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .sm\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .sm\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .sm\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .sm\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .sm\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .sm\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .sm\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .sm\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .sm\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .sm\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .sm\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .sm\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .sm\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .sm\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .sm\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .sm\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .sm\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .sm\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .sm\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .sm\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .sm\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .sm\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .sm\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .sm\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .sm\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .sm\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .sm\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .sm\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .sm\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .sm\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .sm\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .sm\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .sm\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .sm\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .sm\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .sm\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .sm\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .sm\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .sm\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .sm\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .sm\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .sm\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .sm\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .sm\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .sm\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .sm\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .sm\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .sm\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .sm\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .sm\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .sm\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .sm\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .sm\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .sm\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .sm\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .sm\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .sm\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .sm\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .sm\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .sm\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .sm\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .sm\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .sm\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .sm\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .sm\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .sm\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .sm\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .sm\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .sm\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .sm\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .sm\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .sm\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .sm\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .sm\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .sm\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .sm\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .sm\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .sm\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .sm\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .sm\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .sm\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .sm\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .sm\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .sm\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .sm\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .sm\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .sm\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .sm\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .sm\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .sm\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .sm\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .sm\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .sm\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .sm\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .sm\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .sm\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .sm\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .sm\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .sm\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .sm\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .sm\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .sm\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .sm\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .sm\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .sm\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .sm\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .sm\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .sm\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .sm\:decoration-slice { + box-decoration-break: slice; } - .sm\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .sm\:decoration-clone { + box-decoration-break: clone; } - .sm\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .sm\:bg-auto { + background-size: auto; } - .sm\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .sm\:bg-cover { + background-size: cover; } - .sm\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .sm\:bg-contain { + background-size: contain; } - .sm\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .sm\:bg-fixed { + background-attachment: fixed; } - .sm\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .sm\:bg-local { + background-attachment: local; } - .sm\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .sm\:bg-scroll { + background-attachment: scroll; } - .sm\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .sm\:bg-clip-border { + background-clip: border-box; } - .sm\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .sm\:bg-clip-padding { + background-clip: padding-box; } - .sm\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .sm\:bg-clip-content { + background-clip: content-box; } - .sm\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .sm\:bg-clip-text { + background-clip: text; } - .sm\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .sm\:bg-bottom { + background-position: bottom; } - .sm\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .sm\:bg-center { + background-position: center; } - .sm\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .sm\:bg-left { + background-position: left; } - .sm\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .sm\:bg-left-bottom { + background-position: left bottom; } - .sm\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .sm\:bg-left-top { + background-position: left top; } - .sm\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .sm\:bg-right { + background-position: right; } - .sm\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .sm\:bg-right-bottom { + background-position: right bottom; } - .sm\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .sm\:bg-right-top { + background-position: right top; } - .sm\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .sm\:bg-top { + background-position: top; } - .sm\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .sm\:bg-repeat { + background-repeat: repeat; } - .sm\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .sm\:bg-no-repeat { + background-repeat: no-repeat; } - .sm\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .sm\:bg-repeat-x { + background-repeat: repeat-x; } - .sm\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .sm\:bg-repeat-y { + background-repeat: repeat-y; } - .sm\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .sm\:bg-repeat-round { + background-repeat: round; } - .sm\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .sm\:bg-repeat-space { + background-repeat: space; } - .sm\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .sm\:bg-origin-border { + background-origin: border-box; } - .sm\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .sm\:bg-origin-padding { + background-origin: padding-box; } - .sm\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .sm\:bg-origin-content { + background-origin: content-box; } - .sm\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .sm\:fill-current { + fill: currentColor; } - .sm\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .sm\:stroke-current { + stroke: currentColor; } - .sm\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .sm\:stroke-0 { + stroke-width: 0; } - .sm\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .sm\:stroke-1 { + stroke-width: 1; } - .sm\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .sm\:stroke-2 { + stroke-width: 2; } - .sm\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .sm\:object-contain { + object-fit: contain; } - .sm\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .sm\:object-cover { + object-fit: cover; } - .sm\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .sm\:object-fill { + object-fit: fill; } - .sm\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .sm\:object-none { + object-fit: none; } - .sm\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .sm\:object-scale-down { + object-fit: scale-down; } - .sm\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .sm\:object-bottom { + object-position: bottom; } - .sm\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .sm\:object-center { + object-position: center; } - .sm\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .sm\:object-left { + object-position: left; } - .sm\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .sm\:object-left-bottom { + object-position: left bottom; } - .sm\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .sm\:object-left-top { + object-position: left top; } - .sm\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .sm\:object-right { + object-position: right; } - .sm\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .sm\:object-right-bottom { + object-position: right bottom; } - .sm\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .sm\:object-right-top { + object-position: right top; } - .sm\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .sm\:object-top { + object-position: top; } - .sm\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .sm\:p-0 { + padding: 0px; } - .sm\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .sm\:p-1 { + padding: 0.25rem; } - .sm\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .sm\:p-2 { + padding: 0.5rem; } - .sm\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .sm\:p-3 { + padding: 0.75rem; } - .sm\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .sm\:p-4 { + padding: 1rem; } - .sm\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .sm\:p-5 { + padding: 1.25rem; } - .sm\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .sm\:p-6 { + padding: 1.5rem; } - .sm\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .sm\:p-7 { + padding: 1.75rem; } - .sm\:ring-transparent { - --tw-ring-color: transparent; + .sm\:p-8 { + padding: 2rem; } - .sm\:ring-current { - --tw-ring-color: currentColor; + .sm\:p-9 { + padding: 2.25rem; } - .sm\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .sm\:p-10 { + padding: 2.5rem; } - .sm\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .sm\:p-11 { + padding: 2.75rem; } - .sm\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .sm\:p-12 { + padding: 3rem; } - .sm\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .sm\:p-14 { + padding: 3.5rem; } - .sm\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .sm\:p-16 { + padding: 4rem; } - .sm\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .sm\:p-20 { + padding: 5rem; } - .sm\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .sm\:p-24 { + padding: 6rem; } - .sm\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .sm\:p-28 { + padding: 7rem; } - .sm\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .sm\:p-32 { + padding: 8rem; } - .sm\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .sm\:p-36 { + padding: 9rem; } - .sm\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .sm\:p-40 { + padding: 10rem; } - .sm\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .sm\:p-44 { + padding: 11rem; } - .sm\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .sm\:p-48 { + padding: 12rem; } - .sm\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .sm\:p-52 { + padding: 13rem; } - .sm\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .sm\:p-56 { + padding: 14rem; } - .sm\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .sm\:p-60 { + padding: 15rem; } - .sm\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .sm\:p-64 { + padding: 16rem; } - .sm\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .sm\:p-72 { + padding: 18rem; } - .sm\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .sm\:p-80 { + padding: 20rem; } - .sm\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .sm\:p-96 { + padding: 24rem; } - .sm\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .sm\:p-px { + padding: 1px; } - .sm\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .sm\:p-0\.5 { + padding: 0.125rem; } - .sm\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .sm\:p-1\.5 { + padding: 0.375rem; } - .sm\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .sm\:p-2\.5 { + padding: 0.625rem; } - .sm\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .sm\:p-3\.5 { + padding: 0.875rem; } - .sm\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .sm\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .sm\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .sm\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .sm\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .sm\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .sm\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .sm\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .sm\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .sm\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .sm\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .sm\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .sm\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .sm\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .sm\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .sm\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .sm\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .sm\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .sm\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .sm\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .sm\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .sm\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .sm\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .sm\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .sm\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .sm\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .sm\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .sm\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .sm\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .sm\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .sm\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .sm\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .sm\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .sm\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .sm\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .sm\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .sm\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .sm\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .sm\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .sm\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .sm\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .sm\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .sm\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .sm\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .sm\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .sm\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .sm\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .sm\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .sm\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .sm\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .sm\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .sm\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .sm\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .sm\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .sm\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .sm\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .sm\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .sm\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .sm\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .sm\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .sm\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .sm\:px-px { + padding-left: 1px; + padding-right: 1px; } - .sm\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .sm\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .sm\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .sm\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .sm\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .sm\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .sm\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .sm\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .sm\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .sm\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .sm\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .sm\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .sm\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .sm\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .sm\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .sm\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .sm\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .sm\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .sm\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .sm\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .sm\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .sm\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .sm\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .sm\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .sm\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .sm\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .sm\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .sm\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .sm\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .sm\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .sm\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .sm\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .sm\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .sm\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .sm\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .sm\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .sm\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .sm\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .sm\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .sm\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .sm\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .sm\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .sm\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .sm\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .sm\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .sm\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .sm\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .sm\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .sm\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .sm\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .sm\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .sm\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .sm\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .sm\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .sm\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .sm\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .sm\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .sm\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .sm\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .sm\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .sm\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .sm\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .sm\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .sm\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .sm\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .sm\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .sm\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .sm\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .sm\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .sm\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .sm\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .sm\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .sm\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .sm\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .sm\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .sm\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .sm\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .sm\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .sm\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .sm\:pt-0 { + padding-top: 0px; } - .sm\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .sm\:pt-1 { + padding-top: 0.25rem; } - .sm\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .sm\:pt-2 { + padding-top: 0.5rem; } - .sm\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .sm\:pt-3 { + padding-top: 0.75rem; } - .sm\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .sm\:pt-4 { + padding-top: 1rem; } - .sm\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .sm\:pt-5 { + padding-top: 1.25rem; } - .sm\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .sm\:pt-6 { + padding-top: 1.5rem; } - .sm\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .sm\:pt-7 { + padding-top: 1.75rem; } - .sm\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .sm\:pt-8 { + padding-top: 2rem; } - .sm\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .sm\:pt-9 { + padding-top: 2.25rem; } - .sm\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .sm\:pt-10 { + padding-top: 2.5rem; } - .sm\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .sm\:pt-11 { + padding-top: 2.75rem; } - .sm\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .sm\:pt-12 { + padding-top: 3rem; } - .sm\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .sm\:pt-14 { + padding-top: 3.5rem; } - .sm\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .sm\:pt-16 { + padding-top: 4rem; } - .sm\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .sm\:pt-20 { + padding-top: 5rem; } - .sm\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .sm\:pt-24 { + padding-top: 6rem; } - .sm\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .sm\:pt-28 { + padding-top: 7rem; } - .sm\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .sm\:pt-32 { + padding-top: 8rem; } - .sm\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .sm\:pt-36 { + padding-top: 9rem; } - .sm\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .sm\:pt-40 { + padding-top: 10rem; } - .sm\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .sm\:pt-44 { + padding-top: 11rem; } - .sm\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .sm\:pt-48 { + padding-top: 12rem; } - .sm\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .sm\:pt-52 { + padding-top: 13rem; } - .sm\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .sm\:pt-56 { + padding-top: 14rem; } - .sm\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .sm\:pt-60 { + padding-top: 15rem; } - .sm\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .sm\:pt-64 { + padding-top: 16rem; } - .sm\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .sm\:pt-72 { + padding-top: 18rem; } - .sm\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .sm\:pt-80 { + padding-top: 20rem; } - .sm\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .sm\:pt-96 { + padding-top: 24rem; } - .sm\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .sm\:pt-px { + padding-top: 1px; } - .sm\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .sm\:pt-0\.5 { + padding-top: 0.125rem; } - .sm\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .sm\:pt-1\.5 { + padding-top: 0.375rem; } - .sm\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .sm\:pt-2\.5 { + padding-top: 0.625rem; } - .sm\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .sm\:pt-3\.5 { + padding-top: 0.875rem; } - .sm\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .sm\:pr-0 { + padding-right: 0px; } - .sm\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .sm\:pr-1 { + padding-right: 0.25rem; } - .sm\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .sm\:pr-2 { + padding-right: 0.5rem; } - .sm\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .sm\:pr-3 { + padding-right: 0.75rem; } - .sm\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .sm\:pr-4 { + padding-right: 1rem; } - .sm\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .sm\:pr-5 { + padding-right: 1.25rem; } - .sm\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .sm\:pr-6 { + padding-right: 1.5rem; } - .sm\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .sm\:pr-7 { + padding-right: 1.75rem; } - .sm\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .sm\:pr-8 { + padding-right: 2rem; } - .sm\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .sm\:pr-9 { + padding-right: 2.25rem; } - .sm\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .sm\:pr-10 { + padding-right: 2.5rem; } - .sm\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .sm\:pr-11 { + padding-right: 2.75rem; } - .sm\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .sm\:pr-12 { + padding-right: 3rem; } - .sm\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .sm\:pr-14 { + padding-right: 3.5rem; } - .sm\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .sm\:pr-16 { + padding-right: 4rem; } - .sm\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .sm\:pr-20 { + padding-right: 5rem; } - .sm\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .sm\:pr-24 { + padding-right: 6rem; } - .sm\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .sm\:pr-28 { + padding-right: 7rem; } - .sm\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .sm\:pr-32 { + padding-right: 8rem; } - .sm\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .sm\:pr-36 { + padding-right: 9rem; } - .sm\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .sm\:pr-40 { + padding-right: 10rem; } - .sm\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .sm\:pr-44 { + padding-right: 11rem; } - .sm\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .sm\:pr-48 { + padding-right: 12rem; } - .sm\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .sm\:pr-52 { + padding-right: 13rem; } - .sm\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .sm\:pr-56 { + padding-right: 14rem; } - .sm\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .sm\:pr-60 { + padding-right: 15rem; } - .sm\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .sm\:pr-64 { + padding-right: 16rem; } - .sm\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .sm\:pr-72 { + padding-right: 18rem; } - .sm\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .sm\:pr-80 { + padding-right: 20rem; } - .sm\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .sm\:pr-96 { + padding-right: 24rem; } - .sm\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .sm\:pr-px { + padding-right: 1px; } - .sm\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .sm\:pr-0\.5 { + padding-right: 0.125rem; } - .sm\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .sm\:pr-1\.5 { + padding-right: 0.375rem; } - .sm\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .sm\:pr-2\.5 { + padding-right: 0.625rem; } - .sm\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .sm\:pr-3\.5 { + padding-right: 0.875rem; } - .sm\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .sm\:pb-0 { + padding-bottom: 0px; } - .sm\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .sm\:pb-1 { + padding-bottom: 0.25rem; } - .sm\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .sm\:pb-2 { + padding-bottom: 0.5rem; } - .sm\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .sm\:pb-3 { + padding-bottom: 0.75rem; } - .sm\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .sm\:pb-4 { + padding-bottom: 1rem; } - .sm\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .sm\:pb-5 { + padding-bottom: 1.25rem; } - .sm\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .sm\:pb-6 { + padding-bottom: 1.5rem; } - .sm\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .sm\:pb-7 { + padding-bottom: 1.75rem; } - .sm\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .sm\:pb-8 { + padding-bottom: 2rem; } - .sm\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .sm\:pb-9 { + padding-bottom: 2.25rem; } - .sm\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .sm\:pb-10 { + padding-bottom: 2.5rem; } - .sm\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .sm\:pb-11 { + padding-bottom: 2.75rem; } - .sm\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .sm\:pb-12 { + padding-bottom: 3rem; } - .sm\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .sm\:pb-14 { + padding-bottom: 3.5rem; } - .sm\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .sm\:pb-16 { + padding-bottom: 4rem; } - .sm\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .sm\:pb-20 { + padding-bottom: 5rem; } - .sm\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .sm\:pb-24 { + padding-bottom: 6rem; } - .sm\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .sm\:pb-28 { + padding-bottom: 7rem; } - .sm\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .sm\:pb-32 { + padding-bottom: 8rem; } - .sm\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .sm\:pb-36 { + padding-bottom: 9rem; } - .sm\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .sm\:pb-40 { + padding-bottom: 10rem; } - .sm\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .sm\:pb-44 { + padding-bottom: 11rem; } - .sm\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .sm\:pb-48 { + padding-bottom: 12rem; } - .sm\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .sm\:pb-52 { + padding-bottom: 13rem; } - .sm\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .sm\:pb-56 { + padding-bottom: 14rem; } - .sm\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .sm\:pb-60 { + padding-bottom: 15rem; } - .sm\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .sm\:pb-64 { + padding-bottom: 16rem; } - .sm\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .sm\:pb-72 { + padding-bottom: 18rem; } - .sm\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .sm\:pb-80 { + padding-bottom: 20rem; } - .sm\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .sm\:pb-96 { + padding-bottom: 24rem; } - .sm\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .sm\:pb-px { + padding-bottom: 1px; } - .sm\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .sm\:pb-0\.5 { + padding-bottom: 0.125rem; } - .sm\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .sm\:pb-1\.5 { + padding-bottom: 0.375rem; } - .sm\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .sm\:pb-2\.5 { + padding-bottom: 0.625rem; } - .sm\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .sm\:pb-3\.5 { + padding-bottom: 0.875rem; } - .sm\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .sm\:pl-0 { + padding-left: 0px; } - .sm\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .sm\:pl-1 { + padding-left: 0.25rem; } - .sm\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .sm\:pl-2 { + padding-left: 0.5rem; } - .sm\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .sm\:pl-3 { + padding-left: 0.75rem; } - .sm\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .sm\:pl-4 { + padding-left: 1rem; } - .sm\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .sm\:pl-5 { + padding-left: 1.25rem; } - .sm\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .sm\:pl-6 { + padding-left: 1.5rem; } - .sm\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .sm\:pl-7 { + padding-left: 1.75rem; } - .sm\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .sm\:pl-8 { + padding-left: 2rem; } - .sm\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .sm\:pl-9 { + padding-left: 2.25rem; } - .sm\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .sm\:pl-10 { + padding-left: 2.5rem; } - .sm\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .sm\:pl-11 { + padding-left: 2.75rem; } - .sm\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .sm\:pl-12 { + padding-left: 3rem; } - .sm\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .sm\:pl-14 { + padding-left: 3.5rem; } - .sm\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .sm\:pl-16 { + padding-left: 4rem; } - .sm\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .sm\:pl-20 { + padding-left: 5rem; } - .sm\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .sm\:pl-24 { + padding-left: 6rem; } - .sm\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .sm\:pl-28 { + padding-left: 7rem; } - .sm\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .sm\:pl-32 { + padding-left: 8rem; } - .sm\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .sm\:pl-36 { + padding-left: 9rem; } - .sm\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .sm\:pl-40 { + padding-left: 10rem; } - .sm\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .sm\:pl-44 { + padding-left: 11rem; } - .sm\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .sm\:pl-48 { + padding-left: 12rem; } - .sm\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .sm\:pl-52 { + padding-left: 13rem; } - .sm\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .sm\:pl-56 { + padding-left: 14rem; } - .sm\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .sm\:pl-60 { + padding-left: 15rem; } - .sm\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .sm\:pl-64 { + padding-left: 16rem; } - .sm\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .sm\:pl-72 { + padding-left: 18rem; } - .sm\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .sm\:pl-80 { + padding-left: 20rem; } - .sm\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .sm\:pl-96 { + padding-left: 24rem; } - .sm\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .sm\:pl-px { + padding-left: 1px; } - .sm\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .sm\:pl-0\.5 { + padding-left: 0.125rem; } - .sm\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .sm\:pl-1\.5 { + padding-left: 0.375rem; } - .sm\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .sm\:pl-2\.5 { + padding-left: 0.625rem; } - .sm\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .sm\:pl-3\.5 { + padding-left: 0.875rem; } - .sm\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .sm\:text-left { + text-align: left; } - .sm\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .sm\:text-center { + text-align: center; } - .sm\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .sm\:text-right { + text-align: right; } - .sm\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .sm\:text-justify { + text-align: justify; } - .sm\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .sm\:align-baseline { + vertical-align: baseline; } - .sm\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .sm\:align-top { + vertical-align: top; } - .sm\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .sm\:align-middle { + vertical-align: middle; } - .sm\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .sm\:align-bottom { + vertical-align: bottom; } - .sm\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .sm\:align-text-top { + vertical-align: text-top; } - .sm\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .sm\:align-text-bottom { + vertical-align: text-bottom; } - .sm\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .sm\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .sm\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .sm\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .sm\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .sm\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .sm\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .sm\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .sm\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .sm\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .sm\:ring-opacity-0 { - --tw-ring-opacity: 0; + .sm\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .sm\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .sm\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .sm\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .sm\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .sm\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .sm\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .sm\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .sm\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .sm\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .sm\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .sm\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .sm\:text-5xl { + font-size: 3rem; + line-height: 1; } - .sm\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .sm\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .sm\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .sm\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .sm\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .sm\:text-8xl { + font-size: 6rem; + line-height: 1; } - .sm\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .sm\:text-9xl { + font-size: 8rem; + line-height: 1; } - .sm\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .sm\:font-thin { + font-weight: 100; } - .sm\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .sm\:font-extralight { + font-weight: 200; } - .sm\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .sm\:font-light { + font-weight: 300; } - .sm\:ring-opacity-100 { - --tw-ring-opacity: 1; + .sm\:font-normal { + font-weight: 400; } - .sm\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .sm\:font-medium { + font-weight: 500; } - .sm\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .sm\:font-semibold { + font-weight: 600; } - .sm\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .sm\:font-bold { + font-weight: 700; } - .sm\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .sm\:font-extrabold { + font-weight: 800; } - .sm\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .sm\:font-black { + font-weight: 900; } - .sm\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .sm\:uppercase { + text-transform: uppercase; } - .sm\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .sm\:lowercase { + text-transform: lowercase; } - .sm\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .sm\:capitalize { + text-transform: capitalize; } - .sm\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .sm\:normal-case { + text-transform: none; } - .sm\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .sm\:italic { + font-style: italic; } - .sm\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .sm\:not-italic { + font-style: normal; } - .sm\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .sm\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .sm\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .sm\:normal-nums { + font-variant-numeric: normal; } - .sm\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .sm\:ordinal { + --tw-ordinal: ordinal; } - .sm\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .sm\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .sm\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .sm\:lining-nums { + --tw-numeric-figure: lining-nums; } - .sm\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .sm\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .sm\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .sm\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .sm\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .sm\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .sm\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .sm\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .sm\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .sm\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .sm\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .sm\:leading-3 { + line-height: .75rem; } - .sm\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .sm\:leading-4 { + line-height: 1rem; } - .sm\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .sm\:leading-5 { + line-height: 1.25rem; } - .sm\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .sm\:leading-6 { + line-height: 1.5rem; } - .sm\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .sm\:leading-7 { + line-height: 1.75rem; } - .sm\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .sm\:leading-8 { + line-height: 2rem; } - .sm\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .sm\:leading-9 { + line-height: 2.25rem; } - .sm\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .sm\:leading-10 { + line-height: 2.5rem; } - .sm\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .sm\:leading-none { + line-height: 1; } - .sm\:fill-current { - fill: currentColor; + .sm\:leading-tight { + line-height: 1.25; } - .sm\:stroke-current { - stroke: currentColor; + .sm\:leading-snug { + line-height: 1.375; } - .sm\:stroke-0 { - stroke-width: 0; + .sm\:leading-normal { + line-height: 1.5; } - .sm\:stroke-1 { - stroke-width: 1; + .sm\:leading-relaxed { + line-height: 1.625; } - .sm\:stroke-2 { - stroke-width: 2; + .sm\:leading-loose { + line-height: 2; } - .sm\:table-auto { - table-layout: auto; + .sm\:tracking-tighter { + letter-spacing: -0.05em; } - .sm\:table-fixed { - table-layout: fixed; + .sm\:tracking-tight { + letter-spacing: -0.025em; } - .sm\:text-left { - text-align: left; + .sm\:tracking-normal { + letter-spacing: 0em; } - .sm\:text-center { - text-align: center; + .sm\:tracking-wide { + letter-spacing: 0.025em; } - .sm\:text-right { - text-align: right; + .sm\:tracking-wider { + letter-spacing: 0.05em; } - .sm\:text-justify { - text-align: justify; + .sm\:tracking-widest { + letter-spacing: 0.1em; } .sm\:text-transparent { @@ -53869,44 +54058,6 @@ video { --tw-text-opacity: 1; } - .sm\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .sm\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .sm\:overflow-clip { - text-overflow: clip; - } - - .sm\:italic { - font-style: italic; - } - - .sm\:not-italic { - font-style: normal; - } - - .sm\:uppercase { - text-transform: uppercase; - } - - .sm\:lowercase { - text-transform: lowercase; - } - - .sm\:capitalize { - text-transform: capitalize; - } - - .sm\:normal-case { - text-transform: none; - } - .sm\:underline { text-decoration: underline; } @@ -53977,4258 +54128,4669 @@ video { -moz-osx-font-smoothing: auto; } - .sm\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); - } - - .sm\:normal-nums { - font-variant-numeric: normal; - } - - .sm\:ordinal { - --tw-ordinal: ordinal; - } - - .sm\:slashed-zero { - --tw-slashed-zero: slashed-zero; - } - - .sm\:lining-nums { - --tw-numeric-figure: lining-nums; - } - - .sm\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; - } - - .sm\:proportional-nums { - --tw-numeric-spacing: proportional-nums; - } - - .sm\:tabular-nums { - --tw-numeric-spacing: tabular-nums; - } - - .sm\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; - } - - .sm\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; - } - - .sm\:tracking-tighter { - letter-spacing: -0.05em; - } - - .sm\:tracking-tight { - letter-spacing: -0.025em; - } - - .sm\:tracking-normal { - letter-spacing: 0em; - } - - .sm\:tracking-wide { - letter-spacing: 0.025em; + .sm\:placeholder-transparent::placeholder { + color: transparent; } - .sm\:tracking-wider { - letter-spacing: 0.05em; + .sm\:placeholder-current::placeholder { + color: currentColor; } - .sm\:tracking-widest { - letter-spacing: 0.1em; + .sm\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .sm\:select-none { - user-select: none; + .sm\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .sm\:select-text { - user-select: text; + .sm\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .sm\:select-all { - user-select: all; + .sm\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .sm\:select-auto { - user-select: auto; + .sm\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .sm\:align-baseline { - vertical-align: baseline; + .sm\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .sm\:align-top { - vertical-align: top; + .sm\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .sm\:align-middle { - vertical-align: middle; + .sm\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .sm\:align-bottom { - vertical-align: bottom; + .sm\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .sm\:align-text-top { - vertical-align: text-top; + .sm\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .sm\:align-text-bottom { - vertical-align: text-bottom; + .sm\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .sm\:visible { - visibility: visible; + .sm\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .sm\:invisible { - visibility: hidden; + .sm\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .sm\:whitespace-normal { - white-space: normal; + .sm\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .sm\:whitespace-nowrap { - white-space: nowrap; + .sm\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .sm\:whitespace-pre { - white-space: pre; + .sm\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .sm\:whitespace-pre-line { - white-space: pre-line; + .sm\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .sm\:whitespace-pre-wrap { - white-space: pre-wrap; + .sm\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .sm\:break-normal { - overflow-wrap: normal; - word-break: normal; + .sm\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .sm\:break-words { - overflow-wrap: break-word; + .sm\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .sm\:break-all { - word-break: break-all; + .sm\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .sm\:w-0 { - width: 0px; + .sm\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .sm\:w-1 { - width: 0.25rem; + .sm\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .sm\:w-2 { - width: 0.5rem; + .sm\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .sm\:w-3 { - width: 0.75rem; + .sm\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .sm\:w-4 { - width: 1rem; + .sm\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .sm\:w-5 { - width: 1.25rem; + .sm\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .sm\:w-6 { - width: 1.5rem; + .sm\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .sm\:w-7 { - width: 1.75rem; + .sm\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .sm\:w-8 { - width: 2rem; + .sm\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .sm\:w-9 { - width: 2.25rem; + .sm\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .sm\:w-10 { - width: 2.5rem; + .sm\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .sm\:w-11 { - width: 2.75rem; + .sm\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .sm\:w-12 { - width: 3rem; + .sm\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .sm\:w-14 { - width: 3.5rem; + .sm\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .sm\:w-16 { - width: 4rem; + .sm\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .sm\:w-20 { - width: 5rem; + .sm\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .sm\:w-24 { - width: 6rem; + .sm\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .sm\:w-28 { - width: 7rem; + .sm\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .sm\:w-32 { - width: 8rem; + .sm\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .sm\:w-36 { - width: 9rem; + .sm\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .sm\:w-40 { - width: 10rem; + .sm\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .sm\:w-44 { - width: 11rem; + .sm\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .sm\:w-48 { - width: 12rem; + .sm\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .sm\:w-52 { - width: 13rem; + .sm\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .sm\:w-56 { - width: 14rem; + .sm\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .sm\:w-60 { - width: 15rem; + .sm\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .sm\:w-64 { - width: 16rem; + .sm\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .sm\:w-72 { - width: 18rem; + .sm\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .sm\:w-80 { - width: 20rem; + .sm\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .sm\:w-96 { - width: 24rem; + .sm\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .sm\:w-auto { - width: auto; + .sm\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .sm\:w-px { - width: 1px; + .sm\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .sm\:w-0\.5 { - width: 0.125rem; + .sm\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .sm\:w-1\.5 { - width: 0.375rem; + .sm\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .sm\:w-2\.5 { - width: 0.625rem; + .sm\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .sm\:w-3\.5 { - width: 0.875rem; + .sm\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .sm\:w-1\/2 { - width: 50%; + .sm\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .sm\:w-1\/3 { - width: 33.333333%; + .sm\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .sm\:w-2\/3 { - width: 66.666667%; + .sm\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .sm\:w-1\/4 { - width: 25%; + .sm\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .sm\:w-2\/4 { - width: 50%; + .sm\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .sm\:w-3\/4 { - width: 75%; + .sm\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .sm\:w-1\/5 { - width: 20%; + .sm\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .sm\:w-2\/5 { - width: 40%; + .sm\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .sm\:w-3\/5 { - width: 60%; + .sm\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .sm\:w-4\/5 { - width: 80%; + .sm\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .sm\:w-1\/6 { - width: 16.666667%; + .sm\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .sm\:w-2\/6 { - width: 33.333333%; + .sm\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .sm\:w-3\/6 { - width: 50%; + .sm\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .sm\:w-4\/6 { - width: 66.666667%; + .sm\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .sm\:w-5\/6 { - width: 83.333333%; + .sm\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .sm\:w-1\/12 { - width: 8.333333%; + .sm\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .sm\:w-2\/12 { - width: 16.666667%; + .sm\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .sm\:w-3\/12 { - width: 25%; + .sm\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .sm\:w-4\/12 { - width: 33.333333%; + .sm\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .sm\:w-5\/12 { - width: 41.666667%; + .sm\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .sm\:w-6\/12 { - width: 50%; + .sm\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .sm\:w-7\/12 { - width: 58.333333%; + .sm\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .sm\:w-8\/12 { - width: 66.666667%; + .sm\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .sm\:w-9\/12 { - width: 75%; + .sm\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .sm\:w-10\/12 { - width: 83.333333%; + .sm\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .sm\:w-11\/12 { - width: 91.666667%; + .sm\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .sm\:w-full { - width: 100%; + .sm\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .sm\:w-screen { - width: 100vw; + .sm\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .sm\:w-min { - width: min-content; + .sm\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .sm\:w-max { - width: max-content; + .sm\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .sm\:z-0 { - z-index: 0; + .sm\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .sm\:z-10 { - z-index: 10; + .sm\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .sm\:z-20 { - z-index: 20; + .sm\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .sm\:z-30 { - z-index: 30; + .sm\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .sm\:z-40 { - z-index: 40; + .sm\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .sm\:z-50 { - z-index: 50; + .sm\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .sm\:z-auto { - z-index: auto; + .sm\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-0:focus-within { - z-index: 0; + .sm\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-10:focus-within { - z-index: 10; + .sm\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-20:focus-within { - z-index: 20; + .sm\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-30:focus-within { - z-index: 30; + .sm\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-40:focus-within { - z-index: 40; + .sm\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-50:focus-within { - z-index: 50; + .sm\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-auto:focus-within { - z-index: auto; + .sm\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-0:focus { - z-index: 0; + .sm\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-10:focus { - z-index: 10; + .sm\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-20:focus { - z-index: 20; + .sm\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-30:focus { - z-index: 30; + .sm\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-40:focus { - z-index: 40; + .sm\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-50:focus { - z-index: 50; + .sm\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-auto:focus { - z-index: auto; + .sm\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .sm\:isolate { - isolation: isolate; + .sm\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .sm\:isolation-auto { - isolation: auto; + .sm\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .sm\:gap-0 { - gap: 0px; + .sm\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .sm\:gap-1 { - gap: 0.25rem; + .sm\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .sm\:gap-2 { - gap: 0.5rem; + .sm\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .sm\:gap-3 { - gap: 0.75rem; + .sm\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .sm\:gap-4 { - gap: 1rem; + .sm\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .sm\:gap-5 { - gap: 1.25rem; + .sm\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .sm\:gap-6 { - gap: 1.5rem; + .sm\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .sm\:gap-7 { - gap: 1.75rem; + .sm\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .sm\:gap-8 { - gap: 2rem; + .sm\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .sm\:gap-9 { - gap: 2.25rem; + .sm\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .sm\:gap-10 { - gap: 2.5rem; + .sm\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .sm\:gap-11 { - gap: 2.75rem; + .sm\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .sm\:gap-12 { - gap: 3rem; + .sm\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .sm\:gap-14 { - gap: 3.5rem; + .sm\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .sm\:gap-16 { - gap: 4rem; + .sm\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .sm\:gap-20 { - gap: 5rem; + .sm\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .sm\:gap-24 { - gap: 6rem; + .sm\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .sm\:gap-28 { - gap: 7rem; + .sm\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .sm\:gap-32 { - gap: 8rem; + .sm\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .sm\:gap-36 { - gap: 9rem; + .sm\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .sm\:gap-40 { - gap: 10rem; + .sm\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .sm\:gap-44 { - gap: 11rem; + .sm\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .sm\:gap-48 { - gap: 12rem; + .sm\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .sm\:gap-52 { - gap: 13rem; + .sm\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .sm\:gap-56 { - gap: 14rem; + .sm\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .sm\:gap-60 { - gap: 15rem; + .sm\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .sm\:gap-64 { - gap: 16rem; + .sm\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .sm\:gap-72 { - gap: 18rem; + .sm\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .sm\:gap-80 { - gap: 20rem; + .sm\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .sm\:gap-96 { - gap: 24rem; + .sm\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .sm\:gap-px { - gap: 1px; + .sm\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .sm\:gap-0\.5 { - gap: 0.125rem; + .sm\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .sm\:gap-1\.5 { - gap: 0.375rem; + .sm\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .sm\:gap-2\.5 { - gap: 0.625rem; + .sm\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .sm\:gap-3\.5 { - gap: 0.875rem; + .sm\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .sm\:gap-x-0 { - column-gap: 0px; + .sm\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .sm\:gap-x-1 { - column-gap: 0.25rem; + .sm\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .sm\:gap-x-2 { - column-gap: 0.5rem; + .sm\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .sm\:gap-x-3 { - column-gap: 0.75rem; + .sm\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .sm\:gap-x-4 { - column-gap: 1rem; + .sm\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .sm\:gap-x-5 { - column-gap: 1.25rem; + .sm\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .sm\:gap-x-6 { - column-gap: 1.5rem; + .sm\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .sm\:gap-x-7 { - column-gap: 1.75rem; + .sm\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .sm\:gap-x-8 { - column-gap: 2rem; + .sm\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .sm\:gap-x-9 { - column-gap: 2.25rem; + .sm\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .sm\:gap-x-10 { - column-gap: 2.5rem; + .sm\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .sm\:gap-x-11 { - column-gap: 2.75rem; + .sm\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .sm\:gap-x-12 { - column-gap: 3rem; + .sm\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .sm\:gap-x-14 { - column-gap: 3.5rem; + .sm\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .sm\:gap-x-16 { - column-gap: 4rem; + .sm\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .sm\:gap-x-20 { - column-gap: 5rem; + .sm\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .sm\:gap-x-24 { - column-gap: 6rem; + .sm\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .sm\:gap-x-28 { - column-gap: 7rem; + .sm\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .sm\:gap-x-32 { - column-gap: 8rem; + .sm\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .sm\:gap-x-36 { - column-gap: 9rem; + .sm\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .sm\:gap-x-40 { - column-gap: 10rem; + .sm\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .sm\:gap-x-44 { - column-gap: 11rem; + .sm\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } - .sm\:gap-x-48 { - column-gap: 12rem; + .sm\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } - .sm\:gap-x-52 { - column-gap: 13rem; + .sm\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } - .sm\:gap-x-56 { - column-gap: 14rem; + .sm\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } - .sm\:gap-x-60 { - column-gap: 15rem; + .sm\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } - .sm\:gap-x-64 { - column-gap: 16rem; + .sm\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } - .sm\:gap-x-72 { - column-gap: 18rem; + .sm\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } - .sm\:gap-x-80 { - column-gap: 20rem; + .sm\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } - .sm\:gap-x-96 { - column-gap: 24rem; + .sm\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } - .sm\:gap-x-px { - column-gap: 1px; + .sm\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } - .sm\:gap-x-0\.5 { - column-gap: 0.125rem; + .sm\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } - .sm\:gap-x-1\.5 { - column-gap: 0.375rem; + .sm\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } - .sm\:gap-x-2\.5 { - column-gap: 0.625rem; + .sm\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } - .sm\:gap-x-3\.5 { - column-gap: 0.875rem; + .sm\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } - .sm\:gap-y-0 { - row-gap: 0px; + .sm\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } - .sm\:gap-y-1 { - row-gap: 0.25rem; + .sm\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } - .sm\:gap-y-2 { - row-gap: 0.5rem; + .sm\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } - .sm\:gap-y-3 { - row-gap: 0.75rem; + .sm\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } - .sm\:gap-y-4 { - row-gap: 1rem; + .sm\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } - .sm\:gap-y-5 { - row-gap: 1.25rem; + .sm\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } - .sm\:gap-y-6 { - row-gap: 1.5rem; + .sm\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } - .sm\:gap-y-7 { - row-gap: 1.75rem; + .sm\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } - .sm\:gap-y-8 { - row-gap: 2rem; + .sm\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } - .sm\:gap-y-9 { - row-gap: 2.25rem; + .sm\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } - .sm\:gap-y-10 { - row-gap: 2.5rem; + .sm\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } - .sm\:gap-y-11 { - row-gap: 2.75rem; + .sm\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } - .sm\:gap-y-12 { - row-gap: 3rem; + .sm\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } - .sm\:gap-y-14 { - row-gap: 3.5rem; + .sm\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } - .sm\:gap-y-16 { - row-gap: 4rem; + .sm\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } - .sm\:gap-y-20 { - row-gap: 5rem; + .sm\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } - .sm\:gap-y-24 { - row-gap: 6rem; + .sm\:opacity-0 { + opacity: 0; } - .sm\:gap-y-28 { - row-gap: 7rem; + .sm\:opacity-5 { + opacity: 0.05; } - .sm\:gap-y-32 { - row-gap: 8rem; + .sm\:opacity-10 { + opacity: 0.1; } - .sm\:gap-y-36 { - row-gap: 9rem; + .sm\:opacity-20 { + opacity: 0.2; } - .sm\:gap-y-40 { - row-gap: 10rem; + .sm\:opacity-25 { + opacity: 0.25; } - .sm\:gap-y-44 { - row-gap: 11rem; + .sm\:opacity-30 { + opacity: 0.3; } - .sm\:gap-y-48 { - row-gap: 12rem; + .sm\:opacity-40 { + opacity: 0.4; } - .sm\:gap-y-52 { - row-gap: 13rem; + .sm\:opacity-50 { + opacity: 0.5; } - .sm\:gap-y-56 { - row-gap: 14rem; + .sm\:opacity-60 { + opacity: 0.6; } - .sm\:gap-y-60 { - row-gap: 15rem; + .sm\:opacity-70 { + opacity: 0.7; } - .sm\:gap-y-64 { - row-gap: 16rem; + .sm\:opacity-75 { + opacity: 0.75; } - .sm\:gap-y-72 { - row-gap: 18rem; + .sm\:opacity-80 { + opacity: 0.8; } - .sm\:gap-y-80 { - row-gap: 20rem; + .sm\:opacity-90 { + opacity: 0.9; } - .sm\:gap-y-96 { - row-gap: 24rem; + .sm\:opacity-95 { + opacity: 0.95; } - .sm\:gap-y-px { - row-gap: 1px; + .sm\:opacity-100 { + opacity: 1; } - .sm\:gap-y-0\.5 { - row-gap: 0.125rem; + .group:hover .sm\:group-hover\:opacity-0 { + opacity: 0; } - .sm\:gap-y-1\.5 { - row-gap: 0.375rem; + .group:hover .sm\:group-hover\:opacity-5 { + opacity: 0.05; } - .sm\:gap-y-2\.5 { - row-gap: 0.625rem; + .group:hover .sm\:group-hover\:opacity-10 { + opacity: 0.1; } - .sm\:gap-y-3\.5 { - row-gap: 0.875rem; + .group:hover .sm\:group-hover\:opacity-20 { + opacity: 0.2; } - .sm\:grid-flow-row { - grid-auto-flow: row; + .group:hover .sm\:group-hover\:opacity-25 { + opacity: 0.25; } - .sm\:grid-flow-col { - grid-auto-flow: column; + .group:hover .sm\:group-hover\:opacity-30 { + opacity: 0.3; } - .sm\:grid-flow-row-dense { - grid-auto-flow: row dense; + .group:hover .sm\:group-hover\:opacity-40 { + opacity: 0.4; } - .sm\:grid-flow-col-dense { - grid-auto-flow: column dense; + .group:hover .sm\:group-hover\:opacity-50 { + opacity: 0.5; } - .sm\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-60 { + opacity: 0.6; } - .sm\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-70 { + opacity: 0.7; } - .sm\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-75 { + opacity: 0.75; } - .sm\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-80 { + opacity: 0.8; } - .sm\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-90 { + opacity: 0.9; } - .sm\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-95 { + opacity: 0.95; } - .sm\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-100 { + opacity: 1; } - .sm\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .sm\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .sm\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .sm\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .sm\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .sm\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .sm\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .sm\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .sm\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .sm\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .sm\:grid-cols-none { - grid-template-columns: none; + .sm\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .sm\:auto-cols-auto { - grid-auto-columns: auto; + .sm\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .sm\:auto-cols-min { - grid-auto-columns: min-content; + .sm\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .sm\:auto-cols-max { - grid-auto-columns: max-content; + .sm\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .sm\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .sm\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .sm\:col-auto { - grid-column: auto; + .sm\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .sm\:col-span-1 { - grid-column: span 1 / span 1; + .sm\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .sm\:col-span-2 { - grid-column: span 2 / span 2; + .sm\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .sm\:col-span-3 { - grid-column: span 3 / span 3; + .sm\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .sm\:col-span-4 { - grid-column: span 4 / span 4; + .sm\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .sm\:col-span-5 { - grid-column: span 5 / span 5; + .sm\:hover\:opacity-0:hover { + opacity: 0; } - .sm\:col-span-6 { - grid-column: span 6 / span 6; + .sm\:hover\:opacity-5:hover { + opacity: 0.05; } - .sm\:col-span-7 { - grid-column: span 7 / span 7; + .sm\:hover\:opacity-10:hover { + opacity: 0.1; } - .sm\:col-span-8 { - grid-column: span 8 / span 8; + .sm\:hover\:opacity-20:hover { + opacity: 0.2; } - .sm\:col-span-9 { - grid-column: span 9 / span 9; + .sm\:hover\:opacity-25:hover { + opacity: 0.25; } - .sm\:col-span-10 { - grid-column: span 10 / span 10; + .sm\:hover\:opacity-30:hover { + opacity: 0.3; } - .sm\:col-span-11 { - grid-column: span 11 / span 11; + .sm\:hover\:opacity-40:hover { + opacity: 0.4; } - .sm\:col-span-12 { - grid-column: span 12 / span 12; + .sm\:hover\:opacity-50:hover { + opacity: 0.5; } - .sm\:col-span-full { - grid-column: 1 / -1; + .sm\:hover\:opacity-60:hover { + opacity: 0.6; } - .sm\:col-start-1 { - grid-column-start: 1; + .sm\:hover\:opacity-70:hover { + opacity: 0.7; } - .sm\:col-start-2 { - grid-column-start: 2; + .sm\:hover\:opacity-75:hover { + opacity: 0.75; } - .sm\:col-start-3 { - grid-column-start: 3; + .sm\:hover\:opacity-80:hover { + opacity: 0.8; } - .sm\:col-start-4 { - grid-column-start: 4; + .sm\:hover\:opacity-90:hover { + opacity: 0.9; } - .sm\:col-start-5 { - grid-column-start: 5; + .sm\:hover\:opacity-95:hover { + opacity: 0.95; } - .sm\:col-start-6 { - grid-column-start: 6; + .sm\:hover\:opacity-100:hover { + opacity: 1; } - .sm\:col-start-7 { - grid-column-start: 7; + .sm\:focus\:opacity-0:focus { + opacity: 0; } - .sm\:col-start-8 { - grid-column-start: 8; + .sm\:focus\:opacity-5:focus { + opacity: 0.05; } - .sm\:col-start-9 { - grid-column-start: 9; + .sm\:focus\:opacity-10:focus { + opacity: 0.1; } - .sm\:col-start-10 { - grid-column-start: 10; + .sm\:focus\:opacity-20:focus { + opacity: 0.2; } - .sm\:col-start-11 { - grid-column-start: 11; + .sm\:focus\:opacity-25:focus { + opacity: 0.25; } - .sm\:col-start-12 { - grid-column-start: 12; + .sm\:focus\:opacity-30:focus { + opacity: 0.3; } - .sm\:col-start-13 { - grid-column-start: 13; + .sm\:focus\:opacity-40:focus { + opacity: 0.4; } - .sm\:col-start-auto { - grid-column-start: auto; + .sm\:focus\:opacity-50:focus { + opacity: 0.5; } - .sm\:col-end-1 { - grid-column-end: 1; + .sm\:focus\:opacity-60:focus { + opacity: 0.6; } - .sm\:col-end-2 { - grid-column-end: 2; + .sm\:focus\:opacity-70:focus { + opacity: 0.7; } - .sm\:col-end-3 { - grid-column-end: 3; + .sm\:focus\:opacity-75:focus { + opacity: 0.75; } - .sm\:col-end-4 { - grid-column-end: 4; + .sm\:focus\:opacity-80:focus { + opacity: 0.8; } - .sm\:col-end-5 { - grid-column-end: 5; + .sm\:focus\:opacity-90:focus { + opacity: 0.9; } - .sm\:col-end-6 { - grid-column-end: 6; + .sm\:focus\:opacity-95:focus { + opacity: 0.95; } - .sm\:col-end-7 { - grid-column-end: 7; + .sm\:focus\:opacity-100:focus { + opacity: 1; } - .sm\:col-end-8 { - grid-column-end: 8; + .sm\:bg-blend-normal { + background-blend-mode: normal; } - .sm\:col-end-9 { - grid-column-end: 9; + .sm\:bg-blend-multiply { + background-blend-mode: multiply; } - .sm\:col-end-10 { - grid-column-end: 10; + .sm\:bg-blend-screen { + background-blend-mode: screen; } - .sm\:col-end-11 { - grid-column-end: 11; + .sm\:bg-blend-overlay { + background-blend-mode: overlay; } - .sm\:col-end-12 { - grid-column-end: 12; + .sm\:bg-blend-darken { + background-blend-mode: darken; } - .sm\:col-end-13 { - grid-column-end: 13; + .sm\:bg-blend-lighten { + background-blend-mode: lighten; } - .sm\:col-end-auto { - grid-column-end: auto; + .sm\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .sm\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .sm\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .sm\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .sm\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .sm\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .sm\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .sm\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .sm\:bg-blend-difference { + background-blend-mode: difference; } - .sm\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .sm\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .sm\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .sm\:bg-blend-hue { + background-blend-mode: hue; } - .sm\:grid-rows-none { - grid-template-rows: none; + .sm\:bg-blend-saturation { + background-blend-mode: saturation; } - .sm\:auto-rows-auto { - grid-auto-rows: auto; + .sm\:bg-blend-color { + background-blend-mode: color; } - .sm\:auto-rows-min { - grid-auto-rows: min-content; + .sm\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .sm\:auto-rows-max { - grid-auto-rows: max-content; + .sm\:mix-blend-normal { + mix-blend-mode: normal; } - .sm\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .sm\:mix-blend-multiply { + mix-blend-mode: multiply; } - .sm\:row-auto { - grid-row: auto; + .sm\:mix-blend-screen { + mix-blend-mode: screen; } - .sm\:row-span-1 { - grid-row: span 1 / span 1; + .sm\:mix-blend-overlay { + mix-blend-mode: overlay; } - .sm\:row-span-2 { - grid-row: span 2 / span 2; + .sm\:mix-blend-darken { + mix-blend-mode: darken; } - .sm\:row-span-3 { - grid-row: span 3 / span 3; + .sm\:mix-blend-lighten { + mix-blend-mode: lighten; } - .sm\:row-span-4 { - grid-row: span 4 / span 4; + .sm\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .sm\:row-span-5 { - grid-row: span 5 / span 5; + .sm\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .sm\:row-span-6 { - grid-row: span 6 / span 6; + .sm\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .sm\:row-span-full { - grid-row: 1 / -1; + .sm\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .sm\:row-start-1 { - grid-row-start: 1; + .sm\:mix-blend-difference { + mix-blend-mode: difference; } - .sm\:row-start-2 { - grid-row-start: 2; + .sm\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .sm\:row-start-3 { - grid-row-start: 3; + .sm\:mix-blend-hue { + mix-blend-mode: hue; } - .sm\:row-start-4 { - grid-row-start: 4; + .sm\:mix-blend-saturation { + mix-blend-mode: saturation; } - .sm\:row-start-5 { - grid-row-start: 5; + .sm\:mix-blend-color { + mix-blend-mode: color; } - .sm\:row-start-6 { - grid-row-start: 6; + .sm\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .sm\:row-start-7 { - grid-row-start: 7; + .sm\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-start-auto { - grid-row-start: auto; + .sm\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-1 { - grid-row-end: 1; + .sm\: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); } - .sm\:row-end-2 { - grid-row-end: 2; + .sm\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-3 { - grid-row-end: 3; + .sm\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-4 { - grid-row-end: 4; + .sm\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-5 { - grid-row-end: 5; + .sm\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-6 { - grid-row-end: 6; + .sm\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-7 { - grid-row-end: 7; + .group:hover .sm\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-auto { - grid-row-end: auto; + .group:hover .sm\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .sm\:group-hover\: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); } - .sm\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .sm\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:transform-none { - transform: none; + .group:hover .sm\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-center { - transform-origin: center; + .group:hover .sm\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-top { - transform-origin: top; + .group:hover .sm\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-top-right { - transform-origin: top right; + .group:hover .sm\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-right { - transform-origin: right; + .sm\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-bottom-right { - transform-origin: bottom right; + .sm\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-bottom { - transform-origin: bottom; + .sm\:focus-within\:shadow-md:focus-within { + --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); } - .sm\:origin-bottom-left { - transform-origin: bottom left; + .sm\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-left { - transform-origin: left; + .sm\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-top-left { - transform-origin: top left; + .sm\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .sm\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .sm\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .sm\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .sm\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .sm\:hover\:shadow-md:hover { + --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); } - .sm\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .sm\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .sm\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .sm\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .sm\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .sm\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-0 { - --tw-scale-x: 0; + .sm\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-50 { - --tw-scale-x: .5; + .sm\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-75 { - --tw-scale-x: .75; + .sm\:focus\:shadow-md:focus { + --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); } - .sm\:scale-x-90 { - --tw-scale-x: .9; + .sm\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-95 { - --tw-scale-x: .95; + .sm\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-100 { - --tw-scale-x: 1; + .sm\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-105 { - --tw-scale-x: 1.05; + .sm\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-110 { - --tw-scale-x: 1.1; + .sm\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-125 { - --tw-scale-x: 1.25; + .sm\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .sm\:scale-x-150 { - --tw-scale-x: 1.5; + .sm\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .sm\:scale-y-0 { - --tw-scale-y: 0; + .sm\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .sm\:scale-y-50 { - --tw-scale-y: .5; + .sm\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .sm\:scale-y-75 { - --tw-scale-y: .75; + .sm\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .sm\:scale-y-90 { - --tw-scale-y: .9; + .sm\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .sm\:scale-y-95 { - --tw-scale-y: .95; + .sm\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .sm\:scale-y-100 { - --tw-scale-y: 1; + .sm\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .sm\:scale-y-105 { - --tw-scale-y: 1.05; + .sm\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .sm\:scale-y-110 { - --tw-scale-y: 1.1; + .sm\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:scale-y-125 { - --tw-scale-y: 1.25; + .sm\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:scale-y-150 { - --tw-scale-y: 1.5; + .sm\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .sm\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .sm\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .sm\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .sm\:ring-inset { + --tw-ring-inset: inset; } - .sm\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .sm\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .sm\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .sm\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .sm\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .sm\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .sm\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .sm\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .sm\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .sm\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .sm\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .sm\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .sm\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .sm\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .sm\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .sm\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .sm\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .sm\:ring-transparent { + --tw-ring-color: transparent; } - .sm\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .sm\:ring-current { + --tw-ring-color: currentColor; } - .sm\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .sm\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .sm\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .sm\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .sm\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .sm\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .sm\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .sm\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .sm\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .sm\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .sm\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .sm\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .sm\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .sm\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .sm\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .sm\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .sm\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .sm\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .sm\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .sm\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .sm\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .sm\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .sm\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .sm\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .sm\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .sm\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .sm\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .sm\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .sm\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .sm\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .sm\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .sm\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .sm\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .sm\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .sm\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .sm\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .sm\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .sm\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .sm\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .sm\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .sm\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .sm\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .sm\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .sm\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .sm\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .sm\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .sm\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .sm\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .sm\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .sm\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .sm\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .sm\:rotate-0 { - --tw-rotate: 0deg; + .sm\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .sm\:rotate-1 { - --tw-rotate: 1deg; + .sm\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .sm\:rotate-2 { - --tw-rotate: 2deg; + .sm\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .sm\:rotate-3 { - --tw-rotate: 3deg; + .sm\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .sm\:rotate-6 { - --tw-rotate: 6deg; + .sm\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .sm\:rotate-12 { - --tw-rotate: 12deg; + .sm\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .sm\:rotate-45 { - --tw-rotate: 45deg; + .sm\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .sm\:rotate-90 { - --tw-rotate: 90deg; + .sm\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .sm\:rotate-180 { - --tw-rotate: 180deg; + .sm\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .sm\:-rotate-180 { - --tw-rotate: -180deg; + .sm\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .sm\:-rotate-90 { - --tw-rotate: -90deg; + .sm\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .sm\:-rotate-45 { - --tw-rotate: -45deg; + .sm\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .sm\:-rotate-12 { - --tw-rotate: -12deg; + .sm\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .sm\:-rotate-6 { - --tw-rotate: -6deg; + .sm\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .sm\:-rotate-3 { - --tw-rotate: -3deg; + .sm\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .sm\:-rotate-2 { - --tw-rotate: -2deg; + .sm\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .sm\:-rotate-1 { - --tw-rotate: -1deg; + .sm\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .sm\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .sm\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .sm\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .sm\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .sm\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .sm\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .sm\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .sm\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .sm\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .sm\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .sm\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .sm\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .sm\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .sm\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .sm\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .sm\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .sm\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .sm\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .sm\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .sm\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .sm\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .sm\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .sm\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .sm\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .sm\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .sm\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .sm\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .sm\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .sm\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .sm\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .sm\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .sm\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .sm\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .sm\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .sm\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .sm\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .sm\:translate-x-0 { - --tw-translate-x: 0px; + .sm\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .sm\:translate-x-1 { - --tw-translate-x: 0.25rem; + .sm\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .sm\:translate-x-2 { - --tw-translate-x: 0.5rem; + .sm\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .sm\:translate-x-3 { - --tw-translate-x: 0.75rem; + .sm\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .sm\:translate-x-4 { - --tw-translate-x: 1rem; + .sm\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .sm\:translate-x-5 { - --tw-translate-x: 1.25rem; + .sm\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .sm\:translate-x-6 { - --tw-translate-x: 1.5rem; + .sm\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .sm\:translate-x-7 { - --tw-translate-x: 1.75rem; + .sm\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .sm\:translate-x-8 { - --tw-translate-x: 2rem; + .sm\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .sm\:translate-x-9 { - --tw-translate-x: 2.25rem; + .sm\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .sm\:translate-x-10 { - --tw-translate-x: 2.5rem; + .sm\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .sm\:translate-x-11 { - --tw-translate-x: 2.75rem; + .sm\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .sm\:translate-x-12 { - --tw-translate-x: 3rem; + .sm\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .sm\:translate-x-14 { - --tw-translate-x: 3.5rem; + .sm\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .sm\:translate-x-16 { - --tw-translate-x: 4rem; + .sm\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .sm\:translate-x-20 { - --tw-translate-x: 5rem; + .sm\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .sm\:translate-x-24 { - --tw-translate-x: 6rem; + .sm\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .sm\:translate-x-28 { - --tw-translate-x: 7rem; + .sm\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .sm\:translate-x-32 { - --tw-translate-x: 8rem; + .sm\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .sm\:translate-x-36 { - --tw-translate-x: 9rem; + .sm\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .sm\:translate-x-40 { - --tw-translate-x: 10rem; + .sm\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .sm\:translate-x-44 { - --tw-translate-x: 11rem; + .sm\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .sm\:translate-x-48 { - --tw-translate-x: 12rem; + .sm\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .sm\:translate-x-52 { - --tw-translate-x: 13rem; + .sm\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .sm\:translate-x-56 { - --tw-translate-x: 14rem; + .sm\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .sm\:translate-x-60 { - --tw-translate-x: 15rem; + .sm\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .sm\:translate-x-64 { - --tw-translate-x: 16rem; + .sm\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .sm\:translate-x-72 { - --tw-translate-x: 18rem; + .sm\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .sm\:translate-x-80 { - --tw-translate-x: 20rem; + .sm\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .sm\:translate-x-96 { - --tw-translate-x: 24rem; + .sm\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .sm\:translate-x-px { - --tw-translate-x: 1px; + .sm\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .sm\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .sm\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .sm\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .sm\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .sm\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .sm\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .sm\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .sm\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .sm\:-translate-x-0 { - --tw-translate-x: 0px; + .sm\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .sm\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .sm\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .sm\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .sm\:-translate-x-4 { - --tw-translate-x: -1rem; + .sm\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .sm\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .sm\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .sm\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .sm\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .sm\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .sm\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .sm\:-translate-x-8 { - --tw-translate-x: -2rem; + .sm\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .sm\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .sm\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .sm\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .sm\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .sm\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-12 { - --tw-translate-x: -3rem; + .sm\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .sm\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .sm\:-translate-x-16 { - --tw-translate-x: -4rem; + .sm\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .sm\:-translate-x-20 { - --tw-translate-x: -5rem; + .sm\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .sm\:-translate-x-24 { - --tw-translate-x: -6rem; + .sm\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .sm\:-translate-x-28 { - --tw-translate-x: -7rem; + .sm\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .sm\:-translate-x-32 { - --tw-translate-x: -8rem; + .sm\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .sm\:-translate-x-36 { - --tw-translate-x: -9rem; + .sm\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .sm\:-translate-x-40 { - --tw-translate-x: -10rem; + .sm\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-44 { - --tw-translate-x: -11rem; + .sm\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-48 { - --tw-translate-x: -12rem; + .sm\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-52 { - --tw-translate-x: -13rem; + .sm\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .sm\:-translate-x-56 { - --tw-translate-x: -14rem; + .sm\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .sm\:-translate-x-60 { - --tw-translate-x: -15rem; + .sm\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .sm\:-translate-x-64 { - --tw-translate-x: -16rem; + .sm\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .sm\:-translate-x-72 { - --tw-translate-x: -18rem; + .sm\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .sm\:-translate-x-80 { - --tw-translate-x: -20rem; + .sm\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .sm\:-translate-x-96 { - --tw-translate-x: -24rem; + .sm\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .sm\:-translate-x-px { - --tw-translate-x: -1px; + .sm\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .sm\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .sm\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .sm\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .sm\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .sm\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .sm\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .sm\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .sm\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .sm\:translate-x-1\/2 { - --tw-translate-x: 50%; + .sm\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .sm\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .sm\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .sm\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .sm\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .sm\:translate-x-1\/4 { - --tw-translate-x: 25%; + .sm\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .sm\:translate-x-2\/4 { - --tw-translate-x: 50%; + .sm\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .sm\:translate-x-3\/4 { - --tw-translate-x: 75%; + .sm\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .sm\:translate-x-full { - --tw-translate-x: 100%; + .sm\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .sm\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .sm\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .sm\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .sm\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .sm\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .sm\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .sm\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .sm\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .sm\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .sm\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .sm\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .sm\:-translate-x-full { - --tw-translate-x: -100%; + .sm\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .sm\:translate-y-0 { - --tw-translate-y: 0px; + .sm\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .sm\:translate-y-1 { - --tw-translate-y: 0.25rem; + .sm\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .sm\:translate-y-2 { - --tw-translate-y: 0.5rem; + .sm\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .sm\:translate-y-3 { - --tw-translate-y: 0.75rem; + .sm\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .sm\:translate-y-4 { - --tw-translate-y: 1rem; + .sm\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .sm\:translate-y-5 { - --tw-translate-y: 1.25rem; + .sm\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .sm\:translate-y-6 { - --tw-translate-y: 1.5rem; + .sm\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .sm\:translate-y-7 { - --tw-translate-y: 1.75rem; + .sm\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .sm\:translate-y-8 { - --tw-translate-y: 2rem; + .sm\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .sm\:translate-y-9 { - --tw-translate-y: 2.25rem; + .sm\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .sm\:translate-y-10 { - --tw-translate-y: 2.5rem; + .sm\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .sm\:translate-y-11 { - --tw-translate-y: 2.75rem; + .sm\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .sm\:translate-y-12 { - --tw-translate-y: 3rem; + .sm\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .sm\:translate-y-14 { - --tw-translate-y: 3.5rem; + .sm\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .sm\:translate-y-16 { - --tw-translate-y: 4rem; + .sm\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .sm\:translate-y-20 { - --tw-translate-y: 5rem; + .sm\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .sm\:translate-y-24 { - --tw-translate-y: 6rem; + .sm\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .sm\:translate-y-28 { - --tw-translate-y: 7rem; + .sm\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .sm\:translate-y-32 { - --tw-translate-y: 8rem; + .sm\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .sm\:translate-y-36 { - --tw-translate-y: 9rem; + .sm\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .sm\:translate-y-40 { - --tw-translate-y: 10rem; + .sm\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .sm\:translate-y-44 { - --tw-translate-y: 11rem; + .sm\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .sm\:translate-y-48 { - --tw-translate-y: 12rem; + .sm\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .sm\:translate-y-52 { - --tw-translate-y: 13rem; + .sm\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .sm\:translate-y-56 { - --tw-translate-y: 14rem; + .sm\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .sm\:translate-y-60 { - --tw-translate-y: 15rem; + .sm\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .sm\:translate-y-64 { - --tw-translate-y: 16rem; + .sm\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .sm\:translate-y-72 { - --tw-translate-y: 18rem; + .sm\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .sm\:translate-y-80 { - --tw-translate-y: 20rem; + .sm\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .sm\:translate-y-96 { - --tw-translate-y: 24rem; + .sm\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .sm\:translate-y-px { - --tw-translate-y: 1px; + .sm\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .sm\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .sm\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .sm\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .sm\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .sm\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .sm\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .sm\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .sm\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .sm\:-translate-y-0 { - --tw-translate-y: 0px; + .sm\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .sm\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .sm\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .sm\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .sm\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .sm\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .sm\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .sm\:-translate-y-4 { - --tw-translate-y: -1rem; + .sm\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .sm\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .sm\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .sm\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .sm\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .sm\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .sm\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .sm\:-translate-y-8 { - --tw-translate-y: -2rem; + .sm\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .sm\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .sm\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .sm\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .sm\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .sm\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .sm\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .sm\:-translate-y-12 { - --tw-translate-y: -3rem; + .sm\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .sm\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .sm\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .sm\:-translate-y-16 { - --tw-translate-y: -4rem; + .sm\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .sm\:-translate-y-20 { - --tw-translate-y: -5rem; + .sm\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .sm\:-translate-y-24 { - --tw-translate-y: -6rem; + .sm\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .sm\:-translate-y-28 { - --tw-translate-y: -7rem; + .sm\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .sm\:-translate-y-32 { - --tw-translate-y: -8rem; + .sm\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .sm\:-translate-y-36 { - --tw-translate-y: -9rem; + .sm\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .sm\:-translate-y-40 { - --tw-translate-y: -10rem; + .sm\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .sm\:-translate-y-44 { - --tw-translate-y: -11rem; + .sm\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .sm\:-translate-y-48 { - --tw-translate-y: -12rem; + .sm\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .sm\:-translate-y-52 { - --tw-translate-y: -13rem; + .sm\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .sm\:-translate-y-56 { - --tw-translate-y: -14rem; + .sm\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .sm\:-translate-y-60 { - --tw-translate-y: -15rem; + .sm\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .sm\:-translate-y-64 { - --tw-translate-y: -16rem; + .sm\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .sm\:-translate-y-72 { - --tw-translate-y: -18rem; + .sm\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .sm\:-translate-y-80 { - --tw-translate-y: -20rem; + .sm\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .sm\:-translate-y-96 { - --tw-translate-y: -24rem; + .sm\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .sm\:-translate-y-px { - --tw-translate-y: -1px; + .sm\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .sm\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .sm\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .sm\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .sm\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .sm\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .sm\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .sm\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .sm\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .sm\:translate-y-1\/2 { - --tw-translate-y: 50%; + .sm\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .sm\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .sm\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .sm\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .sm\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .sm\:translate-y-1\/4 { - --tw-translate-y: 25%; + .sm\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .sm\:translate-y-2\/4 { - --tw-translate-y: 50%; + .sm\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .sm\:translate-y-3\/4 { - --tw-translate-y: 75%; + .sm\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .sm\:translate-y-full { - --tw-translate-y: 100%; + .sm\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .sm\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .sm\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .sm\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .sm\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .sm\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .sm\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .sm\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .sm\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .sm\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .sm\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .sm\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .sm\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .sm\:-translate-y-full { - --tw-translate-y: -100%; + .sm\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .sm\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .sm\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .sm\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .sm\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .sm\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .sm\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .sm\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .sm\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .sm\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .sm\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .sm\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .sm\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .sm\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .sm\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .sm\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .sm\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .sm\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .sm\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .sm\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .sm\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .sm\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .sm\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .sm\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .sm\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .sm\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .sm\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .sm\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .sm\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .sm\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .sm\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .sm\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .sm\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .sm\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .sm\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .sm\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .sm\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .sm\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .sm\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .sm\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .sm\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .sm\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .sm\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .sm\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .sm\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .sm\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .sm\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .sm\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .sm\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .sm\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .sm\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .sm\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .sm\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .sm\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .sm\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .sm\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .sm\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .sm\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .sm\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .sm\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .sm\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .sm\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .sm\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .sm\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .sm\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .sm\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .sm\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .sm\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .sm\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .sm\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .sm\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .sm\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .sm\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .sm\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .sm\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .sm\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .sm\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .sm\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .sm\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .sm\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .sm\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .sm\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .sm\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .sm\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .sm\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .sm\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .sm\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .sm\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .sm\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .sm\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .sm\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .sm\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .sm\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .sm\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .sm\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .sm\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .sm\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .sm\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .sm\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .sm\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .sm\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .sm\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .sm\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .sm\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .sm\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .sm\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .sm\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .sm\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .sm\:ring-offset-black { + --tw-ring-offset-color: #000; } - .sm\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .sm\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .sm\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .sm\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .sm\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .sm\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .sm\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .sm\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .sm\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .sm\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .sm\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .sm\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .sm\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .sm\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .sm\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .sm\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .sm\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .sm\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .sm\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .sm\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .sm\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .sm\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .sm\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .sm\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .sm\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .sm\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .sm\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .sm\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .sm\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .sm\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .sm\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .sm\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .sm\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .sm\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .sm\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .sm\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .sm\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .sm\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .sm\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .sm\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .sm\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .sm\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .sm\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .sm\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .sm\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .sm\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .sm\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .sm\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .sm\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .sm\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .sm\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .sm\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .sm\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .sm\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .sm\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .sm\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .sm\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .sm\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .sm\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .sm\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .sm\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .sm\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .sm\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .sm\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .sm\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .sm\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .sm\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .sm\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .sm\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .sm\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .sm\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .sm\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .sm\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .sm\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .sm\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .sm\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .sm\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .sm\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .sm\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .sm\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .sm\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .sm\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .sm\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .sm\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .sm\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .sm\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .sm\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .sm\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .sm\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .sm\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .sm\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .sm\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .sm\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .sm\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .sm\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .sm\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .sm\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .sm\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .sm\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .sm\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .sm\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .sm\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .sm\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .sm\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .sm\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .sm\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .sm\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .sm\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .sm\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .sm\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .sm\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .sm\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .sm\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .sm\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .sm\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .sm\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .sm\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .sm\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .sm\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .sm\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .sm\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .sm\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .sm\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .sm\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .sm\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .sm\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .sm\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .sm\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .sm\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .sm\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .sm\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .sm\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .sm\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .sm\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .sm\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .sm\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .sm\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .sm\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .sm\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .sm\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .sm\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .sm\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .sm\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .sm\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .sm\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .sm\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .sm\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .sm\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .sm\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .sm\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .sm\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .sm\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .sm\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .sm\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .sm\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .sm\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .sm\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .sm\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .sm\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .sm\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .sm\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .sm\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .sm\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .sm\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .sm\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .sm\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .sm\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .sm\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .sm\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .sm\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .sm\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .sm\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .sm\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .sm\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .sm\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .sm\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .sm\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .sm\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .sm\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .sm\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .sm\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .sm\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .sm\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .sm\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .sm\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .sm\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .sm\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .sm\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .sm\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .sm\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .sm\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .sm\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .sm\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .sm\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .sm\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .sm\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .sm\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .sm\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .sm\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .sm\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .sm\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .sm\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .sm\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .sm\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .sm\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .sm\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .sm\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .sm\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .sm\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .sm\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .sm\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .sm\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .sm\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .sm\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .sm\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .sm\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .sm\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .sm\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .sm\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .sm\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .sm\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .sm\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .sm\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .sm\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .sm\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .sm\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .sm\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .sm\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .sm\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .sm\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .sm\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .sm\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - - .sm\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + + .sm\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .sm\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .sm\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .sm\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .sm\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .sm\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .sm\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .sm\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .sm\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .sm\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .sm\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .sm\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .sm\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .sm\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .sm\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .sm\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .sm\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .sm\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .sm\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .sm\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .sm\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .sm\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .sm\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .sm\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .sm\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .sm\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .sm\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .sm\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .sm\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .sm\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .sm\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .sm\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .sm\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .sm\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .sm\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .sm\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .sm\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .sm\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .sm\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .sm\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .sm\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .sm\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .sm\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .sm\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .sm\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .sm\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .sm\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .sm\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .sm\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .sm\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .sm\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .sm\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .sm\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .sm\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .sm\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .sm\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .sm\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .sm\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .sm\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .sm\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .sm\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .sm\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .sm\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .sm\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .sm\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .sm\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .sm\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .sm\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .sm\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .sm\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .sm\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .sm\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .sm\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .sm\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .sm\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .sm\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .sm\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .sm\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .sm\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .sm\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .sm\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .sm\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .sm\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .sm\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .sm\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .sm\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .sm\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .sm\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .sm\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .sm\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .sm\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .sm\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .sm\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .sm\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .sm\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .sm\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .sm\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .sm\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .sm\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .sm\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .sm\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .sm\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .sm\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .sm\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .sm\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .sm\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .sm\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .sm\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .sm\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .sm\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .sm\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .sm\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .sm\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .sm\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .sm\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .sm\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .sm\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .sm\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .sm\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .sm\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .sm\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .sm\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .sm\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .sm\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .sm\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .sm\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .sm\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .sm\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .sm\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .sm\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .sm\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .sm\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .sm\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .sm\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .sm\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .sm\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .sm\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .sm\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .sm\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .sm\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .sm\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .sm\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .sm\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .sm\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .sm\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .sm\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .sm\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .sm\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .sm\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .sm\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .sm\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .sm\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .sm\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .sm\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .sm\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .sm\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .sm\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .sm\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .sm\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .sm\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .sm\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .sm\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .sm\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .sm\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .sm\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .sm\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .sm\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .sm\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .sm\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .sm\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .sm\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .sm\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .sm\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .sm\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .sm\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .sm\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .sm\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .sm\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .sm\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .sm\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .sm\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .sm\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .sm\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .sm\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .sm\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .sm\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .sm\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .sm\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .sm\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .sm\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .sm\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .sm\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .sm\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .sm\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .sm\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .sm\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .sm\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .sm\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .sm\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .sm\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .sm\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .sm\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .sm\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .sm\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .sm\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .sm\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .sm\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .sm\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .sm\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .sm\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .sm\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .sm\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .sm\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .sm\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .sm\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .sm\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .sm\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .sm\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .sm\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .sm\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .sm\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .sm\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .sm\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .sm\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .sm\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .sm\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .sm\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .sm\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .sm\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .sm\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .sm\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .sm\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .sm\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .sm\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .sm\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .sm\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .sm\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .sm\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .sm\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .sm\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .sm\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .sm\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .sm\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .sm\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .sm\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .sm\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .sm\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .sm\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .sm\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .sm\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .sm\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .sm\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .sm\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .sm\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .sm\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .sm\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .sm\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .sm\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .sm\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .sm\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .sm\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .sm\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .sm\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .sm\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .sm\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .sm\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .sm\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .sm\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .sm\:filter-none { + filter: none; } - .sm\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .sm\:blur-0 { + --tw-blur: blur(0); } - .sm\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .sm\:blur-sm { + --tw-blur: blur(4px); } - .sm\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .sm\:blur { + --tw-blur: blur(8px); } - .sm\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .sm\:blur-md { + --tw-blur: blur(12px); } - .sm\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .sm\:blur-lg { + --tw-blur: blur(16px); } - .sm\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .sm\:blur-xl { + --tw-blur: blur(24px); } - .sm\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .sm\:blur-2xl { + --tw-blur: blur(40px); } - .sm\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .sm\:blur-3xl { + --tw-blur: blur(64px); } - .sm\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .sm\:brightness-0 { + --tw-brightness: brightness(0); } - .sm\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .sm\:brightness-50 { + --tw-brightness: brightness(.5); } - .sm\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .sm\:brightness-75 { + --tw-brightness: brightness(.75); } - .sm\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .sm\:brightness-90 { + --tw-brightness: brightness(.9); } - .sm\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .sm\:brightness-95 { + --tw-brightness: brightness(.95); } - .sm\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .sm\:brightness-100 { + --tw-brightness: brightness(1); } - .sm\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .sm\:brightness-105 { + --tw-brightness: brightness(1.05); } - .sm\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .sm\:brightness-110 { + --tw-brightness: brightness(1.1); } - .sm\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .sm\:brightness-125 { + --tw-brightness: brightness(1.25); } - .sm\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .sm\:brightness-150 { + --tw-brightness: brightness(1.5); } - .sm\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .sm\:brightness-200 { + --tw-brightness: brightness(2); } - .sm\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .sm\:contrast-0 { + --tw-contrast: contrast(0); } - .sm\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .sm\:contrast-50 { + --tw-contrast: contrast(.5); } - .sm\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .sm\:contrast-75 { + --tw-contrast: contrast(.75); } - .sm\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .sm\:contrast-100 { + --tw-contrast: contrast(1); } - .sm\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .sm\:contrast-125 { + --tw-contrast: contrast(1.25); } - .sm\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .sm\:contrast-150 { + --tw-contrast: contrast(1.5); } - .sm\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .sm\:contrast-200 { + --tw-contrast: contrast(2); } - .sm\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .sm\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .sm\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .sm\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .sm\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .sm\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .sm\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .sm\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .sm\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .sm\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .sm\:skew-x-0 { - --tw-skew-x: 0deg; + .sm\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .sm\:skew-x-1 { - --tw-skew-x: 1deg; + .sm\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .sm\:skew-x-2 { - --tw-skew-x: 2deg; + .sm\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .sm\:skew-x-3 { - --tw-skew-x: 3deg; + .sm\:grayscale { + --tw-grayscale: grayscale(100%); } - .sm\:skew-x-6 { - --tw-skew-x: 6deg; + .sm\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .sm\:skew-x-12 { - --tw-skew-x: 12deg; + .sm\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .sm\:-skew-x-12 { - --tw-skew-x: -12deg; + .sm\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .sm\:-skew-x-6 { - --tw-skew-x: -6deg; + .sm\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .sm\:-skew-x-3 { - --tw-skew-x: -3deg; + .sm\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .sm\:-skew-x-2 { - --tw-skew-x: -2deg; + .sm\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .sm\:-skew-x-1 { - --tw-skew-x: -1deg; + .sm\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .sm\:skew-y-0 { - --tw-skew-y: 0deg; + .sm\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .sm\:skew-y-1 { - --tw-skew-y: 1deg; + .sm\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .sm\:skew-y-2 { - --tw-skew-y: 2deg; + .sm\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .sm\:skew-y-3 { - --tw-skew-y: 3deg; + .sm\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .sm\:skew-y-6 { - --tw-skew-y: 6deg; + .sm\:invert-0 { + --tw-invert: invert(0); } - .sm\:skew-y-12 { - --tw-skew-y: 12deg; + .sm\:invert { + --tw-invert: invert(100%); } - .sm\:-skew-y-12 { - --tw-skew-y: -12deg; + .sm\:saturate-0 { + --tw-saturate: saturate(0); } - .sm\:-skew-y-6 { - --tw-skew-y: -6deg; + .sm\:saturate-50 { + --tw-saturate: saturate(.5); } - .sm\:-skew-y-3 { - --tw-skew-y: -3deg; + .sm\:saturate-100 { + --tw-saturate: saturate(1); } - .sm\:-skew-y-2 { - --tw-skew-y: -2deg; + .sm\:saturate-150 { + --tw-saturate: saturate(1.5); } - .sm\:-skew-y-1 { - --tw-skew-y: -1deg; + .sm\:saturate-200 { + --tw-saturate: saturate(2); } - .sm\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .sm\:sepia-0 { + --tw-sepia: sepia(0); } - .sm\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .sm\:sepia { + --tw-sepia: sepia(100%); } - .sm\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .sm\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .sm\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .sm\:backdrop-filter-none { + backdrop-filter: none; } - .sm\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .sm\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .sm\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .sm\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .sm\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .sm\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .sm\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .sm\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .sm\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .sm\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .sm\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .sm\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .sm\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .sm\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .sm\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .sm\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .sm\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .sm\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .sm\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .sm\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .sm\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .sm\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .sm\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .sm\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .sm\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .sm\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .sm\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .sm\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .sm\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + .sm\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .sm\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + .sm\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .sm\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + .sm\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .sm\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + .sm\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .sm\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + .sm\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .sm\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .sm\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .sm\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .sm\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .sm\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .sm\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .sm\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .sm\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .sm\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .sm\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .sm\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .sm\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .sm\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .sm\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .sm\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .sm\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .sm\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .sm\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .sm\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .sm\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .sm\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .sm\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .sm\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .sm\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .sm\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .sm\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .sm\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .sm\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .sm\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .sm\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .sm\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .sm\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .sm\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .sm\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .sm\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .sm\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .sm\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .sm\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .sm\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .sm\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .sm\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .sm\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } .sm\:transition-none { @@ -58271,6 +58833,70 @@ video { transition-duration: 150ms; } + .sm\:delay-75 { + transition-delay: 75ms; + } + + .sm\:delay-100 { + transition-delay: 100ms; + } + + .sm\:delay-150 { + transition-delay: 150ms; + } + + .sm\:delay-200 { + transition-delay: 200ms; + } + + .sm\:delay-300 { + transition-delay: 300ms; + } + + .sm\:delay-500 { + transition-delay: 500ms; + } + + .sm\:delay-700 { + transition-delay: 700ms; + } + + .sm\:delay-1000 { + transition-delay: 1000ms; + } + + .sm\:duration-75 { + transition-duration: 75ms; + } + + .sm\:duration-100 { + transition-duration: 100ms; + } + + .sm\:duration-150 { + transition-duration: 150ms; + } + + .sm\:duration-200 { + transition-duration: 200ms; + } + + .sm\:duration-300 { + transition-duration: 300ms; + } + + .sm\:duration-500 { + transition-duration: 500ms; + } + + .sm\:duration-700 { + transition-duration: 700ms; + } + + .sm\:duration-1000 { + transition-duration: 1000ms; + } + .sm\:ease-linear { transition-timing-function: linear; } @@ -58287,22319 +58913,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .sm\:duration-75 { - transition-duration: 75ms; + .sm\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 768px) { + .md\:container { + width: 100%; + } + + @media (min-width: 640px) { + .md\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .md\:container { + max-width: 768px; + } } - .sm\:duration-100 { - transition-duration: 100ms; + @media (min-width: 1024px) { + .md\:container { + max-width: 1024px; + } } - .sm\:duration-150 { - transition-duration: 150ms; + @media (min-width: 1280px) { + .md\:container { + max-width: 1280px; + } } - .sm\:duration-200 { - transition-duration: 200ms; + @media (min-width: 1536px) { + .md\:container { + max-width: 1536px; + } } - .sm\:duration-300 { - transition-duration: 300ms; + .md\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\:duration-500 { - transition-duration: 500ms; + .md\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .sm\:duration-700 { - transition-duration: 700ms; + .md\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\:duration-1000 { - transition-duration: 1000ms; + .md\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .sm\:delay-75 { - transition-delay: 75ms; + .md\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\:delay-100 { - transition-delay: 100ms; + .md\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .sm\:delay-150 { - transition-delay: 150ms; + .md\:pointer-events-none { + pointer-events: none; } - .sm\:delay-200 { - transition-delay: 200ms; + .md\:pointer-events-auto { + pointer-events: auto; } - .sm\:delay-300 { - transition-delay: 300ms; + .md\:visible { + visibility: visible; } - .sm\:delay-500 { - transition-delay: 500ms; + .md\:invisible { + visibility: hidden; } - .sm\:delay-700 { - transition-delay: 700ms; + .md\:static { + position: static; } - .sm\:delay-1000 { - transition-delay: 1000ms; + .md\:fixed { + position: fixed; } - .sm\:animate-none { - animation: none; + .md\:absolute { + position: absolute; } - .sm\:animate-spin { - animation: spin 1s linear infinite; + .md\:relative { + position: relative; } - .sm\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .md\:sticky { + position: sticky; } - .sm\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .md\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .sm\:animate-bounce { - animation: bounce 1s infinite; + .md\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .sm\:mix-blend-normal { - mix-blend-mode: normal; + .md\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .sm\:mix-blend-multiply { - mix-blend-mode: multiply; + .md\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .sm\:mix-blend-screen { - mix-blend-mode: screen; + .md\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .sm\:mix-blend-overlay { - mix-blend-mode: overlay; + .md\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .sm\:mix-blend-darken { - mix-blend-mode: darken; + .md\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .sm\:mix-blend-lighten { - mix-blend-mode: lighten; + .md\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .sm\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .md\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .sm\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .md\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .sm\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .md\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .sm\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .md\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .sm\:mix-blend-difference { - mix-blend-mode: difference; + .md\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .sm\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .md\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .sm\:mix-blend-hue { - mix-blend-mode: hue; + .md\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .sm\:mix-blend-saturation { - mix-blend-mode: saturation; + .md\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .sm\:mix-blend-color { - mix-blend-mode: color; + .md\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .sm\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .md\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .sm\:bg-blend-normal { - background-blend-mode: normal; + .md\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .sm\:bg-blend-multiply { - background-blend-mode: multiply; + .md\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .sm\:bg-blend-screen { - background-blend-mode: screen; + .md\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .sm\:bg-blend-overlay { - background-blend-mode: overlay; + .md\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .sm\:bg-blend-darken { - background-blend-mode: darken; + .md\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .sm\:bg-blend-lighten { - background-blend-mode: lighten; + .md\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .sm\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .md\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .sm\:bg-blend-color-burn { - background-blend-mode: color-burn; + .md\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .sm\:bg-blend-hard-light { - background-blend-mode: hard-light; + .md\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .sm\:bg-blend-soft-light { - background-blend-mode: soft-light; + .md\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .sm\:bg-blend-difference { - background-blend-mode: difference; + .md\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .sm\:bg-blend-exclusion { - background-blend-mode: exclusion; + .md\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .sm\:bg-blend-hue { - background-blend-mode: hue; + .md\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .sm\:bg-blend-saturation { - background-blend-mode: saturation; + .md\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .sm\:bg-blend-color { - background-blend-mode: color; + .md\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .sm\:bg-blend-luminosity { - background-blend-mode: luminosity; + .md\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .sm\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .md\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .sm\:filter-none { - filter: none; + .md\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .sm\:blur-0 { - --tw-blur: blur(0); + .md\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .sm\:blur-sm { - --tw-blur: blur(4px); + .md\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .sm\:blur { - --tw-blur: blur(8px); + .md\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .sm\:blur-md { - --tw-blur: blur(12px); + .md\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .sm\:blur-lg { - --tw-blur: blur(16px); + .md\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .sm\:blur-xl { - --tw-blur: blur(24px); + .md\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .sm\:blur-2xl { - --tw-blur: blur(40px); + .md\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .sm\:blur-3xl { - --tw-blur: blur(64px); + .md\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .sm\:brightness-0 { - --tw-brightness: brightness(0); + .md\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .sm\:brightness-50 { - --tw-brightness: brightness(.5); + .md\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .sm\:brightness-75 { - --tw-brightness: brightness(.75); + .md\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .sm\:brightness-90 { - --tw-brightness: brightness(.9); + .md\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .sm\:brightness-95 { - --tw-brightness: brightness(.95); + .md\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .sm\:brightness-100 { - --tw-brightness: brightness(1); + .md\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .sm\:brightness-105 { - --tw-brightness: brightness(1.05); + .md\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .sm\:brightness-110 { - --tw-brightness: brightness(1.1); + .md\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .sm\:brightness-125 { - --tw-brightness: brightness(1.25); + .md\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .sm\:brightness-150 { - --tw-brightness: brightness(1.5); + .md\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .sm\:brightness-200 { - --tw-brightness: brightness(2); + .md\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .sm\:contrast-0 { - --tw-contrast: contrast(0); + .md\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .sm\:contrast-50 { - --tw-contrast: contrast(.5); + .md\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .sm\:contrast-75 { - --tw-contrast: contrast(.75); + .md\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .sm\:contrast-100 { - --tw-contrast: contrast(1); + .md\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .sm\:contrast-125 { - --tw-contrast: contrast(1.25); + .md\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .sm\:contrast-150 { - --tw-contrast: contrast(1.5); + .md\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .sm\:contrast-200 { - --tw-contrast: contrast(2); + .md\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .sm\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .md\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .sm\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .md\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .sm\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .md\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .sm\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .md\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .sm\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .md\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .sm\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .md\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .sm\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .md\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .sm\:grayscale-0 { - --tw-grayscale: grayscale(0); + .md\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .sm\:grayscale { - --tw-grayscale: grayscale(100%); + .md\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .sm\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .md\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .sm\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .md\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .sm\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .md\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .sm\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .md\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .sm\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .md\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .sm\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .md\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .sm\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .md\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .sm\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .md\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .sm\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .md\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .sm\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .md\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .sm\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .md\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .sm\:invert-0 { - --tw-invert: invert(0); + .md\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .sm\:invert { - --tw-invert: invert(100%); + .md\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .sm\:saturate-0 { - --tw-saturate: saturate(0); + .md\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .sm\:saturate-50 { - --tw-saturate: saturate(.5); + .md\:inset-y-0 { + top: 0px; + bottom: 0px; } - .sm\:saturate-100 { - --tw-saturate: saturate(1); + .md\:inset-x-0 { + right: 0px; + left: 0px; } - .sm\:saturate-150 { - --tw-saturate: saturate(1.5); + .md\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .sm\:saturate-200 { - --tw-saturate: saturate(2); + .md\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .sm\:sepia-0 { - --tw-sepia: sepia(0); + .md\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .sm\:sepia { - --tw-sepia: sepia(100%); + .md\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .sm\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .md\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .sm\:backdrop-filter-none { - backdrop-filter: none; + .md\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .sm\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .md\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .sm\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .md\:inset-x-4 { + right: 1rem; + left: 1rem; } - .sm\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .md\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .sm\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .md\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .sm\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .md\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .sm\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .md\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .sm\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .md\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .sm\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .md\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .sm\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .md\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .sm\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .md\:inset-x-8 { + right: 2rem; + left: 2rem; } - .sm\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .md\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .sm\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .md\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .sm\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .md\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .sm\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .md\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .sm\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .md\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .sm\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .md\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .sm\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .md\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .sm\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .md\:inset-x-12 { + right: 3rem; + left: 3rem; } - .sm\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .md\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .sm\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .md\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .sm\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .md\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .sm\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .md\:inset-x-16 { + right: 4rem; + left: 4rem; } - .sm\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .md\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .sm\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .md\:inset-x-20 { + right: 5rem; + left: 5rem; } - .sm\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .md\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .sm\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .md\:inset-x-24 { + right: 6rem; + left: 6rem; } - .sm\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .md\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .sm\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .md\:inset-x-28 { + right: 7rem; + left: 7rem; } - .sm\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .md\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .sm\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .md\:inset-x-32 { + right: 8rem; + left: 8rem; } - .sm\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .md\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .sm\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .md\:inset-x-36 { + right: 9rem; + left: 9rem; } - .sm\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .md\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .sm\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .md\:inset-x-40 { + right: 10rem; + left: 10rem; } - .sm\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .md\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .sm\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .md\:inset-x-44 { + right: 11rem; + left: 11rem; } - .sm\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .md\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .sm\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .md\:inset-x-48 { + right: 12rem; + left: 12rem; } - .sm\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .md\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .sm\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .md\:inset-x-52 { + right: 13rem; + left: 13rem; } - .sm\:example { - font-weight: 700; - color: #ef4444; + .md\:inset-y-56 { + top: 14rem; + bottom: 14rem; } -} -@media (min-width: 768px) { - .md\:container { - width: 100%; + .md\:inset-x-56 { + right: 14rem; + left: 14rem; } - @media (min-width: 640px) { - .md\:container { - max-width: 640px; - } + .md\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - @media (min-width: 768px) { - .md\:container { - max-width: 768px; - } + .md\:inset-x-60 { + right: 15rem; + left: 15rem; } - @media (min-width: 1024px) { - .md\:container { - max-width: 1024px; - } + .md\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - @media (min-width: 1280px) { - .md\:container { - max-width: 1280px; - } + .md\:inset-x-64 { + right: 16rem; + left: 16rem; } - @media (min-width: 1536px) { - .md\:container { - max-width: 1536px; - } + .md\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .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\:inset-x-72 { + right: 18rem; + left: 18rem; } - .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\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .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\:inset-x-80 { + right: 20rem; + left: 20rem; } - .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\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .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\:inset-x-96 { + right: 24rem; + left: 24rem; } - .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\:inset-y-auto { + top: auto; + bottom: auto; } - .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\:inset-x-auto { + right: auto; + left: auto; } - .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\:inset-y-px { + top: 1px; + bottom: 1px; } - .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\:inset-x-px { + right: 1px; + left: 1px; } - .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\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .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\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .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\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .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\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .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\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .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\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .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\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .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\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .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\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .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\:-inset-x-0 { + right: 0px; + left: 0px; } - .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\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .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\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .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\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .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\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .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\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .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\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .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\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .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\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .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\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .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\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } - .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\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - .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\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - .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\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - .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\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - .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\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - .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\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .md\:right-6 { + right: 1.5rem; } - .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .md\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .md\:right-9 { + right: 2.25rem; } - .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .md\:bottom-9 { + bottom: 2.25rem; } - .md\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .md\:left-9 { + left: 2.25rem; } - .md\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .md\:top-10 { + top: 2.5rem; } - .md\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + .md\:right-10 { + right: 2.5rem; } - .md\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + .md\:bottom-10 { + bottom: 2.5rem; } - .md\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + .md\:left-10 { + left: 2.5rem; } - .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + .md\:top-11 { + top: 2.75rem; } - .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + .md\:right-11 { + right: 2.75rem; } - .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + .md\:bottom-11 { + bottom: 2.75rem; } - .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + .md\:left-11 { + left: 2.75rem; } - .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + .md\:top-12 { + top: 3rem; } - .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + .md\:right-12 { + right: 3rem; } - .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + .md\:bottom-12 { + bottom: 3rem; } - .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + .md\:left-12 { + left: 3rem; } - .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + .md\:top-14 { + top: 3.5rem; } - .md\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); + .md\:right-14 { + right: 3.5rem; } - .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); + .md\:bottom-14 { + bottom: 3.5rem; } - .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); + .md\:left-14 { + left: 3.5rem; } - .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); + .md\:top-16 { + top: 4rem; } - .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); + .md\:right-16 { + right: 4rem; } - .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); + .md\:bottom-16 { + bottom: 4rem; } - .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); + .md\:left-16 { + left: 4rem; } - .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); + .md\:top-20 { + top: 5rem; } - .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); + .md\:right-20 { + right: 5rem; } - .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); + .md\:bottom-20 { + bottom: 5rem; } - .md\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); + .md\:left-20 { + left: 5rem; } - .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); + .md\:top-24 { + top: 6rem; } - .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); + .md\:right-24 { + right: 6rem; } - .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); + .md\:bottom-24 { + bottom: 6rem; } - .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); + .md\:left-24 { + left: 6rem; } - .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + .md\:top-28 { + top: 7rem; } - .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); + .md\:right-28 { + right: 7rem; } - .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); + .md\:bottom-28 { + bottom: 7rem; } - .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); + .md\:left-28 { + left: 7rem; } - .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); + .md\:top-32 { + top: 8rem; } - .md\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); + .md\:right-32 { + right: 8rem; } - .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); + .md\:bottom-32 { + bottom: 8rem; } - .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); + .md\:left-32 { + left: 8rem; } - .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); + .md\:top-36 { + top: 9rem; } - .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); + .md\:right-36 { + right: 9rem; } - .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); + .md\:bottom-36 { + bottom: 9rem; } - .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); + .md\:left-36 { + left: 9rem; } - .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); + .md\:top-40 { + top: 10rem; } - .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); + .md\:right-40 { + right: 10rem; } - .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); + .md\:bottom-40 { + bottom: 10rem; } - .md\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); + .md\:left-40 { + left: 10rem; } - .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); + .md\:top-44 { + top: 11rem; } - .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); + .md\:right-44 { + right: 11rem; } - .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); + .md\:bottom-44 { + bottom: 11rem; } - .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); + .md\:left-44 { + left: 11rem; } - .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + .md\:top-48 { + top: 12rem; } - .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); + .md\:right-48 { + right: 12rem; } - .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); + .md\:bottom-48 { + bottom: 12rem; } - .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); + .md\:left-48 { + left: 12rem; } - .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); + .md\:top-52 { + top: 13rem; } - .md\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); + .md\:right-52 { + right: 13rem; } - .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); + .md\:bottom-52 { + bottom: 13rem; } - .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); + .md\:left-52 { + left: 13rem; } - .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); + .md\:top-56 { + top: 14rem; } - .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); + .md\:right-56 { + right: 14rem; } - .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); + .md\:bottom-56 { + bottom: 14rem; } - .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); + .md\:left-56 { + left: 14rem; } - .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); + .md\:top-60 { + top: 15rem; } - .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); + .md\:right-60 { + right: 15rem; } - .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); + .md\:bottom-60 { + bottom: 15rem; } - .md\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); + .md\:left-60 { + left: 15rem; } - .md\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); + .md\:top-64 { + top: 16rem; } - .md\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); + .md\:right-64 { + right: 16rem; } - .md\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); + .md\:bottom-64 { + bottom: 16rem; } - .md\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); + .md\:left-64 { + left: 16rem; } - .md\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); + .md\:top-72 { + top: 18rem; } - .md\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); + .md\:right-72 { + right: 18rem; } - .md\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); + .md\:bottom-72 { + bottom: 18rem; } - .md\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); + .md\:left-72 { + left: 18rem; } - .md\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); + .md\:top-80 { + top: 20rem; } - .md\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); + .md\:right-80 { + right: 20rem; } - .md\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); + .md\:bottom-80 { + bottom: 20rem; } - .md\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); + .md\:left-80 { + left: 20rem; } - .md\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); + .md\:top-96 { + top: 24rem; } - .md\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); + .md\:right-96 { + right: 24rem; } - .md\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); + .md\:bottom-96 { + bottom: 24rem; } - .md\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); + .md\:left-96 { + left: 24rem; } - .md\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); + .md\:top-auto { + top: auto; } - .md\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); + .md\:right-auto { + right: auto; } - .md\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); + .md\:bottom-auto { + bottom: auto; } - .md\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .md\:left-auto { + left: auto; } - .md\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .md\:top-px { + top: 1px; } - .md\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .md\:right-px { + right: 1px; } - .md\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .md\:bottom-px { + bottom: 1px; } - .md\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .md\:left-px { + left: 1px; } - .md\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; + .md\:top-0\.5 { + top: 0.125rem; } - .md\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; + .md\:right-0\.5 { + right: 0.125rem; } - .md\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; + .md\:bottom-0\.5 { + bottom: 0.125rem; } - .md\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; + .md\:left-0\.5 { + left: 0.125rem; } - .md\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; + .md\:top-1\.5 { + top: 0.375rem; } - .md\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; + .md\:right-1\.5 { + right: 0.375rem; } - .md\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; + .md\:bottom-1\.5 { + bottom: 0.375rem; } - .md\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; + .md\:left-1\.5 { + left: 0.375rem; } - .md\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; + .md\:top-2\.5 { + top: 0.625rem; } - .md\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; + .md\:right-2\.5 { + right: 0.625rem; } - .md\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; + .md\:bottom-2\.5 { + bottom: 0.625rem; } - .md\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; + .md\:left-2\.5 { + left: 0.625rem; } - .md\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; + .md\:top-3\.5 { + top: 0.875rem; } - .md\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; + .md\:right-3\.5 { + right: 0.875rem; } - .md\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; + .md\:bottom-3\.5 { + bottom: 0.875rem; } - .md\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .md\:left-3\.5 { + left: 0.875rem; } - .md\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .md\:-top-0 { + top: 0px; } - .md\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .md\:-right-0 { + right: 0px; } - .md\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .md\:-bottom-0 { + bottom: 0px; } - .md\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .md\:-left-0 { + left: 0px; } - .md\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .md\:-top-1 { + top: -0.25rem; } - .md\:appearance-none { - appearance: none; + .md\:-right-1 { + right: -0.25rem; } - .md\:bg-fixed { - background-attachment: fixed; + .md\:-bottom-1 { + bottom: -0.25rem; } - .md\:bg-local { - background-attachment: local; + .md\:-left-1 { + left: -0.25rem; } - .md\:bg-scroll { - background-attachment: scroll; + .md\:-top-2 { + top: -0.5rem; } - .md\:bg-clip-border { - background-clip: border-box; + .md\:-right-2 { + right: -0.5rem; } - .md\:bg-clip-padding { - background-clip: padding-box; + .md\:-bottom-2 { + bottom: -0.5rem; } - .md\:bg-clip-content { - background-clip: content-box; + .md\:-left-2 { + left: -0.5rem; } - .md\:bg-clip-text { - background-clip: text; + .md\:-top-3 { + top: -0.75rem; } - .md\:bg-transparent { - background-color: transparent; + .md\:-right-3 { + right: -0.75rem; } - .md\:bg-current { - background-color: currentColor; + .md\:-bottom-3 { + bottom: -0.75rem; } - .md\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .md\:-left-3 { + left: -0.75rem; } - .md\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .md\:-top-4 { + top: -1rem; } - .md\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .md\:-right-4 { + right: -1rem; } - .md\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .md\:-bottom-4 { + bottom: -1rem; } - .md\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .md\:-left-4 { + left: -1rem; } - .md\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .md\:-top-5 { + top: -1.25rem; } - .md\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .md\:-right-5 { + right: -1.25rem; } - .md\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .md\:-bottom-5 { + bottom: -1.25rem; } - .md\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .md\:-left-5 { + left: -1.25rem; } - .md\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .md\:-top-6 { + top: -1.5rem; } - .md\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .md\:-right-6 { + right: -1.5rem; } - .md\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .md\:-bottom-6 { + bottom: -1.5rem; } - .md\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .md\:-left-6 { + left: -1.5rem; } - .md\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .md\:-top-7 { + top: -1.75rem; } - .md\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .md\:-right-7 { + right: -1.75rem; } - .md\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .md\:-bottom-7 { + bottom: -1.75rem; } - .md\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .md\:-left-7 { + left: -1.75rem; } - .md\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .md\:-top-8 { + top: -2rem; } - .md\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .md\:-right-8 { + right: -2rem; } - .md\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .md\:-bottom-8 { + bottom: -2rem; } - .md\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .md\:-left-8 { + left: -2rem; } - .md\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .md\:-top-9 { + top: -2.25rem; } - .md\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .md\:-right-9 { + right: -2.25rem; } - .md\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .md\:-bottom-9 { + bottom: -2.25rem; } - .md\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .md\:-left-9 { + left: -2.25rem; } - .md\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .md\:-top-10 { + top: -2.5rem; } - .md\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .md\:-right-10 { + right: -2.5rem; } - .md\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .md\:-bottom-10 { + bottom: -2.5rem; } - .md\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .md\:-left-10 { + left: -2.5rem; } - .md\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .md\:-top-11 { + top: -2.75rem; } - .md\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .md\:-right-11 { + right: -2.75rem; } - .md\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .md\:-bottom-11 { + bottom: -2.75rem; } - .md\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .md\:-left-11 { + left: -2.75rem; } - .md\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .md\:-top-12 { + top: -3rem; } - .md\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .md\:-right-12 { + right: -3rem; } - .md\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .md\:-bottom-12 { + bottom: -3rem; } - .md\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .md\:-left-12 { + left: -3rem; } - .md\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .md\:-top-14 { + top: -3.5rem; } - .md\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .md\:-right-14 { + right: -3.5rem; } - .md\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .md\:-bottom-14 { + bottom: -3.5rem; } - .md\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .md\:-left-14 { + left: -3.5rem; } - .md\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .md\:-top-16 { + top: -4rem; } - .md\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .md\:-right-16 { + right: -4rem; } - .md\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .md\:-bottom-16 { + bottom: -4rem; } - .md\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .md\:-left-16 { + left: -4rem; } - .md\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .md\:-top-20 { + top: -5rem; } - .md\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .md\:-right-20 { + right: -5rem; } - .md\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .md\:-bottom-20 { + bottom: -5rem; } - .md\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .md\:-left-20 { + left: -5rem; } - .md\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .md\:-top-24 { + top: -6rem; } - .md\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .md\:-right-24 { + right: -6rem; } - .md\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .md\:-bottom-24 { + bottom: -6rem; } - .md\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .md\:-left-24 { + left: -6rem; } - .md\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .md\:-top-28 { + top: -7rem; } - .md\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .md\:-right-28 { + right: -7rem; } - .md\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .md\:-bottom-28 { + bottom: -7rem; } - .md\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .md\:-left-28 { + left: -7rem; } - .md\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .md\:-top-32 { + top: -8rem; } - .md\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .md\:-right-32 { + right: -8rem; } - .md\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .md\:-bottom-32 { + bottom: -8rem; } - .md\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .md\:-left-32 { + left: -8rem; } - .md\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .md\:-top-36 { + top: -9rem; } - .md\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .md\:-right-36 { + right: -9rem; } - .md\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .md\:-bottom-36 { + bottom: -9rem; } - .md\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .md\:-left-36 { + left: -9rem; } - .md\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .md\:-top-40 { + top: -10rem; } - .md\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .md\:-right-40 { + right: -10rem; } - .md\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .md\:-bottom-40 { + bottom: -10rem; } - .md\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .md\:-left-40 { + left: -10rem; } - .md\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .md\:-top-44 { + top: -11rem; } - .md\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .md\:-right-44 { + right: -11rem; } - .md\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .md\:-bottom-44 { + bottom: -11rem; } - .md\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .md\:-left-44 { + left: -11rem; } - .md\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .md\:-top-48 { + top: -12rem; } - .md\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .md\:-right-48 { + right: -12rem; } - .md\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .md\:-bottom-48 { + bottom: -12rem; } - .md\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .md\:-left-48 { + left: -12rem; } - .md\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .md\:-top-52 { + top: -13rem; } - .md\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .md\:-right-52 { + right: -13rem; } - .md\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .md\:-bottom-52 { + bottom: -13rem; + } + + .md\:-left-52 { + left: -13rem; } - .md\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .md\:-top-56 { + top: -14rem; } - .md\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .md\:-right-56 { + right: -14rem; } - .group:hover .md\:group-hover\:bg-transparent { - background-color: transparent; + .md\:-bottom-56 { + bottom: -14rem; } - .group:hover .md\:group-hover\:bg-current { - background-color: currentColor; + .md\:-left-56 { + left: -14rem; } - .group:hover .md\:group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .md\:-top-60 { + top: -15rem; } - .group:hover .md\:group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .md\:-right-60 { + right: -15rem; } - .group:hover .md\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .md\:-bottom-60 { + bottom: -15rem; } - .group:hover .md\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .md\:-left-60 { + left: -15rem; } - .group:hover .md\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .md\:-top-64 { + top: -16rem; } - .group:hover .md\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .md\:-right-64 { + right: -16rem; } - .group:hover .md\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .md\:-bottom-64 { + bottom: -16rem; } - .group:hover .md\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .md\:-left-64 { + left: -16rem; } - .group:hover .md\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .md\:-top-72 { + top: -18rem; } - .group:hover .md\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .md\:-right-72 { + right: -18rem; } - .group:hover .md\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .md\:-bottom-72 { + bottom: -18rem; } - .group:hover .md\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .md\:-left-72 { + left: -18rem; } - .group:hover .md\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .md\:-top-80 { + top: -20rem; } - .group:hover .md\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .md\:-right-80 { + right: -20rem; } - .group:hover .md\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .md\:-bottom-80 { + bottom: -20rem; } - .group:hover .md\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .md\:-left-80 { + left: -20rem; } - .group:hover .md\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .md\:-top-96 { + top: -24rem; } - .group:hover .md\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .md\:-right-96 { + right: -24rem; } - .group:hover .md\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .md\:-bottom-96 { + bottom: -24rem; } - .group:hover .md\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .md\:-left-96 { + left: -24rem; } - .group:hover .md\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .md\:-top-px { + top: -1px; } - .group:hover .md\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .md\:-right-px { + right: -1px; } - .group:hover .md\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .md\:-bottom-px { + bottom: -1px; } - .group:hover .md\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .md\:-left-px { + left: -1px; } - .group:hover .md\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .md\:-top-0\.5 { + top: -0.125rem; } - .group:hover .md\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .md\:-right-0\.5 { + right: -0.125rem; } - .group:hover .md\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .md\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .md\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .md\:-left-0\.5 { + left: -0.125rem; } - .group:hover .md\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .md\:-top-1\.5 { + top: -0.375rem; } - .group:hover .md\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .md\:-right-1\.5 { + right: -0.375rem; } - .group:hover .md\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .md\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .md\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .md\:-left-1\.5 { + left: -0.375rem; } - .group:hover .md\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .md\:-top-2\.5 { + top: -0.625rem; } - .group:hover .md\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .md\:-right-2\.5 { + right: -0.625rem; } - .group:hover .md\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .md\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .md\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .md\:-left-2\.5 { + left: -0.625rem; } - .group:hover .md\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .md\:-top-3\.5 { + top: -0.875rem; } - .group:hover .md\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .md\:-right-3\.5 { + right: -0.875rem; } - .group:hover .md\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .md\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .md\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .md\:-left-3\.5 { + left: -0.875rem; } - .group:hover .md\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .md\:top-1\/2 { + top: 50%; } - .group:hover .md\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .md\:right-1\/2 { + right: 50%; } - .group:hover .md\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .md\:bottom-1\/2 { + bottom: 50%; } - .group:hover .md\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .md\:left-1\/2 { + left: 50%; } - .group:hover .md\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .md\:top-1\/3 { + top: 33.333333%; } - .group:hover .md\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .md\:right-1\/3 { + right: 33.333333%; } - .group:hover .md\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .md\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .md\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .md\:left-1\/3 { + left: 33.333333%; } - .group:hover .md\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .md\:top-2\/3 { + top: 66.666667%; } - .group:hover .md\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .md\:right-2\/3 { + right: 66.666667%; } - .group:hover .md\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .md\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .md\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .md\:left-2\/3 { + left: 66.666667%; } - .group:hover .md\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .md\:top-1\/4 { + top: 25%; } - .group:hover .md\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .md\:right-1\/4 { + right: 25%; } - .group:hover .md\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .md\:bottom-1\/4 { + bottom: 25%; } - .group:hover .md\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .md\:left-1\/4 { + left: 25%; } - .group:hover .md\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .md\:top-2\/4 { + top: 50%; } - .group:hover .md\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .md\:right-2\/4 { + right: 50%; } - .group:hover .md\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .md\:bottom-2\/4 { + bottom: 50%; } - .group:hover .md\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .md\:left-2\/4 { + left: 50%; } - .group:hover .md\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .md\:top-3\/4 { + top: 75%; } - .group:hover .md\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .md\:right-3\/4 { + right: 75%; } - .group:hover .md\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .md\:bottom-3\/4 { + bottom: 75%; } - .group:hover .md\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .md\:left-3\/4 { + left: 75%; } - .group:hover .md\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .md\:top-full { + top: 100%; } - .group:hover .md\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .md\:right-full { + right: 100%; } - .group:hover .md\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .md\:bottom-full { + bottom: 100%; } - .group:hover .md\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .md\:left-full { + left: 100%; } - .group:hover .md\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .md\:-top-1\/2 { + top: -50%; } - .group:hover .md\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .md\:-right-1\/2 { + right: -50%; } - .group:hover .md\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .md\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .md\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .md\:-left-1\/2 { + left: -50%; } - .group:hover .md\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .md\:-top-1\/3 { + top: -33.333333%; } - .group:hover .md\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .md\:-right-1\/3 { + right: -33.333333%; } - .group:hover .md\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .md\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .md\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .md\:-left-1\/3 { + left: -33.333333%; } - .group:hover .md\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .md\:-top-2\/3 { + top: -66.666667%; } - .group:hover .md\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .md\:-right-2\/3 { + right: -66.666667%; } - .group:hover .md\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .md\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .md\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .md\:-left-2\/3 { + left: -66.666667%; } - .group:hover .md\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .md\:-top-1\/4 { + top: -25%; } - .group:hover .md\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .md\:-right-1\/4 { + right: -25%; } - .md\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .md\:-bottom-1\/4 { + bottom: -25%; } - .md\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .md\:-left-1\/4 { + left: -25%; } - .md\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .md\:-top-2\/4 { + top: -50%; } - .md\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .md\:-right-2\/4 { + right: -50%; } - .md\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .md\:-bottom-2\/4 { + bottom: -50%; } - .md\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .md\:-left-2\/4 { + left: -50%; } - .md\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .md\:-top-3\/4 { + top: -75%; } - .md\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .md\:-right-3\/4 { + right: -75%; } - .md\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .md\:-bottom-3\/4 { + bottom: -75%; } - .md\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .md\:-left-3\/4 { + left: -75%; } - .md\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .md\:-top-full { + top: -100%; } - .md\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .md\:-right-full { + right: -100%; } - .md\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .md\:-bottom-full { + bottom: -100%; } - .md\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .md\:-left-full { + left: -100%; } - .md\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .md\:isolate { + isolation: isolate; } - .md\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .md\:isolation-auto { + isolation: auto; } - .md\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .md\:z-0 { + z-index: 0; } - .md\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .md\:z-10 { + z-index: 10; } - .md\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .md\:z-20 { + z-index: 20; } - .md\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .md\:z-30 { + z-index: 30; } - .md\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .md\:z-40 { + z-index: 40; } - .md\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .md\:z-50 { + z-index: 50; } - .md\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .md\:z-auto { + z-index: auto; } - .md\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .md\:focus-within\:z-0:focus-within { + z-index: 0; } - .md\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .md\:focus-within\:z-10:focus-within { + z-index: 10; } - .md\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .md\:focus-within\:z-20:focus-within { + z-index: 20; } - .md\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .md\:focus-within\:z-30:focus-within { + z-index: 30; } - .md\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .md\:focus-within\:z-40:focus-within { + z-index: 40; } - .md\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .md\:focus-within\:z-50:focus-within { + z-index: 50; } - .md\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .md\:focus-within\:z-auto:focus-within { + z-index: auto; } - .md\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .md\:focus\:z-0:focus { + z-index: 0; } - .md\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .md\:focus\:z-10:focus { + z-index: 10; } - .md\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .md\:focus\:z-20:focus { + z-index: 20; } - .md\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .md\:focus\:z-30:focus { + z-index: 30; } - .md\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .md\:focus\:z-40:focus { + z-index: 40; } - .md\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .md\:focus\:z-50:focus { + z-index: 50; } - .md\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .md\:focus\:z-auto:focus { + z-index: auto; } - .md\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .md\:order-1 { + order: 1; } - .md\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .md\:order-2 { + order: 2; } - .md\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .md\:order-3 { + order: 3; } - .md\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .md\:order-4 { + order: 4; } - .md\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .md\:order-5 { + order: 5; } - .md\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .md\:order-6 { + order: 6; } - .md\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .md\:order-7 { + order: 7; } - .md\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .md\:order-8 { + order: 8; } - .md\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .md\:order-9 { + order: 9; } - .md\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .md\:order-10 { + order: 10; } - .md\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .md\:order-11 { + order: 11; } - .md\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .md\:order-12 { + order: 12; } - .md\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .md\:order-first { + order: -9999; } - .md\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .md\:order-last { + order: 9999; } - .md\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .md\:order-none { + order: 0; } - .md\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .md\:col-auto { + grid-column: auto; } - .md\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .md\:col-span-1 { + grid-column: span 1 / span 1; } - .md\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .md\:col-span-2 { + grid-column: span 2 / span 2; } - .md\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .md\:col-span-3 { + grid-column: span 3 / span 3; } - .md\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .md\:col-span-4 { + grid-column: span 4 / span 4; } - .md\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .md\:col-span-5 { + grid-column: span 5 / span 5; } - .md\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .md\:col-span-6 { + grid-column: span 6 / span 6; } - .md\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .md\:col-span-7 { + grid-column: span 7 / span 7; } - .md\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .md\:col-span-8 { + grid-column: span 8 / span 8; } - .md\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .md\:col-span-9 { + grid-column: span 9 / span 9; } - .md\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .md\:col-span-10 { + grid-column: span 10 / span 10; } - .md\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .md\:col-span-11 { + grid-column: span 11 / span 11; } - .md\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .md\:col-span-12 { + grid-column: span 12 / span 12; } - .md\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .md\:col-span-full { + grid-column: 1 / -1; } - .md\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .md\:col-start-1 { + grid-column-start: 1; } - .md\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .md\:col-start-2 { + grid-column-start: 2; } - .md\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .md\:col-start-3 { + grid-column-start: 3; } - .md\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .md\:col-start-4 { + grid-column-start: 4; } - .md\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .md\:col-start-5 { + grid-column-start: 5; } - .md\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .md\:col-start-6 { + grid-column-start: 6; } - .md\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .md\:col-start-7 { + grid-column-start: 7; } - .md\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .md\:col-start-8 { + grid-column-start: 8; } - .md\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .md\:col-start-9 { + grid-column-start: 9; } - .md\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .md\:col-start-10 { + grid-column-start: 10; } - .md\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .md\:col-start-11 { + grid-column-start: 11; } - .md\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .md\:col-start-12 { + grid-column-start: 12; } - .md\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .md\:col-start-13 { + grid-column-start: 13; } - .md\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .md\:col-start-auto { + grid-column-start: auto; } - .md\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .md\:col-end-1 { + grid-column-end: 1; } - .md\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .md\:col-end-2 { + grid-column-end: 2; } - .md\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .md\:col-end-3 { + grid-column-end: 3; } - .md\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .md\:col-end-4 { + grid-column-end: 4; } - .md\:hover\:bg-transparent:hover { - background-color: transparent; + .md\:col-end-5 { + grid-column-end: 5; } - .md\:hover\:bg-current:hover { - background-color: currentColor; + .md\:col-end-6 { + grid-column-end: 6; } - .md\:hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .md\:col-end-7 { + grid-column-end: 7; } - .md\:hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .md\:col-end-8 { + grid-column-end: 8; } - .md\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .md\:col-end-9 { + grid-column-end: 9; } - .md\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .md\:col-end-10 { + grid-column-end: 10; } - .md\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .md\:col-end-11 { + grid-column-end: 11; } - .md\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .md\:col-end-12 { + grid-column-end: 12; } - .md\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .md\:col-end-13 { + grid-column-end: 13; } - .md\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .md\:col-end-auto { + grid-column-end: auto; } - .md\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .md\:row-auto { + grid-row: auto; } - .md\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .md\:row-span-1 { + grid-row: span 1 / span 1; } - .md\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .md\:row-span-2 { + grid-row: span 2 / span 2; } - .md\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .md\:row-span-3 { + grid-row: span 3 / span 3; } - .md\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .md\:row-span-4 { + grid-row: span 4 / span 4; } - .md\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .md\:row-span-5 { + grid-row: span 5 / span 5; } - .md\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .md\:row-span-6 { + grid-row: span 6 / span 6; } - .md\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .md\:row-span-full { + grid-row: 1 / -1; } - .md\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .md\:row-start-1 { + grid-row-start: 1; } - .md\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .md\:row-start-2 { + grid-row-start: 2; } - .md\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .md\:row-start-3 { + grid-row-start: 3; } - .md\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .md\:row-start-4 { + grid-row-start: 4; } - .md\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .md\:row-start-5 { + grid-row-start: 5; } - .md\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .md\:row-start-6 { + grid-row-start: 6; } - .md\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .md\:row-start-7 { + grid-row-start: 7; } - .md\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .md\:row-start-auto { + grid-row-start: auto; } - .md\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .md\:row-end-1 { + grid-row-end: 1; } - .md\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .md\:row-end-2 { + grid-row-end: 2; } - .md\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .md\:row-end-3 { + grid-row-end: 3; } - .md\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .md\:row-end-4 { + grid-row-end: 4; } - .md\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .md\:row-end-5 { + grid-row-end: 5; } - .md\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .md\:row-end-6 { + grid-row-end: 6; } - .md\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .md\:row-end-7 { + grid-row-end: 7; } - .md\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .md\:row-end-auto { + grid-row-end: auto; } - .md\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .md\:float-right { + float: right; } - .md\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .md\:float-left { + float: left; } - .md\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .md\:float-none { + float: none; } - .md\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .md\:clear-left { + clear: left; } - .md\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .md\:clear-right { + clear: right; } - .md\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .md\:clear-both { + clear: both; } - .md\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .md\:clear-none { + clear: none; } - .md\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .md\:m-0 { + margin: 0px; } - .md\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .md\:m-1 { + margin: 0.25rem; } - .md\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .md\:m-2 { + margin: 0.5rem; } - .md\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .md\:m-3 { + margin: 0.75rem; } - .md\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .md\:m-4 { + margin: 1rem; } - .md\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .md\:m-5 { + margin: 1.25rem; } - .md\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .md\:m-6 { + margin: 1.5rem; } - .md\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .md\:m-7 { + margin: 1.75rem; } - .md\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .md\:m-8 { + margin: 2rem; } - .md\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .md\:m-9 { + margin: 2.25rem; } - .md\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .md\:m-10 { + margin: 2.5rem; } - .md\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .md\:m-11 { + margin: 2.75rem; } - .md\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .md\:m-12 { + margin: 3rem; } - .md\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .md\:m-14 { + margin: 3.5rem; } - .md\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .md\:m-16 { + margin: 4rem; } - .md\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .md\:m-20 { + margin: 5rem; } - .md\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .md\:m-24 { + margin: 6rem; } - .md\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .md\:m-28 { + margin: 7rem; } - .md\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .md\:m-32 { + margin: 8rem; } - .md\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .md\:m-36 { + margin: 9rem; } - .md\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .md\:m-40 { + margin: 10rem; } - .md\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .md\:m-44 { + margin: 11rem; } - .md\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .md\:m-48 { + margin: 12rem; } - .md\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .md\:m-52 { + margin: 13rem; } - .md\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .md\:m-56 { + margin: 14rem; } - .md\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .md\:m-60 { + margin: 15rem; } - .md\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .md\:m-64 { + margin: 16rem; } - .md\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .md\:m-72 { + margin: 18rem; } - .md\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .md\:m-80 { + margin: 20rem; } - .md\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .md\:m-96 { + margin: 24rem; } - .md\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .md\:m-auto { + margin: auto; } - .md\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .md\:m-px { + margin: 1px; } - .md\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .md\:m-0\.5 { + margin: 0.125rem; } - .md\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .md\:m-1\.5 { + margin: 0.375rem; } - .md\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .md\:m-2\.5 { + margin: 0.625rem; } - .md\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .md\:m-3\.5 { + margin: 0.875rem; } - .md\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .md\:-m-0 { + margin: 0px; } - .md\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .md\:-m-1 { + margin: -0.25rem; } - .md\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .md\:-m-2 { + margin: -0.5rem; } - .md\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .md\:-m-3 { + margin: -0.75rem; } - .md\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .md\:-m-4 { + margin: -1rem; } - .md\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .md\:-m-5 { + margin: -1.25rem; } - .md\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .md\:-m-6 { + margin: -1.5rem; } - .md\:focus\:bg-transparent:focus { - background-color: transparent; + .md\:-m-7 { + margin: -1.75rem; } - .md\:focus\:bg-current:focus { - background-color: currentColor; + .md\:-m-8 { + margin: -2rem; } - .md\:focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .md\:-m-9 { + margin: -2.25rem; } - .md\:focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .md\:-m-10 { + margin: -2.5rem; } - .md\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .md\:-m-11 { + margin: -2.75rem; } - .md\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .md\:-m-12 { + margin: -3rem; } - .md\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .md\:-m-14 { + margin: -3.5rem; } - .md\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .md\:-m-16 { + margin: -4rem; } - .md\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .md\:-m-20 { + margin: -5rem; } - .md\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .md\:-m-24 { + margin: -6rem; } - .md\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .md\:-m-28 { + margin: -7rem; } - .md\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .md\:-m-32 { + margin: -8rem; } - .md\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .md\:-m-36 { + margin: -9rem; } - .md\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .md\:-m-40 { + margin: -10rem; } - .md\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .md\:-m-44 { + margin: -11rem; } - .md\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .md\:-m-48 { + margin: -12rem; } - .md\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .md\:-m-52 { + margin: -13rem; } - .md\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .md\:-m-56 { + margin: -14rem; } - .md\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .md\:-m-60 { + margin: -15rem; } - .md\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .md\:-m-64 { + margin: -16rem; } - .md\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .md\:-m-72 { + margin: -18rem; } - .md\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .md\:-m-80 { + margin: -20rem; } - .md\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .md\:-m-96 { + margin: -24rem; } - .md\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .md\:-m-px { + margin: -1px; } - .md\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .md\:-m-0\.5 { + margin: -0.125rem; } - .md\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .md\:-m-1\.5 { + margin: -0.375rem; } - .md\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .md\:-m-2\.5 { + margin: -0.625rem; } - .md\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .md\:-m-3\.5 { + margin: -0.875rem; } - .md\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .md\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .md\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .md\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .md\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .md\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .md\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .md\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .md\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .md\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .md\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .md\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .md\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .md\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .md\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .md\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .md\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .md\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .md\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .md\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .md\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .md\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .md\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .md\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .md\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .md\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .md\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .md\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .md\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .md\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .md\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .md\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .md\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .md\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .md\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .md\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .md\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .md\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .md\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .md\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .md\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .md\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .md\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .md\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .md\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .md\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .md\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .md\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .md\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .md\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .md\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .md\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .md\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .md\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .md\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .md\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .md\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .md\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .md\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .md\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .md\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .md\:mx-auto { + margin-left: auto; + margin-right: auto; } - .md\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .md\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .md\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .md\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .md\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .md\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .md\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .md\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .md\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .md\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .md\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .md\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .md\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .md\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .md\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .md\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .md\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .md\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .md\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .md\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .md\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .md\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .md\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .md\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .md\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .md\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .md\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .md\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .md\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .md\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .md\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .md\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .md\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .md\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .md\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .md\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .md\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .md\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .md\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .md\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .md\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .md\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .md\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .md\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .md\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .md\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .md\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .md\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .md\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .md\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .md\:bg-none { - background-image: none; + .md\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .md\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .md\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .md\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .md\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .md\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .md\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .md\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .md\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .md\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .md\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .md\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .md\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .md\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .md\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .md\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .md\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .md\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .md\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .md\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .md\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .md\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .md\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .md\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .md\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .md\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .md\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .md\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .md\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .md\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .md\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .md\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .md\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .md\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .md\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .md\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .md\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .md\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .md\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .md\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .md\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .md\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .md\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .md\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .md\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .md\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .md\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .md\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .md\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .md\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .md\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .md\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .md\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .md\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .md\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .md\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .md\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .md\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .md\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .md\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .md\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .md\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .md\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .md\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .md\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .md\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .md\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .md\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .md\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .md\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .md\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .md\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .md\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .md\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .md\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .md\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .md\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .md\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .md\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .md\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .md\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .md\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .md\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .md\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .md\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .md\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .md\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .md\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .md\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .md\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .md\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .md\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .md\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .md\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .md\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:mt-0 { + margin-top: 0px; } - .md\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:mt-1 { + margin-top: 0.25rem; } - .md\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:mt-2 { + margin-top: 0.5rem; } - .md\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:mt-3 { + margin-top: 0.75rem; } - .md\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:mt-4 { + margin-top: 1rem; } - .md\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:mt-5 { + margin-top: 1.25rem; } - .md\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:mt-6 { + margin-top: 1.5rem; } - .md\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:mt-7 { + margin-top: 1.75rem; } - .md\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:mt-8 { + margin-top: 2rem; } - .md\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:mt-9 { + margin-top: 2.25rem; } - .md\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:mt-10 { + margin-top: 2.5rem; } - .md\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:mt-11 { + margin-top: 2.75rem; } - .md\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:mt-12 { + margin-top: 3rem; } - .md\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:mt-14 { + margin-top: 3.5rem; } - .md\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:mt-16 { + margin-top: 4rem; } - .md\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:mt-20 { + margin-top: 5rem; } - .md\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:mt-24 { + margin-top: 6rem; } - .md\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:mt-28 { + margin-top: 7rem; } - .md\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:mt-32 { + margin-top: 8rem; } - .md\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:mt-36 { + margin-top: 9rem; } - .md\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:mt-40 { + margin-top: 10rem; } - .md\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:mt-44 { + margin-top: 11rem; } - .md\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:mt-48 { + margin-top: 12rem; } - .md\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:mt-52 { + margin-top: 13rem; } - .md\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:mt-56 { + margin-top: 14rem; } - .md\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:mt-60 { + margin-top: 15rem; } - .md\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:mt-64 { + margin-top: 16rem; } - .md\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:mt-72 { + margin-top: 18rem; } - .md\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:mt-80 { + margin-top: 20rem; } - .md\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:mt-96 { + margin-top: 24rem; } - .md\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:mt-auto { + margin-top: auto; } - .md\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:mt-px { + margin-top: 1px; } - .md\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:mt-0\.5 { + margin-top: 0.125rem; } - .md\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:mt-1\.5 { + margin-top: 0.375rem; } - .md\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:mt-2\.5 { + margin-top: 0.625rem; } - .md\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:mt-3\.5 { + margin-top: 0.875rem; } - .md\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:-mt-0 { + margin-top: 0px; } - .md\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:-mt-1 { + margin-top: -0.25rem; } - .md\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:-mt-2 { + margin-top: -0.5rem; } - .md\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:-mt-3 { + margin-top: -0.75rem; } - .md\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:-mt-4 { + margin-top: -1rem; } - .md\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:-mt-5 { + margin-top: -1.25rem; } - .md\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:-mt-6 { + margin-top: -1.5rem; } - .md\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:-mt-7 { + margin-top: -1.75rem; } - .md\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:-mt-8 { + margin-top: -2rem; } - .md\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:-mt-9 { + margin-top: -2.25rem; } - .md\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:-mt-10 { + margin-top: -2.5rem; } - .md\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:-mt-11 { + margin-top: -2.75rem; } - .md\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:-mt-12 { + margin-top: -3rem; } - .md\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:-mt-14 { + margin-top: -3.5rem; } - .md\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:-mt-16 { + margin-top: -4rem; } - .md\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:-mt-20 { + margin-top: -5rem; } - .md\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:-mt-24 { + margin-top: -6rem; } - .md\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:-mt-28 { + margin-top: -7rem; } - .md\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:-mt-32 { + margin-top: -8rem; } - .md\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:-mt-36 { + margin-top: -9rem; } - .md\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:-mt-40 { + margin-top: -10rem; } - .md\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:-mt-44 { + margin-top: -11rem; } - .md\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:-mt-48 { + margin-top: -12rem; } - .md\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:-mt-52 { + margin-top: -13rem; } - .md\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:-mt-56 { + margin-top: -14rem; } - .md\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:-mt-60 { + margin-top: -15rem; } - .md\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:-mt-64 { + margin-top: -16rem; } - .md\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:-mt-72 { + margin-top: -18rem; } - .md\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:-mt-80 { + margin-top: -20rem; } - .md\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:-mt-96 { + margin-top: -24rem; } - .md\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:-mt-px { + margin-top: -1px; } - .md\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:-mt-0\.5 { + margin-top: -0.125rem; } - .md\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:-mt-1\.5 { + margin-top: -0.375rem; } - .md\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:-mt-2\.5 { + margin-top: -0.625rem; } - .md\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:-mt-3\.5 { + margin-top: -0.875rem; } - .md\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:mr-0 { + margin-right: 0px; } - .md\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:mr-1 { + margin-right: 0.25rem; } - .md\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:mr-2 { + margin-right: 0.5rem; } - .md\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:mr-3 { + margin-right: 0.75rem; } - .md\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:mr-4 { + margin-right: 1rem; } - .md\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:mr-5 { + margin-right: 1.25rem; } - .md\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:mr-6 { + margin-right: 1.5rem; } - .md\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:mr-7 { + margin-right: 1.75rem; } - .md\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:mr-8 { + margin-right: 2rem; } - .md\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:mr-9 { + margin-right: 2.25rem; } - .md\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:mr-10 { + margin-right: 2.5rem; } - .md\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:mr-11 { + margin-right: 2.75rem; } - .md\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:mr-12 { + margin-right: 3rem; } - .md\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:mr-14 { + margin-right: 3.5rem; } - .md\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:mr-16 { + margin-right: 4rem; } - .md\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:mr-20 { + margin-right: 5rem; } - .md\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:mr-24 { + margin-right: 6rem; } - .md\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:mr-28 { + margin-right: 7rem; } - .md\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:mr-32 { + margin-right: 8rem; } - .md\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:mr-36 { + margin-right: 9rem; } - .md\:to-transparent { - --tw-gradient-to: transparent; + .md\:mr-40 { + margin-right: 10rem; } - .md\:to-current { - --tw-gradient-to: currentColor; + .md\:mr-44 { + margin-right: 11rem; } - .md\:to-black { - --tw-gradient-to: #000; + .md\:mr-48 { + margin-right: 12rem; } - .md\:to-white { - --tw-gradient-to: #fff; + .md\:mr-52 { + margin-right: 13rem; } - .md\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .md\:mr-56 { + margin-right: 14rem; } - .md\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .md\:mr-60 { + margin-right: 15rem; } - .md\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .md\:mr-64 { + margin-right: 16rem; } - .md\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .md\:mr-72 { + margin-right: 18rem; } - .md\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .md\:mr-80 { + margin-right: 20rem; } - .md\:to-gray-500 { - --tw-gradient-to: #6b7280; + .md\:mr-96 { + margin-right: 24rem; } - .md\:to-gray-600 { - --tw-gradient-to: #4b5563; + .md\:mr-auto { + margin-right: auto; } - .md\:to-gray-700 { - --tw-gradient-to: #374151; + .md\:mr-px { + margin-right: 1px; } - .md\:to-gray-800 { - --tw-gradient-to: #1f2937; + .md\:mr-0\.5 { + margin-right: 0.125rem; } - .md\:to-gray-900 { - --tw-gradient-to: #111827; + .md\:mr-1\.5 { + margin-right: 0.375rem; } - .md\:to-red-50 { - --tw-gradient-to: #fef2f2; + .md\:mr-2\.5 { + margin-right: 0.625rem; } - .md\:to-red-100 { - --tw-gradient-to: #fee2e2; + .md\:mr-3\.5 { + margin-right: 0.875rem; } - .md\:to-red-200 { - --tw-gradient-to: #fecaca; + .md\:-mr-0 { + margin-right: 0px; } - .md\:to-red-300 { - --tw-gradient-to: #fca5a5; + .md\:-mr-1 { + margin-right: -0.25rem; } - .md\:to-red-400 { - --tw-gradient-to: #f87171; + .md\:-mr-2 { + margin-right: -0.5rem; } - .md\:to-red-500 { - --tw-gradient-to: #ef4444; + .md\:-mr-3 { + margin-right: -0.75rem; } - .md\:to-red-600 { - --tw-gradient-to: #dc2626; + .md\:-mr-4 { + margin-right: -1rem; } - .md\:to-red-700 { - --tw-gradient-to: #b91c1c; + .md\:-mr-5 { + margin-right: -1.25rem; } - .md\:to-red-800 { - --tw-gradient-to: #991b1b; + .md\:-mr-6 { + margin-right: -1.5rem; } - .md\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .md\:-mr-7 { + margin-right: -1.75rem; } - .md\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .md\:-mr-8 { + margin-right: -2rem; } - .md\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .md\:-mr-9 { + margin-right: -2.25rem; } - .md\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .md\:-mr-10 { + margin-right: -2.5rem; } - .md\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .md\:-mr-11 { + margin-right: -2.75rem; } - .md\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .md\:-mr-12 { + margin-right: -3rem; } - .md\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .md\:-mr-14 { + margin-right: -3.5rem; } - .md\:to-yellow-600 { - --tw-gradient-to: #d97706; + .md\:-mr-16 { + margin-right: -4rem; } - .md\:to-yellow-700 { - --tw-gradient-to: #b45309; + .md\:-mr-20 { + margin-right: -5rem; } - .md\:to-yellow-800 { - --tw-gradient-to: #92400e; + .md\:-mr-24 { + margin-right: -6rem; } - .md\:to-yellow-900 { - --tw-gradient-to: #78350f; + .md\:-mr-28 { + margin-right: -7rem; } - .md\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .md\:-mr-32 { + margin-right: -8rem; } - .md\:to-green-100 { - --tw-gradient-to: #d1fae5; + .md\:-mr-36 { + margin-right: -9rem; } - .md\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .md\:-mr-40 { + margin-right: -10rem; } - .md\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .md\:-mr-44 { + margin-right: -11rem; } - .md\:to-green-400 { - --tw-gradient-to: #34d399; + .md\:-mr-48 { + margin-right: -12rem; } - .md\:to-green-500 { - --tw-gradient-to: #10b981; + .md\:-mr-52 { + margin-right: -13rem; } - .md\:to-green-600 { - --tw-gradient-to: #059669; + .md\:-mr-56 { + margin-right: -14rem; } - .md\:to-green-700 { - --tw-gradient-to: #047857; + .md\:-mr-60 { + margin-right: -15rem; } - .md\:to-green-800 { - --tw-gradient-to: #065f46; + .md\:-mr-64 { + margin-right: -16rem; } - .md\:to-green-900 { - --tw-gradient-to: #064e3b; + .md\:-mr-72 { + margin-right: -18rem; } - .md\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .md\:-mr-80 { + margin-right: -20rem; } - .md\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .md\:-mr-96 { + margin-right: -24rem; } - .md\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .md\:-mr-px { + margin-right: -1px; } - .md\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .md\:-mr-0\.5 { + margin-right: -0.125rem; } - .md\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .md\:-mr-1\.5 { + margin-right: -0.375rem; } - .md\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .md\:-mr-2\.5 { + margin-right: -0.625rem; } - .md\:to-blue-600 { - --tw-gradient-to: #2563eb; + .md\:-mr-3\.5 { + margin-right: -0.875rem; } - .md\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .md\:mb-0 { + margin-bottom: 0px; } - .md\:to-blue-800 { - --tw-gradient-to: #1e40af; + .md\:mb-1 { + margin-bottom: 0.25rem; } - .md\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .md\:mb-2 { + margin-bottom: 0.5rem; } - .md\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .md\:mb-3 { + margin-bottom: 0.75rem; } - .md\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .md\:mb-4 { + margin-bottom: 1rem; } - .md\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .md\:mb-5 { + margin-bottom: 1.25rem; } - .md\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .md\:mb-6 { + margin-bottom: 1.5rem; } - .md\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .md\:mb-7 { + margin-bottom: 1.75rem; } - .md\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .md\:mb-8 { + margin-bottom: 2rem; } - .md\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .md\:mb-9 { + margin-bottom: 2.25rem; } - .md\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .md\:mb-10 { + margin-bottom: 2.5rem; } - .md\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .md\:mb-11 { + margin-bottom: 2.75rem; } - .md\:to-indigo-900 { - --tw-gradient-to: #312e81; + .md\:mb-12 { + margin-bottom: 3rem; } - .md\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .md\:mb-14 { + margin-bottom: 3.5rem; } - .md\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .md\:mb-16 { + margin-bottom: 4rem; } - .md\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .md\:mb-20 { + margin-bottom: 5rem; } - .md\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .md\:mb-24 { + margin-bottom: 6rem; } - .md\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .md\:mb-28 { + margin-bottom: 7rem; } - .md\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .md\:mb-32 { + margin-bottom: 8rem; } - .md\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .md\:mb-36 { + margin-bottom: 9rem; } - .md\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .md\:mb-40 { + margin-bottom: 10rem; } - .md\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .md\:mb-44 { + margin-bottom: 11rem; } - .md\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .md\:mb-48 { + margin-bottom: 12rem; } - .md\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .md\:mb-52 { + margin-bottom: 13rem; } - .md\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .md\:mb-56 { + margin-bottom: 14rem; } - .md\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .md\:mb-60 { + margin-bottom: 15rem; } - .md\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .md\:mb-64 { + margin-bottom: 16rem; } - .md\:to-pink-400 { - --tw-gradient-to: #f472b6; + .md\:mb-72 { + margin-bottom: 18rem; } - .md\:to-pink-500 { - --tw-gradient-to: #ec4899; + .md\:mb-80 { + margin-bottom: 20rem; } - .md\:to-pink-600 { - --tw-gradient-to: #db2777; + .md\:mb-96 { + margin-bottom: 24rem; } - .md\:to-pink-700 { - --tw-gradient-to: #be185d; + .md\:mb-auto { + margin-bottom: auto; } - .md\:to-pink-800 { - --tw-gradient-to: #9d174d; + .md\:mb-px { + margin-bottom: 1px; } - .md\:to-pink-900 { - --tw-gradient-to: #831843; + .md\:mb-0\.5 { + margin-bottom: 0.125rem; } - .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\:mb-1\.5 { + margin-bottom: 0.375rem; } - .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\:mb-2\.5 { + margin-bottom: 0.625rem; } - .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\:mb-3\.5 { + margin-bottom: 0.875rem; } - .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\:-mb-0 { + margin-bottom: 0px; } - .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\:-mb-1 { + margin-bottom: -0.25rem; } - .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\:-mb-2 { + margin-bottom: -0.5rem; } - .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\:-mb-3 { + margin-bottom: -0.75rem; } - .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\:-mb-4 { + margin-bottom: -1rem; } - .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\:-mb-5 { + margin-bottom: -1.25rem; } - .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\:-mb-6 { + margin-bottom: -1.5rem; } - .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\:-mb-7 { + margin-bottom: -1.75rem; } - .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\:-mb-8 { + margin-bottom: -2rem; } - .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\:-mb-9 { + margin-bottom: -2.25rem; } - .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\:-mb-10 { + margin-bottom: -2.5rem; } - .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\:-mb-11 { + margin-bottom: -2.75rem; } - .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\:-mb-12 { + margin-bottom: -3rem; } - .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\:-mb-14 { + margin-bottom: -3.5rem; } - .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\:-mb-16 { + margin-bottom: -4rem; } - .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\:-mb-20 { + margin-bottom: -5rem; } - .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\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .md\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:-ml-10 { + margin-left: -2.5rem; } - .md\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:-ml-11 { + margin-left: -2.75rem; } - .md\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:-ml-12 { + margin-left: -3rem; } - .md\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:-ml-14 { + margin-left: -3.5rem; } - .md\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:-ml-16 { + margin-left: -4rem; } - .md\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:-ml-20 { + margin-left: -5rem; } - .md\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:-ml-24 { + margin-left: -6rem; } - .md\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:-ml-28 { + margin-left: -7rem; } - .md\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:-ml-32 { + margin-left: -8rem; } - .md\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:-ml-36 { + margin-left: -9rem; } - .md\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:-ml-40 { + margin-left: -10rem; } - .md\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:-ml-44 { + margin-left: -11rem; } - .md\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:-ml-48 { + margin-left: -12rem; } - .md\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:-ml-52 { + margin-left: -13rem; } - .md\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:-ml-56 { + margin-left: -14rem; } - .md\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:-ml-60 { + margin-left: -15rem; } - .md\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:-ml-64 { + margin-left: -16rem; } - .md\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:-ml-72 { + margin-left: -18rem; } - .md\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:-ml-80 { + margin-left: -20rem; } - .md\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:-ml-96 { + margin-left: -24rem; } - .md\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:-ml-px { + margin-left: -1px; } - .md\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:-ml-0\.5 { + margin-left: -0.125rem; } - .md\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:-ml-1\.5 { + margin-left: -0.375rem; } - .md\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:-ml-2\.5 { + margin-left: -0.625rem; } - .md\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:-ml-3\.5 { + margin-left: -0.875rem; } - .md\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:box-border { + box-sizing: border-box; } - .md\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:box-content { + box-sizing: content-box; } - .md\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:block { + display: block; } - .md\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:inline-block { + display: inline-block; } - .md\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:inline { + display: inline; } - .md\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:flex { + display: flex; } - .md\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:inline-flex { + display: inline-flex; } - .md\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:table { + display: table; } - .md\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:inline-table { + display: inline-table; } - .md\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:table-caption { + display: table-caption; } - .md\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:table-cell { + display: table-cell; } - .md\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:table-column { + display: table-column; } - .md\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:table-column-group { + display: table-column-group; } - .md\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:table-footer-group { + display: table-footer-group; } - .md\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:table-header-group { + display: table-header-group; } - .md\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:table-row-group { + display: table-row-group; } - .md\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:table-row { + display: table-row; } - .md\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:flow-root { + display: flow-root; } - .md\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:grid { + display: grid; } - .md\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:inline-grid { + display: inline-grid; } - .md\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:contents { + display: contents; } - .md\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:list-item { + display: list-item; } - .md\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:hidden { + display: none; } - .md\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:h-0 { + height: 0px; } - .md\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:h-1 { + height: 0.25rem; } - .md\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:h-2 { + height: 0.5rem; } - .md\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:h-3 { + height: 0.75rem; } - .md\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:h-4 { + height: 1rem; } - .md\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:h-5 { + height: 1.25rem; } - .md\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:h-6 { + height: 1.5rem; } - .md\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:h-7 { + height: 1.75rem; } - .md\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:h-8 { + height: 2rem; } - .md\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:h-9 { + height: 2.25rem; } - .md\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:h-10 { + height: 2.5rem; } - .md\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:h-11 { + height: 2.75rem; } - .md\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:h-12 { + height: 3rem; } - .md\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:h-14 { + height: 3.5rem; } - .md\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:h-16 { + height: 4rem; } - .md\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:h-20 { + height: 5rem; } - .md\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:h-24 { + height: 6rem; } - .md\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:h-28 { + height: 7rem; } - .md\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:h-32 { + height: 8rem; } - .md\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:h-36 { + height: 9rem; } - .md\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:h-40 { + height: 10rem; } - .md\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:h-44 { + height: 11rem; } - .md\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:h-48 { + height: 12rem; } - .md\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:h-52 { + height: 13rem; } - .md\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:h-56 { + height: 14rem; } - .md\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:h-60 { + height: 15rem; } - .md\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:h-64 { + height: 16rem; } - .md\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:h-72 { + height: 18rem; } - .md\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:h-80 { + height: 20rem; } - .md\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:h-96 { + height: 24rem; } - .md\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:h-auto { + height: auto; } - .md\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:h-px { + height: 1px; } - .md\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:h-0\.5 { + height: 0.125rem; } - .md\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:h-1\.5 { + height: 0.375rem; } - .md\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:h-2\.5 { + height: 0.625rem; } - .md\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:h-3\.5 { + height: 0.875rem; } - .md\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .md\:h-1\/2 { + height: 50%; } - .md\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .md\:h-1\/3 { + height: 33.333333%; } - .md\:hover\:to-black:hover { - --tw-gradient-to: #000; + .md\:h-2\/3 { + height: 66.666667%; } - .md\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .md\:h-1\/4 { + height: 25%; } - .md\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .md\:h-2\/4 { + height: 50%; } - .md\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .md\:h-3\/4 { + height: 75%; } - .md\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .md\:h-1\/5 { + height: 20%; } - .md\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .md\:h-2\/5 { + height: 40%; } - .md\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .md\:h-3\/5 { + height: 60%; } - .md\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .md\:h-4\/5 { + height: 80%; } - .md\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .md\:h-1\/6 { + height: 16.666667%; } - .md\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .md\:h-2\/6 { + height: 33.333333%; } - .md\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .md\:h-3\/6 { + height: 50%; } - .md\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .md\:h-4\/6 { + height: 66.666667%; } - .md\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .md\:h-5\/6 { + height: 83.333333%; } - .md\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .md\:h-full { + height: 100%; } - .md\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .md\:h-screen { + height: 100vh; } - .md\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .md\:max-h-0 { + max-height: 0px; } - .md\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .md\:max-h-1 { + max-height: 0.25rem; } - .md\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .md\:max-h-2 { + max-height: 0.5rem; } - .md\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .md\:max-h-3 { + max-height: 0.75rem; } - .md\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .md\:max-h-4 { + max-height: 1rem; } - .md\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .md\:max-h-5 { + max-height: 1.25rem; } - .md\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .md\:max-h-6 { + max-height: 1.5rem; } - .md\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .md\:max-h-7 { + max-height: 1.75rem; } - .md\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .md\:max-h-8 { + max-height: 2rem; } - .md\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .md\:max-h-9 { + max-height: 2.25rem; } - .md\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .md\:max-h-10 { + max-height: 2.5rem; } - .md\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .md\:max-h-11 { + max-height: 2.75rem; } - .md\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .md\:max-h-12 { + max-height: 3rem; } - .md\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .md\:max-h-14 { + max-height: 3.5rem; } - .md\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .md\:max-h-16 { + max-height: 4rem; } - .md\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .md\:max-h-20 { + max-height: 5rem; } - .md\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .md\:max-h-24 { + max-height: 6rem; } - .md\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .md\:max-h-28 { + max-height: 7rem; } - .md\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .md\:max-h-32 { + max-height: 8rem; } - .md\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .md\:max-h-36 { + max-height: 9rem; } - .md\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .md\:max-h-40 { + max-height: 10rem; } - .md\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .md\:max-h-44 { + max-height: 11rem; } - .md\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .md\:max-h-48 { + max-height: 12rem; } - .md\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .md\:max-h-52 { + max-height: 13rem; } - .md\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .md\:max-h-56 { + max-height: 14rem; } - .md\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .md\:max-h-60 { + max-height: 15rem; } - .md\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .md\:max-h-64 { + max-height: 16rem; } - .md\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .md\:max-h-72 { + max-height: 18rem; } - .md\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .md\:max-h-80 { + max-height: 20rem; } - .md\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .md\:max-h-96 { + max-height: 24rem; } - .md\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .md\:max-h-px { + max-height: 1px; } - .md\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .md\:max-h-0\.5 { + max-height: 0.125rem; } - .md\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .md\:max-h-1\.5 { + max-height: 0.375rem; } - .md\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .md\:max-h-2\.5 { + max-height: 0.625rem; } - .md\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .md\:max-h-3\.5 { + max-height: 0.875rem; } - .md\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .md\:max-h-full { + max-height: 100%; } - .md\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .md\:max-h-screen { + max-height: 100vh; } - .md\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .md\:min-h-0 { + min-height: 0px; } - .md\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .md\:min-h-full { + min-height: 100%; } - .md\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .md\:min-h-screen { + min-height: 100vh; } - .md\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .md\:w-0 { + width: 0px; } - .md\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .md\:w-1 { + width: 0.25rem; } - .md\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .md\:w-2 { + width: 0.5rem; } - .md\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .md\:w-3 { + width: 0.75rem; } - .md\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .md\:w-4 { + width: 1rem; } - .md\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .md\:w-5 { + width: 1.25rem; } - .md\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .md\:w-6 { + width: 1.5rem; } - .md\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .md\:w-7 { + width: 1.75rem; } - .md\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .md\:w-8 { + width: 2rem; } - .md\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .md\:w-9 { + width: 2.25rem; } - .md\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .md\:w-10 { + width: 2.5rem; } - .md\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .md\:w-11 { + width: 2.75rem; } - .md\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .md\:w-12 { + width: 3rem; } - .md\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .md\:w-14 { + width: 3.5rem; } - .md\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .md\:w-16 { + width: 4rem; } - .md\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .md\:w-20 { + width: 5rem; } - .md\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .md\:w-24 { + width: 6rem; } - .md\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .md\:w-28 { + width: 7rem; } - .md\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .md\:w-32 { + width: 8rem; } - .md\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .md\:w-36 { + width: 9rem; } - .md\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .md\:w-40 { + width: 10rem; } - .md\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .md\:w-44 { + width: 11rem; } - .md\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .md\:w-48 { + width: 12rem; } - .md\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .md\:w-52 { + width: 13rem; } - .md\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .md\:w-56 { + width: 14rem; } - .md\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .md\:w-60 { + width: 15rem; } - .md\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .md\:w-64 { + width: 16rem; } - .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\:w-72 { + width: 18rem; } - .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\:w-80 { + width: 20rem; } - .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\:w-96 { + width: 24rem; } - .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\:w-auto { + width: auto; } - .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\:w-px { + width: 1px; } - .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\:w-0\.5 { + width: 0.125rem; } - .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\:w-1\.5 { + width: 0.375rem; } - .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\:w-2\.5 { + width: 0.625rem; } - .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\:w-3\.5 { + width: 0.875rem; } - .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\:w-1\/2 { + width: 50%; } - .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\:w-1\/3 { + width: 33.333333%; } - .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\:w-2\/3 { + width: 66.666667%; } - .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\:w-1\/4 { + width: 25%; } - .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\:w-2\/4 { + width: 50%; } - .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\:w-3\/4 { + width: 75%; } - .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\:w-1\/5 { + width: 20%; } - .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\:w-2\/5 { + width: 40%; } - .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\:w-3\/5 { + width: 60%; } - .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\:w-4\/5 { + width: 80%; } - .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\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .md\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .md\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .md\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:origin-bottom-right { + transform-origin: bottom right; } - .md\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:origin-bottom { + transform-origin: bottom; } - .md\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:origin-bottom-left { + transform-origin: bottom left; } - .md\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:origin-left { + transform-origin: left; } - .md\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:origin-top-left { + transform-origin: top left; } - .md\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:translate-x-0 { + --tw-translate-x: 0px; } - .md\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .md\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .md\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .md\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:translate-x-4 { + --tw-translate-x: 1rem; } - .md\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .md\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .md\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .md\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:translate-x-8 { + --tw-translate-x: 2rem; } - .md\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .md\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .md\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .md\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:translate-x-12 { + --tw-translate-x: 3rem; } - .md\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .md\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:translate-x-16 { + --tw-translate-x: 4rem; } - .md\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:translate-x-20 { + --tw-translate-x: 5rem; } - .md\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:translate-x-24 { + --tw-translate-x: 6rem; } - .md\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:translate-x-28 { + --tw-translate-x: 7rem; } - .md\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:translate-x-32 { + --tw-translate-x: 8rem; } - .md\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:translate-x-36 { + --tw-translate-x: 9rem; } - .md\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:translate-x-40 { + --tw-translate-x: 10rem; } - .md\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:translate-x-44 { + --tw-translate-x: 11rem; } - .md\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:translate-x-48 { + --tw-translate-x: 12rem; } - .md\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:translate-x-52 { + --tw-translate-x: 13rem; } - .md\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:translate-x-56 { + --tw-translate-x: 14rem; } - .md\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:translate-x-60 { + --tw-translate-x: 15rem; } - .md\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:translate-x-64 { + --tw-translate-x: 16rem; } - .md\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:translate-x-72 { + --tw-translate-x: 18rem; } - .md\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:translate-x-80 { + --tw-translate-x: 20rem; } - .md\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:translate-x-96 { + --tw-translate-x: 24rem; } - .md\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:translate-x-px { + --tw-translate-x: 1px; } - .md\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .md\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .md\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .md\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .md\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:-translate-x-0 { + --tw-translate-x: 0px; } - .md\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .md\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .md\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .md\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:-translate-x-4 { + --tw-translate-x: -1rem; } - .md\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .md\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .md\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .md\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:-translate-x-8 { + --tw-translate-x: -2rem; } - .md\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .md\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .md\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .md\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:-translate-x-12 { + --tw-translate-x: -3rem; } - .md\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .md\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:-translate-x-16 { + --tw-translate-x: -4rem; } - .md\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:-translate-x-20 { + --tw-translate-x: -5rem; } - .md\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:-translate-x-24 { + --tw-translate-x: -6rem; } - .md\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:-translate-x-28 { + --tw-translate-x: -7rem; } - .md\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:-translate-x-32 { + --tw-translate-x: -8rem; } - .md\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:-translate-x-36 { + --tw-translate-x: -9rem; } - .md\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:-translate-x-40 { + --tw-translate-x: -10rem; } - .md\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:-translate-x-44 { + --tw-translate-x: -11rem; } - .md\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:-translate-x-48 { + --tw-translate-x: -12rem; } - .md\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:-translate-x-52 { + --tw-translate-x: -13rem; } - .md\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:-translate-x-56 { + --tw-translate-x: -14rem; } - .md\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:-translate-x-60 { + --tw-translate-x: -15rem; } - .md\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:-translate-x-64 { + --tw-translate-x: -16rem; } - .md\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:-translate-x-72 { + --tw-translate-x: -18rem; } - .md\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:-translate-x-80 { + --tw-translate-x: -20rem; } - .md\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:-translate-x-96 { + --tw-translate-x: -24rem; } - .md\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:-translate-x-px { + --tw-translate-x: -1px; } - .md\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .md\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .md\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .md\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .md\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .md\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .md\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .md\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .md\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .md\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .md\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:translate-x-full { + --tw-translate-x: 100%; } - .md\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .md\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .md\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .md\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .md\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .md\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .md\:focus\:to-black:focus { - --tw-gradient-to: #000; + .md\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .md\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .md\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .md\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .md\:-translate-x-full { + --tw-translate-x: -100%; } - .md\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .md\:translate-y-0 { + --tw-translate-y: 0px; } - .md\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .md\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .md\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .md\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .md\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .md\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .md\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .md\:translate-y-4 { + --tw-translate-y: 1rem; } - .md\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .md\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .md\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .md\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .md\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .md\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .md\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .md\:translate-y-8 { + --tw-translate-y: 2rem; } - .md\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .md\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .md\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .md\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .md\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .md\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .md\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .md\:translate-y-12 { + --tw-translate-y: 3rem; } - .md\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .md\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .md\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .md\:translate-y-16 { + --tw-translate-y: 4rem; } - .md\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .md\:translate-y-20 { + --tw-translate-y: 5rem; } - .md\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .md\:translate-y-24 { + --tw-translate-y: 6rem; } - .md\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .md\:translate-y-28 { + --tw-translate-y: 7rem; } - .md\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .md\:translate-y-32 { + --tw-translate-y: 8rem; } - .md\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .md\:translate-y-36 { + --tw-translate-y: 9rem; } - .md\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .md\:translate-y-40 { + --tw-translate-y: 10rem; } - .md\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .md\:translate-y-44 { + --tw-translate-y: 11rem; } - .md\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .md\:translate-y-48 { + --tw-translate-y: 12rem; } - .md\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .md\:translate-y-52 { + --tw-translate-y: 13rem; } - .md\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .md\:translate-y-56 { + --tw-translate-y: 14rem; } - .md\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .md\:translate-y-60 { + --tw-translate-y: 15rem; } - .md\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .md\:translate-y-64 { + --tw-translate-y: 16rem; } - .md\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .md\:translate-y-72 { + --tw-translate-y: 18rem; } - .md\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .md\:translate-y-80 { + --tw-translate-y: 20rem; } - .md\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .md\:translate-y-96 { + --tw-translate-y: 24rem; } - .md\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .md\:translate-y-px { + --tw-translate-y: 1px; } - .md\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .md\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .md\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .md\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .md\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .md\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .md\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .md\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .md\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .md\:-translate-y-0 { + --tw-translate-y: 0px; } - .md\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .md\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .md\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .md\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .md\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .md\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .md\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .md\:-translate-y-4 { + --tw-translate-y: -1rem; } - .md\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .md\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .md\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .md\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .md\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .md\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .md\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .md\:-translate-y-8 { + --tw-translate-y: -2rem; } - .md\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .md\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .md\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .md\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .md\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .md\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .md\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .md\:-translate-y-12 { + --tw-translate-y: -3rem; } - .md\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .md\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .md\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .md\:-translate-y-16 { + --tw-translate-y: -4rem; } - .md\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .md\:-translate-y-20 { + --tw-translate-y: -5rem; } - .md\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .md\:-translate-y-24 { + --tw-translate-y: -6rem; } - .md\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .md\:-translate-y-28 { + --tw-translate-y: -7rem; } - .md\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .md\:-translate-y-32 { + --tw-translate-y: -8rem; } - .md\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .md\:-translate-y-36 { + --tw-translate-y: -9rem; } - .md\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .md\:-translate-y-40 { + --tw-translate-y: -10rem; } - .md\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .md\:-translate-y-44 { + --tw-translate-y: -11rem; } - .md\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .md\:-translate-y-48 { + --tw-translate-y: -12rem; } - .md\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .md\:-translate-y-52 { + --tw-translate-y: -13rem; } - .md\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .md\:-translate-y-56 { + --tw-translate-y: -14rem; } - .md\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .md\:-translate-y-60 { + --tw-translate-y: -15rem; } - .md\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .md\:-translate-y-64 { + --tw-translate-y: -16rem; } - .md\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .md\:-translate-y-72 { + --tw-translate-y: -18rem; } - .md\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .md\:-translate-y-80 { + --tw-translate-y: -20rem; } - .md\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .md\:-translate-y-96 { + --tw-translate-y: -24rem; } - .md\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .md\:-translate-y-px { + --tw-translate-y: -1px; } - .md\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .md\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .md\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .md\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .md\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .md\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .md\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .md\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .md\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .md\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .md\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .md\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .md\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .md\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .md\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .md\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .md\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .md\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .md\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .md\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .md\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .md\:translate-y-full { + --tw-translate-y: 100%; } - .md\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .md\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .md\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .md\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .md\:bg-opacity-0 { - --tw-bg-opacity: 0; + .md\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .md\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .md\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .md\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .md\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .md\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .md\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .md\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .md\:-translate-y-full { + --tw-translate-y: -100%; } - .md\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .md\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .md\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .md\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .md\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .md\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .md\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .md\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .md\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .md\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .md\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .md\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .md\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .md\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .md\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .md\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .md\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .md\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .md\:bg-opacity-100 { - --tw-bg-opacity: 1; + .md\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .group:hover .md\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; + .md\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .group:hover .md\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .md\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .group:hover .md\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .md\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .group:hover .md\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .md\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .group:hover .md\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .md\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .group:hover .md\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .md\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .group:hover .md\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .md\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .group:hover .md\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .md\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .group:hover .md\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .md\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .group:hover .md\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .md\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .group:hover .md\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .md\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .group:hover .md\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .md\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .group:hover .md\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .md\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .group:hover .md\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .md\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .group:hover .md\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; + .md\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .md\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; + .md\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .md\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; + .md\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .md\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; + .md\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .md\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; + .md\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .md\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; + .md\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .md\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; + .md\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .md\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; + .md\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .md\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; + .md\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .md\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; + .md\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .md\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; + .md\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .md\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; + .md\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .md\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; + .md\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .md\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; + .md\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .md\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; + .md\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .md\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; + .md\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .md\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; + .md\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .md\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; + .md\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .md\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; + .md\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .md\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; + .md\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .md\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; + .md\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .md\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; + .md\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .md\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; + .md\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .md\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; + .md\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .md\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; + .md\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .md\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; + .md\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .md\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; + .md\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .md\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; + .md\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .md\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; + .md\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .md\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; + .md\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .md\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; + .md\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .md\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; + .md\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .md\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; + .md\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .md\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; + .md\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .md\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; + .md\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .md\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; + .md\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .md\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; + .md\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .md\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; + .md\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .md\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; + .md\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .md\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; + .md\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .md\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; + .md\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .md\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; + .md\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .md\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; + .md\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .md\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; + .md\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .md\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; + .md\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .md\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; + .md\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .md\:bg-bottom { - background-position: bottom; + .md\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .md\:bg-center { - background-position: center; + .md\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .md\:bg-left { - background-position: left; + .md\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .md\:bg-left-bottom { - background-position: left bottom; + .md\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .md\:bg-left-top { - background-position: left top; + .md\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .md\:bg-right { - background-position: right; + .md\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .md\:bg-right-bottom { - background-position: right bottom; + .md\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .md\:bg-right-top { - background-position: right top; + .md\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .md\:bg-top { - background-position: top; + .md\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .md\:bg-repeat { - background-repeat: repeat; + .md\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .md\:bg-no-repeat { - background-repeat: no-repeat; + .md\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .md\:bg-repeat-x { - background-repeat: repeat-x; + .md\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .md\:bg-repeat-y { - background-repeat: repeat-y; + .md\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .md\:bg-repeat-round { - background-repeat: round; + .md\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .md\:bg-repeat-space { - background-repeat: space; + .md\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .md\:bg-auto { - background-size: auto; + .md\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .md\:bg-cover { - background-size: cover; + .md\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .md\:bg-contain { - background-size: contain; + .md\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .md\:bg-origin-border { - background-origin: border-box; + .md\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .md\:bg-origin-padding { - background-origin: padding-box; + .md\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .md\:bg-origin-content { - background-origin: content-box; + .md\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .md\:border-collapse { - border-collapse: collapse; + .md\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .md\:border-separate { - border-collapse: separate; + .md\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .md\:border-transparent { - border-color: transparent; + .md\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .md\:border-current { - border-color: currentColor; + .md\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .md\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .md\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .md\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .md\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .md\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .md\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .md\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .md\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .md\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .md\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .md\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .md\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .md\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .md\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .md\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .md\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .md\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .md\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .md\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .md\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .md\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .md\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .md\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .md\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .md\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .md\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .md\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .md\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .md\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .md\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .md\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .md\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .md\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .md\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .md\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .md\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .md\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .md\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .md\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .md\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .md\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .md\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .md\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .md\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .md\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .md\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .md\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .md\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .md\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .md\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .md\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .md\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .md\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .md\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .md\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .md\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .md\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .md\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .md\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .md\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .md\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .md\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .md\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .md\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .md\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .md\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .md\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .md\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .md\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .md\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .md\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .md\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .md\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .md\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .md\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .md\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .md\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .md\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .md\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .md\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .md\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .md\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .md\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .md\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .md\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .md\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .md\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .md\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .md\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .md\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .md\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .md\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .md\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .md\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .md\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .md\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .md\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .md\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .md\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .md\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .md\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .md\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .md\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .md\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .md\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .md\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .md\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .md\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .md\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .md\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .md\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .md\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .md\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .md\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .md\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .md\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .md\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .md\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .md\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .md\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .md\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .md\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .md\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .md\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .md\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .md\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .md\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .md\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .md\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .md\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .md\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .md\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .md\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .md\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .md\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .md\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .md\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .md\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .md\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .md\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .md\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .md\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .md\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .md\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .md\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .md\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .md\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .md\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .md\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .md\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .md\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .md\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .md\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .md\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .md\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .md\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .md\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .md\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .md\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .md\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .md\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .md\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .md\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .md\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .md\:group-hover\:border-transparent { - border-color: transparent; + .md\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .md\:group-hover\:border-current { - border-color: currentColor; + .md\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .md\:group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .md\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .md\:group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .md\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .md\:group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .md\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .md\:group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .md\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .md\:group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .md\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .md\:group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .md\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .md\:group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .md\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .md\:group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .md\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .md\:group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .md\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .md\:group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .md\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .md\:group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .md\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .md\:group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .md\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .md\:group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .md\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .md\:group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .md\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .md\:group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .md\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .md\:group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .md\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .md\:group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .md\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .md\:group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .md\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .md\:group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .md\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .md\:group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .md\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .md\:group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .md\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .md\:group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .md\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .md\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .md\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .md\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .md\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .md\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .md\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .md\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .md\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .md\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .md\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .group:hover .md\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .md\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .group:hover .md\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .md\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .group:hover .md\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .md\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .group:hover .md\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .md\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .group:hover .md\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .md\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .group:hover .md\:group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .md\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .group:hover .md\:group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .md\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - - .group:hover .md\:group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + + .md\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .group:hover .md\:group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .md\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .group:hover .md\:group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .md\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .group:hover .md\:group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .md\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .group:hover .md\:group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .md\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .group:hover .md\:group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .md\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .group:hover .md\:group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .md\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .group:hover .md\:group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .md\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .group:hover .md\:group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .group:hover .md\:group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .group:hover .md\:group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .group:hover .md\:group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .md\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .group:hover .md\:group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .md\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .group:hover .md\:group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .md\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .group:hover .md\:group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .md\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .group:hover .md\:group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .md\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .group:hover .md\:group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .md\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .group:hover .md\:group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .md\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .group:hover .md\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .group:hover .md\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .group:hover .md\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .group:hover .md\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .md\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .group:hover .md\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .md\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .group:hover .md\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .md\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .group:hover .md\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .md\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .group:hover .md\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .md\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .group:hover .md\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .md\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .group:hover .md\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .md\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .group:hover .md\:group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .md\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .group:hover .md\:group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .md\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .group:hover .md\:group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .md\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .group:hover .md\:group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .md\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .group:hover .md\:group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .md\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .group:hover .md\:group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .md\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .group:hover .md\:group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .md\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .group:hover .md\:group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .md\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .group:hover .md\:group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .md\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .group:hover .md\:group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .md\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .group:hover .md\:group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .md\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .group:hover .md\:group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .md\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .group:hover .md\:group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .md\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .group:hover .md\:group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .md\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .group:hover .md\:group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .md\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .group:hover .md\:group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .md\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .group:hover .md\:group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .md\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .group:hover .md\:group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .md\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .group:hover .md\:group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .md\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .group:hover .md\:group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .md\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .md\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .md\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .md\:focus-within\:border-current:focus-within { - border-color: currentColor; + .md\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .md\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .md\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .md\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .md\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .md\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .md\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .md\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .md\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .md\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .md\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .md\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .md\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .md\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .md\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .md\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .md\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .md\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .md\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .md\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .md\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .md\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .md\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .md\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .md\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .md\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .md\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .md\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .md\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .md\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .md\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .md\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .md\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .md\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .md\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .md\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .md\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .md\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .md\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .md\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .md\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .md\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .md\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .md\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .md\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .md\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .md\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .md\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .md\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .md\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .md\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .md\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .md\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .md\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .md\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .md\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .md\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .md\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .md\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .md\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .md\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .md\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .md\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .md\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .md\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .md\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .md\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .md\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .md\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .md\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .md\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .md\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .md\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .md\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .md\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .md\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .md\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .md\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .md\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .md\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .md\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .md\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .md\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .md\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .md\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .md\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .md\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .md\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .md\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .md\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .md\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .md\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .md\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .md\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .md\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .md\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .md\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .md\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .md\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .md\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .md\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .md\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .md\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .md\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .md\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .md\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .md\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .md\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .md\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .md\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .md\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .md\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .md\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .md\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .md\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .md\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .md\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .md\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .md\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .md\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .md\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .md\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .md\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .md\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .md\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .md\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .md\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .md\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .md\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .md\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .md\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .md\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .md\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .md\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .md\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .md\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .md\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .md\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .md\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .md\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .md\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .md\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .md\:rotate-0 { + --tw-rotate: 0deg; } - .md\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .md\:rotate-1 { + --tw-rotate: 1deg; } - .md\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .md\:rotate-2 { + --tw-rotate: 2deg; } - .md\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .md\:rotate-3 { + --tw-rotate: 3deg; } - .md\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .md\:rotate-6 { + --tw-rotate: 6deg; } - .md\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .md\:rotate-12 { + --tw-rotate: 12deg; } - .md\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .md\:rotate-45 { + --tw-rotate: 45deg; } - .md\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .md\:rotate-90 { + --tw-rotate: 90deg; } - .md\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .md\:rotate-180 { + --tw-rotate: 180deg; } - .md\:hover\:border-transparent:hover { - border-color: transparent; + .md\:-rotate-180 { + --tw-rotate: -180deg; } - .md\:hover\:border-current:hover { - border-color: currentColor; + .md\:-rotate-90 { + --tw-rotate: -90deg; } - .md\:hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .md\:-rotate-45 { + --tw-rotate: -45deg; } - .md\:hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .md\:-rotate-12 { + --tw-rotate: -12deg; } - .md\:hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .md\:-rotate-6 { + --tw-rotate: -6deg; } - .md\:hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .md\:-rotate-3 { + --tw-rotate: -3deg; } - .md\:hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .md\:-rotate-2 { + --tw-rotate: -2deg; } - .md\:hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .md\:-rotate-1 { + --tw-rotate: -1deg; } - .md\:hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .md\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .md\:hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .md\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .md\:hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .md\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .md\:hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .md\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .md\:hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .md\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .md\:hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .md\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .md\:hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .md\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .md\:hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .md\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .md\:hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .md\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .md\:hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .md\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .md\:hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .md\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .md\:hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .md\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .md\:hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .md\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .md\:hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .md\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .md\:hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .md\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .md\:hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .md\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .md\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .md\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .md\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .md\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .md\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .md\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .md\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .md\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .md\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .md\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .md\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .md\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .md\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .md\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .md\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .md\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .md\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .md\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .md\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .md\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .md\:hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .md\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .md\:hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .md\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .md\:hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .md\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .md\:hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .md\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .md\:hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .md\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .md\:hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .md\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .md\:hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .md\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .md\:hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .md\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .md\:hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .md\:skew-x-0 { + --tw-skew-x: 0deg; } - .md\:hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .md\:skew-x-1 { + --tw-skew-x: 1deg; } - .md\:hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .md\:skew-x-2 { + --tw-skew-x: 2deg; } - .md\:hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .md\:skew-x-3 { + --tw-skew-x: 3deg; } - .md\:hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .md\:skew-x-6 { + --tw-skew-x: 6deg; } - .md\:hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .md\:skew-x-12 { + --tw-skew-x: 12deg; } - .md\:hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .md\:-skew-x-12 { + --tw-skew-x: -12deg; } - .md\:hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .md\:-skew-x-6 { + --tw-skew-x: -6deg; } - .md\:hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .md\:-skew-x-3 { + --tw-skew-x: -3deg; } - .md\:hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .md\:-skew-x-2 { + --tw-skew-x: -2deg; } - .md\:hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .md\:-skew-x-1 { + --tw-skew-x: -1deg; } - .md\:hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .md\:skew-y-0 { + --tw-skew-y: 0deg; } - .md\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .md\:skew-y-1 { + --tw-skew-y: 1deg; } - .md\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .md\:skew-y-2 { + --tw-skew-y: 2deg; } - .md\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .md\:skew-y-3 { + --tw-skew-y: 3deg; } - .md\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .md\:skew-y-6 { + --tw-skew-y: 6deg; } - .md\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .md\:skew-y-12 { + --tw-skew-y: 12deg; } - .md\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .md\:-skew-y-12 { + --tw-skew-y: -12deg; } - .md\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .md\:-skew-y-6 { + --tw-skew-y: -6deg; } - .md\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .md\:-skew-y-3 { + --tw-skew-y: -3deg; } - .md\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .md\:-skew-y-2 { + --tw-skew-y: -2deg; } - .md\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .md\:-skew-y-1 { + --tw-skew-y: -1deg; } - .md\:hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .md\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .md\:hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .md\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .md\:hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .md\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .md\:hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .md\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .md\:hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .md\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .md\:hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .md\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .md\:hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .md\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .md\:hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .md\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .md\:hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .md\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .md\:hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .md\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .md\:hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .md\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .md\:hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .md\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .md\:hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .md\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .md\:hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .md\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .md\:hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .md\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .md\:hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .md\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .md\:hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .md\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .md\:hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .md\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .md\:hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .md\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .md\:hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .md\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .md\:focus\:border-transparent:focus { - border-color: transparent; + .md\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .md\:focus\:border-current:focus { - border-color: currentColor; + .md\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .md\:focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .md\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .md\:focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .md\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .md\:focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .md\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .md\:focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .md\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .md\:focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .md\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .md\:focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .md\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .md\:focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .md\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .md\:focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .md\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .md\:focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .md\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .md\:focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .md\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .md\:focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .md\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .md\:focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .md\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .md\:focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .md\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .md\:focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .md\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .md\:focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .md\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .md\:focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .md\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .md\:focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .md\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .md\:focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .md\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .md\:focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .md\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .md\:focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .md\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .md\:focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .md\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .md\:focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .md\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .md\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .md\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .md\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .md\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .md\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .md\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .md\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .md\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .md\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .md\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .md\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .md\:scale-x-0 { + --tw-scale-x: 0; } - .md\:focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .md\:scale-x-50 { + --tw-scale-x: .5; } - .md\:focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .md\:scale-x-75 { + --tw-scale-x: .75; } - .md\:focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .md\:scale-x-90 { + --tw-scale-x: .9; } - .md\:focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .md\:scale-x-95 { + --tw-scale-x: .95; } - .md\:focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .md\:scale-x-100 { + --tw-scale-x: 1; } - .md\:focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .md\:scale-x-105 { + --tw-scale-x: 1.05; } - .md\:focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .md\:scale-x-110 { + --tw-scale-x: 1.1; } - .md\:focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .md\:scale-x-125 { + --tw-scale-x: 1.25; } - .md\:focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .md\:scale-x-150 { + --tw-scale-x: 1.5; } - .md\:focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .md\:scale-y-0 { + --tw-scale-y: 0; } - .md\:focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .md\:scale-y-50 { + --tw-scale-y: .5; } - .md\:focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .md\:scale-y-75 { + --tw-scale-y: .75; } - .md\:focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .md\:scale-y-90 { + --tw-scale-y: .9; } - .md\:focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .md\:scale-y-95 { + --tw-scale-y: .95; } - .md\:focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .md\:scale-y-100 { + --tw-scale-y: 1; } - .md\:focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .md\:scale-y-105 { + --tw-scale-y: 1.05; } - .md\:focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .md\:scale-y-110 { + --tw-scale-y: 1.1; } - .md\:focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .md\:scale-y-125 { + --tw-scale-y: 1.25; } - .md\:focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .md\:scale-y-150 { + --tw-scale-y: 1.5; } - .md\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .md\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .md\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .md\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .md\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .md\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .md\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .md\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .md\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .md\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .md\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .md\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .md\:focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .md\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .md\:focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .md\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .md\:focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .md\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .md\:focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .md\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .md\:focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .md\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .md\:focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .md\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .md\:focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .md\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .md\:focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .md\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .md\:focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .md\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .md\:focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .md\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .md\:focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .md\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .md\:focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .md\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .md\:focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .md\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .md\:focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .md\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .md\:focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .md\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .md\:focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .md\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .md\:focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .md\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .md\:focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .md\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .md\:focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .md\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .md\:border-opacity-0 { - --tw-border-opacity: 0; + .md\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:border-opacity-5 { - --tw-border-opacity: 0.05; + .md\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:border-opacity-10 { - --tw-border-opacity: 0.1; + .md\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:border-opacity-20 { - --tw-border-opacity: 0.2; + .md\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:border-opacity-25 { - --tw-border-opacity: 0.25; + .md\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:border-opacity-30 { - --tw-border-opacity: 0.3; + .md\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:border-opacity-40 { - --tw-border-opacity: 0.4; + .md\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:border-opacity-50 { - --tw-border-opacity: 0.5; + .md\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:border-opacity-60 { - --tw-border-opacity: 0.6; + .md\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:border-opacity-70 { - --tw-border-opacity: 0.7; + .md\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:border-opacity-75 { - --tw-border-opacity: 0.75; + .md\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .md\:border-opacity-80 { - --tw-border-opacity: 0.8; + .md\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .md\:border-opacity-90 { - --tw-border-opacity: 0.9; + .md\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .md\:border-opacity-95 { - --tw-border-opacity: 0.95; + .md\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .md\:border-opacity-100 { - --tw-border-opacity: 1; + .md\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .group:hover .md\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0; + .md\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .group:hover .md\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; + .md\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .group:hover .md\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; + .md\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .group:hover .md\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; + .md\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .group:hover .md\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; + .md\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .group:hover .md\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; + .md\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .group:hover .md\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; + .md\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .group:hover .md\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; + .md\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .group:hover .md\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; + .md\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .group:hover .md\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; + .md\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .group:hover .md\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; + .md\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .group:hover .md\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; + .md\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .group:hover .md\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; + .md\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .group:hover .md\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; + .md\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .group:hover .md\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1; + .md\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .md\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; + .md\:animate-none { + animation: none; } - .md\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; + .md\:animate-spin { + animation: spin 1s linear infinite; } - .md\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; + .md\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .md\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; + .md\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .md\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; + .md\:animate-bounce { + animation: bounce 1s infinite; } - .md\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; + .md\:cursor-auto { + cursor: auto; } - .md\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; + .md\:cursor-default { + cursor: default; } - .md\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; + .md\:cursor-pointer { + cursor: pointer; } - .md\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; + .md\:cursor-wait { + cursor: wait; } - .md\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; + .md\:cursor-text { + cursor: text; } - .md\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; + .md\:cursor-move { + cursor: move; } - .md\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; + .md\:cursor-help { + cursor: help; } - .md\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; + .md\:cursor-not-allowed { + cursor: not-allowed; } - .md\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; + .md\:select-none { + user-select: none; } - .md\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; + .md\:select-text { + user-select: text; } - .md\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0; + .md\:select-all { + user-select: all; } - .md\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; + .md\:select-auto { + user-select: auto; } - .md\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; + .md\:resize-none { + resize: none; } - .md\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; + .md\:resize-y { + resize: vertical; } - .md\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; + .md\:resize-x { + resize: horizontal; } - .md\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; + .md\:resize { + resize: both; } - .md\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; + .md\:list-inside { + list-style-position: inside; } - .md\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; + .md\:list-outside { + list-style-position: outside; } - .md\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; + .md\:list-none { + list-style-type: none; } - .md\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; + .md\:list-disc { + list-style-type: disc; } - .md\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; + .md\:list-decimal { + list-style-type: decimal; } - .md\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; + .md\:appearance-none { + appearance: none; } - .md\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; + .md\:auto-cols-auto { + grid-auto-columns: auto; } - .md\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; + .md\:auto-cols-min { + grid-auto-columns: min-content; } - .md\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1; + .md\:auto-cols-max { + grid-auto-columns: max-content; } - .md\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0; + .md\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .md\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; + .md\:grid-flow-row { + grid-auto-flow: row; } - .md\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; + .md\:grid-flow-col { + grid-auto-flow: column; } - .md\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; + .md\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .md\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; + .md\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .md\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; + .md\:auto-rows-auto { + grid-auto-rows: auto; } - .md\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; + .md\:auto-rows-min { + grid-auto-rows: min-content; } - .md\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; + .md\:auto-rows-max { + grid-auto-rows: max-content; } - .md\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; + .md\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .md\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; + .md\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .md\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; + .md\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .md\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; + .md\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .md\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; + .md\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .md\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; + .md\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .md\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1; + .md\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .md\:rounded-none { - border-radius: 0px; + .md\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .md\:rounded-sm { - border-radius: 0.125rem; + .md\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .md\:rounded { - border-radius: 0.25rem; + .md\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .md\:rounded-md { - border-radius: 0.375rem; + .md\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .md\:rounded-lg { - border-radius: 0.5rem; + .md\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .md\:rounded-xl { - border-radius: 0.75rem; + .md\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .md\:rounded-2xl { - border-radius: 1rem; + .md\:grid-cols-none { + grid-template-columns: none; } - .md\:rounded-3xl { - border-radius: 1.5rem; + .md\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .md\:rounded-full { - border-radius: 9999px; + .md\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .md\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .md\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .md\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .md\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .md\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .md\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .md\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .md\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .md\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .md\:grid-rows-none { + grid-template-rows: none; } - .md\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .md\:flex-row { + flex-direction: row; } - .md\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .md\:flex-row-reverse { + flex-direction: row-reverse; } - .md\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .md\:flex-col { + flex-direction: column; } - .md\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .md\:flex-col-reverse { + flex-direction: column-reverse; } - .md\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .md\:flex-wrap { + flex-wrap: wrap; } - .md\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .md\:flex-wrap-reverse { + flex-wrap: wrap-reverse; } - .md\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .md\:flex-nowrap { + flex-wrap: nowrap; } - .md\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .md\:place-content-center { + place-content: center; } - .md\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .md\:place-content-start { + place-content: start; } - .md\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .md\:place-content-end { + place-content: end; } - .md\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .md\:place-content-between { + place-content: space-between; } - .md\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .md\:place-content-around { + place-content: space-around; } - .md\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .md\:place-content-evenly { + place-content: space-evenly; } - .md\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .md\:place-content-stretch { + place-content: stretch; } - .md\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .md\:place-items-start { + place-items: start; } - .md\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .md\:place-items-end { + place-items: end; } - .md\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .md\:place-items-center { + place-items: center; } - .md\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .md\:place-items-stretch { + place-items: stretch; } - .md\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .md\:content-center { + align-content: center; } - .md\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .md\:content-start { + align-content: flex-start; } - .md\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .md\:content-end { + align-content: flex-end; } - .md\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .md\:content-between { + align-content: space-between; } - .md\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .md\:content-around { + align-content: space-around; } - .md\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .md\:content-evenly { + align-content: space-evenly; } - .md\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .md\:items-start { + align-items: flex-start; } - .md\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .md\:items-end { + align-items: flex-end; } - .md\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .md\:items-center { + align-items: center; } - .md\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .md\:items-baseline { + align-items: baseline; } - .md\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .md\:items-stretch { + align-items: stretch; } - .md\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .md\:justify-start { + justify-content: flex-start; } - .md\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .md\:justify-end { + justify-content: flex-end; } - .md\:rounded-tl-none { - border-top-left-radius: 0px; + .md\:justify-center { + justify-content: center; } - .md\:rounded-tr-none { - border-top-right-radius: 0px; + .md\:justify-between { + justify-content: space-between; + } + + .md\:justify-around { + justify-content: space-around; } - .md\:rounded-br-none { - border-bottom-right-radius: 0px; + .md\:justify-evenly { + justify-content: space-evenly; } - .md\:rounded-bl-none { - border-bottom-left-radius: 0px; + .md\:justify-items-start { + justify-items: start; } - .md\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .md\:justify-items-end { + justify-items: end; } - .md\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .md\:justify-items-center { + justify-items: center; } - .md\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .md\:justify-items-stretch { + justify-items: stretch; } - .md\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .md\:gap-0 { + gap: 0px; } - .md\:rounded-tl { - border-top-left-radius: 0.25rem; + .md\:gap-1 { + gap: 0.25rem; } - .md\:rounded-tr { - border-top-right-radius: 0.25rem; + .md\:gap-2 { + gap: 0.5rem; } - .md\:rounded-br { - border-bottom-right-radius: 0.25rem; + .md\:gap-3 { + gap: 0.75rem; } - .md\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .md\:gap-4 { + gap: 1rem; } - .md\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .md\:gap-5 { + gap: 1.25rem; } - .md\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .md\:gap-6 { + gap: 1.5rem; } - .md\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .md\:gap-7 { + gap: 1.75rem; } - .md\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .md\:gap-8 { + gap: 2rem; } - .md\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .md\:gap-9 { + gap: 2.25rem; } - .md\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .md\:gap-10 { + gap: 2.5rem; } - .md\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .md\:gap-11 { + gap: 2.75rem; } - .md\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .md\:gap-12 { + gap: 3rem; } - .md\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .md\:gap-14 { + gap: 3.5rem; } - .md\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .md\:gap-16 { + gap: 4rem; } - .md\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .md\:gap-20 { + gap: 5rem; } - .md\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .md\:gap-24 { + gap: 6rem; } - .md\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .md\:gap-28 { + gap: 7rem; } - .md\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .md\:gap-32 { + gap: 8rem; } - .md\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .md\:gap-36 { + gap: 9rem; } - .md\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .md\:gap-40 { + gap: 10rem; } - .md\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .md\:gap-44 { + gap: 11rem; } - .md\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .md\:gap-48 { + gap: 12rem; } - .md\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .md\:gap-52 { + gap: 13rem; } - .md\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .md\:gap-56 { + gap: 14rem; } - .md\:rounded-tl-full { - border-top-left-radius: 9999px; + .md\:gap-60 { + gap: 15rem; } - .md\:rounded-tr-full { - border-top-right-radius: 9999px; + .md\:gap-64 { + gap: 16rem; } - .md\:rounded-br-full { - border-bottom-right-radius: 9999px; + .md\:gap-72 { + gap: 18rem; } - .md\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .md\:gap-80 { + gap: 20rem; } - .md\:border-solid { - border-style: solid; + .md\:gap-96 { + gap: 24rem; } - .md\:border-dashed { - border-style: dashed; + .md\:gap-px { + gap: 1px; } - .md\:border-dotted { - border-style: dotted; + .md\:gap-0\.5 { + gap: 0.125rem; } - .md\:border-double { - border-style: double; + .md\:gap-1\.5 { + gap: 0.375rem; } - .md\:border-none { - border-style: none; + .md\:gap-2\.5 { + gap: 0.625rem; } - .md\:border-0 { - border-width: 0px; + .md\:gap-3\.5 { + gap: 0.875rem; } - .md\:border-2 { - border-width: 2px; + .md\:gap-x-0 { + column-gap: 0px; } - .md\:border-4 { - border-width: 4px; + .md\:gap-x-1 { + column-gap: 0.25rem; } - .md\:border-8 { - border-width: 8px; + .md\:gap-x-2 { + column-gap: 0.5rem; } - .md\:border { - border-width: 1px; + .md\:gap-x-3 { + column-gap: 0.75rem; } - .md\:border-t-0 { - border-top-width: 0px; + .md\:gap-x-4 { + column-gap: 1rem; } - .md\:border-r-0 { - border-right-width: 0px; + .md\:gap-x-5 { + column-gap: 1.25rem; } - .md\:border-b-0 { - border-bottom-width: 0px; + .md\:gap-x-6 { + column-gap: 1.5rem; } - .md\:border-l-0 { - border-left-width: 0px; + .md\:gap-x-7 { + column-gap: 1.75rem; } - .md\:border-t-2 { - border-top-width: 2px; + .md\:gap-x-8 { + column-gap: 2rem; } - .md\:border-r-2 { - border-right-width: 2px; + .md\:gap-x-9 { + column-gap: 2.25rem; } - .md\:border-b-2 { - border-bottom-width: 2px; + .md\:gap-x-10 { + column-gap: 2.5rem; } - .md\:border-l-2 { - border-left-width: 2px; + .md\:gap-x-11 { + column-gap: 2.75rem; } - .md\:border-t-4 { - border-top-width: 4px; + .md\:gap-x-12 { + column-gap: 3rem; } - .md\:border-r-4 { - border-right-width: 4px; + .md\:gap-x-14 { + column-gap: 3.5rem; } - .md\:border-b-4 { - border-bottom-width: 4px; + .md\:gap-x-16 { + column-gap: 4rem; } - .md\:border-l-4 { - border-left-width: 4px; + .md\:gap-x-20 { + column-gap: 5rem; } - .md\:border-t-8 { - border-top-width: 8px; + .md\:gap-x-24 { + column-gap: 6rem; } - .md\:border-r-8 { - border-right-width: 8px; + .md\:gap-x-28 { + column-gap: 7rem; } - .md\:border-b-8 { - border-bottom-width: 8px; + .md\:gap-x-32 { + column-gap: 8rem; } - .md\:border-l-8 { - border-left-width: 8px; + .md\:gap-x-36 { + column-gap: 9rem; } - .md\:border-t { - border-top-width: 1px; + .md\:gap-x-40 { + column-gap: 10rem; } - .md\:border-r { - border-right-width: 1px; + .md\:gap-x-44 { + column-gap: 11rem; } - .md\:border-b { - border-bottom-width: 1px; + .md\:gap-x-48 { + column-gap: 12rem; } - .md\:border-l { - border-left-width: 1px; + .md\:gap-x-52 { + column-gap: 13rem; } - .md\:decoration-slice { - box-decoration-break: slice; + .md\:gap-x-56 { + column-gap: 14rem; } - .md\:decoration-clone { - box-decoration-break: clone; + .md\:gap-x-60 { + column-gap: 15rem; } - .md\:box-border { - box-sizing: border-box; + .md\:gap-x-64 { + column-gap: 16rem; } - .md\:box-content { - box-sizing: content-box; + .md\:gap-x-72 { + column-gap: 18rem; } - .md\:cursor-auto { - cursor: auto; + .md\:gap-x-80 { + column-gap: 20rem; } - .md\:cursor-default { - cursor: default; + .md\:gap-x-96 { + column-gap: 24rem; } - .md\:cursor-pointer { - cursor: pointer; + .md\:gap-x-px { + column-gap: 1px; } - .md\:cursor-wait { - cursor: wait; + .md\:gap-x-0\.5 { + column-gap: 0.125rem; } - .md\:cursor-text { - cursor: text; + .md\:gap-x-1\.5 { + column-gap: 0.375rem; } - .md\:cursor-move { - cursor: move; + .md\:gap-x-2\.5 { + column-gap: 0.625rem; } - .md\:cursor-help { - cursor: help; + .md\:gap-x-3\.5 { + column-gap: 0.875rem; } - .md\:cursor-not-allowed { - cursor: not-allowed; + .md\:gap-y-0 { + row-gap: 0px; } - .md\:block { - display: block; + .md\:gap-y-1 { + row-gap: 0.25rem; } - .md\:inline-block { - display: inline-block; + .md\:gap-y-2 { + row-gap: 0.5rem; } - .md\:inline { - display: inline; + .md\:gap-y-3 { + row-gap: 0.75rem; } - .md\:flex { - display: flex; + .md\:gap-y-4 { + row-gap: 1rem; } - .md\:inline-flex { - display: inline-flex; + .md\:gap-y-5 { + row-gap: 1.25rem; } - .md\:table { - display: table; + .md\:gap-y-6 { + row-gap: 1.5rem; } - .md\:inline-table { - display: inline-table; + .md\:gap-y-7 { + row-gap: 1.75rem; } - .md\:table-caption { - display: table-caption; + .md\:gap-y-8 { + row-gap: 2rem; } - .md\:table-cell { - display: table-cell; + .md\:gap-y-9 { + row-gap: 2.25rem; } - .md\:table-column { - display: table-column; + .md\:gap-y-10 { + row-gap: 2.5rem; } - .md\:table-column-group { - display: table-column-group; + .md\:gap-y-11 { + row-gap: 2.75rem; } - .md\:table-footer-group { - display: table-footer-group; + .md\:gap-y-12 { + row-gap: 3rem; } - .md\:table-header-group { - display: table-header-group; + .md\:gap-y-14 { + row-gap: 3.5rem; } - .md\:table-row-group { - display: table-row-group; + .md\:gap-y-16 { + row-gap: 4rem; } - .md\:table-row { - display: table-row; + .md\:gap-y-20 { + row-gap: 5rem; } - .md\:flow-root { - display: flow-root; + .md\:gap-y-24 { + row-gap: 6rem; } - .md\:grid { - display: grid; + .md\:gap-y-28 { + row-gap: 7rem; } - .md\:inline-grid { - display: inline-grid; + .md\:gap-y-32 { + row-gap: 8rem; } - .md\:contents { - display: contents; + .md\:gap-y-36 { + row-gap: 9rem; } - .md\:list-item { - display: list-item; + .md\:gap-y-40 { + row-gap: 10rem; } - .md\:hidden { - display: none; + .md\:gap-y-44 { + row-gap: 11rem; } - .md\:flex-row { - flex-direction: row; + .md\:gap-y-48 { + row-gap: 12rem; } - .md\:flex-row-reverse { - flex-direction: row-reverse; + .md\:gap-y-52 { + row-gap: 13rem; } - .md\:flex-col { - flex-direction: column; + .md\:gap-y-56 { + row-gap: 14rem; } - .md\:flex-col-reverse { - flex-direction: column-reverse; + .md\:gap-y-60 { + row-gap: 15rem; } - .md\:flex-wrap { - flex-wrap: wrap; + .md\:gap-y-64 { + row-gap: 16rem; } - .md\:flex-wrap-reverse { - flex-wrap: wrap-reverse; + .md\:gap-y-72 { + row-gap: 18rem; } - .md\:flex-nowrap { - flex-wrap: nowrap; + .md\:gap-y-80 { + row-gap: 20rem; } - .md\:place-items-start { - place-items: start; + .md\:gap-y-96 { + row-gap: 24rem; } - .md\:place-items-end { - place-items: end; + .md\:gap-y-px { + row-gap: 1px; } - .md\:place-items-center { - place-items: center; + .md\:gap-y-0\.5 { + row-gap: 0.125rem; } - .md\:place-items-stretch { - place-items: stretch; + .md\:gap-y-1\.5 { + row-gap: 0.375rem; } - .md\:place-content-center { - place-content: center; + .md\:gap-y-2\.5 { + row-gap: 0.625rem; } - .md\:place-content-start { - place-content: start; + .md\:gap-y-3\.5 { + row-gap: 0.875rem; } - .md\:place-content-end { - place-content: end; + .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\:place-content-between { - place-content: space-between; + .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\:place-content-around { - place-content: space-around; + .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\:place-content-evenly { - place-content: space-evenly; + .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\:place-content-stretch { - place-content: stretch; + .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\:place-self-auto { - place-self: auto; + .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\:place-self-start { - place-self: start; + .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\:place-self-end { - place-self: end; + .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\:place-self-center { - place-self: center; + .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\:place-self-stretch { - place-self: stretch; + .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\:items-start { - align-items: flex-start; + .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\:items-end { - align-items: flex-end; + .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\:items-center { - align-items: center; + .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\:items-baseline { - align-items: baseline; + .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\:items-stretch { - align-items: stretch; + .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\:content-center { - align-content: center; + .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\:content-start { - align-content: flex-start; + .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\:content-end { - align-content: flex-end; + .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\:content-between { - align-content: space-between; + .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\:content-around { - align-content: space-around; + .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\:content-evenly { - align-content: space-evenly; + .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\:self-auto { - align-self: auto; + .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\:self-start { - align-self: flex-start; + .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\:self-end { - align-self: flex-end; + .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\:self-center { - align-self: center; + .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\:self-stretch { - align-self: stretch; + .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\:justify-items-start { - justify-items: start; + .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\:justify-items-end { - justify-items: end; + .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\:justify-items-center { - justify-items: center; + .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\:justify-items-stretch { - justify-items: stretch; + .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\:justify-start { - justify-content: flex-start; + .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\:justify-end { - justify-content: flex-end; + .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\:justify-center { - justify-content: center; + .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\:justify-between { - justify-content: space-between; + .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\:justify-around { - justify-content: space-around; + .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\:justify-evenly { - justify-content: space-evenly; + .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\:justify-self-auto { - justify-self: auto; + .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\:justify-self-start { - justify-self: start; + .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\:justify-self-end { - justify-self: end; + .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\:justify-self-center { - justify-self: center; + .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\:justify-self-stretch { - justify-self: stretch; + .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\:flex-1 { - flex: 1 1 0%; + .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\:flex-auto { - flex: 1 1 auto; + .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\:flex-initial { - flex: 0 1 auto; + .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\:flex-none { - flex: none; + .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\:flex-grow-0 { - flex-grow: 0; + .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\:flex-grow { - flex-grow: 1; + .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\:flex-shrink-0 { - flex-shrink: 0; + .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\:flex-shrink { - flex-shrink: 1; + .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\:order-1 { - order: 1; + .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\:order-2 { - order: 2; + .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\:order-3 { - order: 3; + .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\:order-4 { - order: 4; + .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\:order-5 { - order: 5; + .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\:order-6 { - order: 6; + .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\:order-7 { - order: 7; + .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\:order-8 { - order: 8; + .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\:order-9 { - order: 9; + .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\:order-10 { - order: 10; + .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\:order-11 { - order: 11; + .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\:order-12 { - order: 12; + .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\:order-first { - order: -9999; + .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\:order-last { - order: 9999; + .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\:order-none { - order: 0; + .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\:float-right { - float: right; + .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\:float-left { - float: left; + .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\:float-none { - float: none; + .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\:clear-left { - clear: left; + .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\:clear-right { - clear: right; + .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\:clear-both { - clear: both; + .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\:clear-none { - clear: none; + .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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .md\:-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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .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\:font-thin { - font-weight: 100; + .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\:font-extralight { - font-weight: 200; + .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\:font-light { - font-weight: 300; + .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\:font-normal { - font-weight: 400; + .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\:font-medium { - font-weight: 500; + .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\:font-semibold { - font-weight: 600; + .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\:font-bold { - font-weight: 700; + .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\:font-extrabold { - font-weight: 800; + .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\:font-black { - font-weight: 900; + .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\:h-0 { - height: 0px; + .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\:h-1 { - height: 0.25rem; + .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\:h-2 { - height: 0.5rem; + .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\:h-3 { - height: 0.75rem; + .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\:h-4 { - height: 1rem; + .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\:h-5 { - height: 1.25rem; + .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\:h-6 { - height: 1.5rem; + .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\:h-7 { - height: 1.75rem; + .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\:h-8 { - height: 2rem; + .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\:h-9 { - height: 2.25rem; + .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\:h-10 { - height: 2.5rem; + .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\:h-11 { - height: 2.75rem; + .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\:h-12 { - height: 3rem; + .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\:h-14 { - height: 3.5rem; + .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\:h-16 { - height: 4rem; + .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\:h-20 { - height: 5rem; + .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\:h-24 { - height: 6rem; + .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\:h-28 { - height: 7rem; + .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\:h-32 { - height: 8rem; + .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\:h-36 { - height: 9rem; + .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\:h-40 { - height: 10rem; + .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\:h-44 { - height: 11rem; + .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\:h-48 { - height: 12rem; + .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\:h-52 { - height: 13rem; + .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\:h-56 { - height: 14rem; + .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\:h-60 { - height: 15rem; + .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\:h-64 { - height: 16rem; + .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\:h-72 { - height: 18rem; + .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\:h-80 { - height: 20rem; + .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\:h-96 { - height: 24rem; + .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\:h-auto { - height: auto; + .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\:h-px { - height: 1px; + .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\:h-0\.5 { - height: 0.125rem; + .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\:h-1\.5 { - height: 0.375rem; + .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\:h-2\.5 { - height: 0.625rem; + .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\:h-3\.5 { - height: 0.875rem; + .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\:h-1\/2 { - height: 50%; + .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\:h-1\/3 { - height: 33.333333%; + .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\:h-2\/3 { - height: 66.666667%; + .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\:h-1\/4 { - height: 25%; + .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\:h-2\/4 { - height: 50%; + .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\:h-3\/4 { - height: 75%; + .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\:h-1\/5 { - height: 20%; + .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\:h-2\/5 { - height: 40%; + .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\:h-3\/5 { - height: 60%; + .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\:h-4\/5 { - height: 80%; + .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\:h-1\/6 { - height: 16.666667%; + .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\:h-2\/6 { - height: 33.333333%; + .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\:h-3\/6 { - height: 50%; + .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\:h-4\/6 { - height: 66.666667%; + .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\:h-5\/6 { - height: 83.333333%; + .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\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .md\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .md\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .md\:leading-7 { - line-height: 1.75rem; + .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .md\:leading-8 { - line-height: 2rem; + .md\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .md\:leading-9 { - line-height: 2.25rem; + .md\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .md\:leading-10 { - line-height: 2.5rem; + .md\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .md\:leading-none { - line-height: 1; + .md\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .md\:leading-tight { - line-height: 1.25; + .md\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .md\:leading-snug { - line-height: 1.375; + .md\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .md\:leading-normal { - line-height: 1.5; + .md\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .md\:leading-relaxed { - line-height: 1.625; + .md\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } - .md\:leading-loose { - line-height: 2; + .md\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } - .md\:list-inside { - list-style-position: inside; + .md\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } - .md\:list-outside { - list-style-position: outside; + .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } - .md\:list-none { - list-style-type: none; + .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } - .md\:list-disc { - list-style-type: disc; + .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } - .md\:list-decimal { - list-style-type: decimal; + .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } - .md\:m-0 { - margin: 0px; + .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } - .md\:m-1 { - margin: 0.25rem; + .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } - .md\:m-2 { - margin: 0.5rem; + .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } - .md\:m-3 { - margin: 0.75rem; + .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } - .md\:m-4 { - margin: 1rem; + .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } - .md\:m-5 { - margin: 1.25rem; + .md\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } - .md\:m-6 { - margin: 1.5rem; + .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } - .md\:m-7 { - margin: 1.75rem; + .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } - .md\:m-8 { - margin: 2rem; + .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } - .md\:m-9 { - margin: 2.25rem; + .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } - .md\:m-10 { - margin: 2.5rem; + .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } - .md\:m-11 { - margin: 2.75rem; + .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } - .md\:m-12 { - margin: 3rem; + .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } - .md\:m-14 { - margin: 3.5rem; + .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } - .md\:m-16 { - margin: 4rem; + .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } - .md\:m-20 { - margin: 5rem; + .md\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } - .md\:m-24 { - margin: 6rem; + .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } - .md\:m-28 { - margin: 7rem; + .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } - .md\:m-32 { - margin: 8rem; + .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } - .md\:m-36 { - margin: 9rem; + .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } - .md\:m-40 { - margin: 10rem; + .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } - .md\:m-44 { - margin: 11rem; + .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } - .md\:m-48 { - margin: 12rem; + .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } - .md\:m-52 { - margin: 13rem; + .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } - .md\:m-56 { - margin: 14rem; + .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } - .md\:m-60 { - margin: 15rem; + .md\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } - .md\:m-64 { - margin: 16rem; + .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } - .md\:m-72 { - margin: 18rem; + .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } - .md\:m-80 { - margin: 20rem; + .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } - .md\:m-96 { - margin: 24rem; + .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } - .md\:m-auto { - margin: auto; + .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } - .md\:m-px { - margin: 1px; + .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } - .md\:m-0\.5 { - margin: 0.125rem; + .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } - .md\:m-1\.5 { - margin: 0.375rem; + .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } - .md\:m-2\.5 { - margin: 0.625rem; + .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } - .md\:m-3\.5 { - margin: 0.875rem; + .md\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } - .md\:-m-0 { - margin: 0px; + .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } - .md\:-m-1 { - margin: -0.25rem; + .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } - .md\:-m-2 { - margin: -0.5rem; + .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } - .md\:-m-3 { - margin: -0.75rem; + .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } - .md\:-m-4 { - margin: -1rem; + .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } - .md\:-m-5 { - margin: -1.25rem; + .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } - .md\:-m-6 { - margin: -1.5rem; + .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } - .md\:-m-7 { - margin: -1.75rem; + .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } - .md\:-m-8 { - margin: -2rem; + .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } - .md\:-m-9 { - margin: -2.25rem; + .md\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } - .md\:-m-10 { - margin: -2.5rem; + .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } - .md\:-m-11 { - margin: -2.75rem; + .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } - .md\:-m-12 { - margin: -3rem; + .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } - .md\:-m-14 { - margin: -3.5rem; + .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } - .md\:-m-16 { - margin: -4rem; + .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } - .md\:-m-20 { - margin: -5rem; + .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } - .md\:-m-24 { - margin: -6rem; + .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } - .md\:-m-28 { - margin: -7rem; + .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } - .md\:-m-32 { - margin: -8rem; + .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } - .md\:-m-36 { - margin: -9rem; + .md\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } - .md\:-m-40 { - margin: -10rem; + .md\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } - .md\:-m-44 { - margin: -11rem; + .md\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } - .md\:-m-48 { - margin: -12rem; + .md\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } - .md\:-m-52 { - margin: -13rem; + .md\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } - .md\:-m-56 { - margin: -14rem; + .md\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } - .md\:-m-60 { - margin: -15rem; + .md\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } - .md\:-m-64 { - margin: -16rem; + .md\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } - .md\:-m-72 { - margin: -18rem; + .md\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } - .md\:-m-80 { - margin: -20rem; + .md\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } - .md\:-m-96 { - margin: -24rem; + .md\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } - .md\:-m-px { - margin: -1px; + .md\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } - .md\:-m-0\.5 { - margin: -0.125rem; + .md\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } - .md\:-m-1\.5 { - margin: -0.375rem; + .md\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } - .md\:-m-2\.5 { - margin: -0.625rem; + .md\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } - .md\:-m-3\.5 { - margin: -0.875rem; + .md\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } - .md\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .md\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } - .md\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .md\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } - .md\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .md\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } - .md\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .md\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } - .md\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .md\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } - .md\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .md\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } - .md\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .md\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } - .md\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .md\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } - .md\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .md\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } - .md\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .md\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } - .md\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .md\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } - .md\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .md\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } - .md\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .md\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } - .md\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .md\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } - .md\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .md\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } - .md\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .md\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } - .md\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .md\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } - .md\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .md\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } - .md\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .md\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } - .md\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .md\:place-self-auto { + place-self: auto; } - .md\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .md\:place-self-start { + place-self: start; } - .md\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .md\:place-self-end { + place-self: end; } - .md\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .md\:place-self-center { + place-self: center; } - .md\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .md\:place-self-stretch { + place-self: stretch; } - .md\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .md\:self-auto { + align-self: auto; } - .md\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .md\:self-start { + align-self: flex-start; } - .md\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .md\:self-end { + align-self: flex-end; } - .md\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .md\:self-center { + align-self: center; } - .md\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .md\:self-stretch { + align-self: stretch; } - .md\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .md\:justify-self-auto { + justify-self: auto; } - .md\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .md\:justify-self-start { + justify-self: start; } - .md\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .md\:justify-self-end { + justify-self: end; } - .md\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .md\:justify-self-center { + justify-self: center; } - .md\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .md\:justify-self-stretch { + justify-self: stretch; } - .md\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .md\:overflow-auto { + overflow: auto; } - .md\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .md\:overflow-hidden { + overflow: hidden; } - .md\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .md\:overflow-visible { + overflow: visible; } - .md\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .md\:overflow-scroll { + overflow: scroll; } - .md\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .md\:overflow-x-auto { + overflow-x: auto; } - .md\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .md\:overflow-y-auto { + overflow-y: auto; } - .md\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .md\:overflow-x-hidden { + overflow-x: hidden; } - .md\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .md\:overflow-y-hidden { + overflow-y: hidden; } - .md\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .md\:overflow-x-visible { + overflow-x: visible; } - .md\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .md\:overflow-y-visible { + overflow-y: visible; } - .md\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .md\:overflow-x-scroll { + overflow-x: scroll; } - .md\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .md\:overflow-y-scroll { + overflow-y: scroll; } - .md\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .md\:overscroll-auto { + overscroll-behavior: auto; } - .md\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .md\:overscroll-contain { + overscroll-behavior: contain; } - .md\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .md\:overscroll-none { + overscroll-behavior: none; } - .md\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .md\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .md\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .md\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .md\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .md\:overscroll-y-none { + overscroll-behavior-y: none; } - .md\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .md\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .md\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .md\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .md\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .md\:overscroll-x-none { + overscroll-behavior-x: none; } - .md\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .md\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .md\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .md\:overflow-ellipsis { + text-overflow: ellipsis; } - .md\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .md\:overflow-clip { + text-overflow: clip; } - .md\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .md\:whitespace-normal { + white-space: normal; } - .md\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .md\:whitespace-nowrap { + white-space: nowrap; } - .md\:my-auto { - margin-top: auto; - margin-bottom: auto; + .md\:whitespace-pre { + white-space: pre; } - .md\:mx-auto { - margin-left: auto; - margin-right: auto; + .md\:whitespace-pre-line { + white-space: pre-line; } - .md\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .md\:whitespace-pre-wrap { + white-space: pre-wrap; } - .md\:mx-px { - margin-left: 1px; - margin-right: 1px; + .md\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .md\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .md\:break-words { + overflow-wrap: break-word; } - .md\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .md\:break-all { + word-break: break-all; } - .md\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .md\:rounded-none { + border-radius: 0px; } - .md\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .md\:rounded-sm { + border-radius: 0.125rem; } - .md\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .md\:rounded { + border-radius: 0.25rem; } - .md\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .md\:rounded-md { + border-radius: 0.375rem; } - .md\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .md\:rounded-lg { + border-radius: 0.5rem; } - .md\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .md\:rounded-xl { + border-radius: 0.75rem; } - .md\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .md\:rounded-2xl { + border-radius: 1rem; } - .md\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .md\:rounded-3xl { + border-radius: 1.5rem; } - .md\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .md\:rounded-full { + border-radius: 9999px; } - .md\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .md\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .md\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .md\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .md\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .md\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .md\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .md\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .md\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .md\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .md\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .md\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .md\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .md\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .md\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .md\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .md\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .md\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .md\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .md\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .md\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .md\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .md\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .md\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .md\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .md\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .md\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .md\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .md\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .md\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .md\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .md\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .md\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .md\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .md\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .md\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .md\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .md\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .md\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .md\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .md\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .md\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .md\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .md\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .md\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .md\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .md\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .md\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .md\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .md\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .md\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .md\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .md\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .md\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .md\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .md\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .md\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .md\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .md\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .md\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .md\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .md\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .md\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .md\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .md\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .md\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .md\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .md\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .md\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .md\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .md\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .md\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .md\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .md\:rounded-tl-none { + border-top-left-radius: 0px; } - .md\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .md\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .md\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .md\:rounded-tl { + border-top-left-radius: 0.25rem; } - .md\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .md\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .md\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .md\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .md\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .md\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .md\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .md\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .md\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .md\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .md\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .md\:rounded-tl-full { + border-top-left-radius: 9999px; } - .md\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .md\:rounded-tr-none { + border-top-right-radius: 0px; } - .md\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .md\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .md\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .md\:rounded-tr { + border-top-right-radius: 0.25rem; } - .md\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .md\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .md\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .md\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .md\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .md\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .md\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .md\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .md\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .md\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .md\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .md\:rounded-tr-full { + border-top-right-radius: 9999px; } - .md\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .md\:rounded-br-none { + border-bottom-right-radius: 0px; } - .md\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .md\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .md\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .md\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .md\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .md\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .md\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .md\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .md\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .md\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .md\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .md\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .md\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .md\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .md\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .md\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .md\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .md\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .md\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .md\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .md\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .md\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .md\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .md\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .md\:mt-0 { - margin-top: 0px; + .md\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .md\:mr-0 { - margin-right: 0px; + .md\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .md\:mb-0 { - margin-bottom: 0px; + .md\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .md\:ml-0 { - margin-left: 0px; + .md\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .md\:mt-1 { - margin-top: 0.25rem; + .md\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .md\:mr-1 { - margin-right: 0.25rem; + .md\:border-0 { + border-width: 0px; } - .md\:mb-1 { - margin-bottom: 0.25rem; + .md\:border-2 { + border-width: 2px; } - .md\:ml-1 { - margin-left: 0.25rem; + .md\:border-4 { + border-width: 4px; } - .md\:mt-2 { - margin-top: 0.5rem; + .md\:border-8 { + border-width: 8px; } - .md\:mr-2 { - margin-right: 0.5rem; + .md\:border { + border-width: 1px; } - .md\:mb-2 { - margin-bottom: 0.5rem; + .md\:border-t-0 { + border-top-width: 0px; } - .md\:ml-2 { - margin-left: 0.5rem; + .md\:border-t-2 { + border-top-width: 2px; } - .md\:mt-3 { - margin-top: 0.75rem; + .md\:border-t-4 { + border-top-width: 4px; } - .md\:mr-3 { - margin-right: 0.75rem; + .md\:border-t-8 { + border-top-width: 8px; } - .md\:mb-3 { - margin-bottom: 0.75rem; + .md\:border-t { + border-top-width: 1px; } - .md\:ml-3 { - margin-left: 0.75rem; + .md\:border-r-0 { + border-right-width: 0px; } - .md\:mt-4 { - margin-top: 1rem; + .md\:border-r-2 { + border-right-width: 2px; } - .md\:mr-4 { - margin-right: 1rem; + .md\:border-r-4 { + border-right-width: 4px; } - .md\:mb-4 { - margin-bottom: 1rem; + .md\:border-r-8 { + border-right-width: 8px; } - .md\:ml-4 { - margin-left: 1rem; + .md\:border-r { + border-right-width: 1px; } - .md\:mt-5 { - margin-top: 1.25rem; + .md\:border-b-0 { + border-bottom-width: 0px; } - .md\:mr-5 { - margin-right: 1.25rem; + .md\:border-b-2 { + border-bottom-width: 2px; } - .md\:mb-5 { - margin-bottom: 1.25rem; + .md\:border-b-4 { + border-bottom-width: 4px; } - .md\:ml-5 { - margin-left: 1.25rem; + .md\:border-b-8 { + border-bottom-width: 8px; } - .md\:mt-6 { - margin-top: 1.5rem; + .md\:border-b { + border-bottom-width: 1px; } - .md\:mr-6 { - margin-right: 1.5rem; + .md\:border-l-0 { + border-left-width: 0px; } - .md\:mb-6 { - margin-bottom: 1.5rem; + .md\:border-l-2 { + border-left-width: 2px; } - .md\:ml-6 { - margin-left: 1.5rem; + .md\:border-l-4 { + border-left-width: 4px; } - .md\:mt-7 { - margin-top: 1.75rem; + .md\:border-l-8 { + border-left-width: 8px; } - .md\:mr-7 { - margin-right: 1.75rem; + .md\:border-l { + border-left-width: 1px; } - .md\:mb-7 { - margin-bottom: 1.75rem; + .md\:border-solid { + border-style: solid; } - .md\:ml-7 { - margin-left: 1.75rem; + .md\:border-dashed { + border-style: dashed; } - .md\:mt-8 { - margin-top: 2rem; + .md\:border-dotted { + border-style: dotted; } - .md\:mr-8 { - margin-right: 2rem; + .md\:border-double { + border-style: double; } - .md\:mb-8 { - margin-bottom: 2rem; + .md\:border-none { + border-style: none; } - .md\:ml-8 { - margin-left: 2rem; + .md\:border-transparent { + border-color: transparent; } - .md\:mt-9 { - margin-top: 2.25rem; + .md\:border-current { + border-color: currentColor; } - .md\:mr-9 { - margin-right: 2.25rem; + .md\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .md\:mb-9 { - margin-bottom: 2.25rem; + .md\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .md\:ml-9 { - margin-left: 2.25rem; + .md\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .md\:mt-10 { - margin-top: 2.5rem; + .md\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .md\:mr-10 { - margin-right: 2.5rem; + .md\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .md\:mb-10 { - margin-bottom: 2.5rem; + .md\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .md\:ml-10 { - margin-left: 2.5rem; + .md\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .md\:mt-11 { - margin-top: 2.75rem; + .md\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .md\:mr-11 { - margin-right: 2.75rem; + .md\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .md\:mb-11 { - margin-bottom: 2.75rem; + .md\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .md\:ml-11 { - margin-left: 2.75rem; + .md\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .md\:mt-12 { - margin-top: 3rem; + .md\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .md\:mr-12 { - margin-right: 3rem; + .md\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .md\:mb-12 { - margin-bottom: 3rem; + .md\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .md\:ml-12 { - margin-left: 3rem; + .md\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .md\:mt-14 { - margin-top: 3.5rem; + .md\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .md\:mr-14 { - margin-right: 3.5rem; + .md\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .md\:mb-14 { - margin-bottom: 3.5rem; + .md\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .md\:ml-14 { - margin-left: 3.5rem; + .md\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .md\:mt-16 { - margin-top: 4rem; + .md\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .md\:mr-16 { - margin-right: 4rem; + .md\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .md\:mb-16 { - margin-bottom: 4rem; + .md\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .md\:ml-16 { - margin-left: 4rem; + .md\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .md\:mt-20 { - margin-top: 5rem; + .md\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .md\:mr-20 { - margin-right: 5rem; + .md\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .md\:mb-20 { - margin-bottom: 5rem; + .md\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .md\:ml-20 { - margin-left: 5rem; + .md\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .md\:mt-24 { - margin-top: 6rem; + .md\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .md\:mr-24 { - margin-right: 6rem; + .md\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .md\:mb-24 { - margin-bottom: 6rem; + .md\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .md\:ml-24 { - margin-left: 6rem; + .md\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .md\:mt-28 { - margin-top: 7rem; + .md\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .md\:mr-28 { - margin-right: 7rem; + .md\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .md\:mb-28 { - margin-bottom: 7rem; + .md\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .md\:ml-28 { - margin-left: 7rem; + .md\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .md\:mt-32 { - margin-top: 8rem; + .md\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .md\:mr-32 { - margin-right: 8rem; + .md\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .md\:mb-32 { - margin-bottom: 8rem; + .md\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .md\:ml-32 { - margin-left: 8rem; + .md\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .md\:mt-36 { - margin-top: 9rem; + .md\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .md\:mr-36 { - margin-right: 9rem; + .md\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .md\:mb-36 { - margin-bottom: 9rem; + .md\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .md\:ml-36 { - margin-left: 9rem; + .md\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .md\:mt-40 { - margin-top: 10rem; + .md\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .md\:mr-40 { - margin-right: 10rem; + .md\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .md\:mb-40 { - margin-bottom: 10rem; + .md\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .md\:ml-40 { - margin-left: 10rem; + .md\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .md\:mt-44 { - margin-top: 11rem; + .md\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .md\:mr-44 { - margin-right: 11rem; + .md\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .md\:mb-44 { - margin-bottom: 11rem; + .md\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .md\:ml-44 { - margin-left: 11rem; + .md\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .md\:mt-48 { - margin-top: 12rem; + .md\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .md\:mr-48 { - margin-right: 12rem; + .md\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .md\:mb-48 { - margin-bottom: 12rem; + .md\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .md\:ml-48 { - margin-left: 12rem; + .md\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .md\:mt-52 { - margin-top: 13rem; + .md\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .md\:mr-52 { - margin-right: 13rem; + .md\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .md\:mb-52 { - margin-bottom: 13rem; + .md\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .md\:ml-52 { - margin-left: 13rem; + .md\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .md\:mt-56 { - margin-top: 14rem; + .md\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .md\:mr-56 { - margin-right: 14rem; + .md\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .md\:mb-56 { - margin-bottom: 14rem; + .md\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .md\:ml-56 { - margin-left: 14rem; + .md\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .md\:mt-60 { - margin-top: 15rem; + .md\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .md\:mr-60 { - margin-right: 15rem; + .md\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .md\:mb-60 { - margin-bottom: 15rem; + .md\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .md\:ml-60 { - margin-left: 15rem; + .md\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .md\:mt-64 { - margin-top: 16rem; + .md\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .md\:mr-64 { - margin-right: 16rem; + .md\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .md\:mb-64 { - margin-bottom: 16rem; + .md\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .md\:ml-64 { - margin-left: 16rem; + .md\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .md\:mt-72 { - margin-top: 18rem; + .md\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .md\:mr-72 { - margin-right: 18rem; + .md\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .md\:mb-72 { - margin-bottom: 18rem; + .md\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .md\:ml-72 { - margin-left: 18rem; + .md\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .md\:mt-80 { - margin-top: 20rem; + .md\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + } + + .md\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .md\:mr-80 { - margin-right: 20rem; + .md\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .md\:mb-80 { - margin-bottom: 20rem; + .md\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .md\:ml-80 { - margin-left: 20rem; + .md\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .md\:mt-96 { - margin-top: 24rem; + .md\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .md\:mr-96 { - margin-right: 24rem; + .md\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .md\:mb-96 { - margin-bottom: 24rem; + .group:hover .md\:group-hover\:border-transparent { + border-color: transparent; } - .md\:ml-96 { - margin-left: 24rem; + .group:hover .md\:group-hover\:border-current { + border-color: currentColor; } - .md\:mt-auto { - margin-top: auto; + .group:hover .md\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .md\:mr-auto { - margin-right: auto; + .group:hover .md\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .md\:mb-auto { - margin-bottom: auto; + .group:hover .md\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .md\:ml-auto { - margin-left: auto; + .group:hover .md\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .md\:mt-px { - margin-top: 1px; + .group:hover .md\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .md\:mr-px { - margin-right: 1px; + .group:hover .md\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .md\:mb-px { - margin-bottom: 1px; + .group:hover .md\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .md\:ml-px { - margin-left: 1px; + .group:hover .md\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .md\:mt-0\.5 { - margin-top: 0.125rem; + .group:hover .md\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .md\:mr-0\.5 { - margin-right: 0.125rem; + .group:hover .md\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .md\:mb-0\.5 { - margin-bottom: 0.125rem; + .group:hover .md\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .md\:ml-0\.5 { - margin-left: 0.125rem; + .group:hover .md\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .md\:mt-1\.5 { - margin-top: 0.375rem; + .group:hover .md\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .md\:mr-1\.5 { - margin-right: 0.375rem; + .group:hover .md\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .md\:mb-1\.5 { - margin-bottom: 0.375rem; + .group:hover .md\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .md\:ml-1\.5 { - margin-left: 0.375rem; + .group:hover .md\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .md\:mt-2\.5 { - margin-top: 0.625rem; + .group:hover .md\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .md\:mr-2\.5 { - margin-right: 0.625rem; + .group:hover .md\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .md\:mb-2\.5 { - margin-bottom: 0.625rem; + .group:hover .md\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .md\:ml-2\.5 { - margin-left: 0.625rem; + .group:hover .md\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .md\:mt-3\.5 { - margin-top: 0.875rem; + .group:hover .md\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .md\:mr-3\.5 { - margin-right: 0.875rem; + .group:hover .md\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .md\:mb-3\.5 { - margin-bottom: 0.875rem; + .group:hover .md\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .md\:ml-3\.5 { - margin-left: 0.875rem; + .group:hover .md\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .md\:-mt-0 { - margin-top: 0px; + .group:hover .md\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .md\:-mr-0 { - margin-right: 0px; + .group:hover .md\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .md\:-mb-0 { - margin-bottom: 0px; + .group:hover .md\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .md\:-ml-0 { - margin-left: 0px; + .group:hover .md\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .md\:-mt-1 { - margin-top: -0.25rem; + .group:hover .md\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .md\:-mr-1 { - margin-right: -0.25rem; + .group:hover .md\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .md\:-mb-1 { - margin-bottom: -0.25rem; + .group:hover .md\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .md\:-ml-1 { - margin-left: -0.25rem; + .group:hover .md\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .md\:-mt-2 { - margin-top: -0.5rem; + .group:hover .md\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .md\:-mr-2 { - margin-right: -0.5rem; + .group:hover .md\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .md\:-mb-2 { - margin-bottom: -0.5rem; + .group:hover .md\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .md\:-ml-2 { - margin-left: -0.5rem; + .group:hover .md\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .md\:-mt-3 { - margin-top: -0.75rem; + .group:hover .md\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .md\:-mr-3 { - margin-right: -0.75rem; + .group:hover .md\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .md\:-mb-3 { - margin-bottom: -0.75rem; + .group:hover .md\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .md\:-ml-3 { - margin-left: -0.75rem; + .group:hover .md\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .md\:-mt-4 { - margin-top: -1rem; + .group:hover .md\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .md\:-mr-4 { - margin-right: -1rem; + .group:hover .md\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .md\:-mb-4 { - margin-bottom: -1rem; + .group:hover .md\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .md\:-ml-4 { - margin-left: -1rem; + .group:hover .md\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .md\:-mt-5 { - margin-top: -1.25rem; + .group:hover .md\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .md\:-mr-5 { - margin-right: -1.25rem; + .group:hover .md\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .md\:-mb-5 { - margin-bottom: -1.25rem; + .group:hover .md\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .md\:-ml-5 { - margin-left: -1.25rem; + .group:hover .md\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .md\:-mt-6 { - margin-top: -1.5rem; + .group:hover .md\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .md\:-mr-6 { - margin-right: -1.5rem; + .group:hover .md\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .md\:-mb-6 { - margin-bottom: -1.5rem; + .group:hover .md\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .md\:-ml-6 { - margin-left: -1.5rem; + .group:hover .md\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .md\:-mt-7 { - margin-top: -1.75rem; + .group:hover .md\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .md\:-mr-7 { - margin-right: -1.75rem; + .group:hover .md\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .md\:-mb-7 { - margin-bottom: -1.75rem; + .group:hover .md\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .md\:-ml-7 { - margin-left: -1.75rem; + .group:hover .md\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .md\:-mt-8 { - margin-top: -2rem; + .group:hover .md\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .md\:-mr-8 { - margin-right: -2rem; + .group:hover .md\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .md\:-mb-8 { - margin-bottom: -2rem; + .group:hover .md\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .md\:-ml-8 { - margin-left: -2rem; + .group:hover .md\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .md\:-mt-9 { - margin-top: -2.25rem; + .group:hover .md\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .md\:-mr-9 { - margin-right: -2.25rem; + .group:hover .md\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .md\:-mb-9 { - margin-bottom: -2.25rem; + .group:hover .md\:group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .md\:-ml-9 { - margin-left: -2.25rem; + .group:hover .md\:group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .md\:-mt-10 { - margin-top: -2.5rem; + .group:hover .md\:group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .md\:-mr-10 { - margin-right: -2.5rem; + .group:hover .md\:group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .md\:-mb-10 { - margin-bottom: -2.5rem; + .group:hover .md\:group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .md\:-ml-10 { - margin-left: -2.5rem; + .group:hover .md\:group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .md\:-mt-11 { - margin-top: -2.75rem; + .group:hover .md\:group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .md\:-mr-11 { - margin-right: -2.75rem; + .group:hover .md\:group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .md\:-mb-11 { - margin-bottom: -2.75rem; + .group:hover .md\:group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .md\:-ml-11 { - margin-left: -2.75rem; + .group:hover .md\:group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .md\:-mt-12 { - margin-top: -3rem; + .group:hover .md\:group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .md\:-mr-12 { - margin-right: -3rem; + .group:hover .md\:group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .md\:-mb-12 { - margin-bottom: -3rem; + .group:hover .md\:group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .md\:-ml-12 { - margin-left: -3rem; + .group:hover .md\:group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .md\:-mt-14 { - margin-top: -3.5rem; + .group:hover .md\:group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .md\:-mr-14 { - margin-right: -3.5rem; + .group:hover .md\:group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .md\:-mb-14 { - margin-bottom: -3.5rem; + .group:hover .md\:group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .md\:-ml-14 { - margin-left: -3.5rem; + .group:hover .md\:group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .md\:-mt-16 { - margin-top: -4rem; + .group:hover .md\:group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .md\:-mr-16 { - margin-right: -4rem; + .group:hover .md\:group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .md\:-mb-16 { - margin-bottom: -4rem; + .md\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .md\:-ml-16 { - margin-left: -4rem; + .md\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .md\:-mt-20 { - margin-top: -5rem; + .md\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .md\:-mr-20 { - margin-right: -5rem; + .md\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .md\:-mb-20 { - margin-bottom: -5rem; + .md\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .md\:-ml-20 { - margin-left: -5rem; + .md\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .md\:-mt-24 { - margin-top: -6rem; + .md\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .md\:-mr-24 { - margin-right: -6rem; + .md\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .md\:-mb-24 { - margin-bottom: -6rem; + .md\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .md\:-ml-24 { - margin-left: -6rem; + .md\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .md\:-mt-28 { - margin-top: -7rem; + .md\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .md\:-mr-28 { - margin-right: -7rem; + .md\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .md\:-mb-28 { - margin-bottom: -7rem; + .md\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .md\:-ml-28 { - margin-left: -7rem; + .md\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .md\:-mt-32 { - margin-top: -8rem; + .md\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .md\:-mr-32 { - margin-right: -8rem; + .md\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .md\:-mb-32 { - margin-bottom: -8rem; + .md\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .md\:-ml-32 { - margin-left: -8rem; + .md\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .md\:-mt-36 { - margin-top: -9rem; + .md\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .md\:-mr-36 { - margin-right: -9rem; + .md\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .md\:-mb-36 { - margin-bottom: -9rem; + .md\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .md\:-ml-36 { - margin-left: -9rem; + .md\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .md\:-mt-40 { - margin-top: -10rem; + .md\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .md\:-mr-40 { - margin-right: -10rem; + .md\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .md\:-mb-40 { - margin-bottom: -10rem; + .md\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .md\:-ml-40 { - margin-left: -10rem; + .md\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .md\:-mt-44 { - margin-top: -11rem; + .md\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .md\:-mr-44 { - margin-right: -11rem; + .md\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .md\:-mb-44 { - margin-bottom: -11rem; + .md\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .md\:-ml-44 { - margin-left: -11rem; + .md\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .md\:-mt-48 { - margin-top: -12rem; + .md\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .md\:-mr-48 { - margin-right: -12rem; + .md\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .md\:-mb-48 { - margin-bottom: -12rem; + .md\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .md\:-ml-48 { - margin-left: -12rem; + .md\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .md\:-mt-52 { - margin-top: -13rem; + .md\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .md\:-mr-52 { - margin-right: -13rem; + .md\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .md\:-mb-52 { - margin-bottom: -13rem; + .md\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .md\:-ml-52 { - margin-left: -13rem; + .md\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .md\:-mt-56 { - margin-top: -14rem; + .md\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .md\:-mr-56 { - margin-right: -14rem; + .md\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .md\:-mb-56 { - margin-bottom: -14rem; + .md\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .md\:-ml-56 { - margin-left: -14rem; + .md\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .md\:-mt-60 { - margin-top: -15rem; + .md\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .md\:-mr-60 { - margin-right: -15rem; + .md\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .md\:-mb-60 { - margin-bottom: -15rem; + .md\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .md\:-ml-60 { - margin-left: -15rem; + .md\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .md\:-mt-64 { - margin-top: -16rem; + .md\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .md\:-mr-64 { - margin-right: -16rem; + .md\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .md\:-mb-64 { - margin-bottom: -16rem; + .md\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .md\:-ml-64 { - margin-left: -16rem; + .md\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .md\:-mt-72 { - margin-top: -18rem; + .md\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .md\:-mr-72 { - margin-right: -18rem; + .md\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .md\:-mb-72 { - margin-bottom: -18rem; + .md\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .md\:-ml-72 { - margin-left: -18rem; + .md\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .md\:-mt-80 { - margin-top: -20rem; + .md\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .md\:-mr-80 { - margin-right: -20rem; + .md\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .md\:-mb-80 { - margin-bottom: -20rem; + .md\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .md\:-ml-80 { - margin-left: -20rem; + .md\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .md\:-mt-96 { - margin-top: -24rem; + .md\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .md\:-mr-96 { - margin-right: -24rem; + .md\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .md\:-mb-96 { - margin-bottom: -24rem; + .md\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .md\:-ml-96 { - margin-left: -24rem; + .md\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .md\:-mt-px { - margin-top: -1px; + .md\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .md\:-mr-px { - margin-right: -1px; + .md\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .md\:-mb-px { - margin-bottom: -1px; + .md\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .md\:-ml-px { - margin-left: -1px; + .md\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .md\:-mt-0\.5 { - margin-top: -0.125rem; + .md\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .md\:-mr-0\.5 { - margin-right: -0.125rem; + .md\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .md\:-mb-0\.5 { - margin-bottom: -0.125rem; + .md\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .md\:-ml-0\.5 { - margin-left: -0.125rem; + .md\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .md\:-mt-1\.5 { - margin-top: -0.375rem; + .md\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .md\:-mr-1\.5 { - margin-right: -0.375rem; + .md\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .md\:-mb-1\.5 { - margin-bottom: -0.375rem; + .md\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .md\:-ml-1\.5 { - margin-left: -0.375rem; + .md\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .md\:-mt-2\.5 { - margin-top: -0.625rem; + .md\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .md\:-mr-2\.5 { - margin-right: -0.625rem; + .md\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .md\:-mb-2\.5 { - margin-bottom: -0.625rem; + .md\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .md\:-ml-2\.5 { - margin-left: -0.625rem; + .md\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .md\:-mt-3\.5 { - margin-top: -0.875rem; + .md\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .md\:-mr-3\.5 { - margin-right: -0.875rem; + .md\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .md\:-mb-3\.5 { - margin-bottom: -0.875rem; + .md\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .md\:-ml-3\.5 { - margin-left: -0.875rem; + .md\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .md\:max-h-0 { - max-height: 0px; + .md\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .md\:max-h-1 { - max-height: 0.25rem; + .md\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .md\:max-h-2 { - max-height: 0.5rem; + .md\:hover\:border-transparent:hover { + border-color: transparent; } - .md\:max-h-3 { - max-height: 0.75rem; + .md\:hover\:border-current:hover { + border-color: currentColor; } - .md\:max-h-4 { - max-height: 1rem; + .md\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .md\:max-h-5 { - max-height: 1.25rem; + .md\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .md\:max-h-6 { - max-height: 1.5rem; + .md\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .md\:max-h-7 { - max-height: 1.75rem; + .md\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .md\:max-h-8 { - max-height: 2rem; + .md\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .md\:max-h-9 { - max-height: 2.25rem; + .md\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .md\:max-h-10 { - max-height: 2.5rem; + .md\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .md\:max-h-11 { - max-height: 2.75rem; + .md\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .md\:max-h-12 { - max-height: 3rem; + .md\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .md\:max-h-14 { - max-height: 3.5rem; + .md\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .md\:max-h-16 { - max-height: 4rem; + .md\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .md\:max-h-20 { - max-height: 5rem; + .md\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .md\:max-h-24 { - max-height: 6rem; + .md\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .md\:max-h-28 { - max-height: 7rem; + .md\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .md\:max-h-32 { - max-height: 8rem; + .md\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .md\:max-h-36 { - max-height: 9rem; + .md\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .md\:max-h-40 { - max-height: 10rem; + .md\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .md\:max-h-44 { - max-height: 11rem; + .md\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .md\:max-h-48 { - max-height: 12rem; + .md\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .md\:max-h-52 { - max-height: 13rem; + .md\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .md\:max-h-56 { - max-height: 14rem; + .md\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .md\:max-h-60 { - max-height: 15rem; + .md\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .md\:max-h-64 { - max-height: 16rem; + .md\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .md\:max-h-72 { - max-height: 18rem; + .md\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .md\:max-h-80 { - max-height: 20rem; + .md\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .md\:max-h-96 { - max-height: 24rem; + .md\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .md\:max-h-px { - max-height: 1px; + .md\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .md\:max-h-0\.5 { - max-height: 0.125rem; + .md\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .md\:max-h-1\.5 { - max-height: 0.375rem; + .md\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .md\:max-h-2\.5 { - max-height: 0.625rem; + .md\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .md\:max-h-3\.5 { - max-height: 0.875rem; + .md\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .md\:max-h-full { - max-height: 100%; + .md\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .md\:max-h-screen { - max-height: 100vh; + .md\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .md\:max-w-0 { - max-width: 0rem; + .md\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .md\:max-w-none { - max-width: none; + .md\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .md\:max-w-xs { - max-width: 20rem; + .md\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .md\:max-w-sm { - max-width: 24rem; + .md\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .md\:max-w-md { - max-width: 28rem; + .md\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .md\:max-w-lg { - max-width: 32rem; + .md\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .md\:max-w-xl { - max-width: 36rem; + .md\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .md\:max-w-2xl { - max-width: 42rem; + .md\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .md\:max-w-3xl { - max-width: 48rem; + .md\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .md\:max-w-4xl { - max-width: 56rem; + .md\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .md\:max-w-5xl { - max-width: 64rem; + .md\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .md\:max-w-6xl { - max-width: 72rem; + .md\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .md\:max-w-7xl { - max-width: 80rem; + .md\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .md\:max-w-full { - max-width: 100%; + .md\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .md\:max-w-min { - max-width: min-content; + .md\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .md\:max-w-max { - max-width: max-content; + .md\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .md\:max-w-prose { - max-width: 65ch; + .md\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .md\:max-w-screen-sm { - max-width: 640px; + .md\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .md\:max-w-screen-md { - max-width: 768px; + .md\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .md\:max-w-screen-lg { - max-width: 1024px; + .md\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .md\:max-w-screen-xl { - max-width: 1280px; + .md\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .md\:max-w-screen-2xl { - max-width: 1536px; + .md\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .md\:min-h-0 { - min-height: 0px; + .md\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .md\:min-h-full { - min-height: 100%; + .md\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .md\:min-h-screen { - min-height: 100vh; + .md\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .md\:min-w-0 { - min-width: 0px; + .md\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .md\:min-w-full { - min-width: 100%; + .md\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .md\:min-w-min { - min-width: min-content; + .md\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .md\:min-w-max { - min-width: max-content; + .md\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .md\:object-contain { - object-fit: contain; + .md\:hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .md\:object-cover { - object-fit: cover; + .md\:hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .md\:object-fill { - object-fit: fill; + .md\:hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .md\:object-none { - object-fit: none; + .md\:hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .md\:object-scale-down { - object-fit: scale-down; + .md\:hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .md\:object-bottom { - object-position: bottom; + .md\:hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .md\:object-center { - object-position: center; + .md\:hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .md\:object-left { - object-position: left; + .md\:hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .md\:object-left-bottom { - object-position: left bottom; + .md\:hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .md\:object-left-top { - object-position: left top; + .md\:hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .md\:object-right { - object-position: right; + .md\:hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .md\:object-right-bottom { - object-position: right bottom; + .md\:hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .md\:object-right-top { - object-position: right top; + .md\:hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .md\:object-top { - object-position: top; + .md\:hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .md\:opacity-0 { - opacity: 0; + .md\:hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .md\:opacity-5 { - opacity: 0.05; + .md\:hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .md\:opacity-10 { - opacity: 0.1; + .md\:hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .md\:opacity-20 { - opacity: 0.2; + .md\:hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .md\:opacity-25 { - opacity: 0.25; + .md\:hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .md\:opacity-30 { - opacity: 0.3; + .md\:hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .md\:opacity-40 { - opacity: 0.4; + .md\:focus\:border-transparent:focus { + border-color: transparent; } - .md\:opacity-50 { - opacity: 0.5; + .md\:focus\:border-current:focus { + border-color: currentColor; } - .md\:opacity-60 { - opacity: 0.6; + .md\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .md\:opacity-70 { - opacity: 0.7; + .md\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .md\:opacity-75 { - opacity: 0.75; + .md\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .md\:opacity-80 { - opacity: 0.8; + .md\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .md\:opacity-90 { - opacity: 0.9; + .md\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .md\:opacity-95 { - opacity: 0.95; + .md\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .md\:opacity-100 { - opacity: 1; + .md\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-0 { - opacity: 0; + .md\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-5 { - opacity: 0.05; + .md\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-10 { - opacity: 0.1; + .md\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-20 { - opacity: 0.2; + .md\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-25 { - opacity: 0.25; + .md\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-30 { - opacity: 0.3; + .md\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-40 { - opacity: 0.4; + .md\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-50 { - opacity: 0.5; + .md\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-60 { - opacity: 0.6; + .md\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-70 { - opacity: 0.7; + .md\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-75 { - opacity: 0.75; + .md\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-80 { - opacity: 0.8; + .md\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-90 { - opacity: 0.9; + .md\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-95 { - opacity: 0.95; + .md\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-100 { - opacity: 1; + .md\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-0:focus-within { - opacity: 0; + .md\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .md\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .md\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .md\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .md\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .md\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .md\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .md\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .md\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .md\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .md\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .md\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .md\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .md\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-100:focus-within { - opacity: 1; + .md\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .md\:hover\:opacity-0:hover { - opacity: 0; + .md\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .md\:hover\:opacity-5:hover { - opacity: 0.05; + .md\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .md\:hover\:opacity-10:hover { - opacity: 0.1; + .md\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .md\:hover\:opacity-20:hover { - opacity: 0.2; + .md\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .md\:hover\:opacity-25:hover { - opacity: 0.25; + .md\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .md\:hover\:opacity-30:hover { - opacity: 0.3; + .md\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .md\:hover\:opacity-40:hover { - opacity: 0.4; + .md\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .md\:hover\:opacity-50:hover { - opacity: 0.5; + .md\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .md\:hover\:opacity-60:hover { - opacity: 0.6; + .md\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .md\:hover\:opacity-70:hover { - opacity: 0.7; + .md\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .md\:hover\:opacity-75:hover { - opacity: 0.75; + .md\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .md\:hover\:opacity-80:hover { - opacity: 0.8; + .md\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .md\:hover\:opacity-90:hover { - opacity: 0.9; + .md\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .md\:hover\:opacity-95:hover { - opacity: 0.95; + .md\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .md\:hover\:opacity-100:hover { - opacity: 1; + .md\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .md\:focus\:opacity-0:focus { - opacity: 0; + .md\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .md\:focus\:opacity-5:focus { - opacity: 0.05; + .md\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .md\:focus\:opacity-10:focus { - opacity: 0.1; + .md\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .md\:focus\:opacity-20:focus { - opacity: 0.2; + .md\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .md\:focus\:opacity-25:focus { - opacity: 0.25; + .md\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .md\:focus\:opacity-30:focus { - opacity: 0.3; + .md\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .md\:focus\:opacity-40:focus { - opacity: 0.4; + .md\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .md\:focus\:opacity-50:focus { - opacity: 0.5; + .md\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .md\:focus\:opacity-60:focus { - opacity: 0.6; + .md\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .md\:focus\:opacity-70:focus { - opacity: 0.7; + .md\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .md\:focus\:opacity-75:focus { - opacity: 0.75; + .md\:focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .md\:focus\:opacity-80:focus { - opacity: 0.8; + .md\:focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .md\:focus\:opacity-90:focus { - opacity: 0.9; + .md\:focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .md\:focus\:opacity-95:focus { - opacity: 0.95; + .md\:focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .md\:focus\:opacity-100:focus { - opacity: 1; + .md\:focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .md\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .md\:focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .md\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .md\:focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .md\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .md\:focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .md\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .md\:focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .md\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .md\:focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .md\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .md\:focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .md\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .md\:focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .md\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .md\:focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .md\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .md\:focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .md\:overflow-auto { - overflow: auto; + .md\:focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .md\:overflow-hidden { - overflow: hidden; + .md\:focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .md\:overflow-visible { - overflow: visible; + .md\:focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .md\:overflow-scroll { - overflow: scroll; + .md\:focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .md\:overflow-x-auto { - overflow-x: auto; + .md\:focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .md\:overflow-y-auto { - overflow-y: auto; + .md\:focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .md\:overflow-x-hidden { - overflow-x: hidden; + .md\:border-opacity-0 { + --tw-border-opacity: 0; } - .md\:overflow-y-hidden { - overflow-y: hidden; + .md\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .md\:overflow-x-visible { - overflow-x: visible; + .md\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .md\:overflow-y-visible { - overflow-y: visible; + .md\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .md\:overflow-x-scroll { - overflow-x: scroll; + .md\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .md\:overflow-y-scroll { - overflow-y: scroll; + .md\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .md\:overscroll-auto { - overscroll-behavior: auto; + .md\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .md\:overscroll-contain { - overscroll-behavior: contain; + .md\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .md\:overscroll-none { - overscroll-behavior: none; + .md\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .md\:overscroll-y-auto { - overscroll-behavior-y: auto; + .md\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .md\:overscroll-y-contain { - overscroll-behavior-y: contain; + .md\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .md\:overscroll-y-none { - overscroll-behavior-y: none; + .md\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .md\:overscroll-x-auto { - overscroll-behavior-x: auto; + .md\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .md\:overscroll-x-contain { - overscroll-behavior-x: contain; + .md\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .md\:overscroll-x-none { - overscroll-behavior-x: none; + .md\:border-opacity-100 { + --tw-border-opacity: 1; } - .md\:p-0 { - padding: 0px; + .group:hover .md\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } - .md\:p-1 { - padding: 0.25rem; + .group:hover .md\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .md\:p-2 { - padding: 0.5rem; + .group:hover .md\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .md\:p-3 { - padding: 0.75rem; + .group:hover .md\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .md\:p-4 { - padding: 1rem; + .group:hover .md\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .md\:p-5 { - padding: 1.25rem; + .group:hover .md\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .md\:p-6 { - padding: 1.5rem; + .group:hover .md\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .md\:p-7 { - padding: 1.75rem; + .group:hover .md\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .md\:p-8 { - padding: 2rem; + .group:hover .md\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .md\:p-9 { - padding: 2.25rem; + .group:hover .md\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .md\:p-10 { - padding: 2.5rem; + .group:hover .md\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .md\:p-11 { - padding: 2.75rem; + .group:hover .md\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .md\:p-12 { - padding: 3rem; + .group:hover .md\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .md\:p-14 { - padding: 3.5rem; + .group:hover .md\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .md\:p-16 { - padding: 4rem; + .group:hover .md\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } - .md\:p-20 { - padding: 5rem; + .md\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } - .md\:p-24 { - padding: 6rem; + .md\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } - .md\:p-28 { - padding: 7rem; + .md\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } - .md\:p-32 { - padding: 8rem; + .md\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } - .md\:p-36 { - padding: 9rem; + .md\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } - .md\:p-40 { - padding: 10rem; + .md\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } - .md\:p-44 { - padding: 11rem; + .md\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } - .md\:p-48 { - padding: 12rem; + .md\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } - .md\:p-52 { - padding: 13rem; + .md\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } - .md\:p-56 { - padding: 14rem; + .md\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } - .md\:p-60 { - padding: 15rem; + .md\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } - .md\:p-64 { - padding: 16rem; + .md\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } - .md\:p-72 { - padding: 18rem; + .md\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } - .md\:p-80 { - padding: 20rem; + .md\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } - .md\:p-96 { - padding: 24rem; + .md\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } - .md\:p-px { - padding: 1px; + .md\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } - .md\:p-0\.5 { - padding: 0.125rem; + .md\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } - .md\:p-1\.5 { - padding: 0.375rem; + .md\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } - .md\:p-2\.5 { - padding: 0.625rem; + .md\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } - .md\:p-3\.5 { - padding: 0.875rem; + .md\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } - .md\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .md\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } - .md\:px-0 { - padding-left: 0px; - padding-right: 0px; + .md\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } - .md\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .md\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } - .md\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .md\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } - .md\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .md\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } - .md\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .md\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } - .md\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .md\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } - .md\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .md\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } - .md\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .md\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } - .md\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .md\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } - .md\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .md\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } - .md\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .md\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } - .md\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .md\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } - .md\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .md\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } - .md\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .md\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } - .md\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .md\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } - .md\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .md\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } - .md\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .md\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } - .md\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .md\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } - .md\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .md\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } - .md\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .md\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } - .md\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .md\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } - .md\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .md\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } - .md\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .md\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } - .md\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .md\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } - .md\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .md\:bg-transparent { + background-color: transparent; } - .md\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .md\:bg-current { + background-color: currentColor; } - .md\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .md\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .md\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .md\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .md\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .md\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .md\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .md\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .md\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .md\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .md\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .md\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .md\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .md\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .md\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .md\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .md\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .md\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .md\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .md\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .md\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .md\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .md\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .md\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .md\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .md\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .md\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .md\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .md\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .md\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .md\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .md\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .md\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .md\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .md\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .md\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .md\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .md\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .md\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .md\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .md\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .md\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .md\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .md\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .md\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .md\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .md\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .md\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .md\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .md\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .md\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .md\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .md\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .md\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .md\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .md\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .md\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .md\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .md\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .md\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .md\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .md\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .md\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .md\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .md\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .md\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .md\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .md\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .md\:px-px { - padding-left: 1px; - padding-right: 1px; + .md\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .md\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .md\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .md\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .md\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .md\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .md\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .md\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .md\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .md\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .md\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .md\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .md\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .md\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .md\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .md\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .md\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .md\:pt-0 { - padding-top: 0px; + .md\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .md\:pr-0 { - padding-right: 0px; + .md\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .md\:pb-0 { - padding-bottom: 0px; + .md\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .md\:pl-0 { - padding-left: 0px; + .md\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .md\:pt-1 { - padding-top: 0.25rem; + .md\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .md\:pr-1 { - padding-right: 0.25rem; + .md\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .md\:pb-1 { - padding-bottom: 0.25rem; + .md\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .md\:pl-1 { - padding-left: 0.25rem; + .md\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .md\:pt-2 { - padding-top: 0.5rem; + .md\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .md\:pr-2 { - padding-right: 0.5rem; + .md\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .md\:pb-2 { - padding-bottom: 0.5rem; + .md\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .md\:pl-2 { - padding-left: 0.5rem; + .md\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .md\:pt-3 { - padding-top: 0.75rem; + .md\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .md\:pr-3 { - padding-right: 0.75rem; + .md\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .md\:pb-3 { - padding-bottom: 0.75rem; + .md\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .md\:pl-3 { - padding-left: 0.75rem; + .md\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .md\:pt-4 { - padding-top: 1rem; + .md\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .md\:pr-4 { - padding-right: 1rem; + .md\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .md\:pb-4 { - padding-bottom: 1rem; + .md\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .md\:pl-4 { - padding-left: 1rem; + .md\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .md\:pt-5 { - padding-top: 1.25rem; + .md\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .md\:pr-5 { - padding-right: 1.25rem; + .md\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .md\:pb-5 { - padding-bottom: 1.25rem; + .md\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .md\:pl-5 { - padding-left: 1.25rem; + .md\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .md\:pt-6 { - padding-top: 1.5rem; + .md\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .md\:pr-6 { - padding-right: 1.5rem; + .md\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .md\:pb-6 { - padding-bottom: 1.5rem; + .md\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .md\:pl-6 { - padding-left: 1.5rem; + .md\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .md\:pt-7 { - padding-top: 1.75rem; + .md\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .md\:pr-7 { - padding-right: 1.75rem; + .md\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .md\:pb-7 { - padding-bottom: 1.75rem; + .md\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .md\:pl-7 { - padding-left: 1.75rem; + .md\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .md\:pt-8 { - padding-top: 2rem; + .md\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .md\:pr-8 { - padding-right: 2rem; + .md\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .md\:pb-8 { - padding-bottom: 2rem; + .md\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .md\:pl-8 { - padding-left: 2rem; + .md\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .md\:pt-9 { - padding-top: 2.25rem; + .md\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .md\:pr-9 { - padding-right: 2.25rem; + .md\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .md\:pb-9 { - padding-bottom: 2.25rem; + .md\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .md\:pl-9 { - padding-left: 2.25rem; + .group:hover .md\:group-hover\:bg-transparent { + background-color: transparent; } - .md\:pt-10 { - padding-top: 2.5rem; + .group:hover .md\:group-hover\:bg-current { + background-color: currentColor; } - .md\:pr-10 { - padding-right: 2.5rem; + .group:hover .md\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .md\:pb-10 { - padding-bottom: 2.5rem; + .group:hover .md\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .md\:pl-10 { - padding-left: 2.5rem; + .group:hover .md\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .md\:pt-11 { - padding-top: 2.75rem; + .group:hover .md\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .md\:pr-11 { - padding-right: 2.75rem; + .group:hover .md\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .md\:pb-11 { - padding-bottom: 2.75rem; + .group:hover .md\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .md\:pl-11 { - padding-left: 2.75rem; + .group:hover .md\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .md\:pt-12 { - padding-top: 3rem; + .group:hover .md\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .md\:pr-12 { - padding-right: 3rem; + .group:hover .md\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .md\:pb-12 { - padding-bottom: 3rem; + .group:hover .md\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .md\:pl-12 { - padding-left: 3rem; + .group:hover .md\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .md\:pt-14 { - padding-top: 3.5rem; + .group:hover .md\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .md\:pr-14 { - padding-right: 3.5rem; + .group:hover .md\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .md\:pb-14 { - padding-bottom: 3.5rem; + .group:hover .md\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .md\:pl-14 { - padding-left: 3.5rem; + .group:hover .md\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .md\:pt-16 { - padding-top: 4rem; + .group:hover .md\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .md\:pr-16 { - padding-right: 4rem; + .group:hover .md\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .md\:pb-16 { - padding-bottom: 4rem; + .group:hover .md\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .md\:pl-16 { - padding-left: 4rem; + .group:hover .md\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .md\:pt-20 { - padding-top: 5rem; + .group:hover .md\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .md\:pr-20 { - padding-right: 5rem; + .group:hover .md\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .md\:pb-20 { - padding-bottom: 5rem; + .group:hover .md\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .md\:pl-20 { - padding-left: 5rem; + .group:hover .md\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .md\:pt-24 { - padding-top: 6rem; + .group:hover .md\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .md\:pr-24 { - padding-right: 6rem; + .group:hover .md\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .md\:pb-24 { - padding-bottom: 6rem; + .group:hover .md\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .md\:pl-24 { - padding-left: 6rem; + .group:hover .md\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .md\:pt-28 { - padding-top: 7rem; + .group:hover .md\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .md\:pr-28 { - padding-right: 7rem; + .group:hover .md\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .md\:pb-28 { - padding-bottom: 7rem; + .group:hover .md\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .md\:pl-28 { - padding-left: 7rem; + .group:hover .md\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .md\:pt-32 { - padding-top: 8rem; + .group:hover .md\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .md\:pr-32 { - padding-right: 8rem; + .group:hover .md\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .md\:pb-32 { - padding-bottom: 8rem; + .group:hover .md\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .md\:pl-32 { - padding-left: 8rem; + .group:hover .md\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .md\:pt-36 { - padding-top: 9rem; + .group:hover .md\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .md\:pr-36 { - padding-right: 9rem; + .group:hover .md\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .md\:pb-36 { - padding-bottom: 9rem; + .group:hover .md\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .md\:pl-36 { - padding-left: 9rem; + .group:hover .md\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .md\:pt-40 { - padding-top: 10rem; + .group:hover .md\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .md\:pr-40 { - padding-right: 10rem; + .group:hover .md\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .md\:pb-40 { - padding-bottom: 10rem; + .group:hover .md\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .md\:pl-40 { - padding-left: 10rem; + .group:hover .md\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .md\:pt-44 { - padding-top: 11rem; + .group:hover .md\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .md\:pr-44 { - padding-right: 11rem; + .group:hover .md\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .md\:pb-44 { - padding-bottom: 11rem; + .group:hover .md\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .md\:pl-44 { - padding-left: 11rem; + .group:hover .md\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .md\:pt-48 { - padding-top: 12rem; + .group:hover .md\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .md\:pr-48 { - padding-right: 12rem; + .group:hover .md\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .md\:pb-48 { - padding-bottom: 12rem; + .group:hover .md\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .md\:pl-48 { - padding-left: 12rem; + .group:hover .md\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .md\:pt-52 { - padding-top: 13rem; + .group:hover .md\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .md\:pr-52 { - padding-right: 13rem; + .group:hover .md\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .md\:pb-52 { - padding-bottom: 13rem; + .group:hover .md\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .md\:pl-52 { - padding-left: 13rem; + .group:hover .md\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .md\:pt-56 { - padding-top: 14rem; + .group:hover .md\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .md\:pr-56 { - padding-right: 14rem; + .group:hover .md\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .md\:pb-56 { - padding-bottom: 14rem; + .group:hover .md\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .md\:pl-56 { - padding-left: 14rem; + .group:hover .md\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .md\:pt-60 { - padding-top: 15rem; + .group:hover .md\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .md\:pr-60 { - padding-right: 15rem; + .group:hover .md\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .md\:pb-60 { - padding-bottom: 15rem; + .group:hover .md\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .md\:pl-60 { - padding-left: 15rem; + .group:hover .md\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .md\:pt-64 { - padding-top: 16rem; + .group:hover .md\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .md\:pr-64 { - padding-right: 16rem; + .group:hover .md\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .md\:pb-64 { - padding-bottom: 16rem; + .group:hover .md\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .md\:pl-64 { - padding-left: 16rem; + .group:hover .md\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .md\:pt-72 { - padding-top: 18rem; + .group:hover .md\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .md\:pr-72 { - padding-right: 18rem; + .group:hover .md\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .md\:pb-72 { - padding-bottom: 18rem; + .group:hover .md\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .md\:pl-72 { - padding-left: 18rem; + .group:hover .md\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .md\:pt-80 { - padding-top: 20rem; + .group:hover .md\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .md\:pr-80 { - padding-right: 20rem; + .group:hover .md\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .md\:pb-80 { - padding-bottom: 20rem; + .group:hover .md\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .md\:pl-80 { - padding-left: 20rem; + .group:hover .md\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .md\:pt-96 { - padding-top: 24rem; + .group:hover .md\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .md\:pr-96 { - padding-right: 24rem; + .group:hover .md\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .md\:pb-96 { - padding-bottom: 24rem; + .group:hover .md\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .md\:pl-96 { - padding-left: 24rem; + .group:hover .md\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .md\:pt-px { - padding-top: 1px; + .group:hover .md\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .md\:pr-px { - padding-right: 1px; + .group:hover .md\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .md\:pb-px { - padding-bottom: 1px; + .group:hover .md\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .md\:pl-px { - padding-left: 1px; + .md\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .md\:pt-0\.5 { - padding-top: 0.125rem; + .md\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .md\:pr-0\.5 { - padding-right: 0.125rem; + .md\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .md\:pb-0\.5 { - padding-bottom: 0.125rem; + .md\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .md\:pl-0\.5 { - padding-left: 0.125rem; + .md\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .md\:pt-1\.5 { - padding-top: 0.375rem; + .md\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .md\:pr-1\.5 { - padding-right: 0.375rem; + .md\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .md\:pb-1\.5 { - padding-bottom: 0.375rem; + .md\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .md\:pl-1\.5 { - padding-left: 0.375rem; + .md\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .md\:pt-2\.5 { - padding-top: 0.625rem; + .md\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .md\:pr-2\.5 { - padding-right: 0.625rem; + .md\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .md\:pb-2\.5 { - padding-bottom: 0.625rem; + .md\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .md\:pl-2\.5 { - padding-left: 0.625rem; + .md\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .md\:pt-3\.5 { - padding-top: 0.875rem; + .md\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .md\:pr-3\.5 { - padding-right: 0.875rem; + .md\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .md\:pb-3\.5 { - padding-bottom: 0.875rem; + .md\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .md\:pl-3\.5 { - padding-left: 0.875rem; + .md\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .md\:placeholder-transparent::placeholder { - color: transparent; + .md\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .md\:placeholder-current::placeholder { - color: currentColor; + .md\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .md\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .md\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .md\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .md\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .md\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .md\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .md\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .md\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .md\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .md\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .md\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .md\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .md\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .md\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .md\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .md\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .md\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .md\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .md\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .md\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .md\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .md\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .md\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .md\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .md\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .md\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .md\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .md\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .md\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .md\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .md\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .md\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .md\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .md\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .md\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .md\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .md\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .md\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .md\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .md\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .md\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .md\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .md\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .md\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .md\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .md\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .md\:hover\:bg-transparent:hover { + background-color: transparent; } - .md\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .md\:hover\:bg-current:hover { + background-color: currentColor; } - .md\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .md\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .md\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .md\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .md\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .md\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .md\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .md\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .md\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .md\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .md\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .md\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .md\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .md\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .md\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .md\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .md\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .md\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .md\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .md\:focus\:bg-transparent:focus { + background-color: transparent; } - .md\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .md\:focus\:bg-current:focus { + background-color: currentColor; } - .md\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .md\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .md\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .md\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .md\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .md\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; + .md\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; + .md\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; + .md\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; + .md\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; + .md\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; + .md\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; + .md\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; + .md\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; + .md\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; + .md\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; + .md\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; + .md\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; + .md\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; + .md\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; + .md\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; + .md\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; + .md\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; + .md\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; + .md\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; + .md\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; + .md\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; + .md\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; + .md\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; + .md\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; + .md\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; + .md\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; + .md\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; + .md\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; + .md\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; + .md\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .md\:pointer-events-none { - pointer-events: none; + .md\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .md\:pointer-events-auto { - pointer-events: auto; + .md\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .md\:static { - position: static; + .md\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .md\:fixed { - position: fixed; + .md\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .md\:absolute { - position: absolute; + .md\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .md\:relative { - position: relative; + .md\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .md\:sticky { - position: sticky; + .md\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .md\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .md\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .md\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .md\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .md\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .md\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .md\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .md\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .md\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .md\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .md\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .md\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .md\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .md\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .md\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .md\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .md\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .md\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .md\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .md\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .md\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .md\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .md\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .md\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .md\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .md\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .md\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .md\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .md\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .md\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .md\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .md\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .md\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .md\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .md\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .md\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .md\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .md\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .md\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .md\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .md\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .md\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .md\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .md\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .md\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .md\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .md\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .md\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .md\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .md\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .md\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .md\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .md\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .md\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .md\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .md\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .md\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .md\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .md\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .md\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .md\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .md\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .md\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .md\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .md\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .md\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .md\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .md\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .md\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .md\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .md\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .md\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .md\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .md\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .md\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .md\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .md\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .md\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .md\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .md\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .md\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .md\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .md\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .md\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .md\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .md\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .md\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .md\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .md\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .md\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .md\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .group:hover .md\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .md\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .group:hover .md\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .md\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .group:hover .md\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .md\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .group:hover .md\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .md\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .group:hover .md\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .md\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .group:hover .md\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .md\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .group:hover .md\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .md\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .group:hover .md\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .md\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .group:hover .md\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .md\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .group:hover .md\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .md\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .group:hover .md\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .md\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .group:hover .md\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .md\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .group:hover .md\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .md\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .group:hover .md\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .md\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .group:hover .md\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .md\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .md\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } - .md\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .md\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } - .md\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .md\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } - .md\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .md\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } - .md\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .md\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } - .md\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .md\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } - .md\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .md\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } - .md\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .md\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } - .md\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .md\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } - .md\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .md\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } - .md\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .md\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } - .md\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .md\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } - .md\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .md\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } - .md\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .md\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } - .md\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .md\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } - .md\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .md\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } - .md\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .md\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } - .md\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .md\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } - .md\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .md\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } - .md\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .md\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } - .md\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .md\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } - .md\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .md\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } - .md\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .md\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } - .md\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .md\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } - .md\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .md\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } - .md\:inset-y-0 { - top: 0px; - bottom: 0px; + .md\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } - .md\:inset-x-0 { - right: 0px; - left: 0px; + .md\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } - .md\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .md\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } - .md\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .md\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } - .md\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .md\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } - .md\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .md\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } - .md\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .md\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } - .md\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .md\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } - .md\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .md\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } - .md\:inset-x-4 { - right: 1rem; - left: 1rem; + .md\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } - .md\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .md\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } - .md\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .md\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } - .md\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .md\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } - .md\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .md\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } - .md\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .md\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } - .md\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .md\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } - .md\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .md\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } - .md\:inset-x-8 { - right: 2rem; - left: 2rem; + .md\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } - .md\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .md\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } - .md\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .md\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } - .md\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .md\:bg-none { + background-image: none; } - .md\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .md\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .md\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .md\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .md\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .md\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .md\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .md\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .md\:inset-x-12 { - right: 3rem; - left: 3rem; + .md\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .md\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .md\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .md\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .md\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .md\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .md\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .md\:inset-x-16 { - right: 4rem; - left: 4rem; + .md\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .md\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:inset-x-20 { - right: 5rem; - left: 5rem; + .md\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .md\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:inset-x-24 { - right: 6rem; - left: 6rem; + .md\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .md\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:inset-x-28 { - right: 7rem; - left: 7rem; + .md\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .md\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:inset-x-32 { - right: 8rem; - left: 8rem; + .md\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .md\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:inset-x-36 { - right: 9rem; - left: 9rem; + .md\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .md\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:inset-x-40 { - right: 10rem; - left: 10rem; + .md\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .md\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:inset-x-44 { - right: 11rem; - left: 11rem; + .md\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .md\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:inset-x-48 { - right: 12rem; - left: 12rem; + .md\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .md\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:inset-x-52 { - right: 13rem; - left: 13rem; + .md\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .md\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:inset-x-56 { - right: 14rem; - left: 14rem; + .md\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .md\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:inset-x-60 { - right: 15rem; - left: 15rem; + .md\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .md\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:inset-x-64 { - right: 16rem; - left: 16rem; + .md\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .md\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:inset-x-72 { - right: 18rem; - left: 18rem; + .md\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .md\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:inset-x-80 { - right: 20rem; - left: 20rem; + .md\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .md\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:inset-x-96 { - right: 24rem; - left: 24rem; + .md\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:inset-y-auto { - top: auto; - bottom: auto; + .md\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:inset-x-auto { - right: auto; - left: auto; + .md\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:inset-y-px { - top: 1px; - bottom: 1px; + .md\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:inset-x-px { - right: 1px; - left: 1px; + .md\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .md\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .md\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .md\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .md\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .md\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .md\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .md\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .md\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:-inset-y-0 { - top: 0px; - bottom: 0px; + .md\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:-inset-x-0 { - right: 0px; - left: 0px; + .md\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .md\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .md\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .md\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .md\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .md\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .md\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .md\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:-inset-x-4 { - right: -1rem; - left: -1rem; + .md\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .md\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .md\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .md\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .md\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .md\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .md\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .md\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:-inset-x-8 { - right: -2rem; - left: -2rem; + .md\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .md\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .md\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .md\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .md\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .md\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .md\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .md\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:-inset-x-12 { - right: -3rem; - left: -3rem; + .md\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .md\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .md\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .md\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:-inset-x-16 { - right: -4rem; - left: -4rem; + .md\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .md\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:-inset-x-20 { - right: -5rem; - left: -5rem; + .md\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .md\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:-inset-x-24 { - right: -6rem; - left: -6rem; + .md\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .md\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:-inset-x-28 { - right: -7rem; - left: -7rem; + .md\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .md\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:-inset-x-32 { - right: -8rem; - left: -8rem; + .md\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .md\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:-inset-x-36 { - right: -9rem; - left: -9rem; + .md\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .md\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:-inset-x-40 { - right: -10rem; - left: -10rem; + .md\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .md\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-inset-x-44 { - right: -11rem; - left: -11rem; + .md\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .md\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-inset-x-48 { - right: -12rem; - left: -12rem; + .md\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .md\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:-inset-x-52 { - right: -13rem; - left: -13rem; + .md\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .md\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:-inset-x-56 { - right: -14rem; - left: -14rem; + .md\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .md\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:-inset-x-60 { - right: -15rem; - left: -15rem; + .md\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .md\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:-inset-x-64 { - right: -16rem; - left: -16rem; + .md\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .md\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:-inset-x-72 { - right: -18rem; - left: -18rem; + .md\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .md\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:-inset-x-80 { - right: -20rem; - left: -20rem; + .md\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .md\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:-inset-x-96 { - right: -24rem; - left: -24rem; + .md\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:-inset-y-px { - top: -1px; - bottom: -1px; + .md\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:-inset-x-px { - right: -1px; - left: -1px; + .md\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .md\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .md\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .md\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .md\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .md\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .md\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .md\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .md\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .md\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:inset-x-1\/2 { - right: 50%; - left: 50%; + .md\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .md\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .md\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .md\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .md\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .md\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:inset-x-1\/4 { - right: 25%; - left: 25%; + .md\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .md\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:inset-x-2\/4 { - right: 50%; - left: 50%; + .md\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .md\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:inset-x-3\/4 { - right: 75%; - left: 75%; + .md\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:inset-y-full { - top: 100%; - bottom: 100%; + .md\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:inset-x-full { - right: 100%; - left: 100%; + .md\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .md\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .md\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .md\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .md\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .md\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .md\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .md\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .md\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .md\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .md\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .md\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .md\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:-inset-y-full { - top: -100%; - bottom: -100%; + .md\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:-inset-x-full { - right: -100%; - left: -100%; + .md\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:top-0 { - top: 0px; + .md\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:right-0 { - right: 0px; + .md\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:bottom-0 { - bottom: 0px; + .md\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:left-0 { - left: 0px; + .md\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:top-1 { - top: 0.25rem; + .md\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:right-1 { - right: 0.25rem; + .md\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:bottom-1 { - bottom: 0.25rem; + .md\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:left-1 { - left: 0.25rem; + .md\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:top-2 { - top: 0.5rem; + .md\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:right-2 { - right: 0.5rem; + .md\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:bottom-2 { - bottom: 0.5rem; + .md\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:left-2 { - left: 0.5rem; + .md\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:top-3 { - top: 0.75rem; + .md\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:right-3 { - right: 0.75rem; + .md\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:bottom-3 { - bottom: 0.75rem; + .md\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:left-3 { - left: 0.75rem; + .md\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:top-4 { - top: 1rem; + .md\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:right-4 { - right: 1rem; + .md\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:bottom-4 { - bottom: 1rem; + .md\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:left-4 { - left: 1rem; + .md\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:top-5 { - top: 1.25rem; + .md\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:right-5 { - right: 1.25rem; + .md\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:bottom-5 { - bottom: 1.25rem; + .md\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:left-5 { - left: 1.25rem; + .md\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:top-6 { - top: 1.5rem; + .md\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:right-6 { - right: 1.5rem; + .md\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:bottom-6 { - bottom: 1.5rem; + .md\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:left-6 { - left: 1.5rem; + .md\:to-transparent { + --tw-gradient-to: transparent; } - .md\:top-7 { - top: 1.75rem; + .md\:to-current { + --tw-gradient-to: currentColor; } - .md\:right-7 { - right: 1.75rem; + .md\:to-black { + --tw-gradient-to: #000; } - .md\:bottom-7 { - bottom: 1.75rem; + .md\:to-white { + --tw-gradient-to: #fff; } - .md\:left-7 { - left: 1.75rem; + .md\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .md\:top-8 { - top: 2rem; + .md\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .md\:right-8 { - right: 2rem; + .md\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .md\:bottom-8 { - bottom: 2rem; + .md\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .md\:left-8 { - left: 2rem; + .md\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .md\:top-9 { - top: 2.25rem; + .md\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .md\:right-9 { - right: 2.25rem; + .md\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .md\:bottom-9 { - bottom: 2.25rem; + .md\:to-gray-700 { + --tw-gradient-to: #374151; } - .md\:left-9 { - left: 2.25rem; + .md\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .md\:top-10 { - top: 2.5rem; + .md\:to-gray-900 { + --tw-gradient-to: #111827; } - .md\:right-10 { - right: 2.5rem; + .md\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .md\:bottom-10 { - bottom: 2.5rem; + .md\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .md\:left-10 { - left: 2.5rem; + .md\:to-red-200 { + --tw-gradient-to: #fecaca; } - .md\:top-11 { - top: 2.75rem; + .md\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .md\:right-11 { - right: 2.75rem; + .md\:to-red-400 { + --tw-gradient-to: #f87171; } - .md\:bottom-11 { - bottom: 2.75rem; + .md\:to-red-500 { + --tw-gradient-to: #ef4444; } - .md\:left-11 { - left: 2.75rem; + .md\:to-red-600 { + --tw-gradient-to: #dc2626; } - .md\:top-12 { - top: 3rem; + .md\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .md\:right-12 { - right: 3rem; + .md\:to-red-800 { + --tw-gradient-to: #991b1b; } - .md\:bottom-12 { - bottom: 3rem; + .md\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .md\:left-12 { - left: 3rem; + .md\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .md\:top-14 { - top: 3.5rem; + .md\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .md\:right-14 { - right: 3.5rem; + .md\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .md\:bottom-14 { - bottom: 3.5rem; + .md\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .md\:left-14 { - left: 3.5rem; + .md\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .md\:top-16 { - top: 4rem; + .md\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .md\:right-16 { - right: 4rem; + .md\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .md\:bottom-16 { - bottom: 4rem; + .md\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .md\:left-16 { - left: 4rem; + .md\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .md\:top-20 { - top: 5rem; + .md\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .md\:right-20 { - right: 5rem; + .md\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .md\:bottom-20 { - bottom: 5rem; + .md\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .md\:left-20 { - left: 5rem; + .md\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .md\:top-24 { - top: 6rem; + .md\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .md\:right-24 { - right: 6rem; + .md\:to-green-400 { + --tw-gradient-to: #34d399; } - .md\:bottom-24 { - bottom: 6rem; + .md\:to-green-500 { + --tw-gradient-to: #10b981; } - .md\:left-24 { - left: 6rem; + .md\:to-green-600 { + --tw-gradient-to: #059669; } - .md\:top-28 { - top: 7rem; + .md\:to-green-700 { + --tw-gradient-to: #047857; } - .md\:right-28 { - right: 7rem; + .md\:to-green-800 { + --tw-gradient-to: #065f46; } - .md\:bottom-28 { - bottom: 7rem; + .md\:to-green-900 { + --tw-gradient-to: #064e3b; } - .md\:left-28 { - left: 7rem; + .md\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .md\:top-32 { - top: 8rem; + .md\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .md\:right-32 { - right: 8rem; + .md\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .md\:bottom-32 { - bottom: 8rem; + .md\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .md\:left-32 { - left: 8rem; + .md\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .md\:top-36 { - top: 9rem; + .md\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .md\:right-36 { - right: 9rem; + .md\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .md\:bottom-36 { - bottom: 9rem; + .md\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .md\:left-36 { - left: 9rem; + .md\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .md\:top-40 { - top: 10rem; + .md\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .md\:right-40 { - right: 10rem; + .md\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .md\:bottom-40 { - bottom: 10rem; + .md\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .md\:left-40 { - left: 10rem; + .md\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .md\:top-44 { - top: 11rem; + .md\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .md\:right-44 { - right: 11rem; + .md\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .md\:bottom-44 { - bottom: 11rem; + .md\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .md\:left-44 { - left: 11rem; + .md\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .md\:top-48 { - top: 12rem; + .md\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .md\:right-48 { - right: 12rem; + .md\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .md\:bottom-48 { - bottom: 12rem; + .md\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .md\:left-48 { - left: 12rem; + .md\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .md\:top-52 { - top: 13rem; + .md\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .md\:right-52 { - right: 13rem; + .md\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .md\:bottom-52 { - bottom: 13rem; + .md\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .md\:left-52 { - left: 13rem; + .md\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .md\:top-56 { - top: 14rem; + .md\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .md\:right-56 { - right: 14rem; + .md\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .md\:bottom-56 { - bottom: 14rem; + .md\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .md\:left-56 { - left: 14rem; + .md\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .md\:top-60 { - top: 15rem; + .md\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .md\:right-60 { - right: 15rem; + .md\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .md\:bottom-60 { - bottom: 15rem; + .md\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .md\:left-60 { - left: 15rem; + .md\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .md\:top-64 { - top: 16rem; + .md\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .md\:right-64 { - right: 16rem; + .md\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .md\:bottom-64 { - bottom: 16rem; + .md\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .md\:left-64 { - left: 16rem; + .md\:to-pink-600 { + --tw-gradient-to: #db2777; } - .md\:top-72 { - top: 18rem; + .md\:to-pink-700 { + --tw-gradient-to: #be185d; } - .md\:right-72 { - right: 18rem; + .md\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .md\:bottom-72 { - bottom: 18rem; + .md\:to-pink-900 { + --tw-gradient-to: #831843; } - .md\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .md\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-top-14 { - top: -3.5rem; + .md\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-right-14 { - right: -3.5rem; + .md\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-bottom-14 { - bottom: -3.5rem; + .md\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-left-14 { - left: -3.5rem; + .md\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:-top-16 { - top: -4rem; + .md\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:-right-16 { - right: -4rem; + .md\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:-bottom-16 { - bottom: -4rem; + .md\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:-left-16 { - left: -4rem; + .md\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:-top-20 { - top: -5rem; + .md\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:-right-20 { - right: -5rem; + .md\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:-bottom-20 { - bottom: -5rem; + .md\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:-left-20 { - left: -5rem; + .md\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:-top-24 { - top: -6rem; + .md\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:-right-24 { - right: -6rem; + .md\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:-bottom-24 { - bottom: -6rem; + .md\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:-left-24 { - left: -6rem; + .md\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:-top-28 { - top: -7rem; + .md\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:-right-28 { - right: -7rem; + .md\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:-bottom-28 { - bottom: -7rem; + .md\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:-left-28 { - left: -7rem; + .md\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:-top-32 { - top: -8rem; + .md\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:-right-32 { - right: -8rem; + .md\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:-bottom-32 { - bottom: -8rem; + .md\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:-left-32 { - left: -8rem; + .md\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:-top-36 { - top: -9rem; + .md\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:-right-36 { - right: -9rem; + .md\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:-bottom-36 { - bottom: -9rem; + .md\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:-left-36 { - left: -9rem; + .md\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:-top-40 { - top: -10rem; + .md\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:-right-40 { - right: -10rem; + .md\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:-bottom-40 { - bottom: -10rem; + .md\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:-left-40 { - left: -10rem; + .md\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:-top-44 { - top: -11rem; + .md\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:-right-44 { - right: -11rem; + .md\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:-bottom-44 { - bottom: -11rem; + .md\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:-left-44 { - left: -11rem; + .md\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:-top-48 { - top: -12rem; + .md\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:-right-48 { - right: -12rem; + .md\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:-bottom-48 { - bottom: -12rem; + .md\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:-left-48 { - left: -12rem; + .md\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:-top-52 { - top: -13rem; + .md\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:-right-52 { - right: -13rem; + .md\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:-bottom-52 { - bottom: -13rem; + .md\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:-left-52 { - left: -13rem; + .md\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:-top-56 { - top: -14rem; + .md\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:-right-56 { - right: -14rem; + .md\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:-bottom-56 { - bottom: -14rem; + .md\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:-left-56 { - left: -14rem; + .md\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:-top-60 { - top: -15rem; + .md\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:-right-60 { - right: -15rem; + .md\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:-bottom-60 { - bottom: -15rem; + .md\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:-left-60 { - left: -15rem; + .md\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:-top-64 { - top: -16rem; + .md\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:-right-64 { - right: -16rem; + .md\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:-bottom-64 { - bottom: -16rem; + .md\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:-left-64 { - left: -16rem; + .md\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:-top-72 { - top: -18rem; + .md\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:-right-72 { - right: -18rem; + .md\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:-bottom-72 { - bottom: -18rem; + .md\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:-left-72 { - left: -18rem; + .md\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:-top-80 { - top: -20rem; + .md\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:-right-80 { - right: -20rem; + .md\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:-bottom-80 { - bottom: -20rem; + .md\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:-left-80 { - left: -20rem; + .md\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:-top-96 { - top: -24rem; + .md\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:-right-96 { - right: -24rem; + .md\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:-bottom-96 { - bottom: -24rem; + .md\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:-left-96 { - left: -24rem; + .md\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:-top-px { - top: -1px; + .md\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:-right-px { - right: -1px; + .md\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:-bottom-px { - bottom: -1px; + .md\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:-left-px { - left: -1px; + .md\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:-top-0\.5 { - top: -0.125rem; + .md\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:-right-0\.5 { - right: -0.125rem; + .md\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:-bottom-0\.5 { - bottom: -0.125rem; + .md\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:-left-0\.5 { - left: -0.125rem; + .md\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:-top-1\.5 { - top: -0.375rem; + .md\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:-right-1\.5 { - right: -0.375rem; + .md\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:-bottom-1\.5 { - bottom: -0.375rem; + .md\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:-left-1\.5 { - left: -0.375rem; + .md\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:-top-2\.5 { - top: -0.625rem; + .md\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:-right-2\.5 { - right: -0.625rem; + .md\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:-bottom-2\.5 { - bottom: -0.625rem; + .md\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:-left-2\.5 { - left: -0.625rem; + .md\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .md\:-top-3\.5 { - top: -0.875rem; + .md\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .md\:-right-3\.5 { - right: -0.875rem; + .md\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .md\:-bottom-3\.5 { - bottom: -0.875rem; + .md\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .md\:-left-3\.5 { - left: -0.875rem; + .md\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .md\:top-1\/2 { - top: 50%; + .md\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .md\:right-1\/2 { - right: 50%; + .md\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .md\:bottom-1\/2 { - bottom: 50%; + .md\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .md\:left-1\/2 { - left: 50%; + .md\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .md\:top-1\/3 { - top: 33.333333%; + .md\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .md\:right-1\/3 { - right: 33.333333%; + .md\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .md\:bottom-1\/3 { - bottom: 33.333333%; + .md\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .md\:left-1\/3 { - left: 33.333333%; + .md\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .md\:top-2\/3 { - top: 66.666667%; + .md\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .md\:right-2\/3 { - right: 66.666667%; + .md\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .md\:bottom-2\/3 { - bottom: 66.666667%; + .md\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .md\:left-2\/3 { - left: 66.666667%; + .md\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .md\:top-1\/4 { - top: 25%; + .md\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .md\:right-1\/4 { - right: 25%; + .md\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .md\:bottom-1\/4 { - bottom: 25%; + .md\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .md\:left-1\/4 { - left: 25%; + .md\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .md\:top-2\/4 { - top: 50%; + .md\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .md\:right-2\/4 { - right: 50%; + .md\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .md\:bottom-2\/4 { - bottom: 50%; + .md\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .md\:left-2\/4 { - left: 50%; + .md\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .md\:top-3\/4 { - top: 75%; + .md\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .md\:right-3\/4 { - right: 75%; + .md\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .md\:bottom-3\/4 { - bottom: 75%; + .md\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .md\:left-3\/4 { - left: 75%; + .md\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .md\:top-full { - top: 100%; + .md\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .md\:right-full { - right: 100%; + .md\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .md\:bottom-full { - bottom: 100%; + .md\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .md\:left-full { - left: 100%; + .md\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .md\:-top-1\/2 { - top: -50%; + .md\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .md\:-right-1\/2 { - right: -50%; + .md\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .md\:-bottom-1\/2 { - bottom: -50%; + .md\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .md\:-left-1\/2 { - left: -50%; + .md\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .md\:-top-1\/3 { - top: -33.333333%; + .md\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .md\:-right-1\/3 { - right: -33.333333%; + .md\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .md\:-bottom-1\/3 { - bottom: -33.333333%; + .md\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .md\:-left-1\/3 { - left: -33.333333%; + .md\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .md\:-top-2\/3 { - top: -66.666667%; + .md\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .md\:-right-2\/3 { - right: -66.666667%; + .md\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .md\:-bottom-2\/3 { - bottom: -66.666667%; + .md\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .md\:-left-2\/3 { - left: -66.666667%; + .md\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .md\:-top-1\/4 { - top: -25%; + .md\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .md\:-right-1\/4 { - right: -25%; + .md\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .md\:-bottom-1\/4 { - bottom: -25%; + .md\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .md\:-left-1\/4 { - left: -25%; + .md\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .md\:-top-2\/4 { - top: -50%; + .md\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .md\:-right-2\/4 { - right: -50%; + .md\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .md\:-bottom-2\/4 { - bottom: -50%; + .md\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .md\:-left-2\/4 { - left: -50%; + .md\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .md\:-top-3\/4 { - top: -75%; + .md\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .md\:-right-3\/4 { - right: -75%; + .md\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .md\:-bottom-3\/4 { - bottom: -75%; + .md\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .md\:-left-3\/4 { - left: -75%; + .md\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .md\:-top-full { - top: -100%; + .md\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .md\:-right-full { - right: -100%; + .md\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .md\:-bottom-full { - bottom: -100%; + .md\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .md\:-left-full { - left: -100%; + .md\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .md\:resize-none { - resize: none; + .md\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .md\:resize-y { - resize: vertical; + .md\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .md\:resize-x { - resize: horizontal; + .md\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .md\:resize { - resize: both; + .md\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .md\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .md\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .md\: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); + .md\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .md\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .md\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .md\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .md\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .md\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .md\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .md\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .md\:group-hover\: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); + .md\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .md\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .md\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .md\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .md\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .md\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .md\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .md\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .md\:focus-within\:shadow-md:focus-within { - --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); + .md\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .md\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .md\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .md\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .md\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .md\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .md\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .md\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .md\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .md\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .md\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .md\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .md\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .md\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .md\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .md\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .md\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .md\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .md\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .md\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .md\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .md\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .md\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .md\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .md\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .md\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .md\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .md\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .md\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .md\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .md\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .md\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .md\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .md\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .md\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .md\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .md\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .md\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .md\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .md\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .md\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .md\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .md\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .md\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .md\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .md\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .md\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .md\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .md\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .md\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .md\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .md\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .md\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .md\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .md\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .md\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .md\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .md\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .md\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .md\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .md\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .md\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .md\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .md\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .md\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .md\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .md\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .md\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .md\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .md\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .md\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .md\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .md\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .md\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .md\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .md\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .md\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .md\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .md\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .md\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .md\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .md\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .md\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .md\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .md\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .md\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .md\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .md\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .md\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .md\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .md\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .md\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .md\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .md\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .md\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .md\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .md\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .md\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .md\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .md\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .md\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .md\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .md\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .md\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .md\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .md\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .md\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .md\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .md\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .md\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .md\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .md\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .md\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .md\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .md\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .md\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .md\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .md\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .md\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .md\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .md\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .md\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .md\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .md\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .md\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .md\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .md\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .md\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .md\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .md\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .md\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .md\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .md\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .md\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .md\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .md\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .md\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .md\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .md\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .md\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .md\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .md\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .md\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .md\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .md\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .md\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .md\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .md\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .md\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .md\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .md\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .md\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .md\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .md\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .md\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .md\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .md\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .md\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .md\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .md\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .md\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .md\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .md\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .md\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .md\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .md\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .md\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .md\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .md\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .md\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .md\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .md\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .md\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .md\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .md\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .md\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .md\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .md\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .md\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .md\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .md\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .md\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .md\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .md\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .md\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .md\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .md\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .md\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .md\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .md\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .md\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .md\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .md\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .md\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .md\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .md\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .md\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .md\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .md\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .md\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .md\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .md\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .md\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .md\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .md\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .md\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .md\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .md\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .md\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .md\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .md\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .md\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .md\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .md\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .md\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .md\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .md\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .md\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .md\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .md\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .md\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .md\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .md\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .md\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .md\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .md\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .md\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .md\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .md\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .md\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .md\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .md\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .md\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .md\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .md\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .md\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .md\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .md\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .md\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .md\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .md\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .md\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .md\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .md\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .md\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .md\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .md\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .md\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .md\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .md\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .md\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .md\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .md\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .md\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .md\:decoration-slice { + box-decoration-break: slice; } - .md\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .md\:decoration-clone { + box-decoration-break: clone; } - .md\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .md\:bg-auto { + background-size: auto; } - .md\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .md\:bg-cover { + background-size: cover; } - .md\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .md\:bg-contain { + background-size: contain; } - .md\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .md\:bg-fixed { + background-attachment: fixed; } - .md\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .md\:bg-local { + background-attachment: local; } - .md\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .md\:bg-scroll { + background-attachment: scroll; } - .md\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .md\:bg-clip-border { + background-clip: border-box; } - .md\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .md\:bg-clip-padding { + background-clip: padding-box; } - .md\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .md\:bg-clip-content { + background-clip: content-box; } - .md\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .md\:bg-clip-text { + background-clip: text; } - .md\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .md\:bg-bottom { + background-position: bottom; } - .md\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .md\:bg-center { + background-position: center; } - .md\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .md\:bg-left { + background-position: left; } - .md\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .md\:bg-left-bottom { + background-position: left bottom; } - .md\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .md\:bg-left-top { + background-position: left top; } - .md\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .md\:bg-right { + background-position: right; } - .md\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .md\:bg-right-bottom { + background-position: right bottom; } - .md\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .md\:bg-right-top { + background-position: right top; } - .md\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .md\:bg-top { + background-position: top; } - .md\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .md\:bg-repeat { + background-repeat: repeat; } - .md\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .md\:bg-no-repeat { + background-repeat: no-repeat; } - .md\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .md\:bg-repeat-x { + background-repeat: repeat-x; } - .md\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .md\:bg-repeat-y { + background-repeat: repeat-y; } - .md\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .md\:bg-repeat-round { + background-repeat: round; } - .md\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .md\:bg-repeat-space { + background-repeat: space; } - .md\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .md\:bg-origin-border { + background-origin: border-box; } - .md\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .md\:bg-origin-padding { + background-origin: padding-box; } - .md\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .md\:bg-origin-content { + background-origin: content-box; } - .md\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .md\:fill-current { + fill: currentColor; } - .md\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .md\:stroke-current { + stroke: currentColor; } - .md\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .md\:stroke-0 { + stroke-width: 0; } - .md\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .md\:stroke-1 { + stroke-width: 1; } - .md\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .md\:stroke-2 { + stroke-width: 2; } - .md\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .md\:object-contain { + object-fit: contain; } - .md\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .md\:object-cover { + object-fit: cover; } - .md\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .md\:object-fill { + object-fit: fill; } - .md\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .md\:object-none { + object-fit: none; } - .md\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .md\:object-scale-down { + object-fit: scale-down; } - .md\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .md\:object-bottom { + object-position: bottom; } - .md\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .md\:object-center { + object-position: center; } - .md\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .md\:object-left { + object-position: left; } - .md\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .md\:object-left-bottom { + object-position: left bottom; } - .md\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .md\:object-left-top { + object-position: left top; } - .md\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .md\:object-right { + object-position: right; } - .md\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .md\:object-right-bottom { + object-position: right bottom; } - .md\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .md\:object-right-top { + object-position: right top; } - .md\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .md\:object-top { + object-position: top; } - .md\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .md\:p-0 { + padding: 0px; } - .md\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .md\:p-1 { + padding: 0.25rem; } - .md\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .md\:p-2 { + padding: 0.5rem; } - .md\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .md\:p-3 { + padding: 0.75rem; } - .md\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .md\:p-4 { + padding: 1rem; } - .md\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .md\:p-5 { + padding: 1.25rem; } - .md\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .md\:p-6 { + padding: 1.5rem; } - .md\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .md\:p-7 { + padding: 1.75rem; } - .md\:ring-transparent { - --tw-ring-color: transparent; + .md\:p-8 { + padding: 2rem; } - .md\:ring-current { - --tw-ring-color: currentColor; + .md\:p-9 { + padding: 2.25rem; } - .md\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .md\:p-10 { + padding: 2.5rem; } - .md\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .md\:p-11 { + padding: 2.75rem; } - .md\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .md\:p-12 { + padding: 3rem; } - .md\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .md\:p-14 { + padding: 3.5rem; } - .md\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .md\:p-16 { + padding: 4rem; } - .md\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .md\:p-20 { + padding: 5rem; } - .md\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .md\:p-24 { + padding: 6rem; } - .md\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .md\:p-28 { + padding: 7rem; } - .md\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .md\:p-32 { + padding: 8rem; } - .md\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .md\:p-36 { + padding: 9rem; } - .md\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .md\:p-40 { + padding: 10rem; } - .md\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .md\:p-44 { + padding: 11rem; } - .md\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .md\:p-48 { + padding: 12rem; } - .md\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .md\:p-52 { + padding: 13rem; } - .md\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .md\:p-56 { + padding: 14rem; } - .md\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .md\:p-60 { + padding: 15rem; } - .md\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .md\:p-64 { + padding: 16rem; } - .md\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .md\:p-72 { + padding: 18rem; } - .md\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .md\:p-80 { + padding: 20rem; } - .md\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .md\:p-96 { + padding: 24rem; } - .md\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .md\:p-px { + padding: 1px; } - .md\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .md\:p-0\.5 { + padding: 0.125rem; } - .md\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .md\:p-1\.5 { + padding: 0.375rem; } - .md\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .md\:p-2\.5 { + padding: 0.625rem; } - .md\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .md\:p-3\.5 { + padding: 0.875rem; } - .md\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .md\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .md\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .md\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .md\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .md\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .md\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .md\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .md\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .md\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .md\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .md\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .md\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .md\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .md\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .md\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .md\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .md\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .md\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .md\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .md\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .md\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .md\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .md\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .md\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .md\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .md\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .md\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .md\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .md\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .md\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .md\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .md\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .md\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .md\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .md\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .md\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .md\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .md\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .md\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .md\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .md\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .md\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .md\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .md\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .md\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .md\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .md\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .md\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .md\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .md\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .md\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .md\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .md\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .md\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .md\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .md\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .md\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .md\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .md\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .md\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .md\:px-px { + padding-left: 1px; + padding-right: 1px; } - .md\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .md\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .md\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .md\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .md\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .md\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .md\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .md\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .md\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .md\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .md\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .md\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .md\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .md\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .md\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .md\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .md\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .md\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .md\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .md\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .md\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .md\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .md\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .md\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .md\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .md\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .md\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .md\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .md\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .md\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .md\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .md\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .md\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .md\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .md\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .md\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .md\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .md\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .md\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .md\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .md\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .md\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .md\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .md\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .md\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .md\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .md\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .md\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .md\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .md\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .md\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .md\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .md\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .md\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .md\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .md\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .md\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .md\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .md\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .md\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .md\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .md\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .md\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .md\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .md\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .md\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .md\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .md\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .md\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .md\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .md\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .md\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .md\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .md\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .md\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .md\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .md\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .md\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .md\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .md\:pt-0 { + padding-top: 0px; } - .md\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .md\:pt-1 { + padding-top: 0.25rem; } - .md\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .md\:pt-2 { + padding-top: 0.5rem; } - .md\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .md\:pt-3 { + padding-top: 0.75rem; } - .md\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .md\:pt-4 { + padding-top: 1rem; } - .md\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .md\:pt-5 { + padding-top: 1.25rem; } - .md\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .md\:pt-6 { + padding-top: 1.5rem; } - .md\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .md\:pt-7 { + padding-top: 1.75rem; } - .md\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .md\:pt-8 { + padding-top: 2rem; } - .md\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .md\:pt-9 { + padding-top: 2.25rem; } - .md\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .md\:pt-10 { + padding-top: 2.5rem; } - .md\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .md\:pt-11 { + padding-top: 2.75rem; } - .md\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .md\:pt-12 { + padding-top: 3rem; } - .md\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .md\:pt-14 { + padding-top: 3.5rem; } - .md\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .md\:pt-16 { + padding-top: 4rem; } - .md\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .md\:pt-20 { + padding-top: 5rem; } - .md\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .md\:pt-24 { + padding-top: 6rem; } - .md\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .md\:pt-28 { + padding-top: 7rem; } - .md\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .md\:pt-32 { + padding-top: 8rem; } - .md\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .md\:pt-36 { + padding-top: 9rem; } - .md\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .md\:pt-40 { + padding-top: 10rem; } - .md\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .md\:pt-44 { + padding-top: 11rem; } - .md\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .md\:pt-48 { + padding-top: 12rem; } - .md\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .md\:pt-52 { + padding-top: 13rem; } - .md\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .md\:pt-56 { + padding-top: 14rem; } - .md\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .md\:pt-60 { + padding-top: 15rem; } - .md\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .md\:pt-64 { + padding-top: 16rem; } - .md\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .md\:pt-72 { + padding-top: 18rem; } - .md\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .md\:pt-80 { + padding-top: 20rem; } - .md\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .md\:pt-96 { + padding-top: 24rem; } - .md\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .md\:pt-px { + padding-top: 1px; } - .md\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .md\:pt-0\.5 { + padding-top: 0.125rem; } - .md\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .md\:pt-1\.5 { + padding-top: 0.375rem; } - .md\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .md\:pt-2\.5 { + padding-top: 0.625rem; } - .md\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .md\:pt-3\.5 { + padding-top: 0.875rem; } - .md\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .md\:pr-0 { + padding-right: 0px; } - .md\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .md\:pr-1 { + padding-right: 0.25rem; } - .md\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .md\:pr-2 { + padding-right: 0.5rem; } - .md\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .md\:pr-3 { + padding-right: 0.75rem; } - .md\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .md\:pr-4 { + padding-right: 1rem; } - .md\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .md\:pr-5 { + padding-right: 1.25rem; } - .md\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .md\:pr-6 { + padding-right: 1.5rem; } - .md\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .md\:pr-7 { + padding-right: 1.75rem; } - .md\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .md\:pr-8 { + padding-right: 2rem; } - .md\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .md\:pr-9 { + padding-right: 2.25rem; } - .md\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .md\:pr-10 { + padding-right: 2.5rem; } - .md\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .md\:pr-11 { + padding-right: 2.75rem; } - .md\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .md\:pr-12 { + padding-right: 3rem; } - .md\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .md\:pr-14 { + padding-right: 3.5rem; } - .md\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .md\:pr-16 { + padding-right: 4rem; } - .md\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .md\:pr-20 { + padding-right: 5rem; } - .md\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .md\:pr-24 { + padding-right: 6rem; } - .md\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .md\:pr-28 { + padding-right: 7rem; } - .md\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .md\:pr-32 { + padding-right: 8rem; } - .md\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .md\:pr-36 { + padding-right: 9rem; } - .md\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .md\:pr-40 { + padding-right: 10rem; } - .md\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .md\:pr-44 { + padding-right: 11rem; } - .md\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .md\:pr-48 { + padding-right: 12rem; } - .md\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .md\:pr-52 { + padding-right: 13rem; } - .md\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .md\:pr-56 { + padding-right: 14rem; } - .md\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .md\:pr-60 { + padding-right: 15rem; } - .md\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .md\:pr-64 { + padding-right: 16rem; } - .md\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .md\:pr-72 { + padding-right: 18rem; } - .md\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .md\:pr-80 { + padding-right: 20rem; } - .md\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .md\:pr-96 { + padding-right: 24rem; } - .md\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .md\:pr-px { + padding-right: 1px; } - .md\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .md\:pr-0\.5 { + padding-right: 0.125rem; } - .md\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .md\:pr-1\.5 { + padding-right: 0.375rem; } - .md\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .md\:pr-2\.5 { + padding-right: 0.625rem; } - .md\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .md\:pr-3\.5 { + padding-right: 0.875rem; } - .md\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .md\:pb-0 { + padding-bottom: 0px; } - .md\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .md\:pb-1 { + padding-bottom: 0.25rem; } - .md\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .md\:pb-2 { + padding-bottom: 0.5rem; } - .md\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .md\:pb-3 { + padding-bottom: 0.75rem; } - .md\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .md\:pb-4 { + padding-bottom: 1rem; } - .md\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .md\:pb-5 { + padding-bottom: 1.25rem; } - .md\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .md\:pb-6 { + padding-bottom: 1.5rem; } - .md\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .md\:pb-7 { + padding-bottom: 1.75rem; } - .md\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .md\:pb-8 { + padding-bottom: 2rem; } - .md\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .md\:pb-9 { + padding-bottom: 2.25rem; } - .md\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .md\:pb-10 { + padding-bottom: 2.5rem; } - .md\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .md\:pb-11 { + padding-bottom: 2.75rem; } - .md\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .md\:pb-12 { + padding-bottom: 3rem; } - .md\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .md\:pb-14 { + padding-bottom: 3.5rem; } - .md\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .md\:pb-16 { + padding-bottom: 4rem; } - .md\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .md\:pb-20 { + padding-bottom: 5rem; } - .md\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .md\:pb-24 { + padding-bottom: 6rem; } - .md\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .md\:pb-28 { + padding-bottom: 7rem; } - .md\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .md\:pb-32 { + padding-bottom: 8rem; } - .md\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .md\:pb-36 { + padding-bottom: 9rem; } - .md\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .md\:pb-40 { + padding-bottom: 10rem; } - .md\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .md\:pb-44 { + padding-bottom: 11rem; } - .md\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .md\:pb-48 { + padding-bottom: 12rem; } - .md\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .md\:pb-52 { + padding-bottom: 13rem; } - .md\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .md\:pb-56 { + padding-bottom: 14rem; } - .md\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .md\:pb-60 { + padding-bottom: 15rem; } - .md\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .md\:pb-64 { + padding-bottom: 16rem; } - .md\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .md\:pb-72 { + padding-bottom: 18rem; } - .md\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .md\:pb-80 { + padding-bottom: 20rem; } - .md\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .md\:pb-96 { + padding-bottom: 24rem; } - .md\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .md\:pb-px { + padding-bottom: 1px; } - .md\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .md\:pb-0\.5 { + padding-bottom: 0.125rem; } - .md\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .md\:pb-1\.5 { + padding-bottom: 0.375rem; } - .md\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .md\:pb-2\.5 { + padding-bottom: 0.625rem; } - .md\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .md\:pb-3\.5 { + padding-bottom: 0.875rem; } - .md\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .md\:pl-0 { + padding-left: 0px; } - .md\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .md\:pl-1 { + padding-left: 0.25rem; } - .md\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .md\:pl-2 { + padding-left: 0.5rem; } - .md\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .md\:pl-3 { + padding-left: 0.75rem; } - .md\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .md\:pl-4 { + padding-left: 1rem; } - .md\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .md\:pl-5 { + padding-left: 1.25rem; } - .md\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .md\:pl-6 { + padding-left: 1.5rem; } - .md\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .md\:pl-7 { + padding-left: 1.75rem; } - .md\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .md\:pl-8 { + padding-left: 2rem; } - .md\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .md\:pl-9 { + padding-left: 2.25rem; } - .md\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .md\:pl-10 { + padding-left: 2.5rem; } - .md\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .md\:pl-11 { + padding-left: 2.75rem; } - .md\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .md\:pl-12 { + padding-left: 3rem; } - .md\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .md\:pl-14 { + padding-left: 3.5rem; } - .md\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .md\:pl-16 { + padding-left: 4rem; } - .md\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .md\:pl-20 { + padding-left: 5rem; } - .md\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .md\:pl-24 { + padding-left: 6rem; } - .md\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .md\:pl-28 { + padding-left: 7rem; } - .md\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .md\:pl-32 { + padding-left: 8rem; } - .md\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .md\:pl-36 { + padding-left: 9rem; } - .md\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .md\:pl-40 { + padding-left: 10rem; } - .md\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .md\:pl-44 { + padding-left: 11rem; } - .md\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .md\:pl-48 { + padding-left: 12rem; } - .md\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .md\:pl-52 { + padding-left: 13rem; } - .md\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .md\:pl-56 { + padding-left: 14rem; } - .md\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .md\:pl-60 { + padding-left: 15rem; } - .md\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .md\:pl-64 { + padding-left: 16rem; } - .md\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .md\:pl-72 { + padding-left: 18rem; } - .md\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .md\:pl-80 { + padding-left: 20rem; } - .md\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .md\:pl-96 { + padding-left: 24rem; } - .md\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .md\:pl-px { + padding-left: 1px; } - .md\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .md\:pl-0\.5 { + padding-left: 0.125rem; } - .md\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .md\:pl-1\.5 { + padding-left: 0.375rem; } - .md\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .md\:pl-2\.5 { + padding-left: 0.625rem; } - .md\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .md\:pl-3\.5 { + padding-left: 0.875rem; } - .md\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .md\:text-left { + text-align: left; } - .md\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .md\:text-center { + text-align: center; } - .md\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .md\:text-right { + text-align: right; } - .md\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .md\:text-justify { + text-align: justify; } - .md\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .md\:align-baseline { + vertical-align: baseline; } - .md\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .md\:align-top { + vertical-align: top; } - .md\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .md\:align-middle { + vertical-align: middle; } - .md\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .md\:align-bottom { + vertical-align: bottom; } - .md\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .md\:align-text-top { + vertical-align: text-top; } - .md\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .md\:align-text-bottom { + vertical-align: text-bottom; } - .md\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .md\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .md\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .md\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .md\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .md\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .md\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .md\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .md\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .md\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .md\:ring-opacity-0 { - --tw-ring-opacity: 0; + .md\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .md\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .md\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .md\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .md\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .md\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .md\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .md\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .md\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .md\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .md\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .md\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .md\:text-5xl { + font-size: 3rem; + line-height: 1; } - .md\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .md\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .md\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .md\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .md\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .md\:text-8xl { + font-size: 6rem; + line-height: 1; } - .md\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .md\:text-9xl { + font-size: 8rem; + line-height: 1; } - .md\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .md\:font-thin { + font-weight: 100; } - .md\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .md\:font-extralight { + font-weight: 200; } - .md\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .md\:font-light { + font-weight: 300; } - .md\:ring-opacity-100 { - --tw-ring-opacity: 1; + .md\:font-normal { + font-weight: 400; } - .md\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .md\:font-medium { + font-weight: 500; } - .md\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .md\:font-semibold { + font-weight: 600; } - .md\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .md\:font-bold { + font-weight: 700; } - .md\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .md\:font-extrabold { + font-weight: 800; } - .md\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .md\:font-black { + font-weight: 900; } - .md\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .md\:uppercase { + text-transform: uppercase; } - .md\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .md\:lowercase { + text-transform: lowercase; } - .md\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .md\:capitalize { + text-transform: capitalize; } - .md\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .md\:normal-case { + text-transform: none; } - .md\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .md\:italic { + font-style: italic; } - .md\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .md\:not-italic { + font-style: normal; } - .md\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .md\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .md\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .md\:normal-nums { + font-variant-numeric: normal; } - .md\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .md\:ordinal { + --tw-ordinal: ordinal; } - .md\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .md\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .md\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .md\:lining-nums { + --tw-numeric-figure: lining-nums; } - .md\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .md\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .md\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .md\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .md\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .md\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .md\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .md\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .md\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .md\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .md\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .md\:leading-3 { + line-height: .75rem; } - .md\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .md\:leading-4 { + line-height: 1rem; } - .md\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .md\:leading-5 { + line-height: 1.25rem; } - .md\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .md\:leading-6 { + line-height: 1.5rem; } - .md\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .md\:leading-7 { + line-height: 1.75rem; } - .md\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .md\:leading-8 { + line-height: 2rem; } - .md\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .md\:leading-9 { + line-height: 2.25rem; } - .md\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .md\:leading-10 { + line-height: 2.5rem; } - .md\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .md\:leading-none { + line-height: 1; } - .md\:fill-current { - fill: currentColor; + .md\:leading-tight { + line-height: 1.25; } - .md\:stroke-current { - stroke: currentColor; + .md\:leading-snug { + line-height: 1.375; } - .md\:stroke-0 { - stroke-width: 0; + .md\:leading-normal { + line-height: 1.5; } - .md\:stroke-1 { - stroke-width: 1; + .md\:leading-relaxed { + line-height: 1.625; } - .md\:stroke-2 { - stroke-width: 2; + .md\:leading-loose { + line-height: 2; } - .md\:table-auto { - table-layout: auto; + .md\:tracking-tighter { + letter-spacing: -0.05em; } - .md\:table-fixed { - table-layout: fixed; + .md\:tracking-tight { + letter-spacing: -0.025em; } - .md\:text-left { - text-align: left; + .md\:tracking-normal { + letter-spacing: 0em; } - .md\:text-center { - text-align: center; + .md\:tracking-wide { + letter-spacing: 0.025em; } - .md\:text-right { - text-align: right; + .md\:tracking-wider { + letter-spacing: 0.05em; } - .md\:text-justify { - text-align: justify; + .md\:tracking-widest { + letter-spacing: 0.1em; } .md\:text-transparent { @@ -82992,44 +83181,6 @@ video { --tw-text-opacity: 1; } - .md\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .md\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .md\:overflow-clip { - text-overflow: clip; - } - - .md\:italic { - font-style: italic; - } - - .md\:not-italic { - font-style: normal; - } - - .md\:uppercase { - text-transform: uppercase; - } - - .md\:lowercase { - text-transform: lowercase; - } - - .md\:capitalize { - text-transform: capitalize; - } - - .md\:normal-case { - text-transform: none; - } - .md\:underline { text-decoration: underline; } @@ -83100,4258 +83251,4669 @@ video { -moz-osx-font-smoothing: auto; } - .md\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); - } - - .md\:normal-nums { - font-variant-numeric: normal; - } - - .md\:ordinal { - --tw-ordinal: ordinal; - } - - .md\:slashed-zero { - --tw-slashed-zero: slashed-zero; - } - - .md\:lining-nums { - --tw-numeric-figure: lining-nums; - } - - .md\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; - } - - .md\:proportional-nums { - --tw-numeric-spacing: proportional-nums; - } - - .md\:tabular-nums { - --tw-numeric-spacing: tabular-nums; - } - - .md\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; - } - - .md\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; - } - - .md\:tracking-tighter { - letter-spacing: -0.05em; - } - - .md\:tracking-tight { - letter-spacing: -0.025em; - } - - .md\:tracking-normal { - letter-spacing: 0em; - } - - .md\:tracking-wide { - letter-spacing: 0.025em; + .md\:placeholder-transparent::placeholder { + color: transparent; } - .md\:tracking-wider { - letter-spacing: 0.05em; + .md\:placeholder-current::placeholder { + color: currentColor; } - .md\:tracking-widest { - letter-spacing: 0.1em; + .md\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .md\:select-none { - user-select: none; + .md\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .md\:select-text { - user-select: text; + .md\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .md\:select-all { - user-select: all; + .md\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .md\:select-auto { - user-select: auto; + .md\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .md\:align-baseline { - vertical-align: baseline; + .md\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .md\:align-top { - vertical-align: top; + .md\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .md\:align-middle { - vertical-align: middle; + .md\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .md\:align-bottom { - vertical-align: bottom; + .md\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .md\:align-text-top { - vertical-align: text-top; + .md\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .md\:align-text-bottom { - vertical-align: text-bottom; + .md\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .md\:visible { - visibility: visible; + .md\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .md\:invisible { - visibility: hidden; + .md\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .md\:whitespace-normal { - white-space: normal; + .md\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .md\:whitespace-nowrap { - white-space: nowrap; + .md\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .md\:whitespace-pre { - white-space: pre; + .md\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .md\:whitespace-pre-line { - white-space: pre-line; + .md\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .md\:whitespace-pre-wrap { - white-space: pre-wrap; + .md\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .md\:break-normal { - overflow-wrap: normal; - word-break: normal; + .md\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .md\:break-words { - overflow-wrap: break-word; + .md\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .md\:break-all { - word-break: break-all; + .md\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .md\:w-0 { - width: 0px; + .md\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .md\:w-1 { - width: 0.25rem; + .md\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .md\:w-2 { - width: 0.5rem; + .md\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .md\:w-3 { - width: 0.75rem; + .md\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .md\:w-4 { - width: 1rem; + .md\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .md\:w-5 { - width: 1.25rem; + .md\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .md\:w-6 { - width: 1.5rem; + .md\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .md\:w-7 { - width: 1.75rem; + .md\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .md\:w-8 { - width: 2rem; + .md\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .md\:w-9 { - width: 2.25rem; + .md\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .md\:w-10 { - width: 2.5rem; + .md\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .md\:w-11 { - width: 2.75rem; + .md\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .md\:w-12 { - width: 3rem; + .md\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .md\:w-14 { - width: 3.5rem; + .md\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .md\:w-16 { - width: 4rem; + .md\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .md\:w-20 { - width: 5rem; + .md\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .md\:w-24 { - width: 6rem; + .md\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .md\:w-28 { - width: 7rem; + .md\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .md\:w-32 { - width: 8rem; + .md\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .md\:w-36 { - width: 9rem; + .md\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .md\:w-40 { - width: 10rem; + .md\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .md\:w-44 { - width: 11rem; + .md\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .md\:w-48 { - width: 12rem; + .md\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .md\:w-52 { - width: 13rem; + .md\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .md\:w-56 { - width: 14rem; + .md\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .md\:w-60 { - width: 15rem; + .md\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .md\:w-64 { - width: 16rem; + .md\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .md\:w-72 { - width: 18rem; + .md\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .md\:w-80 { - width: 20rem; + .md\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .md\:w-96 { - width: 24rem; + .md\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .md\:w-auto { - width: auto; + .md\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .md\:w-px { - width: 1px; + .md\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .md\:w-0\.5 { - width: 0.125rem; + .md\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .md\:w-1\.5 { - width: 0.375rem; + .md\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .md\:w-2\.5 { - width: 0.625rem; + .md\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .md\:w-3\.5 { - width: 0.875rem; + .md\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .md\:w-1\/2 { - width: 50%; + .md\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .md\:w-1\/3 { - width: 33.333333%; + .md\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .md\:w-2\/3 { - width: 66.666667%; + .md\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .md\:w-1\/4 { - width: 25%; + .md\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .md\:w-2\/4 { - width: 50%; + .md\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .md\:w-3\/4 { - width: 75%; + .md\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .md\:w-1\/5 { - width: 20%; + .md\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .md\:w-2\/5 { - width: 40%; + .md\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .md\:w-3\/5 { - width: 60%; + .md\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .md\:w-4\/5 { - width: 80%; + .md\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .md\:w-1\/6 { - width: 16.666667%; + .md\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .md\:w-2\/6 { - width: 33.333333%; + .md\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .md\:w-3\/6 { - width: 50%; + .md\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .md\:w-4\/6 { - width: 66.666667%; + .md\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .md\:w-5\/6 { - width: 83.333333%; + .md\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .md\:w-1\/12 { - width: 8.333333%; + .md\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .md\:w-2\/12 { - width: 16.666667%; + .md\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .md\:w-3\/12 { - width: 25%; + .md\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .md\:w-4\/12 { - width: 33.333333%; + .md\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .md\:w-5\/12 { - width: 41.666667%; + .md\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .md\:w-6\/12 { - width: 50%; + .md\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .md\:w-7\/12 { - width: 58.333333%; + .md\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .md\:w-8\/12 { - width: 66.666667%; + .md\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .md\:w-9\/12 { - width: 75%; + .md\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .md\:w-10\/12 { - width: 83.333333%; + .md\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .md\:w-11\/12 { - width: 91.666667%; + .md\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .md\:w-full { - width: 100%; + .md\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .md\:w-screen { - width: 100vw; + .md\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .md\:w-min { - width: min-content; + .md\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .md\:w-max { - width: max-content; + .md\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .md\:z-0 { - z-index: 0; + .md\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .md\:z-10 { - z-index: 10; + .md\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .md\:z-20 { - z-index: 20; + .md\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .md\:z-30 { - z-index: 30; + .md\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .md\:z-40 { - z-index: 40; + .md\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .md\:z-50 { - z-index: 50; + .md\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .md\:z-auto { - z-index: auto; + .md\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-0:focus-within { - z-index: 0; + .md\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-10:focus-within { - z-index: 10; + .md\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-20:focus-within { - z-index: 20; + .md\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-30:focus-within { - z-index: 30; + .md\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-40:focus-within { - z-index: 40; + .md\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-50:focus-within { - z-index: 50; + .md\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-auto:focus-within { - z-index: auto; + .md\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .md\:focus\:z-0:focus { - z-index: 0; + .md\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .md\:focus\:z-10:focus { - z-index: 10; + .md\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .md\:focus\:z-20:focus { - z-index: 20; + .md\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .md\:focus\:z-30:focus { - z-index: 30; + .md\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .md\:focus\:z-40:focus { - z-index: 40; + .md\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .md\:focus\:z-50:focus { - z-index: 50; + .md\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .md\:focus\:z-auto:focus { - z-index: auto; + .md\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .md\:isolate { - isolation: isolate; + .md\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .md\:isolation-auto { - isolation: auto; + .md\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .md\:gap-0 { - gap: 0px; + .md\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .md\:gap-1 { - gap: 0.25rem; + .md\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .md\:gap-2 { - gap: 0.5rem; + .md\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .md\:gap-3 { - gap: 0.75rem; + .md\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .md\:gap-4 { - gap: 1rem; + .md\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .md\:gap-5 { - gap: 1.25rem; + .md\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .md\:gap-6 { - gap: 1.5rem; + .md\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .md\:gap-7 { - gap: 1.75rem; + .md\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .md\:gap-8 { - gap: 2rem; + .md\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .md\:gap-9 { - gap: 2.25rem; + .md\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .md\:gap-10 { - gap: 2.5rem; + .md\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .md\:gap-11 { - gap: 2.75rem; + .md\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .md\:gap-12 { - gap: 3rem; + .md\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .md\:gap-14 { - gap: 3.5rem; + .md\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .md\:gap-16 { - gap: 4rem; + .md\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .md\:gap-20 { - gap: 5rem; + .md\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .md\:gap-24 { - gap: 6rem; + .md\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .md\:gap-28 { - gap: 7rem; + .md\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .md\:gap-32 { - gap: 8rem; + .md\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .md\:gap-36 { - gap: 9rem; + .md\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .md\:gap-40 { - gap: 10rem; + .md\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .md\:gap-44 { - gap: 11rem; + .md\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .md\:gap-48 { - gap: 12rem; + .md\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .md\:gap-52 { - gap: 13rem; + .md\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .md\:gap-56 { - gap: 14rem; + .md\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .md\:gap-60 { - gap: 15rem; + .md\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .md\:gap-64 { - gap: 16rem; + .md\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .md\:gap-72 { - gap: 18rem; + .md\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .md\:gap-80 { - gap: 20rem; + .md\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .md\:gap-96 { - gap: 24rem; + .md\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .md\:gap-px { - gap: 1px; + .md\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .md\:gap-0\.5 { - gap: 0.125rem; + .md\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .md\:gap-1\.5 { - gap: 0.375rem; + .md\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .md\:gap-2\.5 { - gap: 0.625rem; + .md\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .md\:gap-3\.5 { - gap: 0.875rem; + .md\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .md\:gap-x-0 { - column-gap: 0px; + .md\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .md\:gap-x-1 { - column-gap: 0.25rem; + .md\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .md\:gap-x-2 { - column-gap: 0.5rem; + .md\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .md\:gap-x-3 { - column-gap: 0.75rem; + .md\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .md\:gap-x-4 { - column-gap: 1rem; + .md\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .md\:gap-x-5 { - column-gap: 1.25rem; + .md\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .md\:gap-x-6 { - column-gap: 1.5rem; + .md\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .md\:gap-x-7 { - column-gap: 1.75rem; + .md\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .md\:gap-x-8 { - column-gap: 2rem; + .md\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .md\:gap-x-9 { - column-gap: 2.25rem; + .md\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .md\:gap-x-10 { - column-gap: 2.5rem; + .md\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .md\:gap-x-11 { - column-gap: 2.75rem; + .md\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .md\:gap-x-12 { - column-gap: 3rem; + .md\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .md\:gap-x-14 { - column-gap: 3.5rem; + .md\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .md\:gap-x-16 { - column-gap: 4rem; + .md\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .md\:gap-x-20 { - column-gap: 5rem; + .md\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .md\:gap-x-24 { - column-gap: 6rem; + .md\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .md\:gap-x-28 { - column-gap: 7rem; + .md\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .md\:gap-x-32 { - column-gap: 8rem; + .md\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .md\:gap-x-36 { - column-gap: 9rem; + .md\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .md\:gap-x-40 { - column-gap: 10rem; + .md\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .md\:gap-x-44 { - column-gap: 11rem; + .md\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } - .md\:gap-x-48 { - column-gap: 12rem; + .md\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } - .md\:gap-x-52 { - column-gap: 13rem; + .md\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } - .md\:gap-x-56 { - column-gap: 14rem; + .md\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } - .md\:gap-x-60 { - column-gap: 15rem; + .md\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } - .md\:gap-x-64 { - column-gap: 16rem; + .md\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } - .md\:gap-x-72 { - column-gap: 18rem; + .md\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } - .md\:gap-x-80 { - column-gap: 20rem; + .md\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } - .md\:gap-x-96 { - column-gap: 24rem; + .md\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } - .md\:gap-x-px { - column-gap: 1px; + .md\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } - .md\:gap-x-0\.5 { - column-gap: 0.125rem; + .md\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } - .md\:gap-x-1\.5 { - column-gap: 0.375rem; + .md\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } - .md\:gap-x-2\.5 { - column-gap: 0.625rem; + .md\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } - .md\:gap-x-3\.5 { - column-gap: 0.875rem; + .md\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } - .md\:gap-y-0 { - row-gap: 0px; + .md\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } - .md\:gap-y-1 { - row-gap: 0.25rem; + .md\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } - .md\:gap-y-2 { - row-gap: 0.5rem; + .md\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } - .md\:gap-y-3 { - row-gap: 0.75rem; + .md\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } - .md\:gap-y-4 { - row-gap: 1rem; + .md\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } - .md\:gap-y-5 { - row-gap: 1.25rem; + .md\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } - .md\:gap-y-6 { - row-gap: 1.5rem; + .md\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } - .md\:gap-y-7 { - row-gap: 1.75rem; + .md\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } - .md\:gap-y-8 { - row-gap: 2rem; + .md\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } - .md\:gap-y-9 { - row-gap: 2.25rem; + .md\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } - .md\:gap-y-10 { - row-gap: 2.5rem; + .md\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } - .md\:gap-y-11 { - row-gap: 2.75rem; + .md\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } - .md\:gap-y-12 { - row-gap: 3rem; + .md\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } - .md\:gap-y-14 { - row-gap: 3.5rem; + .md\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } - .md\:gap-y-16 { - row-gap: 4rem; + .md\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } - .md\:gap-y-20 { - row-gap: 5rem; + .md\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } - .md\:gap-y-24 { - row-gap: 6rem; + .md\:opacity-0 { + opacity: 0; } - .md\:gap-y-28 { - row-gap: 7rem; + .md\:opacity-5 { + opacity: 0.05; } - .md\:gap-y-32 { - row-gap: 8rem; + .md\:opacity-10 { + opacity: 0.1; } - .md\:gap-y-36 { - row-gap: 9rem; + .md\:opacity-20 { + opacity: 0.2; } - .md\:gap-y-40 { - row-gap: 10rem; + .md\:opacity-25 { + opacity: 0.25; } - .md\:gap-y-44 { - row-gap: 11rem; + .md\:opacity-30 { + opacity: 0.3; } - .md\:gap-y-48 { - row-gap: 12rem; + .md\:opacity-40 { + opacity: 0.4; } - .md\:gap-y-52 { - row-gap: 13rem; + .md\:opacity-50 { + opacity: 0.5; } - .md\:gap-y-56 { - row-gap: 14rem; + .md\:opacity-60 { + opacity: 0.6; } - .md\:gap-y-60 { - row-gap: 15rem; + .md\:opacity-70 { + opacity: 0.7; } - .md\:gap-y-64 { - row-gap: 16rem; + .md\:opacity-75 { + opacity: 0.75; } - .md\:gap-y-72 { - row-gap: 18rem; + .md\:opacity-80 { + opacity: 0.8; } - .md\:gap-y-80 { - row-gap: 20rem; + .md\:opacity-90 { + opacity: 0.9; } - .md\:gap-y-96 { - row-gap: 24rem; + .md\:opacity-95 { + opacity: 0.95; } - .md\:gap-y-px { - row-gap: 1px; + .md\:opacity-100 { + opacity: 1; } - .md\:gap-y-0\.5 { - row-gap: 0.125rem; + .group:hover .md\:group-hover\:opacity-0 { + opacity: 0; } - .md\:gap-y-1\.5 { - row-gap: 0.375rem; + .group:hover .md\:group-hover\:opacity-5 { + opacity: 0.05; } - .md\:gap-y-2\.5 { - row-gap: 0.625rem; + .group:hover .md\:group-hover\:opacity-10 { + opacity: 0.1; } - .md\:gap-y-3\.5 { - row-gap: 0.875rem; + .group:hover .md\:group-hover\:opacity-20 { + opacity: 0.2; } - .md\:grid-flow-row { - grid-auto-flow: row; + .group:hover .md\:group-hover\:opacity-25 { + opacity: 0.25; } - .md\:grid-flow-col { - grid-auto-flow: column; + .group:hover .md\:group-hover\:opacity-30 { + opacity: 0.3; } - .md\:grid-flow-row-dense { - grid-auto-flow: row dense; + .group:hover .md\:group-hover\:opacity-40 { + opacity: 0.4; } - .md\:grid-flow-col-dense { - grid-auto-flow: column dense; + .group:hover .md\:group-hover\:opacity-50 { + opacity: 0.5; } - .md\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-60 { + opacity: 0.6; } - .md\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-70 { + opacity: 0.7; } - .md\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-75 { + opacity: 0.75; } - .md\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-80 { + opacity: 0.8; } - .md\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-90 { + opacity: 0.9; } - .md\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-95 { + opacity: 0.95; } - .md\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-100 { + opacity: 1; } - .md\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .md\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .md\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .md\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .md\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .md\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .md\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .md\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .md\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .md\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .md\:grid-cols-none { - grid-template-columns: none; + .md\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .md\:auto-cols-auto { - grid-auto-columns: auto; + .md\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .md\:auto-cols-min { - grid-auto-columns: min-content; + .md\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .md\:auto-cols-max { - grid-auto-columns: max-content; + .md\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .md\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .md\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .md\:col-auto { - grid-column: auto; + .md\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .md\:col-span-1 { - grid-column: span 1 / span 1; + .md\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .md\:col-span-2 { - grid-column: span 2 / span 2; + .md\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .md\:col-span-3 { - grid-column: span 3 / span 3; + .md\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .md\:col-span-4 { - grid-column: span 4 / span 4; + .md\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .md\:col-span-5 { - grid-column: span 5 / span 5; + .md\:hover\:opacity-0:hover { + opacity: 0; } - .md\:col-span-6 { - grid-column: span 6 / span 6; + .md\:hover\:opacity-5:hover { + opacity: 0.05; } - .md\:col-span-7 { - grid-column: span 7 / span 7; + .md\:hover\:opacity-10:hover { + opacity: 0.1; } - .md\:col-span-8 { - grid-column: span 8 / span 8; + .md\:hover\:opacity-20:hover { + opacity: 0.2; } - .md\:col-span-9 { - grid-column: span 9 / span 9; + .md\:hover\:opacity-25:hover { + opacity: 0.25; } - .md\:col-span-10 { - grid-column: span 10 / span 10; + .md\:hover\:opacity-30:hover { + opacity: 0.3; } - .md\:col-span-11 { - grid-column: span 11 / span 11; + .md\:hover\:opacity-40:hover { + opacity: 0.4; } - .md\:col-span-12 { - grid-column: span 12 / span 12; + .md\:hover\:opacity-50:hover { + opacity: 0.5; } - .md\:col-span-full { - grid-column: 1 / -1; + .md\:hover\:opacity-60:hover { + opacity: 0.6; } - .md\:col-start-1 { - grid-column-start: 1; + .md\:hover\:opacity-70:hover { + opacity: 0.7; } - .md\:col-start-2 { - grid-column-start: 2; + .md\:hover\:opacity-75:hover { + opacity: 0.75; } - .md\:col-start-3 { - grid-column-start: 3; + .md\:hover\:opacity-80:hover { + opacity: 0.8; } - .md\:col-start-4 { - grid-column-start: 4; + .md\:hover\:opacity-90:hover { + opacity: 0.9; } - .md\:col-start-5 { - grid-column-start: 5; + .md\:hover\:opacity-95:hover { + opacity: 0.95; } - .md\:col-start-6 { - grid-column-start: 6; + .md\:hover\:opacity-100:hover { + opacity: 1; } - .md\:col-start-7 { - grid-column-start: 7; + .md\:focus\:opacity-0:focus { + opacity: 0; } - .md\:col-start-8 { - grid-column-start: 8; + .md\:focus\:opacity-5:focus { + opacity: 0.05; } - .md\:col-start-9 { - grid-column-start: 9; + .md\:focus\:opacity-10:focus { + opacity: 0.1; } - .md\:col-start-10 { - grid-column-start: 10; + .md\:focus\:opacity-20:focus { + opacity: 0.2; } - .md\:col-start-11 { - grid-column-start: 11; + .md\:focus\:opacity-25:focus { + opacity: 0.25; } - .md\:col-start-12 { - grid-column-start: 12; + .md\:focus\:opacity-30:focus { + opacity: 0.3; } - .md\:col-start-13 { - grid-column-start: 13; + .md\:focus\:opacity-40:focus { + opacity: 0.4; } - .md\:col-start-auto { - grid-column-start: auto; + .md\:focus\:opacity-50:focus { + opacity: 0.5; } - .md\:col-end-1 { - grid-column-end: 1; + .md\:focus\:opacity-60:focus { + opacity: 0.6; } - .md\:col-end-2 { - grid-column-end: 2; + .md\:focus\:opacity-70:focus { + opacity: 0.7; } - .md\:col-end-3 { - grid-column-end: 3; + .md\:focus\:opacity-75:focus { + opacity: 0.75; } - .md\:col-end-4 { - grid-column-end: 4; + .md\:focus\:opacity-80:focus { + opacity: 0.8; } - .md\:col-end-5 { - grid-column-end: 5; + .md\:focus\:opacity-90:focus { + opacity: 0.9; } - .md\:col-end-6 { - grid-column-end: 6; + .md\:focus\:opacity-95:focus { + opacity: 0.95; } - .md\:col-end-7 { - grid-column-end: 7; + .md\:focus\:opacity-100:focus { + opacity: 1; } - .md\:col-end-8 { - grid-column-end: 8; + .md\:bg-blend-normal { + background-blend-mode: normal; } - .md\:col-end-9 { - grid-column-end: 9; + .md\:bg-blend-multiply { + background-blend-mode: multiply; } - .md\:col-end-10 { - grid-column-end: 10; + .md\:bg-blend-screen { + background-blend-mode: screen; } - .md\:col-end-11 { - grid-column-end: 11; + .md\:bg-blend-overlay { + background-blend-mode: overlay; } - .md\:col-end-12 { - grid-column-end: 12; + .md\:bg-blend-darken { + background-blend-mode: darken; } - .md\:col-end-13 { - grid-column-end: 13; + .md\:bg-blend-lighten { + background-blend-mode: lighten; } - .md\:col-end-auto { - grid-column-end: auto; + .md\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .md\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .md\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .md\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .md\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .md\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .md\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .md\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .md\:bg-blend-difference { + background-blend-mode: difference; } - .md\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .md\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .md\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .md\:bg-blend-hue { + background-blend-mode: hue; } - .md\:grid-rows-none { - grid-template-rows: none; + .md\:bg-blend-saturation { + background-blend-mode: saturation; } - .md\:auto-rows-auto { - grid-auto-rows: auto; + .md\:bg-blend-color { + background-blend-mode: color; } - .md\:auto-rows-min { - grid-auto-rows: min-content; + .md\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .md\:auto-rows-max { - grid-auto-rows: max-content; + .md\:mix-blend-normal { + mix-blend-mode: normal; } - .md\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .md\:mix-blend-multiply { + mix-blend-mode: multiply; } - .md\:row-auto { - grid-row: auto; + .md\:mix-blend-screen { + mix-blend-mode: screen; } - .md\:row-span-1 { - grid-row: span 1 / span 1; + .md\:mix-blend-overlay { + mix-blend-mode: overlay; } - .md\:row-span-2 { - grid-row: span 2 / span 2; + .md\:mix-blend-darken { + mix-blend-mode: darken; } - .md\:row-span-3 { - grid-row: span 3 / span 3; + .md\:mix-blend-lighten { + mix-blend-mode: lighten; } - .md\:row-span-4 { - grid-row: span 4 / span 4; + .md\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .md\:row-span-5 { - grid-row: span 5 / span 5; + .md\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .md\:row-span-6 { - grid-row: span 6 / span 6; + .md\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .md\:row-span-full { - grid-row: 1 / -1; + .md\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .md\:row-start-1 { - grid-row-start: 1; + .md\:mix-blend-difference { + mix-blend-mode: difference; } - .md\:row-start-2 { - grid-row-start: 2; + .md\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .md\:row-start-3 { - grid-row-start: 3; + .md\:mix-blend-hue { + mix-blend-mode: hue; } - .md\:row-start-4 { - grid-row-start: 4; + .md\:mix-blend-saturation { + mix-blend-mode: saturation; } - .md\:row-start-5 { - grid-row-start: 5; + .md\:mix-blend-color { + mix-blend-mode: color; } - .md\:row-start-6 { - grid-row-start: 6; + .md\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .md\:row-start-7 { - grid-row-start: 7; + .md\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-start-auto { - grid-row-start: auto; + .md\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-1 { - grid-row-end: 1; + .md\: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); } - .md\:row-end-2 { - grid-row-end: 2; + .md\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-3 { - grid-row-end: 3; + .md\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-4 { - grid-row-end: 4; + .md\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-5 { - grid-row-end: 5; + .md\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-6 { - grid-row-end: 6; + .md\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-7 { - grid-row-end: 7; + .group:hover .md\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-auto { - grid-row-end: auto; + .group:hover .md\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .md\:group-hover\: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); } - .md\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .md\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:transform-none { - transform: none; + .group:hover .md\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-center { - transform-origin: center; + .group:hover .md\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-top { - transform-origin: top; + .group:hover .md\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-top-right { - transform-origin: top right; + .group:hover .md\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-right { - transform-origin: right; + .md\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-bottom-right { - transform-origin: bottom right; + .md\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-bottom { - transform-origin: bottom; + .md\:focus-within\:shadow-md:focus-within { + --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); } - .md\:origin-bottom-left { - transform-origin: bottom left; + .md\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-left { - transform-origin: left; + .md\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-top-left { - transform-origin: top left; + .md\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .md\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .md\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .md\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .md\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .md\:hover\:shadow-md:hover { + --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); } - .md\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .md\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .md\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .md\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .md\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .md\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-0 { - --tw-scale-x: 0; + .md\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-50 { - --tw-scale-x: .5; + .md\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-75 { - --tw-scale-x: .75; + .md\:focus\:shadow-md:focus { + --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); } - .md\:scale-x-90 { - --tw-scale-x: .9; + .md\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-95 { - --tw-scale-x: .95; + .md\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-100 { - --tw-scale-x: 1; + .md\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-105 { - --tw-scale-x: 1.05; + .md\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-110 { - --tw-scale-x: 1.1; + .md\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-125 { - --tw-scale-x: 1.25; + .md\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .md\:scale-x-150 { - --tw-scale-x: 1.5; + .md\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .md\:scale-y-0 { - --tw-scale-y: 0; + .md\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .md\:scale-y-50 { - --tw-scale-y: .5; + .md\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .md\:scale-y-75 { - --tw-scale-y: .75; + .md\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .md\:scale-y-90 { - --tw-scale-y: .9; + .md\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .md\:scale-y-95 { - --tw-scale-y: .95; + .md\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .md\:scale-y-100 { - --tw-scale-y: 1; + .md\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .md\:scale-y-105 { - --tw-scale-y: 1.05; + .md\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .md\:scale-y-110 { - --tw-scale-y: 1.1; + .md\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:scale-y-125 { - --tw-scale-y: 1.25; + .md\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:scale-y-150 { - --tw-scale-y: 1.5; + .md\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .md\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .md\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .md\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .md\:ring-inset { + --tw-ring-inset: inset; } - .md\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .md\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .md\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .md\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .md\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .md\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .md\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .md\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .md\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .md\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .md\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .md\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .md\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .md\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .md\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .md\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .md\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .md\:ring-transparent { + --tw-ring-color: transparent; } - .md\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .md\:ring-current { + --tw-ring-color: currentColor; } - .md\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .md\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .md\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .md\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .md\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .md\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .md\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .md\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .md\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .md\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .md\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .md\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .md\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .md\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .md\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .md\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .md\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .md\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .md\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .md\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .md\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .md\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .md\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .md\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .md\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .md\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .md\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .md\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .md\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .md\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .md\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .md\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .md\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .md\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .md\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .md\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .md\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .md\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .md\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .md\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .md\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .md\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .md\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .md\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .md\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .md\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .md\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .md\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .md\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .md\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .md\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .md\:rotate-0 { - --tw-rotate: 0deg; + .md\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .md\:rotate-1 { - --tw-rotate: 1deg; + .md\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .md\:rotate-2 { - --tw-rotate: 2deg; + .md\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .md\:rotate-3 { - --tw-rotate: 3deg; + .md\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .md\:rotate-6 { - --tw-rotate: 6deg; + .md\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .md\:rotate-12 { - --tw-rotate: 12deg; + .md\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .md\:rotate-45 { - --tw-rotate: 45deg; + .md\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .md\:rotate-90 { - --tw-rotate: 90deg; + .md\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .md\:rotate-180 { - --tw-rotate: 180deg; + .md\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .md\:-rotate-180 { - --tw-rotate: -180deg; + .md\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .md\:-rotate-90 { - --tw-rotate: -90deg; + .md\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .md\:-rotate-45 { - --tw-rotate: -45deg; + .md\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .md\:-rotate-12 { - --tw-rotate: -12deg; + .md\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .md\:-rotate-6 { - --tw-rotate: -6deg; + .md\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .md\:-rotate-3 { - --tw-rotate: -3deg; + .md\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .md\:-rotate-2 { - --tw-rotate: -2deg; + .md\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .md\:-rotate-1 { - --tw-rotate: -1deg; + .md\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .md\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .md\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .md\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .md\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .md\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .md\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .md\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .md\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .md\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .md\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .md\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .md\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .md\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .md\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .md\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .md\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .md\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .md\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .md\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .md\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .md\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .md\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .md\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .md\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .md\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .md\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .md\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .md\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .md\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .md\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .md\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .md\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .md\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .md\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .md\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .md\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .md\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .md\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .md\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .md\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .md\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .md\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .md\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .md\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .md\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .md\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .md\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .md\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .md\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .md\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .md\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .md\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .md\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .md\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .md\:translate-x-0 { - --tw-translate-x: 0px; + .md\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .md\:translate-x-1 { - --tw-translate-x: 0.25rem; + .md\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .md\:translate-x-2 { - --tw-translate-x: 0.5rem; + .md\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .md\:translate-x-3 { - --tw-translate-x: 0.75rem; + .md\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .md\:translate-x-4 { - --tw-translate-x: 1rem; + .md\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .md\:translate-x-5 { - --tw-translate-x: 1.25rem; + .md\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .md\:translate-x-6 { - --tw-translate-x: 1.5rem; + .md\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .md\:translate-x-7 { - --tw-translate-x: 1.75rem; + .md\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .md\:translate-x-8 { - --tw-translate-x: 2rem; + .md\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .md\:translate-x-9 { - --tw-translate-x: 2.25rem; + .md\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .md\:translate-x-10 { - --tw-translate-x: 2.5rem; + .md\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .md\:translate-x-11 { - --tw-translate-x: 2.75rem; + .md\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .md\:translate-x-12 { - --tw-translate-x: 3rem; + .md\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .md\:translate-x-14 { - --tw-translate-x: 3.5rem; + .md\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .md\:translate-x-16 { - --tw-translate-x: 4rem; + .md\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .md\:translate-x-20 { - --tw-translate-x: 5rem; + .md\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .md\:translate-x-24 { - --tw-translate-x: 6rem; + .md\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .md\:translate-x-28 { - --tw-translate-x: 7rem; + .md\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .md\:translate-x-32 { - --tw-translate-x: 8rem; + .md\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .md\:translate-x-36 { - --tw-translate-x: 9rem; + .md\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .md\:translate-x-40 { - --tw-translate-x: 10rem; + .md\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .md\:translate-x-44 { - --tw-translate-x: 11rem; + .md\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .md\:translate-x-48 { - --tw-translate-x: 12rem; + .md\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .md\:translate-x-52 { - --tw-translate-x: 13rem; + .md\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .md\:translate-x-56 { - --tw-translate-x: 14rem; + .md\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .md\:translate-x-60 { - --tw-translate-x: 15rem; + .md\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .md\:translate-x-64 { - --tw-translate-x: 16rem; + .md\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .md\:translate-x-72 { - --tw-translate-x: 18rem; + .md\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .md\:translate-x-80 { - --tw-translate-x: 20rem; + .md\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .md\:translate-x-96 { - --tw-translate-x: 24rem; + .md\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .md\:translate-x-px { - --tw-translate-x: 1px; + .md\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .md\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .md\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .md\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .md\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .md\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .md\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .md\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .md\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .md\:-translate-x-0 { - --tw-translate-x: 0px; + .md\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .md\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .md\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .md\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .md\:-translate-x-4 { - --tw-translate-x: -1rem; + .md\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .md\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .md\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .md\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .md\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .md\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .md\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .md\:-translate-x-8 { - --tw-translate-x: -2rem; + .md\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .md\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .md\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .md\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .md\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .md\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-12 { - --tw-translate-x: -3rem; + .md\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .md\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .md\:-translate-x-16 { - --tw-translate-x: -4rem; + .md\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .md\:-translate-x-20 { - --tw-translate-x: -5rem; + .md\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .md\:-translate-x-24 { - --tw-translate-x: -6rem; + .md\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .md\:-translate-x-28 { - --tw-translate-x: -7rem; + .md\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .md\:-translate-x-32 { - --tw-translate-x: -8rem; + .md\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .md\:-translate-x-36 { - --tw-translate-x: -9rem; + .md\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .md\:-translate-x-40 { - --tw-translate-x: -10rem; + .md\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-44 { - --tw-translate-x: -11rem; + .md\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-48 { - --tw-translate-x: -12rem; + .md\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-52 { - --tw-translate-x: -13rem; + .md\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .md\:-translate-x-56 { - --tw-translate-x: -14rem; + .md\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .md\:-translate-x-60 { - --tw-translate-x: -15rem; + .md\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .md\:-translate-x-64 { - --tw-translate-x: -16rem; + .md\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .md\:-translate-x-72 { - --tw-translate-x: -18rem; + .md\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .md\:-translate-x-80 { - --tw-translate-x: -20rem; + .md\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .md\:-translate-x-96 { - --tw-translate-x: -24rem; + .md\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .md\:-translate-x-px { - --tw-translate-x: -1px; + .md\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .md\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .md\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .md\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .md\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .md\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .md\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .md\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .md\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .md\:translate-x-1\/2 { - --tw-translate-x: 50%; + .md\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .md\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .md\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .md\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .md\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .md\:translate-x-1\/4 { - --tw-translate-x: 25%; + .md\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .md\:translate-x-2\/4 { - --tw-translate-x: 50%; + .md\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .md\:translate-x-3\/4 { - --tw-translate-x: 75%; + .md\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .md\:translate-x-full { - --tw-translate-x: 100%; + .md\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .md\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .md\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .md\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .md\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .md\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .md\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .md\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .md\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .md\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .md\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .md\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .md\:-translate-x-full { - --tw-translate-x: -100%; + .md\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .md\:translate-y-0 { - --tw-translate-y: 0px; + .md\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .md\:translate-y-1 { - --tw-translate-y: 0.25rem; + .md\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .md\:translate-y-2 { - --tw-translate-y: 0.5rem; + .md\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .md\:translate-y-3 { - --tw-translate-y: 0.75rem; + .md\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .md\:translate-y-4 { - --tw-translate-y: 1rem; + .md\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .md\:translate-y-5 { - --tw-translate-y: 1.25rem; + .md\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .md\:translate-y-6 { - --tw-translate-y: 1.5rem; + .md\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .md\:translate-y-7 { - --tw-translate-y: 1.75rem; + .md\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .md\:translate-y-8 { - --tw-translate-y: 2rem; + .md\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .md\:translate-y-9 { - --tw-translate-y: 2.25rem; + .md\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .md\:translate-y-10 { - --tw-translate-y: 2.5rem; + .md\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .md\:translate-y-11 { - --tw-translate-y: 2.75rem; + .md\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .md\:translate-y-12 { - --tw-translate-y: 3rem; + .md\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .md\:translate-y-14 { - --tw-translate-y: 3.5rem; + .md\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .md\:translate-y-16 { - --tw-translate-y: 4rem; + .md\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .md\:translate-y-20 { - --tw-translate-y: 5rem; + .md\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .md\:translate-y-24 { - --tw-translate-y: 6rem; + .md\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .md\:translate-y-28 { - --tw-translate-y: 7rem; + .md\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .md\:translate-y-32 { - --tw-translate-y: 8rem; + .md\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .md\:translate-y-36 { - --tw-translate-y: 9rem; + .md\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .md\:translate-y-40 { - --tw-translate-y: 10rem; + .md\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .md\:translate-y-44 { - --tw-translate-y: 11rem; + .md\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .md\:translate-y-48 { - --tw-translate-y: 12rem; + .md\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .md\:translate-y-52 { - --tw-translate-y: 13rem; + .md\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .md\:translate-y-56 { - --tw-translate-y: 14rem; + .md\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .md\:translate-y-60 { - --tw-translate-y: 15rem; + .md\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .md\:translate-y-64 { - --tw-translate-y: 16rem; + .md\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .md\:translate-y-72 { - --tw-translate-y: 18rem; + .md\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .md\:translate-y-80 { - --tw-translate-y: 20rem; + .md\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .md\:translate-y-96 { - --tw-translate-y: 24rem; + .md\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .md\:translate-y-px { - --tw-translate-y: 1px; + .md\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .md\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .md\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .md\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .md\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .md\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .md\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .md\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .md\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .md\:-translate-y-0 { - --tw-translate-y: 0px; + .md\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .md\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .md\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .md\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .md\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .md\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .md\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .md\:-translate-y-4 { - --tw-translate-y: -1rem; + .md\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .md\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .md\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .md\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .md\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .md\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .md\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .md\:-translate-y-8 { - --tw-translate-y: -2rem; + .md\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .md\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .md\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .md\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .md\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .md\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .md\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .md\:-translate-y-12 { - --tw-translate-y: -3rem; + .md\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .md\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .md\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .md\:-translate-y-16 { - --tw-translate-y: -4rem; + .md\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .md\:-translate-y-20 { - --tw-translate-y: -5rem; + .md\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .md\:-translate-y-24 { - --tw-translate-y: -6rem; + .md\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .md\:-translate-y-28 { - --tw-translate-y: -7rem; + .md\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .md\:-translate-y-32 { - --tw-translate-y: -8rem; + .md\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .md\:-translate-y-36 { - --tw-translate-y: -9rem; + .md\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .md\:-translate-y-40 { - --tw-translate-y: -10rem; + .md\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .md\:-translate-y-44 { - --tw-translate-y: -11rem; + .md\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .md\:-translate-y-48 { - --tw-translate-y: -12rem; + .md\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .md\:-translate-y-52 { - --tw-translate-y: -13rem; + .md\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .md\:-translate-y-56 { - --tw-translate-y: -14rem; + .md\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .md\:-translate-y-60 { - --tw-translate-y: -15rem; + .md\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .md\:-translate-y-64 { - --tw-translate-y: -16rem; + .md\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .md\:-translate-y-72 { - --tw-translate-y: -18rem; + .md\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .md\:-translate-y-80 { - --tw-translate-y: -20rem; + .md\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .md\:-translate-y-96 { - --tw-translate-y: -24rem; + .md\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .md\:-translate-y-px { - --tw-translate-y: -1px; + .md\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .md\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .md\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .md\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .md\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .md\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .md\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .md\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .md\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .md\:translate-y-1\/2 { - --tw-translate-y: 50%; + .md\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .md\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .md\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .md\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .md\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .md\:translate-y-1\/4 { - --tw-translate-y: 25%; + .md\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .md\:translate-y-2\/4 { - --tw-translate-y: 50%; + .md\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .md\:translate-y-3\/4 { - --tw-translate-y: 75%; + .md\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .md\:translate-y-full { - --tw-translate-y: 100%; + .md\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .md\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .md\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .md\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .md\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .md\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .md\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .md\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .md\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .md\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .md\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .md\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .md\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .md\:-translate-y-full { - --tw-translate-y: -100%; + .md\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .md\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .md\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .md\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .md\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .md\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .md\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .md\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .md\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .md\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .md\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .md\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .md\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .md\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .md\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .md\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .md\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .md\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .md\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .md\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .md\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .md\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .md\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .md\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .md\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .md\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .md\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .md\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .md\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .md\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .md\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .md\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .md\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .md\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .md\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .md\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .md\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .md\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .md\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .md\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .md\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .md\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .md\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .md\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .md\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .md\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .md\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .md\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .md\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .md\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .md\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .md\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .md\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .md\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .md\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .md\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .md\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .md\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .md\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .md\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .md\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .md\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .md\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .md\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .md\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .md\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .md\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .md\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .md\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .md\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .md\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .md\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .md\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .md\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .md\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .md\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .md\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .md\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .md\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .md\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .md\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .md\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .md\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .md\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .md\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .md\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .md\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .md\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .md\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .md\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .md\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .md\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .md\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .md\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .md\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .md\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .md\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .md\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .md\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .md\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .md\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .md\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .md\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .md\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .md\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .md\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .md\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .md\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .md\:ring-offset-black { + --tw-ring-offset-color: #000; } - .md\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .md\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .md\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .md\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .md\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .md\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .md\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .md\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .md\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .md\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .md\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .md\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .md\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .md\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .md\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .md\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .md\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .md\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .md\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .md\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .md\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .md\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .md\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .md\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .md\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .md\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .md\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .md\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .md\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .md\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .md\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .md\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .md\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .md\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .md\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .md\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .md\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .md\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .md\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .md\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .md\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .md\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .md\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .md\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .md\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .md\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .md\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .md\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .md\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .md\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .md\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .md\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .md\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .md\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .md\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .md\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .md\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .md\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .md\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .md\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .md\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .md\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .md\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .md\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .md\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .md\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .md\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .md\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .md\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .md\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .md\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .md\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .md\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .md\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .md\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .md\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .md\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .md\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .md\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .md\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .md\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .md\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .md\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .md\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .md\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .md\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .md\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .md\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .md\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .md\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .md\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .md\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .md\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .md\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .md\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .md\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .md\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .md\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .md\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .md\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .md\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .md\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .md\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .md\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .md\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .md\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .md\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .md\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .md\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .md\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .md\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .md\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .md\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .md\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .md\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .md\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .md\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .md\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .md\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .md\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .md\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .md\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .md\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .md\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .md\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .md\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .md\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .md\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .md\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .md\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .md\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .md\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .md\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .md\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .md\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .md\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .md\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .md\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .md\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .md\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .md\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .md\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .md\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .md\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .md\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .md\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .md\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .md\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .md\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .md\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .md\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .md\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .md\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .md\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .md\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .md\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .md\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .md\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .md\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .md\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .md\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .md\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .md\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .md\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .md\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .md\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .md\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .md\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .md\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .md\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .md\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .md\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .md\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .md\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .md\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .md\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .md\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .md\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .md\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .md\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .md\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .md\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .md\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .md\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .md\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .md\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .md\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .md\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .md\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .md\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .md\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .md\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .md\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .md\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .md\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .md\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .md\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .md\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .md\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .md\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .md\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .md\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .md\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .md\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .md\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .md\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .md\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .md\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .md\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .md\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .md\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .md\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .md\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .md\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .md\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .md\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .md\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .md\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .md\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .md\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .md\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .md\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .md\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .md\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .md\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .md\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .md\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .md\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .md\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .md\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .md\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .md\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - - .md\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + + .md\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .md\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .md\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .md\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .md\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .md\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .md\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .md\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .md\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .md\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .md\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .md\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .md\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .md\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .md\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .md\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .md\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .md\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .md\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .md\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .md\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .md\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .md\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .md\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .md\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .md\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .md\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .md\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .md\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .md\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .md\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .md\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .md\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .md\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .md\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .md\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .md\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .md\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .md\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .md\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .md\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .md\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .md\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .md\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .md\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .md\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .md\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .md\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .md\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .md\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .md\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .md\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .md\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .md\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .md\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .md\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .md\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .md\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .md\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .md\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .md\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .md\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .md\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .md\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .md\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .md\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .md\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .md\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .md\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .md\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .md\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .md\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .md\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .md\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .md\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .md\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .md\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .md\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .md\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .md\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .md\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .md\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .md\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .md\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .md\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .md\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .md\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .md\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .md\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .md\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .md\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .md\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .md\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .md\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .md\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .md\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .md\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .md\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .md\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .md\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .md\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .md\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .md\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .md\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .md\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .md\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .md\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .md\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .md\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .md\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .md\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .md\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .md\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .md\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .md\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .md\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .md\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .md\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .md\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .md\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .md\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .md\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .md\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .md\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .md\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .md\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .md\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .md\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .md\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .md\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .md\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .md\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .md\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .md\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .md\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .md\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .md\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .md\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .md\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .md\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .md\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .md\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .md\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .md\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .md\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .md\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .md\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .md\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .md\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .md\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .md\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .md\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .md\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .md\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .md\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .md\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .md\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .md\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .md\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .md\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .md\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .md\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .md\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .md\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .md\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .md\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .md\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .md\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .md\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .md\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .md\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .md\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .md\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .md\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .md\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .md\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .md\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .md\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .md\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .md\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .md\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .md\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .md\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .md\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .md\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .md\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .md\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .md\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .md\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .md\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .md\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .md\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .md\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .md\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .md\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .md\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .md\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .md\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .md\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .md\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .md\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .md\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .md\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .md\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .md\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .md\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .md\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .md\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .md\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .md\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .md\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .md\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .md\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .md\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .md\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .md\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .md\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .md\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .md\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .md\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .md\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .md\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .md\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .md\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .md\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .md\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .md\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .md\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .md\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .md\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .md\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .md\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .md\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .md\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .md\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .md\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .md\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .md\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .md\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .md\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .md\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .md\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .md\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .md\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .md\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .md\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .md\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .md\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .md\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .md\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .md\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .md\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .md\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .md\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .md\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .md\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .md\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .md\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .md\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .md\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .md\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .md\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .md\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .md\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .md\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .md\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .md\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .md\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .md\:filter-none { + filter: none; } - .md\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .md\:blur-0 { + --tw-blur: blur(0); } - .md\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .md\:blur-sm { + --tw-blur: blur(4px); } - .md\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .md\:blur { + --tw-blur: blur(8px); } - .md\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .md\:blur-md { + --tw-blur: blur(12px); } - .md\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .md\:blur-lg { + --tw-blur: blur(16px); } - .md\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .md\:blur-xl { + --tw-blur: blur(24px); } - .md\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .md\:blur-2xl { + --tw-blur: blur(40px); } - .md\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .md\:blur-3xl { + --tw-blur: blur(64px); } - .md\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .md\:brightness-0 { + --tw-brightness: brightness(0); } - .md\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .md\:brightness-50 { + --tw-brightness: brightness(.5); } - .md\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .md\:brightness-75 { + --tw-brightness: brightness(.75); } - .md\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .md\:brightness-90 { + --tw-brightness: brightness(.9); } - .md\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .md\:brightness-95 { + --tw-brightness: brightness(.95); } - .md\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .md\:brightness-100 { + --tw-brightness: brightness(1); } - .md\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .md\:brightness-105 { + --tw-brightness: brightness(1.05); } - .md\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .md\:brightness-110 { + --tw-brightness: brightness(1.1); } - .md\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .md\:brightness-125 { + --tw-brightness: brightness(1.25); } - .md\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .md\:brightness-150 { + --tw-brightness: brightness(1.5); } - .md\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .md\:brightness-200 { + --tw-brightness: brightness(2); } - .md\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .md\:contrast-0 { + --tw-contrast: contrast(0); } - .md\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .md\:contrast-50 { + --tw-contrast: contrast(.5); } - .md\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .md\:contrast-75 { + --tw-contrast: contrast(.75); } - .md\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .md\:contrast-100 { + --tw-contrast: contrast(1); } - .md\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .md\:contrast-125 { + --tw-contrast: contrast(1.25); } - .md\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .md\:contrast-150 { + --tw-contrast: contrast(1.5); } - .md\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .md\:contrast-200 { + --tw-contrast: contrast(2); } - .md\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .md\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .md\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .md\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .md\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .md\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .md\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .md\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .md\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .md\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .md\:skew-x-0 { - --tw-skew-x: 0deg; + .md\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .md\:skew-x-1 { - --tw-skew-x: 1deg; + .md\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .md\:skew-x-2 { - --tw-skew-x: 2deg; + .md\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .md\:skew-x-3 { - --tw-skew-x: 3deg; + .md\:grayscale { + --tw-grayscale: grayscale(100%); } - .md\:skew-x-6 { - --tw-skew-x: 6deg; + .md\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .md\:skew-x-12 { - --tw-skew-x: 12deg; + .md\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .md\:-skew-x-12 { - --tw-skew-x: -12deg; + .md\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .md\:-skew-x-6 { - --tw-skew-x: -6deg; + .md\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .md\:-skew-x-3 { - --tw-skew-x: -3deg; + .md\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .md\:-skew-x-2 { - --tw-skew-x: -2deg; + .md\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .md\:-skew-x-1 { - --tw-skew-x: -1deg; + .md\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .md\:skew-y-0 { - --tw-skew-y: 0deg; + .md\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .md\:skew-y-1 { - --tw-skew-y: 1deg; + .md\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .md\:skew-y-2 { - --tw-skew-y: 2deg; + .md\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .md\:skew-y-3 { - --tw-skew-y: 3deg; + .md\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .md\:skew-y-6 { - --tw-skew-y: 6deg; + .md\:invert-0 { + --tw-invert: invert(0); } - .md\:skew-y-12 { - --tw-skew-y: 12deg; + .md\:invert { + --tw-invert: invert(100%); } - .md\:-skew-y-12 { - --tw-skew-y: -12deg; + .md\:saturate-0 { + --tw-saturate: saturate(0); } - .md\:-skew-y-6 { - --tw-skew-y: -6deg; + .md\:saturate-50 { + --tw-saturate: saturate(.5); } - .md\:-skew-y-3 { - --tw-skew-y: -3deg; + .md\:saturate-100 { + --tw-saturate: saturate(1); } - .md\:-skew-y-2 { - --tw-skew-y: -2deg; + .md\:saturate-150 { + --tw-saturate: saturate(1.5); } - .md\:-skew-y-1 { - --tw-skew-y: -1deg; + .md\:saturate-200 { + --tw-saturate: saturate(2); } - .md\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .md\:sepia-0 { + --tw-sepia: sepia(0); } - .md\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .md\:sepia { + --tw-sepia: sepia(100%); } - .md\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .md\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .md\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .md\:backdrop-filter-none { + backdrop-filter: none; } - .md\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .md\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .md\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .md\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .md\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .md\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .md\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .md\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .md\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .md\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .md\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .md\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .md\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .md\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .md\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .md\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .md\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .md\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .md\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .md\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .md\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .md\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .md\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .md\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .md\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .md\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .md\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .md\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .md\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + .md\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .md\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + .md\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .md\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + .md\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .md\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + .md\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .md\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + .md\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .md\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .md\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .md\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .md\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .md\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .md\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .md\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .md\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .md\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .md\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .md\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .md\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .md\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .md\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .md\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .md\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .md\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .md\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .md\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .md\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .md\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .md\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .md\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .md\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .md\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .md\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .md\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .md\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .md\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .md\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .md\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .md\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .md\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .md\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .md\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .md\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .md\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .md\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .md\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .md\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .md\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .md\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } .md\:transition-none { @@ -87394,6 +87956,70 @@ video { transition-duration: 150ms; } + .md\:delay-75 { + transition-delay: 75ms; + } + + .md\:delay-100 { + transition-delay: 100ms; + } + + .md\:delay-150 { + transition-delay: 150ms; + } + + .md\:delay-200 { + transition-delay: 200ms; + } + + .md\:delay-300 { + transition-delay: 300ms; + } + + .md\:delay-500 { + transition-delay: 500ms; + } + + .md\:delay-700 { + transition-delay: 700ms; + } + + .md\:delay-1000 { + transition-delay: 1000ms; + } + + .md\:duration-75 { + transition-duration: 75ms; + } + + .md\:duration-100 { + transition-duration: 100ms; + } + + .md\:duration-150 { + transition-duration: 150ms; + } + + .md\:duration-200 { + transition-duration: 200ms; + } + + .md\:duration-300 { + transition-duration: 300ms; + } + + .md\:duration-500 { + transition-duration: 500ms; + } + + .md\:duration-700 { + transition-duration: 700ms; + } + + .md\:duration-1000 { + transition-duration: 1000ms; + } + .md\:ease-linear { transition-timing-function: linear; } @@ -87410,22319 +88036,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .md\:duration-75 { - transition-duration: 75ms; + .md\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 1024px) { + .lg\:container { + width: 100%; + } + + @media (min-width: 640px) { + .lg\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .lg\:container { + max-width: 768px; + } } - .md\:duration-100 { - transition-duration: 100ms; + @media (min-width: 1024px) { + .lg\:container { + max-width: 1024px; + } } - .md\:duration-150 { - transition-duration: 150ms; + @media (min-width: 1280px) { + .lg\:container { + max-width: 1280px; + } } - .md\:duration-200 { - transition-duration: 200ms; + @media (min-width: 1536px) { + .lg\:container { + max-width: 1536px; + } } - .md\:duration-300 { - transition-duration: 300ms; + .lg\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .md\:duration-500 { - transition-duration: 500ms; + .lg\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .md\:duration-700 { - transition-duration: 700ms; + .lg\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .md\:duration-1000 { - transition-duration: 1000ms; + .lg\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .md\:delay-75 { - transition-delay: 75ms; + .lg\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .md\:delay-100 { - transition-delay: 100ms; + .lg\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .md\:delay-150 { - transition-delay: 150ms; + .lg\:pointer-events-none { + pointer-events: none; } - .md\:delay-200 { - transition-delay: 200ms; + .lg\:pointer-events-auto { + pointer-events: auto; } - .md\:delay-300 { - transition-delay: 300ms; + .lg\:visible { + visibility: visible; } - .md\:delay-500 { - transition-delay: 500ms; + .lg\:invisible { + visibility: hidden; } - .md\:delay-700 { - transition-delay: 700ms; + .lg\:static { + position: static; } - .md\:delay-1000 { - transition-delay: 1000ms; + .lg\:fixed { + position: fixed; } - .md\:animate-none { - animation: none; + .lg\:absolute { + position: absolute; } - .md\:animate-spin { - animation: spin 1s linear infinite; + .lg\:relative { + position: relative; } - .md\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .lg\:sticky { + position: sticky; } - .md\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .lg\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .md\:animate-bounce { - animation: bounce 1s infinite; + .lg\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .md\:mix-blend-normal { - mix-blend-mode: normal; + .lg\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .md\:mix-blend-multiply { - mix-blend-mode: multiply; + .lg\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .md\:mix-blend-screen { - mix-blend-mode: screen; + .lg\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .md\:mix-blend-overlay { - mix-blend-mode: overlay; + .lg\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .md\:mix-blend-darken { - mix-blend-mode: darken; + .lg\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .md\:mix-blend-lighten { - mix-blend-mode: lighten; + .lg\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .md\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .lg\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .md\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .lg\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .md\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .lg\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .md\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .lg\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .md\:mix-blend-difference { - mix-blend-mode: difference; + .lg\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .md\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .lg\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .md\:mix-blend-hue { - mix-blend-mode: hue; + .lg\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .md\:mix-blend-saturation { - mix-blend-mode: saturation; + .lg\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .md\:mix-blend-color { - mix-blend-mode: color; + .lg\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .md\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .lg\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .md\:bg-blend-normal { - background-blend-mode: normal; + .lg\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .md\:bg-blend-multiply { - background-blend-mode: multiply; + .lg\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .md\:bg-blend-screen { - background-blend-mode: screen; + .lg\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .md\:bg-blend-overlay { - background-blend-mode: overlay; + .lg\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .md\:bg-blend-darken { - background-blend-mode: darken; + .lg\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .md\:bg-blend-lighten { - background-blend-mode: lighten; + .lg\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .md\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .lg\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .md\:bg-blend-color-burn { - background-blend-mode: color-burn; + .lg\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .md\:bg-blend-hard-light { - background-blend-mode: hard-light; + .lg\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .md\:bg-blend-soft-light { - background-blend-mode: soft-light; + .lg\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .md\:bg-blend-difference { - background-blend-mode: difference; + .lg\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .md\:bg-blend-exclusion { - background-blend-mode: exclusion; + .lg\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .md\:bg-blend-hue { - background-blend-mode: hue; + .lg\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .md\:bg-blend-saturation { - background-blend-mode: saturation; + .lg\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .md\:bg-blend-color { - background-blend-mode: color; + .lg\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .md\:bg-blend-luminosity { - background-blend-mode: luminosity; + .lg\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .md\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .lg\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .md\:filter-none { - filter: none; + .lg\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .md\:blur-0 { - --tw-blur: blur(0); + .lg\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .md\:blur-sm { - --tw-blur: blur(4px); + .lg\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .md\:blur { - --tw-blur: blur(8px); + .lg\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .md\:blur-md { - --tw-blur: blur(12px); + .lg\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .md\:blur-lg { - --tw-blur: blur(16px); + .lg\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .md\:blur-xl { - --tw-blur: blur(24px); + .lg\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .md\:blur-2xl { - --tw-blur: blur(40px); + .lg\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .md\:blur-3xl { - --tw-blur: blur(64px); + .lg\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .md\:brightness-0 { - --tw-brightness: brightness(0); + .lg\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .md\:brightness-50 { - --tw-brightness: brightness(.5); + .lg\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .md\:brightness-75 { - --tw-brightness: brightness(.75); + .lg\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .md\:brightness-90 { - --tw-brightness: brightness(.9); + .lg\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .md\:brightness-95 { - --tw-brightness: brightness(.95); + .lg\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .md\:brightness-100 { - --tw-brightness: brightness(1); + .lg\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .md\:brightness-105 { - --tw-brightness: brightness(1.05); + .lg\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .md\:brightness-110 { - --tw-brightness: brightness(1.1); + .lg\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .md\:brightness-125 { - --tw-brightness: brightness(1.25); + .lg\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .md\:brightness-150 { - --tw-brightness: brightness(1.5); + .lg\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .md\:brightness-200 { - --tw-brightness: brightness(2); + .lg\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .md\:contrast-0 { - --tw-contrast: contrast(0); + .lg\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .md\:contrast-50 { - --tw-contrast: contrast(.5); + .lg\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .md\:contrast-75 { - --tw-contrast: contrast(.75); + .lg\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .md\:contrast-100 { - --tw-contrast: contrast(1); + .lg\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .md\:contrast-125 { - --tw-contrast: contrast(1.25); + .lg\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .md\:contrast-150 { - --tw-contrast: contrast(1.5); + .lg\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .md\:contrast-200 { - --tw-contrast: contrast(2); + .lg\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .md\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .lg\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .md\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .lg\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .md\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .lg\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .md\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .lg\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .md\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .lg\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .md\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .lg\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .md\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .lg\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .md\:grayscale-0 { - --tw-grayscale: grayscale(0); + .lg\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .md\:grayscale { - --tw-grayscale: grayscale(100%); + .lg\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .md\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .lg\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .md\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .lg\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .md\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .lg\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .md\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .lg\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .md\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .lg\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .md\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .lg\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .md\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .lg\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .md\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .lg\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .md\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .lg\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .md\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .lg\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .md\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .lg\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .md\:invert-0 { - --tw-invert: invert(0); + .lg\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .md\:invert { - --tw-invert: invert(100%); + .lg\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .md\:saturate-0 { - --tw-saturate: saturate(0); + .lg\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .md\:saturate-50 { - --tw-saturate: saturate(.5); + .lg\:inset-y-0 { + top: 0px; + bottom: 0px; } - .md\:saturate-100 { - --tw-saturate: saturate(1); + .lg\:inset-x-0 { + right: 0px; + left: 0px; } - .md\:saturate-150 { - --tw-saturate: saturate(1.5); + .lg\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .md\:saturate-200 { - --tw-saturate: saturate(2); + .lg\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .md\:sepia-0 { - --tw-sepia: sepia(0); + .lg\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .md\:sepia { - --tw-sepia: sepia(100%); + .lg\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .md\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .lg\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .md\:backdrop-filter-none { - backdrop-filter: none; + .lg\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .md\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .lg\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .md\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .lg\:inset-x-4 { + right: 1rem; + left: 1rem; } - .md\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .lg\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .md\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .lg\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .md\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .lg\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .md\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .lg\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .md\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .lg\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .md\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .lg\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .md\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .lg\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .md\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .lg\:inset-x-8 { + right: 2rem; + left: 2rem; } - .md\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .lg\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .md\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .lg\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .md\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .lg\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .md\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .lg\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .md\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .lg\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .md\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .lg\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .md\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .lg\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .md\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .lg\:inset-x-12 { + right: 3rem; + left: 3rem; } - .md\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .lg\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .md\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .lg\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .md\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .lg\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .md\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .lg\:inset-x-16 { + right: 4rem; + left: 4rem; } - .md\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .lg\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .md\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .lg\:inset-x-20 { + right: 5rem; + left: 5rem; } - .md\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .lg\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .md\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .lg\:inset-x-24 { + right: 6rem; + left: 6rem; } - .md\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .lg\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .md\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .lg\:inset-x-28 { + right: 7rem; + left: 7rem; } - .md\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .lg\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .md\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .lg\:inset-x-32 { + right: 8rem; + left: 8rem; } - .md\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .lg\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .md\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .lg\:inset-x-36 { + right: 9rem; + left: 9rem; } - .md\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .lg\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .md\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .lg\:inset-x-40 { + right: 10rem; + left: 10rem; } - .md\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .lg\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .md\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .lg\:inset-x-44 { + right: 11rem; + left: 11rem; } - .md\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .lg\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .md\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .lg\:inset-x-48 { + right: 12rem; + left: 12rem; } - .md\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .lg\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .md\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .lg\:inset-x-52 { + right: 13rem; + left: 13rem; } - .md\:example { - font-weight: 700; - color: #ef4444; + .lg\:inset-y-56 { + top: 14rem; + bottom: 14rem; } -} -@media (min-width: 1024px) { - .lg\:container { - width: 100%; + .lg\:inset-x-56 { + right: 14rem; + left: 14rem; } - @media (min-width: 640px) { - .lg\:container { - max-width: 640px; - } + .lg\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - @media (min-width: 768px) { - .lg\:container { - max-width: 768px; - } + .lg\:inset-x-60 { + right: 15rem; + left: 15rem; } - @media (min-width: 1024px) { - .lg\:container { - max-width: 1024px; - } + .lg\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - @media (min-width: 1280px) { - .lg\:container { - max-width: 1280px; - } + .lg\:inset-x-64 { + right: 16rem; + left: 16rem; } - @media (min-width: 1536px) { - .lg\:container { - max-width: 1536px; - } + .lg\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .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\:inset-x-72 { + right: 18rem; + left: 18rem; } - .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\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .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\:inset-x-80 { + right: 20rem; + left: 20rem; } - .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\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .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\:inset-x-96 { + right: 24rem; + left: 24rem; } - .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\:inset-y-auto { + top: auto; + bottom: auto; } - .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\:inset-x-auto { + right: auto; + left: auto; } - .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\:inset-y-px { + top: 1px; + bottom: 1px; } - .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\:inset-x-px { + right: 1px; + left: 1px; } - .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\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .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\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .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\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .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\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .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\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .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\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .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\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .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\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .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\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .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\:-inset-x-0 { + right: 0px; + left: 0px; } - .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\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .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\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .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\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .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\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .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\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .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\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .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\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .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\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .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\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .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\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } - .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\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - .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\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - .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\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - .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\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - .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\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - .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\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .lg\:right-6 { + right: 1.5rem; } - .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .lg\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .lg\:right-9 { + right: 2.25rem; } - .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .lg\:bottom-9 { + bottom: 2.25rem; } - .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .lg\:left-9 { + left: 2.25rem; } - .lg\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .lg\:top-10 { + top: 2.5rem; } - .lg\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + .lg\:right-10 { + right: 2.5rem; } - .lg\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + .lg\:bottom-10 { + bottom: 2.5rem; } - .lg\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + .lg\:left-10 { + left: 2.5rem; } - .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + .lg\:top-11 { + top: 2.75rem; } - .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + .lg\:right-11 { + right: 2.75rem; } - .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + .lg\:bottom-11 { + bottom: 2.75rem; } - .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + .lg\:left-11 { + left: 2.75rem; } - .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + .lg\:top-12 { + top: 3rem; } - .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + .lg\:right-12 { + right: 3rem; } - .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + .lg\:bottom-12 { + bottom: 3rem; } - .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + .lg\:left-12 { + left: 3rem; } - .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + .lg\:top-14 { + top: 3.5rem; } - .lg\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); + .lg\:right-14 { + right: 3.5rem; } - .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); + .lg\:bottom-14 { + bottom: 3.5rem; } - .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); + .lg\:left-14 { + left: 3.5rem; } - .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); + .lg\:top-16 { + top: 4rem; } - .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); + .lg\:right-16 { + right: 4rem; } - .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); + .lg\:bottom-16 { + bottom: 4rem; } - .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); + .lg\:left-16 { + left: 4rem; } - .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); + .lg\:top-20 { + top: 5rem; } - .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); + .lg\:right-20 { + right: 5rem; } - .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); + .lg\:bottom-20 { + bottom: 5rem; } - .lg\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); + .lg\:left-20 { + left: 5rem; } - .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); + .lg\:top-24 { + top: 6rem; } - .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); + .lg\:right-24 { + right: 6rem; } - .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); + .lg\:bottom-24 { + bottom: 6rem; } - .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); + .lg\:left-24 { + left: 6rem; } - .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + .lg\:top-28 { + top: 7rem; } - .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); + .lg\:right-28 { + right: 7rem; } - .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); + .lg\:bottom-28 { + bottom: 7rem; } - .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); + .lg\:left-28 { + left: 7rem; } - .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); + .lg\:top-32 { + top: 8rem; } - .lg\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); + .lg\:right-32 { + right: 8rem; } - .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); + .lg\:bottom-32 { + bottom: 8rem; } - .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); + .lg\:left-32 { + left: 8rem; } - .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); + .lg\:top-36 { + top: 9rem; } - .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); + .lg\:right-36 { + right: 9rem; } - .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); + .lg\:bottom-36 { + bottom: 9rem; } - .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); + .lg\:left-36 { + left: 9rem; } - .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); + .lg\:top-40 { + top: 10rem; } - .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); + .lg\:right-40 { + right: 10rem; } - .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); + .lg\:bottom-40 { + bottom: 10rem; } - .lg\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); + .lg\:left-40 { + left: 10rem; } - .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); + .lg\:top-44 { + top: 11rem; } - .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); + .lg\:right-44 { + right: 11rem; } - .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); + .lg\:bottom-44 { + bottom: 11rem; } - .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); + .lg\:left-44 { + left: 11rem; } - .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + .lg\:top-48 { + top: 12rem; } - .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); + .lg\:right-48 { + right: 12rem; } - .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); + .lg\:bottom-48 { + bottom: 12rem; } - .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); + .lg\:left-48 { + left: 12rem; } - .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); + .lg\:top-52 { + top: 13rem; } - .lg\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); + .lg\:right-52 { + right: 13rem; } - .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); + .lg\:bottom-52 { + bottom: 13rem; } - .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); + .lg\:left-52 { + left: 13rem; } - .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); + .lg\:top-56 { + top: 14rem; } - .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); + .lg\:right-56 { + right: 14rem; } - .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); + .lg\:bottom-56 { + bottom: 14rem; } - .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); + .lg\:left-56 { + left: 14rem; } - .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); + .lg\:top-60 { + top: 15rem; } - .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); + .lg\:right-60 { + right: 15rem; } - .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); + .lg\:bottom-60 { + bottom: 15rem; } - .lg\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); + .lg\:left-60 { + left: 15rem; } - .lg\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); + .lg\:top-64 { + top: 16rem; } - .lg\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); + .lg\:right-64 { + right: 16rem; } - .lg\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); + .lg\:bottom-64 { + bottom: 16rem; } - .lg\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); + .lg\:left-64 { + left: 16rem; } - .lg\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); + .lg\:top-72 { + top: 18rem; } - .lg\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); + .lg\:right-72 { + right: 18rem; } - .lg\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); + .lg\:bottom-72 { + bottom: 18rem; } - .lg\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); + .lg\:left-72 { + left: 18rem; } - .lg\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); + .lg\:top-80 { + top: 20rem; } - .lg\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); + .lg\:right-80 { + right: 20rem; } - .lg\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); + .lg\:bottom-80 { + bottom: 20rem; } - .lg\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); + .lg\:left-80 { + left: 20rem; } - .lg\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); + .lg\:top-96 { + top: 24rem; } - .lg\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); + .lg\:right-96 { + right: 24rem; } - .lg\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); + .lg\:bottom-96 { + bottom: 24rem; } - .lg\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); + .lg\:left-96 { + left: 24rem; } - .lg\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); + .lg\:top-auto { + top: auto; } - .lg\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); + .lg\:right-auto { + right: auto; } - .lg\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); + .lg\:bottom-auto { + bottom: auto; } - .lg\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .lg\:left-auto { + left: auto; } - .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .lg\:top-px { + top: 1px; } - .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .lg\:right-px { + right: 1px; } - .lg\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .lg\:bottom-px { + bottom: 1px; } - .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .lg\:left-px { + left: 1px; } - .lg\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; + .lg\:top-0\.5 { + top: 0.125rem; } - .lg\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; + .lg\:right-0\.5 { + right: 0.125rem; } - .lg\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; + .lg\:bottom-0\.5 { + bottom: 0.125rem; } - .lg\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; + .lg\:left-0\.5 { + left: 0.125rem; } - .lg\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; + .lg\:top-1\.5 { + top: 0.375rem; } - .lg\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; + .lg\:right-1\.5 { + right: 0.375rem; } - .lg\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; + .lg\:bottom-1\.5 { + bottom: 0.375rem; } - .lg\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; + .lg\:left-1\.5 { + left: 0.375rem; } - .lg\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; + .lg\:top-2\.5 { + top: 0.625rem; } - .lg\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; + .lg\:right-2\.5 { + right: 0.625rem; } - .lg\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; + .lg\:bottom-2\.5 { + bottom: 0.625rem; } - .lg\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; + .lg\:left-2\.5 { + left: 0.625rem; } - .lg\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; + .lg\:top-3\.5 { + top: 0.875rem; } - .lg\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; + .lg\:right-3\.5 { + right: 0.875rem; } - .lg\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; + .lg\:bottom-3\.5 { + bottom: 0.875rem; } - .lg\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .lg\:left-3\.5 { + left: 0.875rem; } - .lg\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .lg\:-top-0 { + top: 0px; } - .lg\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .lg\:-right-0 { + right: 0px; } - .lg\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .lg\:-bottom-0 { + bottom: 0px; } - .lg\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .lg\:-left-0 { + left: 0px; } - .lg\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .lg\:-top-1 { + top: -0.25rem; } - .lg\:appearance-none { - appearance: none; + .lg\:-right-1 { + right: -0.25rem; } - .lg\:bg-fixed { - background-attachment: fixed; + .lg\:-bottom-1 { + bottom: -0.25rem; } - .lg\:bg-local { - background-attachment: local; + .lg\:-left-1 { + left: -0.25rem; } - .lg\:bg-scroll { - background-attachment: scroll; + .lg\:-top-2 { + top: -0.5rem; } - .lg\:bg-clip-border { - background-clip: border-box; + .lg\:-right-2 { + right: -0.5rem; } - .lg\:bg-clip-padding { - background-clip: padding-box; + .lg\:-bottom-2 { + bottom: -0.5rem; } - .lg\:bg-clip-content { - background-clip: content-box; + .lg\:-left-2 { + left: -0.5rem; } - .lg\:bg-clip-text { - background-clip: text; + .lg\:-top-3 { + top: -0.75rem; } - .lg\:bg-transparent { - background-color: transparent; + .lg\:-right-3 { + right: -0.75rem; } - .lg\:bg-current { - background-color: currentColor; + .lg\:-bottom-3 { + bottom: -0.75rem; } - .lg\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .lg\:-left-3 { + left: -0.75rem; } - .lg\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .lg\:-top-4 { + top: -1rem; } - .lg\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .lg\:-right-4 { + right: -1rem; } - .lg\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .lg\:-bottom-4 { + bottom: -1rem; } - .lg\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .lg\:-left-4 { + left: -1rem; } - .lg\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .lg\:-top-5 { + top: -1.25rem; } - .lg\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .lg\:-right-5 { + right: -1.25rem; } - .lg\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .lg\:-bottom-5 { + bottom: -1.25rem; } - .lg\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .lg\:-left-5 { + left: -1.25rem; } - .lg\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .lg\:-top-6 { + top: -1.5rem; } - .lg\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .lg\:-right-6 { + right: -1.5rem; } - .lg\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .lg\:-bottom-6 { + bottom: -1.5rem; } - .lg\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .lg\:-left-6 { + left: -1.5rem; } - .lg\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .lg\:-top-7 { + top: -1.75rem; } - .lg\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .lg\:-right-7 { + right: -1.75rem; } - .lg\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .lg\:-bottom-7 { + bottom: -1.75rem; } - .lg\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .lg\:-left-7 { + left: -1.75rem; } - .lg\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .lg\:-top-8 { + top: -2rem; } - .lg\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .lg\:-right-8 { + right: -2rem; } - .lg\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .lg\:-bottom-8 { + bottom: -2rem; } - .lg\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .lg\:-left-8 { + left: -2rem; } - .lg\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .lg\:-top-9 { + top: -2.25rem; } - .lg\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .lg\:-right-9 { + right: -2.25rem; } - .lg\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .lg\:-bottom-9 { + bottom: -2.25rem; } - .lg\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .lg\:-left-9 { + left: -2.25rem; } - .lg\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .lg\:-top-10 { + top: -2.5rem; } - .lg\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .lg\:-right-10 { + right: -2.5rem; } - .lg\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .lg\:-bottom-10 { + bottom: -2.5rem; } - .lg\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .lg\:-left-10 { + left: -2.5rem; } - .lg\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .lg\:-top-11 { + top: -2.75rem; } - .lg\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .lg\:-right-11 { + right: -2.75rem; } - .lg\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .lg\:-bottom-11 { + bottom: -2.75rem; } - .lg\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .lg\:-left-11 { + left: -2.75rem; } - .lg\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .lg\:-top-12 { + top: -3rem; } - .lg\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .lg\:-right-12 { + right: -3rem; } - .lg\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .lg\:-bottom-12 { + bottom: -3rem; } - .lg\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .lg\:-left-12 { + left: -3rem; } - .lg\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .lg\:-top-14 { + top: -3.5rem; } - .lg\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .lg\:-right-14 { + right: -3.5rem; } - .lg\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .lg\:-bottom-14 { + bottom: -3.5rem; } - .lg\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .lg\:-left-14 { + left: -3.5rem; } - .lg\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .lg\:-top-16 { + top: -4rem; } - .lg\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .lg\:-right-16 { + right: -4rem; } - .lg\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .lg\:-bottom-16 { + bottom: -4rem; } - .lg\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .lg\:-left-16 { + left: -4rem; } - .lg\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .lg\:-top-20 { + top: -5rem; } - .lg\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .lg\:-right-20 { + right: -5rem; } - .lg\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .lg\:-bottom-20 { + bottom: -5rem; } - .lg\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .lg\:-left-20 { + left: -5rem; } - .lg\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .lg\:-top-24 { + top: -6rem; } - .lg\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .lg\:-right-24 { + right: -6rem; } - .lg\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .lg\:-bottom-24 { + bottom: -6rem; } - .lg\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .lg\:-left-24 { + left: -6rem; } - .lg\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .lg\:-top-28 { + top: -7rem; } - .lg\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .lg\:-right-28 { + right: -7rem; } - .lg\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .lg\:-bottom-28 { + bottom: -7rem; } - .lg\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .lg\:-left-28 { + left: -7rem; } - .lg\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .lg\:-top-32 { + top: -8rem; } - .lg\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .lg\:-right-32 { + right: -8rem; } - .lg\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .lg\:-bottom-32 { + bottom: -8rem; } - .lg\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .lg\:-left-32 { + left: -8rem; } - .lg\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .lg\:-top-36 { + top: -9rem; } - .lg\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .lg\:-right-36 { + right: -9rem; } - .lg\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .lg\:-bottom-36 { + bottom: -9rem; } - .lg\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .lg\:-left-36 { + left: -9rem; } - .lg\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .lg\:-top-40 { + top: -10rem; } - .lg\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .lg\:-right-40 { + right: -10rem; } - .lg\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .lg\:-bottom-40 { + bottom: -10rem; } - .lg\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .lg\:-left-40 { + left: -10rem; } - .lg\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .lg\:-top-44 { + top: -11rem; } - .lg\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .lg\:-right-44 { + right: -11rem; } - .lg\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .lg\:-bottom-44 { + bottom: -11rem; } - .lg\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .lg\:-left-44 { + left: -11rem; } - .lg\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .lg\:-top-48 { + top: -12rem; } - .lg\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .lg\:-right-48 { + right: -12rem; } - .lg\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .lg\:-bottom-48 { + bottom: -12rem; } - .lg\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .lg\:-left-48 { + left: -12rem; } - .lg\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .lg\:-top-52 { + top: -13rem; } - .lg\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .lg\:-right-52 { + right: -13rem; } - .lg\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .lg\:-bottom-52 { + bottom: -13rem; + } + + .lg\:-left-52 { + left: -13rem; } - .lg\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .lg\:-top-56 { + top: -14rem; } - .lg\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .lg\:-right-56 { + right: -14rem; } - .group:hover .lg\:group-hover\:bg-transparent { - background-color: transparent; + .lg\:-bottom-56 { + bottom: -14rem; } - .group:hover .lg\:group-hover\:bg-current { - background-color: currentColor; + .lg\:-left-56 { + left: -14rem; } - .group:hover .lg\:group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .lg\:-top-60 { + top: -15rem; } - .group:hover .lg\:group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .lg\:-right-60 { + right: -15rem; } - .group:hover .lg\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .lg\:-bottom-60 { + bottom: -15rem; } - .group:hover .lg\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .lg\:-left-60 { + left: -15rem; } - .group:hover .lg\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .lg\:-top-64 { + top: -16rem; } - .group:hover .lg\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .lg\:-right-64 { + right: -16rem; } - .group:hover .lg\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .lg\:-bottom-64 { + bottom: -16rem; } - .group:hover .lg\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .lg\:-left-64 { + left: -16rem; } - .group:hover .lg\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .lg\:-top-72 { + top: -18rem; } - .group:hover .lg\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .lg\:-right-72 { + right: -18rem; } - .group:hover .lg\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .lg\:-bottom-72 { + bottom: -18rem; } - .group:hover .lg\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .lg\:-left-72 { + left: -18rem; } - .group:hover .lg\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .lg\:-top-80 { + top: -20rem; } - .group:hover .lg\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .lg\:-right-80 { + right: -20rem; } - .group:hover .lg\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .lg\:-bottom-80 { + bottom: -20rem; } - .group:hover .lg\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .lg\:-left-80 { + left: -20rem; } - .group:hover .lg\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .lg\:-top-96 { + top: -24rem; } - .group:hover .lg\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .lg\:-right-96 { + right: -24rem; } - .group:hover .lg\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .lg\:-bottom-96 { + bottom: -24rem; } - .group:hover .lg\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .lg\:-left-96 { + left: -24rem; } - .group:hover .lg\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .lg\:-top-px { + top: -1px; } - .group:hover .lg\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .lg\:-right-px { + right: -1px; } - .group:hover .lg\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .lg\:-bottom-px { + bottom: -1px; } - .group:hover .lg\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .lg\:-left-px { + left: -1px; } - .group:hover .lg\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .lg\:-top-0\.5 { + top: -0.125rem; } - .group:hover .lg\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .lg\:-right-0\.5 { + right: -0.125rem; } - .group:hover .lg\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .lg\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .lg\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .lg\:-left-0\.5 { + left: -0.125rem; } - .group:hover .lg\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .lg\:-top-1\.5 { + top: -0.375rem; } - .group:hover .lg\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .lg\:-right-1\.5 { + right: -0.375rem; } - .group:hover .lg\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .lg\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .lg\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .lg\:-left-1\.5 { + left: -0.375rem; } - .group:hover .lg\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .lg\:-top-2\.5 { + top: -0.625rem; } - .group:hover .lg\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .lg\:-right-2\.5 { + right: -0.625rem; } - .group:hover .lg\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .lg\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .lg\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .lg\:-left-2\.5 { + left: -0.625rem; } - .group:hover .lg\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .lg\:-top-3\.5 { + top: -0.875rem; } - .group:hover .lg\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .lg\:-right-3\.5 { + right: -0.875rem; } - .group:hover .lg\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .lg\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .lg\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .lg\:-left-3\.5 { + left: -0.875rem; } - .group:hover .lg\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .lg\:top-1\/2 { + top: 50%; } - .group:hover .lg\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .lg\:right-1\/2 { + right: 50%; } - .group:hover .lg\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .lg\:bottom-1\/2 { + bottom: 50%; } - .group:hover .lg\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .lg\:left-1\/2 { + left: 50%; } - .group:hover .lg\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .lg\:top-1\/3 { + top: 33.333333%; } - .group:hover .lg\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .lg\:right-1\/3 { + right: 33.333333%; } - .group:hover .lg\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .lg\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .lg\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .lg\:left-1\/3 { + left: 33.333333%; } - .group:hover .lg\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .lg\:top-2\/3 { + top: 66.666667%; } - .group:hover .lg\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .lg\:right-2\/3 { + right: 66.666667%; } - .group:hover .lg\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .lg\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .lg\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .lg\:left-2\/3 { + left: 66.666667%; } - .group:hover .lg\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .lg\:top-1\/4 { + top: 25%; } - .group:hover .lg\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .lg\:right-1\/4 { + right: 25%; } - .group:hover .lg\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .lg\:bottom-1\/4 { + bottom: 25%; } - .group:hover .lg\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .lg\:left-1\/4 { + left: 25%; } - .group:hover .lg\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .lg\:top-2\/4 { + top: 50%; } - .group:hover .lg\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .lg\:right-2\/4 { + right: 50%; } - .group:hover .lg\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .lg\:bottom-2\/4 { + bottom: 50%; } - .group:hover .lg\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .lg\:left-2\/4 { + left: 50%; } - .group:hover .lg\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .lg\:top-3\/4 { + top: 75%; } - .group:hover .lg\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .lg\:right-3\/4 { + right: 75%; } - .group:hover .lg\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .lg\:bottom-3\/4 { + bottom: 75%; } - .group:hover .lg\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .lg\:left-3\/4 { + left: 75%; } - .group:hover .lg\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .lg\:top-full { + top: 100%; } - .group:hover .lg\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .lg\:right-full { + right: 100%; } - .group:hover .lg\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .lg\:bottom-full { + bottom: 100%; } - .group:hover .lg\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .lg\:left-full { + left: 100%; } - .group:hover .lg\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .lg\:-top-1\/2 { + top: -50%; } - .group:hover .lg\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .lg\:-right-1\/2 { + right: -50%; } - .group:hover .lg\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .lg\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .lg\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .lg\:-left-1\/2 { + left: -50%; } - .group:hover .lg\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .lg\:-top-1\/3 { + top: -33.333333%; } - .group:hover .lg\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .lg\:-right-1\/3 { + right: -33.333333%; } - .group:hover .lg\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .lg\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .lg\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .lg\:-left-1\/3 { + left: -33.333333%; } - .group:hover .lg\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .lg\:-top-2\/3 { + top: -66.666667%; } - .group:hover .lg\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .lg\:-right-2\/3 { + right: -66.666667%; } - .group:hover .lg\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .lg\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .lg\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .lg\:-left-2\/3 { + left: -66.666667%; } - .group:hover .lg\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .lg\:-top-1\/4 { + top: -25%; } - .group:hover .lg\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .lg\:-right-1\/4 { + right: -25%; } - .lg\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .lg\:-bottom-1\/4 { + bottom: -25%; } - .lg\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .lg\:-left-1\/4 { + left: -25%; } - .lg\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .lg\:-top-2\/4 { + top: -50%; } - .lg\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .lg\:-right-2\/4 { + right: -50%; } - .lg\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .lg\:-bottom-2\/4 { + bottom: -50%; } - .lg\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .lg\:-left-2\/4 { + left: -50%; } - .lg\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .lg\:-top-3\/4 { + top: -75%; } - .lg\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .lg\:-right-3\/4 { + right: -75%; } - .lg\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .lg\:-bottom-3\/4 { + bottom: -75%; } - .lg\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .lg\:-left-3\/4 { + left: -75%; } - .lg\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .lg\:-top-full { + top: -100%; } - .lg\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .lg\:-right-full { + right: -100%; } - .lg\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .lg\:-bottom-full { + bottom: -100%; } - .lg\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .lg\:-left-full { + left: -100%; } - .lg\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .lg\:isolate { + isolation: isolate; } - .lg\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .lg\:isolation-auto { + isolation: auto; } - .lg\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .lg\:z-0 { + z-index: 0; } - .lg\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .lg\:z-10 { + z-index: 10; } - .lg\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .lg\:z-20 { + z-index: 20; } - .lg\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .lg\:z-30 { + z-index: 30; } - .lg\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .lg\:z-40 { + z-index: 40; } - .lg\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .lg\:z-50 { + z-index: 50; } - .lg\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .lg\:z-auto { + z-index: auto; } - .lg\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .lg\:focus-within\:z-0:focus-within { + z-index: 0; } - .lg\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .lg\:focus-within\:z-10:focus-within { + z-index: 10; } - .lg\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .lg\:focus-within\:z-20:focus-within { + z-index: 20; } - .lg\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .lg\:focus-within\:z-30:focus-within { + z-index: 30; } - .lg\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .lg\:focus-within\:z-40:focus-within { + z-index: 40; } - .lg\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .lg\:focus-within\:z-50:focus-within { + z-index: 50; } - .lg\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .lg\:focus-within\:z-auto:focus-within { + z-index: auto; } - .lg\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .lg\:focus\:z-0:focus { + z-index: 0; } - .lg\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .lg\:focus\:z-10:focus { + z-index: 10; } - .lg\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .lg\:focus\:z-20:focus { + z-index: 20; } - .lg\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .lg\:focus\:z-30:focus { + z-index: 30; } - .lg\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .lg\:focus\:z-40:focus { + z-index: 40; } - .lg\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .lg\:focus\:z-50:focus { + z-index: 50; } - .lg\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .lg\:focus\:z-auto:focus { + z-index: auto; } - .lg\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .lg\:order-1 { + order: 1; } - .lg\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .lg\:order-2 { + order: 2; } - .lg\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .lg\:order-3 { + order: 3; } - .lg\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .lg\:order-4 { + order: 4; } - .lg\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .lg\:order-5 { + order: 5; } - .lg\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .lg\:order-6 { + order: 6; } - .lg\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .lg\:order-7 { + order: 7; } - .lg\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .lg\:order-8 { + order: 8; } - .lg\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .lg\:order-9 { + order: 9; } - .lg\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .lg\:order-10 { + order: 10; } - .lg\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .lg\:order-11 { + order: 11; } - .lg\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .lg\:order-12 { + order: 12; } - .lg\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .lg\:order-first { + order: -9999; } - .lg\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .lg\:order-last { + order: 9999; } - .lg\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .lg\:order-none { + order: 0; } - .lg\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .lg\:col-auto { + grid-column: auto; } - .lg\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .lg\:col-span-1 { + grid-column: span 1 / span 1; } - .lg\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .lg\:col-span-2 { + grid-column: span 2 / span 2; } - .lg\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .lg\:col-span-3 { + grid-column: span 3 / span 3; } - .lg\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .lg\:col-span-4 { + grid-column: span 4 / span 4; } - .lg\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .lg\:col-span-5 { + grid-column: span 5 / span 5; } - .lg\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .lg\:col-span-6 { + grid-column: span 6 / span 6; } - .lg\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .lg\:col-span-7 { + grid-column: span 7 / span 7; } - .lg\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .lg\:col-span-8 { + grid-column: span 8 / span 8; } - .lg\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .lg\:col-span-9 { + grid-column: span 9 / span 9; } - .lg\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .lg\:col-span-10 { + grid-column: span 10 / span 10; } - .lg\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .lg\:col-span-11 { + grid-column: span 11 / span 11; } - .lg\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .lg\:col-span-12 { + grid-column: span 12 / span 12; } - .lg\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .lg\:col-span-full { + grid-column: 1 / -1; } - .lg\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .lg\:col-start-1 { + grid-column-start: 1; } - .lg\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .lg\:col-start-2 { + grid-column-start: 2; } - .lg\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .lg\:col-start-3 { + grid-column-start: 3; } - .lg\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .lg\:col-start-4 { + grid-column-start: 4; } - .lg\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .lg\:col-start-5 { + grid-column-start: 5; } - .lg\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .lg\:col-start-6 { + grid-column-start: 6; } - .lg\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .lg\:col-start-7 { + grid-column-start: 7; } - .lg\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .lg\:col-start-8 { + grid-column-start: 8; } - .lg\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .lg\:col-start-9 { + grid-column-start: 9; } - .lg\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .lg\:col-start-10 { + grid-column-start: 10; } - .lg\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .lg\:col-start-11 { + grid-column-start: 11; } - .lg\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .lg\:col-start-12 { + grid-column-start: 12; } - .lg\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .lg\:col-start-13 { + grid-column-start: 13; } - .lg\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .lg\:col-start-auto { + grid-column-start: auto; } - .lg\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .lg\:col-end-1 { + grid-column-end: 1; } - .lg\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .lg\:col-end-2 { + grid-column-end: 2; } - .lg\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .lg\:col-end-3 { + grid-column-end: 3; } - .lg\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .lg\:col-end-4 { + grid-column-end: 4; } - .lg\:hover\:bg-transparent:hover { - background-color: transparent; + .lg\:col-end-5 { + grid-column-end: 5; } - .lg\:hover\:bg-current:hover { - background-color: currentColor; + .lg\:col-end-6 { + grid-column-end: 6; } - .lg\:hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .lg\:col-end-7 { + grid-column-end: 7; } - .lg\:hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .lg\:col-end-8 { + grid-column-end: 8; } - .lg\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .lg\:col-end-9 { + grid-column-end: 9; } - .lg\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .lg\:col-end-10 { + grid-column-end: 10; } - .lg\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .lg\:col-end-11 { + grid-column-end: 11; } - .lg\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .lg\:col-end-12 { + grid-column-end: 12; } - .lg\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .lg\:col-end-13 { + grid-column-end: 13; } - .lg\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .lg\:col-end-auto { + grid-column-end: auto; } - .lg\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .lg\:row-auto { + grid-row: auto; } - .lg\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .lg\:row-span-1 { + grid-row: span 1 / span 1; } - .lg\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .lg\:row-span-2 { + grid-row: span 2 / span 2; } - .lg\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .lg\:row-span-3 { + grid-row: span 3 / span 3; } - .lg\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .lg\:row-span-4 { + grid-row: span 4 / span 4; } - .lg\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .lg\:row-span-5 { + grid-row: span 5 / span 5; } - .lg\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .lg\:row-span-6 { + grid-row: span 6 / span 6; } - .lg\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .lg\:row-span-full { + grid-row: 1 / -1; } - .lg\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .lg\:row-start-1 { + grid-row-start: 1; } - .lg\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .lg\:row-start-2 { + grid-row-start: 2; } - .lg\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .lg\:row-start-3 { + grid-row-start: 3; } - .lg\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .lg\:row-start-4 { + grid-row-start: 4; } - .lg\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .lg\:row-start-5 { + grid-row-start: 5; } - .lg\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .lg\:row-start-6 { + grid-row-start: 6; } - .lg\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .lg\:row-start-7 { + grid-row-start: 7; } - .lg\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .lg\:row-start-auto { + grid-row-start: auto; } - .lg\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .lg\:row-end-1 { + grid-row-end: 1; } - .lg\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .lg\:row-end-2 { + grid-row-end: 2; } - .lg\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .lg\:row-end-3 { + grid-row-end: 3; } - .lg\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .lg\:row-end-4 { + grid-row-end: 4; } - .lg\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .lg\:row-end-5 { + grid-row-end: 5; } - .lg\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .lg\:row-end-6 { + grid-row-end: 6; } - .lg\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .lg\:row-end-7 { + grid-row-end: 7; } - .lg\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .lg\:row-end-auto { + grid-row-end: auto; } - .lg\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .lg\:float-right { + float: right; } - .lg\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .lg\:float-left { + float: left; } - .lg\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .lg\:float-none { + float: none; } - .lg\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .lg\:clear-left { + clear: left; } - .lg\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .lg\:clear-right { + clear: right; } - .lg\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .lg\:clear-both { + clear: both; } - .lg\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .lg\:clear-none { + clear: none; } - .lg\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .lg\:m-0 { + margin: 0px; } - .lg\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .lg\:m-1 { + margin: 0.25rem; } - .lg\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .lg\:m-2 { + margin: 0.5rem; } - .lg\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .lg\:m-3 { + margin: 0.75rem; } - .lg\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .lg\:m-4 { + margin: 1rem; } - .lg\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .lg\:m-5 { + margin: 1.25rem; } - .lg\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .lg\:m-6 { + margin: 1.5rem; } - .lg\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .lg\:m-7 { + margin: 1.75rem; } - .lg\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .lg\:m-8 { + margin: 2rem; } - .lg\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .lg\:m-9 { + margin: 2.25rem; } - .lg\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .lg\:m-10 { + margin: 2.5rem; } - .lg\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .lg\:m-11 { + margin: 2.75rem; } - .lg\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .lg\:m-12 { + margin: 3rem; } - .lg\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .lg\:m-14 { + margin: 3.5rem; } - .lg\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .lg\:m-16 { + margin: 4rem; } - .lg\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .lg\:m-20 { + margin: 5rem; } - .lg\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .lg\:m-24 { + margin: 6rem; } - .lg\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .lg\:m-28 { + margin: 7rem; } - .lg\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .lg\:m-32 { + margin: 8rem; } - .lg\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .lg\:m-36 { + margin: 9rem; } - .lg\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .lg\:m-40 { + margin: 10rem; } - .lg\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .lg\:m-44 { + margin: 11rem; } - .lg\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .lg\:m-48 { + margin: 12rem; } - .lg\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .lg\:m-52 { + margin: 13rem; } - .lg\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .lg\:m-56 { + margin: 14rem; } - .lg\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .lg\:m-60 { + margin: 15rem; } - .lg\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .lg\:m-64 { + margin: 16rem; } - .lg\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .lg\:m-72 { + margin: 18rem; } - .lg\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .lg\:m-80 { + margin: 20rem; } - .lg\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .lg\:m-96 { + margin: 24rem; } - .lg\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .lg\:m-auto { + margin: auto; } - .lg\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .lg\:m-px { + margin: 1px; } - .lg\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .lg\:m-0\.5 { + margin: 0.125rem; } - .lg\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .lg\:m-1\.5 { + margin: 0.375rem; } - .lg\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .lg\:m-2\.5 { + margin: 0.625rem; } - .lg\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .lg\:m-3\.5 { + margin: 0.875rem; } - .lg\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .lg\:-m-0 { + margin: 0px; } - .lg\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .lg\:-m-1 { + margin: -0.25rem; } - .lg\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .lg\:-m-2 { + margin: -0.5rem; } - .lg\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .lg\:-m-3 { + margin: -0.75rem; } - .lg\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .lg\:-m-4 { + margin: -1rem; } - .lg\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .lg\:-m-5 { + margin: -1.25rem; } - .lg\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .lg\:-m-6 { + margin: -1.5rem; } - .lg\:focus\:bg-transparent:focus { - background-color: transparent; + .lg\:-m-7 { + margin: -1.75rem; } - .lg\:focus\:bg-current:focus { - background-color: currentColor; + .lg\:-m-8 { + margin: -2rem; } - .lg\:focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .lg\:-m-9 { + margin: -2.25rem; } - .lg\:focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .lg\:-m-10 { + margin: -2.5rem; } - .lg\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .lg\:-m-11 { + margin: -2.75rem; } - .lg\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .lg\:-m-12 { + margin: -3rem; } - .lg\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .lg\:-m-14 { + margin: -3.5rem; } - .lg\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .lg\:-m-16 { + margin: -4rem; } - .lg\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .lg\:-m-20 { + margin: -5rem; } - .lg\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .lg\:-m-24 { + margin: -6rem; } - .lg\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .lg\:-m-28 { + margin: -7rem; } - .lg\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .lg\:-m-32 { + margin: -8rem; } - .lg\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .lg\:-m-36 { + margin: -9rem; } - .lg\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .lg\:-m-40 { + margin: -10rem; } - .lg\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .lg\:-m-44 { + margin: -11rem; } - .lg\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .lg\:-m-48 { + margin: -12rem; } - .lg\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .lg\:-m-52 { + margin: -13rem; } - .lg\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .lg\:-m-56 { + margin: -14rem; } - .lg\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .lg\:-m-60 { + margin: -15rem; } - .lg\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .lg\:-m-64 { + margin: -16rem; } - .lg\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .lg\:-m-72 { + margin: -18rem; } - .lg\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .lg\:-m-80 { + margin: -20rem; } - .lg\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .lg\:-m-96 { + margin: -24rem; } - .lg\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .lg\:-m-px { + margin: -1px; } - .lg\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .lg\:-m-0\.5 { + margin: -0.125rem; } - .lg\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .lg\:-m-1\.5 { + margin: -0.375rem; } - .lg\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .lg\:-m-2\.5 { + margin: -0.625rem; } - .lg\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .lg\:-m-3\.5 { + margin: -0.875rem; } - .lg\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .lg\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .lg\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .lg\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .lg\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .lg\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .lg\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .lg\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .lg\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .lg\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .lg\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .lg\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .lg\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .lg\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .lg\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .lg\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .lg\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .lg\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .lg\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .lg\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .lg\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .lg\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .lg\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .lg\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .lg\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .lg\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .lg\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .lg\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .lg\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .lg\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .lg\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .lg\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .lg\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .lg\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .lg\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .lg\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .lg\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .lg\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .lg\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .lg\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .lg\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .lg\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .lg\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .lg\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .lg\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .lg\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .lg\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .lg\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .lg\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .lg\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .lg\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .lg\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .lg\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .lg\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .lg\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .lg\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .lg\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .lg\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .lg\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .lg\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .lg\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .lg\:mx-auto { + margin-left: auto; + margin-right: auto; } - .lg\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .lg\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .lg\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .lg\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .lg\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .lg\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .lg\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .lg\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .lg\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .lg\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .lg\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .lg\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .lg\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .lg\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .lg\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .lg\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .lg\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .lg\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .lg\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .lg\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .lg\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .lg\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .lg\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .lg\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .lg\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .lg\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .lg\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .lg\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .lg\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .lg\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .lg\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .lg\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .lg\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .lg\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .lg\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .lg\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .lg\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .lg\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .lg\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .lg\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .lg\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .lg\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .lg\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .lg\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .lg\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .lg\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .lg\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .lg\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .lg\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .lg\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .lg\:bg-none { - background-image: none; + .lg\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .lg\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .lg\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .lg\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .lg\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .lg\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .lg\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .lg\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .lg\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .lg\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .lg\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .lg\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .lg\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .lg\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .lg\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .lg\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .lg\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .lg\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .lg\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .lg\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .lg\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .lg\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .lg\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .lg\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .lg\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .lg\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .lg\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .lg\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .lg\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .lg\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .lg\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .lg\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .lg\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .lg\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .lg\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .lg\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .lg\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .lg\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .lg\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .lg\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .lg\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .lg\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .lg\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .lg\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .lg\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .lg\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .lg\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .lg\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .lg\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .lg\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .lg\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .lg\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .lg\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .lg\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .lg\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .lg\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .lg\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .lg\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .lg\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .lg\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .lg\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .lg\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .lg\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .lg\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .lg\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .lg\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .lg\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .lg\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .lg\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .lg\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .lg\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .lg\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .lg\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .lg\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .lg\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .lg\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .lg\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .lg\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .lg\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .lg\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .lg\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .lg\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .lg\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .lg\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .lg\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .lg\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .lg\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .lg\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .lg\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .lg\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .lg\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .lg\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .lg\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .lg\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .lg\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:mt-0 { + margin-top: 0px; } - .lg\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:mt-1 { + margin-top: 0.25rem; } - .lg\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:mt-2 { + margin-top: 0.5rem; } - .lg\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:mt-3 { + margin-top: 0.75rem; } - .lg\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:mt-4 { + margin-top: 1rem; } - .lg\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:mt-5 { + margin-top: 1.25rem; } - .lg\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:mt-6 { + margin-top: 1.5rem; } - .lg\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:mt-7 { + margin-top: 1.75rem; } - .lg\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:mt-8 { + margin-top: 2rem; } - .lg\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:mt-9 { + margin-top: 2.25rem; } - .lg\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:mt-10 { + margin-top: 2.5rem; } - .lg\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:mt-11 { + margin-top: 2.75rem; } - .lg\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:mt-12 { + margin-top: 3rem; } - .lg\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:mt-14 { + margin-top: 3.5rem; } - .lg\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:mt-16 { + margin-top: 4rem; } - .lg\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:mt-20 { + margin-top: 5rem; } - .lg\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:mt-24 { + margin-top: 6rem; } - .lg\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:mt-28 { + margin-top: 7rem; } - .lg\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:mt-32 { + margin-top: 8rem; } - .lg\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:mt-36 { + margin-top: 9rem; } - .lg\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:mt-40 { + margin-top: 10rem; } - .lg\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:mt-44 { + margin-top: 11rem; } - .lg\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:mt-48 { + margin-top: 12rem; } - .lg\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:mt-52 { + margin-top: 13rem; } - .lg\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:mt-56 { + margin-top: 14rem; } - .lg\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:mt-60 { + margin-top: 15rem; } - .lg\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:mt-64 { + margin-top: 16rem; } - .lg\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:mt-72 { + margin-top: 18rem; } - .lg\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:mt-80 { + margin-top: 20rem; } - .lg\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:mt-96 { + margin-top: 24rem; } - .lg\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:mt-auto { + margin-top: auto; } - .lg\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:mt-px { + margin-top: 1px; } - .lg\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:mt-0\.5 { + margin-top: 0.125rem; } - .lg\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:mt-1\.5 { + margin-top: 0.375rem; } - .lg\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:mt-2\.5 { + margin-top: 0.625rem; } - .lg\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:mt-3\.5 { + margin-top: 0.875rem; } - .lg\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:-mt-0 { + margin-top: 0px; } - .lg\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:-mt-1 { + margin-top: -0.25rem; } - .lg\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:-mt-2 { + margin-top: -0.5rem; } - .lg\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:-mt-3 { + margin-top: -0.75rem; } - .lg\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:-mt-4 { + margin-top: -1rem; } - .lg\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:-mt-5 { + margin-top: -1.25rem; } - .lg\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:-mt-6 { + margin-top: -1.5rem; } - .lg\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:-mt-7 { + margin-top: -1.75rem; } - .lg\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:-mt-8 { + margin-top: -2rem; } - .lg\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:-mt-9 { + margin-top: -2.25rem; } - .lg\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:-mt-10 { + margin-top: -2.5rem; } - .lg\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:-mt-11 { + margin-top: -2.75rem; } - .lg\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:-mt-12 { + margin-top: -3rem; } - .lg\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:-mt-14 { + margin-top: -3.5rem; } - .lg\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:-mt-16 { + margin-top: -4rem; } - .lg\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:-mt-20 { + margin-top: -5rem; } - .lg\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:-mt-24 { + margin-top: -6rem; } - .lg\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:-mt-28 { + margin-top: -7rem; } - .lg\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:-mt-32 { + margin-top: -8rem; } - .lg\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:-mt-36 { + margin-top: -9rem; } - .lg\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:-mt-40 { + margin-top: -10rem; } - .lg\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:-mt-44 { + margin-top: -11rem; } - .lg\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:-mt-48 { + margin-top: -12rem; } - .lg\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:-mt-52 { + margin-top: -13rem; } - .lg\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:-mt-56 { + margin-top: -14rem; } - .lg\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:-mt-60 { + margin-top: -15rem; } - .lg\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:-mt-64 { + margin-top: -16rem; } - .lg\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:-mt-72 { + margin-top: -18rem; } - .lg\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:-mt-80 { + margin-top: -20rem; } - .lg\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:-mt-96 { + margin-top: -24rem; } - .lg\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:-mt-px { + margin-top: -1px; } - .lg\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:-mt-0\.5 { + margin-top: -0.125rem; } - .lg\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:-mt-1\.5 { + margin-top: -0.375rem; } - .lg\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:-mt-2\.5 { + margin-top: -0.625rem; } - .lg\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:-mt-3\.5 { + margin-top: -0.875rem; } - .lg\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:mr-0 { + margin-right: 0px; } - .lg\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:mr-1 { + margin-right: 0.25rem; } - .lg\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:mr-2 { + margin-right: 0.5rem; } - .lg\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:mr-3 { + margin-right: 0.75rem; } - .lg\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:mr-4 { + margin-right: 1rem; } - .lg\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:mr-5 { + margin-right: 1.25rem; } - .lg\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:mr-6 { + margin-right: 1.5rem; } - .lg\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:mr-7 { + margin-right: 1.75rem; } - .lg\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:mr-8 { + margin-right: 2rem; } - .lg\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:mr-9 { + margin-right: 2.25rem; } - .lg\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:mr-10 { + margin-right: 2.5rem; } - .lg\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:mr-11 { + margin-right: 2.75rem; } - .lg\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:mr-12 { + margin-right: 3rem; } - .lg\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:mr-14 { + margin-right: 3.5rem; } - .lg\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:mr-16 { + margin-right: 4rem; } - .lg\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:mr-20 { + margin-right: 5rem; } - .lg\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:mr-24 { + margin-right: 6rem; } - .lg\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:mr-28 { + margin-right: 7rem; } - .lg\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:mr-32 { + margin-right: 8rem; } - .lg\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:mr-36 { + margin-right: 9rem; } - .lg\:to-transparent { - --tw-gradient-to: transparent; + .lg\:mr-40 { + margin-right: 10rem; } - .lg\:to-current { - --tw-gradient-to: currentColor; + .lg\:mr-44 { + margin-right: 11rem; } - .lg\:to-black { - --tw-gradient-to: #000; + .lg\:mr-48 { + margin-right: 12rem; } - .lg\:to-white { - --tw-gradient-to: #fff; + .lg\:mr-52 { + margin-right: 13rem; } - .lg\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .lg\:mr-56 { + margin-right: 14rem; } - .lg\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .lg\:mr-60 { + margin-right: 15rem; } - .lg\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .lg\:mr-64 { + margin-right: 16rem; } - .lg\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .lg\:mr-72 { + margin-right: 18rem; } - .lg\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .lg\:mr-80 { + margin-right: 20rem; } - .lg\:to-gray-500 { - --tw-gradient-to: #6b7280; + .lg\:mr-96 { + margin-right: 24rem; } - .lg\:to-gray-600 { - --tw-gradient-to: #4b5563; + .lg\:mr-auto { + margin-right: auto; } - .lg\:to-gray-700 { - --tw-gradient-to: #374151; + .lg\:mr-px { + margin-right: 1px; } - .lg\:to-gray-800 { - --tw-gradient-to: #1f2937; + .lg\:mr-0\.5 { + margin-right: 0.125rem; } - .lg\:to-gray-900 { - --tw-gradient-to: #111827; + .lg\:mr-1\.5 { + margin-right: 0.375rem; } - .lg\:to-red-50 { - --tw-gradient-to: #fef2f2; + .lg\:mr-2\.5 { + margin-right: 0.625rem; } - .lg\:to-red-100 { - --tw-gradient-to: #fee2e2; + .lg\:mr-3\.5 { + margin-right: 0.875rem; } - .lg\:to-red-200 { - --tw-gradient-to: #fecaca; + .lg\:-mr-0 { + margin-right: 0px; } - .lg\:to-red-300 { - --tw-gradient-to: #fca5a5; + .lg\:-mr-1 { + margin-right: -0.25rem; } - .lg\:to-red-400 { - --tw-gradient-to: #f87171; + .lg\:-mr-2 { + margin-right: -0.5rem; } - .lg\:to-red-500 { - --tw-gradient-to: #ef4444; + .lg\:-mr-3 { + margin-right: -0.75rem; } - .lg\:to-red-600 { - --tw-gradient-to: #dc2626; + .lg\:-mr-4 { + margin-right: -1rem; } - .lg\:to-red-700 { - --tw-gradient-to: #b91c1c; + .lg\:-mr-5 { + margin-right: -1.25rem; } - .lg\:to-red-800 { - --tw-gradient-to: #991b1b; + .lg\:-mr-6 { + margin-right: -1.5rem; } - .lg\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .lg\:-mr-7 { + margin-right: -1.75rem; } - .lg\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .lg\:-mr-8 { + margin-right: -2rem; } - .lg\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .lg\:-mr-9 { + margin-right: -2.25rem; } - .lg\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .lg\:-mr-10 { + margin-right: -2.5rem; } - .lg\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .lg\:-mr-11 { + margin-right: -2.75rem; } - .lg\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .lg\:-mr-12 { + margin-right: -3rem; } - .lg\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .lg\:-mr-14 { + margin-right: -3.5rem; } - .lg\:to-yellow-600 { - --tw-gradient-to: #d97706; + .lg\:-mr-16 { + margin-right: -4rem; } - .lg\:to-yellow-700 { - --tw-gradient-to: #b45309; + .lg\:-mr-20 { + margin-right: -5rem; } - .lg\:to-yellow-800 { - --tw-gradient-to: #92400e; + .lg\:-mr-24 { + margin-right: -6rem; } - .lg\:to-yellow-900 { - --tw-gradient-to: #78350f; + .lg\:-mr-28 { + margin-right: -7rem; } - .lg\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .lg\:-mr-32 { + margin-right: -8rem; } - .lg\:to-green-100 { - --tw-gradient-to: #d1fae5; + .lg\:-mr-36 { + margin-right: -9rem; } - .lg\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .lg\:-mr-40 { + margin-right: -10rem; } - .lg\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .lg\:-mr-44 { + margin-right: -11rem; } - .lg\:to-green-400 { - --tw-gradient-to: #34d399; + .lg\:-mr-48 { + margin-right: -12rem; } - .lg\:to-green-500 { - --tw-gradient-to: #10b981; + .lg\:-mr-52 { + margin-right: -13rem; } - .lg\:to-green-600 { - --tw-gradient-to: #059669; + .lg\:-mr-56 { + margin-right: -14rem; } - .lg\:to-green-700 { - --tw-gradient-to: #047857; + .lg\:-mr-60 { + margin-right: -15rem; } - .lg\:to-green-800 { - --tw-gradient-to: #065f46; + .lg\:-mr-64 { + margin-right: -16rem; } - .lg\:to-green-900 { - --tw-gradient-to: #064e3b; + .lg\:-mr-72 { + margin-right: -18rem; } - .lg\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .lg\:-mr-80 { + margin-right: -20rem; } - .lg\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .lg\:-mr-96 { + margin-right: -24rem; } - .lg\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .lg\:-mr-px { + margin-right: -1px; } - .lg\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .lg\:-mr-0\.5 { + margin-right: -0.125rem; } - .lg\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .lg\:-mr-1\.5 { + margin-right: -0.375rem; } - .lg\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .lg\:-mr-2\.5 { + margin-right: -0.625rem; } - .lg\:to-blue-600 { - --tw-gradient-to: #2563eb; + .lg\:-mr-3\.5 { + margin-right: -0.875rem; } - .lg\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .lg\:mb-0 { + margin-bottom: 0px; } - .lg\:to-blue-800 { - --tw-gradient-to: #1e40af; + .lg\:mb-1 { + margin-bottom: 0.25rem; } - .lg\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .lg\:mb-2 { + margin-bottom: 0.5rem; } - .lg\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .lg\:mb-3 { + margin-bottom: 0.75rem; } - .lg\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .lg\:mb-4 { + margin-bottom: 1rem; } - .lg\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .lg\:mb-5 { + margin-bottom: 1.25rem; } - .lg\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .lg\:mb-6 { + margin-bottom: 1.5rem; } - .lg\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .lg\:mb-7 { + margin-bottom: 1.75rem; } - .lg\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .lg\:mb-8 { + margin-bottom: 2rem; } - .lg\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .lg\:mb-9 { + margin-bottom: 2.25rem; } - .lg\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .lg\:mb-10 { + margin-bottom: 2.5rem; } - .lg\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .lg\:mb-11 { + margin-bottom: 2.75rem; } - .lg\:to-indigo-900 { - --tw-gradient-to: #312e81; + .lg\:mb-12 { + margin-bottom: 3rem; } - .lg\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .lg\:mb-14 { + margin-bottom: 3.5rem; } - .lg\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .lg\:mb-16 { + margin-bottom: 4rem; } - .lg\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .lg\:mb-20 { + margin-bottom: 5rem; } - .lg\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .lg\:mb-24 { + margin-bottom: 6rem; } - .lg\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .lg\:mb-28 { + margin-bottom: 7rem; } - .lg\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .lg\:mb-32 { + margin-bottom: 8rem; } - .lg\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .lg\:mb-36 { + margin-bottom: 9rem; } - .lg\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .lg\:mb-40 { + margin-bottom: 10rem; } - .lg\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .lg\:mb-44 { + margin-bottom: 11rem; } - .lg\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .lg\:mb-48 { + margin-bottom: 12rem; } - .lg\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .lg\:mb-52 { + margin-bottom: 13rem; } - .lg\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .lg\:mb-56 { + margin-bottom: 14rem; } - .lg\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .lg\:mb-60 { + margin-bottom: 15rem; } - .lg\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .lg\:mb-64 { + margin-bottom: 16rem; } - .lg\:to-pink-400 { - --tw-gradient-to: #f472b6; + .lg\:mb-72 { + margin-bottom: 18rem; } - .lg\:to-pink-500 { - --tw-gradient-to: #ec4899; + .lg\:mb-80 { + margin-bottom: 20rem; } - .lg\:to-pink-600 { - --tw-gradient-to: #db2777; + .lg\:mb-96 { + margin-bottom: 24rem; } - .lg\:to-pink-700 { - --tw-gradient-to: #be185d; + .lg\:mb-auto { + margin-bottom: auto; } - .lg\:to-pink-800 { - --tw-gradient-to: #9d174d; + .lg\:mb-px { + margin-bottom: 1px; } - .lg\:to-pink-900 { - --tw-gradient-to: #831843; + .lg\:mb-0\.5 { + margin-bottom: 0.125rem; } - .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\:mb-1\.5 { + margin-bottom: 0.375rem; } - .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\:mb-2\.5 { + margin-bottom: 0.625rem; } - .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\:mb-3\.5 { + margin-bottom: 0.875rem; } - .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\:-mb-0 { + margin-bottom: 0px; } - .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\:-mb-1 { + margin-bottom: -0.25rem; } - .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\:-mb-2 { + margin-bottom: -0.5rem; } - .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\:-mb-3 { + margin-bottom: -0.75rem; } - .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\:-mb-4 { + margin-bottom: -1rem; } - .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\:-mb-5 { + margin-bottom: -1.25rem; } - .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\:-mb-6 { + margin-bottom: -1.5rem; } - .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\:-mb-7 { + margin-bottom: -1.75rem; } - .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\:-mb-8 { + margin-bottom: -2rem; } - .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\:-mb-9 { + margin-bottom: -2.25rem; } - .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\:-mb-10 { + margin-bottom: -2.5rem; } - .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\:-mb-11 { + margin-bottom: -2.75rem; } - .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\:-mb-12 { + margin-bottom: -3rem; } - .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\:-mb-14 { + margin-bottom: -3.5rem; } - .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\:-mb-16 { + margin-bottom: -4rem; } - .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\:-mb-20 { + margin-bottom: -5rem; } - .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\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .lg\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:-ml-10 { + margin-left: -2.5rem; } - .lg\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:-ml-11 { + margin-left: -2.75rem; } - .lg\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:-ml-12 { + margin-left: -3rem; } - .lg\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:-ml-14 { + margin-left: -3.5rem; } - .lg\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:-ml-16 { + margin-left: -4rem; } - .lg\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:-ml-20 { + margin-left: -5rem; } - .lg\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:-ml-24 { + margin-left: -6rem; } - .lg\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:-ml-28 { + margin-left: -7rem; } - .lg\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:-ml-32 { + margin-left: -8rem; } - .lg\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:-ml-36 { + margin-left: -9rem; } - .lg\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:-ml-40 { + margin-left: -10rem; } - .lg\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:-ml-44 { + margin-left: -11rem; } - .lg\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:-ml-48 { + margin-left: -12rem; } - .lg\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:-ml-52 { + margin-left: -13rem; } - .lg\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:-ml-56 { + margin-left: -14rem; } - .lg\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:-ml-60 { + margin-left: -15rem; } - .lg\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:-ml-64 { + margin-left: -16rem; } - .lg\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:-ml-72 { + margin-left: -18rem; } - .lg\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:-ml-80 { + margin-left: -20rem; } - .lg\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:-ml-96 { + margin-left: -24rem; } - .lg\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:-ml-px { + margin-left: -1px; } - .lg\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:-ml-0\.5 { + margin-left: -0.125rem; } - .lg\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:-ml-1\.5 { + margin-left: -0.375rem; } - .lg\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:-ml-2\.5 { + margin-left: -0.625rem; } - .lg\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:-ml-3\.5 { + margin-left: -0.875rem; } - .lg\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:box-border { + box-sizing: border-box; } - .lg\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:box-content { + box-sizing: content-box; } - .lg\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:block { + display: block; } - .lg\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:inline-block { + display: inline-block; } - .lg\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:inline { + display: inline; } - .lg\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:flex { + display: flex; } - .lg\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:inline-flex { + display: inline-flex; } - .lg\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:table { + display: table; } - .lg\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:inline-table { + display: inline-table; } - .lg\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:table-caption { + display: table-caption; } - .lg\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:table-cell { + display: table-cell; } - .lg\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:table-column { + display: table-column; } - .lg\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:table-column-group { + display: table-column-group; } - .lg\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:table-footer-group { + display: table-footer-group; } - .lg\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:table-header-group { + display: table-header-group; } - .lg\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:table-row-group { + display: table-row-group; } - .lg\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:table-row { + display: table-row; } - .lg\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:flow-root { + display: flow-root; } - .lg\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:grid { + display: grid; } - .lg\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:inline-grid { + display: inline-grid; } - .lg\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:contents { + display: contents; } - .lg\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:list-item { + display: list-item; } - .lg\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:hidden { + display: none; } - .lg\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:h-0 { + height: 0px; } - .lg\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:h-1 { + height: 0.25rem; } - .lg\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:h-2 { + height: 0.5rem; } - .lg\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:h-3 { + height: 0.75rem; } - .lg\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:h-4 { + height: 1rem; } - .lg\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:h-5 { + height: 1.25rem; } - .lg\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:h-6 { + height: 1.5rem; } - .lg\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:h-7 { + height: 1.75rem; } - .lg\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:h-8 { + height: 2rem; } - .lg\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:h-9 { + height: 2.25rem; } - .lg\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:h-10 { + height: 2.5rem; } - .lg\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:h-11 { + height: 2.75rem; } - .lg\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:h-12 { + height: 3rem; } - .lg\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:h-14 { + height: 3.5rem; } - .lg\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:h-16 { + height: 4rem; } - .lg\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:h-20 { + height: 5rem; } - .lg\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:h-24 { + height: 6rem; } - .lg\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:h-28 { + height: 7rem; } - .lg\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:h-32 { + height: 8rem; } - .lg\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:h-36 { + height: 9rem; } - .lg\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:h-40 { + height: 10rem; } - .lg\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:h-44 { + height: 11rem; } - .lg\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:h-48 { + height: 12rem; } - .lg\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:h-52 { + height: 13rem; } - .lg\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:h-56 { + height: 14rem; } - .lg\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:h-60 { + height: 15rem; } - .lg\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:h-64 { + height: 16rem; } - .lg\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:h-72 { + height: 18rem; } - .lg\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:h-80 { + height: 20rem; } - .lg\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:h-96 { + height: 24rem; } - .lg\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:h-auto { + height: auto; } - .lg\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:h-px { + height: 1px; } - .lg\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:h-0\.5 { + height: 0.125rem; } - .lg\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:h-1\.5 { + height: 0.375rem; } - .lg\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:h-2\.5 { + height: 0.625rem; } - .lg\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:h-3\.5 { + height: 0.875rem; } - .lg\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .lg\:h-1\/2 { + height: 50%; } - .lg\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .lg\:h-1\/3 { + height: 33.333333%; } - .lg\:hover\:to-black:hover { - --tw-gradient-to: #000; + .lg\:h-2\/3 { + height: 66.666667%; } - .lg\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .lg\:h-1\/4 { + height: 25%; } - .lg\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .lg\:h-2\/4 { + height: 50%; } - .lg\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .lg\:h-3\/4 { + height: 75%; } - .lg\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .lg\:h-1\/5 { + height: 20%; } - .lg\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .lg\:h-2\/5 { + height: 40%; } - .lg\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .lg\:h-3\/5 { + height: 60%; } - .lg\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .lg\:h-4\/5 { + height: 80%; } - .lg\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .lg\:h-1\/6 { + height: 16.666667%; } - .lg\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .lg\:h-2\/6 { + height: 33.333333%; } - .lg\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .lg\:h-3\/6 { + height: 50%; } - .lg\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .lg\:h-4\/6 { + height: 66.666667%; } - .lg\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .lg\:h-5\/6 { + height: 83.333333%; } - .lg\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .lg\:h-full { + height: 100%; } - .lg\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .lg\:h-screen { + height: 100vh; } - .lg\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .lg\:max-h-0 { + max-height: 0px; } - .lg\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .lg\:max-h-1 { + max-height: 0.25rem; } - .lg\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .lg\:max-h-2 { + max-height: 0.5rem; } - .lg\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .lg\:max-h-3 { + max-height: 0.75rem; } - .lg\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .lg\:max-h-4 { + max-height: 1rem; } - .lg\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .lg\:max-h-5 { + max-height: 1.25rem; } - .lg\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .lg\:max-h-6 { + max-height: 1.5rem; } - .lg\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .lg\:max-h-7 { + max-height: 1.75rem; } - .lg\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .lg\:max-h-8 { + max-height: 2rem; } - .lg\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .lg\:max-h-9 { + max-height: 2.25rem; } - .lg\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .lg\:max-h-10 { + max-height: 2.5rem; } - .lg\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .lg\:max-h-11 { + max-height: 2.75rem; } - .lg\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .lg\:max-h-12 { + max-height: 3rem; } - .lg\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .lg\:max-h-14 { + max-height: 3.5rem; } - .lg\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .lg\:max-h-16 { + max-height: 4rem; } - .lg\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .lg\:max-h-20 { + max-height: 5rem; } - .lg\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .lg\:max-h-24 { + max-height: 6rem; } - .lg\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .lg\:max-h-28 { + max-height: 7rem; } - .lg\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .lg\:max-h-32 { + max-height: 8rem; } - .lg\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .lg\:max-h-36 { + max-height: 9rem; } - .lg\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .lg\:max-h-40 { + max-height: 10rem; } - .lg\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .lg\:max-h-44 { + max-height: 11rem; } - .lg\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .lg\:max-h-48 { + max-height: 12rem; } - .lg\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .lg\:max-h-52 { + max-height: 13rem; } - .lg\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .lg\:max-h-56 { + max-height: 14rem; } - .lg\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .lg\:max-h-60 { + max-height: 15rem; } - .lg\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .lg\:max-h-64 { + max-height: 16rem; } - .lg\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .lg\:max-h-72 { + max-height: 18rem; } - .lg\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .lg\:max-h-80 { + max-height: 20rem; } - .lg\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .lg\:max-h-96 { + max-height: 24rem; } - .lg\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .lg\:max-h-px { + max-height: 1px; } - .lg\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .lg\:max-h-0\.5 { + max-height: 0.125rem; } - .lg\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .lg\:max-h-1\.5 { + max-height: 0.375rem; } - .lg\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .lg\:max-h-2\.5 { + max-height: 0.625rem; } - .lg\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .lg\:max-h-3\.5 { + max-height: 0.875rem; } - .lg\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .lg\:max-h-full { + max-height: 100%; } - .lg\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .lg\:max-h-screen { + max-height: 100vh; } - .lg\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .lg\:min-h-0 { + min-height: 0px; } - .lg\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .lg\:min-h-full { + min-height: 100%; } - .lg\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .lg\:min-h-screen { + min-height: 100vh; } - .lg\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .lg\:w-0 { + width: 0px; } - .lg\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .lg\:w-1 { + width: 0.25rem; } - .lg\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .lg\:w-2 { + width: 0.5rem; } - .lg\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .lg\:w-3 { + width: 0.75rem; } - .lg\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .lg\:w-4 { + width: 1rem; } - .lg\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .lg\:w-5 { + width: 1.25rem; } - .lg\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .lg\:w-6 { + width: 1.5rem; } - .lg\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .lg\:w-7 { + width: 1.75rem; } - .lg\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .lg\:w-8 { + width: 2rem; } - .lg\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .lg\:w-9 { + width: 2.25rem; } - .lg\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .lg\:w-10 { + width: 2.5rem; } - .lg\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .lg\:w-11 { + width: 2.75rem; } - .lg\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .lg\:w-12 { + width: 3rem; } - .lg\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .lg\:w-14 { + width: 3.5rem; } - .lg\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .lg\:w-16 { + width: 4rem; } - .lg\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .lg\:w-20 { + width: 5rem; } - .lg\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .lg\:w-24 { + width: 6rem; } - .lg\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .lg\:w-28 { + width: 7rem; } - .lg\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .lg\:w-32 { + width: 8rem; } - .lg\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .lg\:w-36 { + width: 9rem; } - .lg\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .lg\:w-40 { + width: 10rem; } - .lg\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .lg\:w-44 { + width: 11rem; } - .lg\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .lg\:w-48 { + width: 12rem; } - .lg\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .lg\:w-52 { + width: 13rem; } - .lg\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .lg\:w-56 { + width: 14rem; } - .lg\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .lg\:w-60 { + width: 15rem; } - .lg\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .lg\:w-64 { + width: 16rem; } - .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\:w-72 { + width: 18rem; } - .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\:w-80 { + width: 20rem; } - .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\:w-96 { + width: 24rem; } - .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\:w-auto { + width: auto; } - .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\:w-px { + width: 1px; } - .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\:w-0\.5 { + width: 0.125rem; } - .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\:w-1\.5 { + width: 0.375rem; } - .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\:w-2\.5 { + width: 0.625rem; } - .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\:w-3\.5 { + width: 0.875rem; } - .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\:w-1\/2 { + width: 50%; } - .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\:w-1\/3 { + width: 33.333333%; } - .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\:w-2\/3 { + width: 66.666667%; } - .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\:w-1\/4 { + width: 25%; } - .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\:w-2\/4 { + width: 50%; } - .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\:w-3\/4 { + width: 75%; } - .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\:w-1\/5 { + width: 20%; } - .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\:w-2\/5 { + width: 40%; } - .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\:w-3\/5 { + width: 60%; } - .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\:w-4\/5 { + width: 80%; } - .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\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .lg\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .lg\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .lg\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:origin-bottom-right { + transform-origin: bottom right; } - .lg\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:origin-bottom { + transform-origin: bottom; } - .lg\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:origin-bottom-left { + transform-origin: bottom left; } - .lg\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:origin-left { + transform-origin: left; } - .lg\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:origin-top-left { + transform-origin: top left; } - .lg\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:translate-x-0 { + --tw-translate-x: 0px; } - .lg\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .lg\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .lg\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .lg\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:translate-x-4 { + --tw-translate-x: 1rem; } - .lg\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .lg\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .lg\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .lg\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:translate-x-8 { + --tw-translate-x: 2rem; } - .lg\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .lg\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .lg\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .lg\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:translate-x-12 { + --tw-translate-x: 3rem; } - .lg\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .lg\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:translate-x-16 { + --tw-translate-x: 4rem; } - .lg\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:translate-x-20 { + --tw-translate-x: 5rem; } - .lg\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:translate-x-24 { + --tw-translate-x: 6rem; } - .lg\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:translate-x-28 { + --tw-translate-x: 7rem; } - .lg\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:translate-x-32 { + --tw-translate-x: 8rem; } - .lg\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:translate-x-36 { + --tw-translate-x: 9rem; } - .lg\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:translate-x-40 { + --tw-translate-x: 10rem; } - .lg\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:translate-x-44 { + --tw-translate-x: 11rem; } - .lg\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:translate-x-48 { + --tw-translate-x: 12rem; } - .lg\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:translate-x-52 { + --tw-translate-x: 13rem; } - .lg\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:translate-x-56 { + --tw-translate-x: 14rem; } - .lg\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:translate-x-60 { + --tw-translate-x: 15rem; } - .lg\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:translate-x-64 { + --tw-translate-x: 16rem; } - .lg\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:translate-x-72 { + --tw-translate-x: 18rem; } - .lg\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:translate-x-80 { + --tw-translate-x: 20rem; } - .lg\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:translate-x-96 { + --tw-translate-x: 24rem; } - .lg\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:translate-x-px { + --tw-translate-x: 1px; } - .lg\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .lg\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .lg\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .lg\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .lg\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:-translate-x-0 { + --tw-translate-x: 0px; } - .lg\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .lg\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .lg\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .lg\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:-translate-x-4 { + --tw-translate-x: -1rem; } - .lg\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .lg\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .lg\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .lg\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:-translate-x-8 { + --tw-translate-x: -2rem; } - .lg\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .lg\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .lg\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .lg\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:-translate-x-12 { + --tw-translate-x: -3rem; } - .lg\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .lg\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:-translate-x-16 { + --tw-translate-x: -4rem; } - .lg\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:-translate-x-20 { + --tw-translate-x: -5rem; } - .lg\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:-translate-x-24 { + --tw-translate-x: -6rem; } - .lg\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:-translate-x-28 { + --tw-translate-x: -7rem; } - .lg\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:-translate-x-32 { + --tw-translate-x: -8rem; } - .lg\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:-translate-x-36 { + --tw-translate-x: -9rem; } - .lg\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:-translate-x-40 { + --tw-translate-x: -10rem; } - .lg\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:-translate-x-44 { + --tw-translate-x: -11rem; } - .lg\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:-translate-x-48 { + --tw-translate-x: -12rem; } - .lg\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:-translate-x-52 { + --tw-translate-x: -13rem; } - .lg\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:-translate-x-56 { + --tw-translate-x: -14rem; } - .lg\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:-translate-x-60 { + --tw-translate-x: -15rem; } - .lg\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:-translate-x-64 { + --tw-translate-x: -16rem; } - .lg\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:-translate-x-72 { + --tw-translate-x: -18rem; } - .lg\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:-translate-x-80 { + --tw-translate-x: -20rem; } - .lg\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:-translate-x-96 { + --tw-translate-x: -24rem; } - .lg\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:-translate-x-px { + --tw-translate-x: -1px; } - .lg\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .lg\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .lg\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .lg\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .lg\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .lg\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .lg\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .lg\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .lg\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .lg\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .lg\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:translate-x-full { + --tw-translate-x: 100%; } - .lg\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .lg\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .lg\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .lg\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .lg\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .lg\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .lg\:focus\:to-black:focus { - --tw-gradient-to: #000; + .lg\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .lg\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .lg\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .lg\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .lg\:-translate-x-full { + --tw-translate-x: -100%; } - .lg\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .lg\:translate-y-0 { + --tw-translate-y: 0px; } - .lg\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .lg\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .lg\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .lg\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .lg\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .lg\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .lg\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .lg\:translate-y-4 { + --tw-translate-y: 1rem; } - .lg\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .lg\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .lg\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .lg\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .lg\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .lg\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .lg\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .lg\:translate-y-8 { + --tw-translate-y: 2rem; } - .lg\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .lg\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .lg\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .lg\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .lg\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .lg\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .lg\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .lg\:translate-y-12 { + --tw-translate-y: 3rem; } - .lg\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .lg\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .lg\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .lg\:translate-y-16 { + --tw-translate-y: 4rem; } - .lg\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .lg\:translate-y-20 { + --tw-translate-y: 5rem; } - .lg\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .lg\:translate-y-24 { + --tw-translate-y: 6rem; } - .lg\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .lg\:translate-y-28 { + --tw-translate-y: 7rem; } - .lg\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .lg\:translate-y-32 { + --tw-translate-y: 8rem; } - .lg\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .lg\:translate-y-36 { + --tw-translate-y: 9rem; } - .lg\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .lg\:translate-y-40 { + --tw-translate-y: 10rem; } - .lg\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .lg\:translate-y-44 { + --tw-translate-y: 11rem; } - .lg\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .lg\:translate-y-48 { + --tw-translate-y: 12rem; } - .lg\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .lg\:translate-y-52 { + --tw-translate-y: 13rem; } - .lg\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .lg\:translate-y-56 { + --tw-translate-y: 14rem; } - .lg\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .lg\:translate-y-60 { + --tw-translate-y: 15rem; } - .lg\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .lg\:translate-y-64 { + --tw-translate-y: 16rem; } - .lg\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .lg\:translate-y-72 { + --tw-translate-y: 18rem; } - .lg\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .lg\:translate-y-80 { + --tw-translate-y: 20rem; } - .lg\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .lg\:translate-y-96 { + --tw-translate-y: 24rem; } - .lg\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .lg\:translate-y-px { + --tw-translate-y: 1px; } - .lg\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .lg\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .lg\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .lg\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .lg\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .lg\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .lg\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .lg\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .lg\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .lg\:-translate-y-0 { + --tw-translate-y: 0px; } - .lg\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .lg\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .lg\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .lg\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .lg\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .lg\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .lg\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .lg\:-translate-y-4 { + --tw-translate-y: -1rem; } - .lg\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .lg\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .lg\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .lg\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .lg\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .lg\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .lg\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .lg\:-translate-y-8 { + --tw-translate-y: -2rem; } - .lg\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .lg\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .lg\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .lg\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .lg\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .lg\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .lg\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .lg\:-translate-y-12 { + --tw-translate-y: -3rem; } - .lg\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .lg\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .lg\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .lg\:-translate-y-16 { + --tw-translate-y: -4rem; } - .lg\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .lg\:-translate-y-20 { + --tw-translate-y: -5rem; } - .lg\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .lg\:-translate-y-24 { + --tw-translate-y: -6rem; } - .lg\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .lg\:-translate-y-28 { + --tw-translate-y: -7rem; } - .lg\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .lg\:-translate-y-32 { + --tw-translate-y: -8rem; } - .lg\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .lg\:-translate-y-36 { + --tw-translate-y: -9rem; } - .lg\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .lg\:-translate-y-40 { + --tw-translate-y: -10rem; } - .lg\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .lg\:-translate-y-44 { + --tw-translate-y: -11rem; } - .lg\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .lg\:-translate-y-48 { + --tw-translate-y: -12rem; } - .lg\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .lg\:-translate-y-52 { + --tw-translate-y: -13rem; } - .lg\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .lg\:-translate-y-56 { + --tw-translate-y: -14rem; } - .lg\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .lg\:-translate-y-60 { + --tw-translate-y: -15rem; } - .lg\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .lg\:-translate-y-64 { + --tw-translate-y: -16rem; } - .lg\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .lg\:-translate-y-72 { + --tw-translate-y: -18rem; } - .lg\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .lg\:-translate-y-80 { + --tw-translate-y: -20rem; } - .lg\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .lg\:-translate-y-96 { + --tw-translate-y: -24rem; } - .lg\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .lg\:-translate-y-px { + --tw-translate-y: -1px; } - .lg\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .lg\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .lg\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .lg\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .lg\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .lg\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .lg\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .lg\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .lg\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .lg\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .lg\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .lg\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .lg\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .lg\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .lg\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .lg\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .lg\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .lg\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .lg\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .lg\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .lg\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .lg\:translate-y-full { + --tw-translate-y: 100%; } - .lg\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .lg\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .lg\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .lg\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .lg\:bg-opacity-0 { - --tw-bg-opacity: 0; + .lg\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .lg\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .lg\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .lg\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .lg\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .lg\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .lg\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .lg\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .lg\:-translate-y-full { + --tw-translate-y: -100%; } - .lg\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .lg\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .lg\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .lg\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .lg\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .lg\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .lg\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .lg\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .lg\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .lg\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .lg\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .lg\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .lg\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .lg\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .lg\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .lg\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .lg\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .lg\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .lg\:bg-opacity-100 { - --tw-bg-opacity: 1; + .lg\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .group:hover .lg\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; + .lg\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .group:hover .lg\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .lg\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .group:hover .lg\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .lg\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .group:hover .lg\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .lg\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .group:hover .lg\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .lg\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .group:hover .lg\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .lg\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .group:hover .lg\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .lg\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .group:hover .lg\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .lg\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .group:hover .lg\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .lg\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .group:hover .lg\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .lg\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .group:hover .lg\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .lg\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .group:hover .lg\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .lg\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .group:hover .lg\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .lg\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .group:hover .lg\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .lg\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .group:hover .lg\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; + .lg\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .lg\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; + .lg\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .lg\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; + .lg\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .lg\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; + .lg\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .lg\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; + .lg\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .lg\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; + .lg\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .lg\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; + .lg\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .lg\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; + .lg\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .lg\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; + .lg\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .lg\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; + .lg\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .lg\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; + .lg\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .lg\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; + .lg\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .lg\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; + .lg\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .lg\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; + .lg\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .lg\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; + .lg\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .lg\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; + .lg\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .lg\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; + .lg\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .lg\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; + .lg\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .lg\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; + .lg\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .lg\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; + .lg\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .lg\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; + .lg\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .lg\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; + .lg\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .lg\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; + .lg\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .lg\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; + .lg\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .lg\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; + .lg\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .lg\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; + .lg\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .lg\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; + .lg\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .lg\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; + .lg\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .lg\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; + .lg\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .lg\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; + .lg\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .lg\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; + .lg\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .lg\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; + .lg\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .lg\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; + .lg\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .lg\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; + .lg\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .lg\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; + .lg\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .lg\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; + .lg\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .lg\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; + .lg\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .lg\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; + .lg\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .lg\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; + .lg\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .lg\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; + .lg\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .lg\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; + .lg\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .lg\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; + .lg\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .lg\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; + .lg\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .lg\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; + .lg\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .lg\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; + .lg\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .lg\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; + .lg\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .lg\:bg-bottom { - background-position: bottom; + .lg\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .lg\:bg-center { - background-position: center; + .lg\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .lg\:bg-left { - background-position: left; + .lg\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .lg\:bg-left-bottom { - background-position: left bottom; + .lg\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .lg\:bg-left-top { - background-position: left top; + .lg\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .lg\:bg-right { - background-position: right; + .lg\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .lg\:bg-right-bottom { - background-position: right bottom; + .lg\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .lg\:bg-right-top { - background-position: right top; + .lg\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .lg\:bg-top { - background-position: top; + .lg\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .lg\:bg-repeat { - background-repeat: repeat; + .lg\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .lg\:bg-no-repeat { - background-repeat: no-repeat; + .lg\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .lg\:bg-repeat-x { - background-repeat: repeat-x; + .lg\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .lg\:bg-repeat-y { - background-repeat: repeat-y; + .lg\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .lg\:bg-repeat-round { - background-repeat: round; + .lg\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .lg\:bg-repeat-space { - background-repeat: space; + .lg\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .lg\:bg-auto { - background-size: auto; + .lg\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .lg\:bg-cover { - background-size: cover; + .lg\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .lg\:bg-contain { - background-size: contain; + .lg\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .lg\:bg-origin-border { - background-origin: border-box; + .lg\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .lg\:bg-origin-padding { - background-origin: padding-box; + .lg\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .lg\:bg-origin-content { - background-origin: content-box; + .lg\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .lg\:border-collapse { - border-collapse: collapse; + .lg\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .lg\:border-separate { - border-collapse: separate; + .lg\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .lg\:border-transparent { - border-color: transparent; + .lg\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .lg\:border-current { - border-color: currentColor; + .lg\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .lg\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .lg\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .lg\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .lg\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .lg\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .lg\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .lg\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .lg\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .lg\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .lg\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .lg\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .lg\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .lg\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .lg\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .lg\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .lg\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .lg\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .lg\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .lg\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .lg\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .lg\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .lg\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .lg\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .lg\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .lg\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .lg\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .lg\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .lg\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .lg\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .lg\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .lg\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .lg\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .lg\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .lg\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .lg\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .lg\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .lg\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .lg\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .lg\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .lg\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .lg\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .lg\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .lg\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .lg\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .lg\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .lg\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .lg\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .lg\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .lg\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .lg\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .lg\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .lg\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .lg\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .lg\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .lg\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .lg\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .lg\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .lg\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .lg\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .lg\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .lg\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .lg\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .lg\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .lg\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .lg\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .lg\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .lg\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .lg\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .lg\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .lg\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .lg\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .lg\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .lg\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .lg\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .lg\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .lg\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .lg\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .lg\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .lg\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .lg\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .lg\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .lg\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .lg\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .lg\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .lg\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .lg\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .lg\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .lg\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .lg\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .lg\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .lg\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .lg\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .lg\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .lg\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .lg\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .lg\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .lg\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .lg\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .lg\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .lg\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .lg\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .lg\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .lg\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .lg\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .lg\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .lg\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .lg\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .lg\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .lg\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .lg\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .lg\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .lg\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .lg\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .lg\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .lg\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .lg\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .lg\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .lg\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .lg\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .lg\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .lg\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .lg\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .lg\:group-hover\:border-transparent { - border-color: transparent; + .lg\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .lg\:group-hover\:border-current { - border-color: currentColor; + .lg\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .lg\:group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .lg\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .lg\:group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .lg\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .lg\:group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .lg\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .lg\:group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .lg\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .lg\:group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .lg\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .lg\:group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .lg\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .lg\:group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .lg\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .lg\:group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .lg\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .lg\:group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .lg\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .lg\:group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .lg\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .lg\:group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .lg\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .lg\:group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .lg\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .lg\:group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .lg\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .lg\:group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .lg\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .lg\:group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .lg\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .lg\:group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .lg\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .lg\:group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .lg\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .lg\:group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .lg\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .lg\:group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .lg\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .lg\:group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .lg\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .lg\:group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .lg\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .lg\:group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .lg\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .lg\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .lg\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .lg\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .lg\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .lg\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .lg\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .lg\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .group:hover .lg\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .group:hover .lg\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .group:hover .lg\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .group:hover .lg\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .group:hover .lg\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .group:hover .lg\:group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .group:hover .lg\:group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - - .group:hover .lg\:group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + + .lg\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .group:hover .lg\:group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .group:hover .lg\:group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .group:hover .lg\:group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .group:hover .lg\:group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .group:hover .lg\:group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .group:hover .lg\:group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .group:hover .lg\:group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .group:hover .lg\:group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .group:hover .lg\:group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .group:hover .lg\:group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .group:hover .lg\:group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .group:hover .lg\:group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .group:hover .lg\:group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .group:hover .lg\:group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .group:hover .lg\:group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .group:hover .lg\:group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .group:hover .lg\:group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .group:hover .lg\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .group:hover .lg\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .group:hover .lg\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .group:hover .lg\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .group:hover .lg\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .group:hover .lg\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .group:hover .lg\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .group:hover .lg\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .lg\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .group:hover .lg\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .lg\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .group:hover .lg\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .lg\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .group:hover .lg\:group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .lg\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .group:hover .lg\:group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .lg\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .group:hover .lg\:group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .lg\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .group:hover .lg\:group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .lg\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .group:hover .lg\:group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .group:hover .lg\:group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .group:hover .lg\:group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .group:hover .lg\:group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .group:hover .lg\:group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .group:hover .lg\:group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .group:hover .lg\:group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .group:hover .lg\:group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .lg\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .group:hover .lg\:group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .lg\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .group:hover .lg\:group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .lg\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .group:hover .lg\:group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .lg\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .group:hover .lg\:group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .lg\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .group:hover .lg\:group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .lg\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .group:hover .lg\:group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .lg\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .group:hover .lg\:group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .lg\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .group:hover .lg\:group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .lg\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .lg\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .lg\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .lg\:focus-within\:border-current:focus-within { - border-color: currentColor; + .lg\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .lg\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .lg\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .lg\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .lg\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .lg\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .lg\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .lg\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .lg\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .lg\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .lg\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .lg\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .lg\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .lg\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .lg\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .lg\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .lg\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .lg\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .lg\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .lg\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .lg\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .lg\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .lg\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .lg\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .lg\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .lg\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .lg\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .lg\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .lg\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .lg\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .lg\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .lg\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .lg\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .lg\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .lg\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .lg\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .lg\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .lg\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .lg\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .lg\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .lg\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .lg\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .lg\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .lg\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .lg\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .lg\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .lg\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .lg\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .lg\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .lg\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .lg\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .lg\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .lg\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .lg\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .lg\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .lg\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .lg\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .lg\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .lg\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .lg\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .lg\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .lg\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .lg\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .lg\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .lg\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .lg\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .lg\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .lg\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .lg\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .lg\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .lg\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .lg\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .lg\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .lg\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .lg\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .lg\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .lg\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .lg\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .lg\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .lg\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .lg\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .lg\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .lg\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .lg\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .lg\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .lg\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .lg\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .lg\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .lg\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .lg\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .lg\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .lg\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .lg\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .lg\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .lg\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .lg\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .lg\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .lg\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .lg\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .lg\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .lg\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .lg\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .lg\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .lg\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .lg\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .lg\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .lg\:rotate-0 { + --tw-rotate: 0deg; } - .lg\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .lg\:rotate-1 { + --tw-rotate: 1deg; } - .lg\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .lg\:rotate-2 { + --tw-rotate: 2deg; } - .lg\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .lg\:rotate-3 { + --tw-rotate: 3deg; } - .lg\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .lg\:rotate-6 { + --tw-rotate: 6deg; } - .lg\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .lg\:rotate-12 { + --tw-rotate: 12deg; } - .lg\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .lg\:rotate-45 { + --tw-rotate: 45deg; } - .lg\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .lg\:rotate-90 { + --tw-rotate: 90deg; } - .lg\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .lg\:rotate-180 { + --tw-rotate: 180deg; } - .lg\:hover\:border-transparent:hover { - border-color: transparent; + .lg\:-rotate-180 { + --tw-rotate: -180deg; } - .lg\:hover\:border-current:hover { - border-color: currentColor; + .lg\:-rotate-90 { + --tw-rotate: -90deg; } - .lg\:hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .lg\:-rotate-45 { + --tw-rotate: -45deg; } - .lg\:hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .lg\:-rotate-12 { + --tw-rotate: -12deg; } - .lg\:hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .lg\:-rotate-6 { + --tw-rotate: -6deg; } - .lg\:hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .lg\:-rotate-3 { + --tw-rotate: -3deg; } - .lg\:hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .lg\:-rotate-2 { + --tw-rotate: -2deg; } - .lg\:hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .lg\:-rotate-1 { + --tw-rotate: -1deg; } - .lg\:hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .lg\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .lg\:hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .lg\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .lg\:hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .lg\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .lg\:hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .lg\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .lg\:hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .lg\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .lg\:hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .lg\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .lg\:hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .lg\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .lg\:hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .lg\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .lg\:hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .lg\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .lg\:hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .lg\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .lg\:hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .lg\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .lg\:hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .lg\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .lg\:hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .lg\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .lg\:hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .lg\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .lg\:hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .lg\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .lg\:hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .lg\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .lg\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .lg\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .lg\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .lg\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .lg\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .lg\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .lg\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .lg\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .lg\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .lg\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .lg\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .lg\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .lg\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .lg\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .lg\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .lg\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .lg\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .lg\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .lg\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .lg\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .lg\:hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .lg\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .lg\:hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .lg\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .lg\:hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .lg\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .lg\:hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .lg\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .lg\:hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .lg\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .lg\:hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .lg\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .lg\:hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .lg\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .lg\:hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .lg\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .lg\:hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .lg\:skew-x-0 { + --tw-skew-x: 0deg; } - .lg\:hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .lg\:skew-x-1 { + --tw-skew-x: 1deg; } - .lg\:hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .lg\:skew-x-2 { + --tw-skew-x: 2deg; } - .lg\:hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .lg\:skew-x-3 { + --tw-skew-x: 3deg; } - .lg\:hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .lg\:skew-x-6 { + --tw-skew-x: 6deg; } - .lg\:hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .lg\:skew-x-12 { + --tw-skew-x: 12deg; } - .lg\:hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .lg\:-skew-x-12 { + --tw-skew-x: -12deg; } - .lg\:hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .lg\:-skew-x-6 { + --tw-skew-x: -6deg; } - .lg\:hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .lg\:-skew-x-3 { + --tw-skew-x: -3deg; } - .lg\:hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .lg\:-skew-x-2 { + --tw-skew-x: -2deg; } - .lg\:hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .lg\:-skew-x-1 { + --tw-skew-x: -1deg; } - .lg\:hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .lg\:skew-y-0 { + --tw-skew-y: 0deg; } - .lg\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .lg\:skew-y-1 { + --tw-skew-y: 1deg; } - .lg\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .lg\:skew-y-2 { + --tw-skew-y: 2deg; } - .lg\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .lg\:skew-y-3 { + --tw-skew-y: 3deg; } - .lg\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .lg\:skew-y-6 { + --tw-skew-y: 6deg; } - .lg\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .lg\:skew-y-12 { + --tw-skew-y: 12deg; } - .lg\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .lg\:-skew-y-12 { + --tw-skew-y: -12deg; } - .lg\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .lg\:-skew-y-6 { + --tw-skew-y: -6deg; } - .lg\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .lg\:-skew-y-3 { + --tw-skew-y: -3deg; } - .lg\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .lg\:-skew-y-2 { + --tw-skew-y: -2deg; } - .lg\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .lg\:-skew-y-1 { + --tw-skew-y: -1deg; } - .lg\:hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .lg\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .lg\:hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .lg\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .lg\:hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .lg\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .lg\:hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .lg\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .lg\:hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .lg\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .lg\:hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .lg\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .lg\:hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .lg\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .lg\:hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .lg\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .lg\:hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .lg\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .lg\:hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .lg\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .lg\:hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .lg\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .lg\:hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .lg\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .lg\:hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .lg\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .lg\:hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .lg\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .lg\:hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .lg\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .lg\:hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .lg\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .lg\:hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .lg\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .lg\:hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .lg\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .lg\:hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .lg\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .lg\:hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .lg\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .lg\:focus\:border-transparent:focus { - border-color: transparent; + .lg\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .lg\:focus\:border-current:focus { - border-color: currentColor; + .lg\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .lg\:focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .lg\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .lg\:focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .lg\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .lg\:focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .lg\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .lg\:focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .lg\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .lg\:focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .lg\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .lg\:focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .lg\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .lg\:focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .lg\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .lg\:focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .lg\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .lg\:focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .lg\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .lg\:focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .lg\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .lg\:focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .lg\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .lg\:focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .lg\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .lg\:focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .lg\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .lg\:focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .lg\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .lg\:focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .lg\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .lg\:focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .lg\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .lg\:focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .lg\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .lg\:focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .lg\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .lg\:focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .lg\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .lg\:focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .lg\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .lg\:focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .lg\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .lg\:focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .lg\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .lg\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .lg\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .lg\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .lg\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .lg\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .lg\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .lg\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .lg\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .lg\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .lg\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .lg\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .lg\:scale-x-0 { + --tw-scale-x: 0; } - .lg\:focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .lg\:scale-x-50 { + --tw-scale-x: .5; } - .lg\:focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .lg\:scale-x-75 { + --tw-scale-x: .75; } - .lg\:focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .lg\:scale-x-90 { + --tw-scale-x: .9; } - .lg\:focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .lg\:scale-x-95 { + --tw-scale-x: .95; } - .lg\:focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .lg\:scale-x-100 { + --tw-scale-x: 1; } - .lg\:focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .lg\:scale-x-105 { + --tw-scale-x: 1.05; } - .lg\:focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .lg\:scale-x-110 { + --tw-scale-x: 1.1; } - .lg\:focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .lg\:scale-x-125 { + --tw-scale-x: 1.25; } - .lg\:focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .lg\:scale-x-150 { + --tw-scale-x: 1.5; } - .lg\:focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .lg\:scale-y-0 { + --tw-scale-y: 0; } - .lg\:focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .lg\:scale-y-50 { + --tw-scale-y: .5; } - .lg\:focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .lg\:scale-y-75 { + --tw-scale-y: .75; } - .lg\:focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .lg\:scale-y-90 { + --tw-scale-y: .9; } - .lg\:focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .lg\:scale-y-95 { + --tw-scale-y: .95; } - .lg\:focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .lg\:scale-y-100 { + --tw-scale-y: 1; } - .lg\:focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .lg\:scale-y-105 { + --tw-scale-y: 1.05; } - .lg\:focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .lg\:scale-y-110 { + --tw-scale-y: 1.1; } - .lg\:focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .lg\:scale-y-125 { + --tw-scale-y: 1.25; } - .lg\:focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .lg\:scale-y-150 { + --tw-scale-y: 1.5; } - .lg\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .lg\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .lg\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .lg\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .lg\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .lg\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .lg\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .lg\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .lg\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .lg\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .lg\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .lg\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .lg\:focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .lg\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .lg\:focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .lg\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .lg\:focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .lg\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .lg\:focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .lg\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .lg\:focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .lg\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .lg\:focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .lg\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .lg\:focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .lg\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .lg\:focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .lg\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .lg\:focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .lg\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .lg\:focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .lg\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .lg\:focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .lg\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .lg\:focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .lg\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .lg\:focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .lg\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .lg\:focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .lg\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .lg\:focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .lg\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .lg\:focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .lg\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .lg\:focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .lg\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .lg\:focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .lg\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .lg\:focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .lg\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .lg\:border-opacity-0 { - --tw-border-opacity: 0; + .lg\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:border-opacity-5 { - --tw-border-opacity: 0.05; + .lg\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:border-opacity-10 { - --tw-border-opacity: 0.1; + .lg\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:border-opacity-20 { - --tw-border-opacity: 0.2; + .lg\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:border-opacity-25 { - --tw-border-opacity: 0.25; + .lg\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:border-opacity-30 { - --tw-border-opacity: 0.3; + .lg\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:border-opacity-40 { - --tw-border-opacity: 0.4; + .lg\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:border-opacity-50 { - --tw-border-opacity: 0.5; + .lg\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:border-opacity-60 { - --tw-border-opacity: 0.6; + .lg\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:border-opacity-70 { - --tw-border-opacity: 0.7; + .lg\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:border-opacity-75 { - --tw-border-opacity: 0.75; + .lg\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .lg\:border-opacity-80 { - --tw-border-opacity: 0.8; + .lg\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .lg\:border-opacity-90 { - --tw-border-opacity: 0.9; + .lg\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .lg\:border-opacity-95 { - --tw-border-opacity: 0.95; + .lg\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .lg\:border-opacity-100 { - --tw-border-opacity: 1; + .lg\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .group:hover .lg\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0; + .lg\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .group:hover .lg\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; + .lg\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .group:hover .lg\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; + .lg\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .group:hover .lg\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; + .lg\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .group:hover .lg\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; + .lg\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .group:hover .lg\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; + .lg\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .group:hover .lg\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; + .lg\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .group:hover .lg\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; + .lg\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .group:hover .lg\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; + .lg\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .group:hover .lg\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; + .lg\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .group:hover .lg\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; + .lg\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .group:hover .lg\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; + .lg\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .group:hover .lg\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; + .lg\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .group:hover .lg\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; + .lg\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .group:hover .lg\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1; + .lg\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .lg\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; + .lg\:animate-none { + animation: none; } - .lg\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; + .lg\:animate-spin { + animation: spin 1s linear infinite; } - .lg\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; + .lg\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .lg\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; + .lg\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .lg\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; + .lg\:animate-bounce { + animation: bounce 1s infinite; } - .lg\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; + .lg\:cursor-auto { + cursor: auto; } - .lg\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; + .lg\:cursor-default { + cursor: default; } - .lg\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; + .lg\:cursor-pointer { + cursor: pointer; } - .lg\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; + .lg\:cursor-wait { + cursor: wait; } - .lg\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; + .lg\:cursor-text { + cursor: text; } - .lg\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; + .lg\:cursor-move { + cursor: move; } - .lg\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; + .lg\:cursor-help { + cursor: help; } - .lg\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; + .lg\:cursor-not-allowed { + cursor: not-allowed; } - .lg\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; + .lg\:select-none { + user-select: none; } - .lg\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; + .lg\:select-text { + user-select: text; } - .lg\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0; + .lg\:select-all { + user-select: all; } - .lg\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; + .lg\:select-auto { + user-select: auto; } - .lg\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; + .lg\:resize-none { + resize: none; } - .lg\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; + .lg\:resize-y { + resize: vertical; } - .lg\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; + .lg\:resize-x { + resize: horizontal; } - .lg\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; + .lg\:resize { + resize: both; } - .lg\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; + .lg\:list-inside { + list-style-position: inside; } - .lg\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; + .lg\:list-outside { + list-style-position: outside; } - .lg\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; + .lg\:list-none { + list-style-type: none; } - .lg\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; + .lg\:list-disc { + list-style-type: disc; } - .lg\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; + .lg\:list-decimal { + list-style-type: decimal; } - .lg\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; + .lg\:appearance-none { + appearance: none; } - .lg\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; + .lg\:auto-cols-auto { + grid-auto-columns: auto; } - .lg\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; + .lg\:auto-cols-min { + grid-auto-columns: min-content; } - .lg\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1; + .lg\:auto-cols-max { + grid-auto-columns: max-content; } - .lg\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0; + .lg\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .lg\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; + .lg\:grid-flow-row { + grid-auto-flow: row; } - .lg\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; + .lg\:grid-flow-col { + grid-auto-flow: column; } - .lg\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; + .lg\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .lg\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; + .lg\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .lg\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; + .lg\:auto-rows-auto { + grid-auto-rows: auto; } - .lg\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; + .lg\:auto-rows-min { + grid-auto-rows: min-content; } - .lg\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; + .lg\:auto-rows-max { + grid-auto-rows: max-content; } - .lg\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; + .lg\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .lg\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; + .lg\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .lg\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; + .lg\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .lg\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; + .lg\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .lg\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; + .lg\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .lg\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; + .lg\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .lg\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1; + .lg\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .lg\:rounded-none { - border-radius: 0px; + .lg\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .lg\:rounded-sm { - border-radius: 0.125rem; + .lg\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .lg\:rounded { - border-radius: 0.25rem; + .lg\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .lg\:rounded-md { - border-radius: 0.375rem; + .lg\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .lg\:rounded-lg { - border-radius: 0.5rem; + .lg\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .lg\:rounded-xl { - border-radius: 0.75rem; + .lg\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .lg\:rounded-2xl { - border-radius: 1rem; + .lg\:grid-cols-none { + grid-template-columns: none; } - .lg\:rounded-3xl { - border-radius: 1.5rem; + .lg\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .lg\:rounded-full { - border-radius: 9999px; + .lg\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .lg\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .lg\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .lg\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .lg\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .lg\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .lg\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .lg\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .lg\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .lg\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .lg\:grid-rows-none { + grid-template-rows: none; } - .lg\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .lg\:flex-row { + flex-direction: row; } - .lg\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .lg\:flex-row-reverse { + flex-direction: row-reverse; } - .lg\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .lg\:flex-col { + flex-direction: column; } - .lg\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .lg\:flex-col-reverse { + flex-direction: column-reverse; } - .lg\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .lg\:flex-wrap { + flex-wrap: wrap; } - .lg\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .lg\:flex-wrap-reverse { + flex-wrap: wrap-reverse; } - .lg\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .lg\:flex-nowrap { + flex-wrap: nowrap; } - .lg\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .lg\:place-content-center { + place-content: center; } - .lg\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .lg\:place-content-start { + place-content: start; } - .lg\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .lg\:place-content-end { + place-content: end; } - .lg\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .lg\:place-content-between { + place-content: space-between; } - .lg\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .lg\:place-content-around { + place-content: space-around; } - .lg\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .lg\:place-content-evenly { + place-content: space-evenly; } - .lg\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .lg\:place-content-stretch { + place-content: stretch; } - .lg\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .lg\:place-items-start { + place-items: start; } - .lg\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .lg\:place-items-end { + place-items: end; } - .lg\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .lg\:place-items-center { + place-items: center; } - .lg\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .lg\:place-items-stretch { + place-items: stretch; } - .lg\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .lg\:content-center { + align-content: center; } - .lg\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .lg\:content-start { + align-content: flex-start; } - .lg\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .lg\:content-end { + align-content: flex-end; } - .lg\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .lg\:content-between { + align-content: space-between; } - .lg\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .lg\:content-around { + align-content: space-around; } - .lg\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .lg\:content-evenly { + align-content: space-evenly; } - .lg\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .lg\:items-start { + align-items: flex-start; } - .lg\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .lg\:items-end { + align-items: flex-end; } - .lg\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .lg\:items-center { + align-items: center; } - .lg\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .lg\:items-baseline { + align-items: baseline; } - .lg\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .lg\:items-stretch { + align-items: stretch; } - .lg\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .lg\:justify-start { + justify-content: flex-start; } - .lg\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .lg\:justify-end { + justify-content: flex-end; } - .lg\:rounded-tl-none { - border-top-left-radius: 0px; + .lg\:justify-center { + justify-content: center; } - .lg\:rounded-tr-none { - border-top-right-radius: 0px; + .lg\:justify-between { + justify-content: space-between; + } + + .lg\:justify-around { + justify-content: space-around; } - .lg\:rounded-br-none { - border-bottom-right-radius: 0px; + .lg\:justify-evenly { + justify-content: space-evenly; } - .lg\:rounded-bl-none { - border-bottom-left-radius: 0px; + .lg\:justify-items-start { + justify-items: start; } - .lg\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .lg\:justify-items-end { + justify-items: end; } - .lg\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .lg\:justify-items-center { + justify-items: center; } - .lg\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .lg\:justify-items-stretch { + justify-items: stretch; } - .lg\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .lg\:gap-0 { + gap: 0px; } - .lg\:rounded-tl { - border-top-left-radius: 0.25rem; + .lg\:gap-1 { + gap: 0.25rem; } - .lg\:rounded-tr { - border-top-right-radius: 0.25rem; + .lg\:gap-2 { + gap: 0.5rem; } - .lg\:rounded-br { - border-bottom-right-radius: 0.25rem; + .lg\:gap-3 { + gap: 0.75rem; } - .lg\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .lg\:gap-4 { + gap: 1rem; } - .lg\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .lg\:gap-5 { + gap: 1.25rem; } - .lg\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .lg\:gap-6 { + gap: 1.5rem; } - .lg\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .lg\:gap-7 { + gap: 1.75rem; } - .lg\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .lg\:gap-8 { + gap: 2rem; } - .lg\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .lg\:gap-9 { + gap: 2.25rem; } - .lg\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .lg\:gap-10 { + gap: 2.5rem; } - .lg\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .lg\:gap-11 { + gap: 2.75rem; } - .lg\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .lg\:gap-12 { + gap: 3rem; } - .lg\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .lg\:gap-14 { + gap: 3.5rem; } - .lg\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .lg\:gap-16 { + gap: 4rem; } - .lg\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .lg\:gap-20 { + gap: 5rem; } - .lg\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .lg\:gap-24 { + gap: 6rem; } - .lg\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .lg\:gap-28 { + gap: 7rem; } - .lg\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .lg\:gap-32 { + gap: 8rem; } - .lg\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .lg\:gap-36 { + gap: 9rem; } - .lg\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .lg\:gap-40 { + gap: 10rem; } - .lg\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .lg\:gap-44 { + gap: 11rem; } - .lg\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .lg\:gap-48 { + gap: 12rem; } - .lg\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .lg\:gap-52 { + gap: 13rem; } - .lg\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .lg\:gap-56 { + gap: 14rem; } - .lg\:rounded-tl-full { - border-top-left-radius: 9999px; + .lg\:gap-60 { + gap: 15rem; } - .lg\:rounded-tr-full { - border-top-right-radius: 9999px; + .lg\:gap-64 { + gap: 16rem; } - .lg\:rounded-br-full { - border-bottom-right-radius: 9999px; + .lg\:gap-72 { + gap: 18rem; } - .lg\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .lg\:gap-80 { + gap: 20rem; } - .lg\:border-solid { - border-style: solid; + .lg\:gap-96 { + gap: 24rem; } - .lg\:border-dashed { - border-style: dashed; + .lg\:gap-px { + gap: 1px; } - .lg\:border-dotted { - border-style: dotted; + .lg\:gap-0\.5 { + gap: 0.125rem; } - .lg\:border-double { - border-style: double; + .lg\:gap-1\.5 { + gap: 0.375rem; } - .lg\:border-none { - border-style: none; + .lg\:gap-2\.5 { + gap: 0.625rem; } - .lg\:border-0 { - border-width: 0px; + .lg\:gap-3\.5 { + gap: 0.875rem; } - .lg\:border-2 { - border-width: 2px; + .lg\:gap-x-0 { + column-gap: 0px; } - .lg\:border-4 { - border-width: 4px; + .lg\:gap-x-1 { + column-gap: 0.25rem; } - .lg\:border-8 { - border-width: 8px; + .lg\:gap-x-2 { + column-gap: 0.5rem; } - .lg\:border { - border-width: 1px; + .lg\:gap-x-3 { + column-gap: 0.75rem; } - .lg\:border-t-0 { - border-top-width: 0px; + .lg\:gap-x-4 { + column-gap: 1rem; } - .lg\:border-r-0 { - border-right-width: 0px; + .lg\:gap-x-5 { + column-gap: 1.25rem; } - .lg\:border-b-0 { - border-bottom-width: 0px; + .lg\:gap-x-6 { + column-gap: 1.5rem; } - .lg\:border-l-0 { - border-left-width: 0px; + .lg\:gap-x-7 { + column-gap: 1.75rem; } - .lg\:border-t-2 { - border-top-width: 2px; + .lg\:gap-x-8 { + column-gap: 2rem; } - .lg\:border-r-2 { - border-right-width: 2px; + .lg\:gap-x-9 { + column-gap: 2.25rem; } - .lg\:border-b-2 { - border-bottom-width: 2px; + .lg\:gap-x-10 { + column-gap: 2.5rem; } - .lg\:border-l-2 { - border-left-width: 2px; + .lg\:gap-x-11 { + column-gap: 2.75rem; } - .lg\:border-t-4 { - border-top-width: 4px; + .lg\:gap-x-12 { + column-gap: 3rem; } - .lg\:border-r-4 { - border-right-width: 4px; + .lg\:gap-x-14 { + column-gap: 3.5rem; } - .lg\:border-b-4 { - border-bottom-width: 4px; + .lg\:gap-x-16 { + column-gap: 4rem; } - .lg\:border-l-4 { - border-left-width: 4px; + .lg\:gap-x-20 { + column-gap: 5rem; } - .lg\:border-t-8 { - border-top-width: 8px; + .lg\:gap-x-24 { + column-gap: 6rem; } - .lg\:border-r-8 { - border-right-width: 8px; + .lg\:gap-x-28 { + column-gap: 7rem; } - .lg\:border-b-8 { - border-bottom-width: 8px; + .lg\:gap-x-32 { + column-gap: 8rem; } - .lg\:border-l-8 { - border-left-width: 8px; + .lg\:gap-x-36 { + column-gap: 9rem; } - .lg\:border-t { - border-top-width: 1px; + .lg\:gap-x-40 { + column-gap: 10rem; } - .lg\:border-r { - border-right-width: 1px; + .lg\:gap-x-44 { + column-gap: 11rem; } - .lg\:border-b { - border-bottom-width: 1px; + .lg\:gap-x-48 { + column-gap: 12rem; } - .lg\:border-l { - border-left-width: 1px; + .lg\:gap-x-52 { + column-gap: 13rem; } - .lg\:decoration-slice { - box-decoration-break: slice; + .lg\:gap-x-56 { + column-gap: 14rem; } - .lg\:decoration-clone { - box-decoration-break: clone; + .lg\:gap-x-60 { + column-gap: 15rem; } - .lg\:box-border { - box-sizing: border-box; + .lg\:gap-x-64 { + column-gap: 16rem; } - .lg\:box-content { - box-sizing: content-box; + .lg\:gap-x-72 { + column-gap: 18rem; } - .lg\:cursor-auto { - cursor: auto; + .lg\:gap-x-80 { + column-gap: 20rem; } - .lg\:cursor-default { - cursor: default; + .lg\:gap-x-96 { + column-gap: 24rem; } - .lg\:cursor-pointer { - cursor: pointer; + .lg\:gap-x-px { + column-gap: 1px; } - .lg\:cursor-wait { - cursor: wait; + .lg\:gap-x-0\.5 { + column-gap: 0.125rem; } - .lg\:cursor-text { - cursor: text; + .lg\:gap-x-1\.5 { + column-gap: 0.375rem; } - .lg\:cursor-move { - cursor: move; + .lg\:gap-x-2\.5 { + column-gap: 0.625rem; } - .lg\:cursor-help { - cursor: help; + .lg\:gap-x-3\.5 { + column-gap: 0.875rem; } - .lg\:cursor-not-allowed { - cursor: not-allowed; + .lg\:gap-y-0 { + row-gap: 0px; } - .lg\:block { - display: block; + .lg\:gap-y-1 { + row-gap: 0.25rem; } - .lg\:inline-block { - display: inline-block; + .lg\:gap-y-2 { + row-gap: 0.5rem; } - .lg\:inline { - display: inline; + .lg\:gap-y-3 { + row-gap: 0.75rem; } - .lg\:flex { - display: flex; + .lg\:gap-y-4 { + row-gap: 1rem; } - .lg\:inline-flex { - display: inline-flex; + .lg\:gap-y-5 { + row-gap: 1.25rem; } - .lg\:table { - display: table; + .lg\:gap-y-6 { + row-gap: 1.5rem; } - .lg\:inline-table { - display: inline-table; + .lg\:gap-y-7 { + row-gap: 1.75rem; } - .lg\:table-caption { - display: table-caption; + .lg\:gap-y-8 { + row-gap: 2rem; } - .lg\:table-cell { - display: table-cell; + .lg\:gap-y-9 { + row-gap: 2.25rem; } - .lg\:table-column { - display: table-column; + .lg\:gap-y-10 { + row-gap: 2.5rem; } - .lg\:table-column-group { - display: table-column-group; + .lg\:gap-y-11 { + row-gap: 2.75rem; } - .lg\:table-footer-group { - display: table-footer-group; + .lg\:gap-y-12 { + row-gap: 3rem; } - .lg\:table-header-group { - display: table-header-group; + .lg\:gap-y-14 { + row-gap: 3.5rem; } - .lg\:table-row-group { - display: table-row-group; + .lg\:gap-y-16 { + row-gap: 4rem; } - .lg\:table-row { - display: table-row; + .lg\:gap-y-20 { + row-gap: 5rem; } - .lg\:flow-root { - display: flow-root; + .lg\:gap-y-24 { + row-gap: 6rem; } - .lg\:grid { - display: grid; + .lg\:gap-y-28 { + row-gap: 7rem; } - .lg\:inline-grid { - display: inline-grid; + .lg\:gap-y-32 { + row-gap: 8rem; } - .lg\:contents { - display: contents; + .lg\:gap-y-36 { + row-gap: 9rem; } - .lg\:list-item { - display: list-item; + .lg\:gap-y-40 { + row-gap: 10rem; } - .lg\:hidden { - display: none; + .lg\:gap-y-44 { + row-gap: 11rem; } - .lg\:flex-row { - flex-direction: row; + .lg\:gap-y-48 { + row-gap: 12rem; } - .lg\:flex-row-reverse { - flex-direction: row-reverse; + .lg\:gap-y-52 { + row-gap: 13rem; } - .lg\:flex-col { - flex-direction: column; + .lg\:gap-y-56 { + row-gap: 14rem; } - .lg\:flex-col-reverse { - flex-direction: column-reverse; + .lg\:gap-y-60 { + row-gap: 15rem; } - .lg\:flex-wrap { - flex-wrap: wrap; + .lg\:gap-y-64 { + row-gap: 16rem; } - .lg\:flex-wrap-reverse { - flex-wrap: wrap-reverse; + .lg\:gap-y-72 { + row-gap: 18rem; } - .lg\:flex-nowrap { - flex-wrap: nowrap; + .lg\:gap-y-80 { + row-gap: 20rem; } - .lg\:place-items-start { - place-items: start; + .lg\:gap-y-96 { + row-gap: 24rem; } - .lg\:place-items-end { - place-items: end; + .lg\:gap-y-px { + row-gap: 1px; } - .lg\:place-items-center { - place-items: center; + .lg\:gap-y-0\.5 { + row-gap: 0.125rem; } - .lg\:place-items-stretch { - place-items: stretch; + .lg\:gap-y-1\.5 { + row-gap: 0.375rem; } - .lg\:place-content-center { - place-content: center; + .lg\:gap-y-2\.5 { + row-gap: 0.625rem; } - .lg\:place-content-start { - place-content: start; + .lg\:gap-y-3\.5 { + row-gap: 0.875rem; } - .lg\:place-content-end { - place-content: end; + .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\:place-content-between { - place-content: space-between; + .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\:place-content-around { - place-content: space-around; + .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\:place-content-evenly { - place-content: space-evenly; + .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\:place-content-stretch { - place-content: stretch; + .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\:place-self-auto { - place-self: auto; + .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\:place-self-start { - place-self: start; + .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\:place-self-end { - place-self: end; + .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\:place-self-center { - place-self: center; + .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\:place-self-stretch { - place-self: stretch; + .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\:items-start { - align-items: flex-start; + .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\:items-end { - align-items: flex-end; + .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\:items-center { - align-items: center; + .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\:items-baseline { - align-items: baseline; + .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\:items-stretch { - align-items: stretch; + .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\:content-center { - align-content: center; + .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\:content-start { - align-content: flex-start; + .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\:content-end { - align-content: flex-end; + .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\:content-between { - align-content: space-between; + .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\:content-around { - align-content: space-around; + .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\:content-evenly { - align-content: space-evenly; + .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\:self-auto { - align-self: auto; + .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\:self-start { - align-self: flex-start; + .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\:self-end { - align-self: flex-end; + .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\:self-center { - align-self: center; + .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\:self-stretch { - align-self: stretch; + .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\:justify-items-start { - justify-items: start; + .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\:justify-items-end { - justify-items: end; + .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\:justify-items-center { - justify-items: center; + .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\:justify-items-stretch { - justify-items: stretch; + .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\:justify-start { - justify-content: flex-start; + .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\:justify-end { - justify-content: flex-end; + .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\:justify-center { - justify-content: center; + .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\:justify-between { - justify-content: space-between; + .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\:justify-around { - justify-content: space-around; + .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\:justify-evenly { - justify-content: space-evenly; + .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\:justify-self-auto { - justify-self: auto; + .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\:justify-self-start { - justify-self: start; + .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\:justify-self-end { - justify-self: end; + .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\:justify-self-center { - justify-self: center; + .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\:justify-self-stretch { - justify-self: stretch; + .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\:flex-1 { - flex: 1 1 0%; + .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\:flex-auto { - flex: 1 1 auto; + .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\:flex-initial { - flex: 0 1 auto; + .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\:flex-none { - flex: none; + .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\:flex-grow-0 { - flex-grow: 0; + .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\:flex-grow { - flex-grow: 1; + .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\:flex-shrink-0 { - flex-shrink: 0; + .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\:flex-shrink { - flex-shrink: 1; + .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\:order-1 { - order: 1; + .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\:order-2 { - order: 2; + .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\:order-3 { - order: 3; + .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\:order-4 { - order: 4; + .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\:order-5 { - order: 5; + .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\:order-6 { - order: 6; + .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\:order-7 { - order: 7; + .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\:order-8 { - order: 8; + .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\:order-9 { - order: 9; + .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\:order-10 { - order: 10; + .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\:order-11 { - order: 11; + .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\:order-12 { - order: 12; + .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\:order-first { - order: -9999; + .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\:order-last { - order: 9999; + .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\:order-none { - order: 0; + .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\:float-right { - float: right; + .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\:float-left { - float: left; + .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\:float-none { - float: none; + .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\:clear-left { - clear: left; + .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\:clear-right { - clear: right; + .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\:clear-both { - clear: both; + .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\:clear-none { - clear: none; + .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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .lg\:-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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .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\:font-thin { - font-weight: 100; + .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\:font-extralight { - font-weight: 200; + .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\:font-light { - font-weight: 300; + .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\:font-normal { - font-weight: 400; + .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\:font-medium { - font-weight: 500; + .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\:font-semibold { - font-weight: 600; + .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\:font-bold { - font-weight: 700; + .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\:font-extrabold { - font-weight: 800; + .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\:font-black { - font-weight: 900; + .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\:h-0 { - height: 0px; + .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\:h-1 { - height: 0.25rem; + .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\:h-2 { - height: 0.5rem; + .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\:h-3 { - height: 0.75rem; + .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\:h-4 { - height: 1rem; + .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\:h-5 { - height: 1.25rem; + .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\:h-6 { - height: 1.5rem; + .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\:h-7 { - height: 1.75rem; + .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\:h-8 { - height: 2rem; + .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\:h-9 { - height: 2.25rem; + .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\:h-10 { - height: 2.5rem; + .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\:h-11 { - height: 2.75rem; + .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\:h-12 { - height: 3rem; + .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\:h-14 { - height: 3.5rem; + .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\:h-16 { - height: 4rem; + .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\:h-20 { - height: 5rem; + .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\:h-24 { - height: 6rem; + .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\:h-28 { - height: 7rem; + .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\:h-32 { - height: 8rem; + .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\:h-36 { - height: 9rem; + .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\:h-40 { - height: 10rem; + .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\:h-44 { - height: 11rem; + .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\:h-48 { - height: 12rem; + .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\:h-52 { - height: 13rem; + .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\:h-56 { - height: 14rem; + .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\:h-60 { - height: 15rem; + .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\:h-64 { - height: 16rem; + .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\:h-72 { - height: 18rem; + .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\:h-80 { - height: 20rem; + .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\:h-96 { - height: 24rem; + .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\:h-auto { - height: auto; + .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\:h-px { - height: 1px; + .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\:h-0\.5 { - height: 0.125rem; + .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\:h-1\.5 { - height: 0.375rem; + .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\:h-2\.5 { - height: 0.625rem; + .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\:h-3\.5 { - height: 0.875rem; + .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\:h-1\/2 { - height: 50%; + .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\:h-1\/3 { - height: 33.333333%; + .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\:h-2\/3 { - height: 66.666667%; + .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\:h-1\/4 { - height: 25%; + .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\:h-2\/4 { - height: 50%; + .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\:h-3\/4 { - height: 75%; + .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\:h-1\/5 { - height: 20%; + .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\:h-2\/5 { - height: 40%; + .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\:h-3\/5 { - height: 60%; + .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\:h-4\/5 { - height: 80%; + .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\:h-1\/6 { - height: 16.666667%; + .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\:h-2\/6 { - height: 33.333333%; + .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\:h-3\/6 { - height: 50%; + .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\:h-4\/6 { - height: 66.666667%; + .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\:h-5\/6 { - height: 83.333333%; + .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\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .lg\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .lg\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .lg\:leading-7 { - line-height: 1.75rem; + .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .lg\:leading-8 { - line-height: 2rem; + .lg\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .lg\:leading-9 { - line-height: 2.25rem; + .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .lg\:leading-10 { - line-height: 2.5rem; + .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .lg\:leading-none { - line-height: 1; + .lg\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .lg\:leading-tight { - line-height: 1.25; + .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .lg\:leading-snug { - line-height: 1.375; + .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .lg\:leading-normal { - line-height: 1.5; + .lg\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .lg\:leading-relaxed { - line-height: 1.625; + .lg\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } - .lg\:leading-loose { - line-height: 2; + .lg\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } - .lg\:list-inside { - list-style-position: inside; + .lg\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } - .lg\:list-outside { - list-style-position: outside; + .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } - .lg\:list-none { - list-style-type: none; + .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } - .lg\:list-disc { - list-style-type: disc; + .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } - .lg\:list-decimal { - list-style-type: decimal; + .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } - .lg\:m-0 { - margin: 0px; + .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } - .lg\:m-1 { - margin: 0.25rem; + .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } - .lg\:m-2 { - margin: 0.5rem; + .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } - .lg\:m-3 { - margin: 0.75rem; + .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } - .lg\:m-4 { - margin: 1rem; + .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } - .lg\:m-5 { - margin: 1.25rem; + .lg\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } - .lg\:m-6 { - margin: 1.5rem; + .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } - .lg\:m-7 { - margin: 1.75rem; + .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } - .lg\:m-8 { - margin: 2rem; + .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } - .lg\:m-9 { - margin: 2.25rem; + .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } - .lg\:m-10 { - margin: 2.5rem; + .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } - .lg\:m-11 { - margin: 2.75rem; + .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } - .lg\:m-12 { - margin: 3rem; + .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } - .lg\:m-14 { - margin: 3.5rem; + .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } - .lg\:m-16 { - margin: 4rem; + .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } - .lg\:m-20 { - margin: 5rem; + .lg\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } - .lg\:m-24 { - margin: 6rem; + .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } - .lg\:m-28 { - margin: 7rem; + .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } - .lg\:m-32 { - margin: 8rem; + .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } - .lg\:m-36 { - margin: 9rem; + .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } - .lg\:m-40 { - margin: 10rem; + .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } - .lg\:m-44 { - margin: 11rem; + .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } - .lg\:m-48 { - margin: 12rem; + .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } - .lg\:m-52 { - margin: 13rem; + .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } - .lg\:m-56 { - margin: 14rem; + .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } - .lg\:m-60 { - margin: 15rem; + .lg\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } - .lg\:m-64 { - margin: 16rem; + .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } - .lg\:m-72 { - margin: 18rem; + .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } - .lg\:m-80 { - margin: 20rem; + .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } - .lg\:m-96 { - margin: 24rem; + .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } - .lg\:m-auto { - margin: auto; + .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } - .lg\:m-px { - margin: 1px; + .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } - .lg\:m-0\.5 { - margin: 0.125rem; + .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } - .lg\:m-1\.5 { - margin: 0.375rem; + .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } - .lg\:m-2\.5 { - margin: 0.625rem; + .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } - .lg\:m-3\.5 { - margin: 0.875rem; + .lg\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } - .lg\:-m-0 { - margin: 0px; + .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } - .lg\:-m-1 { - margin: -0.25rem; + .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } - .lg\:-m-2 { - margin: -0.5rem; + .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } - .lg\:-m-3 { - margin: -0.75rem; + .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } - .lg\:-m-4 { - margin: -1rem; + .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } - .lg\:-m-5 { - margin: -1.25rem; + .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } - .lg\:-m-6 { - margin: -1.5rem; + .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } - .lg\:-m-7 { - margin: -1.75rem; + .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } - .lg\:-m-8 { - margin: -2rem; + .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } - .lg\:-m-9 { - margin: -2.25rem; + .lg\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } - .lg\:-m-10 { - margin: -2.5rem; + .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } - .lg\:-m-11 { - margin: -2.75rem; + .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } - .lg\:-m-12 { - margin: -3rem; + .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } - .lg\:-m-14 { - margin: -3.5rem; + .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } - .lg\:-m-16 { - margin: -4rem; + .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } - .lg\:-m-20 { - margin: -5rem; + .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } - .lg\:-m-24 { - margin: -6rem; + .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } - .lg\:-m-28 { - margin: -7rem; + .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } - .lg\:-m-32 { - margin: -8rem; + .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } - .lg\:-m-36 { - margin: -9rem; + .lg\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } - .lg\:-m-40 { - margin: -10rem; + .lg\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } - .lg\:-m-44 { - margin: -11rem; + .lg\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } - .lg\:-m-48 { - margin: -12rem; + .lg\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } - .lg\:-m-52 { - margin: -13rem; + .lg\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } - .lg\:-m-56 { - margin: -14rem; + .lg\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } - .lg\:-m-60 { - margin: -15rem; + .lg\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } - .lg\:-m-64 { - margin: -16rem; + .lg\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } - .lg\:-m-72 { - margin: -18rem; + .lg\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } - .lg\:-m-80 { - margin: -20rem; + .lg\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } - .lg\:-m-96 { - margin: -24rem; + .lg\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } - .lg\:-m-px { - margin: -1px; + .lg\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } - .lg\:-m-0\.5 { - margin: -0.125rem; + .lg\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } - .lg\:-m-1\.5 { - margin: -0.375rem; + .lg\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } - .lg\:-m-2\.5 { - margin: -0.625rem; + .lg\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } - .lg\:-m-3\.5 { - margin: -0.875rem; + .lg\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } - .lg\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .lg\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } - .lg\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .lg\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } - .lg\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .lg\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } - .lg\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .lg\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } - .lg\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .lg\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } - .lg\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .lg\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } - .lg\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .lg\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } - .lg\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .lg\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } - .lg\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .lg\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } - .lg\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .lg\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } - .lg\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .lg\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } - .lg\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .lg\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } - .lg\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .lg\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } - .lg\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .lg\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } - .lg\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .lg\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } - .lg\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .lg\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } - .lg\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .lg\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } - .lg\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .lg\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } - .lg\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .lg\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } - .lg\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .lg\:place-self-auto { + place-self: auto; } - .lg\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .lg\:place-self-start { + place-self: start; } - .lg\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .lg\:place-self-end { + place-self: end; } - .lg\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .lg\:place-self-center { + place-self: center; } - .lg\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .lg\:place-self-stretch { + place-self: stretch; } - .lg\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .lg\:self-auto { + align-self: auto; } - .lg\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .lg\:self-start { + align-self: flex-start; } - .lg\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .lg\:self-end { + align-self: flex-end; } - .lg\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .lg\:self-center { + align-self: center; } - .lg\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .lg\:self-stretch { + align-self: stretch; } - .lg\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .lg\:justify-self-auto { + justify-self: auto; } - .lg\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .lg\:justify-self-start { + justify-self: start; } - .lg\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .lg\:justify-self-end { + justify-self: end; } - .lg\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .lg\:justify-self-center { + justify-self: center; } - .lg\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .lg\:justify-self-stretch { + justify-self: stretch; } - .lg\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .lg\:overflow-auto { + overflow: auto; } - .lg\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .lg\:overflow-hidden { + overflow: hidden; } - .lg\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .lg\:overflow-visible { + overflow: visible; } - .lg\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .lg\:overflow-scroll { + overflow: scroll; } - .lg\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .lg\:overflow-x-auto { + overflow-x: auto; } - .lg\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .lg\:overflow-y-auto { + overflow-y: auto; } - .lg\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .lg\:overflow-x-hidden { + overflow-x: hidden; } - .lg\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .lg\:overflow-y-hidden { + overflow-y: hidden; } - .lg\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .lg\:overflow-x-visible { + overflow-x: visible; } - .lg\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .lg\:overflow-y-visible { + overflow-y: visible; } - .lg\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .lg\:overflow-x-scroll { + overflow-x: scroll; } - .lg\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .lg\:overflow-y-scroll { + overflow-y: scroll; } - .lg\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .lg\:overscroll-auto { + overscroll-behavior: auto; } - .lg\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .lg\:overscroll-contain { + overscroll-behavior: contain; } - .lg\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .lg\:overscroll-none { + overscroll-behavior: none; } - .lg\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .lg\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .lg\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .lg\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .lg\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .lg\:overscroll-y-none { + overscroll-behavior-y: none; } - .lg\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .lg\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .lg\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .lg\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .lg\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .lg\:overscroll-x-none { + overscroll-behavior-x: none; } - .lg\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .lg\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .lg\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .lg\:overflow-ellipsis { + text-overflow: ellipsis; } - .lg\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .lg\:overflow-clip { + text-overflow: clip; } - .lg\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .lg\:whitespace-normal { + white-space: normal; } - .lg\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .lg\:whitespace-nowrap { + white-space: nowrap; } - .lg\:my-auto { - margin-top: auto; - margin-bottom: auto; + .lg\:whitespace-pre { + white-space: pre; } - .lg\:mx-auto { - margin-left: auto; - margin-right: auto; + .lg\:whitespace-pre-line { + white-space: pre-line; } - .lg\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .lg\:whitespace-pre-wrap { + white-space: pre-wrap; } - .lg\:mx-px { - margin-left: 1px; - margin-right: 1px; + .lg\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .lg\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .lg\:break-words { + overflow-wrap: break-word; } - .lg\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .lg\:break-all { + word-break: break-all; } - .lg\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .lg\:rounded-none { + border-radius: 0px; } - .lg\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .lg\:rounded-sm { + border-radius: 0.125rem; } - .lg\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .lg\:rounded { + border-radius: 0.25rem; } - .lg\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .lg\:rounded-md { + border-radius: 0.375rem; } - .lg\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .lg\:rounded-lg { + border-radius: 0.5rem; } - .lg\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .lg\:rounded-xl { + border-radius: 0.75rem; } - .lg\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .lg\:rounded-2xl { + border-radius: 1rem; } - .lg\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .lg\:rounded-3xl { + border-radius: 1.5rem; } - .lg\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .lg\:rounded-full { + border-radius: 9999px; } - .lg\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .lg\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .lg\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .lg\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .lg\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .lg\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .lg\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .lg\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .lg\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .lg\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .lg\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .lg\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .lg\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .lg\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .lg\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .lg\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .lg\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .lg\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .lg\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .lg\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .lg\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .lg\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .lg\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .lg\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .lg\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .lg\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .lg\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .lg\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .lg\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .lg\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .lg\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .lg\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .lg\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .lg\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .lg\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .lg\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .lg\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .lg\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .lg\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .lg\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .lg\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .lg\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .lg\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .lg\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .lg\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .lg\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .lg\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .lg\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .lg\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .lg\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .lg\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .lg\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .lg\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .lg\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .lg\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .lg\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .lg\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .lg\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .lg\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .lg\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .lg\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .lg\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .lg\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .lg\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .lg\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .lg\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .lg\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .lg\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .lg\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .lg\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .lg\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .lg\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .lg\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .lg\:rounded-tl-none { + border-top-left-radius: 0px; } - .lg\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .lg\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .lg\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .lg\:rounded-tl { + border-top-left-radius: 0.25rem; } - .lg\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .lg\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .lg\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .lg\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .lg\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .lg\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .lg\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .lg\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .lg\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .lg\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .lg\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .lg\:rounded-tl-full { + border-top-left-radius: 9999px; } - .lg\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .lg\:rounded-tr-none { + border-top-right-radius: 0px; } - .lg\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .lg\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .lg\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .lg\:rounded-tr { + border-top-right-radius: 0.25rem; } - .lg\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .lg\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .lg\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .lg\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .lg\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .lg\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .lg\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .lg\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .lg\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .lg\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .lg\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .lg\:rounded-tr-full { + border-top-right-radius: 9999px; } - .lg\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .lg\:rounded-br-none { + border-bottom-right-radius: 0px; } - .lg\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .lg\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .lg\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .lg\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .lg\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .lg\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .lg\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .lg\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .lg\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .lg\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .lg\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .lg\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .lg\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .lg\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .lg\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .lg\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .lg\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .lg\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .lg\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .lg\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .lg\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .lg\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .lg\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .lg\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .lg\:mt-0 { - margin-top: 0px; + .lg\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .lg\:mr-0 { - margin-right: 0px; + .lg\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .lg\:mb-0 { - margin-bottom: 0px; + .lg\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .lg\:ml-0 { - margin-left: 0px; + .lg\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .lg\:mt-1 { - margin-top: 0.25rem; + .lg\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .lg\:mr-1 { - margin-right: 0.25rem; + .lg\:border-0 { + border-width: 0px; } - .lg\:mb-1 { - margin-bottom: 0.25rem; + .lg\:border-2 { + border-width: 2px; } - .lg\:ml-1 { - margin-left: 0.25rem; + .lg\:border-4 { + border-width: 4px; } - .lg\:mt-2 { - margin-top: 0.5rem; + .lg\:border-8 { + border-width: 8px; } - .lg\:mr-2 { - margin-right: 0.5rem; + .lg\:border { + border-width: 1px; } - .lg\:mb-2 { - margin-bottom: 0.5rem; + .lg\:border-t-0 { + border-top-width: 0px; } - .lg\:ml-2 { - margin-left: 0.5rem; + .lg\:border-t-2 { + border-top-width: 2px; } - .lg\:mt-3 { - margin-top: 0.75rem; + .lg\:border-t-4 { + border-top-width: 4px; } - .lg\:mr-3 { - margin-right: 0.75rem; + .lg\:border-t-8 { + border-top-width: 8px; } - .lg\:mb-3 { - margin-bottom: 0.75rem; + .lg\:border-t { + border-top-width: 1px; } - .lg\:ml-3 { - margin-left: 0.75rem; + .lg\:border-r-0 { + border-right-width: 0px; } - .lg\:mt-4 { - margin-top: 1rem; + .lg\:border-r-2 { + border-right-width: 2px; } - .lg\:mr-4 { - margin-right: 1rem; + .lg\:border-r-4 { + border-right-width: 4px; } - .lg\:mb-4 { - margin-bottom: 1rem; + .lg\:border-r-8 { + border-right-width: 8px; } - .lg\:ml-4 { - margin-left: 1rem; + .lg\:border-r { + border-right-width: 1px; } - .lg\:mt-5 { - margin-top: 1.25rem; + .lg\:border-b-0 { + border-bottom-width: 0px; } - .lg\:mr-5 { - margin-right: 1.25rem; + .lg\:border-b-2 { + border-bottom-width: 2px; } - .lg\:mb-5 { - margin-bottom: 1.25rem; + .lg\:border-b-4 { + border-bottom-width: 4px; } - .lg\:ml-5 { - margin-left: 1.25rem; + .lg\:border-b-8 { + border-bottom-width: 8px; } - .lg\:mt-6 { - margin-top: 1.5rem; + .lg\:border-b { + border-bottom-width: 1px; } - .lg\:mr-6 { - margin-right: 1.5rem; + .lg\:border-l-0 { + border-left-width: 0px; } - .lg\:mb-6 { - margin-bottom: 1.5rem; + .lg\:border-l-2 { + border-left-width: 2px; } - .lg\:ml-6 { - margin-left: 1.5rem; + .lg\:border-l-4 { + border-left-width: 4px; } - .lg\:mt-7 { - margin-top: 1.75rem; + .lg\:border-l-8 { + border-left-width: 8px; } - .lg\:mr-7 { - margin-right: 1.75rem; + .lg\:border-l { + border-left-width: 1px; } - .lg\:mb-7 { - margin-bottom: 1.75rem; + .lg\:border-solid { + border-style: solid; } - .lg\:ml-7 { - margin-left: 1.75rem; + .lg\:border-dashed { + border-style: dashed; } - .lg\:mt-8 { - margin-top: 2rem; + .lg\:border-dotted { + border-style: dotted; } - .lg\:mr-8 { - margin-right: 2rem; + .lg\:border-double { + border-style: double; } - .lg\:mb-8 { - margin-bottom: 2rem; + .lg\:border-none { + border-style: none; } - .lg\:ml-8 { - margin-left: 2rem; + .lg\:border-transparent { + border-color: transparent; } - .lg\:mt-9 { - margin-top: 2.25rem; + .lg\:border-current { + border-color: currentColor; } - .lg\:mr-9 { - margin-right: 2.25rem; + .lg\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .lg\:mb-9 { - margin-bottom: 2.25rem; + .lg\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .lg\:ml-9 { - margin-left: 2.25rem; + .lg\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .lg\:mt-10 { - margin-top: 2.5rem; + .lg\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .lg\:mr-10 { - margin-right: 2.5rem; + .lg\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .lg\:mb-10 { - margin-bottom: 2.5rem; + .lg\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .lg\:ml-10 { - margin-left: 2.5rem; + .lg\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .lg\:mt-11 { - margin-top: 2.75rem; + .lg\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .lg\:mr-11 { - margin-right: 2.75rem; + .lg\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .lg\:mb-11 { - margin-bottom: 2.75rem; + .lg\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .lg\:ml-11 { - margin-left: 2.75rem; + .lg\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .lg\:mt-12 { - margin-top: 3rem; + .lg\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .lg\:mr-12 { - margin-right: 3rem; + .lg\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .lg\:mb-12 { - margin-bottom: 3rem; + .lg\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .lg\:ml-12 { - margin-left: 3rem; + .lg\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .lg\:mt-14 { - margin-top: 3.5rem; + .lg\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .lg\:mr-14 { - margin-right: 3.5rem; + .lg\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .lg\:mb-14 { - margin-bottom: 3.5rem; + .lg\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .lg\:ml-14 { - margin-left: 3.5rem; + .lg\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .lg\:mt-16 { - margin-top: 4rem; + .lg\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .lg\:mr-16 { - margin-right: 4rem; + .lg\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .lg\:mb-16 { - margin-bottom: 4rem; + .lg\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .lg\:ml-16 { - margin-left: 4rem; + .lg\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .lg\:mt-20 { - margin-top: 5rem; + .lg\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .lg\:mr-20 { - margin-right: 5rem; + .lg\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .lg\:mb-20 { - margin-bottom: 5rem; + .lg\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .lg\:ml-20 { - margin-left: 5rem; + .lg\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .lg\:mt-24 { - margin-top: 6rem; + .lg\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .lg\:mr-24 { - margin-right: 6rem; + .lg\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .lg\:mb-24 { - margin-bottom: 6rem; + .lg\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .lg\:ml-24 { - margin-left: 6rem; + .lg\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .lg\:mt-28 { - margin-top: 7rem; + .lg\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .lg\:mr-28 { - margin-right: 7rem; + .lg\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .lg\:mb-28 { - margin-bottom: 7rem; + .lg\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .lg\:ml-28 { - margin-left: 7rem; + .lg\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .lg\:mt-32 { - margin-top: 8rem; + .lg\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .lg\:mr-32 { - margin-right: 8rem; + .lg\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .lg\:mb-32 { - margin-bottom: 8rem; + .lg\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .lg\:ml-32 { - margin-left: 8rem; + .lg\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .lg\:mt-36 { - margin-top: 9rem; + .lg\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .lg\:mr-36 { - margin-right: 9rem; + .lg\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .lg\:mb-36 { - margin-bottom: 9rem; + .lg\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .lg\:ml-36 { - margin-left: 9rem; + .lg\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .lg\:mt-40 { - margin-top: 10rem; + .lg\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .lg\:mr-40 { - margin-right: 10rem; + .lg\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .lg\:mb-40 { - margin-bottom: 10rem; + .lg\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .lg\:ml-40 { - margin-left: 10rem; + .lg\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .lg\:mt-44 { - margin-top: 11rem; + .lg\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .lg\:mr-44 { - margin-right: 11rem; + .lg\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .lg\:mb-44 { - margin-bottom: 11rem; + .lg\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .lg\:ml-44 { - margin-left: 11rem; + .lg\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .lg\:mt-48 { - margin-top: 12rem; + .lg\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .lg\:mr-48 { - margin-right: 12rem; + .lg\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .lg\:mb-48 { - margin-bottom: 12rem; + .lg\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .lg\:ml-48 { - margin-left: 12rem; + .lg\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .lg\:mt-52 { - margin-top: 13rem; + .lg\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .lg\:mr-52 { - margin-right: 13rem; + .lg\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .lg\:mb-52 { - margin-bottom: 13rem; + .lg\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .lg\:ml-52 { - margin-left: 13rem; + .lg\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .lg\:mt-56 { - margin-top: 14rem; + .lg\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .lg\:mr-56 { - margin-right: 14rem; + .lg\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .lg\:mb-56 { - margin-bottom: 14rem; + .lg\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .lg\:ml-56 { - margin-left: 14rem; + .lg\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .lg\:mt-60 { - margin-top: 15rem; + .lg\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .lg\:mr-60 { - margin-right: 15rem; + .lg\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .lg\:mb-60 { - margin-bottom: 15rem; + .lg\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .lg\:ml-60 { - margin-left: 15rem; + .lg\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .lg\:mt-64 { - margin-top: 16rem; + .lg\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .lg\:mr-64 { - margin-right: 16rem; + .lg\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .lg\:mb-64 { - margin-bottom: 16rem; + .lg\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .lg\:ml-64 { - margin-left: 16rem; + .lg\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .lg\:mt-72 { - margin-top: 18rem; + .lg\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .lg\:mr-72 { - margin-right: 18rem; + .lg\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .lg\:mb-72 { - margin-bottom: 18rem; + .lg\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .lg\:ml-72 { - margin-left: 18rem; + .lg\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .lg\:mt-80 { - margin-top: 20rem; + .lg\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + } + + .lg\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .lg\:mr-80 { - margin-right: 20rem; + .lg\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .lg\:mb-80 { - margin-bottom: 20rem; + .lg\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .lg\:ml-80 { - margin-left: 20rem; + .lg\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .lg\:mt-96 { - margin-top: 24rem; + .lg\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .lg\:mr-96 { - margin-right: 24rem; + .lg\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .lg\:mb-96 { - margin-bottom: 24rem; + .group:hover .lg\:group-hover\:border-transparent { + border-color: transparent; } - .lg\:ml-96 { - margin-left: 24rem; + .group:hover .lg\:group-hover\:border-current { + border-color: currentColor; } - .lg\:mt-auto { - margin-top: auto; + .group:hover .lg\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .lg\:mr-auto { - margin-right: auto; + .group:hover .lg\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .lg\:mb-auto { - margin-bottom: auto; + .group:hover .lg\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .lg\:ml-auto { - margin-left: auto; + .group:hover .lg\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .lg\:mt-px { - margin-top: 1px; + .group:hover .lg\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .lg\:mr-px { - margin-right: 1px; + .group:hover .lg\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .lg\:mb-px { - margin-bottom: 1px; + .group:hover .lg\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .lg\:ml-px { - margin-left: 1px; + .group:hover .lg\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .lg\:mt-0\.5 { - margin-top: 0.125rem; + .group:hover .lg\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .lg\:mr-0\.5 { - margin-right: 0.125rem; + .group:hover .lg\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .lg\:mb-0\.5 { - margin-bottom: 0.125rem; + .group:hover .lg\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .lg\:ml-0\.5 { - margin-left: 0.125rem; + .group:hover .lg\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .lg\:mt-1\.5 { - margin-top: 0.375rem; + .group:hover .lg\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .lg\:mr-1\.5 { - margin-right: 0.375rem; + .group:hover .lg\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .lg\:mb-1\.5 { - margin-bottom: 0.375rem; + .group:hover .lg\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .lg\:ml-1\.5 { - margin-left: 0.375rem; + .group:hover .lg\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .lg\:mt-2\.5 { - margin-top: 0.625rem; + .group:hover .lg\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .lg\:mr-2\.5 { - margin-right: 0.625rem; + .group:hover .lg\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .lg\:mb-2\.5 { - margin-bottom: 0.625rem; + .group:hover .lg\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .lg\:ml-2\.5 { - margin-left: 0.625rem; + .group:hover .lg\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .lg\:mt-3\.5 { - margin-top: 0.875rem; + .group:hover .lg\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .lg\:mr-3\.5 { - margin-right: 0.875rem; + .group:hover .lg\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .lg\:mb-3\.5 { - margin-bottom: 0.875rem; + .group:hover .lg\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .lg\:ml-3\.5 { - margin-left: 0.875rem; + .group:hover .lg\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .lg\:-mt-0 { - margin-top: 0px; + .group:hover .lg\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .lg\:-mr-0 { - margin-right: 0px; + .group:hover .lg\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .lg\:-mb-0 { - margin-bottom: 0px; + .group:hover .lg\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .lg\:-ml-0 { - margin-left: 0px; + .group:hover .lg\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .lg\:-mt-1 { - margin-top: -0.25rem; + .group:hover .lg\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .lg\:-mr-1 { - margin-right: -0.25rem; + .group:hover .lg\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .lg\:-mb-1 { - margin-bottom: -0.25rem; + .group:hover .lg\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .lg\:-ml-1 { - margin-left: -0.25rem; + .group:hover .lg\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .lg\:-mt-2 { - margin-top: -0.5rem; + .group:hover .lg\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .lg\:-mr-2 { - margin-right: -0.5rem; + .group:hover .lg\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .lg\:-mb-2 { - margin-bottom: -0.5rem; + .group:hover .lg\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .lg\:-ml-2 { - margin-left: -0.5rem; + .group:hover .lg\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .lg\:-mt-3 { - margin-top: -0.75rem; + .group:hover .lg\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .lg\:-mr-3 { - margin-right: -0.75rem; + .group:hover .lg\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .lg\:-mb-3 { - margin-bottom: -0.75rem; + .group:hover .lg\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .lg\:-ml-3 { - margin-left: -0.75rem; + .group:hover .lg\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .lg\:-mt-4 { - margin-top: -1rem; + .group:hover .lg\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .lg\:-mr-4 { - margin-right: -1rem; + .group:hover .lg\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .lg\:-mb-4 { - margin-bottom: -1rem; + .group:hover .lg\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .lg\:-ml-4 { - margin-left: -1rem; + .group:hover .lg\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .lg\:-mt-5 { - margin-top: -1.25rem; + .group:hover .lg\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .lg\:-mr-5 { - margin-right: -1.25rem; + .group:hover .lg\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .lg\:-mb-5 { - margin-bottom: -1.25rem; + .group:hover .lg\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .lg\:-ml-5 { - margin-left: -1.25rem; + .group:hover .lg\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .lg\:-mt-6 { - margin-top: -1.5rem; + .group:hover .lg\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .lg\:-mr-6 { - margin-right: -1.5rem; + .group:hover .lg\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .lg\:-mb-6 { - margin-bottom: -1.5rem; + .group:hover .lg\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .lg\:-ml-6 { - margin-left: -1.5rem; + .group:hover .lg\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .lg\:-mt-7 { - margin-top: -1.75rem; + .group:hover .lg\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .lg\:-mr-7 { - margin-right: -1.75rem; + .group:hover .lg\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .lg\:-mb-7 { - margin-bottom: -1.75rem; + .group:hover .lg\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .lg\:-ml-7 { - margin-left: -1.75rem; + .group:hover .lg\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .lg\:-mt-8 { - margin-top: -2rem; + .group:hover .lg\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .lg\:-mr-8 { - margin-right: -2rem; + .group:hover .lg\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .lg\:-mb-8 { - margin-bottom: -2rem; + .group:hover .lg\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .lg\:-ml-8 { - margin-left: -2rem; + .group:hover .lg\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .lg\:-mt-9 { - margin-top: -2.25rem; + .group:hover .lg\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .lg\:-mr-9 { - margin-right: -2.25rem; + .group:hover .lg\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .lg\:-mb-9 { - margin-bottom: -2.25rem; + .group:hover .lg\:group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .lg\:-ml-9 { - margin-left: -2.25rem; + .group:hover .lg\:group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .lg\:-mt-10 { - margin-top: -2.5rem; + .group:hover .lg\:group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .lg\:-mr-10 { - margin-right: -2.5rem; + .group:hover .lg\:group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .lg\:-mb-10 { - margin-bottom: -2.5rem; + .group:hover .lg\:group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .lg\:-ml-10 { - margin-left: -2.5rem; + .group:hover .lg\:group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .lg\:-mt-11 { - margin-top: -2.75rem; + .group:hover .lg\:group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .lg\:-mr-11 { - margin-right: -2.75rem; + .group:hover .lg\:group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .lg\:-mb-11 { - margin-bottom: -2.75rem; + .group:hover .lg\:group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .lg\:-ml-11 { - margin-left: -2.75rem; + .group:hover .lg\:group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .lg\:-mt-12 { - margin-top: -3rem; + .group:hover .lg\:group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .lg\:-mr-12 { - margin-right: -3rem; + .group:hover .lg\:group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .lg\:-mb-12 { - margin-bottom: -3rem; + .group:hover .lg\:group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .lg\:-ml-12 { - margin-left: -3rem; + .group:hover .lg\:group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .lg\:-mt-14 { - margin-top: -3.5rem; + .group:hover .lg\:group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .lg\:-mr-14 { - margin-right: -3.5rem; + .group:hover .lg\:group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .lg\:-mb-14 { - margin-bottom: -3.5rem; + .group:hover .lg\:group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .lg\:-ml-14 { - margin-left: -3.5rem; + .group:hover .lg\:group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .lg\:-mt-16 { - margin-top: -4rem; + .group:hover .lg\:group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .lg\:-mr-16 { - margin-right: -4rem; + .group:hover .lg\:group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .lg\:-mb-16 { - margin-bottom: -4rem; + .lg\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .lg\:-ml-16 { - margin-left: -4rem; + .lg\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .lg\:-mt-20 { - margin-top: -5rem; + .lg\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .lg\:-mr-20 { - margin-right: -5rem; + .lg\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .lg\:-mb-20 { - margin-bottom: -5rem; + .lg\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .lg\:-ml-20 { - margin-left: -5rem; + .lg\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .lg\:-mt-24 { - margin-top: -6rem; + .lg\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .lg\:-mr-24 { - margin-right: -6rem; + .lg\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .lg\:-mb-24 { - margin-bottom: -6rem; + .lg\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .lg\:-ml-24 { - margin-left: -6rem; + .lg\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .lg\:-mt-28 { - margin-top: -7rem; + .lg\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .lg\:-mr-28 { - margin-right: -7rem; + .lg\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .lg\:-mb-28 { - margin-bottom: -7rem; + .lg\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .lg\:-ml-28 { - margin-left: -7rem; + .lg\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .lg\:-mt-32 { - margin-top: -8rem; + .lg\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .lg\:-mr-32 { - margin-right: -8rem; + .lg\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .lg\:-mb-32 { - margin-bottom: -8rem; + .lg\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .lg\:-ml-32 { - margin-left: -8rem; + .lg\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .lg\:-mt-36 { - margin-top: -9rem; + .lg\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .lg\:-mr-36 { - margin-right: -9rem; + .lg\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .lg\:-mb-36 { - margin-bottom: -9rem; + .lg\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .lg\:-ml-36 { - margin-left: -9rem; + .lg\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .lg\:-mt-40 { - margin-top: -10rem; + .lg\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .lg\:-mr-40 { - margin-right: -10rem; + .lg\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .lg\:-mb-40 { - margin-bottom: -10rem; + .lg\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .lg\:-ml-40 { - margin-left: -10rem; + .lg\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .lg\:-mt-44 { - margin-top: -11rem; + .lg\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .lg\:-mr-44 { - margin-right: -11rem; + .lg\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .lg\:-mb-44 { - margin-bottom: -11rem; + .lg\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .lg\:-ml-44 { - margin-left: -11rem; + .lg\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .lg\:-mt-48 { - margin-top: -12rem; + .lg\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .lg\:-mr-48 { - margin-right: -12rem; + .lg\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .lg\:-mb-48 { - margin-bottom: -12rem; + .lg\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .lg\:-ml-48 { - margin-left: -12rem; + .lg\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .lg\:-mt-52 { - margin-top: -13rem; + .lg\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .lg\:-mr-52 { - margin-right: -13rem; + .lg\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .lg\:-mb-52 { - margin-bottom: -13rem; + .lg\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .lg\:-ml-52 { - margin-left: -13rem; + .lg\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .lg\:-mt-56 { - margin-top: -14rem; + .lg\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .lg\:-mr-56 { - margin-right: -14rem; + .lg\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .lg\:-mb-56 { - margin-bottom: -14rem; + .lg\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .lg\:-ml-56 { - margin-left: -14rem; + .lg\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .lg\:-mt-60 { - margin-top: -15rem; + .lg\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .lg\:-mr-60 { - margin-right: -15rem; + .lg\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .lg\:-mb-60 { - margin-bottom: -15rem; + .lg\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .lg\:-ml-60 { - margin-left: -15rem; + .lg\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .lg\:-mt-64 { - margin-top: -16rem; + .lg\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .lg\:-mr-64 { - margin-right: -16rem; + .lg\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .lg\:-mb-64 { - margin-bottom: -16rem; + .lg\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .lg\:-ml-64 { - margin-left: -16rem; + .lg\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .lg\:-mt-72 { - margin-top: -18rem; + .lg\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .lg\:-mr-72 { - margin-right: -18rem; + .lg\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .lg\:-mb-72 { - margin-bottom: -18rem; + .lg\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .lg\:-ml-72 { - margin-left: -18rem; + .lg\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .lg\:-mt-80 { - margin-top: -20rem; + .lg\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .lg\:-mr-80 { - margin-right: -20rem; + .lg\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .lg\:-mb-80 { - margin-bottom: -20rem; + .lg\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .lg\:-ml-80 { - margin-left: -20rem; + .lg\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .lg\:-mt-96 { - margin-top: -24rem; + .lg\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .lg\:-mr-96 { - margin-right: -24rem; + .lg\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .lg\:-mb-96 { - margin-bottom: -24rem; + .lg\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .lg\:-ml-96 { - margin-left: -24rem; + .lg\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .lg\:-mt-px { - margin-top: -1px; + .lg\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .lg\:-mr-px { - margin-right: -1px; + .lg\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .lg\:-mb-px { - margin-bottom: -1px; + .lg\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .lg\:-ml-px { - margin-left: -1px; + .lg\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .lg\:-mt-0\.5 { - margin-top: -0.125rem; + .lg\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .lg\:-mr-0\.5 { - margin-right: -0.125rem; + .lg\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .lg\:-mb-0\.5 { - margin-bottom: -0.125rem; + .lg\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .lg\:-ml-0\.5 { - margin-left: -0.125rem; + .lg\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .lg\:-mt-1\.5 { - margin-top: -0.375rem; + .lg\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .lg\:-mr-1\.5 { - margin-right: -0.375rem; + .lg\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .lg\:-mb-1\.5 { - margin-bottom: -0.375rem; + .lg\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .lg\:-ml-1\.5 { - margin-left: -0.375rem; + .lg\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .lg\:-mt-2\.5 { - margin-top: -0.625rem; + .lg\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .lg\:-mr-2\.5 { - margin-right: -0.625rem; + .lg\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .lg\:-mb-2\.5 { - margin-bottom: -0.625rem; + .lg\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .lg\:-ml-2\.5 { - margin-left: -0.625rem; + .lg\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .lg\:-mt-3\.5 { - margin-top: -0.875rem; + .lg\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .lg\:-mr-3\.5 { - margin-right: -0.875rem; + .lg\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .lg\:-mb-3\.5 { - margin-bottom: -0.875rem; + .lg\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .lg\:-ml-3\.5 { - margin-left: -0.875rem; + .lg\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .lg\:max-h-0 { - max-height: 0px; + .lg\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .lg\:max-h-1 { - max-height: 0.25rem; + .lg\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .lg\:max-h-2 { - max-height: 0.5rem; + .lg\:hover\:border-transparent:hover { + border-color: transparent; } - .lg\:max-h-3 { - max-height: 0.75rem; + .lg\:hover\:border-current:hover { + border-color: currentColor; } - .lg\:max-h-4 { - max-height: 1rem; + .lg\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .lg\:max-h-5 { - max-height: 1.25rem; + .lg\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .lg\:max-h-6 { - max-height: 1.5rem; + .lg\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .lg\:max-h-7 { - max-height: 1.75rem; + .lg\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .lg\:max-h-8 { - max-height: 2rem; + .lg\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .lg\:max-h-9 { - max-height: 2.25rem; + .lg\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .lg\:max-h-10 { - max-height: 2.5rem; + .lg\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .lg\:max-h-11 { - max-height: 2.75rem; + .lg\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .lg\:max-h-12 { - max-height: 3rem; + .lg\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .lg\:max-h-14 { - max-height: 3.5rem; + .lg\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .lg\:max-h-16 { - max-height: 4rem; + .lg\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .lg\:max-h-20 { - max-height: 5rem; + .lg\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .lg\:max-h-24 { - max-height: 6rem; + .lg\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .lg\:max-h-28 { - max-height: 7rem; + .lg\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .lg\:max-h-32 { - max-height: 8rem; + .lg\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .lg\:max-h-36 { - max-height: 9rem; + .lg\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .lg\:max-h-40 { - max-height: 10rem; + .lg\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .lg\:max-h-44 { - max-height: 11rem; + .lg\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .lg\:max-h-48 { - max-height: 12rem; + .lg\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .lg\:max-h-52 { - max-height: 13rem; + .lg\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .lg\:max-h-56 { - max-height: 14rem; + .lg\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .lg\:max-h-60 { - max-height: 15rem; + .lg\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .lg\:max-h-64 { - max-height: 16rem; + .lg\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .lg\:max-h-72 { - max-height: 18rem; + .lg\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .lg\:max-h-80 { - max-height: 20rem; + .lg\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .lg\:max-h-96 { - max-height: 24rem; + .lg\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .lg\:max-h-px { - max-height: 1px; + .lg\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .lg\:max-h-0\.5 { - max-height: 0.125rem; + .lg\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .lg\:max-h-1\.5 { - max-height: 0.375rem; + .lg\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .lg\:max-h-2\.5 { - max-height: 0.625rem; + .lg\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .lg\:max-h-3\.5 { - max-height: 0.875rem; + .lg\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .lg\:max-h-full { - max-height: 100%; + .lg\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .lg\:max-h-screen { - max-height: 100vh; + .lg\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .lg\:max-w-0 { - max-width: 0rem; + .lg\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .lg\:max-w-none { - max-width: none; + .lg\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .lg\:max-w-xs { - max-width: 20rem; + .lg\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .lg\:max-w-sm { - max-width: 24rem; + .lg\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .lg\:max-w-md { - max-width: 28rem; + .lg\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .lg\:max-w-lg { - max-width: 32rem; + .lg\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .lg\:max-w-xl { - max-width: 36rem; + .lg\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .lg\:max-w-2xl { - max-width: 42rem; + .lg\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .lg\:max-w-3xl { - max-width: 48rem; + .lg\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .lg\:max-w-4xl { - max-width: 56rem; + .lg\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .lg\:max-w-5xl { - max-width: 64rem; + .lg\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .lg\:max-w-6xl { - max-width: 72rem; + .lg\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .lg\:max-w-7xl { - max-width: 80rem; + .lg\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .lg\:max-w-full { - max-width: 100%; + .lg\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .lg\:max-w-min { - max-width: min-content; + .lg\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .lg\:max-w-max { - max-width: max-content; + .lg\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .lg\:max-w-prose { - max-width: 65ch; + .lg\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .lg\:max-w-screen-sm { - max-width: 640px; + .lg\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .lg\:max-w-screen-md { - max-width: 768px; + .lg\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .lg\:max-w-screen-lg { - max-width: 1024px; + .lg\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .lg\:max-w-screen-xl { - max-width: 1280px; + .lg\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .lg\:max-w-screen-2xl { - max-width: 1536px; + .lg\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .lg\:min-h-0 { - min-height: 0px; + .lg\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .lg\:min-h-full { - min-height: 100%; + .lg\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .lg\:min-h-screen { - min-height: 100vh; + .lg\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .lg\:min-w-0 { - min-width: 0px; + .lg\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .lg\:min-w-full { - min-width: 100%; + .lg\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .lg\:min-w-min { - min-width: min-content; + .lg\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .lg\:min-w-max { - min-width: max-content; + .lg\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .lg\:object-contain { - object-fit: contain; + .lg\:hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .lg\:object-cover { - object-fit: cover; + .lg\:hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .lg\:object-fill { - object-fit: fill; + .lg\:hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .lg\:object-none { - object-fit: none; + .lg\:hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .lg\:object-scale-down { - object-fit: scale-down; + .lg\:hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .lg\:object-bottom { - object-position: bottom; + .lg\:hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .lg\:object-center { - object-position: center; + .lg\:hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .lg\:object-left { - object-position: left; + .lg\:hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .lg\:object-left-bottom { - object-position: left bottom; + .lg\:hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .lg\:object-left-top { - object-position: left top; + .lg\:hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .lg\:object-right { - object-position: right; + .lg\:hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .lg\:object-right-bottom { - object-position: right bottom; + .lg\:hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .lg\:object-right-top { - object-position: right top; + .lg\:hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .lg\:object-top { - object-position: top; + .lg\:hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .lg\:opacity-0 { - opacity: 0; + .lg\:hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .lg\:opacity-5 { - opacity: 0.05; + .lg\:hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .lg\:opacity-10 { - opacity: 0.1; + .lg\:hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .lg\:opacity-20 { - opacity: 0.2; + .lg\:hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .lg\:opacity-25 { - opacity: 0.25; + .lg\:hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .lg\:opacity-30 { - opacity: 0.3; + .lg\:hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .lg\:opacity-40 { - opacity: 0.4; + .lg\:focus\:border-transparent:focus { + border-color: transparent; } - .lg\:opacity-50 { - opacity: 0.5; + .lg\:focus\:border-current:focus { + border-color: currentColor; } - .lg\:opacity-60 { - opacity: 0.6; + .lg\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .lg\:opacity-70 { - opacity: 0.7; + .lg\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .lg\:opacity-75 { - opacity: 0.75; + .lg\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .lg\:opacity-80 { - opacity: 0.8; + .lg\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .lg\:opacity-90 { - opacity: 0.9; + .lg\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .lg\:opacity-95 { - opacity: 0.95; + .lg\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .lg\:opacity-100 { - opacity: 1; + .lg\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-0 { - opacity: 0; + .lg\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-5 { - opacity: 0.05; + .lg\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-10 { - opacity: 0.1; + .lg\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-20 { - opacity: 0.2; + .lg\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-25 { - opacity: 0.25; + .lg\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-30 { - opacity: 0.3; + .lg\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-40 { - opacity: 0.4; + .lg\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-50 { - opacity: 0.5; + .lg\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-60 { - opacity: 0.6; + .lg\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-70 { - opacity: 0.7; + .lg\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-75 { - opacity: 0.75; + .lg\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-80 { - opacity: 0.8; + .lg\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-90 { - opacity: 0.9; + .lg\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-95 { - opacity: 0.95; + .lg\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-100 { - opacity: 1; + .lg\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-0:focus-within { - opacity: 0; + .lg\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .lg\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .lg\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .lg\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .lg\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .lg\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .lg\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .lg\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .lg\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .lg\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .lg\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .lg\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .lg\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .lg\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-100:focus-within { - opacity: 1; + .lg\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .lg\:hover\:opacity-0:hover { - opacity: 0; + .lg\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .lg\:hover\:opacity-5:hover { - opacity: 0.05; + .lg\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .lg\:hover\:opacity-10:hover { - opacity: 0.1; + .lg\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .lg\:hover\:opacity-20:hover { - opacity: 0.2; + .lg\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .lg\:hover\:opacity-25:hover { - opacity: 0.25; + .lg\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .lg\:hover\:opacity-30:hover { - opacity: 0.3; + .lg\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .lg\:hover\:opacity-40:hover { - opacity: 0.4; + .lg\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .lg\:hover\:opacity-50:hover { - opacity: 0.5; + .lg\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .lg\:hover\:opacity-60:hover { - opacity: 0.6; + .lg\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .lg\:hover\:opacity-70:hover { - opacity: 0.7; + .lg\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .lg\:hover\:opacity-75:hover { - opacity: 0.75; + .lg\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .lg\:hover\:opacity-80:hover { - opacity: 0.8; + .lg\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .lg\:hover\:opacity-90:hover { - opacity: 0.9; + .lg\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .lg\:hover\:opacity-95:hover { - opacity: 0.95; + .lg\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .lg\:hover\:opacity-100:hover { - opacity: 1; + .lg\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .lg\:focus\:opacity-0:focus { - opacity: 0; + .lg\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .lg\:focus\:opacity-5:focus { - opacity: 0.05; + .lg\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .lg\:focus\:opacity-10:focus { - opacity: 0.1; + .lg\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .lg\:focus\:opacity-20:focus { - opacity: 0.2; + .lg\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .lg\:focus\:opacity-25:focus { - opacity: 0.25; + .lg\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .lg\:focus\:opacity-30:focus { - opacity: 0.3; + .lg\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .lg\:focus\:opacity-40:focus { - opacity: 0.4; + .lg\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .lg\:focus\:opacity-50:focus { - opacity: 0.5; + .lg\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .lg\:focus\:opacity-60:focus { - opacity: 0.6; + .lg\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .lg\:focus\:opacity-70:focus { - opacity: 0.7; + .lg\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .lg\:focus\:opacity-75:focus { - opacity: 0.75; + .lg\:focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .lg\:focus\:opacity-80:focus { - opacity: 0.8; + .lg\:focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .lg\:focus\:opacity-90:focus { - opacity: 0.9; + .lg\:focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .lg\:focus\:opacity-95:focus { - opacity: 0.95; + .lg\:focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .lg\:focus\:opacity-100:focus { - opacity: 1; + .lg\:focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .lg\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .lg\:focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .lg\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .lg\:focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .lg\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .lg\:focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .lg\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .lg\:focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .lg\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .lg\:focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .lg\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .lg\:focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .lg\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .lg\:focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .lg\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .lg\:focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .lg\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .lg\:focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .lg\:overflow-auto { - overflow: auto; + .lg\:focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .lg\:overflow-hidden { - overflow: hidden; + .lg\:focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .lg\:overflow-visible { - overflow: visible; + .lg\:focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .lg\:overflow-scroll { - overflow: scroll; + .lg\:focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .lg\:overflow-x-auto { - overflow-x: auto; + .lg\:focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .lg\:overflow-y-auto { - overflow-y: auto; + .lg\:focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .lg\:overflow-x-hidden { - overflow-x: hidden; + .lg\:border-opacity-0 { + --tw-border-opacity: 0; } - .lg\:overflow-y-hidden { - overflow-y: hidden; + .lg\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .lg\:overflow-x-visible { - overflow-x: visible; + .lg\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .lg\:overflow-y-visible { - overflow-y: visible; + .lg\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .lg\:overflow-x-scroll { - overflow-x: scroll; + .lg\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .lg\:overflow-y-scroll { - overflow-y: scroll; + .lg\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .lg\:overscroll-auto { - overscroll-behavior: auto; + .lg\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .lg\:overscroll-contain { - overscroll-behavior: contain; + .lg\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .lg\:overscroll-none { - overscroll-behavior: none; + .lg\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .lg\:overscroll-y-auto { - overscroll-behavior-y: auto; + .lg\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .lg\:overscroll-y-contain { - overscroll-behavior-y: contain; + .lg\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .lg\:overscroll-y-none { - overscroll-behavior-y: none; + .lg\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .lg\:overscroll-x-auto { - overscroll-behavior-x: auto; + .lg\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .lg\:overscroll-x-contain { - overscroll-behavior-x: contain; + .lg\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .lg\:overscroll-x-none { - overscroll-behavior-x: none; + .lg\:border-opacity-100 { + --tw-border-opacity: 1; } - .lg\:p-0 { - padding: 0px; + .group:hover .lg\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } - .lg\:p-1 { - padding: 0.25rem; + .group:hover .lg\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .lg\:p-2 { - padding: 0.5rem; + .group:hover .lg\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .lg\:p-3 { - padding: 0.75rem; + .group:hover .lg\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .lg\:p-4 { - padding: 1rem; + .group:hover .lg\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .lg\:p-5 { - padding: 1.25rem; + .group:hover .lg\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .lg\:p-6 { - padding: 1.5rem; + .group:hover .lg\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .lg\:p-7 { - padding: 1.75rem; + .group:hover .lg\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .lg\:p-8 { - padding: 2rem; + .group:hover .lg\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .lg\:p-9 { - padding: 2.25rem; + .group:hover .lg\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .lg\:p-10 { - padding: 2.5rem; + .group:hover .lg\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .lg\:p-11 { - padding: 2.75rem; + .group:hover .lg\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .lg\:p-12 { - padding: 3rem; + .group:hover .lg\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .lg\:p-14 { - padding: 3.5rem; + .group:hover .lg\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .lg\:p-16 { - padding: 4rem; + .group:hover .lg\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } - .lg\:p-20 { - padding: 5rem; + .lg\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } - .lg\:p-24 { - padding: 6rem; + .lg\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } - .lg\:p-28 { - padding: 7rem; + .lg\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } - .lg\:p-32 { - padding: 8rem; + .lg\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } - .lg\:p-36 { - padding: 9rem; + .lg\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } - .lg\:p-40 { - padding: 10rem; + .lg\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } - .lg\:p-44 { - padding: 11rem; + .lg\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } - .lg\:p-48 { - padding: 12rem; + .lg\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } - .lg\:p-52 { - padding: 13rem; + .lg\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } - .lg\:p-56 { - padding: 14rem; + .lg\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } - .lg\:p-60 { - padding: 15rem; + .lg\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } - .lg\:p-64 { - padding: 16rem; + .lg\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } - .lg\:p-72 { - padding: 18rem; + .lg\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } - .lg\:p-80 { - padding: 20rem; + .lg\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } - .lg\:p-96 { - padding: 24rem; + .lg\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } - .lg\:p-px { - padding: 1px; + .lg\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } - .lg\:p-0\.5 { - padding: 0.125rem; + .lg\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } - .lg\:p-1\.5 { - padding: 0.375rem; + .lg\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } - .lg\:p-2\.5 { - padding: 0.625rem; + .lg\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } - .lg\:p-3\.5 { - padding: 0.875rem; + .lg\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } - .lg\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .lg\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } - .lg\:px-0 { - padding-left: 0px; - padding-right: 0px; + .lg\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } - .lg\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .lg\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } - .lg\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .lg\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } - .lg\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .lg\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } - .lg\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .lg\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } - .lg\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .lg\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } - .lg\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .lg\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } - .lg\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .lg\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } - .lg\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .lg\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } - .lg\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .lg\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } - .lg\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .lg\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } - .lg\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .lg\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } - .lg\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .lg\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } - .lg\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .lg\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } - .lg\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .lg\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } - .lg\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .lg\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } - .lg\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .lg\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } - .lg\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .lg\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } - .lg\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .lg\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } - .lg\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .lg\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } - .lg\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .lg\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } - .lg\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .lg\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } - .lg\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .lg\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } - .lg\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .lg\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } - .lg\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .lg\:bg-transparent { + background-color: transparent; } - .lg\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .lg\:bg-current { + background-color: currentColor; } - .lg\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .lg\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .lg\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .lg\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .lg\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .lg\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .lg\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .lg\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .lg\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .lg\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .lg\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .lg\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .lg\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .lg\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .lg\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .lg\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .lg\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .lg\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .lg\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .lg\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .lg\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .lg\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .lg\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .lg\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .lg\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .lg\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .lg\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .lg\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .lg\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .lg\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .lg\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .lg\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .lg\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .lg\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .lg\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .lg\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .lg\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .lg\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .lg\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .lg\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .lg\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .lg\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .lg\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .lg\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .lg\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .lg\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .lg\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .lg\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .lg\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .lg\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .lg\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .lg\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .lg\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .lg\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .lg\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .lg\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .lg\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .lg\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .lg\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .lg\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .lg\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .lg\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .lg\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .lg\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .lg\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .lg\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .lg\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .lg\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .lg\:px-px { - padding-left: 1px; - padding-right: 1px; + .lg\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .lg\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .lg\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .lg\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .lg\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .lg\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .lg\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .lg\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .lg\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .lg\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .lg\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .lg\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .lg\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .lg\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .lg\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .lg\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .lg\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .lg\:pt-0 { - padding-top: 0px; + .lg\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .lg\:pr-0 { - padding-right: 0px; + .lg\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .lg\:pb-0 { - padding-bottom: 0px; + .lg\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .lg\:pl-0 { - padding-left: 0px; + .lg\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .lg\:pt-1 { - padding-top: 0.25rem; + .lg\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .lg\:pr-1 { - padding-right: 0.25rem; + .lg\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .lg\:pb-1 { - padding-bottom: 0.25rem; + .lg\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .lg\:pl-1 { - padding-left: 0.25rem; + .lg\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .lg\:pt-2 { - padding-top: 0.5rem; + .lg\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .lg\:pr-2 { - padding-right: 0.5rem; + .lg\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .lg\:pb-2 { - padding-bottom: 0.5rem; + .lg\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .lg\:pl-2 { - padding-left: 0.5rem; + .lg\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .lg\:pt-3 { - padding-top: 0.75rem; + .lg\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .lg\:pr-3 { - padding-right: 0.75rem; + .lg\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .lg\:pb-3 { - padding-bottom: 0.75rem; + .lg\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .lg\:pl-3 { - padding-left: 0.75rem; + .lg\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .lg\:pt-4 { - padding-top: 1rem; + .lg\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .lg\:pr-4 { - padding-right: 1rem; + .lg\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .lg\:pb-4 { - padding-bottom: 1rem; + .lg\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .lg\:pl-4 { - padding-left: 1rem; + .lg\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .lg\:pt-5 { - padding-top: 1.25rem; + .lg\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .lg\:pr-5 { - padding-right: 1.25rem; + .lg\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .lg\:pb-5 { - padding-bottom: 1.25rem; + .lg\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .lg\:pl-5 { - padding-left: 1.25rem; + .lg\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .lg\:pt-6 { - padding-top: 1.5rem; + .lg\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .lg\:pr-6 { - padding-right: 1.5rem; + .lg\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .lg\:pb-6 { - padding-bottom: 1.5rem; + .lg\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .lg\:pl-6 { - padding-left: 1.5rem; + .lg\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .lg\:pt-7 { - padding-top: 1.75rem; + .lg\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .lg\:pr-7 { - padding-right: 1.75rem; + .lg\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .lg\:pb-7 { - padding-bottom: 1.75rem; + .lg\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .lg\:pl-7 { - padding-left: 1.75rem; + .lg\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .lg\:pt-8 { - padding-top: 2rem; + .lg\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .lg\:pr-8 { - padding-right: 2rem; + .lg\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .lg\:pb-8 { - padding-bottom: 2rem; + .lg\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .lg\:pl-8 { - padding-left: 2rem; + .lg\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .lg\:pt-9 { - padding-top: 2.25rem; + .lg\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .lg\:pr-9 { - padding-right: 2.25rem; + .lg\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .lg\:pb-9 { - padding-bottom: 2.25rem; + .lg\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .lg\:pl-9 { - padding-left: 2.25rem; + .group:hover .lg\:group-hover\:bg-transparent { + background-color: transparent; } - .lg\:pt-10 { - padding-top: 2.5rem; + .group:hover .lg\:group-hover\:bg-current { + background-color: currentColor; } - .lg\:pr-10 { - padding-right: 2.5rem; + .group:hover .lg\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .lg\:pb-10 { - padding-bottom: 2.5rem; + .group:hover .lg\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .lg\:pl-10 { - padding-left: 2.5rem; + .group:hover .lg\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .lg\:pt-11 { - padding-top: 2.75rem; + .group:hover .lg\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .lg\:pr-11 { - padding-right: 2.75rem; + .group:hover .lg\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .lg\:pb-11 { - padding-bottom: 2.75rem; + .group:hover .lg\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .lg\:pl-11 { - padding-left: 2.75rem; + .group:hover .lg\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .lg\:pt-12 { - padding-top: 3rem; + .group:hover .lg\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .lg\:pr-12 { - padding-right: 3rem; + .group:hover .lg\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .lg\:pb-12 { - padding-bottom: 3rem; + .group:hover .lg\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .lg\:pl-12 { - padding-left: 3rem; + .group:hover .lg\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .lg\:pt-14 { - padding-top: 3.5rem; + .group:hover .lg\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .lg\:pr-14 { - padding-right: 3.5rem; + .group:hover .lg\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .lg\:pb-14 { - padding-bottom: 3.5rem; + .group:hover .lg\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .lg\:pl-14 { - padding-left: 3.5rem; + .group:hover .lg\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .lg\:pt-16 { - padding-top: 4rem; + .group:hover .lg\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .lg\:pr-16 { - padding-right: 4rem; + .group:hover .lg\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .lg\:pb-16 { - padding-bottom: 4rem; + .group:hover .lg\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .lg\:pl-16 { - padding-left: 4rem; + .group:hover .lg\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .lg\:pt-20 { - padding-top: 5rem; + .group:hover .lg\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .lg\:pr-20 { - padding-right: 5rem; + .group:hover .lg\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .lg\:pb-20 { - padding-bottom: 5rem; + .group:hover .lg\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .lg\:pl-20 { - padding-left: 5rem; + .group:hover .lg\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .lg\:pt-24 { - padding-top: 6rem; + .group:hover .lg\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .lg\:pr-24 { - padding-right: 6rem; + .group:hover .lg\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .lg\:pb-24 { - padding-bottom: 6rem; + .group:hover .lg\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .lg\:pl-24 { - padding-left: 6rem; + .group:hover .lg\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .lg\:pt-28 { - padding-top: 7rem; + .group:hover .lg\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .lg\:pr-28 { - padding-right: 7rem; + .group:hover .lg\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .lg\:pb-28 { - padding-bottom: 7rem; + .group:hover .lg\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .lg\:pl-28 { - padding-left: 7rem; + .group:hover .lg\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .lg\:pt-32 { - padding-top: 8rem; + .group:hover .lg\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .lg\:pr-32 { - padding-right: 8rem; + .group:hover .lg\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .lg\:pb-32 { - padding-bottom: 8rem; + .group:hover .lg\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .lg\:pl-32 { - padding-left: 8rem; + .group:hover .lg\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .lg\:pt-36 { - padding-top: 9rem; + .group:hover .lg\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .lg\:pr-36 { - padding-right: 9rem; + .group:hover .lg\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .lg\:pb-36 { - padding-bottom: 9rem; + .group:hover .lg\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .lg\:pl-36 { - padding-left: 9rem; + .group:hover .lg\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .lg\:pt-40 { - padding-top: 10rem; + .group:hover .lg\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .lg\:pr-40 { - padding-right: 10rem; + .group:hover .lg\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .lg\:pb-40 { - padding-bottom: 10rem; + .group:hover .lg\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .lg\:pl-40 { - padding-left: 10rem; + .group:hover .lg\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .lg\:pt-44 { - padding-top: 11rem; + .group:hover .lg\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .lg\:pr-44 { - padding-right: 11rem; + .group:hover .lg\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .lg\:pb-44 { - padding-bottom: 11rem; + .group:hover .lg\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .lg\:pl-44 { - padding-left: 11rem; + .group:hover .lg\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .lg\:pt-48 { - padding-top: 12rem; + .group:hover .lg\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .lg\:pr-48 { - padding-right: 12rem; + .group:hover .lg\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .lg\:pb-48 { - padding-bottom: 12rem; + .group:hover .lg\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .lg\:pl-48 { - padding-left: 12rem; + .group:hover .lg\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .lg\:pt-52 { - padding-top: 13rem; + .group:hover .lg\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .lg\:pr-52 { - padding-right: 13rem; + .group:hover .lg\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .lg\:pb-52 { - padding-bottom: 13rem; + .group:hover .lg\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .lg\:pl-52 { - padding-left: 13rem; + .group:hover .lg\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .lg\:pt-56 { - padding-top: 14rem; + .group:hover .lg\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .lg\:pr-56 { - padding-right: 14rem; + .group:hover .lg\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .lg\:pb-56 { - padding-bottom: 14rem; + .group:hover .lg\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .lg\:pl-56 { - padding-left: 14rem; + .group:hover .lg\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .lg\:pt-60 { - padding-top: 15rem; + .group:hover .lg\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .lg\:pr-60 { - padding-right: 15rem; + .group:hover .lg\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .lg\:pb-60 { - padding-bottom: 15rem; + .group:hover .lg\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .lg\:pl-60 { - padding-left: 15rem; + .group:hover .lg\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .lg\:pt-64 { - padding-top: 16rem; + .group:hover .lg\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .lg\:pr-64 { - padding-right: 16rem; + .group:hover .lg\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .lg\:pb-64 { - padding-bottom: 16rem; + .group:hover .lg\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .lg\:pl-64 { - padding-left: 16rem; + .group:hover .lg\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .lg\:pt-72 { - padding-top: 18rem; + .group:hover .lg\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .lg\:pr-72 { - padding-right: 18rem; + .group:hover .lg\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .lg\:pb-72 { - padding-bottom: 18rem; + .group:hover .lg\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .lg\:pl-72 { - padding-left: 18rem; + .group:hover .lg\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .lg\:pt-80 { - padding-top: 20rem; + .group:hover .lg\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .lg\:pr-80 { - padding-right: 20rem; + .group:hover .lg\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .lg\:pb-80 { - padding-bottom: 20rem; + .group:hover .lg\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .lg\:pl-80 { - padding-left: 20rem; + .group:hover .lg\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .lg\:pt-96 { - padding-top: 24rem; + .group:hover .lg\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .lg\:pr-96 { - padding-right: 24rem; + .group:hover .lg\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .lg\:pb-96 { - padding-bottom: 24rem; + .group:hover .lg\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .lg\:pl-96 { - padding-left: 24rem; + .group:hover .lg\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .lg\:pt-px { - padding-top: 1px; + .group:hover .lg\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .lg\:pr-px { - padding-right: 1px; + .group:hover .lg\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .lg\:pb-px { - padding-bottom: 1px; + .group:hover .lg\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .lg\:pl-px { - padding-left: 1px; + .lg\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .lg\:pt-0\.5 { - padding-top: 0.125rem; + .lg\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .lg\:pr-0\.5 { - padding-right: 0.125rem; + .lg\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .lg\:pb-0\.5 { - padding-bottom: 0.125rem; + .lg\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .lg\:pl-0\.5 { - padding-left: 0.125rem; + .lg\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .lg\:pt-1\.5 { - padding-top: 0.375rem; + .lg\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .lg\:pr-1\.5 { - padding-right: 0.375rem; + .lg\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .lg\:pb-1\.5 { - padding-bottom: 0.375rem; + .lg\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .lg\:pl-1\.5 { - padding-left: 0.375rem; + .lg\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .lg\:pt-2\.5 { - padding-top: 0.625rem; + .lg\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .lg\:pr-2\.5 { - padding-right: 0.625rem; + .lg\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .lg\:pb-2\.5 { - padding-bottom: 0.625rem; + .lg\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .lg\:pl-2\.5 { - padding-left: 0.625rem; + .lg\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .lg\:pt-3\.5 { - padding-top: 0.875rem; + .lg\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .lg\:pr-3\.5 { - padding-right: 0.875rem; + .lg\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .lg\:pb-3\.5 { - padding-bottom: 0.875rem; + .lg\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .lg\:pl-3\.5 { - padding-left: 0.875rem; + .lg\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .lg\:placeholder-transparent::placeholder { - color: transparent; + .lg\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .lg\:placeholder-current::placeholder { - color: currentColor; + .lg\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .lg\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .lg\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .lg\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .lg\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .lg\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .lg\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .lg\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .lg\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .lg\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .lg\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .lg\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .lg\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .lg\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .lg\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .lg\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .lg\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .lg\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .lg\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .lg\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .lg\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .lg\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .lg\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-transparent:hover { + background-color: transparent; } - .lg\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-current:hover { + background-color: currentColor; } - .lg\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .lg\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .lg\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-transparent:focus { + background-color: transparent; } - .lg\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-current:focus { + background-color: currentColor; } - .lg\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; + .lg\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; + .lg\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; + .lg\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; + .lg\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; + .lg\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; + .lg\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; + .lg\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; + .lg\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; + .lg\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; + .lg\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; + .lg\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; + .lg\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; + .lg\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; + .lg\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; + .lg\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; + .lg\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; + .lg\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; + .lg\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; + .lg\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; + .lg\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; + .lg\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; + .lg\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; + .lg\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; + .lg\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; + .lg\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; + .lg\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; + .lg\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; + .lg\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; + .lg\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; + .lg\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .lg\:pointer-events-none { - pointer-events: none; + .lg\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .lg\:pointer-events-auto { - pointer-events: auto; + .lg\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .lg\:static { - position: static; + .lg\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .lg\:fixed { - position: fixed; + .lg\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .lg\:absolute { - position: absolute; + .lg\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .lg\:relative { - position: relative; + .lg\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .lg\:sticky { - position: sticky; + .lg\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .lg\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .lg\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .lg\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .lg\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .lg\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .lg\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .lg\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .lg\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .lg\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .lg\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .lg\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .lg\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .lg\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .lg\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .lg\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .lg\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .lg\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .lg\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .lg\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .lg\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .lg\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .lg\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .lg\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .lg\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .lg\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .lg\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .lg\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .lg\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .lg\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .lg\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .lg\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .lg\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .lg\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .lg\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .lg\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .lg\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .lg\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .lg\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .lg\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .lg\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .lg\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .lg\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .lg\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .lg\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .lg\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .lg\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .lg\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .lg\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .lg\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .lg\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .lg\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .lg\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .lg\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .lg\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .lg\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .lg\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .lg\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .lg\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .lg\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .lg\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .lg\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .lg\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .lg\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .lg\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .lg\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .lg\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .lg\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .lg\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .lg\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .lg\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .lg\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .lg\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .lg\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .lg\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .lg\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .lg\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .lg\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .lg\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .lg\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .lg\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .lg\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .lg\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .lg\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .lg\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .lg\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .lg\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .lg\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .lg\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .lg\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .lg\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .lg\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .group:hover .lg\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .lg\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .group:hover .lg\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .lg\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .group:hover .lg\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .lg\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .group:hover .lg\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .lg\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .group:hover .lg\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .lg\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .group:hover .lg\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .lg\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .group:hover .lg\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .lg\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .group:hover .lg\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .lg\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .group:hover .lg\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .lg\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .group:hover .lg\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .lg\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .group:hover .lg\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .lg\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .group:hover .lg\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .lg\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .group:hover .lg\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .lg\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .group:hover .lg\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .lg\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .group:hover .lg\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .lg\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .lg\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } - .lg\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .lg\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } - .lg\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .lg\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } - .lg\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .lg\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } - .lg\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .lg\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } - .lg\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .lg\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } - .lg\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .lg\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } - .lg\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .lg\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } - .lg\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .lg\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } - .lg\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .lg\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } - .lg\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .lg\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } - .lg\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .lg\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } - .lg\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .lg\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } - .lg\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .lg\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } - .lg\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .lg\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } - .lg\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .lg\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } - .lg\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .lg\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } - .lg\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .lg\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } - .lg\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .lg\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } - .lg\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .lg\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } - .lg\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .lg\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } - .lg\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .lg\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } - .lg\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .lg\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } - .lg\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .lg\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } - .lg\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .lg\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } - .lg\:inset-y-0 { - top: 0px; - bottom: 0px; + .lg\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } - .lg\:inset-x-0 { - right: 0px; - left: 0px; + .lg\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } - .lg\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .lg\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } - .lg\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .lg\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } - .lg\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .lg\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } - .lg\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .lg\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } - .lg\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .lg\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } - .lg\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .lg\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } - .lg\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .lg\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } - .lg\:inset-x-4 { - right: 1rem; - left: 1rem; + .lg\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } - .lg\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .lg\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } - .lg\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .lg\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } - .lg\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .lg\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } - .lg\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .lg\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } - .lg\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .lg\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } - .lg\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .lg\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } - .lg\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .lg\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } - .lg\:inset-x-8 { - right: 2rem; - left: 2rem; + .lg\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } - .lg\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .lg\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } - .lg\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .lg\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } - .lg\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .lg\:bg-none { + background-image: none; } - .lg\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .lg\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .lg\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .lg\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .lg\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .lg\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .lg\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .lg\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .lg\:inset-x-12 { - right: 3rem; - left: 3rem; + .lg\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .lg\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .lg\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .lg\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .lg\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .lg\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .lg\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .lg\:inset-x-16 { - right: 4rem; - left: 4rem; + .lg\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .lg\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:inset-x-20 { - right: 5rem; - left: 5rem; + .lg\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .lg\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:inset-x-24 { - right: 6rem; - left: 6rem; + .lg\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .lg\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:inset-x-28 { - right: 7rem; - left: 7rem; + .lg\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .lg\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:inset-x-32 { - right: 8rem; - left: 8rem; + .lg\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .lg\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:inset-x-36 { - right: 9rem; - left: 9rem; + .lg\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .lg\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:inset-x-40 { - right: 10rem; - left: 10rem; + .lg\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .lg\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:inset-x-44 { - right: 11rem; - left: 11rem; + .lg\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .lg\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:inset-x-48 { - right: 12rem; - left: 12rem; + .lg\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .lg\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:inset-x-52 { - right: 13rem; - left: 13rem; + .lg\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .lg\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:inset-x-56 { - right: 14rem; - left: 14rem; + .lg\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .lg\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:inset-x-60 { - right: 15rem; - left: 15rem; + .lg\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .lg\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:inset-x-64 { - right: 16rem; - left: 16rem; + .lg\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .lg\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:inset-x-72 { - right: 18rem; - left: 18rem; + .lg\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .lg\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:inset-x-80 { - right: 20rem; - left: 20rem; + .lg\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .lg\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:inset-x-96 { - right: 24rem; - left: 24rem; + .lg\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:inset-y-auto { - top: auto; - bottom: auto; + .lg\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:inset-x-auto { - right: auto; - left: auto; + .lg\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:inset-y-px { - top: 1px; - bottom: 1px; + .lg\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:inset-x-px { - right: 1px; - left: 1px; + .lg\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .lg\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .lg\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .lg\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .lg\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .lg\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .lg\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .lg\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .lg\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:-inset-y-0 { - top: 0px; - bottom: 0px; + .lg\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:-inset-x-0 { - right: 0px; - left: 0px; + .lg\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .lg\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .lg\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .lg\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .lg\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .lg\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .lg\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .lg\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:-inset-x-4 { - right: -1rem; - left: -1rem; + .lg\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .lg\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .lg\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .lg\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .lg\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .lg\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .lg\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .lg\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:-inset-x-8 { - right: -2rem; - left: -2rem; + .lg\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .lg\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .lg\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .lg\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .lg\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .lg\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .lg\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .lg\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:-inset-x-12 { - right: -3rem; - left: -3rem; + .lg\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .lg\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .lg\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .lg\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:-inset-x-16 { - right: -4rem; - left: -4rem; + .lg\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .lg\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:-inset-x-20 { - right: -5rem; - left: -5rem; + .lg\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .lg\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:-inset-x-24 { - right: -6rem; - left: -6rem; + .lg\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .lg\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:-inset-x-28 { - right: -7rem; - left: -7rem; + .lg\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .lg\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:-inset-x-32 { - right: -8rem; - left: -8rem; + .lg\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .lg\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:-inset-x-36 { - right: -9rem; - left: -9rem; + .lg\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .lg\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:-inset-x-40 { - right: -10rem; - left: -10rem; + .lg\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .lg\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-inset-x-44 { - right: -11rem; - left: -11rem; + .lg\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .lg\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-inset-x-48 { - right: -12rem; - left: -12rem; + .lg\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .lg\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:-inset-x-52 { - right: -13rem; - left: -13rem; + .lg\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .lg\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:-inset-x-56 { - right: -14rem; - left: -14rem; + .lg\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .lg\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:-inset-x-60 { - right: -15rem; - left: -15rem; + .lg\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .lg\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:-inset-x-64 { - right: -16rem; - left: -16rem; + .lg\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .lg\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:-inset-x-72 { - right: -18rem; - left: -18rem; + .lg\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .lg\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:-inset-x-80 { - right: -20rem; - left: -20rem; + .lg\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .lg\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:-inset-x-96 { - right: -24rem; - left: -24rem; + .lg\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:-inset-y-px { - top: -1px; - bottom: -1px; + .lg\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:-inset-x-px { - right: -1px; - left: -1px; + .lg\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .lg\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .lg\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .lg\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .lg\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .lg\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .lg\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .lg\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .lg\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .lg\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:inset-x-1\/2 { - right: 50%; - left: 50%; + .lg\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .lg\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .lg\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .lg\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .lg\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .lg\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:inset-x-1\/4 { - right: 25%; - left: 25%; + .lg\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .lg\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:inset-x-2\/4 { - right: 50%; - left: 50%; + .lg\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .lg\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:inset-x-3\/4 { - right: 75%; - left: 75%; + .lg\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:inset-y-full { - top: 100%; - bottom: 100%; + .lg\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:inset-x-full { - right: 100%; - left: 100%; + .lg\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .lg\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .lg\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .lg\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .lg\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .lg\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .lg\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .lg\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .lg\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .lg\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .lg\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .lg\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .lg\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:-inset-y-full { - top: -100%; - bottom: -100%; + .lg\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:-inset-x-full { - right: -100%; - left: -100%; + .lg\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:top-0 { - top: 0px; + .lg\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:right-0 { - right: 0px; + .lg\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:bottom-0 { - bottom: 0px; + .lg\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:left-0 { - left: 0px; + .lg\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:top-1 { - top: 0.25rem; + .lg\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:right-1 { - right: 0.25rem; + .lg\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:bottom-1 { - bottom: 0.25rem; + .lg\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:left-1 { - left: 0.25rem; + .lg\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:top-2 { - top: 0.5rem; + .lg\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:right-2 { - right: 0.5rem; + .lg\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:bottom-2 { - bottom: 0.5rem; + .lg\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:left-2 { - left: 0.5rem; + .lg\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:top-3 { - top: 0.75rem; + .lg\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:right-3 { - right: 0.75rem; + .lg\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:bottom-3 { - bottom: 0.75rem; + .lg\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:left-3 { - left: 0.75rem; + .lg\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:top-4 { - top: 1rem; + .lg\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:right-4 { - right: 1rem; + .lg\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:bottom-4 { - bottom: 1rem; + .lg\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:left-4 { - left: 1rem; + .lg\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:top-5 { - top: 1.25rem; + .lg\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:right-5 { - right: 1.25rem; + .lg\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:bottom-5 { - bottom: 1.25rem; + .lg\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:left-5 { - left: 1.25rem; + .lg\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:top-6 { - top: 1.5rem; + .lg\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:right-6 { - right: 1.5rem; + .lg\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:bottom-6 { - bottom: 1.5rem; + .lg\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:left-6 { - left: 1.5rem; + .lg\:to-transparent { + --tw-gradient-to: transparent; } - .lg\:top-7 { - top: 1.75rem; + .lg\:to-current { + --tw-gradient-to: currentColor; } - .lg\:right-7 { - right: 1.75rem; + .lg\:to-black { + --tw-gradient-to: #000; } - .lg\:bottom-7 { - bottom: 1.75rem; + .lg\:to-white { + --tw-gradient-to: #fff; } - .lg\:left-7 { - left: 1.75rem; + .lg\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .lg\:top-8 { - top: 2rem; + .lg\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .lg\:right-8 { - right: 2rem; + .lg\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .lg\:bottom-8 { - bottom: 2rem; + .lg\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .lg\:left-8 { - left: 2rem; + .lg\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .lg\:top-9 { - top: 2.25rem; + .lg\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .lg\:right-9 { - right: 2.25rem; + .lg\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .lg\:bottom-9 { - bottom: 2.25rem; + .lg\:to-gray-700 { + --tw-gradient-to: #374151; } - .lg\:left-9 { - left: 2.25rem; + .lg\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .lg\:top-10 { - top: 2.5rem; + .lg\:to-gray-900 { + --tw-gradient-to: #111827; } - .lg\:right-10 { - right: 2.5rem; + .lg\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .lg\:bottom-10 { - bottom: 2.5rem; + .lg\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .lg\:left-10 { - left: 2.5rem; + .lg\:to-red-200 { + --tw-gradient-to: #fecaca; } - .lg\:top-11 { - top: 2.75rem; + .lg\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .lg\:right-11 { - right: 2.75rem; + .lg\:to-red-400 { + --tw-gradient-to: #f87171; } - .lg\:bottom-11 { - bottom: 2.75rem; + .lg\:to-red-500 { + --tw-gradient-to: #ef4444; } - .lg\:left-11 { - left: 2.75rem; + .lg\:to-red-600 { + --tw-gradient-to: #dc2626; } - .lg\:top-12 { - top: 3rem; + .lg\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .lg\:right-12 { - right: 3rem; + .lg\:to-red-800 { + --tw-gradient-to: #991b1b; } - .lg\:bottom-12 { - bottom: 3rem; + .lg\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .lg\:left-12 { - left: 3rem; + .lg\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .lg\:top-14 { - top: 3.5rem; + .lg\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .lg\:right-14 { - right: 3.5rem; + .lg\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .lg\:bottom-14 { - bottom: 3.5rem; + .lg\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .lg\:left-14 { - left: 3.5rem; + .lg\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .lg\:top-16 { - top: 4rem; + .lg\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .lg\:right-16 { - right: 4rem; + .lg\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .lg\:bottom-16 { - bottom: 4rem; + .lg\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .lg\:left-16 { - left: 4rem; + .lg\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .lg\:top-20 { - top: 5rem; + .lg\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .lg\:right-20 { - right: 5rem; + .lg\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .lg\:bottom-20 { - bottom: 5rem; + .lg\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .lg\:left-20 { - left: 5rem; + .lg\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .lg\:top-24 { - top: 6rem; + .lg\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .lg\:right-24 { - right: 6rem; + .lg\:to-green-400 { + --tw-gradient-to: #34d399; } - .lg\:bottom-24 { - bottom: 6rem; + .lg\:to-green-500 { + --tw-gradient-to: #10b981; } - .lg\:left-24 { - left: 6rem; + .lg\:to-green-600 { + --tw-gradient-to: #059669; } - .lg\:top-28 { - top: 7rem; + .lg\:to-green-700 { + --tw-gradient-to: #047857; } - .lg\:right-28 { - right: 7rem; + .lg\:to-green-800 { + --tw-gradient-to: #065f46; } - .lg\:bottom-28 { - bottom: 7rem; + .lg\:to-green-900 { + --tw-gradient-to: #064e3b; } - .lg\:left-28 { - left: 7rem; + .lg\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .lg\:top-32 { - top: 8rem; + .lg\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .lg\:right-32 { - right: 8rem; + .lg\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .lg\:bottom-32 { - bottom: 8rem; + .lg\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .lg\:left-32 { - left: 8rem; + .lg\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .lg\:top-36 { - top: 9rem; + .lg\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .lg\:right-36 { - right: 9rem; + .lg\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .lg\:bottom-36 { - bottom: 9rem; + .lg\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .lg\:left-36 { - left: 9rem; + .lg\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .lg\:top-40 { - top: 10rem; + .lg\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .lg\:right-40 { - right: 10rem; + .lg\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .lg\:bottom-40 { - bottom: 10rem; + .lg\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .lg\:left-40 { - left: 10rem; + .lg\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .lg\:top-44 { - top: 11rem; + .lg\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .lg\:right-44 { - right: 11rem; + .lg\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .lg\:bottom-44 { - bottom: 11rem; + .lg\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .lg\:left-44 { - left: 11rem; + .lg\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .lg\:top-48 { - top: 12rem; + .lg\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .lg\:right-48 { - right: 12rem; + .lg\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .lg\:bottom-48 { - bottom: 12rem; + .lg\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .lg\:left-48 { - left: 12rem; + .lg\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .lg\:top-52 { - top: 13rem; + .lg\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .lg\:right-52 { - right: 13rem; + .lg\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .lg\:bottom-52 { - bottom: 13rem; + .lg\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .lg\:left-52 { - left: 13rem; + .lg\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .lg\:top-56 { - top: 14rem; + .lg\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .lg\:right-56 { - right: 14rem; + .lg\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .lg\:bottom-56 { - bottom: 14rem; + .lg\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .lg\:left-56 { - left: 14rem; + .lg\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .lg\:top-60 { - top: 15rem; + .lg\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .lg\:right-60 { - right: 15rem; + .lg\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .lg\:bottom-60 { - bottom: 15rem; + .lg\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .lg\:left-60 { - left: 15rem; + .lg\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .lg\:top-64 { - top: 16rem; + .lg\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .lg\:right-64 { - right: 16rem; + .lg\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .lg\:bottom-64 { - bottom: 16rem; + .lg\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .lg\:left-64 { - left: 16rem; + .lg\:to-pink-600 { + --tw-gradient-to: #db2777; } - .lg\:top-72 { - top: 18rem; + .lg\:to-pink-700 { + --tw-gradient-to: #be185d; } - .lg\:right-72 { - right: 18rem; + .lg\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .lg\:bottom-72 { - bottom: 18rem; + .lg\:to-pink-900 { + --tw-gradient-to: #831843; } - .lg\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .lg\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-top-14 { - top: -3.5rem; + .lg\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-right-14 { - right: -3.5rem; + .lg\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-bottom-14 { - bottom: -3.5rem; + .lg\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-left-14 { - left: -3.5rem; + .lg\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:-top-16 { - top: -4rem; + .lg\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:-right-16 { - right: -4rem; + .lg\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:-bottom-16 { - bottom: -4rem; + .lg\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:-left-16 { - left: -4rem; + .lg\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:-top-20 { - top: -5rem; + .lg\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:-right-20 { - right: -5rem; + .lg\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:-bottom-20 { - bottom: -5rem; + .lg\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:-left-20 { - left: -5rem; + .lg\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:-top-24 { - top: -6rem; + .lg\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:-right-24 { - right: -6rem; + .lg\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:-bottom-24 { - bottom: -6rem; + .lg\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:-left-24 { - left: -6rem; + .lg\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:-top-28 { - top: -7rem; + .lg\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:-right-28 { - right: -7rem; + .lg\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:-bottom-28 { - bottom: -7rem; + .lg\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:-left-28 { - left: -7rem; + .lg\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:-top-32 { - top: -8rem; + .lg\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:-right-32 { - right: -8rem; + .lg\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:-bottom-32 { - bottom: -8rem; + .lg\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:-left-32 { - left: -8rem; + .lg\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:-top-36 { - top: -9rem; + .lg\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:-right-36 { - right: -9rem; + .lg\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:-bottom-36 { - bottom: -9rem; + .lg\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:-left-36 { - left: -9rem; + .lg\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:-top-40 { - top: -10rem; + .lg\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:-right-40 { - right: -10rem; + .lg\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:-bottom-40 { - bottom: -10rem; + .lg\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:-left-40 { - left: -10rem; + .lg\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:-top-44 { - top: -11rem; + .lg\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:-right-44 { - right: -11rem; + .lg\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:-bottom-44 { - bottom: -11rem; + .lg\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:-left-44 { - left: -11rem; + .lg\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:-top-48 { - top: -12rem; + .lg\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:-right-48 { - right: -12rem; + .lg\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:-bottom-48 { - bottom: -12rem; + .lg\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:-left-48 { - left: -12rem; + .lg\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:-top-52 { - top: -13rem; + .lg\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:-right-52 { - right: -13rem; + .lg\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:-bottom-52 { - bottom: -13rem; + .lg\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:-left-52 { - left: -13rem; + .lg\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:-top-56 { - top: -14rem; + .lg\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:-right-56 { - right: -14rem; + .lg\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:-bottom-56 { - bottom: -14rem; + .lg\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:-left-56 { - left: -14rem; + .lg\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:-top-60 { - top: -15rem; + .lg\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:-right-60 { - right: -15rem; + .lg\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:-bottom-60 { - bottom: -15rem; + .lg\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:-left-60 { - left: -15rem; + .lg\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:-top-64 { - top: -16rem; + .lg\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:-right-64 { - right: -16rem; + .lg\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:-bottom-64 { - bottom: -16rem; + .lg\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:-left-64 { - left: -16rem; + .lg\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:-top-72 { - top: -18rem; + .lg\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:-right-72 { - right: -18rem; + .lg\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:-bottom-72 { - bottom: -18rem; + .lg\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:-left-72 { - left: -18rem; + .lg\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:-top-80 { - top: -20rem; + .lg\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:-right-80 { - right: -20rem; + .lg\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:-bottom-80 { - bottom: -20rem; + .lg\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:-left-80 { - left: -20rem; + .lg\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:-top-96 { - top: -24rem; + .lg\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:-right-96 { - right: -24rem; + .lg\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:-bottom-96 { - bottom: -24rem; + .lg\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:-left-96 { - left: -24rem; + .lg\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:-top-px { - top: -1px; + .lg\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:-right-px { - right: -1px; + .lg\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:-bottom-px { - bottom: -1px; + .lg\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:-left-px { - left: -1px; + .lg\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:-top-0\.5 { - top: -0.125rem; + .lg\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:-right-0\.5 { - right: -0.125rem; + .lg\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:-bottom-0\.5 { - bottom: -0.125rem; + .lg\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:-left-0\.5 { - left: -0.125rem; + .lg\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:-top-1\.5 { - top: -0.375rem; + .lg\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:-right-1\.5 { - right: -0.375rem; + .lg\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:-bottom-1\.5 { - bottom: -0.375rem; + .lg\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:-left-1\.5 { - left: -0.375rem; + .lg\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:-top-2\.5 { - top: -0.625rem; + .lg\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:-right-2\.5 { - right: -0.625rem; + .lg\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:-bottom-2\.5 { - bottom: -0.625rem; + .lg\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:-left-2\.5 { - left: -0.625rem; + .lg\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .lg\:-top-3\.5 { - top: -0.875rem; + .lg\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .lg\:-right-3\.5 { - right: -0.875rem; + .lg\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .lg\:-bottom-3\.5 { - bottom: -0.875rem; + .lg\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .lg\:-left-3\.5 { - left: -0.875rem; + .lg\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .lg\:top-1\/2 { - top: 50%; + .lg\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .lg\:right-1\/2 { - right: 50%; + .lg\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .lg\:bottom-1\/2 { - bottom: 50%; + .lg\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .lg\:left-1\/2 { - left: 50%; + .lg\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .lg\:top-1\/3 { - top: 33.333333%; + .lg\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .lg\:right-1\/3 { - right: 33.333333%; + .lg\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .lg\:bottom-1\/3 { - bottom: 33.333333%; + .lg\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .lg\:left-1\/3 { - left: 33.333333%; + .lg\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .lg\:top-2\/3 { - top: 66.666667%; + .lg\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .lg\:right-2\/3 { - right: 66.666667%; + .lg\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .lg\:bottom-2\/3 { - bottom: 66.666667%; + .lg\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .lg\:left-2\/3 { - left: 66.666667%; + .lg\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .lg\:top-1\/4 { - top: 25%; + .lg\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .lg\:right-1\/4 { - right: 25%; + .lg\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .lg\:bottom-1\/4 { - bottom: 25%; + .lg\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .lg\:left-1\/4 { - left: 25%; + .lg\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .lg\:top-2\/4 { - top: 50%; + .lg\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .lg\:right-2\/4 { - right: 50%; + .lg\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .lg\:bottom-2\/4 { - bottom: 50%; + .lg\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .lg\:left-2\/4 { - left: 50%; + .lg\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .lg\:top-3\/4 { - top: 75%; + .lg\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .lg\:right-3\/4 { - right: 75%; + .lg\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .lg\:bottom-3\/4 { - bottom: 75%; + .lg\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .lg\:left-3\/4 { - left: 75%; + .lg\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .lg\:top-full { - top: 100%; + .lg\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .lg\:right-full { - right: 100%; + .lg\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .lg\:bottom-full { - bottom: 100%; + .lg\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .lg\:left-full { - left: 100%; + .lg\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .lg\:-top-1\/2 { - top: -50%; + .lg\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .lg\:-right-1\/2 { - right: -50%; + .lg\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .lg\:-bottom-1\/2 { - bottom: -50%; + .lg\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .lg\:-left-1\/2 { - left: -50%; + .lg\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .lg\:-top-1\/3 { - top: -33.333333%; + .lg\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .lg\:-right-1\/3 { - right: -33.333333%; + .lg\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .lg\:-bottom-1\/3 { - bottom: -33.333333%; + .lg\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .lg\:-left-1\/3 { - left: -33.333333%; + .lg\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .lg\:-top-2\/3 { - top: -66.666667%; + .lg\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .lg\:-right-2\/3 { - right: -66.666667%; + .lg\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .lg\:-bottom-2\/3 { - bottom: -66.666667%; + .lg\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .lg\:-left-2\/3 { - left: -66.666667%; + .lg\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .lg\:-top-1\/4 { - top: -25%; + .lg\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .lg\:-right-1\/4 { - right: -25%; + .lg\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .lg\:-bottom-1\/4 { - bottom: -25%; + .lg\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .lg\:-left-1\/4 { - left: -25%; + .lg\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .lg\:-top-2\/4 { - top: -50%; + .lg\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .lg\:-right-2\/4 { - right: -50%; + .lg\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .lg\:-bottom-2\/4 { - bottom: -50%; + .lg\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .lg\:-left-2\/4 { - left: -50%; + .lg\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .lg\:-top-3\/4 { - top: -75%; + .lg\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .lg\:-right-3\/4 { - right: -75%; + .lg\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .lg\:-bottom-3\/4 { - bottom: -75%; + .lg\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .lg\:-left-3\/4 { - left: -75%; + .lg\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .lg\:-top-full { - top: -100%; + .lg\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .lg\:-right-full { - right: -100%; + .lg\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .lg\:-bottom-full { - bottom: -100%; + .lg\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .lg\:-left-full { - left: -100%; + .lg\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .lg\:resize-none { - resize: none; + .lg\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .lg\:resize-y { - resize: vertical; + .lg\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .lg\:resize-x { - resize: horizontal; + .lg\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .lg\:resize { - resize: both; + .lg\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .lg\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .lg\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .lg\: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); + .lg\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .lg\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .lg\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .lg\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .lg\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .lg\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .lg\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .lg\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .lg\:group-hover\: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); + .lg\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .lg\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .lg\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .lg\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .lg\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .lg\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .lg\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .lg\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .lg\:focus-within\:shadow-md:focus-within { - --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); + .lg\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .lg\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .lg\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .lg\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .lg\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .lg\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .lg\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .lg\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .lg\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .lg\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .lg\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .lg\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .lg\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .lg\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .lg\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .lg\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .lg\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .lg\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .lg\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .lg\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .lg\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .lg\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .lg\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .lg\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .lg\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .lg\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .lg\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .lg\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .lg\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .lg\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .lg\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .lg\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .lg\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .lg\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .lg\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .lg\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .lg\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .lg\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .lg\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .lg\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .lg\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .lg\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .lg\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .lg\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .lg\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .lg\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .lg\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .lg\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .lg\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .lg\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .lg\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .lg\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .lg\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .lg\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .lg\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .lg\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .lg\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .lg\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .lg\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .lg\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .lg\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .lg\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .lg\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .lg\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .lg\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .lg\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .lg\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .lg\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .lg\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .lg\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .lg\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .lg\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .lg\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .lg\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .lg\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .lg\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .lg\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .lg\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .lg\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .lg\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .lg\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .lg\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .lg\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .lg\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .lg\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .lg\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .lg\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .lg\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .lg\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .lg\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .lg\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .lg\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .lg\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .lg\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .lg\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .lg\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .lg\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .lg\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .lg\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .lg\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .lg\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .lg\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .lg\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .lg\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .lg\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .lg\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .lg\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .lg\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .lg\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .lg\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .lg\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .lg\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .lg\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .lg\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .lg\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .lg\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .lg\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .lg\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .lg\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .lg\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .lg\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .lg\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .lg\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .lg\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .lg\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .lg\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .lg\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .lg\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .lg\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .lg\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .lg\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .lg\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .lg\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .lg\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .lg\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .lg\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .lg\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .lg\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .lg\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .lg\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .lg\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .lg\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .lg\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .lg\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .lg\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .lg\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .lg\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .lg\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .lg\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .lg\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .lg\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .lg\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .lg\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .lg\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .lg\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .lg\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .lg\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .lg\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .lg\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .lg\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .lg\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .lg\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .lg\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .lg\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .lg\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .lg\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .lg\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .lg\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .lg\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .lg\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .lg\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .lg\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .lg\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .lg\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .lg\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .lg\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .lg\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .lg\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .lg\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .lg\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .lg\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .lg\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .lg\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .lg\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .lg\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .lg\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .lg\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .lg\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .lg\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .lg\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .lg\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .lg\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .lg\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .lg\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .lg\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .lg\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .lg\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .lg\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .lg\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .lg\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .lg\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .lg\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .lg\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .lg\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .lg\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .lg\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .lg\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .lg\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .lg\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .lg\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .lg\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .lg\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .lg\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .lg\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .lg\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .lg\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .lg\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .lg\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .lg\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .lg\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .lg\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .lg\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .lg\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .lg\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .lg\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .lg\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .lg\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .lg\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .lg\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .lg\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .lg\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .lg\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .lg\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .lg\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .lg\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .lg\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .lg\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .lg\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .lg\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .lg\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .lg\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .lg\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .lg\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .lg\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .lg\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .lg\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .lg\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .lg\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .lg\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .lg\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .lg\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .lg\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .lg\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .lg\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .lg\:decoration-slice { + box-decoration-break: slice; } - .lg\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .lg\:decoration-clone { + box-decoration-break: clone; } - .lg\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .lg\:bg-auto { + background-size: auto; } - .lg\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .lg\:bg-cover { + background-size: cover; } - .lg\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .lg\:bg-contain { + background-size: contain; } - .lg\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .lg\:bg-fixed { + background-attachment: fixed; } - .lg\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .lg\:bg-local { + background-attachment: local; } - .lg\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .lg\:bg-scroll { + background-attachment: scroll; } - .lg\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .lg\:bg-clip-border { + background-clip: border-box; } - .lg\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .lg\:bg-clip-padding { + background-clip: padding-box; } - .lg\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .lg\:bg-clip-content { + background-clip: content-box; } - .lg\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .lg\:bg-clip-text { + background-clip: text; } - .lg\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .lg\:bg-bottom { + background-position: bottom; } - .lg\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .lg\:bg-center { + background-position: center; } - .lg\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .lg\:bg-left { + background-position: left; } - .lg\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .lg\:bg-left-bottom { + background-position: left bottom; } - .lg\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .lg\:bg-left-top { + background-position: left top; } - .lg\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .lg\:bg-right { + background-position: right; } - .lg\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .lg\:bg-right-bottom { + background-position: right bottom; } - .lg\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .lg\:bg-right-top { + background-position: right top; } - .lg\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .lg\:bg-top { + background-position: top; } - .lg\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .lg\:bg-repeat { + background-repeat: repeat; } - .lg\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .lg\:bg-no-repeat { + background-repeat: no-repeat; } - .lg\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .lg\:bg-repeat-x { + background-repeat: repeat-x; } - .lg\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .lg\:bg-repeat-y { + background-repeat: repeat-y; } - .lg\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .lg\:bg-repeat-round { + background-repeat: round; } - .lg\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .lg\:bg-repeat-space { + background-repeat: space; } - .lg\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .lg\:bg-origin-border { + background-origin: border-box; } - .lg\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .lg\:bg-origin-padding { + background-origin: padding-box; } - .lg\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .lg\:bg-origin-content { + background-origin: content-box; } - .lg\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .lg\:fill-current { + fill: currentColor; } - .lg\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .lg\:stroke-current { + stroke: currentColor; } - .lg\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .lg\:stroke-0 { + stroke-width: 0; } - .lg\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .lg\:stroke-1 { + stroke-width: 1; } - .lg\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .lg\:stroke-2 { + stroke-width: 2; } - .lg\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .lg\:object-contain { + object-fit: contain; } - .lg\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .lg\:object-cover { + object-fit: cover; } - .lg\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .lg\:object-fill { + object-fit: fill; } - .lg\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .lg\:object-none { + object-fit: none; } - .lg\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .lg\:object-scale-down { + object-fit: scale-down; } - .lg\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .lg\:object-bottom { + object-position: bottom; } - .lg\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .lg\:object-center { + object-position: center; } - .lg\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .lg\:object-left { + object-position: left; } - .lg\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .lg\:object-left-bottom { + object-position: left bottom; } - .lg\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .lg\:object-left-top { + object-position: left top; } - .lg\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .lg\:object-right { + object-position: right; } - .lg\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .lg\:object-right-bottom { + object-position: right bottom; } - .lg\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .lg\:object-right-top { + object-position: right top; } - .lg\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .lg\:object-top { + object-position: top; } - .lg\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .lg\:p-0 { + padding: 0px; } - .lg\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .lg\:p-1 { + padding: 0.25rem; } - .lg\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .lg\:p-2 { + padding: 0.5rem; } - .lg\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .lg\:p-3 { + padding: 0.75rem; } - .lg\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .lg\:p-4 { + padding: 1rem; } - .lg\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .lg\:p-5 { + padding: 1.25rem; } - .lg\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .lg\:p-6 { + padding: 1.5rem; } - .lg\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .lg\:p-7 { + padding: 1.75rem; } - .lg\:ring-transparent { - --tw-ring-color: transparent; + .lg\:p-8 { + padding: 2rem; } - .lg\:ring-current { - --tw-ring-color: currentColor; + .lg\:p-9 { + padding: 2.25rem; } - .lg\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .lg\:p-10 { + padding: 2.5rem; } - .lg\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .lg\:p-11 { + padding: 2.75rem; } - .lg\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .lg\:p-12 { + padding: 3rem; } - .lg\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .lg\:p-14 { + padding: 3.5rem; } - .lg\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .lg\:p-16 { + padding: 4rem; } - .lg\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .lg\:p-20 { + padding: 5rem; } - .lg\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .lg\:p-24 { + padding: 6rem; } - .lg\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .lg\:p-28 { + padding: 7rem; } - .lg\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .lg\:p-32 { + padding: 8rem; } - .lg\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .lg\:p-36 { + padding: 9rem; } - .lg\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .lg\:p-40 { + padding: 10rem; } - .lg\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .lg\:p-44 { + padding: 11rem; } - .lg\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .lg\:p-48 { + padding: 12rem; } - .lg\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .lg\:p-52 { + padding: 13rem; } - .lg\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .lg\:p-56 { + padding: 14rem; } - .lg\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .lg\:p-60 { + padding: 15rem; } - .lg\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .lg\:p-64 { + padding: 16rem; } - .lg\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .lg\:p-72 { + padding: 18rem; } - .lg\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .lg\:p-80 { + padding: 20rem; } - .lg\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .lg\:p-96 { + padding: 24rem; } - .lg\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .lg\:p-px { + padding: 1px; } - .lg\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .lg\:p-0\.5 { + padding: 0.125rem; } - .lg\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .lg\:p-1\.5 { + padding: 0.375rem; } - .lg\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .lg\:p-2\.5 { + padding: 0.625rem; } - .lg\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .lg\:p-3\.5 { + padding: 0.875rem; } - .lg\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .lg\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .lg\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .lg\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .lg\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .lg\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .lg\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .lg\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .lg\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .lg\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .lg\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .lg\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .lg\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .lg\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .lg\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .lg\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .lg\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .lg\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .lg\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .lg\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .lg\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .lg\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .lg\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .lg\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .lg\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .lg\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .lg\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .lg\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .lg\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .lg\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .lg\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .lg\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .lg\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .lg\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .lg\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .lg\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .lg\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .lg\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .lg\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .lg\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .lg\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .lg\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .lg\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .lg\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .lg\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .lg\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .lg\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .lg\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .lg\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .lg\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .lg\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .lg\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .lg\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .lg\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .lg\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .lg\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .lg\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .lg\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .lg\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .lg\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .lg\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .lg\:px-px { + padding-left: 1px; + padding-right: 1px; } - .lg\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .lg\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .lg\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .lg\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .lg\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .lg\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .lg\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .lg\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .lg\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .lg\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .lg\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .lg\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .lg\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .lg\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .lg\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .lg\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .lg\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .lg\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .lg\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .lg\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .lg\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .lg\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .lg\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .lg\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .lg\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .lg\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .lg\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .lg\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .lg\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .lg\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .lg\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .lg\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .lg\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .lg\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .lg\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .lg\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .lg\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .lg\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .lg\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .lg\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .lg\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .lg\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .lg\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .lg\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .lg\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .lg\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .lg\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .lg\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .lg\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .lg\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .lg\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .lg\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .lg\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .lg\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .lg\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .lg\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .lg\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .lg\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .lg\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .lg\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .lg\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .lg\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .lg\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .lg\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .lg\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .lg\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .lg\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .lg\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .lg\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .lg\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .lg\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .lg\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .lg\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .lg\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .lg\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .lg\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .lg\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .lg\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .lg\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .lg\:pt-0 { + padding-top: 0px; } - .lg\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .lg\:pt-1 { + padding-top: 0.25rem; } - .lg\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .lg\:pt-2 { + padding-top: 0.5rem; } - .lg\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .lg\:pt-3 { + padding-top: 0.75rem; } - .lg\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .lg\:pt-4 { + padding-top: 1rem; } - .lg\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .lg\:pt-5 { + padding-top: 1.25rem; } - .lg\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .lg\:pt-6 { + padding-top: 1.5rem; } - .lg\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .lg\:pt-7 { + padding-top: 1.75rem; } - .lg\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .lg\:pt-8 { + padding-top: 2rem; } - .lg\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .lg\:pt-9 { + padding-top: 2.25rem; } - .lg\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .lg\:pt-10 { + padding-top: 2.5rem; } - .lg\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .lg\:pt-11 { + padding-top: 2.75rem; } - .lg\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .lg\:pt-12 { + padding-top: 3rem; } - .lg\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .lg\:pt-14 { + padding-top: 3.5rem; } - .lg\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .lg\:pt-16 { + padding-top: 4rem; } - .lg\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .lg\:pt-20 { + padding-top: 5rem; } - .lg\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .lg\:pt-24 { + padding-top: 6rem; } - .lg\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .lg\:pt-28 { + padding-top: 7rem; } - .lg\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .lg\:pt-32 { + padding-top: 8rem; } - .lg\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .lg\:pt-36 { + padding-top: 9rem; } - .lg\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .lg\:pt-40 { + padding-top: 10rem; } - .lg\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .lg\:pt-44 { + padding-top: 11rem; } - .lg\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .lg\:pt-48 { + padding-top: 12rem; } - .lg\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .lg\:pt-52 { + padding-top: 13rem; } - .lg\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .lg\:pt-56 { + padding-top: 14rem; } - .lg\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .lg\:pt-60 { + padding-top: 15rem; } - .lg\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .lg\:pt-64 { + padding-top: 16rem; } - .lg\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .lg\:pt-72 { + padding-top: 18rem; } - .lg\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .lg\:pt-80 { + padding-top: 20rem; } - .lg\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .lg\:pt-96 { + padding-top: 24rem; } - .lg\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .lg\:pt-px { + padding-top: 1px; } - .lg\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .lg\:pt-0\.5 { + padding-top: 0.125rem; } - .lg\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .lg\:pt-1\.5 { + padding-top: 0.375rem; } - .lg\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .lg\:pt-2\.5 { + padding-top: 0.625rem; } - .lg\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .lg\:pt-3\.5 { + padding-top: 0.875rem; } - .lg\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .lg\:pr-0 { + padding-right: 0px; } - .lg\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .lg\:pr-1 { + padding-right: 0.25rem; } - .lg\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .lg\:pr-2 { + padding-right: 0.5rem; } - .lg\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .lg\:pr-3 { + padding-right: 0.75rem; } - .lg\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .lg\:pr-4 { + padding-right: 1rem; } - .lg\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .lg\:pr-5 { + padding-right: 1.25rem; } - .lg\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .lg\:pr-6 { + padding-right: 1.5rem; } - .lg\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .lg\:pr-7 { + padding-right: 1.75rem; } - .lg\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .lg\:pr-8 { + padding-right: 2rem; } - .lg\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .lg\:pr-9 { + padding-right: 2.25rem; } - .lg\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .lg\:pr-10 { + padding-right: 2.5rem; } - .lg\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .lg\:pr-11 { + padding-right: 2.75rem; } - .lg\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .lg\:pr-12 { + padding-right: 3rem; } - .lg\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .lg\:pr-14 { + padding-right: 3.5rem; } - .lg\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .lg\:pr-16 { + padding-right: 4rem; } - .lg\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .lg\:pr-20 { + padding-right: 5rem; } - .lg\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .lg\:pr-24 { + padding-right: 6rem; } - .lg\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .lg\:pr-28 { + padding-right: 7rem; } - .lg\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .lg\:pr-32 { + padding-right: 8rem; } - .lg\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .lg\:pr-36 { + padding-right: 9rem; } - .lg\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .lg\:pr-40 { + padding-right: 10rem; } - .lg\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .lg\:pr-44 { + padding-right: 11rem; } - .lg\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .lg\:pr-48 { + padding-right: 12rem; } - .lg\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .lg\:pr-52 { + padding-right: 13rem; } - .lg\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .lg\:pr-56 { + padding-right: 14rem; } - .lg\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .lg\:pr-60 { + padding-right: 15rem; } - .lg\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .lg\:pr-64 { + padding-right: 16rem; } - .lg\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .lg\:pr-72 { + padding-right: 18rem; } - .lg\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .lg\:pr-80 { + padding-right: 20rem; } - .lg\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .lg\:pr-96 { + padding-right: 24rem; } - .lg\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .lg\:pr-px { + padding-right: 1px; } - .lg\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .lg\:pr-0\.5 { + padding-right: 0.125rem; } - .lg\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .lg\:pr-1\.5 { + padding-right: 0.375rem; } - .lg\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .lg\:pr-2\.5 { + padding-right: 0.625rem; } - .lg\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .lg\:pr-3\.5 { + padding-right: 0.875rem; } - .lg\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .lg\:pb-0 { + padding-bottom: 0px; } - .lg\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .lg\:pb-1 { + padding-bottom: 0.25rem; } - .lg\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .lg\:pb-2 { + padding-bottom: 0.5rem; } - .lg\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .lg\:pb-3 { + padding-bottom: 0.75rem; } - .lg\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .lg\:pb-4 { + padding-bottom: 1rem; } - .lg\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .lg\:pb-5 { + padding-bottom: 1.25rem; } - .lg\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .lg\:pb-6 { + padding-bottom: 1.5rem; } - .lg\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .lg\:pb-7 { + padding-bottom: 1.75rem; } - .lg\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .lg\:pb-8 { + padding-bottom: 2rem; } - .lg\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .lg\:pb-9 { + padding-bottom: 2.25rem; } - .lg\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .lg\:pb-10 { + padding-bottom: 2.5rem; } - .lg\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .lg\:pb-11 { + padding-bottom: 2.75rem; } - .lg\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .lg\:pb-12 { + padding-bottom: 3rem; } - .lg\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .lg\:pb-14 { + padding-bottom: 3.5rem; } - .lg\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .lg\:pb-16 { + padding-bottom: 4rem; } - .lg\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .lg\:pb-20 { + padding-bottom: 5rem; } - .lg\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .lg\:pb-24 { + padding-bottom: 6rem; } - .lg\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .lg\:pb-28 { + padding-bottom: 7rem; } - .lg\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .lg\:pb-32 { + padding-bottom: 8rem; } - .lg\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .lg\:pb-36 { + padding-bottom: 9rem; } - .lg\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .lg\:pb-40 { + padding-bottom: 10rem; } - .lg\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .lg\:pb-44 { + padding-bottom: 11rem; } - .lg\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .lg\:pb-48 { + padding-bottom: 12rem; } - .lg\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .lg\:pb-52 { + padding-bottom: 13rem; } - .lg\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .lg\:pb-56 { + padding-bottom: 14rem; } - .lg\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .lg\:pb-60 { + padding-bottom: 15rem; } - .lg\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .lg\:pb-64 { + padding-bottom: 16rem; } - .lg\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .lg\:pb-72 { + padding-bottom: 18rem; } - .lg\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .lg\:pb-80 { + padding-bottom: 20rem; } - .lg\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .lg\:pb-96 { + padding-bottom: 24rem; } - .lg\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .lg\:pb-px { + padding-bottom: 1px; } - .lg\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .lg\:pb-0\.5 { + padding-bottom: 0.125rem; } - .lg\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .lg\:pb-1\.5 { + padding-bottom: 0.375rem; } - .lg\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .lg\:pb-2\.5 { + padding-bottom: 0.625rem; } - .lg\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .lg\:pb-3\.5 { + padding-bottom: 0.875rem; } - .lg\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .lg\:pl-0 { + padding-left: 0px; } - .lg\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .lg\:pl-1 { + padding-left: 0.25rem; } - .lg\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .lg\:pl-2 { + padding-left: 0.5rem; } - .lg\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .lg\:pl-3 { + padding-left: 0.75rem; } - .lg\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .lg\:pl-4 { + padding-left: 1rem; } - .lg\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .lg\:pl-5 { + padding-left: 1.25rem; } - .lg\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .lg\:pl-6 { + padding-left: 1.5rem; } - .lg\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .lg\:pl-7 { + padding-left: 1.75rem; } - .lg\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .lg\:pl-8 { + padding-left: 2rem; } - .lg\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .lg\:pl-9 { + padding-left: 2.25rem; } - .lg\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .lg\:pl-10 { + padding-left: 2.5rem; } - .lg\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .lg\:pl-11 { + padding-left: 2.75rem; } - .lg\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .lg\:pl-12 { + padding-left: 3rem; } - .lg\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .lg\:pl-14 { + padding-left: 3.5rem; } - .lg\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .lg\:pl-16 { + padding-left: 4rem; } - .lg\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .lg\:pl-20 { + padding-left: 5rem; } - .lg\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .lg\:pl-24 { + padding-left: 6rem; } - .lg\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .lg\:pl-28 { + padding-left: 7rem; } - .lg\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .lg\:pl-32 { + padding-left: 8rem; } - .lg\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .lg\:pl-36 { + padding-left: 9rem; } - .lg\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .lg\:pl-40 { + padding-left: 10rem; } - .lg\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .lg\:pl-44 { + padding-left: 11rem; } - .lg\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .lg\:pl-48 { + padding-left: 12rem; } - .lg\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .lg\:pl-52 { + padding-left: 13rem; } - .lg\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .lg\:pl-56 { + padding-left: 14rem; } - .lg\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .lg\:pl-60 { + padding-left: 15rem; } - .lg\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .lg\:pl-64 { + padding-left: 16rem; } - .lg\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .lg\:pl-72 { + padding-left: 18rem; } - .lg\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .lg\:pl-80 { + padding-left: 20rem; } - .lg\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .lg\:pl-96 { + padding-left: 24rem; } - .lg\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .lg\:pl-px { + padding-left: 1px; } - .lg\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .lg\:pl-0\.5 { + padding-left: 0.125rem; } - .lg\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .lg\:pl-1\.5 { + padding-left: 0.375rem; } - .lg\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .lg\:pl-2\.5 { + padding-left: 0.625rem; } - .lg\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .lg\:pl-3\.5 { + padding-left: 0.875rem; } - .lg\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .lg\:text-left { + text-align: left; } - .lg\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .lg\:text-center { + text-align: center; } - .lg\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .lg\:text-right { + text-align: right; } - .lg\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .lg\:text-justify { + text-align: justify; } - .lg\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .lg\:align-baseline { + vertical-align: baseline; } - .lg\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .lg\:align-top { + vertical-align: top; } - .lg\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .lg\:align-middle { + vertical-align: middle; } - .lg\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .lg\:align-bottom { + vertical-align: bottom; } - .lg\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .lg\:align-text-top { + vertical-align: text-top; } - .lg\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .lg\:align-text-bottom { + vertical-align: text-bottom; } - .lg\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .lg\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .lg\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .lg\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .lg\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .lg\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .lg\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .lg\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .lg\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .lg\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .lg\:ring-opacity-0 { - --tw-ring-opacity: 0; + .lg\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .lg\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .lg\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .lg\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .lg\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .lg\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .lg\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .lg\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .lg\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .lg\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .lg\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .lg\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .lg\:text-5xl { + font-size: 3rem; + line-height: 1; } - .lg\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .lg\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .lg\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .lg\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .lg\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .lg\:text-8xl { + font-size: 6rem; + line-height: 1; } - .lg\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .lg\:text-9xl { + font-size: 8rem; + line-height: 1; } - .lg\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .lg\:font-thin { + font-weight: 100; } - .lg\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .lg\:font-extralight { + font-weight: 200; } - .lg\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .lg\:font-light { + font-weight: 300; } - .lg\:ring-opacity-100 { - --tw-ring-opacity: 1; + .lg\:font-normal { + font-weight: 400; } - .lg\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .lg\:font-medium { + font-weight: 500; } - .lg\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .lg\:font-semibold { + font-weight: 600; } - .lg\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .lg\:font-bold { + font-weight: 700; } - .lg\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .lg\:font-extrabold { + font-weight: 800; } - .lg\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .lg\:font-black { + font-weight: 900; } - .lg\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .lg\:uppercase { + text-transform: uppercase; } - .lg\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .lg\:lowercase { + text-transform: lowercase; } - .lg\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .lg\:capitalize { + text-transform: capitalize; } - .lg\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .lg\:normal-case { + text-transform: none; } - .lg\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .lg\:italic { + font-style: italic; } - .lg\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .lg\:not-italic { + font-style: normal; } - .lg\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .lg\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .lg\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .lg\:normal-nums { + font-variant-numeric: normal; } - .lg\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .lg\:ordinal { + --tw-ordinal: ordinal; } - .lg\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .lg\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .lg\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .lg\:lining-nums { + --tw-numeric-figure: lining-nums; } - .lg\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .lg\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .lg\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .lg\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .lg\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .lg\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .lg\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .lg\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .lg\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .lg\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .lg\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .lg\:leading-3 { + line-height: .75rem; } - .lg\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .lg\:leading-4 { + line-height: 1rem; } - .lg\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .lg\:leading-5 { + line-height: 1.25rem; } - .lg\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .lg\:leading-6 { + line-height: 1.5rem; } - .lg\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .lg\:leading-7 { + line-height: 1.75rem; } - .lg\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .lg\:leading-8 { + line-height: 2rem; } - .lg\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .lg\:leading-9 { + line-height: 2.25rem; } - .lg\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .lg\:leading-10 { + line-height: 2.5rem; } - .lg\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .lg\:leading-none { + line-height: 1; } - .lg\:fill-current { - fill: currentColor; + .lg\:leading-tight { + line-height: 1.25; } - .lg\:stroke-current { - stroke: currentColor; + .lg\:leading-snug { + line-height: 1.375; } - .lg\:stroke-0 { - stroke-width: 0; + .lg\:leading-normal { + line-height: 1.5; } - .lg\:stroke-1 { - stroke-width: 1; + .lg\:leading-relaxed { + line-height: 1.625; } - .lg\:stroke-2 { - stroke-width: 2; + .lg\:leading-loose { + line-height: 2; } - .lg\:table-auto { - table-layout: auto; + .lg\:tracking-tighter { + letter-spacing: -0.05em; } - .lg\:table-fixed { - table-layout: fixed; + .lg\:tracking-tight { + letter-spacing: -0.025em; } - .lg\:text-left { - text-align: left; + .lg\:tracking-normal { + letter-spacing: 0em; } - .lg\:text-center { - text-align: center; + .lg\:tracking-wide { + letter-spacing: 0.025em; } - .lg\:text-right { - text-align: right; + .lg\:tracking-wider { + letter-spacing: 0.05em; } - .lg\:text-justify { - text-align: justify; + .lg\:tracking-widest { + letter-spacing: 0.1em; } .lg\:text-transparent { @@ -112115,44 +112304,6 @@ video { --tw-text-opacity: 1; } - .lg\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .lg\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .lg\:overflow-clip { - text-overflow: clip; - } - - .lg\:italic { - font-style: italic; - } - - .lg\:not-italic { - font-style: normal; - } - - .lg\:uppercase { - text-transform: uppercase; - } - - .lg\:lowercase { - text-transform: lowercase; - } - - .lg\:capitalize { - text-transform: capitalize; - } - - .lg\:normal-case { - text-transform: none; - } - .lg\:underline { text-decoration: underline; } @@ -112223,4258 +112374,4669 @@ video { -moz-osx-font-smoothing: auto; } - .lg\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); - } - - .lg\:normal-nums { - font-variant-numeric: normal; - } - - .lg\:ordinal { - --tw-ordinal: ordinal; - } - - .lg\:slashed-zero { - --tw-slashed-zero: slashed-zero; - } - - .lg\:lining-nums { - --tw-numeric-figure: lining-nums; - } - - .lg\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; - } - - .lg\:proportional-nums { - --tw-numeric-spacing: proportional-nums; - } - - .lg\:tabular-nums { - --tw-numeric-spacing: tabular-nums; - } - - .lg\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; - } - - .lg\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; - } - - .lg\:tracking-tighter { - letter-spacing: -0.05em; - } - - .lg\:tracking-tight { - letter-spacing: -0.025em; - } - - .lg\:tracking-normal { - letter-spacing: 0em; - } - - .lg\:tracking-wide { - letter-spacing: 0.025em; + .lg\:placeholder-transparent::placeholder { + color: transparent; } - .lg\:tracking-wider { - letter-spacing: 0.05em; + .lg\:placeholder-current::placeholder { + color: currentColor; } - .lg\:tracking-widest { - letter-spacing: 0.1em; + .lg\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .lg\:select-none { - user-select: none; + .lg\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .lg\:select-text { - user-select: text; + .lg\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .lg\:select-all { - user-select: all; + .lg\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .lg\:select-auto { - user-select: auto; + .lg\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .lg\:align-baseline { - vertical-align: baseline; + .lg\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .lg\:align-top { - vertical-align: top; + .lg\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .lg\:align-middle { - vertical-align: middle; + .lg\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .lg\:align-bottom { - vertical-align: bottom; + .lg\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .lg\:align-text-top { - vertical-align: text-top; + .lg\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .lg\:align-text-bottom { - vertical-align: text-bottom; + .lg\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .lg\:visible { - visibility: visible; + .lg\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .lg\:invisible { - visibility: hidden; + .lg\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .lg\:whitespace-normal { - white-space: normal; + .lg\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .lg\:whitespace-nowrap { - white-space: nowrap; + .lg\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .lg\:whitespace-pre { - white-space: pre; + .lg\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .lg\:whitespace-pre-line { - white-space: pre-line; + .lg\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .lg\:whitespace-pre-wrap { - white-space: pre-wrap; + .lg\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .lg\:break-normal { - overflow-wrap: normal; - word-break: normal; + .lg\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .lg\:break-words { - overflow-wrap: break-word; + .lg\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .lg\:break-all { - word-break: break-all; + .lg\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .lg\:w-0 { - width: 0px; + .lg\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .lg\:w-1 { - width: 0.25rem; + .lg\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .lg\:w-2 { - width: 0.5rem; + .lg\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .lg\:w-3 { - width: 0.75rem; + .lg\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .lg\:w-4 { - width: 1rem; + .lg\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .lg\:w-5 { - width: 1.25rem; + .lg\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .lg\:w-6 { - width: 1.5rem; + .lg\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .lg\:w-7 { - width: 1.75rem; + .lg\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .lg\:w-8 { - width: 2rem; + .lg\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .lg\:w-9 { - width: 2.25rem; + .lg\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .lg\:w-10 { - width: 2.5rem; + .lg\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .lg\:w-11 { - width: 2.75rem; + .lg\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .lg\:w-12 { - width: 3rem; + .lg\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .lg\:w-14 { - width: 3.5rem; + .lg\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .lg\:w-16 { - width: 4rem; + .lg\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .lg\:w-20 { - width: 5rem; + .lg\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .lg\:w-24 { - width: 6rem; + .lg\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .lg\:w-28 { - width: 7rem; + .lg\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .lg\:w-32 { - width: 8rem; + .lg\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .lg\:w-36 { - width: 9rem; + .lg\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .lg\:w-40 { - width: 10rem; + .lg\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .lg\:w-44 { - width: 11rem; + .lg\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .lg\:w-48 { - width: 12rem; + .lg\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .lg\:w-52 { - width: 13rem; + .lg\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .lg\:w-56 { - width: 14rem; + .lg\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .lg\:w-60 { - width: 15rem; + .lg\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .lg\:w-64 { - width: 16rem; + .lg\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .lg\:w-72 { - width: 18rem; + .lg\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .lg\:w-80 { - width: 20rem; + .lg\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .lg\:w-96 { - width: 24rem; + .lg\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .lg\:w-auto { - width: auto; + .lg\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .lg\:w-px { - width: 1px; + .lg\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .lg\:w-0\.5 { - width: 0.125rem; + .lg\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .lg\:w-1\.5 { - width: 0.375rem; + .lg\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .lg\:w-2\.5 { - width: 0.625rem; + .lg\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .lg\:w-3\.5 { - width: 0.875rem; + .lg\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .lg\:w-1\/2 { - width: 50%; + .lg\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .lg\:w-1\/3 { - width: 33.333333%; + .lg\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .lg\:w-2\/3 { - width: 66.666667%; + .lg\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .lg\:w-1\/4 { - width: 25%; + .lg\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .lg\:w-2\/4 { - width: 50%; + .lg\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .lg\:w-3\/4 { - width: 75%; + .lg\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .lg\:w-1\/5 { - width: 20%; + .lg\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .lg\:w-2\/5 { - width: 40%; + .lg\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .lg\:w-3\/5 { - width: 60%; + .lg\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .lg\:w-4\/5 { - width: 80%; + .lg\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .lg\:w-1\/6 { - width: 16.666667%; + .lg\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .lg\:w-2\/6 { - width: 33.333333%; + .lg\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .lg\:w-3\/6 { - width: 50%; + .lg\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .lg\:w-4\/6 { - width: 66.666667%; + .lg\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .lg\:w-5\/6 { - width: 83.333333%; + .lg\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .lg\:w-1\/12 { - width: 8.333333%; + .lg\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .lg\:w-2\/12 { - width: 16.666667%; + .lg\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .lg\:w-3\/12 { - width: 25%; + .lg\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .lg\:w-4\/12 { - width: 33.333333%; + .lg\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .lg\:w-5\/12 { - width: 41.666667%; + .lg\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .lg\:w-6\/12 { - width: 50%; + .lg\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .lg\:w-7\/12 { - width: 58.333333%; + .lg\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .lg\:w-8\/12 { - width: 66.666667%; + .lg\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .lg\:w-9\/12 { - width: 75%; + .lg\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .lg\:w-10\/12 { - width: 83.333333%; + .lg\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .lg\:w-11\/12 { - width: 91.666667%; + .lg\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .lg\:w-full { - width: 100%; + .lg\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .lg\:w-screen { - width: 100vw; + .lg\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .lg\:w-min { - width: min-content; + .lg\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .lg\:w-max { - width: max-content; + .lg\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .lg\:z-0 { - z-index: 0; + .lg\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .lg\:z-10 { - z-index: 10; + .lg\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .lg\:z-20 { - z-index: 20; + .lg\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .lg\:z-30 { - z-index: 30; + .lg\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .lg\:z-40 { - z-index: 40; + .lg\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .lg\:z-50 { - z-index: 50; + .lg\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .lg\:z-auto { - z-index: auto; + .lg\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-0:focus-within { - z-index: 0; + .lg\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-10:focus-within { - z-index: 10; + .lg\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-20:focus-within { - z-index: 20; + .lg\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-30:focus-within { - z-index: 30; + .lg\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-40:focus-within { - z-index: 40; + .lg\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-50:focus-within { - z-index: 50; + .lg\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-auto:focus-within { - z-index: auto; + .lg\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-0:focus { - z-index: 0; + .lg\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-10:focus { - z-index: 10; + .lg\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-20:focus { - z-index: 20; + .lg\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-30:focus { - z-index: 30; + .lg\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-40:focus { - z-index: 40; + .lg\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-50:focus { - z-index: 50; + .lg\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-auto:focus { - z-index: auto; + .lg\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .lg\:isolate { - isolation: isolate; + .lg\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .lg\:isolation-auto { - isolation: auto; + .lg\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .lg\:gap-0 { - gap: 0px; + .lg\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .lg\:gap-1 { - gap: 0.25rem; + .lg\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .lg\:gap-2 { - gap: 0.5rem; + .lg\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .lg\:gap-3 { - gap: 0.75rem; + .lg\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .lg\:gap-4 { - gap: 1rem; + .lg\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .lg\:gap-5 { - gap: 1.25rem; + .lg\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .lg\:gap-6 { - gap: 1.5rem; + .lg\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .lg\:gap-7 { - gap: 1.75rem; + .lg\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .lg\:gap-8 { - gap: 2rem; + .lg\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .lg\:gap-9 { - gap: 2.25rem; + .lg\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .lg\:gap-10 { - gap: 2.5rem; + .lg\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .lg\:gap-11 { - gap: 2.75rem; + .lg\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .lg\:gap-12 { - gap: 3rem; + .lg\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .lg\:gap-14 { - gap: 3.5rem; + .lg\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .lg\:gap-16 { - gap: 4rem; + .lg\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .lg\:gap-20 { - gap: 5rem; + .lg\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .lg\:gap-24 { - gap: 6rem; + .lg\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .lg\:gap-28 { - gap: 7rem; + .lg\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .lg\:gap-32 { - gap: 8rem; + .lg\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .lg\:gap-36 { - gap: 9rem; + .lg\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .lg\:gap-40 { - gap: 10rem; + .lg\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .lg\:gap-44 { - gap: 11rem; + .lg\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .lg\:gap-48 { - gap: 12rem; + .lg\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .lg\:gap-52 { - gap: 13rem; + .lg\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .lg\:gap-56 { - gap: 14rem; + .lg\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .lg\:gap-60 { - gap: 15rem; + .lg\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .lg\:gap-64 { - gap: 16rem; + .lg\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .lg\:gap-72 { - gap: 18rem; + .lg\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .lg\:gap-80 { - gap: 20rem; + .lg\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .lg\:gap-96 { - gap: 24rem; + .lg\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .lg\:gap-px { - gap: 1px; + .lg\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .lg\:gap-0\.5 { - gap: 0.125rem; + .lg\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .lg\:gap-1\.5 { - gap: 0.375rem; + .lg\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .lg\:gap-2\.5 { - gap: 0.625rem; + .lg\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .lg\:gap-3\.5 { - gap: 0.875rem; + .lg\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .lg\:gap-x-0 { - column-gap: 0px; + .lg\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .lg\:gap-x-1 { - column-gap: 0.25rem; + .lg\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .lg\:gap-x-2 { - column-gap: 0.5rem; + .lg\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .lg\:gap-x-3 { - column-gap: 0.75rem; + .lg\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .lg\:gap-x-4 { - column-gap: 1rem; + .lg\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .lg\:gap-x-5 { - column-gap: 1.25rem; + .lg\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .lg\:gap-x-6 { - column-gap: 1.5rem; + .lg\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .lg\:gap-x-7 { - column-gap: 1.75rem; + .lg\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .lg\:gap-x-8 { - column-gap: 2rem; + .lg\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .lg\:gap-x-9 { - column-gap: 2.25rem; + .lg\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .lg\:gap-x-10 { - column-gap: 2.5rem; + .lg\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .lg\:gap-x-11 { - column-gap: 2.75rem; + .lg\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .lg\:gap-x-12 { - column-gap: 3rem; + .lg\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .lg\:gap-x-14 { - column-gap: 3.5rem; + .lg\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .lg\:gap-x-16 { - column-gap: 4rem; + .lg\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .lg\:gap-x-20 { - column-gap: 5rem; + .lg\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .lg\:gap-x-24 { - column-gap: 6rem; + .lg\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .lg\:gap-x-28 { - column-gap: 7rem; + .lg\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .lg\:gap-x-32 { - column-gap: 8rem; + .lg\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .lg\:gap-x-36 { - column-gap: 9rem; + .lg\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .lg\:gap-x-40 { - column-gap: 10rem; + .lg\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .lg\:gap-x-44 { - column-gap: 11rem; + .lg\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } - .lg\:gap-x-48 { - column-gap: 12rem; + .lg\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } - .lg\:gap-x-52 { - column-gap: 13rem; + .lg\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } - .lg\:gap-x-56 { - column-gap: 14rem; + .lg\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } - .lg\:gap-x-60 { - column-gap: 15rem; + .lg\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } - .lg\:gap-x-64 { - column-gap: 16rem; + .lg\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } - .lg\:gap-x-72 { - column-gap: 18rem; + .lg\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } - .lg\:gap-x-80 { - column-gap: 20rem; + .lg\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } - .lg\:gap-x-96 { - column-gap: 24rem; + .lg\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } - .lg\:gap-x-px { - column-gap: 1px; + .lg\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } - .lg\:gap-x-0\.5 { - column-gap: 0.125rem; + .lg\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } - .lg\:gap-x-1\.5 { - column-gap: 0.375rem; + .lg\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } - .lg\:gap-x-2\.5 { - column-gap: 0.625rem; + .lg\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } - .lg\:gap-x-3\.5 { - column-gap: 0.875rem; + .lg\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } - .lg\:gap-y-0 { - row-gap: 0px; + .lg\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } - .lg\:gap-y-1 { - row-gap: 0.25rem; + .lg\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } - .lg\:gap-y-2 { - row-gap: 0.5rem; + .lg\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } - .lg\:gap-y-3 { - row-gap: 0.75rem; + .lg\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } - .lg\:gap-y-4 { - row-gap: 1rem; + .lg\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } - .lg\:gap-y-5 { - row-gap: 1.25rem; + .lg\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } - .lg\:gap-y-6 { - row-gap: 1.5rem; + .lg\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } - .lg\:gap-y-7 { - row-gap: 1.75rem; + .lg\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } - .lg\:gap-y-8 { - row-gap: 2rem; + .lg\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } - .lg\:gap-y-9 { - row-gap: 2.25rem; + .lg\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } - .lg\:gap-y-10 { - row-gap: 2.5rem; + .lg\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } - .lg\:gap-y-11 { - row-gap: 2.75rem; + .lg\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } - .lg\:gap-y-12 { - row-gap: 3rem; + .lg\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } - .lg\:gap-y-14 { - row-gap: 3.5rem; + .lg\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } - .lg\:gap-y-16 { - row-gap: 4rem; + .lg\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } - .lg\:gap-y-20 { - row-gap: 5rem; + .lg\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } - .lg\:gap-y-24 { - row-gap: 6rem; + .lg\:opacity-0 { + opacity: 0; } - .lg\:gap-y-28 { - row-gap: 7rem; + .lg\:opacity-5 { + opacity: 0.05; } - .lg\:gap-y-32 { - row-gap: 8rem; + .lg\:opacity-10 { + opacity: 0.1; } - .lg\:gap-y-36 { - row-gap: 9rem; + .lg\:opacity-20 { + opacity: 0.2; } - .lg\:gap-y-40 { - row-gap: 10rem; + .lg\:opacity-25 { + opacity: 0.25; } - .lg\:gap-y-44 { - row-gap: 11rem; + .lg\:opacity-30 { + opacity: 0.3; } - .lg\:gap-y-48 { - row-gap: 12rem; + .lg\:opacity-40 { + opacity: 0.4; } - .lg\:gap-y-52 { - row-gap: 13rem; + .lg\:opacity-50 { + opacity: 0.5; } - .lg\:gap-y-56 { - row-gap: 14rem; + .lg\:opacity-60 { + opacity: 0.6; } - .lg\:gap-y-60 { - row-gap: 15rem; + .lg\:opacity-70 { + opacity: 0.7; } - .lg\:gap-y-64 { - row-gap: 16rem; + .lg\:opacity-75 { + opacity: 0.75; } - .lg\:gap-y-72 { - row-gap: 18rem; + .lg\:opacity-80 { + opacity: 0.8; } - .lg\:gap-y-80 { - row-gap: 20rem; + .lg\:opacity-90 { + opacity: 0.9; } - .lg\:gap-y-96 { - row-gap: 24rem; + .lg\:opacity-95 { + opacity: 0.95; } - .lg\:gap-y-px { - row-gap: 1px; + .lg\:opacity-100 { + opacity: 1; } - .lg\:gap-y-0\.5 { - row-gap: 0.125rem; + .group:hover .lg\:group-hover\:opacity-0 { + opacity: 0; } - .lg\:gap-y-1\.5 { - row-gap: 0.375rem; + .group:hover .lg\:group-hover\:opacity-5 { + opacity: 0.05; } - .lg\:gap-y-2\.5 { - row-gap: 0.625rem; + .group:hover .lg\:group-hover\:opacity-10 { + opacity: 0.1; } - .lg\:gap-y-3\.5 { - row-gap: 0.875rem; + .group:hover .lg\:group-hover\:opacity-20 { + opacity: 0.2; } - .lg\:grid-flow-row { - grid-auto-flow: row; + .group:hover .lg\:group-hover\:opacity-25 { + opacity: 0.25; } - .lg\:grid-flow-col { - grid-auto-flow: column; + .group:hover .lg\:group-hover\:opacity-30 { + opacity: 0.3; } - .lg\:grid-flow-row-dense { - grid-auto-flow: row dense; + .group:hover .lg\:group-hover\:opacity-40 { + opacity: 0.4; } - .lg\:grid-flow-col-dense { - grid-auto-flow: column dense; + .group:hover .lg\:group-hover\:opacity-50 { + opacity: 0.5; } - .lg\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-60 { + opacity: 0.6; } - .lg\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-70 { + opacity: 0.7; } - .lg\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-75 { + opacity: 0.75; } - .lg\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-80 { + opacity: 0.8; } - .lg\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-90 { + opacity: 0.9; } - .lg\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-95 { + opacity: 0.95; } - .lg\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-100 { + opacity: 1; } - .lg\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .lg\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .lg\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .lg\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .lg\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .lg\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .lg\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .lg\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .lg\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .lg\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .lg\:grid-cols-none { - grid-template-columns: none; + .lg\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .lg\:auto-cols-auto { - grid-auto-columns: auto; + .lg\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .lg\:auto-cols-min { - grid-auto-columns: min-content; + .lg\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .lg\:auto-cols-max { - grid-auto-columns: max-content; + .lg\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .lg\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .lg\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .lg\:col-auto { - grid-column: auto; + .lg\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .lg\:col-span-1 { - grid-column: span 1 / span 1; + .lg\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .lg\:col-span-2 { - grid-column: span 2 / span 2; + .lg\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .lg\:col-span-3 { - grid-column: span 3 / span 3; + .lg\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .lg\:col-span-4 { - grid-column: span 4 / span 4; + .lg\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .lg\:col-span-5 { - grid-column: span 5 / span 5; + .lg\:hover\:opacity-0:hover { + opacity: 0; } - .lg\:col-span-6 { - grid-column: span 6 / span 6; + .lg\:hover\:opacity-5:hover { + opacity: 0.05; } - .lg\:col-span-7 { - grid-column: span 7 / span 7; + .lg\:hover\:opacity-10:hover { + opacity: 0.1; } - .lg\:col-span-8 { - grid-column: span 8 / span 8; + .lg\:hover\:opacity-20:hover { + opacity: 0.2; } - .lg\:col-span-9 { - grid-column: span 9 / span 9; + .lg\:hover\:opacity-25:hover { + opacity: 0.25; } - .lg\:col-span-10 { - grid-column: span 10 / span 10; + .lg\:hover\:opacity-30:hover { + opacity: 0.3; } - .lg\:col-span-11 { - grid-column: span 11 / span 11; + .lg\:hover\:opacity-40:hover { + opacity: 0.4; } - .lg\:col-span-12 { - grid-column: span 12 / span 12; + .lg\:hover\:opacity-50:hover { + opacity: 0.5; } - .lg\:col-span-full { - grid-column: 1 / -1; + .lg\:hover\:opacity-60:hover { + opacity: 0.6; } - .lg\:col-start-1 { - grid-column-start: 1; + .lg\:hover\:opacity-70:hover { + opacity: 0.7; } - .lg\:col-start-2 { - grid-column-start: 2; + .lg\:hover\:opacity-75:hover { + opacity: 0.75; } - .lg\:col-start-3 { - grid-column-start: 3; + .lg\:hover\:opacity-80:hover { + opacity: 0.8; } - .lg\:col-start-4 { - grid-column-start: 4; + .lg\:hover\:opacity-90:hover { + opacity: 0.9; } - .lg\:col-start-5 { - grid-column-start: 5; + .lg\:hover\:opacity-95:hover { + opacity: 0.95; } - .lg\:col-start-6 { - grid-column-start: 6; + .lg\:hover\:opacity-100:hover { + opacity: 1; } - .lg\:col-start-7 { - grid-column-start: 7; + .lg\:focus\:opacity-0:focus { + opacity: 0; } - .lg\:col-start-8 { - grid-column-start: 8; + .lg\:focus\:opacity-5:focus { + opacity: 0.05; } - .lg\:col-start-9 { - grid-column-start: 9; + .lg\:focus\:opacity-10:focus { + opacity: 0.1; } - .lg\:col-start-10 { - grid-column-start: 10; + .lg\:focus\:opacity-20:focus { + opacity: 0.2; } - .lg\:col-start-11 { - grid-column-start: 11; + .lg\:focus\:opacity-25:focus { + opacity: 0.25; } - .lg\:col-start-12 { - grid-column-start: 12; + .lg\:focus\:opacity-30:focus { + opacity: 0.3; } - .lg\:col-start-13 { - grid-column-start: 13; + .lg\:focus\:opacity-40:focus { + opacity: 0.4; } - .lg\:col-start-auto { - grid-column-start: auto; + .lg\:focus\:opacity-50:focus { + opacity: 0.5; } - .lg\:col-end-1 { - grid-column-end: 1; + .lg\:focus\:opacity-60:focus { + opacity: 0.6; } - .lg\:col-end-2 { - grid-column-end: 2; + .lg\:focus\:opacity-70:focus { + opacity: 0.7; } - .lg\:col-end-3 { - grid-column-end: 3; + .lg\:focus\:opacity-75:focus { + opacity: 0.75; } - .lg\:col-end-4 { - grid-column-end: 4; + .lg\:focus\:opacity-80:focus { + opacity: 0.8; } - .lg\:col-end-5 { - grid-column-end: 5; + .lg\:focus\:opacity-90:focus { + opacity: 0.9; } - .lg\:col-end-6 { - grid-column-end: 6; + .lg\:focus\:opacity-95:focus { + opacity: 0.95; } - .lg\:col-end-7 { - grid-column-end: 7; + .lg\:focus\:opacity-100:focus { + opacity: 1; } - .lg\:col-end-8 { - grid-column-end: 8; + .lg\:bg-blend-normal { + background-blend-mode: normal; } - .lg\:col-end-9 { - grid-column-end: 9; + .lg\:bg-blend-multiply { + background-blend-mode: multiply; } - .lg\:col-end-10 { - grid-column-end: 10; + .lg\:bg-blend-screen { + background-blend-mode: screen; } - .lg\:col-end-11 { - grid-column-end: 11; + .lg\:bg-blend-overlay { + background-blend-mode: overlay; } - .lg\:col-end-12 { - grid-column-end: 12; + .lg\:bg-blend-darken { + background-blend-mode: darken; } - .lg\:col-end-13 { - grid-column-end: 13; + .lg\:bg-blend-lighten { + background-blend-mode: lighten; } - .lg\:col-end-auto { - grid-column-end: auto; + .lg\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .lg\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .lg\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .lg\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .lg\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .lg\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .lg\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .lg\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .lg\:bg-blend-difference { + background-blend-mode: difference; } - .lg\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .lg\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .lg\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .lg\:bg-blend-hue { + background-blend-mode: hue; } - .lg\:grid-rows-none { - grid-template-rows: none; + .lg\:bg-blend-saturation { + background-blend-mode: saturation; } - .lg\:auto-rows-auto { - grid-auto-rows: auto; + .lg\:bg-blend-color { + background-blend-mode: color; } - .lg\:auto-rows-min { - grid-auto-rows: min-content; + .lg\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .lg\:auto-rows-max { - grid-auto-rows: max-content; + .lg\:mix-blend-normal { + mix-blend-mode: normal; } - .lg\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .lg\:mix-blend-multiply { + mix-blend-mode: multiply; } - .lg\:row-auto { - grid-row: auto; + .lg\:mix-blend-screen { + mix-blend-mode: screen; } - .lg\:row-span-1 { - grid-row: span 1 / span 1; + .lg\:mix-blend-overlay { + mix-blend-mode: overlay; } - .lg\:row-span-2 { - grid-row: span 2 / span 2; + .lg\:mix-blend-darken { + mix-blend-mode: darken; } - .lg\:row-span-3 { - grid-row: span 3 / span 3; + .lg\:mix-blend-lighten { + mix-blend-mode: lighten; } - .lg\:row-span-4 { - grid-row: span 4 / span 4; + .lg\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .lg\:row-span-5 { - grid-row: span 5 / span 5; + .lg\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .lg\:row-span-6 { - grid-row: span 6 / span 6; + .lg\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .lg\:row-span-full { - grid-row: 1 / -1; + .lg\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .lg\:row-start-1 { - grid-row-start: 1; + .lg\:mix-blend-difference { + mix-blend-mode: difference; } - .lg\:row-start-2 { - grid-row-start: 2; + .lg\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .lg\:row-start-3 { - grid-row-start: 3; + .lg\:mix-blend-hue { + mix-blend-mode: hue; } - .lg\:row-start-4 { - grid-row-start: 4; + .lg\:mix-blend-saturation { + mix-blend-mode: saturation; } - .lg\:row-start-5 { - grid-row-start: 5; + .lg\:mix-blend-color { + mix-blend-mode: color; } - .lg\:row-start-6 { - grid-row-start: 6; + .lg\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .lg\:row-start-7 { - grid-row-start: 7; + .lg\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-start-auto { - grid-row-start: auto; + .lg\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-1 { - grid-row-end: 1; + .lg\: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); } - .lg\:row-end-2 { - grid-row-end: 2; + .lg\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-3 { - grid-row-end: 3; + .lg\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-4 { - grid-row-end: 4; + .lg\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-5 { - grid-row-end: 5; + .lg\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-6 { - grid-row-end: 6; + .lg\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-7 { - grid-row-end: 7; + .group:hover .lg\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-auto { - grid-row-end: auto; + .group:hover .lg\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .lg\:group-hover\: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); } - .lg\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .lg\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:transform-none { - transform: none; + .group:hover .lg\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-center { - transform-origin: center; + .group:hover .lg\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-top { - transform-origin: top; + .group:hover .lg\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-top-right { - transform-origin: top right; + .group:hover .lg\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-right { - transform-origin: right; + .lg\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-bottom-right { - transform-origin: bottom right; + .lg\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-bottom { - transform-origin: bottom; + .lg\:focus-within\:shadow-md:focus-within { + --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); } - .lg\:origin-bottom-left { - transform-origin: bottom left; + .lg\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-left { - transform-origin: left; + .lg\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-top-left { - transform-origin: top left; + .lg\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .lg\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .lg\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .lg\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .lg\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .lg\:hover\:shadow-md:hover { + --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); } - .lg\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .lg\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .lg\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .lg\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .lg\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .lg\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-0 { - --tw-scale-x: 0; + .lg\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-50 { - --tw-scale-x: .5; + .lg\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-75 { - --tw-scale-x: .75; + .lg\:focus\:shadow-md:focus { + --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); } - .lg\:scale-x-90 { - --tw-scale-x: .9; + .lg\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-95 { - --tw-scale-x: .95; + .lg\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-100 { - --tw-scale-x: 1; + .lg\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-105 { - --tw-scale-x: 1.05; + .lg\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-110 { - --tw-scale-x: 1.1; + .lg\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-125 { - --tw-scale-x: 1.25; + .lg\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .lg\:scale-x-150 { - --tw-scale-x: 1.5; + .lg\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .lg\:scale-y-0 { - --tw-scale-y: 0; + .lg\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .lg\:scale-y-50 { - --tw-scale-y: .5; + .lg\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .lg\:scale-y-75 { - --tw-scale-y: .75; + .lg\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .lg\:scale-y-90 { - --tw-scale-y: .9; + .lg\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .lg\:scale-y-95 { - --tw-scale-y: .95; + .lg\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .lg\:scale-y-100 { - --tw-scale-y: 1; + .lg\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .lg\:scale-y-105 { - --tw-scale-y: 1.05; + .lg\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .lg\:scale-y-110 { - --tw-scale-y: 1.1; + .lg\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:scale-y-125 { - --tw-scale-y: 1.25; + .lg\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:scale-y-150 { - --tw-scale-y: 1.5; + .lg\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .lg\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .lg\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .lg\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .lg\:ring-inset { + --tw-ring-inset: inset; } - .lg\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .lg\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .lg\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .lg\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .lg\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .lg\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .lg\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .lg\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .lg\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .lg\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .lg\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .lg\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .lg\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .lg\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .lg\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .lg\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .lg\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .lg\:ring-transparent { + --tw-ring-color: transparent; } - .lg\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .lg\:ring-current { + --tw-ring-color: currentColor; } - .lg\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .lg\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .lg\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .lg\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .lg\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .lg\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .lg\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .lg\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .lg\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .lg\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .lg\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .lg\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .lg\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .lg\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .lg\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .lg\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .lg\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .lg\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .lg\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .lg\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .lg\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .lg\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .lg\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .lg\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .lg\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .lg\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .lg\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .lg\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .lg\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .lg\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .lg\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .lg\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .lg\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .lg\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .lg\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .lg\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .lg\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .lg\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .lg\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .lg\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .lg\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .lg\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .lg\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .lg\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .lg\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .lg\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .lg\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .lg\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .lg\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .lg\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .lg\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .lg\:rotate-0 { - --tw-rotate: 0deg; + .lg\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .lg\:rotate-1 { - --tw-rotate: 1deg; + .lg\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .lg\:rotate-2 { - --tw-rotate: 2deg; + .lg\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .lg\:rotate-3 { - --tw-rotate: 3deg; + .lg\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .lg\:rotate-6 { - --tw-rotate: 6deg; + .lg\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .lg\:rotate-12 { - --tw-rotate: 12deg; + .lg\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .lg\:rotate-45 { - --tw-rotate: 45deg; + .lg\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .lg\:rotate-90 { - --tw-rotate: 90deg; + .lg\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .lg\:rotate-180 { - --tw-rotate: 180deg; + .lg\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .lg\:-rotate-180 { - --tw-rotate: -180deg; + .lg\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .lg\:-rotate-90 { - --tw-rotate: -90deg; + .lg\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .lg\:-rotate-45 { - --tw-rotate: -45deg; + .lg\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .lg\:-rotate-12 { - --tw-rotate: -12deg; + .lg\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .lg\:-rotate-6 { - --tw-rotate: -6deg; + .lg\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .lg\:-rotate-3 { - --tw-rotate: -3deg; + .lg\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .lg\:-rotate-2 { - --tw-rotate: -2deg; + .lg\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .lg\:-rotate-1 { - --tw-rotate: -1deg; + .lg\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .lg\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .lg\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .lg\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .lg\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .lg\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .lg\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .lg\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .lg\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .lg\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .lg\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .lg\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .lg\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .lg\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .lg\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .lg\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .lg\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .lg\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .lg\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .lg\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .lg\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .lg\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .lg\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .lg\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .lg\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .lg\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .lg\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .lg\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .lg\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .lg\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .lg\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .lg\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .lg\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .lg\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .lg\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .lg\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .lg\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .lg\:translate-x-0 { - --tw-translate-x: 0px; + .lg\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .lg\:translate-x-1 { - --tw-translate-x: 0.25rem; + .lg\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .lg\:translate-x-2 { - --tw-translate-x: 0.5rem; + .lg\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .lg\:translate-x-3 { - --tw-translate-x: 0.75rem; + .lg\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .lg\:translate-x-4 { - --tw-translate-x: 1rem; + .lg\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .lg\:translate-x-5 { - --tw-translate-x: 1.25rem; + .lg\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .lg\:translate-x-6 { - --tw-translate-x: 1.5rem; + .lg\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .lg\:translate-x-7 { - --tw-translate-x: 1.75rem; + .lg\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .lg\:translate-x-8 { - --tw-translate-x: 2rem; + .lg\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .lg\:translate-x-9 { - --tw-translate-x: 2.25rem; + .lg\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .lg\:translate-x-10 { - --tw-translate-x: 2.5rem; + .lg\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .lg\:translate-x-11 { - --tw-translate-x: 2.75rem; + .lg\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .lg\:translate-x-12 { - --tw-translate-x: 3rem; + .lg\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .lg\:translate-x-14 { - --tw-translate-x: 3.5rem; + .lg\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .lg\:translate-x-16 { - --tw-translate-x: 4rem; + .lg\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .lg\:translate-x-20 { - --tw-translate-x: 5rem; + .lg\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .lg\:translate-x-24 { - --tw-translate-x: 6rem; + .lg\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .lg\:translate-x-28 { - --tw-translate-x: 7rem; + .lg\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .lg\:translate-x-32 { - --tw-translate-x: 8rem; + .lg\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .lg\:translate-x-36 { - --tw-translate-x: 9rem; + .lg\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .lg\:translate-x-40 { - --tw-translate-x: 10rem; + .lg\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .lg\:translate-x-44 { - --tw-translate-x: 11rem; + .lg\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .lg\:translate-x-48 { - --tw-translate-x: 12rem; + .lg\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .lg\:translate-x-52 { - --tw-translate-x: 13rem; + .lg\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .lg\:translate-x-56 { - --tw-translate-x: 14rem; + .lg\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .lg\:translate-x-60 { - --tw-translate-x: 15rem; + .lg\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .lg\:translate-x-64 { - --tw-translate-x: 16rem; + .lg\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .lg\:translate-x-72 { - --tw-translate-x: 18rem; + .lg\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .lg\:translate-x-80 { - --tw-translate-x: 20rem; + .lg\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .lg\:translate-x-96 { - --tw-translate-x: 24rem; + .lg\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .lg\:translate-x-px { - --tw-translate-x: 1px; + .lg\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .lg\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .lg\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .lg\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .lg\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .lg\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .lg\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .lg\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .lg\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .lg\:-translate-x-0 { - --tw-translate-x: 0px; + .lg\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .lg\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .lg\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .lg\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .lg\:-translate-x-4 { - --tw-translate-x: -1rem; + .lg\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .lg\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .lg\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .lg\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .lg\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .lg\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .lg\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .lg\:-translate-x-8 { - --tw-translate-x: -2rem; + .lg\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .lg\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .lg\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .lg\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .lg\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .lg\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-12 { - --tw-translate-x: -3rem; + .lg\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .lg\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .lg\:-translate-x-16 { - --tw-translate-x: -4rem; + .lg\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .lg\:-translate-x-20 { - --tw-translate-x: -5rem; + .lg\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .lg\:-translate-x-24 { - --tw-translate-x: -6rem; + .lg\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .lg\:-translate-x-28 { - --tw-translate-x: -7rem; + .lg\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .lg\:-translate-x-32 { - --tw-translate-x: -8rem; + .lg\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .lg\:-translate-x-36 { - --tw-translate-x: -9rem; + .lg\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .lg\:-translate-x-40 { - --tw-translate-x: -10rem; + .lg\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-44 { - --tw-translate-x: -11rem; + .lg\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-48 { - --tw-translate-x: -12rem; + .lg\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-52 { - --tw-translate-x: -13rem; + .lg\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .lg\:-translate-x-56 { - --tw-translate-x: -14rem; + .lg\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .lg\:-translate-x-60 { - --tw-translate-x: -15rem; + .lg\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .lg\:-translate-x-64 { - --tw-translate-x: -16rem; + .lg\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .lg\:-translate-x-72 { - --tw-translate-x: -18rem; + .lg\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .lg\:-translate-x-80 { - --tw-translate-x: -20rem; + .lg\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .lg\:-translate-x-96 { - --tw-translate-x: -24rem; + .lg\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .lg\:-translate-x-px { - --tw-translate-x: -1px; + .lg\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .lg\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .lg\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .lg\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .lg\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .lg\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .lg\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .lg\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .lg\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .lg\:translate-x-1\/2 { - --tw-translate-x: 50%; + .lg\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .lg\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .lg\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .lg\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .lg\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .lg\:translate-x-1\/4 { - --tw-translate-x: 25%; + .lg\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .lg\:translate-x-2\/4 { - --tw-translate-x: 50%; + .lg\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .lg\:translate-x-3\/4 { - --tw-translate-x: 75%; + .lg\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .lg\:translate-x-full { - --tw-translate-x: 100%; + .lg\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .lg\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .lg\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .lg\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .lg\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .lg\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .lg\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .lg\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .lg\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .lg\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .lg\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .lg\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .lg\:-translate-x-full { - --tw-translate-x: -100%; + .lg\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .lg\:translate-y-0 { - --tw-translate-y: 0px; + .lg\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .lg\:translate-y-1 { - --tw-translate-y: 0.25rem; + .lg\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .lg\:translate-y-2 { - --tw-translate-y: 0.5rem; + .lg\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .lg\:translate-y-3 { - --tw-translate-y: 0.75rem; + .lg\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .lg\:translate-y-4 { - --tw-translate-y: 1rem; + .lg\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .lg\:translate-y-5 { - --tw-translate-y: 1.25rem; + .lg\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .lg\:translate-y-6 { - --tw-translate-y: 1.5rem; + .lg\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .lg\:translate-y-7 { - --tw-translate-y: 1.75rem; + .lg\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .lg\:translate-y-8 { - --tw-translate-y: 2rem; + .lg\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .lg\:translate-y-9 { - --tw-translate-y: 2.25rem; + .lg\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .lg\:translate-y-10 { - --tw-translate-y: 2.5rem; + .lg\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .lg\:translate-y-11 { - --tw-translate-y: 2.75rem; + .lg\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .lg\:translate-y-12 { - --tw-translate-y: 3rem; + .lg\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .lg\:translate-y-14 { - --tw-translate-y: 3.5rem; + .lg\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .lg\:translate-y-16 { - --tw-translate-y: 4rem; + .lg\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .lg\:translate-y-20 { - --tw-translate-y: 5rem; + .lg\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .lg\:translate-y-24 { - --tw-translate-y: 6rem; + .lg\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .lg\:translate-y-28 { - --tw-translate-y: 7rem; + .lg\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .lg\:translate-y-32 { - --tw-translate-y: 8rem; + .lg\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .lg\:translate-y-36 { - --tw-translate-y: 9rem; + .lg\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .lg\:translate-y-40 { - --tw-translate-y: 10rem; + .lg\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .lg\:translate-y-44 { - --tw-translate-y: 11rem; + .lg\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .lg\:translate-y-48 { - --tw-translate-y: 12rem; + .lg\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .lg\:translate-y-52 { - --tw-translate-y: 13rem; + .lg\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .lg\:translate-y-56 { - --tw-translate-y: 14rem; + .lg\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .lg\:translate-y-60 { - --tw-translate-y: 15rem; + .lg\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .lg\:translate-y-64 { - --tw-translate-y: 16rem; + .lg\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .lg\:translate-y-72 { - --tw-translate-y: 18rem; + .lg\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .lg\:translate-y-80 { - --tw-translate-y: 20rem; + .lg\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .lg\:translate-y-96 { - --tw-translate-y: 24rem; + .lg\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .lg\:translate-y-px { - --tw-translate-y: 1px; + .lg\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .lg\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .lg\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .lg\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .lg\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .lg\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .lg\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .lg\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .lg\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .lg\:-translate-y-0 { - --tw-translate-y: 0px; + .lg\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .lg\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .lg\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .lg\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .lg\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .lg\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .lg\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .lg\:-translate-y-4 { - --tw-translate-y: -1rem; + .lg\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .lg\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .lg\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .lg\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .lg\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .lg\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .lg\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .lg\:-translate-y-8 { - --tw-translate-y: -2rem; + .lg\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .lg\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .lg\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .lg\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .lg\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .lg\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .lg\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .lg\:-translate-y-12 { - --tw-translate-y: -3rem; + .lg\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .lg\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .lg\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .lg\:-translate-y-16 { - --tw-translate-y: -4rem; + .lg\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .lg\:-translate-y-20 { - --tw-translate-y: -5rem; + .lg\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .lg\:-translate-y-24 { - --tw-translate-y: -6rem; + .lg\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .lg\:-translate-y-28 { - --tw-translate-y: -7rem; + .lg\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .lg\:-translate-y-32 { - --tw-translate-y: -8rem; + .lg\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .lg\:-translate-y-36 { - --tw-translate-y: -9rem; + .lg\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .lg\:-translate-y-40 { - --tw-translate-y: -10rem; + .lg\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .lg\:-translate-y-44 { - --tw-translate-y: -11rem; + .lg\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .lg\:-translate-y-48 { - --tw-translate-y: -12rem; + .lg\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .lg\:-translate-y-52 { - --tw-translate-y: -13rem; + .lg\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .lg\:-translate-y-56 { - --tw-translate-y: -14rem; + .lg\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .lg\:-translate-y-60 { - --tw-translate-y: -15rem; + .lg\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .lg\:-translate-y-64 { - --tw-translate-y: -16rem; + .lg\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .lg\:-translate-y-72 { - --tw-translate-y: -18rem; + .lg\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .lg\:-translate-y-80 { - --tw-translate-y: -20rem; + .lg\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .lg\:-translate-y-96 { - --tw-translate-y: -24rem; + .lg\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .lg\:-translate-y-px { - --tw-translate-y: -1px; + .lg\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .lg\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .lg\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .lg\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .lg\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .lg\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .lg\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .lg\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .lg\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .lg\:translate-y-1\/2 { - --tw-translate-y: 50%; + .lg\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .lg\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .lg\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .lg\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .lg\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .lg\:translate-y-1\/4 { - --tw-translate-y: 25%; + .lg\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .lg\:translate-y-2\/4 { - --tw-translate-y: 50%; + .lg\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .lg\:translate-y-3\/4 { - --tw-translate-y: 75%; + .lg\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .lg\:translate-y-full { - --tw-translate-y: 100%; + .lg\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .lg\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .lg\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .lg\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .lg\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .lg\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .lg\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .lg\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .lg\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .lg\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .lg\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .lg\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .lg\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .lg\:-translate-y-full { - --tw-translate-y: -100%; + .lg\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .lg\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .lg\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .lg\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .lg\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .lg\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .lg\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .lg\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .lg\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .lg\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .lg\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .lg\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .lg\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .lg\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .lg\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .lg\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .lg\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .lg\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .lg\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .lg\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .lg\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .lg\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .lg\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .lg\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .lg\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .lg\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .lg\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .lg\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .lg\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .lg\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .lg\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .lg\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .lg\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .lg\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .lg\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .lg\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .lg\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .lg\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .lg\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .lg\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .lg\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .lg\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .lg\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .lg\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .lg\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .lg\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .lg\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .lg\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .lg\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .lg\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .lg\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .lg\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .lg\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .lg\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .lg\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .lg\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .lg\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .lg\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .lg\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .lg\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .lg\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .lg\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .lg\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .lg\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .lg\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .lg\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .lg\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .lg\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .lg\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .lg\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .lg\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .lg\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .lg\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .lg\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .lg\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .lg\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .lg\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .lg\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .lg\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .lg\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .lg\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .lg\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .lg\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .lg\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .lg\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .lg\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .lg\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .lg\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .lg\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .lg\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .lg\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .lg\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .lg\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .lg\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .lg\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .lg\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .lg\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .lg\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .lg\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .lg\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .lg\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .lg\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .lg\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .lg\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .lg\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .lg\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .lg\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .lg\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .lg\:ring-offset-black { + --tw-ring-offset-color: #000; } - .lg\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .lg\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .lg\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .lg\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .lg\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .lg\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .lg\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .lg\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .lg\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .lg\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .lg\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .lg\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .lg\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .lg\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .lg\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .lg\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .lg\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .lg\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .lg\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .lg\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .lg\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .lg\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .lg\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .lg\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .lg\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .lg\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .lg\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .lg\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .lg\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .lg\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .lg\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .lg\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .lg\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .lg\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .lg\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .lg\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .lg\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .lg\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .lg\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .lg\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .lg\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .lg\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .lg\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .lg\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .lg\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .lg\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .lg\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .lg\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .lg\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .lg\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .lg\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .lg\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .lg\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .lg\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .lg\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .lg\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .lg\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .lg\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .lg\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .lg\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .lg\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .lg\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .lg\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .lg\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .lg\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .lg\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .lg\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .lg\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .lg\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .lg\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .lg\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .lg\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .lg\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .lg\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .lg\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .lg\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .lg\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .lg\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .lg\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .lg\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .lg\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .lg\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .lg\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .lg\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .lg\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .lg\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .lg\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .lg\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .lg\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .lg\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .lg\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .lg\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .lg\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .lg\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .lg\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .lg\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .lg\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .lg\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .lg\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .lg\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .lg\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .lg\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .lg\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .lg\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .lg\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .lg\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .lg\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .lg\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .lg\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .lg\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .lg\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .lg\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .lg\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .lg\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .lg\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .lg\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .lg\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .lg\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .lg\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .lg\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .lg\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .lg\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .lg\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .lg\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .lg\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .lg\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .lg\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .lg\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .lg\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .lg\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .lg\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .lg\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .lg\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .lg\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .lg\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .lg\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .lg\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .lg\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .lg\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .lg\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .lg\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .lg\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .lg\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .lg\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .lg\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .lg\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .lg\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .lg\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .lg\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .lg\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .lg\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .lg\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .lg\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .lg\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .lg\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .lg\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .lg\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .lg\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .lg\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .lg\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .lg\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .lg\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .lg\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .lg\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .lg\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .lg\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .lg\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .lg\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .lg\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .lg\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .lg\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .lg\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .lg\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .lg\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .lg\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .lg\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .lg\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .lg\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .lg\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .lg\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .lg\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .lg\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .lg\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .lg\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .lg\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .lg\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .lg\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .lg\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .lg\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .lg\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .lg\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .lg\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .lg\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .lg\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .lg\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .lg\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .lg\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .lg\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .lg\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .lg\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .lg\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .lg\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .lg\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .lg\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .lg\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .lg\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .lg\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .lg\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .lg\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .lg\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .lg\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .lg\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .lg\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .lg\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .lg\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .lg\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .lg\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .lg\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .lg\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .lg\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .lg\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .lg\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .lg\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .lg\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .lg\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .lg\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .lg\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .lg\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .lg\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .lg\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .lg\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .lg\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - - .lg\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + + .lg\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .lg\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .lg\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .lg\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .lg\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .lg\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .lg\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .lg\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .lg\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .lg\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .lg\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .lg\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .lg\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .lg\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .lg\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .lg\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .lg\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .lg\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .lg\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .lg\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .lg\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .lg\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .lg\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .lg\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .lg\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .lg\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .lg\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .lg\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .lg\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .lg\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .lg\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .lg\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .lg\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .lg\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .lg\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .lg\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .lg\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .lg\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .lg\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .lg\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .lg\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .lg\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .lg\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .lg\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .lg\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .lg\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .lg\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .lg\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .lg\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .lg\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .lg\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .lg\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .lg\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .lg\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .lg\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .lg\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .lg\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .lg\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .lg\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .lg\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .lg\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .lg\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .lg\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .lg\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .lg\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .lg\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .lg\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .lg\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .lg\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .lg\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .lg\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .lg\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .lg\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .lg\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .lg\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .lg\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .lg\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .lg\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .lg\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .lg\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .lg\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .lg\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .lg\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .lg\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .lg\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .lg\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .lg\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .lg\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .lg\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .lg\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .lg\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .lg\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .lg\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .lg\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .lg\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .lg\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .lg\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .lg\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .lg\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .lg\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .lg\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .lg\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .lg\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .lg\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .lg\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .lg\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .lg\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .lg\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .lg\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .lg\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .lg\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .lg\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .lg\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .lg\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .lg\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .lg\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .lg\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .lg\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .lg\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .lg\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .lg\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .lg\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .lg\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .lg\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .lg\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .lg\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .lg\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .lg\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .lg\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .lg\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .lg\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .lg\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .lg\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .lg\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .lg\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .lg\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .lg\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .lg\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .lg\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .lg\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .lg\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .lg\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .lg\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .lg\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .lg\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .lg\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .lg\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .lg\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .lg\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .lg\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .lg\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .lg\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .lg\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .lg\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .lg\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .lg\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .lg\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .lg\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .lg\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .lg\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .lg\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .lg\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .lg\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .lg\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .lg\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .lg\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .lg\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .lg\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .lg\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .lg\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .lg\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .lg\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .lg\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .lg\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .lg\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .lg\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .lg\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .lg\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .lg\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .lg\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .lg\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .lg\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .lg\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .lg\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .lg\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .lg\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .lg\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .lg\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .lg\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .lg\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .lg\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .lg\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .lg\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .lg\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .lg\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .lg\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .lg\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .lg\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .lg\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .lg\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .lg\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .lg\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .lg\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .lg\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .lg\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .lg\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .lg\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .lg\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .lg\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .lg\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .lg\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .lg\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .lg\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .lg\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .lg\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .lg\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .lg\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .lg\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .lg\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .lg\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .lg\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .lg\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .lg\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .lg\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .lg\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .lg\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .lg\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .lg\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .lg\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .lg\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .lg\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .lg\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .lg\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .lg\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .lg\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .lg\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .lg\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .lg\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .lg\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .lg\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .lg\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .lg\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .lg\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .lg\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .lg\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .lg\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .lg\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .lg\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .lg\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .lg\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .lg\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .lg\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .lg\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .lg\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .lg\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .lg\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .lg\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .lg\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .lg\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .lg\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .lg\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .lg\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .lg\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .lg\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .lg\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .lg\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .lg\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .lg\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .lg\:filter-none { + filter: none; } - .lg\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .lg\:blur-0 { + --tw-blur: blur(0); } - .lg\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .lg\:blur-sm { + --tw-blur: blur(4px); } - .lg\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .lg\:blur { + --tw-blur: blur(8px); } - .lg\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .lg\:blur-md { + --tw-blur: blur(12px); } - .lg\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .lg\:blur-lg { + --tw-blur: blur(16px); } - .lg\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .lg\:blur-xl { + --tw-blur: blur(24px); } - .lg\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .lg\:blur-2xl { + --tw-blur: blur(40px); } - .lg\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .lg\:blur-3xl { + --tw-blur: blur(64px); } - .lg\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .lg\:brightness-0 { + --tw-brightness: brightness(0); } - .lg\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .lg\:brightness-50 { + --tw-brightness: brightness(.5); } - .lg\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .lg\:brightness-75 { + --tw-brightness: brightness(.75); } - .lg\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .lg\:brightness-90 { + --tw-brightness: brightness(.9); } - .lg\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .lg\:brightness-95 { + --tw-brightness: brightness(.95); } - .lg\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .lg\:brightness-100 { + --tw-brightness: brightness(1); } - .lg\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .lg\:brightness-105 { + --tw-brightness: brightness(1.05); } - .lg\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .lg\:brightness-110 { + --tw-brightness: brightness(1.1); } - .lg\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .lg\:brightness-125 { + --tw-brightness: brightness(1.25); } - .lg\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .lg\:brightness-150 { + --tw-brightness: brightness(1.5); } - .lg\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .lg\:brightness-200 { + --tw-brightness: brightness(2); } - .lg\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .lg\:contrast-0 { + --tw-contrast: contrast(0); } - .lg\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .lg\:contrast-50 { + --tw-contrast: contrast(.5); } - .lg\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .lg\:contrast-75 { + --tw-contrast: contrast(.75); } - .lg\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .lg\:contrast-100 { + --tw-contrast: contrast(1); } - .lg\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .lg\:contrast-125 { + --tw-contrast: contrast(1.25); } - .lg\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .lg\:contrast-150 { + --tw-contrast: contrast(1.5); } - .lg\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .lg\:contrast-200 { + --tw-contrast: contrast(2); } - .lg\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .lg\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .lg\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .lg\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .lg\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .lg\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .lg\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .lg\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .lg\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .lg\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .lg\:skew-x-0 { - --tw-skew-x: 0deg; + .lg\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .lg\:skew-x-1 { - --tw-skew-x: 1deg; + .lg\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .lg\:skew-x-2 { - --tw-skew-x: 2deg; + .lg\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .lg\:skew-x-3 { - --tw-skew-x: 3deg; + .lg\:grayscale { + --tw-grayscale: grayscale(100%); } - .lg\:skew-x-6 { - --tw-skew-x: 6deg; + .lg\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .lg\:skew-x-12 { - --tw-skew-x: 12deg; + .lg\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .lg\:-skew-x-12 { - --tw-skew-x: -12deg; + .lg\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .lg\:-skew-x-6 { - --tw-skew-x: -6deg; + .lg\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .lg\:-skew-x-3 { - --tw-skew-x: -3deg; + .lg\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .lg\:-skew-x-2 { - --tw-skew-x: -2deg; + .lg\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .lg\:-skew-x-1 { - --tw-skew-x: -1deg; + .lg\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .lg\:skew-y-0 { - --tw-skew-y: 0deg; + .lg\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .lg\:skew-y-1 { - --tw-skew-y: 1deg; + .lg\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .lg\:skew-y-2 { - --tw-skew-y: 2deg; + .lg\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .lg\:skew-y-3 { - --tw-skew-y: 3deg; + .lg\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .lg\:skew-y-6 { - --tw-skew-y: 6deg; + .lg\:invert-0 { + --tw-invert: invert(0); } - .lg\:skew-y-12 { - --tw-skew-y: 12deg; + .lg\:invert { + --tw-invert: invert(100%); } - .lg\:-skew-y-12 { - --tw-skew-y: -12deg; + .lg\:saturate-0 { + --tw-saturate: saturate(0); } - .lg\:-skew-y-6 { - --tw-skew-y: -6deg; + .lg\:saturate-50 { + --tw-saturate: saturate(.5); } - .lg\:-skew-y-3 { - --tw-skew-y: -3deg; + .lg\:saturate-100 { + --tw-saturate: saturate(1); } - .lg\:-skew-y-2 { - --tw-skew-y: -2deg; + .lg\:saturate-150 { + --tw-saturate: saturate(1.5); } - .lg\:-skew-y-1 { - --tw-skew-y: -1deg; + .lg\:saturate-200 { + --tw-saturate: saturate(2); } - .lg\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .lg\:sepia-0 { + --tw-sepia: sepia(0); } - .lg\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .lg\:sepia { + --tw-sepia: sepia(100%); } - .lg\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .lg\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .lg\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .lg\:backdrop-filter-none { + backdrop-filter: none; } - .lg\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .lg\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .lg\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .lg\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .lg\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .lg\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .lg\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .lg\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .lg\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .lg\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .lg\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .lg\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .lg\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .lg\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .lg\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .lg\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .lg\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .lg\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .lg\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .lg\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .lg\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .lg\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .lg\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .lg\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .lg\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .lg\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .lg\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .lg\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .lg\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + .lg\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .lg\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + .lg\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .lg\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + .lg\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .lg\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + .lg\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .lg\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + .lg\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .lg\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .lg\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .lg\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .lg\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .lg\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .lg\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .lg\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .lg\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .lg\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .lg\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .lg\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .lg\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .lg\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .lg\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .lg\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .lg\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .lg\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .lg\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .lg\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .lg\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .lg\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .lg\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .lg\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .lg\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .lg\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .lg\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .lg\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .lg\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .lg\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .lg\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .lg\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .lg\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .lg\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .lg\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .lg\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .lg\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .lg\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .lg\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .lg\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .lg\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .lg\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .lg\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } .lg\:transition-none { @@ -116517,6 +117079,70 @@ video { transition-duration: 150ms; } + .lg\:delay-75 { + transition-delay: 75ms; + } + + .lg\:delay-100 { + transition-delay: 100ms; + } + + .lg\:delay-150 { + transition-delay: 150ms; + } + + .lg\:delay-200 { + transition-delay: 200ms; + } + + .lg\:delay-300 { + transition-delay: 300ms; + } + + .lg\:delay-500 { + transition-delay: 500ms; + } + + .lg\:delay-700 { + transition-delay: 700ms; + } + + .lg\:delay-1000 { + transition-delay: 1000ms; + } + + .lg\:duration-75 { + transition-duration: 75ms; + } + + .lg\:duration-100 { + transition-duration: 100ms; + } + + .lg\:duration-150 { + transition-duration: 150ms; + } + + .lg\:duration-200 { + transition-duration: 200ms; + } + + .lg\:duration-300 { + transition-duration: 300ms; + } + + .lg\:duration-500 { + transition-duration: 500ms; + } + + .lg\:duration-700 { + transition-duration: 700ms; + } + + .lg\:duration-1000 { + transition-duration: 1000ms; + } + .lg\:ease-linear { transition-timing-function: linear; } @@ -116533,22319 +117159,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .lg\:duration-75 { - transition-duration: 75ms; + .lg\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 1280px) { + .xl\:container { + width: 100%; + } + + @media (min-width: 640px) { + .xl\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .xl\:container { + max-width: 768px; + } } - .lg\:duration-100 { - transition-duration: 100ms; + @media (min-width: 1024px) { + .xl\:container { + max-width: 1024px; + } } - .lg\:duration-150 { - transition-duration: 150ms; + @media (min-width: 1280px) { + .xl\:container { + max-width: 1280px; + } } - .lg\:duration-200 { - transition-duration: 200ms; + @media (min-width: 1536px) { + .xl\:container { + max-width: 1536px; + } } - .lg\:duration-300 { - transition-duration: 300ms; + .xl\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .lg\:duration-500 { - transition-duration: 500ms; + .xl\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .lg\:duration-700 { - transition-duration: 700ms; + .xl\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .lg\:duration-1000 { - transition-duration: 1000ms; + .xl\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .lg\:delay-75 { - transition-delay: 75ms; + .xl\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .lg\:delay-100 { - transition-delay: 100ms; + .xl\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .lg\:delay-150 { - transition-delay: 150ms; + .xl\:pointer-events-none { + pointer-events: none; } - .lg\:delay-200 { - transition-delay: 200ms; + .xl\:pointer-events-auto { + pointer-events: auto; } - .lg\:delay-300 { - transition-delay: 300ms; + .xl\:visible { + visibility: visible; } - .lg\:delay-500 { - transition-delay: 500ms; + .xl\:invisible { + visibility: hidden; } - .lg\:delay-700 { - transition-delay: 700ms; + .xl\:static { + position: static; } - .lg\:delay-1000 { - transition-delay: 1000ms; + .xl\:fixed { + position: fixed; } - .lg\:animate-none { - animation: none; + .xl\:absolute { + position: absolute; } - .lg\:animate-spin { - animation: spin 1s linear infinite; + .xl\:relative { + position: relative; } - .lg\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .xl\:sticky { + position: sticky; } - .lg\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .xl\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .lg\:animate-bounce { - animation: bounce 1s infinite; + .xl\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .lg\:mix-blend-normal { - mix-blend-mode: normal; + .xl\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .lg\:mix-blend-multiply { - mix-blend-mode: multiply; + .xl\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .lg\:mix-blend-screen { - mix-blend-mode: screen; + .xl\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .lg\:mix-blend-overlay { - mix-blend-mode: overlay; + .xl\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .lg\:mix-blend-darken { - mix-blend-mode: darken; + .xl\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .lg\:mix-blend-lighten { - mix-blend-mode: lighten; + .xl\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .lg\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .xl\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .lg\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .xl\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .lg\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .xl\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .lg\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .xl\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .lg\:mix-blend-difference { - mix-blend-mode: difference; + .xl\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .lg\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .xl\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .lg\:mix-blend-hue { - mix-blend-mode: hue; + .xl\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .lg\:mix-blend-saturation { - mix-blend-mode: saturation; + .xl\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .lg\:mix-blend-color { - mix-blend-mode: color; + .xl\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .lg\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .xl\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .lg\:bg-blend-normal { - background-blend-mode: normal; + .xl\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .lg\:bg-blend-multiply { - background-blend-mode: multiply; + .xl\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .lg\:bg-blend-screen { - background-blend-mode: screen; + .xl\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .lg\:bg-blend-overlay { - background-blend-mode: overlay; + .xl\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .lg\:bg-blend-darken { - background-blend-mode: darken; + .xl\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .lg\:bg-blend-lighten { - background-blend-mode: lighten; + .xl\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .lg\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .xl\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .lg\:bg-blend-color-burn { - background-blend-mode: color-burn; + .xl\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .lg\:bg-blend-hard-light { - background-blend-mode: hard-light; + .xl\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .lg\:bg-blend-soft-light { - background-blend-mode: soft-light; + .xl\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .lg\:bg-blend-difference { - background-blend-mode: difference; + .xl\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .lg\:bg-blend-exclusion { - background-blend-mode: exclusion; + .xl\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .lg\:bg-blend-hue { - background-blend-mode: hue; + .xl\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .lg\:bg-blend-saturation { - background-blend-mode: saturation; + .xl\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .lg\:bg-blend-color { - background-blend-mode: color; + .xl\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .lg\:bg-blend-luminosity { - background-blend-mode: luminosity; + .xl\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .lg\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .xl\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .lg\:filter-none { - filter: none; + .xl\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .lg\:blur-0 { - --tw-blur: blur(0); + .xl\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .lg\:blur-sm { - --tw-blur: blur(4px); + .xl\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .lg\:blur { - --tw-blur: blur(8px); + .xl\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .lg\:blur-md { - --tw-blur: blur(12px); + .xl\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .lg\:blur-lg { - --tw-blur: blur(16px); + .xl\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .lg\:blur-xl { - --tw-blur: blur(24px); + .xl\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .lg\:blur-2xl { - --tw-blur: blur(40px); + .xl\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .lg\:blur-3xl { - --tw-blur: blur(64px); + .xl\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .lg\:brightness-0 { - --tw-brightness: brightness(0); + .xl\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .lg\:brightness-50 { - --tw-brightness: brightness(.5); + .xl\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .lg\:brightness-75 { - --tw-brightness: brightness(.75); + .xl\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .lg\:brightness-90 { - --tw-brightness: brightness(.9); + .xl\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .lg\:brightness-95 { - --tw-brightness: brightness(.95); + .xl\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .lg\:brightness-100 { - --tw-brightness: brightness(1); + .xl\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .lg\:brightness-105 { - --tw-brightness: brightness(1.05); + .xl\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .lg\:brightness-110 { - --tw-brightness: brightness(1.1); + .xl\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .lg\:brightness-125 { - --tw-brightness: brightness(1.25); + .xl\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .lg\:brightness-150 { - --tw-brightness: brightness(1.5); + .xl\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .lg\:brightness-200 { - --tw-brightness: brightness(2); + .xl\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .lg\:contrast-0 { - --tw-contrast: contrast(0); + .xl\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .lg\:contrast-50 { - --tw-contrast: contrast(.5); + .xl\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .lg\:contrast-75 { - --tw-contrast: contrast(.75); + .xl\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .lg\:contrast-100 { - --tw-contrast: contrast(1); + .xl\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .lg\:contrast-125 { - --tw-contrast: contrast(1.25); + .xl\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .lg\:contrast-150 { - --tw-contrast: contrast(1.5); + .xl\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .lg\:contrast-200 { - --tw-contrast: contrast(2); + .xl\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .lg\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .xl\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .lg\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .xl\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .lg\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .xl\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .lg\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .xl\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .lg\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .xl\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .lg\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .xl\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .lg\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .xl\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .lg\:grayscale-0 { - --tw-grayscale: grayscale(0); + .xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .lg\:grayscale { - --tw-grayscale: grayscale(100%); + .xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .lg\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .lg\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .lg\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .lg\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .lg\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .lg\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .lg\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .lg\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .lg\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .lg\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .lg\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .lg\:invert-0 { - --tw-invert: invert(0); + .xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .lg\:invert { - --tw-invert: invert(100%); + .xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .lg\:saturate-0 { - --tw-saturate: saturate(0); + .xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .lg\:saturate-50 { - --tw-saturate: saturate(.5); + .xl\:inset-y-0 { + top: 0px; + bottom: 0px; } - .lg\:saturate-100 { - --tw-saturate: saturate(1); + .xl\:inset-x-0 { + right: 0px; + left: 0px; } - .lg\:saturate-150 { - --tw-saturate: saturate(1.5); + .xl\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .lg\:saturate-200 { - --tw-saturate: saturate(2); + .xl\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .lg\:sepia-0 { - --tw-sepia: sepia(0); + .xl\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .lg\:sepia { - --tw-sepia: sepia(100%); + .xl\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .lg\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .xl\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .lg\:backdrop-filter-none { - backdrop-filter: none; + .xl\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .lg\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .xl\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .lg\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .xl\:inset-x-4 { + right: 1rem; + left: 1rem; } - .lg\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .xl\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .lg\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .xl\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .lg\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .xl\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .lg\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .xl\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .lg\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .xl\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .lg\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .xl\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .lg\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .xl\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .lg\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .xl\:inset-x-8 { + right: 2rem; + left: 2rem; } - .lg\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .xl\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .lg\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .xl\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .lg\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .xl\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .lg\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .xl\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .lg\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .xl\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .lg\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .xl\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .lg\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .xl\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .lg\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .xl\:inset-x-12 { + right: 3rem; + left: 3rem; } - .lg\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .xl\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .lg\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .xl\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .lg\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .xl\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .lg\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .xl\:inset-x-16 { + right: 4rem; + left: 4rem; } - .lg\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .xl\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .lg\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .xl\:inset-x-20 { + right: 5rem; + left: 5rem; } - .lg\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .xl\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .lg\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .xl\:inset-x-24 { + right: 6rem; + left: 6rem; } - .lg\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .xl\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .lg\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .xl\:inset-x-28 { + right: 7rem; + left: 7rem; } - .lg\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .xl\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .lg\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .xl\:inset-x-32 { + right: 8rem; + left: 8rem; } - .lg\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .xl\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .lg\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .xl\:inset-x-36 { + right: 9rem; + left: 9rem; } - .lg\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .xl\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .lg\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .xl\:inset-x-40 { + right: 10rem; + left: 10rem; } - .lg\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .xl\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .lg\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .xl\:inset-x-44 { + right: 11rem; + left: 11rem; } - .lg\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .xl\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .lg\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .xl\:inset-x-48 { + right: 12rem; + left: 12rem; } - .lg\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .xl\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .lg\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .xl\:inset-x-52 { + right: 13rem; + left: 13rem; } - .lg\:example { - font-weight: 700; - color: #ef4444; + .xl\:inset-y-56 { + top: 14rem; + bottom: 14rem; } -} -@media (min-width: 1280px) { - .xl\:container { - width: 100%; + .xl\:inset-x-56 { + right: 14rem; + left: 14rem; } - @media (min-width: 640px) { - .xl\:container { - max-width: 640px; - } + .xl\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - @media (min-width: 768px) { - .xl\:container { - max-width: 768px; - } + .xl\:inset-x-60 { + right: 15rem; + left: 15rem; } - @media (min-width: 1024px) { - .xl\:container { - max-width: 1024px; - } + .xl\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - @media (min-width: 1280px) { - .xl\:container { - max-width: 1280px; - } + .xl\:inset-x-64 { + right: 16rem; + left: 16rem; } - @media (min-width: 1536px) { - .xl\:container { - max-width: 1536px; - } + .xl\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .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\:inset-x-72 { + right: 18rem; + left: 18rem; } - .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\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .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\:inset-x-80 { + right: 20rem; + left: 20rem; } - .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\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .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\:inset-x-96 { + right: 24rem; + left: 24rem; } - .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\:inset-y-auto { + top: auto; + bottom: auto; } - .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\:inset-x-auto { + right: auto; + left: auto; } - .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\:inset-y-px { + top: 1px; + bottom: 1px; } - .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\:inset-x-px { + right: 1px; + left: 1px; } - .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\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .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\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .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\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .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\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .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\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .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\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .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\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .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\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .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\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .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\:-inset-x-0 { + right: 0px; + left: 0px; } - .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\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .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\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .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\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .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\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .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\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .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\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .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\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .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\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .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\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .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\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } - .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\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - .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\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - .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\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - .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\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - .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\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - .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\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .xl\:right-6 { + right: 1.5rem; } - .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .xl\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .xl\:right-9 { + right: 2.25rem; } - .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .xl\:bottom-9 { + bottom: 2.25rem; } - .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .xl\:left-9 { + left: 2.25rem; } - .xl\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .xl\:top-10 { + top: 2.5rem; } - .xl\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + .xl\:right-10 { + right: 2.5rem; } - .xl\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + .xl\:bottom-10 { + bottom: 2.5rem; } - .xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + .xl\:left-10 { + left: 2.5rem; } - .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + .xl\:top-11 { + top: 2.75rem; } - .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + .xl\:right-11 { + right: 2.75rem; } - .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + .xl\:bottom-11 { + bottom: 2.75rem; } - .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + .xl\:left-11 { + left: 2.75rem; } - .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + .xl\:top-12 { + top: 3rem; } - .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + .xl\:right-12 { + right: 3rem; } - .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + .xl\:bottom-12 { + bottom: 3rem; } - .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + .xl\:left-12 { + left: 3rem; } - .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + .xl\:top-14 { + top: 3.5rem; } - .xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); + .xl\:right-14 { + right: 3.5rem; } - .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); + .xl\:bottom-14 { + bottom: 3.5rem; } - .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); + .xl\:left-14 { + left: 3.5rem; } - .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); + .xl\:top-16 { + top: 4rem; } - .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); + .xl\:right-16 { + right: 4rem; } - .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); + .xl\:bottom-16 { + bottom: 4rem; } - .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); + .xl\:left-16 { + left: 4rem; } - .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); + .xl\:top-20 { + top: 5rem; } - .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); + .xl\:right-20 { + right: 5rem; } - .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); + .xl\:bottom-20 { + bottom: 5rem; } - .xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); + .xl\:left-20 { + left: 5rem; } - .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); + .xl\:top-24 { + top: 6rem; } - .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); + .xl\:right-24 { + right: 6rem; } - .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); + .xl\:bottom-24 { + bottom: 6rem; } - .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); + .xl\:left-24 { + left: 6rem; } - .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + .xl\:top-28 { + top: 7rem; } - .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); + .xl\:right-28 { + right: 7rem; } - .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); + .xl\:bottom-28 { + bottom: 7rem; } - .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); + .xl\:left-28 { + left: 7rem; } - .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); + .xl\:top-32 { + top: 8rem; } - .xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); + .xl\:right-32 { + right: 8rem; } - .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); + .xl\:bottom-32 { + bottom: 8rem; } - .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); + .xl\:left-32 { + left: 8rem; } - .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); + .xl\:top-36 { + top: 9rem; } - .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); + .xl\:right-36 { + right: 9rem; } - .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); + .xl\:bottom-36 { + bottom: 9rem; } - .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); + .xl\:left-36 { + left: 9rem; } - .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); + .xl\:top-40 { + top: 10rem; } - .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); + .xl\:right-40 { + right: 10rem; } - .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); + .xl\:bottom-40 { + bottom: 10rem; } - .xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); + .xl\:left-40 { + left: 10rem; } - .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); + .xl\:top-44 { + top: 11rem; } - .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); + .xl\:right-44 { + right: 11rem; } - .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); + .xl\:bottom-44 { + bottom: 11rem; } - .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); + .xl\:left-44 { + left: 11rem; } - .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + .xl\:top-48 { + top: 12rem; } - .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); + .xl\:right-48 { + right: 12rem; } - .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); + .xl\:bottom-48 { + bottom: 12rem; } - .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); + .xl\:left-48 { + left: 12rem; } - .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); + .xl\:top-52 { + top: 13rem; } - .xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); + .xl\:right-52 { + right: 13rem; } - .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); + .xl\:bottom-52 { + bottom: 13rem; } - .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); + .xl\:left-52 { + left: 13rem; } - .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); + .xl\:top-56 { + top: 14rem; } - .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); + .xl\:right-56 { + right: 14rem; } - .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); + .xl\:bottom-56 { + bottom: 14rem; } - .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); + .xl\:left-56 { + left: 14rem; } - .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); + .xl\:top-60 { + top: 15rem; } - .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); + .xl\:right-60 { + right: 15rem; } - .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); + .xl\:bottom-60 { + bottom: 15rem; } - .xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); + .xl\:left-60 { + left: 15rem; } - .xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); + .xl\:top-64 { + top: 16rem; } - .xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); + .xl\:right-64 { + right: 16rem; } - .xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); + .xl\:bottom-64 { + bottom: 16rem; } - .xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); + .xl\:left-64 { + left: 16rem; } - .xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); + .xl\:top-72 { + top: 18rem; } - .xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); + .xl\:right-72 { + right: 18rem; } - .xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); + .xl\:bottom-72 { + bottom: 18rem; } - .xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); + .xl\:left-72 { + left: 18rem; } - .xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); + .xl\:top-80 { + top: 20rem; } - .xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); + .xl\:right-80 { + right: 20rem; } - .xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); + .xl\:bottom-80 { + bottom: 20rem; } - .xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); + .xl\:left-80 { + left: 20rem; } - .xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); + .xl\:top-96 { + top: 24rem; } - .xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); + .xl\:right-96 { + right: 24rem; } - .xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); + .xl\:bottom-96 { + bottom: 24rem; } - .xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); + .xl\:left-96 { + left: 24rem; } - .xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); + .xl\:top-auto { + top: auto; } - .xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); + .xl\:right-auto { + right: auto; } - .xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); + .xl\:bottom-auto { + bottom: auto; } - .xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .xl\:left-auto { + left: auto; } - .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .xl\:top-px { + top: 1px; } - .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .xl\:right-px { + right: 1px; } - .xl\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .xl\:bottom-px { + bottom: 1px; } - .xl\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .xl\:left-px { + left: 1px; } - .xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; + .xl\:top-0\.5 { + top: 0.125rem; } - .xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; + .xl\:right-0\.5 { + right: 0.125rem; } - .xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; + .xl\:bottom-0\.5 { + bottom: 0.125rem; } - .xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; + .xl\:left-0\.5 { + left: 0.125rem; } - .xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; + .xl\:top-1\.5 { + top: 0.375rem; } - .xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; + .xl\:right-1\.5 { + right: 0.375rem; } - .xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; + .xl\:bottom-1\.5 { + bottom: 0.375rem; } - .xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; + .xl\:left-1\.5 { + left: 0.375rem; } - .xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; + .xl\:top-2\.5 { + top: 0.625rem; } - .xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; + .xl\:right-2\.5 { + right: 0.625rem; } - .xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; + .xl\:bottom-2\.5 { + bottom: 0.625rem; } - .xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; + .xl\:left-2\.5 { + left: 0.625rem; } - .xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; + .xl\:top-3\.5 { + top: 0.875rem; } - .xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; + .xl\:right-3\.5 { + right: 0.875rem; } - .xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; + .xl\:bottom-3\.5 { + bottom: 0.875rem; } - .xl\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .xl\:left-3\.5 { + left: 0.875rem; } - .xl\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .xl\:-top-0 { + top: 0px; } - .xl\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .xl\:-right-0 { + right: 0px; } - .xl\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .xl\:-bottom-0 { + bottom: 0px; } - .xl\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .xl\:-left-0 { + left: 0px; } - .xl\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .xl\:-top-1 { + top: -0.25rem; } - .xl\:appearance-none { - appearance: none; + .xl\:-right-1 { + right: -0.25rem; } - .xl\:bg-fixed { - background-attachment: fixed; + .xl\:-bottom-1 { + bottom: -0.25rem; } - .xl\:bg-local { - background-attachment: local; + .xl\:-left-1 { + left: -0.25rem; } - .xl\:bg-scroll { - background-attachment: scroll; + .xl\:-top-2 { + top: -0.5rem; } - .xl\:bg-clip-border { - background-clip: border-box; + .xl\:-right-2 { + right: -0.5rem; } - .xl\:bg-clip-padding { - background-clip: padding-box; + .xl\:-bottom-2 { + bottom: -0.5rem; } - .xl\:bg-clip-content { - background-clip: content-box; + .xl\:-left-2 { + left: -0.5rem; } - .xl\:bg-clip-text { - background-clip: text; + .xl\:-top-3 { + top: -0.75rem; } - .xl\:bg-transparent { - background-color: transparent; + .xl\:-right-3 { + right: -0.75rem; } - .xl\:bg-current { - background-color: currentColor; + .xl\:-bottom-3 { + bottom: -0.75rem; } - .xl\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .xl\:-left-3 { + left: -0.75rem; } - .xl\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .xl\:-top-4 { + top: -1rem; } - .xl\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .xl\:-right-4 { + right: -1rem; } - .xl\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .xl\:-bottom-4 { + bottom: -1rem; } - .xl\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .xl\:-left-4 { + left: -1rem; } - .xl\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .xl\:-top-5 { + top: -1.25rem; } - .xl\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .xl\:-right-5 { + right: -1.25rem; } - .xl\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .xl\:-bottom-5 { + bottom: -1.25rem; } - .xl\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .xl\:-left-5 { + left: -1.25rem; } - .xl\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .xl\:-top-6 { + top: -1.5rem; } - .xl\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .xl\:-right-6 { + right: -1.5rem; } - .xl\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .xl\:-bottom-6 { + bottom: -1.5rem; } - .xl\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .xl\:-left-6 { + left: -1.5rem; } - .xl\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .xl\:-top-7 { + top: -1.75rem; } - .xl\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .xl\:-right-7 { + right: -1.75rem; } - .xl\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .xl\:-bottom-7 { + bottom: -1.75rem; } - .xl\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .xl\:-left-7 { + left: -1.75rem; } - .xl\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .xl\:-top-8 { + top: -2rem; } - .xl\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .xl\:-right-8 { + right: -2rem; } - .xl\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .xl\:-bottom-8 { + bottom: -2rem; } - .xl\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .xl\:-left-8 { + left: -2rem; } - .xl\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .xl\:-top-9 { + top: -2.25rem; } - .xl\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .xl\:-right-9 { + right: -2.25rem; } - .xl\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .xl\:-bottom-9 { + bottom: -2.25rem; } - .xl\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .xl\:-left-9 { + left: -2.25rem; } - .xl\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .xl\:-top-10 { + top: -2.5rem; } - .xl\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .xl\:-right-10 { + right: -2.5rem; } - .xl\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .xl\:-bottom-10 { + bottom: -2.5rem; } - .xl\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .xl\:-left-10 { + left: -2.5rem; } - .xl\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .xl\:-top-11 { + top: -2.75rem; } - .xl\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .xl\:-right-11 { + right: -2.75rem; } - .xl\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .xl\:-bottom-11 { + bottom: -2.75rem; } - .xl\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .xl\:-left-11 { + left: -2.75rem; } - .xl\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .xl\:-top-12 { + top: -3rem; } - .xl\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .xl\:-right-12 { + right: -3rem; } - .xl\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .xl\:-bottom-12 { + bottom: -3rem; } - .xl\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .xl\:-left-12 { + left: -3rem; } - .xl\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .xl\:-top-14 { + top: -3.5rem; } - .xl\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .xl\:-right-14 { + right: -3.5rem; } - .xl\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .xl\:-bottom-14 { + bottom: -3.5rem; } - .xl\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .xl\:-left-14 { + left: -3.5rem; } - .xl\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .xl\:-top-16 { + top: -4rem; } - .xl\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .xl\:-right-16 { + right: -4rem; } - .xl\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .xl\:-bottom-16 { + bottom: -4rem; } - .xl\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .xl\:-left-16 { + left: -4rem; } - .xl\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .xl\:-top-20 { + top: -5rem; } - .xl\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .xl\:-right-20 { + right: -5rem; } - .xl\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .xl\:-bottom-20 { + bottom: -5rem; } - .xl\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .xl\:-left-20 { + left: -5rem; } - .xl\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .xl\:-top-24 { + top: -6rem; } - .xl\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .xl\:-right-24 { + right: -6rem; } - .xl\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .xl\:-bottom-24 { + bottom: -6rem; } - .xl\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .xl\:-left-24 { + left: -6rem; } - .xl\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .xl\:-top-28 { + top: -7rem; } - .xl\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .xl\:-right-28 { + right: -7rem; } - .xl\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .xl\:-bottom-28 { + bottom: -7rem; } - .xl\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .xl\:-left-28 { + left: -7rem; } - .xl\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .xl\:-top-32 { + top: -8rem; } - .xl\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .xl\:-right-32 { + right: -8rem; } - .xl\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .xl\:-bottom-32 { + bottom: -8rem; } - .xl\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .xl\:-left-32 { + left: -8rem; } - .xl\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .xl\:-top-36 { + top: -9rem; } - .xl\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .xl\:-right-36 { + right: -9rem; } - .xl\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .xl\:-bottom-36 { + bottom: -9rem; } - .xl\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .xl\:-left-36 { + left: -9rem; } - .xl\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .xl\:-top-40 { + top: -10rem; } - .xl\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .xl\:-right-40 { + right: -10rem; } - .xl\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .xl\:-bottom-40 { + bottom: -10rem; } - .xl\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .xl\:-left-40 { + left: -10rem; } - .xl\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .xl\:-top-44 { + top: -11rem; } - .xl\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .xl\:-right-44 { + right: -11rem; } - .xl\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .xl\:-bottom-44 { + bottom: -11rem; } - .xl\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .xl\:-left-44 { + left: -11rem; } - .xl\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .xl\:-top-48 { + top: -12rem; } - .xl\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .xl\:-right-48 { + right: -12rem; } - .xl\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .xl\:-bottom-48 { + bottom: -12rem; } - .xl\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .xl\:-left-48 { + left: -12rem; } - .xl\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .xl\:-top-52 { + top: -13rem; } - .xl\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .xl\:-right-52 { + right: -13rem; } - .xl\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .xl\:-bottom-52 { + bottom: -13rem; + } + + .xl\:-left-52 { + left: -13rem; } - .xl\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .xl\:-top-56 { + top: -14rem; } - .xl\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .xl\:-right-56 { + right: -14rem; } - .group:hover .xl\:group-hover\:bg-transparent { - background-color: transparent; + .xl\:-bottom-56 { + bottom: -14rem; } - .group:hover .xl\:group-hover\:bg-current { - background-color: currentColor; + .xl\:-left-56 { + left: -14rem; } - .group:hover .xl\:group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .xl\:-top-60 { + top: -15rem; } - .group:hover .xl\:group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .xl\:-right-60 { + right: -15rem; } - .group:hover .xl\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .xl\:-bottom-60 { + bottom: -15rem; } - .group:hover .xl\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .xl\:-left-60 { + left: -15rem; } - .group:hover .xl\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .xl\:-top-64 { + top: -16rem; } - .group:hover .xl\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .xl\:-right-64 { + right: -16rem; } - .group:hover .xl\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .xl\:-bottom-64 { + bottom: -16rem; } - .group:hover .xl\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .xl\:-left-64 { + left: -16rem; } - .group:hover .xl\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .xl\:-top-72 { + top: -18rem; } - .group:hover .xl\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .xl\:-right-72 { + right: -18rem; } - .group:hover .xl\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .xl\:-bottom-72 { + bottom: -18rem; } - .group:hover .xl\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .xl\:-left-72 { + left: -18rem; } - .group:hover .xl\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .xl\:-top-80 { + top: -20rem; } - .group:hover .xl\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .xl\:-right-80 { + right: -20rem; } - .group:hover .xl\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .xl\:-bottom-80 { + bottom: -20rem; } - .group:hover .xl\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .xl\:-left-80 { + left: -20rem; } - .group:hover .xl\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .xl\:-top-96 { + top: -24rem; } - .group:hover .xl\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .xl\:-right-96 { + right: -24rem; } - .group:hover .xl\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .xl\:-bottom-96 { + bottom: -24rem; } - .group:hover .xl\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .xl\:-left-96 { + left: -24rem; } - .group:hover .xl\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .xl\:-top-px { + top: -1px; } - .group:hover .xl\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .xl\:-right-px { + right: -1px; } - .group:hover .xl\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .xl\:-bottom-px { + bottom: -1px; } - .group:hover .xl\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .xl\:-left-px { + left: -1px; } - .group:hover .xl\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .xl\:-top-0\.5 { + top: -0.125rem; } - .group:hover .xl\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .xl\:-right-0\.5 { + right: -0.125rem; } - .group:hover .xl\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .xl\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .xl\:-left-0\.5 { + left: -0.125rem; } - .group:hover .xl\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .xl\:-top-1\.5 { + top: -0.375rem; } - .group:hover .xl\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .xl\:-right-1\.5 { + right: -0.375rem; } - .group:hover .xl\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .xl\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .xl\:-left-1\.5 { + left: -0.375rem; } - .group:hover .xl\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .xl\:-top-2\.5 { + top: -0.625rem; } - .group:hover .xl\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .xl\:-right-2\.5 { + right: -0.625rem; } - .group:hover .xl\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .xl\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .xl\:-left-2\.5 { + left: -0.625rem; } - .group:hover .xl\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .xl\:-top-3\.5 { + top: -0.875rem; } - .group:hover .xl\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .xl\:-right-3\.5 { + right: -0.875rem; } - .group:hover .xl\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .xl\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .xl\:-left-3\.5 { + left: -0.875rem; } - .group:hover .xl\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .xl\:top-1\/2 { + top: 50%; } - .group:hover .xl\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .xl\:right-1\/2 { + right: 50%; } - .group:hover .xl\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .xl\:bottom-1\/2 { + bottom: 50%; } - .group:hover .xl\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .xl\:left-1\/2 { + left: 50%; } - .group:hover .xl\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .xl\:top-1\/3 { + top: 33.333333%; } - .group:hover .xl\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .xl\:right-1\/3 { + right: 33.333333%; } - .group:hover .xl\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .xl\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .xl\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .xl\:left-1\/3 { + left: 33.333333%; } - .group:hover .xl\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .xl\:top-2\/3 { + top: 66.666667%; } - .group:hover .xl\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .xl\:right-2\/3 { + right: 66.666667%; } - .group:hover .xl\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .xl\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .xl\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .xl\:left-2\/3 { + left: 66.666667%; } - .group:hover .xl\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .xl\:top-1\/4 { + top: 25%; } - .group:hover .xl\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .xl\:right-1\/4 { + right: 25%; } - .group:hover .xl\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .xl\:bottom-1\/4 { + bottom: 25%; } - .group:hover .xl\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .xl\:left-1\/4 { + left: 25%; } - .group:hover .xl\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .xl\:top-2\/4 { + top: 50%; } - .group:hover .xl\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .xl\:right-2\/4 { + right: 50%; } - .group:hover .xl\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .xl\:bottom-2\/4 { + bottom: 50%; } - .group:hover .xl\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .xl\:left-2\/4 { + left: 50%; } - .group:hover .xl\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .xl\:top-3\/4 { + top: 75%; } - .group:hover .xl\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .xl\:right-3\/4 { + right: 75%; } - .group:hover .xl\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .xl\:bottom-3\/4 { + bottom: 75%; } - .group:hover .xl\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .xl\:left-3\/4 { + left: 75%; } - .group:hover .xl\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .xl\:top-full { + top: 100%; } - .group:hover .xl\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .xl\:right-full { + right: 100%; } - .group:hover .xl\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .xl\:bottom-full { + bottom: 100%; } - .group:hover .xl\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .xl\:left-full { + left: 100%; } - .group:hover .xl\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .xl\:-top-1\/2 { + top: -50%; } - .group:hover .xl\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .xl\:-right-1\/2 { + right: -50%; } - .group:hover .xl\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .xl\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .xl\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .xl\:-left-1\/2 { + left: -50%; } - .group:hover .xl\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .xl\:-top-1\/3 { + top: -33.333333%; } - .group:hover .xl\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .xl\:-right-1\/3 { + right: -33.333333%; } - .group:hover .xl\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .xl\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .xl\:-left-1\/3 { + left: -33.333333%; } - .group:hover .xl\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .xl\:-top-2\/3 { + top: -66.666667%; } - .group:hover .xl\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .xl\:-right-2\/3 { + right: -66.666667%; } - .group:hover .xl\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .xl\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .xl\:-left-2\/3 { + left: -66.666667%; } - .group:hover .xl\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .xl\:-top-1\/4 { + top: -25%; } - .group:hover .xl\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .xl\:-right-1\/4 { + right: -25%; } - .xl\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .xl\:-bottom-1\/4 { + bottom: -25%; } - .xl\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .xl\:-left-1\/4 { + left: -25%; } - .xl\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .xl\:-top-2\/4 { + top: -50%; } - .xl\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .xl\:-right-2\/4 { + right: -50%; } - .xl\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .xl\:-bottom-2\/4 { + bottom: -50%; } - .xl\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .xl\:-left-2\/4 { + left: -50%; } - .xl\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .xl\:-top-3\/4 { + top: -75%; } - .xl\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .xl\:-right-3\/4 { + right: -75%; } - .xl\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .xl\:-bottom-3\/4 { + bottom: -75%; } - .xl\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .xl\:-left-3\/4 { + left: -75%; } - .xl\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .xl\:-top-full { + top: -100%; } - .xl\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .xl\:-right-full { + right: -100%; } - .xl\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .xl\:-bottom-full { + bottom: -100%; } - .xl\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .xl\:-left-full { + left: -100%; } - .xl\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .xl\:isolate { + isolation: isolate; } - .xl\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .xl\:isolation-auto { + isolation: auto; } - .xl\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .xl\:z-0 { + z-index: 0; } - .xl\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .xl\:z-10 { + z-index: 10; } - .xl\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .xl\:z-20 { + z-index: 20; } - .xl\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .xl\:z-30 { + z-index: 30; } - .xl\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .xl\:z-40 { + z-index: 40; } - .xl\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .xl\:z-50 { + z-index: 50; } - .xl\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .xl\:z-auto { + z-index: auto; } - .xl\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .xl\:focus-within\:z-0:focus-within { + z-index: 0; } - .xl\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .xl\:focus-within\:z-10:focus-within { + z-index: 10; } - .xl\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .xl\:focus-within\:z-20:focus-within { + z-index: 20; } - .xl\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .xl\:focus-within\:z-30:focus-within { + z-index: 30; } - .xl\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .xl\:focus-within\:z-40:focus-within { + z-index: 40; } - .xl\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .xl\:focus-within\:z-50:focus-within { + z-index: 50; } - .xl\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .xl\:focus-within\:z-auto:focus-within { + z-index: auto; } - .xl\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .xl\:focus\:z-0:focus { + z-index: 0; } - .xl\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .xl\:focus\:z-10:focus { + z-index: 10; } - .xl\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .xl\:focus\:z-20:focus { + z-index: 20; } - .xl\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .xl\:focus\:z-30:focus { + z-index: 30; } - .xl\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .xl\:focus\:z-40:focus { + z-index: 40; } - .xl\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .xl\:focus\:z-50:focus { + z-index: 50; } - .xl\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .xl\:focus\:z-auto:focus { + z-index: auto; } - .xl\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .xl\:order-1 { + order: 1; } - .xl\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .xl\:order-2 { + order: 2; } - .xl\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .xl\:order-3 { + order: 3; } - .xl\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .xl\:order-4 { + order: 4; } - .xl\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .xl\:order-5 { + order: 5; } - .xl\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .xl\:order-6 { + order: 6; } - .xl\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .xl\:order-7 { + order: 7; } - .xl\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .xl\:order-8 { + order: 8; } - .xl\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .xl\:order-9 { + order: 9; } - .xl\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .xl\:order-10 { + order: 10; } - .xl\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .xl\:order-11 { + order: 11; } - .xl\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .xl\:order-12 { + order: 12; } - .xl\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .xl\:order-first { + order: -9999; } - .xl\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .xl\:order-last { + order: 9999; } - .xl\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .xl\:order-none { + order: 0; } - .xl\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .xl\:col-auto { + grid-column: auto; } - .xl\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .xl\:col-span-1 { + grid-column: span 1 / span 1; } - .xl\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .xl\:col-span-2 { + grid-column: span 2 / span 2; } - .xl\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .xl\:col-span-3 { + grid-column: span 3 / span 3; } - .xl\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .xl\:col-span-4 { + grid-column: span 4 / span 4; } - .xl\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .xl\:col-span-5 { + grid-column: span 5 / span 5; } - .xl\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .xl\:col-span-6 { + grid-column: span 6 / span 6; } - .xl\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .xl\:col-span-7 { + grid-column: span 7 / span 7; } - .xl\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .xl\:col-span-8 { + grid-column: span 8 / span 8; } - .xl\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .xl\:col-span-9 { + grid-column: span 9 / span 9; } - .xl\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .xl\:col-span-10 { + grid-column: span 10 / span 10; } - .xl\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .xl\:col-span-11 { + grid-column: span 11 / span 11; } - .xl\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .xl\:col-span-12 { + grid-column: span 12 / span 12; } - .xl\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .xl\:col-span-full { + grid-column: 1 / -1; } - .xl\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .xl\:col-start-1 { + grid-column-start: 1; } - .xl\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .xl\:col-start-2 { + grid-column-start: 2; } - .xl\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .xl\:col-start-3 { + grid-column-start: 3; } - .xl\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .xl\:col-start-4 { + grid-column-start: 4; } - .xl\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .xl\:col-start-5 { + grid-column-start: 5; } - .xl\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .xl\:col-start-6 { + grid-column-start: 6; } - .xl\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .xl\:col-start-7 { + grid-column-start: 7; } - .xl\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .xl\:col-start-8 { + grid-column-start: 8; } - .xl\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .xl\:col-start-9 { + grid-column-start: 9; } - .xl\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .xl\:col-start-10 { + grid-column-start: 10; } - .xl\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .xl\:col-start-11 { + grid-column-start: 11; } - .xl\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .xl\:col-start-12 { + grid-column-start: 12; } - .xl\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .xl\:col-start-13 { + grid-column-start: 13; } - .xl\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .xl\:col-start-auto { + grid-column-start: auto; } - .xl\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .xl\:col-end-1 { + grid-column-end: 1; } - .xl\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .xl\:col-end-2 { + grid-column-end: 2; } - .xl\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .xl\:col-end-3 { + grid-column-end: 3; } - .xl\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .xl\:col-end-4 { + grid-column-end: 4; } - .xl\:hover\:bg-transparent:hover { - background-color: transparent; + .xl\:col-end-5 { + grid-column-end: 5; } - .xl\:hover\:bg-current:hover { - background-color: currentColor; + .xl\:col-end-6 { + grid-column-end: 6; } - .xl\:hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .xl\:col-end-7 { + grid-column-end: 7; } - .xl\:hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .xl\:col-end-8 { + grid-column-end: 8; } - .xl\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .xl\:col-end-9 { + grid-column-end: 9; } - .xl\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .xl\:col-end-10 { + grid-column-end: 10; } - .xl\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .xl\:col-end-11 { + grid-column-end: 11; } - .xl\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .xl\:col-end-12 { + grid-column-end: 12; } - .xl\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .xl\:col-end-13 { + grid-column-end: 13; } - .xl\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .xl\:col-end-auto { + grid-column-end: auto; } - .xl\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .xl\:row-auto { + grid-row: auto; } - .xl\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .xl\:row-span-1 { + grid-row: span 1 / span 1; } - .xl\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .xl\:row-span-2 { + grid-row: span 2 / span 2; } - .xl\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .xl\:row-span-3 { + grid-row: span 3 / span 3; } - .xl\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .xl\:row-span-4 { + grid-row: span 4 / span 4; } - .xl\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .xl\:row-span-5 { + grid-row: span 5 / span 5; } - .xl\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .xl\:row-span-6 { + grid-row: span 6 / span 6; } - .xl\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .xl\:row-span-full { + grid-row: 1 / -1; } - .xl\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .xl\:row-start-1 { + grid-row-start: 1; } - .xl\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .xl\:row-start-2 { + grid-row-start: 2; } - .xl\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .xl\:row-start-3 { + grid-row-start: 3; } - .xl\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .xl\:row-start-4 { + grid-row-start: 4; } - .xl\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .xl\:row-start-5 { + grid-row-start: 5; } - .xl\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .xl\:row-start-6 { + grid-row-start: 6; } - .xl\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .xl\:row-start-7 { + grid-row-start: 7; } - .xl\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .xl\:row-start-auto { + grid-row-start: auto; } - .xl\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .xl\:row-end-1 { + grid-row-end: 1; } - .xl\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .xl\:row-end-2 { + grid-row-end: 2; } - .xl\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .xl\:row-end-3 { + grid-row-end: 3; } - .xl\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .xl\:row-end-4 { + grid-row-end: 4; } - .xl\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .xl\:row-end-5 { + grid-row-end: 5; } - .xl\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .xl\:row-end-6 { + grid-row-end: 6; } - .xl\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .xl\:row-end-7 { + grid-row-end: 7; } - .xl\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .xl\:row-end-auto { + grid-row-end: auto; } - .xl\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .xl\:float-right { + float: right; } - .xl\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .xl\:float-left { + float: left; } - .xl\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .xl\:float-none { + float: none; } - .xl\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .xl\:clear-left { + clear: left; } - .xl\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .xl\:clear-right { + clear: right; } - .xl\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .xl\:clear-both { + clear: both; } - .xl\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .xl\:clear-none { + clear: none; } - .xl\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .xl\:m-0 { + margin: 0px; } - .xl\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .xl\:m-1 { + margin: 0.25rem; } - .xl\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .xl\:m-2 { + margin: 0.5rem; } - .xl\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .xl\:m-3 { + margin: 0.75rem; } - .xl\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .xl\:m-4 { + margin: 1rem; } - .xl\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .xl\:m-5 { + margin: 1.25rem; } - .xl\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .xl\:m-6 { + margin: 1.5rem; } - .xl\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .xl\:m-7 { + margin: 1.75rem; } - .xl\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .xl\:m-8 { + margin: 2rem; } - .xl\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .xl\:m-9 { + margin: 2.25rem; } - .xl\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .xl\:m-10 { + margin: 2.5rem; } - .xl\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .xl\:m-11 { + margin: 2.75rem; } - .xl\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .xl\:m-12 { + margin: 3rem; } - .xl\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .xl\:m-14 { + margin: 3.5rem; } - .xl\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .xl\:m-16 { + margin: 4rem; } - .xl\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .xl\:m-20 { + margin: 5rem; } - .xl\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .xl\:m-24 { + margin: 6rem; } - .xl\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .xl\:m-28 { + margin: 7rem; } - .xl\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .xl\:m-32 { + margin: 8rem; } - .xl\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .xl\:m-36 { + margin: 9rem; } - .xl\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .xl\:m-40 { + margin: 10rem; } - .xl\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .xl\:m-44 { + margin: 11rem; } - .xl\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .xl\:m-48 { + margin: 12rem; } - .xl\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .xl\:m-52 { + margin: 13rem; } - .xl\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .xl\:m-56 { + margin: 14rem; } - .xl\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .xl\:m-60 { + margin: 15rem; } - .xl\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .xl\:m-64 { + margin: 16rem; } - .xl\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .xl\:m-72 { + margin: 18rem; } - .xl\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .xl\:m-80 { + margin: 20rem; } - .xl\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .xl\:m-96 { + margin: 24rem; } - .xl\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .xl\:m-auto { + margin: auto; } - .xl\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .xl\:m-px { + margin: 1px; } - .xl\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .xl\:m-0\.5 { + margin: 0.125rem; } - .xl\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .xl\:m-1\.5 { + margin: 0.375rem; } - .xl\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .xl\:m-2\.5 { + margin: 0.625rem; } - .xl\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .xl\:m-3\.5 { + margin: 0.875rem; } - .xl\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .xl\:-m-0 { + margin: 0px; } - .xl\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .xl\:-m-1 { + margin: -0.25rem; } - .xl\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .xl\:-m-2 { + margin: -0.5rem; } - .xl\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .xl\:-m-3 { + margin: -0.75rem; } - .xl\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .xl\:-m-4 { + margin: -1rem; } - .xl\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .xl\:-m-5 { + margin: -1.25rem; } - .xl\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .xl\:-m-6 { + margin: -1.5rem; } - .xl\:focus\:bg-transparent:focus { - background-color: transparent; + .xl\:-m-7 { + margin: -1.75rem; } - .xl\:focus\:bg-current:focus { - background-color: currentColor; + .xl\:-m-8 { + margin: -2rem; } - .xl\:focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .xl\:-m-9 { + margin: -2.25rem; } - .xl\:focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .xl\:-m-10 { + margin: -2.5rem; } - .xl\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .xl\:-m-11 { + margin: -2.75rem; } - .xl\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .xl\:-m-12 { + margin: -3rem; } - .xl\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .xl\:-m-14 { + margin: -3.5rem; } - .xl\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .xl\:-m-16 { + margin: -4rem; } - .xl\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .xl\:-m-20 { + margin: -5rem; } - .xl\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .xl\:-m-24 { + margin: -6rem; } - .xl\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .xl\:-m-28 { + margin: -7rem; } - .xl\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .xl\:-m-32 { + margin: -8rem; } - .xl\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .xl\:-m-36 { + margin: -9rem; } - .xl\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .xl\:-m-40 { + margin: -10rem; } - .xl\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .xl\:-m-44 { + margin: -11rem; } - .xl\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .xl\:-m-48 { + margin: -12rem; } - .xl\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .xl\:-m-52 { + margin: -13rem; } - .xl\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .xl\:-m-56 { + margin: -14rem; } - .xl\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .xl\:-m-60 { + margin: -15rem; } - .xl\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .xl\:-m-64 { + margin: -16rem; } - .xl\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .xl\:-m-72 { + margin: -18rem; } - .xl\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .xl\:-m-80 { + margin: -20rem; } - .xl\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .xl\:-m-96 { + margin: -24rem; } - .xl\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .xl\:-m-px { + margin: -1px; } - .xl\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .xl\:-m-0\.5 { + margin: -0.125rem; } - .xl\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .xl\:-m-1\.5 { + margin: -0.375rem; } - .xl\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .xl\:-m-2\.5 { + margin: -0.625rem; } - .xl\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .xl\:-m-3\.5 { + margin: -0.875rem; } - .xl\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .xl\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .xl\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .xl\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .xl\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .xl\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .xl\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .xl\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .xl\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .xl\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .xl\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .xl\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .xl\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .xl\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .xl\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .xl\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .xl\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .xl\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .xl\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .xl\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .xl\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .xl\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .xl\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .xl\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .xl\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .xl\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .xl\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .xl\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .xl\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .xl\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .xl\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .xl\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .xl\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .xl\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .xl\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .xl\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .xl\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .xl\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .xl\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .xl\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .xl\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .xl\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .xl\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .xl\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .xl\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .xl\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .xl\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .xl\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .xl\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .xl\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .xl\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .xl\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .xl\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .xl\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .xl\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .xl\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .xl\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .xl\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .xl\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .xl\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .xl\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .xl\:mx-auto { + margin-left: auto; + margin-right: auto; } - .xl\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .xl\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .xl\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .xl\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .xl\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .xl\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .xl\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .xl\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .xl\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .xl\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .xl\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .xl\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .xl\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .xl\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .xl\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .xl\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .xl\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .xl\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .xl\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .xl\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .xl\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .xl\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .xl\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .xl\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .xl\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .xl\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .xl\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .xl\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .xl\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .xl\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .xl\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .xl\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .xl\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .xl\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .xl\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .xl\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .xl\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .xl\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .xl\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .xl\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .xl\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .xl\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .xl\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .xl\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .xl\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .xl\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .xl\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .xl\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .xl\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .xl\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .xl\:bg-none { - background-image: none; + .xl\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .xl\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .xl\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .xl\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .xl\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .xl\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .xl\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .xl\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .xl\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .xl\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .xl\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .xl\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .xl\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .xl\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .xl\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .xl\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .xl\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .xl\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .xl\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .xl\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .xl\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .xl\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .xl\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .xl\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .xl\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .xl\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .xl\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .xl\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .xl\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .xl\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .xl\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .xl\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .xl\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .xl\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .xl\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .xl\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .xl\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .xl\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .xl\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .xl\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .xl\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .xl\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .xl\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .xl\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .xl\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .xl\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .xl\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .xl\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .xl\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .xl\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .xl\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .xl\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .xl\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .xl\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .xl\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .xl\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .xl\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .xl\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .xl\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .xl\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .xl\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .xl\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .xl\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .xl\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .xl\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .xl\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .xl\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .xl\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .xl\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .xl\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .xl\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .xl\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .xl\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .xl\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .xl\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .xl\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .xl\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .xl\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .xl\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .xl\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .xl\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .xl\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .xl\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .xl\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .xl\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .xl\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .xl\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .xl\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .xl\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .xl\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .xl\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .xl\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .xl\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .xl\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .xl\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:mt-0 { + margin-top: 0px; } - .xl\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:mt-1 { + margin-top: 0.25rem; } - .xl\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:mt-2 { + margin-top: 0.5rem; } - .xl\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:mt-3 { + margin-top: 0.75rem; } - .xl\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:mt-4 { + margin-top: 1rem; } - .xl\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:mt-5 { + margin-top: 1.25rem; } - .xl\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:mt-6 { + margin-top: 1.5rem; } - .xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:mt-7 { + margin-top: 1.75rem; } - .xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:mt-8 { + margin-top: 2rem; } - .xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:mt-9 { + margin-top: 2.25rem; } - .xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:mt-10 { + margin-top: 2.5rem; } - .xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:mt-11 { + margin-top: 2.75rem; } - .xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:mt-12 { + margin-top: 3rem; } - .xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:mt-14 { + margin-top: 3.5rem; } - .xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:mt-16 { + margin-top: 4rem; } - .xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:mt-20 { + margin-top: 5rem; } - .xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:mt-24 { + margin-top: 6rem; } - .xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:mt-28 { + margin-top: 7rem; } - .xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:mt-32 { + margin-top: 8rem; } - .xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:mt-36 { + margin-top: 9rem; } - .xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:mt-40 { + margin-top: 10rem; } - .xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:mt-44 { + margin-top: 11rem; } - .xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:mt-48 { + margin-top: 12rem; } - .xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:mt-52 { + margin-top: 13rem; } - .xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:mt-56 { + margin-top: 14rem; } - .xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:mt-60 { + margin-top: 15rem; } - .xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:mt-64 { + margin-top: 16rem; } - .xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:mt-72 { + margin-top: 18rem; } - .xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:mt-80 { + margin-top: 20rem; } - .xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:mt-96 { + margin-top: 24rem; } - .xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:mt-auto { + margin-top: auto; } - .xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:mt-px { + margin-top: 1px; } - .xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:mt-0\.5 { + margin-top: 0.125rem; } - .xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:mt-1\.5 { + margin-top: 0.375rem; } - .xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:mt-2\.5 { + margin-top: 0.625rem; } - .xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:mt-3\.5 { + margin-top: 0.875rem; } - .xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:-mt-0 { + margin-top: 0px; } - .xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:-mt-1 { + margin-top: -0.25rem; } - .xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:-mt-2 { + margin-top: -0.5rem; } - .xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:-mt-3 { + margin-top: -0.75rem; } - .xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:-mt-4 { + margin-top: -1rem; } - .xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:-mt-5 { + margin-top: -1.25rem; } - .xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:-mt-6 { + margin-top: -1.5rem; } - .xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:-mt-7 { + margin-top: -1.75rem; } - .xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:-mt-8 { + margin-top: -2rem; } - .xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:-mt-9 { + margin-top: -2.25rem; } - .xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:-mt-10 { + margin-top: -2.5rem; } - .xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:-mt-11 { + margin-top: -2.75rem; } - .xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:-mt-12 { + margin-top: -3rem; } - .xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:-mt-14 { + margin-top: -3.5rem; } - .xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:-mt-16 { + margin-top: -4rem; } - .xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:-mt-20 { + margin-top: -5rem; } - .xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:-mt-24 { + margin-top: -6rem; } - .xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:-mt-28 { + margin-top: -7rem; } - .xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:-mt-32 { + margin-top: -8rem; } - .xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:-mt-36 { + margin-top: -9rem; } - .xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:-mt-40 { + margin-top: -10rem; } - .xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:-mt-44 { + margin-top: -11rem; } - .xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:-mt-48 { + margin-top: -12rem; } - .xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:-mt-52 { + margin-top: -13rem; } - .xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:-mt-56 { + margin-top: -14rem; } - .xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:-mt-60 { + margin-top: -15rem; } - .xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:-mt-64 { + margin-top: -16rem; } - .xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:-mt-72 { + margin-top: -18rem; } - .xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:-mt-80 { + margin-top: -20rem; } - .xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:-mt-96 { + margin-top: -24rem; } - .xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:-mt-px { + margin-top: -1px; } - .xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:mr-0 { + margin-right: 0px; } - .xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:mr-1 { + margin-right: 0.25rem; } - .xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:mr-2 { + margin-right: 0.5rem; } - .xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:mr-3 { + margin-right: 0.75rem; } - .xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:mr-4 { + margin-right: 1rem; } - .xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:mr-5 { + margin-right: 1.25rem; } - .xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:mr-6 { + margin-right: 1.5rem; } - .xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:mr-7 { + margin-right: 1.75rem; } - .xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:mr-8 { + margin-right: 2rem; } - .xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:mr-9 { + margin-right: 2.25rem; } - .xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:mr-10 { + margin-right: 2.5rem; } - .xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:mr-11 { + margin-right: 2.75rem; } - .xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:mr-12 { + margin-right: 3rem; } - .xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:mr-14 { + margin-right: 3.5rem; } - .xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:mr-16 { + margin-right: 4rem; } - .xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:mr-20 { + margin-right: 5rem; } - .xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:mr-24 { + margin-right: 6rem; } - .xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:mr-28 { + margin-right: 7rem; } - .xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:mr-32 { + margin-right: 8rem; } - .xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:mr-36 { + margin-right: 9rem; } - .xl\:to-transparent { - --tw-gradient-to: transparent; + .xl\:mr-40 { + margin-right: 10rem; } - .xl\:to-current { - --tw-gradient-to: currentColor; + .xl\:mr-44 { + margin-right: 11rem; } - .xl\:to-black { - --tw-gradient-to: #000; + .xl\:mr-48 { + margin-right: 12rem; } - .xl\:to-white { - --tw-gradient-to: #fff; + .xl\:mr-52 { + margin-right: 13rem; } - .xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .xl\:mr-56 { + margin-right: 14rem; } - .xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .xl\:mr-60 { + margin-right: 15rem; } - .xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .xl\:mr-64 { + margin-right: 16rem; } - .xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .xl\:mr-72 { + margin-right: 18rem; } - .xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .xl\:mr-80 { + margin-right: 20rem; } - .xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .xl\:mr-96 { + margin-right: 24rem; } - .xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .xl\:mr-auto { + margin-right: auto; } - .xl\:to-gray-700 { - --tw-gradient-to: #374151; + .xl\:mr-px { + margin-right: 1px; } - .xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .xl\:mr-0\.5 { + margin-right: 0.125rem; } - .xl\:to-gray-900 { - --tw-gradient-to: #111827; + .xl\:mr-1\.5 { + margin-right: 0.375rem; } - .xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .xl\:mr-2\.5 { + margin-right: 0.625rem; } - .xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .xl\:mr-3\.5 { + margin-right: 0.875rem; } - .xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .xl\:-mr-0 { + margin-right: 0px; } - .xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .xl\:-mr-1 { + margin-right: -0.25rem; } - .xl\:to-red-400 { - --tw-gradient-to: #f87171; + .xl\:-mr-2 { + margin-right: -0.5rem; } - .xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .xl\:-mr-3 { + margin-right: -0.75rem; } - .xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .xl\:-mr-4 { + margin-right: -1rem; } - .xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .xl\:-mr-5 { + margin-right: -1.25rem; } - .xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .xl\:-mr-6 { + margin-right: -1.5rem; } - .xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .xl\:-mr-7 { + margin-right: -1.75rem; } - .xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .xl\:-mr-8 { + margin-right: -2rem; } - .xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .xl\:-mr-9 { + margin-right: -2.25rem; } - .xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .xl\:-mr-10 { + margin-right: -2.5rem; } - .xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .xl\:-mr-11 { + margin-right: -2.75rem; } - .xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .xl\:-mr-12 { + margin-right: -3rem; } - .xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .xl\:-mr-14 { + margin-right: -3.5rem; } - .xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .xl\:-mr-16 { + margin-right: -4rem; } - .xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .xl\:-mr-20 { + margin-right: -5rem; } - .xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .xl\:-mr-24 { + margin-right: -6rem; } - .xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .xl\:-mr-28 { + margin-right: -7rem; } - .xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .xl\:-mr-32 { + margin-right: -8rem; } - .xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .xl\:-mr-36 { + margin-right: -9rem; } - .xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .xl\:-mr-40 { + margin-right: -10rem; } - .xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .xl\:-mr-44 { + margin-right: -11rem; } - .xl\:to-green-400 { - --tw-gradient-to: #34d399; + .xl\:-mr-48 { + margin-right: -12rem; } - .xl\:to-green-500 { - --tw-gradient-to: #10b981; + .xl\:-mr-52 { + margin-right: -13rem; } - .xl\:to-green-600 { - --tw-gradient-to: #059669; + .xl\:-mr-56 { + margin-right: -14rem; } - .xl\:to-green-700 { - --tw-gradient-to: #047857; + .xl\:-mr-60 { + margin-right: -15rem; } - .xl\:to-green-800 { - --tw-gradient-to: #065f46; + .xl\:-mr-64 { + margin-right: -16rem; } - .xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .xl\:-mr-72 { + margin-right: -18rem; } - .xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .xl\:-mr-80 { + margin-right: -20rem; } - .xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .xl\:-mr-96 { + margin-right: -24rem; } - .xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .xl\:-mr-px { + margin-right: -1px; } - .xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .xl\:-mr-0\.5 { + margin-right: -0.125rem; } - .xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .xl\:-mr-1\.5 { + margin-right: -0.375rem; } - .xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .xl\:-mr-2\.5 { + margin-right: -0.625rem; } - .xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .xl\:-mr-3\.5 { + margin-right: -0.875rem; } - .xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .xl\:mb-0 { + margin-bottom: 0px; } - .xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .xl\:mb-1 { + margin-bottom: 0.25rem; } - .xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .xl\:mb-2 { + margin-bottom: 0.5rem; } - .xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .xl\:mb-3 { + margin-bottom: 0.75rem; } - .xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .xl\:mb-4 { + margin-bottom: 1rem; } - .xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .xl\:mb-5 { + margin-bottom: 1.25rem; } - .xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .xl\:mb-6 { + margin-bottom: 1.5rem; } - .xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .xl\:mb-7 { + margin-bottom: 1.75rem; } - .xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .xl\:mb-8 { + margin-bottom: 2rem; } - .xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .xl\:mb-9 { + margin-bottom: 2.25rem; } - .xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .xl\:mb-10 { + margin-bottom: 2.5rem; } - .xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .xl\:mb-11 { + margin-bottom: 2.75rem; } - .xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .xl\:mb-12 { + margin-bottom: 3rem; } - .xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .xl\:mb-14 { + margin-bottom: 3.5rem; } - .xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .xl\:mb-16 { + margin-bottom: 4rem; } - .xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .xl\:mb-20 { + margin-bottom: 5rem; } - .xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .xl\:mb-24 { + margin-bottom: 6rem; } - .xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .xl\:mb-28 { + margin-bottom: 7rem; } - .xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .xl\:mb-32 { + margin-bottom: 8rem; } - .xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .xl\:mb-36 { + margin-bottom: 9rem; } - .xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .xl\:mb-40 { + margin-bottom: 10rem; } - .xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .xl\:mb-44 { + margin-bottom: 11rem; } - .xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .xl\:mb-48 { + margin-bottom: 12rem; } - .xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .xl\:mb-52 { + margin-bottom: 13rem; } - .xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .xl\:mb-56 { + margin-bottom: 14rem; } - .xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .xl\:mb-60 { + margin-bottom: 15rem; } - .xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .xl\:mb-64 { + margin-bottom: 16rem; } - .xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .xl\:mb-72 { + margin-bottom: 18rem; } - .xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .xl\:mb-80 { + margin-bottom: 20rem; } - .xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .xl\:mb-96 { + margin-bottom: 24rem; } - .xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .xl\:mb-auto { + margin-bottom: auto; } - .xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .xl\:mb-px { + margin-bottom: 1px; } - .xl\:to-pink-900 { - --tw-gradient-to: #831843; + .xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .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\:mb-1\.5 { + margin-bottom: 0.375rem; } - .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\:mb-2\.5 { + margin-bottom: 0.625rem; } - .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\:mb-3\.5 { + margin-bottom: 0.875rem; } - .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\:-mb-0 { + margin-bottom: 0px; } - .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\:-mb-1 { + margin-bottom: -0.25rem; } - .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\:-mb-2 { + margin-bottom: -0.5rem; } - .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\:-mb-3 { + margin-bottom: -0.75rem; } - .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\:-mb-4 { + margin-bottom: -1rem; } - .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\:-mb-5 { + margin-bottom: -1.25rem; } - .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\:-mb-6 { + margin-bottom: -1.5rem; } - .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\:-mb-7 { + margin-bottom: -1.75rem; } - .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\:-mb-8 { + margin-bottom: -2rem; } - .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\:-mb-9 { + margin-bottom: -2.25rem; } - .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\:-mb-10 { + margin-bottom: -2.5rem; } - .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\:-mb-11 { + margin-bottom: -2.75rem; } - .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\:-mb-12 { + margin-bottom: -3rem; } - .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\:-mb-14 { + margin-bottom: -3.5rem; } - .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\:-mb-16 { + margin-bottom: -4rem; } - .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\:-mb-20 { + margin-bottom: -5rem; } - .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\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .xl\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:-ml-10 { + margin-left: -2.5rem; } - .xl\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:-ml-11 { + margin-left: -2.75rem; } - .xl\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:-ml-12 { + margin-left: -3rem; } - .xl\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:-ml-14 { + margin-left: -3.5rem; } - .xl\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:-ml-16 { + margin-left: -4rem; } - .xl\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:-ml-20 { + margin-left: -5rem; } - .xl\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:-ml-24 { + margin-left: -6rem; } - .xl\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:-ml-28 { + margin-left: -7rem; } - .xl\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:-ml-32 { + margin-left: -8rem; } - .xl\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:-ml-36 { + margin-left: -9rem; } - .xl\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:-ml-40 { + margin-left: -10rem; } - .xl\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:-ml-44 { + margin-left: -11rem; } - .xl\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:-ml-48 { + margin-left: -12rem; } - .xl\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:-ml-52 { + margin-left: -13rem; } - .xl\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:-ml-56 { + margin-left: -14rem; } - .xl\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:-ml-60 { + margin-left: -15rem; } - .xl\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:-ml-64 { + margin-left: -16rem; } - .xl\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:-ml-72 { + margin-left: -18rem; } - .xl\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:-ml-80 { + margin-left: -20rem; } - .xl\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:-ml-96 { + margin-left: -24rem; } - .xl\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:-ml-px { + margin-left: -1px; } - .xl\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:-ml-0\.5 { + margin-left: -0.125rem; } - .xl\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:-ml-1\.5 { + margin-left: -0.375rem; } - .xl\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:-ml-2\.5 { + margin-left: -0.625rem; } - .xl\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:-ml-3\.5 { + margin-left: -0.875rem; } - .xl\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:box-border { + box-sizing: border-box; } - .xl\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:box-content { + box-sizing: content-box; } - .xl\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:block { + display: block; } - .xl\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:inline-block { + display: inline-block; } - .xl\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:inline { + display: inline; } - .xl\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:flex { + display: flex; } - .xl\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:inline-flex { + display: inline-flex; } - .xl\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:table { + display: table; } - .xl\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:inline-table { + display: inline-table; } - .xl\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:table-caption { + display: table-caption; } - .xl\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:table-cell { + display: table-cell; } - .xl\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:table-column { + display: table-column; } - .xl\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:table-column-group { + display: table-column-group; } - .xl\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:table-footer-group { + display: table-footer-group; } - .xl\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:table-header-group { + display: table-header-group; } - .xl\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:table-row-group { + display: table-row-group; } - .xl\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:table-row { + display: table-row; } - .xl\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:flow-root { + display: flow-root; } - .xl\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:grid { + display: grid; } - .xl\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:inline-grid { + display: inline-grid; } - .xl\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:contents { + display: contents; } - .xl\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:list-item { + display: list-item; } - .xl\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:hidden { + display: none; } - .xl\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:h-0 { + height: 0px; } - .xl\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:h-1 { + height: 0.25rem; } - .xl\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:h-2 { + height: 0.5rem; } - .xl\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:h-3 { + height: 0.75rem; } - .xl\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:h-4 { + height: 1rem; } - .xl\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:h-5 { + height: 1.25rem; } - .xl\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:h-6 { + height: 1.5rem; } - .xl\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:h-7 { + height: 1.75rem; } - .xl\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:h-8 { + height: 2rem; } - .xl\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:h-9 { + height: 2.25rem; } - .xl\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:h-10 { + height: 2.5rem; } - .xl\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:h-11 { + height: 2.75rem; } - .xl\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:h-12 { + height: 3rem; } - .xl\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:h-14 { + height: 3.5rem; } - .xl\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:h-16 { + height: 4rem; } - .xl\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:h-20 { + height: 5rem; } - .xl\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:h-24 { + height: 6rem; } - .xl\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:h-28 { + height: 7rem; } - .xl\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:h-32 { + height: 8rem; } - .xl\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:h-36 { + height: 9rem; } - .xl\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:h-40 { + height: 10rem; } - .xl\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:h-44 { + height: 11rem; } - .xl\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:h-48 { + height: 12rem; } - .xl\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:h-52 { + height: 13rem; } - .xl\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:h-56 { + height: 14rem; } - .xl\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:h-60 { + height: 15rem; } - .xl\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:h-64 { + height: 16rem; } - .xl\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:h-72 { + height: 18rem; } - .xl\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:h-80 { + height: 20rem; } - .xl\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:h-96 { + height: 24rem; } - .xl\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:h-auto { + height: auto; } - .xl\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:h-px { + height: 1px; } - .xl\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:h-0\.5 { + height: 0.125rem; } - .xl\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:h-1\.5 { + height: 0.375rem; } - .xl\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:h-2\.5 { + height: 0.625rem; } - .xl\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:h-3\.5 { + height: 0.875rem; } - .xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .xl\:h-1\/2 { + height: 50%; } - .xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .xl\:h-1\/3 { + height: 33.333333%; } - .xl\:hover\:to-black:hover { - --tw-gradient-to: #000; + .xl\:h-2\/3 { + height: 66.666667%; } - .xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .xl\:h-1\/4 { + height: 25%; } - .xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .xl\:h-2\/4 { + height: 50%; } - .xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .xl\:h-3\/4 { + height: 75%; } - .xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .xl\:h-1\/5 { + height: 20%; } - .xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .xl\:h-2\/5 { + height: 40%; } - .xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .xl\:h-3\/5 { + height: 60%; } - .xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .xl\:h-4\/5 { + height: 80%; } - .xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .xl\:h-1\/6 { + height: 16.666667%; } - .xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .xl\:h-2\/6 { + height: 33.333333%; } - .xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .xl\:h-3\/6 { + height: 50%; } - .xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .xl\:h-4\/6 { + height: 66.666667%; } - .xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .xl\:h-5\/6 { + height: 83.333333%; } - .xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .xl\:h-full { + height: 100%; } - .xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .xl\:h-screen { + height: 100vh; } - .xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .xl\:max-h-0 { + max-height: 0px; } - .xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .xl\:max-h-1 { + max-height: 0.25rem; } - .xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .xl\:max-h-2 { + max-height: 0.5rem; } - .xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .xl\:max-h-3 { + max-height: 0.75rem; } - .xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .xl\:max-h-4 { + max-height: 1rem; } - .xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .xl\:max-h-5 { + max-height: 1.25rem; } - .xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .xl\:max-h-6 { + max-height: 1.5rem; } - .xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .xl\:max-h-7 { + max-height: 1.75rem; } - .xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .xl\:max-h-8 { + max-height: 2rem; } - .xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .xl\:max-h-9 { + max-height: 2.25rem; } - .xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .xl\:max-h-10 { + max-height: 2.5rem; } - .xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .xl\:max-h-11 { + max-height: 2.75rem; } - .xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .xl\:max-h-12 { + max-height: 3rem; } - .xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .xl\:max-h-14 { + max-height: 3.5rem; } - .xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .xl\:max-h-16 { + max-height: 4rem; } - .xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .xl\:max-h-20 { + max-height: 5rem; } - .xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .xl\:max-h-24 { + max-height: 6rem; } - .xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .xl\:max-h-28 { + max-height: 7rem; } - .xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .xl\:max-h-32 { + max-height: 8rem; } - .xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .xl\:max-h-36 { + max-height: 9rem; } - .xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .xl\:max-h-40 { + max-height: 10rem; } - .xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .xl\:max-h-44 { + max-height: 11rem; } - .xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .xl\:max-h-48 { + max-height: 12rem; } - .xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .xl\:max-h-52 { + max-height: 13rem; } - .xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .xl\:max-h-56 { + max-height: 14rem; } - .xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .xl\:max-h-60 { + max-height: 15rem; } - .xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .xl\:max-h-64 { + max-height: 16rem; } - .xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .xl\:max-h-72 { + max-height: 18rem; } - .xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .xl\:max-h-80 { + max-height: 20rem; } - .xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .xl\:max-h-96 { + max-height: 24rem; } - .xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .xl\:max-h-px { + max-height: 1px; } - .xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .xl\:max-h-0\.5 { + max-height: 0.125rem; } - .xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .xl\:max-h-1\.5 { + max-height: 0.375rem; } - .xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .xl\:max-h-2\.5 { + max-height: 0.625rem; } - .xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .xl\:max-h-3\.5 { + max-height: 0.875rem; } - .xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .xl\:max-h-full { + max-height: 100%; } - .xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .xl\:max-h-screen { + max-height: 100vh; } - .xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .xl\:min-h-0 { + min-height: 0px; } - .xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .xl\:min-h-full { + min-height: 100%; } - .xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .xl\:min-h-screen { + min-height: 100vh; } - .xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .xl\:w-0 { + width: 0px; } - .xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .xl\:w-1 { + width: 0.25rem; } - .xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .xl\:w-2 { + width: 0.5rem; } - .xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .xl\:w-3 { + width: 0.75rem; } - .xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .xl\:w-4 { + width: 1rem; } - .xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .xl\:w-5 { + width: 1.25rem; } - .xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .xl\:w-6 { + width: 1.5rem; } - .xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .xl\:w-7 { + width: 1.75rem; } - .xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .xl\:w-8 { + width: 2rem; } - .xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .xl\:w-9 { + width: 2.25rem; } - .xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .xl\:w-10 { + width: 2.5rem; } - .xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .xl\:w-11 { + width: 2.75rem; } - .xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .xl\:w-12 { + width: 3rem; } - .xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .xl\:w-14 { + width: 3.5rem; } - .xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .xl\:w-16 { + width: 4rem; } - .xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .xl\:w-20 { + width: 5rem; } - .xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .xl\:w-24 { + width: 6rem; } - .xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .xl\:w-28 { + width: 7rem; } - .xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .xl\:w-32 { + width: 8rem; } - .xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .xl\:w-36 { + width: 9rem; } - .xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .xl\:w-40 { + width: 10rem; } - .xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .xl\:w-44 { + width: 11rem; } - .xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .xl\:w-48 { + width: 12rem; } - .xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .xl\:w-52 { + width: 13rem; } - .xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .xl\:w-56 { + width: 14rem; } - .xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .xl\:w-60 { + width: 15rem; } - .xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .xl\:w-64 { + width: 16rem; } - .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\:w-72 { + width: 18rem; } - .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\:w-80 { + width: 20rem; } - .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\:w-96 { + width: 24rem; } - .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\:w-auto { + width: auto; } - .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\:w-px { + width: 1px; } - .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\:w-0\.5 { + width: 0.125rem; } - .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\:w-1\.5 { + width: 0.375rem; } - .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\:w-2\.5 { + width: 0.625rem; } - .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\:w-3\.5 { + width: 0.875rem; } - .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\:w-1\/2 { + width: 50%; } - .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\:w-1\/3 { + width: 33.333333%; } - .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\:w-2\/3 { + width: 66.666667%; } - .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\:w-1\/4 { + width: 25%; } - .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\:w-2\/4 { + width: 50%; } - .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\:w-3\/4 { + width: 75%; } - .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\:w-1\/5 { + width: 20%; } - .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\:w-2\/5 { + width: 40%; } - .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\:w-3\/5 { + width: 60%; } - .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\:w-4\/5 { + width: 80%; } - .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\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .xl\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .xl\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .xl\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:origin-bottom-right { + transform-origin: bottom right; } - .xl\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:origin-bottom { + transform-origin: bottom; } - .xl\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:origin-bottom-left { + transform-origin: bottom left; } - .xl\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:origin-left { + transform-origin: left; } - .xl\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:origin-top-left { + transform-origin: top left; } - .xl\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:translate-x-0 { + --tw-translate-x: 0px; } - .xl\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .xl\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .xl\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .xl\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:translate-x-4 { + --tw-translate-x: 1rem; } - .xl\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .xl\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .xl\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .xl\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:translate-x-8 { + --tw-translate-x: 2rem; } - .xl\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .xl\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .xl\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .xl\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:translate-x-12 { + --tw-translate-x: 3rem; } - .xl\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .xl\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:translate-x-16 { + --tw-translate-x: 4rem; } - .xl\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:translate-x-20 { + --tw-translate-x: 5rem; } - .xl\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:translate-x-24 { + --tw-translate-x: 6rem; } - .xl\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:translate-x-28 { + --tw-translate-x: 7rem; } - .xl\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:translate-x-32 { + --tw-translate-x: 8rem; } - .xl\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:translate-x-36 { + --tw-translate-x: 9rem; } - .xl\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:translate-x-40 { + --tw-translate-x: 10rem; } - .xl\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:translate-x-44 { + --tw-translate-x: 11rem; } - .xl\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:translate-x-48 { + --tw-translate-x: 12rem; } - .xl\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:translate-x-52 { + --tw-translate-x: 13rem; } - .xl\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:translate-x-56 { + --tw-translate-x: 14rem; } - .xl\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:translate-x-60 { + --tw-translate-x: 15rem; } - .xl\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:translate-x-64 { + --tw-translate-x: 16rem; } - .xl\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:translate-x-72 { + --tw-translate-x: 18rem; } - .xl\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:translate-x-80 { + --tw-translate-x: 20rem; } - .xl\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:translate-x-96 { + --tw-translate-x: 24rem; } - .xl\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:translate-x-px { + --tw-translate-x: 1px; } - .xl\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .xl\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .xl\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .xl\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .xl\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:-translate-x-0 { + --tw-translate-x: 0px; } - .xl\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .xl\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .xl\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .xl\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:-translate-x-4 { + --tw-translate-x: -1rem; } - .xl\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .xl\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .xl\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .xl\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:-translate-x-8 { + --tw-translate-x: -2rem; } - .xl\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .xl\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .xl\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .xl\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:-translate-x-12 { + --tw-translate-x: -3rem; } - .xl\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .xl\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:-translate-x-16 { + --tw-translate-x: -4rem; } - .xl\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:-translate-x-20 { + --tw-translate-x: -5rem; } - .xl\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:-translate-x-24 { + --tw-translate-x: -6rem; } - .xl\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:-translate-x-28 { + --tw-translate-x: -7rem; } - .xl\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:-translate-x-32 { + --tw-translate-x: -8rem; } - .xl\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:-translate-x-36 { + --tw-translate-x: -9rem; } - .xl\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:-translate-x-40 { + --tw-translate-x: -10rem; } - .xl\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:-translate-x-44 { + --tw-translate-x: -11rem; } - .xl\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:-translate-x-48 { + --tw-translate-x: -12rem; } - .xl\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:-translate-x-52 { + --tw-translate-x: -13rem; } - .xl\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:-translate-x-56 { + --tw-translate-x: -14rem; } - .xl\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:-translate-x-60 { + --tw-translate-x: -15rem; } - .xl\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:-translate-x-64 { + --tw-translate-x: -16rem; } - .xl\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:-translate-x-72 { + --tw-translate-x: -18rem; } - .xl\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:-translate-x-80 { + --tw-translate-x: -20rem; } - .xl\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:-translate-x-96 { + --tw-translate-x: -24rem; } - .xl\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:-translate-x-px { + --tw-translate-x: -1px; } - .xl\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .xl\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .xl\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .xl\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .xl\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .xl\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .xl\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .xl\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .xl\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .xl\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .xl\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:translate-x-full { + --tw-translate-x: 100%; } - .xl\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .xl\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .xl\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .xl\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .xl\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .xl\:focus\:to-black:focus { - --tw-gradient-to: #000; + .xl\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .xl\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .xl\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .xl\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .xl\:-translate-x-full { + --tw-translate-x: -100%; } - .xl\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .xl\:translate-y-0 { + --tw-translate-y: 0px; } - .xl\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .xl\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .xl\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .xl\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .xl\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .xl\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .xl\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .xl\:translate-y-4 { + --tw-translate-y: 1rem; } - .xl\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .xl\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .xl\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .xl\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .xl\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .xl\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .xl\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .xl\:translate-y-8 { + --tw-translate-y: 2rem; } - .xl\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .xl\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .xl\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .xl\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .xl\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .xl\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .xl\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .xl\:translate-y-12 { + --tw-translate-y: 3rem; } - .xl\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .xl\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .xl\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .xl\:translate-y-16 { + --tw-translate-y: 4rem; } - .xl\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .xl\:translate-y-20 { + --tw-translate-y: 5rem; } - .xl\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .xl\:translate-y-24 { + --tw-translate-y: 6rem; } - .xl\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .xl\:translate-y-28 { + --tw-translate-y: 7rem; } - .xl\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .xl\:translate-y-32 { + --tw-translate-y: 8rem; } - .xl\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .xl\:translate-y-36 { + --tw-translate-y: 9rem; } - .xl\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .xl\:translate-y-40 { + --tw-translate-y: 10rem; } - .xl\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .xl\:translate-y-44 { + --tw-translate-y: 11rem; } - .xl\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .xl\:translate-y-48 { + --tw-translate-y: 12rem; } - .xl\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .xl\:translate-y-52 { + --tw-translate-y: 13rem; } - .xl\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .xl\:translate-y-56 { + --tw-translate-y: 14rem; } - .xl\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .xl\:translate-y-60 { + --tw-translate-y: 15rem; } - .xl\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .xl\:translate-y-64 { + --tw-translate-y: 16rem; } - .xl\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .xl\:translate-y-72 { + --tw-translate-y: 18rem; } - .xl\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .xl\:translate-y-80 { + --tw-translate-y: 20rem; } - .xl\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .xl\:translate-y-96 { + --tw-translate-y: 24rem; } - .xl\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .xl\:translate-y-px { + --tw-translate-y: 1px; } - .xl\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .xl\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .xl\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .xl\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .xl\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .xl\:-translate-y-0 { + --tw-translate-y: 0px; } - .xl\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .xl\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .xl\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .xl\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .xl\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .xl\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .xl\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .xl\:-translate-y-4 { + --tw-translate-y: -1rem; } - .xl\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .xl\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .xl\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .xl\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .xl\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .xl\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .xl\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .xl\:-translate-y-8 { + --tw-translate-y: -2rem; } - .xl\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .xl\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .xl\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .xl\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .xl\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .xl\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .xl\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .xl\:-translate-y-12 { + --tw-translate-y: -3rem; } - .xl\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .xl\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .xl\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .xl\:-translate-y-16 { + --tw-translate-y: -4rem; } - .xl\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .xl\:-translate-y-20 { + --tw-translate-y: -5rem; } - .xl\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .xl\:-translate-y-24 { + --tw-translate-y: -6rem; } - .xl\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .xl\:-translate-y-28 { + --tw-translate-y: -7rem; } - .xl\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .xl\:-translate-y-32 { + --tw-translate-y: -8rem; } - .xl\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .xl\:-translate-y-36 { + --tw-translate-y: -9rem; } - .xl\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .xl\:-translate-y-40 { + --tw-translate-y: -10rem; } - .xl\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .xl\:-translate-y-44 { + --tw-translate-y: -11rem; } - .xl\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .xl\:-translate-y-48 { + --tw-translate-y: -12rem; } - .xl\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .xl\:-translate-y-52 { + --tw-translate-y: -13rem; } - .xl\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .xl\:-translate-y-56 { + --tw-translate-y: -14rem; } - .xl\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .xl\:-translate-y-60 { + --tw-translate-y: -15rem; } - .xl\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .xl\:-translate-y-64 { + --tw-translate-y: -16rem; } - .xl\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .xl\:-translate-y-72 { + --tw-translate-y: -18rem; } - .xl\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .xl\:-translate-y-80 { + --tw-translate-y: -20rem; } - .xl\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .xl\:-translate-y-96 { + --tw-translate-y: -24rem; } - .xl\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .xl\:-translate-y-px { + --tw-translate-y: -1px; } - .xl\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .xl\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .xl\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .xl\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .xl\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .xl\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .xl\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .xl\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .xl\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .xl\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .xl\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .xl\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .xl\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .xl\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .xl\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .xl\:translate-y-full { + --tw-translate-y: 100%; } - .xl\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .xl\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .xl\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .xl\:bg-opacity-0 { - --tw-bg-opacity: 0; + .xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .xl\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .xl\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .xl\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .xl\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .xl\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .xl\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .xl\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .xl\:-translate-y-full { + --tw-translate-y: -100%; } - .xl\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .xl\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .xl\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .xl\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .xl\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .xl\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .xl\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .xl\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .xl\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .xl\:bg-opacity-100 { - --tw-bg-opacity: 1; + .xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .group:hover .xl\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; + .xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .group:hover .xl\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .group:hover .xl\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .group:hover .xl\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .group:hover .xl\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .group:hover .xl\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .group:hover .xl\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .group:hover .xl\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .group:hover .xl\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .group:hover .xl\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .group:hover .xl\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .group:hover .xl\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .group:hover .xl\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .group:hover .xl\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .group:hover .xl\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; + .xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .xl\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; + .xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .xl\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; + .xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .xl\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; + .xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .xl\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; + .xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .xl\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; + .xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .xl\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; + .xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .xl\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; + .xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .xl\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; + .xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .xl\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; + .xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .xl\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; + .xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .xl\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; + .xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .xl\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; + .xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .xl\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; + .xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .xl\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; + .xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .xl\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; + .xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .xl\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; + .xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .xl\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; + .xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .xl\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; + .xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .xl\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; + .xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .xl\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; + .xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .xl\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; + .xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .xl\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; + .xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .xl\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; + .xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .xl\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; + .xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .xl\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; + .xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .xl\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; + .xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .xl\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; + .xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .xl\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; + .xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .xl\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; + .xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .xl\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; + .xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .xl\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; + .xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .xl\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; + .xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .xl\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; + .xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .xl\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; + .xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .xl\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; + .xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .xl\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; + .xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .xl\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; + .xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .xl\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; + .xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .xl\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; + .xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .xl\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; + .xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .xl\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; + .xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .xl\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; + .xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .xl\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; + .xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .xl\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; + .xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .xl\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; + .xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .xl\:bg-bottom { - background-position: bottom; + .xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .xl\:bg-center { - background-position: center; + .xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .xl\:bg-left { - background-position: left; + .xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .xl\:bg-left-bottom { - background-position: left bottom; + .xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .xl\:bg-left-top { - background-position: left top; + .xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .xl\:bg-right { - background-position: right; + .xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .xl\:bg-right-bottom { - background-position: right bottom; + .xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .xl\:bg-right-top { - background-position: right top; + .xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .xl\:bg-top { - background-position: top; + .xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .xl\:bg-repeat { - background-repeat: repeat; + .xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .xl\:bg-no-repeat { - background-repeat: no-repeat; + .xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .xl\:bg-repeat-x { - background-repeat: repeat-x; + .xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .xl\:bg-repeat-y { - background-repeat: repeat-y; + .xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .xl\:bg-repeat-round { - background-repeat: round; + .xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .xl\:bg-repeat-space { - background-repeat: space; + .xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .xl\:bg-auto { - background-size: auto; + .xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .xl\:bg-cover { - background-size: cover; + .xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .xl\:bg-contain { - background-size: contain; + .xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .xl\:bg-origin-border { - background-origin: border-box; + .xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .xl\:bg-origin-padding { - background-origin: padding-box; + .xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .xl\:bg-origin-content { - background-origin: content-box; + .xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .xl\:border-collapse { - border-collapse: collapse; + .xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .xl\:border-separate { - border-collapse: separate; + .xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .xl\:border-transparent { - border-color: transparent; + .xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .xl\:border-current { - border-color: currentColor; + .xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .xl\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .xl\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .xl\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .xl\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .xl\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .xl\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .xl\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .xl\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .xl\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .xl\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .xl\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .xl\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .xl\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .xl\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .xl\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .xl\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .xl\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .xl\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .xl\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .xl\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .xl\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .xl\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .xl\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .xl\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .xl\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .xl\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .xl\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .xl\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .xl\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .xl\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .xl\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .xl\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .xl\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .xl\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .xl\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .xl\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .xl\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .xl\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .xl\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .xl\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .xl\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .xl\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .xl\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .xl\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .xl\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .xl\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .xl\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .xl\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .xl\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .xl\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .xl\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .xl\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .xl\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .xl\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .xl\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .xl\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .xl\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .xl\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .xl\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .xl\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .xl\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .xl\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .xl\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .xl\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .xl\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .xl\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .xl\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .xl\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .xl\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .xl\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .xl\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .xl\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .xl\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .xl\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .xl\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .xl\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .xl\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .xl\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .xl\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .xl\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .xl\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .xl\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .xl\:group-hover\:border-transparent { - border-color: transparent; + .xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .xl\:group-hover\:border-current { - border-color: currentColor; + .xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .xl\:group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .xl\:group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .xl\:group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .xl\:group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .xl\:group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .xl\:group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .xl\:group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .xl\:group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .xl\:group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .xl\:group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .xl\:group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .xl\:group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .xl\:group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .xl\:group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .xl\:group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .xl\:group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .xl\:group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .xl\:group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .xl\:group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .xl\:group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .xl\:group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .xl\:group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .xl\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .xl\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .xl\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .xl\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .xl\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .group:hover .xl\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .group:hover .xl\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .group:hover .xl\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .group:hover .xl\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .group:hover .xl\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .group:hover .xl\:group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .group:hover .xl\:group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - - .group:hover .xl\:group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + + .xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .group:hover .xl\:group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .group:hover .xl\:group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .group:hover .xl\:group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .group:hover .xl\:group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .group:hover .xl\:group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .group:hover .xl\:group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .group:hover .xl\:group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .group:hover .xl\:group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .group:hover .xl\:group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .group:hover .xl\:group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .group:hover .xl\:group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .group:hover .xl\:group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .group:hover .xl\:group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .group:hover .xl\:group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .group:hover .xl\:group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .group:hover .xl\:group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .group:hover .xl\:group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .group:hover .xl\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .group:hover .xl\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .group:hover .xl\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .group:hover .xl\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .group:hover .xl\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .group:hover .xl\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .group:hover .xl\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .group:hover .xl\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .group:hover .xl\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .group:hover .xl\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .group:hover .xl\:group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .group:hover .xl\:group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .group:hover .xl\:group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .group:hover .xl\:group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .group:hover .xl\:group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .group:hover .xl\:group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .group:hover .xl\:group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .group:hover .xl\:group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .group:hover .xl\:group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .group:hover .xl\:group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .group:hover .xl\:group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .group:hover .xl\:group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .group:hover .xl\:group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .group:hover .xl\:group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .group:hover .xl\:group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .group:hover .xl\:group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .group:hover .xl\:group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .group:hover .xl\:group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .group:hover .xl\:group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .group:hover .xl\:group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .xl\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .xl\:focus-within\:border-current:focus-within { - border-color: currentColor; + .xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .xl\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .xl\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .xl\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .xl\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .xl\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .xl\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .xl\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .xl\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .xl\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .xl\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .xl\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .xl\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .xl\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .xl\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .xl\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .xl\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .xl\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .xl\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .xl\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .xl\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .xl\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .xl\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .xl\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .xl\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .xl\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .xl\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .xl\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .xl\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .xl\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .xl\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .xl\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .xl\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .xl\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .xl\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .xl\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .xl\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .xl\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .xl\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .xl\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .xl\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .xl\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .xl\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .xl\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .xl\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .xl\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .xl\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .xl\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .xl\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .xl\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .xl\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .xl\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .xl\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .xl\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .xl\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .xl\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .xl\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .xl\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .xl\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .xl\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .xl\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .xl\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .xl\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .xl\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .xl\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .xl\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .xl\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .xl\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .xl\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .xl\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .xl\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .xl\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .xl\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .xl\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .xl\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .xl\:rotate-0 { + --tw-rotate: 0deg; } - .xl\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .xl\:rotate-1 { + --tw-rotate: 1deg; } - .xl\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .xl\:rotate-2 { + --tw-rotate: 2deg; } - .xl\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .xl\:rotate-3 { + --tw-rotate: 3deg; } - .xl\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .xl\:rotate-6 { + --tw-rotate: 6deg; } - .xl\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .xl\:rotate-12 { + --tw-rotate: 12deg; } - .xl\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .xl\:rotate-45 { + --tw-rotate: 45deg; } - .xl\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .xl\:rotate-90 { + --tw-rotate: 90deg; } - .xl\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .xl\:rotate-180 { + --tw-rotate: 180deg; } - .xl\:hover\:border-transparent:hover { - border-color: transparent; + .xl\:-rotate-180 { + --tw-rotate: -180deg; } - .xl\:hover\:border-current:hover { - border-color: currentColor; + .xl\:-rotate-90 { + --tw-rotate: -90deg; } - .xl\:hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .xl\:-rotate-45 { + --tw-rotate: -45deg; } - .xl\:hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .xl\:-rotate-12 { + --tw-rotate: -12deg; } - .xl\:hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .xl\:-rotate-6 { + --tw-rotate: -6deg; } - .xl\:hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .xl\:-rotate-3 { + --tw-rotate: -3deg; } - .xl\:hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .xl\:-rotate-2 { + --tw-rotate: -2deg; } - .xl\:hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .xl\:-rotate-1 { + --tw-rotate: -1deg; } - .xl\:hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .xl\:hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .xl\:hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .xl\:hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .xl\:hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .xl\:hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .xl\:hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .xl\:hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .xl\:hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .xl\:hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .xl\:hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .xl\:hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .xl\:hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .xl\:hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .xl\:hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .xl\:hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .xl\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .xl\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .xl\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .xl\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .xl\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .xl\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .xl\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .xl\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .xl\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .xl\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .xl\:hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .xl\:hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .xl\:hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .xl\:hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .xl\:hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .xl\:hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .xl\:hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .xl\:hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .xl\:hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .xl\:skew-x-0 { + --tw-skew-x: 0deg; } - .xl\:hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .xl\:skew-x-1 { + --tw-skew-x: 1deg; } - .xl\:hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .xl\:skew-x-2 { + --tw-skew-x: 2deg; } - .xl\:hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .xl\:skew-x-3 { + --tw-skew-x: 3deg; } - .xl\:hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .xl\:skew-x-6 { + --tw-skew-x: 6deg; } - .xl\:hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .xl\:skew-x-12 { + --tw-skew-x: 12deg; } - .xl\:hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .xl\:-skew-x-12 { + --tw-skew-x: -12deg; } - .xl\:hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .xl\:-skew-x-6 { + --tw-skew-x: -6deg; } - .xl\:hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .xl\:-skew-x-3 { + --tw-skew-x: -3deg; } - .xl\:hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .xl\:-skew-x-2 { + --tw-skew-x: -2deg; } - .xl\:hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .xl\:-skew-x-1 { + --tw-skew-x: -1deg; } - .xl\:hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .xl\:skew-y-0 { + --tw-skew-y: 0deg; } - .xl\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .xl\:skew-y-1 { + --tw-skew-y: 1deg; } - .xl\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .xl\:skew-y-2 { + --tw-skew-y: 2deg; } - .xl\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .xl\:skew-y-3 { + --tw-skew-y: 3deg; } - .xl\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .xl\:skew-y-6 { + --tw-skew-y: 6deg; } - .xl\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .xl\:skew-y-12 { + --tw-skew-y: 12deg; } - .xl\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .xl\:-skew-y-12 { + --tw-skew-y: -12deg; } - .xl\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .xl\:-skew-y-6 { + --tw-skew-y: -6deg; } - .xl\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .xl\:-skew-y-3 { + --tw-skew-y: -3deg; } - .xl\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .xl\:-skew-y-2 { + --tw-skew-y: -2deg; } - .xl\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .xl\:-skew-y-1 { + --tw-skew-y: -1deg; } - .xl\:hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .xl\:hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .xl\:hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .xl\:hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .xl\:hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .xl\:hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .xl\:hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .xl\:hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .xl\:hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .xl\:hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .xl\:hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .xl\:hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .xl\:hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .xl\:hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .xl\:hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .xl\:hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .xl\:hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .xl\:hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .xl\:hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .xl\:hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .xl\:focus\:border-transparent:focus { - border-color: transparent; + .xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .xl\:focus\:border-current:focus { - border-color: currentColor; + .xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .xl\:focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .xl\:focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .xl\:focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .xl\:focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .xl\:focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .xl\:focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .xl\:focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .xl\:focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .xl\:focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .xl\:focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .xl\:focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .xl\:focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .xl\:focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .xl\:focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .xl\:focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .xl\:focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .xl\:focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .xl\:focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .xl\:focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .xl\:focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .xl\:focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .xl\:focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .xl\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .xl\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .xl\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .xl\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .xl\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .xl\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .xl\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .xl\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .xl\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .xl\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .xl\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .xl\:scale-x-0 { + --tw-scale-x: 0; } - .xl\:focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .xl\:scale-x-50 { + --tw-scale-x: .5; } - .xl\:focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .xl\:scale-x-75 { + --tw-scale-x: .75; } - .xl\:focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .xl\:scale-x-90 { + --tw-scale-x: .9; } - .xl\:focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .xl\:scale-x-95 { + --tw-scale-x: .95; } - .xl\:focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .xl\:scale-x-100 { + --tw-scale-x: 1; } - .xl\:focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .xl\:scale-x-105 { + --tw-scale-x: 1.05; } - .xl\:focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .xl\:scale-x-110 { + --tw-scale-x: 1.1; } - .xl\:focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .xl\:scale-x-125 { + --tw-scale-x: 1.25; } - .xl\:focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .xl\:scale-x-150 { + --tw-scale-x: 1.5; } - .xl\:focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .xl\:scale-y-0 { + --tw-scale-y: 0; } - .xl\:focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .xl\:scale-y-50 { + --tw-scale-y: .5; } - .xl\:focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .xl\:scale-y-75 { + --tw-scale-y: .75; } - .xl\:focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .xl\:scale-y-90 { + --tw-scale-y: .9; } - .xl\:focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .xl\:scale-y-95 { + --tw-scale-y: .95; } - .xl\:focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .xl\:scale-y-100 { + --tw-scale-y: 1; } - .xl\:focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .xl\:scale-y-105 { + --tw-scale-y: 1.05; } - .xl\:focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .xl\:scale-y-110 { + --tw-scale-y: 1.1; } - .xl\:focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .xl\:scale-y-125 { + --tw-scale-y: 1.25; } - .xl\:focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .xl\:scale-y-150 { + --tw-scale-y: 1.5; } - .xl\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .xl\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .xl\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .xl\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .xl\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .xl\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .xl\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .xl\:focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .xl\:focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .xl\:focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .xl\:focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .xl\:focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .xl\:focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .xl\:focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .xl\:focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .xl\:focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .xl\:focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .xl\:focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .xl\:focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .xl\:focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .xl\:focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .xl\:focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .xl\:focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .xl\:focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .xl\:focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .xl\:focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .xl\:border-opacity-0 { - --tw-border-opacity: 0; + .xl\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:border-opacity-5 { - --tw-border-opacity: 0.05; + .xl\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:border-opacity-10 { - --tw-border-opacity: 0.1; + .xl\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:border-opacity-20 { - --tw-border-opacity: 0.2; + .xl\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:border-opacity-25 { - --tw-border-opacity: 0.25; + .xl\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:border-opacity-30 { - --tw-border-opacity: 0.3; + .xl\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:border-opacity-40 { - --tw-border-opacity: 0.4; + .xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:border-opacity-50 { - --tw-border-opacity: 0.5; + .xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:border-opacity-60 { - --tw-border-opacity: 0.6; + .xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:border-opacity-70 { - --tw-border-opacity: 0.7; + .xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:border-opacity-75 { - --tw-border-opacity: 0.75; + .xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .xl\:border-opacity-80 { - --tw-border-opacity: 0.8; + .xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .xl\:border-opacity-90 { - --tw-border-opacity: 0.9; + .xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .xl\:border-opacity-95 { - --tw-border-opacity: 0.95; + .xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .xl\:border-opacity-100 { - --tw-border-opacity: 1; + .xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .group:hover .xl\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0; + .xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .group:hover .xl\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; + .xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .group:hover .xl\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; + .xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .group:hover .xl\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; + .xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .group:hover .xl\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; + .xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .group:hover .xl\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; + .xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .group:hover .xl\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; + .xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .group:hover .xl\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; + .xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .group:hover .xl\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; + .xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .group:hover .xl\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; + .xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .group:hover .xl\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; + .xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .group:hover .xl\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; + .xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .group:hover .xl\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; + .xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .group:hover .xl\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; + .xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .group:hover .xl\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1; + .xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .xl\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; + .xl\:animate-none { + animation: none; } - .xl\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; + .xl\:animate-spin { + animation: spin 1s linear infinite; } - .xl\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; + .xl\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .xl\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; + .xl\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .xl\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; + .xl\:animate-bounce { + animation: bounce 1s infinite; } - .xl\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; + .xl\:cursor-auto { + cursor: auto; } - .xl\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; + .xl\:cursor-default { + cursor: default; } - .xl\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; + .xl\:cursor-pointer { + cursor: pointer; } - .xl\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; + .xl\:cursor-wait { + cursor: wait; } - .xl\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; + .xl\:cursor-text { + cursor: text; } - .xl\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; + .xl\:cursor-move { + cursor: move; } - .xl\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; + .xl\:cursor-help { + cursor: help; } - .xl\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; + .xl\:cursor-not-allowed { + cursor: not-allowed; } - .xl\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; + .xl\:select-none { + user-select: none; } - .xl\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; + .xl\:select-text { + user-select: text; } - .xl\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0; + .xl\:select-all { + user-select: all; } - .xl\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; + .xl\:select-auto { + user-select: auto; } - .xl\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; + .xl\:resize-none { + resize: none; } - .xl\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; + .xl\:resize-y { + resize: vertical; } - .xl\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; + .xl\:resize-x { + resize: horizontal; } - .xl\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; + .xl\:resize { + resize: both; } - .xl\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; + .xl\:list-inside { + list-style-position: inside; } - .xl\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; + .xl\:list-outside { + list-style-position: outside; } - .xl\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; + .xl\:list-none { + list-style-type: none; } - .xl\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; + .xl\:list-disc { + list-style-type: disc; } - .xl\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; + .xl\:list-decimal { + list-style-type: decimal; } - .xl\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; + .xl\:appearance-none { + appearance: none; } - .xl\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; + .xl\:auto-cols-auto { + grid-auto-columns: auto; } - .xl\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; + .xl\:auto-cols-min { + grid-auto-columns: min-content; } - .xl\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1; + .xl\:auto-cols-max { + grid-auto-columns: max-content; } - .xl\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0; + .xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .xl\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; + .xl\:grid-flow-row { + grid-auto-flow: row; } - .xl\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; + .xl\:grid-flow-col { + grid-auto-flow: column; } - .xl\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; + .xl\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .xl\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; + .xl\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .xl\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; + .xl\:auto-rows-auto { + grid-auto-rows: auto; } - .xl\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; + .xl\:auto-rows-min { + grid-auto-rows: min-content; } - .xl\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; + .xl\:auto-rows-max { + grid-auto-rows: max-content; } - .xl\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; + .xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .xl\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; + .xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .xl\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; + .xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .xl\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; + .xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .xl\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; + .xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .xl\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; + .xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .xl\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1; + .xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .xl\:rounded-none { - border-radius: 0px; + .xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .xl\:rounded-sm { - border-radius: 0.125rem; + .xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .xl\:rounded { - border-radius: 0.25rem; + .xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .xl\:rounded-md { - border-radius: 0.375rem; + .xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .xl\:rounded-lg { - border-radius: 0.5rem; + .xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .xl\:rounded-xl { - border-radius: 0.75rem; + .xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .xl\:rounded-2xl { - border-radius: 1rem; + .xl\:grid-cols-none { + grid-template-columns: none; } - .xl\:rounded-3xl { - border-radius: 1.5rem; + .xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .xl\:rounded-full { - border-radius: 9999px; + .xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .xl\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .xl\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .xl\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .xl\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .xl\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .xl\:grid-rows-none { + grid-template-rows: none; } - .xl\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .xl\:flex-row { + flex-direction: row; } - .xl\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .xl\:flex-row-reverse { + flex-direction: row-reverse; } - .xl\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .xl\:flex-col { + flex-direction: column; } - .xl\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .xl\:flex-col-reverse { + flex-direction: column-reverse; } - .xl\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .xl\:flex-wrap { + flex-wrap: wrap; } - .xl\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse; } - .xl\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .xl\:flex-nowrap { + flex-wrap: nowrap; } - .xl\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .xl\:place-content-center { + place-content: center; } - .xl\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .xl\:place-content-start { + place-content: start; } - .xl\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .xl\:place-content-end { + place-content: end; } - .xl\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .xl\:place-content-between { + place-content: space-between; } - .xl\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .xl\:place-content-around { + place-content: space-around; } - .xl\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .xl\:place-content-evenly { + place-content: space-evenly; } - .xl\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .xl\:place-content-stretch { + place-content: stretch; } - .xl\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .xl\:place-items-start { + place-items: start; } - .xl\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .xl\:place-items-end { + place-items: end; } - .xl\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .xl\:place-items-center { + place-items: center; } - .xl\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .xl\:place-items-stretch { + place-items: stretch; } - .xl\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .xl\:content-center { + align-content: center; } - .xl\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .xl\:content-start { + align-content: flex-start; } - .xl\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .xl\:content-end { + align-content: flex-end; } - .xl\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .xl\:content-between { + align-content: space-between; } - .xl\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .xl\:content-around { + align-content: space-around; } - .xl\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .xl\:content-evenly { + align-content: space-evenly; } - .xl\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .xl\:items-start { + align-items: flex-start; } - .xl\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .xl\:items-end { + align-items: flex-end; } - .xl\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .xl\:items-center { + align-items: center; } - .xl\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .xl\:items-baseline { + align-items: baseline; } - .xl\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .xl\:items-stretch { + align-items: stretch; } - .xl\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .xl\:justify-start { + justify-content: flex-start; } - .xl\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .xl\:justify-end { + justify-content: flex-end; } - .xl\:rounded-tl-none { - border-top-left-radius: 0px; + .xl\:justify-center { + justify-content: center; } - .xl\:rounded-tr-none { - border-top-right-radius: 0px; + .xl\:justify-between { + justify-content: space-between; + } + + .xl\:justify-around { + justify-content: space-around; } - .xl\:rounded-br-none { - border-bottom-right-radius: 0px; + .xl\:justify-evenly { + justify-content: space-evenly; } - .xl\:rounded-bl-none { - border-bottom-left-radius: 0px; + .xl\:justify-items-start { + justify-items: start; } - .xl\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .xl\:justify-items-end { + justify-items: end; } - .xl\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .xl\:justify-items-center { + justify-items: center; } - .xl\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .xl\:justify-items-stretch { + justify-items: stretch; } - .xl\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .xl\:gap-0 { + gap: 0px; } - .xl\:rounded-tl { - border-top-left-radius: 0.25rem; + .xl\:gap-1 { + gap: 0.25rem; } - .xl\:rounded-tr { - border-top-right-radius: 0.25rem; + .xl\:gap-2 { + gap: 0.5rem; } - .xl\:rounded-br { - border-bottom-right-radius: 0.25rem; + .xl\:gap-3 { + gap: 0.75rem; } - .xl\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .xl\:gap-4 { + gap: 1rem; } - .xl\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .xl\:gap-5 { + gap: 1.25rem; } - .xl\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .xl\:gap-6 { + gap: 1.5rem; } - .xl\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .xl\:gap-7 { + gap: 1.75rem; } - .xl\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .xl\:gap-8 { + gap: 2rem; } - .xl\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .xl\:gap-9 { + gap: 2.25rem; } - .xl\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .xl\:gap-10 { + gap: 2.5rem; } - .xl\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .xl\:gap-11 { + gap: 2.75rem; } - .xl\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .xl\:gap-12 { + gap: 3rem; } - .xl\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .xl\:gap-14 { + gap: 3.5rem; } - .xl\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .xl\:gap-16 { + gap: 4rem; } - .xl\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .xl\:gap-20 { + gap: 5rem; } - .xl\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .xl\:gap-24 { + gap: 6rem; } - .xl\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .xl\:gap-28 { + gap: 7rem; } - .xl\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .xl\:gap-32 { + gap: 8rem; } - .xl\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .xl\:gap-36 { + gap: 9rem; } - .xl\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .xl\:gap-40 { + gap: 10rem; } - .xl\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .xl\:gap-44 { + gap: 11rem; } - .xl\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .xl\:gap-48 { + gap: 12rem; } - .xl\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .xl\:gap-52 { + gap: 13rem; } - .xl\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .xl\:gap-56 { + gap: 14rem; } - .xl\:rounded-tl-full { - border-top-left-radius: 9999px; + .xl\:gap-60 { + gap: 15rem; } - .xl\:rounded-tr-full { - border-top-right-radius: 9999px; + .xl\:gap-64 { + gap: 16rem; } - .xl\:rounded-br-full { - border-bottom-right-radius: 9999px; + .xl\:gap-72 { + gap: 18rem; } - .xl\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .xl\:gap-80 { + gap: 20rem; } - .xl\:border-solid { - border-style: solid; + .xl\:gap-96 { + gap: 24rem; } - .xl\:border-dashed { - border-style: dashed; + .xl\:gap-px { + gap: 1px; } - .xl\:border-dotted { - border-style: dotted; + .xl\:gap-0\.5 { + gap: 0.125rem; } - .xl\:border-double { - border-style: double; + .xl\:gap-1\.5 { + gap: 0.375rem; } - .xl\:border-none { - border-style: none; + .xl\:gap-2\.5 { + gap: 0.625rem; } - .xl\:border-0 { - border-width: 0px; + .xl\:gap-3\.5 { + gap: 0.875rem; } - .xl\:border-2 { - border-width: 2px; + .xl\:gap-x-0 { + column-gap: 0px; } - .xl\:border-4 { - border-width: 4px; + .xl\:gap-x-1 { + column-gap: 0.25rem; } - .xl\:border-8 { - border-width: 8px; + .xl\:gap-x-2 { + column-gap: 0.5rem; } - .xl\:border { - border-width: 1px; + .xl\:gap-x-3 { + column-gap: 0.75rem; } - .xl\:border-t-0 { - border-top-width: 0px; + .xl\:gap-x-4 { + column-gap: 1rem; } - .xl\:border-r-0 { - border-right-width: 0px; + .xl\:gap-x-5 { + column-gap: 1.25rem; } - .xl\:border-b-0 { - border-bottom-width: 0px; + .xl\:gap-x-6 { + column-gap: 1.5rem; } - .xl\:border-l-0 { - border-left-width: 0px; + .xl\:gap-x-7 { + column-gap: 1.75rem; } - .xl\:border-t-2 { - border-top-width: 2px; + .xl\:gap-x-8 { + column-gap: 2rem; } - .xl\:border-r-2 { - border-right-width: 2px; + .xl\:gap-x-9 { + column-gap: 2.25rem; } - .xl\:border-b-2 { - border-bottom-width: 2px; + .xl\:gap-x-10 { + column-gap: 2.5rem; } - .xl\:border-l-2 { - border-left-width: 2px; + .xl\:gap-x-11 { + column-gap: 2.75rem; } - .xl\:border-t-4 { - border-top-width: 4px; + .xl\:gap-x-12 { + column-gap: 3rem; } - .xl\:border-r-4 { - border-right-width: 4px; + .xl\:gap-x-14 { + column-gap: 3.5rem; } - .xl\:border-b-4 { - border-bottom-width: 4px; + .xl\:gap-x-16 { + column-gap: 4rem; } - .xl\:border-l-4 { - border-left-width: 4px; + .xl\:gap-x-20 { + column-gap: 5rem; } - .xl\:border-t-8 { - border-top-width: 8px; + .xl\:gap-x-24 { + column-gap: 6rem; } - .xl\:border-r-8 { - border-right-width: 8px; + .xl\:gap-x-28 { + column-gap: 7rem; } - .xl\:border-b-8 { - border-bottom-width: 8px; + .xl\:gap-x-32 { + column-gap: 8rem; } - .xl\:border-l-8 { - border-left-width: 8px; + .xl\:gap-x-36 { + column-gap: 9rem; } - .xl\:border-t { - border-top-width: 1px; + .xl\:gap-x-40 { + column-gap: 10rem; } - .xl\:border-r { - border-right-width: 1px; + .xl\:gap-x-44 { + column-gap: 11rem; } - .xl\:border-b { - border-bottom-width: 1px; + .xl\:gap-x-48 { + column-gap: 12rem; } - .xl\:border-l { - border-left-width: 1px; + .xl\:gap-x-52 { + column-gap: 13rem; } - .xl\:decoration-slice { - box-decoration-break: slice; + .xl\:gap-x-56 { + column-gap: 14rem; } - .xl\:decoration-clone { - box-decoration-break: clone; + .xl\:gap-x-60 { + column-gap: 15rem; } - .xl\:box-border { - box-sizing: border-box; + .xl\:gap-x-64 { + column-gap: 16rem; } - .xl\:box-content { - box-sizing: content-box; + .xl\:gap-x-72 { + column-gap: 18rem; } - .xl\:cursor-auto { - cursor: auto; + .xl\:gap-x-80 { + column-gap: 20rem; } - .xl\:cursor-default { - cursor: default; + .xl\:gap-x-96 { + column-gap: 24rem; } - .xl\:cursor-pointer { - cursor: pointer; + .xl\:gap-x-px { + column-gap: 1px; } - .xl\:cursor-wait { - cursor: wait; + .xl\:gap-x-0\.5 { + column-gap: 0.125rem; } - .xl\:cursor-text { - cursor: text; + .xl\:gap-x-1\.5 { + column-gap: 0.375rem; } - .xl\:cursor-move { - cursor: move; + .xl\:gap-x-2\.5 { + column-gap: 0.625rem; } - .xl\:cursor-help { - cursor: help; + .xl\:gap-x-3\.5 { + column-gap: 0.875rem; } - .xl\:cursor-not-allowed { - cursor: not-allowed; + .xl\:gap-y-0 { + row-gap: 0px; } - .xl\:block { - display: block; + .xl\:gap-y-1 { + row-gap: 0.25rem; } - .xl\:inline-block { - display: inline-block; + .xl\:gap-y-2 { + row-gap: 0.5rem; } - .xl\:inline { - display: inline; + .xl\:gap-y-3 { + row-gap: 0.75rem; } - .xl\:flex { - display: flex; + .xl\:gap-y-4 { + row-gap: 1rem; } - .xl\:inline-flex { - display: inline-flex; + .xl\:gap-y-5 { + row-gap: 1.25rem; } - .xl\:table { - display: table; + .xl\:gap-y-6 { + row-gap: 1.5rem; } - .xl\:inline-table { - display: inline-table; + .xl\:gap-y-7 { + row-gap: 1.75rem; } - .xl\:table-caption { - display: table-caption; + .xl\:gap-y-8 { + row-gap: 2rem; } - .xl\:table-cell { - display: table-cell; + .xl\:gap-y-9 { + row-gap: 2.25rem; } - .xl\:table-column { - display: table-column; + .xl\:gap-y-10 { + row-gap: 2.5rem; } - .xl\:table-column-group { - display: table-column-group; + .xl\:gap-y-11 { + row-gap: 2.75rem; } - .xl\:table-footer-group { - display: table-footer-group; + .xl\:gap-y-12 { + row-gap: 3rem; } - .xl\:table-header-group { - display: table-header-group; + .xl\:gap-y-14 { + row-gap: 3.5rem; } - .xl\:table-row-group { - display: table-row-group; + .xl\:gap-y-16 { + row-gap: 4rem; } - .xl\:table-row { - display: table-row; + .xl\:gap-y-20 { + row-gap: 5rem; } - .xl\:flow-root { - display: flow-root; + .xl\:gap-y-24 { + row-gap: 6rem; } - .xl\:grid { - display: grid; + .xl\:gap-y-28 { + row-gap: 7rem; } - .xl\:inline-grid { - display: inline-grid; + .xl\:gap-y-32 { + row-gap: 8rem; } - .xl\:contents { - display: contents; + .xl\:gap-y-36 { + row-gap: 9rem; } - .xl\:list-item { - display: list-item; + .xl\:gap-y-40 { + row-gap: 10rem; } - .xl\:hidden { - display: none; + .xl\:gap-y-44 { + row-gap: 11rem; } - .xl\:flex-row { - flex-direction: row; + .xl\:gap-y-48 { + row-gap: 12rem; } - .xl\:flex-row-reverse { - flex-direction: row-reverse; + .xl\:gap-y-52 { + row-gap: 13rem; } - .xl\:flex-col { - flex-direction: column; + .xl\:gap-y-56 { + row-gap: 14rem; } - .xl\:flex-col-reverse { - flex-direction: column-reverse; + .xl\:gap-y-60 { + row-gap: 15rem; } - .xl\:flex-wrap { - flex-wrap: wrap; + .xl\:gap-y-64 { + row-gap: 16rem; } - .xl\:flex-wrap-reverse { - flex-wrap: wrap-reverse; + .xl\:gap-y-72 { + row-gap: 18rem; } - .xl\:flex-nowrap { - flex-wrap: nowrap; + .xl\:gap-y-80 { + row-gap: 20rem; } - .xl\:place-items-start { - place-items: start; + .xl\:gap-y-96 { + row-gap: 24rem; } - .xl\:place-items-end { - place-items: end; + .xl\:gap-y-px { + row-gap: 1px; } - .xl\:place-items-center { - place-items: center; + .xl\:gap-y-0\.5 { + row-gap: 0.125rem; } - .xl\:place-items-stretch { - place-items: stretch; + .xl\:gap-y-1\.5 { + row-gap: 0.375rem; } - .xl\:place-content-center { - place-content: center; + .xl\:gap-y-2\.5 { + row-gap: 0.625rem; } - .xl\:place-content-start { - place-content: start; + .xl\:gap-y-3\.5 { + row-gap: 0.875rem; } - .xl\:place-content-end { - place-content: end; + .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\:place-content-between { - place-content: space-between; + .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\:place-content-around { - place-content: space-around; + .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\:place-content-evenly { - place-content: space-evenly; + .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\:place-content-stretch { - place-content: stretch; + .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\:place-self-auto { - place-self: auto; + .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\:place-self-start { - place-self: start; + .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\:place-self-end { - place-self: end; + .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\:place-self-center { - place-self: center; + .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\:place-self-stretch { - place-self: stretch; + .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\:items-start { - align-items: flex-start; + .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\:items-end { - align-items: flex-end; + .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\:items-center { - align-items: center; + .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\:items-baseline { - align-items: baseline; + .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\:items-stretch { - align-items: stretch; + .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\:content-center { - align-content: center; + .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\:content-start { - align-content: flex-start; + .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\:content-end { - align-content: flex-end; + .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\:content-between { - align-content: space-between; + .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\:content-around { - align-content: space-around; + .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\:content-evenly { - align-content: space-evenly; + .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\:self-auto { - align-self: auto; + .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\:self-start { - align-self: flex-start; + .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\:self-end { - align-self: flex-end; + .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\:self-center { - align-self: center; + .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\:self-stretch { - align-self: stretch; + .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\:justify-items-start { - justify-items: start; + .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\:justify-items-end { - justify-items: end; + .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\:justify-items-center { - justify-items: center; + .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\:justify-items-stretch { - justify-items: stretch; + .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\:justify-start { - justify-content: flex-start; + .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\:justify-end { - justify-content: flex-end; + .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\:justify-center { - justify-content: center; + .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\:justify-between { - justify-content: space-between; + .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\:justify-around { - justify-content: space-around; + .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\:justify-evenly { - justify-content: space-evenly; + .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\:justify-self-auto { - justify-self: auto; + .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\:justify-self-start { - justify-self: start; + .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\:justify-self-end { - justify-self: end; + .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\:justify-self-center { - justify-self: center; + .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\:justify-self-stretch { - justify-self: stretch; + .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\:flex-1 { - flex: 1 1 0%; + .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\:flex-auto { - flex: 1 1 auto; + .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\:flex-initial { - flex: 0 1 auto; + .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\:flex-none { - flex: none; + .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\:flex-grow-0 { - flex-grow: 0; + .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\:flex-grow { - flex-grow: 1; + .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\:flex-shrink-0 { - flex-shrink: 0; + .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\:flex-shrink { - flex-shrink: 1; + .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\:order-1 { - order: 1; + .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\:order-2 { - order: 2; + .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\:order-3 { - order: 3; + .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\:order-4 { - order: 4; + .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\:order-5 { - order: 5; + .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\:order-6 { - order: 6; + .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\:order-7 { - order: 7; + .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\:order-8 { - order: 8; + .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\:order-9 { - order: 9; + .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\:order-10 { - order: 10; + .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\:order-11 { - order: 11; + .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\:order-12 { - order: 12; + .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\:order-first { - order: -9999; + .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\:order-last { - order: 9999; + .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\:order-none { - order: 0; + .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\:float-right { - float: right; + .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\:float-left { - float: left; + .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\:float-none { - float: none; + .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\:clear-left { - clear: left; + .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\:clear-right { - clear: right; + .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\:clear-both { - clear: both; + .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\:clear-none { - clear: none; + .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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .xl\:-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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .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\:font-thin { - font-weight: 100; + .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\:font-extralight { - font-weight: 200; + .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\:font-light { - font-weight: 300; + .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\:font-normal { - font-weight: 400; + .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\:font-medium { - font-weight: 500; + .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\:font-semibold { - font-weight: 600; + .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\:font-bold { - font-weight: 700; + .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\:font-extrabold { - font-weight: 800; + .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\:font-black { - font-weight: 900; + .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\:h-0 { - height: 0px; + .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\:h-1 { - height: 0.25rem; + .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\:h-2 { - height: 0.5rem; + .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\:h-3 { - height: 0.75rem; + .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\:h-4 { - height: 1rem; + .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\:h-5 { - height: 1.25rem; + .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\:h-6 { - height: 1.5rem; + .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\:h-7 { - height: 1.75rem; + .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\:h-8 { - height: 2rem; + .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\:h-9 { - height: 2.25rem; + .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\:h-10 { - height: 2.5rem; + .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\:h-11 { - height: 2.75rem; + .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\:h-12 { - height: 3rem; + .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\:h-14 { - height: 3.5rem; + .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\:h-16 { - height: 4rem; + .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\:h-20 { - height: 5rem; + .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\:h-24 { - height: 6rem; + .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\:h-28 { - height: 7rem; + .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\:h-32 { - height: 8rem; + .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\:h-36 { - height: 9rem; + .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\:h-40 { - height: 10rem; + .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\:h-44 { - height: 11rem; + .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\:h-48 { - height: 12rem; + .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\:h-52 { - height: 13rem; + .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\:h-56 { - height: 14rem; + .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\:h-60 { - height: 15rem; + .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\:h-64 { - height: 16rem; + .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\:h-72 { - height: 18rem; + .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\:h-80 { - height: 20rem; + .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\:h-96 { - height: 24rem; + .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\:h-auto { - height: auto; + .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\:h-px { - height: 1px; + .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\:h-0\.5 { - height: 0.125rem; + .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\:h-1\.5 { - height: 0.375rem; + .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\:h-2\.5 { - height: 0.625rem; + .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\:h-3\.5 { - height: 0.875rem; + .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\:h-1\/2 { - height: 50%; + .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\:h-1\/3 { - height: 33.333333%; + .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\:h-2\/3 { - height: 66.666667%; + .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\:h-1\/4 { - height: 25%; + .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\:h-2\/4 { - height: 50%; + .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\:h-3\/4 { - height: 75%; + .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\:h-1\/5 { - height: 20%; + .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\:h-2\/5 { - height: 40%; + .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\:h-3\/5 { - height: 60%; + .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\:h-4\/5 { - height: 80%; + .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\:h-1\/6 { - height: 16.666667%; + .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\:h-2\/6 { - height: 33.333333%; + .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\:h-3\/6 { - height: 50%; + .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\:h-4\/6 { - height: 66.666667%; + .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\:h-5\/6 { - height: 83.333333%; + .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\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .xl\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .xl\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .xl\:leading-7 { - line-height: 1.75rem; + .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .xl\:leading-8 { - line-height: 2rem; + .xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .xl\:leading-9 { - line-height: 2.25rem; + .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .xl\:leading-10 { - line-height: 2.5rem; + .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .xl\:leading-none { - line-height: 1; + .xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .xl\:leading-tight { - line-height: 1.25; + .xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .xl\:leading-snug { - line-height: 1.375; + .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .xl\:leading-normal { - line-height: 1.5; + .xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .xl\:leading-relaxed { - line-height: 1.625; + .xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } - .xl\:leading-loose { - line-height: 2; + .xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } - .xl\:list-inside { - list-style-position: inside; + .xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } - .xl\:list-outside { - list-style-position: outside; + .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } - .xl\:list-none { - list-style-type: none; + .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } - .xl\:list-disc { - list-style-type: disc; + .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } - .xl\:list-decimal { - list-style-type: decimal; + .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } - .xl\:m-0 { - margin: 0px; + .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } - .xl\:m-1 { - margin: 0.25rem; + .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } - .xl\:m-2 { - margin: 0.5rem; + .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } - .xl\:m-3 { - margin: 0.75rem; + .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } - .xl\:m-4 { - margin: 1rem; + .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } - .xl\:m-5 { - margin: 1.25rem; + .xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } - .xl\:m-6 { - margin: 1.5rem; + .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } - .xl\:m-7 { - margin: 1.75rem; + .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } - .xl\:m-8 { - margin: 2rem; + .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } - .xl\:m-9 { - margin: 2.25rem; + .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } - .xl\:m-10 { - margin: 2.5rem; + .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } - .xl\:m-11 { - margin: 2.75rem; + .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } - .xl\:m-12 { - margin: 3rem; + .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } - .xl\:m-14 { - margin: 3.5rem; + .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } - .xl\:m-16 { - margin: 4rem; + .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } - .xl\:m-20 { - margin: 5rem; + .xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } - .xl\:m-24 { - margin: 6rem; + .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } - .xl\:m-28 { - margin: 7rem; + .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } - .xl\:m-32 { - margin: 8rem; + .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } - .xl\:m-36 { - margin: 9rem; + .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } - .xl\:m-40 { - margin: 10rem; + .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } - .xl\:m-44 { - margin: 11rem; + .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } - .xl\:m-48 { - margin: 12rem; + .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } - .xl\:m-52 { - margin: 13rem; + .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } - .xl\:m-56 { - margin: 14rem; + .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } - .xl\:m-60 { - margin: 15rem; + .xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } - .xl\:m-64 { - margin: 16rem; + .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } - .xl\:m-72 { - margin: 18rem; + .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } - .xl\:m-80 { - margin: 20rem; + .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } - .xl\:m-96 { - margin: 24rem; + .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } - .xl\:m-auto { - margin: auto; + .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } - .xl\:m-px { - margin: 1px; + .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } - .xl\:m-0\.5 { - margin: 0.125rem; + .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } - .xl\:m-1\.5 { - margin: 0.375rem; + .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } - .xl\:m-2\.5 { - margin: 0.625rem; + .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } - .xl\:m-3\.5 { - margin: 0.875rem; + .xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } - .xl\:-m-0 { - margin: 0px; + .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } - .xl\:-m-1 { - margin: -0.25rem; + .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } - .xl\:-m-2 { - margin: -0.5rem; + .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } - .xl\:-m-3 { - margin: -0.75rem; + .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } - .xl\:-m-4 { - margin: -1rem; + .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } - .xl\:-m-5 { - margin: -1.25rem; + .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } - .xl\:-m-6 { - margin: -1.5rem; + .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } - .xl\:-m-7 { - margin: -1.75rem; + .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } - .xl\:-m-8 { - margin: -2rem; + .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } - .xl\:-m-9 { - margin: -2.25rem; + .xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } - .xl\:-m-10 { - margin: -2.5rem; + .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } - .xl\:-m-11 { - margin: -2.75rem; + .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } - .xl\:-m-12 { - margin: -3rem; + .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } - .xl\:-m-14 { - margin: -3.5rem; + .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } - .xl\:-m-16 { - margin: -4rem; + .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } - .xl\:-m-20 { - margin: -5rem; + .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } - .xl\:-m-24 { - margin: -6rem; + .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } - .xl\:-m-28 { - margin: -7rem; + .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } - .xl\:-m-32 { - margin: -8rem; + .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } - .xl\:-m-36 { - margin: -9rem; + .xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } - .xl\:-m-40 { - margin: -10rem; + .xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } - .xl\:-m-44 { - margin: -11rem; + .xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } - .xl\:-m-48 { - margin: -12rem; + .xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } - .xl\:-m-52 { - margin: -13rem; + .xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } - .xl\:-m-56 { - margin: -14rem; + .xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } - .xl\:-m-60 { - margin: -15rem; + .xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } - .xl\:-m-64 { - margin: -16rem; + .xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } - .xl\:-m-72 { - margin: -18rem; + .xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } - .xl\:-m-80 { - margin: -20rem; + .xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } - .xl\:-m-96 { - margin: -24rem; + .xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } - .xl\:-m-px { - margin: -1px; + .xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } - .xl\:-m-0\.5 { - margin: -0.125rem; + .xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } - .xl\:-m-1\.5 { - margin: -0.375rem; + .xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } - .xl\:-m-2\.5 { - margin: -0.625rem; + .xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } - .xl\:-m-3\.5 { - margin: -0.875rem; + .xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } - .xl\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } - .xl\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } - .xl\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } - .xl\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } - .xl\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } - .xl\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } - .xl\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } - .xl\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } - .xl\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } - .xl\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } - .xl\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } - .xl\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } - .xl\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } - .xl\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } - .xl\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } - .xl\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } - .xl\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } - .xl\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } - .xl\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } - .xl\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .xl\:place-self-auto { + place-self: auto; } - .xl\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .xl\:place-self-start { + place-self: start; } - .xl\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .xl\:place-self-end { + place-self: end; } - .xl\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .xl\:place-self-center { + place-self: center; } - .xl\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .xl\:place-self-stretch { + place-self: stretch; } - .xl\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .xl\:self-auto { + align-self: auto; } - .xl\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .xl\:self-start { + align-self: flex-start; } - .xl\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .xl\:self-end { + align-self: flex-end; } - .xl\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .xl\:self-center { + align-self: center; } - .xl\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .xl\:self-stretch { + align-self: stretch; } - .xl\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .xl\:justify-self-auto { + justify-self: auto; } - .xl\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .xl\:justify-self-start { + justify-self: start; } - .xl\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .xl\:justify-self-end { + justify-self: end; } - .xl\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .xl\:justify-self-center { + justify-self: center; } - .xl\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .xl\:justify-self-stretch { + justify-self: stretch; } - .xl\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .xl\:overflow-auto { + overflow: auto; } - .xl\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .xl\:overflow-hidden { + overflow: hidden; } - .xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .xl\:overflow-visible { + overflow: visible; } - .xl\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .xl\:overflow-scroll { + overflow: scroll; } - .xl\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .xl\:overflow-x-auto { + overflow-x: auto; } - .xl\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .xl\:overflow-y-auto { + overflow-y: auto; } - .xl\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .xl\:overflow-x-hidden { + overflow-x: hidden; } - .xl\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .xl\:overflow-y-hidden { + overflow-y: hidden; } - .xl\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .xl\:overflow-x-visible { + overflow-x: visible; } - .xl\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .xl\:overflow-y-visible { + overflow-y: visible; } - .xl\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .xl\:overflow-x-scroll { + overflow-x: scroll; } - .xl\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .xl\:overflow-y-scroll { + overflow-y: scroll; } - .xl\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .xl\:overscroll-auto { + overscroll-behavior: auto; } - .xl\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .xl\:overscroll-contain { + overscroll-behavior: contain; } - .xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .xl\:overscroll-none { + overscroll-behavior: none; } - .xl\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .xl\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .xl\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .xl\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .xl\:overscroll-y-none { + overscroll-behavior-y: none; } - .xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .xl\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .xl\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .xl\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .xl\:overscroll-x-none { + overscroll-behavior-x: none; } - .xl\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .xl\:overflow-ellipsis { + text-overflow: ellipsis; } - .xl\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .xl\:overflow-clip { + text-overflow: clip; } - .xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .xl\:whitespace-normal { + white-space: normal; } - .xl\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .xl\:whitespace-nowrap { + white-space: nowrap; } - .xl\:my-auto { - margin-top: auto; - margin-bottom: auto; + .xl\:whitespace-pre { + white-space: pre; } - .xl\:mx-auto { - margin-left: auto; - margin-right: auto; + .xl\:whitespace-pre-line { + white-space: pre-line; } - .xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .xl\:whitespace-pre-wrap { + white-space: pre-wrap; } - .xl\:mx-px { - margin-left: 1px; - margin-right: 1px; + .xl\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .xl\:break-words { + overflow-wrap: break-word; } - .xl\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .xl\:break-all { + word-break: break-all; } - .xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .xl\:rounded-none { + border-radius: 0px; } - .xl\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .xl\:rounded-sm { + border-radius: 0.125rem; } - .xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .xl\:rounded { + border-radius: 0.25rem; } - .xl\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .xl\:rounded-md { + border-radius: 0.375rem; } - .xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .xl\:rounded-lg { + border-radius: 0.5rem; } - .xl\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .xl\:rounded-xl { + border-radius: 0.75rem; } - .xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .xl\:rounded-2xl { + border-radius: 1rem; } - .xl\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .xl\:rounded-3xl { + border-radius: 1.5rem; } - .xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .xl\:rounded-full { + border-radius: 9999px; } - .xl\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .xl\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .xl\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .xl\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .xl\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .xl\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .xl\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .xl\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .xl\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .xl\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .xl\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .xl\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .xl\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .xl\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .xl\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .xl\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .xl\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .xl\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .xl\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .xl\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .xl\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .xl\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .xl\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .xl\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .xl\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .xl\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .xl\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .xl\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .xl\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .xl\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .xl\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .xl\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .xl\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .xl\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .xl\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .xl\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .xl\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .xl\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .xl\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .xl\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .xl\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .xl\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .xl\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .xl\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .xl\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .xl\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .xl\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .xl\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .xl\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .xl\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .xl\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .xl\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .xl\:rounded-tl-none { + border-top-left-radius: 0px; } - .xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .xl\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .xl\:rounded-tl { + border-top-left-radius: 0.25rem; } - .xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .xl\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .xl\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .xl\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .xl\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .xl\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .xl\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .xl\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .xl\:rounded-tl-full { + border-top-left-radius: 9999px; } - .xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .xl\:rounded-tr-none { + border-top-right-radius: 0px; } - .xl\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .xl\:rounded-tr { + border-top-right-radius: 0.25rem; } - .xl\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .xl\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .xl\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .xl\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .xl\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .xl\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .xl\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .xl\:rounded-tr-full { + border-top-right-radius: 9999px; } - .xl\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .xl\:rounded-br-none { + border-bottom-right-radius: 0px; } - .xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .xl\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .xl\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .xl\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .xl\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .xl\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .xl\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .xl\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .xl\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .xl\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .xl\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .xl\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .xl\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .xl\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .xl\:mt-0 { - margin-top: 0px; + .xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .xl\:mr-0 { - margin-right: 0px; + .xl\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .xl\:mb-0 { - margin-bottom: 0px; + .xl\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .xl\:ml-0 { - margin-left: 0px; + .xl\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .xl\:mt-1 { - margin-top: 0.25rem; + .xl\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .xl\:mr-1 { - margin-right: 0.25rem; + .xl\:border-0 { + border-width: 0px; } - .xl\:mb-1 { - margin-bottom: 0.25rem; + .xl\:border-2 { + border-width: 2px; } - .xl\:ml-1 { - margin-left: 0.25rem; + .xl\:border-4 { + border-width: 4px; } - .xl\:mt-2 { - margin-top: 0.5rem; + .xl\:border-8 { + border-width: 8px; } - .xl\:mr-2 { - margin-right: 0.5rem; + .xl\:border { + border-width: 1px; } - .xl\:mb-2 { - margin-bottom: 0.5rem; + .xl\:border-t-0 { + border-top-width: 0px; } - .xl\:ml-2 { - margin-left: 0.5rem; + .xl\:border-t-2 { + border-top-width: 2px; } - .xl\:mt-3 { - margin-top: 0.75rem; + .xl\:border-t-4 { + border-top-width: 4px; } - .xl\:mr-3 { - margin-right: 0.75rem; + .xl\:border-t-8 { + border-top-width: 8px; } - .xl\:mb-3 { - margin-bottom: 0.75rem; + .xl\:border-t { + border-top-width: 1px; } - .xl\:ml-3 { - margin-left: 0.75rem; + .xl\:border-r-0 { + border-right-width: 0px; } - .xl\:mt-4 { - margin-top: 1rem; + .xl\:border-r-2 { + border-right-width: 2px; } - .xl\:mr-4 { - margin-right: 1rem; + .xl\:border-r-4 { + border-right-width: 4px; } - .xl\:mb-4 { - margin-bottom: 1rem; + .xl\:border-r-8 { + border-right-width: 8px; } - .xl\:ml-4 { - margin-left: 1rem; + .xl\:border-r { + border-right-width: 1px; } - .xl\:mt-5 { - margin-top: 1.25rem; + .xl\:border-b-0 { + border-bottom-width: 0px; } - .xl\:mr-5 { - margin-right: 1.25rem; + .xl\:border-b-2 { + border-bottom-width: 2px; } - .xl\:mb-5 { - margin-bottom: 1.25rem; + .xl\:border-b-4 { + border-bottom-width: 4px; } - .xl\:ml-5 { - margin-left: 1.25rem; + .xl\:border-b-8 { + border-bottom-width: 8px; } - .xl\:mt-6 { - margin-top: 1.5rem; + .xl\:border-b { + border-bottom-width: 1px; } - .xl\:mr-6 { - margin-right: 1.5rem; + .xl\:border-l-0 { + border-left-width: 0px; } - .xl\:mb-6 { - margin-bottom: 1.5rem; + .xl\:border-l-2 { + border-left-width: 2px; } - .xl\:ml-6 { - margin-left: 1.5rem; + .xl\:border-l-4 { + border-left-width: 4px; } - .xl\:mt-7 { - margin-top: 1.75rem; + .xl\:border-l-8 { + border-left-width: 8px; } - .xl\:mr-7 { - margin-right: 1.75rem; + .xl\:border-l { + border-left-width: 1px; } - .xl\:mb-7 { - margin-bottom: 1.75rem; + .xl\:border-solid { + border-style: solid; } - .xl\:ml-7 { - margin-left: 1.75rem; + .xl\:border-dashed { + border-style: dashed; } - .xl\:mt-8 { - margin-top: 2rem; + .xl\:border-dotted { + border-style: dotted; } - .xl\:mr-8 { - margin-right: 2rem; + .xl\:border-double { + border-style: double; } - .xl\:mb-8 { - margin-bottom: 2rem; + .xl\:border-none { + border-style: none; } - .xl\:ml-8 { - margin-left: 2rem; + .xl\:border-transparent { + border-color: transparent; } - .xl\:mt-9 { - margin-top: 2.25rem; + .xl\:border-current { + border-color: currentColor; } - .xl\:mr-9 { - margin-right: 2.25rem; + .xl\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .xl\:mb-9 { - margin-bottom: 2.25rem; + .xl\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .xl\:ml-9 { - margin-left: 2.25rem; + .xl\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .xl\:mt-10 { - margin-top: 2.5rem; + .xl\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .xl\:mr-10 { - margin-right: 2.5rem; + .xl\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .xl\:mb-10 { - margin-bottom: 2.5rem; + .xl\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .xl\:ml-10 { - margin-left: 2.5rem; + .xl\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .xl\:mt-11 { - margin-top: 2.75rem; + .xl\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .xl\:mr-11 { - margin-right: 2.75rem; + .xl\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .xl\:mb-11 { - margin-bottom: 2.75rem; + .xl\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .xl\:ml-11 { - margin-left: 2.75rem; + .xl\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .xl\:mt-12 { - margin-top: 3rem; + .xl\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .xl\:mr-12 { - margin-right: 3rem; + .xl\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .xl\:mb-12 { - margin-bottom: 3rem; + .xl\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .xl\:ml-12 { - margin-left: 3rem; + .xl\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .xl\:mt-14 { - margin-top: 3.5rem; + .xl\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .xl\:mr-14 { - margin-right: 3.5rem; + .xl\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .xl\:mb-14 { - margin-bottom: 3.5rem; + .xl\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .xl\:ml-14 { - margin-left: 3.5rem; + .xl\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .xl\:mt-16 { - margin-top: 4rem; + .xl\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .xl\:mr-16 { - margin-right: 4rem; + .xl\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .xl\:mb-16 { - margin-bottom: 4rem; + .xl\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .xl\:ml-16 { - margin-left: 4rem; + .xl\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .xl\:mt-20 { - margin-top: 5rem; + .xl\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .xl\:mr-20 { - margin-right: 5rem; + .xl\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .xl\:mb-20 { - margin-bottom: 5rem; + .xl\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .xl\:ml-20 { - margin-left: 5rem; + .xl\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .xl\:mt-24 { - margin-top: 6rem; + .xl\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .xl\:mr-24 { - margin-right: 6rem; + .xl\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .xl\:mb-24 { - margin-bottom: 6rem; + .xl\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .xl\:ml-24 { - margin-left: 6rem; + .xl\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .xl\:mt-28 { - margin-top: 7rem; + .xl\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .xl\:mr-28 { - margin-right: 7rem; + .xl\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .xl\:mb-28 { - margin-bottom: 7rem; + .xl\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .xl\:ml-28 { - margin-left: 7rem; + .xl\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .xl\:mt-32 { - margin-top: 8rem; + .xl\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .xl\:mr-32 { - margin-right: 8rem; + .xl\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .xl\:mb-32 { - margin-bottom: 8rem; + .xl\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .xl\:ml-32 { - margin-left: 8rem; + .xl\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .xl\:mt-36 { - margin-top: 9rem; + .xl\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .xl\:mr-36 { - margin-right: 9rem; + .xl\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .xl\:mb-36 { - margin-bottom: 9rem; + .xl\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .xl\:ml-36 { - margin-left: 9rem; + .xl\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .xl\:mt-40 { - margin-top: 10rem; + .xl\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .xl\:mr-40 { - margin-right: 10rem; + .xl\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .xl\:mb-40 { - margin-bottom: 10rem; + .xl\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .xl\:ml-40 { - margin-left: 10rem; + .xl\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .xl\:mt-44 { - margin-top: 11rem; + .xl\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .xl\:mr-44 { - margin-right: 11rem; + .xl\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .xl\:mb-44 { - margin-bottom: 11rem; + .xl\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .xl\:ml-44 { - margin-left: 11rem; + .xl\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .xl\:mt-48 { - margin-top: 12rem; + .xl\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .xl\:mr-48 { - margin-right: 12rem; + .xl\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .xl\:mb-48 { - margin-bottom: 12rem; + .xl\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .xl\:ml-48 { - margin-left: 12rem; + .xl\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .xl\:mt-52 { - margin-top: 13rem; + .xl\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .xl\:mr-52 { - margin-right: 13rem; + .xl\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .xl\:mb-52 { - margin-bottom: 13rem; + .xl\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .xl\:ml-52 { - margin-left: 13rem; + .xl\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .xl\:mt-56 { - margin-top: 14rem; + .xl\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .xl\:mr-56 { - margin-right: 14rem; + .xl\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .xl\:mb-56 { - margin-bottom: 14rem; + .xl\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .xl\:ml-56 { - margin-left: 14rem; + .xl\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .xl\:mt-60 { - margin-top: 15rem; + .xl\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .xl\:mr-60 { - margin-right: 15rem; + .xl\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .xl\:mb-60 { - margin-bottom: 15rem; + .xl\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .xl\:ml-60 { - margin-left: 15rem; + .xl\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .xl\:mt-64 { - margin-top: 16rem; + .xl\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .xl\:mr-64 { - margin-right: 16rem; + .xl\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .xl\:mb-64 { - margin-bottom: 16rem; + .xl\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .xl\:ml-64 { - margin-left: 16rem; + .xl\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .xl\:mt-72 { - margin-top: 18rem; + .xl\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .xl\:mr-72 { - margin-right: 18rem; + .xl\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .xl\:mb-72 { - margin-bottom: 18rem; + .xl\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .xl\:ml-72 { - margin-left: 18rem; + .xl\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .xl\:mt-80 { - margin-top: 20rem; + .xl\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + } + + .xl\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .xl\:mr-80 { - margin-right: 20rem; + .xl\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .xl\:mb-80 { - margin-bottom: 20rem; + .xl\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .xl\:ml-80 { - margin-left: 20rem; + .xl\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .xl\:mt-96 { - margin-top: 24rem; + .xl\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .xl\:mr-96 { - margin-right: 24rem; + .xl\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .xl\:mb-96 { - margin-bottom: 24rem; + .group:hover .xl\:group-hover\:border-transparent { + border-color: transparent; } - .xl\:ml-96 { - margin-left: 24rem; + .group:hover .xl\:group-hover\:border-current { + border-color: currentColor; } - .xl\:mt-auto { - margin-top: auto; + .group:hover .xl\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .xl\:mr-auto { - margin-right: auto; + .group:hover .xl\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .xl\:mb-auto { - margin-bottom: auto; + .group:hover .xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .xl\:ml-auto { - margin-left: auto; + .group:hover .xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .xl\:mt-px { - margin-top: 1px; + .group:hover .xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .xl\:mr-px { - margin-right: 1px; + .group:hover .xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .xl\:mb-px { - margin-bottom: 1px; + .group:hover .xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .xl\:ml-px { - margin-left: 1px; + .group:hover .xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .xl\:mt-0\.5 { - margin-top: 0.125rem; + .group:hover .xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .xl\:mr-0\.5 { - margin-right: 0.125rem; + .group:hover .xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .group:hover .xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .xl\:ml-0\.5 { - margin-left: 0.125rem; + .group:hover .xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .xl\:mt-1\.5 { - margin-top: 0.375rem; + .group:hover .xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .xl\:mr-1\.5 { - margin-right: 0.375rem; + .group:hover .xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .group:hover .xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .xl\:ml-1\.5 { - margin-left: 0.375rem; + .group:hover .xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .xl\:mt-2\.5 { - margin-top: 0.625rem; + .group:hover .xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .xl\:mr-2\.5 { - margin-right: 0.625rem; + .group:hover .xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .group:hover .xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .xl\:ml-2\.5 { - margin-left: 0.625rem; + .group:hover .xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .xl\:mt-3\.5 { - margin-top: 0.875rem; + .group:hover .xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .xl\:mr-3\.5 { - margin-right: 0.875rem; + .group:hover .xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .group:hover .xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .xl\:ml-3\.5 { - margin-left: 0.875rem; + .group:hover .xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .xl\:-mt-0 { - margin-top: 0px; + .group:hover .xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .xl\:-mr-0 { - margin-right: 0px; + .group:hover .xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .xl\:-mb-0 { - margin-bottom: 0px; + .group:hover .xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .xl\:-ml-0 { - margin-left: 0px; + .group:hover .xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .xl\:-mt-1 { - margin-top: -0.25rem; + .group:hover .xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .xl\:-mr-1 { - margin-right: -0.25rem; + .group:hover .xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .xl\:-mb-1 { - margin-bottom: -0.25rem; + .group:hover .xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .xl\:-ml-1 { - margin-left: -0.25rem; + .group:hover .xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .xl\:-mt-2 { - margin-top: -0.5rem; + .group:hover .xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .xl\:-mr-2 { - margin-right: -0.5rem; + .group:hover .xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .xl\:-mb-2 { - margin-bottom: -0.5rem; + .group:hover .xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .xl\:-ml-2 { - margin-left: -0.5rem; + .group:hover .xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .xl\:-mt-3 { - margin-top: -0.75rem; + .group:hover .xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .xl\:-mr-3 { - margin-right: -0.75rem; + .group:hover .xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .xl\:-mb-3 { - margin-bottom: -0.75rem; + .group:hover .xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .xl\:-ml-3 { - margin-left: -0.75rem; + .group:hover .xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .xl\:-mt-4 { - margin-top: -1rem; + .group:hover .xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .xl\:-mr-4 { - margin-right: -1rem; + .group:hover .xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .xl\:-mb-4 { - margin-bottom: -1rem; + .group:hover .xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .xl\:-ml-4 { - margin-left: -1rem; + .group:hover .xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .xl\:-mt-5 { - margin-top: -1.25rem; + .group:hover .xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .xl\:-mr-5 { - margin-right: -1.25rem; + .group:hover .xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .xl\:-mb-5 { - margin-bottom: -1.25rem; + .group:hover .xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .xl\:-ml-5 { - margin-left: -1.25rem; + .group:hover .xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .xl\:-mt-6 { - margin-top: -1.5rem; + .group:hover .xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .xl\:-mr-6 { - margin-right: -1.5rem; + .group:hover .xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .xl\:-mb-6 { - margin-bottom: -1.5rem; + .group:hover .xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .xl\:-ml-6 { - margin-left: -1.5rem; + .group:hover .xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .xl\:-mt-7 { - margin-top: -1.75rem; + .group:hover .xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .xl\:-mr-7 { - margin-right: -1.75rem; + .group:hover .xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .xl\:-mb-7 { - margin-bottom: -1.75rem; + .group:hover .xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .xl\:-ml-7 { - margin-left: -1.75rem; + .group:hover .xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .xl\:-mt-8 { - margin-top: -2rem; + .group:hover .xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .xl\:-mr-8 { - margin-right: -2rem; + .group:hover .xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .xl\:-mb-8 { - margin-bottom: -2rem; + .group:hover .xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .xl\:-ml-8 { - margin-left: -2rem; + .group:hover .xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .xl\:-mt-9 { - margin-top: -2.25rem; + .group:hover .xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .xl\:-mr-9 { - margin-right: -2.25rem; + .group:hover .xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .xl\:-mb-9 { - margin-bottom: -2.25rem; + .group:hover .xl\:group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .xl\:-ml-9 { - margin-left: -2.25rem; + .group:hover .xl\:group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .xl\:-mt-10 { - margin-top: -2.5rem; + .group:hover .xl\:group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .xl\:-mr-10 { - margin-right: -2.5rem; + .group:hover .xl\:group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .xl\:-mb-10 { - margin-bottom: -2.5rem; + .group:hover .xl\:group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .xl\:-ml-10 { - margin-left: -2.5rem; + .group:hover .xl\:group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .xl\:-mt-11 { - margin-top: -2.75rem; + .group:hover .xl\:group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .xl\:-mr-11 { - margin-right: -2.75rem; + .group:hover .xl\:group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .xl\:-mb-11 { - margin-bottom: -2.75rem; + .group:hover .xl\:group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .xl\:-ml-11 { - margin-left: -2.75rem; + .group:hover .xl\:group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .xl\:-mt-12 { - margin-top: -3rem; + .group:hover .xl\:group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .xl\:-mr-12 { - margin-right: -3rem; + .group:hover .xl\:group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .xl\:-mb-12 { - margin-bottom: -3rem; + .group:hover .xl\:group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .xl\:-ml-12 { - margin-left: -3rem; + .group:hover .xl\:group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .xl\:-mt-14 { - margin-top: -3.5rem; + .group:hover .xl\:group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .xl\:-mr-14 { - margin-right: -3.5rem; + .group:hover .xl\:group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .xl\:-mb-14 { - margin-bottom: -3.5rem; + .group:hover .xl\:group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .xl\:-ml-14 { - margin-left: -3.5rem; + .group:hover .xl\:group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .xl\:-mt-16 { - margin-top: -4rem; + .group:hover .xl\:group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .xl\:-mr-16 { - margin-right: -4rem; + .group:hover .xl\:group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .xl\:-mb-16 { - margin-bottom: -4rem; + .xl\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .xl\:-ml-16 { - margin-left: -4rem; + .xl\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .xl\:-mt-20 { - margin-top: -5rem; + .xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .xl\:-mr-20 { - margin-right: -5rem; + .xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .xl\:-mb-20 { - margin-bottom: -5rem; + .xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .xl\:-ml-20 { - margin-left: -5rem; + .xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .xl\:-mt-24 { - margin-top: -6rem; + .xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .xl\:-mr-24 { - margin-right: -6rem; + .xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .xl\:-mb-24 { - margin-bottom: -6rem; + .xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .xl\:-ml-24 { - margin-left: -6rem; + .xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .xl\:-mt-28 { - margin-top: -7rem; + .xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .xl\:-mr-28 { - margin-right: -7rem; + .xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .xl\:-mb-28 { - margin-bottom: -7rem; + .xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .xl\:-ml-28 { - margin-left: -7rem; + .xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .xl\:-mt-32 { - margin-top: -8rem; + .xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .xl\:-mr-32 { - margin-right: -8rem; + .xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .xl\:-mb-32 { - margin-bottom: -8rem; + .xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .xl\:-ml-32 { - margin-left: -8rem; + .xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .xl\:-mt-36 { - margin-top: -9rem; + .xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .xl\:-mr-36 { - margin-right: -9rem; + .xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .xl\:-mb-36 { - margin-bottom: -9rem; + .xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .xl\:-ml-36 { - margin-left: -9rem; + .xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .xl\:-mt-40 { - margin-top: -10rem; + .xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .xl\:-mr-40 { - margin-right: -10rem; + .xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .xl\:-mb-40 { - margin-bottom: -10rem; + .xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .xl\:-ml-40 { - margin-left: -10rem; + .xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .xl\:-mt-44 { - margin-top: -11rem; + .xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .xl\:-mr-44 { - margin-right: -11rem; + .xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .xl\:-mb-44 { - margin-bottom: -11rem; + .xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .xl\:-ml-44 { - margin-left: -11rem; + .xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .xl\:-mt-48 { - margin-top: -12rem; + .xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .xl\:-mr-48 { - margin-right: -12rem; + .xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .xl\:-mb-48 { - margin-bottom: -12rem; + .xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .xl\:-ml-48 { - margin-left: -12rem; + .xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .xl\:-mt-52 { - margin-top: -13rem; + .xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .xl\:-mr-52 { - margin-right: -13rem; + .xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .xl\:-mb-52 { - margin-bottom: -13rem; + .xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .xl\:-ml-52 { - margin-left: -13rem; + .xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .xl\:-mt-56 { - margin-top: -14rem; + .xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .xl\:-mr-56 { - margin-right: -14rem; + .xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .xl\:-mb-56 { - margin-bottom: -14rem; + .xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .xl\:-ml-56 { - margin-left: -14rem; + .xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .xl\:-mt-60 { - margin-top: -15rem; + .xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .xl\:-mr-60 { - margin-right: -15rem; + .xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .xl\:-mb-60 { - margin-bottom: -15rem; + .xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .xl\:-ml-60 { - margin-left: -15rem; + .xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .xl\:-mt-64 { - margin-top: -16rem; + .xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .xl\:-mr-64 { - margin-right: -16rem; + .xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .xl\:-mb-64 { - margin-bottom: -16rem; + .xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .xl\:-ml-64 { - margin-left: -16rem; + .xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .xl\:-mt-72 { - margin-top: -18rem; + .xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .xl\:-mr-72 { - margin-right: -18rem; + .xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .xl\:-mb-72 { - margin-bottom: -18rem; + .xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .xl\:-ml-72 { - margin-left: -18rem; + .xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .xl\:-mt-80 { - margin-top: -20rem; + .xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .xl\:-mr-80 { - margin-right: -20rem; + .xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .xl\:-mb-80 { - margin-bottom: -20rem; + .xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .xl\:-ml-80 { - margin-left: -20rem; + .xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .xl\:-mt-96 { - margin-top: -24rem; + .xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .xl\:-mr-96 { - margin-right: -24rem; + .xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .xl\:-mb-96 { - margin-bottom: -24rem; + .xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .xl\:-ml-96 { - margin-left: -24rem; + .xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .xl\:-mt-px { - margin-top: -1px; + .xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .xl\:-mr-px { - margin-right: -1px; + .xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .xl\:-mb-px { - margin-bottom: -1px; + .xl\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .xl\:-ml-px { - margin-left: -1px; + .xl\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .xl\:-mt-0\.5 { - margin-top: -0.125rem; + .xl\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .xl\:-mr-0\.5 { - margin-right: -0.125rem; + .xl\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .xl\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .xl\:-ml-0\.5 { - margin-left: -0.125rem; + .xl\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .xl\:-mt-1\.5 { - margin-top: -0.375rem; + .xl\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .xl\:-mr-1\.5 { - margin-right: -0.375rem; + .xl\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .xl\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .xl\:-ml-1\.5 { - margin-left: -0.375rem; + .xl\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .xl\:-mt-2\.5 { - margin-top: -0.625rem; + .xl\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .xl\:-mr-2\.5 { - margin-right: -0.625rem; + .xl\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .xl\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .xl\:-ml-2\.5 { - margin-left: -0.625rem; + .xl\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .xl\:-mt-3\.5 { - margin-top: -0.875rem; + .xl\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .xl\:-mr-3\.5 { - margin-right: -0.875rem; + .xl\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .xl\:-mb-3\.5 { - margin-bottom: -0.875rem; + .xl\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .xl\:-ml-3\.5 { - margin-left: -0.875rem; + .xl\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .xl\:max-h-0 { - max-height: 0px; + .xl\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .xl\:max-h-1 { - max-height: 0.25rem; + .xl\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .xl\:max-h-2 { - max-height: 0.5rem; + .xl\:hover\:border-transparent:hover { + border-color: transparent; } - .xl\:max-h-3 { - max-height: 0.75rem; + .xl\:hover\:border-current:hover { + border-color: currentColor; } - .xl\:max-h-4 { - max-height: 1rem; + .xl\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .xl\:max-h-5 { - max-height: 1.25rem; + .xl\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .xl\:max-h-6 { - max-height: 1.5rem; + .xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .xl\:max-h-7 { - max-height: 1.75rem; + .xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .xl\:max-h-8 { - max-height: 2rem; + .xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .xl\:max-h-9 { - max-height: 2.25rem; + .xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .xl\:max-h-10 { - max-height: 2.5rem; + .xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .xl\:max-h-11 { - max-height: 2.75rem; + .xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .xl\:max-h-12 { - max-height: 3rem; + .xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .xl\:max-h-14 { - max-height: 3.5rem; + .xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .xl\:max-h-16 { - max-height: 4rem; + .xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .xl\:max-h-20 { - max-height: 5rem; + .xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .xl\:max-h-24 { - max-height: 6rem; + .xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .xl\:max-h-28 { - max-height: 7rem; + .xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .xl\:max-h-32 { - max-height: 8rem; + .xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .xl\:max-h-36 { - max-height: 9rem; + .xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .xl\:max-h-40 { - max-height: 10rem; + .xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .xl\:max-h-44 { - max-height: 11rem; + .xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .xl\:max-h-48 { - max-height: 12rem; + .xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .xl\:max-h-52 { - max-height: 13rem; + .xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .xl\:max-h-56 { - max-height: 14rem; + .xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .xl\:max-h-60 { - max-height: 15rem; + .xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .xl\:max-h-64 { - max-height: 16rem; + .xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .xl\:max-h-72 { - max-height: 18rem; + .xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .xl\:max-h-80 { - max-height: 20rem; + .xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .xl\:max-h-96 { - max-height: 24rem; + .xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .xl\:max-h-px { - max-height: 1px; + .xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .xl\:max-h-0\.5 { - max-height: 0.125rem; + .xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .xl\:max-h-1\.5 { - max-height: 0.375rem; + .xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .xl\:max-h-2\.5 { - max-height: 0.625rem; + .xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .xl\:max-h-3\.5 { - max-height: 0.875rem; + .xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .xl\:max-h-full { - max-height: 100%; + .xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .xl\:max-h-screen { - max-height: 100vh; + .xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .xl\:max-w-0 { - max-width: 0rem; + .xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .xl\:max-w-none { - max-width: none; + .xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .xl\:max-w-xs { - max-width: 20rem; + .xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .xl\:max-w-sm { - max-width: 24rem; + .xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .xl\:max-w-md { - max-width: 28rem; + .xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .xl\:max-w-lg { - max-width: 32rem; + .xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .xl\:max-w-xl { - max-width: 36rem; + .xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .xl\:max-w-2xl { - max-width: 42rem; + .xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .xl\:max-w-3xl { - max-width: 48rem; + .xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .xl\:max-w-4xl { - max-width: 56rem; + .xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .xl\:max-w-5xl { - max-width: 64rem; + .xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .xl\:max-w-6xl { - max-width: 72rem; + .xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .xl\:max-w-7xl { - max-width: 80rem; + .xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .xl\:max-w-full { - max-width: 100%; + .xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .xl\:max-w-min { - max-width: min-content; + .xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .xl\:max-w-max { - max-width: max-content; + .xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .xl\:max-w-prose { - max-width: 65ch; + .xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .xl\:max-w-screen-sm { - max-width: 640px; + .xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .xl\:max-w-screen-md { - max-width: 768px; + .xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .xl\:max-w-screen-lg { - max-width: 1024px; + .xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .xl\:max-w-screen-xl { - max-width: 1280px; + .xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .xl\:max-w-screen-2xl { - max-width: 1536px; + .xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .xl\:min-h-0 { - min-height: 0px; + .xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .xl\:min-h-full { - min-height: 100%; + .xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .xl\:min-h-screen { - min-height: 100vh; + .xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .xl\:min-w-0 { - min-width: 0px; + .xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .xl\:min-w-full { - min-width: 100%; + .xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .xl\:min-w-min { - min-width: min-content; + .xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .xl\:min-w-max { - min-width: max-content; + .xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .xl\:object-contain { - object-fit: contain; + .xl\:hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .xl\:object-cover { - object-fit: cover; + .xl\:hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .xl\:object-fill { - object-fit: fill; + .xl\:hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .xl\:object-none { - object-fit: none; + .xl\:hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .xl\:object-scale-down { - object-fit: scale-down; + .xl\:hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .xl\:object-bottom { - object-position: bottom; + .xl\:hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .xl\:object-center { - object-position: center; + .xl\:hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .xl\:object-left { - object-position: left; + .xl\:hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .xl\:object-left-bottom { - object-position: left bottom; + .xl\:hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .xl\:object-left-top { - object-position: left top; + .xl\:hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .xl\:object-right { - object-position: right; + .xl\:hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .xl\:object-right-bottom { - object-position: right bottom; + .xl\:hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .xl\:object-right-top { - object-position: right top; + .xl\:hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .xl\:object-top { - object-position: top; + .xl\:hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .xl\:opacity-0 { - opacity: 0; + .xl\:hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .xl\:opacity-5 { - opacity: 0.05; + .xl\:hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .xl\:opacity-10 { - opacity: 0.1; + .xl\:hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .xl\:opacity-20 { - opacity: 0.2; + .xl\:hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .xl\:opacity-25 { - opacity: 0.25; + .xl\:hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .xl\:opacity-30 { - opacity: 0.3; + .xl\:hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .xl\:opacity-40 { - opacity: 0.4; + .xl\:focus\:border-transparent:focus { + border-color: transparent; } - .xl\:opacity-50 { - opacity: 0.5; + .xl\:focus\:border-current:focus { + border-color: currentColor; } - .xl\:opacity-60 { - opacity: 0.6; + .xl\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .xl\:opacity-70 { - opacity: 0.7; + .xl\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .xl\:opacity-75 { - opacity: 0.75; + .xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .xl\:opacity-80 { - opacity: 0.8; + .xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .xl\:opacity-90 { - opacity: 0.9; + .xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .xl\:opacity-95 { - opacity: 0.95; + .xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .xl\:opacity-100 { - opacity: 1; + .xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-0 { - opacity: 0; + .xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-5 { - opacity: 0.05; + .xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-10 { - opacity: 0.1; + .xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-20 { - opacity: 0.2; + .xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-25 { - opacity: 0.25; + .xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-30 { - opacity: 0.3; + .xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-40 { - opacity: 0.4; + .xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-50 { - opacity: 0.5; + .xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-60 { - opacity: 0.6; + .xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-70 { - opacity: 0.7; + .xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-75 { - opacity: 0.75; + .xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-80 { - opacity: 0.8; + .xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-90 { - opacity: 0.9; + .xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-95 { - opacity: 0.95; + .xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-100 { - opacity: 1; + .xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-0:focus-within { - opacity: 0; + .xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-100:focus-within { - opacity: 1; + .xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .xl\:hover\:opacity-0:hover { - opacity: 0; + .xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .xl\:hover\:opacity-5:hover { - opacity: 0.05; + .xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .xl\:hover\:opacity-10:hover { - opacity: 0.1; + .xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .xl\:hover\:opacity-20:hover { - opacity: 0.2; + .xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .xl\:hover\:opacity-25:hover { - opacity: 0.25; + .xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .xl\:hover\:opacity-30:hover { - opacity: 0.3; + .xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .xl\:hover\:opacity-40:hover { - opacity: 0.4; + .xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .xl\:hover\:opacity-50:hover { - opacity: 0.5; + .xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .xl\:hover\:opacity-60:hover { - opacity: 0.6; + .xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .xl\:hover\:opacity-70:hover { - opacity: 0.7; + .xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .xl\:hover\:opacity-75:hover { - opacity: 0.75; + .xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .xl\:hover\:opacity-80:hover { - opacity: 0.8; + .xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .xl\:hover\:opacity-90:hover { - opacity: 0.9; + .xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .xl\:hover\:opacity-95:hover { - opacity: 0.95; + .xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .xl\:hover\:opacity-100:hover { - opacity: 1; + .xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .xl\:focus\:opacity-0:focus { - opacity: 0; + .xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .xl\:focus\:opacity-5:focus { - opacity: 0.05; + .xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .xl\:focus\:opacity-10:focus { - opacity: 0.1; + .xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .xl\:focus\:opacity-20:focus { - opacity: 0.2; + .xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .xl\:focus\:opacity-25:focus { - opacity: 0.25; + .xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .xl\:focus\:opacity-30:focus { - opacity: 0.3; + .xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .xl\:focus\:opacity-40:focus { - opacity: 0.4; + .xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .xl\:focus\:opacity-50:focus { - opacity: 0.5; + .xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .xl\:focus\:opacity-60:focus { - opacity: 0.6; + .xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .xl\:focus\:opacity-70:focus { - opacity: 0.7; + .xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .xl\:focus\:opacity-75:focus { - opacity: 0.75; + .xl\:focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .xl\:focus\:opacity-80:focus { - opacity: 0.8; + .xl\:focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .xl\:focus\:opacity-90:focus { - opacity: 0.9; + .xl\:focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .xl\:focus\:opacity-95:focus { - opacity: 0.95; + .xl\:focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .xl\:focus\:opacity-100:focus { - opacity: 1; + .xl\:focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .xl\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .xl\:focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .xl\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .xl\:focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .xl\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .xl\:focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .xl\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .xl\:focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .xl\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .xl\:focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .xl\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .xl\:focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .xl\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .xl\:focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .xl\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .xl\:focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .xl\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .xl\:focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .xl\:overflow-auto { - overflow: auto; + .xl\:focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .xl\:overflow-hidden { - overflow: hidden; + .xl\:focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .xl\:overflow-visible { - overflow: visible; + .xl\:focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .xl\:overflow-scroll { - overflow: scroll; + .xl\:focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .xl\:overflow-x-auto { - overflow-x: auto; + .xl\:focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .xl\:overflow-y-auto { - overflow-y: auto; + .xl\:focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .xl\:overflow-x-hidden { - overflow-x: hidden; + .xl\:border-opacity-0 { + --tw-border-opacity: 0; } - .xl\:overflow-y-hidden { - overflow-y: hidden; + .xl\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .xl\:overflow-x-visible { - overflow-x: visible; + .xl\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .xl\:overflow-y-visible { - overflow-y: visible; + .xl\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .xl\:overflow-x-scroll { - overflow-x: scroll; + .xl\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .xl\:overflow-y-scroll { - overflow-y: scroll; + .xl\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .xl\:overscroll-auto { - overscroll-behavior: auto; + .xl\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .xl\:overscroll-contain { - overscroll-behavior: contain; + .xl\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .xl\:overscroll-none { - overscroll-behavior: none; + .xl\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .xl\:overscroll-y-auto { - overscroll-behavior-y: auto; + .xl\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .xl\:overscroll-y-contain { - overscroll-behavior-y: contain; + .xl\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .xl\:overscroll-y-none { - overscroll-behavior-y: none; + .xl\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .xl\:overscroll-x-auto { - overscroll-behavior-x: auto; + .xl\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .xl\:overscroll-x-contain { - overscroll-behavior-x: contain; + .xl\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .xl\:overscroll-x-none { - overscroll-behavior-x: none; + .xl\:border-opacity-100 { + --tw-border-opacity: 1; } - .xl\:p-0 { - padding: 0px; + .group:hover .xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } - .xl\:p-1 { - padding: 0.25rem; + .group:hover .xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .xl\:p-2 { - padding: 0.5rem; + .group:hover .xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .xl\:p-3 { - padding: 0.75rem; + .group:hover .xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .xl\:p-4 { - padding: 1rem; + .group:hover .xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .xl\:p-5 { - padding: 1.25rem; + .group:hover .xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .xl\:p-6 { - padding: 1.5rem; + .group:hover .xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .xl\:p-7 { - padding: 1.75rem; + .group:hover .xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .xl\:p-8 { - padding: 2rem; + .group:hover .xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .xl\:p-9 { - padding: 2.25rem; + .group:hover .xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .xl\:p-10 { - padding: 2.5rem; + .group:hover .xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .xl\:p-11 { - padding: 2.75rem; + .group:hover .xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .xl\:p-12 { - padding: 3rem; + .group:hover .xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .xl\:p-14 { - padding: 3.5rem; + .group:hover .xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .xl\:p-16 { - padding: 4rem; + .group:hover .xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } - .xl\:p-20 { - padding: 5rem; + .xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } - .xl\:p-24 { - padding: 6rem; + .xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } - .xl\:p-28 { - padding: 7rem; + .xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } - .xl\:p-32 { - padding: 8rem; + .xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } - .xl\:p-36 { - padding: 9rem; + .xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } - .xl\:p-40 { - padding: 10rem; + .xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } - .xl\:p-44 { - padding: 11rem; + .xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } - .xl\:p-48 { - padding: 12rem; + .xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } - .xl\:p-52 { - padding: 13rem; + .xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } - .xl\:p-56 { - padding: 14rem; + .xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } - .xl\:p-60 { - padding: 15rem; + .xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } - .xl\:p-64 { - padding: 16rem; + .xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } - .xl\:p-72 { - padding: 18rem; + .xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } - .xl\:p-80 { - padding: 20rem; + .xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } - .xl\:p-96 { - padding: 24rem; + .xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } - .xl\:p-px { - padding: 1px; + .xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } - .xl\:p-0\.5 { - padding: 0.125rem; + .xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } - .xl\:p-1\.5 { - padding: 0.375rem; + .xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } - .xl\:p-2\.5 { - padding: 0.625rem; + .xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } - .xl\:p-3\.5 { - padding: 0.875rem; + .xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } - .xl\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } - .xl\:px-0 { - padding-left: 0px; - padding-right: 0px; + .xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } - .xl\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } - .xl\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } - .xl\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } - .xl\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } - .xl\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } - .xl\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } - .xl\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } - .xl\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } - .xl\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } - .xl\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } - .xl\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } - .xl\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } - .xl\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } - .xl\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } - .xl\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } - .xl\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } - .xl\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } - .xl\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } - .xl\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } - .xl\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } - .xl\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } - .xl\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } - .xl\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } - .xl\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .xl\:bg-transparent { + background-color: transparent; } - .xl\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .xl\:bg-current { + background-color: currentColor; } - .xl\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .xl\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .xl\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .xl\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .xl\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .xl\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .xl\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .xl\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .xl\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .xl\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .xl\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .xl\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .xl\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .xl\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .xl\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .xl\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .xl\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .xl\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .xl\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .xl\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .xl\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .xl\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .xl\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .xl\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .xl\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .xl\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .xl\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .xl\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .xl\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .xl\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .xl\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .xl\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .xl\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .xl\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .xl\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .xl\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .xl\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .xl\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .xl\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .xl\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .xl\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .xl\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .xl\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .xl\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .xl\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .xl\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .xl\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .xl\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .xl\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .xl\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .xl\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .xl\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .xl\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .xl\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .xl\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .xl\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .xl\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .xl\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .xl\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .xl\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .xl\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .xl\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .xl\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .xl\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .xl\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .xl\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .xl\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .xl\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .xl\:px-px { - padding-left: 1px; - padding-right: 1px; + .xl\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .xl\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .xl\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .xl\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .xl\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .xl\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .xl\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .xl\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .xl\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .xl\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .xl\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .xl\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .xl\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .xl\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .xl\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .xl\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .xl\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .xl\:pt-0 { - padding-top: 0px; + .xl\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .xl\:pr-0 { - padding-right: 0px; + .xl\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .xl\:pb-0 { - padding-bottom: 0px; + .xl\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .xl\:pl-0 { - padding-left: 0px; + .xl\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .xl\:pt-1 { - padding-top: 0.25rem; + .xl\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .xl\:pr-1 { - padding-right: 0.25rem; + .xl\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .xl\:pb-1 { - padding-bottom: 0.25rem; + .xl\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .xl\:pl-1 { - padding-left: 0.25rem; + .xl\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .xl\:pt-2 { - padding-top: 0.5rem; + .xl\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .xl\:pr-2 { - padding-right: 0.5rem; + .xl\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .xl\:pb-2 { - padding-bottom: 0.5rem; + .xl\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .xl\:pl-2 { - padding-left: 0.5rem; + .xl\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .xl\:pt-3 { - padding-top: 0.75rem; + .xl\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .xl\:pr-3 { - padding-right: 0.75rem; + .xl\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .xl\:pb-3 { - padding-bottom: 0.75rem; + .xl\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .xl\:pl-3 { - padding-left: 0.75rem; + .xl\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .xl\:pt-4 { - padding-top: 1rem; + .xl\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .xl\:pr-4 { - padding-right: 1rem; + .xl\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .xl\:pb-4 { - padding-bottom: 1rem; + .xl\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .xl\:pl-4 { - padding-left: 1rem; + .xl\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .xl\:pt-5 { - padding-top: 1.25rem; + .xl\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .xl\:pr-5 { - padding-right: 1.25rem; + .xl\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .xl\:pb-5 { - padding-bottom: 1.25rem; + .xl\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .xl\:pl-5 { - padding-left: 1.25rem; + .xl\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .xl\:pt-6 { - padding-top: 1.5rem; + .xl\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .xl\:pr-6 { - padding-right: 1.5rem; + .xl\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .xl\:pb-6 { - padding-bottom: 1.5rem; + .xl\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .xl\:pl-6 { - padding-left: 1.5rem; + .xl\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .xl\:pt-7 { - padding-top: 1.75rem; + .xl\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .xl\:pr-7 { - padding-right: 1.75rem; + .xl\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .xl\:pb-7 { - padding-bottom: 1.75rem; + .xl\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .xl\:pl-7 { - padding-left: 1.75rem; + .xl\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .xl\:pt-8 { - padding-top: 2rem; + .xl\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .xl\:pr-8 { - padding-right: 2rem; + .xl\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .xl\:pb-8 { - padding-bottom: 2rem; + .xl\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .xl\:pl-8 { - padding-left: 2rem; + .xl\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .xl\:pt-9 { - padding-top: 2.25rem; + .xl\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .xl\:pr-9 { - padding-right: 2.25rem; + .xl\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .xl\:pb-9 { - padding-bottom: 2.25rem; + .xl\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .xl\:pl-9 { - padding-left: 2.25rem; + .group:hover .xl\:group-hover\:bg-transparent { + background-color: transparent; } - .xl\:pt-10 { - padding-top: 2.5rem; + .group:hover .xl\:group-hover\:bg-current { + background-color: currentColor; } - .xl\:pr-10 { - padding-right: 2.5rem; + .group:hover .xl\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .xl\:pb-10 { - padding-bottom: 2.5rem; + .group:hover .xl\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .xl\:pl-10 { - padding-left: 2.5rem; + .group:hover .xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .xl\:pt-11 { - padding-top: 2.75rem; + .group:hover .xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .xl\:pr-11 { - padding-right: 2.75rem; + .group:hover .xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .xl\:pb-11 { - padding-bottom: 2.75rem; + .group:hover .xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .xl\:pl-11 { - padding-left: 2.75rem; + .group:hover .xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .xl\:pt-12 { - padding-top: 3rem; + .group:hover .xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .xl\:pr-12 { - padding-right: 3rem; + .group:hover .xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .xl\:pb-12 { - padding-bottom: 3rem; + .group:hover .xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .xl\:pl-12 { - padding-left: 3rem; + .group:hover .xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .xl\:pt-14 { - padding-top: 3.5rem; + .group:hover .xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .xl\:pr-14 { - padding-right: 3.5rem; + .group:hover .xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .xl\:pb-14 { - padding-bottom: 3.5rem; + .group:hover .xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .xl\:pl-14 { - padding-left: 3.5rem; + .group:hover .xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .xl\:pt-16 { - padding-top: 4rem; + .group:hover .xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .xl\:pr-16 { - padding-right: 4rem; + .group:hover .xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .xl\:pb-16 { - padding-bottom: 4rem; + .group:hover .xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .xl\:pl-16 { - padding-left: 4rem; + .group:hover .xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .xl\:pt-20 { - padding-top: 5rem; + .group:hover .xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .xl\:pr-20 { - padding-right: 5rem; + .group:hover .xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .xl\:pb-20 { - padding-bottom: 5rem; + .group:hover .xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .xl\:pl-20 { - padding-left: 5rem; + .group:hover .xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .xl\:pt-24 { - padding-top: 6rem; + .group:hover .xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .xl\:pr-24 { - padding-right: 6rem; + .group:hover .xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .xl\:pb-24 { - padding-bottom: 6rem; + .group:hover .xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .xl\:pl-24 { - padding-left: 6rem; + .group:hover .xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .xl\:pt-28 { - padding-top: 7rem; + .group:hover .xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .xl\:pr-28 { - padding-right: 7rem; + .group:hover .xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .xl\:pb-28 { - padding-bottom: 7rem; + .group:hover .xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .xl\:pl-28 { - padding-left: 7rem; + .group:hover .xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .xl\:pt-32 { - padding-top: 8rem; + .group:hover .xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .xl\:pr-32 { - padding-right: 8rem; + .group:hover .xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .xl\:pb-32 { - padding-bottom: 8rem; + .group:hover .xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .xl\:pl-32 { - padding-left: 8rem; + .group:hover .xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .xl\:pt-36 { - padding-top: 9rem; + .group:hover .xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .xl\:pr-36 { - padding-right: 9rem; + .group:hover .xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .xl\:pb-36 { - padding-bottom: 9rem; + .group:hover .xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .xl\:pl-36 { - padding-left: 9rem; + .group:hover .xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .xl\:pt-40 { - padding-top: 10rem; + .group:hover .xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .xl\:pr-40 { - padding-right: 10rem; + .group:hover .xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .xl\:pb-40 { - padding-bottom: 10rem; + .group:hover .xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .xl\:pl-40 { - padding-left: 10rem; + .group:hover .xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .xl\:pt-44 { - padding-top: 11rem; + .group:hover .xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .xl\:pr-44 { - padding-right: 11rem; + .group:hover .xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .xl\:pb-44 { - padding-bottom: 11rem; + .group:hover .xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .xl\:pl-44 { - padding-left: 11rem; + .group:hover .xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .xl\:pt-48 { - padding-top: 12rem; + .group:hover .xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .xl\:pr-48 { - padding-right: 12rem; + .group:hover .xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .xl\:pb-48 { - padding-bottom: 12rem; + .group:hover .xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .xl\:pl-48 { - padding-left: 12rem; + .group:hover .xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .xl\:pt-52 { - padding-top: 13rem; + .group:hover .xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .xl\:pr-52 { - padding-right: 13rem; + .group:hover .xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .xl\:pb-52 { - padding-bottom: 13rem; + .group:hover .xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .xl\:pl-52 { - padding-left: 13rem; + .group:hover .xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .xl\:pt-56 { - padding-top: 14rem; + .group:hover .xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .xl\:pr-56 { - padding-right: 14rem; + .group:hover .xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .xl\:pb-56 { - padding-bottom: 14rem; + .group:hover .xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .xl\:pl-56 { - padding-left: 14rem; + .group:hover .xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .xl\:pt-60 { - padding-top: 15rem; + .group:hover .xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .xl\:pr-60 { - padding-right: 15rem; + .group:hover .xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .xl\:pb-60 { - padding-bottom: 15rem; + .group:hover .xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .xl\:pl-60 { - padding-left: 15rem; + .group:hover .xl\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .xl\:pt-64 { - padding-top: 16rem; + .group:hover .xl\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .xl\:pr-64 { - padding-right: 16rem; + .group:hover .xl\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .xl\:pb-64 { - padding-bottom: 16rem; + .group:hover .xl\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .xl\:pl-64 { - padding-left: 16rem; + .group:hover .xl\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .xl\:pt-72 { - padding-top: 18rem; + .group:hover .xl\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .xl\:pr-72 { - padding-right: 18rem; + .group:hover .xl\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .xl\:pb-72 { - padding-bottom: 18rem; + .group:hover .xl\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .xl\:pl-72 { - padding-left: 18rem; + .group:hover .xl\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .xl\:pt-80 { - padding-top: 20rem; + .group:hover .xl\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .xl\:pr-80 { - padding-right: 20rem; + .group:hover .xl\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .xl\:pb-80 { - padding-bottom: 20rem; + .group:hover .xl\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .xl\:pl-80 { - padding-left: 20rem; + .group:hover .xl\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .xl\:pt-96 { - padding-top: 24rem; + .group:hover .xl\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .xl\:pr-96 { - padding-right: 24rem; + .group:hover .xl\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .xl\:pb-96 { - padding-bottom: 24rem; + .group:hover .xl\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .xl\:pl-96 { - padding-left: 24rem; + .group:hover .xl\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .xl\:pt-px { - padding-top: 1px; + .group:hover .xl\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .xl\:pr-px { - padding-right: 1px; + .group:hover .xl\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .xl\:pb-px { - padding-bottom: 1px; + .group:hover .xl\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .xl\:pl-px { - padding-left: 1px; + .xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .xl\:pt-0\.5 { - padding-top: 0.125rem; + .xl\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .xl\:pr-0\.5 { - padding-right: 0.125rem; + .xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .xl\:pb-0\.5 { - padding-bottom: 0.125rem; + .xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .xl\:pl-0\.5 { - padding-left: 0.125rem; + .xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .xl\:pt-1\.5 { - padding-top: 0.375rem; + .xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .xl\:pr-1\.5 { - padding-right: 0.375rem; + .xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .xl\:pb-1\.5 { - padding-bottom: 0.375rem; + .xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .xl\:pl-1\.5 { - padding-left: 0.375rem; + .xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .xl\:pt-2\.5 { - padding-top: 0.625rem; + .xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .xl\:pr-2\.5 { - padding-right: 0.625rem; + .xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .xl\:pb-2\.5 { - padding-bottom: 0.625rem; + .xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .xl\:pl-2\.5 { - padding-left: 0.625rem; + .xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .xl\:pt-3\.5 { - padding-top: 0.875rem; + .xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .xl\:pr-3\.5 { - padding-right: 0.875rem; + .xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .xl\:pb-3\.5 { - padding-bottom: 0.875rem; + .xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .xl\:pl-3\.5 { - padding-left: 0.875rem; + .xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .xl\:placeholder-transparent::placeholder { - color: transparent; + .xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .xl\:placeholder-current::placeholder { - color: currentColor; + .xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .xl\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .xl\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .xl\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .xl\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .xl\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .xl\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .xl\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .xl\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .xl\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .xl\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .xl\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .xl\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .xl\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .xl\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .xl\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .xl\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .xl\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .xl\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .xl\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .xl\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .xl\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .xl\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-transparent:hover { + background-color: transparent; } - .xl\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-current:hover { + background-color: currentColor; } - .xl\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-transparent:focus { + background-color: transparent; } - .xl\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-current:focus { + background-color: currentColor; } - .xl\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; + .xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; + .xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; + .xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; + .xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; + .xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; + .xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; + .xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; + .xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; + .xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; + .xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; + .xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; + .xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; + .xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; + .xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; + .xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; + .xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; + .xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; + .xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; + .xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; + .xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; + .xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; + .xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; + .xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; + .xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; + .xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; + .xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; + .xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; + .xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; + .xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; + .xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .xl\:pointer-events-none { - pointer-events: none; + .xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .xl\:pointer-events-auto { - pointer-events: auto; + .xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .xl\:static { - position: static; + .xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .xl\:fixed { - position: fixed; + .xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .xl\:absolute { - position: absolute; + .xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .xl\:relative { - position: relative; + .xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .xl\:sticky { - position: sticky; + .xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .xl\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .xl\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .xl\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .xl\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .xl\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .xl\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .xl\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .xl\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .xl\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .xl\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .xl\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .xl\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .xl\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .xl\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .xl\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .xl\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .xl\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .xl\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .xl\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .xl\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .xl\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .xl\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .xl\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .xl\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .xl\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .xl\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .xl\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .xl\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .xl\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .xl\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .xl\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .xl\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .xl\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .xl\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .xl\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .xl\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .xl\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .xl\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .xl\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .xl\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .xl\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .xl\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .xl\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .xl\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .xl\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .xl\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .xl\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .xl\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .xl\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .xl\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .xl\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .xl\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .xl\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .xl\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .xl\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .xl\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .xl\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .xl\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .xl\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .xl\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .xl\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .xl\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .xl\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .xl\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .xl\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .xl\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .xl\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .xl\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .group:hover .xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .xl\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .group:hover .xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .xl\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .group:hover .xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .xl\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .group:hover .xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .xl\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .group:hover .xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .xl\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .group:hover .xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .xl\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .group:hover .xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .xl\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .group:hover .xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .xl\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .group:hover .xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .xl\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .group:hover .xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .xl\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .group:hover .xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .xl\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .group:hover .xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .xl\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .group:hover .xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .xl\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .group:hover .xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .xl\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .group:hover .xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .xl\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } - .xl\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } - .xl\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } - .xl\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } - .xl\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } - .xl\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } - .xl\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } - .xl\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } - .xl\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } - .xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } - .xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } - .xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } - .xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } - .xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } - .xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } - .xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } - .xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } - .xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } - .xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } - .xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } - .xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } - .xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } - .xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } - .xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } - .xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } - .xl\:inset-y-0 { - top: 0px; - bottom: 0px; + .xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } - .xl\:inset-x-0 { - right: 0px; - left: 0px; + .xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } - .xl\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } - .xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } - .xl\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } - .xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } - .xl\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } - .xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } - .xl\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } - .xl\:inset-x-4 { - right: 1rem; - left: 1rem; + .xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } - .xl\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } - .xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } - .xl\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } - .xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } - .xl\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } - .xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } - .xl\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } - .xl\:inset-x-8 { - right: 2rem; - left: 2rem; + .xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } - .xl\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } - .xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .xl\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } - .xl\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .xl\:bg-none { + background-image: none; } - .xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .xl\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .xl\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .xl\:inset-x-12 { - right: 3rem; - left: 3rem; + .xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .xl\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .xl\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .xl\:inset-x-16 { - right: 4rem; - left: 4rem; + .xl\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .xl\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:inset-x-20 { - right: 5rem; - left: 5rem; + .xl\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .xl\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:inset-x-24 { - right: 6rem; - left: 6rem; + .xl\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:inset-x-28 { - right: 7rem; - left: 7rem; + .xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .xl\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:inset-x-32 { - right: 8rem; - left: 8rem; + .xl\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .xl\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:inset-x-36 { - right: 9rem; - left: 9rem; + .xl\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .xl\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:inset-x-40 { - right: 10rem; - left: 10rem; + .xl\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .xl\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:inset-x-44 { - right: 11rem; - left: 11rem; + .xl\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .xl\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:inset-x-48 { - right: 12rem; - left: 12rem; + .xl\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .xl\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:inset-x-52 { - right: 13rem; - left: 13rem; + .xl\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .xl\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:inset-x-56 { - right: 14rem; - left: 14rem; + .xl\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .xl\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:inset-x-60 { - right: 15rem; - left: 15rem; + .xl\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .xl\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:inset-x-64 { - right: 16rem; - left: 16rem; + .xl\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .xl\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:inset-x-72 { - right: 18rem; - left: 18rem; + .xl\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .xl\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:inset-x-80 { - right: 20rem; - left: 20rem; + .xl\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .xl\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:inset-x-96 { - right: 24rem; - left: 24rem; + .xl\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:inset-y-auto { - top: auto; - bottom: auto; + .xl\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:inset-x-auto { - right: auto; - left: auto; + .xl\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:inset-y-px { - top: 1px; - bottom: 1px; + .xl\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:inset-x-px { - right: 1px; - left: 1px; + .xl\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .xl\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .xl\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .xl\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .xl\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .xl\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .xl\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .xl\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .xl\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:-inset-y-0 { - top: 0px; - bottom: 0px; + .xl\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:-inset-x-0 { - right: 0px; - left: 0px; + .xl\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .xl\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .xl\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .xl\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .xl\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .xl\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .xl\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .xl\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:-inset-x-4 { - right: -1rem; - left: -1rem; + .xl\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .xl\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .xl\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .xl\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .xl\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .xl\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .xl\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .xl\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:-inset-x-8 { - right: -2rem; - left: -2rem; + .xl\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .xl\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .xl\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .xl\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .xl\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .xl\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .xl\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .xl\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:-inset-x-12 { - right: -3rem; - left: -3rem; + .xl\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .xl\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .xl\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .xl\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:-inset-x-16 { - right: -4rem; - left: -4rem; + .xl\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .xl\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:-inset-x-20 { - right: -5rem; - left: -5rem; + .xl\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .xl\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:-inset-x-24 { - right: -6rem; - left: -6rem; + .xl\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .xl\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:-inset-x-28 { - right: -7rem; - left: -7rem; + .xl\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .xl\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:-inset-x-32 { - right: -8rem; - left: -8rem; + .xl\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .xl\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:-inset-x-36 { - right: -9rem; - left: -9rem; + .xl\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .xl\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:-inset-x-40 { - right: -10rem; - left: -10rem; + .xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-inset-x-44 { - right: -11rem; - left: -11rem; + .xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-inset-x-48 { - right: -12rem; - left: -12rem; + .xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:-inset-x-52 { - right: -13rem; - left: -13rem; + .xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:-inset-x-56 { - right: -14rem; - left: -14rem; + .xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:-inset-x-60 { - right: -15rem; - left: -15rem; + .xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:-inset-x-64 { - right: -16rem; - left: -16rem; + .xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:-inset-x-72 { - right: -18rem; - left: -18rem; + .xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:-inset-x-80 { - right: -20rem; - left: -20rem; + .xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:-inset-x-96 { - right: -24rem; - left: -24rem; + .xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:-inset-y-px { - top: -1px; - bottom: -1px; + .xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:-inset-x-px { - right: -1px; - left: -1px; + .xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:inset-x-1\/2 { - right: 50%; - left: 50%; + .xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:inset-x-1\/4 { - right: 25%; - left: 25%; + .xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:inset-x-2\/4 { - right: 50%; - left: 50%; + .xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:inset-x-3\/4 { - right: 75%; - left: 75%; + .xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:inset-y-full { - top: 100%; - bottom: 100%; + .xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:inset-x-full { - right: 100%; - left: 100%; + .xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:-inset-y-full { - top: -100%; - bottom: -100%; + .xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:-inset-x-full { - right: -100%; - left: -100%; + .xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:top-0 { - top: 0px; + .xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:right-0 { - right: 0px; + .xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:bottom-0 { - bottom: 0px; + .xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:left-0 { - left: 0px; + .xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:top-1 { - top: 0.25rem; + .xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:right-1 { - right: 0.25rem; + .xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:bottom-1 { - bottom: 0.25rem; + .xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:left-1 { - left: 0.25rem; + .xl\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:top-2 { - top: 0.5rem; + .xl\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:right-2 { - right: 0.5rem; + .xl\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:bottom-2 { - bottom: 0.5rem; + .xl\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:left-2 { - left: 0.5rem; + .xl\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:top-3 { - top: 0.75rem; + .xl\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:right-3 { - right: 0.75rem; + .xl\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:bottom-3 { - bottom: 0.75rem; + .xl\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:left-3 { - left: 0.75rem; + .xl\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:top-4 { - top: 1rem; + .xl\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:right-4 { - right: 1rem; + .xl\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:bottom-4 { - bottom: 1rem; + .xl\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:left-4 { - left: 1rem; + .xl\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:top-5 { - top: 1.25rem; + .xl\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:right-5 { - right: 1.25rem; + .xl\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:bottom-5 { - bottom: 1.25rem; + .xl\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:left-5 { - left: 1.25rem; + .xl\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:top-6 { - top: 1.5rem; + .xl\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:right-6 { - right: 1.5rem; + .xl\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:bottom-6 { - bottom: 1.5rem; + .xl\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:left-6 { - left: 1.5rem; + .xl\:to-transparent { + --tw-gradient-to: transparent; } - .xl\:top-7 { - top: 1.75rem; + .xl\:to-current { + --tw-gradient-to: currentColor; } - .xl\:right-7 { - right: 1.75rem; + .xl\:to-black { + --tw-gradient-to: #000; } - .xl\:bottom-7 { - bottom: 1.75rem; + .xl\:to-white { + --tw-gradient-to: #fff; } - .xl\:left-7 { - left: 1.75rem; + .xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .xl\:top-8 { - top: 2rem; + .xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .xl\:right-8 { - right: 2rem; + .xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .xl\:bottom-8 { - bottom: 2rem; + .xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .xl\:left-8 { - left: 2rem; + .xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .xl\:top-9 { - top: 2.25rem; + .xl\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .xl\:right-9 { - right: 2.25rem; + .xl\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .xl\:bottom-9 { - bottom: 2.25rem; + .xl\:to-gray-700 { + --tw-gradient-to: #374151; } - .xl\:left-9 { - left: 2.25rem; + .xl\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .xl\:top-10 { - top: 2.5rem; + .xl\:to-gray-900 { + --tw-gradient-to: #111827; } - .xl\:right-10 { - right: 2.5rem; + .xl\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .xl\:bottom-10 { - bottom: 2.5rem; + .xl\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .xl\:left-10 { - left: 2.5rem; + .xl\:to-red-200 { + --tw-gradient-to: #fecaca; } - .xl\:top-11 { - top: 2.75rem; + .xl\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .xl\:right-11 { - right: 2.75rem; + .xl\:to-red-400 { + --tw-gradient-to: #f87171; } - .xl\:bottom-11 { - bottom: 2.75rem; + .xl\:to-red-500 { + --tw-gradient-to: #ef4444; } - .xl\:left-11 { - left: 2.75rem; + .xl\:to-red-600 { + --tw-gradient-to: #dc2626; } - .xl\:top-12 { - top: 3rem; + .xl\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .xl\:right-12 { - right: 3rem; + .xl\:to-red-800 { + --tw-gradient-to: #991b1b; } - .xl\:bottom-12 { - bottom: 3rem; + .xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .xl\:left-12 { - left: 3rem; + .xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .xl\:top-14 { - top: 3.5rem; + .xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .xl\:right-14 { - right: 3.5rem; + .xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .xl\:bottom-14 { - bottom: 3.5rem; + .xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .xl\:left-14 { - left: 3.5rem; + .xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .xl\:top-16 { - top: 4rem; + .xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .xl\:right-16 { - right: 4rem; + .xl\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .xl\:bottom-16 { - bottom: 4rem; + .xl\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .xl\:left-16 { - left: 4rem; + .xl\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .xl\:top-20 { - top: 5rem; + .xl\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .xl\:right-20 { - right: 5rem; + .xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .xl\:bottom-20 { - bottom: 5rem; + .xl\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .xl\:left-20 { - left: 5rem; + .xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .xl\:top-24 { - top: 6rem; + .xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .xl\:right-24 { - right: 6rem; + .xl\:to-green-400 { + --tw-gradient-to: #34d399; } - .xl\:bottom-24 { - bottom: 6rem; + .xl\:to-green-500 { + --tw-gradient-to: #10b981; } - .xl\:left-24 { - left: 6rem; + .xl\:to-green-600 { + --tw-gradient-to: #059669; } - .xl\:top-28 { - top: 7rem; + .xl\:to-green-700 { + --tw-gradient-to: #047857; } - .xl\:right-28 { - right: 7rem; + .xl\:to-green-800 { + --tw-gradient-to: #065f46; } - .xl\:bottom-28 { - bottom: 7rem; + .xl\:to-green-900 { + --tw-gradient-to: #064e3b; } - .xl\:left-28 { - left: 7rem; + .xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .xl\:top-32 { - top: 8rem; + .xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .xl\:right-32 { - right: 8rem; + .xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .xl\:bottom-32 { - bottom: 8rem; + .xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .xl\:left-32 { - left: 8rem; + .xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .xl\:top-36 { - top: 9rem; + .xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .xl\:right-36 { - right: 9rem; + .xl\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .xl\:bottom-36 { - bottom: 9rem; + .xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .xl\:left-36 { - left: 9rem; + .xl\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .xl\:top-40 { - top: 10rem; + .xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .xl\:right-40 { - right: 10rem; + .xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .xl\:bottom-40 { - bottom: 10rem; + .xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .xl\:left-40 { - left: 10rem; + .xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .xl\:top-44 { - top: 11rem; + .xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .xl\:right-44 { - right: 11rem; + .xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .xl\:bottom-44 { - bottom: 11rem; + .xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .xl\:left-44 { - left: 11rem; + .xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .xl\:top-48 { - top: 12rem; + .xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .xl\:right-48 { - right: 12rem; + .xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .xl\:bottom-48 { - bottom: 12rem; + .xl\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .xl\:left-48 { - left: 12rem; + .xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .xl\:top-52 { - top: 13rem; + .xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .xl\:right-52 { - right: 13rem; + .xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .xl\:bottom-52 { - bottom: 13rem; + .xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .xl\:left-52 { - left: 13rem; + .xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .xl\:top-56 { - top: 14rem; + .xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .xl\:right-56 { - right: 14rem; + .xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .xl\:bottom-56 { - bottom: 14rem; + .xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .xl\:left-56 { - left: 14rem; + .xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .xl\:top-60 { - top: 15rem; + .xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .xl\:right-60 { - right: 15rem; + .xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .xl\:bottom-60 { - bottom: 15rem; + .xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .xl\:left-60 { - left: 15rem; + .xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .xl\:top-64 { - top: 16rem; + .xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .xl\:right-64 { - right: 16rem; + .xl\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .xl\:bottom-64 { - bottom: 16rem; + .xl\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .xl\:left-64 { - left: 16rem; + .xl\:to-pink-600 { + --tw-gradient-to: #db2777; } - .xl\:top-72 { - top: 18rem; + .xl\:to-pink-700 { + --tw-gradient-to: #be185d; } - .xl\:right-72 { - right: 18rem; + .xl\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .xl\:bottom-72 { - bottom: 18rem; + .xl\:to-pink-900 { + --tw-gradient-to: #831843; } - .xl\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-top-14 { - top: -3.5rem; + .xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-right-14 { - right: -3.5rem; + .xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-bottom-14 { - bottom: -3.5rem; + .xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-left-14 { - left: -3.5rem; + .xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:-top-16 { - top: -4rem; + .xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:-right-16 { - right: -4rem; + .xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:-bottom-16 { - bottom: -4rem; + .xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:-left-16 { - left: -4rem; + .xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:-top-20 { - top: -5rem; + .xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:-right-20 { - right: -5rem; + .xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:-bottom-20 { - bottom: -5rem; + .xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:-left-20 { - left: -5rem; + .xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:-top-24 { - top: -6rem; + .xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:-right-24 { - right: -6rem; + .xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:-bottom-24 { - bottom: -6rem; + .xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:-left-24 { - left: -6rem; + .xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:-top-28 { - top: -7rem; + .xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:-right-28 { - right: -7rem; + .xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:-bottom-28 { - bottom: -7rem; + .xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:-left-28 { - left: -7rem; + .xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:-top-32 { - top: -8rem; + .xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:-right-32 { - right: -8rem; + .xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:-bottom-32 { - bottom: -8rem; + .xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:-left-32 { - left: -8rem; + .xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:-top-36 { - top: -9rem; + .xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:-right-36 { - right: -9rem; + .xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:-bottom-36 { - bottom: -9rem; + .xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:-left-36 { - left: -9rem; + .xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:-top-40 { - top: -10rem; + .xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:-right-40 { - right: -10rem; + .xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:-bottom-40 { - bottom: -10rem; + .xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:-left-40 { - left: -10rem; + .xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:-top-44 { - top: -11rem; + .xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:-right-44 { - right: -11rem; + .xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:-bottom-44 { - bottom: -11rem; + .xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:-left-44 { - left: -11rem; + .xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:-top-48 { - top: -12rem; + .xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:-right-48 { - right: -12rem; + .xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:-bottom-48 { - bottom: -12rem; + .xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:-left-48 { - left: -12rem; + .xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:-top-52 { - top: -13rem; + .xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:-right-52 { - right: -13rem; + .xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:-bottom-52 { - bottom: -13rem; + .xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:-left-52 { - left: -13rem; + .xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:-top-56 { - top: -14rem; + .xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:-right-56 { - right: -14rem; + .xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:-bottom-56 { - bottom: -14rem; + .xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:-left-56 { - left: -14rem; + .xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:-top-60 { - top: -15rem; + .xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:-right-60 { - right: -15rem; + .xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:-bottom-60 { - bottom: -15rem; + .xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:-left-60 { - left: -15rem; + .xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:-top-64 { - top: -16rem; + .xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:-right-64 { - right: -16rem; + .xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:-bottom-64 { - bottom: -16rem; + .xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:-left-64 { - left: -16rem; + .xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:-top-72 { - top: -18rem; + .xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:-right-72 { - right: -18rem; + .xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:-bottom-72 { - bottom: -18rem; + .xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:-left-72 { - left: -18rem; + .xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:-top-80 { - top: -20rem; + .xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:-right-80 { - right: -20rem; + .xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:-bottom-80 { - bottom: -20rem; + .xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:-left-80 { - left: -20rem; + .xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:-top-96 { - top: -24rem; + .xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:-right-96 { - right: -24rem; + .xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:-bottom-96 { - bottom: -24rem; + .xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:-left-96 { - left: -24rem; + .xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:-top-px { - top: -1px; + .xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:-right-px { - right: -1px; + .xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:-bottom-px { - bottom: -1px; + .xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:-left-px { - left: -1px; + .xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:-top-0\.5 { - top: -0.125rem; + .xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:-right-0\.5 { - right: -0.125rem; + .xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:-bottom-0\.5 { - bottom: -0.125rem; + .xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:-left-0\.5 { - left: -0.125rem; + .xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:-top-1\.5 { - top: -0.375rem; + .xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:-right-1\.5 { - right: -0.375rem; + .xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:-bottom-1\.5 { - bottom: -0.375rem; + .xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:-left-1\.5 { - left: -0.375rem; + .xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:-top-2\.5 { - top: -0.625rem; + .xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:-right-2\.5 { - right: -0.625rem; + .xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:-bottom-2\.5 { - bottom: -0.625rem; + .xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:-left-2\.5 { - left: -0.625rem; + .xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .xl\:-top-3\.5 { - top: -0.875rem; + .xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .xl\:-right-3\.5 { - right: -0.875rem; + .xl\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .xl\:-bottom-3\.5 { - bottom: -0.875rem; + .xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .xl\:-left-3\.5 { - left: -0.875rem; + .xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .xl\:top-1\/2 { - top: 50%; + .xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .xl\:right-1\/2 { - right: 50%; + .xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .xl\:bottom-1\/2 { - bottom: 50%; + .xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .xl\:left-1\/2 { - left: 50%; + .xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .xl\:top-1\/3 { - top: 33.333333%; + .xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .xl\:right-1\/3 { - right: 33.333333%; + .xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .xl\:bottom-1\/3 { - bottom: 33.333333%; + .xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .xl\:left-1\/3 { - left: 33.333333%; + .xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .xl\:top-2\/3 { - top: 66.666667%; + .xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .xl\:right-2\/3 { - right: 66.666667%; + .xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .xl\:bottom-2\/3 { - bottom: 66.666667%; + .xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .xl\:left-2\/3 { - left: 66.666667%; + .xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .xl\:top-1\/4 { - top: 25%; + .xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .xl\:right-1\/4 { - right: 25%; + .xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .xl\:bottom-1\/4 { - bottom: 25%; + .xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .xl\:left-1\/4 { - left: 25%; + .xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .xl\:top-2\/4 { - top: 50%; + .xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .xl\:right-2\/4 { - right: 50%; + .xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .xl\:bottom-2\/4 { - bottom: 50%; + .xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .xl\:left-2\/4 { - left: 50%; + .xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .xl\:top-3\/4 { - top: 75%; + .xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .xl\:right-3\/4 { - right: 75%; + .xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .xl\:bottom-3\/4 { - bottom: 75%; + .xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .xl\:left-3\/4 { - left: 75%; + .xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .xl\:top-full { - top: 100%; + .xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .xl\:right-full { - right: 100%; + .xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .xl\:bottom-full { - bottom: 100%; + .xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .xl\:left-full { - left: 100%; + .xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .xl\:-top-1\/2 { - top: -50%; + .xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .xl\:-right-1\/2 { - right: -50%; + .xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .xl\:-bottom-1\/2 { - bottom: -50%; + .xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .xl\:-left-1\/2 { - left: -50%; + .xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .xl\:-top-1\/3 { - top: -33.333333%; + .xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .xl\:-right-1\/3 { - right: -33.333333%; + .xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .xl\:-bottom-1\/3 { - bottom: -33.333333%; + .xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .xl\:-left-1\/3 { - left: -33.333333%; + .xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .xl\:-top-2\/3 { - top: -66.666667%; + .xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .xl\:-right-2\/3 { - right: -66.666667%; + .xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .xl\:-bottom-2\/3 { - bottom: -66.666667%; + .xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .xl\:-left-2\/3 { - left: -66.666667%; + .xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .xl\:-top-1\/4 { - top: -25%; + .xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .xl\:-right-1\/4 { - right: -25%; + .xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .xl\:-bottom-1\/4 { - bottom: -25%; + .xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .xl\:-left-1\/4 { - left: -25%; + .xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .xl\:-top-2\/4 { - top: -50%; + .xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .xl\:-right-2\/4 { - right: -50%; + .xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .xl\:-bottom-2\/4 { - bottom: -50%; + .xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .xl\:-left-2\/4 { - left: -50%; + .xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .xl\:-top-3\/4 { - top: -75%; + .xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .xl\:-right-3\/4 { - right: -75%; + .xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .xl\:-bottom-3\/4 { - bottom: -75%; + .xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .xl\:-left-3\/4 { - left: -75%; + .xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .xl\:-top-full { - top: -100%; + .xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .xl\:-right-full { - right: -100%; + .xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .xl\:-bottom-full { - bottom: -100%; + .xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .xl\:-left-full { - left: -100%; + .xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .xl\:resize-none { - resize: none; + .xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .xl\:resize-y { - resize: vertical; + .xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .xl\:resize-x { - resize: horizontal; + .xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .xl\:resize { - resize: both; + .xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .xl\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .xl\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .xl\: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); + .xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .xl\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .xl\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .xl\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .xl\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .xl\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .xl\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .xl\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .xl\:group-hover\: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); + .xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .xl\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .xl\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .xl\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .xl\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .xl\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .xl\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .xl\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .xl\:focus-within\:shadow-md:focus-within { - --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); + .xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .xl\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .xl\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .xl\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .xl\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .xl\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .xl\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .xl\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .xl\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .xl\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .xl\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .xl\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .xl\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .xl\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .xl\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .xl\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .xl\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .xl\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .xl\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .xl\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .xl\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .xl\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .xl\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .xl\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .xl\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .xl\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .xl\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .xl\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .xl\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .xl\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .xl\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .xl\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .xl\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .xl\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .xl\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .xl\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .xl\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .xl\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .xl\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .xl\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .xl\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .xl\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .xl\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .xl\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .xl\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .xl\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .xl\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .xl\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .xl\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .xl\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .xl\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .xl\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .xl\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .xl\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .xl\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .xl\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .xl\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .xl\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .xl\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .xl\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .xl\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .xl\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .xl\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .xl\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .xl\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .xl\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .xl\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .xl\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .xl\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .xl\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .xl\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .xl\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .xl\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .xl\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .xl\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .xl\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .xl\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .xl\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .xl\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .xl\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .xl\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .xl\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .xl\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .xl\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .xl\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .xl\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .xl\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .xl\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .xl\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .xl\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .xl\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .xl\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .xl\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .xl\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .xl\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .xl\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .xl\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .xl\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .xl\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .xl\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .xl\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .xl\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .xl\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .xl\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .xl\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .xl\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .xl\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .xl\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .xl\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .xl\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .xl\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .xl\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .xl\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .xl\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .xl\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .xl\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .xl\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .xl\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .xl\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .xl\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .xl\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .xl\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .xl\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .xl\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .xl\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .xl\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .xl\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .xl\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .xl\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .xl\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .xl\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .xl\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .xl\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .xl\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .xl\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .xl\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .xl\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .xl\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .xl\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .xl\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .xl\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .xl\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .xl\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .xl\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .xl\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .xl\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .xl\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .xl\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .xl\:decoration-slice { + box-decoration-break: slice; } - .xl\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .xl\:decoration-clone { + box-decoration-break: clone; } - .xl\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .xl\:bg-auto { + background-size: auto; } - .xl\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .xl\:bg-cover { + background-size: cover; } - .xl\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .xl\:bg-contain { + background-size: contain; } - .xl\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .xl\:bg-fixed { + background-attachment: fixed; } - .xl\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .xl\:bg-local { + background-attachment: local; } - .xl\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .xl\:bg-scroll { + background-attachment: scroll; } - .xl\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .xl\:bg-clip-border { + background-clip: border-box; } - .xl\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .xl\:bg-clip-padding { + background-clip: padding-box; } - .xl\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .xl\:bg-clip-content { + background-clip: content-box; } - .xl\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .xl\:bg-clip-text { + background-clip: text; } - .xl\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .xl\:bg-bottom { + background-position: bottom; } - .xl\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .xl\:bg-center { + background-position: center; } - .xl\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .xl\:bg-left { + background-position: left; } - .xl\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .xl\:bg-left-bottom { + background-position: left bottom; } - .xl\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .xl\:bg-left-top { + background-position: left top; } - .xl\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .xl\:bg-right { + background-position: right; } - .xl\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .xl\:bg-right-bottom { + background-position: right bottom; } - .xl\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .xl\:bg-right-top { + background-position: right top; } - .xl\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .xl\:bg-top { + background-position: top; } - .xl\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .xl\:bg-repeat { + background-repeat: repeat; } - .xl\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .xl\:bg-no-repeat { + background-repeat: no-repeat; } - .xl\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .xl\:bg-repeat-x { + background-repeat: repeat-x; } - .xl\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .xl\:bg-repeat-y { + background-repeat: repeat-y; } - .xl\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .xl\:bg-repeat-round { + background-repeat: round; } - .xl\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .xl\:bg-repeat-space { + background-repeat: space; } - .xl\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .xl\:bg-origin-border { + background-origin: border-box; } - .xl\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .xl\:bg-origin-padding { + background-origin: padding-box; } - .xl\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .xl\:bg-origin-content { + background-origin: content-box; } - .xl\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .xl\:fill-current { + fill: currentColor; } - .xl\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .xl\:stroke-current { + stroke: currentColor; } - .xl\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .xl\:stroke-0 { + stroke-width: 0; } - .xl\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .xl\:stroke-1 { + stroke-width: 1; } - .xl\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .xl\:stroke-2 { + stroke-width: 2; } - .xl\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .xl\:object-contain { + object-fit: contain; } - .xl\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .xl\:object-cover { + object-fit: cover; } - .xl\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .xl\:object-fill { + object-fit: fill; } - .xl\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .xl\:object-none { + object-fit: none; } - .xl\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .xl\:object-scale-down { + object-fit: scale-down; } - .xl\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .xl\:object-bottom { + object-position: bottom; } - .xl\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .xl\:object-center { + object-position: center; } - .xl\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .xl\:object-left { + object-position: left; } - .xl\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .xl\:object-left-bottom { + object-position: left bottom; } - .xl\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .xl\:object-left-top { + object-position: left top; } - .xl\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .xl\:object-right { + object-position: right; } - .xl\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .xl\:object-right-bottom { + object-position: right bottom; } - .xl\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .xl\:object-right-top { + object-position: right top; } - .xl\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .xl\:object-top { + object-position: top; } - .xl\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .xl\:p-0 { + padding: 0px; } - .xl\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .xl\:p-1 { + padding: 0.25rem; } - .xl\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .xl\:p-2 { + padding: 0.5rem; } - .xl\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .xl\:p-3 { + padding: 0.75rem; } - .xl\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .xl\:p-4 { + padding: 1rem; } - .xl\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .xl\:p-5 { + padding: 1.25rem; } - .xl\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .xl\:p-6 { + padding: 1.5rem; } - .xl\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .xl\:p-7 { + padding: 1.75rem; } - .xl\:ring-transparent { - --tw-ring-color: transparent; + .xl\:p-8 { + padding: 2rem; } - .xl\:ring-current { - --tw-ring-color: currentColor; + .xl\:p-9 { + padding: 2.25rem; } - .xl\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .xl\:p-10 { + padding: 2.5rem; } - .xl\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .xl\:p-11 { + padding: 2.75rem; } - .xl\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .xl\:p-12 { + padding: 3rem; } - .xl\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .xl\:p-14 { + padding: 3.5rem; } - .xl\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .xl\:p-16 { + padding: 4rem; } - .xl\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .xl\:p-20 { + padding: 5rem; } - .xl\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .xl\:p-24 { + padding: 6rem; } - .xl\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .xl\:p-28 { + padding: 7rem; } - .xl\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .xl\:p-32 { + padding: 8rem; } - .xl\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .xl\:p-36 { + padding: 9rem; } - .xl\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .xl\:p-40 { + padding: 10rem; } - .xl\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .xl\:p-44 { + padding: 11rem; } - .xl\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .xl\:p-48 { + padding: 12rem; } - .xl\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .xl\:p-52 { + padding: 13rem; } - .xl\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .xl\:p-56 { + padding: 14rem; } - .xl\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .xl\:p-60 { + padding: 15rem; } - .xl\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .xl\:p-64 { + padding: 16rem; } - .xl\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .xl\:p-72 { + padding: 18rem; } - .xl\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .xl\:p-80 { + padding: 20rem; } - .xl\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .xl\:p-96 { + padding: 24rem; } - .xl\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .xl\:p-px { + padding: 1px; } - .xl\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .xl\:p-0\.5 { + padding: 0.125rem; } - .xl\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .xl\:p-1\.5 { + padding: 0.375rem; } - .xl\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .xl\:p-2\.5 { + padding: 0.625rem; } - .xl\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .xl\:p-3\.5 { + padding: 0.875rem; } - .xl\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .xl\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .xl\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .xl\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .xl\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .xl\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .xl\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .xl\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .xl\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .xl\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .xl\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .xl\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .xl\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .xl\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .xl\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .xl\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .xl\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .xl\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .xl\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .xl\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .xl\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .xl\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .xl\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .xl\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .xl\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .xl\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .xl\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .xl\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .xl\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .xl\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .xl\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .xl\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .xl\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .xl\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .xl\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .xl\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .xl\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .xl\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .xl\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .xl\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .xl\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .xl\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .xl\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .xl\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .xl\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .xl\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .xl\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .xl\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .xl\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .xl\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .xl\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .xl\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .xl\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .xl\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .xl\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .xl\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .xl\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .xl\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .xl\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .xl\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .xl\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .xl\:px-px { + padding-left: 1px; + padding-right: 1px; } - .xl\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .xl\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .xl\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .xl\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .xl\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .xl\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .xl\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .xl\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .xl\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .xl\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .xl\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .xl\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .xl\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .xl\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .xl\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .xl\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .xl\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .xl\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .xl\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .xl\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .xl\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .xl\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .xl\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .xl\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .xl\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .xl\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .xl\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .xl\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .xl\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .xl\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .xl\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .xl\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .xl\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .xl\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .xl\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .xl\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .xl\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .xl\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .xl\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .xl\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .xl\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .xl\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .xl\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .xl\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .xl\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .xl\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .xl\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .xl\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .xl\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .xl\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .xl\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .xl\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .xl\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .xl\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .xl\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .xl\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .xl\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .xl\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .xl\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .xl\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .xl\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .xl\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .xl\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .xl\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .xl\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .xl\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .xl\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .xl\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .xl\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .xl\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .xl\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .xl\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .xl\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .xl\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .xl\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .xl\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .xl\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .xl\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .xl\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .xl\:pt-0 { + padding-top: 0px; } - .xl\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .xl\:pt-1 { + padding-top: 0.25rem; } - .xl\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .xl\:pt-2 { + padding-top: 0.5rem; } - .xl\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .xl\:pt-3 { + padding-top: 0.75rem; } - .xl\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .xl\:pt-4 { + padding-top: 1rem; } - .xl\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .xl\:pt-5 { + padding-top: 1.25rem; } - .xl\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .xl\:pt-6 { + padding-top: 1.5rem; } - .xl\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .xl\:pt-7 { + padding-top: 1.75rem; } - .xl\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .xl\:pt-8 { + padding-top: 2rem; } - .xl\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .xl\:pt-9 { + padding-top: 2.25rem; } - .xl\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .xl\:pt-10 { + padding-top: 2.5rem; } - .xl\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .xl\:pt-11 { + padding-top: 2.75rem; } - .xl\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .xl\:pt-12 { + padding-top: 3rem; } - .xl\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .xl\:pt-14 { + padding-top: 3.5rem; } - .xl\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .xl\:pt-16 { + padding-top: 4rem; } - .xl\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .xl\:pt-20 { + padding-top: 5rem; } - .xl\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .xl\:pt-24 { + padding-top: 6rem; } - .xl\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .xl\:pt-28 { + padding-top: 7rem; } - .xl\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .xl\:pt-32 { + padding-top: 8rem; } - .xl\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .xl\:pt-36 { + padding-top: 9rem; } - .xl\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .xl\:pt-40 { + padding-top: 10rem; } - .xl\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .xl\:pt-44 { + padding-top: 11rem; } - .xl\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .xl\:pt-48 { + padding-top: 12rem; } - .xl\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .xl\:pt-52 { + padding-top: 13rem; } - .xl\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .xl\:pt-56 { + padding-top: 14rem; } - .xl\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .xl\:pt-60 { + padding-top: 15rem; } - .xl\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .xl\:pt-64 { + padding-top: 16rem; } - .xl\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .xl\:pt-72 { + padding-top: 18rem; } - .xl\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .xl\:pt-80 { + padding-top: 20rem; } - .xl\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .xl\:pt-96 { + padding-top: 24rem; } - .xl\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .xl\:pt-px { + padding-top: 1px; } - .xl\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .xl\:pt-0\.5 { + padding-top: 0.125rem; } - .xl\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .xl\:pt-1\.5 { + padding-top: 0.375rem; } - .xl\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .xl\:pt-2\.5 { + padding-top: 0.625rem; } - .xl\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .xl\:pt-3\.5 { + padding-top: 0.875rem; } - .xl\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .xl\:pr-0 { + padding-right: 0px; } - .xl\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .xl\:pr-1 { + padding-right: 0.25rem; } - .xl\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .xl\:pr-2 { + padding-right: 0.5rem; } - .xl\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .xl\:pr-3 { + padding-right: 0.75rem; } - .xl\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .xl\:pr-4 { + padding-right: 1rem; } - .xl\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .xl\:pr-5 { + padding-right: 1.25rem; } - .xl\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .xl\:pr-6 { + padding-right: 1.5rem; } - .xl\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .xl\:pr-7 { + padding-right: 1.75rem; } - .xl\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .xl\:pr-8 { + padding-right: 2rem; } - .xl\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .xl\:pr-9 { + padding-right: 2.25rem; } - .xl\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .xl\:pr-10 { + padding-right: 2.5rem; } - .xl\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .xl\:pr-11 { + padding-right: 2.75rem; } - .xl\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .xl\:pr-12 { + padding-right: 3rem; } - .xl\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .xl\:pr-14 { + padding-right: 3.5rem; } - .xl\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .xl\:pr-16 { + padding-right: 4rem; } - .xl\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .xl\:pr-20 { + padding-right: 5rem; } - .xl\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .xl\:pr-24 { + padding-right: 6rem; } - .xl\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .xl\:pr-28 { + padding-right: 7rem; } - .xl\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .xl\:pr-32 { + padding-right: 8rem; } - .xl\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .xl\:pr-36 { + padding-right: 9rem; } - .xl\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .xl\:pr-40 { + padding-right: 10rem; } - .xl\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .xl\:pr-44 { + padding-right: 11rem; } - .xl\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .xl\:pr-48 { + padding-right: 12rem; } - .xl\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .xl\:pr-52 { + padding-right: 13rem; } - .xl\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .xl\:pr-56 { + padding-right: 14rem; } - .xl\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .xl\:pr-60 { + padding-right: 15rem; } - .xl\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .xl\:pr-64 { + padding-right: 16rem; } - .xl\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .xl\:pr-72 { + padding-right: 18rem; } - .xl\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .xl\:pr-80 { + padding-right: 20rem; } - .xl\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .xl\:pr-96 { + padding-right: 24rem; } - .xl\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .xl\:pr-px { + padding-right: 1px; } - .xl\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .xl\:pr-0\.5 { + padding-right: 0.125rem; } - .xl\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .xl\:pr-1\.5 { + padding-right: 0.375rem; } - .xl\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .xl\:pr-2\.5 { + padding-right: 0.625rem; } - .xl\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .xl\:pr-3\.5 { + padding-right: 0.875rem; } - .xl\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .xl\:pb-0 { + padding-bottom: 0px; } - .xl\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .xl\:pb-1 { + padding-bottom: 0.25rem; } - .xl\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .xl\:pb-2 { + padding-bottom: 0.5rem; } - .xl\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .xl\:pb-3 { + padding-bottom: 0.75rem; } - .xl\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .xl\:pb-4 { + padding-bottom: 1rem; } - .xl\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .xl\:pb-5 { + padding-bottom: 1.25rem; } - .xl\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .xl\:pb-6 { + padding-bottom: 1.5rem; } - .xl\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .xl\:pb-7 { + padding-bottom: 1.75rem; } - .xl\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .xl\:pb-8 { + padding-bottom: 2rem; } - .xl\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .xl\:pb-9 { + padding-bottom: 2.25rem; } - .xl\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .xl\:pb-10 { + padding-bottom: 2.5rem; } - .xl\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .xl\:pb-11 { + padding-bottom: 2.75rem; } - .xl\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .xl\:pb-12 { + padding-bottom: 3rem; } - .xl\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .xl\:pb-14 { + padding-bottom: 3.5rem; } - .xl\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .xl\:pb-16 { + padding-bottom: 4rem; } - .xl\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .xl\:pb-20 { + padding-bottom: 5rem; } - .xl\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .xl\:pb-24 { + padding-bottom: 6rem; } - .xl\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .xl\:pb-28 { + padding-bottom: 7rem; } - .xl\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .xl\:pb-32 { + padding-bottom: 8rem; } - .xl\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .xl\:pb-36 { + padding-bottom: 9rem; } - .xl\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .xl\:pb-40 { + padding-bottom: 10rem; } - .xl\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .xl\:pb-44 { + padding-bottom: 11rem; } - .xl\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .xl\:pb-48 { + padding-bottom: 12rem; } - .xl\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .xl\:pb-52 { + padding-bottom: 13rem; } - .xl\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .xl\:pb-56 { + padding-bottom: 14rem; } - .xl\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .xl\:pb-60 { + padding-bottom: 15rem; } - .xl\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .xl\:pb-64 { + padding-bottom: 16rem; } - .xl\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .xl\:pb-72 { + padding-bottom: 18rem; } - .xl\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .xl\:pb-80 { + padding-bottom: 20rem; } - .xl\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .xl\:pb-96 { + padding-bottom: 24rem; } - .xl\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .xl\:pb-px { + padding-bottom: 1px; } - .xl\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .xl\:pb-0\.5 { + padding-bottom: 0.125rem; } - .xl\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .xl\:pb-1\.5 { + padding-bottom: 0.375rem; } - .xl\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .xl\:pb-2\.5 { + padding-bottom: 0.625rem; } - .xl\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .xl\:pb-3\.5 { + padding-bottom: 0.875rem; } - .xl\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .xl\:pl-0 { + padding-left: 0px; } - .xl\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .xl\:pl-1 { + padding-left: 0.25rem; } - .xl\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .xl\:pl-2 { + padding-left: 0.5rem; } - .xl\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .xl\:pl-3 { + padding-left: 0.75rem; } - .xl\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .xl\:pl-4 { + padding-left: 1rem; } - .xl\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .xl\:pl-5 { + padding-left: 1.25rem; } - .xl\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .xl\:pl-6 { + padding-left: 1.5rem; } - .xl\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .xl\:pl-7 { + padding-left: 1.75rem; } - .xl\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .xl\:pl-8 { + padding-left: 2rem; } - .xl\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .xl\:pl-9 { + padding-left: 2.25rem; } - .xl\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .xl\:pl-10 { + padding-left: 2.5rem; } - .xl\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .xl\:pl-11 { + padding-left: 2.75rem; } - .xl\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .xl\:pl-12 { + padding-left: 3rem; } - .xl\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .xl\:pl-14 { + padding-left: 3.5rem; } - .xl\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .xl\:pl-16 { + padding-left: 4rem; } - .xl\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .xl\:pl-20 { + padding-left: 5rem; } - .xl\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .xl\:pl-24 { + padding-left: 6rem; } - .xl\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .xl\:pl-28 { + padding-left: 7rem; } - .xl\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .xl\:pl-32 { + padding-left: 8rem; } - .xl\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .xl\:pl-36 { + padding-left: 9rem; } - .xl\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .xl\:pl-40 { + padding-left: 10rem; } - .xl\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .xl\:pl-44 { + padding-left: 11rem; } - .xl\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .xl\:pl-48 { + padding-left: 12rem; } - .xl\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .xl\:pl-52 { + padding-left: 13rem; } - .xl\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .xl\:pl-56 { + padding-left: 14rem; } - .xl\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .xl\:pl-60 { + padding-left: 15rem; } - .xl\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .xl\:pl-64 { + padding-left: 16rem; } - .xl\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .xl\:pl-72 { + padding-left: 18rem; } - .xl\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .xl\:pl-80 { + padding-left: 20rem; } - .xl\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .xl\:pl-96 { + padding-left: 24rem; } - .xl\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .xl\:pl-px { + padding-left: 1px; } - .xl\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .xl\:pl-0\.5 { + padding-left: 0.125rem; } - .xl\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .xl\:pl-1\.5 { + padding-left: 0.375rem; } - .xl\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .xl\:pl-2\.5 { + padding-left: 0.625rem; } - .xl\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .xl\:pl-3\.5 { + padding-left: 0.875rem; } - .xl\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .xl\:text-left { + text-align: left; } - .xl\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .xl\:text-center { + text-align: center; } - .xl\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .xl\:text-right { + text-align: right; } - .xl\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .xl\:text-justify { + text-align: justify; } - .xl\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .xl\:align-baseline { + vertical-align: baseline; } - .xl\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .xl\:align-top { + vertical-align: top; } - .xl\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .xl\:align-middle { + vertical-align: middle; } - .xl\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .xl\:align-bottom { + vertical-align: bottom; } - .xl\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .xl\:align-text-top { + vertical-align: text-top; } - .xl\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .xl\:align-text-bottom { + vertical-align: text-bottom; } - .xl\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .xl\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .xl\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .xl\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .xl\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .xl\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .xl\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .xl\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .xl\:ring-opacity-0 { - --tw-ring-opacity: 0; + .xl\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .xl\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .xl\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .xl\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .xl\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .xl\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .xl\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .xl\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .xl\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .xl\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .xl\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .xl\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .xl\:text-5xl { + font-size: 3rem; + line-height: 1; } - .xl\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .xl\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .xl\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .xl\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .xl\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .xl\:text-8xl { + font-size: 6rem; + line-height: 1; } - .xl\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .xl\:text-9xl { + font-size: 8rem; + line-height: 1; } - .xl\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .xl\:font-thin { + font-weight: 100; } - .xl\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .xl\:font-extralight { + font-weight: 200; } - .xl\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .xl\:font-light { + font-weight: 300; } - .xl\:ring-opacity-100 { - --tw-ring-opacity: 1; + .xl\:font-normal { + font-weight: 400; } - .xl\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .xl\:font-medium { + font-weight: 500; } - .xl\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .xl\:font-semibold { + font-weight: 600; } - .xl\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .xl\:font-bold { + font-weight: 700; } - .xl\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .xl\:font-extrabold { + font-weight: 800; } - .xl\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .xl\:font-black { + font-weight: 900; } - .xl\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .xl\:uppercase { + text-transform: uppercase; } - .xl\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .xl\:lowercase { + text-transform: lowercase; } - .xl\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .xl\:capitalize { + text-transform: capitalize; } - .xl\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .xl\:normal-case { + text-transform: none; } - .xl\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .xl\:italic { + font-style: italic; } - .xl\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .xl\:not-italic { + font-style: normal; } - .xl\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .xl\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .xl\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .xl\:normal-nums { + font-variant-numeric: normal; } - .xl\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .xl\:ordinal { + --tw-ordinal: ordinal; } - .xl\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .xl\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .xl\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .xl\:lining-nums { + --tw-numeric-figure: lining-nums; } - .xl\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .xl\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .xl\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .xl\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .xl\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .xl\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .xl\:leading-3 { + line-height: .75rem; } - .xl\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .xl\:leading-4 { + line-height: 1rem; } - .xl\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .xl\:leading-5 { + line-height: 1.25rem; } - .xl\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .xl\:leading-6 { + line-height: 1.5rem; } - .xl\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .xl\:leading-7 { + line-height: 1.75rem; } - .xl\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .xl\:leading-8 { + line-height: 2rem; } - .xl\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .xl\:leading-9 { + line-height: 2.25rem; } - .xl\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .xl\:leading-10 { + line-height: 2.5rem; } - .xl\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .xl\:leading-none { + line-height: 1; } - .xl\:fill-current { - fill: currentColor; + .xl\:leading-tight { + line-height: 1.25; } - .xl\:stroke-current { - stroke: currentColor; + .xl\:leading-snug { + line-height: 1.375; } - .xl\:stroke-0 { - stroke-width: 0; + .xl\:leading-normal { + line-height: 1.5; } - .xl\:stroke-1 { - stroke-width: 1; + .xl\:leading-relaxed { + line-height: 1.625; } - .xl\:stroke-2 { - stroke-width: 2; + .xl\:leading-loose { + line-height: 2; } - .xl\:table-auto { - table-layout: auto; + .xl\:tracking-tighter { + letter-spacing: -0.05em; } - .xl\:table-fixed { - table-layout: fixed; + .xl\:tracking-tight { + letter-spacing: -0.025em; } - .xl\:text-left { - text-align: left; + .xl\:tracking-normal { + letter-spacing: 0em; } - .xl\:text-center { - text-align: center; + .xl\:tracking-wide { + letter-spacing: 0.025em; } - .xl\:text-right { - text-align: right; + .xl\:tracking-wider { + letter-spacing: 0.05em; } - .xl\:text-justify { - text-align: justify; + .xl\:tracking-widest { + letter-spacing: 0.1em; } .xl\:text-transparent { @@ -141238,44 +141427,6 @@ video { --tw-text-opacity: 1; } - .xl\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .xl\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .xl\:overflow-clip { - text-overflow: clip; - } - - .xl\:italic { - font-style: italic; - } - - .xl\:not-italic { - font-style: normal; - } - - .xl\:uppercase { - text-transform: uppercase; - } - - .xl\:lowercase { - text-transform: lowercase; - } - - .xl\:capitalize { - text-transform: capitalize; - } - - .xl\:normal-case { - text-transform: none; - } - .xl\:underline { text-decoration: underline; } @@ -141346,4258 +141497,4669 @@ video { -moz-osx-font-smoothing: auto; } - .xl\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); - } - - .xl\:normal-nums { - font-variant-numeric: normal; - } - - .xl\:ordinal { - --tw-ordinal: ordinal; - } - - .xl\:slashed-zero { - --tw-slashed-zero: slashed-zero; - } - - .xl\:lining-nums { - --tw-numeric-figure: lining-nums; - } - - .xl\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; - } - - .xl\:proportional-nums { - --tw-numeric-spacing: proportional-nums; - } - - .xl\:tabular-nums { - --tw-numeric-spacing: tabular-nums; - } - - .xl\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; - } - - .xl\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; - } - - .xl\:tracking-tighter { - letter-spacing: -0.05em; - } - - .xl\:tracking-tight { - letter-spacing: -0.025em; - } - - .xl\:tracking-normal { - letter-spacing: 0em; - } - - .xl\:tracking-wide { - letter-spacing: 0.025em; + .xl\:placeholder-transparent::placeholder { + color: transparent; } - .xl\:tracking-wider { - letter-spacing: 0.05em; + .xl\:placeholder-current::placeholder { + color: currentColor; } - .xl\:tracking-widest { - letter-spacing: 0.1em; + .xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .xl\:select-none { - user-select: none; + .xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .xl\:select-text { - user-select: text; + .xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .xl\:select-all { - user-select: all; + .xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .xl\:select-auto { - user-select: auto; + .xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .xl\:align-baseline { - vertical-align: baseline; + .xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .xl\:align-top { - vertical-align: top; + .xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .xl\:align-middle { - vertical-align: middle; + .xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .xl\:align-bottom { - vertical-align: bottom; + .xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .xl\:align-text-top { - vertical-align: text-top; + .xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .xl\:align-text-bottom { - vertical-align: text-bottom; + .xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .xl\:visible { - visibility: visible; + .xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .xl\:invisible { - visibility: hidden; + .xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .xl\:whitespace-normal { - white-space: normal; + .xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .xl\:whitespace-nowrap { - white-space: nowrap; + .xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .xl\:whitespace-pre { - white-space: pre; + .xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .xl\:whitespace-pre-line { - white-space: pre-line; + .xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .xl\:whitespace-pre-wrap { - white-space: pre-wrap; + .xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .xl\:break-normal { - overflow-wrap: normal; - word-break: normal; + .xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .xl\:break-words { - overflow-wrap: break-word; + .xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .xl\:break-all { - word-break: break-all; + .xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .xl\:w-0 { - width: 0px; + .xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .xl\:w-1 { - width: 0.25rem; + .xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .xl\:w-2 { - width: 0.5rem; + .xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .xl\:w-3 { - width: 0.75rem; + .xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .xl\:w-4 { - width: 1rem; + .xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .xl\:w-5 { - width: 1.25rem; + .xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .xl\:w-6 { - width: 1.5rem; + .xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .xl\:w-7 { - width: 1.75rem; + .xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .xl\:w-8 { - width: 2rem; + .xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .xl\:w-9 { - width: 2.25rem; + .xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .xl\:w-10 { - width: 2.5rem; + .xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .xl\:w-11 { - width: 2.75rem; + .xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .xl\:w-12 { - width: 3rem; + .xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .xl\:w-14 { - width: 3.5rem; + .xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .xl\:w-16 { - width: 4rem; + .xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .xl\:w-20 { - width: 5rem; + .xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .xl\:w-24 { - width: 6rem; + .xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .xl\:w-28 { - width: 7rem; + .xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .xl\:w-32 { - width: 8rem; + .xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .xl\:w-36 { - width: 9rem; + .xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .xl\:w-40 { - width: 10rem; + .xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .xl\:w-44 { - width: 11rem; + .xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .xl\:w-48 { - width: 12rem; + .xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .xl\:w-52 { - width: 13rem; + .xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .xl\:w-56 { - width: 14rem; + .xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .xl\:w-60 { - width: 15rem; + .xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .xl\:w-64 { - width: 16rem; + .xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .xl\:w-72 { - width: 18rem; + .xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .xl\:w-80 { - width: 20rem; + .xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .xl\:w-96 { - width: 24rem; + .xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .xl\:w-auto { - width: auto; + .xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .xl\:w-px { - width: 1px; + .xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .xl\:w-0\.5 { - width: 0.125rem; + .xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .xl\:w-1\.5 { - width: 0.375rem; + .xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .xl\:w-2\.5 { - width: 0.625rem; + .xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .xl\:w-3\.5 { - width: 0.875rem; + .xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .xl\:w-1\/2 { - width: 50%; + .xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .xl\:w-1\/3 { - width: 33.333333%; + .xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .xl\:w-2\/3 { - width: 66.666667%; + .xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .xl\:w-1\/4 { - width: 25%; + .xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .xl\:w-2\/4 { - width: 50%; + .xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .xl\:w-3\/4 { - width: 75%; + .xl\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .xl\:w-1\/5 { - width: 20%; + .xl\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .xl\:w-2\/5 { - width: 40%; + .xl\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .xl\:w-3\/5 { - width: 60%; + .xl\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .xl\:w-4\/5 { - width: 80%; + .xl\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .xl\:w-1\/6 { - width: 16.666667%; + .xl\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .xl\:w-2\/6 { - width: 33.333333%; + .xl\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .xl\:w-3\/6 { - width: 50%; + .xl\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .xl\:w-4\/6 { - width: 66.666667%; + .xl\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .xl\:w-5\/6 { - width: 83.333333%; + .xl\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .xl\:w-1\/12 { - width: 8.333333%; + .xl\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .xl\:w-2\/12 { - width: 16.666667%; + .xl\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .xl\:w-3\/12 { - width: 25%; + .xl\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .xl\:w-4\/12 { - width: 33.333333%; + .xl\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .xl\:w-5\/12 { - width: 41.666667%; + .xl\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .xl\:w-6\/12 { - width: 50%; + .xl\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .xl\:w-7\/12 { - width: 58.333333%; + .xl\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .xl\:w-8\/12 { - width: 66.666667%; + .xl\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .xl\:w-9\/12 { - width: 75%; + .xl\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .xl\:w-10\/12 { - width: 83.333333%; + .xl\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .xl\:w-11\/12 { - width: 91.666667%; + .xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .xl\:w-full { - width: 100%; + .xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .xl\:w-screen { - width: 100vw; + .xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .xl\:w-min { - width: min-content; + .xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .xl\:w-max { - width: max-content; + .xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .xl\:z-0 { - z-index: 0; + .xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .xl\:z-10 { - z-index: 10; + .xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .xl\:z-20 { - z-index: 20; + .xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .xl\:z-30 { - z-index: 30; + .xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .xl\:z-40 { - z-index: 40; + .xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .xl\:z-50 { - z-index: 50; + .xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .xl\:z-auto { - z-index: auto; + .xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-0:focus-within { - z-index: 0; + .xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-10:focus-within { - z-index: 10; + .xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-20:focus-within { - z-index: 20; + .xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-30:focus-within { - z-index: 30; + .xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-40:focus-within { - z-index: 40; + .xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-50:focus-within { - z-index: 50; + .xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-auto:focus-within { - z-index: auto; + .xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-0:focus { - z-index: 0; + .xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-10:focus { - z-index: 10; + .xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-20:focus { - z-index: 20; + .xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-30:focus { - z-index: 30; + .xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-40:focus { - z-index: 40; + .xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-50:focus { - z-index: 50; + .xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-auto:focus { - z-index: auto; + .xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .xl\:isolate { - isolation: isolate; + .xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .xl\:isolation-auto { - isolation: auto; + .xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .xl\:gap-0 { - gap: 0px; + .xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .xl\:gap-1 { - gap: 0.25rem; + .xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .xl\:gap-2 { - gap: 0.5rem; + .xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .xl\:gap-3 { - gap: 0.75rem; + .xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .xl\:gap-4 { - gap: 1rem; + .xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .xl\:gap-5 { - gap: 1.25rem; + .xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .xl\:gap-6 { - gap: 1.5rem; + .xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .xl\:gap-7 { - gap: 1.75rem; + .xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .xl\:gap-8 { - gap: 2rem; + .xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .xl\:gap-9 { - gap: 2.25rem; + .xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .xl\:gap-10 { - gap: 2.5rem; + .xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .xl\:gap-11 { - gap: 2.75rem; + .xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .xl\:gap-12 { - gap: 3rem; + .xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .xl\:gap-14 { - gap: 3.5rem; + .xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .xl\:gap-16 { - gap: 4rem; + .xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .xl\:gap-20 { - gap: 5rem; + .xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .xl\:gap-24 { - gap: 6rem; + .xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .xl\:gap-28 { - gap: 7rem; + .xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .xl\:gap-32 { - gap: 8rem; + .xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .xl\:gap-36 { - gap: 9rem; + .xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .xl\:gap-40 { - gap: 10rem; + .xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .xl\:gap-44 { - gap: 11rem; + .xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .xl\:gap-48 { - gap: 12rem; + .xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .xl\:gap-52 { - gap: 13rem; + .xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .xl\:gap-56 { - gap: 14rem; + .xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .xl\:gap-60 { - gap: 15rem; + .xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .xl\:gap-64 { - gap: 16rem; + .xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .xl\:gap-72 { - gap: 18rem; + .xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .xl\:gap-80 { - gap: 20rem; + .xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .xl\:gap-96 { - gap: 24rem; + .xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .xl\:gap-px { - gap: 1px; + .xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .xl\:gap-0\.5 { - gap: 0.125rem; + .xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .xl\:gap-1\.5 { - gap: 0.375rem; + .xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .xl\:gap-2\.5 { - gap: 0.625rem; + .xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .xl\:gap-3\.5 { - gap: 0.875rem; + .xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .xl\:gap-x-0 { - column-gap: 0px; + .xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .xl\:gap-x-1 { - column-gap: 0.25rem; + .xl\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .xl\:gap-x-2 { - column-gap: 0.5rem; + .xl\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .xl\:gap-x-3 { - column-gap: 0.75rem; + .xl\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .xl\:gap-x-4 { - column-gap: 1rem; + .xl\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .xl\:gap-x-5 { - column-gap: 1.25rem; + .xl\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .xl\:gap-x-6 { - column-gap: 1.5rem; + .xl\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .xl\:gap-x-7 { - column-gap: 1.75rem; + .xl\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .xl\:gap-x-8 { - column-gap: 2rem; + .xl\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .xl\:gap-x-9 { - column-gap: 2.25rem; + .xl\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .xl\:gap-x-10 { - column-gap: 2.5rem; + .xl\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .xl\:gap-x-11 { - column-gap: 2.75rem; + .xl\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .xl\:gap-x-12 { - column-gap: 3rem; + .xl\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .xl\:gap-x-14 { - column-gap: 3.5rem; + .xl\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .xl\:gap-x-16 { - column-gap: 4rem; + .xl\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .xl\:gap-x-20 { - column-gap: 5rem; + .xl\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .xl\:gap-x-24 { - column-gap: 6rem; + .xl\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .xl\:gap-x-28 { - column-gap: 7rem; + .xl\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .xl\:gap-x-32 { - column-gap: 8rem; + .xl\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .xl\:gap-x-36 { - column-gap: 9rem; + .xl\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .xl\:gap-x-40 { - column-gap: 10rem; + .xl\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .xl\:gap-x-44 { - column-gap: 11rem; + .xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } - .xl\:gap-x-48 { - column-gap: 12rem; + .xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } - .xl\:gap-x-52 { - column-gap: 13rem; + .xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } - .xl\:gap-x-56 { - column-gap: 14rem; + .xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } - .xl\:gap-x-60 { - column-gap: 15rem; + .xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } - .xl\:gap-x-64 { - column-gap: 16rem; + .xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } - .xl\:gap-x-72 { - column-gap: 18rem; + .xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } - .xl\:gap-x-80 { - column-gap: 20rem; + .xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } - .xl\:gap-x-96 { - column-gap: 24rem; + .xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } - .xl\:gap-x-px { - column-gap: 1px; + .xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } - .xl\:gap-x-0\.5 { - column-gap: 0.125rem; + .xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } - .xl\:gap-x-1\.5 { - column-gap: 0.375rem; + .xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } - .xl\:gap-x-2\.5 { - column-gap: 0.625rem; + .xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } - .xl\:gap-x-3\.5 { - column-gap: 0.875rem; + .xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } - .xl\:gap-y-0 { - row-gap: 0px; + .xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } - .xl\:gap-y-1 { - row-gap: 0.25rem; + .xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } - .xl\:gap-y-2 { - row-gap: 0.5rem; + .xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } - .xl\:gap-y-3 { - row-gap: 0.75rem; + .xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } - .xl\:gap-y-4 { - row-gap: 1rem; + .xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } - .xl\:gap-y-5 { - row-gap: 1.25rem; + .xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } - .xl\:gap-y-6 { - row-gap: 1.5rem; + .xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } - .xl\:gap-y-7 { - row-gap: 1.75rem; + .xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } - .xl\:gap-y-8 { - row-gap: 2rem; + .xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } - .xl\:gap-y-9 { - row-gap: 2.25rem; + .xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } - .xl\:gap-y-10 { - row-gap: 2.5rem; + .xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } - .xl\:gap-y-11 { - row-gap: 2.75rem; + .xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } - .xl\:gap-y-12 { - row-gap: 3rem; + .xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } - .xl\:gap-y-14 { - row-gap: 3.5rem; + .xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } - .xl\:gap-y-16 { - row-gap: 4rem; + .xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } - .xl\:gap-y-20 { - row-gap: 5rem; + .xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } - .xl\:gap-y-24 { - row-gap: 6rem; + .xl\:opacity-0 { + opacity: 0; } - .xl\:gap-y-28 { - row-gap: 7rem; + .xl\:opacity-5 { + opacity: 0.05; } - .xl\:gap-y-32 { - row-gap: 8rem; + .xl\:opacity-10 { + opacity: 0.1; } - .xl\:gap-y-36 { - row-gap: 9rem; + .xl\:opacity-20 { + opacity: 0.2; } - .xl\:gap-y-40 { - row-gap: 10rem; + .xl\:opacity-25 { + opacity: 0.25; } - .xl\:gap-y-44 { - row-gap: 11rem; + .xl\:opacity-30 { + opacity: 0.3; } - .xl\:gap-y-48 { - row-gap: 12rem; + .xl\:opacity-40 { + opacity: 0.4; } - .xl\:gap-y-52 { - row-gap: 13rem; + .xl\:opacity-50 { + opacity: 0.5; } - .xl\:gap-y-56 { - row-gap: 14rem; + .xl\:opacity-60 { + opacity: 0.6; } - .xl\:gap-y-60 { - row-gap: 15rem; + .xl\:opacity-70 { + opacity: 0.7; } - .xl\:gap-y-64 { - row-gap: 16rem; + .xl\:opacity-75 { + opacity: 0.75; } - .xl\:gap-y-72 { - row-gap: 18rem; + .xl\:opacity-80 { + opacity: 0.8; } - .xl\:gap-y-80 { - row-gap: 20rem; + .xl\:opacity-90 { + opacity: 0.9; } - .xl\:gap-y-96 { - row-gap: 24rem; + .xl\:opacity-95 { + opacity: 0.95; } - .xl\:gap-y-px { - row-gap: 1px; + .xl\:opacity-100 { + opacity: 1; } - .xl\:gap-y-0\.5 { - row-gap: 0.125rem; + .group:hover .xl\:group-hover\:opacity-0 { + opacity: 0; } - .xl\:gap-y-1\.5 { - row-gap: 0.375rem; + .group:hover .xl\:group-hover\:opacity-5 { + opacity: 0.05; } - .xl\:gap-y-2\.5 { - row-gap: 0.625rem; + .group:hover .xl\:group-hover\:opacity-10 { + opacity: 0.1; } - .xl\:gap-y-3\.5 { - row-gap: 0.875rem; + .group:hover .xl\:group-hover\:opacity-20 { + opacity: 0.2; } - .xl\:grid-flow-row { - grid-auto-flow: row; + .group:hover .xl\:group-hover\:opacity-25 { + opacity: 0.25; } - .xl\:grid-flow-col { - grid-auto-flow: column; + .group:hover .xl\:group-hover\:opacity-30 { + opacity: 0.3; } - .xl\:grid-flow-row-dense { - grid-auto-flow: row dense; + .group:hover .xl\:group-hover\:opacity-40 { + opacity: 0.4; } - .xl\:grid-flow-col-dense { - grid-auto-flow: column dense; + .group:hover .xl\:group-hover\:opacity-50 { + opacity: 0.5; } - .xl\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-60 { + opacity: 0.6; } - .xl\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-70 { + opacity: 0.7; } - .xl\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-75 { + opacity: 0.75; } - .xl\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-80 { + opacity: 0.8; } - .xl\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-90 { + opacity: 0.9; } - .xl\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-95 { + opacity: 0.95; } - .xl\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-100 { + opacity: 1; } - .xl\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .xl\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .xl\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .xl\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .xl\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .xl\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .xl\:grid-cols-none { - grid-template-columns: none; + .xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .xl\:auto-cols-auto { - grid-auto-columns: auto; + .xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .xl\:auto-cols-min { - grid-auto-columns: min-content; + .xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .xl\:auto-cols-max { - grid-auto-columns: max-content; + .xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .xl\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .xl\:col-auto { - grid-column: auto; + .xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .xl\:col-span-1 { - grid-column: span 1 / span 1; + .xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .xl\:col-span-2 { - grid-column: span 2 / span 2; + .xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .xl\:col-span-3 { - grid-column: span 3 / span 3; + .xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .xl\:col-span-4 { - grid-column: span 4 / span 4; + .xl\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .xl\:col-span-5 { - grid-column: span 5 / span 5; + .xl\:hover\:opacity-0:hover { + opacity: 0; } - .xl\:col-span-6 { - grid-column: span 6 / span 6; + .xl\:hover\:opacity-5:hover { + opacity: 0.05; } - .xl\:col-span-7 { - grid-column: span 7 / span 7; + .xl\:hover\:opacity-10:hover { + opacity: 0.1; } - .xl\:col-span-8 { - grid-column: span 8 / span 8; + .xl\:hover\:opacity-20:hover { + opacity: 0.2; } - .xl\:col-span-9 { - grid-column: span 9 / span 9; + .xl\:hover\:opacity-25:hover { + opacity: 0.25; } - .xl\:col-span-10 { - grid-column: span 10 / span 10; + .xl\:hover\:opacity-30:hover { + opacity: 0.3; } - .xl\:col-span-11 { - grid-column: span 11 / span 11; + .xl\:hover\:opacity-40:hover { + opacity: 0.4; } - .xl\:col-span-12 { - grid-column: span 12 / span 12; + .xl\:hover\:opacity-50:hover { + opacity: 0.5; } - .xl\:col-span-full { - grid-column: 1 / -1; + .xl\:hover\:opacity-60:hover { + opacity: 0.6; } - .xl\:col-start-1 { - grid-column-start: 1; + .xl\:hover\:opacity-70:hover { + opacity: 0.7; } - .xl\:col-start-2 { - grid-column-start: 2; + .xl\:hover\:opacity-75:hover { + opacity: 0.75; } - .xl\:col-start-3 { - grid-column-start: 3; + .xl\:hover\:opacity-80:hover { + opacity: 0.8; } - .xl\:col-start-4 { - grid-column-start: 4; + .xl\:hover\:opacity-90:hover { + opacity: 0.9; } - .xl\:col-start-5 { - grid-column-start: 5; + .xl\:hover\:opacity-95:hover { + opacity: 0.95; } - .xl\:col-start-6 { - grid-column-start: 6; + .xl\:hover\:opacity-100:hover { + opacity: 1; } - .xl\:col-start-7 { - grid-column-start: 7; + .xl\:focus\:opacity-0:focus { + opacity: 0; } - .xl\:col-start-8 { - grid-column-start: 8; + .xl\:focus\:opacity-5:focus { + opacity: 0.05; } - .xl\:col-start-9 { - grid-column-start: 9; + .xl\:focus\:opacity-10:focus { + opacity: 0.1; } - .xl\:col-start-10 { - grid-column-start: 10; + .xl\:focus\:opacity-20:focus { + opacity: 0.2; } - .xl\:col-start-11 { - grid-column-start: 11; + .xl\:focus\:opacity-25:focus { + opacity: 0.25; } - .xl\:col-start-12 { - grid-column-start: 12; + .xl\:focus\:opacity-30:focus { + opacity: 0.3; } - .xl\:col-start-13 { - grid-column-start: 13; + .xl\:focus\:opacity-40:focus { + opacity: 0.4; } - .xl\:col-start-auto { - grid-column-start: auto; + .xl\:focus\:opacity-50:focus { + opacity: 0.5; } - .xl\:col-end-1 { - grid-column-end: 1; + .xl\:focus\:opacity-60:focus { + opacity: 0.6; } - .xl\:col-end-2 { - grid-column-end: 2; + .xl\:focus\:opacity-70:focus { + opacity: 0.7; } - .xl\:col-end-3 { - grid-column-end: 3; + .xl\:focus\:opacity-75:focus { + opacity: 0.75; } - .xl\:col-end-4 { - grid-column-end: 4; + .xl\:focus\:opacity-80:focus { + opacity: 0.8; } - .xl\:col-end-5 { - grid-column-end: 5; + .xl\:focus\:opacity-90:focus { + opacity: 0.9; } - .xl\:col-end-6 { - grid-column-end: 6; + .xl\:focus\:opacity-95:focus { + opacity: 0.95; } - .xl\:col-end-7 { - grid-column-end: 7; + .xl\:focus\:opacity-100:focus { + opacity: 1; } - .xl\:col-end-8 { - grid-column-end: 8; + .xl\:bg-blend-normal { + background-blend-mode: normal; } - .xl\:col-end-9 { - grid-column-end: 9; + .xl\:bg-blend-multiply { + background-blend-mode: multiply; } - .xl\:col-end-10 { - grid-column-end: 10; + .xl\:bg-blend-screen { + background-blend-mode: screen; } - .xl\:col-end-11 { - grid-column-end: 11; + .xl\:bg-blend-overlay { + background-blend-mode: overlay; } - .xl\:col-end-12 { - grid-column-end: 12; + .xl\:bg-blend-darken { + background-blend-mode: darken; } - .xl\:col-end-13 { - grid-column-end: 13; + .xl\:bg-blend-lighten { + background-blend-mode: lighten; } - .xl\:col-end-auto { - grid-column-end: auto; + .xl\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .xl\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .xl\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .xl\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .xl\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .xl\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .xl\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .xl\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .xl\:bg-blend-difference { + background-blend-mode: difference; } - .xl\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .xl\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .xl\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .xl\:bg-blend-hue { + background-blend-mode: hue; } - .xl\:grid-rows-none { - grid-template-rows: none; + .xl\:bg-blend-saturation { + background-blend-mode: saturation; } - .xl\:auto-rows-auto { - grid-auto-rows: auto; + .xl\:bg-blend-color { + background-blend-mode: color; } - .xl\:auto-rows-min { - grid-auto-rows: min-content; + .xl\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .xl\:auto-rows-max { - grid-auto-rows: max-content; + .xl\:mix-blend-normal { + mix-blend-mode: normal; } - .xl\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .xl\:mix-blend-multiply { + mix-blend-mode: multiply; } - .xl\:row-auto { - grid-row: auto; + .xl\:mix-blend-screen { + mix-blend-mode: screen; } - .xl\:row-span-1 { - grid-row: span 1 / span 1; + .xl\:mix-blend-overlay { + mix-blend-mode: overlay; } - .xl\:row-span-2 { - grid-row: span 2 / span 2; + .xl\:mix-blend-darken { + mix-blend-mode: darken; } - .xl\:row-span-3 { - grid-row: span 3 / span 3; + .xl\:mix-blend-lighten { + mix-blend-mode: lighten; } - .xl\:row-span-4 { - grid-row: span 4 / span 4; + .xl\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .xl\:row-span-5 { - grid-row: span 5 / span 5; + .xl\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .xl\:row-span-6 { - grid-row: span 6 / span 6; + .xl\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .xl\:row-span-full { - grid-row: 1 / -1; + .xl\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .xl\:row-start-1 { - grid-row-start: 1; + .xl\:mix-blend-difference { + mix-blend-mode: difference; } - .xl\:row-start-2 { - grid-row-start: 2; + .xl\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .xl\:row-start-3 { - grid-row-start: 3; + .xl\:mix-blend-hue { + mix-blend-mode: hue; } - .xl\:row-start-4 { - grid-row-start: 4; + .xl\:mix-blend-saturation { + mix-blend-mode: saturation; } - .xl\:row-start-5 { - grid-row-start: 5; + .xl\:mix-blend-color { + mix-blend-mode: color; } - .xl\:row-start-6 { - grid-row-start: 6; + .xl\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .xl\:row-start-7 { - grid-row-start: 7; + .xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-start-auto { - grid-row-start: auto; + .xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-1 { - grid-row-end: 1; + .xl\: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); } - .xl\:row-end-2 { - grid-row-end: 2; + .xl\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-3 { - grid-row-end: 3; + .xl\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-4 { - grid-row-end: 4; + .xl\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-5 { - grid-row-end: 5; + .xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-6 { - grid-row-end: 6; + .xl\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-7 { - grid-row-end: 7; + .group:hover .xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-auto { - grid-row-end: auto; + .group:hover .xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .xl\:group-hover\: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); } - .xl\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .xl\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:transform-none { - transform: none; + .group:hover .xl\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-center { - transform-origin: center; + .group:hover .xl\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-top { - transform-origin: top; + .group:hover .xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-top-right { - transform-origin: top right; + .group:hover .xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-right { - transform-origin: right; + .xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-bottom-right { - transform-origin: bottom right; + .xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-bottom { - transform-origin: bottom; + .xl\:focus-within\:shadow-md:focus-within { + --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); } - .xl\:origin-bottom-left { - transform-origin: bottom left; + .xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-left { - transform-origin: left; + .xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-top-left { - transform-origin: top left; + .xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .xl\:hover\:shadow-md:hover { + --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); } - .xl\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .xl\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .xl\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-0 { - --tw-scale-x: 0; + .xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-50 { - --tw-scale-x: .5; + .xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-75 { - --tw-scale-x: .75; + .xl\:focus\:shadow-md:focus { + --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); } - .xl\:scale-x-90 { - --tw-scale-x: .9; + .xl\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-95 { - --tw-scale-x: .95; + .xl\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-100 { - --tw-scale-x: 1; + .xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-105 { - --tw-scale-x: 1.05; + .xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-110 { - --tw-scale-x: 1.1; + .xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-125 { - --tw-scale-x: 1.25; + .xl\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .xl\:scale-x-150 { - --tw-scale-x: 1.5; + .xl\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .xl\:scale-y-0 { - --tw-scale-y: 0; + .xl\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .xl\:scale-y-50 { - --tw-scale-y: .5; + .xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .xl\:scale-y-75 { - --tw-scale-y: .75; + .xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .xl\:scale-y-90 { - --tw-scale-y: .9; + .xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .xl\:scale-y-95 { - --tw-scale-y: .95; + .xl\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .xl\:scale-y-100 { - --tw-scale-y: 1; + .xl\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .xl\:scale-y-105 { - --tw-scale-y: 1.05; + .xl\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .xl\:scale-y-110 { - --tw-scale-y: 1.1; + .xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:scale-y-125 { - --tw-scale-y: 1.25; + .xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:scale-y-150 { - --tw-scale-y: 1.5; + .xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .xl\:ring-inset { + --tw-ring-inset: inset; } - .xl\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .xl\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .xl\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .xl\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .xl\:ring-transparent { + --tw-ring-color: transparent; } - .xl\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .xl\:ring-current { + --tw-ring-color: currentColor; } - .xl\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .xl\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .xl\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .xl\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .xl\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .xl\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .xl\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .xl\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .xl\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .xl\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .xl\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .xl\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .xl\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .xl\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .xl\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .xl\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .xl\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .xl\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .xl\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .xl\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .xl\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .xl\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .xl\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .xl\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .xl\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .xl\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .xl\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .xl\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .xl\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .xl\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .xl\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .xl\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .xl\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .xl\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .xl\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .xl\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .xl\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .xl\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .xl\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .xl\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .xl\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .xl\:rotate-0 { - --tw-rotate: 0deg; + .xl\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .xl\:rotate-1 { - --tw-rotate: 1deg; + .xl\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .xl\:rotate-2 { - --tw-rotate: 2deg; + .xl\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .xl\:rotate-3 { - --tw-rotate: 3deg; + .xl\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .xl\:rotate-6 { - --tw-rotate: 6deg; + .xl\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .xl\:rotate-12 { - --tw-rotate: 12deg; + .xl\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .xl\:rotate-45 { - --tw-rotate: 45deg; + .xl\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .xl\:rotate-90 { - --tw-rotate: 90deg; + .xl\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .xl\:rotate-180 { - --tw-rotate: 180deg; + .xl\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .xl\:-rotate-180 { - --tw-rotate: -180deg; + .xl\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .xl\:-rotate-90 { - --tw-rotate: -90deg; + .xl\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .xl\:-rotate-45 { - --tw-rotate: -45deg; + .xl\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .xl\:-rotate-12 { - --tw-rotate: -12deg; + .xl\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .xl\:-rotate-6 { - --tw-rotate: -6deg; + .xl\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .xl\:-rotate-3 { - --tw-rotate: -3deg; + .xl\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .xl\:-rotate-2 { - --tw-rotate: -2deg; + .xl\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .xl\:-rotate-1 { - --tw-rotate: -1deg; + .xl\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .xl\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .xl\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .xl\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .xl\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .xl\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .xl\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .xl\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .xl\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .xl\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .xl\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .xl\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .xl\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .xl\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .xl\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .xl\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .xl\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .xl\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .xl\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .xl\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .xl\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .xl\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .xl\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .xl\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .xl\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .xl\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .xl\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .xl\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .xl\:translate-x-0 { - --tw-translate-x: 0px; + .xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .xl\:translate-x-1 { - --tw-translate-x: 0.25rem; + .xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .xl\:translate-x-2 { - --tw-translate-x: 0.5rem; + .xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .xl\:translate-x-3 { - --tw-translate-x: 0.75rem; + .xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .xl\:translate-x-4 { - --tw-translate-x: 1rem; + .xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .xl\:translate-x-5 { - --tw-translate-x: 1.25rem; + .xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .xl\:translate-x-6 { - --tw-translate-x: 1.5rem; + .xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .xl\:translate-x-7 { - --tw-translate-x: 1.75rem; + .xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .xl\:translate-x-8 { - --tw-translate-x: 2rem; + .xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .xl\:translate-x-9 { - --tw-translate-x: 2.25rem; + .xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .xl\:translate-x-10 { - --tw-translate-x: 2.5rem; + .xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .xl\:translate-x-11 { - --tw-translate-x: 2.75rem; + .xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .xl\:translate-x-12 { - --tw-translate-x: 3rem; + .xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .xl\:translate-x-14 { - --tw-translate-x: 3.5rem; + .xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .xl\:translate-x-16 { - --tw-translate-x: 4rem; + .xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .xl\:translate-x-20 { - --tw-translate-x: 5rem; + .xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .xl\:translate-x-24 { - --tw-translate-x: 6rem; + .xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .xl\:translate-x-28 { - --tw-translate-x: 7rem; + .xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .xl\:translate-x-32 { - --tw-translate-x: 8rem; + .xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .xl\:translate-x-36 { - --tw-translate-x: 9rem; + .xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .xl\:translate-x-40 { - --tw-translate-x: 10rem; + .xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .xl\:translate-x-44 { - --tw-translate-x: 11rem; + .xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .xl\:translate-x-48 { - --tw-translate-x: 12rem; + .xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .xl\:translate-x-52 { - --tw-translate-x: 13rem; + .xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .xl\:translate-x-56 { - --tw-translate-x: 14rem; + .xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .xl\:translate-x-60 { - --tw-translate-x: 15rem; + .xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .xl\:translate-x-64 { - --tw-translate-x: 16rem; + .xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .xl\:translate-x-72 { - --tw-translate-x: 18rem; + .xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .xl\:translate-x-80 { - --tw-translate-x: 20rem; + .xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .xl\:translate-x-96 { - --tw-translate-x: 24rem; + .xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .xl\:translate-x-px { - --tw-translate-x: 1px; + .xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .xl\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .xl\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .xl\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .xl\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .xl\:-translate-x-0 { - --tw-translate-x: 0px; + .xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .xl\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .xl\:-translate-x-4 { - --tw-translate-x: -1rem; + .xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .xl\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .xl\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .xl\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .xl\:-translate-x-8 { - --tw-translate-x: -2rem; + .xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .xl\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .xl\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .xl\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .xl\:-translate-x-12 { - --tw-translate-x: -3rem; + .xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .xl\:-translate-x-16 { - --tw-translate-x: -4rem; + .xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .xl\:-translate-x-20 { - --tw-translate-x: -5rem; + .xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .xl\:-translate-x-24 { - --tw-translate-x: -6rem; + .xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .xl\:-translate-x-28 { - --tw-translate-x: -7rem; + .xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .xl\:-translate-x-32 { - --tw-translate-x: -8rem; + .xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .xl\:-translate-x-36 { - --tw-translate-x: -9rem; + .xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .xl\:-translate-x-40 { - --tw-translate-x: -10rem; + .xl\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .xl\:-translate-x-44 { - --tw-translate-x: -11rem; + .xl\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-48 { - --tw-translate-x: -12rem; + .xl\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-52 { - --tw-translate-x: -13rem; + .xl\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .xl\:-translate-x-56 { - --tw-translate-x: -14rem; + .xl\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .xl\:-translate-x-60 { - --tw-translate-x: -15rem; + .xl\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .xl\:-translate-x-64 { - --tw-translate-x: -16rem; + .xl\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .xl\:-translate-x-72 { - --tw-translate-x: -18rem; + .xl\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .xl\:-translate-x-80 { - --tw-translate-x: -20rem; + .xl\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .xl\:-translate-x-96 { - --tw-translate-x: -24rem; + .xl\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .xl\:-translate-x-px { - --tw-translate-x: -1px; + .xl\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .xl\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .xl\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .xl\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .xl\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .xl\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .xl\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .xl\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .xl\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .xl\:translate-x-1\/2 { - --tw-translate-x: 50%; + .xl\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .xl\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .xl\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .xl\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .xl\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .xl\:translate-x-1\/4 { - --tw-translate-x: 25%; + .xl\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .xl\:translate-x-2\/4 { - --tw-translate-x: 50%; + .xl\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .xl\:translate-x-3\/4 { - --tw-translate-x: 75%; + .xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .xl\:translate-x-full { - --tw-translate-x: 100%; + .xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .xl\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .xl\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .xl\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .xl\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .xl\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .xl\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .xl\:-translate-x-full { - --tw-translate-x: -100%; + .xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .xl\:translate-y-0 { - --tw-translate-y: 0px; + .xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .xl\:translate-y-1 { - --tw-translate-y: 0.25rem; + .xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .xl\:translate-y-2 { - --tw-translate-y: 0.5rem; + .xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .xl\:translate-y-3 { - --tw-translate-y: 0.75rem; + .xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .xl\:translate-y-4 { - --tw-translate-y: 1rem; + .xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .xl\:translate-y-5 { - --tw-translate-y: 1.25rem; + .xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .xl\:translate-y-6 { - --tw-translate-y: 1.5rem; + .xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .xl\:translate-y-7 { - --tw-translate-y: 1.75rem; + .xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .xl\:translate-y-8 { - --tw-translate-y: 2rem; + .xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .xl\:translate-y-9 { - --tw-translate-y: 2.25rem; + .xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .xl\:translate-y-10 { - --tw-translate-y: 2.5rem; + .xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .xl\:translate-y-11 { - --tw-translate-y: 2.75rem; + .xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .xl\:translate-y-12 { - --tw-translate-y: 3rem; + .xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .xl\:translate-y-14 { - --tw-translate-y: 3.5rem; + .xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .xl\:translate-y-16 { - --tw-translate-y: 4rem; + .xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .xl\:translate-y-20 { - --tw-translate-y: 5rem; + .xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .xl\:translate-y-24 { - --tw-translate-y: 6rem; + .xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .xl\:translate-y-28 { - --tw-translate-y: 7rem; + .xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .xl\:translate-y-32 { - --tw-translate-y: 8rem; + .xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .xl\:translate-y-36 { - --tw-translate-y: 9rem; + .xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .xl\:translate-y-40 { - --tw-translate-y: 10rem; + .xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .xl\:translate-y-44 { - --tw-translate-y: 11rem; + .xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .xl\:translate-y-48 { - --tw-translate-y: 12rem; + .xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .xl\:translate-y-52 { - --tw-translate-y: 13rem; + .xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .xl\:translate-y-56 { - --tw-translate-y: 14rem; + .xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .xl\:translate-y-60 { - --tw-translate-y: 15rem; + .xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .xl\:translate-y-64 { - --tw-translate-y: 16rem; + .xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .xl\:translate-y-72 { - --tw-translate-y: 18rem; + .xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .xl\:translate-y-80 { - --tw-translate-y: 20rem; + .xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .xl\:translate-y-96 { - --tw-translate-y: 24rem; + .xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .xl\:translate-y-px { - --tw-translate-y: 1px; + .xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .xl\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .xl\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .xl\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .xl\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .xl\:-translate-y-0 { - --tw-translate-y: 0px; + .xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .xl\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .xl\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .xl\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .xl\:-translate-y-4 { - --tw-translate-y: -1rem; + .xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .xl\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .xl\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .xl\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .xl\:-translate-y-8 { - --tw-translate-y: -2rem; + .xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .xl\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .xl\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .xl\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .xl\:-translate-y-12 { - --tw-translate-y: -3rem; + .xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .xl\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .xl\:-translate-y-16 { - --tw-translate-y: -4rem; + .xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .xl\:-translate-y-20 { - --tw-translate-y: -5rem; + .xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .xl\:-translate-y-24 { - --tw-translate-y: -6rem; + .xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .xl\:-translate-y-28 { - --tw-translate-y: -7rem; + .xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .xl\:-translate-y-32 { - --tw-translate-y: -8rem; + .xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .xl\:-translate-y-36 { - --tw-translate-y: -9rem; + .xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .xl\:-translate-y-40 { - --tw-translate-y: -10rem; + .xl\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .xl\:-translate-y-44 { - --tw-translate-y: -11rem; + .xl\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .xl\:-translate-y-48 { - --tw-translate-y: -12rem; + .xl\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .xl\:-translate-y-52 { - --tw-translate-y: -13rem; + .xl\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .xl\:-translate-y-56 { - --tw-translate-y: -14rem; + .xl\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .xl\:-translate-y-60 { - --tw-translate-y: -15rem; + .xl\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .xl\:-translate-y-64 { - --tw-translate-y: -16rem; + .xl\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .xl\:-translate-y-72 { - --tw-translate-y: -18rem; + .xl\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .xl\:-translate-y-80 { - --tw-translate-y: -20rem; + .xl\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .xl\:-translate-y-96 { - --tw-translate-y: -24rem; + .xl\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .xl\:-translate-y-px { - --tw-translate-y: -1px; + .xl\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .xl\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .xl\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .xl\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .xl\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .xl\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .xl\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .xl\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .xl\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .xl\:translate-y-1\/2 { - --tw-translate-y: 50%; + .xl\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .xl\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .xl\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .xl\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .xl\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .xl\:translate-y-1\/4 { - --tw-translate-y: 25%; + .xl\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .xl\:translate-y-2\/4 { - --tw-translate-y: 50%; + .xl\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .xl\:translate-y-3\/4 { - --tw-translate-y: 75%; + .xl\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .xl\:translate-y-full { - --tw-translate-y: 100%; + .xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .xl\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .xl\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .xl\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .xl\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .xl\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .xl\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .xl\:-translate-y-full { - --tw-translate-y: -100%; + .xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .xl\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .xl\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .xl\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .xl\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .xl\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .xl\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .xl\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .xl\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .xl\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .xl\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .xl\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .xl\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .xl\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .xl\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .xl\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .xl\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .xl\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .xl\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .xl\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .xl\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .xl\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .xl\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .xl\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .xl\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .xl\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .xl\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .xl\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .xl\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .xl\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .xl\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .xl\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .xl\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .xl\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .xl\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .xl\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .xl\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .xl\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .xl\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .xl\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .xl\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .xl\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .xl\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .xl\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .xl\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .xl\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .xl\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .xl\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .xl\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .xl\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .xl\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .xl\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .xl\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .xl\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .xl\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .xl\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .xl\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .xl\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .xl\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .xl\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .xl\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .xl\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .xl\:ring-offset-black { + --tw-ring-offset-color: #000; } - .xl\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .xl\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .xl\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .xl\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .xl\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .xl\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .xl\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .xl\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .xl\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .xl\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .xl\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .xl\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .xl\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .xl\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .xl\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .xl\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .xl\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .xl\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .xl\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .xl\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .xl\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .xl\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .xl\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .xl\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .xl\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .xl\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .xl\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .xl\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .xl\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .xl\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .xl\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .xl\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .xl\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .xl\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .xl\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .xl\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .xl\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .xl\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .xl\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .xl\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .xl\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .xl\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .xl\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .xl\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .xl\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .xl\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .xl\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .xl\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .xl\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .xl\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .xl\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .xl\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .xl\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .xl\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .xl\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .xl\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .xl\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .xl\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .xl\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .xl\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .xl\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .xl\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .xl\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .xl\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .xl\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .xl\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .xl\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .xl\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .xl\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .xl\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .xl\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .xl\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .xl\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .xl\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .xl\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .xl\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .xl\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .xl\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .xl\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .xl\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .xl\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .xl\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .xl\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .xl\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .xl\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .xl\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .xl\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .xl\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .xl\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .xl\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .xl\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .xl\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .xl\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .xl\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .xl\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .xl\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .xl\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .xl\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .xl\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .xl\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .xl\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .xl\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .xl\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .xl\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .xl\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .xl\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .xl\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .xl\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .xl\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .xl\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .xl\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .xl\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .xl\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .xl\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .xl\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .xl\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .xl\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .xl\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .xl\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .xl\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .xl\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .xl\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .xl\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .xl\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .xl\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .xl\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .xl\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .xl\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .xl\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .xl\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .xl\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .xl\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .xl\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .xl\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .xl\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .xl\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .xl\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .xl\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .xl\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .xl\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .xl\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .xl\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .xl\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .xl\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .xl\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .xl\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .xl\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .xl\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .xl\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .xl\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .xl\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .xl\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .xl\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .xl\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .xl\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .xl\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .xl\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - - .xl\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + + .xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .xl\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .xl\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .xl\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .xl\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .xl\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .xl\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .xl\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .xl\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .xl\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .xl\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .xl\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .xl\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .xl\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .xl\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .xl\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .xl\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .xl\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .xl\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .xl\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .xl\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .xl\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .xl\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .xl\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .xl\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .xl\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .xl\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .xl\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .xl\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .xl\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .xl\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .xl\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .xl\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .xl\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .xl\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .xl\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .xl\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .xl\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .xl\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .xl\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .xl\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .xl\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .xl\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .xl\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .xl\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .xl\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .xl\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .xl\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .xl\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .xl\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .xl\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .xl\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .xl\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .xl\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .xl\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .xl\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .xl\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .xl\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .xl\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .xl\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .xl\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .xl\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .xl\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .xl\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .xl\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .xl\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .xl\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .xl\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .xl\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .xl\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .xl\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .xl\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .xl\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .xl\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .xl\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .xl\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .xl\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .xl\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .xl\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .xl\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .xl\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .xl\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .xl\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .xl\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .xl\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .xl\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .xl\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .xl\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .xl\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .xl\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .xl\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .xl\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .xl\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .xl\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .xl\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .xl\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .xl\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .xl\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .xl\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .xl\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .xl\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .xl\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .xl\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .xl\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .xl\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .xl\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .xl\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .xl\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .xl\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .xl\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .xl\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .xl\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .xl\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .xl\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .xl\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .xl\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .xl\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .xl\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .xl\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .xl\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .xl\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .xl\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .xl\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .xl\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .xl\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .xl\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .xl\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .xl\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .xl\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .xl\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .xl\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .xl\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .xl\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .xl\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .xl\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .xl\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .xl\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .xl\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .xl\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .xl\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .xl\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .xl\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .xl\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .xl\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .xl\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .xl\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .xl\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .xl\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .xl\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .xl\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .xl\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .xl\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .xl\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .xl\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .xl\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .xl\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .xl\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .xl\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .xl\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .xl\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .xl\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .xl\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .xl\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .xl\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .xl\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .xl\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .xl\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .xl\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .xl\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .xl\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .xl\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .xl\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .xl\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .xl\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .xl\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .xl\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .xl\:filter-none { + filter: none; } - .xl\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .xl\:blur-0 { + --tw-blur: blur(0); } - .xl\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .xl\:blur-sm { + --tw-blur: blur(4px); } - .xl\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .xl\:blur { + --tw-blur: blur(8px); } - .xl\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .xl\:blur-md { + --tw-blur: blur(12px); } - .xl\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .xl\:blur-lg { + --tw-blur: blur(16px); } - .xl\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .xl\:blur-xl { + --tw-blur: blur(24px); } - .xl\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .xl\:blur-2xl { + --tw-blur: blur(40px); } - .xl\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .xl\:blur-3xl { + --tw-blur: blur(64px); } - .xl\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .xl\:brightness-0 { + --tw-brightness: brightness(0); } - .xl\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .xl\:brightness-50 { + --tw-brightness: brightness(.5); } - .xl\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .xl\:brightness-75 { + --tw-brightness: brightness(.75); } - .xl\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .xl\:brightness-90 { + --tw-brightness: brightness(.9); } - .xl\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .xl\:brightness-95 { + --tw-brightness: brightness(.95); } - .xl\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .xl\:brightness-100 { + --tw-brightness: brightness(1); } - .xl\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .xl\:brightness-105 { + --tw-brightness: brightness(1.05); } - .xl\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .xl\:brightness-110 { + --tw-brightness: brightness(1.1); } - .xl\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .xl\:brightness-125 { + --tw-brightness: brightness(1.25); } - .xl\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .xl\:brightness-150 { + --tw-brightness: brightness(1.5); } - .xl\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .xl\:brightness-200 { + --tw-brightness: brightness(2); } - .xl\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .xl\:contrast-0 { + --tw-contrast: contrast(0); } - .xl\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .xl\:contrast-50 { + --tw-contrast: contrast(.5); } - .xl\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .xl\:contrast-75 { + --tw-contrast: contrast(.75); } - .xl\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .xl\:contrast-100 { + --tw-contrast: contrast(1); } - .xl\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .xl\:contrast-125 { + --tw-contrast: contrast(1.25); } - .xl\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .xl\:contrast-150 { + --tw-contrast: contrast(1.5); } - .xl\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .xl\:contrast-200 { + --tw-contrast: contrast(2); } - .xl\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .xl\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .xl\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .xl\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .xl\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .xl\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .xl\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .xl\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .xl\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .xl\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .xl\:skew-x-0 { - --tw-skew-x: 0deg; + .xl\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .xl\:skew-x-1 { - --tw-skew-x: 1deg; + .xl\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .xl\:skew-x-2 { - --tw-skew-x: 2deg; + .xl\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .xl\:skew-x-3 { - --tw-skew-x: 3deg; + .xl\:grayscale { + --tw-grayscale: grayscale(100%); } - .xl\:skew-x-6 { - --tw-skew-x: 6deg; + .xl\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .xl\:skew-x-12 { - --tw-skew-x: 12deg; + .xl\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .xl\:-skew-x-12 { - --tw-skew-x: -12deg; + .xl\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .xl\:-skew-x-6 { - --tw-skew-x: -6deg; + .xl\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .xl\:-skew-x-3 { - --tw-skew-x: -3deg; + .xl\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .xl\:-skew-x-2 { - --tw-skew-x: -2deg; + .xl\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .xl\:-skew-x-1 { - --tw-skew-x: -1deg; + .xl\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .xl\:skew-y-0 { - --tw-skew-y: 0deg; + .xl\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .xl\:skew-y-1 { - --tw-skew-y: 1deg; + .xl\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .xl\:skew-y-2 { - --tw-skew-y: 2deg; + .xl\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .xl\:skew-y-3 { - --tw-skew-y: 3deg; + .xl\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .xl\:skew-y-6 { - --tw-skew-y: 6deg; + .xl\:invert-0 { + --tw-invert: invert(0); } - .xl\:skew-y-12 { - --tw-skew-y: 12deg; + .xl\:invert { + --tw-invert: invert(100%); } - .xl\:-skew-y-12 { - --tw-skew-y: -12deg; + .xl\:saturate-0 { + --tw-saturate: saturate(0); } - .xl\:-skew-y-6 { - --tw-skew-y: -6deg; + .xl\:saturate-50 { + --tw-saturate: saturate(.5); } - .xl\:-skew-y-3 { - --tw-skew-y: -3deg; + .xl\:saturate-100 { + --tw-saturate: saturate(1); } - .xl\:-skew-y-2 { - --tw-skew-y: -2deg; + .xl\:saturate-150 { + --tw-saturate: saturate(1.5); } - .xl\:-skew-y-1 { - --tw-skew-y: -1deg; + .xl\:saturate-200 { + --tw-saturate: saturate(2); } - .xl\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .xl\:sepia-0 { + --tw-sepia: sepia(0); } - .xl\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .xl\:sepia { + --tw-sepia: sepia(100%); } - .xl\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .xl\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .xl\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .xl\:backdrop-filter-none { + backdrop-filter: none; } - .xl\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .xl\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .xl\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .xl\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .xl\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .xl\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .xl\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .xl\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .xl\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .xl\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .xl\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .xl\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .xl\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .xl\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .xl\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .xl\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .xl\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .xl\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .xl\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .xl\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .xl\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .xl\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .xl\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .xl\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .xl\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .xl\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .xl\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .xl\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .xl\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + .xl\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .xl\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + .xl\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .xl\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + .xl\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .xl\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + .xl\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .xl\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + .xl\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .xl\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .xl\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .xl\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .xl\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .xl\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .xl\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .xl\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .xl\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .xl\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .xl\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .xl\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .xl\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .xl\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .xl\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .xl\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .xl\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .xl\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .xl\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .xl\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .xl\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .xl\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .xl\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .xl\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .xl\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .xl\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .xl\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .xl\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .xl\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .xl\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .xl\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .xl\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .xl\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .xl\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .xl\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .xl\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .xl\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .xl\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .xl\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .xl\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .xl\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .xl\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .xl\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } .xl\:transition-none { @@ -145640,6 +146202,70 @@ video { transition-duration: 150ms; } + .xl\:delay-75 { + transition-delay: 75ms; + } + + .xl\:delay-100 { + transition-delay: 100ms; + } + + .xl\:delay-150 { + transition-delay: 150ms; + } + + .xl\:delay-200 { + transition-delay: 200ms; + } + + .xl\:delay-300 { + transition-delay: 300ms; + } + + .xl\:delay-500 { + transition-delay: 500ms; + } + + .xl\:delay-700 { + transition-delay: 700ms; + } + + .xl\:delay-1000 { + transition-delay: 1000ms; + } + + .xl\:duration-75 { + transition-duration: 75ms; + } + + .xl\:duration-100 { + transition-duration: 100ms; + } + + .xl\:duration-150 { + transition-duration: 150ms; + } + + .xl\:duration-200 { + transition-duration: 200ms; + } + + .xl\:duration-300 { + transition-duration: 300ms; + } + + .xl\:duration-500 { + transition-duration: 500ms; + } + + .xl\:duration-700 { + transition-duration: 700ms; + } + + .xl\:duration-1000 { + transition-duration: 1000ms; + } + .xl\:ease-linear { transition-timing-function: linear; } @@ -145656,22319 +146282,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .xl\:duration-75 { - transition-duration: 75ms; + .xl\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 1536px) { + .\32xl\:container { + width: 100%; + } + + @media (min-width: 640px) { + .\32xl\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .\32xl\:container { + max-width: 768px; + } } - .xl\:duration-100 { - transition-duration: 100ms; + @media (min-width: 1024px) { + .\32xl\:container { + max-width: 1024px; + } } - .xl\:duration-150 { - transition-duration: 150ms; + @media (min-width: 1280px) { + .\32xl\:container { + max-width: 1280px; + } } - .xl\:duration-200 { - transition-duration: 200ms; + @media (min-width: 1536px) { + .\32xl\:container { + max-width: 1536px; + } } - .xl\:duration-300 { - transition-duration: 300ms; + .\32xl\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .xl\:duration-500 { - transition-duration: 500ms; + .\32xl\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .xl\:duration-700 { - transition-duration: 700ms; + .\32xl\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .xl\:duration-1000 { - transition-duration: 1000ms; + .\32xl\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .xl\:delay-75 { - transition-delay: 75ms; + .\32xl\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .xl\:delay-100 { - transition-delay: 100ms; + .\32xl\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .xl\:delay-150 { - transition-delay: 150ms; + .\32xl\:pointer-events-none { + pointer-events: none; } - .xl\:delay-200 { - transition-delay: 200ms; + .\32xl\:pointer-events-auto { + pointer-events: auto; } - .xl\:delay-300 { - transition-delay: 300ms; + .\32xl\:visible { + visibility: visible; } - .xl\:delay-500 { - transition-delay: 500ms; + .\32xl\:invisible { + visibility: hidden; } - .xl\:delay-700 { - transition-delay: 700ms; + .\32xl\:static { + position: static; } - .xl\:delay-1000 { - transition-delay: 1000ms; + .\32xl\:fixed { + position: fixed; } - .xl\:animate-none { - animation: none; + .\32xl\:absolute { + position: absolute; } - .xl\:animate-spin { - animation: spin 1s linear infinite; + .\32xl\:relative { + position: relative; } - .xl\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .\32xl\:sticky { + position: sticky; } - .xl\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .\32xl\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .xl\:animate-bounce { - animation: bounce 1s infinite; + .\32xl\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .xl\:mix-blend-normal { - mix-blend-mode: normal; + .\32xl\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .xl\:mix-blend-multiply { - mix-blend-mode: multiply; + .\32xl\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .xl\:mix-blend-screen { - mix-blend-mode: screen; + .\32xl\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .xl\:mix-blend-overlay { - mix-blend-mode: overlay; + .\32xl\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .xl\:mix-blend-darken { - mix-blend-mode: darken; + .\32xl\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .xl\:mix-blend-lighten { - mix-blend-mode: lighten; + .\32xl\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .xl\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .\32xl\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .xl\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .\32xl\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .xl\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .\32xl\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .xl\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .\32xl\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .xl\:mix-blend-difference { - mix-blend-mode: difference; + .\32xl\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .xl\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .\32xl\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .xl\:mix-blend-hue { - mix-blend-mode: hue; + .\32xl\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .xl\:mix-blend-saturation { - mix-blend-mode: saturation; + .\32xl\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .xl\:mix-blend-color { - mix-blend-mode: color; + .\32xl\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .xl\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .\32xl\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .xl\:bg-blend-normal { - background-blend-mode: normal; + .\32xl\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .xl\:bg-blend-multiply { - background-blend-mode: multiply; + .\32xl\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .xl\:bg-blend-screen { - background-blend-mode: screen; + .\32xl\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .xl\:bg-blend-overlay { - background-blend-mode: overlay; + .\32xl\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .xl\:bg-blend-darken { - background-blend-mode: darken; + .\32xl\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .xl\:bg-blend-lighten { - background-blend-mode: lighten; + .\32xl\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .xl\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .\32xl\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .xl\:bg-blend-color-burn { - background-blend-mode: color-burn; + .\32xl\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .xl\:bg-blend-hard-light { - background-blend-mode: hard-light; + .\32xl\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .xl\:bg-blend-soft-light { - background-blend-mode: soft-light; + .\32xl\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .xl\:bg-blend-difference { - background-blend-mode: difference; + .\32xl\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .xl\:bg-blend-exclusion { - background-blend-mode: exclusion; + .\32xl\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .xl\:bg-blend-hue { - background-blend-mode: hue; + .\32xl\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .xl\:bg-blend-saturation { - background-blend-mode: saturation; + .\32xl\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .xl\:bg-blend-color { - background-blend-mode: color; + .\32xl\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .xl\:bg-blend-luminosity { - background-blend-mode: luminosity; + .\32xl\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .xl\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .\32xl\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .xl\:filter-none { - filter: none; + .\32xl\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .xl\:blur-0 { - --tw-blur: blur(0); + .\32xl\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .xl\:blur-sm { - --tw-blur: blur(4px); + .\32xl\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .xl\:blur { - --tw-blur: blur(8px); + .\32xl\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .xl\:blur-md { - --tw-blur: blur(12px); + .\32xl\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .xl\:blur-lg { - --tw-blur: blur(16px); + .\32xl\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .xl\:blur-xl { - --tw-blur: blur(24px); + .\32xl\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .xl\:blur-2xl { - --tw-blur: blur(40px); + .\32xl\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .xl\:blur-3xl { - --tw-blur: blur(64px); + .\32xl\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .xl\:brightness-0 { - --tw-brightness: brightness(0); + .\32xl\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .xl\:brightness-50 { - --tw-brightness: brightness(.5); + .\32xl\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .xl\:brightness-75 { - --tw-brightness: brightness(.75); + .\32xl\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .xl\:brightness-90 { - --tw-brightness: brightness(.9); + .\32xl\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .xl\:brightness-95 { - --tw-brightness: brightness(.95); + .\32xl\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .xl\:brightness-100 { - --tw-brightness: brightness(1); + .\32xl\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .xl\:brightness-105 { - --tw-brightness: brightness(1.05); + .\32xl\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .xl\:brightness-110 { - --tw-brightness: brightness(1.1); + .\32xl\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .xl\:brightness-125 { - --tw-brightness: brightness(1.25); + .\32xl\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .xl\:brightness-150 { - --tw-brightness: brightness(1.5); + .\32xl\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .xl\:brightness-200 { - --tw-brightness: brightness(2); + .\32xl\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .xl\:contrast-0 { - --tw-contrast: contrast(0); + .\32xl\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .xl\:contrast-50 { - --tw-contrast: contrast(.5); + .\32xl\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .xl\:contrast-75 { - --tw-contrast: contrast(.75); + .\32xl\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .xl\:contrast-100 { - --tw-contrast: contrast(1); + .\32xl\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .xl\:contrast-125 { - --tw-contrast: contrast(1.25); + .\32xl\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .xl\:contrast-150 { - --tw-contrast: contrast(1.5); + .\32xl\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .xl\:contrast-200 { - --tw-contrast: contrast(2); + .\32xl\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .xl\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .\32xl\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .xl\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .\32xl\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .xl\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .\32xl\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .xl\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .\32xl\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .xl\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .\32xl\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .xl\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .\32xl\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .xl\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .\32xl\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .xl\:grayscale-0 { - --tw-grayscale: grayscale(0); + .\32xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .xl\:grayscale { - --tw-grayscale: grayscale(100%); + .\32xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .xl\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .\32xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .xl\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .\32xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .xl\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .\32xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .xl\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .\32xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .xl\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .\32xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .xl\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .\32xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .xl\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .\32xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .xl\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .\32xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .xl\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .\32xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .xl\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .\32xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .xl\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .\32xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .xl\:invert-0 { - --tw-invert: invert(0); + .\32xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .xl\:invert { - --tw-invert: invert(100%); + .\32xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .xl\:saturate-0 { - --tw-saturate: saturate(0); + .\32xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .xl\:saturate-50 { - --tw-saturate: saturate(.5); + .\32xl\:inset-y-0 { + top: 0px; + bottom: 0px; } - .xl\:saturate-100 { - --tw-saturate: saturate(1); + .\32xl\:inset-x-0 { + right: 0px; + left: 0px; } - .xl\:saturate-150 { - --tw-saturate: saturate(1.5); + .\32xl\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .xl\:saturate-200 { - --tw-saturate: saturate(2); + .\32xl\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .xl\:sepia-0 { - --tw-sepia: sepia(0); + .\32xl\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .xl\:sepia { - --tw-sepia: sepia(100%); + .\32xl\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .xl\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .\32xl\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .xl\:backdrop-filter-none { - backdrop-filter: none; + .\32xl\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .xl\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .\32xl\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .xl\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .\32xl\:inset-x-4 { + right: 1rem; + left: 1rem; } - .xl\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .\32xl\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .xl\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .\32xl\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .xl\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .\32xl\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .xl\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .\32xl\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .xl\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .\32xl\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .xl\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .\32xl\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .xl\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .\32xl\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .xl\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .\32xl\:inset-x-8 { + right: 2rem; + left: 2rem; } - .xl\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .\32xl\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .xl\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .\32xl\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .xl\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .\32xl\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .xl\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .\32xl\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .xl\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .\32xl\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .xl\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .\32xl\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .xl\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .\32xl\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .xl\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .\32xl\:inset-x-12 { + right: 3rem; + left: 3rem; } - .xl\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .\32xl\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .xl\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .\32xl\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .xl\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .\32xl\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .xl\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .\32xl\:inset-x-16 { + right: 4rem; + left: 4rem; } - .xl\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .\32xl\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .xl\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .\32xl\:inset-x-20 { + right: 5rem; + left: 5rem; } - .xl\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .\32xl\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .xl\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .\32xl\:inset-x-24 { + right: 6rem; + left: 6rem; } - .xl\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .\32xl\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .xl\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .\32xl\:inset-x-28 { + right: 7rem; + left: 7rem; } - .xl\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .\32xl\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .xl\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .\32xl\:inset-x-32 { + right: 8rem; + left: 8rem; } - .xl\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .\32xl\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .xl\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .\32xl\:inset-x-36 { + right: 9rem; + left: 9rem; } - .xl\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .\32xl\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .xl\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .\32xl\:inset-x-40 { + right: 10rem; + left: 10rem; } - .xl\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .\32xl\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .xl\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .\32xl\:inset-x-44 { + right: 11rem; + left: 11rem; } - .xl\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .\32xl\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .xl\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .\32xl\:inset-x-48 { + right: 12rem; + left: 12rem; } - .xl\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .\32xl\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .xl\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .\32xl\:inset-x-52 { + right: 13rem; + left: 13rem; } - .xl\:example { - font-weight: 700; - color: #ef4444; + .\32xl\:inset-y-56 { + top: 14rem; + bottom: 14rem; } -} -@media (min-width: 1536px) { - .\32xl\:container { - width: 100%; + .\32xl\:inset-x-56 { + right: 14rem; + left: 14rem; } - @media (min-width: 640px) { - .\32xl\:container { - max-width: 640px; - } + .\32xl\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - @media (min-width: 768px) { - .\32xl\:container { - max-width: 768px; - } + .\32xl\:inset-x-60 { + right: 15rem; + left: 15rem; } - @media (min-width: 1024px) { - .\32xl\:container { - max-width: 1024px; - } + .\32xl\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - @media (min-width: 1280px) { - .\32xl\:container { - max-width: 1280px; - } + .\32xl\:inset-x-64 { + right: 16rem; + left: 16rem; } - @media (min-width: 1536px) { - .\32xl\:container { - max-width: 1536px; - } + .\32xl\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .\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\:inset-x-72 { + right: 18rem; + left: 18rem; } - .\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\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .\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\:inset-x-80 { + right: 20rem; + left: 20rem; } - .\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\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .\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\:inset-x-96 { + right: 24rem; + left: 24rem; } - .\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\:inset-y-auto { + top: auto; + bottom: auto; } - .\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\:inset-x-auto { + right: auto; + left: auto; } - .\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\:inset-y-px { + top: 1px; + bottom: 1px; } - .\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\:inset-x-px { + right: 1px; + left: 1px; } - .\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\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .\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\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .\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\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .\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\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .\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\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .\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\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .\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\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .\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\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .\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\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .\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\:-inset-x-0 { + right: 0px; + left: 0px; } - .\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\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .\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\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .\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\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .\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\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .\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\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .\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\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .\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\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .\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\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .\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\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .\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\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } - .\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\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - .\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\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - .\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\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - .\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\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - .\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\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - .\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\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .\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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .\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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .\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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .\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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .\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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .\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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .\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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .\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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .\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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .\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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .\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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .\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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .\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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .\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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .\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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .\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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .\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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .\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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .\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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .\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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .\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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .\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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .\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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .\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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .\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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .\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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .\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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .\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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .\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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .\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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .\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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .\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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .\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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .\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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .\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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .\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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .\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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .\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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .\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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .\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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .\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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .\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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .\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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .\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\:-inset-x-px { + right: -1px; + left: -1px; } - .\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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .\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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .\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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .\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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .\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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .\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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .\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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .\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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .\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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .\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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .\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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .\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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .\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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .\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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .\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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .\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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .\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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .\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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .\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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .\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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .\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\:inset-y-full { + top: 100%; + bottom: 100%; } - .\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\:inset-x-full { + right: 100%; + left: 100%; } - .\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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .\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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .\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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .\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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .\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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .\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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .\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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .\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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .\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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .\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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .\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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .\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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .\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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .\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\:-inset-x-full { + right: -100%; + left: -100%; } - .\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\:top-0 { + top: 0px; } - .\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\:right-0 { + right: 0px; } - .\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\:bottom-0 { + bottom: 0px; } - .\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\:left-0 { + left: 0px; } - .\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\:top-1 { + top: 0.25rem; } - .\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\:right-1 { + right: 0.25rem; } - .\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\:bottom-1 { + bottom: 0.25rem; } - .\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\:left-1 { + left: 0.25rem; } - .\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\:top-2 { + top: 0.5rem; } - .\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\:right-2 { + right: 0.5rem; } - .\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\:bottom-2 { + bottom: 0.5rem; } - .\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\:left-2 { + left: 0.5rem; } - .\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\:top-3 { + top: 0.75rem; } - .\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\:right-3 { + right: 0.75rem; } - .\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\:bottom-3 { + bottom: 0.75rem; } - .\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\:left-3 { + left: 0.75rem; } - .\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\:top-4 { + top: 1rem; } - .\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\:right-4 { + right: 1rem; } - .\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\:bottom-4 { + bottom: 1rem; } - .\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\:left-4 { + left: 1rem; } - .\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\:top-5 { + top: 1.25rem; } - .\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\:right-5 { + right: 1.25rem; } - .\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\:bottom-5 { + bottom: 1.25rem; } - .\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\:left-5 { + left: 1.25rem; } - .\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\:top-6 { + top: 1.5rem; } - .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .\32xl\:right-6 { + right: 1.5rem; } - .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .\32xl\:bottom-6 { + bottom: 1.5rem; } - .\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\:left-6 { + left: 1.5rem; } - .\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\:top-7 { + top: 1.75rem; } - .\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\:right-7 { + right: 1.75rem; } - .\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\:bottom-7 { + bottom: 1.75rem; } - .\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\:left-7 { + left: 1.75rem; } - .\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\:top-8 { + top: 2rem; } - .\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\:right-8 { + right: 2rem; } - .\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\:bottom-8 { + bottom: 2rem; } - .\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\:left-8 { + left: 2rem; } - .\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\:top-9 { + top: 2.25rem; } - .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .\32xl\:right-9 { + right: 2.25rem; } - .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .\32xl\:bottom-9 { + bottom: 2.25rem; } - .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .\32xl\:left-9 { + left: 2.25rem; } - .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .\32xl\:top-10 { + top: 2.5rem; } - .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + .\32xl\:right-10 { + right: 2.5rem; } - .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + .\32xl\:bottom-10 { + bottom: 2.5rem; } - .\32xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + .\32xl\:left-10 { + left: 2.5rem; } - .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + .\32xl\:top-11 { + top: 2.75rem; } - .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + .\32xl\:right-11 { + right: 2.75rem; } - .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + .\32xl\:bottom-11 { + bottom: 2.75rem; } - .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + .\32xl\:left-11 { + left: 2.75rem; } - .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + .\32xl\:top-12 { + top: 3rem; } - .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + .\32xl\:right-12 { + right: 3rem; } - .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + .\32xl\:bottom-12 { + bottom: 3rem; } - .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + .\32xl\:left-12 { + left: 3rem; } - .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + .\32xl\:top-14 { + top: 3.5rem; } - .\32xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); + .\32xl\:right-14 { + right: 3.5rem; } - .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); + .\32xl\:bottom-14 { + bottom: 3.5rem; } - .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); + .\32xl\:left-14 { + left: 3.5rem; } - .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); + .\32xl\:top-16 { + top: 4rem; } - .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); + .\32xl\:right-16 { + right: 4rem; } - .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); + .\32xl\:bottom-16 { + bottom: 4rem; } - .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); + .\32xl\:left-16 { + left: 4rem; } - .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); + .\32xl\:top-20 { + top: 5rem; } - .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); + .\32xl\:right-20 { + right: 5rem; } - .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); + .\32xl\:bottom-20 { + bottom: 5rem; } - .\32xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); + .\32xl\:left-20 { + left: 5rem; } - .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); + .\32xl\:top-24 { + top: 6rem; } - .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); + .\32xl\:right-24 { + right: 6rem; } - .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); + .\32xl\:bottom-24 { + bottom: 6rem; } - .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); + .\32xl\:left-24 { + left: 6rem; } - .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + .\32xl\:top-28 { + top: 7rem; } - .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); + .\32xl\:right-28 { + right: 7rem; } - .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); + .\32xl\:bottom-28 { + bottom: 7rem; } - .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); + .\32xl\:left-28 { + left: 7rem; } - .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); + .\32xl\:top-32 { + top: 8rem; } - .\32xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); + .\32xl\:right-32 { + right: 8rem; } - .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); + .\32xl\:bottom-32 { + bottom: 8rem; } - .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); + .\32xl\:left-32 { + left: 8rem; } - .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); + .\32xl\:top-36 { + top: 9rem; } - .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); + .\32xl\:right-36 { + right: 9rem; } - .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); + .\32xl\:bottom-36 { + bottom: 9rem; } - .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); + .\32xl\:left-36 { + left: 9rem; } - .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); + .\32xl\:top-40 { + top: 10rem; } - .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); + .\32xl\:right-40 { + right: 10rem; } - .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); + .\32xl\:bottom-40 { + bottom: 10rem; } - .\32xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); + .\32xl\:left-40 { + left: 10rem; } - .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); + .\32xl\:top-44 { + top: 11rem; } - .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); + .\32xl\:right-44 { + right: 11rem; } - .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); + .\32xl\:bottom-44 { + bottom: 11rem; } - .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); + .\32xl\:left-44 { + left: 11rem; } - .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + .\32xl\:top-48 { + top: 12rem; } - .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); + .\32xl\:right-48 { + right: 12rem; } - .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); + .\32xl\:bottom-48 { + bottom: 12rem; } - .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); + .\32xl\:left-48 { + left: 12rem; } - .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); + .\32xl\:top-52 { + top: 13rem; } - .\32xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); + .\32xl\:right-52 { + right: 13rem; } - .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); + .\32xl\:bottom-52 { + bottom: 13rem; } - .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); + .\32xl\:left-52 { + left: 13rem; } - .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); + .\32xl\:top-56 { + top: 14rem; } - .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); + .\32xl\:right-56 { + right: 14rem; } - .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); + .\32xl\:bottom-56 { + bottom: 14rem; } - .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); + .\32xl\:left-56 { + left: 14rem; } - .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); + .\32xl\:top-60 { + top: 15rem; } - .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); + .\32xl\:right-60 { + right: 15rem; } - .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); + .\32xl\:bottom-60 { + bottom: 15rem; } - .\32xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); + .\32xl\:left-60 { + left: 15rem; } - .\32xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); + .\32xl\:top-64 { + top: 16rem; } - .\32xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); + .\32xl\:right-64 { + right: 16rem; } - .\32xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); + .\32xl\:bottom-64 { + bottom: 16rem; } - .\32xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); + .\32xl\:left-64 { + left: 16rem; } - .\32xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); + .\32xl\:top-72 { + top: 18rem; } - .\32xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); + .\32xl\:right-72 { + right: 18rem; } - .\32xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); + .\32xl\:bottom-72 { + bottom: 18rem; } - .\32xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); + .\32xl\:left-72 { + left: 18rem; } - .\32xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); + .\32xl\:top-80 { + top: 20rem; } - .\32xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); + .\32xl\:right-80 { + right: 20rem; } - .\32xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); + .\32xl\:bottom-80 { + bottom: 20rem; } - .\32xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); + .\32xl\:left-80 { + left: 20rem; } - .\32xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); + .\32xl\:top-96 { + top: 24rem; } - .\32xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); + .\32xl\:right-96 { + right: 24rem; } - .\32xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); + .\32xl\:bottom-96 { + bottom: 24rem; } - .\32xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); + .\32xl\:left-96 { + left: 24rem; } - .\32xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); + .\32xl\:top-auto { + top: auto; } - .\32xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); + .\32xl\:right-auto { + right: auto; } - .\32xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); + .\32xl\:bottom-auto { + bottom: auto; } - .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .\32xl\:left-auto { + left: auto; } - .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .\32xl\:top-px { + top: 1px; } - .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .\32xl\:right-px { + right: 1px; } - .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .\32xl\:bottom-px { + bottom: 1px; } - .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .\32xl\:left-px { + left: 1px; } - .\32xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; + .\32xl\:top-0\.5 { + top: 0.125rem; } - .\32xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; + .\32xl\:right-0\.5 { + right: 0.125rem; } - .\32xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; + .\32xl\:bottom-0\.5 { + bottom: 0.125rem; } - .\32xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; + .\32xl\:left-0\.5 { + left: 0.125rem; } - .\32xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; + .\32xl\:top-1\.5 { + top: 0.375rem; } - .\32xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; + .\32xl\:right-1\.5 { + right: 0.375rem; } - .\32xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; + .\32xl\:bottom-1\.5 { + bottom: 0.375rem; } - .\32xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; + .\32xl\:left-1\.5 { + left: 0.375rem; } - .\32xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; + .\32xl\:top-2\.5 { + top: 0.625rem; } - .\32xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; + .\32xl\:right-2\.5 { + right: 0.625rem; } - .\32xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; + .\32xl\:bottom-2\.5 { + bottom: 0.625rem; } - .\32xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; + .\32xl\:left-2\.5 { + left: 0.625rem; } - .\32xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; + .\32xl\:top-3\.5 { + top: 0.875rem; } - .\32xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; + .\32xl\:right-3\.5 { + right: 0.875rem; } - .\32xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; + .\32xl\:bottom-3\.5 { + bottom: 0.875rem; } - .\32xl\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .\32xl\:left-3\.5 { + left: 0.875rem; } - .\32xl\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .\32xl\:-top-0 { + top: 0px; } - .\32xl\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .\32xl\:-right-0 { + right: 0px; } - .\32xl\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .\32xl\:-bottom-0 { + bottom: 0px; } - .\32xl\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .\32xl\:-left-0 { + left: 0px; } - .\32xl\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .\32xl\:-top-1 { + top: -0.25rem; } - .\32xl\:appearance-none { - appearance: none; + .\32xl\:-right-1 { + right: -0.25rem; } - .\32xl\:bg-fixed { - background-attachment: fixed; + .\32xl\:-bottom-1 { + bottom: -0.25rem; } - .\32xl\:bg-local { - background-attachment: local; + .\32xl\:-left-1 { + left: -0.25rem; } - .\32xl\:bg-scroll { - background-attachment: scroll; + .\32xl\:-top-2 { + top: -0.5rem; } - .\32xl\:bg-clip-border { - background-clip: border-box; + .\32xl\:-right-2 { + right: -0.5rem; } - .\32xl\:bg-clip-padding { - background-clip: padding-box; + .\32xl\:-bottom-2 { + bottom: -0.5rem; } - .\32xl\:bg-clip-content { - background-clip: content-box; + .\32xl\:-left-2 { + left: -0.5rem; } - .\32xl\:bg-clip-text { - background-clip: text; + .\32xl\:-top-3 { + top: -0.75rem; } - .\32xl\:bg-transparent { - background-color: transparent; + .\32xl\:-right-3 { + right: -0.75rem; } - .\32xl\:bg-current { - background-color: currentColor; + .\32xl\:-bottom-3 { + bottom: -0.75rem; } - .\32xl\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .\32xl\:-left-3 { + left: -0.75rem; } - .\32xl\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .\32xl\:-top-4 { + top: -1rem; } - .\32xl\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .\32xl\:-right-4 { + right: -1rem; } - .\32xl\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .\32xl\:-bottom-4 { + bottom: -1rem; } - .\32xl\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .\32xl\:-left-4 { + left: -1rem; } - .\32xl\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .\32xl\:-top-5 { + top: -1.25rem; } - .\32xl\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .\32xl\:-right-5 { + right: -1.25rem; } - .\32xl\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .\32xl\:-bottom-5 { + bottom: -1.25rem; } - .\32xl\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .\32xl\:-left-5 { + left: -1.25rem; } - .\32xl\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .\32xl\:-top-6 { + top: -1.5rem; } - .\32xl\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .\32xl\:-right-6 { + right: -1.5rem; } - .\32xl\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .\32xl\:-bottom-6 { + bottom: -1.5rem; } - .\32xl\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .\32xl\:-left-6 { + left: -1.5rem; } - .\32xl\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .\32xl\:-top-7 { + top: -1.75rem; } - .\32xl\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .\32xl\:-right-7 { + right: -1.75rem; } - .\32xl\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .\32xl\:-bottom-7 { + bottom: -1.75rem; } - .\32xl\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .\32xl\:-left-7 { + left: -1.75rem; } - .\32xl\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .\32xl\:-top-8 { + top: -2rem; } - .\32xl\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .\32xl\:-right-8 { + right: -2rem; } - .\32xl\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .\32xl\:-bottom-8 { + bottom: -2rem; } - .\32xl\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .\32xl\:-left-8 { + left: -2rem; } - .\32xl\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .\32xl\:-top-9 { + top: -2.25rem; } - .\32xl\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .\32xl\:-right-9 { + right: -2.25rem; } - .\32xl\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .\32xl\:-bottom-9 { + bottom: -2.25rem; } - .\32xl\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .\32xl\:-left-9 { + left: -2.25rem; } - .\32xl\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .\32xl\:-top-10 { + top: -2.5rem; } - .\32xl\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .\32xl\:-right-10 { + right: -2.5rem; } - .\32xl\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .\32xl\:-bottom-10 { + bottom: -2.5rem; } - .\32xl\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .\32xl\:-left-10 { + left: -2.5rem; } - .\32xl\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .\32xl\:-top-11 { + top: -2.75rem; } - .\32xl\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .\32xl\:-right-11 { + right: -2.75rem; } - .\32xl\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .\32xl\:-bottom-11 { + bottom: -2.75rem; } - .\32xl\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .\32xl\:-left-11 { + left: -2.75rem; } - .\32xl\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .\32xl\:-top-12 { + top: -3rem; } - .\32xl\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .\32xl\:-right-12 { + right: -3rem; } - .\32xl\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .\32xl\:-bottom-12 { + bottom: -3rem; } - .\32xl\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .\32xl\:-left-12 { + left: -3rem; } - .\32xl\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .\32xl\:-top-14 { + top: -3.5rem; } - .\32xl\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .\32xl\:-right-14 { + right: -3.5rem; } - .\32xl\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .\32xl\:-bottom-14 { + bottom: -3.5rem; } - .\32xl\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .\32xl\:-left-14 { + left: -3.5rem; } - .\32xl\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .\32xl\:-top-16 { + top: -4rem; } - .\32xl\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .\32xl\:-right-16 { + right: -4rem; } - .\32xl\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .\32xl\:-bottom-16 { + bottom: -4rem; } - .\32xl\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .\32xl\:-left-16 { + left: -4rem; } - .\32xl\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .\32xl\:-top-20 { + top: -5rem; } - .\32xl\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .\32xl\:-right-20 { + right: -5rem; } - .\32xl\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .\32xl\:-bottom-20 { + bottom: -5rem; } - .\32xl\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .\32xl\:-left-20 { + left: -5rem; } - .\32xl\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .\32xl\:-top-24 { + top: -6rem; } - .\32xl\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .\32xl\:-right-24 { + right: -6rem; } - .\32xl\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .\32xl\:-bottom-24 { + bottom: -6rem; } - .\32xl\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .\32xl\:-left-24 { + left: -6rem; } - .\32xl\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .\32xl\:-top-28 { + top: -7rem; } - .\32xl\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .\32xl\:-right-28 { + right: -7rem; } - .\32xl\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .\32xl\:-bottom-28 { + bottom: -7rem; } - .\32xl\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .\32xl\:-left-28 { + left: -7rem; } - .\32xl\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .\32xl\:-top-32 { + top: -8rem; } - .\32xl\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .\32xl\:-right-32 { + right: -8rem; } - .\32xl\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .\32xl\:-bottom-32 { + bottom: -8rem; } - .\32xl\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .\32xl\:-left-32 { + left: -8rem; } - .\32xl\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .\32xl\:-top-36 { + top: -9rem; } - .\32xl\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .\32xl\:-right-36 { + right: -9rem; } - .\32xl\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .\32xl\:-bottom-36 { + bottom: -9rem; } - .\32xl\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .\32xl\:-left-36 { + left: -9rem; } - .\32xl\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .\32xl\:-top-40 { + top: -10rem; } - .\32xl\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .\32xl\:-right-40 { + right: -10rem; } - .\32xl\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .\32xl\:-bottom-40 { + bottom: -10rem; } - .\32xl\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .\32xl\:-left-40 { + left: -10rem; } - .\32xl\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .\32xl\:-top-44 { + top: -11rem; } - .\32xl\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .\32xl\:-right-44 { + right: -11rem; } - .\32xl\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .\32xl\:-bottom-44 { + bottom: -11rem; } - .\32xl\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .\32xl\:-left-44 { + left: -11rem; } - .\32xl\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .\32xl\:-top-48 { + top: -12rem; } - .\32xl\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .\32xl\:-right-48 { + right: -12rem; } - .\32xl\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .\32xl\:-bottom-48 { + bottom: -12rem; } - .\32xl\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .\32xl\:-left-48 { + left: -12rem; } - .\32xl\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .\32xl\:-top-52 { + top: -13rem; } - .\32xl\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .\32xl\:-right-52 { + right: -13rem; } - .\32xl\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .\32xl\:-bottom-52 { + bottom: -13rem; + } + + .\32xl\:-left-52 { + left: -13rem; } - .\32xl\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .\32xl\:-top-56 { + top: -14rem; } - .\32xl\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .\32xl\:-right-56 { + right: -14rem; } - .group:hover .\32xl\:group-hover\:bg-transparent { - background-color: transparent; + .\32xl\:-bottom-56 { + bottom: -14rem; } - .group:hover .\32xl\:group-hover\:bg-current { - background-color: currentColor; + .\32xl\:-left-56 { + left: -14rem; } - .group:hover .\32xl\:group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .\32xl\:-top-60 { + top: -15rem; } - .group:hover .\32xl\:group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .\32xl\:-right-60 { + right: -15rem; } - .group:hover .\32xl\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .\32xl\:-bottom-60 { + bottom: -15rem; } - .group:hover .\32xl\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .\32xl\:-left-60 { + left: -15rem; } - .group:hover .\32xl\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .\32xl\:-top-64 { + top: -16rem; } - .group:hover .\32xl\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .\32xl\:-right-64 { + right: -16rem; } - .group:hover .\32xl\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .\32xl\:-bottom-64 { + bottom: -16rem; } - .group:hover .\32xl\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .\32xl\:-left-64 { + left: -16rem; } - .group:hover .\32xl\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .\32xl\:-top-72 { + top: -18rem; } - .group:hover .\32xl\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .\32xl\:-right-72 { + right: -18rem; } - .group:hover .\32xl\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .\32xl\:-bottom-72 { + bottom: -18rem; } - .group:hover .\32xl\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .\32xl\:-left-72 { + left: -18rem; } - .group:hover .\32xl\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .\32xl\:-top-80 { + top: -20rem; } - .group:hover .\32xl\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .\32xl\:-right-80 { + right: -20rem; } - .group:hover .\32xl\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .\32xl\:-bottom-80 { + bottom: -20rem; } - .group:hover .\32xl\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .\32xl\:-left-80 { + left: -20rem; } - .group:hover .\32xl\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .\32xl\:-top-96 { + top: -24rem; } - .group:hover .\32xl\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .\32xl\:-right-96 { + right: -24rem; } - .group:hover .\32xl\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .\32xl\:-bottom-96 { + bottom: -24rem; } - .group:hover .\32xl\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .\32xl\:-left-96 { + left: -24rem; } - .group:hover .\32xl\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .\32xl\:-top-px { + top: -1px; } - .group:hover .\32xl\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .\32xl\:-right-px { + right: -1px; } - .group:hover .\32xl\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .\32xl\:-bottom-px { + bottom: -1px; } - .group:hover .\32xl\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .\32xl\:-left-px { + left: -1px; } - .group:hover .\32xl\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .\32xl\:-top-0\.5 { + top: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .\32xl\:-right-0\.5 { + right: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .\32xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .\32xl\:-left-0\.5 { + left: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .\32xl\:-top-1\.5 { + top: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .\32xl\:-right-1\.5 { + right: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .\32xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .\32xl\:-left-1\.5 { + left: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .\32xl\:-top-2\.5 { + top: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .\32xl\:-right-2\.5 { + right: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .\32xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .\32xl\:-left-2\.5 { + left: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .\32xl\:-top-3\.5 { + top: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .\32xl\:-right-3\.5 { + right: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .\32xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .\32xl\:-left-3\.5 { + left: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .\32xl\:top-1\/2 { + top: 50%; } - .group:hover .\32xl\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .\32xl\:right-1\/2 { + right: 50%; } - .group:hover .\32xl\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .\32xl\:bottom-1\/2 { + bottom: 50%; } - .group:hover .\32xl\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .\32xl\:left-1\/2 { + left: 50%; } - .group:hover .\32xl\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .\32xl\:top-1\/3 { + top: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .\32xl\:right-1\/3 { + right: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .\32xl\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .\32xl\:left-1\/3 { + left: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .\32xl\:top-2\/3 { + top: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .\32xl\:right-2\/3 { + right: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .\32xl\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .\32xl\:left-2\/3 { + left: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .\32xl\:top-1\/4 { + top: 25%; } - .group:hover .\32xl\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .\32xl\:right-1\/4 { + right: 25%; } - .group:hover .\32xl\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .\32xl\:bottom-1\/4 { + bottom: 25%; } - .group:hover .\32xl\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .\32xl\:left-1\/4 { + left: 25%; } - .group:hover .\32xl\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .\32xl\:top-2\/4 { + top: 50%; } - .group:hover .\32xl\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .\32xl\:right-2\/4 { + right: 50%; } - .group:hover .\32xl\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .\32xl\:bottom-2\/4 { + bottom: 50%; } - .group:hover .\32xl\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .\32xl\:left-2\/4 { + left: 50%; } - .group:hover .\32xl\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .\32xl\:top-3\/4 { + top: 75%; } - .group:hover .\32xl\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .\32xl\:right-3\/4 { + right: 75%; } - .group:hover .\32xl\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .\32xl\:bottom-3\/4 { + bottom: 75%; } - .group:hover .\32xl\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .\32xl\:left-3\/4 { + left: 75%; } - .group:hover .\32xl\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .\32xl\:top-full { + top: 100%; } - .group:hover .\32xl\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .\32xl\:right-full { + right: 100%; } - .group:hover .\32xl\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .\32xl\:bottom-full { + bottom: 100%; } - .group:hover .\32xl\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .\32xl\:left-full { + left: 100%; } - .group:hover .\32xl\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .\32xl\:-top-1\/2 { + top: -50%; } - .group:hover .\32xl\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .\32xl\:-right-1\/2 { + right: -50%; } - .group:hover .\32xl\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .\32xl\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .\32xl\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .\32xl\:-left-1\/2 { + left: -50%; } - .group:hover .\32xl\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .\32xl\:-top-1\/3 { + top: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .\32xl\:-right-1\/3 { + right: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .\32xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .\32xl\:-left-1\/3 { + left: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .\32xl\:-top-2\/3 { + top: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .\32xl\:-right-2\/3 { + right: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .\32xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .\32xl\:-left-2\/3 { + left: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .\32xl\:-top-1\/4 { + top: -25%; } - .group:hover .\32xl\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .\32xl\:-right-1\/4 { + right: -25%; } - .\32xl\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .\32xl\:-bottom-1\/4 { + bottom: -25%; } - .\32xl\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .\32xl\:-left-1\/4 { + left: -25%; } - .\32xl\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .\32xl\:-top-2\/4 { + top: -50%; } - .\32xl\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .\32xl\:-right-2\/4 { + right: -50%; } - .\32xl\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .\32xl\:-bottom-2\/4 { + bottom: -50%; } - .\32xl\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .\32xl\:-left-2\/4 { + left: -50%; } - .\32xl\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .\32xl\:-top-3\/4 { + top: -75%; } - .\32xl\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .\32xl\:-right-3\/4 { + right: -75%; } - .\32xl\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .\32xl\:-bottom-3\/4 { + bottom: -75%; } - .\32xl\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .\32xl\:-left-3\/4 { + left: -75%; } - .\32xl\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .\32xl\:-top-full { + top: -100%; } - .\32xl\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .\32xl\:-right-full { + right: -100%; } - .\32xl\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .\32xl\:-bottom-full { + bottom: -100%; } - .\32xl\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .\32xl\:-left-full { + left: -100%; } - .\32xl\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .\32xl\:isolate { + isolation: isolate; } - .\32xl\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .\32xl\:isolation-auto { + isolation: auto; } - .\32xl\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .\32xl\:z-0 { + z-index: 0; } - .\32xl\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .\32xl\:z-10 { + z-index: 10; } - .\32xl\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .\32xl\:z-20 { + z-index: 20; } - .\32xl\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .\32xl\:z-30 { + z-index: 30; } - .\32xl\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .\32xl\:z-40 { + z-index: 40; } - .\32xl\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .\32xl\:z-50 { + z-index: 50; } - .\32xl\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .\32xl\:z-auto { + z-index: auto; } - .\32xl\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-0:focus-within { + z-index: 0; } - .\32xl\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-10:focus-within { + z-index: 10; } - .\32xl\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-20:focus-within { + z-index: 20; } - .\32xl\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-30:focus-within { + z-index: 30; } - .\32xl\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-40:focus-within { + z-index: 40; } - .\32xl\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-50:focus-within { + z-index: 50; } - .\32xl\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-auto:focus-within { + z-index: auto; } - .\32xl\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .\32xl\:focus\:z-0:focus { + z-index: 0; } - .\32xl\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .\32xl\:focus\:z-10:focus { + z-index: 10; } - .\32xl\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .\32xl\:focus\:z-20:focus { + z-index: 20; } - .\32xl\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .\32xl\:focus\:z-30:focus { + z-index: 30; } - .\32xl\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .\32xl\:focus\:z-40:focus { + z-index: 40; } - .\32xl\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .\32xl\:focus\:z-50:focus { + z-index: 50; } - .\32xl\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .\32xl\:focus\:z-auto:focus { + z-index: auto; } - .\32xl\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .\32xl\:order-1 { + order: 1; } - .\32xl\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .\32xl\:order-2 { + order: 2; } - .\32xl\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .\32xl\:order-3 { + order: 3; } - .\32xl\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .\32xl\:order-4 { + order: 4; } - .\32xl\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .\32xl\:order-5 { + order: 5; } - .\32xl\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .\32xl\:order-6 { + order: 6; } - .\32xl\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .\32xl\:order-7 { + order: 7; } - .\32xl\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .\32xl\:order-8 { + order: 8; } - .\32xl\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .\32xl\:order-9 { + order: 9; } - .\32xl\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .\32xl\:order-10 { + order: 10; } - .\32xl\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .\32xl\:order-11 { + order: 11; } - .\32xl\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .\32xl\:order-12 { + order: 12; } - .\32xl\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .\32xl\:order-first { + order: -9999; } - .\32xl\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .\32xl\:order-last { + order: 9999; } - .\32xl\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .\32xl\:order-none { + order: 0; } - .\32xl\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .\32xl\:col-auto { + grid-column: auto; } - .\32xl\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .\32xl\:col-span-1 { + grid-column: span 1 / span 1; } - .\32xl\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .\32xl\:col-span-2 { + grid-column: span 2 / span 2; } - .\32xl\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .\32xl\:col-span-3 { + grid-column: span 3 / span 3; } - .\32xl\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .\32xl\:col-span-4 { + grid-column: span 4 / span 4; } - .\32xl\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .\32xl\:col-span-5 { + grid-column: span 5 / span 5; } - .\32xl\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .\32xl\:col-span-6 { + grid-column: span 6 / span 6; } - .\32xl\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .\32xl\:col-span-7 { + grid-column: span 7 / span 7; } - .\32xl\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .\32xl\:col-span-8 { + grid-column: span 8 / span 8; } - .\32xl\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .\32xl\:col-span-9 { + grid-column: span 9 / span 9; } - .\32xl\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .\32xl\:col-span-10 { + grid-column: span 10 / span 10; } - .\32xl\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .\32xl\:col-span-11 { + grid-column: span 11 / span 11; } - .\32xl\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .\32xl\:col-span-12 { + grid-column: span 12 / span 12; } - .\32xl\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .\32xl\:col-span-full { + grid-column: 1 / -1; } - .\32xl\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .\32xl\:col-start-1 { + grid-column-start: 1; } - .\32xl\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .\32xl\:col-start-2 { + grid-column-start: 2; } - .\32xl\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .\32xl\:col-start-3 { + grid-column-start: 3; } - .\32xl\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .\32xl\:col-start-4 { + grid-column-start: 4; } - .\32xl\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .\32xl\:col-start-5 { + grid-column-start: 5; } - .\32xl\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .\32xl\:col-start-6 { + grid-column-start: 6; } - .\32xl\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .\32xl\:col-start-7 { + grid-column-start: 7; } - .\32xl\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .\32xl\:col-start-8 { + grid-column-start: 8; } - .\32xl\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .\32xl\:col-start-9 { + grid-column-start: 9; } - .\32xl\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .\32xl\:col-start-10 { + grid-column-start: 10; } - .\32xl\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .\32xl\:col-start-11 { + grid-column-start: 11; } - .\32xl\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .\32xl\:col-start-12 { + grid-column-start: 12; } - .\32xl\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .\32xl\:col-start-13 { + grid-column-start: 13; } - .\32xl\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .\32xl\:col-start-auto { + grid-column-start: auto; } - .\32xl\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .\32xl\:col-end-1 { + grid-column-end: 1; } - .\32xl\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .\32xl\:col-end-2 { + grid-column-end: 2; } - .\32xl\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .\32xl\:col-end-3 { + grid-column-end: 3; } - .\32xl\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .\32xl\:col-end-4 { + grid-column-end: 4; } - .\32xl\:hover\:bg-transparent:hover { - background-color: transparent; + .\32xl\:col-end-5 { + grid-column-end: 5; } - .\32xl\:hover\:bg-current:hover { - background-color: currentColor; + .\32xl\:col-end-6 { + grid-column-end: 6; } - .\32xl\:hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .\32xl\:col-end-7 { + grid-column-end: 7; } - .\32xl\:hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .\32xl\:col-end-8 { + grid-column-end: 8; } - .\32xl\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .\32xl\:col-end-9 { + grid-column-end: 9; } - .\32xl\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .\32xl\:col-end-10 { + grid-column-end: 10; } - .\32xl\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .\32xl\:col-end-11 { + grid-column-end: 11; } - .\32xl\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .\32xl\:col-end-12 { + grid-column-end: 12; } - .\32xl\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .\32xl\:col-end-13 { + grid-column-end: 13; } - .\32xl\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .\32xl\:col-end-auto { + grid-column-end: auto; } - .\32xl\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .\32xl\:row-auto { + grid-row: auto; } - .\32xl\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .\32xl\:row-span-1 { + grid-row: span 1 / span 1; } - .\32xl\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .\32xl\:row-span-2 { + grid-row: span 2 / span 2; } - .\32xl\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .\32xl\:row-span-3 { + grid-row: span 3 / span 3; } - .\32xl\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .\32xl\:row-span-4 { + grid-row: span 4 / span 4; } - .\32xl\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .\32xl\:row-span-5 { + grid-row: span 5 / span 5; } - .\32xl\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .\32xl\:row-span-6 { + grid-row: span 6 / span 6; } - .\32xl\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .\32xl\:row-span-full { + grid-row: 1 / -1; } - .\32xl\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .\32xl\:row-start-1 { + grid-row-start: 1; } - .\32xl\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .\32xl\:row-start-2 { + grid-row-start: 2; } - .\32xl\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .\32xl\:row-start-3 { + grid-row-start: 3; } - .\32xl\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .\32xl\:row-start-4 { + grid-row-start: 4; } - .\32xl\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .\32xl\:row-start-5 { + grid-row-start: 5; } - .\32xl\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .\32xl\:row-start-6 { + grid-row-start: 6; } - .\32xl\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .\32xl\:row-start-7 { + grid-row-start: 7; } - .\32xl\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .\32xl\:row-start-auto { + grid-row-start: auto; } - .\32xl\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .\32xl\:row-end-1 { + grid-row-end: 1; } - .\32xl\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .\32xl\:row-end-2 { + grid-row-end: 2; } - .\32xl\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .\32xl\:row-end-3 { + grid-row-end: 3; } - .\32xl\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .\32xl\:row-end-4 { + grid-row-end: 4; } - .\32xl\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .\32xl\:row-end-5 { + grid-row-end: 5; } - .\32xl\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .\32xl\:row-end-6 { + grid-row-end: 6; } - .\32xl\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .\32xl\:row-end-7 { + grid-row-end: 7; } - .\32xl\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .\32xl\:row-end-auto { + grid-row-end: auto; } - .\32xl\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .\32xl\:float-right { + float: right; } - .\32xl\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .\32xl\:float-left { + float: left; } - .\32xl\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .\32xl\:float-none { + float: none; } - .\32xl\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .\32xl\:clear-left { + clear: left; } - .\32xl\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .\32xl\:clear-right { + clear: right; } - .\32xl\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .\32xl\:clear-both { + clear: both; } - .\32xl\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .\32xl\:clear-none { + clear: none; } - .\32xl\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .\32xl\:m-0 { + margin: 0px; } - .\32xl\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .\32xl\:m-1 { + margin: 0.25rem; } - .\32xl\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .\32xl\:m-2 { + margin: 0.5rem; } - .\32xl\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .\32xl\:m-3 { + margin: 0.75rem; } - .\32xl\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .\32xl\:m-4 { + margin: 1rem; } - .\32xl\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .\32xl\:m-5 { + margin: 1.25rem; } - .\32xl\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .\32xl\:m-6 { + margin: 1.5rem; } - .\32xl\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .\32xl\:m-7 { + margin: 1.75rem; } - .\32xl\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .\32xl\:m-8 { + margin: 2rem; } - .\32xl\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .\32xl\:m-9 { + margin: 2.25rem; } - .\32xl\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .\32xl\:m-10 { + margin: 2.5rem; } - .\32xl\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .\32xl\:m-11 { + margin: 2.75rem; } - .\32xl\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .\32xl\:m-12 { + margin: 3rem; } - .\32xl\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .\32xl\:m-14 { + margin: 3.5rem; } - .\32xl\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .\32xl\:m-16 { + margin: 4rem; } - .\32xl\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .\32xl\:m-20 { + margin: 5rem; } - .\32xl\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .\32xl\:m-24 { + margin: 6rem; } - .\32xl\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .\32xl\:m-28 { + margin: 7rem; } - .\32xl\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .\32xl\:m-32 { + margin: 8rem; } - .\32xl\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .\32xl\:m-36 { + margin: 9rem; } - .\32xl\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .\32xl\:m-40 { + margin: 10rem; } - .\32xl\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .\32xl\:m-44 { + margin: 11rem; } - .\32xl\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .\32xl\:m-48 { + margin: 12rem; } - .\32xl\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .\32xl\:m-52 { + margin: 13rem; } - .\32xl\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .\32xl\:m-56 { + margin: 14rem; } - .\32xl\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .\32xl\:m-60 { + margin: 15rem; } - .\32xl\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .\32xl\:m-64 { + margin: 16rem; } - .\32xl\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .\32xl\:m-72 { + margin: 18rem; } - .\32xl\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .\32xl\:m-80 { + margin: 20rem; } - .\32xl\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .\32xl\:m-96 { + margin: 24rem; } - .\32xl\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .\32xl\:m-auto { + margin: auto; } - .\32xl\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .\32xl\:m-px { + margin: 1px; } - .\32xl\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .\32xl\:m-0\.5 { + margin: 0.125rem; } - .\32xl\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .\32xl\:m-1\.5 { + margin: 0.375rem; } - .\32xl\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .\32xl\:m-2\.5 { + margin: 0.625rem; } - .\32xl\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .\32xl\:m-3\.5 { + margin: 0.875rem; } - .\32xl\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .\32xl\:-m-0 { + margin: 0px; } - .\32xl\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .\32xl\:-m-1 { + margin: -0.25rem; } - .\32xl\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .\32xl\:-m-2 { + margin: -0.5rem; } - .\32xl\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .\32xl\:-m-3 { + margin: -0.75rem; } - .\32xl\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .\32xl\:-m-4 { + margin: -1rem; } - .\32xl\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .\32xl\:-m-5 { + margin: -1.25rem; } - .\32xl\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .\32xl\:-m-6 { + margin: -1.5rem; } - .\32xl\:focus\:bg-transparent:focus { - background-color: transparent; + .\32xl\:-m-7 { + margin: -1.75rem; } - .\32xl\:focus\:bg-current:focus { - background-color: currentColor; + .\32xl\:-m-8 { + margin: -2rem; } - .\32xl\:focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .\32xl\:-m-9 { + margin: -2.25rem; } - .\32xl\:focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .\32xl\:-m-10 { + margin: -2.5rem; } - .\32xl\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .\32xl\:-m-11 { + margin: -2.75rem; } - .\32xl\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .\32xl\:-m-12 { + margin: -3rem; } - .\32xl\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .\32xl\:-m-14 { + margin: -3.5rem; } - .\32xl\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .\32xl\:-m-16 { + margin: -4rem; } - .\32xl\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .\32xl\:-m-20 { + margin: -5rem; } - .\32xl\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .\32xl\:-m-24 { + margin: -6rem; } - .\32xl\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .\32xl\:-m-28 { + margin: -7rem; } - .\32xl\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .\32xl\:-m-32 { + margin: -8rem; } - .\32xl\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .\32xl\:-m-36 { + margin: -9rem; } - .\32xl\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .\32xl\:-m-40 { + margin: -10rem; } - .\32xl\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .\32xl\:-m-44 { + margin: -11rem; } - .\32xl\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .\32xl\:-m-48 { + margin: -12rem; } - .\32xl\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .\32xl\:-m-52 { + margin: -13rem; } - .\32xl\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .\32xl\:-m-56 { + margin: -14rem; } - .\32xl\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .\32xl\:-m-60 { + margin: -15rem; } - .\32xl\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .\32xl\:-m-64 { + margin: -16rem; } - .\32xl\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .\32xl\:-m-72 { + margin: -18rem; } - .\32xl\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .\32xl\:-m-80 { + margin: -20rem; } - .\32xl\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .\32xl\:-m-96 { + margin: -24rem; } - .\32xl\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .\32xl\:-m-px { + margin: -1px; } - .\32xl\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .\32xl\:-m-0\.5 { + margin: -0.125rem; } - .\32xl\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .\32xl\:-m-1\.5 { + margin: -0.375rem; } - .\32xl\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .\32xl\:-m-2\.5 { + margin: -0.625rem; } - .\32xl\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .\32xl\:-m-3\.5 { + margin: -0.875rem; } - .\32xl\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .\32xl\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .\32xl\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .\32xl\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .\32xl\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .\32xl\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .\32xl\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .\32xl\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .\32xl\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .\32xl\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .\32xl\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .\32xl\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .\32xl\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .\32xl\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .\32xl\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .\32xl\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .\32xl\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .\32xl\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .\32xl\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .\32xl\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .\32xl\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .\32xl\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .\32xl\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .\32xl\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .\32xl\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .\32xl\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .\32xl\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .\32xl\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .\32xl\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .\32xl\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .\32xl\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .\32xl\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .\32xl\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .\32xl\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .\32xl\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .\32xl\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .\32xl\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .\32xl\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .\32xl\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .\32xl\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .\32xl\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .\32xl\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .\32xl\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .\32xl\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .\32xl\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .\32xl\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .\32xl\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .\32xl\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .\32xl\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .\32xl\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .\32xl\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .\32xl\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .\32xl\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .\32xl\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .\32xl\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .\32xl\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .\32xl\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .\32xl\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .\32xl\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .\32xl\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .\32xl\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .\32xl\:mx-auto { + margin-left: auto; + margin-right: auto; } - .\32xl\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .\32xl\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .\32xl\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .\32xl\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .\32xl\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .\32xl\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .\32xl\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .\32xl\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .\32xl\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .\32xl\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .\32xl\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .\32xl\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .\32xl\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .\32xl\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .\32xl\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .\32xl\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .\32xl\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .\32xl\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .\32xl\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .\32xl\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .\32xl\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .\32xl\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .\32xl\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .\32xl\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .\32xl\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .\32xl\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .\32xl\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .\32xl\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .\32xl\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .\32xl\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .\32xl\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .\32xl\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .\32xl\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .\32xl\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .\32xl\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .\32xl\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .\32xl\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .\32xl\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .\32xl\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .\32xl\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .\32xl\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .\32xl\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .\32xl\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .\32xl\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .\32xl\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .\32xl\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .\32xl\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .\32xl\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .\32xl\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .\32xl\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .\32xl\:bg-none { - background-image: none; + .\32xl\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .\32xl\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .\32xl\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .\32xl\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .\32xl\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .\32xl\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .\32xl\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .\32xl\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .\32xl\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .\32xl\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .\32xl\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .\32xl\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .\32xl\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .\32xl\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .\32xl\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .\32xl\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .\32xl\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .\32xl\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .\32xl\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .\32xl\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .\32xl\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .\32xl\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .\32xl\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .\32xl\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .\32xl\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .\32xl\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .\32xl\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .\32xl\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .\32xl\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .\32xl\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .\32xl\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .\32xl\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .\32xl\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .\32xl\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .\32xl\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .\32xl\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .\32xl\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .\32xl\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .\32xl\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .\32xl\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .\32xl\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .\32xl\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .\32xl\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .\32xl\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .\32xl\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .\32xl\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .\32xl\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .\32xl\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .\32xl\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .\32xl\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .\32xl\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .\32xl\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .\32xl\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .\32xl\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .\32xl\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .\32xl\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .\32xl\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .\32xl\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .\32xl\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .\32xl\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .\32xl\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .\32xl\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .\32xl\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .\32xl\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .\32xl\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .\32xl\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .\32xl\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .\32xl\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .\32xl\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .\32xl\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .\32xl\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .\32xl\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .\32xl\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .\32xl\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .\32xl\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .\32xl\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .\32xl\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .\32xl\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .\32xl\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .\32xl\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .\32xl\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .\32xl\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .\32xl\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .\32xl\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .\32xl\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .\32xl\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .\32xl\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .\32xl\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .\32xl\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .\32xl\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .\32xl\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .\32xl\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .\32xl\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .\32xl\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .\32xl\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:mt-0 { + margin-top: 0px; } - .\32xl\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:mt-1 { + margin-top: 0.25rem; } - .\32xl\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:mt-2 { + margin-top: 0.5rem; } - .\32xl\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:mt-3 { + margin-top: 0.75rem; } - .\32xl\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:mt-4 { + margin-top: 1rem; } - .\32xl\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:mt-5 { + margin-top: 1.25rem; } - .\32xl\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:mt-6 { + margin-top: 1.5rem; } - .\32xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:mt-7 { + margin-top: 1.75rem; } - .\32xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:mt-8 { + margin-top: 2rem; } - .\32xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:mt-9 { + margin-top: 2.25rem; } - .\32xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:mt-10 { + margin-top: 2.5rem; } - .\32xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:mt-11 { + margin-top: 2.75rem; } - .\32xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:mt-12 { + margin-top: 3rem; } - .\32xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:mt-14 { + margin-top: 3.5rem; } - .\32xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:mt-16 { + margin-top: 4rem; } - .\32xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:mt-20 { + margin-top: 5rem; } - .\32xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:mt-24 { + margin-top: 6rem; } - .\32xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:mt-28 { + margin-top: 7rem; } - .\32xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:mt-32 { + margin-top: 8rem; } - .\32xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:mt-36 { + margin-top: 9rem; } - .\32xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:mt-40 { + margin-top: 10rem; } - .\32xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:mt-44 { + margin-top: 11rem; } - .\32xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:mt-48 { + margin-top: 12rem; } - .\32xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:mt-52 { + margin-top: 13rem; } - .\32xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:mt-56 { + margin-top: 14rem; } - .\32xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:mt-60 { + margin-top: 15rem; } - .\32xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:mt-64 { + margin-top: 16rem; } - .\32xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:mt-72 { + margin-top: 18rem; } - .\32xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:mt-80 { + margin-top: 20rem; } - .\32xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:mt-96 { + margin-top: 24rem; } - .\32xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:mt-auto { + margin-top: auto; } - .\32xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:mt-px { + margin-top: 1px; } - .\32xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:mt-0\.5 { + margin-top: 0.125rem; } - .\32xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:mt-1\.5 { + margin-top: 0.375rem; } - .\32xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:mt-2\.5 { + margin-top: 0.625rem; } - .\32xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:mt-3\.5 { + margin-top: 0.875rem; } - .\32xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:-mt-0 { + margin-top: 0px; } - .\32xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:-mt-1 { + margin-top: -0.25rem; } - .\32xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:-mt-2 { + margin-top: -0.5rem; } - .\32xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:-mt-3 { + margin-top: -0.75rem; } - .\32xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:-mt-4 { + margin-top: -1rem; } - .\32xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:-mt-5 { + margin-top: -1.25rem; } - .\32xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:-mt-6 { + margin-top: -1.5rem; } - .\32xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:-mt-7 { + margin-top: -1.75rem; } - .\32xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:-mt-8 { + margin-top: -2rem; } - .\32xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:-mt-9 { + margin-top: -2.25rem; } - .\32xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:-mt-10 { + margin-top: -2.5rem; } - .\32xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:-mt-11 { + margin-top: -2.75rem; } - .\32xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:-mt-12 { + margin-top: -3rem; } - .\32xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:-mt-14 { + margin-top: -3.5rem; } - .\32xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:-mt-16 { + margin-top: -4rem; } - .\32xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:-mt-20 { + margin-top: -5rem; } - .\32xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:-mt-24 { + margin-top: -6rem; } - .\32xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:-mt-28 { + margin-top: -7rem; } - .\32xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:-mt-32 { + margin-top: -8rem; } - .\32xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:-mt-36 { + margin-top: -9rem; } - .\32xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:-mt-40 { + margin-top: -10rem; } - .\32xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:-mt-44 { + margin-top: -11rem; } - .\32xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:-mt-48 { + margin-top: -12rem; } - .\32xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:-mt-52 { + margin-top: -13rem; } - .\32xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:-mt-56 { + margin-top: -14rem; } - .\32xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:-mt-60 { + margin-top: -15rem; } - .\32xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:-mt-64 { + margin-top: -16rem; } - .\32xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:-mt-72 { + margin-top: -18rem; } - .\32xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:-mt-80 { + margin-top: -20rem; } - .\32xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:-mt-96 { + margin-top: -24rem; } - .\32xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:-mt-px { + margin-top: -1px; } - .\32xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .\32xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .\32xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .\32xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .\32xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:mr-0 { + margin-right: 0px; } - .\32xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:mr-1 { + margin-right: 0.25rem; } - .\32xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:mr-2 { + margin-right: 0.5rem; } - .\32xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:mr-3 { + margin-right: 0.75rem; } - .\32xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:mr-4 { + margin-right: 1rem; } - .\32xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:mr-5 { + margin-right: 1.25rem; } - .\32xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:mr-6 { + margin-right: 1.5rem; } - .\32xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:mr-7 { + margin-right: 1.75rem; } - .\32xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:mr-8 { + margin-right: 2rem; } - .\32xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:mr-9 { + margin-right: 2.25rem; } - .\32xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:mr-10 { + margin-right: 2.5rem; } - .\32xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:mr-11 { + margin-right: 2.75rem; } - .\32xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:mr-12 { + margin-right: 3rem; } - .\32xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:mr-14 { + margin-right: 3.5rem; } - .\32xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:mr-16 { + margin-right: 4rem; } - .\32xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:mr-20 { + margin-right: 5rem; } - .\32xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:mr-24 { + margin-right: 6rem; } - .\32xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:mr-28 { + margin-right: 7rem; } - .\32xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:mr-32 { + margin-right: 8rem; } - .\32xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:mr-36 { + margin-right: 9rem; } - .\32xl\:to-transparent { - --tw-gradient-to: transparent; + .\32xl\:mr-40 { + margin-right: 10rem; } - .\32xl\:to-current { - --tw-gradient-to: currentColor; + .\32xl\:mr-44 { + margin-right: 11rem; } - .\32xl\:to-black { - --tw-gradient-to: #000; + .\32xl\:mr-48 { + margin-right: 12rem; } - .\32xl\:to-white { - --tw-gradient-to: #fff; + .\32xl\:mr-52 { + margin-right: 13rem; } - .\32xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .\32xl\:mr-56 { + margin-right: 14rem; } - .\32xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .\32xl\:mr-60 { + margin-right: 15rem; } - .\32xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .\32xl\:mr-64 { + margin-right: 16rem; } - .\32xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .\32xl\:mr-72 { + margin-right: 18rem; } - .\32xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .\32xl\:mr-80 { + margin-right: 20rem; } - .\32xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .\32xl\:mr-96 { + margin-right: 24rem; } - .\32xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .\32xl\:mr-auto { + margin-right: auto; } - .\32xl\:to-gray-700 { - --tw-gradient-to: #374151; + .\32xl\:mr-px { + margin-right: 1px; } - .\32xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .\32xl\:mr-0\.5 { + margin-right: 0.125rem; } - .\32xl\:to-gray-900 { - --tw-gradient-to: #111827; + .\32xl\:mr-1\.5 { + margin-right: 0.375rem; } - .\32xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .\32xl\:mr-2\.5 { + margin-right: 0.625rem; } - .\32xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .\32xl\:mr-3\.5 { + margin-right: 0.875rem; } - .\32xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .\32xl\:-mr-0 { + margin-right: 0px; } - .\32xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .\32xl\:-mr-1 { + margin-right: -0.25rem; } - .\32xl\:to-red-400 { - --tw-gradient-to: #f87171; + .\32xl\:-mr-2 { + margin-right: -0.5rem; } - .\32xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .\32xl\:-mr-3 { + margin-right: -0.75rem; } - .\32xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .\32xl\:-mr-4 { + margin-right: -1rem; } - .\32xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .\32xl\:-mr-5 { + margin-right: -1.25rem; } - .\32xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .\32xl\:-mr-6 { + margin-right: -1.5rem; } - .\32xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .\32xl\:-mr-7 { + margin-right: -1.75rem; } - .\32xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .\32xl\:-mr-8 { + margin-right: -2rem; } - .\32xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .\32xl\:-mr-9 { + margin-right: -2.25rem; } - .\32xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .\32xl\:-mr-10 { + margin-right: -2.5rem; } - .\32xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .\32xl\:-mr-11 { + margin-right: -2.75rem; } - .\32xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .\32xl\:-mr-12 { + margin-right: -3rem; } - .\32xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .\32xl\:-mr-14 { + margin-right: -3.5rem; } - .\32xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .\32xl\:-mr-16 { + margin-right: -4rem; } - .\32xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .\32xl\:-mr-20 { + margin-right: -5rem; } - .\32xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .\32xl\:-mr-24 { + margin-right: -6rem; } - .\32xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .\32xl\:-mr-28 { + margin-right: -7rem; } - .\32xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .\32xl\:-mr-32 { + margin-right: -8rem; } - .\32xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .\32xl\:-mr-36 { + margin-right: -9rem; } - .\32xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .\32xl\:-mr-40 { + margin-right: -10rem; } - .\32xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .\32xl\:-mr-44 { + margin-right: -11rem; } - .\32xl\:to-green-400 { - --tw-gradient-to: #34d399; + .\32xl\:-mr-48 { + margin-right: -12rem; } - .\32xl\:to-green-500 { - --tw-gradient-to: #10b981; + .\32xl\:-mr-52 { + margin-right: -13rem; } - .\32xl\:to-green-600 { - --tw-gradient-to: #059669; + .\32xl\:-mr-56 { + margin-right: -14rem; } - .\32xl\:to-green-700 { - --tw-gradient-to: #047857; + .\32xl\:-mr-60 { + margin-right: -15rem; } - .\32xl\:to-green-800 { - --tw-gradient-to: #065f46; + .\32xl\:-mr-64 { + margin-right: -16rem; } - .\32xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .\32xl\:-mr-72 { + margin-right: -18rem; } - .\32xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .\32xl\:-mr-80 { + margin-right: -20rem; } - .\32xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .\32xl\:-mr-96 { + margin-right: -24rem; } - .\32xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .\32xl\:-mr-px { + margin-right: -1px; } - .\32xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .\32xl\:-mr-0\.5 { + margin-right: -0.125rem; } - .\32xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .\32xl\:-mr-1\.5 { + margin-right: -0.375rem; } - .\32xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .\32xl\:-mr-2\.5 { + margin-right: -0.625rem; } - .\32xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .\32xl\:-mr-3\.5 { + margin-right: -0.875rem; } - .\32xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .\32xl\:mb-0 { + margin-bottom: 0px; } - .\32xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .\32xl\:mb-1 { + margin-bottom: 0.25rem; } - .\32xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .\32xl\:mb-2 { + margin-bottom: 0.5rem; } - .\32xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .\32xl\:mb-3 { + margin-bottom: 0.75rem; } - .\32xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .\32xl\:mb-4 { + margin-bottom: 1rem; } - .\32xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .\32xl\:mb-5 { + margin-bottom: 1.25rem; } - .\32xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .\32xl\:mb-6 { + margin-bottom: 1.5rem; } - .\32xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .\32xl\:mb-7 { + margin-bottom: 1.75rem; } - .\32xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .\32xl\:mb-8 { + margin-bottom: 2rem; } - .\32xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .\32xl\:mb-9 { + margin-bottom: 2.25rem; } - .\32xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .\32xl\:mb-10 { + margin-bottom: 2.5rem; } - .\32xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .\32xl\:mb-11 { + margin-bottom: 2.75rem; } - .\32xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .\32xl\:mb-12 { + margin-bottom: 3rem; } - .\32xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .\32xl\:mb-14 { + margin-bottom: 3.5rem; } - .\32xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .\32xl\:mb-16 { + margin-bottom: 4rem; } - .\32xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .\32xl\:mb-20 { + margin-bottom: 5rem; } - .\32xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .\32xl\:mb-24 { + margin-bottom: 6rem; } - .\32xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .\32xl\:mb-28 { + margin-bottom: 7rem; } - .\32xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .\32xl\:mb-32 { + margin-bottom: 8rem; } - .\32xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .\32xl\:mb-36 { + margin-bottom: 9rem; } - .\32xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .\32xl\:mb-40 { + margin-bottom: 10rem; } - .\32xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .\32xl\:mb-44 { + margin-bottom: 11rem; } - .\32xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .\32xl\:mb-48 { + margin-bottom: 12rem; } - .\32xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .\32xl\:mb-52 { + margin-bottom: 13rem; } - .\32xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .\32xl\:mb-56 { + margin-bottom: 14rem; } - .\32xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .\32xl\:mb-60 { + margin-bottom: 15rem; } - .\32xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .\32xl\:mb-64 { + margin-bottom: 16rem; } - .\32xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .\32xl\:mb-72 { + margin-bottom: 18rem; } - .\32xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .\32xl\:mb-80 { + margin-bottom: 20rem; } - .\32xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .\32xl\:mb-96 { + margin-bottom: 24rem; } - .\32xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .\32xl\:mb-auto { + margin-bottom: auto; } - .\32xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .\32xl\:mb-px { + margin-bottom: 1px; } - .\32xl\:to-pink-900 { - --tw-gradient-to: #831843; + .\32xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .\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\:mb-1\.5 { + margin-bottom: 0.375rem; } - .\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\:mb-2\.5 { + margin-bottom: 0.625rem; } - .\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\:mb-3\.5 { + margin-bottom: 0.875rem; } - .\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\:-mb-0 { + margin-bottom: 0px; } - .\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\:-mb-1 { + margin-bottom: -0.25rem; } - .\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\:-mb-2 { + margin-bottom: -0.5rem; } - .\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\:-mb-3 { + margin-bottom: -0.75rem; } - .\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\:-mb-4 { + margin-bottom: -1rem; } - .\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\:-mb-5 { + margin-bottom: -1.25rem; } - .\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\:-mb-6 { + margin-bottom: -1.5rem; } - .\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\:-mb-7 { + margin-bottom: -1.75rem; } - .\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\:-mb-8 { + margin-bottom: -2rem; } - .\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\:-mb-9 { + margin-bottom: -2.25rem; } - .\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\:-mb-10 { + margin-bottom: -2.5rem; } - .\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\:-mb-11 { + margin-bottom: -2.75rem; } - .\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\:-mb-12 { + margin-bottom: -3rem; } - .\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\:-mb-14 { + margin-bottom: -3.5rem; } - .\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\:-mb-16 { + margin-bottom: -4rem; } - .\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\:-mb-20 { + margin-bottom: -5rem; } - .\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\:-mb-24 { + margin-bottom: -6rem; } - .\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\:-mb-28 { + margin-bottom: -7rem; } - .\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\:-mb-32 { + margin-bottom: -8rem; } - .\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\:-mb-36 { + margin-bottom: -9rem; } - .\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\:-mb-40 { + margin-bottom: -10rem; } - .\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\:-mb-44 { + margin-bottom: -11rem; } - .\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\:-mb-48 { + margin-bottom: -12rem; } - .\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\:-mb-52 { + margin-bottom: -13rem; } - .\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\:-mb-56 { + margin-bottom: -14rem; } - .\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\:-mb-60 { + margin-bottom: -15rem; } - .\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\:-mb-64 { + margin-bottom: -16rem; } - .\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\:-mb-72 { + margin-bottom: -18rem; } - .\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\:-mb-80 { + margin-bottom: -20rem; } - .\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\:-mb-96 { + margin-bottom: -24rem; } - .\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\:-mb-px { + margin-bottom: -1px; } - .\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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .\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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .\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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .\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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .\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\:ml-0 { + margin-left: 0px; } - .\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\:ml-1 { + margin-left: 0.25rem; } - .\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\:ml-2 { + margin-left: 0.5rem; } - .\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\:ml-3 { + margin-left: 0.75rem; } - .\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\:ml-4 { + margin-left: 1rem; } - .\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\:ml-5 { + margin-left: 1.25rem; } - .\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\:ml-6 { + margin-left: 1.5rem; } - .\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\:ml-7 { + margin-left: 1.75rem; } - .\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\:ml-8 { + margin-left: 2rem; } - .\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\:ml-9 { + margin-left: 2.25rem; } - .\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\:ml-10 { + margin-left: 2.5rem; } - .\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\:ml-11 { + margin-left: 2.75rem; } - .\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\:ml-12 { + margin-left: 3rem; } - .\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\:ml-14 { + margin-left: 3.5rem; } - .\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\:ml-16 { + margin-left: 4rem; } - .\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\:ml-20 { + margin-left: 5rem; } - .\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\:ml-24 { + margin-left: 6rem; } - .\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\:ml-28 { + margin-left: 7rem; } - .\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\:ml-32 { + margin-left: 8rem; } - .\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\:ml-36 { + margin-left: 9rem; } - .\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\:ml-40 { + margin-left: 10rem; } - .\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\:ml-44 { + margin-left: 11rem; } - .\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\:ml-48 { + margin-left: 12rem; } - .\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\:ml-52 { + margin-left: 13rem; } - .\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\:ml-56 { + margin-left: 14rem; } - .\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\:ml-60 { + margin-left: 15rem; } - .\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\:ml-64 { + margin-left: 16rem; } - .\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\:ml-72 { + margin-left: 18rem; } - .\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\:ml-80 { + margin-left: 20rem; } - .\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\:ml-96 { + margin-left: 24rem; } - .\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\:ml-auto { + margin-left: auto; } - .\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\:ml-px { + margin-left: 1px; } - .\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\:ml-0\.5 { + margin-left: 0.125rem; } - .\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\:ml-1\.5 { + margin-left: 0.375rem; } - .\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\:ml-2\.5 { + margin-left: 0.625rem; } - .\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\:ml-3\.5 { + margin-left: 0.875rem; } - .\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\:-ml-0 { + margin-left: 0px; } - .\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\:-ml-1 { + margin-left: -0.25rem; } - .\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\:-ml-2 { + margin-left: -0.5rem; } - .\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\:-ml-3 { + margin-left: -0.75rem; } - .\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\:-ml-4 { + margin-left: -1rem; } - .\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\:-ml-5 { + margin-left: -1.25rem; } - .\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\:-ml-6 { + margin-left: -1.5rem; } - .\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\:-ml-7 { + margin-left: -1.75rem; } - .\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\:-ml-8 { + margin-left: -2rem; } - .\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\:-ml-9 { + margin-left: -2.25rem; } - .\32xl\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:-ml-10 { + margin-left: -2.5rem; } - .\32xl\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:-ml-11 { + margin-left: -2.75rem; } - .\32xl\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:-ml-12 { + margin-left: -3rem; } - .\32xl\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:-ml-14 { + margin-left: -3.5rem; } - .\32xl\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:-ml-16 { + margin-left: -4rem; } - .\32xl\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:-ml-20 { + margin-left: -5rem; } - .\32xl\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:-ml-24 { + margin-left: -6rem; } - .\32xl\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:-ml-28 { + margin-left: -7rem; } - .\32xl\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:-ml-32 { + margin-left: -8rem; } - .\32xl\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:-ml-36 { + margin-left: -9rem; } - .\32xl\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:-ml-40 { + margin-left: -10rem; } - .\32xl\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:-ml-44 { + margin-left: -11rem; } - .\32xl\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:-ml-48 { + margin-left: -12rem; } - .\32xl\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:-ml-52 { + margin-left: -13rem; } - .\32xl\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:-ml-56 { + margin-left: -14rem; } - .\32xl\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:-ml-60 { + margin-left: -15rem; } - .\32xl\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:-ml-64 { + margin-left: -16rem; } - .\32xl\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:-ml-72 { + margin-left: -18rem; } - .\32xl\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:-ml-80 { + margin-left: -20rem; } - .\32xl\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:-ml-96 { + margin-left: -24rem; } - .\32xl\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:-ml-px { + margin-left: -1px; } - .\32xl\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:-ml-0\.5 { + margin-left: -0.125rem; } - .\32xl\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:-ml-1\.5 { + margin-left: -0.375rem; } - .\32xl\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:-ml-2\.5 { + margin-left: -0.625rem; } - .\32xl\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:-ml-3\.5 { + margin-left: -0.875rem; } - .\32xl\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:box-border { + box-sizing: border-box; } - .\32xl\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:box-content { + box-sizing: content-box; } - .\32xl\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:block { + display: block; } - .\32xl\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:inline-block { + display: inline-block; } - .\32xl\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:inline { + display: inline; } - .\32xl\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:flex { + display: flex; } - .\32xl\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:inline-flex { + display: inline-flex; } - .\32xl\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:table { + display: table; } - .\32xl\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:inline-table { + display: inline-table; } - .\32xl\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:table-caption { + display: table-caption; } - .\32xl\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:table-cell { + display: table-cell; } - .\32xl\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:table-column { + display: table-column; } - .\32xl\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:table-column-group { + display: table-column-group; } - .\32xl\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:table-footer-group { + display: table-footer-group; } - .\32xl\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:table-header-group { + display: table-header-group; } - .\32xl\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:table-row-group { + display: table-row-group; } - .\32xl\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:table-row { + display: table-row; } - .\32xl\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:flow-root { + display: flow-root; } - .\32xl\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:grid { + display: grid; } - .\32xl\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:inline-grid { + display: inline-grid; } - .\32xl\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:contents { + display: contents; } - .\32xl\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:list-item { + display: list-item; } - .\32xl\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:hidden { + display: none; } - .\32xl\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:h-0 { + height: 0px; } - .\32xl\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:h-1 { + height: 0.25rem; } - .\32xl\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:h-2 { + height: 0.5rem; } - .\32xl\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:h-3 { + height: 0.75rem; } - .\32xl\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:h-4 { + height: 1rem; } - .\32xl\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:h-5 { + height: 1.25rem; } - .\32xl\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:h-6 { + height: 1.5rem; } - .\32xl\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:h-7 { + height: 1.75rem; } - .\32xl\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:h-8 { + height: 2rem; } - .\32xl\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:h-9 { + height: 2.25rem; } - .\32xl\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:h-10 { + height: 2.5rem; } - .\32xl\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:h-11 { + height: 2.75rem; } - .\32xl\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:h-12 { + height: 3rem; } - .\32xl\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:h-14 { + height: 3.5rem; } - .\32xl\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:h-16 { + height: 4rem; } - .\32xl\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:h-20 { + height: 5rem; } - .\32xl\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:h-24 { + height: 6rem; } - .\32xl\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:h-28 { + height: 7rem; } - .\32xl\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:h-32 { + height: 8rem; } - .\32xl\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:h-36 { + height: 9rem; } - .\32xl\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:h-40 { + height: 10rem; } - .\32xl\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:h-44 { + height: 11rem; } - .\32xl\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:h-48 { + height: 12rem; } - .\32xl\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:h-52 { + height: 13rem; } - .\32xl\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:h-56 { + height: 14rem; } - .\32xl\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:h-60 { + height: 15rem; } - .\32xl\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:h-64 { + height: 16rem; } - .\32xl\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:h-72 { + height: 18rem; } - .\32xl\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:h-80 { + height: 20rem; } - .\32xl\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:h-96 { + height: 24rem; } - .\32xl\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:h-auto { + height: auto; } - .\32xl\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:h-px { + height: 1px; } - .\32xl\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:h-0\.5 { + height: 0.125rem; } - .\32xl\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:h-1\.5 { + height: 0.375rem; } - .\32xl\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:h-2\.5 { + height: 0.625rem; } - .\32xl\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:h-3\.5 { + height: 0.875rem; } - .\32xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .\32xl\:h-1\/2 { + height: 50%; } - .\32xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .\32xl\:h-1\/3 { + height: 33.333333%; } - .\32xl\:hover\:to-black:hover { - --tw-gradient-to: #000; + .\32xl\:h-2\/3 { + height: 66.666667%; } - .\32xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .\32xl\:h-1\/4 { + height: 25%; } - .\32xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .\32xl\:h-2\/4 { + height: 50%; } - .\32xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .\32xl\:h-3\/4 { + height: 75%; } - .\32xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .\32xl\:h-1\/5 { + height: 20%; } - .\32xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .\32xl\:h-2\/5 { + height: 40%; } - .\32xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .\32xl\:h-3\/5 { + height: 60%; } - .\32xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .\32xl\:h-4\/5 { + height: 80%; } - .\32xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .\32xl\:h-1\/6 { + height: 16.666667%; } - .\32xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .\32xl\:h-2\/6 { + height: 33.333333%; } - .\32xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .\32xl\:h-3\/6 { + height: 50%; } - .\32xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .\32xl\:h-4\/6 { + height: 66.666667%; } - .\32xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .\32xl\:h-5\/6 { + height: 83.333333%; } - .\32xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .\32xl\:h-full { + height: 100%; } - .\32xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .\32xl\:h-screen { + height: 100vh; } - .\32xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .\32xl\:max-h-0 { + max-height: 0px; } - .\32xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .\32xl\:max-h-1 { + max-height: 0.25rem; } - .\32xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .\32xl\:max-h-2 { + max-height: 0.5rem; } - .\32xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .\32xl\:max-h-3 { + max-height: 0.75rem; } - .\32xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .\32xl\:max-h-4 { + max-height: 1rem; } - .\32xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .\32xl\:max-h-5 { + max-height: 1.25rem; } - .\32xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .\32xl\:max-h-6 { + max-height: 1.5rem; } - .\32xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .\32xl\:max-h-7 { + max-height: 1.75rem; } - .\32xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .\32xl\:max-h-8 { + max-height: 2rem; } - .\32xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .\32xl\:max-h-9 { + max-height: 2.25rem; } - .\32xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .\32xl\:max-h-10 { + max-height: 2.5rem; } - .\32xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .\32xl\:max-h-11 { + max-height: 2.75rem; } - .\32xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .\32xl\:max-h-12 { + max-height: 3rem; } - .\32xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .\32xl\:max-h-14 { + max-height: 3.5rem; } - .\32xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .\32xl\:max-h-16 { + max-height: 4rem; } - .\32xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .\32xl\:max-h-20 { + max-height: 5rem; } - .\32xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .\32xl\:max-h-24 { + max-height: 6rem; } - .\32xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .\32xl\:max-h-28 { + max-height: 7rem; } - .\32xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .\32xl\:max-h-32 { + max-height: 8rem; } - .\32xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .\32xl\:max-h-36 { + max-height: 9rem; } - .\32xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .\32xl\:max-h-40 { + max-height: 10rem; } - .\32xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .\32xl\:max-h-44 { + max-height: 11rem; } - .\32xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .\32xl\:max-h-48 { + max-height: 12rem; } - .\32xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .\32xl\:max-h-52 { + max-height: 13rem; } - .\32xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .\32xl\:max-h-56 { + max-height: 14rem; } - .\32xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .\32xl\:max-h-60 { + max-height: 15rem; } - .\32xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .\32xl\:max-h-64 { + max-height: 16rem; } - .\32xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .\32xl\:max-h-72 { + max-height: 18rem; } - .\32xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .\32xl\:max-h-80 { + max-height: 20rem; } - .\32xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .\32xl\:max-h-96 { + max-height: 24rem; } - .\32xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .\32xl\:max-h-px { + max-height: 1px; } - .\32xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .\32xl\:max-h-0\.5 { + max-height: 0.125rem; } - .\32xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .\32xl\:max-h-1\.5 { + max-height: 0.375rem; } - .\32xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .\32xl\:max-h-2\.5 { + max-height: 0.625rem; } - .\32xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .\32xl\:max-h-3\.5 { + max-height: 0.875rem; } - .\32xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .\32xl\:max-h-full { + max-height: 100%; } - .\32xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .\32xl\:max-h-screen { + max-height: 100vh; } - .\32xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .\32xl\:min-h-0 { + min-height: 0px; } - .\32xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .\32xl\:min-h-full { + min-height: 100%; } - .\32xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .\32xl\:min-h-screen { + min-height: 100vh; } - .\32xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .\32xl\:w-0 { + width: 0px; } - .\32xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .\32xl\:w-1 { + width: 0.25rem; } - .\32xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .\32xl\:w-2 { + width: 0.5rem; } - .\32xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .\32xl\:w-3 { + width: 0.75rem; } - .\32xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .\32xl\:w-4 { + width: 1rem; } - .\32xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .\32xl\:w-5 { + width: 1.25rem; } - .\32xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .\32xl\:w-6 { + width: 1.5rem; } - .\32xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .\32xl\:w-7 { + width: 1.75rem; } - .\32xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .\32xl\:w-8 { + width: 2rem; } - .\32xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .\32xl\:w-9 { + width: 2.25rem; } - .\32xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .\32xl\:w-10 { + width: 2.5rem; } - .\32xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .\32xl\:w-11 { + width: 2.75rem; } - .\32xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .\32xl\:w-12 { + width: 3rem; } - .\32xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .\32xl\:w-14 { + width: 3.5rem; } - .\32xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .\32xl\:w-16 { + width: 4rem; } - .\32xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .\32xl\:w-20 { + width: 5rem; } - .\32xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .\32xl\:w-24 { + width: 6rem; } - .\32xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .\32xl\:w-28 { + width: 7rem; } - .\32xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .\32xl\:w-32 { + width: 8rem; } - .\32xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .\32xl\:w-36 { + width: 9rem; } - .\32xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .\32xl\:w-40 { + width: 10rem; } - .\32xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .\32xl\:w-44 { + width: 11rem; } - .\32xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .\32xl\:w-48 { + width: 12rem; } - .\32xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .\32xl\:w-52 { + width: 13rem; } - .\32xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .\32xl\:w-56 { + width: 14rem; } - .\32xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .\32xl\:w-60 { + width: 15rem; } - .\32xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .\32xl\:w-64 { + width: 16rem; } - .\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\:w-72 { + width: 18rem; } - .\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\:w-80 { + width: 20rem; } - .\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\:w-96 { + width: 24rem; } - .\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\:w-auto { + width: auto; } - .\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\:w-px { + width: 1px; } - .\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\:w-0\.5 { + width: 0.125rem; } - .\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\:w-1\.5 { + width: 0.375rem; } - .\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\:w-2\.5 { + width: 0.625rem; } - .\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\:w-3\.5 { + width: 0.875rem; } - .\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\:w-1\/2 { + width: 50%; } - .\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\:w-1\/3 { + width: 33.333333%; } - .\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\:w-2\/3 { + width: 66.666667%; } - .\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\:w-1\/4 { + width: 25%; } - .\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\:w-2\/4 { + width: 50%; } - .\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\:w-3\/4 { + width: 75%; } - .\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\:w-1\/5 { + width: 20%; } - .\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\:w-2\/5 { + width: 40%; } - .\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\:w-3\/5 { + width: 60%; } - .\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\:w-4\/5 { + width: 80%; } - .\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\:w-1\/6 { + width: 16.666667%; } - .\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\:w-2\/6 { + width: 33.333333%; } - .\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\:w-3\/6 { + width: 50%; } - .\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\:w-4\/6 { + width: 66.666667%; } - .\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\:w-5\/6 { + width: 83.333333%; } - .\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\:w-1\/12 { + width: 8.333333%; } - .\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\:w-2\/12 { + width: 16.666667%; } - .\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\:w-3\/12 { + width: 25%; } - .\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\:w-4\/12 { + width: 33.333333%; } - .\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\:w-5\/12 { + width: 41.666667%; } - .\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\:w-6\/12 { + width: 50%; } - .\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\:w-7\/12 { + width: 58.333333%; } - .\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\:w-8\/12 { + width: 66.666667%; } - .\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\:w-9\/12 { + width: 75%; } - .\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\:w-10\/12 { + width: 83.333333%; } - .\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\:w-11\/12 { + width: 91.666667%; } - .\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\:w-full { + width: 100%; } - .\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\:w-screen { + width: 100vw; } - .\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\:w-min { + width: min-content; } - .\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\:w-max { + width: max-content; } - .\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\:min-w-0 { + min-width: 0px; } - .\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\:min-w-full { + min-width: 100%; } - .\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\:min-w-min { + min-width: min-content; } - .\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\:min-w-max { + min-width: max-content; } - .\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\:max-w-0 { + max-width: 0rem; } - .\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\:max-w-none { + max-width: none; } - .\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\:max-w-xs { + max-width: 20rem; } - .\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\:max-w-sm { + max-width: 24rem; } - .\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\:max-w-md { + max-width: 28rem; } - .\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\:max-w-lg { + max-width: 32rem; } - .\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\:max-w-xl { + max-width: 36rem; } - .\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\:max-w-2xl { + max-width: 42rem; } - .\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\:max-w-3xl { + max-width: 48rem; } - .\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\:max-w-4xl { + max-width: 56rem; } - .\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\:max-w-5xl { + max-width: 64rem; } - .\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\:max-w-6xl { + max-width: 72rem; } - .\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\:max-w-7xl { + max-width: 80rem; } - .\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\:max-w-full { + max-width: 100%; } - .\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\:max-w-min { + max-width: min-content; } - .\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\:max-w-max { + max-width: max-content; } - .\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\:max-w-prose { + max-width: 65ch; } - .\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\:max-w-screen-sm { + max-width: 640px; } - .\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\:max-w-screen-md { + max-width: 768px; } - .\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\:max-w-screen-lg { + max-width: 1024px; } - .\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\:max-w-screen-xl { + max-width: 1280px; } - .\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\:max-w-screen-2xl { + max-width: 1536px; } - .\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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .\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\:flex-initial { + flex: 0 1 auto; } - .\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\:flex-none { + flex: none; } - .\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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .\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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .\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\:table-auto { + table-layout: auto; } - .\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\:table-fixed { + table-layout: fixed; } - .\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\:border-collapse { + border-collapse: collapse; } - .\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\:border-separate { + border-collapse: separate; } - .\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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .\32xl\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .\32xl\: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\:transform-none { + transform: none; } - .\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\:origin-center { + transform-origin: center; } - .\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\:origin-top { + transform-origin: top; } - .\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\:origin-top-right { + transform-origin: top right; } - .\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\:origin-right { + transform-origin: right; } - .\32xl\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:origin-bottom-right { + transform-origin: bottom right; } - .\32xl\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:origin-bottom { + transform-origin: bottom; } - .\32xl\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:origin-bottom-left { + transform-origin: bottom left; } - .\32xl\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:origin-left { + transform-origin: left; } - .\32xl\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:origin-top-left { + transform-origin: top left; } - .\32xl\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:translate-x-0 { + --tw-translate-x: 0px; } - .\32xl\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .\32xl\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .\32xl\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .\32xl\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:translate-x-4 { + --tw-translate-x: 1rem; } - .\32xl\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .\32xl\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .\32xl\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .\32xl\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:translate-x-8 { + --tw-translate-x: 2rem; } - .\32xl\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .\32xl\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .\32xl\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .\32xl\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:translate-x-12 { + --tw-translate-x: 3rem; } - .\32xl\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .\32xl\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:translate-x-16 { + --tw-translate-x: 4rem; } - .\32xl\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:translate-x-20 { + --tw-translate-x: 5rem; } - .\32xl\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:translate-x-24 { + --tw-translate-x: 6rem; } - .\32xl\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:translate-x-28 { + --tw-translate-x: 7rem; } - .\32xl\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:translate-x-32 { + --tw-translate-x: 8rem; } - .\32xl\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:translate-x-36 { + --tw-translate-x: 9rem; } - .\32xl\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:translate-x-40 { + --tw-translate-x: 10rem; } - .\32xl\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:translate-x-44 { + --tw-translate-x: 11rem; } - .\32xl\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:translate-x-48 { + --tw-translate-x: 12rem; } - .\32xl\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:translate-x-52 { + --tw-translate-x: 13rem; } - .\32xl\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:translate-x-56 { + --tw-translate-x: 14rem; } - .\32xl\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:translate-x-60 { + --tw-translate-x: 15rem; } - .\32xl\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:translate-x-64 { + --tw-translate-x: 16rem; } - .\32xl\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:translate-x-72 { + --tw-translate-x: 18rem; } - .\32xl\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:translate-x-80 { + --tw-translate-x: 20rem; } - .\32xl\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:translate-x-96 { + --tw-translate-x: 24rem; } - .\32xl\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:translate-x-px { + --tw-translate-x: 1px; } - .\32xl\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .\32xl\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .\32xl\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .\32xl\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .\32xl\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:-translate-x-0 { + --tw-translate-x: 0px; } - .\32xl\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .\32xl\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .\32xl\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .\32xl\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:-translate-x-4 { + --tw-translate-x: -1rem; } - .\32xl\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .\32xl\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .\32xl\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .\32xl\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:-translate-x-8 { + --tw-translate-x: -2rem; } - .\32xl\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .\32xl\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .\32xl\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .\32xl\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:-translate-x-12 { + --tw-translate-x: -3rem; } - .\32xl\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .\32xl\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:-translate-x-16 { + --tw-translate-x: -4rem; } - .\32xl\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:-translate-x-20 { + --tw-translate-x: -5rem; } - .\32xl\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:-translate-x-24 { + --tw-translate-x: -6rem; } - .\32xl\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:-translate-x-28 { + --tw-translate-x: -7rem; } - .\32xl\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:-translate-x-32 { + --tw-translate-x: -8rem; } - .\32xl\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:-translate-x-36 { + --tw-translate-x: -9rem; } - .\32xl\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:-translate-x-40 { + --tw-translate-x: -10rem; } - .\32xl\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:-translate-x-44 { + --tw-translate-x: -11rem; } - .\32xl\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:-translate-x-48 { + --tw-translate-x: -12rem; } - .\32xl\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:-translate-x-52 { + --tw-translate-x: -13rem; } - .\32xl\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:-translate-x-56 { + --tw-translate-x: -14rem; } - .\32xl\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:-translate-x-60 { + --tw-translate-x: -15rem; } - .\32xl\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:-translate-x-64 { + --tw-translate-x: -16rem; } - .\32xl\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:-translate-x-72 { + --tw-translate-x: -18rem; } - .\32xl\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:-translate-x-80 { + --tw-translate-x: -20rem; } - .\32xl\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:-translate-x-96 { + --tw-translate-x: -24rem; } - .\32xl\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:-translate-x-px { + --tw-translate-x: -1px; } - .\32xl\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .\32xl\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .\32xl\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .\32xl\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .\32xl\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .\32xl\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .\32xl\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .\32xl\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .\32xl\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .\32xl\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .\32xl\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:translate-x-full { + --tw-translate-x: 100%; } - .\32xl\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .\32xl\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .\32xl\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .\32xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .\32xl\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .\32xl\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .\32xl\:focus\:to-black:focus { - --tw-gradient-to: #000; + .\32xl\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .\32xl\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .\32xl\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .\32xl\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .\32xl\:-translate-x-full { + --tw-translate-x: -100%; } - .\32xl\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .\32xl\:translate-y-0 { + --tw-translate-y: 0px; } - .\32xl\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .\32xl\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .\32xl\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .\32xl\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .\32xl\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .\32xl\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .\32xl\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .\32xl\:translate-y-4 { + --tw-translate-y: 1rem; } - .\32xl\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .\32xl\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .\32xl\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .\32xl\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .\32xl\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .\32xl\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .\32xl\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .\32xl\:translate-y-8 { + --tw-translate-y: 2rem; } - .\32xl\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .\32xl\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .\32xl\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .\32xl\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .\32xl\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .\32xl\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .\32xl\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .\32xl\:translate-y-12 { + --tw-translate-y: 3rem; } - .\32xl\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .\32xl\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .\32xl\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .\32xl\:translate-y-16 { + --tw-translate-y: 4rem; } - .\32xl\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .\32xl\:translate-y-20 { + --tw-translate-y: 5rem; } - .\32xl\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .\32xl\:translate-y-24 { + --tw-translate-y: 6rem; } - .\32xl\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .\32xl\:translate-y-28 { + --tw-translate-y: 7rem; } - .\32xl\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .\32xl\:translate-y-32 { + --tw-translate-y: 8rem; } - .\32xl\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .\32xl\:translate-y-36 { + --tw-translate-y: 9rem; } - .\32xl\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .\32xl\:translate-y-40 { + --tw-translate-y: 10rem; } - .\32xl\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .\32xl\:translate-y-44 { + --tw-translate-y: 11rem; } - .\32xl\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .\32xl\:translate-y-48 { + --tw-translate-y: 12rem; } - .\32xl\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .\32xl\:translate-y-52 { + --tw-translate-y: 13rem; } - .\32xl\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .\32xl\:translate-y-56 { + --tw-translate-y: 14rem; } - .\32xl\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .\32xl\:translate-y-60 { + --tw-translate-y: 15rem; } - .\32xl\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .\32xl\:translate-y-64 { + --tw-translate-y: 16rem; } - .\32xl\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .\32xl\:translate-y-72 { + --tw-translate-y: 18rem; } - .\32xl\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .\32xl\:translate-y-80 { + --tw-translate-y: 20rem; } - .\32xl\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .\32xl\:translate-y-96 { + --tw-translate-y: 24rem; } - .\32xl\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .\32xl\:translate-y-px { + --tw-translate-y: 1px; } - .\32xl\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .\32xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .\32xl\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .\32xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .\32xl\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .\32xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .\32xl\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .\32xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .\32xl\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .\32xl\:-translate-y-0 { + --tw-translate-y: 0px; } - .\32xl\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .\32xl\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .\32xl\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .\32xl\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .\32xl\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .\32xl\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .\32xl\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .\32xl\:-translate-y-4 { + --tw-translate-y: -1rem; } - .\32xl\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .\32xl\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .\32xl\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .\32xl\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .\32xl\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .\32xl\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .\32xl\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .\32xl\:-translate-y-8 { + --tw-translate-y: -2rem; } - .\32xl\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .\32xl\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .\32xl\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .\32xl\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .\32xl\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .\32xl\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .\32xl\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .\32xl\:-translate-y-12 { + --tw-translate-y: -3rem; } - .\32xl\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .\32xl\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .\32xl\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .\32xl\:-translate-y-16 { + --tw-translate-y: -4rem; } - .\32xl\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .\32xl\:-translate-y-20 { + --tw-translate-y: -5rem; } - .\32xl\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .\32xl\:-translate-y-24 { + --tw-translate-y: -6rem; } - .\32xl\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .\32xl\:-translate-y-28 { + --tw-translate-y: -7rem; } - .\32xl\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .\32xl\:-translate-y-32 { + --tw-translate-y: -8rem; } - .\32xl\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .\32xl\:-translate-y-36 { + --tw-translate-y: -9rem; } - .\32xl\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .\32xl\:-translate-y-40 { + --tw-translate-y: -10rem; } - .\32xl\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .\32xl\:-translate-y-44 { + --tw-translate-y: -11rem; } - .\32xl\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .\32xl\:-translate-y-48 { + --tw-translate-y: -12rem; } - .\32xl\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .\32xl\:-translate-y-52 { + --tw-translate-y: -13rem; } - .\32xl\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .\32xl\:-translate-y-56 { + --tw-translate-y: -14rem; } - .\32xl\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .\32xl\:-translate-y-60 { + --tw-translate-y: -15rem; } - .\32xl\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .\32xl\:-translate-y-64 { + --tw-translate-y: -16rem; } - .\32xl\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .\32xl\:-translate-y-72 { + --tw-translate-y: -18rem; } - .\32xl\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .\32xl\:-translate-y-80 { + --tw-translate-y: -20rem; } - .\32xl\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .\32xl\:-translate-y-96 { + --tw-translate-y: -24rem; } - .\32xl\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .\32xl\:-translate-y-px { + --tw-translate-y: -1px; } - .\32xl\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .\32xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .\32xl\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .\32xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .\32xl\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .\32xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .\32xl\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .\32xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .\32xl\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .\32xl\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .\32xl\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .\32xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .\32xl\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .\32xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .\32xl\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .\32xl\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .\32xl\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .\32xl\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .\32xl\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .\32xl\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .\32xl\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .\32xl\:translate-y-full { + --tw-translate-y: 100%; } - .\32xl\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .\32xl\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .\32xl\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .\32xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .\32xl\:bg-opacity-0 { - --tw-bg-opacity: 0; + .\32xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .\32xl\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .\32xl\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .\32xl\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .\32xl\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .\32xl\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .\32xl\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .\32xl\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .\32xl\:-translate-y-full { + --tw-translate-y: -100%; } - .\32xl\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .\32xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .\32xl\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .\32xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .\32xl\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .\32xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .\32xl\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .\32xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .\32xl\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .\32xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .\32xl\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .\32xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .\32xl\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .\32xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .\32xl\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .\32xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .\32xl\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .\32xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .\32xl\:bg-opacity-100 { - --tw-bg-opacity: 1; + .\32xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; + .\32xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .\32xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .\32xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .\32xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .\32xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .\32xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .\32xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .\32xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .\32xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .\32xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .\32xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .\32xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .\32xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .\32xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; + .\32xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .\32xl\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; + .\32xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .\32xl\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; + .\32xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .\32xl\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; + .\32xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .\32xl\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; + .\32xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .\32xl\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; + .\32xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .\32xl\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; + .\32xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .\32xl\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; + .\32xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .\32xl\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; + .\32xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .\32xl\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; + .\32xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .\32xl\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; + .\32xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .\32xl\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; + .\32xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .\32xl\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; + .\32xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .\32xl\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; + .\32xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .\32xl\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; + .\32xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .\32xl\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; + .\32xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .\32xl\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; + .\32xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .\32xl\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; + .\32xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .\32xl\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; + .\32xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .\32xl\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; + .\32xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .\32xl\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; + .\32xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .\32xl\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; + .\32xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .\32xl\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; + .\32xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .\32xl\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; + .\32xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .\32xl\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; + .\32xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .\32xl\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; + .\32xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .\32xl\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; + .\32xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .\32xl\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; + .\32xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .\32xl\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; + .\32xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .\32xl\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; + .\32xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .\32xl\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; + .\32xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .\32xl\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; + .\32xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .\32xl\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; + .\32xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .\32xl\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; + .\32xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .\32xl\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; + .\32xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .\32xl\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; + .\32xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .\32xl\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; + .\32xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .\32xl\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; + .\32xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .\32xl\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; + .\32xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .\32xl\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; + .\32xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .\32xl\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; + .\32xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .\32xl\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; + .\32xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .\32xl\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; + .\32xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .\32xl\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; + .\32xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .\32xl\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; + .\32xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .\32xl\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; + .\32xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .\32xl\:bg-bottom { - background-position: bottom; + .\32xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .\32xl\:bg-center { - background-position: center; + .\32xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .\32xl\:bg-left { - background-position: left; + .\32xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .\32xl\:bg-left-bottom { - background-position: left bottom; + .\32xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .\32xl\:bg-left-top { - background-position: left top; + .\32xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .\32xl\:bg-right { - background-position: right; + .\32xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .\32xl\:bg-right-bottom { - background-position: right bottom; + .\32xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .\32xl\:bg-right-top { - background-position: right top; + .\32xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .\32xl\:bg-top { - background-position: top; + .\32xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .\32xl\:bg-repeat { - background-repeat: repeat; + .\32xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .\32xl\:bg-no-repeat { - background-repeat: no-repeat; + .\32xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .\32xl\:bg-repeat-x { - background-repeat: repeat-x; + .\32xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .\32xl\:bg-repeat-y { - background-repeat: repeat-y; + .\32xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .\32xl\:bg-repeat-round { - background-repeat: round; + .\32xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .\32xl\:bg-repeat-space { - background-repeat: space; + .\32xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .\32xl\:bg-auto { - background-size: auto; + .\32xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .\32xl\:bg-cover { - background-size: cover; + .\32xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .\32xl\:bg-contain { - background-size: contain; + .\32xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .\32xl\:bg-origin-border { - background-origin: border-box; + .\32xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .\32xl\:bg-origin-padding { - background-origin: padding-box; + .\32xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .\32xl\:bg-origin-content { - background-origin: content-box; + .\32xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .\32xl\:border-collapse { - border-collapse: collapse; + .\32xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .\32xl\:border-separate { - border-collapse: separate; + .\32xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .\32xl\:border-transparent { - border-color: transparent; + .\32xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .\32xl\:border-current { - border-color: currentColor; + .\32xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .\32xl\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .\32xl\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .\32xl\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .\32xl\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .\32xl\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .\32xl\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .\32xl\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .\32xl\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .\32xl\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .\32xl\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .\32xl\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .\32xl\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .\32xl\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .\32xl\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .\32xl\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .\32xl\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .\32xl\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .\32xl\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .\32xl\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .\32xl\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .\32xl\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .\32xl\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .\32xl\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .\32xl\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .\32xl\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .\32xl\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .\32xl\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .\32xl\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .\32xl\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .\32xl\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .\32xl\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .\32xl\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .\32xl\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .\32xl\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .\32xl\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .\32xl\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .\32xl\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .\32xl\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .\32xl\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .\32xl\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .\32xl\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .\32xl\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .\32xl\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .\32xl\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .\32xl\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .\32xl\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .\32xl\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .\32xl\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .\32xl\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .\32xl\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .\32xl\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .\32xl\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .\32xl\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .\32xl\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .\32xl\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .\32xl\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .\32xl\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .\32xl\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .\32xl\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .\32xl\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .\32xl\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .\32xl\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .\32xl\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .\32xl\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .\32xl\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .\32xl\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .\32xl\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .\32xl\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .\32xl\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .\32xl\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .\32xl\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .\32xl\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .\32xl\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .\32xl\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .\32xl\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .\32xl\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .\32xl\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .\32xl\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .\32xl\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .\32xl\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .\32xl\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .\32xl\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .\32xl\:group-hover\:border-transparent { - border-color: transparent; + .\32xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .\32xl\:group-hover\:border-current { - border-color: currentColor; + .\32xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .\32xl\:group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .\32xl\:group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .\32xl\:group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .\32xl\:group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .\32xl\:group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .\32xl\:group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .\32xl\:group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .\32xl\:group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .\32xl\:group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .\32xl\:group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .\32xl\:group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .\32xl\:group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .\32xl\:group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .\32xl\:group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .\32xl\:group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .\32xl\:group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .\32xl\:group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .\32xl\:group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .\32xl\:group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .\32xl\:group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .\32xl\:group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .\32xl\:group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .\32xl\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .\32xl\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .\32xl\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .\32xl\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .\32xl\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .group:hover .\32xl\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .group:hover .\32xl\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .group:hover .\32xl\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .group:hover .\32xl\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .group:hover .\32xl\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .group:hover .\32xl\:group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .group:hover .\32xl\:group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - - .group:hover .\32xl\:group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + + .\32xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .group:hover .\32xl\:group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .group:hover .\32xl\:group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .group:hover .\32xl\:group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .group:hover .\32xl\:group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .group:hover .\32xl\:group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .group:hover .\32xl\:group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .group:hover .\32xl\:group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .group:hover .\32xl\:group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .group:hover .\32xl\:group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .group:hover .\32xl\:group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .group:hover .\32xl\:group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .group:hover .\32xl\:group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .group:hover .\32xl\:group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .group:hover .\32xl\:group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .group:hover .\32xl\:group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .group:hover .\32xl\:group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .group:hover .\32xl\:group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .group:hover .\32xl\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .group:hover .\32xl\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .group:hover .\32xl\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .group:hover .\32xl\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .group:hover .\32xl\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .group:hover .\32xl\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .group:hover .\32xl\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .group:hover .\32xl\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .group:hover .\32xl\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .group:hover .\32xl\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .group:hover .\32xl\:group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .group:hover .\32xl\:group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .group:hover .\32xl\:group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .group:hover .\32xl\:group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .group:hover .\32xl\:group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .group:hover .\32xl\:group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .group:hover .\32xl\:group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .group:hover .\32xl\:group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .group:hover .\32xl\:group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .group:hover .\32xl\:group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .group:hover .\32xl\:group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .group:hover .\32xl\:group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .group:hover .\32xl\:group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .group:hover .\32xl\:group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .group:hover .\32xl\:group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .group:hover .\32xl\:group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .group:hover .\32xl\:group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .group:hover .\32xl\:group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .group:hover .\32xl\:group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .group:hover .\32xl\:group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .\32xl\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .\32xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .\32xl\:focus-within\:border-current:focus-within { - border-color: currentColor; + .\32xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .\32xl\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .\32xl\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .\32xl\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .\32xl\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .\32xl\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .\32xl\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .\32xl\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .\32xl\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .\32xl\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .\32xl\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .\32xl\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .\32xl\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .\32xl\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .\32xl\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .\32xl\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .\32xl\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .\32xl\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .\32xl\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .\32xl\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .\32xl\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .\32xl\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .\32xl\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .\32xl\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .\32xl\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .\32xl\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .\32xl\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .\32xl\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .\32xl\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .\32xl\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .\32xl\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .\32xl\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .\32xl\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .\32xl\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .\32xl\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .\32xl\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .\32xl\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .\32xl\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .\32xl\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .\32xl\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .\32xl\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .\32xl\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .\32xl\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .\32xl\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .\32xl\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .\32xl\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .\32xl\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .\32xl\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .\32xl\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .\32xl\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .\32xl\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .\32xl\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .\32xl\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .\32xl\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .\32xl\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .\32xl\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .\32xl\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .\32xl\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .\32xl\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .\32xl\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .\32xl\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .\32xl\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .\32xl\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .\32xl\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .\32xl\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .\32xl\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .\32xl\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .\32xl\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .\32xl\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .\32xl\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .\32xl\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .\32xl\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .\32xl\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .\32xl\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .\32xl\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .\32xl\:rotate-0 { + --tw-rotate: 0deg; } - .\32xl\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .\32xl\:rotate-1 { + --tw-rotate: 1deg; } - .\32xl\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .\32xl\:rotate-2 { + --tw-rotate: 2deg; } - .\32xl\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .\32xl\:rotate-3 { + --tw-rotate: 3deg; } - .\32xl\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .\32xl\:rotate-6 { + --tw-rotate: 6deg; } - .\32xl\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .\32xl\:rotate-12 { + --tw-rotate: 12deg; } - .\32xl\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .\32xl\:rotate-45 { + --tw-rotate: 45deg; } - .\32xl\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .\32xl\:rotate-90 { + --tw-rotate: 90deg; } - .\32xl\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .\32xl\:rotate-180 { + --tw-rotate: 180deg; } - .\32xl\:hover\:border-transparent:hover { - border-color: transparent; + .\32xl\:-rotate-180 { + --tw-rotate: -180deg; } - .\32xl\:hover\:border-current:hover { - border-color: currentColor; + .\32xl\:-rotate-90 { + --tw-rotate: -90deg; } - .\32xl\:hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .\32xl\:-rotate-45 { + --tw-rotate: -45deg; } - .\32xl\:hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .\32xl\:-rotate-12 { + --tw-rotate: -12deg; } - .\32xl\:hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .\32xl\:-rotate-6 { + --tw-rotate: -6deg; } - .\32xl\:hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .\32xl\:-rotate-3 { + --tw-rotate: -3deg; } - .\32xl\:hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .\32xl\:-rotate-2 { + --tw-rotate: -2deg; } - .\32xl\:hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .\32xl\:-rotate-1 { + --tw-rotate: -1deg; } - .\32xl\:hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .\32xl\:hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .\32xl\:hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .\32xl\:hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .\32xl\:hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .\32xl\:hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .\32xl\:hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .\32xl\:hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .\32xl\:hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .\32xl\:hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .\32xl\:hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .\32xl\:hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .\32xl\:hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .\32xl\:hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .\32xl\:hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .\32xl\:hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .\32xl\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .\32xl\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .\32xl\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .\32xl\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .\32xl\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .\32xl\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .\32xl\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .\32xl\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .\32xl\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .\32xl\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .\32xl\:hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .\32xl\:hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .\32xl\:hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .\32xl\:hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .\32xl\:hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .\32xl\:hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .\32xl\:hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .\32xl\:hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .\32xl\:hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .\32xl\:skew-x-0 { + --tw-skew-x: 0deg; } - .\32xl\:hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .\32xl\:skew-x-1 { + --tw-skew-x: 1deg; } - .\32xl\:hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .\32xl\:skew-x-2 { + --tw-skew-x: 2deg; } - .\32xl\:hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .\32xl\:skew-x-3 { + --tw-skew-x: 3deg; } - .\32xl\:hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .\32xl\:skew-x-6 { + --tw-skew-x: 6deg; } - .\32xl\:hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .\32xl\:skew-x-12 { + --tw-skew-x: 12deg; } - .\32xl\:hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .\32xl\:-skew-x-12 { + --tw-skew-x: -12deg; } - .\32xl\:hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .\32xl\:-skew-x-6 { + --tw-skew-x: -6deg; } - .\32xl\:hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .\32xl\:-skew-x-3 { + --tw-skew-x: -3deg; } - .\32xl\:hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .\32xl\:-skew-x-2 { + --tw-skew-x: -2deg; } - .\32xl\:hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .\32xl\:-skew-x-1 { + --tw-skew-x: -1deg; } - .\32xl\:hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .\32xl\:skew-y-0 { + --tw-skew-y: 0deg; } - .\32xl\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .\32xl\:skew-y-1 { + --tw-skew-y: 1deg; } - .\32xl\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .\32xl\:skew-y-2 { + --tw-skew-y: 2deg; } - .\32xl\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .\32xl\:skew-y-3 { + --tw-skew-y: 3deg; } - .\32xl\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .\32xl\:skew-y-6 { + --tw-skew-y: 6deg; } - .\32xl\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .\32xl\:skew-y-12 { + --tw-skew-y: 12deg; } - .\32xl\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .\32xl\:-skew-y-12 { + --tw-skew-y: -12deg; } - .\32xl\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .\32xl\:-skew-y-6 { + --tw-skew-y: -6deg; } - .\32xl\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .\32xl\:-skew-y-3 { + --tw-skew-y: -3deg; } - .\32xl\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .\32xl\:-skew-y-2 { + --tw-skew-y: -2deg; } - .\32xl\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .\32xl\:-skew-y-1 { + --tw-skew-y: -1deg; } - .\32xl\:hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .\32xl\:hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .\32xl\:hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .\32xl\:hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .\32xl\:hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .\32xl\:hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .\32xl\:hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .\32xl\:hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .\32xl\:hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .\32xl\:hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .\32xl\:hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .\32xl\:hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .\32xl\:hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .\32xl\:hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .\32xl\:hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .\32xl\:hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .\32xl\:hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .\32xl\:hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .\32xl\:hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .\32xl\:hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .\32xl\:focus\:border-transparent:focus { - border-color: transparent; + .\32xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .\32xl\:focus\:border-current:focus { - border-color: currentColor; + .\32xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .\32xl\:focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .\32xl\:focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .\32xl\:focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .\32xl\:focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .\32xl\:focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .\32xl\:focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .\32xl\:focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .\32xl\:focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .\32xl\:focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .\32xl\:focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .\32xl\:focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .\32xl\:focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .\32xl\:focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .\32xl\:focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .\32xl\:focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .\32xl\:focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .\32xl\:focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .\32xl\:focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .\32xl\:focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .\32xl\:focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .\32xl\:focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .\32xl\:focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .\32xl\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .\32xl\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .\32xl\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .\32xl\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .\32xl\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .\32xl\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .\32xl\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .\32xl\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .\32xl\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .\32xl\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .\32xl\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .\32xl\:scale-x-0 { + --tw-scale-x: 0; } - .\32xl\:focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .\32xl\:scale-x-50 { + --tw-scale-x: .5; } - .\32xl\:focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .\32xl\:scale-x-75 { + --tw-scale-x: .75; } - .\32xl\:focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .\32xl\:scale-x-90 { + --tw-scale-x: .9; } - .\32xl\:focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .\32xl\:scale-x-95 { + --tw-scale-x: .95; } - .\32xl\:focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .\32xl\:scale-x-100 { + --tw-scale-x: 1; } - .\32xl\:focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .\32xl\:scale-x-105 { + --tw-scale-x: 1.05; } - .\32xl\:focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .\32xl\:scale-x-110 { + --tw-scale-x: 1.1; } - .\32xl\:focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .\32xl\:scale-x-125 { + --tw-scale-x: 1.25; } - .\32xl\:focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .\32xl\:scale-x-150 { + --tw-scale-x: 1.5; } - .\32xl\:focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .\32xl\:scale-y-0 { + --tw-scale-y: 0; } - .\32xl\:focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .\32xl\:scale-y-50 { + --tw-scale-y: .5; } - .\32xl\:focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .\32xl\:scale-y-75 { + --tw-scale-y: .75; } - .\32xl\:focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .\32xl\:scale-y-90 { + --tw-scale-y: .9; } - .\32xl\:focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .\32xl\:scale-y-95 { + --tw-scale-y: .95; } - .\32xl\:focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .\32xl\:scale-y-100 { + --tw-scale-y: 1; } - .\32xl\:focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .\32xl\:scale-y-105 { + --tw-scale-y: 1.05; } - .\32xl\:focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .\32xl\:scale-y-110 { + --tw-scale-y: 1.1; } - .\32xl\:focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .\32xl\:scale-y-125 { + --tw-scale-y: 1.25; } - .\32xl\:focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .\32xl\:scale-y-150 { + --tw-scale-y: 1.5; } - .\32xl\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .\32xl\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .\32xl\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .\32xl\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .\32xl\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .\32xl\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .\32xl\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .\32xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .\32xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .\32xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .\32xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .\32xl\:focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .\32xl\:focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .\32xl\:focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .\32xl\:focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .\32xl\:focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .\32xl\:focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .\32xl\:focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .\32xl\:focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .\32xl\:focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .\32xl\:focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .\32xl\:focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .\32xl\:focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .\32xl\:focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .\32xl\:focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .\32xl\:focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .\32xl\:focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .\32xl\:focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .\32xl\:focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .\32xl\:focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .\32xl\:border-opacity-0 { - --tw-border-opacity: 0; + .\32xl\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:border-opacity-5 { - --tw-border-opacity: 0.05; + .\32xl\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:border-opacity-10 { - --tw-border-opacity: 0.1; + .\32xl\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:border-opacity-20 { - --tw-border-opacity: 0.2; + .\32xl\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:border-opacity-25 { - --tw-border-opacity: 0.25; + .\32xl\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:border-opacity-30 { - --tw-border-opacity: 0.3; + .\32xl\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:border-opacity-40 { - --tw-border-opacity: 0.4; + .\32xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:border-opacity-50 { - --tw-border-opacity: 0.5; + .\32xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:border-opacity-60 { - --tw-border-opacity: 0.6; + .\32xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:border-opacity-70 { - --tw-border-opacity: 0.7; + .\32xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:border-opacity-75 { - --tw-border-opacity: 0.75; + .\32xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .\32xl\:border-opacity-80 { - --tw-border-opacity: 0.8; + .\32xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .\32xl\:border-opacity-90 { - --tw-border-opacity: 0.9; + .\32xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .\32xl\:border-opacity-95 { - --tw-border-opacity: 0.95; + .\32xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .\32xl\:border-opacity-100 { - --tw-border-opacity: 1; + .\32xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .group:hover .\32xl\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0; + .\32xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .group:hover .\32xl\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; + .\32xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .group:hover .\32xl\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; + .\32xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .group:hover .\32xl\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; + .\32xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .group:hover .\32xl\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; + .\32xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .group:hover .\32xl\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; + .\32xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .group:hover .\32xl\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; + .\32xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .group:hover .\32xl\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; + .\32xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .group:hover .\32xl\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; + .\32xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .group:hover .\32xl\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; + .\32xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .group:hover .\32xl\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; + .\32xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .group:hover .\32xl\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; + .\32xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .group:hover .\32xl\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; + .\32xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .group:hover .\32xl\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; + .\32xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .group:hover .\32xl\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1; + .\32xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .\32xl\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; + .\32xl\:animate-none { + animation: none; } - .\32xl\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; + .\32xl\:animate-spin { + animation: spin 1s linear infinite; } - .\32xl\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; + .\32xl\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .\32xl\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; + .\32xl\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .\32xl\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; + .\32xl\:animate-bounce { + animation: bounce 1s infinite; } - .\32xl\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; + .\32xl\:cursor-auto { + cursor: auto; } - .\32xl\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; + .\32xl\:cursor-default { + cursor: default; } - .\32xl\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; + .\32xl\:cursor-pointer { + cursor: pointer; } - .\32xl\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; + .\32xl\:cursor-wait { + cursor: wait; } - .\32xl\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; + .\32xl\:cursor-text { + cursor: text; } - .\32xl\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; + .\32xl\:cursor-move { + cursor: move; } - .\32xl\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; + .\32xl\:cursor-help { + cursor: help; } - .\32xl\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; + .\32xl\:cursor-not-allowed { + cursor: not-allowed; } - .\32xl\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; + .\32xl\:select-none { + user-select: none; } - .\32xl\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; + .\32xl\:select-text { + user-select: text; } - .\32xl\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0; + .\32xl\:select-all { + user-select: all; } - .\32xl\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; + .\32xl\:select-auto { + user-select: auto; } - .\32xl\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; + .\32xl\:resize-none { + resize: none; } - .\32xl\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; + .\32xl\:resize-y { + resize: vertical; } - .\32xl\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; + .\32xl\:resize-x { + resize: horizontal; } - .\32xl\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; + .\32xl\:resize { + resize: both; } - .\32xl\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; + .\32xl\:list-inside { + list-style-position: inside; } - .\32xl\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; + .\32xl\:list-outside { + list-style-position: outside; } - .\32xl\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; + .\32xl\:list-none { + list-style-type: none; } - .\32xl\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; + .\32xl\:list-disc { + list-style-type: disc; } - .\32xl\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; + .\32xl\:list-decimal { + list-style-type: decimal; } - .\32xl\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; + .\32xl\:appearance-none { + appearance: none; } - .\32xl\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; + .\32xl\:auto-cols-auto { + grid-auto-columns: auto; } - .\32xl\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; + .\32xl\:auto-cols-min { + grid-auto-columns: min-content; } - .\32xl\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1; + .\32xl\:auto-cols-max { + grid-auto-columns: max-content; } - .\32xl\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0; + .\32xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .\32xl\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; + .\32xl\:grid-flow-row { + grid-auto-flow: row; } - .\32xl\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; + .\32xl\:grid-flow-col { + grid-auto-flow: column; } - .\32xl\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; + .\32xl\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .\32xl\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; + .\32xl\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .\32xl\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; + .\32xl\:auto-rows-auto { + grid-auto-rows: auto; } - .\32xl\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; + .\32xl\:auto-rows-min { + grid-auto-rows: min-content; } - .\32xl\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; + .\32xl\:auto-rows-max { + grid-auto-rows: max-content; } - .\32xl\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; + .\32xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .\32xl\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; + .\32xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .\32xl\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; + .\32xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .\32xl\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; + .\32xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .\32xl\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; + .\32xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .\32xl\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; + .\32xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .\32xl\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1; + .\32xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .\32xl\:rounded-none { - border-radius: 0px; + .\32xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .\32xl\:rounded-sm { - border-radius: 0.125rem; + .\32xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .\32xl\:rounded { - border-radius: 0.25rem; + .\32xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .\32xl\:rounded-md { - border-radius: 0.375rem; + .\32xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .\32xl\:rounded-lg { - border-radius: 0.5rem; + .\32xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .\32xl\:rounded-xl { - border-radius: 0.75rem; + .\32xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .\32xl\:rounded-2xl { - border-radius: 1rem; + .\32xl\:grid-cols-none { + grid-template-columns: none; } - .\32xl\:rounded-3xl { - border-radius: 1.5rem; + .\32xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .\32xl\:rounded-full { - border-radius: 9999px; + .\32xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .\32xl\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .\32xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .\32xl\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .\32xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .\32xl\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .\32xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .\32xl\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .\32xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .\32xl\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .\32xl\:grid-rows-none { + grid-template-rows: none; } - .\32xl\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .\32xl\:flex-row { + flex-direction: row; } - .\32xl\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .\32xl\:flex-row-reverse { + flex-direction: row-reverse; } - .\32xl\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .\32xl\:flex-col { + flex-direction: column; } - .\32xl\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .\32xl\:flex-col-reverse { + flex-direction: column-reverse; } - .\32xl\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .\32xl\:flex-wrap { + flex-wrap: wrap; } - .\32xl\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .\32xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse; } - .\32xl\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .\32xl\:flex-nowrap { + flex-wrap: nowrap; } - .\32xl\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .\32xl\:place-content-center { + place-content: center; } - .\32xl\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .\32xl\:place-content-start { + place-content: start; } - .\32xl\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .\32xl\:place-content-end { + place-content: end; } - .\32xl\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .\32xl\:place-content-between { + place-content: space-between; } - .\32xl\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .\32xl\:place-content-around { + place-content: space-around; } - .\32xl\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .\32xl\:place-content-evenly { + place-content: space-evenly; } - .\32xl\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .\32xl\:place-content-stretch { + place-content: stretch; } - .\32xl\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .\32xl\:place-items-start { + place-items: start; } - .\32xl\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .\32xl\:place-items-end { + place-items: end; } - .\32xl\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .\32xl\:place-items-center { + place-items: center; } - .\32xl\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .\32xl\:place-items-stretch { + place-items: stretch; } - .\32xl\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .\32xl\:content-center { + align-content: center; } - .\32xl\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .\32xl\:content-start { + align-content: flex-start; } - .\32xl\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .\32xl\:content-end { + align-content: flex-end; } - .\32xl\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .\32xl\:content-between { + align-content: space-between; } - .\32xl\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .\32xl\:content-around { + align-content: space-around; } - .\32xl\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .\32xl\:content-evenly { + align-content: space-evenly; } - .\32xl\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .\32xl\:items-start { + align-items: flex-start; } - .\32xl\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .\32xl\:items-end { + align-items: flex-end; } - .\32xl\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .\32xl\:items-center { + align-items: center; } - .\32xl\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .\32xl\:items-baseline { + align-items: baseline; } - .\32xl\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .\32xl\:items-stretch { + align-items: stretch; } - .\32xl\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .\32xl\:justify-start { + justify-content: flex-start; } - .\32xl\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .\32xl\:justify-end { + justify-content: flex-end; } - .\32xl\:rounded-tl-none { - border-top-left-radius: 0px; + .\32xl\:justify-center { + justify-content: center; } - .\32xl\:rounded-tr-none { - border-top-right-radius: 0px; + .\32xl\:justify-between { + justify-content: space-between; + } + + .\32xl\:justify-around { + justify-content: space-around; } - .\32xl\:rounded-br-none { - border-bottom-right-radius: 0px; + .\32xl\:justify-evenly { + justify-content: space-evenly; } - .\32xl\:rounded-bl-none { - border-bottom-left-radius: 0px; + .\32xl\:justify-items-start { + justify-items: start; } - .\32xl\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .\32xl\:justify-items-end { + justify-items: end; } - .\32xl\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .\32xl\:justify-items-center { + justify-items: center; } - .\32xl\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .\32xl\:justify-items-stretch { + justify-items: stretch; } - .\32xl\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .\32xl\:gap-0 { + gap: 0px; } - .\32xl\:rounded-tl { - border-top-left-radius: 0.25rem; + .\32xl\:gap-1 { + gap: 0.25rem; } - .\32xl\:rounded-tr { - border-top-right-radius: 0.25rem; + .\32xl\:gap-2 { + gap: 0.5rem; } - .\32xl\:rounded-br { - border-bottom-right-radius: 0.25rem; + .\32xl\:gap-3 { + gap: 0.75rem; } - .\32xl\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .\32xl\:gap-4 { + gap: 1rem; } - .\32xl\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .\32xl\:gap-5 { + gap: 1.25rem; } - .\32xl\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .\32xl\:gap-6 { + gap: 1.5rem; } - .\32xl\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .\32xl\:gap-7 { + gap: 1.75rem; } - .\32xl\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .\32xl\:gap-8 { + gap: 2rem; } - .\32xl\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .\32xl\:gap-9 { + gap: 2.25rem; } - .\32xl\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .\32xl\:gap-10 { + gap: 2.5rem; } - .\32xl\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .\32xl\:gap-11 { + gap: 2.75rem; } - .\32xl\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .\32xl\:gap-12 { + gap: 3rem; } - .\32xl\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .\32xl\:gap-14 { + gap: 3.5rem; } - .\32xl\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .\32xl\:gap-16 { + gap: 4rem; } - .\32xl\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .\32xl\:gap-20 { + gap: 5rem; } - .\32xl\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .\32xl\:gap-24 { + gap: 6rem; } - .\32xl\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .\32xl\:gap-28 { + gap: 7rem; } - .\32xl\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .\32xl\:gap-32 { + gap: 8rem; } - .\32xl\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .\32xl\:gap-36 { + gap: 9rem; } - .\32xl\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .\32xl\:gap-40 { + gap: 10rem; } - .\32xl\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .\32xl\:gap-44 { + gap: 11rem; } - .\32xl\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .\32xl\:gap-48 { + gap: 12rem; } - .\32xl\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .\32xl\:gap-52 { + gap: 13rem; } - .\32xl\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .\32xl\:gap-56 { + gap: 14rem; } - .\32xl\:rounded-tl-full { - border-top-left-radius: 9999px; + .\32xl\:gap-60 { + gap: 15rem; } - .\32xl\:rounded-tr-full { - border-top-right-radius: 9999px; + .\32xl\:gap-64 { + gap: 16rem; } - .\32xl\:rounded-br-full { - border-bottom-right-radius: 9999px; + .\32xl\:gap-72 { + gap: 18rem; } - .\32xl\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .\32xl\:gap-80 { + gap: 20rem; } - .\32xl\:border-solid { - border-style: solid; + .\32xl\:gap-96 { + gap: 24rem; } - .\32xl\:border-dashed { - border-style: dashed; + .\32xl\:gap-px { + gap: 1px; } - .\32xl\:border-dotted { - border-style: dotted; + .\32xl\:gap-0\.5 { + gap: 0.125rem; } - .\32xl\:border-double { - border-style: double; + .\32xl\:gap-1\.5 { + gap: 0.375rem; } - .\32xl\:border-none { - border-style: none; + .\32xl\:gap-2\.5 { + gap: 0.625rem; } - .\32xl\:border-0 { - border-width: 0px; + .\32xl\:gap-3\.5 { + gap: 0.875rem; } - .\32xl\:border-2 { - border-width: 2px; + .\32xl\:gap-x-0 { + column-gap: 0px; } - .\32xl\:border-4 { - border-width: 4px; + .\32xl\:gap-x-1 { + column-gap: 0.25rem; } - .\32xl\:border-8 { - border-width: 8px; + .\32xl\:gap-x-2 { + column-gap: 0.5rem; } - .\32xl\:border { - border-width: 1px; + .\32xl\:gap-x-3 { + column-gap: 0.75rem; } - .\32xl\:border-t-0 { - border-top-width: 0px; + .\32xl\:gap-x-4 { + column-gap: 1rem; } - .\32xl\:border-r-0 { - border-right-width: 0px; + .\32xl\:gap-x-5 { + column-gap: 1.25rem; } - .\32xl\:border-b-0 { - border-bottom-width: 0px; + .\32xl\:gap-x-6 { + column-gap: 1.5rem; } - .\32xl\:border-l-0 { - border-left-width: 0px; + .\32xl\:gap-x-7 { + column-gap: 1.75rem; } - .\32xl\:border-t-2 { - border-top-width: 2px; + .\32xl\:gap-x-8 { + column-gap: 2rem; } - .\32xl\:border-r-2 { - border-right-width: 2px; + .\32xl\:gap-x-9 { + column-gap: 2.25rem; } - .\32xl\:border-b-2 { - border-bottom-width: 2px; + .\32xl\:gap-x-10 { + column-gap: 2.5rem; } - .\32xl\:border-l-2 { - border-left-width: 2px; + .\32xl\:gap-x-11 { + column-gap: 2.75rem; } - .\32xl\:border-t-4 { - border-top-width: 4px; + .\32xl\:gap-x-12 { + column-gap: 3rem; } - .\32xl\:border-r-4 { - border-right-width: 4px; + .\32xl\:gap-x-14 { + column-gap: 3.5rem; } - .\32xl\:border-b-4 { - border-bottom-width: 4px; + .\32xl\:gap-x-16 { + column-gap: 4rem; } - .\32xl\:border-l-4 { - border-left-width: 4px; + .\32xl\:gap-x-20 { + column-gap: 5rem; } - .\32xl\:border-t-8 { - border-top-width: 8px; + .\32xl\:gap-x-24 { + column-gap: 6rem; } - .\32xl\:border-r-8 { - border-right-width: 8px; + .\32xl\:gap-x-28 { + column-gap: 7rem; } - .\32xl\:border-b-8 { - border-bottom-width: 8px; + .\32xl\:gap-x-32 { + column-gap: 8rem; } - .\32xl\:border-l-8 { - border-left-width: 8px; + .\32xl\:gap-x-36 { + column-gap: 9rem; } - .\32xl\:border-t { - border-top-width: 1px; + .\32xl\:gap-x-40 { + column-gap: 10rem; } - .\32xl\:border-r { - border-right-width: 1px; + .\32xl\:gap-x-44 { + column-gap: 11rem; } - .\32xl\:border-b { - border-bottom-width: 1px; + .\32xl\:gap-x-48 { + column-gap: 12rem; } - .\32xl\:border-l { - border-left-width: 1px; + .\32xl\:gap-x-52 { + column-gap: 13rem; } - .\32xl\:decoration-slice { - box-decoration-break: slice; + .\32xl\:gap-x-56 { + column-gap: 14rem; } - .\32xl\:decoration-clone { - box-decoration-break: clone; + .\32xl\:gap-x-60 { + column-gap: 15rem; } - .\32xl\:box-border { - box-sizing: border-box; + .\32xl\:gap-x-64 { + column-gap: 16rem; } - .\32xl\:box-content { - box-sizing: content-box; + .\32xl\:gap-x-72 { + column-gap: 18rem; } - .\32xl\:cursor-auto { - cursor: auto; + .\32xl\:gap-x-80 { + column-gap: 20rem; } - .\32xl\:cursor-default { - cursor: default; + .\32xl\:gap-x-96 { + column-gap: 24rem; } - .\32xl\:cursor-pointer { - cursor: pointer; + .\32xl\:gap-x-px { + column-gap: 1px; } - .\32xl\:cursor-wait { - cursor: wait; + .\32xl\:gap-x-0\.5 { + column-gap: 0.125rem; } - .\32xl\:cursor-text { - cursor: text; + .\32xl\:gap-x-1\.5 { + column-gap: 0.375rem; } - .\32xl\:cursor-move { - cursor: move; + .\32xl\:gap-x-2\.5 { + column-gap: 0.625rem; } - .\32xl\:cursor-help { - cursor: help; + .\32xl\:gap-x-3\.5 { + column-gap: 0.875rem; } - .\32xl\:cursor-not-allowed { - cursor: not-allowed; + .\32xl\:gap-y-0 { + row-gap: 0px; } - .\32xl\:block { - display: block; + .\32xl\:gap-y-1 { + row-gap: 0.25rem; } - .\32xl\:inline-block { - display: inline-block; + .\32xl\:gap-y-2 { + row-gap: 0.5rem; } - .\32xl\:inline { - display: inline; + .\32xl\:gap-y-3 { + row-gap: 0.75rem; } - .\32xl\:flex { - display: flex; + .\32xl\:gap-y-4 { + row-gap: 1rem; } - .\32xl\:inline-flex { - display: inline-flex; + .\32xl\:gap-y-5 { + row-gap: 1.25rem; } - .\32xl\:table { - display: table; + .\32xl\:gap-y-6 { + row-gap: 1.5rem; } - .\32xl\:inline-table { - display: inline-table; + .\32xl\:gap-y-7 { + row-gap: 1.75rem; } - .\32xl\:table-caption { - display: table-caption; + .\32xl\:gap-y-8 { + row-gap: 2rem; } - .\32xl\:table-cell { - display: table-cell; + .\32xl\:gap-y-9 { + row-gap: 2.25rem; } - .\32xl\:table-column { - display: table-column; + .\32xl\:gap-y-10 { + row-gap: 2.5rem; } - .\32xl\:table-column-group { - display: table-column-group; + .\32xl\:gap-y-11 { + row-gap: 2.75rem; } - .\32xl\:table-footer-group { - display: table-footer-group; + .\32xl\:gap-y-12 { + row-gap: 3rem; } - .\32xl\:table-header-group { - display: table-header-group; + .\32xl\:gap-y-14 { + row-gap: 3.5rem; } - .\32xl\:table-row-group { - display: table-row-group; + .\32xl\:gap-y-16 { + row-gap: 4rem; } - .\32xl\:table-row { - display: table-row; + .\32xl\:gap-y-20 { + row-gap: 5rem; } - .\32xl\:flow-root { - display: flow-root; + .\32xl\:gap-y-24 { + row-gap: 6rem; } - .\32xl\:grid { - display: grid; + .\32xl\:gap-y-28 { + row-gap: 7rem; } - .\32xl\:inline-grid { - display: inline-grid; + .\32xl\:gap-y-32 { + row-gap: 8rem; } - .\32xl\:contents { - display: contents; + .\32xl\:gap-y-36 { + row-gap: 9rem; } - .\32xl\:list-item { - display: list-item; + .\32xl\:gap-y-40 { + row-gap: 10rem; } - .\32xl\:hidden { - display: none; + .\32xl\:gap-y-44 { + row-gap: 11rem; } - .\32xl\:flex-row { - flex-direction: row; + .\32xl\:gap-y-48 { + row-gap: 12rem; } - .\32xl\:flex-row-reverse { - flex-direction: row-reverse; + .\32xl\:gap-y-52 { + row-gap: 13rem; } - .\32xl\:flex-col { - flex-direction: column; + .\32xl\:gap-y-56 { + row-gap: 14rem; } - .\32xl\:flex-col-reverse { - flex-direction: column-reverse; + .\32xl\:gap-y-60 { + row-gap: 15rem; } - .\32xl\:flex-wrap { - flex-wrap: wrap; + .\32xl\:gap-y-64 { + row-gap: 16rem; } - .\32xl\:flex-wrap-reverse { - flex-wrap: wrap-reverse; + .\32xl\:gap-y-72 { + row-gap: 18rem; } - .\32xl\:flex-nowrap { - flex-wrap: nowrap; + .\32xl\:gap-y-80 { + row-gap: 20rem; } - .\32xl\:place-items-start { - place-items: start; + .\32xl\:gap-y-96 { + row-gap: 24rem; } - .\32xl\:place-items-end { - place-items: end; + .\32xl\:gap-y-px { + row-gap: 1px; } - .\32xl\:place-items-center { - place-items: center; + .\32xl\:gap-y-0\.5 { + row-gap: 0.125rem; } - .\32xl\:place-items-stretch { - place-items: stretch; + .\32xl\:gap-y-1\.5 { + row-gap: 0.375rem; } - .\32xl\:place-content-center { - place-content: center; + .\32xl\:gap-y-2\.5 { + row-gap: 0.625rem; } - .\32xl\:place-content-start { - place-content: start; + .\32xl\:gap-y-3\.5 { + row-gap: 0.875rem; } - .\32xl\:place-content-end { - place-content: end; + .\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\:place-content-between { - place-content: space-between; + .\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\:place-content-around { - place-content: space-around; + .\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\:place-content-evenly { - place-content: space-evenly; + .\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\:place-content-stretch { - place-content: stretch; + .\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\:place-self-auto { - place-self: auto; + .\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\:place-self-start { - place-self: start; + .\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\:place-self-end { - place-self: end; + .\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\:place-self-center { - place-self: center; + .\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\:place-self-stretch { - place-self: stretch; + .\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\:items-start { - align-items: flex-start; + .\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\:items-end { - align-items: flex-end; + .\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\:items-center { - align-items: center; + .\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\:items-baseline { - align-items: baseline; + .\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\:items-stretch { - align-items: stretch; + .\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\:content-center { - align-content: center; + .\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\:content-start { - align-content: flex-start; + .\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\:content-end { - align-content: flex-end; + .\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\:content-between { - align-content: space-between; + .\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\:content-around { - align-content: space-around; + .\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\:content-evenly { - align-content: space-evenly; + .\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\:self-auto { - align-self: auto; + .\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\:self-start { - align-self: flex-start; + .\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\:self-end { - align-self: flex-end; + .\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\:self-center { - align-self: center; + .\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\:self-stretch { - align-self: stretch; + .\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\:justify-items-start { - justify-items: start; + .\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\:justify-items-end { - justify-items: end; + .\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\:justify-items-center { - justify-items: center; + .\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\:justify-items-stretch { - justify-items: stretch; + .\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\:justify-start { - justify-content: flex-start; + .\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\:justify-end { - justify-content: flex-end; + .\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\:justify-center { - justify-content: center; + .\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\:justify-between { - justify-content: space-between; + .\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\:justify-around { - justify-content: space-around; + .\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\:justify-evenly { - justify-content: space-evenly; + .\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\:justify-self-auto { - justify-self: auto; + .\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\:justify-self-start { - justify-self: start; + .\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\:justify-self-end { - justify-self: end; + .\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\:justify-self-center { - justify-self: center; + .\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\:justify-self-stretch { - justify-self: stretch; + .\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\:flex-1 { - flex: 1 1 0%; + .\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\:flex-auto { - flex: 1 1 auto; + .\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\:flex-initial { - flex: 0 1 auto; + .\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\:flex-none { - flex: none; + .\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\:flex-grow-0 { - flex-grow: 0; + .\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\:flex-grow { - flex-grow: 1; + .\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\:flex-shrink-0 { - flex-shrink: 0; + .\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\:flex-shrink { - flex-shrink: 1; + .\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\:order-1 { - order: 1; + .\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\:order-2 { - order: 2; + .\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\:order-3 { - order: 3; + .\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\:order-4 { - order: 4; + .\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\:order-5 { - order: 5; + .\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\:order-6 { - order: 6; + .\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\:order-7 { - order: 7; + .\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\:order-8 { - order: 8; + .\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\:order-9 { - order: 9; + .\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\:order-10 { - order: 10; + .\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\:order-11 { - order: 11; + .\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\:order-12 { - order: 12; + .\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\:order-first { - order: -9999; + .\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\:order-last { - order: 9999; + .\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\:order-none { - order: 0; + .\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\:float-right { - float: right; + .\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\:float-left { - float: left; + .\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\:float-none { - float: none; + .\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\:clear-left { - clear: left; + .\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\:clear-right { - clear: right; + .\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\:clear-both { - clear: both; + .\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\:clear-none { - clear: none; + .\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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .\32xl\:-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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .\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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .\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\:font-thin { - font-weight: 100; + .\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\:font-extralight { - font-weight: 200; + .\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\:font-light { - font-weight: 300; + .\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\:font-normal { - font-weight: 400; + .\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\:font-medium { - font-weight: 500; + .\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\:font-semibold { - font-weight: 600; + .\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\:font-bold { - font-weight: 700; + .\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\:font-extrabold { - font-weight: 800; + .\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\:font-black { - font-weight: 900; + .\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\:h-0 { - height: 0px; + .\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\:h-1 { - height: 0.25rem; + .\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\:h-2 { - height: 0.5rem; + .\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\:h-3 { - height: 0.75rem; + .\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\:h-4 { - height: 1rem; + .\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\:h-5 { - height: 1.25rem; + .\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\:h-6 { - height: 1.5rem; + .\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\:h-7 { - height: 1.75rem; + .\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\:h-8 { - height: 2rem; + .\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\:h-9 { - height: 2.25rem; + .\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\:h-10 { - height: 2.5rem; + .\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\:h-11 { - height: 2.75rem; + .\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\:h-12 { - height: 3rem; + .\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\:h-14 { - height: 3.5rem; + .\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\:h-16 { - height: 4rem; + .\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\:h-20 { - height: 5rem; + .\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\:h-24 { - height: 6rem; + .\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\:h-28 { - height: 7rem; + .\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\:h-32 { - height: 8rem; + .\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\:h-36 { - height: 9rem; + .\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\:h-40 { - height: 10rem; + .\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\:h-44 { - height: 11rem; + .\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\:h-48 { - height: 12rem; + .\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\:h-52 { - height: 13rem; + .\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\:h-56 { - height: 14rem; + .\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\:h-60 { - height: 15rem; + .\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\:h-64 { - height: 16rem; + .\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\:h-72 { - height: 18rem; + .\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\:h-80 { - height: 20rem; + .\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\:h-96 { - height: 24rem; + .\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\:h-auto { - height: auto; + .\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\:h-px { - height: 1px; + .\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\:h-0\.5 { - height: 0.125rem; + .\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\:h-1\.5 { - height: 0.375rem; + .\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\:h-2\.5 { - height: 0.625rem; + .\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\:h-3\.5 { - height: 0.875rem; + .\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\:h-1\/2 { - height: 50%; + .\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\:h-1\/3 { - height: 33.333333%; + .\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\:h-2\/3 { - height: 66.666667%; + .\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\:h-1\/4 { - height: 25%; + .\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\:h-2\/4 { - height: 50%; + .\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\:h-3\/4 { - height: 75%; + .\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\:h-1\/5 { - height: 20%; + .\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\:h-2\/5 { - height: 40%; + .\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\:h-3\/5 { - height: 60%; + .\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\:h-4\/5 { - height: 80%; + .\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\:h-1\/6 { - height: 16.666667%; + .\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\:h-2\/6 { - height: 33.333333%; + .\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\:h-3\/6 { - height: 50%; + .\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\:h-4\/6 { - height: 66.666667%; + .\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\:h-5\/6 { - height: 83.333333%; + .\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\:h-full { - height: 100%; + .\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\:h-screen { - height: 100vh; + .\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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .\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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .\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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .\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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .\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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .\32xl\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .\32xl\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .\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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .\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\:text-5xl { - font-size: 3rem; - line-height: 1; + .\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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .\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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .\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\:text-8xl { - font-size: 6rem; - line-height: 1; + .\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\:text-9xl { - font-size: 8rem; - line-height: 1; + .\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\:leading-3 { - line-height: .75rem; + .\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\:leading-4 { - line-height: 1rem; + .\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\:leading-5 { - line-height: 1.25rem; + .\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\:leading-6 { - line-height: 1.5rem; + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .\32xl\:leading-7 { - line-height: 1.75rem; + .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .\32xl\:leading-8 { - line-height: 2rem; + .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .\32xl\:leading-9 { - line-height: 2.25rem; + .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .\32xl\:leading-10 { - line-height: 2.5rem; + .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .\32xl\:leading-none { - line-height: 1; + .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .\32xl\:leading-tight { - line-height: 1.25; + .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .\32xl\:leading-snug { - line-height: 1.375; + .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .\32xl\:leading-normal { - line-height: 1.5; + .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .\32xl\:leading-relaxed { - line-height: 1.625; + .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } - .\32xl\:leading-loose { - line-height: 2; + .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } - .\32xl\:list-inside { - list-style-position: inside; + .\32xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } - .\32xl\:list-outside { - list-style-position: outside; + .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } - .\32xl\:list-none { - list-style-type: none; + .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } - .\32xl\:list-disc { - list-style-type: disc; + .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } - .\32xl\:list-decimal { - list-style-type: decimal; + .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } - .\32xl\:m-0 { - margin: 0px; + .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } - .\32xl\:m-1 { - margin: 0.25rem; + .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } - .\32xl\:m-2 { - margin: 0.5rem; + .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } - .\32xl\:m-3 { - margin: 0.75rem; + .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } - .\32xl\:m-4 { - margin: 1rem; + .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } - .\32xl\:m-5 { - margin: 1.25rem; + .\32xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } - .\32xl\:m-6 { - margin: 1.5rem; + .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } - .\32xl\:m-7 { - margin: 1.75rem; + .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } - .\32xl\:m-8 { - margin: 2rem; + .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } - .\32xl\:m-9 { - margin: 2.25rem; + .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } - .\32xl\:m-10 { - margin: 2.5rem; + .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } - .\32xl\:m-11 { - margin: 2.75rem; + .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } - .\32xl\:m-12 { - margin: 3rem; + .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } - .\32xl\:m-14 { - margin: 3.5rem; + .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } - .\32xl\:m-16 { - margin: 4rem; + .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } - .\32xl\:m-20 { - margin: 5rem; + .\32xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } - .\32xl\:m-24 { - margin: 6rem; + .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } - .\32xl\:m-28 { - margin: 7rem; + .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } - .\32xl\:m-32 { - margin: 8rem; + .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } - .\32xl\:m-36 { - margin: 9rem; + .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } - .\32xl\:m-40 { - margin: 10rem; + .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } - .\32xl\:m-44 { - margin: 11rem; + .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } - .\32xl\:m-48 { - margin: 12rem; + .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } - .\32xl\:m-52 { - margin: 13rem; + .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } - .\32xl\:m-56 { - margin: 14rem; + .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } - .\32xl\:m-60 { - margin: 15rem; + .\32xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } - .\32xl\:m-64 { - margin: 16rem; + .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } - .\32xl\:m-72 { - margin: 18rem; + .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } - .\32xl\:m-80 { - margin: 20rem; + .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } - .\32xl\:m-96 { - margin: 24rem; + .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } - .\32xl\:m-auto { - margin: auto; + .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } - .\32xl\:m-px { - margin: 1px; + .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } - .\32xl\:m-0\.5 { - margin: 0.125rem; + .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } - .\32xl\:m-1\.5 { - margin: 0.375rem; + .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } - .\32xl\:m-2\.5 { - margin: 0.625rem; + .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } - .\32xl\:m-3\.5 { - margin: 0.875rem; + .\32xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } - .\32xl\:-m-0 { - margin: 0px; + .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } - .\32xl\:-m-1 { - margin: -0.25rem; + .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } - .\32xl\:-m-2 { - margin: -0.5rem; + .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } - .\32xl\:-m-3 { - margin: -0.75rem; + .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } - .\32xl\:-m-4 { - margin: -1rem; + .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } - .\32xl\:-m-5 { - margin: -1.25rem; + .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } - .\32xl\:-m-6 { - margin: -1.5rem; + .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } - .\32xl\:-m-7 { - margin: -1.75rem; + .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } - .\32xl\:-m-8 { - margin: -2rem; + .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } - .\32xl\:-m-9 { - margin: -2.25rem; + .\32xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } - .\32xl\:-m-10 { - margin: -2.5rem; + .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } - .\32xl\:-m-11 { - margin: -2.75rem; + .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } - .\32xl\:-m-12 { - margin: -3rem; + .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } - .\32xl\:-m-14 { - margin: -3.5rem; + .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } - .\32xl\:-m-16 { - margin: -4rem; + .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } - .\32xl\:-m-20 { - margin: -5rem; + .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } - .\32xl\:-m-24 { - margin: -6rem; + .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } - .\32xl\:-m-28 { - margin: -7rem; + .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } - .\32xl\:-m-32 { - margin: -8rem; + .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } - .\32xl\:-m-36 { - margin: -9rem; + .\32xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } - .\32xl\:-m-40 { - margin: -10rem; + .\32xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } - .\32xl\:-m-44 { - margin: -11rem; + .\32xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } - .\32xl\:-m-48 { - margin: -12rem; + .\32xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } - .\32xl\:-m-52 { - margin: -13rem; + .\32xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } - .\32xl\:-m-56 { - margin: -14rem; + .\32xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } - .\32xl\:-m-60 { - margin: -15rem; + .\32xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } - .\32xl\:-m-64 { - margin: -16rem; + .\32xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } - .\32xl\:-m-72 { - margin: -18rem; + .\32xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } - .\32xl\:-m-80 { - margin: -20rem; + .\32xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } - .\32xl\:-m-96 { - margin: -24rem; + .\32xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } - .\32xl\:-m-px { - margin: -1px; + .\32xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } - .\32xl\:-m-0\.5 { - margin: -0.125rem; + .\32xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } - .\32xl\:-m-1\.5 { - margin: -0.375rem; + .\32xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } - .\32xl\:-m-2\.5 { - margin: -0.625rem; + .\32xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } - .\32xl\:-m-3\.5 { - margin: -0.875rem; + .\32xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } - .\32xl\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .\32xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } - .\32xl\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .\32xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } - .\32xl\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .\32xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } - .\32xl\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .\32xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } - .\32xl\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .\32xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } - .\32xl\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .\32xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } - .\32xl\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .\32xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } - .\32xl\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .\32xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } - .\32xl\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .\32xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } - .\32xl\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .\32xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } - .\32xl\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .\32xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } - .\32xl\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .\32xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } - .\32xl\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .\32xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } - .\32xl\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .\32xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } - .\32xl\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .\32xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } - .\32xl\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .\32xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } - .\32xl\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .\32xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } - .\32xl\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .\32xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } - .\32xl\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .\32xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } - .\32xl\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .\32xl\:place-self-auto { + place-self: auto; } - .\32xl\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .\32xl\:place-self-start { + place-self: start; } - .\32xl\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .\32xl\:place-self-end { + place-self: end; } - .\32xl\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .\32xl\:place-self-center { + place-self: center; } - .\32xl\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .\32xl\:place-self-stretch { + place-self: stretch; } - .\32xl\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .\32xl\:self-auto { + align-self: auto; } - .\32xl\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .\32xl\:self-start { + align-self: flex-start; } - .\32xl\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .\32xl\:self-end { + align-self: flex-end; } - .\32xl\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .\32xl\:self-center { + align-self: center; } - .\32xl\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .\32xl\:self-stretch { + align-self: stretch; } - .\32xl\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .\32xl\:justify-self-auto { + justify-self: auto; } - .\32xl\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .\32xl\:justify-self-start { + justify-self: start; } - .\32xl\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .\32xl\:justify-self-end { + justify-self: end; } - .\32xl\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .\32xl\:justify-self-center { + justify-self: center; } - .\32xl\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .\32xl\:justify-self-stretch { + justify-self: stretch; } - .\32xl\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .\32xl\:overflow-auto { + overflow: auto; } - .\32xl\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .\32xl\:overflow-hidden { + overflow: hidden; } - .\32xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .\32xl\:overflow-visible { + overflow: visible; } - .\32xl\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .\32xl\:overflow-scroll { + overflow: scroll; } - .\32xl\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .\32xl\:overflow-x-auto { + overflow-x: auto; } - .\32xl\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .\32xl\:overflow-y-auto { + overflow-y: auto; } - .\32xl\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .\32xl\:overflow-x-hidden { + overflow-x: hidden; } - .\32xl\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .\32xl\:overflow-y-hidden { + overflow-y: hidden; } - .\32xl\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .\32xl\:overflow-x-visible { + overflow-x: visible; } - .\32xl\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .\32xl\:overflow-y-visible { + overflow-y: visible; } - .\32xl\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .\32xl\:overflow-x-scroll { + overflow-x: scroll; } - .\32xl\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .\32xl\:overflow-y-scroll { + overflow-y: scroll; } - .\32xl\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .\32xl\:overscroll-auto { + overscroll-behavior: auto; } - .\32xl\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .\32xl\:overscroll-contain { + overscroll-behavior: contain; } - .\32xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .\32xl\:overscroll-none { + overscroll-behavior: none; } - .\32xl\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .\32xl\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .\32xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .\32xl\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .\32xl\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .\32xl\:overscroll-y-none { + overscroll-behavior-y: none; } - .\32xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .\32xl\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .\32xl\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .\32xl\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .\32xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .\32xl\:overscroll-x-none { + overscroll-behavior-x: none; } - .\32xl\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .\32xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .\32xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .\32xl\:overflow-ellipsis { + text-overflow: ellipsis; } - .\32xl\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .\32xl\:overflow-clip { + text-overflow: clip; } - .\32xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .\32xl\:whitespace-normal { + white-space: normal; } - .\32xl\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .\32xl\:whitespace-nowrap { + white-space: nowrap; } - .\32xl\:my-auto { - margin-top: auto; - margin-bottom: auto; + .\32xl\:whitespace-pre { + white-space: pre; } - .\32xl\:mx-auto { - margin-left: auto; - margin-right: auto; + .\32xl\:whitespace-pre-line { + white-space: pre-line; } - .\32xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .\32xl\:whitespace-pre-wrap { + white-space: pre-wrap; } - .\32xl\:mx-px { - margin-left: 1px; - margin-right: 1px; + .\32xl\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .\32xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .\32xl\:break-words { + overflow-wrap: break-word; } - .\32xl\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .\32xl\:break-all { + word-break: break-all; } - .\32xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .\32xl\:rounded-none { + border-radius: 0px; } - .\32xl\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .\32xl\:rounded-sm { + border-radius: 0.125rem; } - .\32xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .\32xl\:rounded { + border-radius: 0.25rem; } - .\32xl\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .\32xl\:rounded-md { + border-radius: 0.375rem; } - .\32xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .\32xl\:rounded-lg { + border-radius: 0.5rem; } - .\32xl\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .\32xl\:rounded-xl { + border-radius: 0.75rem; } - .\32xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .\32xl\:rounded-2xl { + border-radius: 1rem; } - .\32xl\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .\32xl\:rounded-3xl { + border-radius: 1.5rem; } - .\32xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .\32xl\:rounded-full { + border-radius: 9999px; } - .\32xl\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .\32xl\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .\32xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .\32xl\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .\32xl\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .\32xl\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .\32xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .\32xl\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .\32xl\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .\32xl\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .\32xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .\32xl\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .\32xl\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .\32xl\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .\32xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .\32xl\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .\32xl\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .\32xl\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .\32xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .\32xl\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .\32xl\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .\32xl\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .\32xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .\32xl\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .\32xl\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .\32xl\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .\32xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .\32xl\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .\32xl\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .\32xl\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .\32xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .\32xl\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .\32xl\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .\32xl\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .\32xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .\32xl\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .\32xl\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .\32xl\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .\32xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .\32xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .\32xl\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .\32xl\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .\32xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .\32xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .\32xl\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .\32xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .\32xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .\32xl\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .\32xl\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .\32xl\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .\32xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .\32xl\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .\32xl\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .\32xl\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .\32xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .\32xl\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .\32xl\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .\32xl\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .\32xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .\32xl\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .\32xl\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .\32xl\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .\32xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .\32xl\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .\32xl\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .\32xl\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .\32xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .\32xl\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .\32xl\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .\32xl\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .\32xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .\32xl\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .\32xl\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .\32xl\:rounded-tl-none { + border-top-left-radius: 0px; } - .\32xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .\32xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .\32xl\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .\32xl\:rounded-tl { + border-top-left-radius: 0.25rem; } - .\32xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .\32xl\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .\32xl\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .\32xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .\32xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .\32xl\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .\32xl\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .\32xl\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .\32xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .\32xl\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .\32xl\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .\32xl\:rounded-tl-full { + border-top-left-radius: 9999px; } - .\32xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .\32xl\:rounded-tr-none { + border-top-right-radius: 0px; } - .\32xl\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .\32xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .\32xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .\32xl\:rounded-tr { + border-top-right-radius: 0.25rem; } - .\32xl\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .\32xl\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .\32xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .\32xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .\32xl\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .\32xl\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .\32xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .\32xl\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .\32xl\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .\32xl\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .\32xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .\32xl\:rounded-tr-full { + border-top-right-radius: 9999px; } - .\32xl\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .\32xl\:rounded-br-none { + border-bottom-right-radius: 0px; } - .\32xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .\32xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .\32xl\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .\32xl\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .\32xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .\32xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .\32xl\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .\32xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .\32xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .\32xl\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .\32xl\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .\32xl\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .\32xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .\32xl\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .\32xl\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .\32xl\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .\32xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .\32xl\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .\32xl\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .\32xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .\32xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .\32xl\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .\32xl\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .\32xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .\32xl\:mt-0 { - margin-top: 0px; + .\32xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .\32xl\:mr-0 { - margin-right: 0px; + .\32xl\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .\32xl\:mb-0 { - margin-bottom: 0px; + .\32xl\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .\32xl\:ml-0 { - margin-left: 0px; + .\32xl\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .\32xl\:mt-1 { - margin-top: 0.25rem; + .\32xl\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .\32xl\:mr-1 { - margin-right: 0.25rem; + .\32xl\:border-0 { + border-width: 0px; } - .\32xl\:mb-1 { - margin-bottom: 0.25rem; + .\32xl\:border-2 { + border-width: 2px; } - .\32xl\:ml-1 { - margin-left: 0.25rem; + .\32xl\:border-4 { + border-width: 4px; } - .\32xl\:mt-2 { - margin-top: 0.5rem; + .\32xl\:border-8 { + border-width: 8px; } - .\32xl\:mr-2 { - margin-right: 0.5rem; + .\32xl\:border { + border-width: 1px; } - .\32xl\:mb-2 { - margin-bottom: 0.5rem; + .\32xl\:border-t-0 { + border-top-width: 0px; } - .\32xl\:ml-2 { - margin-left: 0.5rem; + .\32xl\:border-t-2 { + border-top-width: 2px; } - .\32xl\:mt-3 { - margin-top: 0.75rem; + .\32xl\:border-t-4 { + border-top-width: 4px; } - .\32xl\:mr-3 { - margin-right: 0.75rem; + .\32xl\:border-t-8 { + border-top-width: 8px; } - .\32xl\:mb-3 { - margin-bottom: 0.75rem; + .\32xl\:border-t { + border-top-width: 1px; } - .\32xl\:ml-3 { - margin-left: 0.75rem; + .\32xl\:border-r-0 { + border-right-width: 0px; } - .\32xl\:mt-4 { - margin-top: 1rem; + .\32xl\:border-r-2 { + border-right-width: 2px; } - .\32xl\:mr-4 { - margin-right: 1rem; + .\32xl\:border-r-4 { + border-right-width: 4px; } - .\32xl\:mb-4 { - margin-bottom: 1rem; + .\32xl\:border-r-8 { + border-right-width: 8px; } - .\32xl\:ml-4 { - margin-left: 1rem; + .\32xl\:border-r { + border-right-width: 1px; } - .\32xl\:mt-5 { - margin-top: 1.25rem; + .\32xl\:border-b-0 { + border-bottom-width: 0px; } - .\32xl\:mr-5 { - margin-right: 1.25rem; + .\32xl\:border-b-2 { + border-bottom-width: 2px; } - .\32xl\:mb-5 { - margin-bottom: 1.25rem; + .\32xl\:border-b-4 { + border-bottom-width: 4px; } - .\32xl\:ml-5 { - margin-left: 1.25rem; + .\32xl\:border-b-8 { + border-bottom-width: 8px; } - .\32xl\:mt-6 { - margin-top: 1.5rem; + .\32xl\:border-b { + border-bottom-width: 1px; } - .\32xl\:mr-6 { - margin-right: 1.5rem; + .\32xl\:border-l-0 { + border-left-width: 0px; } - .\32xl\:mb-6 { - margin-bottom: 1.5rem; + .\32xl\:border-l-2 { + border-left-width: 2px; } - .\32xl\:ml-6 { - margin-left: 1.5rem; + .\32xl\:border-l-4 { + border-left-width: 4px; } - .\32xl\:mt-7 { - margin-top: 1.75rem; + .\32xl\:border-l-8 { + border-left-width: 8px; } - .\32xl\:mr-7 { - margin-right: 1.75rem; + .\32xl\:border-l { + border-left-width: 1px; } - .\32xl\:mb-7 { - margin-bottom: 1.75rem; + .\32xl\:border-solid { + border-style: solid; } - .\32xl\:ml-7 { - margin-left: 1.75rem; + .\32xl\:border-dashed { + border-style: dashed; } - .\32xl\:mt-8 { - margin-top: 2rem; + .\32xl\:border-dotted { + border-style: dotted; } - .\32xl\:mr-8 { - margin-right: 2rem; + .\32xl\:border-double { + border-style: double; } - .\32xl\:mb-8 { - margin-bottom: 2rem; + .\32xl\:border-none { + border-style: none; } - .\32xl\:ml-8 { - margin-left: 2rem; + .\32xl\:border-transparent { + border-color: transparent; } - .\32xl\:mt-9 { - margin-top: 2.25rem; + .\32xl\:border-current { + border-color: currentColor; } - .\32xl\:mr-9 { - margin-right: 2.25rem; + .\32xl\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .\32xl\:mb-9 { - margin-bottom: 2.25rem; + .\32xl\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .\32xl\:ml-9 { - margin-left: 2.25rem; + .\32xl\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .\32xl\:mt-10 { - margin-top: 2.5rem; + .\32xl\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .\32xl\:mr-10 { - margin-right: 2.5rem; + .\32xl\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .\32xl\:mb-10 { - margin-bottom: 2.5rem; + .\32xl\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .\32xl\:ml-10 { - margin-left: 2.5rem; + .\32xl\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .\32xl\:mt-11 { - margin-top: 2.75rem; + .\32xl\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .\32xl\:mr-11 { - margin-right: 2.75rem; + .\32xl\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .\32xl\:mb-11 { - margin-bottom: 2.75rem; + .\32xl\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .\32xl\:ml-11 { - margin-left: 2.75rem; + .\32xl\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .\32xl\:mt-12 { - margin-top: 3rem; + .\32xl\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .\32xl\:mr-12 { - margin-right: 3rem; + .\32xl\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .\32xl\:mb-12 { - margin-bottom: 3rem; + .\32xl\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .\32xl\:ml-12 { - margin-left: 3rem; + .\32xl\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .\32xl\:mt-14 { - margin-top: 3.5rem; + .\32xl\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .\32xl\:mr-14 { - margin-right: 3.5rem; + .\32xl\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .\32xl\:mb-14 { - margin-bottom: 3.5rem; + .\32xl\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .\32xl\:ml-14 { - margin-left: 3.5rem; + .\32xl\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .\32xl\:mt-16 { - margin-top: 4rem; + .\32xl\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .\32xl\:mr-16 { - margin-right: 4rem; + .\32xl\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .\32xl\:mb-16 { - margin-bottom: 4rem; + .\32xl\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .\32xl\:ml-16 { - margin-left: 4rem; + .\32xl\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .\32xl\:mt-20 { - margin-top: 5rem; + .\32xl\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .\32xl\:mr-20 { - margin-right: 5rem; + .\32xl\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .\32xl\:mb-20 { - margin-bottom: 5rem; + .\32xl\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .\32xl\:ml-20 { - margin-left: 5rem; + .\32xl\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .\32xl\:mt-24 { - margin-top: 6rem; + .\32xl\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .\32xl\:mr-24 { - margin-right: 6rem; + .\32xl\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .\32xl\:mb-24 { - margin-bottom: 6rem; + .\32xl\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .\32xl\:ml-24 { - margin-left: 6rem; + .\32xl\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .\32xl\:mt-28 { - margin-top: 7rem; + .\32xl\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .\32xl\:mr-28 { - margin-right: 7rem; + .\32xl\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .\32xl\:mb-28 { - margin-bottom: 7rem; + .\32xl\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .\32xl\:ml-28 { - margin-left: 7rem; + .\32xl\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .\32xl\:mt-32 { - margin-top: 8rem; + .\32xl\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .\32xl\:mr-32 { - margin-right: 8rem; + .\32xl\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .\32xl\:mb-32 { - margin-bottom: 8rem; + .\32xl\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .\32xl\:ml-32 { - margin-left: 8rem; + .\32xl\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .\32xl\:mt-36 { - margin-top: 9rem; + .\32xl\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .\32xl\:mr-36 { - margin-right: 9rem; + .\32xl\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .\32xl\:mb-36 { - margin-bottom: 9rem; + .\32xl\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .\32xl\:ml-36 { - margin-left: 9rem; + .\32xl\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .\32xl\:mt-40 { - margin-top: 10rem; + .\32xl\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .\32xl\:mr-40 { - margin-right: 10rem; + .\32xl\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .\32xl\:mb-40 { - margin-bottom: 10rem; + .\32xl\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .\32xl\:ml-40 { - margin-left: 10rem; + .\32xl\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .\32xl\:mt-44 { - margin-top: 11rem; + .\32xl\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .\32xl\:mr-44 { - margin-right: 11rem; + .\32xl\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .\32xl\:mb-44 { - margin-bottom: 11rem; + .\32xl\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .\32xl\:ml-44 { - margin-left: 11rem; + .\32xl\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .\32xl\:mt-48 { - margin-top: 12rem; + .\32xl\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .\32xl\:mr-48 { - margin-right: 12rem; + .\32xl\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .\32xl\:mb-48 { - margin-bottom: 12rem; + .\32xl\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .\32xl\:ml-48 { - margin-left: 12rem; + .\32xl\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .\32xl\:mt-52 { - margin-top: 13rem; + .\32xl\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .\32xl\:mr-52 { - margin-right: 13rem; + .\32xl\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .\32xl\:mb-52 { - margin-bottom: 13rem; + .\32xl\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .\32xl\:ml-52 { - margin-left: 13rem; + .\32xl\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .\32xl\:mt-56 { - margin-top: 14rem; + .\32xl\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .\32xl\:mr-56 { - margin-right: 14rem; + .\32xl\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .\32xl\:mb-56 { - margin-bottom: 14rem; + .\32xl\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .\32xl\:ml-56 { - margin-left: 14rem; + .\32xl\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .\32xl\:mt-60 { - margin-top: 15rem; + .\32xl\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .\32xl\:mr-60 { - margin-right: 15rem; + .\32xl\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .\32xl\:mb-60 { - margin-bottom: 15rem; + .\32xl\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .\32xl\:ml-60 { - margin-left: 15rem; + .\32xl\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .\32xl\:mt-64 { - margin-top: 16rem; + .\32xl\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .\32xl\:mr-64 { - margin-right: 16rem; + .\32xl\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .\32xl\:mb-64 { - margin-bottom: 16rem; + .\32xl\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .\32xl\:ml-64 { - margin-left: 16rem; + .\32xl\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .\32xl\:mt-72 { - margin-top: 18rem; + .\32xl\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .\32xl\:mr-72 { - margin-right: 18rem; + .\32xl\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .\32xl\:mb-72 { - margin-bottom: 18rem; + .\32xl\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .\32xl\:ml-72 { - margin-left: 18rem; + .\32xl\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .\32xl\:mt-80 { - margin-top: 20rem; + .\32xl\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + } + + .\32xl\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .\32xl\:mr-80 { - margin-right: 20rem; + .\32xl\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .\32xl\:mb-80 { - margin-bottom: 20rem; + .\32xl\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .\32xl\:ml-80 { - margin-left: 20rem; + .\32xl\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .\32xl\:mt-96 { - margin-top: 24rem; + .\32xl\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .\32xl\:mr-96 { - margin-right: 24rem; + .\32xl\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .\32xl\:mb-96 { - margin-bottom: 24rem; + .group:hover .\32xl\:group-hover\:border-transparent { + border-color: transparent; } - .\32xl\:ml-96 { - margin-left: 24rem; + .group:hover .\32xl\:group-hover\:border-current { + border-color: currentColor; } - .\32xl\:mt-auto { - margin-top: auto; + .group:hover .\32xl\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .\32xl\:mr-auto { - margin-right: auto; + .group:hover .\32xl\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .\32xl\:mb-auto { - margin-bottom: auto; + .group:hover .\32xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .\32xl\:ml-auto { - margin-left: auto; + .group:hover .\32xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .\32xl\:mt-px { - margin-top: 1px; + .group:hover .\32xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .\32xl\:mr-px { - margin-right: 1px; + .group:hover .\32xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .\32xl\:mb-px { - margin-bottom: 1px; + .group:hover .\32xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .\32xl\:ml-px { - margin-left: 1px; + .group:hover .\32xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .\32xl\:mt-0\.5 { - margin-top: 0.125rem; + .group:hover .\32xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .\32xl\:mr-0\.5 { - margin-right: 0.125rem; + .group:hover .\32xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .\32xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .group:hover .\32xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .\32xl\:ml-0\.5 { - margin-left: 0.125rem; + .group:hover .\32xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .\32xl\:mt-1\.5 { - margin-top: 0.375rem; + .group:hover .\32xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .\32xl\:mr-1\.5 { - margin-right: 0.375rem; + .group:hover .\32xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .\32xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .group:hover .\32xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .\32xl\:ml-1\.5 { - margin-left: 0.375rem; + .group:hover .\32xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .\32xl\:mt-2\.5 { - margin-top: 0.625rem; + .group:hover .\32xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .\32xl\:mr-2\.5 { - margin-right: 0.625rem; + .group:hover .\32xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .\32xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .group:hover .\32xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .\32xl\:ml-2\.5 { - margin-left: 0.625rem; + .group:hover .\32xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .\32xl\:mt-3\.5 { - margin-top: 0.875rem; + .group:hover .\32xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .\32xl\:mr-3\.5 { - margin-right: 0.875rem; + .group:hover .\32xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .\32xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .group:hover .\32xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .\32xl\:ml-3\.5 { - margin-left: 0.875rem; + .group:hover .\32xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .\32xl\:-mt-0 { - margin-top: 0px; + .group:hover .\32xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .\32xl\:-mr-0 { - margin-right: 0px; + .group:hover .\32xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .\32xl\:-mb-0 { - margin-bottom: 0px; + .group:hover .\32xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .\32xl\:-ml-0 { - margin-left: 0px; + .group:hover .\32xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .\32xl\:-mt-1 { - margin-top: -0.25rem; + .group:hover .\32xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .\32xl\:-mr-1 { - margin-right: -0.25rem; + .group:hover .\32xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .\32xl\:-mb-1 { - margin-bottom: -0.25rem; + .group:hover .\32xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .\32xl\:-ml-1 { - margin-left: -0.25rem; + .group:hover .\32xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .\32xl\:-mt-2 { - margin-top: -0.5rem; + .group:hover .\32xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .\32xl\:-mr-2 { - margin-right: -0.5rem; + .group:hover .\32xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .\32xl\:-mb-2 { - margin-bottom: -0.5rem; + .group:hover .\32xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .\32xl\:-ml-2 { - margin-left: -0.5rem; + .group:hover .\32xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .\32xl\:-mt-3 { - margin-top: -0.75rem; + .group:hover .\32xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .\32xl\:-mr-3 { - margin-right: -0.75rem; + .group:hover .\32xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .\32xl\:-mb-3 { - margin-bottom: -0.75rem; + .group:hover .\32xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .\32xl\:-ml-3 { - margin-left: -0.75rem; + .group:hover .\32xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .\32xl\:-mt-4 { - margin-top: -1rem; + .group:hover .\32xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .\32xl\:-mr-4 { - margin-right: -1rem; + .group:hover .\32xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .\32xl\:-mb-4 { - margin-bottom: -1rem; + .group:hover .\32xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .\32xl\:-ml-4 { - margin-left: -1rem; + .group:hover .\32xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .\32xl\:-mt-5 { - margin-top: -1.25rem; + .group:hover .\32xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .\32xl\:-mr-5 { - margin-right: -1.25rem; + .group:hover .\32xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .\32xl\:-mb-5 { - margin-bottom: -1.25rem; + .group:hover .\32xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .\32xl\:-ml-5 { - margin-left: -1.25rem; + .group:hover .\32xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .\32xl\:-mt-6 { - margin-top: -1.5rem; + .group:hover .\32xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .\32xl\:-mr-6 { - margin-right: -1.5rem; + .group:hover .\32xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .\32xl\:-mb-6 { - margin-bottom: -1.5rem; + .group:hover .\32xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .\32xl\:-ml-6 { - margin-left: -1.5rem; + .group:hover .\32xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .\32xl\:-mt-7 { - margin-top: -1.75rem; + .group:hover .\32xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .\32xl\:-mr-7 { - margin-right: -1.75rem; + .group:hover .\32xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .\32xl\:-mb-7 { - margin-bottom: -1.75rem; + .group:hover .\32xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .\32xl\:-ml-7 { - margin-left: -1.75rem; + .group:hover .\32xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .\32xl\:-mt-8 { - margin-top: -2rem; + .group:hover .\32xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .\32xl\:-mr-8 { - margin-right: -2rem; + .group:hover .\32xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .\32xl\:-mb-8 { - margin-bottom: -2rem; + .group:hover .\32xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .\32xl\:-ml-8 { - margin-left: -2rem; + .group:hover .\32xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .\32xl\:-mt-9 { - margin-top: -2.25rem; + .group:hover .\32xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .\32xl\:-mr-9 { - margin-right: -2.25rem; + .group:hover .\32xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .\32xl\:-mb-9 { - margin-bottom: -2.25rem; + .group:hover .\32xl\:group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .\32xl\:-ml-9 { - margin-left: -2.25rem; + .group:hover .\32xl\:group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .\32xl\:-mt-10 { - margin-top: -2.5rem; + .group:hover .\32xl\:group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .\32xl\:-mr-10 { - margin-right: -2.5rem; + .group:hover .\32xl\:group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .\32xl\:-mb-10 { - margin-bottom: -2.5rem; + .group:hover .\32xl\:group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .\32xl\:-ml-10 { - margin-left: -2.5rem; + .group:hover .\32xl\:group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .\32xl\:-mt-11 { - margin-top: -2.75rem; + .group:hover .\32xl\:group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .\32xl\:-mr-11 { - margin-right: -2.75rem; + .group:hover .\32xl\:group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .\32xl\:-mb-11 { - margin-bottom: -2.75rem; + .group:hover .\32xl\:group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .\32xl\:-ml-11 { - margin-left: -2.75rem; + .group:hover .\32xl\:group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .\32xl\:-mt-12 { - margin-top: -3rem; + .group:hover .\32xl\:group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .\32xl\:-mr-12 { - margin-right: -3rem; + .group:hover .\32xl\:group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .\32xl\:-mb-12 { - margin-bottom: -3rem; + .group:hover .\32xl\:group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .\32xl\:-ml-12 { - margin-left: -3rem; + .group:hover .\32xl\:group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .\32xl\:-mt-14 { - margin-top: -3.5rem; + .group:hover .\32xl\:group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .\32xl\:-mr-14 { - margin-right: -3.5rem; + .group:hover .\32xl\:group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .\32xl\:-mb-14 { - margin-bottom: -3.5rem; + .group:hover .\32xl\:group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .\32xl\:-ml-14 { - margin-left: -3.5rem; + .group:hover .\32xl\:group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .\32xl\:-mt-16 { - margin-top: -4rem; + .group:hover .\32xl\:group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .\32xl\:-mr-16 { - margin-right: -4rem; + .group:hover .\32xl\:group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .\32xl\:-mb-16 { - margin-bottom: -4rem; + .\32xl\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .\32xl\:-ml-16 { - margin-left: -4rem; + .\32xl\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .\32xl\:-mt-20 { - margin-top: -5rem; + .\32xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .\32xl\:-mr-20 { - margin-right: -5rem; + .\32xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .\32xl\:-mb-20 { - margin-bottom: -5rem; + .\32xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .\32xl\:-ml-20 { - margin-left: -5rem; + .\32xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .\32xl\:-mt-24 { - margin-top: -6rem; + .\32xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .\32xl\:-mr-24 { - margin-right: -6rem; + .\32xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .\32xl\:-mb-24 { - margin-bottom: -6rem; + .\32xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .\32xl\:-ml-24 { - margin-left: -6rem; + .\32xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .\32xl\:-mt-28 { - margin-top: -7rem; + .\32xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .\32xl\:-mr-28 { - margin-right: -7rem; + .\32xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .\32xl\:-mb-28 { - margin-bottom: -7rem; + .\32xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .\32xl\:-ml-28 { - margin-left: -7rem; + .\32xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .\32xl\:-mt-32 { - margin-top: -8rem; + .\32xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .\32xl\:-mr-32 { - margin-right: -8rem; + .\32xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .\32xl\:-mb-32 { - margin-bottom: -8rem; + .\32xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .\32xl\:-ml-32 { - margin-left: -8rem; + .\32xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .\32xl\:-mt-36 { - margin-top: -9rem; + .\32xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .\32xl\:-mr-36 { - margin-right: -9rem; + .\32xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .\32xl\:-mb-36 { - margin-bottom: -9rem; + .\32xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .\32xl\:-ml-36 { - margin-left: -9rem; + .\32xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .\32xl\:-mt-40 { - margin-top: -10rem; + .\32xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .\32xl\:-mr-40 { - margin-right: -10rem; + .\32xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .\32xl\:-mb-40 { - margin-bottom: -10rem; + .\32xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .\32xl\:-ml-40 { - margin-left: -10rem; + .\32xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .\32xl\:-mt-44 { - margin-top: -11rem; + .\32xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .\32xl\:-mr-44 { - margin-right: -11rem; + .\32xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .\32xl\:-mb-44 { - margin-bottom: -11rem; + .\32xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .\32xl\:-ml-44 { - margin-left: -11rem; + .\32xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .\32xl\:-mt-48 { - margin-top: -12rem; + .\32xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .\32xl\:-mr-48 { - margin-right: -12rem; + .\32xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .\32xl\:-mb-48 { - margin-bottom: -12rem; + .\32xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .\32xl\:-ml-48 { - margin-left: -12rem; + .\32xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .\32xl\:-mt-52 { - margin-top: -13rem; + .\32xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .\32xl\:-mr-52 { - margin-right: -13rem; + .\32xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .\32xl\:-mb-52 { - margin-bottom: -13rem; + .\32xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .\32xl\:-ml-52 { - margin-left: -13rem; + .\32xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .\32xl\:-mt-56 { - margin-top: -14rem; + .\32xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .\32xl\:-mr-56 { - margin-right: -14rem; + .\32xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .\32xl\:-mb-56 { - margin-bottom: -14rem; + .\32xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .\32xl\:-ml-56 { - margin-left: -14rem; + .\32xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .\32xl\:-mt-60 { - margin-top: -15rem; + .\32xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .\32xl\:-mr-60 { - margin-right: -15rem; + .\32xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .\32xl\:-mb-60 { - margin-bottom: -15rem; + .\32xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .\32xl\:-ml-60 { - margin-left: -15rem; + .\32xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .\32xl\:-mt-64 { - margin-top: -16rem; + .\32xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .\32xl\:-mr-64 { - margin-right: -16rem; + .\32xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .\32xl\:-mb-64 { - margin-bottom: -16rem; + .\32xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .\32xl\:-ml-64 { - margin-left: -16rem; + .\32xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .\32xl\:-mt-72 { - margin-top: -18rem; + .\32xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .\32xl\:-mr-72 { - margin-right: -18rem; + .\32xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .\32xl\:-mb-72 { - margin-bottom: -18rem; + .\32xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .\32xl\:-ml-72 { - margin-left: -18rem; + .\32xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .\32xl\:-mt-80 { - margin-top: -20rem; + .\32xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .\32xl\:-mr-80 { - margin-right: -20rem; + .\32xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .\32xl\:-mb-80 { - margin-bottom: -20rem; + .\32xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .\32xl\:-ml-80 { - margin-left: -20rem; + .\32xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .\32xl\:-mt-96 { - margin-top: -24rem; + .\32xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .\32xl\:-mr-96 { - margin-right: -24rem; + .\32xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .\32xl\:-mb-96 { - margin-bottom: -24rem; + .\32xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .\32xl\:-ml-96 { - margin-left: -24rem; + .\32xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .\32xl\:-mt-px { - margin-top: -1px; + .\32xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .\32xl\:-mr-px { - margin-right: -1px; + .\32xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .\32xl\:-mb-px { - margin-bottom: -1px; + .\32xl\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .\32xl\:-ml-px { - margin-left: -1px; + .\32xl\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .\32xl\:-mt-0\.5 { - margin-top: -0.125rem; + .\32xl\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .\32xl\:-mr-0\.5 { - margin-right: -0.125rem; + .\32xl\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .\32xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .\32xl\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .\32xl\:-ml-0\.5 { - margin-left: -0.125rem; + .\32xl\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .\32xl\:-mt-1\.5 { - margin-top: -0.375rem; + .\32xl\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .\32xl\:-mr-1\.5 { - margin-right: -0.375rem; + .\32xl\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .\32xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .\32xl\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .\32xl\:-ml-1\.5 { - margin-left: -0.375rem; + .\32xl\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .\32xl\:-mt-2\.5 { - margin-top: -0.625rem; + .\32xl\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .\32xl\:-mr-2\.5 { - margin-right: -0.625rem; + .\32xl\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .\32xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .\32xl\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .\32xl\:-ml-2\.5 { - margin-left: -0.625rem; + .\32xl\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .\32xl\:-mt-3\.5 { - margin-top: -0.875rem; + .\32xl\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .\32xl\:-mr-3\.5 { - margin-right: -0.875rem; + .\32xl\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .\32xl\:-mb-3\.5 { - margin-bottom: -0.875rem; + .\32xl\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .\32xl\:-ml-3\.5 { - margin-left: -0.875rem; + .\32xl\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .\32xl\:max-h-0 { - max-height: 0px; + .\32xl\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .\32xl\:max-h-1 { - max-height: 0.25rem; + .\32xl\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .\32xl\:max-h-2 { - max-height: 0.5rem; + .\32xl\:hover\:border-transparent:hover { + border-color: transparent; } - .\32xl\:max-h-3 { - max-height: 0.75rem; + .\32xl\:hover\:border-current:hover { + border-color: currentColor; } - .\32xl\:max-h-4 { - max-height: 1rem; + .\32xl\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .\32xl\:max-h-5 { - max-height: 1.25rem; + .\32xl\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .\32xl\:max-h-6 { - max-height: 1.5rem; + .\32xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .\32xl\:max-h-7 { - max-height: 1.75rem; + .\32xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .\32xl\:max-h-8 { - max-height: 2rem; + .\32xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .\32xl\:max-h-9 { - max-height: 2.25rem; + .\32xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .\32xl\:max-h-10 { - max-height: 2.5rem; + .\32xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .\32xl\:max-h-11 { - max-height: 2.75rem; + .\32xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .\32xl\:max-h-12 { - max-height: 3rem; + .\32xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .\32xl\:max-h-14 { - max-height: 3.5rem; + .\32xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .\32xl\:max-h-16 { - max-height: 4rem; + .\32xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .\32xl\:max-h-20 { - max-height: 5rem; + .\32xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .\32xl\:max-h-24 { - max-height: 6rem; + .\32xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .\32xl\:max-h-28 { - max-height: 7rem; + .\32xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .\32xl\:max-h-32 { - max-height: 8rem; + .\32xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .\32xl\:max-h-36 { - max-height: 9rem; + .\32xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .\32xl\:max-h-40 { - max-height: 10rem; + .\32xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .\32xl\:max-h-44 { - max-height: 11rem; + .\32xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .\32xl\:max-h-48 { - max-height: 12rem; + .\32xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .\32xl\:max-h-52 { - max-height: 13rem; + .\32xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .\32xl\:max-h-56 { - max-height: 14rem; + .\32xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .\32xl\:max-h-60 { - max-height: 15rem; + .\32xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .\32xl\:max-h-64 { - max-height: 16rem; + .\32xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .\32xl\:max-h-72 { - max-height: 18rem; + .\32xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .\32xl\:max-h-80 { - max-height: 20rem; + .\32xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .\32xl\:max-h-96 { - max-height: 24rem; + .\32xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .\32xl\:max-h-px { - max-height: 1px; + .\32xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .\32xl\:max-h-0\.5 { - max-height: 0.125rem; + .\32xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .\32xl\:max-h-1\.5 { - max-height: 0.375rem; + .\32xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .\32xl\:max-h-2\.5 { - max-height: 0.625rem; + .\32xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .\32xl\:max-h-3\.5 { - max-height: 0.875rem; + .\32xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .\32xl\:max-h-full { - max-height: 100%; + .\32xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .\32xl\:max-h-screen { - max-height: 100vh; + .\32xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .\32xl\:max-w-0 { - max-width: 0rem; + .\32xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .\32xl\:max-w-none { - max-width: none; + .\32xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .\32xl\:max-w-xs { - max-width: 20rem; + .\32xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .\32xl\:max-w-sm { - max-width: 24rem; + .\32xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .\32xl\:max-w-md { - max-width: 28rem; + .\32xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .\32xl\:max-w-lg { - max-width: 32rem; + .\32xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .\32xl\:max-w-xl { - max-width: 36rem; + .\32xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .\32xl\:max-w-2xl { - max-width: 42rem; + .\32xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .\32xl\:max-w-3xl { - max-width: 48rem; + .\32xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .\32xl\:max-w-4xl { - max-width: 56rem; + .\32xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .\32xl\:max-w-5xl { - max-width: 64rem; + .\32xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .\32xl\:max-w-6xl { - max-width: 72rem; + .\32xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .\32xl\:max-w-7xl { - max-width: 80rem; + .\32xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .\32xl\:max-w-full { - max-width: 100%; + .\32xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .\32xl\:max-w-min { - max-width: min-content; + .\32xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .\32xl\:max-w-max { - max-width: max-content; + .\32xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .\32xl\:max-w-prose { - max-width: 65ch; + .\32xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .\32xl\:max-w-screen-sm { - max-width: 640px; + .\32xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .\32xl\:max-w-screen-md { - max-width: 768px; + .\32xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .\32xl\:max-w-screen-lg { - max-width: 1024px; + .\32xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .\32xl\:max-w-screen-xl { - max-width: 1280px; + .\32xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .\32xl\:max-w-screen-2xl { - max-width: 1536px; + .\32xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .\32xl\:min-h-0 { - min-height: 0px; + .\32xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .\32xl\:min-h-full { - min-height: 100%; + .\32xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .\32xl\:min-h-screen { - min-height: 100vh; + .\32xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .\32xl\:min-w-0 { - min-width: 0px; + .\32xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .\32xl\:min-w-full { - min-width: 100%; + .\32xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .\32xl\:min-w-min { - min-width: min-content; + .\32xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .\32xl\:min-w-max { - min-width: max-content; + .\32xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .\32xl\:object-contain { - object-fit: contain; + .\32xl\:hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .\32xl\:object-cover { - object-fit: cover; + .\32xl\:hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .\32xl\:object-fill { - object-fit: fill; + .\32xl\:hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .\32xl\:object-none { - object-fit: none; + .\32xl\:hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .\32xl\:object-scale-down { - object-fit: scale-down; + .\32xl\:hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .\32xl\:object-bottom { - object-position: bottom; + .\32xl\:hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .\32xl\:object-center { - object-position: center; + .\32xl\:hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .\32xl\:object-left { - object-position: left; + .\32xl\:hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .\32xl\:object-left-bottom { - object-position: left bottom; + .\32xl\:hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .\32xl\:object-left-top { - object-position: left top; + .\32xl\:hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .\32xl\:object-right { - object-position: right; + .\32xl\:hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .\32xl\:object-right-bottom { - object-position: right bottom; + .\32xl\:hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .\32xl\:object-right-top { - object-position: right top; + .\32xl\:hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .\32xl\:object-top { - object-position: top; + .\32xl\:hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .\32xl\:opacity-0 { - opacity: 0; + .\32xl\:hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .\32xl\:opacity-5 { - opacity: 0.05; + .\32xl\:hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .\32xl\:opacity-10 { - opacity: 0.1; + .\32xl\:hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .\32xl\:opacity-20 { - opacity: 0.2; + .\32xl\:hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .\32xl\:opacity-25 { - opacity: 0.25; + .\32xl\:hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .\32xl\:opacity-30 { - opacity: 0.3; + .\32xl\:hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .\32xl\:opacity-40 { - opacity: 0.4; + .\32xl\:focus\:border-transparent:focus { + border-color: transparent; } - .\32xl\:opacity-50 { - opacity: 0.5; + .\32xl\:focus\:border-current:focus { + border-color: currentColor; } - .\32xl\:opacity-60 { - opacity: 0.6; + .\32xl\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .\32xl\:opacity-70 { - opacity: 0.7; + .\32xl\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .\32xl\:opacity-75 { - opacity: 0.75; + .\32xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .\32xl\:opacity-80 { - opacity: 0.8; + .\32xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .\32xl\:opacity-90 { - opacity: 0.9; + .\32xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .\32xl\:opacity-95 { - opacity: 0.95; + .\32xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .\32xl\:opacity-100 { - opacity: 1; + .\32xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-0 { - opacity: 0; + .\32xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-5 { - opacity: 0.05; + .\32xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-10 { - opacity: 0.1; + .\32xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-20 { - opacity: 0.2; + .\32xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-25 { - opacity: 0.25; + .\32xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-30 { - opacity: 0.3; + .\32xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-40 { - opacity: 0.4; + .\32xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-50 { - opacity: 0.5; + .\32xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-60 { - opacity: 0.6; + .\32xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-70 { - opacity: 0.7; + .\32xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-75 { - opacity: 0.75; + .\32xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-80 { - opacity: 0.8; + .\32xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-90 { - opacity: 0.9; + .\32xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-95 { - opacity: 0.95; + .\32xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-100 { - opacity: 1; + .\32xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-0:focus-within { - opacity: 0; + .\32xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .\32xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .\32xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .\32xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .\32xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .\32xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .\32xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .\32xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .\32xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .\32xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .\32xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .\32xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .\32xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .\32xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-100:focus-within { - opacity: 1; + .\32xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-0:hover { - opacity: 0; + .\32xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-5:hover { - opacity: 0.05; + .\32xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-10:hover { - opacity: 0.1; + .\32xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-20:hover { - opacity: 0.2; + .\32xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-25:hover { - opacity: 0.25; + .\32xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-30:hover { - opacity: 0.3; + .\32xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-40:hover { - opacity: 0.4; + .\32xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-50:hover { - opacity: 0.5; + .\32xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-60:hover { - opacity: 0.6; + .\32xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-70:hover { - opacity: 0.7; + .\32xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-75:hover { - opacity: 0.75; + .\32xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-80:hover { - opacity: 0.8; + .\32xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-90:hover { - opacity: 0.9; + .\32xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-95:hover { - opacity: 0.95; + .\32xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-100:hover { - opacity: 1; + .\32xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-0:focus { - opacity: 0; + .\32xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-5:focus { - opacity: 0.05; + .\32xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-10:focus { - opacity: 0.1; + .\32xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-20:focus { - opacity: 0.2; + .\32xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-25:focus { - opacity: 0.25; + .\32xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-30:focus { - opacity: 0.3; + .\32xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-40:focus { - opacity: 0.4; + .\32xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-50:focus { - opacity: 0.5; + .\32xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-60:focus { - opacity: 0.6; + .\32xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-70:focus { - opacity: 0.7; + .\32xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-75:focus { - opacity: 0.75; + .\32xl\:focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-80:focus { - opacity: 0.8; + .\32xl\:focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-90:focus { - opacity: 0.9; + .\32xl\:focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-95:focus { - opacity: 0.95; + .\32xl\:focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-100:focus { - opacity: 1; + .\32xl\:focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .\32xl\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .\32xl\:focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .\32xl\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .\32xl\:focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .\32xl\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .\32xl\:focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .\32xl\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .\32xl\:focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .\32xl\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .\32xl\:focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .\32xl\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .\32xl\:focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .\32xl\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .\32xl\:focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .\32xl\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .\32xl\:focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .\32xl\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .\32xl\:focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .\32xl\:overflow-auto { - overflow: auto; + .\32xl\:focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .\32xl\:overflow-hidden { - overflow: hidden; + .\32xl\:focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .\32xl\:overflow-visible { - overflow: visible; + .\32xl\:focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .\32xl\:overflow-scroll { - overflow: scroll; + .\32xl\:focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .\32xl\:overflow-x-auto { - overflow-x: auto; + .\32xl\:focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .\32xl\:overflow-y-auto { - overflow-y: auto; + .\32xl\:focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .\32xl\:overflow-x-hidden { - overflow-x: hidden; + .\32xl\:border-opacity-0 { + --tw-border-opacity: 0; } - .\32xl\:overflow-y-hidden { - overflow-y: hidden; + .\32xl\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .\32xl\:overflow-x-visible { - overflow-x: visible; + .\32xl\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .\32xl\:overflow-y-visible { - overflow-y: visible; + .\32xl\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .\32xl\:overflow-x-scroll { - overflow-x: scroll; + .\32xl\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .\32xl\:overflow-y-scroll { - overflow-y: scroll; + .\32xl\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .\32xl\:overscroll-auto { - overscroll-behavior: auto; + .\32xl\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .\32xl\:overscroll-contain { - overscroll-behavior: contain; + .\32xl\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .\32xl\:overscroll-none { - overscroll-behavior: none; + .\32xl\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .\32xl\:overscroll-y-auto { - overscroll-behavior-y: auto; + .\32xl\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .\32xl\:overscroll-y-contain { - overscroll-behavior-y: contain; + .\32xl\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .\32xl\:overscroll-y-none { - overscroll-behavior-y: none; + .\32xl\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .\32xl\:overscroll-x-auto { - overscroll-behavior-x: auto; + .\32xl\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .\32xl\:overscroll-x-contain { - overscroll-behavior-x: contain; + .\32xl\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .\32xl\:overscroll-x-none { - overscroll-behavior-x: none; + .\32xl\:border-opacity-100 { + --tw-border-opacity: 1; } - .\32xl\:p-0 { - padding: 0px; + .group:hover .\32xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } - .\32xl\:p-1 { - padding: 0.25rem; + .group:hover .\32xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .\32xl\:p-2 { - padding: 0.5rem; + .group:hover .\32xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .\32xl\:p-3 { - padding: 0.75rem; + .group:hover .\32xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .\32xl\:p-4 { - padding: 1rem; + .group:hover .\32xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .\32xl\:p-5 { - padding: 1.25rem; + .group:hover .\32xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .\32xl\:p-6 { - padding: 1.5rem; + .group:hover .\32xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .\32xl\:p-7 { - padding: 1.75rem; + .group:hover .\32xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .\32xl\:p-8 { - padding: 2rem; + .group:hover .\32xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .\32xl\:p-9 { - padding: 2.25rem; + .group:hover .\32xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .\32xl\:p-10 { - padding: 2.5rem; + .group:hover .\32xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .\32xl\:p-11 { - padding: 2.75rem; + .group:hover .\32xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .\32xl\:p-12 { - padding: 3rem; + .group:hover .\32xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .\32xl\:p-14 { - padding: 3.5rem; + .group:hover .\32xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .\32xl\:p-16 { - padding: 4rem; + .group:hover .\32xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } - .\32xl\:p-20 { - padding: 5rem; + .\32xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } - .\32xl\:p-24 { - padding: 6rem; + .\32xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } - .\32xl\:p-28 { - padding: 7rem; + .\32xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } - .\32xl\:p-32 { - padding: 8rem; + .\32xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } - .\32xl\:p-36 { - padding: 9rem; + .\32xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } - .\32xl\:p-40 { - padding: 10rem; + .\32xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } - .\32xl\:p-44 { - padding: 11rem; + .\32xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } - .\32xl\:p-48 { - padding: 12rem; + .\32xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } - .\32xl\:p-52 { - padding: 13rem; + .\32xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } - .\32xl\:p-56 { - padding: 14rem; + .\32xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } - .\32xl\:p-60 { - padding: 15rem; + .\32xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } - .\32xl\:p-64 { - padding: 16rem; + .\32xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } - .\32xl\:p-72 { - padding: 18rem; + .\32xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } - .\32xl\:p-80 { - padding: 20rem; + .\32xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } - .\32xl\:p-96 { - padding: 24rem; + .\32xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } - .\32xl\:p-px { - padding: 1px; + .\32xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } - .\32xl\:p-0\.5 { - padding: 0.125rem; + .\32xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } - .\32xl\:p-1\.5 { - padding: 0.375rem; + .\32xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } - .\32xl\:p-2\.5 { - padding: 0.625rem; + .\32xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } - .\32xl\:p-3\.5 { - padding: 0.875rem; + .\32xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } - .\32xl\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .\32xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } - .\32xl\:px-0 { - padding-left: 0px; - padding-right: 0px; + .\32xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } - .\32xl\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .\32xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } - .\32xl\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .\32xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } - .\32xl\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .\32xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } - .\32xl\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .\32xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } - .\32xl\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .\32xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } - .\32xl\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .\32xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } - .\32xl\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .\32xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } - .\32xl\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .\32xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } - .\32xl\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .\32xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } - .\32xl\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .\32xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } - .\32xl\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .\32xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } - .\32xl\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .\32xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } - .\32xl\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .\32xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } - .\32xl\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .\32xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } - .\32xl\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .\32xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } - .\32xl\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .\32xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } - .\32xl\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .\32xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } - .\32xl\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .\32xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } - .\32xl\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .\32xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } - .\32xl\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .\32xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } - .\32xl\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .\32xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } - .\32xl\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .\32xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } - .\32xl\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .\32xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } - .\32xl\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .\32xl\:bg-transparent { + background-color: transparent; } - .\32xl\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .\32xl\:bg-current { + background-color: currentColor; } - .\32xl\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .\32xl\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .\32xl\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .\32xl\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .\32xl\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .\32xl\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .\32xl\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .\32xl\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .\32xl\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .\32xl\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .\32xl\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .\32xl\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .\32xl\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .\32xl\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .\32xl\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .\32xl\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .\32xl\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .\32xl\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .\32xl\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .\32xl\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .\32xl\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .\32xl\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .\32xl\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .\32xl\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .\32xl\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .\32xl\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .\32xl\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .\32xl\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .\32xl\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .\32xl\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .\32xl\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .\32xl\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .\32xl\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .\32xl\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .\32xl\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .\32xl\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .\32xl\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .\32xl\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .\32xl\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .\32xl\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .\32xl\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .\32xl\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .\32xl\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .\32xl\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .\32xl\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .\32xl\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .\32xl\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .\32xl\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .\32xl\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .\32xl\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .\32xl\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .\32xl\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .\32xl\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .\32xl\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .\32xl\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .\32xl\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .\32xl\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .\32xl\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .\32xl\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .\32xl\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .\32xl\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .\32xl\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .\32xl\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .\32xl\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .\32xl\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .\32xl\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .\32xl\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .\32xl\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .\32xl\:px-px { - padding-left: 1px; - padding-right: 1px; + .\32xl\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .\32xl\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .\32xl\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .\32xl\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .\32xl\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .\32xl\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .\32xl\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .\32xl\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .\32xl\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .\32xl\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .\32xl\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .\32xl\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .\32xl\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .\32xl\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .\32xl\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .\32xl\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .\32xl\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .\32xl\:pt-0 { - padding-top: 0px; + .\32xl\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .\32xl\:pr-0 { - padding-right: 0px; + .\32xl\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .\32xl\:pb-0 { - padding-bottom: 0px; + .\32xl\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .\32xl\:pl-0 { - padding-left: 0px; + .\32xl\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .\32xl\:pt-1 { - padding-top: 0.25rem; + .\32xl\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-1 { - padding-right: 0.25rem; + .\32xl\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .\32xl\:pb-1 { - padding-bottom: 0.25rem; + .\32xl\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .\32xl\:pl-1 { - padding-left: 0.25rem; + .\32xl\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .\32xl\:pt-2 { - padding-top: 0.5rem; + .\32xl\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .\32xl\:pr-2 { - padding-right: 0.5rem; + .\32xl\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .\32xl\:pb-2 { - padding-bottom: 0.5rem; + .\32xl\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .\32xl\:pl-2 { - padding-left: 0.5rem; + .\32xl\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .\32xl\:pt-3 { - padding-top: 0.75rem; + .\32xl\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .\32xl\:pr-3 { - padding-right: 0.75rem; + .\32xl\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .\32xl\:pb-3 { - padding-bottom: 0.75rem; + .\32xl\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .\32xl\:pl-3 { - padding-left: 0.75rem; + .\32xl\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .\32xl\:pt-4 { - padding-top: 1rem; + .\32xl\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .\32xl\:pr-4 { - padding-right: 1rem; + .\32xl\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .\32xl\:pb-4 { - padding-bottom: 1rem; + .\32xl\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .\32xl\:pl-4 { - padding-left: 1rem; + .\32xl\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .\32xl\:pt-5 { - padding-top: 1.25rem; + .\32xl\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .\32xl\:pr-5 { - padding-right: 1.25rem; + .\32xl\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .\32xl\:pb-5 { - padding-bottom: 1.25rem; + .\32xl\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .\32xl\:pl-5 { - padding-left: 1.25rem; + .\32xl\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .\32xl\:pt-6 { - padding-top: 1.5rem; + .\32xl\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-6 { - padding-right: 1.5rem; + .\32xl\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .\32xl\:pb-6 { - padding-bottom: 1.5rem; + .\32xl\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .\32xl\:pl-6 { - padding-left: 1.5rem; + .\32xl\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .\32xl\:pt-7 { - padding-top: 1.75rem; + .\32xl\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .\32xl\:pr-7 { - padding-right: 1.75rem; + .\32xl\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .\32xl\:pb-7 { - padding-bottom: 1.75rem; + .\32xl\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .\32xl\:pl-7 { - padding-left: 1.75rem; + .\32xl\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .\32xl\:pt-8 { - padding-top: 2rem; + .\32xl\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .\32xl\:pr-8 { - padding-right: 2rem; + .\32xl\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .\32xl\:pb-8 { - padding-bottom: 2rem; + .\32xl\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .\32xl\:pl-8 { - padding-left: 2rem; + .\32xl\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .\32xl\:pt-9 { - padding-top: 2.25rem; + .\32xl\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .\32xl\:pr-9 { - padding-right: 2.25rem; + .\32xl\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .\32xl\:pb-9 { - padding-bottom: 2.25rem; + .\32xl\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .\32xl\:pl-9 { - padding-left: 2.25rem; + .group:hover .\32xl\:group-hover\:bg-transparent { + background-color: transparent; } - .\32xl\:pt-10 { - padding-top: 2.5rem; + .group:hover .\32xl\:group-hover\:bg-current { + background-color: currentColor; } - .\32xl\:pr-10 { - padding-right: 2.5rem; + .group:hover .\32xl\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .\32xl\:pb-10 { - padding-bottom: 2.5rem; + .group:hover .\32xl\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .\32xl\:pl-10 { - padding-left: 2.5rem; + .group:hover .\32xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .\32xl\:pt-11 { - padding-top: 2.75rem; + .group:hover .\32xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-11 { - padding-right: 2.75rem; + .group:hover .\32xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .\32xl\:pb-11 { - padding-bottom: 2.75rem; + .group:hover .\32xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .\32xl\:pl-11 { - padding-left: 2.75rem; + .group:hover .\32xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .\32xl\:pt-12 { - padding-top: 3rem; + .group:hover .\32xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .\32xl\:pr-12 { - padding-right: 3rem; + .group:hover .\32xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .\32xl\:pb-12 { - padding-bottom: 3rem; + .group:hover .\32xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .\32xl\:pl-12 { - padding-left: 3rem; + .group:hover .\32xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .\32xl\:pt-14 { - padding-top: 3.5rem; + .group:hover .\32xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .\32xl\:pr-14 { - padding-right: 3.5rem; + .group:hover .\32xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .\32xl\:pb-14 { - padding-bottom: 3.5rem; + .group:hover .\32xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .\32xl\:pl-14 { - padding-left: 3.5rem; + .group:hover .\32xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .\32xl\:pt-16 { - padding-top: 4rem; + .group:hover .\32xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .\32xl\:pr-16 { - padding-right: 4rem; + .group:hover .\32xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .\32xl\:pb-16 { - padding-bottom: 4rem; + .group:hover .\32xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .\32xl\:pl-16 { - padding-left: 4rem; + .group:hover .\32xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .\32xl\:pt-20 { - padding-top: 5rem; + .group:hover .\32xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .\32xl\:pr-20 { - padding-right: 5rem; + .group:hover .\32xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .\32xl\:pb-20 { - padding-bottom: 5rem; + .group:hover .\32xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .\32xl\:pl-20 { - padding-left: 5rem; + .group:hover .\32xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .\32xl\:pt-24 { - padding-top: 6rem; + .group:hover .\32xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .\32xl\:pr-24 { - padding-right: 6rem; + .group:hover .\32xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .\32xl\:pb-24 { - padding-bottom: 6rem; + .group:hover .\32xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .\32xl\:pl-24 { - padding-left: 6rem; + .group:hover .\32xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .\32xl\:pt-28 { - padding-top: 7rem; + .group:hover .\32xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .\32xl\:pr-28 { - padding-right: 7rem; + .group:hover .\32xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .\32xl\:pb-28 { - padding-bottom: 7rem; + .group:hover .\32xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .\32xl\:pl-28 { - padding-left: 7rem; + .group:hover .\32xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .\32xl\:pt-32 { - padding-top: 8rem; + .group:hover .\32xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .\32xl\:pr-32 { - padding-right: 8rem; + .group:hover .\32xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .\32xl\:pb-32 { - padding-bottom: 8rem; + .group:hover .\32xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .\32xl\:pl-32 { - padding-left: 8rem; + .group:hover .\32xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .\32xl\:pt-36 { - padding-top: 9rem; + .group:hover .\32xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .\32xl\:pr-36 { - padding-right: 9rem; + .group:hover .\32xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .\32xl\:pb-36 { - padding-bottom: 9rem; + .group:hover .\32xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .\32xl\:pl-36 { - padding-left: 9rem; + .group:hover .\32xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .\32xl\:pt-40 { - padding-top: 10rem; + .group:hover .\32xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .\32xl\:pr-40 { - padding-right: 10rem; + .group:hover .\32xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .\32xl\:pb-40 { - padding-bottom: 10rem; + .group:hover .\32xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .\32xl\:pl-40 { - padding-left: 10rem; + .group:hover .\32xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .\32xl\:pt-44 { - padding-top: 11rem; + .group:hover .\32xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .\32xl\:pr-44 { - padding-right: 11rem; + .group:hover .\32xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .\32xl\:pb-44 { - padding-bottom: 11rem; + .group:hover .\32xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .\32xl\:pl-44 { - padding-left: 11rem; + .group:hover .\32xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .\32xl\:pt-48 { - padding-top: 12rem; + .group:hover .\32xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-48 { - padding-right: 12rem; + .group:hover .\32xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .\32xl\:pb-48 { - padding-bottom: 12rem; + .group:hover .\32xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .\32xl\:pl-48 { - padding-left: 12rem; + .group:hover .\32xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .\32xl\:pt-52 { - padding-top: 13rem; + .group:hover .\32xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .\32xl\:pr-52 { - padding-right: 13rem; + .group:hover .\32xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .\32xl\:pb-52 { - padding-bottom: 13rem; + .group:hover .\32xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .\32xl\:pl-52 { - padding-left: 13rem; + .group:hover .\32xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .\32xl\:pt-56 { - padding-top: 14rem; + .group:hover .\32xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .\32xl\:pr-56 { - padding-right: 14rem; + .group:hover .\32xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .\32xl\:pb-56 { - padding-bottom: 14rem; + .group:hover .\32xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .\32xl\:pl-56 { - padding-left: 14rem; + .group:hover .\32xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .\32xl\:pt-60 { - padding-top: 15rem; + .group:hover .\32xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .\32xl\:pr-60 { - padding-right: 15rem; + .group:hover .\32xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .\32xl\:pb-60 { - padding-bottom: 15rem; + .group:hover .\32xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .\32xl\:pl-60 { - padding-left: 15rem; + .group:hover .\32xl\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .\32xl\:pt-64 { - padding-top: 16rem; + .group:hover .\32xl\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .\32xl\:pr-64 { - padding-right: 16rem; + .group:hover .\32xl\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .\32xl\:pb-64 { - padding-bottom: 16rem; + .group:hover .\32xl\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .\32xl\:pl-64 { - padding-left: 16rem; + .group:hover .\32xl\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .\32xl\:pt-72 { - padding-top: 18rem; + .group:hover .\32xl\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-72 { - padding-right: 18rem; + .group:hover .\32xl\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .\32xl\:pb-72 { - padding-bottom: 18rem; + .group:hover .\32xl\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .\32xl\:pl-72 { - padding-left: 18rem; + .group:hover .\32xl\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .\32xl\:pt-80 { - padding-top: 20rem; + .group:hover .\32xl\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .\32xl\:pr-80 { - padding-right: 20rem; + .group:hover .\32xl\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .\32xl\:pb-80 { - padding-bottom: 20rem; + .group:hover .\32xl\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .\32xl\:pl-80 { - padding-left: 20rem; + .group:hover .\32xl\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .\32xl\:pt-96 { - padding-top: 24rem; + .group:hover .\32xl\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .\32xl\:pr-96 { - padding-right: 24rem; + .group:hover .\32xl\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .\32xl\:pb-96 { - padding-bottom: 24rem; + .group:hover .\32xl\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .\32xl\:pl-96 { - padding-left: 24rem; + .group:hover .\32xl\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .\32xl\:pt-px { - padding-top: 1px; + .group:hover .\32xl\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .\32xl\:pr-px { - padding-right: 1px; + .group:hover .\32xl\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .\32xl\:pb-px { - padding-bottom: 1px; + .group:hover .\32xl\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .\32xl\:pl-px { - padding-left: 1px; + .\32xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .\32xl\:pt-0\.5 { - padding-top: 0.125rem; + .\32xl\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .\32xl\:pr-0\.5 { - padding-right: 0.125rem; + .\32xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .\32xl\:pb-0\.5 { - padding-bottom: 0.125rem; + .\32xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .\32xl\:pl-0\.5 { - padding-left: 0.125rem; + .\32xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .\32xl\:pt-1\.5 { - padding-top: 0.375rem; + .\32xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-1\.5 { - padding-right: 0.375rem; + .\32xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .\32xl\:pb-1\.5 { - padding-bottom: 0.375rem; + .\32xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .\32xl\:pl-1\.5 { - padding-left: 0.375rem; + .\32xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .\32xl\:pt-2\.5 { - padding-top: 0.625rem; + .\32xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .\32xl\:pr-2\.5 { - padding-right: 0.625rem; + .\32xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .\32xl\:pb-2\.5 { - padding-bottom: 0.625rem; + .\32xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .\32xl\:pl-2\.5 { - padding-left: 0.625rem; + .\32xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .\32xl\:pt-3\.5 { - padding-top: 0.875rem; + .\32xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .\32xl\:pr-3\.5 { - padding-right: 0.875rem; + .\32xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .\32xl\:pb-3\.5 { - padding-bottom: 0.875rem; + .\32xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .\32xl\:pl-3\.5 { - padding-left: 0.875rem; + .\32xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .\32xl\:placeholder-transparent::placeholder { - color: transparent; + .\32xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .\32xl\:placeholder-current::placeholder { - color: currentColor; + .\32xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .\32xl\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .\32xl\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-transparent:hover { + background-color: transparent; } - .\32xl\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-current:hover { + background-color: currentColor; } - .\32xl\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .\32xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .\32xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-transparent:focus { + background-color: transparent; } - .\32xl\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-current:focus { + background-color: currentColor; } - .\32xl\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; + .\32xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; + .\32xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; + .\32xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; + .\32xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; + .\32xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; + .\32xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; + .\32xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; + .\32xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; + .\32xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; + .\32xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; + .\32xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; + .\32xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; + .\32xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; + .\32xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; + .\32xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; + .\32xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; + .\32xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; + .\32xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; + .\32xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; + .\32xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; + .\32xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; + .\32xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; + .\32xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; + .\32xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; + .\32xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; + .\32xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; + .\32xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; + .\32xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; + .\32xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; + .\32xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .\32xl\:pointer-events-none { - pointer-events: none; + .\32xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .\32xl\:pointer-events-auto { - pointer-events: auto; + .\32xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .\32xl\:static { - position: static; + .\32xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .\32xl\:fixed { - position: fixed; + .\32xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .\32xl\:absolute { - position: absolute; + .\32xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .\32xl\:relative { - position: relative; + .\32xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .\32xl\:sticky { - position: sticky; + .\32xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .\32xl\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .\32xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .\32xl\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .\32xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .\32xl\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .\32xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .\32xl\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .\32xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .\32xl\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .\32xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .\32xl\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .\32xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .\32xl\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .\32xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .\32xl\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .\32xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .\32xl\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .\32xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .\32xl\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .\32xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .\32xl\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .\32xl\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .\32xl\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .\32xl\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .\32xl\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .\32xl\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .\32xl\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .\32xl\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .\32xl\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .\32xl\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .\32xl\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .\32xl\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .\32xl\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .\32xl\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .\32xl\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .\32xl\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .\32xl\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .\32xl\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .\32xl\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .\32xl\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .\32xl\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .\32xl\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .\32xl\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .\32xl\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .\32xl\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .\32xl\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .\32xl\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .\32xl\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .\32xl\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .\32xl\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .\32xl\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .\32xl\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .\32xl\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .\32xl\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .\32xl\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .\32xl\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .\32xl\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .\32xl\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .\32xl\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .\32xl\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .\32xl\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .\32xl\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .\32xl\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .\32xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .\32xl\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .\32xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .\32xl\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .\32xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .\32xl\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .\32xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .\32xl\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .\32xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .\32xl\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .\32xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .\32xl\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .\32xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .\32xl\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .\32xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .\32xl\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .\32xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .\32xl\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .\32xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .\32xl\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .\32xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .\32xl\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .\32xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .\32xl\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .\32xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .\32xl\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .\32xl\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .\32xl\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .group:hover .\32xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .\32xl\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .group:hover .\32xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .\32xl\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .group:hover .\32xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .\32xl\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .group:hover .\32xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .\32xl\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .group:hover .\32xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .\32xl\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .group:hover .\32xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .\32xl\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .group:hover .\32xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .\32xl\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .group:hover .\32xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .\32xl\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .group:hover .\32xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .\32xl\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .group:hover .\32xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .\32xl\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .group:hover .\32xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .\32xl\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .group:hover .\32xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .\32xl\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .group:hover .\32xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .\32xl\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .group:hover .\32xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .\32xl\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .group:hover .\32xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .\32xl\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .\32xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } - .\32xl\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .\32xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } - .\32xl\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .\32xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } - .\32xl\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .\32xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } - .\32xl\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .\32xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } - .\32xl\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .\32xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } - .\32xl\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .\32xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } - .\32xl\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .\32xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } - .\32xl\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .\32xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } - .\32xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .\32xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } - .\32xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .\32xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } - .\32xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .\32xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } - .\32xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .\32xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } - .\32xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .\32xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } - .\32xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .\32xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } - .\32xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .\32xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } - .\32xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .\32xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } - .\32xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .\32xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } - .\32xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .\32xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } - .\32xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .\32xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } - .\32xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .\32xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } - .\32xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .\32xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } - .\32xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .\32xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } - .\32xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .\32xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } - .\32xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .\32xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } - .\32xl\:inset-y-0 { - top: 0px; - bottom: 0px; + .\32xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } - .\32xl\:inset-x-0 { - right: 0px; - left: 0px; + .\32xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } - .\32xl\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .\32xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } - .\32xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .\32xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } - .\32xl\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .\32xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } - .\32xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .\32xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } - .\32xl\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .\32xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } - .\32xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .\32xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } - .\32xl\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .\32xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } - .\32xl\:inset-x-4 { - right: 1rem; - left: 1rem; + .\32xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } - .\32xl\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .\32xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } - .\32xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .\32xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } - .\32xl\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .\32xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } - .\32xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .\32xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } - .\32xl\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .\32xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } - .\32xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .\32xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } - .\32xl\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .\32xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } - .\32xl\:inset-x-8 { - right: 2rem; - left: 2rem; + .\32xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } - .\32xl\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .\32xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } - .\32xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .\32xl\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } - .\32xl\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .\32xl\:bg-none { + background-image: none; } - .\32xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .\32xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .\32xl\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .\32xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .\32xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .\32xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .\32xl\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .\32xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .\32xl\:inset-x-12 { - right: 3rem; - left: 3rem; + .\32xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .\32xl\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .\32xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .\32xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .\32xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .\32xl\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .\32xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .\32xl\:inset-x-16 { - right: 4rem; - left: 4rem; + .\32xl\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .\32xl\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:inset-x-20 { - right: 5rem; - left: 5rem; + .\32xl\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .\32xl\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:inset-x-24 { - right: 6rem; - left: 6rem; + .\32xl\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .\32xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:inset-x-28 { - right: 7rem; - left: 7rem; + .\32xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .\32xl\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:inset-x-32 { - right: 8rem; - left: 8rem; + .\32xl\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .\32xl\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:inset-x-36 { - right: 9rem; - left: 9rem; + .\32xl\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .\32xl\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:inset-x-40 { - right: 10rem; - left: 10rem; + .\32xl\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .\32xl\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:inset-x-44 { - right: 11rem; - left: 11rem; + .\32xl\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .\32xl\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:inset-x-48 { - right: 12rem; - left: 12rem; + .\32xl\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .\32xl\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:inset-x-52 { - right: 13rem; - left: 13rem; + .\32xl\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .\32xl\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:inset-x-56 { - right: 14rem; - left: 14rem; + .\32xl\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .\32xl\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:inset-x-60 { - right: 15rem; - left: 15rem; + .\32xl\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .\32xl\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:inset-x-64 { - right: 16rem; - left: 16rem; + .\32xl\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .\32xl\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:inset-x-72 { - right: 18rem; - left: 18rem; + .\32xl\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .\32xl\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:inset-x-80 { - right: 20rem; - left: 20rem; + .\32xl\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .\32xl\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:inset-x-96 { - right: 24rem; - left: 24rem; + .\32xl\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:inset-y-auto { - top: auto; - bottom: auto; + .\32xl\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:inset-x-auto { - right: auto; - left: auto; + .\32xl\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:inset-y-px { - top: 1px; - bottom: 1px; + .\32xl\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:inset-x-px { - right: 1px; - left: 1px; + .\32xl\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .\32xl\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .\32xl\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .\32xl\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .\32xl\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .\32xl\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .\32xl\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .\32xl\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .\32xl\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:-inset-y-0 { - top: 0px; - bottom: 0px; + .\32xl\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:-inset-x-0 { - right: 0px; - left: 0px; + .\32xl\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .\32xl\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .\32xl\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .\32xl\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .\32xl\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .\32xl\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .\32xl\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .\32xl\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:-inset-x-4 { - right: -1rem; - left: -1rem; + .\32xl\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .\32xl\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .\32xl\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .\32xl\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .\32xl\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .\32xl\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .\32xl\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .\32xl\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:-inset-x-8 { - right: -2rem; - left: -2rem; + .\32xl\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .\32xl\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .\32xl\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .\32xl\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .\32xl\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .\32xl\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .\32xl\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .\32xl\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:-inset-x-12 { - right: -3rem; - left: -3rem; + .\32xl\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .\32xl\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .\32xl\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .\32xl\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:-inset-x-16 { - right: -4rem; - left: -4rem; + .\32xl\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .\32xl\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:-inset-x-20 { - right: -5rem; - left: -5rem; + .\32xl\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .\32xl\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:-inset-x-24 { - right: -6rem; - left: -6rem; + .\32xl\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .\32xl\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:-inset-x-28 { - right: -7rem; - left: -7rem; + .\32xl\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .\32xl\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:-inset-x-32 { - right: -8rem; - left: -8rem; + .\32xl\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .\32xl\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:-inset-x-36 { - right: -9rem; - left: -9rem; + .\32xl\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .\32xl\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:-inset-x-40 { - right: -10rem; - left: -10rem; + .\32xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .\32xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-inset-x-44 { - right: -11rem; - left: -11rem; + .\32xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .\32xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-inset-x-48 { - right: -12rem; - left: -12rem; + .\32xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .\32xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:-inset-x-52 { - right: -13rem; - left: -13rem; + .\32xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .\32xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:-inset-x-56 { - right: -14rem; - left: -14rem; + .\32xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .\32xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:-inset-x-60 { - right: -15rem; - left: -15rem; + .\32xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .\32xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:-inset-x-64 { - right: -16rem; - left: -16rem; + .\32xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .\32xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:-inset-x-72 { - right: -18rem; - left: -18rem; + .\32xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .\32xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:-inset-x-80 { - right: -20rem; - left: -20rem; + .\32xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .\32xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:-inset-x-96 { - right: -24rem; - left: -24rem; + .\32xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:-inset-y-px { - top: -1px; - bottom: -1px; + .\32xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:-inset-x-px { - right: -1px; - left: -1px; + .\32xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .\32xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .\32xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .\32xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .\32xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .\32xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .\32xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .\32xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .\32xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .\32xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:inset-x-1\/2 { - right: 50%; - left: 50%; + .\32xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .\32xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .\32xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .\32xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .\32xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .\32xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:inset-x-1\/4 { - right: 25%; - left: 25%; + .\32xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .\32xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:inset-x-2\/4 { - right: 50%; - left: 50%; + .\32xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .\32xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:inset-x-3\/4 { - right: 75%; - left: 75%; + .\32xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:inset-y-full { - top: 100%; - bottom: 100%; + .\32xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:inset-x-full { - right: 100%; - left: 100%; + .\32xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .\32xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .\32xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .\32xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .\32xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .\32xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .\32xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .\32xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .\32xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .\32xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .\32xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .\32xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .\32xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:-inset-y-full { - top: -100%; - bottom: -100%; + .\32xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:-inset-x-full { - right: -100%; - left: -100%; + .\32xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:top-0 { - top: 0px; + .\32xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:right-0 { - right: 0px; + .\32xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:bottom-0 { - bottom: 0px; + .\32xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:left-0 { - left: 0px; + .\32xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:top-1 { - top: 0.25rem; + .\32xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:right-1 { - right: 0.25rem; + .\32xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:bottom-1 { - bottom: 0.25rem; + .\32xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:left-1 { - left: 0.25rem; + .\32xl\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:top-2 { - top: 0.5rem; + .\32xl\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:right-2 { - right: 0.5rem; + .\32xl\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:bottom-2 { - bottom: 0.5rem; + .\32xl\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:left-2 { - left: 0.5rem; + .\32xl\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:top-3 { - top: 0.75rem; + .\32xl\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:right-3 { - right: 0.75rem; + .\32xl\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:bottom-3 { - bottom: 0.75rem; + .\32xl\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:left-3 { - left: 0.75rem; + .\32xl\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:top-4 { - top: 1rem; + .\32xl\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:right-4 { - right: 1rem; + .\32xl\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:bottom-4 { - bottom: 1rem; + .\32xl\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:left-4 { - left: 1rem; + .\32xl\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:top-5 { - top: 1.25rem; + .\32xl\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:right-5 { - right: 1.25rem; + .\32xl\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:bottom-5 { - bottom: 1.25rem; + .\32xl\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:left-5 { - left: 1.25rem; + .\32xl\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:top-6 { - top: 1.5rem; + .\32xl\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:right-6 { - right: 1.5rem; + .\32xl\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:bottom-6 { - bottom: 1.5rem; + .\32xl\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:left-6 { - left: 1.5rem; + .\32xl\:to-transparent { + --tw-gradient-to: transparent; } - .\32xl\:top-7 { - top: 1.75rem; + .\32xl\:to-current { + --tw-gradient-to: currentColor; } - .\32xl\:right-7 { - right: 1.75rem; + .\32xl\:to-black { + --tw-gradient-to: #000; } - .\32xl\:bottom-7 { - bottom: 1.75rem; + .\32xl\:to-white { + --tw-gradient-to: #fff; } - .\32xl\:left-7 { - left: 1.75rem; + .\32xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .\32xl\:top-8 { - top: 2rem; + .\32xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .\32xl\:right-8 { - right: 2rem; + .\32xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .\32xl\:bottom-8 { - bottom: 2rem; + .\32xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .\32xl\:left-8 { - left: 2rem; + .\32xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .\32xl\:top-9 { - top: 2.25rem; + .\32xl\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .\32xl\:right-9 { - right: 2.25rem; + .\32xl\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .\32xl\:bottom-9 { - bottom: 2.25rem; + .\32xl\:to-gray-700 { + --tw-gradient-to: #374151; } - .\32xl\:left-9 { - left: 2.25rem; + .\32xl\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .\32xl\:top-10 { - top: 2.5rem; + .\32xl\:to-gray-900 { + --tw-gradient-to: #111827; } - .\32xl\:right-10 { - right: 2.5rem; + .\32xl\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .\32xl\:bottom-10 { - bottom: 2.5rem; + .\32xl\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .\32xl\:left-10 { - left: 2.5rem; + .\32xl\:to-red-200 { + --tw-gradient-to: #fecaca; } - .\32xl\:top-11 { - top: 2.75rem; + .\32xl\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .\32xl\:right-11 { - right: 2.75rem; + .\32xl\:to-red-400 { + --tw-gradient-to: #f87171; } - .\32xl\:bottom-11 { - bottom: 2.75rem; + .\32xl\:to-red-500 { + --tw-gradient-to: #ef4444; } - .\32xl\:left-11 { - left: 2.75rem; + .\32xl\:to-red-600 { + --tw-gradient-to: #dc2626; } - .\32xl\:top-12 { - top: 3rem; + .\32xl\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .\32xl\:right-12 { - right: 3rem; + .\32xl\:to-red-800 { + --tw-gradient-to: #991b1b; } - .\32xl\:bottom-12 { - bottom: 3rem; + .\32xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .\32xl\:left-12 { - left: 3rem; + .\32xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .\32xl\:top-14 { - top: 3.5rem; + .\32xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .\32xl\:right-14 { - right: 3.5rem; + .\32xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .\32xl\:bottom-14 { - bottom: 3.5rem; + .\32xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .\32xl\:left-14 { - left: 3.5rem; + .\32xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .\32xl\:top-16 { - top: 4rem; + .\32xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .\32xl\:right-16 { - right: 4rem; + .\32xl\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .\32xl\:bottom-16 { - bottom: 4rem; + .\32xl\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .\32xl\:left-16 { - left: 4rem; + .\32xl\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .\32xl\:top-20 { - top: 5rem; + .\32xl\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .\32xl\:right-20 { - right: 5rem; + .\32xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .\32xl\:bottom-20 { - bottom: 5rem; + .\32xl\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .\32xl\:left-20 { - left: 5rem; + .\32xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .\32xl\:top-24 { - top: 6rem; + .\32xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .\32xl\:right-24 { - right: 6rem; + .\32xl\:to-green-400 { + --tw-gradient-to: #34d399; } - .\32xl\:bottom-24 { - bottom: 6rem; + .\32xl\:to-green-500 { + --tw-gradient-to: #10b981; } - .\32xl\:left-24 { - left: 6rem; + .\32xl\:to-green-600 { + --tw-gradient-to: #059669; } - .\32xl\:top-28 { - top: 7rem; + .\32xl\:to-green-700 { + --tw-gradient-to: #047857; } - .\32xl\:right-28 { - right: 7rem; + .\32xl\:to-green-800 { + --tw-gradient-to: #065f46; } - .\32xl\:bottom-28 { - bottom: 7rem; + .\32xl\:to-green-900 { + --tw-gradient-to: #064e3b; } - .\32xl\:left-28 { - left: 7rem; + .\32xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .\32xl\:top-32 { - top: 8rem; + .\32xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .\32xl\:right-32 { - right: 8rem; + .\32xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .\32xl\:bottom-32 { - bottom: 8rem; + .\32xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .\32xl\:left-32 { - left: 8rem; + .\32xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .\32xl\:top-36 { - top: 9rem; + .\32xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .\32xl\:right-36 { - right: 9rem; + .\32xl\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .\32xl\:bottom-36 { - bottom: 9rem; + .\32xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .\32xl\:left-36 { - left: 9rem; + .\32xl\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .\32xl\:top-40 { - top: 10rem; + .\32xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .\32xl\:right-40 { - right: 10rem; + .\32xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .\32xl\:bottom-40 { - bottom: 10rem; + .\32xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .\32xl\:left-40 { - left: 10rem; + .\32xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .\32xl\:top-44 { - top: 11rem; + .\32xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .\32xl\:right-44 { - right: 11rem; + .\32xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .\32xl\:bottom-44 { - bottom: 11rem; + .\32xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .\32xl\:left-44 { - left: 11rem; + .\32xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .\32xl\:top-48 { - top: 12rem; + .\32xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .\32xl\:right-48 { - right: 12rem; + .\32xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .\32xl\:bottom-48 { - bottom: 12rem; + .\32xl\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .\32xl\:left-48 { - left: 12rem; + .\32xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .\32xl\:top-52 { - top: 13rem; + .\32xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .\32xl\:right-52 { - right: 13rem; + .\32xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .\32xl\:bottom-52 { - bottom: 13rem; + .\32xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .\32xl\:left-52 { - left: 13rem; + .\32xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .\32xl\:top-56 { - top: 14rem; + .\32xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .\32xl\:right-56 { - right: 14rem; + .\32xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .\32xl\:bottom-56 { - bottom: 14rem; + .\32xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .\32xl\:left-56 { - left: 14rem; + .\32xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .\32xl\:top-60 { - top: 15rem; + .\32xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .\32xl\:right-60 { - right: 15rem; + .\32xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .\32xl\:bottom-60 { - bottom: 15rem; + .\32xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .\32xl\:left-60 { - left: 15rem; + .\32xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .\32xl\:top-64 { - top: 16rem; + .\32xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .\32xl\:right-64 { - right: 16rem; + .\32xl\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .\32xl\:bottom-64 { - bottom: 16rem; + .\32xl\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .\32xl\:left-64 { - left: 16rem; + .\32xl\:to-pink-600 { + --tw-gradient-to: #db2777; } - .\32xl\:top-72 { - top: 18rem; + .\32xl\:to-pink-700 { + --tw-gradient-to: #be185d; } - .\32xl\:right-72 { - right: 18rem; + .\32xl\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .\32xl\:bottom-72 { - bottom: 18rem; + .\32xl\:to-pink-900 { + --tw-gradient-to: #831843; } - .\32xl\:left-72 { - left: 18rem; + .\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\:top-80 { - top: 20rem; + .\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\:right-80 { - right: 20rem; + .\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\:bottom-80 { - bottom: 20rem; + .\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\:left-80 { - left: 20rem; + .\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\:top-96 { - top: 24rem; + .\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\:right-96 { - right: 24rem; + .\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\:bottom-96 { - bottom: 24rem; + .\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\:left-96 { - left: 24rem; + .\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\:top-auto { - top: auto; + .\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\:right-auto { - right: auto; + .\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\:bottom-auto { - bottom: auto; + .\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\:left-auto { - left: auto; + .\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\:top-px { - top: 1px; + .\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\:right-px { - right: 1px; + .\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\:bottom-px { - bottom: 1px; + .\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\:left-px { - left: 1px; + .\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\:top-0\.5 { - top: 0.125rem; + .\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\:right-0\.5 { - right: 0.125rem; + .\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\:bottom-0\.5 { - bottom: 0.125rem; + .\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\:left-0\.5 { - left: 0.125rem; + .\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\:top-1\.5 { - top: 0.375rem; + .\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\:right-1\.5 { - right: 0.375rem; + .\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\:bottom-1\.5 { - bottom: 0.375rem; + .\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\:left-1\.5 { - left: 0.375rem; + .\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\:top-2\.5 { - top: 0.625rem; + .\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\:right-2\.5 { - right: 0.625rem; + .\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\:bottom-2\.5 { - bottom: 0.625rem; + .\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\:left-2\.5 { - left: 0.625rem; + .\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\:top-3\.5 { - top: 0.875rem; + .\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\:right-3\.5 { - right: 0.875rem; + .\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\:bottom-3\.5 { - bottom: 0.875rem; + .\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\:left-3\.5 { - left: 0.875rem; + .\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\:-top-0 { - top: 0px; + .\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\:-right-0 { - right: 0px; + .\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\:-bottom-0 { - bottom: 0px; + .\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\:-left-0 { - left: 0px; + .\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\:-top-1 { - top: -0.25rem; + .\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\:-right-1 { - right: -0.25rem; + .\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\:-bottom-1 { - bottom: -0.25rem; + .\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\:-left-1 { - left: -0.25rem; + .\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\:-top-2 { - top: -0.5rem; + .\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\:-right-2 { - right: -0.5rem; + .\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\:-bottom-2 { - bottom: -0.5rem; + .\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\:-left-2 { - left: -0.5rem; + .\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\:-top-3 { - top: -0.75rem; + .\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\:-right-3 { - right: -0.75rem; + .\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\:-bottom-3 { - bottom: -0.75rem; + .\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\:-left-3 { - left: -0.75rem; + .\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\:-top-4 { - top: -1rem; + .\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\:-right-4 { - right: -1rem; + .\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\:-bottom-4 { - bottom: -1rem; + .\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\:-left-4 { - left: -1rem; + .\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\:-top-5 { - top: -1.25rem; + .\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\:-right-5 { - right: -1.25rem; + .\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\:-bottom-5 { - bottom: -1.25rem; + .\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\:-left-5 { - left: -1.25rem; + .\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\:-top-6 { - top: -1.5rem; + .\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\:-right-6 { - right: -1.5rem; + .\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\:-bottom-6 { - bottom: -1.5rem; + .\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\:-left-6 { - left: -1.5rem; + .\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\:-top-7 { - top: -1.75rem; + .\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\:-right-7 { - right: -1.75rem; + .\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\:-bottom-7 { - bottom: -1.75rem; + .\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\:-left-7 { - left: -1.75rem; + .\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\:-top-8 { - top: -2rem; + .\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\:-right-8 { - right: -2rem; + .\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\:-bottom-8 { - bottom: -2rem; + .\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\:-left-8 { - left: -2rem; + .\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\:-top-9 { - top: -2.25rem; + .\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\:-right-9 { - right: -2.25rem; + .\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\:-bottom-9 { - bottom: -2.25rem; + .\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\:-left-9 { - left: -2.25rem; + .\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\:-top-10 { - top: -2.5rem; + .\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\:-right-10 { - right: -2.5rem; + .\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\:-bottom-10 { - bottom: -2.5rem; + .\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\:-left-10 { - left: -2.5rem; + .\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\:-top-11 { - top: -2.75rem; + .\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\:-right-11 { - right: -2.75rem; + .\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\:-bottom-11 { - bottom: -2.75rem; + .\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\:-left-11 { - left: -2.75rem; + .\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\:-top-12 { - top: -3rem; + .\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\:-right-12 { - right: -3rem; + .\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\:-bottom-12 { - bottom: -3rem; + .\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\:-left-12 { - left: -3rem; + .\32xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-top-14 { - top: -3.5rem; + .\32xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-right-14 { - right: -3.5rem; + .\32xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-bottom-14 { - bottom: -3.5rem; + .\32xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-left-14 { - left: -3.5rem; + .\32xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:-top-16 { - top: -4rem; + .\32xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:-right-16 { - right: -4rem; + .\32xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:-bottom-16 { - bottom: -4rem; + .\32xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:-left-16 { - left: -4rem; + .\32xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:-top-20 { - top: -5rem; + .\32xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:-right-20 { - right: -5rem; + .\32xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:-bottom-20 { - bottom: -5rem; + .\32xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:-left-20 { - left: -5rem; + .\32xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:-top-24 { - top: -6rem; + .\32xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:-right-24 { - right: -6rem; + .\32xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:-bottom-24 { - bottom: -6rem; + .\32xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:-left-24 { - left: -6rem; + .\32xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:-top-28 { - top: -7rem; + .\32xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:-right-28 { - right: -7rem; + .\32xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:-bottom-28 { - bottom: -7rem; + .\32xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:-left-28 { - left: -7rem; + .\32xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:-top-32 { - top: -8rem; + .\32xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:-right-32 { - right: -8rem; + .\32xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:-bottom-32 { - bottom: -8rem; + .\32xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:-left-32 { - left: -8rem; + .\32xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:-top-36 { - top: -9rem; + .\32xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:-right-36 { - right: -9rem; + .\32xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:-bottom-36 { - bottom: -9rem; + .\32xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:-left-36 { - left: -9rem; + .\32xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:-top-40 { - top: -10rem; + .\32xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:-right-40 { - right: -10rem; + .\32xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:-bottom-40 { - bottom: -10rem; + .\32xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:-left-40 { - left: -10rem; + .\32xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:-top-44 { - top: -11rem; + .\32xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:-right-44 { - right: -11rem; + .\32xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:-bottom-44 { - bottom: -11rem; + .\32xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:-left-44 { - left: -11rem; + .\32xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:-top-48 { - top: -12rem; + .\32xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:-right-48 { - right: -12rem; + .\32xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:-bottom-48 { - bottom: -12rem; + .\32xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:-left-48 { - left: -12rem; + .\32xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:-top-52 { - top: -13rem; + .\32xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:-right-52 { - right: -13rem; + .\32xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:-bottom-52 { - bottom: -13rem; + .\32xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:-left-52 { - left: -13rem; + .\32xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:-top-56 { - top: -14rem; + .\32xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:-right-56 { - right: -14rem; + .\32xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:-bottom-56 { - bottom: -14rem; + .\32xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:-left-56 { - left: -14rem; + .\32xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:-top-60 { - top: -15rem; + .\32xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:-right-60 { - right: -15rem; + .\32xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:-bottom-60 { - bottom: -15rem; + .\32xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:-left-60 { - left: -15rem; + .\32xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:-top-64 { - top: -16rem; + .\32xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:-right-64 { - right: -16rem; + .\32xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:-bottom-64 { - bottom: -16rem; + .\32xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:-left-64 { - left: -16rem; + .\32xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:-top-72 { - top: -18rem; + .\32xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:-right-72 { - right: -18rem; + .\32xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:-bottom-72 { - bottom: -18rem; + .\32xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:-left-72 { - left: -18rem; + .\32xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:-top-80 { - top: -20rem; + .\32xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:-right-80 { - right: -20rem; + .\32xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:-bottom-80 { - bottom: -20rem; + .\32xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:-left-80 { - left: -20rem; + .\32xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:-top-96 { - top: -24rem; + .\32xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:-right-96 { - right: -24rem; + .\32xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:-bottom-96 { - bottom: -24rem; + .\32xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:-left-96 { - left: -24rem; + .\32xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:-top-px { - top: -1px; + .\32xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:-right-px { - right: -1px; + .\32xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:-bottom-px { - bottom: -1px; + .\32xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:-left-px { - left: -1px; + .\32xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:-top-0\.5 { - top: -0.125rem; + .\32xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:-right-0\.5 { - right: -0.125rem; + .\32xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:-bottom-0\.5 { - bottom: -0.125rem; + .\32xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:-left-0\.5 { - left: -0.125rem; + .\32xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:-top-1\.5 { - top: -0.375rem; + .\32xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:-right-1\.5 { - right: -0.375rem; + .\32xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:-bottom-1\.5 { - bottom: -0.375rem; + .\32xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:-left-1\.5 { - left: -0.375rem; + .\32xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:-top-2\.5 { - top: -0.625rem; + .\32xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:-right-2\.5 { - right: -0.625rem; + .\32xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:-bottom-2\.5 { - bottom: -0.625rem; + .\32xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:-left-2\.5 { - left: -0.625rem; + .\32xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .\32xl\:-top-3\.5 { - top: -0.875rem; + .\32xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .\32xl\:-right-3\.5 { - right: -0.875rem; + .\32xl\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .\32xl\:-bottom-3\.5 { - bottom: -0.875rem; + .\32xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .\32xl\:-left-3\.5 { - left: -0.875rem; + .\32xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .\32xl\:top-1\/2 { - top: 50%; + .\32xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .\32xl\:right-1\/2 { - right: 50%; + .\32xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .\32xl\:bottom-1\/2 { - bottom: 50%; + .\32xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .\32xl\:left-1\/2 { - left: 50%; + .\32xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .\32xl\:top-1\/3 { - top: 33.333333%; + .\32xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .\32xl\:right-1\/3 { - right: 33.333333%; + .\32xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .\32xl\:bottom-1\/3 { - bottom: 33.333333%; + .\32xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .\32xl\:left-1\/3 { - left: 33.333333%; + .\32xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .\32xl\:top-2\/3 { - top: 66.666667%; + .\32xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .\32xl\:right-2\/3 { - right: 66.666667%; + .\32xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .\32xl\:bottom-2\/3 { - bottom: 66.666667%; + .\32xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .\32xl\:left-2\/3 { - left: 66.666667%; + .\32xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .\32xl\:top-1\/4 { - top: 25%; + .\32xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .\32xl\:right-1\/4 { - right: 25%; + .\32xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .\32xl\:bottom-1\/4 { - bottom: 25%; + .\32xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .\32xl\:left-1\/4 { - left: 25%; + .\32xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .\32xl\:top-2\/4 { - top: 50%; + .\32xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .\32xl\:right-2\/4 { - right: 50%; + .\32xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .\32xl\:bottom-2\/4 { - bottom: 50%; + .\32xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .\32xl\:left-2\/4 { - left: 50%; + .\32xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .\32xl\:top-3\/4 { - top: 75%; + .\32xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .\32xl\:right-3\/4 { - right: 75%; + .\32xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .\32xl\:bottom-3\/4 { - bottom: 75%; + .\32xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .\32xl\:left-3\/4 { - left: 75%; + .\32xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .\32xl\:top-full { - top: 100%; + .\32xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .\32xl\:right-full { - right: 100%; + .\32xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .\32xl\:bottom-full { - bottom: 100%; + .\32xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .\32xl\:left-full { - left: 100%; + .\32xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .\32xl\:-top-1\/2 { - top: -50%; + .\32xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .\32xl\:-right-1\/2 { - right: -50%; + .\32xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .\32xl\:-bottom-1\/2 { - bottom: -50%; + .\32xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .\32xl\:-left-1\/2 { - left: -50%; + .\32xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .\32xl\:-top-1\/3 { - top: -33.333333%; + .\32xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .\32xl\:-right-1\/3 { - right: -33.333333%; + .\32xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .\32xl\:-bottom-1\/3 { - bottom: -33.333333%; + .\32xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .\32xl\:-left-1\/3 { - left: -33.333333%; + .\32xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .\32xl\:-top-2\/3 { - top: -66.666667%; + .\32xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .\32xl\:-right-2\/3 { - right: -66.666667%; + .\32xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .\32xl\:-bottom-2\/3 { - bottom: -66.666667%; + .\32xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .\32xl\:-left-2\/3 { - left: -66.666667%; + .\32xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .\32xl\:-top-1\/4 { - top: -25%; + .\32xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .\32xl\:-right-1\/4 { - right: -25%; + .\32xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .\32xl\:-bottom-1\/4 { - bottom: -25%; + .\32xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .\32xl\:-left-1\/4 { - left: -25%; + .\32xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .\32xl\:-top-2\/4 { - top: -50%; + .\32xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .\32xl\:-right-2\/4 { - right: -50%; + .\32xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .\32xl\:-bottom-2\/4 { - bottom: -50%; + .\32xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .\32xl\:-left-2\/4 { - left: -50%; + .\32xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .\32xl\:-top-3\/4 { - top: -75%; + .\32xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .\32xl\:-right-3\/4 { - right: -75%; + .\32xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .\32xl\:-bottom-3\/4 { - bottom: -75%; + .\32xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .\32xl\:-left-3\/4 { - left: -75%; + .\32xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .\32xl\:-top-full { - top: -100%; + .\32xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .\32xl\:-right-full { - right: -100%; + .\32xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .\32xl\:-bottom-full { - bottom: -100%; + .\32xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .\32xl\:-left-full { - left: -100%; + .\32xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .\32xl\:resize-none { - resize: none; + .\32xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .\32xl\:resize-y { - resize: vertical; + .\32xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .\32xl\:resize-x { - resize: horizontal; + .\32xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .\32xl\:resize { - resize: both; + .\32xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .\32xl\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .\32xl\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .\32xl\: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); + .\32xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .\32xl\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .\32xl\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .\32xl\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .\32xl\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .\32xl\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .\32xl\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .\32xl\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .\32xl\:group-hover\: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); + .\32xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .\32xl\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .\32xl\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .\32xl\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .\32xl\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .\32xl\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .\32xl\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .\32xl\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .\32xl\:focus-within\:shadow-md:focus-within { - --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); + .\32xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .\32xl\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:shadow-md:hover { - --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); + .\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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:focus\:shadow-md:focus { - --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); + .\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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-inset { - --tw-ring-inset: inset; + .\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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .\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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .\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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .\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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .\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\:ring-offset-black { - --tw-ring-offset-color: #000; + .\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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .\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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .\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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .\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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .\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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .\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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .\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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .\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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .\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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .\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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .\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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .\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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .\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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .\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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .\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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .\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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .\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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .\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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .\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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .\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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .\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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .\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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .\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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .\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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .\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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .\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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .\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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .\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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .\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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .\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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .\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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .\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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .\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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .\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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .\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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .\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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .\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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .\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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .\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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .\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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .\32xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .\32xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .\32xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .\32xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .\32xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .\32xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .\32xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .\32xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .\32xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .\32xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .\32xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .\32xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .\32xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .\32xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .\32xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .\32xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .\32xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .\32xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .\32xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .\32xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .\32xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .\32xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .\32xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .\32xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .\32xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .\32xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .\32xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .\32xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .\32xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .\32xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .\32xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .\32xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .\32xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .\32xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .\32xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .\32xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .\32xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .\32xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .\32xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .\32xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .\32xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .\32xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .\32xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .\32xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .\32xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .\32xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .\32xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .\32xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .\32xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .\32xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .\32xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .\32xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .\32xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .\32xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .\32xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .\32xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .\32xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .\32xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .\32xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .\32xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .\32xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .\32xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .\32xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .\32xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .\32xl\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .\32xl\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .\32xl\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .\32xl\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .\32xl\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .\32xl\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .\32xl\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .\32xl\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .\32xl\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .\32xl\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .\32xl\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .\32xl\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .\32xl\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .\32xl\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .\32xl\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .\32xl\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .\32xl\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .\32xl\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .\32xl\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .\32xl\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .\32xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .\32xl\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .\32xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .\32xl\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .\32xl\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .\32xl\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .\32xl\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .\32xl\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .\32xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .\32xl\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .\32xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .\32xl\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .\32xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .\32xl\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .\32xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .\32xl\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .\32xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .\32xl\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .\32xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .\32xl\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .\32xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .\32xl\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .\32xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .\32xl\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .\32xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .\32xl\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .\32xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .\32xl\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .\32xl\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .\32xl\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .\32xl\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .\32xl\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .\32xl\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .\32xl\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .\32xl\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .\32xl\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .\32xl\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .\32xl\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .\32xl\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .\32xl\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .\32xl\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .\32xl\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .\32xl\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .\32xl\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .\32xl\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .\32xl\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .\32xl\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .\32xl\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .\32xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .\32xl\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .\32xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .\32xl\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .\32xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .\32xl\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .\32xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .\32xl\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .\32xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .\32xl\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .\32xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .\32xl\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .\32xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .\32xl\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .\32xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .\32xl\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .\32xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .\32xl\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .\32xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .\32xl\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .\32xl\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .\32xl\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .\32xl\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .\32xl\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .\32xl\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .\32xl\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .\32xl\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .\32xl\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .\32xl\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .\32xl\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .\32xl\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .\32xl\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .\32xl\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .\32xl\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .\32xl\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .\32xl\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .\32xl\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .\32xl\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .\32xl\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .\32xl\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .\32xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .\32xl\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .\32xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .\32xl\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .\32xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .\32xl\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .\32xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .\32xl\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .\32xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .\32xl\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .\32xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .\32xl\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .\32xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .\32xl\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .\32xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .\32xl\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .\32xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .\32xl\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .\32xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .\32xl\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .\32xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .\32xl\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .\32xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .\32xl\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .\32xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .\32xl\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .\32xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .\32xl\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .\32xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .\32xl\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .\32xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .\32xl\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .\32xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .\32xl\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .\32xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .\32xl\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .\32xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .\32xl\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .\32xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .\32xl\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .\32xl\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .\32xl\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .\32xl\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .\32xl\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .\32xl\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .\32xl\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .\32xl\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .\32xl\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .\32xl\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .\32xl\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .\32xl\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .\32xl\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .\32xl\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .\32xl\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .\32xl\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .\32xl\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .\32xl\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .\32xl\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .\32xl\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .\32xl\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .\32xl\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .\32xl\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .\32xl\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .\32xl\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .\32xl\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .\32xl\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .\32xl\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .\32xl\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .\32xl\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .\32xl\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .\32xl\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .\32xl\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .\32xl\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .\32xl\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .\32xl\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .\32xl\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .\32xl\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .\32xl\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .\32xl\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .\32xl\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .\32xl\:decoration-slice { + box-decoration-break: slice; } - .\32xl\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .\32xl\:decoration-clone { + box-decoration-break: clone; } - .\32xl\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .\32xl\:bg-auto { + background-size: auto; } - .\32xl\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .\32xl\:bg-cover { + background-size: cover; } - .\32xl\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .\32xl\:bg-contain { + background-size: contain; } - .\32xl\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .\32xl\:bg-fixed { + background-attachment: fixed; } - .\32xl\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .\32xl\:bg-local { + background-attachment: local; } - .\32xl\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .\32xl\:bg-scroll { + background-attachment: scroll; } - .\32xl\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .\32xl\:bg-clip-border { + background-clip: border-box; } - .\32xl\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .\32xl\:bg-clip-padding { + background-clip: padding-box; } - .\32xl\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .\32xl\:bg-clip-content { + background-clip: content-box; } - .\32xl\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .\32xl\:bg-clip-text { + background-clip: text; } - .\32xl\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .\32xl\:bg-bottom { + background-position: bottom; } - .\32xl\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .\32xl\:bg-center { + background-position: center; } - .\32xl\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .\32xl\:bg-left { + background-position: left; } - .\32xl\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .\32xl\:bg-left-bottom { + background-position: left bottom; } - .\32xl\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .\32xl\:bg-left-top { + background-position: left top; } - .\32xl\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .\32xl\:bg-right { + background-position: right; } - .\32xl\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .\32xl\:bg-right-bottom { + background-position: right bottom; } - .\32xl\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .\32xl\:bg-right-top { + background-position: right top; } - .\32xl\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .\32xl\:bg-top { + background-position: top; } - .\32xl\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .\32xl\:bg-repeat { + background-repeat: repeat; } - .\32xl\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .\32xl\:bg-no-repeat { + background-repeat: no-repeat; } - .\32xl\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .\32xl\:bg-repeat-x { + background-repeat: repeat-x; } - .\32xl\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .\32xl\:bg-repeat-y { + background-repeat: repeat-y; } - .\32xl\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .\32xl\:bg-repeat-round { + background-repeat: round; } - .\32xl\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .\32xl\:bg-repeat-space { + background-repeat: space; } - .\32xl\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .\32xl\:bg-origin-border { + background-origin: border-box; } - .\32xl\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .\32xl\:bg-origin-padding { + background-origin: padding-box; } - .\32xl\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .\32xl\:bg-origin-content { + background-origin: content-box; } - .\32xl\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .\32xl\:fill-current { + fill: currentColor; } - .\32xl\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .\32xl\:stroke-current { + stroke: currentColor; } - .\32xl\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .\32xl\:stroke-0 { + stroke-width: 0; } - .\32xl\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .\32xl\:stroke-1 { + stroke-width: 1; } - .\32xl\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .\32xl\:stroke-2 { + stroke-width: 2; } - .\32xl\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .\32xl\:object-contain { + object-fit: contain; } - .\32xl\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .\32xl\:object-cover { + object-fit: cover; } - .\32xl\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .\32xl\:object-fill { + object-fit: fill; } - .\32xl\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .\32xl\:object-none { + object-fit: none; } - .\32xl\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .\32xl\:object-scale-down { + object-fit: scale-down; } - .\32xl\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .\32xl\:object-bottom { + object-position: bottom; } - .\32xl\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .\32xl\:object-center { + object-position: center; } - .\32xl\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .\32xl\:object-left { + object-position: left; } - .\32xl\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .\32xl\:object-left-bottom { + object-position: left bottom; } - .\32xl\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .\32xl\:object-left-top { + object-position: left top; } - .\32xl\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .\32xl\:object-right { + object-position: right; } - .\32xl\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .\32xl\:object-right-bottom { + object-position: right bottom; } - .\32xl\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .\32xl\:object-right-top { + object-position: right top; } - .\32xl\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .\32xl\:object-top { + object-position: top; } - .\32xl\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .\32xl\:p-0 { + padding: 0px; } - .\32xl\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .\32xl\:p-1 { + padding: 0.25rem; } - .\32xl\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .\32xl\:p-2 { + padding: 0.5rem; } - .\32xl\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .\32xl\:p-3 { + padding: 0.75rem; } - .\32xl\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .\32xl\:p-4 { + padding: 1rem; } - .\32xl\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .\32xl\:p-5 { + padding: 1.25rem; } - .\32xl\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .\32xl\:p-6 { + padding: 1.5rem; } - .\32xl\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .\32xl\:p-7 { + padding: 1.75rem; } - .\32xl\:ring-transparent { - --tw-ring-color: transparent; + .\32xl\:p-8 { + padding: 2rem; } - .\32xl\:ring-current { - --tw-ring-color: currentColor; + .\32xl\:p-9 { + padding: 2.25rem; } - .\32xl\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .\32xl\:p-10 { + padding: 2.5rem; } - .\32xl\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .\32xl\:p-11 { + padding: 2.75rem; } - .\32xl\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .\32xl\:p-12 { + padding: 3rem; } - .\32xl\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .\32xl\:p-14 { + padding: 3.5rem; } - .\32xl\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .\32xl\:p-16 { + padding: 4rem; } - .\32xl\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .\32xl\:p-20 { + padding: 5rem; } - .\32xl\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .\32xl\:p-24 { + padding: 6rem; } - .\32xl\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .\32xl\:p-28 { + padding: 7rem; } - .\32xl\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .\32xl\:p-32 { + padding: 8rem; } - .\32xl\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .\32xl\:p-36 { + padding: 9rem; } - .\32xl\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .\32xl\:p-40 { + padding: 10rem; } - .\32xl\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .\32xl\:p-44 { + padding: 11rem; } - .\32xl\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .\32xl\:p-48 { + padding: 12rem; } - .\32xl\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .\32xl\:p-52 { + padding: 13rem; } - .\32xl\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .\32xl\:p-56 { + padding: 14rem; } - .\32xl\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .\32xl\:p-60 { + padding: 15rem; } - .\32xl\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .\32xl\:p-64 { + padding: 16rem; } - .\32xl\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .\32xl\:p-72 { + padding: 18rem; } - .\32xl\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .\32xl\:p-80 { + padding: 20rem; } - .\32xl\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .\32xl\:p-96 { + padding: 24rem; } - .\32xl\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .\32xl\:p-px { + padding: 1px; } - .\32xl\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .\32xl\:p-0\.5 { + padding: 0.125rem; } - .\32xl\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .\32xl\:p-1\.5 { + padding: 0.375rem; } - .\32xl\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .\32xl\:p-2\.5 { + padding: 0.625rem; } - .\32xl\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .\32xl\:p-3\.5 { + padding: 0.875rem; } - .\32xl\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .\32xl\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .\32xl\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .\32xl\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .\32xl\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .\32xl\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .\32xl\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .\32xl\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .\32xl\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .\32xl\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .\32xl\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .\32xl\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .\32xl\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .\32xl\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .\32xl\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .\32xl\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .\32xl\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .\32xl\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .\32xl\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .\32xl\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .\32xl\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .\32xl\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .\32xl\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .\32xl\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .\32xl\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .\32xl\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .\32xl\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .\32xl\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .\32xl\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .\32xl\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .\32xl\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .\32xl\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .\32xl\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .\32xl\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .\32xl\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .\32xl\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .\32xl\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .\32xl\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .\32xl\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .\32xl\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .\32xl\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .\32xl\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .\32xl\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .\32xl\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .\32xl\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .\32xl\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .\32xl\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .\32xl\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .\32xl\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .\32xl\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .\32xl\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .\32xl\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .\32xl\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .\32xl\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .\32xl\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .\32xl\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .\32xl\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .\32xl\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .\32xl\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .\32xl\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .\32xl\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .\32xl\:px-px { + padding-left: 1px; + padding-right: 1px; } - .\32xl\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .\32xl\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .\32xl\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .\32xl\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .\32xl\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .\32xl\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .\32xl\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .\32xl\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .\32xl\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .\32xl\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .\32xl\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .\32xl\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .\32xl\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .\32xl\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .\32xl\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .\32xl\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .\32xl\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .\32xl\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .\32xl\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .\32xl\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .\32xl\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .\32xl\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .\32xl\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .\32xl\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .\32xl\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .\32xl\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .\32xl\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .\32xl\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .\32xl\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .\32xl\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .\32xl\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .\32xl\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .\32xl\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .\32xl\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .\32xl\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .\32xl\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .\32xl\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .\32xl\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .\32xl\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .\32xl\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .\32xl\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .\32xl\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .\32xl\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .\32xl\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .\32xl\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .\32xl\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .\32xl\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .\32xl\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .\32xl\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .\32xl\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .\32xl\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .\32xl\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .\32xl\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .\32xl\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .\32xl\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .\32xl\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .\32xl\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .\32xl\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .\32xl\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .\32xl\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .\32xl\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .\32xl\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .\32xl\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .\32xl\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .\32xl\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .\32xl\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .\32xl\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .\32xl\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .\32xl\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .\32xl\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .\32xl\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .\32xl\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .\32xl\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .\32xl\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .\32xl\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .\32xl\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .\32xl\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .\32xl\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .\32xl\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .\32xl\:pt-0 { + padding-top: 0px; } - .\32xl\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .\32xl\:pt-1 { + padding-top: 0.25rem; } - .\32xl\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .\32xl\:pt-2 { + padding-top: 0.5rem; } - .\32xl\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .\32xl\:pt-3 { + padding-top: 0.75rem; } - .\32xl\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .\32xl\:pt-4 { + padding-top: 1rem; } - .\32xl\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .\32xl\:pt-5 { + padding-top: 1.25rem; } - .\32xl\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .\32xl\:pt-6 { + padding-top: 1.5rem; } - .\32xl\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .\32xl\:pt-7 { + padding-top: 1.75rem; } - .\32xl\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .\32xl\:pt-8 { + padding-top: 2rem; } - .\32xl\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .\32xl\:pt-9 { + padding-top: 2.25rem; } - .\32xl\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .\32xl\:pt-10 { + padding-top: 2.5rem; } - .\32xl\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .\32xl\:pt-11 { + padding-top: 2.75rem; } - .\32xl\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .\32xl\:pt-12 { + padding-top: 3rem; } - .\32xl\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .\32xl\:pt-14 { + padding-top: 3.5rem; } - .\32xl\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .\32xl\:pt-16 { + padding-top: 4rem; } - .\32xl\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .\32xl\:pt-20 { + padding-top: 5rem; } - .\32xl\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .\32xl\:pt-24 { + padding-top: 6rem; } - .\32xl\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .\32xl\:pt-28 { + padding-top: 7rem; } - .\32xl\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .\32xl\:pt-32 { + padding-top: 8rem; } - .\32xl\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .\32xl\:pt-36 { + padding-top: 9rem; } - .\32xl\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .\32xl\:pt-40 { + padding-top: 10rem; } - .\32xl\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .\32xl\:pt-44 { + padding-top: 11rem; } - .\32xl\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .\32xl\:pt-48 { + padding-top: 12rem; } - .\32xl\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .\32xl\:pt-52 { + padding-top: 13rem; } - .\32xl\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .\32xl\:pt-56 { + padding-top: 14rem; } - .\32xl\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .\32xl\:pt-60 { + padding-top: 15rem; } - .\32xl\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .\32xl\:pt-64 { + padding-top: 16rem; } - .\32xl\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .\32xl\:pt-72 { + padding-top: 18rem; } - .\32xl\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .\32xl\:pt-80 { + padding-top: 20rem; } - .\32xl\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .\32xl\:pt-96 { + padding-top: 24rem; } - .\32xl\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .\32xl\:pt-px { + padding-top: 1px; } - .\32xl\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .\32xl\:pt-0\.5 { + padding-top: 0.125rem; } - .\32xl\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .\32xl\:pt-1\.5 { + padding-top: 0.375rem; } - .\32xl\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .\32xl\:pt-2\.5 { + padding-top: 0.625rem; } - .\32xl\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .\32xl\:pt-3\.5 { + padding-top: 0.875rem; } - .\32xl\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .\32xl\:pr-0 { + padding-right: 0px; } - .\32xl\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .\32xl\:pr-1 { + padding-right: 0.25rem; } - .\32xl\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .\32xl\:pr-2 { + padding-right: 0.5rem; } - .\32xl\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .\32xl\:pr-3 { + padding-right: 0.75rem; } - .\32xl\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .\32xl\:pr-4 { + padding-right: 1rem; } - .\32xl\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .\32xl\:pr-5 { + padding-right: 1.25rem; } - .\32xl\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .\32xl\:pr-6 { + padding-right: 1.5rem; } - .\32xl\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .\32xl\:pr-7 { + padding-right: 1.75rem; } - .\32xl\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .\32xl\:pr-8 { + padding-right: 2rem; } - .\32xl\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .\32xl\:pr-9 { + padding-right: 2.25rem; } - .\32xl\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .\32xl\:pr-10 { + padding-right: 2.5rem; } - .\32xl\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .\32xl\:pr-11 { + padding-right: 2.75rem; } - .\32xl\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .\32xl\:pr-12 { + padding-right: 3rem; } - .\32xl\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .\32xl\:pr-14 { + padding-right: 3.5rem; } - .\32xl\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .\32xl\:pr-16 { + padding-right: 4rem; } - .\32xl\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .\32xl\:pr-20 { + padding-right: 5rem; } - .\32xl\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .\32xl\:pr-24 { + padding-right: 6rem; } - .\32xl\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .\32xl\:pr-28 { + padding-right: 7rem; } - .\32xl\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .\32xl\:pr-32 { + padding-right: 8rem; } - .\32xl\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .\32xl\:pr-36 { + padding-right: 9rem; } - .\32xl\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .\32xl\:pr-40 { + padding-right: 10rem; } - .\32xl\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .\32xl\:pr-44 { + padding-right: 11rem; } - .\32xl\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .\32xl\:pr-48 { + padding-right: 12rem; } - .\32xl\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .\32xl\:pr-52 { + padding-right: 13rem; } - .\32xl\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .\32xl\:pr-56 { + padding-right: 14rem; } - .\32xl\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .\32xl\:pr-60 { + padding-right: 15rem; } - .\32xl\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .\32xl\:pr-64 { + padding-right: 16rem; } - .\32xl\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .\32xl\:pr-72 { + padding-right: 18rem; } - .\32xl\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .\32xl\:pr-80 { + padding-right: 20rem; } - .\32xl\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .\32xl\:pr-96 { + padding-right: 24rem; } - .\32xl\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .\32xl\:pr-px { + padding-right: 1px; } - .\32xl\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .\32xl\:pr-0\.5 { + padding-right: 0.125rem; } - .\32xl\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .\32xl\:pr-1\.5 { + padding-right: 0.375rem; } - .\32xl\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .\32xl\:pr-2\.5 { + padding-right: 0.625rem; } - .\32xl\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .\32xl\:pr-3\.5 { + padding-right: 0.875rem; } - .\32xl\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .\32xl\:pb-0 { + padding-bottom: 0px; } - .\32xl\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .\32xl\:pb-1 { + padding-bottom: 0.25rem; } - .\32xl\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .\32xl\:pb-2 { + padding-bottom: 0.5rem; } - .\32xl\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .\32xl\:pb-3 { + padding-bottom: 0.75rem; } - .\32xl\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .\32xl\:pb-4 { + padding-bottom: 1rem; } - .\32xl\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .\32xl\:pb-5 { + padding-bottom: 1.25rem; } - .\32xl\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .\32xl\:pb-6 { + padding-bottom: 1.5rem; } - .\32xl\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .\32xl\:pb-7 { + padding-bottom: 1.75rem; } - .\32xl\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .\32xl\:pb-8 { + padding-bottom: 2rem; } - .\32xl\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .\32xl\:pb-9 { + padding-bottom: 2.25rem; } - .\32xl\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .\32xl\:pb-10 { + padding-bottom: 2.5rem; } - .\32xl\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .\32xl\:pb-11 { + padding-bottom: 2.75rem; } - .\32xl\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .\32xl\:pb-12 { + padding-bottom: 3rem; } - .\32xl\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .\32xl\:pb-14 { + padding-bottom: 3.5rem; } - .\32xl\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .\32xl\:pb-16 { + padding-bottom: 4rem; } - .\32xl\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .\32xl\:pb-20 { + padding-bottom: 5rem; } - .\32xl\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .\32xl\:pb-24 { + padding-bottom: 6rem; } - .\32xl\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .\32xl\:pb-28 { + padding-bottom: 7rem; } - .\32xl\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .\32xl\:pb-32 { + padding-bottom: 8rem; } - .\32xl\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .\32xl\:pb-36 { + padding-bottom: 9rem; } - .\32xl\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .\32xl\:pb-40 { + padding-bottom: 10rem; } - .\32xl\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .\32xl\:pb-44 { + padding-bottom: 11rem; } - .\32xl\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .\32xl\:pb-48 { + padding-bottom: 12rem; } - .\32xl\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .\32xl\:pb-52 { + padding-bottom: 13rem; } - .\32xl\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .\32xl\:pb-56 { + padding-bottom: 14rem; } - .\32xl\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .\32xl\:pb-60 { + padding-bottom: 15rem; } - .\32xl\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .\32xl\:pb-64 { + padding-bottom: 16rem; } - .\32xl\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .\32xl\:pb-72 { + padding-bottom: 18rem; } - .\32xl\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .\32xl\:pb-80 { + padding-bottom: 20rem; } - .\32xl\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .\32xl\:pb-96 { + padding-bottom: 24rem; } - .\32xl\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .\32xl\:pb-px { + padding-bottom: 1px; } - .\32xl\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .\32xl\:pb-0\.5 { + padding-bottom: 0.125rem; } - .\32xl\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .\32xl\:pb-1\.5 { + padding-bottom: 0.375rem; } - .\32xl\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .\32xl\:pb-2\.5 { + padding-bottom: 0.625rem; } - .\32xl\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .\32xl\:pb-3\.5 { + padding-bottom: 0.875rem; } - .\32xl\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .\32xl\:pl-0 { + padding-left: 0px; } - .\32xl\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .\32xl\:pl-1 { + padding-left: 0.25rem; } - .\32xl\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .\32xl\:pl-2 { + padding-left: 0.5rem; } - .\32xl\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .\32xl\:pl-3 { + padding-left: 0.75rem; } - .\32xl\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .\32xl\:pl-4 { + padding-left: 1rem; } - .\32xl\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .\32xl\:pl-5 { + padding-left: 1.25rem; } - .\32xl\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .\32xl\:pl-6 { + padding-left: 1.5rem; } - .\32xl\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .\32xl\:pl-7 { + padding-left: 1.75rem; } - .\32xl\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .\32xl\:pl-8 { + padding-left: 2rem; } - .\32xl\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .\32xl\:pl-9 { + padding-left: 2.25rem; } - .\32xl\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .\32xl\:pl-10 { + padding-left: 2.5rem; } - .\32xl\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .\32xl\:pl-11 { + padding-left: 2.75rem; } - .\32xl\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .\32xl\:pl-12 { + padding-left: 3rem; } - .\32xl\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .\32xl\:pl-14 { + padding-left: 3.5rem; } - .\32xl\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .\32xl\:pl-16 { + padding-left: 4rem; } - .\32xl\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .\32xl\:pl-20 { + padding-left: 5rem; } - .\32xl\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .\32xl\:pl-24 { + padding-left: 6rem; } - .\32xl\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .\32xl\:pl-28 { + padding-left: 7rem; } - .\32xl\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .\32xl\:pl-32 { + padding-left: 8rem; } - .\32xl\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .\32xl\:pl-36 { + padding-left: 9rem; } - .\32xl\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .\32xl\:pl-40 { + padding-left: 10rem; } - .\32xl\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .\32xl\:pl-44 { + padding-left: 11rem; } - .\32xl\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .\32xl\:pl-48 { + padding-left: 12rem; } - .\32xl\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .\32xl\:pl-52 { + padding-left: 13rem; } - .\32xl\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .\32xl\:pl-56 { + padding-left: 14rem; } - .\32xl\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .\32xl\:pl-60 { + padding-left: 15rem; } - .\32xl\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .\32xl\:pl-64 { + padding-left: 16rem; } - .\32xl\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .\32xl\:pl-72 { + padding-left: 18rem; } - .\32xl\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .\32xl\:pl-80 { + padding-left: 20rem; } - .\32xl\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .\32xl\:pl-96 { + padding-left: 24rem; } - .\32xl\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .\32xl\:pl-px { + padding-left: 1px; } - .\32xl\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .\32xl\:pl-0\.5 { + padding-left: 0.125rem; } - .\32xl\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .\32xl\:pl-1\.5 { + padding-left: 0.375rem; } - .\32xl\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .\32xl\:pl-2\.5 { + padding-left: 0.625rem; } - .\32xl\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .\32xl\:pl-3\.5 { + padding-left: 0.875rem; } - .\32xl\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .\32xl\:text-left { + text-align: left; } - .\32xl\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .\32xl\:text-center { + text-align: center; } - .\32xl\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .\32xl\:text-right { + text-align: right; } - .\32xl\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .\32xl\:text-justify { + text-align: justify; } - .\32xl\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .\32xl\:align-baseline { + vertical-align: baseline; } - .\32xl\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .\32xl\:align-top { + vertical-align: top; } - .\32xl\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .\32xl\:align-middle { + vertical-align: middle; } - .\32xl\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .\32xl\:align-bottom { + vertical-align: bottom; } - .\32xl\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .\32xl\:align-text-top { + vertical-align: text-top; } - .\32xl\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .\32xl\:align-text-bottom { + vertical-align: text-bottom; } - .\32xl\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .\32xl\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .\32xl\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .\32xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .\32xl\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .\32xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .\32xl\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .\32xl\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .\32xl\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .\32xl\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .\32xl\:ring-opacity-0 { - --tw-ring-opacity: 0; + .\32xl\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .\32xl\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .\32xl\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .\32xl\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .\32xl\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .\32xl\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .\32xl\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .\32xl\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .\32xl\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .\32xl\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .\32xl\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .\32xl\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .\32xl\:text-5xl { + font-size: 3rem; + line-height: 1; } - .\32xl\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .\32xl\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .\32xl\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .\32xl\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .\32xl\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .\32xl\:text-8xl { + font-size: 6rem; + line-height: 1; } - .\32xl\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .\32xl\:text-9xl { + font-size: 8rem; + line-height: 1; } - .\32xl\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .\32xl\:font-thin { + font-weight: 100; } - .\32xl\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .\32xl\:font-extralight { + font-weight: 200; } - .\32xl\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .\32xl\:font-light { + font-weight: 300; } - .\32xl\:ring-opacity-100 { - --tw-ring-opacity: 1; + .\32xl\:font-normal { + font-weight: 400; } - .\32xl\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .\32xl\:font-medium { + font-weight: 500; } - .\32xl\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .\32xl\:font-semibold { + font-weight: 600; } - .\32xl\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .\32xl\:font-bold { + font-weight: 700; } - .\32xl\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .\32xl\:font-extrabold { + font-weight: 800; } - .\32xl\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .\32xl\:font-black { + font-weight: 900; } - .\32xl\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .\32xl\:uppercase { + text-transform: uppercase; } - .\32xl\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .\32xl\:lowercase { + text-transform: lowercase; } - .\32xl\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .\32xl\:capitalize { + text-transform: capitalize; } - .\32xl\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .\32xl\:normal-case { + text-transform: none; } - .\32xl\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .\32xl\:italic { + font-style: italic; } - .\32xl\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .\32xl\:not-italic { + font-style: normal; } - .\32xl\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .\32xl\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .\32xl\:normal-nums { + font-variant-numeric: normal; } - .\32xl\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .\32xl\:ordinal { + --tw-ordinal: ordinal; } - .\32xl\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .\32xl\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .\32xl\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .\32xl\:lining-nums { + --tw-numeric-figure: lining-nums; } - .\32xl\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .\32xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .\32xl\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .\32xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .\32xl\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .\32xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .\32xl\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .\32xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .\32xl\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .\32xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .\32xl\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .\32xl\:leading-3 { + line-height: .75rem; } - .\32xl\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .\32xl\:leading-4 { + line-height: 1rem; } - .\32xl\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .\32xl\:leading-5 { + line-height: 1.25rem; } - .\32xl\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .\32xl\:leading-6 { + line-height: 1.5rem; } - .\32xl\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .\32xl\:leading-7 { + line-height: 1.75rem; } - .\32xl\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .\32xl\:leading-8 { + line-height: 2rem; } - .\32xl\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .\32xl\:leading-9 { + line-height: 2.25rem; } - .\32xl\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .\32xl\:leading-10 { + line-height: 2.5rem; } - .\32xl\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .\32xl\:leading-none { + line-height: 1; } - .\32xl\:fill-current { - fill: currentColor; + .\32xl\:leading-tight { + line-height: 1.25; } - .\32xl\:stroke-current { - stroke: currentColor; + .\32xl\:leading-snug { + line-height: 1.375; } - .\32xl\:stroke-0 { - stroke-width: 0; + .\32xl\:leading-normal { + line-height: 1.5; } - .\32xl\:stroke-1 { - stroke-width: 1; + .\32xl\:leading-relaxed { + line-height: 1.625; } - .\32xl\:stroke-2 { - stroke-width: 2; + .\32xl\:leading-loose { + line-height: 2; } - .\32xl\:table-auto { - table-layout: auto; + .\32xl\:tracking-tighter { + letter-spacing: -0.05em; } - .\32xl\:table-fixed { - table-layout: fixed; + .\32xl\:tracking-tight { + letter-spacing: -0.025em; } - .\32xl\:text-left { - text-align: left; + .\32xl\:tracking-normal { + letter-spacing: 0em; } - .\32xl\:text-center { - text-align: center; + .\32xl\:tracking-wide { + letter-spacing: 0.025em; } - .\32xl\:text-right { - text-align: right; + .\32xl\:tracking-wider { + letter-spacing: 0.05em; } - .\32xl\:text-justify { - text-align: justify; + .\32xl\:tracking-widest { + letter-spacing: 0.1em; } .\32xl\:text-transparent { @@ -169737,5258 +169926,4949 @@ video { } .\32xl\:focus\:text-red-500:focus { - --tw-text-opacity: 1; - color: rgba(239, 68, 68, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-red-600:focus { - --tw-text-opacity: 1; - color: rgba(220, 38, 38, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-red-700:focus { - --tw-text-opacity: 1; - color: rgba(185, 28, 28, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-red-800:focus { - --tw-text-opacity: 1; - color: rgba(153, 27, 27, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-red-900:focus { - --tw-text-opacity: 1; - color: rgba(127, 29, 29, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-50:focus { - --tw-text-opacity: 1; - color: rgba(255, 251, 235, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-100:focus { - --tw-text-opacity: 1; - color: rgba(254, 243, 199, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-200:focus { - --tw-text-opacity: 1; - color: rgba(253, 230, 138, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-300:focus { - --tw-text-opacity: 1; - color: rgba(252, 211, 77, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-400:focus { - --tw-text-opacity: 1; - color: rgba(251, 191, 36, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-500:focus { - --tw-text-opacity: 1; - color: rgba(245, 158, 11, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-600:focus { - --tw-text-opacity: 1; - color: rgba(217, 119, 6, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-700:focus { - --tw-text-opacity: 1; - color: rgba(180, 83, 9, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-800:focus { - --tw-text-opacity: 1; - color: rgba(146, 64, 14, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-900:focus { - --tw-text-opacity: 1; - color: rgba(120, 53, 15, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-50:focus { - --tw-text-opacity: 1; - color: rgba(236, 253, 245, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-100:focus { - --tw-text-opacity: 1; - color: rgba(209, 250, 229, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-200:focus { - --tw-text-opacity: 1; - color: rgba(167, 243, 208, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-300:focus { - --tw-text-opacity: 1; - color: rgba(110, 231, 183, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-400:focus { - --tw-text-opacity: 1; - color: rgba(52, 211, 153, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-500:focus { - --tw-text-opacity: 1; - color: rgba(16, 185, 129, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-600:focus { - --tw-text-opacity: 1; - color: rgba(5, 150, 105, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-700:focus { - --tw-text-opacity: 1; - color: rgba(4, 120, 87, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-800:focus { - --tw-text-opacity: 1; - color: rgba(6, 95, 70, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-900:focus { - --tw-text-opacity: 1; - color: rgba(6, 78, 59, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-50:focus { - --tw-text-opacity: 1; - color: rgba(239, 246, 255, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-100:focus { - --tw-text-opacity: 1; - color: rgba(219, 234, 254, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-200:focus { - --tw-text-opacity: 1; - color: rgba(191, 219, 254, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-300:focus { - --tw-text-opacity: 1; - color: rgba(147, 197, 253, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-400:focus { - --tw-text-opacity: 1; - color: rgba(96, 165, 250, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-500:focus { - --tw-text-opacity: 1; - color: rgba(59, 130, 246, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-600:focus { - --tw-text-opacity: 1; - color: rgba(37, 99, 235, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-700:focus { - --tw-text-opacity: 1; - color: rgba(29, 78, 216, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-800:focus { - --tw-text-opacity: 1; - color: rgba(30, 64, 175, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-900:focus { - --tw-text-opacity: 1; - color: rgba(30, 58, 138, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-50:focus { - --tw-text-opacity: 1; - color: rgba(238, 242, 255, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-100:focus { - --tw-text-opacity: 1; - color: rgba(224, 231, 255, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-200:focus { - --tw-text-opacity: 1; - color: rgba(199, 210, 254, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-300:focus { - --tw-text-opacity: 1; - color: rgba(165, 180, 252, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-400:focus { - --tw-text-opacity: 1; - color: rgba(129, 140, 248, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-500:focus { - --tw-text-opacity: 1; - color: rgba(99, 102, 241, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-600:focus { - --tw-text-opacity: 1; - color: rgba(79, 70, 229, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-700:focus { - --tw-text-opacity: 1; - color: rgba(67, 56, 202, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-800:focus { - --tw-text-opacity: 1; - color: rgba(55, 48, 163, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-900:focus { - --tw-text-opacity: 1; - color: rgba(49, 46, 129, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-50:focus { - --tw-text-opacity: 1; - color: rgba(245, 243, 255, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-100:focus { - --tw-text-opacity: 1; - color: rgba(237, 233, 254, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-200:focus { - --tw-text-opacity: 1; - color: rgba(221, 214, 254, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-300:focus { - --tw-text-opacity: 1; - color: rgba(196, 181, 253, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-400:focus { - --tw-text-opacity: 1; - color: rgba(167, 139, 250, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-500:focus { - --tw-text-opacity: 1; - color: rgba(139, 92, 246, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-600:focus { - --tw-text-opacity: 1; - color: rgba(124, 58, 237, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-700:focus { - --tw-text-opacity: 1; - color: rgba(109, 40, 217, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-800:focus { - --tw-text-opacity: 1; - color: rgba(91, 33, 182, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-900:focus { - --tw-text-opacity: 1; - color: rgba(76, 29, 149, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-50:focus { - --tw-text-opacity: 1; - color: rgba(253, 242, 248, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-100:focus { - --tw-text-opacity: 1; - color: rgba(252, 231, 243, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-200:focus { - --tw-text-opacity: 1; - color: rgba(251, 207, 232, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-300:focus { - --tw-text-opacity: 1; - color: rgba(249, 168, 212, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-400:focus { - --tw-text-opacity: 1; - color: rgba(244, 114, 182, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-500:focus { - --tw-text-opacity: 1; - color: rgba(236, 72, 153, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-600:focus { - --tw-text-opacity: 1; - color: rgba(219, 39, 119, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-700:focus { - --tw-text-opacity: 1; - color: rgba(190, 24, 93, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-800:focus { - --tw-text-opacity: 1; - color: rgba(157, 23, 77, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-900:focus { - --tw-text-opacity: 1; - color: rgba(131, 24, 67, var(--tw-text-opacity)); - } - - .\32xl\:text-opacity-0 { - --tw-text-opacity: 0; - } - - .\32xl\:text-opacity-5 { - --tw-text-opacity: 0.05; - } - - .\32xl\:text-opacity-10 { - --tw-text-opacity: 0.1; - } - - .\32xl\:text-opacity-20 { - --tw-text-opacity: 0.2; - } - - .\32xl\:text-opacity-25 { - --tw-text-opacity: 0.25; - } - - .\32xl\:text-opacity-30 { - --tw-text-opacity: 0.3; - } - - .\32xl\:text-opacity-40 { - --tw-text-opacity: 0.4; - } - - .\32xl\:text-opacity-50 { - --tw-text-opacity: 0.5; - } - - .\32xl\:text-opacity-60 { - --tw-text-opacity: 0.6; - } - - .\32xl\:text-opacity-70 { - --tw-text-opacity: 0.7; - } - - .\32xl\:text-opacity-75 { - --tw-text-opacity: 0.75; - } - - .\32xl\:text-opacity-80 { - --tw-text-opacity: 0.8; - } - - .\32xl\:text-opacity-90 { - --tw-text-opacity: 0.9; - } - - .\32xl\:text-opacity-95 { - --tw-text-opacity: 0.95; - } - - .\32xl\:text-opacity-100 { - --tw-text-opacity: 1; - } - - .group:hover .\32xl\:group-hover\:text-opacity-0 { - --tw-text-opacity: 0; - } - - .group:hover .\32xl\:group-hover\:text-opacity-5 { - --tw-text-opacity: 0.05; - } - - .group:hover .\32xl\:group-hover\:text-opacity-10 { - --tw-text-opacity: 0.1; - } - - .group:hover .\32xl\:group-hover\:text-opacity-20 { - --tw-text-opacity: 0.2; - } - - .group:hover .\32xl\:group-hover\:text-opacity-25 { - --tw-text-opacity: 0.25; - } - - .group:hover .\32xl\:group-hover\:text-opacity-30 { - --tw-text-opacity: 0.3; - } - - .group:hover .\32xl\:group-hover\:text-opacity-40 { - --tw-text-opacity: 0.4; - } - - .group:hover .\32xl\:group-hover\:text-opacity-50 { - --tw-text-opacity: 0.5; - } - - .group:hover .\32xl\:group-hover\:text-opacity-60 { - --tw-text-opacity: 0.6; - } - - .group:hover .\32xl\:group-hover\:text-opacity-70 { - --tw-text-opacity: 0.7; - } - - .group:hover .\32xl\:group-hover\:text-opacity-75 { - --tw-text-opacity: 0.75; - } - - .group:hover .\32xl\:group-hover\:text-opacity-80 { - --tw-text-opacity: 0.8; - } - - .group:hover .\32xl\:group-hover\:text-opacity-90 { - --tw-text-opacity: 0.9; - } - - .group:hover .\32xl\:group-hover\:text-opacity-95 { - --tw-text-opacity: 0.95; - } - - .group:hover .\32xl\:group-hover\:text-opacity-100 { - --tw-text-opacity: 1; - } - - .\32xl\:focus-within\:text-opacity-0:focus-within { - --tw-text-opacity: 0; - } - - .\32xl\:focus-within\:text-opacity-5:focus-within { - --tw-text-opacity: 0.05; - } - - .\32xl\:focus-within\:text-opacity-10:focus-within { - --tw-text-opacity: 0.1; - } - - .\32xl\:focus-within\:text-opacity-20:focus-within { - --tw-text-opacity: 0.2; - } - - .\32xl\:focus-within\:text-opacity-25:focus-within { - --tw-text-opacity: 0.25; - } - - .\32xl\:focus-within\:text-opacity-30:focus-within { - --tw-text-opacity: 0.3; - } - - .\32xl\:focus-within\:text-opacity-40:focus-within { - --tw-text-opacity: 0.4; - } - - .\32xl\:focus-within\:text-opacity-50:focus-within { - --tw-text-opacity: 0.5; - } - - .\32xl\:focus-within\:text-opacity-60:focus-within { - --tw-text-opacity: 0.6; - } - - .\32xl\:focus-within\:text-opacity-70:focus-within { - --tw-text-opacity: 0.7; - } - - .\32xl\:focus-within\:text-opacity-75:focus-within { - --tw-text-opacity: 0.75; - } - - .\32xl\:focus-within\:text-opacity-80:focus-within { - --tw-text-opacity: 0.8; - } - - .\32xl\:focus-within\:text-opacity-90:focus-within { - --tw-text-opacity: 0.9; - } - - .\32xl\:focus-within\:text-opacity-95:focus-within { - --tw-text-opacity: 0.95; - } - - .\32xl\:focus-within\:text-opacity-100:focus-within { - --tw-text-opacity: 1; - } - - .\32xl\:hover\:text-opacity-0:hover { - --tw-text-opacity: 0; - } - - .\32xl\:hover\:text-opacity-5:hover { - --tw-text-opacity: 0.05; - } - - .\32xl\:hover\:text-opacity-10:hover { - --tw-text-opacity: 0.1; - } - - .\32xl\:hover\:text-opacity-20:hover { - --tw-text-opacity: 0.2; - } - - .\32xl\:hover\:text-opacity-25:hover { - --tw-text-opacity: 0.25; - } - - .\32xl\:hover\:text-opacity-30:hover { - --tw-text-opacity: 0.3; - } - - .\32xl\:hover\:text-opacity-40:hover { - --tw-text-opacity: 0.4; - } - - .\32xl\:hover\:text-opacity-50:hover { - --tw-text-opacity: 0.5; - } - - .\32xl\:hover\:text-opacity-60:hover { - --tw-text-opacity: 0.6; - } - - .\32xl\:hover\:text-opacity-70:hover { - --tw-text-opacity: 0.7; - } - - .\32xl\:hover\:text-opacity-75:hover { - --tw-text-opacity: 0.75; - } - - .\32xl\:hover\:text-opacity-80:hover { - --tw-text-opacity: 0.8; - } - - .\32xl\:hover\:text-opacity-90:hover { - --tw-text-opacity: 0.9; - } - - .\32xl\:hover\:text-opacity-95:hover { - --tw-text-opacity: 0.95; - } - - .\32xl\:hover\:text-opacity-100:hover { - --tw-text-opacity: 1; - } - - .\32xl\:focus\:text-opacity-0:focus { - --tw-text-opacity: 0; - } - - .\32xl\:focus\:text-opacity-5:focus { - --tw-text-opacity: 0.05; - } - - .\32xl\:focus\:text-opacity-10:focus { - --tw-text-opacity: 0.1; - } - - .\32xl\:focus\:text-opacity-20:focus { - --tw-text-opacity: 0.2; - } - - .\32xl\:focus\:text-opacity-25:focus { - --tw-text-opacity: 0.25; - } - - .\32xl\:focus\:text-opacity-30:focus { - --tw-text-opacity: 0.3; - } - - .\32xl\:focus\:text-opacity-40:focus { - --tw-text-opacity: 0.4; - } - - .\32xl\:focus\:text-opacity-50:focus { - --tw-text-opacity: 0.5; - } - - .\32xl\:focus\:text-opacity-60:focus { - --tw-text-opacity: 0.6; - } - - .\32xl\:focus\:text-opacity-70:focus { - --tw-text-opacity: 0.7; - } - - .\32xl\:focus\:text-opacity-75:focus { - --tw-text-opacity: 0.75; - } - - .\32xl\:focus\:text-opacity-80:focus { - --tw-text-opacity: 0.8; - } - - .\32xl\:focus\:text-opacity-90:focus { - --tw-text-opacity: 0.9; - } - - .\32xl\:focus\:text-opacity-95:focus { - --tw-text-opacity: 0.95; - } - - .\32xl\:focus\:text-opacity-100:focus { - --tw-text-opacity: 1; - } - - .\32xl\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .\32xl\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .\32xl\:overflow-clip { - text-overflow: clip; - } - - .\32xl\:italic { - font-style: italic; - } - - .\32xl\:not-italic { - font-style: normal; - } - - .\32xl\:uppercase { - text-transform: uppercase; - } - - .\32xl\:lowercase { - text-transform: lowercase; - } - - .\32xl\:capitalize { - text-transform: capitalize; - } - - .\32xl\:normal-case { - text-transform: none; - } - - .\32xl\:underline { - text-decoration: underline; - } - - .\32xl\:line-through { - text-decoration: line-through; - } - - .\32xl\:no-underline { - text-decoration: none; - } - - .group:hover .\32xl\:group-hover\:underline { - text-decoration: underline; - } - - .group:hover .\32xl\:group-hover\:line-through { - text-decoration: line-through; - } - - .group:hover .\32xl\:group-hover\:no-underline { - text-decoration: none; - } - - .\32xl\:focus-within\:underline:focus-within { - text-decoration: underline; - } - - .\32xl\:focus-within\:line-through:focus-within { - text-decoration: line-through; - } - - .\32xl\:focus-within\:no-underline:focus-within { - text-decoration: none; - } - - .\32xl\:hover\:underline:hover { - text-decoration: underline; - } - - .\32xl\:hover\:line-through:hover { - text-decoration: line-through; - } - - .\32xl\:hover\:no-underline:hover { - text-decoration: none; - } - - .\32xl\:focus\:underline:focus { - text-decoration: underline; - } - - .\32xl\:focus\:line-through:focus { - text-decoration: line-through; - } - - .\32xl\:focus\:no-underline:focus { - text-decoration: none; - } - - .\32xl\:antialiased { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - } - - .\32xl\:subpixel-antialiased { - -webkit-font-smoothing: auto; - -moz-osx-font-smoothing: auto; - } - - .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); - } - - .\32xl\:normal-nums { - font-variant-numeric: normal; - } - - .\32xl\:ordinal { - --tw-ordinal: ordinal; - } - - .\32xl\:slashed-zero { - --tw-slashed-zero: slashed-zero; - } - - .\32xl\:lining-nums { - --tw-numeric-figure: lining-nums; - } - - .\32xl\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; - } - - .\32xl\:proportional-nums { - --tw-numeric-spacing: proportional-nums; - } - - .\32xl\:tabular-nums { - --tw-numeric-spacing: tabular-nums; - } - - .\32xl\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; - } - - .\32xl\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; - } - - .\32xl\:tracking-tighter { - letter-spacing: -0.05em; - } - - .\32xl\:tracking-tight { - letter-spacing: -0.025em; - } - - .\32xl\:tracking-normal { - letter-spacing: 0em; - } - - .\32xl\:tracking-wide { - letter-spacing: 0.025em; - } - - .\32xl\:tracking-wider { - letter-spacing: 0.05em; - } - - .\32xl\:tracking-widest { - letter-spacing: 0.1em; - } - - .\32xl\:select-none { - user-select: none; - } - - .\32xl\:select-text { - user-select: text; - } - - .\32xl\:select-all { - user-select: all; - } - - .\32xl\:select-auto { - user-select: auto; + --tw-text-opacity: 1; + color: rgba(239, 68, 68, var(--tw-text-opacity)); } - .\32xl\:align-baseline { - vertical-align: baseline; + .\32xl\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(220, 38, 38, var(--tw-text-opacity)); } - .\32xl\:align-top { - vertical-align: top; + .\32xl\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(185, 28, 28, var(--tw-text-opacity)); } - .\32xl\:align-middle { - vertical-align: middle; + .\32xl\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(153, 27, 27, var(--tw-text-opacity)); } - .\32xl\:align-bottom { - vertical-align: bottom; + .\32xl\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(127, 29, 29, var(--tw-text-opacity)); } - .\32xl\:align-text-top { - vertical-align: text-top; + .\32xl\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 251, 235, var(--tw-text-opacity)); } - .\32xl\:align-text-bottom { - vertical-align: text-bottom; + .\32xl\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 243, 199, var(--tw-text-opacity)); } - .\32xl\:visible { - visibility: visible; + .\32xl\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 230, 138, var(--tw-text-opacity)); } - .\32xl\:invisible { - visibility: hidden; + .\32xl\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(252, 211, 77, var(--tw-text-opacity)); } - .\32xl\:whitespace-normal { - white-space: normal; + .\32xl\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(251, 191, 36, var(--tw-text-opacity)); } - .\32xl\:whitespace-nowrap { - white-space: nowrap; + .\32xl\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); } - .\32xl\:whitespace-pre { - white-space: pre; + .\32xl\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(217, 119, 6, var(--tw-text-opacity)); } - .\32xl\:whitespace-pre-line { - white-space: pre-line; + .\32xl\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(180, 83, 9, var(--tw-text-opacity)); } - .\32xl\:whitespace-pre-wrap { - white-space: pre-wrap; + .\32xl\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(146, 64, 14, var(--tw-text-opacity)); } - .\32xl\:break-normal { - overflow-wrap: normal; - word-break: normal; + .\32xl\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 53, 15, var(--tw-text-opacity)); } - .\32xl\:break-words { - overflow-wrap: break-word; + .\32xl\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(236, 253, 245, var(--tw-text-opacity)); } - .\32xl\:break-all { - word-break: break-all; + .\32xl\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(209, 250, 229, var(--tw-text-opacity)); } - .\32xl\:w-0 { - width: 0px; + .\32xl\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(167, 243, 208, var(--tw-text-opacity)); } - .\32xl\:w-1 { - width: 0.25rem; + .\32xl\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(110, 231, 183, var(--tw-text-opacity)); } - .\32xl\:w-2 { - width: 0.5rem; + .\32xl\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(52, 211, 153, var(--tw-text-opacity)); } - .\32xl\:w-3 { - width: 0.75rem; + .\32xl\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(16, 185, 129, var(--tw-text-opacity)); } - .\32xl\:w-4 { - width: 1rem; + .\32xl\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(5, 150, 105, var(--tw-text-opacity)); } - .\32xl\:w-5 { - width: 1.25rem; + .\32xl\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(4, 120, 87, var(--tw-text-opacity)); } - .\32xl\:w-6 { - width: 1.5rem; + .\32xl\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(6, 95, 70, var(--tw-text-opacity)); } - .\32xl\:w-7 { - width: 1.75rem; + .\32xl\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(6, 78, 59, var(--tw-text-opacity)); } - .\32xl\:w-8 { - width: 2rem; + .\32xl\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(239, 246, 255, var(--tw-text-opacity)); } - .\32xl\:w-9 { - width: 2.25rem; + .\32xl\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(219, 234, 254, var(--tw-text-opacity)); } - .\32xl\:w-10 { - width: 2.5rem; + .\32xl\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(191, 219, 254, var(--tw-text-opacity)); } - .\32xl\:w-11 { - width: 2.75rem; + .\32xl\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(147, 197, 253, var(--tw-text-opacity)); } - .\32xl\:w-12 { - width: 3rem; + .\32xl\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(96, 165, 250, var(--tw-text-opacity)); } - .\32xl\:w-14 { - width: 3.5rem; + .\32xl\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); } - .\32xl\:w-16 { - width: 4rem; + .\32xl\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(37, 99, 235, var(--tw-text-opacity)); } - .\32xl\:w-20 { - width: 5rem; + .\32xl\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(29, 78, 216, var(--tw-text-opacity)); } - .\32xl\:w-24 { - width: 6rem; + .\32xl\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(30, 64, 175, var(--tw-text-opacity)); } - .\32xl\:w-28 { - width: 7rem; + .\32xl\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(30, 58, 138, var(--tw-text-opacity)); } - .\32xl\:w-32 { - width: 8rem; + .\32xl\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(238, 242, 255, var(--tw-text-opacity)); } - .\32xl\:w-36 { - width: 9rem; + .\32xl\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(224, 231, 255, var(--tw-text-opacity)); } - .\32xl\:w-40 { - width: 10rem; + .\32xl\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(199, 210, 254, var(--tw-text-opacity)); } - .\32xl\:w-44 { - width: 11rem; + .\32xl\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(165, 180, 252, var(--tw-text-opacity)); } - .\32xl\:w-48 { - width: 12rem; + .\32xl\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(129, 140, 248, var(--tw-text-opacity)); } - .\32xl\:w-52 { - width: 13rem; + .\32xl\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(99, 102, 241, var(--tw-text-opacity)); } - .\32xl\:w-56 { - width: 14rem; + .\32xl\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(79, 70, 229, var(--tw-text-opacity)); } - .\32xl\:w-60 { - width: 15rem; + .\32xl\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(67, 56, 202, var(--tw-text-opacity)); } - .\32xl\:w-64 { - width: 16rem; + .\32xl\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(55, 48, 163, var(--tw-text-opacity)); } - .\32xl\:w-72 { - width: 18rem; + .\32xl\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(49, 46, 129, var(--tw-text-opacity)); } - .\32xl\:w-80 { - width: 20rem; + .\32xl\:focus\:text-purple-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 243, 255, var(--tw-text-opacity)); } - .\32xl\:w-96 { - width: 24rem; + .\32xl\:focus\:text-purple-100:focus { + --tw-text-opacity: 1; + color: rgba(237, 233, 254, var(--tw-text-opacity)); } - .\32xl\:w-auto { - width: auto; + .\32xl\:focus\:text-purple-200:focus { + --tw-text-opacity: 1; + color: rgba(221, 214, 254, var(--tw-text-opacity)); } - .\32xl\:w-px { - width: 1px; + .\32xl\:focus\:text-purple-300:focus { + --tw-text-opacity: 1; + color: rgba(196, 181, 253, var(--tw-text-opacity)); } - .\32xl\:w-0\.5 { - width: 0.125rem; + .\32xl\:focus\:text-purple-400:focus { + --tw-text-opacity: 1; + color: rgba(167, 139, 250, var(--tw-text-opacity)); } - .\32xl\:w-1\.5 { - width: 0.375rem; + .\32xl\:focus\:text-purple-500:focus { + --tw-text-opacity: 1; + color: rgba(139, 92, 246, var(--tw-text-opacity)); } - .\32xl\:w-2\.5 { - width: 0.625rem; + .\32xl\:focus\:text-purple-600:focus { + --tw-text-opacity: 1; + color: rgba(124, 58, 237, var(--tw-text-opacity)); } - .\32xl\:w-3\.5 { - width: 0.875rem; + .\32xl\:focus\:text-purple-700:focus { + --tw-text-opacity: 1; + color: rgba(109, 40, 217, var(--tw-text-opacity)); } - .\32xl\:w-1\/2 { - width: 50%; + .\32xl\:focus\:text-purple-800:focus { + --tw-text-opacity: 1; + color: rgba(91, 33, 182, var(--tw-text-opacity)); } - .\32xl\:w-1\/3 { - width: 33.333333%; + .\32xl\:focus\:text-purple-900:focus { + --tw-text-opacity: 1; + color: rgba(76, 29, 149, var(--tw-text-opacity)); } - .\32xl\:w-2\/3 { - width: 66.666667%; + .\32xl\:focus\:text-pink-50:focus { + --tw-text-opacity: 1; + color: rgba(253, 242, 248, var(--tw-text-opacity)); } - .\32xl\:w-1\/4 { - width: 25%; + .\32xl\:focus\:text-pink-100:focus { + --tw-text-opacity: 1; + color: rgba(252, 231, 243, var(--tw-text-opacity)); } - .\32xl\:w-2\/4 { - width: 50%; + .\32xl\:focus\:text-pink-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 207, 232, var(--tw-text-opacity)); } - .\32xl\:w-3\/4 { - width: 75%; + .\32xl\:focus\:text-pink-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 168, 212, var(--tw-text-opacity)); } - .\32xl\:w-1\/5 { - width: 20%; + .\32xl\:focus\:text-pink-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 114, 182, var(--tw-text-opacity)); } - .\32xl\:w-2\/5 { - width: 40%; + .\32xl\:focus\:text-pink-500:focus { + --tw-text-opacity: 1; + color: rgba(236, 72, 153, var(--tw-text-opacity)); } - .\32xl\:w-3\/5 { - width: 60%; + .\32xl\:focus\:text-pink-600:focus { + --tw-text-opacity: 1; + color: rgba(219, 39, 119, var(--tw-text-opacity)); } - .\32xl\:w-4\/5 { - width: 80%; + .\32xl\:focus\:text-pink-700:focus { + --tw-text-opacity: 1; + color: rgba(190, 24, 93, var(--tw-text-opacity)); } - .\32xl\:w-1\/6 { - width: 16.666667%; + .\32xl\:focus\:text-pink-800:focus { + --tw-text-opacity: 1; + color: rgba(157, 23, 77, var(--tw-text-opacity)); } - .\32xl\:w-2\/6 { - width: 33.333333%; + .\32xl\:focus\:text-pink-900:focus { + --tw-text-opacity: 1; + color: rgba(131, 24, 67, var(--tw-text-opacity)); } - .\32xl\:w-3\/6 { - width: 50%; + .\32xl\:text-opacity-0 { + --tw-text-opacity: 0; } - .\32xl\:w-4\/6 { - width: 66.666667%; + .\32xl\:text-opacity-5 { + --tw-text-opacity: 0.05; } - .\32xl\:w-5\/6 { - width: 83.333333%; + .\32xl\:text-opacity-10 { + --tw-text-opacity: 0.1; } - .\32xl\:w-1\/12 { - width: 8.333333%; + .\32xl\:text-opacity-20 { + --tw-text-opacity: 0.2; } - .\32xl\:w-2\/12 { - width: 16.666667%; + .\32xl\:text-opacity-25 { + --tw-text-opacity: 0.25; } - .\32xl\:w-3\/12 { - width: 25%; + .\32xl\:text-opacity-30 { + --tw-text-opacity: 0.3; } - .\32xl\:w-4\/12 { - width: 33.333333%; + .\32xl\:text-opacity-40 { + --tw-text-opacity: 0.4; } - .\32xl\:w-5\/12 { - width: 41.666667%; + .\32xl\:text-opacity-50 { + --tw-text-opacity: 0.5; } - .\32xl\:w-6\/12 { - width: 50%; + .\32xl\:text-opacity-60 { + --tw-text-opacity: 0.6; } - .\32xl\:w-7\/12 { - width: 58.333333%; + .\32xl\:text-opacity-70 { + --tw-text-opacity: 0.7; } - .\32xl\:w-8\/12 { - width: 66.666667%; + .\32xl\:text-opacity-75 { + --tw-text-opacity: 0.75; } - .\32xl\:w-9\/12 { - width: 75%; + .\32xl\:text-opacity-80 { + --tw-text-opacity: 0.8; } - .\32xl\:w-10\/12 { - width: 83.333333%; + .\32xl\:text-opacity-90 { + --tw-text-opacity: 0.9; } - .\32xl\:w-11\/12 { - width: 91.666667%; + .\32xl\:text-opacity-95 { + --tw-text-opacity: 0.95; } - .\32xl\:w-full { - width: 100%; + .\32xl\:text-opacity-100 { + --tw-text-opacity: 1; } - .\32xl\:w-screen { - width: 100vw; + .group:hover .\32xl\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; } - .\32xl\:w-min { - width: min-content; + .group:hover .\32xl\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; } - .\32xl\:w-max { - width: max-content; + .group:hover .\32xl\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; } - .\32xl\:z-0 { - z-index: 0; + .group:hover .\32xl\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; } - .\32xl\:z-10 { - z-index: 10; + .group:hover .\32xl\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; } - .\32xl\:z-20 { - z-index: 20; + .group:hover .\32xl\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; } - .\32xl\:z-30 { - z-index: 30; + .group:hover .\32xl\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; } - .\32xl\:z-40 { - z-index: 40; + .group:hover .\32xl\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; } - .\32xl\:z-50 { - z-index: 50; + .group:hover .\32xl\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; } - .\32xl\:z-auto { - z-index: auto; + .group:hover .\32xl\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; } - .\32xl\:focus-within\:z-0:focus-within { - z-index: 0; + .group:hover .\32xl\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; } - .\32xl\:focus-within\:z-10:focus-within { - z-index: 10; + .group:hover .\32xl\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; } - .\32xl\:focus-within\:z-20:focus-within { - z-index: 20; + .group:hover .\32xl\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; } - .\32xl\:focus-within\:z-30:focus-within { - z-index: 30; + .group:hover .\32xl\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; } - .\32xl\:focus-within\:z-40:focus-within { - z-index: 40; + .group:hover .\32xl\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; } - .\32xl\:focus-within\:z-50:focus-within { - z-index: 50; + .\32xl\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; } - .\32xl\:focus-within\:z-auto:focus-within { - z-index: auto; + .\32xl\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; } - .\32xl\:focus\:z-0:focus { - z-index: 0; + .\32xl\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; } - .\32xl\:focus\:z-10:focus { - z-index: 10; + .\32xl\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; } - .\32xl\:focus\:z-20:focus { - z-index: 20; + .\32xl\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; } - .\32xl\:focus\:z-30:focus { - z-index: 30; + .\32xl\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; } - .\32xl\:focus\:z-40:focus { - z-index: 40; + .\32xl\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; } - .\32xl\:focus\:z-50:focus { - z-index: 50; + .\32xl\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; } - .\32xl\:focus\:z-auto:focus { - z-index: auto; + .\32xl\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; } - .\32xl\:isolate { - isolation: isolate; + .\32xl\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; } - .\32xl\:isolation-auto { - isolation: auto; + .\32xl\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; } - .\32xl\:gap-0 { - gap: 0px; + .\32xl\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; } - .\32xl\:gap-1 { - gap: 0.25rem; + .\32xl\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; } - .\32xl\:gap-2 { - gap: 0.5rem; + .\32xl\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; } - .\32xl\:gap-3 { - gap: 0.75rem; + .\32xl\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; } - .\32xl\:gap-4 { - gap: 1rem; + .\32xl\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; } - .\32xl\:gap-5 { - gap: 1.25rem; + .\32xl\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; } - .\32xl\:gap-6 { - gap: 1.5rem; + .\32xl\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; } - .\32xl\:gap-7 { - gap: 1.75rem; + .\32xl\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; } - .\32xl\:gap-8 { - gap: 2rem; + .\32xl\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; } - .\32xl\:gap-9 { - gap: 2.25rem; + .\32xl\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; } - .\32xl\:gap-10 { - gap: 2.5rem; + .\32xl\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; } - .\32xl\:gap-11 { - gap: 2.75rem; + .\32xl\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; } - .\32xl\:gap-12 { - gap: 3rem; + .\32xl\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; } - .\32xl\:gap-14 { - gap: 3.5rem; + .\32xl\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; } - .\32xl\:gap-16 { - gap: 4rem; + .\32xl\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; } - .\32xl\:gap-20 { - gap: 5rem; + .\32xl\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; } - .\32xl\:gap-24 { - gap: 6rem; + .\32xl\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; } - .\32xl\:gap-28 { - gap: 7rem; + .\32xl\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; } - .\32xl\:gap-32 { - gap: 8rem; + .\32xl\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; } - .\32xl\:gap-36 { - gap: 9rem; + .\32xl\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; } - .\32xl\:gap-40 { - gap: 10rem; + .\32xl\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; } - .\32xl\:gap-44 { - gap: 11rem; + .\32xl\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; } - .\32xl\:gap-48 { - gap: 12rem; + .\32xl\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; } - .\32xl\:gap-52 { - gap: 13rem; + .\32xl\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; } - .\32xl\:gap-56 { - gap: 14rem; + .\32xl\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; } - .\32xl\:gap-60 { - gap: 15rem; + .\32xl\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; } - .\32xl\:gap-64 { - gap: 16rem; + .\32xl\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; } - .\32xl\:gap-72 { - gap: 18rem; + .\32xl\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; } - .\32xl\:gap-80 { - gap: 20rem; + .\32xl\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; } - .\32xl\:gap-96 { - gap: 24rem; + .\32xl\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; } - .\32xl\:gap-px { - gap: 1px; + .\32xl\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; } - .\32xl\:gap-0\.5 { - gap: 0.125rem; + .\32xl\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; } - .\32xl\:gap-1\.5 { - gap: 0.375rem; + .\32xl\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; } - .\32xl\:gap-2\.5 { - gap: 0.625rem; + .\32xl\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; } - .\32xl\:gap-3\.5 { - gap: 0.875rem; + .\32xl\:underline { + text-decoration: underline; } - .\32xl\:gap-x-0 { - column-gap: 0px; + .\32xl\:line-through { + text-decoration: line-through; } - .\32xl\:gap-x-1 { - column-gap: 0.25rem; + .\32xl\:no-underline { + text-decoration: none; } - .\32xl\:gap-x-2 { - column-gap: 0.5rem; + .group:hover .\32xl\:group-hover\:underline { + text-decoration: underline; } - .\32xl\:gap-x-3 { - column-gap: 0.75rem; + .group:hover .\32xl\:group-hover\:line-through { + text-decoration: line-through; } - .\32xl\:gap-x-4 { - column-gap: 1rem; + .group:hover .\32xl\:group-hover\:no-underline { + text-decoration: none; } - .\32xl\:gap-x-5 { - column-gap: 1.25rem; + .\32xl\:focus-within\:underline:focus-within { + text-decoration: underline; } - .\32xl\:gap-x-6 { - column-gap: 1.5rem; + .\32xl\:focus-within\:line-through:focus-within { + text-decoration: line-through; } - .\32xl\:gap-x-7 { - column-gap: 1.75rem; + .\32xl\:focus-within\:no-underline:focus-within { + text-decoration: none; } - .\32xl\:gap-x-8 { - column-gap: 2rem; + .\32xl\:hover\:underline:hover { + text-decoration: underline; } - .\32xl\:gap-x-9 { - column-gap: 2.25rem; + .\32xl\:hover\:line-through:hover { + text-decoration: line-through; } - .\32xl\:gap-x-10 { - column-gap: 2.5rem; + .\32xl\:hover\:no-underline:hover { + text-decoration: none; } - .\32xl\:gap-x-11 { - column-gap: 2.75rem; + .\32xl\:focus\:underline:focus { + text-decoration: underline; } - .\32xl\:gap-x-12 { - column-gap: 3rem; + .\32xl\:focus\:line-through:focus { + text-decoration: line-through; } - .\32xl\:gap-x-14 { - column-gap: 3.5rem; + .\32xl\:focus\:no-underline:focus { + text-decoration: none; } - .\32xl\:gap-x-16 { - column-gap: 4rem; + .\32xl\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } - .\32xl\:gap-x-20 { - column-gap: 5rem; + .\32xl\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; } - .\32xl\:gap-x-24 { - column-gap: 6rem; + .\32xl\:placeholder-transparent::placeholder { + color: transparent; } - .\32xl\:gap-x-28 { - column-gap: 7rem; + .\32xl\:placeholder-current::placeholder { + color: currentColor; } - .\32xl\:gap-x-32 { - column-gap: 8rem; + .\32xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-36 { - column-gap: 9rem; + .\32xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-40 { - column-gap: 10rem; + .\32xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-44 { - column-gap: 11rem; + .\32xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-48 { - column-gap: 12rem; + .\32xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-52 { - column-gap: 13rem; + .\32xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-56 { - column-gap: 14rem; + .\32xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-60 { - column-gap: 15rem; + .\32xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-64 { - column-gap: 16rem; + .\32xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-72 { - column-gap: 18rem; + .\32xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-80 { - column-gap: 20rem; + .\32xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-96 { - column-gap: 24rem; + .\32xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-px { - column-gap: 1px; + .\32xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-0\.5 { - column-gap: 0.125rem; + .\32xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-1\.5 { - column-gap: 0.375rem; + .\32xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-2\.5 { - column-gap: 0.625rem; + .\32xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-3\.5 { - column-gap: 0.875rem; + .\32xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-0 { - row-gap: 0px; + .\32xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-1 { - row-gap: 0.25rem; + .\32xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-2 { - row-gap: 0.5rem; + .\32xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-3 { - row-gap: 0.75rem; + .\32xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-4 { - row-gap: 1rem; + .\32xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-5 { - row-gap: 1.25rem; + .\32xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-6 { - row-gap: 1.5rem; + .\32xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-7 { - row-gap: 1.75rem; + .\32xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-8 { - row-gap: 2rem; + .\32xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-9 { - row-gap: 2.25rem; + .\32xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-10 { - row-gap: 2.5rem; + .\32xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-11 { - row-gap: 2.75rem; + .\32xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-12 { - row-gap: 3rem; + .\32xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-14 { - row-gap: 3.5rem; + .\32xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-16 { - row-gap: 4rem; + .\32xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-20 { - row-gap: 5rem; + .\32xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-24 { - row-gap: 6rem; + .\32xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-28 { - row-gap: 7rem; + .\32xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-32 { - row-gap: 8rem; + .\32xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-36 { - row-gap: 9rem; + .\32xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-40 { - row-gap: 10rem; + .\32xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-44 { - row-gap: 11rem; + .\32xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-48 { - row-gap: 12rem; + .\32xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-52 { - row-gap: 13rem; + .\32xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-56 { - row-gap: 14rem; + .\32xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-60 { - row-gap: 15rem; + .\32xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-64 { - row-gap: 16rem; + .\32xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-72 { - row-gap: 18rem; + .\32xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-80 { - row-gap: 20rem; + .\32xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-96 { - row-gap: 24rem; + .\32xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-px { - row-gap: 1px; + .\32xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-0\.5 { - row-gap: 0.125rem; + .\32xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-1\.5 { - row-gap: 0.375rem; + .\32xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-2\.5 { - row-gap: 0.625rem; + .\32xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-3\.5 { - row-gap: 0.875rem; + .\32xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .\32xl\:grid-flow-row { - grid-auto-flow: row; + .\32xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .\32xl\:grid-flow-col { - grid-auto-flow: column; + .\32xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .\32xl\:grid-flow-row-dense { - grid-auto-flow: row dense; + .\32xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .\32xl\:grid-flow-col-dense { - grid-auto-flow: column dense; + .\32xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .\32xl\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .\32xl\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .\32xl\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .\32xl\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .\32xl\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .\32xl\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-none { - grid-template-columns: none; + .\32xl\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .\32xl\:auto-cols-auto { - grid-auto-columns: auto; + .\32xl\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .\32xl\:auto-cols-min { - grid-auto-columns: min-content; + .\32xl\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .\32xl\:auto-cols-max { - grid-auto-columns: max-content; + .\32xl\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .\32xl\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .\32xl\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .\32xl\:col-auto { - grid-column: auto; + .\32xl\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-1 { - grid-column: span 1 / span 1; + .\32xl\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-2 { - grid-column: span 2 / span 2; + .\32xl\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-3 { - grid-column: span 3 / span 3; + .\32xl\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-4 { - grid-column: span 4 / span 4; + .\32xl\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-5 { - grid-column: span 5 / span 5; + .\32xl\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-6 { - grid-column: span 6 / span 6; + .\32xl\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-7 { - grid-column: span 7 / span 7; + .\32xl\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-8 { - grid-column: span 8 / span 8; + .\32xl\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-9 { - grid-column: span 9 / span 9; + .\32xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .\32xl\:col-span-10 { - grid-column: span 10 / span 10; + .\32xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .\32xl\:col-span-11 { - grid-column: span 11 / span 11; + .\32xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-12 { - grid-column: span 12 / span 12; + .\32xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-full { - grid-column: 1 / -1; + .\32xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-1 { - grid-column-start: 1; + .\32xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-2 { - grid-column-start: 2; + .\32xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-3 { - grid-column-start: 3; + .\32xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-4 { - grid-column-start: 4; + .\32xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-5 { - grid-column-start: 5; + .\32xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-6 { - grid-column-start: 6; + .\32xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-7 { - grid-column-start: 7; + .\32xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-8 { - grid-column-start: 8; + .\32xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-9 { - grid-column-start: 9; + .\32xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-10 { - grid-column-start: 10; + .\32xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-11 { - grid-column-start: 11; + .\32xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-12 { - grid-column-start: 12; + .\32xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-13 { - grid-column-start: 13; + .\32xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-auto { - grid-column-start: auto; + .\32xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-1 { - grid-column-end: 1; + .\32xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-2 { - grid-column-end: 2; + .\32xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-3 { - grid-column-end: 3; + .\32xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-4 { - grid-column-end: 4; + .\32xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-5 { - grid-column-end: 5; + .\32xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-6 { - grid-column-end: 6; + .\32xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-7 { - grid-column-end: 7; + .\32xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-8 { - grid-column-end: 8; + .\32xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-9 { - grid-column-end: 9; + .\32xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-10 { - grid-column-end: 10; + .\32xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-11 { - grid-column-end: 11; + .\32xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-12 { - grid-column-end: 12; + .\32xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-13 { - grid-column-end: 13; + .\32xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-auto { - grid-column-end: auto; + .\32xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-none { - grid-template-rows: none; + .\32xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .\32xl\:auto-rows-auto { - grid-auto-rows: auto; + .\32xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .\32xl\:auto-rows-min { - grid-auto-rows: min-content; + .\32xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .\32xl\:auto-rows-max { - grid-auto-rows: max-content; + .\32xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .\32xl\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .\32xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .\32xl\:row-auto { - grid-row: auto; + .\32xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-1 { - grid-row: span 1 / span 1; + .\32xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-2 { - grid-row: span 2 / span 2; + .\32xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-3 { - grid-row: span 3 / span 3; + .\32xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-4 { - grid-row: span 4 / span 4; + .\32xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-5 { - grid-row: span 5 / span 5; + .\32xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-6 { - grid-row: span 6 / span 6; + .\32xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-full { - grid-row: 1 / -1; + .\32xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-1 { - grid-row-start: 1; + .\32xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-2 { - grid-row-start: 2; + .\32xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-3 { - grid-row-start: 3; + .\32xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-4 { - grid-row-start: 4; + .\32xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-5 { - grid-row-start: 5; + .\32xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-6 { - grid-row-start: 6; + .\32xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-7 { - grid-row-start: 7; + .\32xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-auto { - grid-row-start: auto; + .\32xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-1 { - grid-row-end: 1; + .\32xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-2 { - grid-row-end: 2; + .\32xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-3 { - grid-row-end: 3; + .\32xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-4 { - grid-row-end: 4; + .\32xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-5 { - grid-row-end: 5; + .\32xl\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-6 { - grid-row-end: 6; + .\32xl\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-7 { - grid-row-end: 7; + .\32xl\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-auto { - grid-row-end: auto; + .\32xl\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .\32xl\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .\32xl\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .\32xl\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .\32xl\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .\32xl\:transform-none { - transform: none; + .\32xl\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .\32xl\:origin-center { - transform-origin: center; + .\32xl\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .\32xl\:origin-top { - transform-origin: top; + .\32xl\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .\32xl\:origin-top-right { - transform-origin: top right; + .\32xl\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .\32xl\:origin-right { - transform-origin: right; + .\32xl\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .\32xl\:origin-bottom-right { - transform-origin: bottom right; + .\32xl\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .\32xl\:origin-bottom { - transform-origin: bottom; + .\32xl\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .\32xl\:origin-bottom-left { - transform-origin: bottom left; + .\32xl\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .\32xl\:origin-left { - transform-origin: left; + .\32xl\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .\32xl\:origin-top-left { - transform-origin: top left; + .\32xl\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .\32xl\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .\32xl\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .\32xl\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .\32xl\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .\32xl\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .\32xl\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .\32xl\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .\32xl\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .\32xl\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .\32xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } - .\32xl\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .\32xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } - .\32xl\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .\32xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } - .\32xl\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .\32xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } - .\32xl\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .\32xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } - .\32xl\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .\32xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } - .\32xl\:scale-x-0 { - --tw-scale-x: 0; + .\32xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } - .\32xl\:scale-x-50 { - --tw-scale-x: .5; + .\32xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } - .\32xl\:scale-x-75 { - --tw-scale-x: .75; + .\32xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } - .\32xl\:scale-x-90 { - --tw-scale-x: .9; + .\32xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } - .\32xl\:scale-x-95 { - --tw-scale-x: .95; + .\32xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } - .\32xl\:scale-x-100 { - --tw-scale-x: 1; + .\32xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } - .\32xl\:scale-x-105 { - --tw-scale-x: 1.05; + .\32xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } - .\32xl\:scale-x-110 { - --tw-scale-x: 1.1; + .\32xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } - .\32xl\:scale-x-125 { - --tw-scale-x: 1.25; + .\32xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } - .\32xl\:scale-x-150 { - --tw-scale-x: 1.5; + .\32xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } - .\32xl\:scale-y-0 { - --tw-scale-y: 0; + .\32xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } - .\32xl\:scale-y-50 { - --tw-scale-y: .5; + .\32xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } - .\32xl\:scale-y-75 { - --tw-scale-y: .75; + .\32xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } - .\32xl\:scale-y-90 { - --tw-scale-y: .9; + .\32xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } - .\32xl\:scale-y-95 { - --tw-scale-y: .95; + .\32xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } - .\32xl\:scale-y-100 { - --tw-scale-y: 1; + .\32xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } - .\32xl\:scale-y-105 { - --tw-scale-y: 1.05; + .\32xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } - .\32xl\:scale-y-110 { - --tw-scale-y: 1.1; + .\32xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } - .\32xl\:scale-y-125 { - --tw-scale-y: 1.25; + .\32xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } - .\32xl\:scale-y-150 { - --tw-scale-y: 1.5; + .\32xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } - .\32xl\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .\32xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } - .\32xl\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .\32xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } - .\32xl\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .\32xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } - .\32xl\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .\32xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } - .\32xl\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .\32xl\:opacity-0 { + opacity: 0; } - .\32xl\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .\32xl\:opacity-5 { + opacity: 0.05; } - .\32xl\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .\32xl\:opacity-10 { + opacity: 0.1; } - .\32xl\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .\32xl\:opacity-20 { + opacity: 0.2; } - .\32xl\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .\32xl\:opacity-25 { + opacity: 0.25; } - .\32xl\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .\32xl\:opacity-30 { + opacity: 0.3; } - .\32xl\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .\32xl\:opacity-40 { + opacity: 0.4; } - .\32xl\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .\32xl\:opacity-50 { + opacity: 0.5; } - .\32xl\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .\32xl\:opacity-60 { + opacity: 0.6; } - .\32xl\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .\32xl\:opacity-70 { + opacity: 0.7; } - .\32xl\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .\32xl\:opacity-75 { + opacity: 0.75; } - .\32xl\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .\32xl\:opacity-80 { + opacity: 0.8; } - .\32xl\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .\32xl\:opacity-90 { + opacity: 0.9; } - .\32xl\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .\32xl\:opacity-95 { + opacity: 0.95; } - .\32xl\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .\32xl\:opacity-100 { + opacity: 1; } - .\32xl\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .group:hover .\32xl\:group-hover\:opacity-0 { + opacity: 0; } - .\32xl\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .group:hover .\32xl\:group-hover\:opacity-5 { + opacity: 0.05; } - .\32xl\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .group:hover .\32xl\:group-hover\:opacity-10 { + opacity: 0.1; } - .\32xl\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .group:hover .\32xl\:group-hover\:opacity-20 { + opacity: 0.2; } - .\32xl\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .group:hover .\32xl\:group-hover\:opacity-25 { + opacity: 0.25; } - .\32xl\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .group:hover .\32xl\:group-hover\:opacity-30 { + opacity: 0.3; } - .\32xl\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .group:hover .\32xl\:group-hover\:opacity-40 { + opacity: 0.4; } - .\32xl\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .group:hover .\32xl\:group-hover\:opacity-50 { + opacity: 0.5; } - .\32xl\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .group:hover .\32xl\:group-hover\:opacity-60 { + opacity: 0.6; } - .\32xl\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .group:hover .\32xl\:group-hover\:opacity-70 { + opacity: 0.7; } - .\32xl\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .group:hover .\32xl\:group-hover\:opacity-75 { + opacity: 0.75; } - .\32xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .group:hover .\32xl\:group-hover\:opacity-80 { + opacity: 0.8; } - .\32xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .group:hover .\32xl\:group-hover\:opacity-90 { + opacity: 0.9; } - .\32xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .group:hover .\32xl\:group-hover\:opacity-95 { + opacity: 0.95; } - .\32xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .group:hover .\32xl\:group-hover\:opacity-100 { + opacity: 1; } - .\32xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .\32xl\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .\32xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .\32xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .\32xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .\32xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .\32xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .\32xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .\32xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .\32xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .\32xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .\32xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .\32xl\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .\32xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .\32xl\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .\32xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .\32xl\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .\32xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .\32xl\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .\32xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .\32xl\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .\32xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .\32xl\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .\32xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .\32xl\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .\32xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .\32xl\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .\32xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .\32xl\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .\32xl\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .\32xl\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .\32xl\:hover\:opacity-0:hover { + opacity: 0; } - .\32xl\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .\32xl\:hover\:opacity-5:hover { + opacity: 0.05; } - .\32xl\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .\32xl\:hover\:opacity-10:hover { + opacity: 0.1; } - .\32xl\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .\32xl\:hover\:opacity-20:hover { + opacity: 0.2; } - .\32xl\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .\32xl\:hover\:opacity-25:hover { + opacity: 0.25; } - .\32xl\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .\32xl\:hover\:opacity-30:hover { + opacity: 0.3; } - .\32xl\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .\32xl\:hover\:opacity-40:hover { + opacity: 0.4; } - .\32xl\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .\32xl\:hover\:opacity-50:hover { + opacity: 0.5; } - .\32xl\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .\32xl\:hover\:opacity-60:hover { + opacity: 0.6; } - .\32xl\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .\32xl\:hover\:opacity-70:hover { + opacity: 0.7; } - .\32xl\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .\32xl\:hover\:opacity-75:hover { + opacity: 0.75; } - .\32xl\:rotate-0 { - --tw-rotate: 0deg; + .\32xl\:hover\:opacity-80:hover { + opacity: 0.8; } - .\32xl\:rotate-1 { - --tw-rotate: 1deg; + .\32xl\:hover\:opacity-90:hover { + opacity: 0.9; } - .\32xl\:rotate-2 { - --tw-rotate: 2deg; + .\32xl\:hover\:opacity-95:hover { + opacity: 0.95; } - .\32xl\:rotate-3 { - --tw-rotate: 3deg; + .\32xl\:hover\:opacity-100:hover { + opacity: 1; } - .\32xl\:rotate-6 { - --tw-rotate: 6deg; + .\32xl\:focus\:opacity-0:focus { + opacity: 0; } - .\32xl\:rotate-12 { - --tw-rotate: 12deg; + .\32xl\:focus\:opacity-5:focus { + opacity: 0.05; } - .\32xl\:rotate-45 { - --tw-rotate: 45deg; + .\32xl\:focus\:opacity-10:focus { + opacity: 0.1; } - .\32xl\:rotate-90 { - --tw-rotate: 90deg; + .\32xl\:focus\:opacity-20:focus { + opacity: 0.2; } - .\32xl\:rotate-180 { - --tw-rotate: 180deg; + .\32xl\:focus\:opacity-25:focus { + opacity: 0.25; } - .\32xl\:-rotate-180 { - --tw-rotate: -180deg; + .\32xl\:focus\:opacity-30:focus { + opacity: 0.3; } - .\32xl\:-rotate-90 { - --tw-rotate: -90deg; + .\32xl\:focus\:opacity-40:focus { + opacity: 0.4; } - .\32xl\:-rotate-45 { - --tw-rotate: -45deg; + .\32xl\:focus\:opacity-50:focus { + opacity: 0.5; } - .\32xl\:-rotate-12 { - --tw-rotate: -12deg; + .\32xl\:focus\:opacity-60:focus { + opacity: 0.6; } - .\32xl\:-rotate-6 { - --tw-rotate: -6deg; + .\32xl\:focus\:opacity-70:focus { + opacity: 0.7; } - .\32xl\:-rotate-3 { - --tw-rotate: -3deg; + .\32xl\:focus\:opacity-75:focus { + opacity: 0.75; } - .\32xl\:-rotate-2 { - --tw-rotate: -2deg; + .\32xl\:focus\:opacity-80:focus { + opacity: 0.8; } - .\32xl\:-rotate-1 { - --tw-rotate: -1deg; + .\32xl\:focus\:opacity-90:focus { + opacity: 0.9; } - .\32xl\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .\32xl\:focus\:opacity-95:focus { + opacity: 0.95; } - .\32xl\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .\32xl\:focus\:opacity-100:focus { + opacity: 1; } - .\32xl\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .\32xl\:bg-blend-normal { + background-blend-mode: normal; } - .\32xl\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .\32xl\:bg-blend-multiply { + background-blend-mode: multiply; } - .\32xl\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .\32xl\:bg-blend-screen { + background-blend-mode: screen; } - .\32xl\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .\32xl\:bg-blend-overlay { + background-blend-mode: overlay; } - .\32xl\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .\32xl\:bg-blend-darken { + background-blend-mode: darken; } - .\32xl\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .\32xl\:bg-blend-lighten { + background-blend-mode: lighten; } - .\32xl\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .\32xl\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .\32xl\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .\32xl\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .\32xl\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .\32xl\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .\32xl\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .\32xl\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .\32xl\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .\32xl\:bg-blend-difference { + background-blend-mode: difference; } - .\32xl\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .\32xl\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .\32xl\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .\32xl\:bg-blend-hue { + background-blend-mode: hue; } - .\32xl\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .\32xl\:bg-blend-saturation { + background-blend-mode: saturation; } - .\32xl\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .\32xl\:bg-blend-color { + background-blend-mode: color; } - .\32xl\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .\32xl\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .\32xl\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .\32xl\:mix-blend-normal { + mix-blend-mode: normal; } - .\32xl\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .\32xl\:mix-blend-multiply { + mix-blend-mode: multiply; } - .\32xl\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .\32xl\:mix-blend-screen { + mix-blend-mode: screen; } - .\32xl\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .\32xl\:mix-blend-overlay { + mix-blend-mode: overlay; } - .\32xl\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .\32xl\:mix-blend-darken { + mix-blend-mode: darken; } - .\32xl\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .\32xl\:mix-blend-lighten { + mix-blend-mode: lighten; } - .\32xl\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .\32xl\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .\32xl\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .\32xl\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .\32xl\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .\32xl\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .\32xl\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .\32xl\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .\32xl\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .\32xl\:mix-blend-difference { + mix-blend-mode: difference; } - .\32xl\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .\32xl\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .\32xl\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .\32xl\:mix-blend-hue { + mix-blend-mode: hue; } - .\32xl\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .\32xl\:mix-blend-saturation { + mix-blend-mode: saturation; } - .\32xl\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .\32xl\:mix-blend-color { + mix-blend-mode: color; } - .\32xl\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .\32xl\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .\32xl\:translate-x-0 { - --tw-translate-x: 0px; + .\32xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-1 { - --tw-translate-x: 0.25rem; + .\32xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-2 { - --tw-translate-x: 0.5rem; + .\32xl\: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); } - .\32xl\:translate-x-3 { - --tw-translate-x: 0.75rem; + .\32xl\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-4 { - --tw-translate-x: 1rem; + .\32xl\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-5 { - --tw-translate-x: 1.25rem; + .\32xl\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-6 { - --tw-translate-x: 1.5rem; + .\32xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-7 { - --tw-translate-x: 1.75rem; + .\32xl\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-8 { - --tw-translate-x: 2rem; + .group:hover .\32xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-9 { - --tw-translate-x: 2.25rem; + .group:hover .\32xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-10 { - --tw-translate-x: 2.5rem; + .group:hover .\32xl\:group-hover\: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); } - .\32xl\:translate-x-11 { - --tw-translate-x: 2.75rem; + .group:hover .\32xl\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-12 { - --tw-translate-x: 3rem; + .group:hover .\32xl\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-14 { - --tw-translate-x: 3.5rem; + .group:hover .\32xl\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-16 { - --tw-translate-x: 4rem; + .group:hover .\32xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-20 { - --tw-translate-x: 5rem; + .group:hover .\32xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-24 { - --tw-translate-x: 6rem; + .\32xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-28 { - --tw-translate-x: 7rem; + .\32xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-32 { - --tw-translate-x: 8rem; + .\32xl\:focus-within\:shadow-md:focus-within { + --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); } - .\32xl\:translate-x-36 { - --tw-translate-x: 9rem; + .\32xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-40 { - --tw-translate-x: 10rem; + .\32xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-44 { - --tw-translate-x: 11rem; + .\32xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-48 { - --tw-translate-x: 12rem; + .\32xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-52 { - --tw-translate-x: 13rem; + .\32xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-56 { - --tw-translate-x: 14rem; + .\32xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-60 { - --tw-translate-x: 15rem; + .\32xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-64 { - --tw-translate-x: 16rem; + .\32xl\:hover\:shadow-md:hover { + --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); } - .\32xl\:translate-x-72 { - --tw-translate-x: 18rem; + .\32xl\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-80 { - --tw-translate-x: 20rem; + .\32xl\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-96 { - --tw-translate-x: 24rem; + .\32xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-px { - --tw-translate-x: 1px; + .\32xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .\32xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .\32xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .\32xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .\32xl\:focus\:shadow-md:focus { + --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); } - .\32xl\:-translate-x-0 { - --tw-translate-x: 0px; + .\32xl\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .\32xl\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .\32xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .\32xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-4 { - --tw-translate-x: -1rem; + .\32xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .\32xl\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .\32xl\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .\32xl\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .\32xl\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .\32xl\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .\32xl\:-translate-x-8 { - --tw-translate-x: -2rem; + .\32xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .\32xl\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .\32xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .\32xl\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .\32xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .\32xl\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .\32xl\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .\32xl\:-translate-x-12 { - --tw-translate-x: -3rem; + .\32xl\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .\32xl\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .\32xl\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .\32xl\:-translate-x-16 { - --tw-translate-x: -4rem; + .\32xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-20 { - --tw-translate-x: -5rem; + .\32xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-24 { - --tw-translate-x: -6rem; + .\32xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-28 { - --tw-translate-x: -7rem; + .\32xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-32 { - --tw-translate-x: -8rem; + .\32xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-36 { - --tw-translate-x: -9rem; + .\32xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-40 { - --tw-translate-x: -10rem; + .\32xl\:ring-inset { + --tw-ring-inset: inset; } - .\32xl\:-translate-x-44 { - --tw-translate-x: -11rem; + .\32xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-48 { - --tw-translate-x: -12rem; + .\32xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-52 { - --tw-translate-x: -13rem; + .\32xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-56 { - --tw-translate-x: -14rem; + .\32xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-60 { - --tw-translate-x: -15rem; + .\32xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-64 { - --tw-translate-x: -16rem; + .\32xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-72 { - --tw-translate-x: -18rem; + .\32xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .\32xl\:-translate-x-80 { - --tw-translate-x: -20rem; + .\32xl\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-96 { - --tw-translate-x: -24rem; + .\32xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-px { - --tw-translate-x: -1px; + .\32xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .\32xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .\32xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .\32xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .\32xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .\32xl\:translate-x-1\/2 { - --tw-translate-x: 50%; + .\32xl\:ring-transparent { + --tw-ring-color: transparent; } - .\32xl\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .\32xl\:ring-current { + --tw-ring-color: currentColor; } - .\32xl\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .\32xl\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .\32xl\:translate-x-1\/4 { - --tw-translate-x: 25%; + .\32xl\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .\32xl\:translate-x-2\/4 { - --tw-translate-x: 50%; + .\32xl\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .\32xl\:translate-x-3\/4 { - --tw-translate-x: 75%; + .\32xl\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .\32xl\:translate-x-full { - --tw-translate-x: 100%; + .\32xl\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .\32xl\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .\32xl\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .\32xl\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .\32xl\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .\32xl\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .\32xl\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-full { - --tw-translate-x: -100%; + .\32xl\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .\32xl\:translate-y-0 { - --tw-translate-y: 0px; + .\32xl\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1 { - --tw-translate-y: 0.25rem; + .\32xl\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .\32xl\:translate-y-2 { - --tw-translate-y: 0.5rem; + .\32xl\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .\32xl\:translate-y-3 { - --tw-translate-y: 0.75rem; + .\32xl\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .\32xl\:translate-y-4 { - --tw-translate-y: 1rem; + .\32xl\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .\32xl\:translate-y-5 { - --tw-translate-y: 1.25rem; + .\32xl\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .\32xl\:translate-y-6 { - --tw-translate-y: 1.5rem; + .\32xl\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .\32xl\:translate-y-7 { - --tw-translate-y: 1.75rem; + .\32xl\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .\32xl\:translate-y-8 { - --tw-translate-y: 2rem; + .\32xl\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .\32xl\:translate-y-9 { - --tw-translate-y: 2.25rem; + .\32xl\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .\32xl\:translate-y-10 { - --tw-translate-y: 2.5rem; + .\32xl\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .\32xl\:translate-y-11 { - --tw-translate-y: 2.75rem; + .\32xl\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .\32xl\:translate-y-12 { - --tw-translate-y: 3rem; + .\32xl\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .\32xl\:translate-y-14 { - --tw-translate-y: 3.5rem; + .\32xl\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .\32xl\:translate-y-16 { - --tw-translate-y: 4rem; + .\32xl\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .\32xl\:translate-y-20 { - --tw-translate-y: 5rem; + .\32xl\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .\32xl\:translate-y-24 { - --tw-translate-y: 6rem; + .\32xl\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .\32xl\:translate-y-28 { - --tw-translate-y: 7rem; + .\32xl\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .\32xl\:translate-y-32 { - --tw-translate-y: 8rem; + .\32xl\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .\32xl\:translate-y-36 { - --tw-translate-y: 9rem; + .\32xl\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .\32xl\:translate-y-40 { - --tw-translate-y: 10rem; + .\32xl\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .\32xl\:translate-y-44 { - --tw-translate-y: 11rem; + .\32xl\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .\32xl\:translate-y-48 { - --tw-translate-y: 12rem; + .\32xl\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .\32xl\:translate-y-52 { - --tw-translate-y: 13rem; + .\32xl\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .\32xl\:translate-y-56 { - --tw-translate-y: 14rem; + .\32xl\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .\32xl\:translate-y-60 { - --tw-translate-y: 15rem; + .\32xl\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .\32xl\:translate-y-64 { - --tw-translate-y: 16rem; + .\32xl\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .\32xl\:translate-y-72 { - --tw-translate-y: 18rem; + .\32xl\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .\32xl\:translate-y-80 { - --tw-translate-y: 20rem; + .\32xl\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .\32xl\:translate-y-96 { - --tw-translate-y: 24rem; + .\32xl\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .\32xl\:translate-y-px { - --tw-translate-y: 1px; + .\32xl\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .\32xl\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .\32xl\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .\32xl\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .\32xl\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .\32xl\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .\32xl\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .\32xl\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-0 { - --tw-translate-y: 0px; + .\32xl\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .\32xl\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .\32xl\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .\32xl\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-4 { - --tw-translate-y: -1rem; + .\32xl\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .\32xl\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .\32xl\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .\32xl\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-8 { - --tw-translate-y: -2rem; + .\32xl\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .\32xl\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .\32xl\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .\32xl\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-12 { - --tw-translate-y: -3rem; + .\32xl\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .\32xl\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-16 { - --tw-translate-y: -4rem; + .\32xl\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-20 { - --tw-translate-y: -5rem; + .\32xl\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-24 { - --tw-translate-y: -6rem; + .\32xl\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-28 { - --tw-translate-y: -7rem; + .\32xl\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-32 { - --tw-translate-y: -8rem; + .\32xl\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-36 { - --tw-translate-y: -9rem; + .\32xl\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-40 { - --tw-translate-y: -10rem; + .\32xl\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-44 { - --tw-translate-y: -11rem; + .\32xl\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-48 { - --tw-translate-y: -12rem; + .\32xl\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-52 { - --tw-translate-y: -13rem; + .\32xl\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-56 { - --tw-translate-y: -14rem; + .\32xl\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-60 { - --tw-translate-y: -15rem; + .\32xl\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-64 { - --tw-translate-y: -16rem; + .\32xl\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-72 { - --tw-translate-y: -18rem; + .\32xl\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-80 { - --tw-translate-y: -20rem; + .\32xl\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-96 { - --tw-translate-y: -24rem; + .\32xl\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-px { - --tw-translate-y: -1px; + .\32xl\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .\32xl\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .\32xl\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .\32xl\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .\32xl\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1\/2 { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .\32xl\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .\32xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .\32xl\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .\32xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1\/4 { - --tw-translate-y: 25%; + .\32xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .\32xl\:translate-y-2\/4 { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .\32xl\:translate-y-3\/4 { - --tw-translate-y: 75%; + .\32xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .\32xl\:translate-y-full { - --tw-translate-y: 100%; + .\32xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .\32xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .\32xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .\32xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .\32xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-full { - --tw-translate-y: -100%; + .\32xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .\32xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .\32xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .\32xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .\32xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .\32xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .\32xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .\32xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .\32xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .\32xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .\32xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .\32xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .\32xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .\32xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .\32xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .\32xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .\32xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .\32xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .\32xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .\32xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .\32xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .\32xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .\32xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .\32xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .\32xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .\32xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .\32xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .\32xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .\32xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .\32xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .\32xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .\32xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .\32xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .\32xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .\32xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .\32xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .\32xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .\32xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .\32xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .\32xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .\32xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .\32xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .\32xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .\32xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .\32xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .\32xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .\32xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .\32xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .\32xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .\32xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .\32xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .\32xl\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .\32xl\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .\32xl\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .\32xl\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .\32xl\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .\32xl\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .\32xl\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .\32xl\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .\32xl\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .\32xl\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .\32xl\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .\32xl\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .\32xl\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .\32xl\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .\32xl\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .\32xl\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .\32xl\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .\32xl\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .\32xl\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .\32xl\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .\32xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .\32xl\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .\32xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .\32xl\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .\32xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .\32xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .\32xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .\32xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .\32xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .\32xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .\32xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .\32xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .\32xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .\32xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .\32xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .\32xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .\32xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .\32xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .\32xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .\32xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .\32xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .\32xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .\32xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .\32xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .\32xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .\32xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .\32xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .\32xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .\32xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .\32xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .\32xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .\32xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .\32xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .\32xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .\32xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .\32xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .\32xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .\32xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .\32xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .\32xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .\32xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .\32xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .\32xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .\32xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .\32xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .\32xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .\32xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .\32xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .\32xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .\32xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .\32xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .\32xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .\32xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .\32xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .\32xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .\32xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .\32xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .\32xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .\32xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .\32xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .\32xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .\32xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .\32xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .\32xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .\32xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .\32xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .\32xl\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .\32xl\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .\32xl\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .\32xl\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .\32xl\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .\32xl\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .\32xl\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .\32xl\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .\32xl\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .\32xl\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .\32xl\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .\32xl\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .\32xl\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .\32xl\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .\32xl\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .\32xl\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .\32xl\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .\32xl\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .\32xl\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .\32xl\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .\32xl\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .\32xl\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .\32xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .\32xl\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .\32xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .\32xl\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .\32xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .\32xl\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .\32xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .\32xl\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .\32xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .\32xl\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .\32xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .\32xl\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .\32xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .\32xl\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .\32xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .\32xl\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .\32xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .\32xl\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .\32xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .\32xl\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .\32xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .\32xl\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .\32xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .\32xl\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .\32xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .\32xl\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .\32xl\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .\32xl\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .\32xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .\32xl\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + .\32xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .\32xl\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .\32xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .\32xl\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .\32xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .\32xl\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .\32xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .\32xl\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .\32xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .\32xl\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .\32xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .\32xl\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .\32xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .\32xl\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .\32xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .\32xl\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .\32xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .\32xl\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .\32xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .\32xl\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .\32xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .\32xl\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .\32xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .\32xl\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .\32xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .\32xl\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .\32xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .\32xl\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .\32xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .\32xl\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .\32xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .\32xl\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .\32xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .\32xl\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .\32xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .\32xl\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .\32xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .\32xl\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .\32xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .\32xl\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .\32xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .\32xl\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .\32xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .\32xl\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .\32xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .\32xl\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .\32xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .\32xl\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .\32xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .\32xl\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .\32xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .\32xl\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .\32xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .\32xl\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .\32xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .\32xl\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .\32xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .\32xl\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .\32xl\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .\32xl\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .\32xl\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .\32xl\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .\32xl\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .\32xl\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .\32xl\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .\32xl\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .\32xl\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .\32xl\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .\32xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .\32xl\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .\32xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .\32xl\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .\32xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .\32xl\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .\32xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .\32xl\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .\32xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .\32xl\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .\32xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .\32xl\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .\32xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .\32xl\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .\32xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .\32xl\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .\32xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .\32xl\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .\32xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .\32xl\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .\32xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .\32xl\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .\32xl\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .\32xl\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .\32xl\:ring-offset-black { + --tw-ring-offset-color: #000; } - .\32xl\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .\32xl\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .\32xl\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .\32xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .\32xl\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .\32xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .\32xl\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .\32xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .\32xl\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .\32xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .\32xl\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .\32xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .\32xl\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .\32xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .\32xl\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .\32xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .\32xl\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .\32xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .\32xl\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .\32xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .\32xl\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .\32xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .\32xl\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .\32xl\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .\32xl\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .\32xl\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .\32xl\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .\32xl\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .\32xl\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .\32xl\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .\32xl\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .\32xl\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .\32xl\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .\32xl\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .\32xl\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .\32xl\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .\32xl\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .\32xl\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .\32xl\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .\32xl\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .\32xl\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .\32xl\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .\32xl\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .\32xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .\32xl\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .\32xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .\32xl\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .\32xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .\32xl\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .\32xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .\32xl\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .\32xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .\32xl\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .\32xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .\32xl\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .\32xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .\32xl\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .\32xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .\32xl\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .\32xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .\32xl\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .\32xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .\32xl\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .\32xl\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .\32xl\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .\32xl\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .\32xl\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .\32xl\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .\32xl\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .\32xl\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .\32xl\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .\32xl\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .\32xl\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .\32xl\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .\32xl\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .\32xl\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .\32xl\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .\32xl\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .\32xl\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .\32xl\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .\32xl\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .\32xl\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .\32xl\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .\32xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .\32xl\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .\32xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .\32xl\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .\32xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .\32xl\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .\32xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .\32xl\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .\32xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .\32xl\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .\32xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .\32xl\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .\32xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .\32xl\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .\32xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .\32xl\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .\32xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .\32xl\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .\32xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .\32xl\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .\32xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .\32xl\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .\32xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .\32xl\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .\32xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .\32xl\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .\32xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .\32xl\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .\32xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .\32xl\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .\32xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .\32xl\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .\32xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .\32xl\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .\32xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .\32xl\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .\32xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .\32xl\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .\32xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .\32xl\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .\32xl\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .\32xl\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .\32xl\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .\32xl\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .\32xl\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .\32xl\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .\32xl\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .\32xl\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .\32xl\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .\32xl\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .\32xl\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .\32xl\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .\32xl\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .\32xl\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .\32xl\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .\32xl\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .\32xl\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .\32xl\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .\32xl\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .\32xl\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .\32xl\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .\32xl\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .\32xl\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .\32xl\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .\32xl\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .\32xl\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .\32xl\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .\32xl\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .\32xl\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .\32xl\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .\32xl\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .\32xl\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .\32xl\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .\32xl\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .\32xl\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .\32xl\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .\32xl\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .\32xl\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .\32xl\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .\32xl\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .\32xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .\32xl\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .\32xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .\32xl\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .\32xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .\32xl\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .\32xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .\32xl\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .\32xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .\32xl\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .\32xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .\32xl\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .\32xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .\32xl\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .\32xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .\32xl\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .\32xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .\32xl\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .\32xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .\32xl\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .\32xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .\32xl\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .\32xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .\32xl\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .\32xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .\32xl\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .\32xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .\32xl\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .\32xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .\32xl\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .\32xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .\32xl\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .\32xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .\32xl\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .\32xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .\32xl\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .\32xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .\32xl\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .\32xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .\32xl\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .\32xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .\32xl\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .\32xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .\32xl\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .\32xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .\32xl\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .\32xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .\32xl\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .\32xl\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .\32xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .\32xl\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .\32xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .\32xl\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .\32xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .\32xl\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .\32xl\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .\32xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .\32xl\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .\32xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .\32xl\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .\32xl\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .\32xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .\32xl\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .\32xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .\32xl\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .\32xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - .\32xl\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .\32xl\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .\32xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .\32xl\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .\32xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .\32xl\:skew-x-0 { - --tw-skew-x: 0deg; + .\32xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .\32xl\:skew-x-1 { - --tw-skew-x: 1deg; + .\32xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .\32xl\:skew-x-2 { - --tw-skew-x: 2deg; + .\32xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .\32xl\:skew-x-3 { - --tw-skew-x: 3deg; + .\32xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .\32xl\:skew-x-6 { - --tw-skew-x: 6deg; + .\32xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .\32xl\:skew-x-12 { - --tw-skew-x: 12deg; + .\32xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .\32xl\:-skew-x-12 { - --tw-skew-x: -12deg; + .\32xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .\32xl\:-skew-x-6 { - --tw-skew-x: -6deg; + .\32xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .\32xl\:-skew-x-3 { - --tw-skew-x: -3deg; + .\32xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .\32xl\:-skew-x-2 { - --tw-skew-x: -2deg; + .\32xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .\32xl\:-skew-x-1 { - --tw-skew-x: -1deg; + .\32xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .\32xl\:skew-y-0 { - --tw-skew-y: 0deg; + .\32xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .\32xl\:skew-y-1 { - --tw-skew-y: 1deg; + .\32xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .\32xl\:skew-y-2 { - --tw-skew-y: 2deg; + .\32xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .\32xl\:skew-y-3 { - --tw-skew-y: 3deg; + .\32xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .\32xl\:skew-y-6 { - --tw-skew-y: 6deg; + .\32xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .\32xl\:skew-y-12 { - --tw-skew-y: 12deg; + .\32xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .\32xl\:-skew-y-12 { - --tw-skew-y: -12deg; + .\32xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .\32xl\:-skew-y-6 { - --tw-skew-y: -6deg; + .\32xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .\32xl\:-skew-y-3 { - --tw-skew-y: -3deg; + .\32xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .\32xl\:-skew-y-2 { - --tw-skew-y: -2deg; + .\32xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .\32xl\:-skew-y-1 { - --tw-skew-y: -1deg; + .\32xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .\32xl\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .\32xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .\32xl\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .\32xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .\32xl\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .\32xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .\32xl\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .\32xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .\32xl\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .\32xl\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .\32xl\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .\32xl\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .\32xl\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .\32xl\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .\32xl\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .\32xl\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .\32xl\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .\32xl\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .\32xl\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .\32xl\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .\32xl\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .\32xl\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .\32xl\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .\32xl\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .\32xl\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .\32xl\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .\32xl\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .\32xl\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .\32xl\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .\32xl\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .\32xl\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .\32xl\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .\32xl\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .\32xl\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .\32xl\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .\32xl\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .\32xl\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + .\32xl\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .\32xl\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + .\32xl\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .\32xl\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + .\32xl\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .\32xl\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + .\32xl\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .\32xl\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + .\32xl\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .\32xl\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .\32xl\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .\32xl\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .\32xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .\32xl\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .\32xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .\32xl\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .\32xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .\32xl\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .\32xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .\32xl\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .\32xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .\32xl\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .\32xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .\32xl\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .\32xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .\32xl\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .\32xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .\32xl\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .\32xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .\32xl\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .\32xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .\32xl\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .\32xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .\32xl\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .\32xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .\32xl\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .\32xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .\32xl\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .\32xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .\32xl\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .\32xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .\32xl\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .\32xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .\32xl\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .\32xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .\32xl\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .\32xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .\32xl\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .\32xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .\32xl\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .\32xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .\32xl\:transition-none { - transition-property: none; + .\32xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .\32xl\:transition-all { - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .\32xl\:transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .\32xl\:transition-colors { - transition-property: background-color, border-color, color, fill, stroke; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .\32xl\:transition-opacity { - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .\32xl\:transition-shadow { - transition-property: box-shadow; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .\32xl\:transition-transform { - transition-property: transform; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .\32xl\:ease-linear { - transition-timing-function: linear; + .\32xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .\32xl\:ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + .\32xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .\32xl\:ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + .\32xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .\32xl\:ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + .\32xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .\32xl\:duration-75 { - transition-duration: 75ms; + .\32xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .\32xl\:duration-100 { - transition-duration: 100ms; + .\32xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .\32xl\:duration-150 { - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .\32xl\:duration-200 { - transition-duration: 200ms; + .\32xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .\32xl\:duration-300 { - transition-duration: 300ms; + .\32xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .\32xl\:duration-500 { - transition-duration: 500ms; + .\32xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .\32xl\:duration-700 { - transition-duration: 700ms; + .\32xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .\32xl\:duration-1000 { - transition-duration: 1000ms; + .\32xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .\32xl\:delay-75 { - transition-delay: 75ms; + .\32xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .\32xl\:delay-100 { - transition-delay: 100ms; + .\32xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .\32xl\:delay-150 { - transition-delay: 150ms; + .\32xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .\32xl\:delay-200 { - transition-delay: 200ms; + .\32xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .\32xl\:delay-300 { - transition-delay: 300ms; + .\32xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .\32xl\:delay-500 { - transition-delay: 500ms; + .\32xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .\32xl\:delay-700 { - transition-delay: 700ms; + .\32xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .\32xl\:delay-1000 { - transition-delay: 1000ms; + .\32xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .\32xl\:animate-none { - animation: none; + .\32xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .\32xl\:animate-spin { - animation: spin 1s linear infinite; + .\32xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .\32xl\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .\32xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .\32xl\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .\32xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .\32xl\:animate-bounce { - animation: bounce 1s infinite; + .\32xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .\32xl\:mix-blend-normal { - mix-blend-mode: normal; + .\32xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .\32xl\:mix-blend-multiply { - mix-blend-mode: multiply; + .\32xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .\32xl\:mix-blend-screen { - mix-blend-mode: screen; + .\32xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .\32xl\:mix-blend-overlay { - mix-blend-mode: overlay; + .\32xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .\32xl\:mix-blend-darken { - mix-blend-mode: darken; + .\32xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .\32xl\:mix-blend-lighten { - mix-blend-mode: lighten; + .\32xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .\32xl\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .\32xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .\32xl\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .\32xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .\32xl\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .\32xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .\32xl\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .\32xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .\32xl\:mix-blend-difference { - mix-blend-mode: difference; + .\32xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .\32xl\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .\32xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .\32xl\:mix-blend-hue { - mix-blend-mode: hue; + .\32xl\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .\32xl\:mix-blend-saturation { - mix-blend-mode: saturation; + .\32xl\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .\32xl\:mix-blend-color { - mix-blend-mode: color; + .\32xl\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .\32xl\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .\32xl\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .\32xl\:bg-blend-normal { - background-blend-mode: normal; + .\32xl\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .\32xl\:bg-blend-multiply { - background-blend-mode: multiply; + .\32xl\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .\32xl\:bg-blend-screen { - background-blend-mode: screen; + .\32xl\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .\32xl\:bg-blend-overlay { - background-blend-mode: overlay; + .\32xl\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .\32xl\:bg-blend-darken { - background-blend-mode: darken; + .\32xl\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .\32xl\:bg-blend-lighten { - background-blend-mode: lighten; + .\32xl\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .\32xl\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .\32xl\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .\32xl\:bg-blend-color-burn { - background-blend-mode: color-burn; + .\32xl\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .\32xl\:bg-blend-hard-light { - background-blend-mode: hard-light; + .\32xl\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .\32xl\:bg-blend-soft-light { - background-blend-mode: soft-light; + .\32xl\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .\32xl\:bg-blend-difference { - background-blend-mode: difference; + .\32xl\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .\32xl\:bg-blend-exclusion { - background-blend-mode: exclusion; + .\32xl\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .\32xl\:bg-blend-hue { - background-blend-mode: hue; + .\32xl\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .\32xl\:bg-blend-saturation { - background-blend-mode: saturation; + .\32xl\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .\32xl\:bg-blend-color { - background-blend-mode: color; + .\32xl\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .\32xl\:bg-blend-luminosity { - background-blend-mode: luminosity; + .\32xl\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } .\32xl\:filter { @@ -175405,6 +175285,126 @@ video { --tw-backdrop-sepia: sepia(100%); } + .\32xl\:transition-none { + transition-property: none; + } + + .\32xl\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:delay-75 { + transition-delay: 75ms; + } + + .\32xl\:delay-100 { + transition-delay: 100ms; + } + + .\32xl\:delay-150 { + transition-delay: 150ms; + } + + .\32xl\:delay-200 { + transition-delay: 200ms; + } + + .\32xl\:delay-300 { + transition-delay: 300ms; + } + + .\32xl\:delay-500 { + transition-delay: 500ms; + } + + .\32xl\:delay-700 { + transition-delay: 700ms; + } + + .\32xl\:delay-1000 { + transition-delay: 1000ms; + } + + .\32xl\:duration-75 { + transition-duration: 75ms; + } + + .\32xl\:duration-100 { + transition-duration: 100ms; + } + + .\32xl\:duration-150 { + transition-duration: 150ms; + } + + .\32xl\:duration-200 { + transition-duration: 200ms; + } + + .\32xl\:duration-300 { + transition-duration: 300ms; + } + + .\32xl\:duration-500 { + transition-duration: 500ms; + } + + .\32xl\:duration-700 { + transition-duration: 700ms; + } + + .\32xl\:duration-1000 { + transition-duration: 1000ms; + } + + .\32xl\:ease-linear { + transition-timing-function: linear; + } + + .\32xl\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .\32xl\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .\32xl\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + .\32xl\:example { font-weight: 700; color: #ef4444; diff --git a/__tests__/fixtures/tailwind-output-important.css b/tests/fixtures/tailwind-output-important.css similarity index 100% rename from __tests__/fixtures/tailwind-output-important.css rename to tests/fixtures/tailwind-output-important.css index b5a4146588e2..7e91b743a8c7 100644 --- a/__tests__/fixtures/tailwind-output-important.css +++ b/tests/fixtures/tailwind-output-important.css @@ -573,10199 +573,9355 @@ video { } } -.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; +.sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !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; +.not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !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; +.focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !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; +.focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !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; +.focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !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; +.focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !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; +.pointer-events-none { + pointer-events: none !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; +.pointer-events-auto { + pointer-events: auto !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; +.visible { + visibility: visible !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; +.invisible { + visibility: hidden !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; +.static { + position: static !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; +.fixed { + position: fixed !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; +.absolute { + position: absolute !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; +.relative { + position: relative !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; +.sticky { + position: sticky !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; +.inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !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; +.inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !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; +.inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !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; +.inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !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; +.inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !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; +.inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !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; +.inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !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; +.inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !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; +.inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !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; +.inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !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; +.inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !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; +.inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !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; +.inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !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; +.inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !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; +.inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !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; +.inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !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; +.inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !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; +.inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !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; +.inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !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; +.inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !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; +.inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !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; +.inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !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; +.inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !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; +.inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !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; +.inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !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; +.inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !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; +.inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !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; +.inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !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; +.inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !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; +.inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !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; +.inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !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; +.inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !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; +.inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !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; +.inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !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; +.inset-2\.5 { + top: 0.625rem !important; + right: 0.625rem !important; + bottom: 0.625rem !important; + left: 0.625rem !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; +.inset-3\.5 { + top: 0.875rem !important; + right: 0.875rem !important; + bottom: 0.875rem !important; + left: 0.875rem !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; +.-inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !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; +.-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !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; +.-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !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; +.-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !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; +.-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !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; +.-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !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; +.-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !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; +.-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !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; +.-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !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; +.-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !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; +.-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !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; +.-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !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; +.-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !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; +.-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !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; +.-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !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; +.-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !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; +.-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !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; +.-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !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; +.-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !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; +.-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !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; +.-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !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; +.-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !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; +.-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !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; +.-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !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; +.-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !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; +.-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !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; +.-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !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; +.-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !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; +.-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !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; +.-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !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; +.-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !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; +.-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !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; +.-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !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; +.-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !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; +.-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !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; +.inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !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; +.inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !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; +.inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !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; +.inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !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; +.inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !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; +.inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !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; +.inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !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; +.-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !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; +.-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !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; +.-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !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; +.-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !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; +.-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !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; +.-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !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; +.-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !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; +.inset-y-0 { + top: 0px !important; + bottom: 0px !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; +.inset-x-0 { + right: 0px !important; + left: 0px !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; +.inset-y-1 { + top: 0.25rem !important; + bottom: 0.25rem !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; +.inset-x-1 { + right: 0.25rem !important; + left: 0.25rem !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; +.inset-y-2 { + top: 0.5rem !important; + bottom: 0.5rem !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; +.inset-x-2 { + right: 0.5rem !important; + left: 0.5rem !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; +.inset-y-3 { + top: 0.75rem !important; + bottom: 0.75rem !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; +.inset-x-3 { + right: 0.75rem !important; + left: 0.75rem !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; +.inset-y-4 { + top: 1rem !important; + bottom: 1rem !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; +.inset-x-4 { + right: 1rem !important; + left: 1rem !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; +.inset-y-5 { + top: 1.25rem !important; + bottom: 1.25rem !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; +.inset-x-5 { + right: 1.25rem !important; + left: 1.25rem !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; +.inset-y-6 { + top: 1.5rem !important; + bottom: 1.5rem !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; +.inset-x-6 { + right: 1.5rem !important; + left: 1.5rem !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; +.inset-y-7 { + top: 1.75rem !important; + bottom: 1.75rem !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; +.inset-x-7 { + right: 1.75rem !important; + left: 1.75rem !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; +.inset-y-8 { + top: 2rem !important; + bottom: 2rem !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; +.inset-x-8 { + right: 2rem !important; + left: 2rem !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; +.inset-y-9 { + top: 2.25rem !important; + bottom: 2.25rem !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; +.inset-x-9 { + right: 2.25rem !important; + left: 2.25rem !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; +.inset-y-10 { + top: 2.5rem !important; + bottom: 2.5rem !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; +.inset-x-10 { + right: 2.5rem !important; + left: 2.5rem !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; +.inset-y-11 { + top: 2.75rem !important; + bottom: 2.75rem !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; +.inset-x-11 { + right: 2.75rem !important; + left: 2.75rem !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; +.inset-y-12 { + top: 3rem !important; + bottom: 3rem !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; +.inset-x-12 { + right: 3rem !important; + left: 3rem !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; +.inset-y-14 { + top: 3.5rem !important; + bottom: 3.5rem !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; +.inset-x-14 { + right: 3.5rem !important; + left: 3.5rem !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; +.inset-y-16 { + top: 4rem !important; + bottom: 4rem !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; +.inset-x-16 { + right: 4rem !important; + left: 4rem !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; +.inset-y-20 { + top: 5rem !important; + bottom: 5rem !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; +.inset-x-20 { + right: 5rem !important; + left: 5rem !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; +.inset-y-24 { + top: 6rem !important; + bottom: 6rem !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; +.inset-x-24 { + right: 6rem !important; + left: 6rem !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; +.inset-y-28 { + top: 7rem !important; + bottom: 7rem !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; +.inset-x-28 { + right: 7rem !important; + left: 7rem !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; +.inset-y-32 { + top: 8rem !important; + bottom: 8rem !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; +.inset-x-32 { + right: 8rem !important; + left: 8rem !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; +.inset-y-36 { + top: 9rem !important; + bottom: 9rem !important; } -.space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1 !important; +.inset-x-36 { + right: 9rem !important; + left: 9rem !important; } -.space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1 !important; +.inset-y-40 { + top: 10rem !important; + bottom: 10rem !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; +.inset-x-40 { + right: 10rem !important; + left: 10rem !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; +.inset-y-44 { + top: 11rem !important; + bottom: 11rem !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; +.inset-x-44 { + right: 11rem !important; + left: 11rem !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; +.inset-y-48 { + top: 12rem !important; + bottom: 12rem !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; +.inset-x-48 { + right: 12rem !important; + left: 12rem !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; +.inset-y-52 { + top: 13rem !important; + bottom: 13rem !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; +.inset-x-52 { + right: 13rem !important; + left: 13rem !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; +.inset-y-56 { + top: 14rem !important; + bottom: 14rem !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; +.inset-x-56 { + right: 14rem !important; + left: 14rem !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; +.inset-y-60 { + top: 15rem !important; + bottom: 15rem !important; } -.divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1 !important; +.inset-x-60 { + right: 15rem !important; + left: 15rem !important; } -.divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1 !important; +.inset-y-64 { + top: 16rem !important; + bottom: 16rem !important; } -.divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent !important; +.inset-x-64 { + right: 16rem !important; + left: 16rem !important; } -.divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor !important; +.inset-y-72 { + top: 18rem !important; + bottom: 18rem !important; } -.divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; +.inset-x-72 { + right: 18rem !important; + left: 18rem !important; } -.divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; +.inset-y-80 { + top: 20rem !important; + bottom: 20rem !important; } -.divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; +.inset-x-80 { + right: 20rem !important; + left: 20rem !important; } -.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; +.inset-y-96 { + top: 24rem !important; + bottom: 24rem !important; } -.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; +.inset-x-96 { + right: 24rem !important; + left: 24rem !important; } -.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; +.inset-y-auto { + top: auto !important; + bottom: auto !important; } -.divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; +.inset-x-auto { + right: auto !important; + left: auto !important; } -.divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; +.inset-y-px { + top: 1px !important; + bottom: 1px !important; } -.divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; +.inset-x-px { + right: 1px !important; + left: 1px !important; } -.divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; +.inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !important; } -.divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; +.inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !important; } -.divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; +.inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !important; } -.divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; +.inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !important; } -.divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; +.inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !important; } -.divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; +.inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !important; } -.divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; +.inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !important; } -.divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; +.inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !important; } -.divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; +.-inset-y-0 { + top: 0px !important; + bottom: 0px !important; } -.divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; +.-inset-x-0 { + right: 0px !important; + left: 0px !important; } -.divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; +.-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !important; } -.divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; +.-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !important; } -.divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; +.-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !important; } -.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; +.-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !important; } -.divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; +.-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !important; } -.divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; +.-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !important; } -.divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; +.-inset-y-4 { + top: -1rem !important; + bottom: -1rem !important; } -.divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; +.-inset-x-4 { + right: -1rem !important; + left: -1rem !important; } -.divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; +.-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !important; } -.divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; +.-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !important; } -.divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; +.-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !important; } -.divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; +.-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !important; } -.divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; +.-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !important; } -.divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; +.-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !important; } -.divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; +.-inset-y-8 { + top: -2rem !important; + bottom: -2rem !important; } -.divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; +.-inset-x-8 { + right: -2rem !important; + left: -2rem !important; } -.divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; +.-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !important; } -.divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; +.-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !important; } -.divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; +.-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !important; } -.divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; +.-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !important; } -.divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; +.-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !important; } -.divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; +.-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !important; } -.divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; +.-inset-y-12 { + top: -3rem !important; + bottom: -3rem !important; } -.divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; +.-inset-x-12 { + right: -3rem !important; + left: -3rem !important; } -.divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; +.-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !important; } -.divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; +.-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !important; } -.divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; +.-inset-y-16 { + top: -4rem !important; + bottom: -4rem !important; } -.divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; +.-inset-x-16 { + right: -4rem !important; + left: -4rem !important; } -.divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; +.-inset-y-20 { + top: -5rem !important; + bottom: -5rem !important; } -.divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; +.-inset-x-20 { + right: -5rem !important; + left: -5rem !important; } -.divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; +.-inset-y-24 { + top: -6rem !important; + bottom: -6rem !important; } -.divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; +.-inset-x-24 { + right: -6rem !important; + left: -6rem !important; } -.divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; +.-inset-y-28 { + top: -7rem !important; + bottom: -7rem !important; } -.divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; +.-inset-x-28 { + right: -7rem !important; + left: -7rem !important; } -.divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; +.-inset-y-32 { + top: -8rem !important; + bottom: -8rem !important; } -.divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; +.-inset-x-32 { + right: -8rem !important; + left: -8rem !important; } -.divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; +.-inset-y-36 { + top: -9rem !important; + bottom: -9rem !important; } -.divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; +.-inset-x-36 { + right: -9rem !important; + left: -9rem !important; } -.divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; +.-inset-y-40 { + top: -10rem !important; + bottom: -10rem !important; } -.divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; +.-inset-x-40 { + right: -10rem !important; + left: -10rem !important; } -.divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; +.-inset-y-44 { + top: -11rem !important; + bottom: -11rem !important; } -.divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; +.-inset-x-44 { + right: -11rem !important; + left: -11rem !important; } -.divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; +.-inset-y-48 { + top: -12rem !important; + bottom: -12rem !important; } -.divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; +.-inset-x-48 { + right: -12rem !important; + left: -12rem !important; } -.divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; +.-inset-y-52 { + top: -13rem !important; + bottom: -13rem !important; } -.divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; +.-inset-x-52 { + right: -13rem !important; + left: -13rem !important; } -.divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; +.-inset-y-56 { + top: -14rem !important; + bottom: -14rem !important; } -.divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; +.-inset-x-56 { + right: -14rem !important; + left: -14rem !important; } -.divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; +.-inset-y-60 { + top: -15rem !important; + bottom: -15rem !important; } -.divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; +.-inset-x-60 { + right: -15rem !important; + left: -15rem !important; } -.divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; +.-inset-y-64 { + top: -16rem !important; + bottom: -16rem !important; } -.divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; +.-inset-x-64 { + right: -16rem !important; + left: -16rem !important; } -.divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; +.-inset-y-72 { + top: -18rem !important; + bottom: -18rem !important; } -.divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; +.-inset-x-72 { + right: -18rem !important; + left: -18rem !important; } -.divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; +.-inset-y-80 { + top: -20rem !important; + bottom: -20rem !important; } -.divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; +.-inset-x-80 { + right: -20rem !important; + left: -20rem !important; } -.divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; +.-inset-y-96 { + top: -24rem !important; + bottom: -24rem !important; } -.divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; +.-inset-x-96 { + right: -24rem !important; + left: -24rem !important; } -.divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; +.-inset-y-px { + top: -1px !important; + bottom: -1px !important; } -.divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; +.-inset-x-px { + right: -1px !important; + left: -1px !important; } -.divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; +.-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !important; } -.divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; +.-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !important; } -.divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; +.-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !important; } -.divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid !important; +.-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !important; } -.divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed !important; +.-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !important; } -.divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted !important; +.-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !important; } -.divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double !important; +.-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !important; } -.divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none !important; +.-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !important; } -.divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0 !important; +.inset-y-1\/2 { + top: 50% !important; + bottom: 50% !important; } -.divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05 !important; +.inset-x-1\/2 { + right: 50% !important; + left: 50% !important; } -.divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1 !important; +.inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !important; } -.divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2 !important; +.inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !important; } -.divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25 !important; +.inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !important; } -.divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3 !important; +.inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !important; } -.divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4 !important; +.inset-y-1\/4 { + top: 25% !important; + bottom: 25% !important; } -.divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5 !important; +.inset-x-1\/4 { + right: 25% !important; + left: 25% !important; } -.divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6 !important; +.inset-y-2\/4 { + top: 50% !important; + bottom: 50% !important; } -.divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7 !important; +.inset-x-2\/4 { + right: 50% !important; + left: 50% !important; } -.divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75 !important; +.inset-y-3\/4 { + top: 75% !important; + bottom: 75% !important; } -.divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8 !important; +.inset-x-3\/4 { + right: 75% !important; + left: 75% !important; } -.divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9 !important; +.inset-y-full { + top: 100% !important; + bottom: 100% !important; } -.divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95 !important; +.inset-x-full { + right: 100% !important; + left: 100% !important; } -.divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; +.-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !important; } -.sr-only { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; +.-inset-x-1\/2 { + right: -50% !important; + left: -50% !important; } -.not-sr-only { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; +.-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !important; } -.focus-within\:sr-only:focus-within { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; +.-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !important; } -.focus-within\:not-sr-only:focus-within { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; +.-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !important; } -.focus\:sr-only:focus { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; +.-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !important; } -.focus\:not-sr-only:focus { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; +.-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !important; } -.appearance-none { - appearance: none !important; +.-inset-x-1\/4 { + right: -25% !important; + left: -25% !important; } -.bg-fixed { - background-attachment: fixed !important; +.-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !important; } -.bg-local { - background-attachment: local !important; +.-inset-x-2\/4 { + right: -50% !important; + left: -50% !important; } -.bg-scroll { - background-attachment: scroll !important; +.-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !important; } -.bg-clip-border { - background-clip: border-box !important; +.-inset-x-3\/4 { + right: -75% !important; + left: -75% !important; } -.bg-clip-padding { - background-clip: padding-box !important; +.-inset-y-full { + top: -100% !important; + bottom: -100% !important; } -.bg-clip-content { - background-clip: content-box !important; +.-inset-x-full { + right: -100% !important; + left: -100% !important; } -.bg-clip-text { - background-clip: text !important; +.top-0 { + top: 0px !important; } -.bg-transparent { - background-color: transparent !important; +.right-0 { + right: 0px !important; } -.bg-current { - background-color: currentColor !important; +.bottom-0 { + bottom: 0px !important; } -.bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; +.left-0 { + left: 0px !important; } -.bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; +.top-1 { + top: 0.25rem !important; } -.bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; +.right-1 { + right: 0.25rem !important; } -.bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; +.bottom-1 { + bottom: 0.25rem !important; } -.bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; +.left-1 { + left: 0.25rem !important; } -.bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; +.top-2 { + top: 0.5rem !important; } -.bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; +.right-2 { + right: 0.5rem !important; } -.bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; +.bottom-2 { + bottom: 0.5rem !important; } -.bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; +.left-2 { + left: 0.5rem !important; } -.bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; +.top-3 { + top: 0.75rem !important; } -.bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; +.right-3 { + right: 0.75rem !important; } -.bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; +.bottom-3 { + bottom: 0.75rem !important; } -.bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; +.left-3 { + left: 0.75rem !important; } -.bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; +.top-4 { + top: 1rem !important; } -.bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; +.right-4 { + right: 1rem !important; } -.bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; +.bottom-4 { + bottom: 1rem !important; } -.bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; +.left-4 { + left: 1rem !important; } -.bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; +.top-5 { + top: 1.25rem !important; } -.bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; +.right-5 { + right: 1.25rem !important; } -.bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; +.bottom-5 { + bottom: 1.25rem !important; } -.bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; +.left-5 { + left: 1.25rem !important; } -.bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; +.top-6 { + top: 1.5rem !important; } -.bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; +.right-6 { + right: 1.5rem !important; } -.bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; +.bottom-6 { + bottom: 1.5rem !important; } -.bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; +.left-6 { + left: 1.5rem !important; } -.bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; +.top-7 { + top: 1.75rem !important; } -.bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; +.right-7 { + right: 1.75rem !important; } -.bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; +.bottom-7 { + bottom: 1.75rem !important; } -.bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; +.left-7 { + left: 1.75rem !important; } -.bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; +.top-8 { + top: 2rem !important; } -.bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; +.right-8 { + right: 2rem !important; } -.bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; +.bottom-8 { + bottom: 2rem !important; } -.bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; +.left-8 { + left: 2rem !important; } -.bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; +.top-9 { + top: 2.25rem !important; } -.bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; +.right-9 { + right: 2.25rem !important; } -.bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; +.bottom-9 { + bottom: 2.25rem !important; } -.bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; +.left-9 { + left: 2.25rem !important; } -.bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; +.top-10 { + top: 2.5rem !important; } -.bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; +.right-10 { + right: 2.5rem !important; } -.bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; +.bottom-10 { + bottom: 2.5rem !important; } -.bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; +.left-10 { + left: 2.5rem !important; } -.bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; +.top-11 { + top: 2.75rem !important; } -.bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; +.right-11 { + right: 2.75rem !important; } -.bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; +.bottom-11 { + bottom: 2.75rem !important; } -.bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; +.left-11 { + left: 2.75rem !important; } -.bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; +.top-12 { + top: 3rem !important; } -.bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; +.right-12 { + right: 3rem !important; } -.bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; +.bottom-12 { + bottom: 3rem !important; } -.bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; +.left-12 { + left: 3rem !important; } -.bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; +.top-14 { + top: 3.5rem !important; } -.bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; +.right-14 { + right: 3.5rem !important; } -.bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; +.bottom-14 { + bottom: 3.5rem !important; } -.bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; +.left-14 { + left: 3.5rem !important; } -.bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; +.top-16 { + top: 4rem !important; } -.bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; +.right-16 { + right: 4rem !important; } -.bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; +.bottom-16 { + bottom: 4rem !important; } -.bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; +.left-16 { + left: 4rem !important; } -.bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; +.top-20 { + top: 5rem !important; } -.bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; +.right-20 { + right: 5rem !important; } -.bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; +.bottom-20 { + bottom: 5rem !important; } -.bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; +.left-20 { + left: 5rem !important; } -.bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; +.top-24 { + top: 6rem !important; } -.bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; +.right-24 { + right: 6rem !important; } -.bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; +.bottom-24 { + bottom: 6rem !important; } -.bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; +.left-24 { + left: 6rem !important; } -.bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; +.top-28 { + top: 7rem !important; } -.bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; +.right-28 { + right: 7rem !important; } -.bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; +.bottom-28 { + bottom: 7rem !important; } -.bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; +.left-28 { + left: 7rem !important; } -.bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; +.top-32 { + top: 8rem !important; } -.bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; +.right-32 { + right: 8rem !important; } -.bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; +.bottom-32 { + bottom: 8rem !important; } -.bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; +.left-32 { + left: 8rem !important; } -.bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; +.top-36 { + top: 9rem !important; } -.bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; +.right-36 { + right: 9rem !important; } -.bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; +.bottom-36 { + bottom: 9rem !important; } -.bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; +.left-36 { + left: 9rem !important; } -.bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; +.top-40 { + top: 10rem !important; } -.bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; +.right-40 { + right: 10rem !important; } -.bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; +.bottom-40 { + bottom: 10rem !important; } -.bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; +.left-40 { + left: 10rem !important; } -.bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; +.top-44 { + top: 11rem !important; } -.group:hover .group-hover\:bg-transparent { - background-color: transparent !important; +.right-44 { + right: 11rem !important; } -.group:hover .group-hover\:bg-current { - background-color: currentColor !important; +.bottom-44 { + bottom: 11rem !important; } -.group:hover .group-hover\:bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; +.left-44 { + left: 11rem !important; } -.group:hover .group-hover\:bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; +.top-48 { + top: 12rem !important; } -.group:hover .group-hover\:bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; +.right-48 { + right: 12rem !important; } -.group:hover .group-hover\:bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; +.bottom-48 { + bottom: 12rem !important; } -.group:hover .group-hover\:bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; +.left-48 { + left: 12rem !important; } -.group:hover .group-hover\:bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; +.top-52 { + top: 13rem !important; } -.group:hover .group-hover\:bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; +.right-52 { + right: 13rem !important; } -.group:hover .group-hover\:bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; +.bottom-52 { + bottom: 13rem !important; } -.group:hover .group-hover\:bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; +.left-52 { + left: 13rem !important; } -.group:hover .group-hover\:bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; +.top-56 { + top: 14rem !important; } -.group:hover .group-hover\:bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; +.right-56 { + right: 14rem !important; } -.group:hover .group-hover\:bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; +.bottom-56 { + bottom: 14rem !important; } -.group:hover .group-hover\:bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; +.left-56 { + left: 14rem !important; } -.group:hover .group-hover\:bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; +.top-60 { + top: 15rem !important; } -.group:hover .group-hover\:bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; +.right-60 { + right: 15rem !important; } -.group:hover .group-hover\:bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; +.bottom-60 { + bottom: 15rem !important; } -.group:hover .group-hover\:bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; +.left-60 { + left: 15rem !important; } -.group:hover .group-hover\:bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; +.top-64 { + top: 16rem !important; } -.group:hover .group-hover\:bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; +.right-64 { + right: 16rem !important; } -.group:hover .group-hover\:bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; +.bottom-64 { + bottom: 16rem !important; } -.group:hover .group-hover\:bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; +.left-64 { + left: 16rem !important; } -.group:hover .group-hover\:bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; +.top-72 { + top: 18rem !important; } -.group:hover .group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; +.right-72 { + right: 18rem !important; } -.group:hover .group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; +.bottom-72 { + bottom: 18rem !important; } -.group:hover .group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; +.left-72 { + left: 18rem !important; } -.group:hover .group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; +.top-80 { + top: 20rem !important; } -.group:hover .group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; +.right-80 { + right: 20rem !important; } -.group:hover .group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; +.bottom-80 { + bottom: 20rem !important; } -.group:hover .group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; +.left-80 { + left: 20rem !important; } -.group:hover .group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; +.top-96 { + top: 24rem !important; } -.group:hover .group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; +.right-96 { + right: 24rem !important; } -.group:hover .group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; +.bottom-96 { + bottom: 24rem !important; } -.group:hover .group-hover\:bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; +.left-96 { + left: 24rem !important; } -.group:hover .group-hover\:bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; +.top-auto { + top: auto !important; } -.group:hover .group-hover\:bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; +.right-auto { + right: auto !important; } -.group:hover .group-hover\:bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; +.bottom-auto { + bottom: auto !important; } -.group:hover .group-hover\:bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; +.left-auto { + left: auto !important; } -.group:hover .group-hover\:bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; +.top-px { + top: 1px !important; } -.group:hover .group-hover\:bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; +.right-px { + right: 1px !important; } -.group:hover .group-hover\:bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; +.bottom-px { + bottom: 1px !important; } -.group:hover .group-hover\:bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; +.left-px { + left: 1px !important; } -.group:hover .group-hover\:bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; +.top-0\.5 { + top: 0.125rem !important; } -.group:hover .group-hover\:bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; +.right-0\.5 { + right: 0.125rem !important; } -.group:hover .group-hover\:bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; +.bottom-0\.5 { + bottom: 0.125rem !important; } -.group:hover .group-hover\:bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; +.left-0\.5 { + left: 0.125rem !important; } -.group:hover .group-hover\:bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; +.top-1\.5 { + top: 0.375rem !important; } -.group:hover .group-hover\:bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; +.right-1\.5 { + right: 0.375rem !important; } -.group:hover .group-hover\:bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; +.bottom-1\.5 { + bottom: 0.375rem !important; } -.group:hover .group-hover\:bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; +.left-1\.5 { + left: 0.375rem !important; } -.group:hover .group-hover\:bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; +.top-2\.5 { + top: 0.625rem !important; } -.group:hover .group-hover\:bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; +.right-2\.5 { + right: 0.625rem !important; } -.group:hover .group-hover\:bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; +.bottom-2\.5 { + bottom: 0.625rem !important; } -.group:hover .group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; +.left-2\.5 { + left: 0.625rem !important; } -.group:hover .group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; +.top-3\.5 { + top: 0.875rem !important; } -.group:hover .group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; +.right-3\.5 { + right: 0.875rem !important; } -.group:hover .group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; +.bottom-3\.5 { + bottom: 0.875rem !important; } -.group:hover .group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; +.left-3\.5 { + left: 0.875rem !important; } -.group:hover .group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; +.-top-0 { + top: 0px !important; } -.group:hover .group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; +.-right-0 { + right: 0px !important; } -.group:hover .group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; +.-bottom-0 { + bottom: 0px !important; } -.group:hover .group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; +.-left-0 { + left: 0px !important; } -.group:hover .group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; +.-top-1 { + top: -0.25rem !important; } -.group:hover .group-hover\:bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; +.-right-1 { + right: -0.25rem !important; } -.group:hover .group-hover\:bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; +.-bottom-1 { + bottom: -0.25rem !important; } -.group:hover .group-hover\:bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; +.-left-1 { + left: -0.25rem !important; } -.group:hover .group-hover\:bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; +.-top-2 { + top: -0.5rem !important; } -.group:hover .group-hover\:bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; +.-right-2 { + right: -0.5rem !important; } -.group:hover .group-hover\:bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; +.-bottom-2 { + bottom: -0.5rem !important; } -.group:hover .group-hover\:bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; +.-left-2 { + left: -0.5rem !important; } -.group:hover .group-hover\:bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; +.-top-3 { + top: -0.75rem !important; } -.group:hover .group-hover\:bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; +.-right-3 { + right: -0.75rem !important; } -.group:hover .group-hover\:bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; +.-bottom-3 { + bottom: -0.75rem !important; } -.group:hover .group-hover\:bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; +.-left-3 { + left: -0.75rem !important; } -.group:hover .group-hover\:bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; +.-top-4 { + top: -1rem !important; } -.group:hover .group-hover\:bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; +.-right-4 { + right: -1rem !important; } -.group:hover .group-hover\:bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; +.-bottom-4 { + bottom: -1rem !important; } -.group:hover .group-hover\:bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; +.-left-4 { + left: -1rem !important; } -.group:hover .group-hover\:bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; +.-top-5 { + top: -1.25rem !important; } -.group:hover .group-hover\:bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; +.-right-5 { + right: -1.25rem !important; } -.group:hover .group-hover\:bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; +.-bottom-5 { + bottom: -1.25rem !important; } -.group:hover .group-hover\:bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; +.-left-5 { + left: -1.25rem !important; } -.group:hover .group-hover\:bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; +.-top-6 { + top: -1.5rem !important; } -.focus-within\:bg-transparent:focus-within { - background-color: transparent !important; +.-right-6 { + right: -1.5rem !important; } -.focus-within\:bg-current:focus-within { - background-color: currentColor !important; +.-bottom-6 { + bottom: -1.5rem !important; } -.focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; +.-left-6 { + left: -1.5rem !important; } -.focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; +.-top-7 { + top: -1.75rem !important; } -.focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; +.-right-7 { + right: -1.75rem !important; } -.focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; +.-bottom-7 { + bottom: -1.75rem !important; } -.focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; +.-left-7 { + left: -1.75rem !important; } -.focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; +.-top-8 { + top: -2rem !important; } -.focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; +.-right-8 { + right: -2rem !important; } -.focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; +.-bottom-8 { + bottom: -2rem !important; } -.focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; +.-left-8 { + left: -2rem !important; } -.focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; +.-top-9 { + top: -2.25rem !important; } -.focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; +.-right-9 { + right: -2.25rem !important; } -.focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; +.-bottom-9 { + bottom: -2.25rem !important; } -.focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; +.-left-9 { + left: -2.25rem !important; } -.focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; +.-top-10 { + top: -2.5rem !important; } -.focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; +.-right-10 { + right: -2.5rem !important; } -.focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; +.-bottom-10 { + bottom: -2.5rem !important; } -.focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; +.-left-10 { + left: -2.5rem !important; } -.focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; +.-top-11 { + top: -2.75rem !important; } -.focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; +.-right-11 { + right: -2.75rem !important; } -.focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; +.-bottom-11 { + bottom: -2.75rem !important; } -.focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; +.-left-11 { + left: -2.75rem !important; } -.focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; +.-top-12 { + top: -3rem !important; } -.focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; +.-right-12 { + right: -3rem !important; } -.focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; +.-bottom-12 { + bottom: -3rem !important; } -.focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; +.-left-12 { + left: -3rem !important; } -.focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; +.-top-14 { + top: -3.5rem !important; } -.focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; +.-right-14 { + right: -3.5rem !important; } -.focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; +.-bottom-14 { + bottom: -3.5rem !important; } -.focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; +.-left-14 { + left: -3.5rem !important; } -.focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; +.-top-16 { + top: -4rem !important; } -.focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; +.-right-16 { + right: -4rem !important; } -.focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; +.-bottom-16 { + bottom: -4rem !important; } -.focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; +.-left-16 { + left: -4rem !important; } -.focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; +.-top-20 { + top: -5rem !important; } -.focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; +.-right-20 { + right: -5rem !important; } -.focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; +.-bottom-20 { + bottom: -5rem !important; } -.focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; +.-left-20 { + left: -5rem !important; } -.focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; +.-top-24 { + top: -6rem !important; } -.focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; +.-right-24 { + right: -6rem !important; } -.focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; +.-bottom-24 { + bottom: -6rem !important; } -.focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; +.-left-24 { + left: -6rem !important; } -.focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; +.-top-28 { + top: -7rem !important; } -.focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; +.-right-28 { + right: -7rem !important; } -.focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; +.-bottom-28 { + bottom: -7rem !important; } -.focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; +.-left-28 { + left: -7rem !important; } -.focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; +.-top-32 { + top: -8rem !important; } -.focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; +.-right-32 { + right: -8rem !important; } -.focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; +.-bottom-32 { + bottom: -8rem !important; } -.focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; +.-left-32 { + left: -8rem !important; } -.focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; +.-top-36 { + top: -9rem !important; } -.focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; +.-right-36 { + right: -9rem !important; } -.focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; +.-bottom-36 { + bottom: -9rem !important; } -.focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; +.-left-36 { + left: -9rem !important; } -.focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; +.-top-40 { + top: -10rem !important; } -.focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; +.-right-40 { + right: -10rem !important; } -.focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; +.-bottom-40 { + bottom: -10rem !important; } -.focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; +.-left-40 { + left: -10rem !important; } -.focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; +.-top-44 { + top: -11rem !important; } -.focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; +.-right-44 { + right: -11rem !important; } -.focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; +.-bottom-44 { + bottom: -11rem !important; } -.focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; +.-left-44 { + left: -11rem !important; } -.focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; +.-top-48 { + top: -12rem !important; } -.focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; +.-right-48 { + right: -12rem !important; } -.focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; +.-bottom-48 { + bottom: -12rem !important; } -.focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; +.-left-48 { + left: -12rem !important; } -.focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; +.-top-52 { + top: -13rem !important; } -.focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; +.-right-52 { + right: -13rem !important; } -.focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; +.-bottom-52 { + bottom: -13rem !important; } -.focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; +.-left-52 { + left: -13rem !important; } -.focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; +.-top-56 { + top: -14rem !important; } -.focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; +.-right-56 { + right: -14rem !important; } -.focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; +.-bottom-56 { + bottom: -14rem !important; } -.focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; +.-left-56 { + left: -14rem !important; } -.focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; +.-top-60 { + top: -15rem !important; } -.focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; +.-right-60 { + right: -15rem !important; } -.focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; +.-bottom-60 { + bottom: -15rem !important; } -.focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; +.-left-60 { + left: -15rem !important; } -.focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; +.-top-64 { + top: -16rem !important; } -.focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; +.-right-64 { + right: -16rem !important; } -.focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; +.-bottom-64 { + bottom: -16rem !important; } -.focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; +.-left-64 { + left: -16rem !important; } -.focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; +.-top-72 { + top: -18rem !important; } -.hover\:bg-transparent:hover { - background-color: transparent !important; +.-right-72 { + right: -18rem !important; } -.hover\:bg-current:hover { - background-color: currentColor !important; +.-bottom-72 { + bottom: -18rem !important; } -.hover\:bg-black:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; +.-left-72 { + left: -18rem !important; } -.hover\:bg-white:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; +.-top-80 { + top: -20rem !important; } -.hover\:bg-gray-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; +.-right-80 { + right: -20rem !important; } -.hover\:bg-gray-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; +.-bottom-80 { + bottom: -20rem !important; } -.hover\:bg-gray-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; +.-left-80 { + left: -20rem !important; } -.hover\:bg-gray-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; +.-top-96 { + top: -24rem !important; } -.hover\:bg-gray-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; +.-right-96 { + right: -24rem !important; } -.hover\:bg-gray-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; +.-bottom-96 { + bottom: -24rem !important; } -.hover\:bg-gray-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; +.-left-96 { + left: -24rem !important; } -.hover\:bg-gray-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; +.-top-px { + top: -1px !important; } -.hover\:bg-gray-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; +.-right-px { + right: -1px !important; } -.hover\:bg-gray-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; +.-bottom-px { + bottom: -1px !important; } -.hover\:bg-red-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; +.-left-px { + left: -1px !important; } -.hover\:bg-red-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; +.-top-0\.5 { + top: -0.125rem !important; } -.hover\:bg-red-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; +.-right-0\.5 { + right: -0.125rem !important; } -.hover\:bg-red-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; +.-bottom-0\.5 { + bottom: -0.125rem !important; } -.hover\:bg-red-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; +.-left-0\.5 { + left: -0.125rem !important; } -.hover\:bg-red-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; +.-top-1\.5 { + top: -0.375rem !important; } -.hover\:bg-red-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; +.-right-1\.5 { + right: -0.375rem !important; } -.hover\:bg-red-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; +.-bottom-1\.5 { + bottom: -0.375rem !important; } -.hover\:bg-red-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; +.-left-1\.5 { + left: -0.375rem !important; } -.hover\:bg-red-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; +.-top-2\.5 { + top: -0.625rem !important; } -.hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; +.-right-2\.5 { + right: -0.625rem !important; } -.hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; +.-bottom-2\.5 { + bottom: -0.625rem !important; } -.hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; +.-left-2\.5 { + left: -0.625rem !important; } -.hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; +.-top-3\.5 { + top: -0.875rem !important; } -.hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; +.-right-3\.5 { + right: -0.875rem !important; } -.hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; +.-bottom-3\.5 { + bottom: -0.875rem !important; } -.hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; +.-left-3\.5 { + left: -0.875rem !important; } -.hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; +.top-1\/2 { + top: 50% !important; } -.hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; +.right-1\/2 { + right: 50% !important; } -.hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; +.bottom-1\/2 { + bottom: 50% !important; } -.hover\:bg-green-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; +.left-1\/2 { + left: 50% !important; } -.hover\:bg-green-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; +.top-1\/3 { + top: 33.333333% !important; } -.hover\:bg-green-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; +.right-1\/3 { + right: 33.333333% !important; } -.hover\:bg-green-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; +.bottom-1\/3 { + bottom: 33.333333% !important; } -.hover\:bg-green-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; +.left-1\/3 { + left: 33.333333% !important; } -.hover\:bg-green-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; +.top-2\/3 { + top: 66.666667% !important; } -.hover\:bg-green-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; +.right-2\/3 { + right: 66.666667% !important; } -.hover\:bg-green-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; +.bottom-2\/3 { + bottom: 66.666667% !important; } -.hover\:bg-green-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; +.left-2\/3 { + left: 66.666667% !important; } -.hover\:bg-green-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; +.top-1\/4 { + top: 25% !important; } -.hover\:bg-blue-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; +.right-1\/4 { + right: 25% !important; } -.hover\:bg-blue-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; +.bottom-1\/4 { + bottom: 25% !important; } -.hover\:bg-blue-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; +.left-1\/4 { + left: 25% !important; } -.hover\:bg-blue-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; +.top-2\/4 { + top: 50% !important; } -.hover\:bg-blue-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; +.right-2\/4 { + right: 50% !important; } -.hover\:bg-blue-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; +.bottom-2\/4 { + bottom: 50% !important; } -.hover\:bg-blue-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; +.left-2\/4 { + left: 50% !important; } -.hover\:bg-blue-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; +.top-3\/4 { + top: 75% !important; } -.hover\:bg-blue-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; +.right-3\/4 { + right: 75% !important; } -.hover\:bg-blue-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; +.bottom-3\/4 { + bottom: 75% !important; } -.hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; +.left-3\/4 { + left: 75% !important; } -.hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; +.top-full { + top: 100% !important; } -.hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; +.right-full { + right: 100% !important; } -.hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; +.bottom-full { + bottom: 100% !important; } -.hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; +.left-full { + left: 100% !important; } -.hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; +.-top-1\/2 { + top: -50% !important; } -.hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; +.-right-1\/2 { + right: -50% !important; } -.hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; +.-bottom-1\/2 { + bottom: -50% !important; } -.hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; +.-left-1\/2 { + left: -50% !important; } -.hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; +.-top-1\/3 { + top: -33.333333% !important; } -.hover\:bg-purple-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; +.-right-1\/3 { + right: -33.333333% !important; } -.hover\:bg-purple-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; +.-bottom-1\/3 { + bottom: -33.333333% !important; } -.hover\:bg-purple-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; +.-left-1\/3 { + left: -33.333333% !important; } -.hover\:bg-purple-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; +.-top-2\/3 { + top: -66.666667% !important; } -.hover\:bg-purple-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; +.-right-2\/3 { + right: -66.666667% !important; } -.hover\:bg-purple-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; +.-bottom-2\/3 { + bottom: -66.666667% !important; } -.hover\:bg-purple-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; +.-left-2\/3 { + left: -66.666667% !important; } -.hover\:bg-purple-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; +.-top-1\/4 { + top: -25% !important; } -.hover\:bg-purple-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; +.-right-1\/4 { + right: -25% !important; } -.hover\:bg-purple-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; +.-bottom-1\/4 { + bottom: -25% !important; } -.hover\:bg-pink-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; +.-left-1\/4 { + left: -25% !important; } -.hover\:bg-pink-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; +.-top-2\/4 { + top: -50% !important; } -.hover\:bg-pink-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; +.-right-2\/4 { + right: -50% !important; } -.hover\:bg-pink-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; +.-bottom-2\/4 { + bottom: -50% !important; } -.hover\:bg-pink-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; +.-left-2\/4 { + left: -50% !important; } -.hover\:bg-pink-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; +.-top-3\/4 { + top: -75% !important; } -.hover\:bg-pink-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; +.-right-3\/4 { + right: -75% !important; } -.hover\:bg-pink-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; +.-bottom-3\/4 { + bottom: -75% !important; } -.hover\:bg-pink-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; +.-left-3\/4 { + left: -75% !important; } -.hover\:bg-pink-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; +.-top-full { + top: -100% !important; } -.focus\:bg-transparent:focus { - background-color: transparent !important; +.-right-full { + right: -100% !important; } -.focus\:bg-current:focus { - background-color: currentColor !important; +.-bottom-full { + bottom: -100% !important; } -.focus\:bg-black:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; +.-left-full { + left: -100% !important; } -.focus\:bg-white:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; +.isolate { + isolation: isolate !important; } -.focus\:bg-gray-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; +.isolation-auto { + isolation: auto !important; } -.focus\:bg-gray-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; +.z-0 { + z-index: 0 !important; } -.focus\:bg-gray-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; +.z-10 { + z-index: 10 !important; } -.focus\:bg-gray-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; +.z-20 { + z-index: 20 !important; } -.focus\:bg-gray-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; +.z-30 { + z-index: 30 !important; } -.focus\:bg-gray-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; +.z-40 { + z-index: 40 !important; } -.focus\:bg-gray-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; +.z-50 { + z-index: 50 !important; } -.focus\:bg-gray-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; +.z-auto { + z-index: auto !important; } -.focus\:bg-gray-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; +.focus-within\:z-0:focus-within { + z-index: 0 !important; } -.focus\:bg-gray-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; +.focus-within\:z-10:focus-within { + z-index: 10 !important; } -.focus\:bg-red-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; +.focus-within\:z-20:focus-within { + z-index: 20 !important; } -.focus\:bg-red-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; +.focus-within\:z-30:focus-within { + z-index: 30 !important; } -.focus\:bg-red-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; +.focus-within\:z-40:focus-within { + z-index: 40 !important; } -.focus\:bg-red-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; +.focus-within\:z-50:focus-within { + z-index: 50 !important; } -.focus\:bg-red-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; +.focus-within\:z-auto:focus-within { + z-index: auto !important; } -.focus\:bg-red-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; +.focus\:z-0:focus { + z-index: 0 !important; } -.focus\:bg-red-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; +.focus\:z-10:focus { + z-index: 10 !important; } -.focus\:bg-red-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; +.focus\:z-20:focus { + z-index: 20 !important; } -.focus\:bg-red-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; +.focus\:z-30:focus { + z-index: 30 !important; } -.focus\:bg-red-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; +.focus\:z-40:focus { + z-index: 40 !important; } -.focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; +.focus\:z-50:focus { + z-index: 50 !important; } -.focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; +.focus\:z-auto:focus { + z-index: auto !important; } -.focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; +.order-1 { + order: 1 !important; } -.focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; +.order-2 { + order: 2 !important; } -.focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; +.order-3 { + order: 3 !important; } -.focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; +.order-4 { + order: 4 !important; } -.focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; +.order-5 { + order: 5 !important; } -.focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; +.order-6 { + order: 6 !important; } -.focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; +.order-7 { + order: 7 !important; } -.focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; +.order-8 { + order: 8 !important; } -.focus\:bg-green-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; +.order-9 { + order: 9 !important; } -.focus\:bg-green-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; +.order-10 { + order: 10 !important; } -.focus\:bg-green-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; +.order-11 { + order: 11 !important; } -.focus\:bg-green-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; +.order-12 { + order: 12 !important; } -.focus\:bg-green-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; +.order-first { + order: -9999 !important; } -.focus\:bg-green-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; +.order-last { + order: 9999 !important; } -.focus\:bg-green-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; +.order-none { + order: 0 !important; } -.focus\:bg-green-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; +.col-auto { + grid-column: auto !important; } -.focus\:bg-green-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; +.col-span-1 { + grid-column: span 1 / span 1 !important; } -.focus\:bg-green-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; +.col-span-2 { + grid-column: span 2 / span 2 !important; } -.focus\:bg-blue-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; +.col-span-3 { + grid-column: span 3 / span 3 !important; } -.focus\:bg-blue-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; +.col-span-4 { + grid-column: span 4 / span 4 !important; } -.focus\:bg-blue-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; +.col-span-5 { + grid-column: span 5 / span 5 !important; } -.focus\:bg-blue-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; +.col-span-6 { + grid-column: span 6 / span 6 !important; } -.focus\:bg-blue-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; +.col-span-7 { + grid-column: span 7 / span 7 !important; } -.focus\:bg-blue-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; +.col-span-8 { + grid-column: span 8 / span 8 !important; } -.focus\:bg-blue-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; +.col-span-9 { + grid-column: span 9 / span 9 !important; } -.focus\:bg-blue-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; +.col-span-10 { + grid-column: span 10 / span 10 !important; } -.focus\:bg-blue-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; +.col-span-11 { + grid-column: span 11 / span 11 !important; } -.focus\:bg-blue-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; +.col-span-12 { + grid-column: span 12 / span 12 !important; } -.focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; +.col-span-full { + grid-column: 1 / -1 !important; } -.focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; +.col-start-1 { + grid-column-start: 1 !important; } -.focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; +.col-start-2 { + grid-column-start: 2 !important; } -.focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; +.col-start-3 { + grid-column-start: 3 !important; } -.focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; +.col-start-4 { + grid-column-start: 4 !important; } -.focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; +.col-start-5 { + grid-column-start: 5 !important; } -.focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; +.col-start-6 { + grid-column-start: 6 !important; } -.focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; +.col-start-7 { + grid-column-start: 7 !important; } -.focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; +.col-start-8 { + grid-column-start: 8 !important; } -.focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; +.col-start-9 { + grid-column-start: 9 !important; } -.focus\:bg-purple-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; +.col-start-10 { + grid-column-start: 10 !important; } -.focus\:bg-purple-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; +.col-start-11 { + grid-column-start: 11 !important; } -.focus\:bg-purple-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; +.col-start-12 { + grid-column-start: 12 !important; } -.focus\:bg-purple-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; +.col-start-13 { + grid-column-start: 13 !important; } -.focus\:bg-purple-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; +.col-start-auto { + grid-column-start: auto !important; } -.focus\:bg-purple-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; +.col-end-1 { + grid-column-end: 1 !important; } -.focus\:bg-purple-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; +.col-end-2 { + grid-column-end: 2 !important; } -.focus\:bg-purple-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; +.col-end-3 { + grid-column-end: 3 !important; } -.focus\:bg-purple-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; +.col-end-4 { + grid-column-end: 4 !important; } -.focus\:bg-purple-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; +.col-end-5 { + grid-column-end: 5 !important; } -.focus\:bg-pink-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; +.col-end-6 { + grid-column-end: 6 !important; } -.focus\:bg-pink-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; +.col-end-7 { + grid-column-end: 7 !important; } -.focus\:bg-pink-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; +.col-end-8 { + grid-column-end: 8 !important; } -.focus\:bg-pink-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; +.col-end-9 { + grid-column-end: 9 !important; } -.focus\:bg-pink-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; +.col-end-10 { + grid-column-end: 10 !important; } -.focus\:bg-pink-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; +.col-end-11 { + grid-column-end: 11 !important; } -.focus\:bg-pink-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; +.col-end-12 { + grid-column-end: 12 !important; } -.focus\:bg-pink-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; +.col-end-13 { + grid-column-end: 13 !important; } -.focus\:bg-pink-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; +.col-end-auto { + grid-column-end: auto !important; } -.focus\:bg-pink-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; +.row-auto { + grid-row: auto !important; } -.bg-none { - background-image: none !important; +.row-span-1 { + grid-row: span 1 / span 1 !important; } -.bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; +.row-span-2 { + grid-row: span 2 / span 2 !important; } -.bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; +.row-span-3 { + grid-row: span 3 / span 3 !important; } -.bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; +.row-span-4 { + grid-row: span 4 / span 4 !important; } -.bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; +.row-span-5 { + grid-row: span 5 / span 5 !important; } -.bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; +.row-span-6 { + grid-row: span 6 / span 6 !important; } -.bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; +.row-span-full { + grid-row: 1 / -1 !important; } -.bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; +.row-start-1 { + grid-row-start: 1 !important; } -.bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; +.row-start-2 { + grid-row-start: 2 !important; } -.from-transparent { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +.row-start-3 { + grid-row-start: 3 !important; } -.from-current { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +.row-start-4 { + grid-row-start: 4 !important; } -.from-black { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +.row-start-5 { + grid-row-start: 5 !important; } -.from-white { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +.row-start-6 { + grid-row-start: 6 !important; } -.from-gray-50 { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; +.row-start-7 { + grid-row-start: 7 !important; } -.from-gray-100 { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; +.row-start-auto { + grid-row-start: auto !important; } -.from-gray-200 { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; +.row-end-1 { + grid-row-end: 1 !important; } -.from-gray-300 { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; +.row-end-2 { + grid-row-end: 2 !important; } -.from-gray-400 { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; +.row-end-3 { + grid-row-end: 3 !important; } -.from-gray-500 { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; +.row-end-4 { + grid-row-end: 4 !important; } -.from-gray-600 { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; +.row-end-5 { + grid-row-end: 5 !important; } -.from-gray-700 { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; +.row-end-6 { + grid-row-end: 6 !important; } -.from-gray-800 { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; +.row-end-7 { + grid-row-end: 7 !important; } -.from-gray-900 { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; +.row-end-auto { + grid-row-end: auto !important; } -.from-red-50 { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; +.float-right { + float: right !important; } -.from-red-100 { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; +.float-left { + float: left !important; } -.from-red-200 { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; +.float-none { + float: none !important; } -.from-red-300 { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; +.clear-left { + clear: left !important; } -.from-red-400 { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; +.clear-right { + clear: right !important; } -.from-red-500 { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; +.clear-both { + clear: both !important; } -.from-red-600 { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; +.clear-none { + clear: none !important; } -.from-red-700 { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; +.m-0 { + margin: 0px !important; } -.from-red-800 { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; +.m-1 { + margin: 0.25rem !important; } -.from-red-900 { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; +.m-2 { + margin: 0.5rem !important; } -.from-yellow-50 { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; +.m-3 { + margin: 0.75rem !important; } -.from-yellow-100 { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; +.m-4 { + margin: 1rem !important; } -.from-yellow-200 { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; +.m-5 { + margin: 1.25rem !important; } -.from-yellow-300 { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; +.m-6 { + margin: 1.5rem !important; } -.from-yellow-400 { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; +.m-7 { + margin: 1.75rem !important; } -.from-yellow-500 { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; +.m-8 { + margin: 2rem !important; } -.from-yellow-600 { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; +.m-9 { + margin: 2.25rem !important; } -.from-yellow-700 { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; +.m-10 { + margin: 2.5rem !important; } -.from-yellow-800 { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; +.m-11 { + margin: 2.75rem !important; } -.from-yellow-900 { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; +.m-12 { + margin: 3rem !important; } -.from-green-50 { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; +.m-14 { + margin: 3.5rem !important; } -.from-green-100 { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; +.m-16 { + margin: 4rem !important; } -.from-green-200 { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; +.m-20 { + margin: 5rem !important; } -.from-green-300 { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; +.m-24 { + margin: 6rem !important; } -.from-green-400 { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; +.m-28 { + margin: 7rem !important; } -.from-green-500 { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; +.m-32 { + margin: 8rem !important; } -.from-green-600 { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; +.m-36 { + margin: 9rem !important; } -.from-green-700 { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; +.m-40 { + margin: 10rem !important; } -.from-green-800 { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; +.m-44 { + margin: 11rem !important; } -.from-green-900 { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; +.m-48 { + margin: 12rem !important; } -.from-blue-50 { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; +.m-52 { + margin: 13rem !important; } -.from-blue-100 { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; +.m-56 { + margin: 14rem !important; } -.from-blue-200 { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; +.m-60 { + margin: 15rem !important; } -.from-blue-300 { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; +.m-64 { + margin: 16rem !important; } -.from-blue-400 { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; +.m-72 { + margin: 18rem !important; } -.from-blue-500 { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; +.m-80 { + margin: 20rem !important; } -.from-blue-600 { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; +.m-96 { + margin: 24rem !important; } -.from-blue-700 { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; +.m-auto { + margin: auto !important; } -.from-blue-800 { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; +.m-px { + margin: 1px !important; } -.from-blue-900 { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; +.m-0\.5 { + margin: 0.125rem !important; } -.from-indigo-50 { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; +.m-1\.5 { + margin: 0.375rem !important; } -.from-indigo-100 { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; +.m-2\.5 { + margin: 0.625rem !important; } -.from-indigo-200 { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; +.m-3\.5 { + margin: 0.875rem !important; } -.from-indigo-300 { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; +.-m-0 { + margin: 0px !important; } -.from-indigo-400 { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; +.-m-1 { + margin: -0.25rem !important; } -.from-indigo-500 { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; +.-m-2 { + margin: -0.5rem !important; } -.from-indigo-600 { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; +.-m-3 { + margin: -0.75rem !important; } -.from-indigo-700 { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; +.-m-4 { + margin: -1rem !important; } -.from-indigo-800 { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; +.-m-5 { + margin: -1.25rem !important; } -.from-indigo-900 { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; +.-m-6 { + margin: -1.5rem !important; } -.from-purple-50 { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; +.-m-7 { + margin: -1.75rem !important; } -.from-purple-100 { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; +.-m-8 { + margin: -2rem !important; } -.from-purple-200 { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; +.-m-9 { + margin: -2.25rem !important; } -.from-purple-300 { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; +.-m-10 { + margin: -2.5rem !important; } -.from-purple-400 { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; +.-m-11 { + margin: -2.75rem !important; } -.from-purple-500 { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; +.-m-12 { + margin: -3rem !important; } -.from-purple-600 { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; +.-m-14 { + margin: -3.5rem !important; } -.from-purple-700 { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; +.-m-16 { + margin: -4rem !important; } -.from-purple-800 { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; +.-m-20 { + margin: -5rem !important; } -.from-purple-900 { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; +.-m-24 { + margin: -6rem !important; } -.from-pink-50 { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; +.-m-28 { + margin: -7rem !important; } -.from-pink-100 { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; +.-m-32 { + margin: -8rem !important; } -.from-pink-200 { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; +.-m-36 { + margin: -9rem !important; } -.from-pink-300 { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; +.-m-40 { + margin: -10rem !important; } -.from-pink-400 { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; +.-m-44 { + margin: -11rem !important; } -.from-pink-500 { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; +.-m-48 { + margin: -12rem !important; } -.from-pink-600 { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; +.-m-52 { + margin: -13rem !important; } -.from-pink-700 { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; +.-m-56 { + margin: -14rem !important; } -.from-pink-800 { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; +.-m-60 { + margin: -15rem !important; } -.from-pink-900 { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; +.-m-64 { + margin: -16rem !important; } -.via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +.-m-72 { + margin: -18rem !important; } -.via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +.-m-80 { + margin: -20rem !important; } -.via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +.-m-96 { + margin: -24rem !important; } -.via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +.-m-px { + margin: -1px !important; } -.via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; +.-m-0\.5 { + margin: -0.125rem !important; } -.via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; +.-m-1\.5 { + margin: -0.375rem !important; } -.via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; +.-m-2\.5 { + margin: -0.625rem !important; } -.via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; +.-m-3\.5 { + margin: -0.875rem !important; } -.via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; +.mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } -.via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; +.mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; } -.via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; +.mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; } -.via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; +.mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; } -.via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; +.mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; } -.via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; +.mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; } -.via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; +.mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; } -.via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; +.mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; } -.via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; +.mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; } -.via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; +.mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; } -.via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; +.mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; } -.via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; +.mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; } -.via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; +.mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; } -.via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; +.mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; } -.via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; +.mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; } -.via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; +.mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; } -.via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; +.mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; } -.via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; +.mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; } -.via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; +.mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; } -.via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; +.mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; } -.via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; +.mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; } -.via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; +.mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; } -.via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; +.mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; } -.via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; +.mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; } -.via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; +.mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; } -.via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; +.mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; } -.via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; +.mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; } -.via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; +.mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; } -.via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; +.mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; } -.via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; +.mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; } -.via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; +.mx-auto { + margin-left: auto !important; + margin-right: auto !important; } -.via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; +.mx-px { + margin-left: 1px !important; + margin-right: 1px !important; } -.via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; +.mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; } -.via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; +.mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; } -.via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; +.mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; } -.via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; +.mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; } -.via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; +.-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } -.via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; +.-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; } -.via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; +.-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; } -.via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; +.-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; } -.via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; +.-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; } -.via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; +.-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; } -.via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; +.-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; } -.via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; +.-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; } -.via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; +.-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; } -.via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; +.-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; } -.via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; +.-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; } -.via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; +.-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; } -.via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; +.-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; } -.via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; +.-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; } -.via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; +.-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; } -.via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; +.-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; } -.via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; +.-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; } -.via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; +.-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; } -.via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; +.-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; } -.via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; +.-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; } -.via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; +.-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; } -.via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; +.-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; } -.via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; +.-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; } -.via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; +.-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; } -.via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; +.-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; } -.via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; +.-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; } -.via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; +.-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; } -.via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; +.-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; } -.via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; +.-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; } -.via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; +.-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; } -.via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; +.-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; } -.via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; +.-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; } -.via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; +.-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; } -.via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; +.-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; } -.via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; +.-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; } -.via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; +.my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } -.via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } -.via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } -.via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; +.my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; } -.via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; +.my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } -.to-transparent { - --tw-gradient-to: transparent !important; +.my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; } -.to-current { - --tw-gradient-to: currentColor !important; +.my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } -.to-black { - --tw-gradient-to: #000 !important; +.my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; } -.to-white { - --tw-gradient-to: #fff !important; +.my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; } -.to-gray-50 { - --tw-gradient-to: #f9fafb !important; +.my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; } -.to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; +.my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; } -.to-gray-200 { - --tw-gradient-to: #e5e7eb !important; +.my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; } -.to-gray-300 { - --tw-gradient-to: #d1d5db !important; +.my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } -.to-gray-400 { - --tw-gradient-to: #9ca3af !important; +.my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; } -.to-gray-500 { - --tw-gradient-to: #6b7280 !important; +.my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; } -.to-gray-600 { - --tw-gradient-to: #4b5563 !important; +.my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; } -.to-gray-700 { - --tw-gradient-to: #374151 !important; +.my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; } -.to-gray-800 { - --tw-gradient-to: #1f2937 !important; +.my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; } -.to-gray-900 { - --tw-gradient-to: #111827 !important; +.my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; } -.to-red-50 { - --tw-gradient-to: #fef2f2 !important; +.my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; } -.to-red-100 { - --tw-gradient-to: #fee2e2 !important; +.my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; } -.to-red-200 { - --tw-gradient-to: #fecaca !important; +.my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; } -.to-red-300 { - --tw-gradient-to: #fca5a5 !important; +.my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; } -.to-red-400 { - --tw-gradient-to: #f87171 !important; +.my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; } -.to-red-500 { - --tw-gradient-to: #ef4444 !important; +.my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; } -.to-red-600 { - --tw-gradient-to: #dc2626 !important; +.my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; } -.to-red-700 { - --tw-gradient-to: #b91c1c !important; +.my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; } -.to-red-800 { - --tw-gradient-to: #991b1b !important; +.my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; } -.to-red-900 { - --tw-gradient-to: #7f1d1d !important; +.my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; } -.to-yellow-50 { - --tw-gradient-to: #fffbeb !important; +.my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; } -.to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } -.to-yellow-200 { - --tw-gradient-to: #fde68a !important; +.my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; } -.to-yellow-300 { - --tw-gradient-to: #fcd34d !important; +.my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; } -.to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; +.my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; } -.to-yellow-500 { - --tw-gradient-to: #f59e0b !important; +.my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; } -.to-yellow-600 { - --tw-gradient-to: #d97706 !important; +.my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; } -.to-yellow-700 { - --tw-gradient-to: #b45309 !important; +.-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } -.to-yellow-800 { - --tw-gradient-to: #92400e !important; +.-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } -.to-yellow-900 { - --tw-gradient-to: #78350f !important; +.-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } -.to-green-50 { - --tw-gradient-to: #ecfdf5 !important; +.-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } -.to-green-100 { - --tw-gradient-to: #d1fae5 !important; +.-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } -.to-green-200 { - --tw-gradient-to: #a7f3d0 !important; +.-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } -.to-green-300 { - --tw-gradient-to: #6ee7b7 !important; +.-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } -.to-green-400 { - --tw-gradient-to: #34d399 !important; +.-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } -.to-green-500 { - --tw-gradient-to: #10b981 !important; +.-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } -.to-green-600 { - --tw-gradient-to: #059669 !important; +.-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } -.to-green-700 { - --tw-gradient-to: #047857 !important; +.-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } -.to-green-800 { - --tw-gradient-to: #065f46 !important; +.-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } -.to-green-900 { - --tw-gradient-to: #064e3b !important; +.-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } -.to-blue-50 { - --tw-gradient-to: #eff6ff !important; +.-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } -.to-blue-100 { - --tw-gradient-to: #dbeafe !important; +.-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } -.to-blue-200 { - --tw-gradient-to: #bfdbfe !important; +.-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } -.to-blue-300 { - --tw-gradient-to: #93c5fd !important; +.-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } -.to-blue-400 { - --tw-gradient-to: #60a5fa !important; +.-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } -.to-blue-500 { - --tw-gradient-to: #3b82f6 !important; +.-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } -.to-blue-600 { - --tw-gradient-to: #2563eb !important; +.-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } -.to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; +.-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } -.to-blue-800 { - --tw-gradient-to: #1e40af !important; +.-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } -.to-blue-900 { - --tw-gradient-to: #1e3a8a !important; +.-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } -.to-indigo-50 { - --tw-gradient-to: #eef2ff !important; +.-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } -.to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; +.-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } -.to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; +.-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } -.to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; +.-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } -.to-indigo-400 { - --tw-gradient-to: #818cf8 !important; +.-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } -.to-indigo-500 { - --tw-gradient-to: #6366f1 !important; +.-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } -.to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; +.-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } -.to-indigo-700 { - --tw-gradient-to: #4338ca !important; +.-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } -.to-indigo-800 { - --tw-gradient-to: #3730a3 !important; +.-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } -.to-indigo-900 { - --tw-gradient-to: #312e81 !important; +.-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } -.to-purple-50 { - --tw-gradient-to: #f5f3ff !important; +.-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } -.to-purple-100 { - --tw-gradient-to: #ede9fe !important; +.-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } -.to-purple-200 { - --tw-gradient-to: #ddd6fe !important; +.mt-0 { + margin-top: 0px !important; } -.to-purple-300 { - --tw-gradient-to: #c4b5fd !important; +.mt-1 { + margin-top: 0.25rem !important; } -.to-purple-400 { - --tw-gradient-to: #a78bfa !important; +.mt-2 { + margin-top: 0.5rem !important; } -.to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; +.mt-3 { + margin-top: 0.75rem !important; } -.to-purple-600 { - --tw-gradient-to: #7c3aed !important; +.mt-4 { + margin-top: 1rem !important; } -.to-purple-700 { - --tw-gradient-to: #6d28d9 !important; +.mt-5 { + margin-top: 1.25rem !important; } -.to-purple-800 { - --tw-gradient-to: #5b21b6 !important; +.mt-6 { + margin-top: 1.5rem !important; } -.to-purple-900 { - --tw-gradient-to: #4c1d95 !important; +.mt-7 { + margin-top: 1.75rem !important; } -.to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; +.mt-8 { + margin-top: 2rem !important; } -.to-pink-100 { - --tw-gradient-to: #fce7f3 !important; +.mt-9 { + margin-top: 2.25rem !important; } -.to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; +.mt-10 { + margin-top: 2.5rem !important; } -.to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; +.mt-11 { + margin-top: 2.75rem !important; } -.to-pink-400 { - --tw-gradient-to: #f472b6 !important; +.mt-12 { + margin-top: 3rem !important; } -.to-pink-500 { - --tw-gradient-to: #ec4899 !important; +.mt-14 { + margin-top: 3.5rem !important; } -.to-pink-600 { - --tw-gradient-to: #db2777 !important; +.mt-16 { + margin-top: 4rem !important; } -.to-pink-700 { - --tw-gradient-to: #be185d !important; +.mt-20 { + margin-top: 5rem !important; } -.to-pink-800 { - --tw-gradient-to: #9d174d !important; +.mt-24 { + margin-top: 6rem !important; } -.to-pink-900 { - --tw-gradient-to: #831843 !important; +.mt-28 { + margin-top: 7rem !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; +.mt-32 { + margin-top: 8rem !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; +.mt-36 { + margin-top: 9rem !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; +.mt-40 { + margin-top: 10rem !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; +.mt-44 { + margin-top: 11rem !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; +.mt-48 { + margin-top: 12rem !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; +.mt-52 { + margin-top: 13rem !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; +.mt-56 { + margin-top: 14rem !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; +.mt-60 { + margin-top: 15rem !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; +.mt-64 { + margin-top: 16rem !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; +.mt-72 { + margin-top: 18rem !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; +.mt-80 { + margin-top: 20rem !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; +.mt-96 { + margin-top: 24rem !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; +.mt-auto { + margin-top: auto !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; +.mt-px { + margin-top: 1px !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; +.mt-0\.5 { + margin-top: 0.125rem !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; +.mt-1\.5 { + margin-top: 0.375rem !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; +.mt-2\.5 { + margin-top: 0.625rem !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; +.mt-3\.5 { + margin-top: 0.875rem !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; +.-mt-0 { + margin-top: 0px !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; +.-mt-1 { + margin-top: -0.25rem !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; +.-mt-2 { + margin-top: -0.5rem !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; +.-mt-3 { + margin-top: -0.75rem !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; +.-mt-4 { + margin-top: -1rem !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; +.-mt-5 { + margin-top: -1.25rem !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; +.-mt-6 { + margin-top: -1.5rem !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; +.-mt-7 { + margin-top: -1.75rem !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; +.-mt-8 { + margin-top: -2rem !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; +.-mt-9 { + margin-top: -2.25rem !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; +.-mt-10 { + margin-top: -2.5rem !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; +.-mt-11 { + margin-top: -2.75rem !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; +.-mt-12 { + margin-top: -3rem !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; +.-mt-14 { + margin-top: -3.5rem !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; +.-mt-16 { + margin-top: -4rem !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; +.-mt-20 { + margin-top: -5rem !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; +.-mt-24 { + margin-top: -6rem !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; +.-mt-28 { + margin-top: -7rem !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; +.-mt-32 { + margin-top: -8rem !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; +.-mt-36 { + margin-top: -9rem !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; +.-mt-40 { + margin-top: -10rem !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; +.-mt-44 { + margin-top: -11rem !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; +.-mt-48 { + margin-top: -12rem !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; +.-mt-52 { + margin-top: -13rem !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; +.-mt-56 { + margin-top: -14rem !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; +.-mt-60 { + margin-top: -15rem !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; +.-mt-64 { + margin-top: -16rem !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; +.-mt-72 { + margin-top: -18rem !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; +.-mt-80 { + margin-top: -20rem !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; +.-mt-96 { + margin-top: -24rem !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; +.-mt-px { + margin-top: -1px !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; +.-mt-0\.5 { + margin-top: -0.125rem !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; +.-mt-1\.5 { + margin-top: -0.375rem !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; +.-mt-2\.5 { + margin-top: -0.625rem !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; +.-mt-3\.5 { + margin-top: -0.875rem !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; +.mr-0 { + margin-right: 0px !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; +.mr-1 { + margin-right: 0.25rem !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; +.mr-2 { + margin-right: 0.5rem !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; +.mr-3 { + margin-right: 0.75rem !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; +.mr-4 { + margin-right: 1rem !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; +.mr-5 { + margin-right: 1.25rem !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; +.mr-6 { + margin-right: 1.5rem !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; +.mr-7 { + margin-right: 1.75rem !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; +.mr-8 { + margin-right: 2rem !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; +.mr-9 { + margin-right: 2.25rem !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; +.mr-10 { + margin-right: 2.5rem !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; +.mr-11 { + margin-right: 2.75rem !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; +.mr-12 { + margin-right: 3rem !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; +.mr-14 { + margin-right: 3.5rem !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; +.mr-16 { + margin-right: 4rem !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; +.mr-20 { + margin-right: 5rem !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; +.mr-24 { + margin-right: 6rem !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; +.mr-28 { + margin-right: 7rem !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; +.mr-32 { + margin-right: 8rem !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; +.mr-36 { + margin-right: 9rem !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; +.mr-40 { + margin-right: 10rem !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; +.mr-44 { + margin-right: 11rem !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; +.mr-48 { + margin-right: 12rem !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; +.mr-52 { + margin-right: 13rem !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; +.mr-56 { + margin-right: 14rem !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; +.mr-60 { + margin-right: 15rem !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; +.mr-64 { + margin-right: 16rem !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; +.mr-72 { + margin-right: 18rem !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; +.mr-80 { + margin-right: 20rem !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; +.mr-96 { + margin-right: 24rem !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; +.mr-auto { + margin-right: auto !important; } -.hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +.mr-px { + margin-right: 1px !important; } -.hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +.mr-0\.5 { + margin-right: 0.125rem !important; } -.hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +.mr-1\.5 { + margin-right: 0.375rem !important; } -.hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +.mr-2\.5 { + margin-right: 0.625rem !important; } -.hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; +.mr-3\.5 { + margin-right: 0.875rem !important; } -.hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; +.-mr-0 { + margin-right: 0px !important; } -.hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; +.-mr-1 { + margin-right: -0.25rem !important; } -.hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; +.-mr-2 { + margin-right: -0.5rem !important; } -.hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; +.-mr-3 { + margin-right: -0.75rem !important; } -.hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; +.-mr-4 { + margin-right: -1rem !important; } -.hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; +.-mr-5 { + margin-right: -1.25rem !important; } -.hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; +.-mr-6 { + margin-right: -1.5rem !important; } -.hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; +.-mr-7 { + margin-right: -1.75rem !important; } -.hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; +.-mr-8 { + margin-right: -2rem !important; } -.hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; +.-mr-9 { + margin-right: -2.25rem !important; } -.hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; +.-mr-10 { + margin-right: -2.5rem !important; } -.hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; +.-mr-11 { + margin-right: -2.75rem !important; } -.hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; +.-mr-12 { + margin-right: -3rem !important; } -.hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; +.-mr-14 { + margin-right: -3.5rem !important; } -.hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; +.-mr-16 { + margin-right: -4rem !important; } -.hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; +.-mr-20 { + margin-right: -5rem !important; } -.hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; +.-mr-24 { + margin-right: -6rem !important; } -.hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; +.-mr-28 { + margin-right: -7rem !important; } -.hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; +.-mr-32 { + margin-right: -8rem !important; } -.hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; +.-mr-36 { + margin-right: -9rem !important; } -.hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; +.-mr-40 { + margin-right: -10rem !important; } -.hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; +.-mr-44 { + margin-right: -11rem !important; } -.hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; +.-mr-48 { + margin-right: -12rem !important; } -.hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; +.-mr-52 { + margin-right: -13rem !important; } -.hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; +.-mr-56 { + margin-right: -14rem !important; } -.hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; +.-mr-60 { + margin-right: -15rem !important; } -.hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; +.-mr-64 { + margin-right: -16rem !important; } -.hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; +.-mr-72 { + margin-right: -18rem !important; } -.hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; +.-mr-80 { + margin-right: -20rem !important; } -.hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; +.-mr-96 { + margin-right: -24rem !important; } -.hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; +.-mr-px { + margin-right: -1px !important; } -.hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; +.-mr-0\.5 { + margin-right: -0.125rem !important; } -.hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; +.-mr-1\.5 { + margin-right: -0.375rem !important; } -.hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; +.-mr-2\.5 { + margin-right: -0.625rem !important; } -.hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; +.-mr-3\.5 { + margin-right: -0.875rem !important; } -.hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; +.mb-0 { + margin-bottom: 0px !important; } -.hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; +.mb-1 { + margin-bottom: 0.25rem !important; } -.hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; +.mb-2 { + margin-bottom: 0.5rem !important; } -.hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; +.mb-3 { + margin-bottom: 0.75rem !important; } -.hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; +.mb-4 { + margin-bottom: 1rem !important; } -.hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; +.mb-5 { + margin-bottom: 1.25rem !important; } -.hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; +.mb-6 { + margin-bottom: 1.5rem !important; } -.hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; +.mb-7 { + margin-bottom: 1.75rem !important; } -.hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; +.mb-8 { + margin-bottom: 2rem !important; } -.hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; +.mb-9 { + margin-bottom: 2.25rem !important; } -.hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; +.mb-10 { + margin-bottom: 2.5rem !important; } -.hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; +.mb-11 { + margin-bottom: 2.75rem !important; } -.hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; +.mb-12 { + margin-bottom: 3rem !important; } -.hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; +.mb-14 { + margin-bottom: 3.5rem !important; } -.hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; +.mb-16 { + margin-bottom: 4rem !important; } -.hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; +.mb-20 { + margin-bottom: 5rem !important; } -.hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; +.mb-24 { + margin-bottom: 6rem !important; } -.hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; +.mb-28 { + margin-bottom: 7rem !important; } -.hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; +.mb-32 { + margin-bottom: 8rem !important; } -.hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; +.mb-36 { + margin-bottom: 9rem !important; } -.hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; +.mb-40 { + margin-bottom: 10rem !important; } -.hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; +.mb-44 { + margin-bottom: 11rem !important; } -.hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; +.mb-48 { + margin-bottom: 12rem !important; } -.hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; +.mb-52 { + margin-bottom: 13rem !important; } -.hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; +.mb-56 { + margin-bottom: 14rem !important; } -.hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; +.mb-60 { + margin-bottom: 15rem !important; } -.hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; +.mb-64 { + margin-bottom: 16rem !important; } -.hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; +.mb-72 { + margin-bottom: 18rem !important; } -.hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; +.mb-80 { + margin-bottom: 20rem !important; } -.hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; +.mb-96 { + margin-bottom: 24rem !important; } -.hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; +.mb-auto { + margin-bottom: auto !important; } -.hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; +.mb-px { + margin-bottom: 1px !important; } -.hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; +.mb-0\.5 { + margin-bottom: 0.125rem !important; } -.hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; +.mb-1\.5 { + margin-bottom: 0.375rem !important; } -.hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; +.mb-2\.5 { + margin-bottom: 0.625rem !important; } -.hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; +.mb-3\.5 { + margin-bottom: 0.875rem !important; } -.hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; +.-mb-0 { + margin-bottom: 0px !important; } -.hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; +.-mb-1 { + margin-bottom: -0.25rem !important; } -.hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; +.-mb-2 { + margin-bottom: -0.5rem !important; } -.hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; +.-mb-3 { + margin-bottom: -0.75rem !important; } -.hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; +.-mb-4 { + margin-bottom: -1rem !important; } -.hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; +.-mb-5 { + margin-bottom: -1.25rem !important; } -.hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; +.-mb-6 { + margin-bottom: -1.5rem !important; } -.hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; +.-mb-7 { + margin-bottom: -1.75rem !important; } -.hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; +.-mb-8 { + margin-bottom: -2rem !important; } -.hover\:to-current:hover { - --tw-gradient-to: currentColor !important; +.-mb-9 { + margin-bottom: -2.25rem !important; } -.hover\:to-black:hover { - --tw-gradient-to: #000 !important; +.-mb-10 { + margin-bottom: -2.5rem !important; } -.hover\:to-white:hover { - --tw-gradient-to: #fff !important; +.-mb-11 { + margin-bottom: -2.75rem !important; } -.hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; +.-mb-12 { + margin-bottom: -3rem !important; } -.hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; +.-mb-14 { + margin-bottom: -3.5rem !important; } -.hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; +.-mb-16 { + margin-bottom: -4rem !important; } -.hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; +.-mb-20 { + margin-bottom: -5rem !important; } -.hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; +.-mb-24 { + margin-bottom: -6rem !important; } -.hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; +.-mb-28 { + margin-bottom: -7rem !important; } -.hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; -} +.-mb-32 { + margin-bottom: -8rem !important; +} -.hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; +.-mb-36 { + margin-bottom: -9rem !important; } -.hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; +.-mb-40 { + margin-bottom: -10rem !important; } -.hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; +.-mb-44 { + margin-bottom: -11rem !important; } -.hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; +.-mb-48 { + margin-bottom: -12rem !important; } -.hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; +.-mb-52 { + margin-bottom: -13rem !important; } -.hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; +.-mb-56 { + margin-bottom: -14rem !important; } -.hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; +.-mb-60 { + margin-bottom: -15rem !important; } -.hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; +.-mb-64 { + margin-bottom: -16rem !important; } -.hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; +.-mb-72 { + margin-bottom: -18rem !important; } -.hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; +.-mb-80 { + margin-bottom: -20rem !important; } -.hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; +.-mb-96 { + margin-bottom: -24rem !important; } -.hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; +.-mb-px { + margin-bottom: -1px !important; } -.hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; +.-mb-0\.5 { + margin-bottom: -0.125rem !important; } -.hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; +.-mb-1\.5 { + margin-bottom: -0.375rem !important; } -.hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; +.-mb-2\.5 { + margin-bottom: -0.625rem !important; } -.hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; +.-mb-3\.5 { + margin-bottom: -0.875rem !important; } -.hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; +.ml-0 { + margin-left: 0px !important; } -.hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; +.ml-1 { + margin-left: 0.25rem !important; } -.hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; +.ml-2 { + margin-left: 0.5rem !important; } -.hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; +.ml-3 { + margin-left: 0.75rem !important; } -.hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; +.ml-4 { + margin-left: 1rem !important; } -.hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; +.ml-5 { + margin-left: 1.25rem !important; } -.hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; +.ml-6 { + margin-left: 1.5rem !important; } -.hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; +.ml-7 { + margin-left: 1.75rem !important; } -.hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; +.ml-8 { + margin-left: 2rem !important; } -.hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; +.ml-9 { + margin-left: 2.25rem !important; } -.hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; +.ml-10 { + margin-left: 2.5rem !important; } -.hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; +.ml-11 { + margin-left: 2.75rem !important; } -.hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; +.ml-12 { + margin-left: 3rem !important; } -.hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; +.ml-14 { + margin-left: 3.5rem !important; } -.hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; +.ml-16 { + margin-left: 4rem !important; } -.hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; +.ml-20 { + margin-left: 5rem !important; } -.hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; +.ml-24 { + margin-left: 6rem !important; } -.hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; +.ml-28 { + margin-left: 7rem !important; } -.hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; +.ml-32 { + margin-left: 8rem !important; } -.hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; +.ml-36 { + margin-left: 9rem !important; } -.hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; +.ml-40 { + margin-left: 10rem !important; } -.hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; +.ml-44 { + margin-left: 11rem !important; } -.hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; +.ml-48 { + margin-left: 12rem !important; } -.hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; +.ml-52 { + margin-left: 13rem !important; } -.hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; +.ml-56 { + margin-left: 14rem !important; } -.hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; +.ml-60 { + margin-left: 15rem !important; } -.hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; +.ml-64 { + margin-left: 16rem !important; } -.hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; +.ml-72 { + margin-left: 18rem !important; } -.hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; +.ml-80 { + margin-left: 20rem !important; } -.hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; +.ml-96 { + margin-left: 24rem !important; } -.hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; +.ml-auto { + margin-left: auto !important; } -.hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; +.ml-px { + margin-left: 1px !important; } -.hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; +.ml-0\.5 { + margin-left: 0.125rem !important; } -.hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; +.ml-1\.5 { + margin-left: 0.375rem !important; } -.hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; +.ml-2\.5 { + margin-left: 0.625rem !important; } -.hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; +.ml-3\.5 { + margin-left: 0.875rem !important; } -.hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; +.-ml-0 { + margin-left: 0px !important; } -.hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; +.-ml-1 { + margin-left: -0.25rem !important; } -.hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; +.-ml-2 { + margin-left: -0.5rem !important; } -.hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; +.-ml-3 { + margin-left: -0.75rem !important; } -.hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; +.-ml-4 { + margin-left: -1rem !important; } -.hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; +.-ml-5 { + margin-left: -1.25rem !important; } -.hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; +.-ml-6 { + margin-left: -1.5rem !important; } -.hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; +.-ml-7 { + margin-left: -1.75rem !important; } -.hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; +.-ml-8 { + margin-left: -2rem !important; } -.hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; +.-ml-9 { + margin-left: -2.25rem !important; } -.hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; +.-ml-10 { + margin-left: -2.5rem !important; } -.hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; +.-ml-11 { + margin-left: -2.75rem !important; } -.hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; +.-ml-12 { + margin-left: -3rem !important; } -.hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; +.-ml-14 { + margin-left: -3.5rem !important; } -.hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; +.-ml-16 { + margin-left: -4rem !important; } -.hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; +.-ml-20 { + margin-left: -5rem !important; } -.hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; +.-ml-24 { + margin-left: -6rem !important; } -.hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; +.-ml-28 { + margin-left: -7rem !important; } -.hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; +.-ml-32 { + margin-left: -8rem !important; } -.hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; +.-ml-36 { + margin-left: -9rem !important; } -.hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; +.-ml-40 { + margin-left: -10rem !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; +.-ml-44 { + margin-left: -11rem !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; +.-ml-48 { + margin-left: -12rem !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; +.-ml-52 { + margin-left: -13rem !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; +.-ml-56 { + margin-left: -14rem !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; +.-ml-60 { + margin-left: -15rem !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; +.-ml-64 { + margin-left: -16rem !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; +.-ml-72 { + margin-left: -18rem !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; +.-ml-80 { + margin-left: -20rem !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; +.-ml-96 { + margin-left: -24rem !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; +.-ml-px { + margin-left: -1px !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; +.-ml-0\.5 { + margin-left: -0.125rem !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; +.-ml-1\.5 { + margin-left: -0.375rem !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; +.-ml-2\.5 { + margin-left: -0.625rem !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; +.-ml-3\.5 { + margin-left: -0.875rem !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; +.box-border { + box-sizing: border-box !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; +.box-content { + box-sizing: content-box !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; +.block { + display: block !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; +.inline-block { + display: inline-block !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; +.inline { + display: inline !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; +.flex { + display: flex !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; +.inline-flex { + display: inline-flex !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; +.table { + display: table !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; +.inline-table { + display: inline-table !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; +.table-caption { + display: table-caption !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; +.table-cell { + display: table-cell !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; +.table-column { + display: table-column !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; +.table-column-group { + display: table-column-group !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; +.table-footer-group { + display: table-footer-group !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; +.table-header-group { + display: table-header-group !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; +.table-row-group { + display: table-row-group !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; +.table-row { + display: table-row !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; +.flow-root { + display: flow-root !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; +.grid { + display: grid !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; +.inline-grid { + display: inline-grid !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; +.contents { + display: contents !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; +.list-item { + display: list-item !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; +.hidden { + display: none !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; +.h-0 { + height: 0px !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; +.h-1 { + height: 0.25rem !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; +.h-2 { + height: 0.5rem !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; +.h-3 { + height: 0.75rem !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; +.h-4 { + height: 1rem !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; +.h-5 { + height: 1.25rem !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; +.h-6 { + height: 1.5rem !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; +.h-7 { + height: 1.75rem !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; +.h-8 { + height: 2rem !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; +.h-9 { + height: 2.25rem !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; +.h-10 { + height: 2.5rem !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; +.h-11 { + height: 2.75rem !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; +.h-12 { + height: 3rem !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; +.h-14 { + height: 3.5rem !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; +.h-16 { + height: 4rem !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; +.h-20 { + height: 5rem !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; +.h-24 { + height: 6rem !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; +.h-28 { + height: 7rem !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; +.h-32 { + height: 8rem !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; +.h-36 { + height: 9rem !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; +.h-40 { + height: 10rem !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; +.h-44 { + height: 11rem !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; +.h-48 { + height: 12rem !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; +.h-52 { + height: 13rem !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; +.h-56 { + height: 14rem !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; +.h-60 { + height: 15rem !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; +.h-64 { + height: 16rem !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; +.h-72 { + height: 18rem !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; +.h-80 { + height: 20rem !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; +.h-96 { + height: 24rem !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; +.h-auto { + height: auto !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; +.h-px { + height: 1px !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; +.h-0\.5 { + height: 0.125rem !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; +.h-1\.5 { + height: 0.375rem !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; +.h-2\.5 { + height: 0.625rem !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; +.h-3\.5 { + height: 0.875rem !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; +.h-1\/2 { + height: 50% !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; +.h-1\/3 { + height: 33.333333% !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; +.h-2\/3 { + height: 66.666667% !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; +.h-1\/4 { + height: 25% !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; +.h-2\/4 { + height: 50% !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; +.h-3\/4 { + height: 75% !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; +.h-1\/5 { + height: 20% !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; +.h-2\/5 { + height: 40% !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; +.h-3\/5 { + height: 60% !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; +.h-4\/5 { + height: 80% !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; +.h-1\/6 { + height: 16.666667% !important; } -.focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +.h-2\/6 { + height: 33.333333% !important; } -.focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +.h-3\/6 { + height: 50% !important; } -.focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +.h-4\/6 { + height: 66.666667% !important; } -.focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +.h-5\/6 { + height: 83.333333% !important; } -.focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; +.h-full { + height: 100% !important; } -.focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; +.h-screen { + height: 100vh !important; } -.focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; +.max-h-0 { + max-height: 0px !important; } -.focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; +.max-h-1 { + max-height: 0.25rem !important; } -.focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; +.max-h-2 { + max-height: 0.5rem !important; } -.focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; +.max-h-3 { + max-height: 0.75rem !important; } -.focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; +.max-h-4 { + max-height: 1rem !important; } -.focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; +.max-h-5 { + max-height: 1.25rem !important; } -.focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; +.max-h-6 { + max-height: 1.5rem !important; } -.focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; +.max-h-7 { + max-height: 1.75rem !important; } -.focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; +.max-h-8 { + max-height: 2rem !important; } -.focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; +.max-h-9 { + max-height: 2.25rem !important; } -.focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; +.max-h-10 { + max-height: 2.5rem !important; } -.focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; +.max-h-11 { + max-height: 2.75rem !important; } -.focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; +.max-h-12 { + max-height: 3rem !important; } -.focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; +.max-h-14 { + max-height: 3.5rem !important; } -.focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; +.max-h-16 { + max-height: 4rem !important; } -.focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; +.max-h-20 { + max-height: 5rem !important; } -.focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; +.max-h-24 { + max-height: 6rem !important; } -.focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; +.max-h-28 { + max-height: 7rem !important; } -.focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; +.max-h-32 { + max-height: 8rem !important; } -.focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; +.max-h-36 { + max-height: 9rem !important; } -.focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; +.max-h-40 { + max-height: 10rem !important; } -.focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; +.max-h-44 { + max-height: 11rem !important; } -.focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; +.max-h-48 { + max-height: 12rem !important; } -.focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; +.max-h-52 { + max-height: 13rem !important; } -.focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; +.max-h-56 { + max-height: 14rem !important; } -.focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; +.max-h-60 { + max-height: 15rem !important; } -.focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; +.max-h-64 { + max-height: 16rem !important; } -.focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; +.max-h-72 { + max-height: 18rem !important; } -.focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; +.max-h-80 { + max-height: 20rem !important; } -.focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; +.max-h-96 { + max-height: 24rem !important; } -.focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; +.max-h-px { + max-height: 1px !important; } -.focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; +.max-h-0\.5 { + max-height: 0.125rem !important; } -.focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; +.max-h-1\.5 { + max-height: 0.375rem !important; } -.focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; +.max-h-2\.5 { + max-height: 0.625rem !important; } -.focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; +.max-h-3\.5 { + max-height: 0.875rem !important; } -.focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; +.max-h-full { + max-height: 100% !important; } -.focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; +.max-h-screen { + max-height: 100vh !important; } -.focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; +.min-h-0 { + min-height: 0px !important; } -.focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; +.min-h-full { + min-height: 100% !important; } -.focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; +.min-h-screen { + min-height: 100vh !important; } -.focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; +.w-0 { + width: 0px !important; } -.focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; +.w-1 { + width: 0.25rem !important; } -.focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; +.w-2 { + width: 0.5rem !important; } -.focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; +.w-3 { + width: 0.75rem !important; } -.focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; +.w-4 { + width: 1rem !important; } -.focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; +.w-5 { + width: 1.25rem !important; } -.focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; +.w-6 { + width: 1.5rem !important; } -.focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; +.w-7 { + width: 1.75rem !important; } -.focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; +.w-8 { + width: 2rem !important; } -.focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; +.w-9 { + width: 2.25rem !important; } -.focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; +.w-10 { + width: 2.5rem !important; } -.focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; +.w-11 { + width: 2.75rem !important; } -.focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; +.w-12 { + width: 3rem !important; } -.focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; +.w-14 { + width: 3.5rem !important; } -.focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; +.w-16 { + width: 4rem !important; } -.focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; +.w-20 { + width: 5rem !important; } -.focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; +.w-24 { + width: 6rem !important; } -.focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; +.w-28 { + width: 7rem !important; } -.focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; +.w-32 { + width: 8rem !important; } -.focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; +.w-36 { + width: 9rem !important; } -.focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; +.w-40 { + width: 10rem !important; } -.focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; +.w-44 { + width: 11rem !important; } -.focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; +.w-48 { + width: 12rem !important; } -.focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; +.w-52 { + width: 13rem !important; } -.focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; +.w-56 { + width: 14rem !important; } -.focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; +.w-60 { + width: 15rem !important; } -.focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; +.w-64 { + width: 16rem !important; } -.focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; +.w-72 { + width: 18rem !important; } -.focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; +.w-80 { + width: 20rem !important; } -.focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; +.w-96 { + width: 24rem !important; } -.focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; +.w-auto { + width: auto !important; } -.focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; +.w-px { + width: 1px !important; } -.focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; +.w-0\.5 { + width: 0.125rem !important; } -.focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; +.w-1\.5 { + width: 0.375rem !important; } -.focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; +.w-2\.5 { + width: 0.625rem !important; } -.focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; +.w-3\.5 { + width: 0.875rem !important; } -.focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; +.w-1\/2 { + width: 50% !important; } -.focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; +.w-1\/3 { + width: 33.333333% !important; } -.focus\:to-transparent:focus { - --tw-gradient-to: transparent !important; +.w-2\/3 { + width: 66.666667% !important; } -.focus\:to-current:focus { - --tw-gradient-to: currentColor !important; +.w-1\/4 { + width: 25% !important; } -.focus\:to-black:focus { - --tw-gradient-to: #000 !important; +.w-2\/4 { + width: 50% !important; } -.focus\:to-white:focus { - --tw-gradient-to: #fff !important; +.w-3\/4 { + width: 75% !important; } -.focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb !important; +.w-1\/5 { + width: 20% !important; } -.focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6 !important; +.w-2\/5 { + width: 40% !important; } -.focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb !important; +.w-3\/5 { + width: 60% !important; } -.focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db !important; +.w-4\/5 { + width: 80% !important; } -.focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af !important; +.w-1\/6 { + width: 16.666667% !important; } -.focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280 !important; +.w-2\/6 { + width: 33.333333% !important; } -.focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563 !important; +.w-3\/6 { + width: 50% !important; } -.focus\:to-gray-700:focus { - --tw-gradient-to: #374151 !important; +.w-4\/6 { + width: 66.666667% !important; } -.focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937 !important; +.w-5\/6 { + width: 83.333333% !important; } -.focus\:to-gray-900:focus { - --tw-gradient-to: #111827 !important; +.w-1\/12 { + width: 8.333333% !important; } -.focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2 !important; +.w-2\/12 { + width: 16.666667% !important; } -.focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2 !important; +.w-3\/12 { + width: 25% !important; } -.focus\:to-red-200:focus { - --tw-gradient-to: #fecaca !important; +.w-4\/12 { + width: 33.333333% !important; } -.focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5 !important; +.w-5\/12 { + width: 41.666667% !important; } -.focus\:to-red-400:focus { - --tw-gradient-to: #f87171 !important; +.w-6\/12 { + width: 50% !important; } -.focus\:to-red-500:focus { - --tw-gradient-to: #ef4444 !important; +.w-7\/12 { + width: 58.333333% !important; } -.focus\:to-red-600:focus { - --tw-gradient-to: #dc2626 !important; +.w-8\/12 { + width: 66.666667% !important; } -.focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c !important; +.w-9\/12 { + width: 75% !important; } -.focus\:to-red-800:focus { - --tw-gradient-to: #991b1b !important; +.w-10\/12 { + width: 83.333333% !important; } -.focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d !important; +.w-11\/12 { + width: 91.666667% !important; } -.focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb !important; +.w-full { + width: 100% !important; } -.focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7 !important; +.w-screen { + width: 100vw !important; } -.focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a !important; +.w-min { + width: min-content !important; } -.focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d !important; +.w-max { + width: max-content !important; } -.focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24 !important; +.min-w-0 { + min-width: 0px !important; } -.focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b !important; +.min-w-full { + min-width: 100% !important; } -.focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706 !important; +.min-w-min { + min-width: min-content !important; } -.focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309 !important; +.min-w-max { + min-width: max-content !important; } -.focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e !important; +.max-w-0 { + max-width: 0rem !important; } -.focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f !important; +.max-w-none { + max-width: none !important; } -.focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5 !important; +.max-w-xs { + max-width: 20rem !important; } -.focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5 !important; +.max-w-sm { + max-width: 24rem !important; } -.focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0 !important; +.max-w-md { + max-width: 28rem !important; } -.focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7 !important; +.max-w-lg { + max-width: 32rem !important; } -.focus\:to-green-400:focus { - --tw-gradient-to: #34d399 !important; +.max-w-xl { + max-width: 36rem !important; } -.focus\:to-green-500:focus { - --tw-gradient-to: #10b981 !important; +.max-w-2xl { + max-width: 42rem !important; } -.focus\:to-green-600:focus { - --tw-gradient-to: #059669 !important; +.max-w-3xl { + max-width: 48rem !important; } -.focus\:to-green-700:focus { - --tw-gradient-to: #047857 !important; +.max-w-4xl { + max-width: 56rem !important; } -.focus\:to-green-800:focus { - --tw-gradient-to: #065f46 !important; +.max-w-5xl { + max-width: 64rem !important; } -.focus\:to-green-900:focus { - --tw-gradient-to: #064e3b !important; +.max-w-6xl { + max-width: 72rem !important; } -.focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff !important; +.max-w-7xl { + max-width: 80rem !important; } -.focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe !important; +.max-w-full { + max-width: 100% !important; } -.focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe !important; +.max-w-min { + max-width: min-content !important; } -.focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd !important; +.max-w-max { + max-width: max-content !important; } -.focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa !important; +.max-w-prose { + max-width: 65ch !important; } -.focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6 !important; +.max-w-screen-sm { + max-width: 640px !important; } -.focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb !important; +.max-w-screen-md { + max-width: 768px !important; } -.focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8 !important; +.max-w-screen-lg { + max-width: 1024px !important; } -.focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af !important; +.max-w-screen-xl { + max-width: 1280px !important; } -.focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a !important; +.max-w-screen-2xl { + max-width: 1536px !important; } -.focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff !important; +.flex-1 { + flex: 1 1 0% !important; } -.focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff !important; +.flex-auto { + flex: 1 1 auto !important; } -.focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe !important; +.flex-initial { + flex: 0 1 auto !important; } -.focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc !important; +.flex-none { + flex: none !important; } -.focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8 !important; +.flex-shrink-0 { + flex-shrink: 0 !important; } -.focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1 !important; +.flex-shrink { + flex-shrink: 1 !important; } -.focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5 !important; +.flex-grow-0 { + flex-grow: 0 !important; } -.focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca !important; +.flex-grow { + flex-grow: 1 !important; } -.focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3 !important; +.table-auto { + table-layout: auto !important; } -.focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81 !important; +.table-fixed { + table-layout: fixed !important; } -.focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff !important; +.border-collapse { + border-collapse: collapse !important; } -.focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe !important; +.border-separate { + border-collapse: separate !important; } -.focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe !important; +.transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; } -.focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd !important; +.transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; } -.focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa !important; +.transform-none { + transform: none !important; } -.focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6 !important; +.origin-center { + transform-origin: center !important; } -.focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed !important; +.origin-top { + transform-origin: top !important; } -.focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9 !important; +.origin-top-right { + transform-origin: top right !important; } -.focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6 !important; +.origin-right { + transform-origin: right !important; } -.focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95 !important; +.origin-bottom-right { + transform-origin: bottom right !important; } -.focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8 !important; +.origin-bottom { + transform-origin: bottom !important; } -.focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3 !important; +.origin-bottom-left { + transform-origin: bottom left !important; } -.focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8 !important; +.origin-left { + transform-origin: left !important; } -.focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4 !important; +.origin-top-left { + transform-origin: top left !important; } -.focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6 !important; +.translate-x-0 { + --tw-translate-x: 0px !important; } -.focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899 !important; +.translate-x-1 { + --tw-translate-x: 0.25rem !important; } -.focus\:to-pink-600:focus { - --tw-gradient-to: #db2777 !important; +.translate-x-2 { + --tw-translate-x: 0.5rem !important; } -.focus\:to-pink-700:focus { - --tw-gradient-to: #be185d !important; +.translate-x-3 { + --tw-translate-x: 0.75rem !important; } -.focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d !important; +.translate-x-4 { + --tw-translate-x: 1rem !important; } -.focus\:to-pink-900:focus { - --tw-gradient-to: #831843 !important; +.translate-x-5 { + --tw-translate-x: 1.25rem !important; } -.bg-opacity-0 { - --tw-bg-opacity: 0 !important; +.translate-x-6 { + --tw-translate-x: 1.5rem !important; } -.bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; +.translate-x-7 { + --tw-translate-x: 1.75rem !important; } -.bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; +.translate-x-8 { + --tw-translate-x: 2rem !important; } -.bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; +.translate-x-9 { + --tw-translate-x: 2.25rem !important; } -.bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; +.translate-x-10 { + --tw-translate-x: 2.5rem !important; } -.bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; +.translate-x-11 { + --tw-translate-x: 2.75rem !important; } -.bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; +.translate-x-12 { + --tw-translate-x: 3rem !important; } -.bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; +.translate-x-14 { + --tw-translate-x: 3.5rem !important; } -.bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; +.translate-x-16 { + --tw-translate-x: 4rem !important; } -.bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; +.translate-x-20 { + --tw-translate-x: 5rem !important; } -.bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; +.translate-x-24 { + --tw-translate-x: 6rem !important; } -.bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; +.translate-x-28 { + --tw-translate-x: 7rem !important; } -.bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; +.translate-x-32 { + --tw-translate-x: 8rem !important; } -.bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; +.translate-x-36 { + --tw-translate-x: 9rem !important; } -.bg-opacity-100 { - --tw-bg-opacity: 1 !important; +.translate-x-40 { + --tw-translate-x: 10rem !important; } -.group:hover .group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0 !important; +.translate-x-44 { + --tw-translate-x: 11rem !important; } -.group:hover .group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; +.translate-x-48 { + --tw-translate-x: 12rem !important; } -.group:hover .group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; +.translate-x-52 { + --tw-translate-x: 13rem !important; } -.group:hover .group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; +.translate-x-56 { + --tw-translate-x: 14rem !important; } -.group:hover .group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; +.translate-x-60 { + --tw-translate-x: 15rem !important; } -.group:hover .group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; +.translate-x-64 { + --tw-translate-x: 16rem !important; } -.group:hover .group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; +.translate-x-72 { + --tw-translate-x: 18rem !important; } -.group:hover .group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; +.translate-x-80 { + --tw-translate-x: 20rem !important; } -.group:hover .group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; +.translate-x-96 { + --tw-translate-x: 24rem !important; } -.group:hover .group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; +.translate-x-px { + --tw-translate-x: 1px !important; } -.group:hover .group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; +.translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; } -.group:hover .group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; +.translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; } -.group:hover .group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; +.translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; } -.group:hover .group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; +.translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; } -.group:hover .group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1 !important; +.-translate-x-0 { + --tw-translate-x: 0px !important; } -.focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0 !important; +.-translate-x-1 { + --tw-translate-x: -0.25rem !important; } -.focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05 !important; +.-translate-x-2 { + --tw-translate-x: -0.5rem !important; } -.focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1 !important; +.-translate-x-3 { + --tw-translate-x: -0.75rem !important; } -.focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2 !important; +.-translate-x-4 { + --tw-translate-x: -1rem !important; } -.focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25 !important; +.-translate-x-5 { + --tw-translate-x: -1.25rem !important; } -.focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3 !important; +.-translate-x-6 { + --tw-translate-x: -1.5rem !important; } -.focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4 !important; +.-translate-x-7 { + --tw-translate-x: -1.75rem !important; } -.focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5 !important; +.-translate-x-8 { + --tw-translate-x: -2rem !important; } -.focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6 !important; +.-translate-x-9 { + --tw-translate-x: -2.25rem !important; } -.focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7 !important; +.-translate-x-10 { + --tw-translate-x: -2.5rem !important; } -.focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75 !important; +.-translate-x-11 { + --tw-translate-x: -2.75rem !important; } -.focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8 !important; +.-translate-x-12 { + --tw-translate-x: -3rem !important; } -.focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9 !important; +.-translate-x-14 { + --tw-translate-x: -3.5rem !important; } -.focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95 !important; +.-translate-x-16 { + --tw-translate-x: -4rem !important; } -.focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1 !important; +.-translate-x-20 { + --tw-translate-x: -5rem !important; } -.hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0 !important; +.-translate-x-24 { + --tw-translate-x: -6rem !important; } -.hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05 !important; +.-translate-x-28 { + --tw-translate-x: -7rem !important; } -.hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1 !important; +.-translate-x-32 { + --tw-translate-x: -8rem !important; } -.hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2 !important; +.-translate-x-36 { + --tw-translate-x: -9rem !important; } -.hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25 !important; +.-translate-x-40 { + --tw-translate-x: -10rem !important; } -.hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3 !important; +.-translate-x-44 { + --tw-translate-x: -11rem !important; } -.hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4 !important; +.-translate-x-48 { + --tw-translate-x: -12rem !important; } -.hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5 !important; +.-translate-x-52 { + --tw-translate-x: -13rem !important; } -.hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6 !important; +.-translate-x-56 { + --tw-translate-x: -14rem !important; } -.hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7 !important; +.-translate-x-60 { + --tw-translate-x: -15rem !important; } -.hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75 !important; +.-translate-x-64 { + --tw-translate-x: -16rem !important; } -.hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8 !important; +.-translate-x-72 { + --tw-translate-x: -18rem !important; } -.hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9 !important; +.-translate-x-80 { + --tw-translate-x: -20rem !important; } -.hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95 !important; +.-translate-x-96 { + --tw-translate-x: -24rem !important; } -.hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1 !important; +.-translate-x-px { + --tw-translate-x: -1px !important; } -.focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0 !important; +.-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; } -.focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05 !important; +.-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; } -.focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1 !important; +.-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; } -.focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2 !important; +.-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; } -.focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25 !important; +.translate-x-1\/2 { + --tw-translate-x: 50% !important; } -.focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3 !important; +.translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; } -.focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4 !important; +.translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; } -.focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5 !important; +.translate-x-1\/4 { + --tw-translate-x: 25% !important; } -.focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6 !important; +.translate-x-2\/4 { + --tw-translate-x: 50% !important; } -.focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7 !important; +.translate-x-3\/4 { + --tw-translate-x: 75% !important; } -.focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75 !important; +.translate-x-full { + --tw-translate-x: 100% !important; } -.focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8 !important; +.-translate-x-1\/2 { + --tw-translate-x: -50% !important; } -.focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9 !important; +.-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; } -.focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95 !important; +.-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; } -.focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1 !important; +.-translate-x-1\/4 { + --tw-translate-x: -25% !important; } -.bg-bottom { - background-position: bottom !important; +.-translate-x-2\/4 { + --tw-translate-x: -50% !important; } -.bg-center { - background-position: center !important; +.-translate-x-3\/4 { + --tw-translate-x: -75% !important; } -.bg-left { - background-position: left !important; +.-translate-x-full { + --tw-translate-x: -100% !important; } -.bg-left-bottom { - background-position: left bottom !important; +.translate-y-0 { + --tw-translate-y: 0px !important; } -.bg-left-top { - background-position: left top !important; +.translate-y-1 { + --tw-translate-y: 0.25rem !important; } -.bg-right { - background-position: right !important; +.translate-y-2 { + --tw-translate-y: 0.5rem !important; } -.bg-right-bottom { - background-position: right bottom !important; +.translate-y-3 { + --tw-translate-y: 0.75rem !important; } -.bg-right-top { - background-position: right top !important; +.translate-y-4 { + --tw-translate-y: 1rem !important; } -.bg-top { - background-position: top !important; +.translate-y-5 { + --tw-translate-y: 1.25rem !important; } -.bg-repeat { - background-repeat: repeat !important; +.translate-y-6 { + --tw-translate-y: 1.5rem !important; } -.bg-no-repeat { - background-repeat: no-repeat !important; +.translate-y-7 { + --tw-translate-y: 1.75rem !important; } -.bg-repeat-x { - background-repeat: repeat-x !important; +.translate-y-8 { + --tw-translate-y: 2rem !important; } -.bg-repeat-y { - background-repeat: repeat-y !important; +.translate-y-9 { + --tw-translate-y: 2.25rem !important; } -.bg-repeat-round { - background-repeat: round !important; +.translate-y-10 { + --tw-translate-y: 2.5rem !important; } -.bg-repeat-space { - background-repeat: space !important; +.translate-y-11 { + --tw-translate-y: 2.75rem !important; } -.bg-auto { - background-size: auto !important; +.translate-y-12 { + --tw-translate-y: 3rem !important; } -.bg-cover { - background-size: cover !important; +.translate-y-14 { + --tw-translate-y: 3.5rem !important; } -.bg-contain { - background-size: contain !important; +.translate-y-16 { + --tw-translate-y: 4rem !important; } -.bg-origin-border { - background-origin: border-box !important; +.translate-y-20 { + --tw-translate-y: 5rem !important; } -.bg-origin-padding { - background-origin: padding-box !important; +.translate-y-24 { + --tw-translate-y: 6rem !important; } -.bg-origin-content { - background-origin: content-box !important; +.translate-y-28 { + --tw-translate-y: 7rem !important; } -.border-collapse { - border-collapse: collapse !important; +.translate-y-32 { + --tw-translate-y: 8rem !important; } -.border-separate { - border-collapse: separate !important; +.translate-y-36 { + --tw-translate-y: 9rem !important; } -.border-transparent { - border-color: transparent !important; +.translate-y-40 { + --tw-translate-y: 10rem !important; } -.border-current { - border-color: currentColor !important; +.translate-y-44 { + --tw-translate-y: 11rem !important; } -.border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; +.translate-y-48 { + --tw-translate-y: 12rem !important; } -.border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; +.translate-y-52 { + --tw-translate-y: 13rem !important; } -.border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; +.translate-y-56 { + --tw-translate-y: 14rem !important; } -.border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; +.translate-y-60 { + --tw-translate-y: 15rem !important; } -.border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; +.translate-y-64 { + --tw-translate-y: 16rem !important; } -.border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; +.translate-y-72 { + --tw-translate-y: 18rem !important; } -.border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; +.translate-y-80 { + --tw-translate-y: 20rem !important; } -.border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; +.translate-y-96 { + --tw-translate-y: 24rem !important; } -.border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; +.translate-y-px { + --tw-translate-y: 1px !important; } -.border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; +.translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; } -.border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; +.translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; } -.border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; +.translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; } -.border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; +.translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; } -.border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; +.-translate-y-0 { + --tw-translate-y: 0px !important; } -.border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; +.-translate-y-1 { + --tw-translate-y: -0.25rem !important; } -.border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; +.-translate-y-2 { + --tw-translate-y: -0.5rem !important; } -.border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; +.-translate-y-3 { + --tw-translate-y: -0.75rem !important; } -.border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; +.-translate-y-4 { + --tw-translate-y: -1rem !important; } -.border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; +.-translate-y-5 { + --tw-translate-y: -1.25rem !important; } -.border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; +.-translate-y-6 { + --tw-translate-y: -1.5rem !important; } -.border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; +.-translate-y-7 { + --tw-translate-y: -1.75rem !important; } -.border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; +.-translate-y-8 { + --tw-translate-y: -2rem !important; } -.border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; +.-translate-y-9 { + --tw-translate-y: -2.25rem !important; } -.border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; +.-translate-y-10 { + --tw-translate-y: -2.5rem !important; } -.border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; +.-translate-y-11 { + --tw-translate-y: -2.75rem !important; } -.border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; +.-translate-y-12 { + --tw-translate-y: -3rem !important; } -.border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; +.-translate-y-14 { + --tw-translate-y: -3.5rem !important; } -.border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; +.-translate-y-16 { + --tw-translate-y: -4rem !important; } -.border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; +.-translate-y-20 { + --tw-translate-y: -5rem !important; } -.border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; +.-translate-y-24 { + --tw-translate-y: -6rem !important; } -.border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; +.-translate-y-28 { + --tw-translate-y: -7rem !important; } -.border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; +.-translate-y-32 { + --tw-translate-y: -8rem !important; } -.border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; +.-translate-y-36 { + --tw-translate-y: -9rem !important; } -.border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; +.-translate-y-40 { + --tw-translate-y: -10rem !important; } -.border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; +.-translate-y-44 { + --tw-translate-y: -11rem !important; } -.border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; +.-translate-y-48 { + --tw-translate-y: -12rem !important; } -.border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; +.-translate-y-52 { + --tw-translate-y: -13rem !important; } -.border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; +.-translate-y-56 { + --tw-translate-y: -14rem !important; } -.border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; +.-translate-y-60 { + --tw-translate-y: -15rem !important; } -.border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; +.-translate-y-64 { + --tw-translate-y: -16rem !important; } -.border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; +.-translate-y-72 { + --tw-translate-y: -18rem !important; } -.border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; +.-translate-y-80 { + --tw-translate-y: -20rem !important; } -.border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; +.-translate-y-96 { + --tw-translate-y: -24rem !important; } -.border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; +.-translate-y-px { + --tw-translate-y: -1px !important; } -.border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; +.-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; } -.border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; +.-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; } -.border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; +.-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; } -.border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; +.-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; } -.border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; +.translate-y-1\/2 { + --tw-translate-y: 50% !important; } -.border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; +.translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; } -.border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; +.translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; } -.border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; +.translate-y-1\/4 { + --tw-translate-y: 25% !important; } -.border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; +.translate-y-2\/4 { + --tw-translate-y: 50% !important; } -.border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; +.translate-y-3\/4 { + --tw-translate-y: 75% !important; } -.border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; +.translate-y-full { + --tw-translate-y: 100% !important; } -.border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; +.-translate-y-1\/2 { + --tw-translate-y: -50% !important; } -.border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; +.-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; } -.border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; +.-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; } -.border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; +.-translate-y-1\/4 { + --tw-translate-y: -25% !important; } -.border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; +.-translate-y-2\/4 { + --tw-translate-y: -50% !important; } -.border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; +.-translate-y-3\/4 { + --tw-translate-y: -75% !important; } -.border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; +.-translate-y-full { + --tw-translate-y: -100% !important; } -.border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; +.hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; } -.border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; +.hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; } -.border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; +.hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; } -.border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; +.hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; } -.border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; +.hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; } -.border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; +.hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; } -.border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; +.hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; } -.border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; +.hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; } -.border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; +.hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; } -.border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; +.hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; } -.border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; +.hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; } -.border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; +.hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; } -.border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; +.hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; } -.border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; +.hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; } -.border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; +.hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; } -.border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; +.hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; } -.border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; +.hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; } -.border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; +.hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; } -.border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; +.hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; } -.border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; +.hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; } -.group:hover .group-hover\:border-transparent { - border-color: transparent !important; +.hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; } -.group:hover .group-hover\:border-current { - border-color: currentColor !important; +.hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; } -.group:hover .group-hover\:border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; +.hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; } -.group:hover .group-hover\:border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; +.hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; } -.group:hover .group-hover\:border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; +.hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; } -.group:hover .group-hover\:border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; +.hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; } -.group:hover .group-hover\:border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; +.hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; } -.group:hover .group-hover\:border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; +.hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; } -.group:hover .group-hover\:border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; +.hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; } -.group:hover .group-hover\:border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; +.hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; } -.group:hover .group-hover\:border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; +.hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; } -.group:hover .group-hover\:border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; +.hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; } -.group:hover .group-hover\:border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; +.hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; } -.group:hover .group-hover\:border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; +.hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; } -.group:hover .group-hover\:border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; +.hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; } -.group:hover .group-hover\:border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; +.hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; } -.group:hover .group-hover\:border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; +.hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; } -.group:hover .group-hover\:border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; +.hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; } -.group:hover .group-hover\:border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; +.hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; } -.group:hover .group-hover\:border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; +.hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; } -.group:hover .group-hover\:border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; +.hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; } -.group:hover .group-hover\:border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; +.hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; } -.group:hover .group-hover\:border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; +.hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; } -.group:hover .group-hover\:border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; +.hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; } -.group:hover .group-hover\:border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; +.hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; } -.group:hover .group-hover\:border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; +.hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; } -.group:hover .group-hover\:border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; +.hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; } -.group:hover .group-hover\:border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; +.hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; } -.group:hover .group-hover\:border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; +.hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; } -.group:hover .group-hover\:border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; +.hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; } -.group:hover .group-hover\:border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; +.hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; } -.group:hover .group-hover\:border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; +.hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; } -.group:hover .group-hover\:border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; +.hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; } -.group:hover .group-hover\:border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; +.hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; } -.group:hover .group-hover\:border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; +.hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; } -.group:hover .group-hover\:border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; +.hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; } -.group:hover .group-hover\:border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; +.hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; } -.group:hover .group-hover\:border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; +.hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; } -.group:hover .group-hover\:border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; +.hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; } -.group:hover .group-hover\:border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; +.hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; } -.group:hover .group-hover\:border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; +.hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; } -.group:hover .group-hover\:border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; +.hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; } -.group:hover .group-hover\:border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; +.hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; } -.group:hover .group-hover\:border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; +.hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; } -.group:hover .group-hover\:border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; +.hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; } -.group:hover .group-hover\:border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; +.hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; } -.group:hover .group-hover\:border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; +.hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; } -.group:hover .group-hover\:border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; +.hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; } -.group:hover .group-hover\:border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; +.hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; } -.group:hover .group-hover\:border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; +.hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; } -.group:hover .group-hover\:border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; +.hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; } -.group:hover .group-hover\:border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; +.hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; } -.group:hover .group-hover\:border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; +.hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; } -.group:hover .group-hover\:border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; +.hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; } -.group:hover .group-hover\:border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; +.hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; } -.group:hover .group-hover\:border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; +.hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; } -.group:hover .group-hover\:border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; +.hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; } -.group:hover .group-hover\:border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; +.hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; } -.group:hover .group-hover\:border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; +.hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; } -.group:hover .group-hover\:border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; +.hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; } -.group:hover .group-hover\:border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; +.hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; } -.group:hover .group-hover\:border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; +.hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; } -.group:hover .group-hover\:border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; +.hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; } -.group:hover .group-hover\:border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; +.hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; } -.group:hover .group-hover\:border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; +.hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; } -.group:hover .group-hover\:border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; +.hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; } -.group:hover .group-hover\:border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; +.hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; } -.group:hover .group-hover\:border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; +.hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; } -.group:hover .group-hover\:border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; +.hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; } -.group:hover .group-hover\:border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; +.hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; } -.group:hover .group-hover\:border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; +.hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; } -.group:hover .group-hover\:border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; +.hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; } -.group:hover .group-hover\:border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; +.hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; } -.group:hover .group-hover\:border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; +.hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; } -.group:hover .group-hover\:border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; +.hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; } -.group:hover .group-hover\:border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; +.hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; } -.group:hover .group-hover\:border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; +.hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; } -.group:hover .group-hover\:border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; +.hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; } -.group:hover .group-hover\:border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; +.hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; } -.group:hover .group-hover\:border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; +.hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; } -.group:hover .group-hover\:border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; +.hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; } -.group:hover .group-hover\:border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; +.hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; } -.group:hover .group-hover\:border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; +.hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; } -.group:hover .group-hover\:border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; +.hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; } -.focus-within\:border-transparent:focus-within { - border-color: transparent !important; +.hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; } -.focus-within\:border-current:focus-within { - border-color: currentColor !important; +.hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; } -.focus-within\:border-black:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; +.hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; } -.focus-within\:border-white:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; +.hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; } -.focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; +.hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; } -.focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; +.hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; } -.focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; +.hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; } -.focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; +.hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; } -.focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; +.hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; } -.focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; +.hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; } -.focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; +.hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; } -.focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; +.hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; } -.focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; +.hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; } -.focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; +.hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; } -.focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; +.hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; } -.focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; +.hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; } -.focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; +.hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; } -.focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; +.hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; } -.focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; +.hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; } -.focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; +.hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; } -.focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; +.hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; } -.focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; +.hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; } -.focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; +.hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; } -.focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; +.hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; } -.focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; +.hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; } -.focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; +.hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; } -.focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; +.hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; } -.focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; +.hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; } -.focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; +.hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; } -.focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; +.hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; } -.focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; +.hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; } -.focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; +.hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; } -.focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; +.hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; } -.focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; +.hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; } -.focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; +.hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; } -.focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; +.hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; } -.focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; +.hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; } -.focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; +.hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; } -.focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; +.hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; } -.focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; +.hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; } -.focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; +.hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; } -.focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; +.hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; } -.focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; +.hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; } -.focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; +.hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; } -.focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; +.hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; } -.focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; +.hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; } -.focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; +.hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; } -.focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; +.hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; } -.focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; +.hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; } -.focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; +.hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; } -.focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; +.hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; } -.focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; +.hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; } -.focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; +.hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; } -.focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; +.hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; } -.focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; +.hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; } -.focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; +.hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; } -.focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; +.hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; } -.focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; +.hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; } -.focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; +.hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; } -.focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; +.hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; } -.focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; +.hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; } -.focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; +.hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; } -.focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; +.hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; } -.focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; +.hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; } -.focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; +.focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; } -.focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; +.focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; } -.focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; +.focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; } -.focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; +.focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; } -.focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; +.focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; } -.focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; +.focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; } -.focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; +.focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; } -.focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; +.focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; } -.focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; +.focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; } -.focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; +.focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; } -.focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; +.focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; } -.focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; +.focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; } -.focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; +.focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; } -.focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; +.focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; } -.focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; +.focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; } -.focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; +.focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; } -.focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; +.focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; } -.focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; +.focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; } -.focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; +.focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; } -.focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; +.focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; } -.hover\:border-transparent:hover { - border-color: transparent !important; +.focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; } -.hover\:border-current:hover { - border-color: currentColor !important; +.focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; } -.hover\:border-black:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; +.focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; } -.hover\:border-white:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; +.focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; } -.hover\:border-gray-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; +.focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; } -.hover\:border-gray-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; +.focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; } -.hover\:border-gray-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; +.focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; } -.hover\:border-gray-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; +.focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; } -.hover\:border-gray-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; +.focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; } -.hover\:border-gray-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; +.focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; } -.hover\:border-gray-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; +.focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; } -.hover\:border-gray-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; +.focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; } -.hover\:border-gray-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; +.focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; } -.hover\:border-gray-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; +.focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; } -.hover\:border-red-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; +.focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; } -.hover\:border-red-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; +.focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; } -.hover\:border-red-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; +.focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; } -.hover\:border-red-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; +.focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; } -.hover\:border-red-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; +.focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; } -.hover\:border-red-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; +.focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; } -.hover\:border-red-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; +.focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; } -.hover\:border-red-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; +.focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; } -.hover\:border-red-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; +.focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; } -.hover\:border-red-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; +.focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; } -.hover\:border-yellow-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; +.focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; } -.hover\:border-yellow-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; +.focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; } -.hover\:border-yellow-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; +.focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; } -.hover\:border-yellow-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; +.focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; } -.hover\:border-yellow-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; +.focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; } -.hover\:border-yellow-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; +.focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; } -.hover\:border-yellow-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; +.focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; } -.hover\:border-yellow-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; +.focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; } -.hover\:border-yellow-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; +.focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; } -.hover\:border-yellow-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; +.focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; } -.hover\:border-green-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; +.focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; } -.hover\:border-green-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; +.focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; } -.hover\:border-green-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; +.focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; } -.hover\:border-green-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; +.focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; } -.hover\:border-green-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; +.focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; } -.hover\:border-green-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; +.focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; } -.hover\:border-green-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; +.focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; } -.hover\:border-green-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; +.focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; } -.hover\:border-green-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; +.focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; } -.hover\:border-green-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; +.focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; } -.hover\:border-blue-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; +.focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; } -.hover\:border-blue-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; +.focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; } -.hover\:border-blue-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; +.focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; } -.hover\:border-blue-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; +.focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; } -.hover\:border-blue-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; +.focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; } -.hover\:border-blue-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; +.focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; } -.hover\:border-blue-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; +.focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; } -.hover\:border-blue-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; +.focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; } -.hover\:border-blue-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; +.focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; } -.hover\:border-blue-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; +.focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; } -.hover\:border-indigo-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; +.focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; } -.hover\:border-indigo-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; +.focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; } -.hover\:border-indigo-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; +.focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; } -.hover\:border-indigo-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; +.focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; } -.hover\:border-indigo-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; +.focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; } -.hover\:border-indigo-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; +.focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; } -.hover\:border-indigo-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; +.focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; } -.hover\:border-indigo-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; +.focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; } -.hover\:border-indigo-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; +.focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; } -.hover\:border-indigo-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; +.focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; } -.hover\:border-purple-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; +.focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; } -.hover\:border-purple-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; +.focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; } -.hover\:border-purple-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; +.focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; } -.hover\:border-purple-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; +.focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; } -.hover\:border-purple-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; +.focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; } -.hover\:border-purple-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; +.focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; } -.hover\:border-purple-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; +.focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; } -.hover\:border-purple-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; +.focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; } -.hover\:border-purple-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; +.focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; } -.hover\:border-purple-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; +.focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; } -.hover\:border-pink-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; +.focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; } -.hover\:border-pink-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; +.focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; } -.hover\:border-pink-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; +.focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; } -.hover\:border-pink-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; +.focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; } -.hover\:border-pink-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; +.focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; } -.hover\:border-pink-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; +.focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; } -.hover\:border-pink-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; +.focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; } -.hover\:border-pink-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; +.focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; } -.hover\:border-pink-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; +.focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; } -.hover\:border-pink-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; +.focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; } -.focus\:border-transparent:focus { - border-color: transparent !important; +.focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; } -.focus\:border-current:focus { - border-color: currentColor !important; +.focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; } -.focus\:border-black:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; +.focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; } -.focus\:border-white:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; +.focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; } -.focus\:border-gray-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; +.focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; } -.focus\:border-gray-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; +.focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; } -.focus\:border-gray-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; +.focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; } -.focus\:border-gray-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; +.focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; } -.focus\:border-gray-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; +.focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; } -.focus\:border-gray-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; +.focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; } -.focus\:border-gray-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; +.focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; } -.focus\:border-gray-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; +.focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; } -.focus\:border-gray-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; +.focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; } -.focus\:border-gray-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; +.focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; } -.focus\:border-red-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; +.focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; } -.focus\:border-red-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; +.focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; } -.focus\:border-red-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; +.focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; } -.focus\:border-red-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; +.focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; } -.focus\:border-red-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; +.focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; } -.focus\:border-red-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; +.focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; } -.focus\:border-red-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; +.focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; } -.focus\:border-red-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; +.focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; } -.focus\:border-red-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; +.focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; } -.focus\:border-red-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; +.focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; } -.focus\:border-yellow-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; +.focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; } -.focus\:border-yellow-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; +.focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; } -.focus\:border-yellow-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; +.focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; } -.focus\:border-yellow-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; +.focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; } -.focus\:border-yellow-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; +.focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; } -.focus\:border-yellow-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; +.focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; } -.focus\:border-yellow-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; +.focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; } -.focus\:border-yellow-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; +.focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; } -.focus\:border-yellow-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; +.focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; } -.focus\:border-yellow-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; +.focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; } -.focus\:border-green-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; +.focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; } -.focus\:border-green-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; +.focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; } -.focus\:border-green-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; +.focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; } -.focus\:border-green-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; +.focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; } -.focus\:border-green-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; +.focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; } -.focus\:border-green-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; +.focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; } -.focus\:border-green-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; +.focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; } -.focus\:border-green-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; +.focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; } -.focus\:border-green-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; +.focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; } -.focus\:border-green-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; +.focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; } -.focus\:border-blue-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; +.focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; } -.focus\:border-blue-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; +.focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; } -.focus\:border-blue-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; +.focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; } -.focus\:border-blue-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; +.focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; } -.focus\:border-blue-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; +.focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; } -.focus\:border-blue-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; +.focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; } -.focus\:border-blue-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; +.focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; } -.focus\:border-blue-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; +.focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; } -.focus\:border-blue-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; +.focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; } -.focus\:border-blue-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; +.focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; } -.focus\:border-indigo-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; +.focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; } -.focus\:border-indigo-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; +.focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; } -.focus\:border-indigo-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; +.focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; } -.focus\:border-indigo-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; +.focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; } -.focus\:border-indigo-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; +.focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; } -.focus\:border-indigo-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; +.focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; } -.focus\:border-indigo-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; +.focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; } -.focus\:border-indigo-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; +.focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; } -.focus\:border-indigo-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; +.focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; } -.focus\:border-indigo-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; +.focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; } -.focus\:border-purple-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; +.rotate-0 { + --tw-rotate: 0deg !important; } -.focus\:border-purple-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; +.rotate-1 { + --tw-rotate: 1deg !important; } -.focus\:border-purple-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; +.rotate-2 { + --tw-rotate: 2deg !important; } -.focus\:border-purple-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; +.rotate-3 { + --tw-rotate: 3deg !important; } -.focus\:border-purple-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; +.rotate-6 { + --tw-rotate: 6deg !important; } -.focus\:border-purple-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; +.rotate-12 { + --tw-rotate: 12deg !important; } -.focus\:border-purple-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; +.rotate-45 { + --tw-rotate: 45deg !important; } -.focus\:border-purple-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; +.rotate-90 { + --tw-rotate: 90deg !important; } -.focus\:border-purple-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; +.rotate-180 { + --tw-rotate: 180deg !important; } -.focus\:border-purple-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; +.-rotate-180 { + --tw-rotate: -180deg !important; } -.focus\:border-pink-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; +.-rotate-90 { + --tw-rotate: -90deg !important; } -.focus\:border-pink-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; +.-rotate-45 { + --tw-rotate: -45deg !important; } -.focus\:border-pink-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; +.-rotate-12 { + --tw-rotate: -12deg !important; } -.focus\:border-pink-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; +.-rotate-6 { + --tw-rotate: -6deg !important; } -.focus\:border-pink-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; +.-rotate-3 { + --tw-rotate: -3deg !important; } -.focus\:border-pink-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; +.-rotate-2 { + --tw-rotate: -2deg !important; } -.focus\:border-pink-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; +.-rotate-1 { + --tw-rotate: -1deg !important; } -.focus\:border-pink-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; +.hover\:rotate-0:hover { + --tw-rotate: 0deg !important; } -.focus\:border-pink-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; +.hover\:rotate-1:hover { + --tw-rotate: 1deg !important; } -.focus\:border-pink-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; +.hover\:rotate-2:hover { + --tw-rotate: 2deg !important; } -.border-opacity-0 { - --tw-border-opacity: 0 !important; +.hover\:rotate-3:hover { + --tw-rotate: 3deg !important; } -.border-opacity-5 { - --tw-border-opacity: 0.05 !important; +.hover\:rotate-6:hover { + --tw-rotate: 6deg !important; } -.border-opacity-10 { - --tw-border-opacity: 0.1 !important; +.hover\:rotate-12:hover { + --tw-rotate: 12deg !important; } -.border-opacity-20 { - --tw-border-opacity: 0.2 !important; +.hover\:rotate-45:hover { + --tw-rotate: 45deg !important; } -.border-opacity-25 { - --tw-border-opacity: 0.25 !important; +.hover\:rotate-90:hover { + --tw-rotate: 90deg !important; } -.border-opacity-30 { - --tw-border-opacity: 0.3 !important; +.hover\:rotate-180:hover { + --tw-rotate: 180deg !important; } -.border-opacity-40 { - --tw-border-opacity: 0.4 !important; +.hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; } -.border-opacity-50 { - --tw-border-opacity: 0.5 !important; +.hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; } -.border-opacity-60 { - --tw-border-opacity: 0.6 !important; +.hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; } -.border-opacity-70 { - --tw-border-opacity: 0.7 !important; +.hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; } -.border-opacity-75 { - --tw-border-opacity: 0.75 !important; +.hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; } -.border-opacity-80 { - --tw-border-opacity: 0.8 !important; +.hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; } -.border-opacity-90 { - --tw-border-opacity: 0.9 !important; +.hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; } -.border-opacity-95 { - --tw-border-opacity: 0.95 !important; +.hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; } -.border-opacity-100 { - --tw-border-opacity: 1 !important; +.focus\:rotate-0:focus { + --tw-rotate: 0deg !important; } -.group:hover .group-hover\:border-opacity-0 { - --tw-border-opacity: 0 !important; +.focus\:rotate-1:focus { + --tw-rotate: 1deg !important; } -.group:hover .group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05 !important; +.focus\:rotate-2:focus { + --tw-rotate: 2deg !important; } -.group:hover .group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1 !important; +.focus\:rotate-3:focus { + --tw-rotate: 3deg !important; } -.group:hover .group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2 !important; +.focus\:rotate-6:focus { + --tw-rotate: 6deg !important; } -.group:hover .group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25 !important; +.focus\:rotate-12:focus { + --tw-rotate: 12deg !important; } -.group:hover .group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3 !important; +.focus\:rotate-45:focus { + --tw-rotate: 45deg !important; } -.group:hover .group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4 !important; +.focus\:rotate-90:focus { + --tw-rotate: 90deg !important; } -.group:hover .group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5 !important; +.focus\:rotate-180:focus { + --tw-rotate: 180deg !important; } -.group:hover .group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6 !important; +.focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; } -.group:hover .group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7 !important; +.focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; } -.group:hover .group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75 !important; +.focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; } -.group:hover .group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8 !important; +.focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; } -.group:hover .group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9 !important; +.focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; } -.group:hover .group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95 !important; +.focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; } -.group:hover .group-hover\:border-opacity-100 { - --tw-border-opacity: 1 !important; +.focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; } -.focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0 !important; +.focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; } -.focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05 !important; +.skew-x-0 { + --tw-skew-x: 0deg !important; } -.focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1 !important; +.skew-x-1 { + --tw-skew-x: 1deg !important; } -.focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2 !important; +.skew-x-2 { + --tw-skew-x: 2deg !important; } -.focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25 !important; +.skew-x-3 { + --tw-skew-x: 3deg !important; } -.focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3 !important; +.skew-x-6 { + --tw-skew-x: 6deg !important; } -.focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4 !important; +.skew-x-12 { + --tw-skew-x: 12deg !important; } -.focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5 !important; +.-skew-x-12 { + --tw-skew-x: -12deg !important; } -.focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6 !important; +.-skew-x-6 { + --tw-skew-x: -6deg !important; } -.focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7 !important; +.-skew-x-3 { + --tw-skew-x: -3deg !important; } -.focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75 !important; +.-skew-x-2 { + --tw-skew-x: -2deg !important; } -.focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8 !important; +.-skew-x-1 { + --tw-skew-x: -1deg !important; } -.focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9 !important; +.skew-y-0 { + --tw-skew-y: 0deg !important; } -.focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95 !important; +.skew-y-1 { + --tw-skew-y: 1deg !important; } -.focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1 !important; +.skew-y-2 { + --tw-skew-y: 2deg !important; } -.hover\:border-opacity-0:hover { - --tw-border-opacity: 0 !important; +.skew-y-3 { + --tw-skew-y: 3deg !important; } -.hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05 !important; +.skew-y-6 { + --tw-skew-y: 6deg !important; } -.hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1 !important; +.skew-y-12 { + --tw-skew-y: 12deg !important; } -.hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2 !important; +.-skew-y-12 { + --tw-skew-y: -12deg !important; } -.hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25 !important; +.-skew-y-6 { + --tw-skew-y: -6deg !important; } -.hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3 !important; +.-skew-y-3 { + --tw-skew-y: -3deg !important; } -.hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4 !important; +.-skew-y-2 { + --tw-skew-y: -2deg !important; } -.hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5 !important; +.-skew-y-1 { + --tw-skew-y: -1deg !important; } -.hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6 !important; +.hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; } -.hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7 !important; +.hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; } -.hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75 !important; +.hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; } -.hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8 !important; +.hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; } -.hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9 !important; +.hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; } -.hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95 !important; +.hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; } -.hover\:border-opacity-100:hover { - --tw-border-opacity: 1 !important; +.hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; } -.focus\:border-opacity-0:focus { - --tw-border-opacity: 0 !important; +.hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; } -.focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05 !important; +.hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; } -.focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1 !important; +.hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; } -.focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2 !important; +.hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; } -.focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25 !important; +.hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; } -.focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3 !important; +.hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; } -.focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4 !important; +.hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; } -.focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5 !important; +.hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; } -.focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6 !important; +.hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; } -.focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7 !important; +.hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; } -.focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75 !important; +.hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; } -.focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8 !important; +.hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; } -.focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9 !important; +.hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; } -.focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95 !important; +.hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; } -.focus\:border-opacity-100:focus { - --tw-border-opacity: 1 !important; +.hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; } -.rounded-none { - border-radius: 0px !important; +.focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; } -.rounded-sm { - border-radius: 0.125rem !important; +.focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; } -.rounded { - border-radius: 0.25rem !important; +.focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; } -.rounded-md { - border-radius: 0.375rem !important; +.focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; } -.rounded-lg { - border-radius: 0.5rem !important; +.focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; } -.rounded-xl { - border-radius: 0.75rem !important; +.focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; } -.rounded-2xl { - border-radius: 1rem !important; +.focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; } -.rounded-3xl { - border-radius: 1.5rem !important; +.focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; } -.rounded-full { - border-radius: 9999px !important; +.focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; } -.rounded-t-none { - border-top-left-radius: 0px !important; - border-top-right-radius: 0px !important; +.focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; } -.rounded-r-none { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; +.focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; } -.rounded-b-none { - border-bottom-right-radius: 0px !important; - border-bottom-left-radius: 0px !important; +.focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; } -.rounded-l-none { - border-top-left-radius: 0px !important; - border-bottom-left-radius: 0px !important; +.focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; } -.rounded-t-sm { - border-top-left-radius: 0.125rem !important; - border-top-right-radius: 0.125rem !important; +.focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; } -.rounded-r-sm { - border-top-right-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; +.focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; } -.rounded-b-sm { - border-bottom-right-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; +.focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; } -.rounded-l-sm { - border-top-left-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; +.focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; } -.rounded-t { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; +.focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; } -.rounded-r { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; +.focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; } -.rounded-b { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; +.focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; } -.rounded-l { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; +.focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; } -.rounded-t-md { - border-top-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem !important; +.focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; } -.rounded-r-md { - border-top-right-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; +.scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } -.rounded-b-md { - border-bottom-right-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; +.scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } -.rounded-l-md { - border-top-left-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; +.scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } -.rounded-t-lg { - border-top-left-radius: 0.5rem !important; - border-top-right-radius: 0.5rem !important; +.scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } -.rounded-r-lg { - border-top-right-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; +.scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } -.rounded-b-lg { - border-bottom-right-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; +.scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } -.rounded-l-lg { - border-top-left-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; +.scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } -.rounded-t-xl { - border-top-left-radius: 0.75rem !important; - border-top-right-radius: 0.75rem !important; +.scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } -.rounded-r-xl { - border-top-right-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; +.scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } -.rounded-b-xl { - border-bottom-right-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; +.scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } -.rounded-l-xl { - border-top-left-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; +.scale-x-0 { + --tw-scale-x: 0 !important; } -.rounded-t-2xl { - border-top-left-radius: 1rem !important; - border-top-right-radius: 1rem !important; +.scale-x-50 { + --tw-scale-x: .5 !important; } -.rounded-r-2xl { - border-top-right-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; +.scale-x-75 { + --tw-scale-x: .75 !important; } -.rounded-b-2xl { - border-bottom-right-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; +.scale-x-90 { + --tw-scale-x: .9 !important; } -.rounded-l-2xl { - border-top-left-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; +.scale-x-95 { + --tw-scale-x: .95 !important; } -.rounded-t-3xl { - border-top-left-radius: 1.5rem !important; - border-top-right-radius: 1.5rem !important; +.scale-x-100 { + --tw-scale-x: 1 !important; } -.rounded-r-3xl { - border-top-right-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; +.scale-x-105 { + --tw-scale-x: 1.05 !important; } -.rounded-b-3xl { - border-bottom-right-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; +.scale-x-110 { + --tw-scale-x: 1.1 !important; } -.rounded-l-3xl { - border-top-left-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; +.scale-x-125 { + --tw-scale-x: 1.25 !important; } -.rounded-t-full { - border-top-left-radius: 9999px !important; - border-top-right-radius: 9999px !important; +.scale-x-150 { + --tw-scale-x: 1.5 !important; } -.rounded-r-full { - border-top-right-radius: 9999px !important; - border-bottom-right-radius: 9999px !important; +.scale-y-0 { + --tw-scale-y: 0 !important; } -.rounded-b-full { - border-bottom-right-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; +.scale-y-50 { + --tw-scale-y: .5 !important; } -.rounded-l-full { - border-top-left-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; +.scale-y-75 { + --tw-scale-y: .75 !important; } -.rounded-tl-none { - border-top-left-radius: 0px !important; +.scale-y-90 { + --tw-scale-y: .9 !important; } -.rounded-tr-none { - border-top-right-radius: 0px !important; +.scale-y-95 { + --tw-scale-y: .95 !important; } -.rounded-br-none { - border-bottom-right-radius: 0px !important; +.scale-y-100 { + --tw-scale-y: 1 !important; } -.rounded-bl-none { - border-bottom-left-radius: 0px !important; +.scale-y-105 { + --tw-scale-y: 1.05 !important; } -.rounded-tl-sm { - border-top-left-radius: 0.125rem !important; +.scale-y-110 { + --tw-scale-y: 1.1 !important; } -.rounded-tr-sm { - border-top-right-radius: 0.125rem !important; +.scale-y-125 { + --tw-scale-y: 1.25 !important; } -.rounded-br-sm { - border-bottom-right-radius: 0.125rem !important; +.scale-y-150 { + --tw-scale-y: 1.5 !important; } -.rounded-bl-sm { - border-bottom-left-radius: 0.125rem !important; +.hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } -.rounded-tl { - border-top-left-radius: 0.25rem !important; +.hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } -.rounded-tr { - border-top-right-radius: 0.25rem !important; +.hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } -.rounded-br { - border-bottom-right-radius: 0.25rem !important; +.hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } -.rounded-bl { - border-bottom-left-radius: 0.25rem !important; +.hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } -.rounded-tl-md { - border-top-left-radius: 0.375rem !important; +.hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } -.rounded-tr-md { - border-top-right-radius: 0.375rem !important; +.hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } -.rounded-br-md { - border-bottom-right-radius: 0.375rem !important; +.hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } -.rounded-bl-md { - border-bottom-left-radius: 0.375rem !important; +.hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } -.rounded-tl-lg { - border-top-left-radius: 0.5rem !important; +.hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } -.rounded-tr-lg { - border-top-right-radius: 0.5rem !important; +.hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; } -.rounded-br-lg { - border-bottom-right-radius: 0.5rem !important; +.hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; } -.rounded-bl-lg { - border-bottom-left-radius: 0.5rem !important; +.hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; } -.rounded-tl-xl { - border-top-left-radius: 0.75rem !important; +.hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; } -.rounded-tr-xl { - border-top-right-radius: 0.75rem !important; +.hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; } -.rounded-br-xl { - border-bottom-right-radius: 0.75rem !important; +.hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; } -.rounded-bl-xl { - border-bottom-left-radius: 0.75rem !important; +.hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; } -.rounded-tl-2xl { - border-top-left-radius: 1rem !important; +.hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; } -.rounded-tr-2xl { - border-top-right-radius: 1rem !important; +.hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; } -.rounded-br-2xl { - border-bottom-right-radius: 1rem !important; +.hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; } -.rounded-bl-2xl { - border-bottom-left-radius: 1rem !important; +.hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; } -.rounded-tl-3xl { - border-top-left-radius: 1.5rem !important; +.hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; } -.rounded-tr-3xl { - border-top-right-radius: 1.5rem !important; +.hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; } -.rounded-br-3xl { - border-bottom-right-radius: 1.5rem !important; +.hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; } -.rounded-bl-3xl { - border-bottom-left-radius: 1.5rem !important; +.hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; } -.rounded-tl-full { - border-top-left-radius: 9999px !important; +.hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; } -.rounded-tr-full { - border-top-right-radius: 9999px !important; +.hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; } -.rounded-br-full { - border-bottom-right-radius: 9999px !important; +.hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; } -.rounded-bl-full { - border-bottom-left-radius: 9999px !important; +.hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; } -.border-solid { - border-style: solid !important; +.hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; } -.border-dashed { - border-style: dashed !important; +.focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } -.border-dotted { - border-style: dotted !important; +.focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } -.border-double { - border-style: double !important; +.focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } -.border-none { - border-style: none !important; +.focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } -.border-0 { - border-width: 0px !important; +.focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } -.border-2 { - border-width: 2px !important; +.focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } -.border-4 { - border-width: 4px !important; +.focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } -.border-8 { - border-width: 8px !important; +.focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } -.border { - border-width: 1px !important; +.focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } -.border-t-0 { - border-top-width: 0px !important; +.focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } -.border-r-0 { - border-right-width: 0px !important; +.focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; } -.border-b-0 { - border-bottom-width: 0px !important; +.focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; } -.border-l-0 { - border-left-width: 0px !important; +.focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; } -.border-t-2 { - border-top-width: 2px !important; +.focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; } -.border-r-2 { - border-right-width: 2px !important; +.focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; } -.border-b-2 { - border-bottom-width: 2px !important; +.focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; } -.border-l-2 { - border-left-width: 2px !important; +.focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; } -.border-t-4 { - border-top-width: 4px !important; +.focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; } -.border-r-4 { - border-right-width: 4px !important; +.focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; } -.border-b-4 { - border-bottom-width: 4px !important; +.focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; } -.border-l-4 { - border-left-width: 4px !important; +.focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; } -.border-t-8 { - border-top-width: 8px !important; +.focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; } -.border-r-8 { - border-right-width: 8px !important; +.focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; } -.border-b-8 { - border-bottom-width: 8px !important; +.focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; } -.border-l-8 { - border-left-width: 8px !important; +.focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; } -.border-t { - border-top-width: 1px !important; +.focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; } -.border-r { - border-right-width: 1px !important; +.focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; } -.border-b { - border-bottom-width: 1px !important; +.focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; } -.border-l { - border-left-width: 1px !important; +.focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; } -.decoration-slice { - box-decoration-break: slice !important; +.focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; } -.decoration-clone { - box-decoration-break: clone !important; +@keyframes spin { + to { + transform: rotate(360deg); + } } -.box-border { - box-sizing: border-box !important; +@keyframes ping { + 75%, 100% { + transform: scale(2); + opacity: 0; + } } -.box-content { - box-sizing: content-box !important; +@keyframes pulse { + 50% { + opacity: .5; + } +} + +@keyframes bounce { + 0%, 100% { + transform: translateY(-25%); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50% { + transform: none; + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} + +.animate-none { + animation: none !important; +} + +.animate-spin { + animation: spin 1s linear infinite !important; +} + +.animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; +} + +.animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; +} + +.animate-bounce { + animation: bounce 1s infinite !important; } .cursor-auto { @@ -10800,88 +9956,188 @@ video { cursor: not-allowed !important; } -.block { - display: block !important; +.select-none { + user-select: none !important; } -.inline-block { - display: inline-block !important; +.select-text { + user-select: text !important; } -.inline { - display: inline !important; +.select-all { + user-select: all !important; } -.flex { - display: flex !important; +.select-auto { + user-select: auto !important; } -.inline-flex { - display: inline-flex !important; +.resize-none { + resize: none !important; } -.table { - display: table !important; +.resize-y { + resize: vertical !important; } -.inline-table { - display: inline-table !important; +.resize-x { + resize: horizontal !important; } -.table-caption { - display: table-caption !important; +.resize { + resize: both !important; } -.table-cell { - display: table-cell !important; +.list-inside { + list-style-position: inside !important; } -.table-column { - display: table-column !important; +.list-outside { + list-style-position: outside !important; } -.table-column-group { - display: table-column-group !important; +.list-none { + list-style-type: none !important; } -.table-footer-group { - display: table-footer-group !important; +.list-disc { + list-style-type: disc !important; } -.table-header-group { - display: table-header-group !important; +.list-decimal { + list-style-type: decimal !important; } -.table-row-group { - display: table-row-group !important; +.appearance-none { + appearance: none !important; } -.table-row { - display: table-row !important; +.auto-cols-auto { + grid-auto-columns: auto !important; } -.flow-root { - display: flow-root !important; +.auto-cols-min { + grid-auto-columns: min-content !important; } -.grid { - display: grid !important; +.auto-cols-max { + grid-auto-columns: max-content !important; } -.inline-grid { - display: inline-grid !important; +.auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; } -.contents { - display: contents !important; +.grid-flow-row { + grid-auto-flow: row !important; } -.list-item { - display: list-item !important; +.grid-flow-col { + grid-auto-flow: column !important; } -.hidden { - display: none !important; +.grid-flow-row-dense { + grid-auto-flow: row dense !important; +} + +.grid-flow-col-dense { + grid-auto-flow: column dense !important; +} + +.auto-rows-auto { + grid-auto-rows: auto !important; +} + +.auto-rows-min { + grid-auto-rows: min-content !important; +} + +.auto-rows-max { + grid-auto-rows: max-content !important; +} + +.auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; +} + +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; +} + +.grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; +} + +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; +} + +.grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; +} + +.grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; +} + +.grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; +} + +.grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; +} + +.grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; +} + +.grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; +} + +.grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; +} + +.grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; +} + +.grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; +} + +.grid-cols-none { + grid-template-columns: none !important; +} + +.grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; +} + +.grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; +} + +.grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; +} + +.grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; +} + +.grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; +} + +.grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; +} + +.grid-rows-none { + grid-template-rows: none !important; } .flex-row { @@ -10912,22 +10168,6 @@ video { flex-wrap: nowrap !important; } -.place-items-start { - place-items: start !important; -} - -.place-items-end { - place-items: end !important; -} - -.place-items-center { - place-items: center !important; -} - -.place-items-stretch { - place-items: stretch !important; -} - .place-content-center { place-content: center !important; } @@ -10956,44 +10196,20 @@ video { place-content: stretch !important; } -.place-self-auto { - place-self: auto !important; -} - -.place-self-start { - place-self: start !important; -} - -.place-self-end { - place-self: end !important; -} - -.place-self-center { - place-self: center !important; -} - -.place-self-stretch { - place-self: stretch !important; -} - -.items-start { - align-items: flex-start !important; -} - -.items-end { - align-items: flex-end !important; +.place-items-start { + place-items: start !important; } -.items-center { - align-items: center !important; +.place-items-end { + place-items: end !important; } -.items-baseline { - align-items: baseline !important; +.place-items-center { + place-items: center !important; } -.items-stretch { - align-items: stretch !important; +.place-items-stretch { + place-items: stretch !important; } .content-center { @@ -11020,40 +10236,24 @@ video { align-content: space-evenly !important; } -.self-auto { - align-self: auto !important; -} - -.self-start { - align-self: flex-start !important; -} - -.self-end { - align-self: flex-end !important; -} - -.self-center { - align-self: center !important; -} - -.self-stretch { - align-self: stretch !important; +.items-start { + align-items: flex-start !important; } -.justify-items-start { - justify-items: start !important; +.items-end { + align-items: flex-end !important; } -.justify-items-end { - justify-items: end !important; +.items-center { + align-items: center !important; } -.justify-items-center { - justify-items: center !important; +.items-baseline { + align-items: baseline !important; } -.justify-items-stretch { - justify-items: stretch !important; +.items-stretch { + align-items: stretch !important; } .justify-start { @@ -11080,11142 +10280,11863 @@ video { justify-content: space-evenly !important; } -.justify-self-auto { - justify-self: auto !important; +.justify-items-start { + justify-items: start !important; } -.justify-self-start { - justify-self: start !important; +.justify-items-end { + justify-items: end !important; } -.justify-self-end { - justify-self: end !important; +.justify-items-center { + justify-items: center !important; } -.justify-self-center { - justify-self: center !important; +.justify-items-stretch { + justify-items: stretch !important; } -.justify-self-stretch { - justify-self: stretch !important; +.gap-0 { + gap: 0px !important; } -.flex-1 { - flex: 1 1 0% !important; +.gap-1 { + gap: 0.25rem !important; } -.flex-auto { - flex: 1 1 auto !important; +.gap-2 { + gap: 0.5rem !important; } -.flex-initial { - flex: 0 1 auto !important; +.gap-3 { + gap: 0.75rem !important; } -.flex-none { - flex: none !important; +.gap-4 { + gap: 1rem !important; } -.flex-grow-0 { - flex-grow: 0 !important; +.gap-5 { + gap: 1.25rem !important; } -.flex-grow { - flex-grow: 1 !important; +.gap-6 { + gap: 1.5rem !important; } -.flex-shrink-0 { - flex-shrink: 0 !important; +.gap-7 { + gap: 1.75rem !important; } -.flex-shrink { - flex-shrink: 1 !important; +.gap-8 { + gap: 2rem !important; } -.order-1 { - order: 1 !important; +.gap-9 { + gap: 2.25rem !important; } -.order-2 { - order: 2 !important; +.gap-10 { + gap: 2.5rem !important; } -.order-3 { - order: 3 !important; +.gap-11 { + gap: 2.75rem !important; } -.order-4 { - order: 4 !important; +.gap-12 { + gap: 3rem !important; } -.order-5 { - order: 5 !important; +.gap-14 { + gap: 3.5rem !important; } -.order-6 { - order: 6 !important; +.gap-16 { + gap: 4rem !important; } -.order-7 { - order: 7 !important; +.gap-20 { + gap: 5rem !important; } -.order-8 { - order: 8 !important; +.gap-24 { + gap: 6rem !important; } -.order-9 { - order: 9 !important; +.gap-28 { + gap: 7rem !important; } -.order-10 { - order: 10 !important; +.gap-32 { + gap: 8rem !important; } -.order-11 { - order: 11 !important; +.gap-36 { + gap: 9rem !important; } -.order-12 { - order: 12 !important; +.gap-40 { + gap: 10rem !important; } -.order-first { - order: -9999 !important; +.gap-44 { + gap: 11rem !important; } -.order-last { - order: 9999 !important; +.gap-48 { + gap: 12rem !important; } -.order-none { - order: 0 !important; +.gap-52 { + gap: 13rem !important; } -.float-right { - float: right !important; +.gap-56 { + gap: 14rem !important; } -.float-left { - float: left !important; +.gap-60 { + gap: 15rem !important; } -.float-none { - float: none !important; +.gap-64 { + gap: 16rem !important; } -.clear-left { - clear: left !important; +.gap-72 { + gap: 18rem !important; } -.clear-right { - clear: right !important; +.gap-80 { + gap: 20rem !important; } -.clear-both { - clear: both !important; +.gap-96 { + gap: 24rem !important; } -.clear-none { - clear: none !important; +.gap-px { + gap: 1px !important; } -.font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; +.gap-0\.5 { + gap: 0.125rem !important; } -.font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; +.gap-1\.5 { + gap: 0.375rem !important; } -.font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; +.gap-2\.5 { + gap: 0.625rem !important; } -.font-thin { - font-weight: 100 !important; +.gap-3\.5 { + gap: 0.875rem !important; } -.font-extralight { - font-weight: 200 !important; +.gap-x-0 { + column-gap: 0px !important; } -.font-light { - font-weight: 300 !important; +.gap-x-1 { + column-gap: 0.25rem !important; } -.font-normal { - font-weight: 400 !important; +.gap-x-2 { + column-gap: 0.5rem !important; } -.font-medium { - font-weight: 500 !important; +.gap-x-3 { + column-gap: 0.75rem !important; } -.font-semibold { - font-weight: 600 !important; +.gap-x-4 { + column-gap: 1rem !important; } -.font-bold { - font-weight: 700 !important; +.gap-x-5 { + column-gap: 1.25rem !important; } -.font-extrabold { - font-weight: 800 !important; +.gap-x-6 { + column-gap: 1.5rem !important; } -.font-black { - font-weight: 900 !important; +.gap-x-7 { + column-gap: 1.75rem !important; } -.h-0 { - height: 0px !important; +.gap-x-8 { + column-gap: 2rem !important; } -.h-1 { - height: 0.25rem !important; +.gap-x-9 { + column-gap: 2.25rem !important; } -.h-2 { - height: 0.5rem !important; +.gap-x-10 { + column-gap: 2.5rem !important; } -.h-3 { - height: 0.75rem !important; +.gap-x-11 { + column-gap: 2.75rem !important; } -.h-4 { - height: 1rem !important; +.gap-x-12 { + column-gap: 3rem !important; } -.h-5 { - height: 1.25rem !important; +.gap-x-14 { + column-gap: 3.5rem !important; } -.h-6 { - height: 1.5rem !important; +.gap-x-16 { + column-gap: 4rem !important; } -.h-7 { - height: 1.75rem !important; +.gap-x-20 { + column-gap: 5rem !important; } -.h-8 { - height: 2rem !important; +.gap-x-24 { + column-gap: 6rem !important; } -.h-9 { - height: 2.25rem !important; +.gap-x-28 { + column-gap: 7rem !important; } -.h-10 { - height: 2.5rem !important; +.gap-x-32 { + column-gap: 8rem !important; } -.h-11 { - height: 2.75rem !important; +.gap-x-36 { + column-gap: 9rem !important; } -.h-12 { - height: 3rem !important; +.gap-x-40 { + column-gap: 10rem !important; } -.h-14 { - height: 3.5rem !important; +.gap-x-44 { + column-gap: 11rem !important; } -.h-16 { - height: 4rem !important; +.gap-x-48 { + column-gap: 12rem !important; } -.h-20 { - height: 5rem !important; +.gap-x-52 { + column-gap: 13rem !important; } -.h-24 { - height: 6rem !important; +.gap-x-56 { + column-gap: 14rem !important; } -.h-28 { - height: 7rem !important; +.gap-x-60 { + column-gap: 15rem !important; } -.h-32 { - height: 8rem !important; +.gap-x-64 { + column-gap: 16rem !important; } -.h-36 { - height: 9rem !important; +.gap-x-72 { + column-gap: 18rem !important; } -.h-40 { - height: 10rem !important; +.gap-x-80 { + column-gap: 20rem !important; } -.h-44 { - height: 11rem !important; +.gap-x-96 { + column-gap: 24rem !important; } -.h-48 { - height: 12rem !important; +.gap-x-px { + column-gap: 1px !important; } -.h-52 { - height: 13rem !important; +.gap-x-0\.5 { + column-gap: 0.125rem !important; } -.h-56 { - height: 14rem !important; +.gap-x-1\.5 { + column-gap: 0.375rem !important; } -.h-60 { - height: 15rem !important; +.gap-x-2\.5 { + column-gap: 0.625rem !important; } -.h-64 { - height: 16rem !important; +.gap-x-3\.5 { + column-gap: 0.875rem !important; } -.h-72 { - height: 18rem !important; +.gap-y-0 { + row-gap: 0px !important; } -.h-80 { - height: 20rem !important; +.gap-y-1 { + row-gap: 0.25rem !important; } -.h-96 { - height: 24rem !important; +.gap-y-2 { + row-gap: 0.5rem !important; } -.h-auto { - height: auto !important; +.gap-y-3 { + row-gap: 0.75rem !important; } -.h-px { - height: 1px !important; +.gap-y-4 { + row-gap: 1rem !important; } -.h-0\.5 { - height: 0.125rem !important; +.gap-y-5 { + row-gap: 1.25rem !important; } -.h-1\.5 { - height: 0.375rem !important; +.gap-y-6 { + row-gap: 1.5rem !important; } -.h-2\.5 { - height: 0.625rem !important; +.gap-y-7 { + row-gap: 1.75rem !important; } -.h-3\.5 { - height: 0.875rem !important; +.gap-y-8 { + row-gap: 2rem !important; } -.h-1\/2 { - height: 50% !important; +.gap-y-9 { + row-gap: 2.25rem !important; } -.h-1\/3 { - height: 33.333333% !important; +.gap-y-10 { + row-gap: 2.5rem !important; } -.h-2\/3 { - height: 66.666667% !important; +.gap-y-11 { + row-gap: 2.75rem !important; } -.h-1\/4 { - height: 25% !important; +.gap-y-12 { + row-gap: 3rem !important; } -.h-2\/4 { - height: 50% !important; +.gap-y-14 { + row-gap: 3.5rem !important; } -.h-3\/4 { - height: 75% !important; +.gap-y-16 { + row-gap: 4rem !important; } -.h-1\/5 { - height: 20% !important; +.gap-y-20 { + row-gap: 5rem !important; } -.h-2\/5 { - height: 40% !important; +.gap-y-24 { + row-gap: 6rem !important; } -.h-3\/5 { - height: 60% !important; +.gap-y-28 { + row-gap: 7rem !important; } -.h-4\/5 { - height: 80% !important; +.gap-y-32 { + row-gap: 8rem !important; } -.h-1\/6 { - height: 16.666667% !important; +.gap-y-36 { + row-gap: 9rem !important; } -.h-2\/6 { - height: 33.333333% !important; +.gap-y-40 { + row-gap: 10rem !important; } -.h-3\/6 { - height: 50% !important; +.gap-y-44 { + row-gap: 11rem !important; } -.h-4\/6 { - height: 66.666667% !important; +.gap-y-48 { + row-gap: 12rem !important; } -.h-5\/6 { - height: 83.333333% !important; +.gap-y-52 { + row-gap: 13rem !important; } -.h-full { - height: 100% !important; +.gap-y-56 { + row-gap: 14rem !important; } -.h-screen { - height: 100vh !important; +.gap-y-60 { + row-gap: 15rem !important; } -.text-xs { - font-size: 0.75rem !important; - line-height: 1rem !important; +.gap-y-64 { + row-gap: 16rem !important; } -.text-sm { - font-size: 0.875rem !important; - line-height: 1.25rem !important; +.gap-y-72 { + row-gap: 18rem !important; } -.text-base { - font-size: 1rem !important; - line-height: 1.5rem !important; +.gap-y-80 { + row-gap: 20rem !important; } -.text-lg { - font-size: 1.125rem !important; - line-height: 1.75rem !important; +.gap-y-96 { + row-gap: 24rem !important; } -.text-xl { - font-size: 1.25rem !important; - line-height: 1.75rem !important; +.gap-y-px { + row-gap: 1px !important; } -.text-2xl { - font-size: 1.5rem !important; - line-height: 2rem !important; +.gap-y-0\.5 { + row-gap: 0.125rem !important; } -.text-3xl { - font-size: 1.875rem !important; - line-height: 2.25rem !important; +.gap-y-1\.5 { + row-gap: 0.375rem !important; } -.text-4xl { - font-size: 2.25rem !important; - line-height: 2.5rem !important; +.gap-y-2\.5 { + row-gap: 0.625rem !important; } -.text-5xl { - font-size: 3rem !important; - line-height: 1 !important; +.gap-y-3\.5 { + row-gap: 0.875rem !important; } -.text-6xl { - font-size: 3.75rem !important; - line-height: 1 !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; } -.text-7xl { - font-size: 4.5rem !important; - line-height: 1 !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; } -.text-8xl { - font-size: 6rem !important; - line-height: 1 !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; } -.text-9xl { - font-size: 8rem !important; - line-height: 1 !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; } -.leading-3 { - line-height: .75rem !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; } -.leading-4 { - line-height: 1rem !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; } -.leading-5 { - line-height: 1.25rem !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; } -.leading-6 { - line-height: 1.5rem !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; } -.leading-7 { - line-height: 1.75rem !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; } -.leading-8 { - line-height: 2rem !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; } -.leading-9 { - line-height: 2.25rem !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; } -.leading-10 { - line-height: 2.5rem !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; } -.leading-none { - line-height: 1 !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; } -.leading-tight { - line-height: 1.25 !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; } -.leading-snug { - line-height: 1.375 !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; } -.leading-normal { - line-height: 1.5 !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; } -.leading-relaxed { - line-height: 1.625 !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; } -.leading-loose { - line-height: 2 !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; } -.list-inside { - list-style-position: inside !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; } -.list-outside { - list-style-position: outside !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; } -.list-none { - list-style-type: none !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; } -.list-disc { - list-style-type: disc !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; } -.list-decimal { - list-style-type: decimal !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; } -.m-0 { - margin: 0px !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; } -.m-1 { - margin: 0.25rem !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; } -.m-2 { - margin: 0.5rem !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; } -.m-3 { - margin: 0.75rem !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; } -.m-4 { - margin: 1rem !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; } -.m-5 { - margin: 1.25rem !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; } -.m-6 { - margin: 1.5rem !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; } -.m-7 { - margin: 1.75rem !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; } -.m-8 { - margin: 2rem !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; } -.m-9 { - margin: 2.25rem !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; } -.m-10 { - margin: 2.5rem !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; } -.m-11 { - margin: 2.75rem !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; } -.m-12 { - margin: 3rem !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; } -.m-14 { - margin: 3.5rem !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; } -.m-16 { - margin: 4rem !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; } -.m-20 { - margin: 5rem !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; } -.m-24 { - margin: 6rem !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; } -.m-28 { - margin: 7rem !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; } -.m-32 { - margin: 8rem !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; } -.m-36 { - margin: 9rem !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; } -.m-40 { - margin: 10rem !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; } -.m-44 { - margin: 11rem !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; } -.m-48 { - margin: 12rem !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; } -.m-52 { - margin: 13rem !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; } -.m-56 { - margin: 14rem !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; } -.m-60 { - margin: 15rem !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; } -.m-64 { - margin: 16rem !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; } -.m-72 { - margin: 18rem !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; } -.m-80 { - margin: 20rem !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; } -.m-96 { - margin: 24rem !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; } -.m-auto { - margin: auto !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; } -.m-px { - margin: 1px !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; } -.m-0\.5 { - margin: 0.125rem !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; } -.m-1\.5 { - margin: 0.375rem !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; } -.m-2\.5 { - margin: 0.625rem !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; } -.m-3\.5 { - margin: 0.875rem !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; } -.-m-0 { - margin: 0px !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; } -.-m-1 { - margin: -0.25rem !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; } -.-m-2 { - margin: -0.5rem !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; } -.-m-3 { - margin: -0.75rem !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; } -.-m-4 { - margin: -1rem !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; } -.-m-5 { - margin: -1.25rem !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; } -.-m-6 { - margin: -1.5rem !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; } -.-m-7 { - margin: -1.75rem !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; } -.-m-8 { - margin: -2rem !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; } -.-m-9 { - margin: -2.25rem !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; } -.-m-10 { - margin: -2.5rem !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; } -.-m-11 { - margin: -2.75rem !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; } -.-m-12 { - margin: -3rem !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; } -.-m-14 { - margin: -3.5rem !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; } -.-m-16 { - margin: -4rem !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; } -.-m-20 { - margin: -5rem !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; } -.-m-24 { - margin: -6rem !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; } -.-m-28 { - margin: -7rem !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; } -.-m-32 { - margin: -8rem !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; } -.-m-36 { - margin: -9rem !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; } -.-m-40 { - margin: -10rem !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; } -.-m-44 { - margin: -11rem !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; } -.-m-48 { - margin: -12rem !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; } -.-m-52 { - margin: -13rem !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; } -.-m-56 { - margin: -14rem !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; } -.-m-60 { - margin: -15rem !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; } -.-m-64 { - margin: -16rem !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; } -.-m-72 { - margin: -18rem !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; } -.-m-80 { - margin: -20rem !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; } -.-m-96 { - margin: -24rem !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; } -.-m-px { - margin: -1px !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; } -.-m-0\.5 { - margin: -0.125rem !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; } -.-m-1\.5 { - margin: -0.375rem !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; } -.-m-2\.5 { - margin: -0.625rem !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; } -.-m-3\.5 { - margin: -0.875rem !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; } -.my-0 { - margin-top: 0px !important; - margin-bottom: 0px !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; } -.mx-0 { - margin-left: 0px !important; - margin-right: 0px !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; } -.my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !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; } -.mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !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; } -.my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !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; } -.mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !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; } -.my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !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; } -.mx-3 { - margin-left: 0.75rem !important; - margin-right: 0.75rem !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; } -.my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !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; } -.mx-4 { - margin-left: 1rem !important; - margin-right: 1rem !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; } -.my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !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; } -.mx-5 { - margin-left: 1.25rem !important; - margin-right: 1.25rem !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; } -.my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !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; } -.mx-6 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !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; } -.my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !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; } -.mx-7 { - margin-left: 1.75rem !important; - margin-right: 1.75rem !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; } -.my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !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; } -.mx-8 { - margin-left: 2rem !important; - margin-right: 2rem !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; } -.my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !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; } -.mx-9 { - margin-left: 2.25rem !important; - margin-right: 2.25rem !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; } -.my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !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; } -.mx-10 { - margin-left: 2.5rem !important; - margin-right: 2.5rem !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; } -.my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !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; } -.mx-11 { - margin-left: 2.75rem !important; - margin-right: 2.75rem !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; } -.my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !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; } -.mx-12 { - margin-left: 3rem !important; - margin-right: 3rem !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; } -.my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !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; } -.mx-14 { - margin-left: 3.5rem !important; - margin-right: 3.5rem !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; } -.my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !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; } -.mx-16 { - margin-left: 4rem !important; - margin-right: 4rem !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; } -.my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !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; } -.mx-20 { - margin-left: 5rem !important; - margin-right: 5rem !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; } -.my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !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; } -.mx-24 { - margin-left: 6rem !important; - margin-right: 6rem !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; } -.my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !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; } -.mx-28 { - margin-left: 7rem !important; - margin-right: 7rem !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; } -.my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !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; } -.mx-32 { - margin-left: 8rem !important; - margin-right: 8rem !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; } -.my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !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; } -.mx-36 { - margin-left: 9rem !important; - margin-right: 9rem !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; } -.my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !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; } -.mx-40 { - margin-left: 10rem !important; - margin-right: 10rem !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; } -.my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !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; } -.mx-44 { - margin-left: 11rem !important; - margin-right: 11rem !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; } -.my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !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; } -.mx-48 { - margin-left: 12rem !important; - margin-right: 12rem !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; } -.my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; +.space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; } -.mx-52 { - margin-left: 13rem !important; - margin-right: 13rem !important; +.space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; } -.my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !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; } -.mx-56 { - margin-left: 14rem !important; - margin-right: 14rem !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; } -.my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !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; } -.mx-60 { - margin-left: 15rem !important; - margin-right: 15rem !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; } -.my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !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; } -.mx-64 { - margin-left: 16rem !important; - margin-right: 16rem !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; } -.my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !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; } -.mx-72 { - margin-left: 18rem !important; - margin-right: 18rem !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; } -.my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !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; } -.mx-80 { - margin-left: 20rem !important; - margin-right: 20rem !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; } -.my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; +.divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; } -.mx-96 { - margin-left: 24rem !important; - margin-right: 24rem !important; +.divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; } -.my-auto { - margin-top: auto !important; - margin-bottom: auto !important; +.divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; } -.mx-auto { - margin-left: auto !important; - margin-right: auto !important; +.divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; } -.my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; +.divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; } -.mx-px { - margin-left: 1px !important; - margin-right: 1px !important; +.divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; } -.my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; +.divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; } -.mx-0\.5 { - margin-left: 0.125rem !important; - margin-right: 0.125rem !important; +.divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; } -.my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; +.divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; } -.mx-1\.5 { - margin-left: 0.375rem !important; - margin-right: 0.375rem !important; +.divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; } -.my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; +.divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; } -.mx-2\.5 { - margin-left: 0.625rem !important; - margin-right: 0.625rem !important; +.divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; } -.my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; +.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; } -.mx-3\.5 { - margin-left: 0.875rem !important; - margin-right: 0.875rem !important; +.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; } -.-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; +.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; } -.-mx-0 { - margin-left: 0px !important; - margin-right: 0px !important; +.divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; } -.-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; +.divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; } -.-mx-1 { - margin-left: -0.25rem !important; - margin-right: -0.25rem !important; +.divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; } -.-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; +.divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; } -.-mx-2 { - margin-left: -0.5rem !important; - margin-right: -0.5rem !important; +.divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; } -.-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; +.divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; } -.-mx-3 { - margin-left: -0.75rem !important; - margin-right: -0.75rem !important; +.divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; } -.-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; +.divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; } -.-mx-4 { - margin-left: -1rem !important; - margin-right: -1rem !important; +.divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; } -.-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; +.divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; } -.-mx-5 { - margin-left: -1.25rem !important; - margin-right: -1.25rem !important; +.divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; } -.-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; +.divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; } -.-mx-6 { - margin-left: -1.5rem !important; - margin-right: -1.5rem !important; +.divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; } -.-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; +.divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; } -.-mx-7 { - margin-left: -1.75rem !important; - margin-right: -1.75rem !important; +.divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; } -.-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; +.divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; } -.-mx-8 { - margin-left: -2rem !important; - margin-right: -2rem !important; +.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; } -.-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; +.divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; } -.-mx-9 { - margin-left: -2.25rem !important; - margin-right: -2.25rem !important; +.divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; } -.-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; +.divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; } -.-mx-10 { - margin-left: -2.5rem !important; - margin-right: -2.5rem !important; +.divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; } -.-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; +.divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; } -.-mx-11 { - margin-left: -2.75rem !important; - margin-right: -2.75rem !important; +.divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; } -.-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; +.divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; } -.-mx-12 { - margin-left: -3rem !important; - margin-right: -3rem !important; +.divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; } -.-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; +.divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; } -.-mx-14 { - margin-left: -3.5rem !important; - margin-right: -3.5rem !important; +.divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; } -.-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; +.divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; } -.-mx-16 { - margin-left: -4rem !important; - margin-right: -4rem !important; +.divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; } -.-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; +.divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; } -.-mx-20 { - margin-left: -5rem !important; - margin-right: -5rem !important; +.divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; } -.-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; +.divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; } -.-mx-24 { - margin-left: -6rem !important; - margin-right: -6rem !important; +.divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; } -.-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; +.divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; } -.-mx-28 { - margin-left: -7rem !important; - margin-right: -7rem !important; +.divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; } -.-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; +.divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; } -.-mx-32 { - margin-left: -8rem !important; - margin-right: -8rem !important; +.divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; } -.-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; +.divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; } -.-mx-36 { - margin-left: -9rem !important; - margin-right: -9rem !important; +.divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; } -.-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; +.divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; } -.-mx-40 { - margin-left: -10rem !important; - margin-right: -10rem !important; +.divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; } -.-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; +.divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; } -.-mx-44 { - margin-left: -11rem !important; - margin-right: -11rem !important; +.divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; } -.-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; +.divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; } -.-mx-48 { - margin-left: -12rem !important; - margin-right: -12rem !important; +.divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; } -.-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; +.divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; } -.-mx-52 { - margin-left: -13rem !important; - margin-right: -13rem !important; +.divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; } -.-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; +.divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; } -.-mx-56 { - margin-left: -14rem !important; - margin-right: -14rem !important; +.divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; } -.-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; +.divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; } -.-mx-60 { - margin-left: -15rem !important; - margin-right: -15rem !important; +.divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; } -.-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; +.divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; } -.-mx-64 { - margin-left: -16rem !important; - margin-right: -16rem !important; +.divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; } -.-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; +.divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; } -.-mx-72 { - margin-left: -18rem !important; - margin-right: -18rem !important; +.divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; } -.-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; +.divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; } -.-mx-80 { - margin-left: -20rem !important; - margin-right: -20rem !important; +.divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; } -.-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; +.divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; } -.-mx-96 { - margin-left: -24rem !important; - margin-right: -24rem !important; +.divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; } -.-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; +.divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; } -.-mx-px { - margin-left: -1px !important; - margin-right: -1px !important; +.divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; } -.-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; +.divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; } -.-mx-0\.5 { - margin-left: -0.125rem !important; - margin-right: -0.125rem !important; +.divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; } -.-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; +.divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; } -.-mx-1\.5 { - margin-left: -0.375rem !important; - margin-right: -0.375rem !important; +.divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; } -.-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; +.divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; } -.-mx-2\.5 { - margin-left: -0.625rem !important; - margin-right: -0.625rem !important; +.divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; } -.-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; +.divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; } -.-mx-3\.5 { - margin-left: -0.875rem !important; - margin-right: -0.875rem !important; +.divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; } -.mt-0 { - margin-top: 0px !important; +.divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; } -.mr-0 { - margin-right: 0px !important; +.divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; } -.mb-0 { - margin-bottom: 0px !important; +.divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; } -.ml-0 { - margin-left: 0px !important; +.divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; } -.mt-1 { - margin-top: 0.25rem !important; +.divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; } -.mr-1 { - margin-right: 0.25rem !important; +.divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; } -.mb-1 { - margin-bottom: 0.25rem !important; +.divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; } -.ml-1 { - margin-left: 0.25rem !important; +.divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; } -.mt-2 { - margin-top: 0.5rem !important; +.divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; } -.mr-2 { - margin-right: 0.5rem !important; +.divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; } -.mb-2 { - margin-bottom: 0.5rem !important; +.divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; } -.ml-2 { - margin-left: 0.5rem !important; +.divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; } -.mt-3 { - margin-top: 0.75rem !important; +.divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; } -.mr-3 { - margin-right: 0.75rem !important; +.divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; } -.mb-3 { - margin-bottom: 0.75rem !important; +.divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; } -.ml-3 { - margin-left: 0.75rem !important; +.divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; } -.mt-4 { - margin-top: 1rem !important; +.divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; } -.mr-4 { - margin-right: 1rem !important; +.divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; } -.mb-4 { - margin-bottom: 1rem !important; +.divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; } -.ml-4 { - margin-left: 1rem !important; +.divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; } -.mt-5 { - margin-top: 1.25rem !important; +.divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; } -.mr-5 { - margin-right: 1.25rem !important; +.divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; } -.mb-5 { - margin-bottom: 1.25rem !important; +.place-self-auto { + place-self: auto !important; } -.ml-5 { - margin-left: 1.25rem !important; +.place-self-start { + place-self: start !important; } -.mt-6 { - margin-top: 1.5rem !important; +.place-self-end { + place-self: end !important; } -.mr-6 { - margin-right: 1.5rem !important; +.place-self-center { + place-self: center !important; } -.mb-6 { - margin-bottom: 1.5rem !important; +.place-self-stretch { + place-self: stretch !important; } -.ml-6 { - margin-left: 1.5rem !important; +.self-auto { + align-self: auto !important; } -.mt-7 { - margin-top: 1.75rem !important; +.self-start { + align-self: flex-start !important; } -.mr-7 { - margin-right: 1.75rem !important; +.self-end { + align-self: flex-end !important; } -.mb-7 { - margin-bottom: 1.75rem !important; +.self-center { + align-self: center !important; } -.ml-7 { - margin-left: 1.75rem !important; +.self-stretch { + align-self: stretch !important; } -.mt-8 { - margin-top: 2rem !important; +.justify-self-auto { + justify-self: auto !important; } -.mr-8 { - margin-right: 2rem !important; +.justify-self-start { + justify-self: start !important; } -.mb-8 { - margin-bottom: 2rem !important; +.justify-self-end { + justify-self: end !important; } -.ml-8 { - margin-left: 2rem !important; +.justify-self-center { + justify-self: center !important; } -.mt-9 { - margin-top: 2.25rem !important; +.justify-self-stretch { + justify-self: stretch !important; } -.mr-9 { - margin-right: 2.25rem !important; +.overflow-auto { + overflow: auto !important; } -.mb-9 { - margin-bottom: 2.25rem !important; +.overflow-hidden { + overflow: hidden !important; } -.ml-9 { - margin-left: 2.25rem !important; +.overflow-visible { + overflow: visible !important; } -.mt-10 { - margin-top: 2.5rem !important; +.overflow-scroll { + overflow: scroll !important; } -.mr-10 { - margin-right: 2.5rem !important; +.overflow-x-auto { + overflow-x: auto !important; } -.mb-10 { - margin-bottom: 2.5rem !important; +.overflow-y-auto { + overflow-y: auto !important; } -.ml-10 { - margin-left: 2.5rem !important; +.overflow-x-hidden { + overflow-x: hidden !important; } -.mt-11 { - margin-top: 2.75rem !important; +.overflow-y-hidden { + overflow-y: hidden !important; } -.mr-11 { - margin-right: 2.75rem !important; +.overflow-x-visible { + overflow-x: visible !important; } -.mb-11 { - margin-bottom: 2.75rem !important; +.overflow-y-visible { + overflow-y: visible !important; } -.ml-11 { - margin-left: 2.75rem !important; +.overflow-x-scroll { + overflow-x: scroll !important; } -.mt-12 { - margin-top: 3rem !important; +.overflow-y-scroll { + overflow-y: scroll !important; } -.mr-12 { - margin-right: 3rem !important; +.overscroll-auto { + overscroll-behavior: auto !important; } -.mb-12 { - margin-bottom: 3rem !important; +.overscroll-contain { + overscroll-behavior: contain !important; } -.ml-12 { - margin-left: 3rem !important; +.overscroll-none { + overscroll-behavior: none !important; } -.mt-14 { - margin-top: 3.5rem !important; +.overscroll-y-auto { + overscroll-behavior-y: auto !important; } -.mr-14 { - margin-right: 3.5rem !important; +.overscroll-y-contain { + overscroll-behavior-y: contain !important; } -.mb-14 { - margin-bottom: 3.5rem !important; +.overscroll-y-none { + overscroll-behavior-y: none !important; } -.ml-14 { - margin-left: 3.5rem !important; +.overscroll-x-auto { + overscroll-behavior-x: auto !important; } -.mt-16 { - margin-top: 4rem !important; -} - -.mr-16 { - margin-right: 4rem !important; +.overscroll-x-contain { + overscroll-behavior-x: contain !important; } -.mb-16 { - margin-bottom: 4rem !important; +.overscroll-x-none { + overscroll-behavior-x: none !important; } -.ml-16 { - margin-left: 4rem !important; +.truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; } -.mt-20 { - margin-top: 5rem !important; +.overflow-ellipsis { + text-overflow: ellipsis !important; } -.mr-20 { - margin-right: 5rem !important; +.overflow-clip { + text-overflow: clip !important; } -.mb-20 { - margin-bottom: 5rem !important; +.whitespace-normal { + white-space: normal !important; } -.ml-20 { - margin-left: 5rem !important; +.whitespace-nowrap { + white-space: nowrap !important; } -.mt-24 { - margin-top: 6rem !important; +.whitespace-pre { + white-space: pre !important; } -.mr-24 { - margin-right: 6rem !important; +.whitespace-pre-line { + white-space: pre-line !important; } -.mb-24 { - margin-bottom: 6rem !important; +.whitespace-pre-wrap { + white-space: pre-wrap !important; } -.ml-24 { - margin-left: 6rem !important; +.break-normal { + overflow-wrap: normal !important; + word-break: normal !important; } -.mt-28 { - margin-top: 7rem !important; +.break-words { + overflow-wrap: break-word !important; } -.mr-28 { - margin-right: 7rem !important; +.break-all { + word-break: break-all !important; } -.mb-28 { - margin-bottom: 7rem !important; +.rounded-none { + border-radius: 0px !important; } -.ml-28 { - margin-left: 7rem !important; +.rounded-sm { + border-radius: 0.125rem !important; } -.mt-32 { - margin-top: 8rem !important; +.rounded { + border-radius: 0.25rem !important; } -.mr-32 { - margin-right: 8rem !important; +.rounded-md { + border-radius: 0.375rem !important; } -.mb-32 { - margin-bottom: 8rem !important; +.rounded-lg { + border-radius: 0.5rem !important; } -.ml-32 { - margin-left: 8rem !important; +.rounded-xl { + border-radius: 0.75rem !important; } -.mt-36 { - margin-top: 9rem !important; +.rounded-2xl { + border-radius: 1rem !important; } -.mr-36 { - margin-right: 9rem !important; +.rounded-3xl { + border-radius: 1.5rem !important; } -.mb-36 { - margin-bottom: 9rem !important; +.rounded-full { + border-radius: 9999px !important; } -.ml-36 { - margin-left: 9rem !important; +.rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; } -.mt-40 { - margin-top: 10rem !important; +.rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; } -.mr-40 { - margin-right: 10rem !important; +.rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; } -.mb-40 { - margin-bottom: 10rem !important; +.rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; } -.ml-40 { - margin-left: 10rem !important; +.rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; } -.mt-44 { - margin-top: 11rem !important; +.rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; } -.mr-44 { - margin-right: 11rem !important; +.rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; } -.mb-44 { - margin-bottom: 11rem !important; +.rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; } -.ml-44 { - margin-left: 11rem !important; +.rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; } -.mt-48 { - margin-top: 12rem !important; +.rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; } -.mr-48 { - margin-right: 12rem !important; +.rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; } -.mb-48 { - margin-bottom: 12rem !important; +.rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; } -.ml-48 { - margin-left: 12rem !important; +.rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; } -.mt-52 { - margin-top: 13rem !important; +.rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; } -.mr-52 { - margin-right: 13rem !important; +.rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; } -.mb-52 { - margin-bottom: 13rem !important; +.rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; } -.ml-52 { - margin-left: 13rem !important; +.rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; } -.mt-56 { - margin-top: 14rem !important; +.rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; } -.mr-56 { - margin-right: 14rem !important; +.rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; } -.mb-56 { - margin-bottom: 14rem !important; +.rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } -.ml-56 { - margin-left: 14rem !important; +.rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } -.mt-60 { - margin-top: 15rem !important; +.rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } -.mr-60 { - margin-right: 15rem !important; +.rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } -.mb-60 { - margin-bottom: 15rem !important; +.rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } -.ml-60 { - margin-left: 15rem !important; +.rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } -.mt-64 { - margin-top: 16rem !important; +.rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } -.mr-64 { - margin-right: 16rem !important; +.rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } -.mb-64 { - margin-bottom: 16rem !important; +.rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; } -.ml-64 { - margin-left: 16rem !important; +.rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } -.mt-72 { - margin-top: 18rem !important; +.rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } -.mr-72 { - margin-right: 18rem !important; +.rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } -.mb-72 { - margin-bottom: 18rem !important; +.rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } -.ml-72 { - margin-left: 18rem !important; +.rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } -.mt-80 { - margin-top: 20rem !important; +.rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } -.mr-80 { - margin-right: 20rem !important; +.rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } -.mb-80 { - margin-bottom: 20rem !important; +.rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } -.ml-80 { - margin-left: 20rem !important; +.rounded-tl-none { + border-top-left-radius: 0px !important; } -.mt-96 { - margin-top: 24rem !important; +.rounded-tl-sm { + border-top-left-radius: 0.125rem !important; } -.mr-96 { - margin-right: 24rem !important; +.rounded-tl { + border-top-left-radius: 0.25rem !important; } -.mb-96 { - margin-bottom: 24rem !important; +.rounded-tl-md { + border-top-left-radius: 0.375rem !important; } -.ml-96 { - margin-left: 24rem !important; +.rounded-tl-lg { + border-top-left-radius: 0.5rem !important; } -.mt-auto { - margin-top: auto !important; +.rounded-tl-xl { + border-top-left-radius: 0.75rem !important; } -.mr-auto { - margin-right: auto !important; +.rounded-tl-2xl { + border-top-left-radius: 1rem !important; } -.mb-auto { - margin-bottom: auto !important; +.rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; } -.ml-auto { - margin-left: auto !important; +.rounded-tl-full { + border-top-left-radius: 9999px !important; } -.mt-px { - margin-top: 1px !important; +.rounded-tr-none { + border-top-right-radius: 0px !important; } -.mr-px { - margin-right: 1px !important; +.rounded-tr-sm { + border-top-right-radius: 0.125rem !important; } -.mb-px { - margin-bottom: 1px !important; +.rounded-tr { + border-top-right-radius: 0.25rem !important; } -.ml-px { - margin-left: 1px !important; +.rounded-tr-md { + border-top-right-radius: 0.375rem !important; } -.mt-0\.5 { - margin-top: 0.125rem !important; +.rounded-tr-lg { + border-top-right-radius: 0.5rem !important; } -.mr-0\.5 { - margin-right: 0.125rem !important; +.rounded-tr-xl { + border-top-right-radius: 0.75rem !important; } -.mb-0\.5 { - margin-bottom: 0.125rem !important; +.rounded-tr-2xl { + border-top-right-radius: 1rem !important; } -.ml-0\.5 { - margin-left: 0.125rem !important; +.rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; } -.mt-1\.5 { - margin-top: 0.375rem !important; +.rounded-tr-full { + border-top-right-radius: 9999px !important; } -.mr-1\.5 { - margin-right: 0.375rem !important; +.rounded-br-none { + border-bottom-right-radius: 0px !important; } -.mb-1\.5 { - margin-bottom: 0.375rem !important; +.rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; } -.ml-1\.5 { - margin-left: 0.375rem !important; +.rounded-br { + border-bottom-right-radius: 0.25rem !important; } -.mt-2\.5 { - margin-top: 0.625rem !important; +.rounded-br-md { + border-bottom-right-radius: 0.375rem !important; } -.mr-2\.5 { - margin-right: 0.625rem !important; +.rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; } -.mb-2\.5 { - margin-bottom: 0.625rem !important; +.rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; } -.ml-2\.5 { - margin-left: 0.625rem !important; +.rounded-br-2xl { + border-bottom-right-radius: 1rem !important; } -.mt-3\.5 { - margin-top: 0.875rem !important; +.rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; } -.mr-3\.5 { - margin-right: 0.875rem !important; +.rounded-br-full { + border-bottom-right-radius: 9999px !important; } -.mb-3\.5 { - margin-bottom: 0.875rem !important; +.rounded-bl-none { + border-bottom-left-radius: 0px !important; } -.ml-3\.5 { - margin-left: 0.875rem !important; +.rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; } -.-mt-0 { - margin-top: 0px !important; +.rounded-bl { + border-bottom-left-radius: 0.25rem !important; } -.-mr-0 { - margin-right: 0px !important; +.rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; } -.-mb-0 { - margin-bottom: 0px !important; +.rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; } -.-ml-0 { - margin-left: 0px !important; +.rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; } -.-mt-1 { - margin-top: -0.25rem !important; +.rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; } -.-mr-1 { - margin-right: -0.25rem !important; +.rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; } -.-mb-1 { - margin-bottom: -0.25rem !important; +.rounded-bl-full { + border-bottom-left-radius: 9999px !important; } -.-ml-1 { - margin-left: -0.25rem !important; +.border-0 { + border-width: 0px !important; } -.-mt-2 { - margin-top: -0.5rem !important; +.border-2 { + border-width: 2px !important; } -.-mr-2 { - margin-right: -0.5rem !important; +.border-4 { + border-width: 4px !important; } -.-mb-2 { - margin-bottom: -0.5rem !important; +.border-8 { + border-width: 8px !important; } -.-ml-2 { - margin-left: -0.5rem !important; +.border { + border-width: 1px !important; } -.-mt-3 { - margin-top: -0.75rem !important; +.border-t-0 { + border-top-width: 0px !important; } -.-mr-3 { - margin-right: -0.75rem !important; +.border-t-2 { + border-top-width: 2px !important; } -.-mb-3 { - margin-bottom: -0.75rem !important; +.border-t-4 { + border-top-width: 4px !important; } -.-ml-3 { - margin-left: -0.75rem !important; +.border-t-8 { + border-top-width: 8px !important; } -.-mt-4 { - margin-top: -1rem !important; +.border-t { + border-top-width: 1px !important; } -.-mr-4 { - margin-right: -1rem !important; +.border-r-0 { + border-right-width: 0px !important; } -.-mb-4 { - margin-bottom: -1rem !important; +.border-r-2 { + border-right-width: 2px !important; } -.-ml-4 { - margin-left: -1rem !important; +.border-r-4 { + border-right-width: 4px !important; } -.-mt-5 { - margin-top: -1.25rem !important; +.border-r-8 { + border-right-width: 8px !important; } -.-mr-5 { - margin-right: -1.25rem !important; +.border-r { + border-right-width: 1px !important; } -.-mb-5 { - margin-bottom: -1.25rem !important; +.border-b-0 { + border-bottom-width: 0px !important; } -.-ml-5 { - margin-left: -1.25rem !important; +.border-b-2 { + border-bottom-width: 2px !important; } -.-mt-6 { - margin-top: -1.5rem !important; +.border-b-4 { + border-bottom-width: 4px !important; } -.-mr-6 { - margin-right: -1.5rem !important; +.border-b-8 { + border-bottom-width: 8px !important; } -.-mb-6 { - margin-bottom: -1.5rem !important; +.border-b { + border-bottom-width: 1px !important; } -.-ml-6 { - margin-left: -1.5rem !important; +.border-l-0 { + border-left-width: 0px !important; } -.-mt-7 { - margin-top: -1.75rem !important; +.border-l-2 { + border-left-width: 2px !important; } -.-mr-7 { - margin-right: -1.75rem !important; +.border-l-4 { + border-left-width: 4px !important; } -.-mb-7 { - margin-bottom: -1.75rem !important; +.border-l-8 { + border-left-width: 8px !important; } -.-ml-7 { - margin-left: -1.75rem !important; +.border-l { + border-left-width: 1px !important; } -.-mt-8 { - margin-top: -2rem !important; +.border-solid { + border-style: solid !important; } -.-mr-8 { - margin-right: -2rem !important; +.border-dashed { + border-style: dashed !important; } -.-mb-8 { - margin-bottom: -2rem !important; +.border-dotted { + border-style: dotted !important; } -.-ml-8 { - margin-left: -2rem !important; +.border-double { + border-style: double !important; } -.-mt-9 { - margin-top: -2.25rem !important; +.border-none { + border-style: none !important; } -.-mr-9 { - margin-right: -2.25rem !important; +.border-transparent { + border-color: transparent !important; } -.-mb-9 { - margin-bottom: -2.25rem !important; +.border-current { + border-color: currentColor !important; } -.-ml-9 { - margin-left: -2.25rem !important; +.border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } -.-mt-10 { - margin-top: -2.5rem !important; +.border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } -.-mr-10 { - margin-right: -2.5rem !important; +.border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } -.-mb-10 { - margin-bottom: -2.5rem !important; +.border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } -.-ml-10 { - margin-left: -2.5rem !important; +.border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } -.-mt-11 { - margin-top: -2.75rem !important; +.border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } -.-mr-11 { - margin-right: -2.75rem !important; +.border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } -.-mb-11 { - margin-bottom: -2.75rem !important; +.border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } -.-ml-11 { - margin-left: -2.75rem !important; +.border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } -.-mt-12 { - margin-top: -3rem !important; +.border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } -.-mr-12 { - margin-right: -3rem !important; +.border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } -.-mb-12 { - margin-bottom: -3rem !important; +.border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } -.-ml-12 { - margin-left: -3rem !important; +.border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } -.-mt-14 { - margin-top: -3.5rem !important; +.border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } -.-mr-14 { - margin-right: -3.5rem !important; +.border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } -.-mb-14 { - margin-bottom: -3.5rem !important; +.border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } -.-ml-14 { - margin-left: -3.5rem !important; +.border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } -.-mt-16 { - margin-top: -4rem !important; +.border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } -.-mr-16 { - margin-right: -4rem !important; +.border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } -.-mb-16 { - margin-bottom: -4rem !important; +.border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } -.-ml-16 { - margin-left: -4rem !important; +.border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } -.-mt-20 { - margin-top: -5rem !important; +.border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } -.-mr-20 { - margin-right: -5rem !important; +.border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } -.-mb-20 { - margin-bottom: -5rem !important; +.border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } -.-ml-20 { - margin-left: -5rem !important; +.border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } -.-mt-24 { - margin-top: -6rem !important; +.border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } -.-mr-24 { - margin-right: -6rem !important; +.border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } -.-mb-24 { - margin-bottom: -6rem !important; +.border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } -.-ml-24 { - margin-left: -6rem !important; +.border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } -.-mt-28 { - margin-top: -7rem !important; +.border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } -.-mr-28 { - margin-right: -7rem !important; +.border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } -.-mb-28 { - margin-bottom: -7rem !important; +.border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } -.-ml-28 { - margin-left: -7rem !important; +.border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } -.-mt-32 { - margin-top: -8rem !important; +.border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } -.-mr-32 { - margin-right: -8rem !important; +.border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } -.-mb-32 { - margin-bottom: -8rem !important; +.border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } -.-ml-32 { - margin-left: -8rem !important; +.border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } -.-mt-36 { - margin-top: -9rem !important; +.border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } -.-mr-36 { - margin-right: -9rem !important; +.border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } -.-mb-36 { - margin-bottom: -9rem !important; +.border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } -.-ml-36 { - margin-left: -9rem !important; +.border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } -.-mt-40 { - margin-top: -10rem !important; +.border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } -.-mr-40 { - margin-right: -10rem !important; +.border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } -.-mb-40 { - margin-bottom: -10rem !important; +.border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } -.-ml-40 { - margin-left: -10rem !important; +.border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } -.-mt-44 { - margin-top: -11rem !important; +.border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } -.-mr-44 { - margin-right: -11rem !important; +.border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } -.-mb-44 { - margin-bottom: -11rem !important; +.border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } -.-ml-44 { - margin-left: -11rem !important; +.border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } -.-mt-48 { - margin-top: -12rem !important; +.border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } -.-mr-48 { - margin-right: -12rem !important; +.border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } -.-mb-48 { - margin-bottom: -12rem !important; +.border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } -.-ml-48 { - margin-left: -12rem !important; +.border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } -.-mt-52 { - margin-top: -13rem !important; +.border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } -.-mr-52 { - margin-right: -13rem !important; +.border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } -.-mb-52 { - margin-bottom: -13rem !important; +.border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } -.-ml-52 { - margin-left: -13rem !important; +.border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } -.-mt-56 { - margin-top: -14rem !important; +.border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } -.-mr-56 { - margin-right: -14rem !important; +.border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } -.-mb-56 { - margin-bottom: -14rem !important; +.border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } -.-ml-56 { - margin-left: -14rem !important; +.border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } -.-mt-60 { - margin-top: -15rem !important; +.border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } -.-mr-60 { - margin-right: -15rem !important; +.border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } -.-mb-60 { - margin-bottom: -15rem !important; +.border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } -.-ml-60 { - margin-left: -15rem !important; +.border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } -.-mt-64 { - margin-top: -16rem !important; +.border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } -.-mr-64 { - margin-right: -16rem !important; +.border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } -.-mb-64 { - margin-bottom: -16rem !important; +.border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } -.-ml-64 { - margin-left: -16rem !important; +.border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } -.-mt-72 { - margin-top: -18rem !important; +.border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } -.-mr-72 { - margin-right: -18rem !important; +.border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } -.-mb-72 { - margin-bottom: -18rem !important; +.border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } -.-ml-72 { - margin-left: -18rem !important; +.border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } -.-mt-80 { - margin-top: -20rem !important; +.border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } -.-mr-80 { - margin-right: -20rem !important; +.border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } -.-mb-80 { - margin-bottom: -20rem !important; +.border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } -.-ml-80 { - margin-left: -20rem !important; +.border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } -.-mt-96 { - margin-top: -24rem !important; +.border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } -.-mr-96 { - margin-right: -24rem !important; +.border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } -.-mb-96 { - margin-bottom: -24rem !important; +.border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } -.-ml-96 { - margin-left: -24rem !important; +.border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } -.-mt-px { - margin-top: -1px !important; +.border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } -.-mr-px { - margin-right: -1px !important; +.group:hover .group-hover\:border-transparent { + border-color: transparent !important; } -.-mb-px { - margin-bottom: -1px !important; +.group:hover .group-hover\:border-current { + border-color: currentColor !important; } -.-ml-px { - margin-left: -1px !important; +.group:hover .group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } -.-mt-0\.5 { - margin-top: -0.125rem !important; +.group:hover .group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } -.-mr-0\.5 { - margin-right: -0.125rem !important; +.group:hover .group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } -.-mb-0\.5 { - margin-bottom: -0.125rem !important; +.group:hover .group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } -.-ml-0\.5 { - margin-left: -0.125rem !important; +.group:hover .group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } -.-mt-1\.5 { - margin-top: -0.375rem !important; +.group:hover .group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } -.-mr-1\.5 { - margin-right: -0.375rem !important; +.group:hover .group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } -.-mb-1\.5 { - margin-bottom: -0.375rem !important; +.group:hover .group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } -.-ml-1\.5 { - margin-left: -0.375rem !important; +.group:hover .group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } -.-mt-2\.5 { - margin-top: -0.625rem !important; +.group:hover .group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } -.-mr-2\.5 { - margin-right: -0.625rem !important; +.group:hover .group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } -.-mb-2\.5 { - margin-bottom: -0.625rem !important; +.group:hover .group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } -.-ml-2\.5 { - margin-left: -0.625rem !important; +.group:hover .group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } -.-mt-3\.5 { - margin-top: -0.875rem !important; +.group:hover .group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } -.-mr-3\.5 { - margin-right: -0.875rem !important; +.group:hover .group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } -.-mb-3\.5 { - margin-bottom: -0.875rem !important; +.group:hover .group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } -.-ml-3\.5 { - margin-left: -0.875rem !important; +.group:hover .group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } -.max-h-0 { - max-height: 0px !important; +.group:hover .group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } -.max-h-1 { - max-height: 0.25rem !important; +.group:hover .group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } -.max-h-2 { - max-height: 0.5rem !important; +.group:hover .group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } -.max-h-3 { - max-height: 0.75rem !important; +.group:hover .group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } -.max-h-4 { - max-height: 1rem !important; +.group:hover .group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } -.max-h-5 { - max-height: 1.25rem !important; +.group:hover .group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } -.max-h-6 { - max-height: 1.5rem !important; +.group:hover .group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } -.max-h-7 { - max-height: 1.75rem !important; +.group:hover .group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } -.max-h-8 { - max-height: 2rem !important; +.group:hover .group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } -.max-h-9 { - max-height: 2.25rem !important; +.group:hover .group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } -.max-h-10 { - max-height: 2.5rem !important; +.group:hover .group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } -.max-h-11 { - max-height: 2.75rem !important; +.group:hover .group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } -.max-h-12 { - max-height: 3rem !important; +.group:hover .group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } -.max-h-14 { - max-height: 3.5rem !important; +.group:hover .group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } -.max-h-16 { - max-height: 4rem !important; +.group:hover .group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } -.max-h-20 { - max-height: 5rem !important; +.group:hover .group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } -.max-h-24 { - max-height: 6rem !important; +.group:hover .group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } -.max-h-28 { - max-height: 7rem !important; +.group:hover .group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } -.max-h-32 { - max-height: 8rem !important; +.group:hover .group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } -.max-h-36 { - max-height: 9rem !important; +.group:hover .group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } -.max-h-40 { - max-height: 10rem !important; +.group:hover .group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } -.max-h-44 { - max-height: 11rem !important; +.group:hover .group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } -.max-h-48 { - max-height: 12rem !important; +.group:hover .group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } -.max-h-52 { - max-height: 13rem !important; +.group:hover .group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } -.max-h-56 { - max-height: 14rem !important; +.group:hover .group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } -.max-h-60 { - max-height: 15rem !important; +.group:hover .group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } -.max-h-64 { - max-height: 16rem !important; +.group:hover .group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } -.max-h-72 { - max-height: 18rem !important; +.group:hover .group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } -.max-h-80 { - max-height: 20rem !important; +.group:hover .group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } -.max-h-96 { - max-height: 24rem !important; +.group:hover .group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } -.max-h-px { - max-height: 1px !important; +.group:hover .group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } -.max-h-0\.5 { - max-height: 0.125rem !important; +.group:hover .group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } -.max-h-1\.5 { - max-height: 0.375rem !important; +.group:hover .group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } -.max-h-2\.5 { - max-height: 0.625rem !important; +.group:hover .group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } -.max-h-3\.5 { - max-height: 0.875rem !important; +.group:hover .group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } -.max-h-full { - max-height: 100% !important; +.group:hover .group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } -.max-h-screen { - max-height: 100vh !important; +.group:hover .group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } -.max-w-0 { - max-width: 0rem !important; +.group:hover .group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } -.max-w-none { - max-width: none !important; +.group:hover .group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } -.max-w-xs { - max-width: 20rem !important; +.group:hover .group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } -.max-w-sm { - max-width: 24rem !important; +.group:hover .group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } -.max-w-md { - max-width: 28rem !important; +.group:hover .group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } -.max-w-lg { - max-width: 32rem !important; +.group:hover .group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } -.max-w-xl { - max-width: 36rem !important; +.group:hover .group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } -.max-w-2xl { - max-width: 42rem !important; +.group:hover .group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } -.max-w-3xl { - max-width: 48rem !important; +.group:hover .group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } -.max-w-4xl { - max-width: 56rem !important; +.group:hover .group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } -.max-w-5xl { - max-width: 64rem !important; +.group:hover .group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } -.max-w-6xl { - max-width: 72rem !important; +.group:hover .group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } -.max-w-7xl { - max-width: 80rem !important; +.group:hover .group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } -.max-w-full { - max-width: 100% !important; +.group:hover .group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } -.max-w-min { - max-width: min-content !important; +.group:hover .group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } -.max-w-max { - max-width: max-content !important; +.group:hover .group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } -.max-w-prose { - max-width: 65ch !important; +.group:hover .group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } -.max-w-screen-sm { - max-width: 640px !important; +.group:hover .group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } -.max-w-screen-md { - max-width: 768px !important; +.group:hover .group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } -.max-w-screen-lg { - max-width: 1024px !important; +.group:hover .group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } -.max-w-screen-xl { - max-width: 1280px !important; +.group:hover .group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } -.max-w-screen-2xl { - max-width: 1536px !important; +.group:hover .group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } -.min-h-0 { - min-height: 0px !important; +.group:hover .group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } -.min-h-full { - min-height: 100% !important; +.group:hover .group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } -.min-h-screen { - min-height: 100vh !important; +.group:hover .group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } -.min-w-0 { - min-width: 0px !important; +.group:hover .group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } -.min-w-full { - min-width: 100% !important; +.group:hover .group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } -.min-w-min { - min-width: min-content !important; +.group:hover .group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } -.min-w-max { - min-width: max-content !important; +.focus-within\:border-transparent:focus-within { + border-color: transparent !important; } -.object-contain { - object-fit: contain !important; +.focus-within\:border-current:focus-within { + border-color: currentColor !important; } -.object-cover { - object-fit: cover !important; +.focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } -.object-fill { - object-fit: fill !important; +.focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } -.object-none { - object-fit: none !important; +.focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } -.object-scale-down { - object-fit: scale-down !important; +.focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } -.object-bottom { - object-position: bottom !important; +.focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } -.object-center { - object-position: center !important; +.focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } -.object-left { - object-position: left !important; +.focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } -.object-left-bottom { - object-position: left bottom !important; +.focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } -.object-left-top { - object-position: left top !important; +.focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } -.object-right { - object-position: right !important; +.focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } -.object-right-bottom { - object-position: right bottom !important; +.focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } -.object-right-top { - object-position: right top !important; +.focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } -.object-top { - object-position: top !important; +.focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } -.opacity-0 { - opacity: 0 !important; +.focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } -.opacity-5 { - opacity: 0.05 !important; +.focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } -.opacity-10 { - opacity: 0.1 !important; +.focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } -.opacity-20 { - opacity: 0.2 !important; +.focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } -.opacity-25 { - opacity: 0.25 !important; +.focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } -.opacity-30 { - opacity: 0.3 !important; +.focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } -.opacity-40 { - opacity: 0.4 !important; +.focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } -.opacity-50 { - opacity: 0.5 !important; +.focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } -.opacity-60 { - opacity: 0.6 !important; +.focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } -.opacity-70 { - opacity: 0.7 !important; +.focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } -.opacity-75 { - opacity: 0.75 !important; +.focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } -.opacity-80 { - opacity: 0.8 !important; +.focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } -.opacity-90 { - opacity: 0.9 !important; +.focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } -.opacity-95 { - opacity: 0.95 !important; +.focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } -.opacity-100 { - opacity: 1 !important; +.focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-0 { - opacity: 0 !important; +.focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-5 { - opacity: 0.05 !important; +.focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-10 { - opacity: 0.1 !important; +.focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-20 { - opacity: 0.2 !important; +.focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-25 { - opacity: 0.25 !important; +.focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-30 { - opacity: 0.3 !important; +.focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-40 { - opacity: 0.4 !important; +.focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-50 { - opacity: 0.5 !important; +.focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-60 { - opacity: 0.6 !important; +.focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-70 { - opacity: 0.7 !important; +.focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-75 { - opacity: 0.75 !important; +.focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-80 { - opacity: 0.8 !important; +.focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-90 { - opacity: 0.9 !important; +.focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-95 { - opacity: 0.95 !important; +.focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } -.group:hover .group-hover\:opacity-100 { - opacity: 1 !important; +.focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-0:focus-within { - opacity: 0 !important; +.focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-5:focus-within { - opacity: 0.05 !important; +.focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-10:focus-within { - opacity: 0.1 !important; +.focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-20:focus-within { - opacity: 0.2 !important; +.focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-25:focus-within { - opacity: 0.25 !important; +.focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-30:focus-within { - opacity: 0.3 !important; +.focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-40:focus-within { - opacity: 0.4 !important; +.focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-50:focus-within { - opacity: 0.5 !important; +.focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-60:focus-within { - opacity: 0.6 !important; +.focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-70:focus-within { - opacity: 0.7 !important; +.focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-75:focus-within { - opacity: 0.75 !important; +.focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-80:focus-within { - opacity: 0.8 !important; +.focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-90:focus-within { - opacity: 0.9 !important; +.focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-95:focus-within { - opacity: 0.95 !important; +.focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } -.focus-within\:opacity-100:focus-within { - opacity: 1 !important; +.focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } -.hover\:opacity-0:hover { - opacity: 0 !important; +.focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } -.hover\:opacity-5:hover { - opacity: 0.05 !important; +.focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } -.hover\:opacity-10:hover { - opacity: 0.1 !important; +.focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } -.hover\:opacity-20:hover { - opacity: 0.2 !important; +.focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } -.hover\:opacity-25:hover { - opacity: 0.25 !important; +.focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } -.hover\:opacity-30:hover { - opacity: 0.3 !important; +.focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } -.hover\:opacity-40:hover { - opacity: 0.4 !important; +.focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } -.hover\:opacity-50:hover { - opacity: 0.5 !important; +.focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } -.hover\:opacity-60:hover { - opacity: 0.6 !important; +.focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } -.hover\:opacity-70:hover { - opacity: 0.7 !important; +.focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } -.hover\:opacity-75:hover { - opacity: 0.75 !important; +.focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } -.hover\:opacity-80:hover { - opacity: 0.8 !important; +.focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } -.hover\:opacity-90:hover { - opacity: 0.9 !important; +.focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } -.hover\:opacity-95:hover { - opacity: 0.95 !important; +.focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } -.hover\:opacity-100:hover { - opacity: 1 !important; +.focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } -.focus\:opacity-0:focus { - opacity: 0 !important; +.focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } -.focus\:opacity-5:focus { - opacity: 0.05 !important; +.focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } -.focus\:opacity-10:focus { - opacity: 0.1 !important; +.focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } -.focus\:opacity-20:focus { - opacity: 0.2 !important; +.focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } -.focus\:opacity-25:focus { - opacity: 0.25 !important; +.focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } -.focus\:opacity-30:focus { - opacity: 0.3 !important; +.focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } -.focus\:opacity-40:focus { - opacity: 0.4 !important; +.focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } -.focus\:opacity-50:focus { - opacity: 0.5 !important; +.focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } -.focus\:opacity-60:focus { - opacity: 0.6 !important; +.focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } -.focus\:opacity-70:focus { - opacity: 0.7 !important; +.hover\:border-transparent:hover { + border-color: transparent !important; } -.focus\:opacity-75:focus { - opacity: 0.75 !important; +.hover\:border-current:hover { + border-color: currentColor !important; } -.focus\:opacity-80:focus { - opacity: 0.8 !important; +.hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } -.focus\:opacity-90:focus { - opacity: 0.9 !important; +.hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } -.focus\:opacity-95:focus { - opacity: 0.95 !important; +.hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } -.focus\:opacity-100:focus { - opacity: 1 !important; +.hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } -.outline-none { - outline: 2px solid transparent !important; - outline-offset: 2px !important; +.hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } -.outline-white { - outline: 2px dotted white !important; - outline-offset: 2px !important; +.hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } -.outline-black { - outline: 2px dotted black !important; - outline-offset: 2px !important; +.hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } -.focus-within\:outline-none:focus-within { - outline: 2px solid transparent !important; - outline-offset: 2px !important; +.hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } -.focus-within\:outline-white:focus-within { - outline: 2px dotted white !important; - outline-offset: 2px !important; +.hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } -.focus-within\:outline-black:focus-within { - outline: 2px dotted black !important; - outline-offset: 2px !important; +.hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } -.focus\:outline-none:focus { - outline: 2px solid transparent !important; - outline-offset: 2px !important; +.hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } -.focus\:outline-white:focus { - outline: 2px dotted white !important; - outline-offset: 2px !important; +.hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } -.focus\:outline-black:focus { - outline: 2px dotted black !important; - outline-offset: 2px !important; +.hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } -.overflow-auto { - overflow: auto !important; +.hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } -.overflow-hidden { - overflow: hidden !important; +.hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } -.overflow-visible { - overflow: visible !important; +.hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } -.overflow-scroll { - overflow: scroll !important; +.hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } -.overflow-x-auto { - overflow-x: auto !important; +.hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } -.overflow-y-auto { - overflow-y: auto !important; +.hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } -.overflow-x-hidden { - overflow-x: hidden !important; +.hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } -.overflow-y-hidden { - overflow-y: hidden !important; +.hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } -.overflow-x-visible { - overflow-x: visible !important; +.hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } -.overflow-y-visible { - overflow-y: visible !important; +.hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } -.overflow-x-scroll { - overflow-x: scroll !important; +.hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } -.overflow-y-scroll { - overflow-y: scroll !important; +.hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } -.overscroll-auto { - overscroll-behavior: auto !important; +.hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } -.overscroll-contain { - overscroll-behavior: contain !important; +.hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } -.overscroll-none { - overscroll-behavior: none !important; +.hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } -.overscroll-y-auto { - overscroll-behavior-y: auto !important; +.hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } -.overscroll-y-contain { - overscroll-behavior-y: contain !important; +.hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } -.overscroll-y-none { - overscroll-behavior-y: none !important; +.hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } -.overscroll-x-auto { - overscroll-behavior-x: auto !important; +.hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } -.overscroll-x-contain { - overscroll-behavior-x: contain !important; +.hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } -.overscroll-x-none { - overscroll-behavior-x: none !important; +.hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } -.p-0 { - padding: 0px !important; +.hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } -.p-1 { - padding: 0.25rem !important; +.hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } -.p-2 { - padding: 0.5rem !important; +.hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } -.p-3 { - padding: 0.75rem !important; +.hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } -.p-4 { - padding: 1rem !important; +.hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } -.p-5 { - padding: 1.25rem !important; +.hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } -.p-6 { - padding: 1.5rem !important; +.hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } -.p-7 { - padding: 1.75rem !important; +.hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } -.p-8 { - padding: 2rem !important; +.hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } -.p-9 { - padding: 2.25rem !important; +.hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } -.p-10 { - padding: 2.5rem !important; +.hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } -.p-11 { - padding: 2.75rem !important; +.hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } -.p-12 { - padding: 3rem !important; +.hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } -.p-14 { - padding: 3.5rem !important; +.hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } -.p-16 { - padding: 4rem !important; -} - -.p-20 { - padding: 5rem !important; +.hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } -.p-24 { - padding: 6rem !important; +.hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } -.p-28 { - padding: 7rem !important; +.hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } -.p-32 { - padding: 8rem !important; +.hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } -.p-36 { - padding: 9rem !important; +.hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } -.p-40 { - padding: 10rem !important; +.hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } -.p-44 { - padding: 11rem !important; +.hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } -.p-48 { - padding: 12rem !important; +.hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } -.p-52 { - padding: 13rem !important; +.hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } -.p-56 { - padding: 14rem !important; +.hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } -.p-60 { - padding: 15rem !important; +.hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } -.p-64 { - padding: 16rem !important; +.hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } -.p-72 { - padding: 18rem !important; +.hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } -.p-80 { - padding: 20rem !important; +.hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } -.p-96 { - padding: 24rem !important; +.hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } -.p-px { - padding: 1px !important; +.hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } -.p-0\.5 { - padding: 0.125rem !important; +.hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } -.p-1\.5 { - padding: 0.375rem !important; +.hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } -.p-2\.5 { - padding: 0.625rem !important; +.hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } -.p-3\.5 { - padding: 0.875rem !important; +.hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } -.py-0 { - padding-top: 0px !important; - padding-bottom: 0px !important; +.hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } -.px-0 { - padding-left: 0px !important; - padding-right: 0px !important; +.hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } -.py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; +.hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } -.px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; +.hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } -.py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; +.hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } -.px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; +.hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } -.py-3 { - padding-top: 0.75rem !important; - padding-bottom: 0.75rem !important; +.hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } -.px-3 { - padding-left: 0.75rem !important; - padding-right: 0.75rem !important; +.hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } -.py-4 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; +.hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } -.px-4 { - padding-left: 1rem !important; - padding-right: 1rem !important; +.hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } -.py-5 { - padding-top: 1.25rem !important; - padding-bottom: 1.25rem !important; +.hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } -.px-5 { - padding-left: 1.25rem !important; - padding-right: 1.25rem !important; +.hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } -.py-6 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; +.hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } -.px-6 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; +.hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } -.py-7 { - padding-top: 1.75rem !important; - padding-bottom: 1.75rem !important; +.focus\:border-transparent:focus { + border-color: transparent !important; } -.px-7 { - padding-left: 1.75rem !important; - padding-right: 1.75rem !important; +.focus\:border-current:focus { + border-color: currentColor !important; } -.py-8 { - padding-top: 2rem !important; - padding-bottom: 2rem !important; +.focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } -.px-8 { - padding-left: 2rem !important; - padding-right: 2rem !important; +.focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } -.py-9 { - padding-top: 2.25rem !important; - padding-bottom: 2.25rem !important; +.focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } -.px-9 { - padding-left: 2.25rem !important; - padding-right: 2.25rem !important; +.focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } -.py-10 { - padding-top: 2.5rem !important; - padding-bottom: 2.5rem !important; +.focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } -.px-10 { - padding-left: 2.5rem !important; - padding-right: 2.5rem !important; +.focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } -.py-11 { - padding-top: 2.75rem !important; - padding-bottom: 2.75rem !important; +.focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } -.px-11 { - padding-left: 2.75rem !important; - padding-right: 2.75rem !important; +.focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } -.py-12 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; +.focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } -.px-12 { - padding-left: 3rem !important; - padding-right: 3rem !important; +.focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } -.py-14 { - padding-top: 3.5rem !important; - padding-bottom: 3.5rem !important; +.focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } -.px-14 { - padding-left: 3.5rem !important; - padding-right: 3.5rem !important; +.focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } -.py-16 { - padding-top: 4rem !important; - padding-bottom: 4rem !important; +.focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } -.px-16 { - padding-left: 4rem !important; - padding-right: 4rem !important; +.focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } -.py-20 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; +.focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } -.px-20 { - padding-left: 5rem !important; - padding-right: 5rem !important; +.focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } -.py-24 { - padding-top: 6rem !important; - padding-bottom: 6rem !important; +.focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } -.px-24 { - padding-left: 6rem !important; - padding-right: 6rem !important; +.focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } -.py-28 { - padding-top: 7rem !important; - padding-bottom: 7rem !important; +.focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } -.px-28 { - padding-left: 7rem !important; - padding-right: 7rem !important; +.focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } -.py-32 { - padding-top: 8rem !important; - padding-bottom: 8rem !important; +.focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } -.px-32 { - padding-left: 8rem !important; - padding-right: 8rem !important; +.focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } -.py-36 { - padding-top: 9rem !important; - padding-bottom: 9rem !important; +.focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } -.px-36 { - padding-left: 9rem !important; - padding-right: 9rem !important; +.focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } -.py-40 { - padding-top: 10rem !important; - padding-bottom: 10rem !important; +.focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } -.px-40 { - padding-left: 10rem !important; - padding-right: 10rem !important; +.focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } -.py-44 { - padding-top: 11rem !important; - padding-bottom: 11rem !important; +.focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } -.px-44 { - padding-left: 11rem !important; - padding-right: 11rem !important; +.focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } -.py-48 { - padding-top: 12rem !important; - padding-bottom: 12rem !important; +.focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } -.px-48 { - padding-left: 12rem !important; - padding-right: 12rem !important; +.focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } -.py-52 { - padding-top: 13rem !important; - padding-bottom: 13rem !important; +.focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } -.px-52 { - padding-left: 13rem !important; - padding-right: 13rem !important; +.focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } -.py-56 { - padding-top: 14rem !important; - padding-bottom: 14rem !important; +.focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } -.px-56 { - padding-left: 14rem !important; - padding-right: 14rem !important; +.focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } -.py-60 { - padding-top: 15rem !important; - padding-bottom: 15rem !important; +.focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } -.px-60 { - padding-left: 15rem !important; - padding-right: 15rem !important; +.focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } -.py-64 { - padding-top: 16rem !important; - padding-bottom: 16rem !important; +.focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } -.px-64 { - padding-left: 16rem !important; - padding-right: 16rem !important; +.focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } -.py-72 { - padding-top: 18rem !important; - padding-bottom: 18rem !important; +.focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } -.px-72 { - padding-left: 18rem !important; - padding-right: 18rem !important; +.focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } -.py-80 { - padding-top: 20rem !important; - padding-bottom: 20rem !important; +.focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } -.px-80 { - padding-left: 20rem !important; - padding-right: 20rem !important; +.focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } -.py-96 { - padding-top: 24rem !important; - padding-bottom: 24rem !important; +.focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } -.px-96 { - padding-left: 24rem !important; - padding-right: 24rem !important; +.focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } -.py-px { - padding-top: 1px !important; - padding-bottom: 1px !important; +.focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } -.px-px { - padding-left: 1px !important; - padding-right: 1px !important; +.focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } -.py-0\.5 { - padding-top: 0.125rem !important; - padding-bottom: 0.125rem !important; +.focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } -.px-0\.5 { - padding-left: 0.125rem !important; - padding-right: 0.125rem !important; +.focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } -.py-1\.5 { - padding-top: 0.375rem !important; - padding-bottom: 0.375rem !important; +.focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } -.px-1\.5 { - padding-left: 0.375rem !important; - padding-right: 0.375rem !important; +.focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } -.py-2\.5 { - padding-top: 0.625rem !important; - padding-bottom: 0.625rem !important; +.focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } -.px-2\.5 { - padding-left: 0.625rem !important; - padding-right: 0.625rem !important; +.focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } -.py-3\.5 { - padding-top: 0.875rem !important; - padding-bottom: 0.875rem !important; +.focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } -.px-3\.5 { - padding-left: 0.875rem !important; - padding-right: 0.875rem !important; +.focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } -.pt-0 { - padding-top: 0px !important; +.focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } -.pr-0 { - padding-right: 0px !important; +.focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } -.pb-0 { - padding-bottom: 0px !important; +.focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } -.pl-0 { - padding-left: 0px !important; +.focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } -.pt-1 { - padding-top: 0.25rem !important; +.focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } -.pr-1 { - padding-right: 0.25rem !important; +.focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } -.pb-1 { - padding-bottom: 0.25rem !important; +.focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } -.pl-1 { - padding-left: 0.25rem !important; +.focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } -.pt-2 { - padding-top: 0.5rem !important; +.focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } -.pr-2 { - padding-right: 0.5rem !important; +.focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } -.pb-2 { - padding-bottom: 0.5rem !important; +.focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } -.pl-2 { - padding-left: 0.5rem !important; +.focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } -.pt-3 { - padding-top: 0.75rem !important; +.focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } -.pr-3 { - padding-right: 0.75rem !important; +.focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } -.pb-3 { - padding-bottom: 0.75rem !important; +.focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } -.pl-3 { - padding-left: 0.75rem !important; +.focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } -.pt-4 { - padding-top: 1rem !important; +.focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } -.pr-4 { - padding-right: 1rem !important; +.focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } -.pb-4 { - padding-bottom: 1rem !important; +.focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } -.pl-4 { - padding-left: 1rem !important; +.focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } -.pt-5 { - padding-top: 1.25rem !important; +.focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } -.pr-5 { - padding-right: 1.25rem !important; +.focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } -.pb-5 { - padding-bottom: 1.25rem !important; +.focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } -.pl-5 { - padding-left: 1.25rem !important; +.focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } -.pt-6 { - padding-top: 1.5rem !important; +.focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } -.pr-6 { - padding-right: 1.5rem !important; +.focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } -.pb-6 { - padding-bottom: 1.5rem !important; +.focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } -.pl-6 { - padding-left: 1.5rem !important; +.focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } -.pt-7 { - padding-top: 1.75rem !important; +.border-opacity-0 { + --tw-border-opacity: 0 !important; } -.pr-7 { - padding-right: 1.75rem !important; +.border-opacity-5 { + --tw-border-opacity: 0.05 !important; } -.pb-7 { - padding-bottom: 1.75rem !important; +.border-opacity-10 { + --tw-border-opacity: 0.1 !important; } -.pl-7 { - padding-left: 1.75rem !important; +.border-opacity-20 { + --tw-border-opacity: 0.2 !important; } -.pt-8 { - padding-top: 2rem !important; +.border-opacity-25 { + --tw-border-opacity: 0.25 !important; } -.pr-8 { - padding-right: 2rem !important; +.border-opacity-30 { + --tw-border-opacity: 0.3 !important; } -.pb-8 { - padding-bottom: 2rem !important; +.border-opacity-40 { + --tw-border-opacity: 0.4 !important; } -.pl-8 { - padding-left: 2rem !important; +.border-opacity-50 { + --tw-border-opacity: 0.5 !important; } -.pt-9 { - padding-top: 2.25rem !important; +.border-opacity-60 { + --tw-border-opacity: 0.6 !important; } -.pr-9 { - padding-right: 2.25rem !important; +.border-opacity-70 { + --tw-border-opacity: 0.7 !important; } -.pb-9 { - padding-bottom: 2.25rem !important; +.border-opacity-75 { + --tw-border-opacity: 0.75 !important; } -.pl-9 { - padding-left: 2.25rem !important; +.border-opacity-80 { + --tw-border-opacity: 0.8 !important; } -.pt-10 { - padding-top: 2.5rem !important; +.border-opacity-90 { + --tw-border-opacity: 0.9 !important; } -.pr-10 { - padding-right: 2.5rem !important; +.border-opacity-95 { + --tw-border-opacity: 0.95 !important; } -.pb-10 { - padding-bottom: 2.5rem !important; +.border-opacity-100 { + --tw-border-opacity: 1 !important; } -.pl-10 { - padding-left: 2.5rem !important; +.group:hover .group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; } -.pt-11 { - padding-top: 2.75rem !important; +.group:hover .group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; } -.pr-11 { - padding-right: 2.75rem !important; +.group:hover .group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; } -.pb-11 { - padding-bottom: 2.75rem !important; +.group:hover .group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; } -.pl-11 { - padding-left: 2.75rem !important; +.group:hover .group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; } -.pt-12 { - padding-top: 3rem !important; +.group:hover .group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; } -.pr-12 { - padding-right: 3rem !important; +.group:hover .group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; } -.pb-12 { - padding-bottom: 3rem !important; +.group:hover .group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; } -.pl-12 { - padding-left: 3rem !important; +.group:hover .group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; } -.pt-14 { - padding-top: 3.5rem !important; +.group:hover .group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; } -.pr-14 { - padding-right: 3.5rem !important; +.group:hover .group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; } -.pb-14 { - padding-bottom: 3.5rem !important; +.group:hover .group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; } -.pl-14 { - padding-left: 3.5rem !important; +.group:hover .group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; } -.pt-16 { - padding-top: 4rem !important; +.group:hover .group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; } -.pr-16 { - padding-right: 4rem !important; +.group:hover .group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; } -.pb-16 { - padding-bottom: 4rem !important; +.focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; } -.pl-16 { - padding-left: 4rem !important; +.focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; } -.pt-20 { - padding-top: 5rem !important; +.focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; } -.pr-20 { - padding-right: 5rem !important; +.focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; } -.pb-20 { - padding-bottom: 5rem !important; +.focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; } -.pl-20 { - padding-left: 5rem !important; +.focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; } -.pt-24 { - padding-top: 6rem !important; +.focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; } -.pr-24 { - padding-right: 6rem !important; +.focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; } -.pb-24 { - padding-bottom: 6rem !important; +.focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; } -.pl-24 { - padding-left: 6rem !important; +.focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; } -.pt-28 { - padding-top: 7rem !important; +.focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; } -.pr-28 { - padding-right: 7rem !important; +.focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; } -.pb-28 { - padding-bottom: 7rem !important; +.focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; } -.pl-28 { - padding-left: 7rem !important; +.focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; } -.pt-32 { - padding-top: 8rem !important; +.focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; } -.pr-32 { - padding-right: 8rem !important; +.hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; } -.pb-32 { - padding-bottom: 8rem !important; +.hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; } -.pl-32 { - padding-left: 8rem !important; +.hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; } -.pt-36 { - padding-top: 9rem !important; +.hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; } -.pr-36 { - padding-right: 9rem !important; +.hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; } -.pb-36 { - padding-bottom: 9rem !important; +.hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; } -.pl-36 { - padding-left: 9rem !important; +.hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; } -.pt-40 { - padding-top: 10rem !important; +.hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; } -.pr-40 { - padding-right: 10rem !important; +.hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; } -.pb-40 { - padding-bottom: 10rem !important; +.hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; } -.pl-40 { - padding-left: 10rem !important; +.hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; } -.pt-44 { - padding-top: 11rem !important; +.hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; } -.pr-44 { - padding-right: 11rem !important; +.hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; } -.pb-44 { - padding-bottom: 11rem !important; +.hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; } -.pl-44 { - padding-left: 11rem !important; +.hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; } -.pt-48 { - padding-top: 12rem !important; +.focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; } -.pr-48 { - padding-right: 12rem !important; +.focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; } -.pb-48 { - padding-bottom: 12rem !important; +.focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; } -.pl-48 { - padding-left: 12rem !important; +.focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; } -.pt-52 { - padding-top: 13rem !important; +.focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; } -.pr-52 { - padding-right: 13rem !important; +.focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; } -.pb-52 { - padding-bottom: 13rem !important; +.focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; } -.pl-52 { - padding-left: 13rem !important; +.focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; } -.pt-56 { - padding-top: 14rem !important; +.focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; } -.pr-56 { - padding-right: 14rem !important; +.focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; } -.pb-56 { - padding-bottom: 14rem !important; +.focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; } -.pl-56 { - padding-left: 14rem !important; +.focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; } -.pt-60 { - padding-top: 15rem !important; +.focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; } -.pr-60 { - padding-right: 15rem !important; +.focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; } -.pb-60 { - padding-bottom: 15rem !important; +.focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; } -.pl-60 { - padding-left: 15rem !important; +.bg-transparent { + background-color: transparent !important; } -.pt-64 { - padding-top: 16rem !important; +.bg-current { + background-color: currentColor !important; } -.pr-64 { - padding-right: 16rem !important; +.bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } -.pb-64 { - padding-bottom: 16rem !important; +.bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } -.pl-64 { - padding-left: 16rem !important; +.bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } -.pt-72 { - padding-top: 18rem !important; +.bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } -.pr-72 { - padding-right: 18rem !important; +.bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } -.pb-72 { - padding-bottom: 18rem !important; +.bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } -.pl-72 { - padding-left: 18rem !important; +.bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } -.pt-80 { - padding-top: 20rem !important; +.bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } -.pr-80 { - padding-right: 20rem !important; +.bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } -.pb-80 { - padding-bottom: 20rem !important; +.bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } -.pl-80 { - padding-left: 20rem !important; +.bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } -.pt-96 { - padding-top: 24rem !important; +.bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } -.pr-96 { - padding-right: 24rem !important; +.bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } -.pb-96 { - padding-bottom: 24rem !important; +.bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } -.pl-96 { - padding-left: 24rem !important; +.bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } -.pt-px { - padding-top: 1px !important; +.bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } -.pr-px { - padding-right: 1px !important; +.bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } -.pb-px { - padding-bottom: 1px !important; +.bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } -.pl-px { - padding-left: 1px !important; +.bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } -.pt-0\.5 { - padding-top: 0.125rem !important; +.bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } -.pr-0\.5 { - padding-right: 0.125rem !important; +.bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } -.pb-0\.5 { - padding-bottom: 0.125rem !important; +.bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } -.pl-0\.5 { - padding-left: 0.125rem !important; +.bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } -.pt-1\.5 { - padding-top: 0.375rem !important; +.bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } -.pr-1\.5 { - padding-right: 0.375rem !important; +.bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } -.pb-1\.5 { - padding-bottom: 0.375rem !important; +.bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } -.pl-1\.5 { - padding-left: 0.375rem !important; +.bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } -.pt-2\.5 { - padding-top: 0.625rem !important; +.bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } -.pr-2\.5 { - padding-right: 0.625rem !important; +.bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } -.pb-2\.5 { - padding-bottom: 0.625rem !important; +.bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } -.pl-2\.5 { - padding-left: 0.625rem !important; +.bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } -.pt-3\.5 { - padding-top: 0.875rem !important; +.bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } -.pr-3\.5 { - padding-right: 0.875rem !important; +.bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } -.pb-3\.5 { - padding-bottom: 0.875rem !important; +.bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } -.pl-3\.5 { - padding-left: 0.875rem !important; +.bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } -.placeholder-transparent::placeholder { - color: transparent !important; +.bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } -.placeholder-current::placeholder { - color: currentColor !important; +.bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } -.placeholder-black::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; +.bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } -.placeholder-white::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; +.bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } -.placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; +.bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } -.placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; +.bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } -.placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; +.bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } -.placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; +.bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } -.placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; +.bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } -.placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; +.bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } -.placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; +.bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } -.placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; +.bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } -.placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; +.bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } -.placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; +.bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } -.placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; +.bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } -.placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; +.bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } -.placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; +.bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } -.placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; +.bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } -.placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; +.bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } -.placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; +.bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } -.placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; +.bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } -.placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; +.bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } -.placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; +.bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } -.placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; +.bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } -.placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; +.bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } -.placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; +.bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } -.placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; +.bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } -.placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; +.bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } -.placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; +.bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } -.placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; +.bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } -.placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; +.bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } -.placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; +.bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } -.placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; +.bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } -.placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; +.bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } -.placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; +.bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } -.placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; +.bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } -.placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; +.bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } -.placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; +.bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } -.placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; +.bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } -.placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; +.bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } -.placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; +.bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } -.placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; +.bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } -.placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; +.bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } -.placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; +.bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } -.placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; +.bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } -.placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; +.bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } -.placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; +.bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } -.placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-transparent { + background-color: transparent !important; } -.placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-current { + background-color: currentColor !important; } -.placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } -.placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } -.placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } -.placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } -.placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } -.placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } -.placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } -.placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } -.placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } -.placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } -.placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } -.placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } -.placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } -.placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } -.placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } -.placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } -.placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } -.placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } -.placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } -.placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } -.placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } -.placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } -.placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } -.placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } -.placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } -.placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } -.placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } -.placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } -.placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } -.placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } -.placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } -.placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } -.placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } -.placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } -.placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-transparent:focus::placeholder { - color: transparent !important; +.group:hover .group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-current:focus::placeholder { - color: currentColor !important; +.group:hover .group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; +.group:hover .group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-transparent:focus-within { + background-color: transparent !important; } -.focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-current:focus-within { + background-color: currentColor !important; } -.focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; +.focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0 !important; +.focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05 !important; +.focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1 !important; +.focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2 !important; +.focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25 !important; +.focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3 !important; +.focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4 !important; +.focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5 !important; +.focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6 !important; +.focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7 !important; +.focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75 !important; +.focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8 !important; +.focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9 !important; +.focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95 !important; +.focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } -.placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1 !important; +.focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0 !important; +.focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05 !important; +.focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1 !important; +.focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2 !important; +.focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25 !important; +.focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3 !important; +.focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4 !important; +.focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5 !important; +.focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6 !important; +.focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7 !important; +.focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75 !important; +.focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8 !important; +.focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9 !important; +.focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95 !important; +.focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } -.focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; +.focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } -.pointer-events-none { - pointer-events: none !important; +.focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } -.pointer-events-auto { - pointer-events: auto !important; +.focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } -.static { - position: static !important; +.focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } -.fixed { - position: fixed !important; +.focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } -.absolute { - position: absolute !important; +.focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } -.relative { - position: relative !important; +.focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } -.sticky { - position: sticky !important; +.focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } -.inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; +.focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } -.inset-1 { - top: 0.25rem !important; - right: 0.25rem !important; - bottom: 0.25rem !important; - left: 0.25rem !important; +.focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } -.inset-2 { - top: 0.5rem !important; - right: 0.5rem !important; - bottom: 0.5rem !important; - left: 0.5rem !important; +.focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } -.inset-3 { - top: 0.75rem !important; - right: 0.75rem !important; - bottom: 0.75rem !important; - left: 0.75rem !important; +.focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } -.inset-4 { - top: 1rem !important; - right: 1rem !important; - bottom: 1rem !important; - left: 1rem !important; +.focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } -.inset-5 { - top: 1.25rem !important; - right: 1.25rem !important; - bottom: 1.25rem !important; - left: 1.25rem !important; +.focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } -.inset-6 { - top: 1.5rem !important; - right: 1.5rem !important; - bottom: 1.5rem !important; - left: 1.5rem !important; +.focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } -.inset-7 { - top: 1.75rem !important; - right: 1.75rem !important; - bottom: 1.75rem !important; - left: 1.75rem !important; +.focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } -.inset-8 { - top: 2rem !important; - right: 2rem !important; - bottom: 2rem !important; - left: 2rem !important; +.focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } -.inset-9 { - top: 2.25rem !important; - right: 2.25rem !important; - bottom: 2.25rem !important; - left: 2.25rem !important; +.focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } -.inset-10 { - top: 2.5rem !important; - right: 2.5rem !important; - bottom: 2.5rem !important; - left: 2.5rem !important; +.hover\:bg-transparent:hover { + background-color: transparent !important; } -.inset-11 { - top: 2.75rem !important; - right: 2.75rem !important; - bottom: 2.75rem !important; - left: 2.75rem !important; +.hover\:bg-current:hover { + background-color: currentColor !important; } -.inset-12 { - top: 3rem !important; - right: 3rem !important; - bottom: 3rem !important; - left: 3rem !important; +.hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } -.inset-14 { - top: 3.5rem !important; - right: 3.5rem !important; - bottom: 3.5rem !important; - left: 3.5rem !important; +.hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } -.inset-16 { - top: 4rem !important; - right: 4rem !important; - bottom: 4rem !important; - left: 4rem !important; +.hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } -.inset-20 { - top: 5rem !important; - right: 5rem !important; - bottom: 5rem !important; - left: 5rem !important; +.hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } -.inset-24 { - top: 6rem !important; - right: 6rem !important; - bottom: 6rem !important; - left: 6rem !important; +.hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } -.inset-28 { - top: 7rem !important; - right: 7rem !important; - bottom: 7rem !important; - left: 7rem !important; +.hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } -.inset-32 { - top: 8rem !important; - right: 8rem !important; - bottom: 8rem !important; - left: 8rem !important; +.hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } -.inset-36 { - top: 9rem !important; - right: 9rem !important; - bottom: 9rem !important; - left: 9rem !important; +.hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } -.inset-40 { - top: 10rem !important; - right: 10rem !important; - bottom: 10rem !important; - left: 10rem !important; +.hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } -.inset-44 { - top: 11rem !important; - right: 11rem !important; - bottom: 11rem !important; - left: 11rem !important; +.hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } -.inset-48 { - top: 12rem !important; - right: 12rem !important; - bottom: 12rem !important; - left: 12rem !important; +.hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } -.inset-52 { - top: 13rem !important; - right: 13rem !important; - bottom: 13rem !important; - left: 13rem !important; +.hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } -.inset-56 { - top: 14rem !important; - right: 14rem !important; - bottom: 14rem !important; - left: 14rem !important; +.hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } -.inset-60 { - top: 15rem !important; - right: 15rem !important; - bottom: 15rem !important; - left: 15rem !important; +.hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } -.inset-64 { - top: 16rem !important; - right: 16rem !important; - bottom: 16rem !important; - left: 16rem !important; +.hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } -.inset-72 { - top: 18rem !important; - right: 18rem !important; - bottom: 18rem !important; - left: 18rem !important; +.hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } -.inset-80 { - top: 20rem !important; - right: 20rem !important; - bottom: 20rem !important; - left: 20rem !important; +.hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } -.inset-96 { - top: 24rem !important; - right: 24rem !important; - bottom: 24rem !important; - left: 24rem !important; +.hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } -.inset-auto { - top: auto !important; - right: auto !important; - bottom: auto !important; - left: auto !important; +.hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } -.inset-px { - top: 1px !important; - right: 1px !important; - bottom: 1px !important; - left: 1px !important; +.hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } -.inset-0\.5 { - top: 0.125rem !important; - right: 0.125rem !important; - bottom: 0.125rem !important; - left: 0.125rem !important; +.hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } -.inset-1\.5 { - top: 0.375rem !important; - right: 0.375rem !important; - bottom: 0.375rem !important; - left: 0.375rem !important; +.hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } -.inset-2\.5 { - top: 0.625rem !important; - right: 0.625rem !important; - bottom: 0.625rem !important; - left: 0.625rem !important; +.hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } -.inset-3\.5 { - top: 0.875rem !important; - right: 0.875rem !important; - bottom: 0.875rem !important; - left: 0.875rem !important; +.hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } -.-inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; +.hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } -.-inset-1 { - top: -0.25rem !important; - right: -0.25rem !important; - bottom: -0.25rem !important; - left: -0.25rem !important; +.hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } -.-inset-2 { - top: -0.5rem !important; - right: -0.5rem !important; - bottom: -0.5rem !important; - left: -0.5rem !important; +.hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } -.-inset-3 { - top: -0.75rem !important; - right: -0.75rem !important; - bottom: -0.75rem !important; - left: -0.75rem !important; +.hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } -.-inset-4 { - top: -1rem !important; - right: -1rem !important; - bottom: -1rem !important; - left: -1rem !important; +.hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } -.-inset-5 { - top: -1.25rem !important; - right: -1.25rem !important; - bottom: -1.25rem !important; - left: -1.25rem !important; +.hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } -.-inset-6 { - top: -1.5rem !important; - right: -1.5rem !important; - bottom: -1.5rem !important; - left: -1.5rem !important; +.hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } -.-inset-7 { - top: -1.75rem !important; - right: -1.75rem !important; - bottom: -1.75rem !important; - left: -1.75rem !important; +.hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } -.-inset-8 { - top: -2rem !important; - right: -2rem !important; - bottom: -2rem !important; - left: -2rem !important; +.hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } -.-inset-9 { - top: -2.25rem !important; - right: -2.25rem !important; - bottom: -2.25rem !important; - left: -2.25rem !important; +.hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } -.-inset-10 { - top: -2.5rem !important; - right: -2.5rem !important; - bottom: -2.5rem !important; - left: -2.5rem !important; +.hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } -.-inset-11 { - top: -2.75rem !important; - right: -2.75rem !important; - bottom: -2.75rem !important; - left: -2.75rem !important; +.hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } -.-inset-12 { - top: -3rem !important; - right: -3rem !important; - bottom: -3rem !important; - left: -3rem !important; +.hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } -.-inset-14 { - top: -3.5rem !important; - right: -3.5rem !important; - bottom: -3.5rem !important; - left: -3.5rem !important; +.hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } -.-inset-16 { - top: -4rem !important; - right: -4rem !important; - bottom: -4rem !important; - left: -4rem !important; +.hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } -.-inset-20 { - top: -5rem !important; - right: -5rem !important; - bottom: -5rem !important; - left: -5rem !important; +.hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } -.-inset-24 { - top: -6rem !important; - right: -6rem !important; - bottom: -6rem !important; - left: -6rem !important; +.hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } -.-inset-28 { - top: -7rem !important; - right: -7rem !important; - bottom: -7rem !important; - left: -7rem !important; +.hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } -.-inset-32 { - top: -8rem !important; - right: -8rem !important; - bottom: -8rem !important; - left: -8rem !important; +.hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } -.-inset-36 { - top: -9rem !important; - right: -9rem !important; - bottom: -9rem !important; - left: -9rem !important; +.hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } -.-inset-40 { - top: -10rem !important; - right: -10rem !important; - bottom: -10rem !important; - left: -10rem !important; +.hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } -.-inset-44 { - top: -11rem !important; - right: -11rem !important; - bottom: -11rem !important; - left: -11rem !important; +.hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } -.-inset-48 { - top: -12rem !important; - right: -12rem !important; - bottom: -12rem !important; - left: -12rem !important; +.hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } -.-inset-52 { - top: -13rem !important; - right: -13rem !important; - bottom: -13rem !important; - left: -13rem !important; +.hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } -.-inset-56 { - top: -14rem !important; - right: -14rem !important; - bottom: -14rem !important; - left: -14rem !important; +.hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } -.-inset-60 { - top: -15rem !important; - right: -15rem !important; - bottom: -15rem !important; - left: -15rem !important; +.hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } -.-inset-64 { - top: -16rem !important; - right: -16rem !important; - bottom: -16rem !important; - left: -16rem !important; +.hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } -.-inset-72 { - top: -18rem !important; - right: -18rem !important; - bottom: -18rem !important; - left: -18rem !important; +.hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } -.-inset-80 { - top: -20rem !important; - right: -20rem !important; - bottom: -20rem !important; - left: -20rem !important; +.hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } -.-inset-96 { - top: -24rem !important; - right: -24rem !important; - bottom: -24rem !important; - left: -24rem !important; +.hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } -.-inset-px { - top: -1px !important; - right: -1px !important; - bottom: -1px !important; - left: -1px !important; +.hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } -.-inset-0\.5 { - top: -0.125rem !important; - right: -0.125rem !important; - bottom: -0.125rem !important; - left: -0.125rem !important; +.hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } -.-inset-1\.5 { - top: -0.375rem !important; - right: -0.375rem !important; - bottom: -0.375rem !important; - left: -0.375rem !important; +.hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } -.-inset-2\.5 { - top: -0.625rem !important; - right: -0.625rem !important; - bottom: -0.625rem !important; - left: -0.625rem !important; +.hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } -.-inset-3\.5 { - top: -0.875rem !important; - right: -0.875rem !important; - bottom: -0.875rem !important; - left: -0.875rem !important; +.hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } -.inset-1\/2 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; +.hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } -.inset-1\/3 { - top: 33.333333% !important; - right: 33.333333% !important; - bottom: 33.333333% !important; - left: 33.333333% !important; +.hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } -.inset-2\/3 { - top: 66.666667% !important; - right: 66.666667% !important; - bottom: 66.666667% !important; - left: 66.666667% !important; +.hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } -.inset-1\/4 { - top: 25% !important; - right: 25% !important; - bottom: 25% !important; - left: 25% !important; +.hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } -.inset-2\/4 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; +.hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } -.inset-3\/4 { - top: 75% !important; - right: 75% !important; - bottom: 75% !important; - left: 75% !important; +.hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } -.inset-full { - top: 100% !important; - right: 100% !important; - bottom: 100% !important; - left: 100% !important; +.hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } -.-inset-1\/2 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; +.hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } -.-inset-1\/3 { - top: -33.333333% !important; - right: -33.333333% !important; - bottom: -33.333333% !important; - left: -33.333333% !important; +.hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } -.-inset-2\/3 { - top: -66.666667% !important; - right: -66.666667% !important; - bottom: -66.666667% !important; - left: -66.666667% !important; +.hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } -.-inset-1\/4 { - top: -25% !important; - right: -25% !important; - bottom: -25% !important; - left: -25% !important; +.hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } -.-inset-2\/4 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; +.hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } -.-inset-3\/4 { - top: -75% !important; - right: -75% !important; - bottom: -75% !important; - left: -75% !important; +.hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } -.-inset-full { - top: -100% !important; - right: -100% !important; - bottom: -100% !important; - left: -100% !important; +.hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } -.inset-y-0 { - top: 0px !important; - bottom: 0px !important; +.hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } -.inset-x-0 { - right: 0px !important; - left: 0px !important; +.hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } -.inset-y-1 { - top: 0.25rem !important; - bottom: 0.25rem !important; +.hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } -.inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; +.hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } -.inset-y-2 { - top: 0.5rem !important; - bottom: 0.5rem !important; +.hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } -.inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; +.hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } -.inset-y-3 { - top: 0.75rem !important; - bottom: 0.75rem !important; +.hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } -.inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; +.hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } -.inset-y-4 { - top: 1rem !important; - bottom: 1rem !important; +.hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } -.inset-x-4 { - right: 1rem !important; - left: 1rem !important; +.focus\:bg-transparent:focus { + background-color: transparent !important; } -.inset-y-5 { - top: 1.25rem !important; - bottom: 1.25rem !important; +.focus\:bg-current:focus { + background-color: currentColor !important; } -.inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; +.focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } -.inset-y-6 { - top: 1.5rem !important; - bottom: 1.5rem !important; +.focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } -.inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; +.focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } -.inset-y-7 { - top: 1.75rem !important; - bottom: 1.75rem !important; +.focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } -.inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; +.focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } -.inset-y-8 { - top: 2rem !important; - bottom: 2rem !important; +.focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } -.inset-x-8 { - right: 2rem !important; - left: 2rem !important; +.focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } -.inset-y-9 { - top: 2.25rem !important; - bottom: 2.25rem !important; +.focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } -.inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; +.focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } -.inset-y-10 { - top: 2.5rem !important; - bottom: 2.5rem !important; +.focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } -.inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; +.focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } -.inset-y-11 { - top: 2.75rem !important; - bottom: 2.75rem !important; +.focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } -.inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; +.focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } -.inset-y-12 { - top: 3rem !important; - bottom: 3rem !important; +.focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } -.inset-x-12 { - right: 3rem !important; - left: 3rem !important; +.focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } -.inset-y-14 { - top: 3.5rem !important; - bottom: 3.5rem !important; +.focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } -.inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; +.focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } -.inset-y-16 { - top: 4rem !important; - bottom: 4rem !important; +.focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } -.inset-x-16 { - right: 4rem !important; - left: 4rem !important; +.focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } -.inset-y-20 { - top: 5rem !important; - bottom: 5rem !important; +.focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } -.inset-x-20 { - right: 5rem !important; - left: 5rem !important; +.focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } -.inset-y-24 { - top: 6rem !important; - bottom: 6rem !important; +.focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } -.inset-x-24 { - right: 6rem !important; - left: 6rem !important; +.focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } -.inset-y-28 { - top: 7rem !important; - bottom: 7rem !important; +.focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } -.inset-x-28 { - right: 7rem !important; - left: 7rem !important; +.focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } -.inset-y-32 { - top: 8rem !important; - bottom: 8rem !important; +.focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } -.inset-x-32 { - right: 8rem !important; - left: 8rem !important; +.focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } -.inset-y-36 { - top: 9rem !important; - bottom: 9rem !important; +.focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } -.inset-x-36 { - right: 9rem !important; - left: 9rem !important; +.focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } -.inset-y-40 { - top: 10rem !important; - bottom: 10rem !important; +.focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } -.inset-x-40 { - right: 10rem !important; - left: 10rem !important; +.focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } -.inset-y-44 { - top: 11rem !important; - bottom: 11rem !important; +.focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } -.inset-x-44 { - right: 11rem !important; - left: 11rem !important; +.focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } -.inset-y-48 { - top: 12rem !important; - bottom: 12rem !important; +.focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } -.inset-x-48 { - right: 12rem !important; - left: 12rem !important; +.focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } -.inset-y-52 { - top: 13rem !important; - bottom: 13rem !important; +.focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } -.inset-x-52 { - right: 13rem !important; - left: 13rem !important; +.focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } -.inset-y-56 { - top: 14rem !important; - bottom: 14rem !important; +.focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } -.inset-x-56 { - right: 14rem !important; - left: 14rem !important; +.focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } -.inset-y-60 { - top: 15rem !important; - bottom: 15rem !important; +.focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } -.inset-x-60 { - right: 15rem !important; - left: 15rem !important; +.focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } -.inset-y-64 { - top: 16rem !important; - bottom: 16rem !important; +.focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } -.inset-x-64 { - right: 16rem !important; - left: 16rem !important; +.focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } -.inset-y-72 { - top: 18rem !important; - bottom: 18rem !important; +.focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } -.inset-x-72 { - right: 18rem !important; - left: 18rem !important; +.focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } -.inset-y-80 { - top: 20rem !important; - bottom: 20rem !important; +.focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } -.inset-x-80 { - right: 20rem !important; - left: 20rem !important; +.focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } -.inset-y-96 { - top: 24rem !important; - bottom: 24rem !important; +.focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } -.inset-x-96 { - right: 24rem !important; - left: 24rem !important; +.focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } -.inset-y-auto { - top: auto !important; - bottom: auto !important; +.focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } -.inset-x-auto { - right: auto !important; - left: auto !important; +.focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } -.inset-y-px { - top: 1px !important; - bottom: 1px !important; +.focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } -.inset-x-px { - right: 1px !important; - left: 1px !important; +.focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } -.inset-y-0\.5 { - top: 0.125rem !important; - bottom: 0.125rem !important; +.focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } -.inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; +.focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } -.inset-y-1\.5 { - top: 0.375rem !important; - bottom: 0.375rem !important; +.focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } -.inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; +.focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } -.inset-y-2\.5 { - top: 0.625rem !important; - bottom: 0.625rem !important; +.focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } -.inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; +.focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } -.inset-y-3\.5 { - top: 0.875rem !important; - bottom: 0.875rem !important; +.focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } -.inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; +.focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } -.-inset-y-0 { - top: 0px !important; - bottom: 0px !important; +.focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } -.-inset-x-0 { - right: 0px !important; - left: 0px !important; +.focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } -.-inset-y-1 { - top: -0.25rem !important; - bottom: -0.25rem !important; +.focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } -.-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; +.focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } -.-inset-y-2 { - top: -0.5rem !important; - bottom: -0.5rem !important; +.focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } -.-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; +.focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } -.-inset-y-3 { - top: -0.75rem !important; - bottom: -0.75rem !important; +.focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } -.-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; +.focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } -.-inset-y-4 { - top: -1rem !important; - bottom: -1rem !important; +.focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } -.-inset-x-4 { - right: -1rem !important; - left: -1rem !important; +.focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } -.-inset-y-5 { - top: -1.25rem !important; - bottom: -1.25rem !important; +.focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } -.-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; +.focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } -.-inset-y-6 { - top: -1.5rem !important; - bottom: -1.5rem !important; +.focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } -.-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; +.focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } -.-inset-y-7 { - top: -1.75rem !important; - bottom: -1.75rem !important; +.focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } -.-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; +.focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } -.-inset-y-8 { - top: -2rem !important; - bottom: -2rem !important; +.focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } -.-inset-x-8 { - right: -2rem !important; - left: -2rem !important; +.focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } -.-inset-y-9 { - top: -2.25rem !important; - bottom: -2.25rem !important; +.focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } -.-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; +.focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } -.-inset-y-10 { - top: -2.5rem !important; - bottom: -2.5rem !important; +.focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } -.-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; +.bg-opacity-0 { + --tw-bg-opacity: 0 !important; } -.-inset-y-11 { - top: -2.75rem !important; - bottom: -2.75rem !important; +.bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } -.-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; +.bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } -.-inset-y-12 { - top: -3rem !important; - bottom: -3rem !important; +.bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } -.-inset-x-12 { - right: -3rem !important; - left: -3rem !important; +.bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } -.-inset-y-14 { - top: -3.5rem !important; - bottom: -3.5rem !important; +.bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } -.-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; +.bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } -.-inset-y-16 { - top: -4rem !important; - bottom: -4rem !important; +.bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } -.-inset-x-16 { - right: -4rem !important; - left: -4rem !important; +.bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } -.-inset-y-20 { - top: -5rem !important; - bottom: -5rem !important; +.bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } -.-inset-x-20 { - right: -5rem !important; - left: -5rem !important; +.bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } -.-inset-y-24 { - top: -6rem !important; - bottom: -6rem !important; +.bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } -.-inset-x-24 { - right: -6rem !important; - left: -6rem !important; +.bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } -.-inset-y-28 { - top: -7rem !important; - bottom: -7rem !important; +.bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } -.-inset-x-28 { - right: -7rem !important; - left: -7rem !important; +.bg-opacity-100 { + --tw-bg-opacity: 1 !important; } -.-inset-y-32 { - top: -8rem !important; - bottom: -8rem !important; +.group:hover .group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; } -.-inset-x-32 { - right: -8rem !important; - left: -8rem !important; +.group:hover .group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } -.-inset-y-36 { - top: -9rem !important; - bottom: -9rem !important; +.group:hover .group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } -.-inset-x-36 { - right: -9rem !important; - left: -9rem !important; +.group:hover .group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } -.-inset-y-40 { - top: -10rem !important; - bottom: -10rem !important; +.group:hover .group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } -.-inset-x-40 { - right: -10rem !important; - left: -10rem !important; +.group:hover .group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } -.-inset-y-44 { - top: -11rem !important; - bottom: -11rem !important; +.group:hover .group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } -.-inset-x-44 { - right: -11rem !important; - left: -11rem !important; +.group:hover .group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } -.-inset-y-48 { - top: -12rem !important; - bottom: -12rem !important; +.group:hover .group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } -.-inset-x-48 { - right: -12rem !important; - left: -12rem !important; +.group:hover .group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } -.-inset-y-52 { - top: -13rem !important; - bottom: -13rem !important; +.group:hover .group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } -.-inset-x-52 { - right: -13rem !important; - left: -13rem !important; +.group:hover .group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } -.-inset-y-56 { - top: -14rem !important; - bottom: -14rem !important; +.group:hover .group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } -.-inset-x-56 { - right: -14rem !important; - left: -14rem !important; +.group:hover .group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } -.-inset-y-60 { - top: -15rem !important; - bottom: -15rem !important; +.group:hover .group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; } -.-inset-x-60 { - right: -15rem !important; - left: -15rem !important; +.focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; } -.-inset-y-64 { - top: -16rem !important; - bottom: -16rem !important; +.focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; } -.-inset-x-64 { - right: -16rem !important; - left: -16rem !important; +.focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; } -.-inset-y-72 { - top: -18rem !important; - bottom: -18rem !important; +.focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; } -.-inset-x-72 { - right: -18rem !important; - left: -18rem !important; +.focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; } -.-inset-y-80 { - top: -20rem !important; - bottom: -20rem !important; +.focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; } -.-inset-x-80 { - right: -20rem !important; - left: -20rem !important; +.focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; } -.-inset-y-96 { - top: -24rem !important; - bottom: -24rem !important; +.focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; } -.-inset-x-96 { - right: -24rem !important; - left: -24rem !important; +.focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; } -.-inset-y-px { - top: -1px !important; - bottom: -1px !important; +.focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; } -.-inset-x-px { - right: -1px !important; - left: -1px !important; +.focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; } -.-inset-y-0\.5 { - top: -0.125rem !important; - bottom: -0.125rem !important; +.focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; } -.-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; +.focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; } -.-inset-y-1\.5 { - top: -0.375rem !important; - bottom: -0.375rem !important; +.focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; } -.-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; +.focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; } -.-inset-y-2\.5 { - top: -0.625rem !important; - bottom: -0.625rem !important; +.hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; } -.-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; +.hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; } -.-inset-y-3\.5 { - top: -0.875rem !important; - bottom: -0.875rem !important; +.hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; } -.-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; +.hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; } -.inset-y-1\/2 { - top: 50% !important; - bottom: 50% !important; +.hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; } -.inset-x-1\/2 { - right: 50% !important; - left: 50% !important; +.hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; } -.inset-y-1\/3 { - top: 33.333333% !important; - bottom: 33.333333% !important; +.hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; } -.inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; +.hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; } -.inset-y-2\/3 { - top: 66.666667% !important; - bottom: 66.666667% !important; +.hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; } -.inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; +.hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; } -.inset-y-1\/4 { - top: 25% !important; - bottom: 25% !important; +.hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; } -.inset-x-1\/4 { - right: 25% !important; - left: 25% !important; +.hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; } -.inset-y-2\/4 { - top: 50% !important; - bottom: 50% !important; +.hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; } -.inset-x-2\/4 { - right: 50% !important; - left: 50% !important; +.hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; } -.inset-y-3\/4 { - top: 75% !important; - bottom: 75% !important; +.hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; } -.inset-x-3\/4 { - right: 75% !important; - left: 75% !important; +.focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; } -.inset-y-full { - top: 100% !important; - bottom: 100% !important; +.focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; } -.inset-x-full { - right: 100% !important; - left: 100% !important; +.focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; } -.-inset-y-1\/2 { - top: -50% !important; - bottom: -50% !important; +.focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; } -.-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; +.focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; } -.-inset-y-1\/3 { - top: -33.333333% !important; - bottom: -33.333333% !important; +.focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; } -.-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; +.focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; } -.-inset-y-2\/3 { - top: -66.666667% !important; - bottom: -66.666667% !important; +.focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; } -.-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; +.focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; } -.-inset-y-1\/4 { - top: -25% !important; - bottom: -25% !important; +.focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; } -.-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; +.focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; } -.-inset-y-2\/4 { - top: -50% !important; - bottom: -50% !important; +.focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; } -.-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; +.focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; } -.-inset-y-3\/4 { - top: -75% !important; - bottom: -75% !important; +.focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; } -.-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; +.focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; } -.-inset-y-full { - top: -100% !important; - bottom: -100% !important; +.bg-none { + background-image: none !important; } -.-inset-x-full { - right: -100% !important; - left: -100% !important; +.bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; } -.top-0 { - top: 0px !important; +.bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; } -.right-0 { - right: 0px !important; +.bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; } -.bottom-0 { - bottom: 0px !important; +.bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; } -.left-0 { - left: 0px !important; +.bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; } -.top-1 { - top: 0.25rem !important; +.bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; } -.right-1 { - right: 0.25rem !important; +.bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; } -.bottom-1 { - bottom: 0.25rem !important; +.bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; } -.left-1 { - left: 0.25rem !important; +.from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.top-2 { - top: 0.5rem !important; +.from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.right-2 { - right: 0.5rem !important; +.from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.bottom-2 { - bottom: 0.5rem !important; +.from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.left-2 { - left: 0.5rem !important; +.from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } -.top-3 { - top: 0.75rem !important; +.from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } -.right-3 { - right: 0.75rem !important; +.from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } -.bottom-3 { - bottom: 0.75rem !important; +.from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } -.left-3 { - left: 0.75rem !important; +.from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } -.top-4 { - top: 1rem !important; +.from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } -.right-4 { - right: 1rem !important; +.from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } -.bottom-4 { - bottom: 1rem !important; +.from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } -.left-4 { - left: 1rem !important; +.from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } -.top-5 { - top: 1.25rem !important; +.from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } -.right-5 { - right: 1.25rem !important; +.from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } -.bottom-5 { - bottom: 1.25rem !important; +.from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } -.left-5 { - left: 1.25rem !important; +.from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } -.top-6 { - top: 1.5rem !important; +.from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } -.right-6 { - right: 1.5rem !important; +.from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } -.bottom-6 { - bottom: 1.5rem !important; +.from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } -.left-6 { - left: 1.5rem !important; +.from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } -.top-7 { - top: 1.75rem !important; +.from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } -.right-7 { - right: 1.75rem !important; +.from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } -.bottom-7 { - bottom: 1.75rem !important; +.from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } -.left-7 { - left: 1.75rem !important; +.from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } -.top-8 { - top: 2rem !important; +.from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } -.right-8 { - right: 2rem !important; +.from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } -.bottom-8 { - bottom: 2rem !important; +.from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } -.left-8 { - left: 2rem !important; +.from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } -.top-9 { - top: 2.25rem !important; +.from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } -.right-9 { - right: 2.25rem !important; +.from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } -.bottom-9 { - bottom: 2.25rem !important; +.from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } -.left-9 { - left: 2.25rem !important; +.from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } -.top-10 { - top: 2.5rem !important; +.from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } -.right-10 { - right: 2.5rem !important; +.from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } -.bottom-10 { - bottom: 2.5rem !important; +.from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } -.left-10 { - left: 2.5rem !important; +.from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } -.top-11 { - top: 2.75rem !important; +.from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } -.right-11 { - right: 2.75rem !important; +.from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } -.bottom-11 { - bottom: 2.75rem !important; +.from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } -.left-11 { - left: 2.75rem !important; +.from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } -.top-12 { - top: 3rem !important; +.from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } -.right-12 { - right: 3rem !important; +.from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } -.bottom-12 { - bottom: 3rem !important; +.from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } -.left-12 { - left: 3rem !important; +.from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } -.top-14 { - top: 3.5rem !important; +.from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } -.right-14 { - right: 3.5rem !important; +.from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } -.bottom-14 { - bottom: 3.5rem !important; +.from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } -.left-14 { - left: 3.5rem !important; +.from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } -.top-16 { - top: 4rem !important; +.from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } -.right-16 { - right: 4rem !important; +.from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } -.bottom-16 { - bottom: 4rem !important; +.from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } -.left-16 { - left: 4rem !important; +.from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } -.top-20 { - top: 5rem !important; +.from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } -.right-20 { - right: 5rem !important; +.from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } -.bottom-20 { - bottom: 5rem !important; +.from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } -.left-20 { - left: 5rem !important; +.from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } -.top-24 { - top: 6rem !important; +.from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } -.right-24 { - right: 6rem !important; +.from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } -.bottom-24 { - bottom: 6rem !important; +.from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } -.left-24 { - left: 6rem !important; +.from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } -.top-28 { - top: 7rem !important; +.from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } -.right-28 { - right: 7rem !important; +.from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } -.bottom-28 { - bottom: 7rem !important; +.from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } -.left-28 { - left: 7rem !important; +.from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } -.top-32 { - top: 8rem !important; +.from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } -.right-32 { - right: 8rem !important; +.from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } -.bottom-32 { - bottom: 8rem !important; +.from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } -.left-32 { - left: 8rem !important; +.from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } -.top-36 { - top: 9rem !important; +.from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } -.right-36 { - right: 9rem !important; +.from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } -.bottom-36 { - bottom: 9rem !important; +.from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } -.left-36 { - left: 9rem !important; +.from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } -.top-40 { - top: 10rem !important; +.from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } -.right-40 { - right: 10rem !important; +.from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } -.bottom-40 { - bottom: 10rem !important; +.from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } -.left-40 { - left: 10rem !important; +.from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } -.top-44 { - top: 11rem !important; +.from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } -.right-44 { - right: 11rem !important; +.from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } -.bottom-44 { - bottom: 11rem !important; +.from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } -.left-44 { - left: 11rem !important; +.from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } -.top-48 { - top: 12rem !important; +.from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } -.right-48 { - right: 12rem !important; +.from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } -.bottom-48 { - bottom: 12rem !important; +.from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } -.left-48 { - left: 12rem !important; +.via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.top-52 { - top: 13rem !important; +.via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.right-52 { - right: 13rem !important; +.via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.bottom-52 { - bottom: 13rem !important; +.via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.left-52 { - left: 13rem !important; +.via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } -.top-56 { - top: 14rem !important; +.via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } -.right-56 { - right: 14rem !important; +.via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } -.bottom-56 { - bottom: 14rem !important; +.via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } -.left-56 { - left: 14rem !important; +.via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } -.top-60 { - top: 15rem !important; +.via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } -.right-60 { - right: 15rem !important; +.via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } -.bottom-60 { - bottom: 15rem !important; +.via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } -.left-60 { - left: 15rem !important; +.via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } -.top-64 { - top: 16rem !important; +.via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } -.right-64 { - right: 16rem !important; +.via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } -.bottom-64 { - bottom: 16rem !important; +.via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } -.left-64 { - left: 16rem !important; +.via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } -.top-72 { - top: 18rem !important; +.via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } -.right-72 { - right: 18rem !important; +.via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } -.bottom-72 { - bottom: 18rem !important; +.via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } -.left-72 { - left: 18rem !important; +.via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } -.top-80 { - top: 20rem !important; +.via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } -.right-80 { - right: 20rem !important; +.via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } -.bottom-80 { - bottom: 20rem !important; +.via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } -.left-80 { - left: 20rem !important; +.via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } -.top-96 { - top: 24rem !important; +.via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } -.right-96 { - right: 24rem !important; +.via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } -.bottom-96 { - bottom: 24rem !important; +.via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } -.left-96 { - left: 24rem !important; +.via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } -.top-auto { - top: auto !important; +.via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } -.right-auto { - right: auto !important; +.via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } -.bottom-auto { - bottom: auto !important; +.via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } -.left-auto { - left: auto !important; +.via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } -.top-px { - top: 1px !important; +.via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } -.right-px { - right: 1px !important; +.via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } -.bottom-px { - bottom: 1px !important; +.via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } -.left-px { - left: 1px !important; +.via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } -.top-0\.5 { - top: 0.125rem !important; +.via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } -.right-0\.5 { - right: 0.125rem !important; +.via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } -.bottom-0\.5 { - bottom: 0.125rem !important; +.via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } -.left-0\.5 { - left: 0.125rem !important; +.via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } -.top-1\.5 { - top: 0.375rem !important; +.via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } -.right-1\.5 { - right: 0.375rem !important; +.via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } -.bottom-1\.5 { - bottom: 0.375rem !important; +.via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } -.left-1\.5 { - left: 0.375rem !important; +.via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } -.top-2\.5 { - top: 0.625rem !important; +.via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } -.right-2\.5 { - right: 0.625rem !important; +.via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } -.bottom-2\.5 { - bottom: 0.625rem !important; +.via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } -.left-2\.5 { - left: 0.625rem !important; +.via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } -.top-3\.5 { - top: 0.875rem !important; +.via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } -.right-3\.5 { - right: 0.875rem !important; +.via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } -.bottom-3\.5 { - bottom: 0.875rem !important; +.via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } -.left-3\.5 { - left: 0.875rem !important; +.via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } -.-top-0 { - top: 0px !important; +.via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } -.-right-0 { - right: 0px !important; +.via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } -.-bottom-0 { - bottom: 0px !important; +.via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } -.-left-0 { - left: 0px !important; +.via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } -.-top-1 { - top: -0.25rem !important; +.via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } -.-right-1 { - right: -0.25rem !important; +.via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } -.-bottom-1 { - bottom: -0.25rem !important; +.via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } -.-left-1 { - left: -0.25rem !important; +.via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } -.-top-2 { - top: -0.5rem !important; +.via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } -.-right-2 { - right: -0.5rem !important; +.via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } -.-bottom-2 { - bottom: -0.5rem !important; +.via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } -.-left-2 { - left: -0.5rem !important; +.via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } -.-top-3 { - top: -0.75rem !important; +.via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } -.-right-3 { - right: -0.75rem !important; +.via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } -.-bottom-3 { - bottom: -0.75rem !important; +.via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } -.-left-3 { - left: -0.75rem !important; +.via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } -.-top-4 { - top: -1rem !important; +.via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } -.-right-4 { - right: -1rem !important; +.via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } -.-bottom-4 { - bottom: -1rem !important; +.via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } -.-left-4 { - left: -1rem !important; +.via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } -.-top-5 { - top: -1.25rem !important; +.via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } -.-right-5 { - right: -1.25rem !important; +.via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } -.-bottom-5 { - bottom: -1.25rem !important; +.via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } -.-left-5 { - left: -1.25rem !important; +.via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } -.-top-6 { - top: -1.5rem !important; +.via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } -.-right-6 { - right: -1.5rem !important; +.via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } -.-bottom-6 { - bottom: -1.5rem !important; +.via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } -.-left-6 { - left: -1.5rem !important; +.via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } -.-top-7 { - top: -1.75rem !important; +.via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } -.-right-7 { - right: -1.75rem !important; +.via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } -.-bottom-7 { - bottom: -1.75rem !important; +.via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } -.-left-7 { - left: -1.75rem !important; +.to-transparent { + --tw-gradient-to: transparent !important; } -.-top-8 { - top: -2rem !important; +.to-current { + --tw-gradient-to: currentColor !important; } -.-right-8 { - right: -2rem !important; +.to-black { + --tw-gradient-to: #000 !important; } -.-bottom-8 { - bottom: -2rem !important; +.to-white { + --tw-gradient-to: #fff !important; } -.-left-8 { - left: -2rem !important; +.to-gray-50 { + --tw-gradient-to: #f9fafb !important; } -.-top-9 { - top: -2.25rem !important; +.to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; } -.-right-9 { - right: -2.25rem !important; +.to-gray-200 { + --tw-gradient-to: #e5e7eb !important; } -.-bottom-9 { - bottom: -2.25rem !important; +.to-gray-300 { + --tw-gradient-to: #d1d5db !important; } -.-left-9 { - left: -2.25rem !important; +.to-gray-400 { + --tw-gradient-to: #9ca3af !important; } -.-top-10 { - top: -2.5rem !important; +.to-gray-500 { + --tw-gradient-to: #6b7280 !important; } -.-right-10 { - right: -2.5rem !important; +.to-gray-600 { + --tw-gradient-to: #4b5563 !important; } -.-bottom-10 { - bottom: -2.5rem !important; +.to-gray-700 { + --tw-gradient-to: #374151 !important; } -.-left-10 { - left: -2.5rem !important; +.to-gray-800 { + --tw-gradient-to: #1f2937 !important; } -.-top-11 { - top: -2.75rem !important; +.to-gray-900 { + --tw-gradient-to: #111827 !important; } -.-right-11 { - right: -2.75rem !important; +.to-red-50 { + --tw-gradient-to: #fef2f2 !important; } -.-bottom-11 { - bottom: -2.75rem !important; +.to-red-100 { + --tw-gradient-to: #fee2e2 !important; } -.-left-11 { - left: -2.75rem !important; +.to-red-200 { + --tw-gradient-to: #fecaca !important; } -.-top-12 { - top: -3rem !important; +.to-red-300 { + --tw-gradient-to: #fca5a5 !important; } -.-right-12 { - right: -3rem !important; +.to-red-400 { + --tw-gradient-to: #f87171 !important; } -.-bottom-12 { - bottom: -3rem !important; +.to-red-500 { + --tw-gradient-to: #ef4444 !important; } -.-left-12 { - left: -3rem !important; +.to-red-600 { + --tw-gradient-to: #dc2626 !important; } -.-top-14 { - top: -3.5rem !important; +.to-red-700 { + --tw-gradient-to: #b91c1c !important; } -.-right-14 { - right: -3.5rem !important; +.to-red-800 { + --tw-gradient-to: #991b1b !important; } -.-bottom-14 { - bottom: -3.5rem !important; +.to-red-900 { + --tw-gradient-to: #7f1d1d !important; } -.-left-14 { - left: -3.5rem !important; +.to-yellow-50 { + --tw-gradient-to: #fffbeb !important; } -.-top-16 { - top: -4rem !important; +.to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; } -.-right-16 { - right: -4rem !important; +.to-yellow-200 { + --tw-gradient-to: #fde68a !important; } -.-bottom-16 { - bottom: -4rem !important; +.to-yellow-300 { + --tw-gradient-to: #fcd34d !important; } -.-left-16 { - left: -4rem !important; +.to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; } -.-top-20 { - top: -5rem !important; +.to-yellow-500 { + --tw-gradient-to: #f59e0b !important; } -.-right-20 { - right: -5rem !important; +.to-yellow-600 { + --tw-gradient-to: #d97706 !important; } -.-bottom-20 { - bottom: -5rem !important; +.to-yellow-700 { + --tw-gradient-to: #b45309 !important; } -.-left-20 { - left: -5rem !important; +.to-yellow-800 { + --tw-gradient-to: #92400e !important; } -.-top-24 { - top: -6rem !important; +.to-yellow-900 { + --tw-gradient-to: #78350f !important; } -.-right-24 { - right: -6rem !important; +.to-green-50 { + --tw-gradient-to: #ecfdf5 !important; } -.-bottom-24 { - bottom: -6rem !important; +.to-green-100 { + --tw-gradient-to: #d1fae5 !important; } -.-left-24 { - left: -6rem !important; +.to-green-200 { + --tw-gradient-to: #a7f3d0 !important; } -.-top-28 { - top: -7rem !important; +.to-green-300 { + --tw-gradient-to: #6ee7b7 !important; } -.-right-28 { - right: -7rem !important; +.to-green-400 { + --tw-gradient-to: #34d399 !important; } -.-bottom-28 { - bottom: -7rem !important; +.to-green-500 { + --tw-gradient-to: #10b981 !important; } -.-left-28 { - left: -7rem !important; +.to-green-600 { + --tw-gradient-to: #059669 !important; } -.-top-32 { - top: -8rem !important; +.to-green-700 { + --tw-gradient-to: #047857 !important; } -.-right-32 { - right: -8rem !important; +.to-green-800 { + --tw-gradient-to: #065f46 !important; } -.-bottom-32 { - bottom: -8rem !important; +.to-green-900 { + --tw-gradient-to: #064e3b !important; } -.-left-32 { - left: -8rem !important; +.to-blue-50 { + --tw-gradient-to: #eff6ff !important; } -.-top-36 { - top: -9rem !important; +.to-blue-100 { + --tw-gradient-to: #dbeafe !important; } -.-right-36 { - right: -9rem !important; +.to-blue-200 { + --tw-gradient-to: #bfdbfe !important; } -.-bottom-36 { - bottom: -9rem !important; +.to-blue-300 { + --tw-gradient-to: #93c5fd !important; } -.-left-36 { - left: -9rem !important; +.to-blue-400 { + --tw-gradient-to: #60a5fa !important; } -.-top-40 { - top: -10rem !important; +.to-blue-500 { + --tw-gradient-to: #3b82f6 !important; } -.-right-40 { - right: -10rem !important; +.to-blue-600 { + --tw-gradient-to: #2563eb !important; } -.-bottom-40 { - bottom: -10rem !important; +.to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; } -.-left-40 { - left: -10rem !important; +.to-blue-800 { + --tw-gradient-to: #1e40af !important; } -.-top-44 { - top: -11rem !important; +.to-blue-900 { + --tw-gradient-to: #1e3a8a !important; } -.-right-44 { - right: -11rem !important; +.to-indigo-50 { + --tw-gradient-to: #eef2ff !important; } -.-bottom-44 { - bottom: -11rem !important; +.to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; } -.-left-44 { - left: -11rem !important; +.to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; } -.-top-48 { - top: -12rem !important; +.to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; } -.-right-48 { - right: -12rem !important; +.to-indigo-400 { + --tw-gradient-to: #818cf8 !important; } -.-bottom-48 { - bottom: -12rem !important; +.to-indigo-500 { + --tw-gradient-to: #6366f1 !important; } -.-left-48 { - left: -12rem !important; +.to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; } -.-top-52 { - top: -13rem !important; +.to-indigo-700 { + --tw-gradient-to: #4338ca !important; } -.-right-52 { - right: -13rem !important; +.to-indigo-800 { + --tw-gradient-to: #3730a3 !important; } -.-bottom-52 { - bottom: -13rem !important; +.to-indigo-900 { + --tw-gradient-to: #312e81 !important; } -.-left-52 { - left: -13rem !important; +.to-purple-50 { + --tw-gradient-to: #f5f3ff !important; } -.-top-56 { - top: -14rem !important; +.to-purple-100 { + --tw-gradient-to: #ede9fe !important; } -.-right-56 { - right: -14rem !important; +.to-purple-200 { + --tw-gradient-to: #ddd6fe !important; } -.-bottom-56 { - bottom: -14rem !important; +.to-purple-300 { + --tw-gradient-to: #c4b5fd !important; } -.-left-56 { - left: -14rem !important; +.to-purple-400 { + --tw-gradient-to: #a78bfa !important; } -.-top-60 { - top: -15rem !important; +.to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; } -.-right-60 { - right: -15rem !important; +.to-purple-600 { + --tw-gradient-to: #7c3aed !important; } -.-bottom-60 { - bottom: -15rem !important; +.to-purple-700 { + --tw-gradient-to: #6d28d9 !important; } -.-left-60 { - left: -15rem !important; +.to-purple-800 { + --tw-gradient-to: #5b21b6 !important; } -.-top-64 { - top: -16rem !important; +.to-purple-900 { + --tw-gradient-to: #4c1d95 !important; } -.-right-64 { - right: -16rem !important; +.to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; } -.-bottom-64 { - bottom: -16rem !important; +.to-pink-100 { + --tw-gradient-to: #fce7f3 !important; } -.-left-64 { - left: -16rem !important; +.to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; } -.-top-72 { - top: -18rem !important; +.to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; } -.-right-72 { - right: -18rem !important; +.to-pink-400 { + --tw-gradient-to: #f472b6 !important; } -.-bottom-72 { - bottom: -18rem !important; +.to-pink-500 { + --tw-gradient-to: #ec4899 !important; } -.-left-72 { - left: -18rem !important; +.to-pink-600 { + --tw-gradient-to: #db2777 !important; } -.-top-80 { - top: -20rem !important; +.to-pink-700 { + --tw-gradient-to: #be185d !important; } -.-right-80 { - right: -20rem !important; +.to-pink-800 { + --tw-gradient-to: #9d174d !important; } -.-bottom-80 { - bottom: -20rem !important; +.to-pink-900 { + --tw-gradient-to: #831843 !important; } -.-left-80 { - left: -20rem !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; } -.-top-96 { - top: -24rem !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; } -.-right-96 { - right: -24rem !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; } -.-bottom-96 { - bottom: -24rem !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; } -.-left-96 { - left: -24rem !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; } -.-top-px { - top: -1px !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; } -.-right-px { - right: -1px !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; } -.-bottom-px { - bottom: -1px !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; } -.-left-px { - left: -1px !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; } -.-top-0\.5 { - top: -0.125rem !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; } -.-right-0\.5 { - right: -0.125rem !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; } -.-bottom-0\.5 { - bottom: -0.125rem !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; } -.-left-0\.5 { - left: -0.125rem !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; } -.-top-1\.5 { - top: -0.375rem !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; } -.-right-1\.5 { - right: -0.375rem !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; } -.-bottom-1\.5 { - bottom: -0.375rem !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; } -.-left-1\.5 { - left: -0.375rem !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; } -.-top-2\.5 { - top: -0.625rem !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; } -.-right-2\.5 { - right: -0.625rem !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; } -.-bottom-2\.5 { - bottom: -0.625rem !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; } -.-left-2\.5 { - left: -0.625rem !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; } -.-top-3\.5 { - top: -0.875rem !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; } -.-right-3\.5 { - right: -0.875rem !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; } -.-bottom-3\.5 { - bottom: -0.875rem !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; } -.-left-3\.5 { - left: -0.875rem !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; } -.top-1\/2 { - top: 50% !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; } -.right-1\/2 { - right: 50% !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; } -.bottom-1\/2 { - bottom: 50% !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; } -.left-1\/2 { - left: 50% !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; } -.top-1\/3 { - top: 33.333333% !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; } -.right-1\/3 { - right: 33.333333% !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; } -.bottom-1\/3 { - bottom: 33.333333% !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; } -.left-1\/3 { - left: 33.333333% !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; } -.top-2\/3 { - top: 66.666667% !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; } -.right-2\/3 { - right: 66.666667% !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; } -.bottom-2\/3 { - bottom: 66.666667% !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; } -.left-2\/3 { - left: 66.666667% !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; } -.top-1\/4 { - top: 25% !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; } -.right-1\/4 { - right: 25% !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; } -.bottom-1\/4 { - bottom: 25% !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; } -.left-1\/4 { - left: 25% !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; } -.top-2\/4 { - top: 50% !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; } -.right-2\/4 { - right: 50% !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; } -.bottom-2\/4 { - bottom: 50% !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; } -.left-2\/4 { - left: 50% !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; } -.top-3\/4 { - top: 75% !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; } -.right-3\/4 { - right: 75% !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; } -.bottom-3\/4 { - bottom: 75% !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; } -.left-3\/4 { - left: 75% !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; } -.top-full { - top: 100% !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; } -.right-full { - right: 100% !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; } -.bottom-full { - bottom: 100% !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; } -.left-full { - left: 100% !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; } -.-top-1\/2 { - top: -50% !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; } -.-right-1\/2 { - right: -50% !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; } -.-bottom-1\/2 { - bottom: -50% !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; } -.-left-1\/2 { - left: -50% !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; } -.-top-1\/3 { - top: -33.333333% !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; } -.-right-1\/3 { - right: -33.333333% !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; } -.-bottom-1\/3 { - bottom: -33.333333% !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; } -.-left-1\/3 { - left: -33.333333% !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; } -.-top-2\/3 { - top: -66.666667% !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; } -.-right-2\/3 { - right: -66.666667% !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; } -.-bottom-2\/3 { - bottom: -66.666667% !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; } -.-left-2\/3 { - left: -66.666667% !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; } -.-top-1\/4 { - top: -25% !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; } -.-right-1\/4 { - right: -25% !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; } -.-bottom-1\/4 { - bottom: -25% !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; } -.-left-1\/4 { - left: -25% !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; } -.-top-2\/4 { - top: -50% !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; } -.-right-2\/4 { - right: -50% !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; } -.-bottom-2\/4 { - bottom: -50% !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; } -.-left-2\/4 { - left: -50% !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; } -.-top-3\/4 { - top: -75% !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; } -.-right-3\/4 { - right: -75% !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; } -.-bottom-3\/4 { - bottom: -75% !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; } -.-left-3\/4 { - left: -75% !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; } -.-top-full { - top: -100% !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; } -.-right-full { - right: -100% !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; } -.-bottom-full { - bottom: -100% !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; } -.-left-full { - left: -100% !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; } -.resize-none { - resize: none !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; } -.resize-y { - resize: vertical !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; } -.resize-x { - resize: horizontal !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; } -.resize { - resize: both !important; +.hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -* { - --tw-shadow: 0 0 #0000; +.hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } -.shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } -.shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } -.shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } -.shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } -.shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } -.group:hover .group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } -.group:hover .group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } -.group:hover .group-hover\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } -.group:hover .group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } -.group:hover .group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } -.group:hover .group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } -.group:hover .group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } -.group:hover .group-hover\:shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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-within\:shadow-md:focus-within { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } -.hover\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } -.hover\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } -.hover\:shadow-md:hover { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } -.hover\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } -.hover\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } -.hover\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } -.hover\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } -.hover\:shadow-none:hover { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-md:focus { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-none:focus { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; +.hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } -* { - --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgba(59, 130, 246, 0.5); - --tw-ring-offset-shadow: 0 0 #0000; - --tw-ring-shadow: 0 0 #0000; +.hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } -.ring-0 { - --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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +.hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } -.ring-1 { - --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +.hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } -.ring-2 { - --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +.hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } -.ring-4 { - --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +.hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } -.ring-8 { - --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +.hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } -.ring { - --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; +.hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } -.ring-inset { - --tw-ring-inset: inset !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-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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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-within\:ring-inset:focus-within { - --tw-ring-inset: inset !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\: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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-1: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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-2: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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-4: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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-8: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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring: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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-inset:focus { - --tw-ring-inset: inset !important; +.hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } -.ring-offset-transparent { - --tw-ring-offset-color: transparent !important; +.hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } -.ring-offset-current { - --tw-ring-offset-color: currentColor !important; +.hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } -.ring-offset-black { - --tw-ring-offset-color: #000 !important; +.hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } -.ring-offset-white { - --tw-ring-offset-color: #fff !important; +.hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } -.ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb !important; +.hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } -.ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6 !important; +.hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } -.ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb !important; +.hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } -.ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db !important; +.hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } -.ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af !important; +.hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } -.ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280 !important; +.hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } -.ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563 !important; +.hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } -.ring-offset-gray-700 { - --tw-ring-offset-color: #374151 !important; +.hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } -.ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937 !important; +.hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } -.ring-offset-gray-900 { - --tw-ring-offset-color: #111827 !important; +.hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } -.ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2 !important; +.hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } -.ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2 !important; +.hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } -.ring-offset-red-200 { - --tw-ring-offset-color: #fecaca !important; +.hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } -.ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5 !important; +.hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } -.ring-offset-red-400 { - --tw-ring-offset-color: #f87171 !important; +.hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } -.ring-offset-red-500 { - --tw-ring-offset-color: #ef4444 !important; +.hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } -.ring-offset-red-600 { - --tw-ring-offset-color: #dc2626 !important; +.hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; } -.ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c !important; +.hover\:to-current:hover { + --tw-gradient-to: currentColor !important; } -.ring-offset-red-800 { - --tw-ring-offset-color: #991b1b !important; +.hover\:to-black:hover { + --tw-gradient-to: #000 !important; } -.ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d !important; +.hover\:to-white:hover { + --tw-gradient-to: #fff !important; } -.ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb !important; +.hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; } -.ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7 !important; +.hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; } -.ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a !important; +.hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; } -.ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d !important; +.hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; } -.ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24 !important; +.hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; } -.ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b !important; +.hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; } -.ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706 !important; +.hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; } -.ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309 !important; +.hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; } -.ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e !important; +.hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; } -.ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f !important; +.hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; } -.ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5 !important; +.hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; } -.ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5 !important; +.hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; } -.ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0 !important; +.hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; } -.ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7 !important; +.hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; } -.ring-offset-green-400 { - --tw-ring-offset-color: #34d399 !important; +.hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; } -.ring-offset-green-500 { - --tw-ring-offset-color: #10b981 !important; +.hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; } -.ring-offset-green-600 { - --tw-ring-offset-color: #059669 !important; +.hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; } -.ring-offset-green-700 { - --tw-ring-offset-color: #047857 !important; +.hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; } -.ring-offset-green-800 { - --tw-ring-offset-color: #065f46 !important; +.hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; } -.ring-offset-green-900 { - --tw-ring-offset-color: #064e3b !important; +.hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; } -.ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff !important; +.hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; } -.ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe !important; +.hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; } -.ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe !important; +.hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; } -.ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd !important; +.hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; } -.ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa !important; +.hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; } -.ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6 !important; +.hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; } -.ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb !important; +.hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; } -.ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8 !important; +.hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; } -.ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af !important; +.hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; } -.ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a !important; +.hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; } -.ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff !important; +.hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; } -.ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff !important; +.hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; } -.ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe !important; +.hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; } -.ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc !important; +.hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; } -.ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8 !important; +.hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; } -.ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1 !important; +.hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; } -.ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5 !important; +.hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; } -.ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca !important; +.hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; } -.ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3 !important; +.hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; } -.ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81 !important; +.hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; } -.ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff !important; +.hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; } -.ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe !important; +.hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; } -.ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe !important; +.hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; } -.ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd !important; +.hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; } -.ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa !important; +.hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; } -.ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6 !important; +.hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; } -.ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed !important; +.hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; } -.ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9 !important; +.hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; } -.ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6 !important; +.hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; } -.ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95 !important; +.hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; } -.ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8 !important; +.hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; } -.ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3 !important; +.hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; } -.ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8 !important; +.hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; } -.ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4 !important; +.hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; } -.ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6 !important; +.hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; } -.ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899 !important; -} +.hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; +} -.ring-offset-pink-600 { - --tw-ring-offset-color: #db2777 !important; +.hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; } -.ring-offset-pink-700 { - --tw-ring-offset-color: #be185d !important; +.hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; } -.ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d !important; +.hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; } -.ring-offset-pink-900 { - --tw-ring-offset-color: #831843 !important; +.hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; } -.focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent !important; +.hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; } -.focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor !important; +.hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; } -.focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000 !important; +.hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; } -.focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff !important; +.hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; } -.focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb !important; +.hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; } -.focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6 !important; +.hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; } -.focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb !important; +.hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; } -.focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db !important; +.hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; } -.focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af !important; +.hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; } -.focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280 !important; +.hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; } -.focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563 !important; +.hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; } -.focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151 !important; +.hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; } -.focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937 !important; +.hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; } -.focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827 !important; +.hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; } -.focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2 !important; +.hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; } -.focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2 !important; +.hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; } -.focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca !important; +.hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; } -.focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5 !important; +.hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; } -.focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171 !important; +.hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; } -.focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444 !important; +.hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; } -.focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626 !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; } -.focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c !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; } -.focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b !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; } -.focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d !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; } -.focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb !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; } -.focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7 !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; } -.focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a !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; } -.focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d !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; } -.focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24 !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; } -.focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b !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; } -.focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706 !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; } -.focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309 !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; } -.focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e !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; } -.focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f !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; } -.focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5 !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; } -.focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5 !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; } -.focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0 !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; } -.focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7 !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; } -.focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399 !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; } -.focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981 !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; } -.focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669 !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; } -.focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857 !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; } -.focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46 !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; } -.focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b !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; } -.focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff !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; } -.focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe !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; } -.focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe !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; } -.focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd !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; } -.focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa !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; } -.focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6 !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; } -.focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb !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; } -.focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8 !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; } -.focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af !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; } -.focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a !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; } -.focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff !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; } -.focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff !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; } -.focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe !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; } -.focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc !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; } -.focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8 !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; } -.focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1 !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; } -.focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5 !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; } -.focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca !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; } -.focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3 !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; } -.focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81 !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; } -.focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff !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; } -.focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe !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; } -.focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe !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; } -.focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd !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; } -.focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa !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; } -.focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6 !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; } -.focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed !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; } -.focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9 !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; } -.focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6 !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; } -.focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95 !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; } -.focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8 !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; } -.focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3 !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; } -.focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8 !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; } -.focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4 !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; } -.focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6 !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; } -.focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899 !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; } -.focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777 !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; } -.focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d !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; } -.focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d !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; } -.focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843 !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; } -.focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent !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; } -.focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor !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; } -.focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000 !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; } -.focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff !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; } -.focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb !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; } -.focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6 !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; } -.focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb !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; } -.focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db !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; } -.focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af !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; } -.focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280 !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; } -.focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563 !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; } -.focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151 !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; } -.focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937 !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; } -.focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827 !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; } -.focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2 !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; } -.focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2 !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; } -.focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca !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; } -.focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5 !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; } -.focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171 !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; } -.focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444 !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; } -.focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626 !important; +.focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c !important; +.focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b !important; +.focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d !important; +.focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb !important; +.focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } -.focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7 !important; +.focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } -.focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a !important; +.focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } -.focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d !important; +.focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } -.focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24 !important; +.focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } -.focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b !important; +.focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } -.focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706 !important; +.focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } -.focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309 !important; +.focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } -.focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e !important; +.focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } -.focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f !important; +.focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } -.focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5 !important; +.focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } -.focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5 !important; +.focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } -.focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0 !important; +.focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } -.focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7 !important; +.focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } -.focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399 !important; +.focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } -.focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981 !important; +.focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } -.focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669 !important; +.focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } -.focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857 !important; +.focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } -.focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46 !important; +.focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } -.focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b !important; +.focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } -.focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff !important; +.focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } -.focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe !important; +.focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } -.focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe !important; +.focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } -.focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd !important; +.focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } -.focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa !important; +.focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } -.focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6 !important; +.focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } -.focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb !important; +.focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } -.focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8 !important; +.focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } -.focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af !important; +.focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } -.focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a !important; +.focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } -.focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff !important; +.focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } -.focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff !important; +.focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } -.focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe !important; +.focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } -.focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc !important; +.focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } -.focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8 !important; +.focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } -.focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1 !important; +.focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } -.focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5 !important; +.focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } -.focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca !important; +.focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } -.focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3 !important; +.focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } -.focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81 !important; +.focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } -.focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff !important; +.focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } -.focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe !important; +.focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } -.focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe !important; +.focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } -.focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd !important; +.focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } -.focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa !important; +.focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } -.focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6 !important; +.focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } -.focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed !important; +.focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } -.focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9 !important; +.focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } -.focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6 !important; +.focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } -.focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95 !important; +.focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } -.focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8 !important; +.focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } -.focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3 !important; +.focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } -.focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8 !important; +.focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } -.focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4 !important; +.focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } -.focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6 !important; +.focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } -.focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899 !important; +.focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } -.focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777 !important; +.focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } -.focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d !important; +.focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } -.focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d !important; +.focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } -.focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843 !important; +.focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } -.ring-offset-0 { - --tw-ring-offset-width: 0px !important; +.focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } -.ring-offset-1 { - --tw-ring-offset-width: 1px !important; +.focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } -.ring-offset-2 { - --tw-ring-offset-width: 2px !important; +.focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } -.ring-offset-4 { - --tw-ring-offset-width: 4px !important; +.focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } -.ring-offset-8 { - --tw-ring-offset-width: 8px !important; +.focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } -.focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px !important; +.focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } -.focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px !important; +.focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } -.focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px !important; +.focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } -.focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px !important; +.focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } -.focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px !important; +.focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } -.focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px !important; +.focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } -.focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px !important; +.focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } -.focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px !important; +.focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } -.focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px !important; +.focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } -.focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px !important; +.focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } -.ring-transparent { - --tw-ring-color: transparent !important; +.focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } -.ring-current { - --tw-ring-color: currentColor !important; +.focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } -.ring-black { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; +.focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } -.ring-white { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; +.focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } -.ring-gray-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; +.focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } -.ring-gray-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; +.focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; } -.ring-gray-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; +.focus\:to-current:focus { + --tw-gradient-to: currentColor !important; } -.ring-gray-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; +.focus\:to-black:focus { + --tw-gradient-to: #000 !important; } -.ring-gray-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; +.focus\:to-white:focus { + --tw-gradient-to: #fff !important; } -.ring-gray-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; +.focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; } -.ring-gray-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; +.focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; } -.ring-gray-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; +.focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; } -.ring-gray-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; +.focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; } -.ring-gray-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; +.focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; } -.ring-red-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; +.focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; } -.ring-red-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; +.focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; } -.ring-red-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; +.focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; } -.ring-red-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; +.focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; } -.ring-red-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; +.focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; } -.ring-red-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; +.focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; } -.ring-red-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; +.focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; } -.ring-red-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; +.focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; } -.ring-red-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; +.focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; } -.ring-red-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; +.focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; } -.ring-yellow-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; +.focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; } -.ring-yellow-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; +.focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; } -.ring-yellow-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; +.focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; } -.ring-yellow-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; +.focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; } -.ring-yellow-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; +.focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; } -.ring-yellow-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; +.focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; } -.ring-yellow-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; +.focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; } -.ring-yellow-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; +.focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; } -.ring-yellow-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; +.focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; } -.ring-yellow-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; +.focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; } -.ring-green-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; +.focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; } -.ring-green-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; +.focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; } -.ring-green-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; +.focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; } -.ring-green-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; +.focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; } -.ring-green-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; +.focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; } -.ring-green-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; +.focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; } -.ring-green-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; +.focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; } -.ring-green-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; +.focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; } -.ring-green-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; +.focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; } -.ring-green-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; +.focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; } -.ring-blue-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; +.focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; } -.ring-blue-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; +.focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; } -.ring-blue-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; +.focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; } -.ring-blue-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; +.focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; } -.ring-blue-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; +.focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; } -.ring-blue-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; +.focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; } -.ring-blue-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; +.focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; } -.ring-blue-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; +.focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; } -.ring-blue-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; +.focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; } -.ring-blue-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; +.focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; } -.ring-indigo-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; +.focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; } -.ring-indigo-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; +.focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; } -.ring-indigo-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; +.focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; } -.ring-indigo-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; +.focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; } -.ring-indigo-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; +.focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; } -.ring-indigo-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; +.focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; } -.ring-indigo-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; +.focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; } -.ring-indigo-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; +.focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; } -.ring-indigo-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; +.focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; } -.ring-indigo-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; +.focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; } -.ring-purple-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; +.focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; } -.ring-purple-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; +.focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; } -.ring-purple-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; +.focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; } -.ring-purple-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; +.focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; } -.ring-purple-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; +.focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; } -.ring-purple-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; +.focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; } -.ring-purple-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; +.focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; } -.ring-purple-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; +.focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; } -.ring-purple-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; +.focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; } -.ring-purple-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; +.focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; } -.ring-pink-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; +.focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; } -.ring-pink-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; +.focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; } -.ring-pink-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; +.focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; } -.ring-pink-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; +.focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; } -.ring-pink-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; +.focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; } -.ring-pink-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; +.focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; } -.ring-pink-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; +.focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; } -.ring-pink-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; +.focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; } -.ring-pink-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; +.focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; } -.ring-pink-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; +.focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; } -.focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent !important; +.focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; } -.focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor !important; +.focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; } -.focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; +.focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; } -.focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; +.focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; } -.focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; +.focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; } -.focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; +.decoration-slice { + box-decoration-break: slice !important; } -.focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; +.decoration-clone { + box-decoration-break: clone !important; } -.focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; +.bg-auto { + background-size: auto !important; } -.focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; +.bg-cover { + background-size: cover !important; } -.focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; +.bg-contain { + background-size: contain !important; } -.focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; +.bg-fixed { + background-attachment: fixed !important; } -.focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; +.bg-local { + background-attachment: local !important; } -.focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; +.bg-scroll { + background-attachment: scroll !important; } -.focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; +.bg-clip-border { + background-clip: border-box !important; } -.focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; +.bg-clip-padding { + background-clip: padding-box !important; } -.focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; +.bg-clip-content { + background-clip: content-box !important; } -.focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; +.bg-clip-text { + background-clip: text !important; } -.focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; +.bg-bottom { + background-position: bottom !important; } -.focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; +.bg-center { + background-position: center !important; } -.focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; +.bg-left { + background-position: left !important; } -.focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; +.bg-left-bottom { + background-position: left bottom !important; } -.focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; +.bg-left-top { + background-position: left top !important; } -.focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; +.bg-right { + background-position: right !important; } -.focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; +.bg-right-bottom { + background-position: right bottom !important; } -.focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; +.bg-right-top { + background-position: right top !important; } -.focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; +.bg-top { + background-position: top !important; } -.focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; +.bg-repeat { + background-repeat: repeat !important; } -.focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; +.bg-no-repeat { + background-repeat: no-repeat !important; } -.focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; +.bg-repeat-x { + background-repeat: repeat-x !important; } -.focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; +.bg-repeat-y { + background-repeat: repeat-y !important; } -.focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; +.bg-repeat-round { + background-repeat: round !important; } -.focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; +.bg-repeat-space { + background-repeat: space !important; } -.focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; +.bg-origin-border { + background-origin: border-box !important; } -.focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; +.bg-origin-padding { + background-origin: padding-box !important; } -.focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; +.bg-origin-content { + background-origin: content-box !important; } -.focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; +.fill-current { + fill: currentColor !important; } -.focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; +.stroke-current { + stroke: currentColor !important; } -.focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; +.stroke-0 { + stroke-width: 0 !important; } -.focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; +.stroke-1 { + stroke-width: 1 !important; } -.focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; +.stroke-2 { + stroke-width: 2 !important; } -.focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; +.object-contain { + object-fit: contain !important; } -.focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; +.object-cover { + object-fit: cover !important; } -.focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; +.object-fill { + object-fit: fill !important; } -.focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; +.object-none { + object-fit: none !important; } -.focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; +.object-scale-down { + object-fit: scale-down !important; } -.focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; +.object-bottom { + object-position: bottom !important; } -.focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; +.object-center { + object-position: center !important; } -.focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; +.object-left { + object-position: left !important; } -.focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; +.object-left-bottom { + object-position: left bottom !important; } -.focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; +.object-left-top { + object-position: left top !important; } -.focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; +.object-right { + object-position: right !important; } -.focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; +.object-right-bottom { + object-position: right bottom !important; } -.focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; +.object-right-top { + object-position: right top !important; } -.focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; +.object-top { + object-position: top !important; } -.focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; +.p-0 { + padding: 0px !important; } -.focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; +.p-1 { + padding: 0.25rem !important; } -.focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; +.p-2 { + padding: 0.5rem !important; } -.focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; +.p-3 { + padding: 0.75rem !important; } -.focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; +.p-4 { + padding: 1rem !important; } -.focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; +.p-5 { + padding: 1.25rem !important; } -.focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; +.p-6 { + padding: 1.5rem !important; } -.focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; +.p-7 { + padding: 1.75rem !important; } -.focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; +.p-8 { + padding: 2rem !important; } -.focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; +.p-9 { + padding: 2.25rem !important; } -.focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; +.p-10 { + padding: 2.5rem !important; } -.focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; +.p-11 { + padding: 2.75rem !important; } -.focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; +.p-12 { + padding: 3rem !important; } -.focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; +.p-14 { + padding: 3.5rem !important; } -.focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; +.p-16 { + padding: 4rem !important; } -.focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; +.p-20 { + padding: 5rem !important; } -.focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; +.p-24 { + padding: 6rem !important; } -.focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; +.p-28 { + padding: 7rem !important; } -.focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; +.p-32 { + padding: 8rem !important; } -.focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; +.p-36 { + padding: 9rem !important; } -.focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; +.p-40 { + padding: 10rem !important; } -.focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; +.p-44 { + padding: 11rem !important; } -.focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; +.p-48 { + padding: 12rem !important; } -.focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; +.p-52 { + padding: 13rem !important; } -.focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; +.p-56 { + padding: 14rem !important; } -.focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; +.p-60 { + padding: 15rem !important; } -.focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; +.p-64 { + padding: 16rem !important; } -.focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; +.p-72 { + padding: 18rem !important; } -.focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; +.p-80 { + padding: 20rem !important; } -.focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; +.p-96 { + padding: 24rem !important; } -.focus\:ring-transparent:focus { - --tw-ring-color: transparent !important; +.p-px { + padding: 1px !important; } -.focus\:ring-current:focus { - --tw-ring-color: currentColor !important; +.p-0\.5 { + padding: 0.125rem !important; } -.focus\:ring-black:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; +.p-1\.5 { + padding: 0.375rem !important; } -.focus\:ring-white:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; +.p-2\.5 { + padding: 0.625rem !important; } -.focus\:ring-gray-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; +.p-3\.5 { + padding: 0.875rem !important; } -.focus\:ring-gray-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; +.px-0 { + padding-left: 0px !important; + padding-right: 0px !important; } -.focus\:ring-gray-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; +.px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; } -.focus\:ring-gray-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; +.px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; } -.focus\:ring-gray-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; +.px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; } -.focus\:ring-gray-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; +.px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; } -.focus\:ring-gray-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; +.px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; } -.focus\:ring-gray-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; +.px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; } -.focus\:ring-gray-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; +.px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; } -.focus\:ring-gray-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; +.px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; } -.focus\:ring-red-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; +.px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; } -.focus\:ring-red-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; +.px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; } -.focus\:ring-red-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; +.px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; } -.focus\:ring-red-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; +.px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; } -.focus\:ring-red-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; +.px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; } -.focus\:ring-red-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; +.px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; } -.focus\:ring-red-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; +.px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; } -.focus\:ring-red-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; +.px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; } -.focus\:ring-red-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; +.px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; } -.focus\:ring-red-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; +.px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; } -.focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; +.px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; } -.focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; +.px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; } -.focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; +.px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; } -.focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; +.px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; } -.focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; +.px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; } -.focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; +.px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; } -.focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; +.px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; } -.focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; +.px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; } -.focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; +.px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; } -.focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; +.px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; } -.focus\:ring-green-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; +.px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; } -.focus\:ring-green-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; +.px-px { + padding-left: 1px !important; + padding-right: 1px !important; } -.focus\:ring-green-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; +.px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; } -.focus\:ring-green-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; +.px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; } -.focus\:ring-green-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; +.px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; } -.focus\:ring-green-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; +.px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; } -.focus\:ring-green-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; +.py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; } -.focus\:ring-green-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } -.focus\:ring-green-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } -.focus\:ring-green-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; +.py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; } -.focus\:ring-blue-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; +.py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } -.focus\:ring-blue-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; +.py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; } -.focus\:ring-blue-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; +.py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } -.focus\:ring-blue-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; +.py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; } -.focus\:ring-blue-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; +.py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; } -.focus\:ring-blue-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; +.py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; } -.focus\:ring-blue-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; +.py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; } -.focus\:ring-blue-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; +.py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; } -.focus\:ring-blue-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; +.py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } -.focus\:ring-blue-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; +.py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; } -.focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; +.py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; } -.focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; +.py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; } -.focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; +.py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; } -.focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; +.py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; } -.focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; +.py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; } -.focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; +.py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; } -.focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; +.py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; } -.focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; +.py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; } -.focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; +.py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; } -.focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; +.py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; } -.focus\:ring-purple-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; +.py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; } -.focus\:ring-purple-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; +.py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; } -.focus\:ring-purple-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; +.py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; } -.focus\:ring-purple-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; +.py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; } -.focus\:ring-purple-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; +.py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; } -.focus\:ring-purple-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; +.py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; } -.focus\:ring-purple-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; +.py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; } -.focus\:ring-purple-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; +.py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; } -.focus\:ring-purple-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; +.py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; } -.focus\:ring-purple-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; +.py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; } -.focus\:ring-pink-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; +.py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; } -.focus\:ring-pink-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; +.pt-0 { + padding-top: 0px !important; } -.focus\:ring-pink-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; +.pt-1 { + padding-top: 0.25rem !important; } -.focus\:ring-pink-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; +.pt-2 { + padding-top: 0.5rem !important; } -.focus\:ring-pink-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; +.pt-3 { + padding-top: 0.75rem !important; } -.focus\:ring-pink-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; +.pt-4 { + padding-top: 1rem !important; } -.focus\:ring-pink-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; +.pt-5 { + padding-top: 1.25rem !important; } -.focus\:ring-pink-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; +.pt-6 { + padding-top: 1.5rem !important; } -.focus\:ring-pink-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; +.pt-7 { + padding-top: 1.75rem !important; } -.focus\:ring-pink-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; +.pt-8 { + padding-top: 2rem !important; } -.ring-opacity-0 { - --tw-ring-opacity: 0 !important; +.pt-9 { + padding-top: 2.25rem !important; } -.ring-opacity-5 { - --tw-ring-opacity: 0.05 !important; +.pt-10 { + padding-top: 2.5rem !important; } -.ring-opacity-10 { - --tw-ring-opacity: 0.1 !important; +.pt-11 { + padding-top: 2.75rem !important; } -.ring-opacity-20 { - --tw-ring-opacity: 0.2 !important; +.pt-12 { + padding-top: 3rem !important; } -.ring-opacity-25 { - --tw-ring-opacity: 0.25 !important; +.pt-14 { + padding-top: 3.5rem !important; } -.ring-opacity-30 { - --tw-ring-opacity: 0.3 !important; +.pt-16 { + padding-top: 4rem !important; } -.ring-opacity-40 { - --tw-ring-opacity: 0.4 !important; +.pt-20 { + padding-top: 5rem !important; } -.ring-opacity-50 { - --tw-ring-opacity: 0.5 !important; +.pt-24 { + padding-top: 6rem !important; } -.ring-opacity-60 { - --tw-ring-opacity: 0.6 !important; +.pt-28 { + padding-top: 7rem !important; } -.ring-opacity-70 { - --tw-ring-opacity: 0.7 !important; +.pt-32 { + padding-top: 8rem !important; } -.ring-opacity-75 { - --tw-ring-opacity: 0.75 !important; +.pt-36 { + padding-top: 9rem !important; } -.ring-opacity-80 { - --tw-ring-opacity: 0.8 !important; +.pt-40 { + padding-top: 10rem !important; } -.ring-opacity-90 { - --tw-ring-opacity: 0.9 !important; +.pt-44 { + padding-top: 11rem !important; } -.ring-opacity-95 { - --tw-ring-opacity: 0.95 !important; +.pt-48 { + padding-top: 12rem !important; } -.ring-opacity-100 { - --tw-ring-opacity: 1 !important; +.pt-52 { + padding-top: 13rem !important; } -.focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0 !important; +.pt-56 { + padding-top: 14rem !important; } -.focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05 !important; +.pt-60 { + padding-top: 15rem !important; } -.focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1 !important; +.pt-64 { + padding-top: 16rem !important; } -.focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2 !important; +.pt-72 { + padding-top: 18rem !important; } -.focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25 !important; +.pt-80 { + padding-top: 20rem !important; } -.focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3 !important; +.pt-96 { + padding-top: 24rem !important; } -.focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4 !important; +.pt-px { + padding-top: 1px !important; } -.focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5 !important; +.pt-0\.5 { + padding-top: 0.125rem !important; } -.focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6 !important; +.pt-1\.5 { + padding-top: 0.375rem !important; } -.focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7 !important; +.pt-2\.5 { + padding-top: 0.625rem !important; } -.focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75 !important; +.pt-3\.5 { + padding-top: 0.875rem !important; } -.focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8 !important; +.pr-0 { + padding-right: 0px !important; } -.focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9 !important; +.pr-1 { + padding-right: 0.25rem !important; } -.focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95 !important; +.pr-2 { + padding-right: 0.5rem !important; } -.focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1 !important; +.pr-3 { + padding-right: 0.75rem !important; } -.focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0 !important; +.pr-4 { + padding-right: 1rem !important; } -.focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05 !important; +.pr-5 { + padding-right: 1.25rem !important; } -.focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1 !important; +.pr-6 { + padding-right: 1.5rem !important; } -.focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2 !important; +.pr-7 { + padding-right: 1.75rem !important; } -.focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25 !important; +.pr-8 { + padding-right: 2rem !important; } -.focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3 !important; +.pr-9 { + padding-right: 2.25rem !important; } -.focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4 !important; +.pr-10 { + padding-right: 2.5rem !important; } -.focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5 !important; +.pr-11 { + padding-right: 2.75rem !important; } -.focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6 !important; +.pr-12 { + padding-right: 3rem !important; } -.focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7 !important; +.pr-14 { + padding-right: 3.5rem !important; } -.focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75 !important; +.pr-16 { + padding-right: 4rem !important; } -.focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8 !important; +.pr-20 { + padding-right: 5rem !important; } -.focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9 !important; +.pr-24 { + padding-right: 6rem !important; } -.focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95 !important; +.pr-28 { + padding-right: 7rem !important; } -.focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1 !important; +.pr-32 { + padding-right: 8rem !important; } -.fill-current { - fill: currentColor !important; +.pr-36 { + padding-right: 9rem !important; } -.stroke-current { - stroke: currentColor !important; +.pr-40 { + padding-right: 10rem !important; } -.stroke-0 { - stroke-width: 0 !important; +.pr-44 { + padding-right: 11rem !important; } -.stroke-1 { - stroke-width: 1 !important; +.pr-48 { + padding-right: 12rem !important; } -.stroke-2 { - stroke-width: 2 !important; +.pr-52 { + padding-right: 13rem !important; } -.table-auto { - table-layout: auto !important; +.pr-56 { + padding-right: 14rem !important; } -.table-fixed { - table-layout: fixed !important; +.pr-60 { + padding-right: 15rem !important; +} + +.pr-64 { + padding-right: 16rem !important; +} + +.pr-72 { + padding-right: 18rem !important; +} + +.pr-80 { + padding-right: 20rem !important; +} + +.pr-96 { + padding-right: 24rem !important; +} + +.pr-px { + padding-right: 1px !important; +} + +.pr-0\.5 { + padding-right: 0.125rem !important; +} + +.pr-1\.5 { + padding-right: 0.375rem !important; +} + +.pr-2\.5 { + padding-right: 0.625rem !important; +} + +.pr-3\.5 { + padding-right: 0.875rem !important; +} + +.pb-0 { + padding-bottom: 0px !important; +} + +.pb-1 { + padding-bottom: 0.25rem !important; +} + +.pb-2 { + padding-bottom: 0.5rem !important; +} + +.pb-3 { + padding-bottom: 0.75rem !important; +} + +.pb-4 { + padding-bottom: 1rem !important; +} + +.pb-5 { + padding-bottom: 1.25rem !important; +} + +.pb-6 { + padding-bottom: 1.5rem !important; +} + +.pb-7 { + padding-bottom: 1.75rem !important; +} + +.pb-8 { + padding-bottom: 2rem !important; +} + +.pb-9 { + padding-bottom: 2.25rem !important; +} + +.pb-10 { + padding-bottom: 2.5rem !important; +} + +.pb-11 { + padding-bottom: 2.75rem !important; +} + +.pb-12 { + padding-bottom: 3rem !important; +} + +.pb-14 { + padding-bottom: 3.5rem !important; +} + +.pb-16 { + padding-bottom: 4rem !important; +} + +.pb-20 { + padding-bottom: 5rem !important; +} + +.pb-24 { + padding-bottom: 6rem !important; +} + +.pb-28 { + padding-bottom: 7rem !important; +} + +.pb-32 { + padding-bottom: 8rem !important; +} + +.pb-36 { + padding-bottom: 9rem !important; +} + +.pb-40 { + padding-bottom: 10rem !important; +} + +.pb-44 { + padding-bottom: 11rem !important; +} + +.pb-48 { + padding-bottom: 12rem !important; +} + +.pb-52 { + padding-bottom: 13rem !important; +} + +.pb-56 { + padding-bottom: 14rem !important; +} + +.pb-60 { + padding-bottom: 15rem !important; +} + +.pb-64 { + padding-bottom: 16rem !important; +} + +.pb-72 { + padding-bottom: 18rem !important; +} + +.pb-80 { + padding-bottom: 20rem !important; +} + +.pb-96 { + padding-bottom: 24rem !important; +} + +.pb-px { + padding-bottom: 1px !important; +} + +.pb-0\.5 { + padding-bottom: 0.125rem !important; +} + +.pb-1\.5 { + padding-bottom: 0.375rem !important; +} + +.pb-2\.5 { + padding-bottom: 0.625rem !important; +} + +.pb-3\.5 { + padding-bottom: 0.875rem !important; +} + +.pl-0 { + padding-left: 0px !important; +} + +.pl-1 { + padding-left: 0.25rem !important; +} + +.pl-2 { + padding-left: 0.5rem !important; +} + +.pl-3 { + padding-left: 0.75rem !important; +} + +.pl-4 { + padding-left: 1rem !important; +} + +.pl-5 { + padding-left: 1.25rem !important; +} + +.pl-6 { + padding-left: 1.5rem !important; +} + +.pl-7 { + padding-left: 1.75rem !important; +} + +.pl-8 { + padding-left: 2rem !important; +} + +.pl-9 { + padding-left: 2.25rem !important; +} + +.pl-10 { + padding-left: 2.5rem !important; +} + +.pl-11 { + padding-left: 2.75rem !important; +} + +.pl-12 { + padding-left: 3rem !important; +} + +.pl-14 { + padding-left: 3.5rem !important; +} + +.pl-16 { + padding-left: 4rem !important; +} + +.pl-20 { + padding-left: 5rem !important; +} + +.pl-24 { + padding-left: 6rem !important; +} + +.pl-28 { + padding-left: 7rem !important; +} + +.pl-32 { + padding-left: 8rem !important; +} + +.pl-36 { + padding-left: 9rem !important; +} + +.pl-40 { + padding-left: 10rem !important; +} + +.pl-44 { + padding-left: 11rem !important; +} + +.pl-48 { + padding-left: 12rem !important; +} + +.pl-52 { + padding-left: 13rem !important; +} + +.pl-56 { + padding-left: 14rem !important; +} + +.pl-60 { + padding-left: 15rem !important; +} + +.pl-64 { + padding-left: 16rem !important; +} + +.pl-72 { + padding-left: 18rem !important; +} + +.pl-80 { + padding-left: 20rem !important; +} + +.pl-96 { + padding-left: 24rem !important; +} + +.pl-px { + padding-left: 1px !important; +} + +.pl-0\.5 { + padding-left: 0.125rem !important; +} + +.pl-1\.5 { + padding-left: 0.375rem !important; +} + +.pl-2\.5 { + padding-left: 0.625rem !important; +} + +.pl-3\.5 { + padding-left: 0.875rem !important; } .text-left { @@ -22234,6 +22155,292 @@ video { text-align: justify !important; } +.align-baseline { + vertical-align: baseline !important; +} + +.align-top { + vertical-align: top !important; +} + +.align-middle { + vertical-align: middle !important; +} + +.align-bottom { + vertical-align: bottom !important; +} + +.align-text-top { + vertical-align: text-top !important; +} + +.align-text-bottom { + vertical-align: text-bottom !important; +} + +.font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; +} + +.font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; +} + +.font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; +} + +.text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; +} + +.text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; +} + +.text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; +} + +.text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; +} + +.text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; +} + +.text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; +} + +.text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; +} + +.text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; +} + +.text-5xl { + font-size: 3rem !important; + line-height: 1 !important; +} + +.text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; +} + +.text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; +} + +.text-8xl { + font-size: 6rem !important; + line-height: 1 !important; +} + +.text-9xl { + font-size: 8rem !important; + line-height: 1 !important; +} + +.font-thin { + font-weight: 100 !important; +} + +.font-extralight { + font-weight: 200 !important; +} + +.font-light { + font-weight: 300 !important; +} + +.font-normal { + font-weight: 400 !important; +} + +.font-medium { + font-weight: 500 !important; +} + +.font-semibold { + font-weight: 600 !important; +} + +.font-bold { + font-weight: 700 !important; +} + +.font-extrabold { + font-weight: 800 !important; +} + +.font-black { + font-weight: 900 !important; +} + +.uppercase { + text-transform: uppercase !important; +} + +.lowercase { + text-transform: lowercase !important; +} + +.capitalize { + text-transform: capitalize !important; +} + +.normal-case { + text-transform: none !important; +} + +.italic { + font-style: italic !important; +} + +.not-italic { + font-style: normal !important; +} + +.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; +} + +.normal-nums { + font-variant-numeric: normal !important; +} + +.ordinal { + --tw-ordinal: ordinal !important; +} + +.slashed-zero { + --tw-slashed-zero: slashed-zero !important; +} + +.lining-nums { + --tw-numeric-figure: lining-nums !important; +} + +.oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; +} + +.proportional-nums { + --tw-numeric-spacing: proportional-nums !important; +} + +.tabular-nums { + --tw-numeric-spacing: tabular-nums !important; +} + +.diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; +} + +.stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; +} + +.leading-3 { + line-height: .75rem !important; +} + +.leading-4 { + line-height: 1rem !important; +} + +.leading-5 { + line-height: 1.25rem !important; +} + +.leading-6 { + line-height: 1.5rem !important; +} + +.leading-7 { + line-height: 1.75rem !important; +} + +.leading-8 { + line-height: 2rem !important; +} + +.leading-9 { + line-height: 2.25rem !important; +} + +.leading-10 { + line-height: 2.5rem !important; +} + +.leading-none { + line-height: 1 !important; +} + +.leading-tight { + line-height: 1.25 !important; +} + +.leading-snug { + line-height: 1.375 !important; +} + +.leading-normal { + line-height: 1.5 !important; +} + +.leading-relaxed { + line-height: 1.625 !important; +} + +.leading-loose { + line-height: 2 !important; +} + +.tracking-tighter { + letter-spacing: -0.05em !important; +} + +.tracking-tight { + letter-spacing: -0.025em !important; +} + +.tracking-normal { + letter-spacing: 0em !important; +} + +.tracking-wide { + letter-spacing: 0.025em !important; +} + +.tracking-wider { + letter-spacing: 0.05em !important; +} + +.tracking-widest { + letter-spacing: 0.1em !important; +} + .text-transparent { color: transparent !important; } @@ -24624,44 +24831,6 @@ video { --tw-text-opacity: 1 !important; } -.truncate { - overflow: hidden !important; - text-overflow: ellipsis !important; - white-space: nowrap !important; -} - -.overflow-ellipsis { - text-overflow: ellipsis !important; -} - -.overflow-clip { - text-overflow: clip !important; -} - -.italic { - font-style: italic !important; -} - -.not-italic { - font-style: normal !important; -} - -.uppercase { - text-transform: uppercase !important; -} - -.lowercase { - text-transform: lowercase !important; -} - -.capitalize { - text-transform: capitalize !important; -} - -.normal-case { - text-transform: none !important; -} - .underline { text-decoration: underline !important; } @@ -24732,4557 +24901,4268 @@ video { -moz-osx-font-smoothing: auto !important; } -.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; +.placeholder-transparent::placeholder { + color: transparent !important; } -.normal-nums { - font-variant-numeric: normal !important; +.placeholder-current::placeholder { + color: currentColor !important; } -.ordinal { - --tw-ordinal: ordinal !important; +.placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } -.slashed-zero { - --tw-slashed-zero: slashed-zero !important; +.placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } -.lining-nums { - --tw-numeric-figure: lining-nums !important; +.placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } -.oldstyle-nums { - --tw-numeric-figure: oldstyle-nums !important; +.placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } -.proportional-nums { - --tw-numeric-spacing: proportional-nums !important; +.placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } -.tabular-nums { - --tw-numeric-spacing: tabular-nums !important; +.placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } -.diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions !important; +.placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } -.stacked-fractions { - --tw-numeric-fraction: stacked-fractions !important; +.placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } -.tracking-tighter { - letter-spacing: -0.05em !important; +.placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } -.tracking-tight { - letter-spacing: -0.025em !important; +.placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } -.tracking-normal { - letter-spacing: 0em !important; +.placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } -.tracking-wide { - letter-spacing: 0.025em !important; +.placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } -.tracking-wider { - letter-spacing: 0.05em !important; +.placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } -.tracking-widest { - letter-spacing: 0.1em !important; +.placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } -.select-none { - user-select: none !important; +.placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } -.select-text { - user-select: text !important; +.placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } -.select-all { - user-select: all !important; +.placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } -.select-auto { - user-select: auto !important; +.placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } -.align-baseline { - vertical-align: baseline !important; +.placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } -.align-top { - vertical-align: top !important; +.placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } -.align-middle { - vertical-align: middle !important; +.placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } -.align-bottom { - vertical-align: bottom !important; +.placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } -.align-text-top { - vertical-align: text-top !important; +.placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } -.align-text-bottom { - vertical-align: text-bottom !important; +.placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } -.visible { - visibility: visible !important; +.placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } -.invisible { - visibility: hidden !important; +.placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } -.whitespace-normal { - white-space: normal !important; +.placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } -.whitespace-nowrap { - white-space: nowrap !important; +.placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } -.whitespace-pre { - white-space: pre !important; +.placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } -.whitespace-pre-line { - white-space: pre-line !important; +.placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } -.whitespace-pre-wrap { - white-space: pre-wrap !important; +.placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } -.break-normal { - overflow-wrap: normal !important; - word-break: normal !important; +.placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } -.break-words { - overflow-wrap: break-word !important; +.placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } -.break-all { - word-break: break-all !important; +.placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } -.w-0 { - width: 0px !important; +.placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } -.w-1 { - width: 0.25rem !important; +.placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } -.w-2 { - width: 0.5rem !important; +.placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } -.w-3 { - width: 0.75rem !important; +.placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } -.w-4 { - width: 1rem !important; +.placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } -.w-5 { - width: 1.25rem !important; +.placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } -.w-6 { - width: 1.5rem !important; +.placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } -.w-7 { - width: 1.75rem !important; +.placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } -.w-8 { - width: 2rem !important; +.placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } -.w-9 { - width: 2.25rem !important; +.placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } -.w-10 { - width: 2.5rem !important; +.placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } -.w-11 { - width: 2.75rem !important; +.placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } -.w-12 { - width: 3rem !important; +.placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } -.w-14 { - width: 3.5rem !important; +.placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } -.w-16 { - width: 4rem !important; +.placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } -.w-20 { - width: 5rem !important; +.placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } -.w-24 { - width: 6rem !important; +.placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } -.w-28 { - width: 7rem !important; +.placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } -.w-32 { - width: 8rem !important; +.placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } -.w-36 { - width: 9rem !important; +.placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } -.w-40 { - width: 10rem !important; +.placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } -.w-44 { - width: 11rem !important; +.placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } -.w-48 { - width: 12rem !important; +.placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } -.w-52 { - width: 13rem !important; +.placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } -.w-56 { - width: 14rem !important; +.placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } -.w-60 { - width: 15rem !important; +.placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } -.w-64 { - width: 16rem !important; +.placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } -.w-72 { - width: 18rem !important; +.placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } -.w-80 { - width: 20rem !important; +.placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } -.w-96 { - width: 24rem !important; +.placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } -.w-auto { - width: auto !important; +.placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } -.w-px { - width: 1px !important; +.placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } -.w-0\.5 { - width: 0.125rem !important; +.placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } -.w-1\.5 { - width: 0.375rem !important; +.placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } -.w-2\.5 { - width: 0.625rem !important; +.placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } -.w-3\.5 { - width: 0.875rem !important; +.placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } -.w-1\/2 { - width: 50% !important; +.placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } -.w-1\/3 { - width: 33.333333% !important; +.placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } -.w-2\/3 { - width: 66.666667% !important; +.placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } -.w-1\/4 { - width: 25% !important; +.placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } -.w-2\/4 { - width: 50% !important; +.placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } -.w-3\/4 { - width: 75% !important; +.placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } -.w-1\/5 { - width: 20% !important; +.placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } -.w-2\/5 { - width: 40% !important; +.placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } -.w-3\/5 { - width: 60% !important; +.placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } -.w-4\/5 { - width: 80% !important; +.placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } -.w-1\/6 { - width: 16.666667% !important; +.placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } -.w-2\/6 { - width: 33.333333% !important; +.placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } -.w-3\/6 { - width: 50% !important; +.focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; } -.w-4\/6 { - width: 66.666667% !important; +.focus\:placeholder-current:focus::placeholder { + color: currentColor !important; } -.w-5\/6 { - width: 83.333333% !important; +.focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } -.w-1\/12 { - width: 8.333333% !important; +.focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } -.w-2\/12 { - width: 16.666667% !important; +.focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } -.w-3\/12 { - width: 25% !important; +.focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } -.w-4\/12 { - width: 33.333333% !important; +.focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } -.w-5\/12 { - width: 41.666667% !important; +.focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } -.w-6\/12 { - width: 50% !important; +.focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } -.w-7\/12 { - width: 58.333333% !important; +.focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } -.w-8\/12 { - width: 66.666667% !important; +.focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } -.w-9\/12 { - width: 75% !important; +.focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } -.w-10\/12 { - width: 83.333333% !important; +.focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } -.w-11\/12 { - width: 91.666667% !important; +.focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } -.w-full { - width: 100% !important; +.focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } -.w-screen { - width: 100vw !important; +.focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } -.w-min { - width: min-content !important; +.focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } -.w-max { - width: max-content !important; +.focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } -.z-0 { - z-index: 0 !important; +.focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } -.z-10 { - z-index: 10 !important; +.focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } -.z-20 { - z-index: 20 !important; +.focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } -.z-30 { - z-index: 30 !important; +.focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } -.z-40 { - z-index: 40 !important; +.focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } -.z-50 { - z-index: 50 !important; +.focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } -.z-auto { - z-index: auto !important; +.focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } -.focus-within\:z-0:focus-within { - z-index: 0 !important; +.focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } -.focus-within\:z-10:focus-within { - z-index: 10 !important; +.focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } -.focus-within\:z-20:focus-within { - z-index: 20 !important; +.focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } -.focus-within\:z-30:focus-within { - z-index: 30 !important; +.focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } -.focus-within\:z-40:focus-within { - z-index: 40 !important; +.focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } -.focus-within\:z-50:focus-within { - z-index: 50 !important; +.focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } -.focus-within\:z-auto:focus-within { - z-index: auto !important; +.focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } -.focus\:z-0:focus { - z-index: 0 !important; +.focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } -.focus\:z-10:focus { - z-index: 10 !important; +.focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } -.focus\:z-20:focus { - z-index: 20 !important; +.focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } -.focus\:z-30:focus { - z-index: 30 !important; +.focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } -.focus\:z-40:focus { - z-index: 40 !important; +.focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } -.focus\:z-50:focus { - z-index: 50 !important; +.focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } -.focus\:z-auto:focus { - z-index: auto !important; +.focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } -.isolate { - isolation: isolate !important; +.focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } -.isolation-auto { - isolation: auto !important; +.focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } -.gap-0 { - gap: 0px !important; +.focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } -.gap-1 { - gap: 0.25rem !important; +.focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } -.gap-2 { - gap: 0.5rem !important; +.focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } -.gap-3 { - gap: 0.75rem !important; +.focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } -.gap-4 { - gap: 1rem !important; +.focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } -.gap-5 { - gap: 1.25rem !important; +.focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } -.gap-6 { - gap: 1.5rem !important; +.focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } -.gap-7 { - gap: 1.75rem !important; +.focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } -.gap-8 { - gap: 2rem !important; +.focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } -.gap-9 { - gap: 2.25rem !important; +.focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } -.gap-10 { - gap: 2.5rem !important; +.focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } -.gap-11 { - gap: 2.75rem !important; +.focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } -.gap-12 { - gap: 3rem !important; +.focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } -.gap-14 { - gap: 3.5rem !important; +.focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } -.gap-16 { - gap: 4rem !important; +.focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } -.gap-20 { - gap: 5rem !important; +.focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } -.gap-24 { - gap: 6rem !important; +.focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } -.gap-28 { - gap: 7rem !important; +.focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } -.gap-32 { - gap: 8rem !important; +.focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } -.gap-36 { - gap: 9rem !important; +.focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } -.gap-40 { - gap: 10rem !important; +.focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } -.gap-44 { - gap: 11rem !important; +.focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } -.gap-48 { - gap: 12rem !important; +.focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } -.gap-52 { - gap: 13rem !important; +.focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } -.gap-56 { - gap: 14rem !important; +.focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } -.gap-60 { - gap: 15rem !important; +.focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } -.gap-64 { - gap: 16rem !important; +.focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } -.gap-72 { - gap: 18rem !important; +.focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } -.gap-80 { - gap: 20rem !important; +.focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } -.gap-96 { - gap: 24rem !important; +.focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } -.gap-px { - gap: 1px !important; +.focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } -.gap-0\.5 { - gap: 0.125rem !important; +.focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } -.gap-1\.5 { - gap: 0.375rem !important; +.focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } -.gap-2\.5 { - gap: 0.625rem !important; +.focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } -.gap-3\.5 { - gap: 0.875rem !important; +.focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } -.gap-x-0 { - column-gap: 0px !important; +.focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } -.gap-x-1 { - column-gap: 0.25rem !important; +.focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } -.gap-x-2 { - column-gap: 0.5rem !important; +.focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } -.gap-x-3 { - column-gap: 0.75rem !important; +.focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } -.gap-x-4 { - column-gap: 1rem !important; +.focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } -.gap-x-5 { - column-gap: 1.25rem !important; +.focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } -.gap-x-6 { - column-gap: 1.5rem !important; +.focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } -.gap-x-7 { - column-gap: 1.75rem !important; +.focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } -.gap-x-8 { - column-gap: 2rem !important; +.placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; } -.gap-x-9 { - column-gap: 2.25rem !important; +.placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; } -.gap-x-10 { - column-gap: 2.5rem !important; +.placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; } -.gap-x-11 { - column-gap: 2.75rem !important; +.placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; } -.gap-x-12 { - column-gap: 3rem !important; +.placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; } -.gap-x-14 { - column-gap: 3.5rem !important; +.placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; } -.gap-x-16 { - column-gap: 4rem !important; +.placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; } -.gap-x-20 { - column-gap: 5rem !important; +.placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; } -.gap-x-24 { - column-gap: 6rem !important; +.placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; } -.gap-x-28 { - column-gap: 7rem !important; +.placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; } -.gap-x-32 { - column-gap: 8rem !important; +.placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; } -.gap-x-36 { - column-gap: 9rem !important; +.placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; } -.gap-x-40 { - column-gap: 10rem !important; +.placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; } -.gap-x-44 { - column-gap: 11rem !important; +.placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; } -.gap-x-48 { - column-gap: 12rem !important; +.placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; } -.gap-x-52 { - column-gap: 13rem !important; +.focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; } -.gap-x-56 { - column-gap: 14rem !important; +.focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; } -.gap-x-60 { - column-gap: 15rem !important; +.focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; } -.gap-x-64 { - column-gap: 16rem !important; +.focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; } -.gap-x-72 { - column-gap: 18rem !important; +.focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; } -.gap-x-80 { - column-gap: 20rem !important; +.focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; } -.gap-x-96 { - column-gap: 24rem !important; +.focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; } -.gap-x-px { - column-gap: 1px !important; +.focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; } -.gap-x-0\.5 { - column-gap: 0.125rem !important; +.focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; } -.gap-x-1\.5 { - column-gap: 0.375rem !important; +.focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; } -.gap-x-2\.5 { - column-gap: 0.625rem !important; +.focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; } -.gap-x-3\.5 { - column-gap: 0.875rem !important; +.focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; } -.gap-y-0 { - row-gap: 0px !important; +.focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; } -.gap-y-1 { - row-gap: 0.25rem !important; +.focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; } -.gap-y-2 { - row-gap: 0.5rem !important; +.focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; } -.gap-y-3 { - row-gap: 0.75rem !important; +.opacity-0 { + opacity: 0 !important; } -.gap-y-4 { - row-gap: 1rem !important; +.opacity-5 { + opacity: 0.05 !important; } -.gap-y-5 { - row-gap: 1.25rem !important; +.opacity-10 { + opacity: 0.1 !important; } -.gap-y-6 { - row-gap: 1.5rem !important; +.opacity-20 { + opacity: 0.2 !important; } -.gap-y-7 { - row-gap: 1.75rem !important; +.opacity-25 { + opacity: 0.25 !important; } -.gap-y-8 { - row-gap: 2rem !important; +.opacity-30 { + opacity: 0.3 !important; } -.gap-y-9 { - row-gap: 2.25rem !important; +.opacity-40 { + opacity: 0.4 !important; } -.gap-y-10 { - row-gap: 2.5rem !important; +.opacity-50 { + opacity: 0.5 !important; } -.gap-y-11 { - row-gap: 2.75rem !important; +.opacity-60 { + opacity: 0.6 !important; } -.gap-y-12 { - row-gap: 3rem !important; +.opacity-70 { + opacity: 0.7 !important; } -.gap-y-14 { - row-gap: 3.5rem !important; +.opacity-75 { + opacity: 0.75 !important; } -.gap-y-16 { - row-gap: 4rem !important; +.opacity-80 { + opacity: 0.8 !important; } -.gap-y-20 { - row-gap: 5rem !important; +.opacity-90 { + opacity: 0.9 !important; } -.gap-y-24 { - row-gap: 6rem !important; +.opacity-95 { + opacity: 0.95 !important; } -.gap-y-28 { - row-gap: 7rem !important; +.opacity-100 { + opacity: 1 !important; } -.gap-y-32 { - row-gap: 8rem !important; +.group:hover .group-hover\:opacity-0 { + opacity: 0 !important; } -.gap-y-36 { - row-gap: 9rem !important; +.group:hover .group-hover\:opacity-5 { + opacity: 0.05 !important; } -.gap-y-40 { - row-gap: 10rem !important; +.group:hover .group-hover\:opacity-10 { + opacity: 0.1 !important; } -.gap-y-44 { - row-gap: 11rem !important; +.group:hover .group-hover\:opacity-20 { + opacity: 0.2 !important; } -.gap-y-48 { - row-gap: 12rem !important; +.group:hover .group-hover\:opacity-25 { + opacity: 0.25 !important; } -.gap-y-52 { - row-gap: 13rem !important; +.group:hover .group-hover\:opacity-30 { + opacity: 0.3 !important; } -.gap-y-56 { - row-gap: 14rem !important; +.group:hover .group-hover\:opacity-40 { + opacity: 0.4 !important; } -.gap-y-60 { - row-gap: 15rem !important; +.group:hover .group-hover\:opacity-50 { + opacity: 0.5 !important; } -.gap-y-64 { - row-gap: 16rem !important; +.group:hover .group-hover\:opacity-60 { + opacity: 0.6 !important; } -.gap-y-72 { - row-gap: 18rem !important; +.group:hover .group-hover\:opacity-70 { + opacity: 0.7 !important; } -.gap-y-80 { - row-gap: 20rem !important; +.group:hover .group-hover\:opacity-75 { + opacity: 0.75 !important; } -.gap-y-96 { - row-gap: 24rem !important; +.group:hover .group-hover\:opacity-80 { + opacity: 0.8 !important; } -.gap-y-px { - row-gap: 1px !important; +.group:hover .group-hover\:opacity-90 { + opacity: 0.9 !important; } -.gap-y-0\.5 { - row-gap: 0.125rem !important; +.group:hover .group-hover\:opacity-95 { + opacity: 0.95 !important; } -.gap-y-1\.5 { - row-gap: 0.375rem !important; +.group:hover .group-hover\:opacity-100 { + opacity: 1 !important; } -.gap-y-2\.5 { - row-gap: 0.625rem !important; +.focus-within\:opacity-0:focus-within { + opacity: 0 !important; } -.gap-y-3\.5 { - row-gap: 0.875rem !important; +.focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; } -.grid-flow-row { - grid-auto-flow: row !important; +.focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; } -.grid-flow-col { - grid-auto-flow: column !important; +.focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; } -.grid-flow-row-dense { - grid-auto-flow: row dense !important; +.focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; } -.grid-flow-col-dense { - grid-auto-flow: column dense !important; +.focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; } -.grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)) !important; +.focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; } -.grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)) !important; +.focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; } -.grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)) !important; +.focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; } -.grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)) !important; +.focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; } -.grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)) !important; +.focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; } -.grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)) !important; +.focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; } -.grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)) !important; +.focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; } -.grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)) !important; +.focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; } -.grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)) !important; +.focus-within\:opacity-100:focus-within { + opacity: 1 !important; } -.grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)) !important; +.hover\:opacity-0:hover { + opacity: 0 !important; } -.grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)) !important; +.hover\:opacity-5:hover { + opacity: 0.05 !important; } -.grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)) !important; +.hover\:opacity-10:hover { + opacity: 0.1 !important; } -.grid-cols-none { - grid-template-columns: none !important; +.hover\:opacity-20:hover { + opacity: 0.2 !important; } -.auto-cols-auto { - grid-auto-columns: auto !important; +.hover\:opacity-25:hover { + opacity: 0.25 !important; } -.auto-cols-min { - grid-auto-columns: min-content !important; +.hover\:opacity-30:hover { + opacity: 0.3 !important; } -.auto-cols-max { - grid-auto-columns: max-content !important; +.hover\:opacity-40:hover { + opacity: 0.4 !important; } -.auto-cols-fr { - grid-auto-columns: minmax(0, 1fr) !important; +.hover\:opacity-50:hover { + opacity: 0.5 !important; } -.col-auto { - grid-column: auto !important; +.hover\:opacity-60:hover { + opacity: 0.6 !important; } -.col-span-1 { - grid-column: span 1 / span 1 !important; +.hover\:opacity-70:hover { + opacity: 0.7 !important; } -.col-span-2 { - grid-column: span 2 / span 2 !important; +.hover\:opacity-75:hover { + opacity: 0.75 !important; } -.col-span-3 { - grid-column: span 3 / span 3 !important; +.hover\:opacity-80:hover { + opacity: 0.8 !important; } -.col-span-4 { - grid-column: span 4 / span 4 !important; +.hover\:opacity-90:hover { + opacity: 0.9 !important; } -.col-span-5 { - grid-column: span 5 / span 5 !important; +.hover\:opacity-95:hover { + opacity: 0.95 !important; } -.col-span-6 { - grid-column: span 6 / span 6 !important; +.hover\:opacity-100:hover { + opacity: 1 !important; } -.col-span-7 { - grid-column: span 7 / span 7 !important; +.focus\:opacity-0:focus { + opacity: 0 !important; } -.col-span-8 { - grid-column: span 8 / span 8 !important; +.focus\:opacity-5:focus { + opacity: 0.05 !important; } -.col-span-9 { - grid-column: span 9 / span 9 !important; +.focus\:opacity-10:focus { + opacity: 0.1 !important; } -.col-span-10 { - grid-column: span 10 / span 10 !important; +.focus\:opacity-20:focus { + opacity: 0.2 !important; } -.col-span-11 { - grid-column: span 11 / span 11 !important; +.focus\:opacity-25:focus { + opacity: 0.25 !important; } -.col-span-12 { - grid-column: span 12 / span 12 !important; +.focus\:opacity-30:focus { + opacity: 0.3 !important; } -.col-span-full { - grid-column: 1 / -1 !important; +.focus\:opacity-40:focus { + opacity: 0.4 !important; } -.col-start-1 { - grid-column-start: 1 !important; +.focus\:opacity-50:focus { + opacity: 0.5 !important; } -.col-start-2 { - grid-column-start: 2 !important; +.focus\:opacity-60:focus { + opacity: 0.6 !important; } -.col-start-3 { - grid-column-start: 3 !important; +.focus\:opacity-70:focus { + opacity: 0.7 !important; } -.col-start-4 { - grid-column-start: 4 !important; +.focus\:opacity-75:focus { + opacity: 0.75 !important; } -.col-start-5 { - grid-column-start: 5 !important; +.focus\:opacity-80:focus { + opacity: 0.8 !important; } -.col-start-6 { - grid-column-start: 6 !important; +.focus\:opacity-90:focus { + opacity: 0.9 !important; } -.col-start-7 { - grid-column-start: 7 !important; +.focus\:opacity-95:focus { + opacity: 0.95 !important; } -.col-start-8 { - grid-column-start: 8 !important; +.focus\:opacity-100:focus { + opacity: 1 !important; } -.col-start-9 { - grid-column-start: 9 !important; +.bg-blend-normal { + background-blend-mode: normal !important; } -.col-start-10 { - grid-column-start: 10 !important; +.bg-blend-multiply { + background-blend-mode: multiply !important; } -.col-start-11 { - grid-column-start: 11 !important; +.bg-blend-screen { + background-blend-mode: screen !important; } -.col-start-12 { - grid-column-start: 12 !important; +.bg-blend-overlay { + background-blend-mode: overlay !important; } -.col-start-13 { - grid-column-start: 13 !important; +.bg-blend-darken { + background-blend-mode: darken !important; } -.col-start-auto { - grid-column-start: auto !important; +.bg-blend-lighten { + background-blend-mode: lighten !important; } -.col-end-1 { - grid-column-end: 1 !important; +.bg-blend-color-dodge { + background-blend-mode: color-dodge !important; } -.col-end-2 { - grid-column-end: 2 !important; +.bg-blend-color-burn { + background-blend-mode: color-burn !important; } -.col-end-3 { - grid-column-end: 3 !important; +.bg-blend-hard-light { + background-blend-mode: hard-light !important; } -.col-end-4 { - grid-column-end: 4 !important; +.bg-blend-soft-light { + background-blend-mode: soft-light !important; } -.col-end-5 { - grid-column-end: 5 !important; +.bg-blend-difference { + background-blend-mode: difference !important; } -.col-end-6 { - grid-column-end: 6 !important; +.bg-blend-exclusion { + background-blend-mode: exclusion !important; } -.col-end-7 { - grid-column-end: 7 !important; +.bg-blend-hue { + background-blend-mode: hue !important; } -.col-end-8 { - grid-column-end: 8 !important; +.bg-blend-saturation { + background-blend-mode: saturation !important; } -.col-end-9 { - grid-column-end: 9 !important; +.bg-blend-color { + background-blend-mode: color !important; } -.col-end-10 { - grid-column-end: 10 !important; +.bg-blend-luminosity { + background-blend-mode: luminosity !important; } -.col-end-11 { - grid-column-end: 11 !important; +.mix-blend-normal { + mix-blend-mode: normal !important; } -.col-end-12 { - grid-column-end: 12 !important; +.mix-blend-multiply { + mix-blend-mode: multiply !important; } -.col-end-13 { - grid-column-end: 13 !important; +.mix-blend-screen { + mix-blend-mode: screen !important; } -.col-end-auto { - grid-column-end: auto !important; +.mix-blend-overlay { + mix-blend-mode: overlay !important; } -.grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)) !important; +.mix-blend-darken { + mix-blend-mode: darken !important; } -.grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)) !important; +.mix-blend-lighten { + mix-blend-mode: lighten !important; } -.grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)) !important; +.mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; } -.grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)) !important; +.mix-blend-color-burn { + mix-blend-mode: color-burn !important; } -.grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)) !important; +.mix-blend-hard-light { + mix-blend-mode: hard-light !important; } -.grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)) !important; +.mix-blend-soft-light { + mix-blend-mode: soft-light !important; } -.grid-rows-none { - grid-template-rows: none !important; +.mix-blend-difference { + mix-blend-mode: difference !important; } -.auto-rows-auto { - grid-auto-rows: auto !important; +.mix-blend-exclusion { + mix-blend-mode: exclusion !important; } -.auto-rows-min { - grid-auto-rows: min-content !important; +.mix-blend-hue { + mix-blend-mode: hue !important; } -.auto-rows-max { - grid-auto-rows: max-content !important; +.mix-blend-saturation { + mix-blend-mode: saturation !important; } -.auto-rows-fr { - grid-auto-rows: minmax(0, 1fr) !important; +.mix-blend-color { + mix-blend-mode: color !important; } -.row-auto { - grid-row: auto !important; +.mix-blend-luminosity { + mix-blend-mode: luminosity !important; } -.row-span-1 { - grid-row: span 1 / span 1 !important; +* { + --tw-shadow: 0 0 #0000; } -.row-span-2 { - grid-row: span 2 / span 2 !important; +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-span-3 { - grid-row: span 3 / span 3 !important; +.shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-span-4 { - grid-row: span 4 / span 4 !important; +.shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-span-5 { - grid-row: span 5 / span 5 !important; +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-span-6 { - grid-row: span 6 / span 6 !important; +.shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-span-full { - grid-row: 1 / -1 !important; +.shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-start-1 { - grid-row-start: 1 !important; +.shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-start-2 { - grid-row-start: 2 !important; +.shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-start-3 { - grid-row-start: 3 !important; +.group:hover .group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-start-4 { - grid-row-start: 4 !important; +.group:hover .group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-start-5 { - grid-row-start: 5 !important; +.group:hover .group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-start-6 { - grid-row-start: 6 !important; +.group:hover .group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-start-7 { - grid-row-start: 7 !important; +.group:hover .group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-start-auto { - grid-row-start: auto !important; +.group:hover .group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-end-1 { - grid-row-end: 1 !important; +.group:hover .group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-end-2 { - grid-row-end: 2 !important; +.group:hover .group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-end-3 { - grid-row-end: 3 !important; +.focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-end-4 { - grid-row-end: 4 !important; +.focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-end-5 { - grid-row-end: 5 !important; +.focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-end-6 { - grid-row-end: 6 !important; +.focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-end-7 { - grid-row-end: 7 !important; +.focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.row-end-auto { - grid-row-end: auto !important; +.focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.transform { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; +.focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.transform-gpu { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; +.focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.transform-none { - transform: none !important; +.hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.origin-center { - transform-origin: center !important; +.hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.origin-top { - transform-origin: top !important; +.hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.origin-top-right { - transform-origin: top right !important; +.hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.origin-right { - transform-origin: right !important; +.hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.origin-bottom-right { - transform-origin: bottom right !important; +.hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.origin-bottom { - transform-origin: bottom !important; +.hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.origin-bottom-left { - transform-origin: bottom left !important; +.hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.origin-left { - transform-origin: left !important; +.focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.origin-top-left { - transform-origin: top left !important; +.focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.scale-0 { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; +.focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.scale-50 { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; +.focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.scale-75 { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; +.focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.scale-90 { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; +.focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.scale-95 { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; +.focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.scale-100 { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; +.focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } -.scale-105 { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; +.outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } -.scale-110 { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; +.outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; } -.scale-125 { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; +.outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; } -.scale-150 { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; +.focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } -.scale-x-0 { - --tw-scale-x: 0 !important; +.focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; } -.scale-x-50 { - --tw-scale-x: .5 !important; +.focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; } -.scale-x-75 { - --tw-scale-x: .75 !important; +.focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } -.scale-x-90 { - --tw-scale-x: .9 !important; +.focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; } -.scale-x-95 { - --tw-scale-x: .95 !important; +.focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; } -.scale-x-100 { - --tw-scale-x: 1 !important; +* { + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgba(59, 130, 246, 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; } -.scale-x-105 { - --tw-scale-x: 1.05 !important; +.ring-0 { + --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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-x-110 { - --tw-scale-x: 1.1 !important; +.ring-1 { + --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-x-125 { - --tw-scale-x: 1.25 !important; +.ring-2 { + --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-x-150 { - --tw-scale-x: 1.5 !important; +.ring-4 { + --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-y-0 { - --tw-scale-y: 0 !important; +.ring-8 { + --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-y-50 { - --tw-scale-y: .5 !important; +.ring { + --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-y-75 { - --tw-scale-y: .75 !important; +.ring-inset { + --tw-ring-inset: inset !important; } -.scale-y-90 { - --tw-scale-y: .9 !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-y-95 { - --tw-scale-y: .95 !important; +.focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-y-100 { - --tw-scale-y: 1 !important; +.focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-y-105 { - --tw-scale-y: 1.05 !important; +.focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-y-110 { - --tw-scale-y: 1.1 !important; +.focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-y-125 { - --tw-scale-y: 1.25 !important; +.focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.scale-y-150 { - --tw-scale-y: 1.5 !important; +.focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; } -.hover\:scale-0:hover { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.hover\:scale-50:hover { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; +.focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.hover\:scale-75:hover { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; +.focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.hover\:scale-90:hover { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; +.focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.hover\:scale-95:hover { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; +.focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.hover\:scale-100:hover { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; +.focus\:ring: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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.hover\:scale-105:hover { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; +.focus\:ring-inset:focus { + --tw-ring-inset: inset !important; } -.hover\:scale-110:hover { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; +.ring-transparent { + --tw-ring-color: transparent !important; } -.hover\:scale-125:hover { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; +.ring-current { + --tw-ring-color: currentColor !important; } -.hover\:scale-150:hover { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; +.ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } -.hover\:scale-x-0:hover { - --tw-scale-x: 0 !important; +.ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } -.hover\:scale-x-50:hover { - --tw-scale-x: .5 !important; +.ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } -.hover\:scale-x-75:hover { - --tw-scale-x: .75 !important; +.ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } -.hover\:scale-x-90:hover { - --tw-scale-x: .9 !important; +.ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } -.hover\:scale-x-95:hover { - --tw-scale-x: .95 !important; +.ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } -.hover\:scale-x-100:hover { - --tw-scale-x: 1 !important; +.ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } -.hover\:scale-x-105:hover { - --tw-scale-x: 1.05 !important; +.ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } -.hover\:scale-x-110:hover { - --tw-scale-x: 1.1 !important; +.ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } -.hover\:scale-x-125:hover { - --tw-scale-x: 1.25 !important; +.ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } -.hover\:scale-x-150:hover { - --tw-scale-x: 1.5 !important; +.ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } -.hover\:scale-y-0:hover { - --tw-scale-y: 0 !important; +.ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } -.hover\:scale-y-50:hover { - --tw-scale-y: .5 !important; +.ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } -.hover\:scale-y-75:hover { - --tw-scale-y: .75 !important; +.ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } -.hover\:scale-y-90:hover { - --tw-scale-y: .9 !important; +.ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } -.hover\:scale-y-95:hover { - --tw-scale-y: .95 !important; +.ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } -.hover\:scale-y-100:hover { - --tw-scale-y: 1 !important; +.ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } -.hover\:scale-y-105:hover { - --tw-scale-y: 1.05 !important; +.ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } -.hover\:scale-y-110:hover { - --tw-scale-y: 1.1 !important; +.ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } -.hover\:scale-y-125:hover { - --tw-scale-y: 1.25 !important; +.ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } -.hover\:scale-y-150:hover { - --tw-scale-y: 1.5 !important; +.ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } -.focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; +.ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } -.focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; +.ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } -.focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; +.ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } -.focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; +.ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } -.focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; +.ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } -.focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; +.ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } -.focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; +.ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } -.focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; +.ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } -.focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; +.ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } -.focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; +.ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } -.focus\:scale-x-0:focus { - --tw-scale-x: 0 !important; +.ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } -.focus\:scale-x-50:focus { - --tw-scale-x: .5 !important; +.ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } -.focus\:scale-x-75:focus { - --tw-scale-x: .75 !important; +.ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } -.focus\:scale-x-90:focus { - --tw-scale-x: .9 !important; +.ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } -.focus\:scale-x-95:focus { - --tw-scale-x: .95 !important; +.ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } -.focus\:scale-x-100:focus { - --tw-scale-x: 1 !important; +.ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } -.focus\:scale-x-105:focus { - --tw-scale-x: 1.05 !important; +.ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } -.focus\:scale-x-110:focus { - --tw-scale-x: 1.1 !important; +.ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } -.focus\:scale-x-125:focus { - --tw-scale-x: 1.25 !important; +.ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } -.focus\:scale-x-150:focus { - --tw-scale-x: 1.5 !important; +.ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } -.focus\:scale-y-0:focus { - --tw-scale-y: 0 !important; +.ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } -.focus\:scale-y-50:focus { - --tw-scale-y: .5 !important; +.ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } -.focus\:scale-y-75:focus { - --tw-scale-y: .75 !important; +.ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } -.focus\:scale-y-90:focus { - --tw-scale-y: .9 !important; +.ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } -.focus\:scale-y-95:focus { - --tw-scale-y: .95 !important; +.ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } -.focus\:scale-y-100:focus { - --tw-scale-y: 1 !important; +.ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } -.focus\:scale-y-105:focus { - --tw-scale-y: 1.05 !important; +.ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } -.focus\:scale-y-110:focus { - --tw-scale-y: 1.1 !important; +.ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } -.focus\:scale-y-125:focus { - --tw-scale-y: 1.25 !important; +.ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } -.focus\:scale-y-150:focus { - --tw-scale-y: 1.5 !important; +.ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } -.rotate-0 { - --tw-rotate: 0deg !important; +.ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } -.rotate-1 { - --tw-rotate: 1deg !important; +.ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } -.rotate-2 { - --tw-rotate: 2deg !important; +.ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } -.rotate-3 { - --tw-rotate: 3deg !important; +.ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } -.rotate-6 { - --tw-rotate: 6deg !important; +.ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } -.rotate-12 { - --tw-rotate: 12deg !important; +.ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } -.rotate-45 { - --tw-rotate: 45deg !important; +.ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } -.rotate-90 { - --tw-rotate: 90deg !important; +.ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } -.rotate-180 { - --tw-rotate: 180deg !important; +.ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } -.-rotate-180 { - --tw-rotate: -180deg !important; +.ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } -.-rotate-90 { - --tw-rotate: -90deg !important; +.ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } -.-rotate-45 { - --tw-rotate: -45deg !important; +.ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } -.-rotate-12 { - --tw-rotate: -12deg !important; +.ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } -.-rotate-6 { - --tw-rotate: -6deg !important; +.ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } -.-rotate-3 { - --tw-rotate: -3deg !important; +.ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } -.-rotate-2 { - --tw-rotate: -2deg !important; +.ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } -.-rotate-1 { - --tw-rotate: -1deg !important; +.ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } -.hover\:rotate-0:hover { - --tw-rotate: 0deg !important; +.ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } -.hover\:rotate-1:hover { - --tw-rotate: 1deg !important; +.ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } -.hover\:rotate-2:hover { - --tw-rotate: 2deg !important; +.ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } -.hover\:rotate-3:hover { - --tw-rotate: 3deg !important; +.ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } -.hover\:rotate-6:hover { - --tw-rotate: 6deg !important; +.ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } -.hover\:rotate-12:hover { - --tw-rotate: 12deg !important; +.ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } -.hover\:rotate-45:hover { - --tw-rotate: 45deg !important; +.ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } -.hover\:rotate-90:hover { - --tw-rotate: 90deg !important; +.ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } -.hover\:rotate-180:hover { - --tw-rotate: 180deg !important; +.ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } -.hover\:-rotate-180:hover { - --tw-rotate: -180deg !important; +.ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } -.hover\:-rotate-90:hover { - --tw-rotate: -90deg !important; +.ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } -.hover\:-rotate-45:hover { - --tw-rotate: -45deg !important; +.ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } -.hover\:-rotate-12:hover { - --tw-rotate: -12deg !important; +.ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } -.hover\:-rotate-6:hover { - --tw-rotate: -6deg !important; +.ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } -.hover\:-rotate-3:hover { - --tw-rotate: -3deg !important; +.focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; } -.hover\:-rotate-2:hover { - --tw-rotate: -2deg !important; +.focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; } -.hover\:-rotate-1:hover { - --tw-rotate: -1deg !important; +.focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } -.focus\:rotate-0:focus { - --tw-rotate: 0deg !important; +.focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } -.focus\:rotate-1:focus { - --tw-rotate: 1deg !important; +.focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } -.focus\:rotate-2:focus { - --tw-rotate: 2deg !important; +.focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } -.focus\:rotate-3:focus { - --tw-rotate: 3deg !important; +.focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } -.focus\:rotate-6:focus { - --tw-rotate: 6deg !important; +.focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } -.focus\:rotate-12:focus { - --tw-rotate: 12deg !important; +.focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } -.focus\:rotate-45:focus { - --tw-rotate: 45deg !important; +.focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } -.focus\:rotate-90:focus { - --tw-rotate: 90deg !important; +.focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } -.focus\:rotate-180:focus { - --tw-rotate: 180deg !important; +.focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } -.focus\:-rotate-180:focus { - --tw-rotate: -180deg !important; +.focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } -.focus\:-rotate-90:focus { - --tw-rotate: -90deg !important; +.focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } -.focus\:-rotate-45:focus { - --tw-rotate: -45deg !important; +.focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } -.focus\:-rotate-12:focus { - --tw-rotate: -12deg !important; +.focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } -.focus\:-rotate-6:focus { - --tw-rotate: -6deg !important; +.focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } -.focus\:-rotate-3:focus { - --tw-rotate: -3deg !important; +.focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } -.focus\:-rotate-2:focus { - --tw-rotate: -2deg !important; +.focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } -.focus\:-rotate-1:focus { - --tw-rotate: -1deg !important; +.focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } -.translate-x-0 { - --tw-translate-x: 0px !important; +.focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } -.translate-x-1 { - --tw-translate-x: 0.25rem !important; +.focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } -.translate-x-2 { - --tw-translate-x: 0.5rem !important; +.focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } -.translate-x-3 { - --tw-translate-x: 0.75rem !important; +.focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } -.translate-x-4 { - --tw-translate-x: 1rem !important; +.focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } -.translate-x-5 { - --tw-translate-x: 1.25rem !important; +.focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } -.translate-x-6 { - --tw-translate-x: 1.5rem !important; +.focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } -.translate-x-7 { - --tw-translate-x: 1.75rem !important; +.focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } -.translate-x-8 { - --tw-translate-x: 2rem !important; +.focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } -.translate-x-9 { - --tw-translate-x: 2.25rem !important; +.focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } -.translate-x-10 { - --tw-translate-x: 2.5rem !important; +.focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } -.translate-x-11 { - --tw-translate-x: 2.75rem !important; +.focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } -.translate-x-12 { - --tw-translate-x: 3rem !important; +.focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } -.translate-x-14 { - --tw-translate-x: 3.5rem !important; +.focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } -.translate-x-16 { - --tw-translate-x: 4rem !important; +.focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } -.translate-x-20 { - --tw-translate-x: 5rem !important; +.focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } -.translate-x-24 { - --tw-translate-x: 6rem !important; +.focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } -.translate-x-28 { - --tw-translate-x: 7rem !important; +.focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } -.translate-x-32 { - --tw-translate-x: 8rem !important; +.focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } -.translate-x-36 { - --tw-translate-x: 9rem !important; +.focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } -.translate-x-40 { - --tw-translate-x: 10rem !important; +.focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } -.translate-x-44 { - --tw-translate-x: 11rem !important; +.focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } -.translate-x-48 { - --tw-translate-x: 12rem !important; +.focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } -.translate-x-52 { - --tw-translate-x: 13rem !important; +.focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } -.translate-x-56 { - --tw-translate-x: 14rem !important; +.focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } -.translate-x-60 { - --tw-translate-x: 15rem !important; +.focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } -.translate-x-64 { - --tw-translate-x: 16rem !important; +.focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } -.translate-x-72 { - --tw-translate-x: 18rem !important; +.focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } -.translate-x-80 { - --tw-translate-x: 20rem !important; +.focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } -.translate-x-96 { - --tw-translate-x: 24rem !important; +.focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } -.translate-x-px { - --tw-translate-x: 1px !important; +.focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } -.translate-x-0\.5 { - --tw-translate-x: 0.125rem !important; +.focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } -.translate-x-1\.5 { - --tw-translate-x: 0.375rem !important; +.focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } -.translate-x-2\.5 { - --tw-translate-x: 0.625rem !important; +.focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } -.translate-x-3\.5 { - --tw-translate-x: 0.875rem !important; +.focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } -.-translate-x-0 { - --tw-translate-x: 0px !important; +.focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } -.-translate-x-1 { - --tw-translate-x: -0.25rem !important; +.focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } -.-translate-x-2 { - --tw-translate-x: -0.5rem !important; +.focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } -.-translate-x-3 { - --tw-translate-x: -0.75rem !important; +.focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } -.-translate-x-4 { - --tw-translate-x: -1rem !important; +.focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } -.-translate-x-5 { - --tw-translate-x: -1.25rem !important; +.focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } -.-translate-x-6 { - --tw-translate-x: -1.5rem !important; +.focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } -.-translate-x-7 { - --tw-translate-x: -1.75rem !important; +.focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } -.-translate-x-8 { - --tw-translate-x: -2rem !important; +.focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } -.-translate-x-9 { - --tw-translate-x: -2.25rem !important; +.focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } -.-translate-x-10 { - --tw-translate-x: -2.5rem !important; +.focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } -.-translate-x-11 { - --tw-translate-x: -2.75rem !important; +.focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } -.-translate-x-12 { - --tw-translate-x: -3rem !important; +.focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } -.-translate-x-14 { - --tw-translate-x: -3.5rem !important; +.focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } -.-translate-x-16 { - --tw-translate-x: -4rem !important; +.focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } -.-translate-x-20 { - --tw-translate-x: -5rem !important; +.focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } -.-translate-x-24 { - --tw-translate-x: -6rem !important; +.focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } -.-translate-x-28 { - --tw-translate-x: -7rem !important; +.focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } -.-translate-x-32 { - --tw-translate-x: -8rem !important; +.focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } -.-translate-x-36 { - --tw-translate-x: -9rem !important; +.focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } -.-translate-x-40 { - --tw-translate-x: -10rem !important; +.focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } -.-translate-x-44 { - --tw-translate-x: -11rem !important; +.focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } -.-translate-x-48 { - --tw-translate-x: -12rem !important; +.focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } -.-translate-x-52 { - --tw-translate-x: -13rem !important; +.focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } -.-translate-x-56 { - --tw-translate-x: -14rem !important; +.focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } -.-translate-x-60 { - --tw-translate-x: -15rem !important; +.focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } -.-translate-x-64 { - --tw-translate-x: -16rem !important; +.focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } -.-translate-x-72 { - --tw-translate-x: -18rem !important; +.focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } -.-translate-x-80 { - --tw-translate-x: -20rem !important; +.focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } -.-translate-x-96 { - --tw-translate-x: -24rem !important; +.focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; } -.-translate-x-px { - --tw-translate-x: -1px !important; +.focus\:ring-current:focus { + --tw-ring-color: currentColor !important; } -.-translate-x-0\.5 { - --tw-translate-x: -0.125rem !important; +.focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } -.-translate-x-1\.5 { - --tw-translate-x: -0.375rem !important; +.focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } -.-translate-x-2\.5 { - --tw-translate-x: -0.625rem !important; +.focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } -.-translate-x-3\.5 { - --tw-translate-x: -0.875rem !important; +.focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } -.translate-x-1\/2 { - --tw-translate-x: 50% !important; +.focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } -.translate-x-1\/3 { - --tw-translate-x: 33.333333% !important; +.focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } -.translate-x-2\/3 { - --tw-translate-x: 66.666667% !important; +.focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } -.translate-x-1\/4 { - --tw-translate-x: 25% !important; +.focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } -.translate-x-2\/4 { - --tw-translate-x: 50% !important; +.focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } -.translate-x-3\/4 { - --tw-translate-x: 75% !important; +.focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } -.translate-x-full { - --tw-translate-x: 100% !important; +.focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } -.-translate-x-1\/2 { - --tw-translate-x: -50% !important; +.focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } -.-translate-x-1\/3 { - --tw-translate-x: -33.333333% !important; +.focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } -.-translate-x-2\/3 { - --tw-translate-x: -66.666667% !important; +.focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } -.-translate-x-1\/4 { - --tw-translate-x: -25% !important; +.focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } -.-translate-x-2\/4 { - --tw-translate-x: -50% !important; +.focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } -.-translate-x-3\/4 { - --tw-translate-x: -75% !important; +.focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } -.-translate-x-full { - --tw-translate-x: -100% !important; +.focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } -.translate-y-0 { - --tw-translate-y: 0px !important; +.focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } -.translate-y-1 { - --tw-translate-y: 0.25rem !important; +.focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } -.translate-y-2 { - --tw-translate-y: 0.5rem !important; +.focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } -.translate-y-3 { - --tw-translate-y: 0.75rem !important; +.focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } -.translate-y-4 { - --tw-translate-y: 1rem !important; +.focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } -.translate-y-5 { - --tw-translate-y: 1.25rem !important; +.focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } -.translate-y-6 { - --tw-translate-y: 1.5rem !important; +.focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } -.translate-y-7 { - --tw-translate-y: 1.75rem !important; +.focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } -.translate-y-8 { - --tw-translate-y: 2rem !important; +.focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } -.translate-y-9 { - --tw-translate-y: 2.25rem !important; +.focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } -.translate-y-10 { - --tw-translate-y: 2.5rem !important; +.focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } -.translate-y-11 { - --tw-translate-y: 2.75rem !important; +.focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } -.translate-y-12 { - --tw-translate-y: 3rem !important; +.focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } -.translate-y-14 { - --tw-translate-y: 3.5rem !important; +.focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } -.translate-y-16 { - --tw-translate-y: 4rem !important; +.focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } -.translate-y-20 { - --tw-translate-y: 5rem !important; +.focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } -.translate-y-24 { - --tw-translate-y: 6rem !important; +.focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } -.translate-y-28 { - --tw-translate-y: 7rem !important; +.focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } -.translate-y-32 { - --tw-translate-y: 8rem !important; +.focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } -.translate-y-36 { - --tw-translate-y: 9rem !important; +.focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } -.translate-y-40 { - --tw-translate-y: 10rem !important; +.focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } -.translate-y-44 { - --tw-translate-y: 11rem !important; +.focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } -.translate-y-48 { - --tw-translate-y: 12rem !important; +.focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } -.translate-y-52 { - --tw-translate-y: 13rem !important; +.focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } -.translate-y-56 { - --tw-translate-y: 14rem !important; +.focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } -.translate-y-60 { - --tw-translate-y: 15rem !important; +.focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } -.translate-y-64 { - --tw-translate-y: 16rem !important; +.focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } -.translate-y-72 { - --tw-translate-y: 18rem !important; +.focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } -.translate-y-80 { - --tw-translate-y: 20rem !important; +.focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } -.translate-y-96 { - --tw-translate-y: 24rem !important; +.focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } -.translate-y-px { - --tw-translate-y: 1px !important; +.focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } -.translate-y-0\.5 { - --tw-translate-y: 0.125rem !important; +.focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } -.translate-y-1\.5 { - --tw-translate-y: 0.375rem !important; +.focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } -.translate-y-2\.5 { - --tw-translate-y: 0.625rem !important; +.focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } -.translate-y-3\.5 { - --tw-translate-y: 0.875rem !important; +.focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } -.-translate-y-0 { - --tw-translate-y: 0px !important; +.focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } -.-translate-y-1 { - --tw-translate-y: -0.25rem !important; +.focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } -.-translate-y-2 { - --tw-translate-y: -0.5rem !important; +.focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } -.-translate-y-3 { - --tw-translate-y: -0.75rem !important; +.focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } -.-translate-y-4 { - --tw-translate-y: -1rem !important; +.focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } -.-translate-y-5 { - --tw-translate-y: -1.25rem !important; +.focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } -.-translate-y-6 { - --tw-translate-y: -1.5rem !important; +.focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } -.-translate-y-7 { - --tw-translate-y: -1.75rem !important; +.focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } -.-translate-y-8 { - --tw-translate-y: -2rem !important; +.focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } -.-translate-y-9 { - --tw-translate-y: -2.25rem !important; +.focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } -.-translate-y-10 { - --tw-translate-y: -2.5rem !important; +.focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } -.-translate-y-11 { - --tw-translate-y: -2.75rem !important; +.focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } -.-translate-y-12 { - --tw-translate-y: -3rem !important; +.focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } -.-translate-y-14 { - --tw-translate-y: -3.5rem !important; +.focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } -.-translate-y-16 { - --tw-translate-y: -4rem !important; +.focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } -.-translate-y-20 { - --tw-translate-y: -5rem !important; +.focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } -.-translate-y-24 { - --tw-translate-y: -6rem !important; +.focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } -.-translate-y-28 { - --tw-translate-y: -7rem !important; +.focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } -.-translate-y-32 { - --tw-translate-y: -8rem !important; +.focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } -.-translate-y-36 { - --tw-translate-y: -9rem !important; +.focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } -.-translate-y-40 { - --tw-translate-y: -10rem !important; +.focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } -.-translate-y-44 { - --tw-translate-y: -11rem !important; +.focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } -.-translate-y-48 { - --tw-translate-y: -12rem !important; -} - -.-translate-y-52 { - --tw-translate-y: -13rem !important; +.focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } -.-translate-y-56 { - --tw-translate-y: -14rem !important; +.focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } -.-translate-y-60 { - --tw-translate-y: -15rem !important; +.focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } -.-translate-y-64 { - --tw-translate-y: -16rem !important; +.focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } -.-translate-y-72 { - --tw-translate-y: -18rem !important; +.focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } -.-translate-y-80 { - --tw-translate-y: -20rem !important; +.focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } -.-translate-y-96 { - --tw-translate-y: -24rem !important; +.focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } -.-translate-y-px { - --tw-translate-y: -1px !important; +.ring-opacity-0 { + --tw-ring-opacity: 0 !important; } -.-translate-y-0\.5 { - --tw-translate-y: -0.125rem !important; +.ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; } -.-translate-y-1\.5 { - --tw-translate-y: -0.375rem !important; +.ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; } -.-translate-y-2\.5 { - --tw-translate-y: -0.625rem !important; +.ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; } -.-translate-y-3\.5 { - --tw-translate-y: -0.875rem !important; +.ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; } -.translate-y-1\/2 { - --tw-translate-y: 50% !important; +.ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; } -.translate-y-1\/3 { - --tw-translate-y: 33.333333% !important; +.ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; } -.translate-y-2\/3 { - --tw-translate-y: 66.666667% !important; +.ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; } -.translate-y-1\/4 { - --tw-translate-y: 25% !important; +.ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; } -.translate-y-2\/4 { - --tw-translate-y: 50% !important; +.ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; } -.translate-y-3\/4 { - --tw-translate-y: 75% !important; +.ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; } -.translate-y-full { - --tw-translate-y: 100% !important; +.ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; } -.-translate-y-1\/2 { - --tw-translate-y: -50% !important; +.ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; } -.-translate-y-1\/3 { - --tw-translate-y: -33.333333% !important; +.ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; } -.-translate-y-2\/3 { - --tw-translate-y: -66.666667% !important; +.ring-opacity-100 { + --tw-ring-opacity: 1 !important; } -.-translate-y-1\/4 { - --tw-translate-y: -25% !important; +.focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; } -.-translate-y-2\/4 { - --tw-translate-y: -50% !important; +.focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; } -.-translate-y-3\/4 { - --tw-translate-y: -75% !important; +.focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; } -.-translate-y-full { - --tw-translate-y: -100% !important; +.focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; } -.hover\:translate-x-0:hover { - --tw-translate-x: 0px !important; +.focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; } -.hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem !important; +.focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; } -.hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem !important; +.focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; } -.hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem !important; +.focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; } -.hover\:translate-x-4:hover { - --tw-translate-x: 1rem !important; +.focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; } -.hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem !important; +.focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; } -.hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem !important; +.focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; } -.hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem !important; +.focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; } -.hover\:translate-x-8:hover { - --tw-translate-x: 2rem !important; +.focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; } -.hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem !important; +.focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; } -.hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem !important; +.focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; } -.hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem !important; +.focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; } -.hover\:translate-x-12:hover { - --tw-translate-x: 3rem !important; +.focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; } -.hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem !important; +.focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; } -.hover\:translate-x-16:hover { - --tw-translate-x: 4rem !important; +.focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; } -.hover\:translate-x-20:hover { - --tw-translate-x: 5rem !important; +.focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; } -.hover\:translate-x-24:hover { - --tw-translate-x: 6rem !important; +.focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; } -.hover\:translate-x-28:hover { - --tw-translate-x: 7rem !important; +.focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; } -.hover\:translate-x-32:hover { - --tw-translate-x: 8rem !important; +.focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; } -.hover\:translate-x-36:hover { - --tw-translate-x: 9rem !important; +.focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; } -.hover\:translate-x-40:hover { - --tw-translate-x: 10rem !important; +.focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; } -.hover\:translate-x-44:hover { - --tw-translate-x: 11rem !important; +.focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; } -.hover\:translate-x-48:hover { - --tw-translate-x: 12rem !important; +.focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; } -.hover\:translate-x-52:hover { - --tw-translate-x: 13rem !important; +.focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; } -.hover\:translate-x-56:hover { - --tw-translate-x: 14rem !important; +.focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; } -.hover\:translate-x-60:hover { - --tw-translate-x: 15rem !important; +.focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; } -.hover\:translate-x-64:hover { - --tw-translate-x: 16rem !important; +.ring-offset-0 { + --tw-ring-offset-width: 0px !important; } -.hover\:translate-x-72:hover { - --tw-translate-x: 18rem !important; +.ring-offset-1 { + --tw-ring-offset-width: 1px !important; } -.hover\:translate-x-80:hover { - --tw-translate-x: 20rem !important; +.ring-offset-2 { + --tw-ring-offset-width: 2px !important; } -.hover\:translate-x-96:hover { - --tw-translate-x: 24rem !important; +.ring-offset-4 { + --tw-ring-offset-width: 4px !important; } -.hover\:translate-x-px:hover { - --tw-translate-x: 1px !important; +.ring-offset-8 { + --tw-ring-offset-width: 8px !important; } -.hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem !important; +.focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; } -.hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem !important; +.focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; } -.hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem !important; +.focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; } -.hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem !important; +.focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; } -.hover\:-translate-x-0:hover { - --tw-translate-x: 0px !important; +.focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; } -.hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem !important; +.focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; } -.hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem !important; +.focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; } -.hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem !important; +.focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; } -.hover\:-translate-x-4:hover { - --tw-translate-x: -1rem !important; +.focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; } -.hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem !important; +.focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; } -.hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem !important; +.ring-offset-transparent { + --tw-ring-offset-color: transparent !important; } -.hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem !important; +.ring-offset-current { + --tw-ring-offset-color: currentColor !important; } -.hover\:-translate-x-8:hover { - --tw-translate-x: -2rem !important; +.ring-offset-black { + --tw-ring-offset-color: #000 !important; } -.hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem !important; +.ring-offset-white { + --tw-ring-offset-color: #fff !important; } -.hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem !important; +.ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; } -.hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem !important; +.ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; } -.hover\:-translate-x-12:hover { - --tw-translate-x: -3rem !important; +.ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; } -.hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem !important; +.ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; } -.hover\:-translate-x-16:hover { - --tw-translate-x: -4rem !important; +.ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; } -.hover\:-translate-x-20:hover { - --tw-translate-x: -5rem !important; +.ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; } -.hover\:-translate-x-24:hover { - --tw-translate-x: -6rem !important; +.ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; } -.hover\:-translate-x-28:hover { - --tw-translate-x: -7rem !important; +.ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; } -.hover\:-translate-x-32:hover { - --tw-translate-x: -8rem !important; +.ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; } -.hover\:-translate-x-36:hover { - --tw-translate-x: -9rem !important; +.ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; } -.hover\:-translate-x-40:hover { - --tw-translate-x: -10rem !important; +.ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; } -.hover\:-translate-x-44:hover { - --tw-translate-x: -11rem !important; +.ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; } -.hover\:-translate-x-48:hover { - --tw-translate-x: -12rem !important; +.ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; } -.hover\:-translate-x-52:hover { - --tw-translate-x: -13rem !important; +.ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; } -.hover\:-translate-x-56:hover { - --tw-translate-x: -14rem !important; +.ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; } -.hover\:-translate-x-60:hover { - --tw-translate-x: -15rem !important; +.ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; } -.hover\:-translate-x-64:hover { - --tw-translate-x: -16rem !important; +.ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; } -.hover\:-translate-x-72:hover { - --tw-translate-x: -18rem !important; +.ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; } -.hover\:-translate-x-80:hover { - --tw-translate-x: -20rem !important; +.ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; } -.hover\:-translate-x-96:hover { - --tw-translate-x: -24rem !important; +.ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; } -.hover\:-translate-x-px:hover { - --tw-translate-x: -1px !important; +.ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; } -.hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem !important; +.ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; } -.hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem !important; +.ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; } -.hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem !important; +.ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; } -.hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem !important; +.ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; } -.hover\:translate-x-1\/2:hover { - --tw-translate-x: 50% !important; +.ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; } -.hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333% !important; +.ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; } -.hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667% !important; +.ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; } -.hover\:translate-x-1\/4:hover { - --tw-translate-x: 25% !important; +.ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; } -.hover\:translate-x-2\/4:hover { - --tw-translate-x: 50% !important; +.ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; } -.hover\:translate-x-3\/4:hover { - --tw-translate-x: 75% !important; +.ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; } -.hover\:translate-x-full:hover { - --tw-translate-x: 100% !important; +.ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; } -.hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50% !important; +.ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; } -.hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333% !important; +.ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; } -.hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667% !important; +.ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; } -.hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25% !important; +.ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; } -.hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50% !important; +.ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; } -.hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75% !important; +.ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; } -.hover\:-translate-x-full:hover { - --tw-translate-x: -100% !important; +.ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; } -.hover\:translate-y-0:hover { - --tw-translate-y: 0px !important; +.ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; } -.hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem !important; +.ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; } -.hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem !important; +.ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; } -.hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem !important; +.ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; } -.hover\:translate-y-4:hover { - --tw-translate-y: 1rem !important; +.ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; } -.hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem !important; +.ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; } -.hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem !important; +.ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; } -.hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem !important; +.ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; } -.hover\:translate-y-8:hover { - --tw-translate-y: 2rem !important; +.ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; } -.hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem !important; +.ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; } -.hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem !important; +.ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; } -.hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem !important; +.ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; } -.hover\:translate-y-12:hover { - --tw-translate-y: 3rem !important; +.ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; } -.hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem !important; +.ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; } -.hover\:translate-y-16:hover { - --tw-translate-y: 4rem !important; +.ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; } -.hover\:translate-y-20:hover { - --tw-translate-y: 5rem !important; +.ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; } -.hover\:translate-y-24:hover { - --tw-translate-y: 6rem !important; +.ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; } -.hover\:translate-y-28:hover { - --tw-translate-y: 7rem !important; +.ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; } -.hover\:translate-y-32:hover { - --tw-translate-y: 8rem !important; +.ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; } -.hover\:translate-y-36:hover { - --tw-translate-y: 9rem !important; +.ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; } -.hover\:translate-y-40:hover { - --tw-translate-y: 10rem !important; +.ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; } -.hover\:translate-y-44:hover { - --tw-translate-y: 11rem !important; +.ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; } -.hover\:translate-y-48:hover { - --tw-translate-y: 12rem !important; +.ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; } -.hover\:translate-y-52:hover { - --tw-translate-y: 13rem !important; +.ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; } -.hover\:translate-y-56:hover { - --tw-translate-y: 14rem !important; +.ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; } -.hover\:translate-y-60:hover { - --tw-translate-y: 15rem !important; +.ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; } -.hover\:translate-y-64:hover { - --tw-translate-y: 16rem !important; +.ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; } -.hover\:translate-y-72:hover { - --tw-translate-y: 18rem !important; +.ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; } -.hover\:translate-y-80:hover { - --tw-translate-y: 20rem !important; +.ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; } -.hover\:translate-y-96:hover { - --tw-translate-y: 24rem !important; +.ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; } -.hover\:translate-y-px:hover { - --tw-translate-y: 1px !important; +.ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; } -.hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem !important; +.ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; } -.hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem !important; +.ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; } -.hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem !important; +.ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; } -.hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem !important; +.ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; } -.hover\:-translate-y-0:hover { - --tw-translate-y: 0px !important; +.ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; } -.hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem !important; +.ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; } -.hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem !important; +.ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; } -.hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem !important; +.ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; } -.hover\:-translate-y-4:hover { - --tw-translate-y: -1rem !important; +.ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; } -.hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem !important; +.ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; } -.hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem !important; +.focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; } -.hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem !important; +.focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; } -.hover\:-translate-y-8:hover { - --tw-translate-y: -2rem !important; +.focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; } -.hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem !important; +.focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; } -.hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem !important; +.focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; } -.hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem !important; +.focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; } -.hover\:-translate-y-12:hover { - --tw-translate-y: -3rem !important; +.focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; } -.hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem !important; +.focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; } -.hover\:-translate-y-16:hover { - --tw-translate-y: -4rem !important; +.focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; } -.hover\:-translate-y-20:hover { - --tw-translate-y: -5rem !important; +.focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; } -.hover\:-translate-y-24:hover { - --tw-translate-y: -6rem !important; +.focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; } -.hover\:-translate-y-28:hover { - --tw-translate-y: -7rem !important; +.focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; } -.hover\:-translate-y-32:hover { - --tw-translate-y: -8rem !important; +.focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; } -.hover\:-translate-y-36:hover { - --tw-translate-y: -9rem !important; +.focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; } -.hover\:-translate-y-40:hover { - --tw-translate-y: -10rem !important; +.focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; } -.hover\:-translate-y-44:hover { - --tw-translate-y: -11rem !important; +.focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; } -.hover\:-translate-y-48:hover { - --tw-translate-y: -12rem !important; +.focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; } -.hover\:-translate-y-52:hover { - --tw-translate-y: -13rem !important; +.focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; } -.hover\:-translate-y-56:hover { - --tw-translate-y: -14rem !important; +.focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; } -.hover\:-translate-y-60:hover { - --tw-translate-y: -15rem !important; +.focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; } -.hover\:-translate-y-64:hover { - --tw-translate-y: -16rem !important; +.focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; } -.hover\:-translate-y-72:hover { - --tw-translate-y: -18rem !important; +.focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; } -.hover\:-translate-y-80:hover { - --tw-translate-y: -20rem !important; +.focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; } -.hover\:-translate-y-96:hover { - --tw-translate-y: -24rem !important; +.focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; } -.hover\:-translate-y-px:hover { - --tw-translate-y: -1px !important; +.focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; } -.hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem !important; +.focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; } -.hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem !important; +.focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; } -.hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem !important; +.focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; } -.hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem !important; +.focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; } -.hover\:translate-y-1\/2:hover { - --tw-translate-y: 50% !important; +.focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; } -.hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333% !important; +.focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; } -.hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667% !important; +.focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; } -.hover\:translate-y-1\/4:hover { - --tw-translate-y: 25% !important; +.focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; } -.hover\:translate-y-2\/4:hover { - --tw-translate-y: 50% !important; +.focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; } -.hover\:translate-y-3\/4:hover { - --tw-translate-y: 75% !important; +.focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; } -.hover\:translate-y-full:hover { - --tw-translate-y: 100% !important; +.focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; } -.hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50% !important; +.focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; } -.hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333% !important; +.focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; } -.hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667% !important; +.focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; } -.hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25% !important; +.focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; } -.hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50% !important; +.focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; } -.hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75% !important; +.focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; } -.hover\:-translate-y-full:hover { - --tw-translate-y: -100% !important; +.focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; } -.focus\:translate-x-0:focus { - --tw-translate-x: 0px !important; +.focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; } -.focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem !important; +.focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; } -.focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem !important; +.focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; } -.focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem !important; +.focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; } -.focus\:translate-x-4:focus { - --tw-translate-x: 1rem !important; +.focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; } -.focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem !important; +.focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; } -.focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem !important; +.focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; } -.focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem !important; +.focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; } -.focus\:translate-x-8:focus { - --tw-translate-x: 2rem !important; +.focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; } -.focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem !important; +.focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; } -.focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem !important; +.focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; } -.focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem !important; +.focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; } -.focus\:translate-x-12:focus { - --tw-translate-x: 3rem !important; +.focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; } -.focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem !important; +.focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; } -.focus\:translate-x-16:focus { - --tw-translate-x: 4rem !important; +.focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; } -.focus\:translate-x-20:focus { - --tw-translate-x: 5rem !important; +.focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; } -.focus\:translate-x-24:focus { - --tw-translate-x: 6rem !important; +.focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; } -.focus\:translate-x-28:focus { - --tw-translate-x: 7rem !important; +.focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; } -.focus\:translate-x-32:focus { - --tw-translate-x: 8rem !important; +.focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; } -.focus\:translate-x-36:focus { - --tw-translate-x: 9rem !important; +.focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; } -.focus\:translate-x-40:focus { - --tw-translate-x: 10rem !important; +.focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; } -.focus\:translate-x-44:focus { - --tw-translate-x: 11rem !important; +.focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; } -.focus\:translate-x-48:focus { - --tw-translate-x: 12rem !important; +.focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; } -.focus\:translate-x-52:focus { - --tw-translate-x: 13rem !important; +.focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; } -.focus\:translate-x-56:focus { - --tw-translate-x: 14rem !important; +.focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; } -.focus\:translate-x-60:focus { - --tw-translate-x: 15rem !important; +.focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; } -.focus\:translate-x-64:focus { - --tw-translate-x: 16rem !important; +.focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; } -.focus\:translate-x-72:focus { - --tw-translate-x: 18rem !important; +.focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; } -.focus\:translate-x-80:focus { - --tw-translate-x: 20rem !important; +.focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; } -.focus\:translate-x-96:focus { - --tw-translate-x: 24rem !important; +.focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; } -.focus\:translate-x-px:focus { - --tw-translate-x: 1px !important; +.focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; } -.focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem !important; +.focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; } -.focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem !important; +.focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; } -.focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem !important; +.focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; } -.focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem !important; +.focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; } -.focus\:-translate-x-0:focus { - --tw-translate-x: 0px !important; +.focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; } -.focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem !important; +.focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; } -.focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem !important; +.focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; } -.focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem !important; +.focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; } -.focus\:-translate-x-4:focus { - --tw-translate-x: -1rem !important; +.focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; } -.focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem !important; +.focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; } -.focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem !important; +.focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; } -.focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem !important; +.focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; } -.focus\:-translate-x-8:focus { - --tw-translate-x: -2rem !important; +.focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; } -.focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem !important; +.focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; } -.focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem !important; +.focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; } -.focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem !important; +.focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; } -.focus\:-translate-x-12:focus { - --tw-translate-x: -3rem !important; +.focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; } -.focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem !important; +.focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; } -.focus\:-translate-x-16:focus { - --tw-translate-x: -4rem !important; +.focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; } -.focus\:-translate-x-20:focus { - --tw-translate-x: -5rem !important; +.focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; } -.focus\:-translate-x-24:focus { - --tw-translate-x: -6rem !important; +.focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; } -.focus\:-translate-x-28:focus { - --tw-translate-x: -7rem !important; +.focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; } -.focus\:-translate-x-32:focus { - --tw-translate-x: -8rem !important; +.focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; } -.focus\:-translate-x-36:focus { - --tw-translate-x: -9rem !important; +.focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; } -.focus\:-translate-x-40:focus { - --tw-translate-x: -10rem !important; +.focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; } -.focus\:-translate-x-44:focus { - --tw-translate-x: -11rem !important; +.focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; } -.focus\:-translate-x-48:focus { - --tw-translate-x: -12rem !important; +.focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; } -.focus\:-translate-x-52:focus { - --tw-translate-x: -13rem !important; +.focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; } -.focus\:-translate-x-56:focus { - --tw-translate-x: -14rem !important; +.focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; } -.focus\:-translate-x-60:focus { - --tw-translate-x: -15rem !important; -} - -.focus\:-translate-x-64:focus { - --tw-translate-x: -16rem !important; -} - -.focus\:-translate-x-72:focus { - --tw-translate-x: -18rem !important; -} - -.focus\:-translate-x-80:focus { - --tw-translate-x: -20rem !important; -} - -.focus\:-translate-x-96:focus { - --tw-translate-x: -24rem !important; -} - -.focus\:-translate-x-px:focus { - --tw-translate-x: -1px !important; -} - -.focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem !important; -} - -.focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem !important; -} - -.focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem !important; -} - -.focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem !important; -} - -.focus\:translate-x-1\/2:focus { - --tw-translate-x: 50% !important; -} - -.focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333% !important; -} - -.focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667% !important; -} - -.focus\:translate-x-1\/4:focus { - --tw-translate-x: 25% !important; -} - -.focus\:translate-x-2\/4:focus { - --tw-translate-x: 50% !important; -} - -.focus\:translate-x-3\/4:focus { - --tw-translate-x: 75% !important; -} - -.focus\:translate-x-full:focus { - --tw-translate-x: 100% !important; -} - -.focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50% !important; -} - -.focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333% !important; -} - -.focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667% !important; -} - -.focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25% !important; -} - -.focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50% !important; -} - -.focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75% !important; -} - -.focus\:-translate-x-full:focus { - --tw-translate-x: -100% !important; -} - -.focus\:translate-y-0:focus { - --tw-translate-y: 0px !important; -} - -.focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem !important; -} - -.focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem !important; -} - -.focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem !important; -} - -.focus\:translate-y-4:focus { - --tw-translate-y: 1rem !important; -} - -.focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem !important; -} - -.focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem !important; -} - -.focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem !important; -} - -.focus\:translate-y-8:focus { - --tw-translate-y: 2rem !important; -} - -.focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem !important; -} - -.focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem !important; -} - -.focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem !important; -} - -.focus\:translate-y-12:focus { - --tw-translate-y: 3rem !important; -} - -.focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem !important; -} - -.focus\:translate-y-16:focus { - --tw-translate-y: 4rem !important; -} - -.focus\:translate-y-20:focus { - --tw-translate-y: 5rem !important; -} - -.focus\:translate-y-24:focus { - --tw-translate-y: 6rem !important; -} - -.focus\:translate-y-28:focus { - --tw-translate-y: 7rem !important; -} - -.focus\:translate-y-32:focus { - --tw-translate-y: 8rem !important; -} - -.focus\:translate-y-36:focus { - --tw-translate-y: 9rem !important; -} - -.focus\:translate-y-40:focus { - --tw-translate-y: 10rem !important; -} - -.focus\:translate-y-44:focus { - --tw-translate-y: 11rem !important; -} - -.focus\:translate-y-48:focus { - --tw-translate-y: 12rem !important; -} - -.focus\:translate-y-52:focus { - --tw-translate-y: 13rem !important; -} - -.focus\:translate-y-56:focus { - --tw-translate-y: 14rem !important; -} - -.focus\:translate-y-60:focus { - --tw-translate-y: 15rem !important; -} - -.focus\:translate-y-64:focus { - --tw-translate-y: 16rem !important; -} - -.focus\:translate-y-72:focus { - --tw-translate-y: 18rem !important; -} - -.focus\:translate-y-80:focus { - --tw-translate-y: 20rem !important; -} - -.focus\:translate-y-96:focus { - --tw-translate-y: 24rem !important; -} - -.focus\:translate-y-px:focus { - --tw-translate-y: 1px !important; -} - -.focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem !important; -} - -.focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem !important; -} - -.focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem !important; -} - -.focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem !important; -} - -.focus\:-translate-y-0:focus { - --tw-translate-y: 0px !important; -} - -.focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem !important; -} - -.focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem !important; -} - -.focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem !important; -} - -.focus\:-translate-y-4:focus { - --tw-translate-y: -1rem !important; -} - -.focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem !important; -} - -.focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem !important; -} - -.focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem !important; -} - -.focus\:-translate-y-8:focus { - --tw-translate-y: -2rem !important; -} - -.focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem !important; -} - -.focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem !important; -} - -.focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem !important; -} - -.focus\:-translate-y-12:focus { - --tw-translate-y: -3rem !important; -} - -.focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem !important; -} - -.focus\:-translate-y-16:focus { - --tw-translate-y: -4rem !important; -} - -.focus\:-translate-y-20:focus { - --tw-translate-y: -5rem !important; -} - -.focus\:-translate-y-24:focus { - --tw-translate-y: -6rem !important; -} - -.focus\:-translate-y-28:focus { - --tw-translate-y: -7rem !important; -} - -.focus\:-translate-y-32:focus { - --tw-translate-y: -8rem !important; -} - -.focus\:-translate-y-36:focus { - --tw-translate-y: -9rem !important; -} - -.focus\:-translate-y-40:focus { - --tw-translate-y: -10rem !important; -} - -.focus\:-translate-y-44:focus { - --tw-translate-y: -11rem !important; -} - -.focus\:-translate-y-48:focus { - --tw-translate-y: -12rem !important; -} - -.focus\:-translate-y-52:focus { - --tw-translate-y: -13rem !important; -} - -.focus\:-translate-y-56:focus { - --tw-translate-y: -14rem !important; -} - -.focus\:-translate-y-60:focus { - --tw-translate-y: -15rem !important; -} - -.focus\:-translate-y-64:focus { - --tw-translate-y: -16rem !important; -} - -.focus\:-translate-y-72:focus { - --tw-translate-y: -18rem !important; -} - -.focus\:-translate-y-80:focus { - --tw-translate-y: -20rem !important; -} - -.focus\:-translate-y-96:focus { - --tw-translate-y: -24rem !important; -} - -.focus\:-translate-y-px:focus { - --tw-translate-y: -1px !important; -} - -.focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem !important; -} - -.focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem !important; -} - -.focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem !important; -} - -.focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem !important; -} - -.focus\:translate-y-1\/2:focus { - --tw-translate-y: 50% !important; -} - -.focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333% !important; -} - -.focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667% !important; -} - -.focus\:translate-y-1\/4:focus { - --tw-translate-y: 25% !important; -} - -.focus\:translate-y-2\/4:focus { - --tw-translate-y: 50% !important; -} - -.focus\:translate-y-3\/4:focus { - --tw-translate-y: 75% !important; -} - -.focus\:translate-y-full:focus { - --tw-translate-y: 100% !important; -} - -.focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50% !important; -} - -.focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333% !important; -} - -.focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667% !important; -} - -.focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25% !important; -} - -.focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50% !important; -} - -.focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75% !important; -} - -.focus\:-translate-y-full:focus { - --tw-translate-y: -100% !important; -} - -.skew-x-0 { - --tw-skew-x: 0deg !important; -} - -.skew-x-1 { - --tw-skew-x: 1deg !important; -} - -.skew-x-2 { - --tw-skew-x: 2deg !important; -} - -.skew-x-3 { - --tw-skew-x: 3deg !important; -} - -.skew-x-6 { - --tw-skew-x: 6deg !important; -} - -.skew-x-12 { - --tw-skew-x: 12deg !important; -} - -.-skew-x-12 { - --tw-skew-x: -12deg !important; -} - -.-skew-x-6 { - --tw-skew-x: -6deg !important; -} - -.-skew-x-3 { - --tw-skew-x: -3deg !important; -} - -.-skew-x-2 { - --tw-skew-x: -2deg !important; -} - -.-skew-x-1 { - --tw-skew-x: -1deg !important; -} - -.skew-y-0 { - --tw-skew-y: 0deg !important; -} - -.skew-y-1 { - --tw-skew-y: 1deg !important; -} - -.skew-y-2 { - --tw-skew-y: 2deg !important; -} - -.skew-y-3 { - --tw-skew-y: 3deg !important; -} - -.skew-y-6 { - --tw-skew-y: 6deg !important; -} - -.skew-y-12 { - --tw-skew-y: 12deg !important; -} - -.-skew-y-12 { - --tw-skew-y: -12deg !important; -} - -.-skew-y-6 { - --tw-skew-y: -6deg !important; -} - -.-skew-y-3 { - --tw-skew-y: -3deg !important; -} - -.-skew-y-2 { - --tw-skew-y: -2deg !important; -} - -.-skew-y-1 { - --tw-skew-y: -1deg !important; -} - -.hover\:skew-x-0:hover { - --tw-skew-x: 0deg !important; -} - -.hover\:skew-x-1:hover { - --tw-skew-x: 1deg !important; -} - -.hover\:skew-x-2:hover { - --tw-skew-x: 2deg !important; -} - -.hover\:skew-x-3:hover { - --tw-skew-x: 3deg !important; -} - -.hover\:skew-x-6:hover { - --tw-skew-x: 6deg !important; -} - -.hover\:skew-x-12:hover { - --tw-skew-x: 12deg !important; -} - -.hover\:-skew-x-12:hover { - --tw-skew-x: -12deg !important; -} - -.hover\:-skew-x-6:hover { - --tw-skew-x: -6deg !important; -} - -.hover\:-skew-x-3:hover { - --tw-skew-x: -3deg !important; -} - -.hover\:-skew-x-2:hover { - --tw-skew-x: -2deg !important; -} - -.hover\:-skew-x-1:hover { - --tw-skew-x: -1deg !important; -} - -.hover\:skew-y-0:hover { - --tw-skew-y: 0deg !important; -} - -.hover\:skew-y-1:hover { - --tw-skew-y: 1deg !important; -} - -.hover\:skew-y-2:hover { - --tw-skew-y: 2deg !important; -} - -.hover\:skew-y-3:hover { - --tw-skew-y: 3deg !important; -} - -.hover\:skew-y-6:hover { - --tw-skew-y: 6deg !important; -} - -.hover\:skew-y-12:hover { - --tw-skew-y: 12deg !important; -} - -.hover\:-skew-y-12:hover { - --tw-skew-y: -12deg !important; -} - -.hover\:-skew-y-6:hover { - --tw-skew-y: -6deg !important; -} - -.hover\:-skew-y-3:hover { - --tw-skew-y: -3deg !important; -} - -.hover\:-skew-y-2:hover { - --tw-skew-y: -2deg !important; -} - -.hover\:-skew-y-1:hover { - --tw-skew-y: -1deg !important; -} - -.focus\:skew-x-0:focus { - --tw-skew-x: 0deg !important; -} - -.focus\:skew-x-1:focus { - --tw-skew-x: 1deg !important; -} - -.focus\:skew-x-2:focus { - --tw-skew-x: 2deg !important; -} - -.focus\:skew-x-3:focus { - --tw-skew-x: 3deg !important; -} - -.focus\:skew-x-6:focus { - --tw-skew-x: 6deg !important; -} - -.focus\:skew-x-12:focus { - --tw-skew-x: 12deg !important; -} - -.focus\:-skew-x-12:focus { - --tw-skew-x: -12deg !important; -} - -.focus\:-skew-x-6:focus { - --tw-skew-x: -6deg !important; -} - -.focus\:-skew-x-3:focus { - --tw-skew-x: -3deg !important; -} - -.focus\:-skew-x-2:focus { - --tw-skew-x: -2deg !important; -} - -.focus\:-skew-x-1:focus { - --tw-skew-x: -1deg !important; -} - -.focus\:skew-y-0:focus { - --tw-skew-y: 0deg !important; -} - -.focus\:skew-y-1:focus { - --tw-skew-y: 1deg !important; -} - -.focus\:skew-y-2:focus { - --tw-skew-y: 2deg !important; -} - -.focus\:skew-y-3:focus { - --tw-skew-y: 3deg !important; -} - -.focus\:skew-y-6:focus { - --tw-skew-y: 6deg !important; -} - -.focus\:skew-y-12:focus { - --tw-skew-y: 12deg !important; -} - -.focus\:-skew-y-12:focus { - --tw-skew-y: -12deg !important; -} - -.focus\:-skew-y-6:focus { - --tw-skew-y: -6deg !important; -} - -.focus\:-skew-y-3:focus { - --tw-skew-y: -3deg !important; -} - -.focus\:-skew-y-2:focus { - --tw-skew-y: -2deg !important; -} - -.focus\:-skew-y-1:focus { - --tw-skew-y: -1deg !important; -} - -.transition-none { - transition-property: none !important; -} - -.transition-all { - transition-property: all !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; -} - -.transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; -} - -.transition-colors { - transition-property: background-color, border-color, color, fill, stroke !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; +.focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; } -.transition-opacity { - transition-property: opacity !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; +.focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; } -.transition-shadow { - transition-property: box-shadow !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; +.focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; } -.transition-transform { - transition-property: transform !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; +.focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; } -.ease-linear { - transition-timing-function: linear !important; +.focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; } -.ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; +.focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; } -.ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; +.focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; } -.ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; +.focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; } -.duration-75 { - transition-duration: 75ms !important; +.focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; } -.duration-100 { - transition-duration: 100ms !important; +.focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; } -.duration-150 { - transition-duration: 150ms !important; +.focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; } -.duration-200 { - transition-duration: 200ms !important; +.focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; } -.duration-300 { - transition-duration: 300ms !important; +.focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; } -.duration-500 { - transition-duration: 500ms !important; +.focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; } -.duration-700 { - transition-duration: 700ms !important; +.focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; } -.duration-1000 { - transition-duration: 1000ms !important; +.focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; } -.delay-75 { - transition-delay: 75ms !important; +.focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; } -.delay-100 { - transition-delay: 100ms !important; +.focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; } -.delay-150 { - transition-delay: 150ms !important; +.focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; } -.delay-200 { - transition-delay: 200ms !important; +.focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; } -.delay-300 { - transition-delay: 300ms !important; +.focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; } -.delay-500 { - transition-delay: 500ms !important; +.focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; } -.delay-700 { - transition-delay: 700ms !important; +.focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; } -.delay-1000 { - transition-delay: 1000ms !important; +.focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; } -@keyframes spin { - to { - transform: rotate(360deg); - } +.focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; } -@keyframes ping { - 75%, 100% { - transform: scale(2); - opacity: 0; - } +.focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; } -@keyframes pulse { - 50% { - opacity: .5; - } +.focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; } -@keyframes bounce { - 0%, 100% { - transform: translateY(-25%); - animation-timing-function: cubic-bezier(0.8,0,1,1); - } - - 50% { - transform: none; - animation-timing-function: cubic-bezier(0,0,0.2,1); - } +.focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; } -.animate-none { - animation: none !important; +.focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; } -.animate-spin { - animation: spin 1s linear infinite !important; +.focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; } -.animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; +.focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; } -.animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; +.focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; } -.animate-bounce { - animation: bounce 1s infinite !important; +.focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; } -.mix-blend-normal { - mix-blend-mode: normal !important; +.focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; } -.mix-blend-multiply { - mix-blend-mode: multiply !important; +.focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; } -.mix-blend-screen { - mix-blend-mode: screen !important; +.focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; } -.mix-blend-overlay { - mix-blend-mode: overlay !important; +.focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; } -.mix-blend-darken { - mix-blend-mode: darken !important; +.focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; } -.mix-blend-lighten { - mix-blend-mode: lighten !important; +.focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; } -.mix-blend-color-dodge { - mix-blend-mode: color-dodge !important; +.focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; } -.mix-blend-color-burn { - mix-blend-mode: color-burn !important; +.focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; } -.mix-blend-hard-light { - mix-blend-mode: hard-light !important; +.focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; } -.mix-blend-soft-light { - mix-blend-mode: soft-light !important; +.focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; } -.mix-blend-difference { - mix-blend-mode: difference !important; +.focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; } -.mix-blend-exclusion { - mix-blend-mode: exclusion !important; +.focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; } -.mix-blend-hue { - mix-blend-mode: hue !important; +.focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; } -.mix-blend-saturation { - mix-blend-mode: saturation !important; +.focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; } -.mix-blend-color { - mix-blend-mode: color !important; +.focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; } -.mix-blend-luminosity { - mix-blend-mode: luminosity !important; +.focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; } -.bg-blend-normal { - background-blend-mode: normal !important; +.focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; } -.bg-blend-multiply { - background-blend-mode: multiply !important; +.focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; } -.bg-blend-screen { - background-blend-mode: screen !important; +.focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; } -.bg-blend-overlay { - background-blend-mode: overlay !important; +.focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; } -.bg-blend-darken { - background-blend-mode: darken !important; +.focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; } -.bg-blend-lighten { - background-blend-mode: lighten !important; +.focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; } -.bg-blend-color-dodge { - background-blend-mode: color-dodge !important; +.focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; } -.bg-blend-color-burn { - background-blend-mode: color-burn !important; +.focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; } -.bg-blend-hard-light { - background-blend-mode: hard-light !important; +.focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; } -.bg-blend-soft-light { - background-blend-mode: soft-light !important; +.focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; } -.bg-blend-difference { - background-blend-mode: difference !important; +.focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; } -.bg-blend-exclusion { - background-blend-mode: exclusion !important; +.focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; } -.bg-blend-hue { - background-blend-mode: hue !important; +.focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; } -.bg-blend-saturation { - background-blend-mode: saturation !important; +.focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; } -.bg-blend-color { - background-blend-mode: color !important; +.focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; } -.bg-blend-luminosity { - background-blend-mode: luminosity !important; +.focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; } .filter { @@ -29791,27 +29671,147 @@ video { --tw-backdrop-sepia: sepia(100%) !important; } -.example { - font-weight: 700; - color: #ef4444; +.transition-none { + transition-property: none !important; } -@media (min-width: 640px) { - .sm\:container { - width: 100%; - } +.transition-all { + transition-property: all !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} - @media (min-width: 640px) { - .sm\:container { - max-width: 640px; - } - } +.transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} - @media (min-width: 768px) { - .sm\:container { - max-width: 768px; - } - } +.transition-colors { + transition-property: background-color, border-color, color, fill, stroke !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} + +.transition-opacity { + transition-property: opacity !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} + +.transition-shadow { + transition-property: box-shadow !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} + +.transition-transform { + transition-property: transform !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; +} + +.delay-75 { + transition-delay: 75ms !important; +} + +.delay-100 { + transition-delay: 100ms !important; +} + +.delay-150 { + transition-delay: 150ms !important; +} + +.delay-200 { + transition-delay: 200ms !important; +} + +.delay-300 { + transition-delay: 300ms !important; +} + +.delay-500 { + transition-delay: 500ms !important; +} + +.delay-700 { + transition-delay: 700ms !important; +} + +.delay-1000 { + transition-delay: 1000ms !important; +} + +.duration-75 { + transition-duration: 75ms !important; +} + +.duration-100 { + transition-duration: 100ms !important; +} + +.duration-150 { + transition-duration: 150ms !important; +} + +.duration-200 { + transition-duration: 200ms !important; +} + +.duration-300 { + transition-duration: 300ms !important; +} + +.duration-500 { + transition-duration: 500ms !important; +} + +.duration-700 { + transition-duration: 700ms !important; +} + +.duration-1000 { + transition-duration: 1000ms !important; +} + +.ease-linear { + transition-timing-function: linear !important; +} + +.ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; +} + +.ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; +} + +.ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; +} + +.example { + font-weight: 700; + color: #ef4444; +} + +@media (min-width: 640px) { + .sm\:container { + width: 100%; + } + + @media (min-width: 640px) { + .sm\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .sm\:container { + max-width: 768px; + } + } @media (min-width: 1024px) { .sm\:container { @@ -29825,21658 +29825,21847 @@ video { } } - @media (min-width: 1536px) { - .sm\:container { - max-width: 1536px; - } + @media (min-width: 1536px) { + .sm\:container { + max-width: 1536px; + } + } + + .sm\:sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .sm\:not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .sm\:focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .sm\:focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .sm\:focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; + } + + .sm\:focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; + } + + .sm\:pointer-events-none { + pointer-events: none !important; + } + + .sm\:pointer-events-auto { + pointer-events: auto !important; + } + + .sm\:visible { + visibility: visible !important; + } + + .sm\:invisible { + visibility: hidden !important; + } + + .sm\:static { + position: static !important; + } + + .sm\:fixed { + position: fixed !important; + } + + .sm\:absolute { + position: absolute !important; + } + + .sm\:relative { + position: relative !important; + } + + .sm\:sticky { + position: sticky !important; + } + + .sm\:inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .sm\:inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !important; + } + + .sm\:inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !important; + } + + .sm\:inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !important; + } + + .sm\:inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !important; + } + + .sm\:inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !important; + } + + .sm\:inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !important; + } + + .sm\:inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !important; + } + + .sm\:inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !important; + } + + .sm\:inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !important; + } + + .sm\:inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !important; + } + + .sm\:inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !important; + } + + .sm\:inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !important; + } + + .sm\:inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !important; + } + + .sm\:inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !important; + } + + .sm\:inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !important; + } + + .sm\:inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !important; + } + + .sm\:inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !important; + } + + .sm\:inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !important; + } + + .sm\:inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !important; + } + + .sm\:inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !important; + } + + .sm\:inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !important; + } + + .sm\:inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !important; + } + + .sm\:inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !important; + } + + .sm\:inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !important; + } + + .sm\:inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !important; + } + + .sm\:inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !important; + } + + .sm\:inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !important; + } + + .sm\:inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !important; + } + + .sm\:inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !important; + } + + .sm\:inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !important; + } + + .sm\:inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !important; + } + + .sm\:inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !important; + } + + .sm\:inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !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-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; + } + + .sm\:-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !important; + } + + .sm\:-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !important; + } + + .sm\:-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !important; + } + + .sm\:-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !important; + } + + .sm\:-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !important; + } + + .sm\:-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !important; + } + + .sm\:-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !important; + } + + .sm\:-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !important; + } + + .sm\:-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !important; + } + + .sm\:-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !important; + } + + .sm\:-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !important; + } + + .sm\:-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !important; + } + + .sm\:-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !important; + } + + .sm\:-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !important; + } + + .sm\:-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !important; + } + + .sm\:-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !important; + } + + .sm\:-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !important; + } + + .sm\:-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !important; + } + + .sm\:-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !important; + } + + .sm\:-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !important; + } + + .sm\:-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !important; + } + + .sm\:-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !important; + } + + .sm\:-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !important; + } + + .sm\:-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !important; + } + + .sm\:-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !important; + } + + .sm\:-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !important; + } + + .sm\:-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !important; + } + + .sm\:-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !important; + } + + .sm\:-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !important; + } + + .sm\:-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !important; + } + + .sm\:-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !important; + } + + .sm\:-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !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-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\: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\:inset-x-72 { + right: 18rem !important; + left: 18rem !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\:inset-y-80 { + top: 20rem !important; + bottom: 20rem !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\:inset-x-80 { + right: 20rem !important; + left: 20rem !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\:inset-y-96 { + top: 24rem !important; + bottom: 24rem !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\:inset-x-96 { + right: 24rem !important; + left: 24rem !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\:inset-y-auto { + top: auto !important; + bottom: auto !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\:inset-x-auto { + right: auto !important; + left: auto !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\:inset-y-px { + top: 1px !important; + bottom: 1px !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\:inset-x-px { + right: 1px !important; + left: 1px !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\:inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !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\:inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !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\:inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !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\:inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !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\:inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !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\:inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !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\:inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !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\:inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !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\:-inset-y-0 { + top: 0px !important; + bottom: 0px !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\:-inset-x-0 { + right: 0px !important; + left: 0px !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\:-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !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\:-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !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\:-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !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\:-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !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\:-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !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\:-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !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\:-inset-y-4 { + top: -1rem !important; + bottom: -1rem !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\:-inset-x-4 { + right: -1rem !important; + left: -1rem !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\:-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !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\:-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !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\:-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !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\:-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !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\:-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !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\:-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !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\:-inset-y-8 { + top: -2rem !important; + bottom: -2rem !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\:-inset-x-8 { + right: -2rem !important; + left: -2rem !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\:-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !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\:-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !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\:-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !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\:-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !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\:-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !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\:-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !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\:-inset-y-12 { + top: -3rem !important; + bottom: -3rem !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\:-inset-x-12 { + right: -3rem !important; + left: -3rem !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\:-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !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\:-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !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\:-inset-y-16 { + top: -4rem !important; + bottom: -4rem !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\:-inset-x-16 { + right: -4rem !important; + left: -4rem !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\:-inset-y-20 { + top: -5rem !important; + bottom: -5rem !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\:-inset-x-20 { + right: -5rem !important; + left: -5rem !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\:-inset-y-24 { + top: -6rem !important; + bottom: -6rem !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\:-inset-x-24 { + right: -6rem !important; + left: -6rem !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\:-inset-y-28 { + top: -7rem !important; + bottom: -7rem !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\:-inset-x-28 { + right: -7rem !important; + left: -7rem !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\:-inset-y-32 { + top: -8rem !important; + bottom: -8rem !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\:-inset-x-32 { + right: -8rem !important; + left: -8rem !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\:-inset-y-36 { + top: -9rem !important; + bottom: -9rem !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\:-inset-x-36 { + right: -9rem !important; + left: -9rem !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\:-inset-y-40 { + top: -10rem !important; + bottom: -10rem !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\:-inset-x-40 { + right: -10rem !important; + left: -10rem !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\:-inset-y-44 { + top: -11rem !important; + bottom: -11rem !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\:-inset-x-44 { + right: -11rem !important; + left: -11rem !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\:-inset-y-48 { + top: -12rem !important; + bottom: -12rem !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\:-inset-x-48 { + right: -12rem !important; + left: -12rem !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\:-inset-y-52 { + top: -13rem !important; + bottom: -13rem !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\:-inset-x-52 { + right: -13rem !important; + left: -13rem !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\:-inset-y-56 { + top: -14rem !important; + bottom: -14rem !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\:-inset-x-56 { + right: -14rem !important; + left: -14rem !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\:-inset-y-60 { + top: -15rem !important; + bottom: -15rem !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\:-inset-x-60 { + right: -15rem !important; + left: -15rem !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\:-inset-y-64 { + top: -16rem !important; + bottom: -16rem !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\:-inset-x-64 { + right: -16rem !important; + left: -16rem !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\:-inset-y-72 { + top: -18rem !important; + bottom: -18rem !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\:-inset-x-72 { + right: -18rem !important; + left: -18rem !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\:-inset-y-80 { + top: -20rem !important; + bottom: -20rem !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\:-inset-x-80 { + right: -20rem !important; + left: -20rem !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\:-inset-y-96 { + top: -24rem !important; + bottom: -24rem !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\:-inset-x-96 { + right: -24rem !important; + left: -24rem !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\:-inset-y-px { + top: -1px !important; + bottom: -1px !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\:-inset-x-px { + right: -1px !important; + left: -1px !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\:-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !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\:-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !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\:-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !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\:-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !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\:-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !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\:-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !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\:-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !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\:-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !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\:inset-y-1\/2 { + top: 50% !important; + bottom: 50% !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\:inset-x-1\/2 { + right: 50% !important; + left: 50% !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\:inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !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\:inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !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\:inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !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\:inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !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\:inset-y-1\/4 { + top: 25% !important; + bottom: 25% !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\:inset-x-1\/4 { + right: 25% !important; + left: 25% !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\:inset-y-2\/4 { + top: 50% !important; + bottom: 50% !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\:inset-x-2\/4 { + right: 50% !important; + left: 50% !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\:inset-y-3\/4 { + top: 75% !important; + bottom: 75% !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\:inset-x-3\/4 { + right: 75% !important; + left: 75% !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\:inset-y-full { + top: 100% !important; + bottom: 100% !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\:inset-x-full { + right: 100% !important; + left: 100% !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\:-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !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\:-inset-x-1\/2 { + right: -50% !important; + left: -50% !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\:-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !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\:-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !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\:-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !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\:-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !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\:-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !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\:-inset-x-1\/4 { + right: -25% !important; + left: -25% !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\:-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !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\:-inset-x-2\/4 { + right: -50% !important; + left: -50% !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\:-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !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\:-inset-x-3\/4 { + right: -75% !important; + left: -75% !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\:-inset-y-full { + top: -100% !important; + bottom: -100% !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\:-inset-x-full { + right: -100% !important; + left: -100% !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\:top-0 { + top: 0px !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\:right-0 { + right: 0px !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\:bottom-0 { + bottom: 0px !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\:left-0 { + left: 0px !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\:top-1 { + top: 0.25rem !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\:right-1 { + right: 0.25rem !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\:bottom-1 { + bottom: 0.25rem !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\:left-1 { + left: 0.25rem !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\:top-2 { + top: 0.5rem !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\:right-2 { + right: 0.5rem !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\:bottom-2 { + bottom: 0.5rem !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\:left-2 { + left: 0.5rem !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\:top-3 { + top: 0.75rem !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\:right-3 { + right: 0.75rem !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\:bottom-3 { + bottom: 0.75rem !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\:left-3 { + left: 0.75rem !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\:top-4 { + top: 1rem !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\:right-4 { + right: 1rem !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\:bottom-4 { + bottom: 1rem !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\:left-4 { + left: 1rem !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\:top-5 { + top: 1.25rem !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\:right-5 { + right: 1.25rem !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\:bottom-5 { + bottom: 1.25rem !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\:left-5 { + left: 1.25rem !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\:top-6 { + top: 1.5rem !important; } - .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1 !important; + .sm\:right-6 { + right: 1.5rem !important; } - .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1 !important; + .sm\:bottom-6 { + bottom: 1.5rem !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\:left-6 { + left: 1.5rem !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\:top-7 { + top: 1.75rem !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\:right-7 { + right: 1.75rem !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\:bottom-7 { + bottom: 1.75rem !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\:left-7 { + left: 1.75rem !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\:top-8 { + top: 2rem !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\:right-8 { + right: 2rem !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\:bottom-8 { + bottom: 2rem !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\:left-8 { + left: 2rem !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\:top-9 { + top: 2.25rem !important; } - .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1 !important; + .sm\:right-9 { + right: 2.25rem !important; } - .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1 !important; + .sm\:bottom-9 { + bottom: 2.25rem !important; } - .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent !important; + .sm\:left-9 { + left: 2.25rem !important; } - .sm\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor !important; + .sm\:top-10 { + top: 2.5rem !important; } - .sm\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; + .sm\:right-10 { + right: 2.5rem !important; } - .sm\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; + .sm\:bottom-10 { + bottom: 2.5rem !important; } - .sm\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; + .sm\:left-10 { + left: 2.5rem !important; } - .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; + .sm\:top-11 { + top: 2.75rem !important; } - .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; + .sm\:right-11 { + right: 2.75rem !important; } - .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; + .sm\:bottom-11 { + bottom: 2.75rem !important; } - .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; + .sm\:left-11 { + left: 2.75rem !important; } - .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; + .sm\:top-12 { + top: 3rem !important; } - .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; + .sm\:right-12 { + right: 3rem !important; } - .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; + .sm\:bottom-12 { + bottom: 3rem !important; } - .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; + .sm\:left-12 { + left: 3rem !important; } - .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; + .sm\:top-14 { + top: 3.5rem !important; } - .sm\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; + .sm\:right-14 { + right: 3.5rem !important; } - .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; + .sm\:bottom-14 { + bottom: 3.5rem !important; } - .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; + .sm\:left-14 { + left: 3.5rem !important; } - .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; + .sm\:top-16 { + top: 4rem !important; } - .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; + .sm\:right-16 { + right: 4rem !important; } - .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; + .sm\:bottom-16 { + bottom: 4rem !important; } - .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; + .sm\:left-16 { + left: 4rem !important; } - .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; + .sm\:top-20 { + top: 5rem !important; } - .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; + .sm\:right-20 { + right: 5rem !important; } - .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; + .sm\:bottom-20 { + bottom: 5rem !important; } - .sm\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; + .sm\:left-20 { + left: 5rem !important; } - .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; + .sm\:top-24 { + top: 6rem !important; } - .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; + .sm\:right-24 { + right: 6rem !important; } - .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; + .sm\:bottom-24 { + bottom: 6rem !important; } - .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; + .sm\:left-24 { + left: 6rem !important; } - .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; + .sm\:top-28 { + top: 7rem !important; } - .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; + .sm\:right-28 { + right: 7rem !important; } - .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; + .sm\:bottom-28 { + bottom: 7rem !important; } - .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; + .sm\:left-28 { + left: 7rem !important; } - .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; + .sm\:top-32 { + top: 8rem !important; } - .sm\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; + .sm\:right-32 { + right: 8rem !important; } - .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; + .sm\:bottom-32 { + bottom: 8rem !important; } - .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; + .sm\:left-32 { + left: 8rem !important; } - .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; + .sm\:top-36 { + top: 9rem !important; } - .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; + .sm\:right-36 { + right: 9rem !important; } - .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; + .sm\:bottom-36 { + bottom: 9rem !important; } - .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; + .sm\:left-36 { + left: 9rem !important; } - .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; + .sm\:top-40 { + top: 10rem !important; } - .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; + .sm\:right-40 { + right: 10rem !important; } - .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; + .sm\:bottom-40 { + bottom: 10rem !important; } - .sm\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; + .sm\:left-40 { + left: 10rem !important; } - .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; + .sm\:top-44 { + top: 11rem !important; } - .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; + .sm\:right-44 { + right: 11rem !important; } - .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; + .sm\:bottom-44 { + bottom: 11rem !important; } - .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; + .sm\:left-44 { + left: 11rem !important; } - .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; + .sm\:top-48 { + top: 12rem !important; } - .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; + .sm\:right-48 { + right: 12rem !important; } - .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; + .sm\:bottom-48 { + bottom: 12rem !important; } - .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; + .sm\:left-48 { + left: 12rem !important; } - .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; + .sm\:top-52 { + top: 13rem !important; } - .sm\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; + .sm\:right-52 { + right: 13rem !important; } - .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; + .sm\:bottom-52 { + bottom: 13rem !important; } - .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; + .sm\:left-52 { + left: 13rem !important; } - .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; + .sm\:top-56 { + top: 14rem !important; } - .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; + .sm\:right-56 { + right: 14rem !important; } - .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; + .sm\:bottom-56 { + bottom: 14rem !important; } - .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; + .sm\:left-56 { + left: 14rem !important; } - .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; + .sm\:top-60 { + top: 15rem !important; } - .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; + .sm\:right-60 { + right: 15rem !important; } - .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; + .sm\:bottom-60 { + bottom: 15rem !important; } - .sm\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; + .sm\:left-60 { + left: 15rem !important; } - .sm\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; + .sm\:top-64 { + top: 16rem !important; } - .sm\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; + .sm\:right-64 { + right: 16rem !important; } - .sm\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; + .sm\:bottom-64 { + bottom: 16rem !important; } - .sm\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; + .sm\:left-64 { + left: 16rem !important; } - .sm\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; + .sm\:top-72 { + top: 18rem !important; } - .sm\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; + .sm\:right-72 { + right: 18rem !important; } - .sm\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; + .sm\:bottom-72 { + bottom: 18rem !important; } - .sm\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; + .sm\:left-72 { + left: 18rem !important; } - .sm\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; + .sm\:top-80 { + top: 20rem !important; } - .sm\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; + .sm\:right-80 { + right: 20rem !important; } - .sm\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; + .sm\:bottom-80 { + bottom: 20rem !important; } - .sm\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; + .sm\:left-80 { + left: 20rem !important; } - .sm\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; + .sm\:top-96 { + top: 24rem !important; } - .sm\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; + .sm\:right-96 { + right: 24rem !important; } - .sm\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; + .sm\:bottom-96 { + bottom: 24rem !important; } - .sm\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; + .sm\:left-96 { + left: 24rem !important; } - .sm\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; + .sm\:top-auto { + top: auto !important; } - .sm\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; + .sm\:right-auto { + right: auto !important; } - .sm\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; + .sm\:bottom-auto { + bottom: auto !important; } - .sm\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid !important; + .sm\:left-auto { + left: auto !important; } - .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed !important; + .sm\:top-px { + top: 1px !important; } - .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted !important; + .sm\:right-px { + right: 1px !important; } - .sm\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double !important; + .sm\:bottom-px { + bottom: 1px !important; } - .sm\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none !important; + .sm\:left-px { + left: 1px !important; } - .sm\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0 !important; + .sm\:top-0\.5 { + top: 0.125rem !important; } - .sm\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05 !important; + .sm\:right-0\.5 { + right: 0.125rem !important; } - .sm\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1 !important; + .sm\:bottom-0\.5 { + bottom: 0.125rem !important; } - .sm\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2 !important; + .sm\:left-0\.5 { + left: 0.125rem !important; } - .sm\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25 !important; + .sm\:top-1\.5 { + top: 0.375rem !important; } - .sm\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3 !important; + .sm\:right-1\.5 { + right: 0.375rem !important; } - .sm\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4 !important; + .sm\:bottom-1\.5 { + bottom: 0.375rem !important; } - .sm\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5 !important; + .sm\:left-1\.5 { + left: 0.375rem !important; } - .sm\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6 !important; + .sm\:top-2\.5 { + top: 0.625rem !important; } - .sm\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7 !important; + .sm\:right-2\.5 { + right: 0.625rem !important; } - .sm\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75 !important; + .sm\:bottom-2\.5 { + bottom: 0.625rem !important; } - .sm\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8 !important; + .sm\:left-2\.5 { + left: 0.625rem !important; } - .sm\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9 !important; + .sm\:top-3\.5 { + top: 0.875rem !important; } - .sm\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95 !important; + .sm\:right-3\.5 { + right: 0.875rem !important; } - .sm\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; + .sm\:bottom-3\.5 { + bottom: 0.875rem !important; } - .sm\:sr-only { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .sm\:left-3\.5 { + left: 0.875rem !important; } - .sm\:not-sr-only { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .sm\:-top-0 { + top: 0px !important; } - .sm\:focus-within\:sr-only:focus-within { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .sm\:-right-0 { + right: 0px !important; } - .sm\:focus-within\:not-sr-only:focus-within { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .sm\:-bottom-0 { + bottom: 0px !important; } - .sm\:focus\:sr-only:focus { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .sm\:-left-0 { + left: 0px !important; } - .sm\:focus\:not-sr-only:focus { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .sm\:-top-1 { + top: -0.25rem !important; } - .sm\:appearance-none { - appearance: none !important; + .sm\:-right-1 { + right: -0.25rem !important; } - .sm\:bg-fixed { - background-attachment: fixed !important; + .sm\:-bottom-1 { + bottom: -0.25rem !important; } - .sm\:bg-local { - background-attachment: local !important; + .sm\:-left-1 { + left: -0.25rem !important; } - .sm\:bg-scroll { - background-attachment: scroll !important; + .sm\:-top-2 { + top: -0.5rem !important; } - .sm\:bg-clip-border { - background-clip: border-box !important; + .sm\:-right-2 { + right: -0.5rem !important; } - .sm\:bg-clip-padding { - background-clip: padding-box !important; + .sm\:-bottom-2 { + bottom: -0.5rem !important; } - .sm\:bg-clip-content { - background-clip: content-box !important; + .sm\:-left-2 { + left: -0.5rem !important; } - .sm\:bg-clip-text { - background-clip: text !important; + .sm\:-top-3 { + top: -0.75rem !important; } - .sm\:bg-transparent { - background-color: transparent !important; + .sm\:-right-3 { + right: -0.75rem !important; } - .sm\:bg-current { - background-color: currentColor !important; + .sm\:-bottom-3 { + bottom: -0.75rem !important; } - .sm\:bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .sm\:-left-3 { + left: -0.75rem !important; } - .sm\:bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .sm\:-top-4 { + top: -1rem !important; } - .sm\:bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .sm\:-right-4 { + right: -1rem !important; } - .sm\:bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .sm\:-bottom-4 { + bottom: -1rem !important; } - .sm\:bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .sm\:-left-4 { + left: -1rem !important; } - .sm\:bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .sm\:-top-5 { + top: -1.25rem !important; } - .sm\:bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .sm\:-right-5 { + right: -1.25rem !important; } - .sm\:bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .sm\:-bottom-5 { + bottom: -1.25rem !important; } - .sm\:bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .sm\:-left-5 { + left: -1.25rem !important; } - .sm\:bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .sm\:-top-6 { + top: -1.5rem !important; } - .sm\:bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .sm\:-right-6 { + right: -1.5rem !important; } - .sm\:bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .sm\:-bottom-6 { + bottom: -1.5rem !important; } - .sm\:bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .sm\:-left-6 { + left: -1.5rem !important; } - .sm\:bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .sm\:-top-7 { + top: -1.75rem !important; } - .sm\:bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .sm\:-right-7 { + right: -1.75rem !important; } - .sm\:bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .sm\:-bottom-7 { + bottom: -1.75rem !important; } - .sm\:bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .sm\:-left-7 { + left: -1.75rem !important; } - .sm\:bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .sm\:-top-8 { + top: -2rem !important; } - .sm\:bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .sm\:-right-8 { + right: -2rem !important; } - .sm\:bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .sm\:-bottom-8 { + bottom: -2rem !important; } - .sm\:bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .sm\:-left-8 { + left: -2rem !important; } - .sm\:bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .sm\:-top-9 { + top: -2.25rem !important; } - .sm\:bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .sm\:-right-9 { + right: -2.25rem !important; } - .sm\:bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .sm\:-bottom-9 { + bottom: -2.25rem !important; } - .sm\:bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .sm\:-left-9 { + left: -2.25rem !important; } - .sm\:bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .sm\:-top-10 { + top: -2.5rem !important; } - .sm\:bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .sm\:-right-10 { + right: -2.5rem !important; } - .sm\:bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .sm\:-bottom-10 { + bottom: -2.5rem !important; } - .sm\:bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .sm\:-left-10 { + left: -2.5rem !important; } - .sm\:bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .sm\:-top-11 { + top: -2.75rem !important; } - .sm\:bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .sm\:-right-11 { + right: -2.75rem !important; } - .sm\:bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .sm\:-bottom-11 { + bottom: -2.75rem !important; } - .sm\:bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .sm\:-left-11 { + left: -2.75rem !important; } - .sm\:bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .sm\:-top-12 { + top: -3rem !important; } - .sm\:bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .sm\:-right-12 { + right: -3rem !important; } - .sm\:bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .sm\:-bottom-12 { + bottom: -3rem !important; } - .sm\:bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .sm\:-left-12 { + left: -3rem !important; } - .sm\:bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .sm\:-top-14 { + top: -3.5rem !important; } - .sm\:bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .sm\:-right-14 { + right: -3.5rem !important; } - .sm\:bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .sm\:-bottom-14 { + bottom: -3.5rem !important; } - .sm\:bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .sm\:-left-14 { + left: -3.5rem !important; } - .sm\:bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .sm\:-top-16 { + top: -4rem !important; } - .sm\:bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .sm\:-right-16 { + right: -4rem !important; } - .sm\:bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .sm\:-bottom-16 { + bottom: -4rem !important; } - .sm\:bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .sm\:-left-16 { + left: -4rem !important; } - .sm\:bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .sm\:-top-20 { + top: -5rem !important; } - .sm\:bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .sm\:-right-20 { + right: -5rem !important; } - .sm\:bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .sm\:-bottom-20 { + bottom: -5rem !important; } - .sm\:bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .sm\:-left-20 { + left: -5rem !important; } - .sm\:bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .sm\:-top-24 { + top: -6rem !important; } - .sm\:bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .sm\:-right-24 { + right: -6rem !important; } - .sm\:bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .sm\:-bottom-24 { + bottom: -6rem !important; } - .sm\:bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .sm\:-left-24 { + left: -6rem !important; } - .sm\:bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .sm\:-top-28 { + top: -7rem !important; } - .sm\:bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .sm\:-right-28 { + right: -7rem !important; } - .sm\:bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .sm\:-bottom-28 { + bottom: -7rem !important; } - .sm\:bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .sm\:-left-28 { + left: -7rem !important; } - .sm\:bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .sm\:-top-32 { + top: -8rem !important; } - .sm\:bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .sm\:-right-32 { + right: -8rem !important; } - .sm\:bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .sm\:-bottom-32 { + bottom: -8rem !important; } - .sm\:bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .sm\:-left-32 { + left: -8rem !important; } - .sm\:bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .sm\:-top-36 { + top: -9rem !important; } - .sm\:bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .sm\:-right-36 { + right: -9rem !important; } - .sm\:bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .sm\:-bottom-36 { + bottom: -9rem !important; } - .sm\:bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .sm\:-left-36 { + left: -9rem !important; } - .sm\:bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .sm\:-top-40 { + top: -10rem !important; } - .sm\:bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .sm\:-right-40 { + right: -10rem !important; } - .sm\:bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .sm\:-bottom-40 { + bottom: -10rem !important; } - .sm\:bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .sm\:-left-40 { + left: -10rem !important; } - .sm\:bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .sm\:-top-44 { + top: -11rem !important; } - .sm\:bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .sm\:-right-44 { + right: -11rem !important; } - .sm\:bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .sm\:-bottom-44 { + bottom: -11rem !important; } - .sm\:bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .sm\:-left-44 { + left: -11rem !important; } - .sm\:bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .sm\:-top-48 { + top: -12rem !important; } - .sm\:bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .sm\:-right-48 { + right: -12rem !important; } - .sm\:bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .sm\:-bottom-48 { + bottom: -12rem !important; } - .sm\:bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .sm\:-left-48 { + left: -12rem !important; } - .sm\:bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .sm\:-top-52 { + top: -13rem !important; } - .sm\:bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .sm\:-right-52 { + right: -13rem !important; } - .sm\:bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .sm\:-bottom-52 { + bottom: -13rem !important; + } + + .sm\:-left-52 { + left: -13rem !important; } - .sm\:bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .sm\:-top-56 { + top: -14rem !important; } - .sm\:bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .sm\:-right-56 { + right: -14rem !important; } - .group:hover .sm\:group-hover\:bg-transparent { - background-color: transparent !important; + .sm\:-bottom-56 { + bottom: -14rem !important; } - .group:hover .sm\:group-hover\:bg-current { - background-color: currentColor !important; + .sm\:-left-56 { + left: -14rem !important; } - .group:hover .sm\:group-hover\:bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .sm\:-top-60 { + top: -15rem !important; } - .group:hover .sm\:group-hover\:bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .sm\:-right-60 { + right: -15rem !important; } - .group:hover .sm\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .sm\:-bottom-60 { + bottom: -15rem !important; } - .group:hover .sm\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .sm\:-left-60 { + left: -15rem !important; } - .group:hover .sm\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .sm\:-top-64 { + top: -16rem !important; } - .group:hover .sm\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .sm\:-right-64 { + right: -16rem !important; } - .group:hover .sm\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .sm\:-bottom-64 { + bottom: -16rem !important; } - .group:hover .sm\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .sm\:-left-64 { + left: -16rem !important; } - .group:hover .sm\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .sm\:-top-72 { + top: -18rem !important; } - .group:hover .sm\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .sm\:-right-72 { + right: -18rem !important; } - .group:hover .sm\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .sm\:-bottom-72 { + bottom: -18rem !important; } - .group:hover .sm\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .sm\:-left-72 { + left: -18rem !important; } - .group:hover .sm\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .sm\:-top-80 { + top: -20rem !important; } - .group:hover .sm\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .sm\:-right-80 { + right: -20rem !important; } - .group:hover .sm\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .sm\:-bottom-80 { + bottom: -20rem !important; } - .group:hover .sm\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .sm\:-left-80 { + left: -20rem !important; } - .group:hover .sm\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .sm\:-top-96 { + top: -24rem !important; } - .group:hover .sm\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .sm\:-right-96 { + right: -24rem !important; } - .group:hover .sm\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .sm\:-bottom-96 { + bottom: -24rem !important; } - .group:hover .sm\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .sm\:-left-96 { + left: -24rem !important; } - .group:hover .sm\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .sm\:-top-px { + top: -1px !important; } - .group:hover .sm\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .sm\:-right-px { + right: -1px !important; } - .group:hover .sm\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .sm\:-bottom-px { + bottom: -1px !important; } - .group:hover .sm\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .sm\:-left-px { + left: -1px !important; } - .group:hover .sm\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .sm\:-top-0\.5 { + top: -0.125rem !important; } - .group:hover .sm\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .sm\:-right-0\.5 { + right: -0.125rem !important; } - .group:hover .sm\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .sm\:-bottom-0\.5 { + bottom: -0.125rem !important; } - .group:hover .sm\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .sm\:-left-0\.5 { + left: -0.125rem !important; } - .group:hover .sm\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .sm\:-top-1\.5 { + top: -0.375rem !important; } - .group:hover .sm\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .sm\:-right-1\.5 { + right: -0.375rem !important; } - .group:hover .sm\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .sm\:-bottom-1\.5 { + bottom: -0.375rem !important; } - .group:hover .sm\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .sm\:-left-1\.5 { + left: -0.375rem !important; } - .group:hover .sm\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .sm\:-top-2\.5 { + top: -0.625rem !important; } - .group:hover .sm\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .sm\:-right-2\.5 { + right: -0.625rem !important; } - .group:hover .sm\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .sm\:-bottom-2\.5 { + bottom: -0.625rem !important; } - .group:hover .sm\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .sm\:-left-2\.5 { + left: -0.625rem !important; } - .group:hover .sm\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .sm\:-top-3\.5 { + top: -0.875rem !important; } - .group:hover .sm\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .sm\:-right-3\.5 { + right: -0.875rem !important; } - .group:hover .sm\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .sm\:-bottom-3\.5 { + bottom: -0.875rem !important; } - .group:hover .sm\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .sm\:-left-3\.5 { + left: -0.875rem !important; } - .group:hover .sm\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .sm\:top-1\/2 { + top: 50% !important; } - .group:hover .sm\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .sm\:right-1\/2 { + right: 50% !important; } - .group:hover .sm\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .sm\:bottom-1\/2 { + bottom: 50% !important; } - .group:hover .sm\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .sm\:left-1\/2 { + left: 50% !important; } - .group:hover .sm\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .sm\:top-1\/3 { + top: 33.333333% !important; } - .group:hover .sm\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .sm\:right-1\/3 { + right: 33.333333% !important; } - .group:hover .sm\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .sm\:bottom-1\/3 { + bottom: 33.333333% !important; } - .group:hover .sm\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .sm\:left-1\/3 { + left: 33.333333% !important; } - .group:hover .sm\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .sm\:top-2\/3 { + top: 66.666667% !important; } - .group:hover .sm\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .sm\:right-2\/3 { + right: 66.666667% !important; } - .group:hover .sm\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .sm\:bottom-2\/3 { + bottom: 66.666667% !important; } - .group:hover .sm\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .sm\:left-2\/3 { + left: 66.666667% !important; } - .group:hover .sm\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .sm\:top-1\/4 { + top: 25% !important; } - .group:hover .sm\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .sm\:right-1\/4 { + right: 25% !important; } - .group:hover .sm\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .sm\:bottom-1\/4 { + bottom: 25% !important; } - .group:hover .sm\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .sm\:left-1\/4 { + left: 25% !important; } - .group:hover .sm\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .sm\:top-2\/4 { + top: 50% !important; } - .group:hover .sm\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .sm\:right-2\/4 { + right: 50% !important; } - .group:hover .sm\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .sm\:bottom-2\/4 { + bottom: 50% !important; } - .group:hover .sm\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .sm\:left-2\/4 { + left: 50% !important; } - .group:hover .sm\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .sm\:top-3\/4 { + top: 75% !important; } - .group:hover .sm\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .sm\:right-3\/4 { + right: 75% !important; } - .group:hover .sm\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .sm\:bottom-3\/4 { + bottom: 75% !important; } - .group:hover .sm\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .sm\:left-3\/4 { + left: 75% !important; } - .group:hover .sm\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .sm\:top-full { + top: 100% !important; } - .group:hover .sm\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .sm\:right-full { + right: 100% !important; } - .group:hover .sm\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .sm\:bottom-full { + bottom: 100% !important; } - .group:hover .sm\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .sm\:left-full { + left: 100% !important; } - .group:hover .sm\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .sm\:-top-1\/2 { + top: -50% !important; } - .group:hover .sm\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .sm\:-right-1\/2 { + right: -50% !important; } - .group:hover .sm\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .sm\:-bottom-1\/2 { + bottom: -50% !important; } - .group:hover .sm\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .sm\:-left-1\/2 { + left: -50% !important; } - .group:hover .sm\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .sm\:-top-1\/3 { + top: -33.333333% !important; } - .group:hover .sm\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .sm\:-right-1\/3 { + right: -33.333333% !important; } - .group:hover .sm\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .sm\:-bottom-1\/3 { + bottom: -33.333333% !important; } - .group:hover .sm\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .sm\:-left-1\/3 { + left: -33.333333% !important; } - .group:hover .sm\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .sm\:-top-2\/3 { + top: -66.666667% !important; } - .group:hover .sm\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .sm\:-right-2\/3 { + right: -66.666667% !important; } - .group:hover .sm\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .sm\:-bottom-2\/3 { + bottom: -66.666667% !important; } - .group:hover .sm\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .sm\:-left-2\/3 { + left: -66.666667% !important; } - .group:hover .sm\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .sm\:-top-1\/4 { + top: -25% !important; } - .group:hover .sm\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .sm\:-right-1\/4 { + right: -25% !important; } - .sm\:focus-within\:bg-transparent:focus-within { - background-color: transparent !important; + .sm\:-bottom-1\/4 { + bottom: -25% !important; } - .sm\:focus-within\:bg-current:focus-within { - background-color: currentColor !important; + .sm\:-left-1\/4 { + left: -25% !important; } - .sm\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .sm\:-top-2\/4 { + top: -50% !important; } - .sm\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .sm\:-right-2\/4 { + right: -50% !important; } - .sm\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .sm\:-bottom-2\/4 { + bottom: -50% !important; } - .sm\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .sm\:-left-2\/4 { + left: -50% !important; } - .sm\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .sm\:-top-3\/4 { + top: -75% !important; } - .sm\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .sm\:-right-3\/4 { + right: -75% !important; } - .sm\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .sm\:-bottom-3\/4 { + bottom: -75% !important; } - .sm\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .sm\:-left-3\/4 { + left: -75% !important; } - .sm\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .sm\:-top-full { + top: -100% !important; } - .sm\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .sm\:-right-full { + right: -100% !important; } - .sm\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .sm\:-bottom-full { + bottom: -100% !important; } - .sm\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .sm\:-left-full { + left: -100% !important; } - .sm\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .sm\:isolate { + isolation: isolate !important; } - .sm\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .sm\:isolation-auto { + isolation: auto !important; } - .sm\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .sm\:z-0 { + z-index: 0 !important; } - .sm\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .sm\:z-10 { + z-index: 10 !important; } - .sm\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .sm\:z-20 { + z-index: 20 !important; } - .sm\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .sm\:z-30 { + z-index: 30 !important; } - .sm\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .sm\:z-40 { + z-index: 40 !important; } - .sm\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .sm\:z-50 { + z-index: 50 !important; } - .sm\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .sm\:z-auto { + z-index: auto !important; } - .sm\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .sm\:focus-within\:z-0:focus-within { + z-index: 0 !important; } - .sm\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .sm\:focus-within\:z-10:focus-within { + z-index: 10 !important; } - .sm\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .sm\:focus-within\:z-20:focus-within { + z-index: 20 !important; } - .sm\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .sm\:focus-within\:z-30:focus-within { + z-index: 30 !important; } - .sm\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .sm\:focus-within\:z-40:focus-within { + z-index: 40 !important; } - .sm\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .sm\:focus-within\:z-50:focus-within { + z-index: 50 !important; } - .sm\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .sm\:focus-within\:z-auto:focus-within { + z-index: auto !important; } - .sm\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .sm\:focus\:z-0:focus { + z-index: 0 !important; } - .sm\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .sm\:focus\:z-10:focus { + z-index: 10 !important; } - .sm\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .sm\:focus\:z-20:focus { + z-index: 20 !important; } - .sm\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .sm\:focus\:z-30:focus { + z-index: 30 !important; } - .sm\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .sm\:focus\:z-40:focus { + z-index: 40 !important; } - .sm\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .sm\:focus\:z-50:focus { + z-index: 50 !important; } - .sm\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .sm\:focus\:z-auto:focus { + z-index: auto !important; } - .sm\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .sm\:order-1 { + order: 1 !important; } - .sm\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .sm\:order-2 { + order: 2 !important; } - .sm\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .sm\:order-3 { + order: 3 !important; } - .sm\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .sm\:order-4 { + order: 4 !important; } - .sm\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .sm\:order-5 { + order: 5 !important; } - .sm\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .sm\:order-6 { + order: 6 !important; } - .sm\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .sm\:order-7 { + order: 7 !important; } - .sm\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .sm\:order-8 { + order: 8 !important; } - .sm\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .sm\:order-9 { + order: 9 !important; } - .sm\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .sm\:order-10 { + order: 10 !important; } - .sm\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .sm\:order-11 { + order: 11 !important; } - .sm\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .sm\:order-12 { + order: 12 !important; } - .sm\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .sm\:order-first { + order: -9999 !important; } - .sm\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .sm\:order-last { + order: 9999 !important; } - .sm\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .sm\:order-none { + order: 0 !important; } - .sm\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .sm\:col-auto { + grid-column: auto !important; } - .sm\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .sm\:col-span-1 { + grid-column: span 1 / span 1 !important; } - .sm\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .sm\:col-span-2 { + grid-column: span 2 / span 2 !important; } - .sm\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .sm\:col-span-3 { + grid-column: span 3 / span 3 !important; } - .sm\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .sm\:col-span-4 { + grid-column: span 4 / span 4 !important; } - .sm\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .sm\:col-span-5 { + grid-column: span 5 / span 5 !important; } - .sm\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .sm\:col-span-6 { + grid-column: span 6 / span 6 !important; } - .sm\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .sm\:col-span-7 { + grid-column: span 7 / span 7 !important; } - .sm\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .sm\:col-span-8 { + grid-column: span 8 / span 8 !important; } - .sm\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .sm\:col-span-9 { + grid-column: span 9 / span 9 !important; } - .sm\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .sm\:col-span-10 { + grid-column: span 10 / span 10 !important; } - .sm\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .sm\:col-span-11 { + grid-column: span 11 / span 11 !important; } - .sm\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .sm\:col-span-12 { + grid-column: span 12 / span 12 !important; } - .sm\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .sm\:col-span-full { + grid-column: 1 / -1 !important; } - .sm\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .sm\:col-start-1 { + grid-column-start: 1 !important; } - .sm\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .sm\:col-start-2 { + grid-column-start: 2 !important; } - .sm\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .sm\:col-start-3 { + grid-column-start: 3 !important; } - .sm\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .sm\:col-start-4 { + grid-column-start: 4 !important; } - .sm\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .sm\:col-start-5 { + grid-column-start: 5 !important; } - .sm\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .sm\:col-start-6 { + grid-column-start: 6 !important; } - .sm\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .sm\:col-start-7 { + grid-column-start: 7 !important; } - .sm\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .sm\:col-start-8 { + grid-column-start: 8 !important; } - .sm\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .sm\:col-start-9 { + grid-column-start: 9 !important; } - .sm\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .sm\:col-start-10 { + grid-column-start: 10 !important; } - .sm\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .sm\:col-start-11 { + grid-column-start: 11 !important; } - .sm\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .sm\:col-start-12 { + grid-column-start: 12 !important; } - .sm\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .sm\:col-start-13 { + grid-column-start: 13 !important; } - .sm\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .sm\:col-start-auto { + grid-column-start: auto !important; } - .sm\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .sm\:col-end-1 { + grid-column-end: 1 !important; } - .sm\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .sm\:col-end-2 { + grid-column-end: 2 !important; } - .sm\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .sm\:col-end-3 { + grid-column-end: 3 !important; } - .sm\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .sm\:col-end-4 { + grid-column-end: 4 !important; } - .sm\:hover\:bg-transparent:hover { - background-color: transparent !important; + .sm\:col-end-5 { + grid-column-end: 5 !important; } - .sm\:hover\:bg-current:hover { - background-color: currentColor !important; + .sm\:col-end-6 { + grid-column-end: 6 !important; } - .sm\:hover\:bg-black:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .sm\:col-end-7 { + grid-column-end: 7 !important; } - .sm\:hover\:bg-white:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .sm\:col-end-8 { + grid-column-end: 8 !important; } - .sm\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .sm\:col-end-9 { + grid-column-end: 9 !important; } - .sm\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .sm\:col-end-10 { + grid-column-end: 10 !important; } - .sm\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .sm\:col-end-11 { + grid-column-end: 11 !important; } - .sm\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .sm\:col-end-12 { + grid-column-end: 12 !important; } - .sm\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .sm\:col-end-13 { + grid-column-end: 13 !important; } - .sm\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .sm\:col-end-auto { + grid-column-end: auto !important; } - .sm\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .sm\:row-auto { + grid-row: auto !important; } - .sm\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .sm\:row-span-1 { + grid-row: span 1 / span 1 !important; } - .sm\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .sm\:row-span-2 { + grid-row: span 2 / span 2 !important; } - .sm\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .sm\:row-span-3 { + grid-row: span 3 / span 3 !important; } - .sm\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .sm\:row-span-4 { + grid-row: span 4 / span 4 !important; } - .sm\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .sm\:row-span-5 { + grid-row: span 5 / span 5 !important; } - .sm\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .sm\:row-span-6 { + grid-row: span 6 / span 6 !important; } - .sm\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .sm\:row-span-full { + grid-row: 1 / -1 !important; } - .sm\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .sm\:row-start-1 { + grid-row-start: 1 !important; } - .sm\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .sm\:row-start-2 { + grid-row-start: 2 !important; } - .sm\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .sm\:row-start-3 { + grid-row-start: 3 !important; } - .sm\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .sm\:row-start-4 { + grid-row-start: 4 !important; } - .sm\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .sm\:row-start-5 { + grid-row-start: 5 !important; } - .sm\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .sm\:row-start-6 { + grid-row-start: 6 !important; } - .sm\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .sm\:row-start-7 { + grid-row-start: 7 !important; } - .sm\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .sm\:row-start-auto { + grid-row-start: auto !important; } - .sm\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .sm\:row-end-1 { + grid-row-end: 1 !important; } - .sm\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .sm\:row-end-2 { + grid-row-end: 2 !important; } - .sm\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .sm\:row-end-3 { + grid-row-end: 3 !important; } - .sm\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .sm\:row-end-4 { + grid-row-end: 4 !important; } - .sm\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .sm\:row-end-5 { + grid-row-end: 5 !important; } - .sm\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .sm\:row-end-6 { + grid-row-end: 6 !important; } - .sm\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .sm\:row-end-7 { + grid-row-end: 7 !important; } - .sm\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .sm\:row-end-auto { + grid-row-end: auto !important; } - .sm\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .sm\:float-right { + float: right !important; } - .sm\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .sm\:float-left { + float: left !important; } - .sm\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .sm\:float-none { + float: none !important; } - .sm\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .sm\:clear-left { + clear: left !important; } - .sm\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .sm\:clear-right { + clear: right !important; } - .sm\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .sm\:clear-both { + clear: both !important; } - .sm\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .sm\:clear-none { + clear: none !important; } - .sm\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .sm\:m-0 { + margin: 0px !important; } - .sm\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .sm\:m-1 { + margin: 0.25rem !important; } - .sm\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .sm\:m-2 { + margin: 0.5rem !important; } - .sm\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .sm\:m-3 { + margin: 0.75rem !important; } - .sm\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .sm\:m-4 { + margin: 1rem !important; } - .sm\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .sm\:m-5 { + margin: 1.25rem !important; } - .sm\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .sm\:m-6 { + margin: 1.5rem !important; } - .sm\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .sm\:m-7 { + margin: 1.75rem !important; } - .sm\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .sm\:m-8 { + margin: 2rem !important; } - .sm\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .sm\:m-9 { + margin: 2.25rem !important; } - .sm\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .sm\:m-10 { + margin: 2.5rem !important; } - .sm\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .sm\:m-11 { + margin: 2.75rem !important; } - .sm\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .sm\:m-12 { + margin: 3rem !important; } - .sm\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .sm\:m-14 { + margin: 3.5rem !important; } - .sm\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .sm\:m-16 { + margin: 4rem !important; } - .sm\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .sm\:m-20 { + margin: 5rem !important; } - .sm\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .sm\:m-24 { + margin: 6rem !important; } - .sm\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .sm\:m-28 { + margin: 7rem !important; } - .sm\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .sm\:m-32 { + margin: 8rem !important; } - .sm\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .sm\:m-36 { + margin: 9rem !important; } - .sm\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .sm\:m-40 { + margin: 10rem !important; } - .sm\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .sm\:m-44 { + margin: 11rem !important; } - .sm\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .sm\:m-48 { + margin: 12rem !important; } - .sm\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .sm\:m-52 { + margin: 13rem !important; } - .sm\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .sm\:m-56 { + margin: 14rem !important; } - .sm\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .sm\:m-60 { + margin: 15rem !important; } - .sm\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .sm\:m-64 { + margin: 16rem !important; } - .sm\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .sm\:m-72 { + margin: 18rem !important; } - .sm\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .sm\:m-80 { + margin: 20rem !important; } - .sm\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .sm\:m-96 { + margin: 24rem !important; } - .sm\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .sm\:m-auto { + margin: auto !important; } - .sm\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .sm\:m-px { + margin: 1px !important; } - .sm\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .sm\:m-0\.5 { + margin: 0.125rem !important; } - .sm\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .sm\:m-1\.5 { + margin: 0.375rem !important; } - .sm\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .sm\:m-2\.5 { + margin: 0.625rem !important; } - .sm\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .sm\:m-3\.5 { + margin: 0.875rem !important; } - .sm\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .sm\:-m-0 { + margin: 0px !important; } - .sm\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .sm\:-m-1 { + margin: -0.25rem !important; } - .sm\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .sm\:-m-2 { + margin: -0.5rem !important; } - .sm\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .sm\:-m-3 { + margin: -0.75rem !important; } - .sm\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .sm\:-m-4 { + margin: -1rem !important; } - .sm\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .sm\:-m-5 { + margin: -1.25rem !important; } - .sm\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .sm\:-m-6 { + margin: -1.5rem !important; } - .sm\:focus\:bg-transparent:focus { - background-color: transparent !important; + .sm\:-m-7 { + margin: -1.75rem !important; } - .sm\:focus\:bg-current:focus { - background-color: currentColor !important; + .sm\:-m-8 { + margin: -2rem !important; } - .sm\:focus\:bg-black:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .sm\:-m-9 { + margin: -2.25rem !important; } - .sm\:focus\:bg-white:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .sm\:-m-10 { + margin: -2.5rem !important; } - .sm\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .sm\:-m-11 { + margin: -2.75rem !important; } - .sm\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .sm\:-m-12 { + margin: -3rem !important; } - .sm\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .sm\:-m-14 { + margin: -3.5rem !important; } - .sm\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .sm\:-m-16 { + margin: -4rem !important; } - .sm\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .sm\:-m-20 { + margin: -5rem !important; } - .sm\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .sm\:-m-24 { + margin: -6rem !important; } - .sm\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .sm\:-m-28 { + margin: -7rem !important; } - .sm\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .sm\:-m-32 { + margin: -8rem !important; } - .sm\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .sm\:-m-36 { + margin: -9rem !important; } - .sm\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .sm\:-m-40 { + margin: -10rem !important; } - .sm\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .sm\:-m-44 { + margin: -11rem !important; } - .sm\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .sm\:-m-48 { + margin: -12rem !important; } - .sm\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .sm\:-m-52 { + margin: -13rem !important; } - .sm\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .sm\:-m-56 { + margin: -14rem !important; } - .sm\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .sm\:-m-60 { + margin: -15rem !important; } - .sm\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .sm\:-m-64 { + margin: -16rem !important; } - .sm\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .sm\:-m-72 { + margin: -18rem !important; } - .sm\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .sm\:-m-80 { + margin: -20rem !important; } - .sm\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .sm\:-m-96 { + margin: -24rem !important; } - .sm\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .sm\:-m-px { + margin: -1px !important; } - .sm\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .sm\:-m-0\.5 { + margin: -0.125rem !important; } - .sm\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .sm\:-m-1\.5 { + margin: -0.375rem !important; } - .sm\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .sm\:-m-2\.5 { + margin: -0.625rem !important; } - .sm\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .sm\:-m-3\.5 { + margin: -0.875rem !important; } - .sm\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .sm\:mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } - .sm\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .sm\:mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; } - .sm\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .sm\:mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; } - .sm\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .sm\:mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; } - .sm\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .sm\:mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; } - .sm\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .sm\:mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; } - .sm\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .sm\:mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; } - .sm\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .sm\:mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; } - .sm\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .sm\:mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; } - .sm\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .sm\:mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; } - .sm\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .sm\:mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; } - .sm\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .sm\:mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; } - .sm\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .sm\:mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; } - .sm\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .sm\:mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; } - .sm\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .sm\:mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; } - .sm\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .sm\:mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; } - .sm\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .sm\:mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; } - .sm\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .sm\:mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; } - .sm\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .sm\:mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; } - .sm\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .sm\:mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; } - .sm\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .sm\:mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; } - .sm\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .sm\:mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; } - .sm\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .sm\:mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; } - .sm\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .sm\:mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; } - .sm\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .sm\:mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; } - .sm\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .sm\:mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; } - .sm\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .sm\:mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; } - .sm\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .sm\:mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; } - .sm\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .sm\:mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; } - .sm\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .sm\:mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; } - .sm\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .sm\:mx-auto { + margin-left: auto !important; + margin-right: auto !important; } - .sm\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .sm\:mx-px { + margin-left: 1px !important; + margin-right: 1px !important; } - .sm\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .sm\:mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; } - .sm\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .sm\:mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; } - .sm\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .sm\:mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; } - .sm\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .sm\:mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; } - .sm\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .sm\:-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } - .sm\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .sm\:-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; } - .sm\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .sm\:-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; } - .sm\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .sm\:-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; } - .sm\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .sm\:-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; } - .sm\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .sm\:-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; } - .sm\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .sm\:-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; } - .sm\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .sm\:-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; } - .sm\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .sm\:-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; } - .sm\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .sm\:-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; } - .sm\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .sm\:-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; } - .sm\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .sm\:-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; } - .sm\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .sm\:-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; } - .sm\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .sm\:-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; } - .sm\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .sm\:-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; } - .sm\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .sm\:-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; } - .sm\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .sm\:-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; } - .sm\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .sm\:-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; } - .sm\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .sm\:-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; } - .sm\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .sm\:-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; } - .sm\:bg-none { - background-image: none !important; + .sm\:-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; } - .sm\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; + .sm\:-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; } - .sm\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; + .sm\:-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; } - .sm\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; + .sm\:-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; } - .sm\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; + .sm\:-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; } - .sm\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; + .sm\:-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; } - .sm\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; + .sm\:-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; } - .sm\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; + .sm\:-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; } - .sm\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; + .sm\:-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; } - .sm\:from-transparent { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .sm\:-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; } - .sm\:from-current { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .sm\:-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; } - .sm\:from-black { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .sm\:-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; } - .sm\:from-white { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .sm\:-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; } - .sm\:from-gray-50 { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .sm\:-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; } - .sm\:from-gray-100 { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .sm\:-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; } - .sm\:from-gray-200 { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .sm\:my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .sm\:from-gray-300 { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .sm\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .sm\:from-gray-400 { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .sm\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } - .sm\:from-gray-500 { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .sm\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; } - .sm\:from-gray-600 { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .sm\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } - .sm\:from-gray-700 { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .sm\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; } - .sm\:from-gray-800 { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .sm\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } - .sm\:from-gray-900 { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .sm\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; } - .sm\:from-red-50 { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .sm\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; } - .sm\:from-red-100 { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .sm\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; } - .sm\:from-red-200 { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .sm\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; } - .sm\:from-red-300 { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .sm\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; } - .sm\:from-red-400 { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .sm\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } - .sm\:from-red-500 { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .sm\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; } - .sm\:from-red-600 { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .sm\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; } - .sm\:from-red-700 { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .sm\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; } - .sm\:from-red-800 { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .sm\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; } - .sm\:from-red-900 { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .sm\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; } - .sm\:from-yellow-50 { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .sm\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; } - .sm\:from-yellow-100 { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .sm\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; } - .sm\:from-yellow-200 { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .sm\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; } - .sm\:from-yellow-300 { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .sm\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; } - .sm\:from-yellow-400 { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .sm\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; } - .sm\:from-yellow-500 { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .sm\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; } - .sm\:from-yellow-600 { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .sm\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; } - .sm\:from-yellow-700 { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .sm\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; } - .sm\:from-yellow-800 { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .sm\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; } - .sm\:from-yellow-900 { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .sm\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; } - .sm\:from-green-50 { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .sm\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; } - .sm\:from-green-100 { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .sm\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; } - .sm\:from-green-200 { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .sm\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } - .sm\:from-green-300 { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .sm\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; } - .sm\:from-green-400 { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .sm\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; } - .sm\:from-green-500 { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .sm\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; } - .sm\:from-green-600 { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .sm\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; } - .sm\:from-green-700 { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .sm\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; } - .sm\:from-green-800 { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .sm\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .sm\:from-green-900 { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .sm\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } - .sm\:from-blue-50 { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .sm\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } - .sm\:from-blue-100 { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .sm\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } - .sm\:from-blue-200 { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .sm\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } - .sm\:from-blue-300 { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .sm\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } - .sm\:from-blue-400 { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .sm\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } - .sm\:from-blue-500 { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .sm\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } - .sm\:from-blue-600 { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .sm\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } - .sm\:from-blue-700 { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .sm\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } - .sm\:from-blue-800 { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .sm\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } - .sm\:from-blue-900 { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .sm\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } - .sm\:from-indigo-50 { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .sm\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } - .sm\:from-indigo-100 { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .sm\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } - .sm\:from-indigo-200 { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .sm\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } - .sm\:from-indigo-300 { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .sm\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } - .sm\:from-indigo-400 { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .sm\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } - .sm\:from-indigo-500 { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .sm\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } - .sm\:from-indigo-600 { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .sm\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } - .sm\:from-indigo-700 { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .sm\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } - .sm\:from-indigo-800 { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .sm\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } - .sm\:from-indigo-900 { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .sm\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } - .sm\:from-purple-50 { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .sm\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } - .sm\:from-purple-100 { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .sm\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } - .sm\:from-purple-200 { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .sm\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } - .sm\:from-purple-300 { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .sm\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } - .sm\:from-purple-400 { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .sm\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } - .sm\:from-purple-500 { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .sm\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } - .sm\:from-purple-600 { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .sm\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } - .sm\:from-purple-700 { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .sm\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } - .sm\:from-purple-800 { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .sm\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } - .sm\:from-purple-900 { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .sm\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } - .sm\:from-pink-50 { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .sm\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } - .sm\:from-pink-100 { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .sm\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } - .sm\:from-pink-200 { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .sm\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } - .sm\:from-pink-300 { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .sm\:mt-0 { + margin-top: 0px !important; } - .sm\:from-pink-400 { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .sm\:mt-1 { + margin-top: 0.25rem !important; } - .sm\:from-pink-500 { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .sm\:mt-2 { + margin-top: 0.5rem !important; } - .sm\:from-pink-600 { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .sm\:mt-3 { + margin-top: 0.75rem !important; } - .sm\:from-pink-700 { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .sm\:mt-4 { + margin-top: 1rem !important; } - .sm\:from-pink-800 { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .sm\:mt-5 { + margin-top: 1.25rem !important; } - .sm\:from-pink-900 { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .sm\:mt-6 { + margin-top: 1.5rem !important; } - .sm\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .sm\:mt-7 { + margin-top: 1.75rem !important; } - .sm\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .sm\:mt-8 { + margin-top: 2rem !important; } - .sm\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .sm\:mt-9 { + margin-top: 2.25rem !important; } - .sm\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .sm\:mt-10 { + margin-top: 2.5rem !important; } - .sm\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .sm\:mt-11 { + margin-top: 2.75rem !important; } - .sm\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .sm\:mt-12 { + margin-top: 3rem !important; } - .sm\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .sm\:mt-14 { + margin-top: 3.5rem !important; } - .sm\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .sm\:mt-16 { + margin-top: 4rem !important; } - .sm\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .sm\:mt-20 { + margin-top: 5rem !important; } - .sm\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .sm\:mt-24 { + margin-top: 6rem !important; } - .sm\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .sm\:mt-28 { + margin-top: 7rem !important; } - .sm\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .sm\:mt-32 { + margin-top: 8rem !important; } - .sm\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .sm\:mt-36 { + margin-top: 9rem !important; } - .sm\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .sm\:mt-40 { + margin-top: 10rem !important; } - .sm\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .sm\:mt-44 { + margin-top: 11rem !important; } - .sm\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .sm\:mt-48 { + margin-top: 12rem !important; } - .sm\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .sm\:mt-52 { + margin-top: 13rem !important; } - .sm\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .sm\:mt-56 { + margin-top: 14rem !important; } - .sm\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .sm\:mt-60 { + margin-top: 15rem !important; } - .sm\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .sm\:mt-64 { + margin-top: 16rem !important; } - .sm\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .sm\:mt-72 { + margin-top: 18rem !important; } - .sm\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .sm\:mt-80 { + margin-top: 20rem !important; } - .sm\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .sm\:mt-96 { + margin-top: 24rem !important; } - .sm\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .sm\:mt-auto { + margin-top: auto !important; } - .sm\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .sm\:mt-px { + margin-top: 1px !important; } - .sm\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .sm\:mt-0\.5 { + margin-top: 0.125rem !important; } - .sm\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .sm\:mt-1\.5 { + margin-top: 0.375rem !important; } - .sm\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .sm\:mt-2\.5 { + margin-top: 0.625rem !important; } - .sm\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .sm\:mt-3\.5 { + margin-top: 0.875rem !important; } - .sm\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .sm\:-mt-0 { + margin-top: 0px !important; } - .sm\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .sm\:-mt-1 { + margin-top: -0.25rem !important; } - .sm\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .sm\:-mt-2 { + margin-top: -0.5rem !important; } - .sm\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .sm\:-mt-3 { + margin-top: -0.75rem !important; } - .sm\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .sm\:-mt-4 { + margin-top: -1rem !important; } - .sm\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .sm\:-mt-5 { + margin-top: -1.25rem !important; } - .sm\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .sm\:-mt-6 { + margin-top: -1.5rem !important; } - .sm\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .sm\:-mt-7 { + margin-top: -1.75rem !important; } - .sm\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .sm\:-mt-8 { + margin-top: -2rem !important; } - .sm\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .sm\:-mt-9 { + margin-top: -2.25rem !important; } - .sm\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .sm\:-mt-10 { + margin-top: -2.5rem !important; } - .sm\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .sm\:-mt-11 { + margin-top: -2.75rem !important; } - .sm\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .sm\:-mt-12 { + margin-top: -3rem !important; } - .sm\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .sm\:-mt-14 { + margin-top: -3.5rem !important; } - .sm\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .sm\:-mt-16 { + margin-top: -4rem !important; } - .sm\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .sm\:-mt-20 { + margin-top: -5rem !important; } - .sm\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .sm\:-mt-24 { + margin-top: -6rem !important; } - .sm\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .sm\:-mt-28 { + margin-top: -7rem !important; } - .sm\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .sm\:-mt-32 { + margin-top: -8rem !important; } - .sm\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .sm\:-mt-36 { + margin-top: -9rem !important; } - .sm\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .sm\:-mt-40 { + margin-top: -10rem !important; } - .sm\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .sm\:-mt-44 { + margin-top: -11rem !important; } - .sm\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .sm\:-mt-48 { + margin-top: -12rem !important; } - .sm\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .sm\:-mt-52 { + margin-top: -13rem !important; } - .sm\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .sm\:-mt-56 { + margin-top: -14rem !important; } - .sm\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .sm\:-mt-60 { + margin-top: -15rem !important; } - .sm\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .sm\:-mt-64 { + margin-top: -16rem !important; } - .sm\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .sm\:-mt-72 { + margin-top: -18rem !important; } - .sm\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .sm\:-mt-80 { + margin-top: -20rem !important; } - .sm\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .sm\:-mt-96 { + margin-top: -24rem !important; } - .sm\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .sm\:-mt-px { + margin-top: -1px !important; } - .sm\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .sm\:-mt-0\.5 { + margin-top: -0.125rem !important; } - .sm\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .sm\:-mt-1\.5 { + margin-top: -0.375rem !important; } - .sm\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .sm\:-mt-2\.5 { + margin-top: -0.625rem !important; } - .sm\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .sm\:-mt-3\.5 { + margin-top: -0.875rem !important; } - .sm\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .sm\:mr-0 { + margin-right: 0px !important; } - .sm\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .sm\:mr-1 { + margin-right: 0.25rem !important; } - .sm\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .sm\:mr-2 { + margin-right: 0.5rem !important; } - .sm\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .sm\:mr-3 { + margin-right: 0.75rem !important; } - .sm\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .sm\:mr-4 { + margin-right: 1rem !important; } - .sm\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .sm\:mr-5 { + margin-right: 1.25rem !important; } - .sm\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .sm\:mr-6 { + margin-right: 1.5rem !important; } - .sm\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .sm\:mr-7 { + margin-right: 1.75rem !important; } - .sm\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .sm\:mr-8 { + margin-right: 2rem !important; } - .sm\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .sm\:mr-9 { + margin-right: 2.25rem !important; } - .sm\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .sm\:mr-10 { + margin-right: 2.5rem !important; } - .sm\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .sm\:mr-11 { + margin-right: 2.75rem !important; } - .sm\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .sm\:mr-12 { + margin-right: 3rem !important; } - .sm\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .sm\:mr-14 { + margin-right: 3.5rem !important; } - .sm\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .sm\:mr-16 { + margin-right: 4rem !important; } - .sm\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .sm\:mr-20 { + margin-right: 5rem !important; } - .sm\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .sm\:mr-24 { + margin-right: 6rem !important; } - .sm\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .sm\:mr-28 { + margin-right: 7rem !important; } - .sm\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .sm\:mr-32 { + margin-right: 8rem !important; } - .sm\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .sm\:mr-36 { + margin-right: 9rem !important; } - .sm\:to-transparent { - --tw-gradient-to: transparent !important; + .sm\:mr-40 { + margin-right: 10rem !important; } - .sm\:to-current { - --tw-gradient-to: currentColor !important; + .sm\:mr-44 { + margin-right: 11rem !important; } - .sm\:to-black { - --tw-gradient-to: #000 !important; + .sm\:mr-48 { + margin-right: 12rem !important; } - .sm\:to-white { - --tw-gradient-to: #fff !important; + .sm\:mr-52 { + margin-right: 13rem !important; } - .sm\:to-gray-50 { - --tw-gradient-to: #f9fafb !important; + .sm\:mr-56 { + margin-right: 14rem !important; } - .sm\:to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; + .sm\:mr-60 { + margin-right: 15rem !important; } - .sm\:to-gray-200 { - --tw-gradient-to: #e5e7eb !important; + .sm\:mr-64 { + margin-right: 16rem !important; } - .sm\:to-gray-300 { - --tw-gradient-to: #d1d5db !important; + .sm\:mr-72 { + margin-right: 18rem !important; } - .sm\:to-gray-400 { - --tw-gradient-to: #9ca3af !important; + .sm\:mr-80 { + margin-right: 20rem !important; } - .sm\:to-gray-500 { - --tw-gradient-to: #6b7280 !important; + .sm\:mr-96 { + margin-right: 24rem !important; } - .sm\:to-gray-600 { - --tw-gradient-to: #4b5563 !important; + .sm\:mr-auto { + margin-right: auto !important; } - .sm\:to-gray-700 { - --tw-gradient-to: #374151 !important; + .sm\:mr-px { + margin-right: 1px !important; } - .sm\:to-gray-800 { - --tw-gradient-to: #1f2937 !important; + .sm\:mr-0\.5 { + margin-right: 0.125rem !important; } - .sm\:to-gray-900 { - --tw-gradient-to: #111827 !important; + .sm\:mr-1\.5 { + margin-right: 0.375rem !important; } - .sm\:to-red-50 { - --tw-gradient-to: #fef2f2 !important; + .sm\:mr-2\.5 { + margin-right: 0.625rem !important; } - .sm\:to-red-100 { - --tw-gradient-to: #fee2e2 !important; + .sm\:mr-3\.5 { + margin-right: 0.875rem !important; } - .sm\:to-red-200 { - --tw-gradient-to: #fecaca !important; + .sm\:-mr-0 { + margin-right: 0px !important; } - .sm\:to-red-300 { - --tw-gradient-to: #fca5a5 !important; + .sm\:-mr-1 { + margin-right: -0.25rem !important; } - .sm\:to-red-400 { - --tw-gradient-to: #f87171 !important; + .sm\:-mr-2 { + margin-right: -0.5rem !important; } - .sm\:to-red-500 { - --tw-gradient-to: #ef4444 !important; + .sm\:-mr-3 { + margin-right: -0.75rem !important; } - .sm\:to-red-600 { - --tw-gradient-to: #dc2626 !important; + .sm\:-mr-4 { + margin-right: -1rem !important; } - .sm\:to-red-700 { - --tw-gradient-to: #b91c1c !important; + .sm\:-mr-5 { + margin-right: -1.25rem !important; } - .sm\:to-red-800 { - --tw-gradient-to: #991b1b !important; + .sm\:-mr-6 { + margin-right: -1.5rem !important; } - .sm\:to-red-900 { - --tw-gradient-to: #7f1d1d !important; + .sm\:-mr-7 { + margin-right: -1.75rem !important; } - .sm\:to-yellow-50 { - --tw-gradient-to: #fffbeb !important; + .sm\:-mr-8 { + margin-right: -2rem !important; } - .sm\:to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; + .sm\:-mr-9 { + margin-right: -2.25rem !important; } - .sm\:to-yellow-200 { - --tw-gradient-to: #fde68a !important; + .sm\:-mr-10 { + margin-right: -2.5rem !important; } - .sm\:to-yellow-300 { - --tw-gradient-to: #fcd34d !important; + .sm\:-mr-11 { + margin-right: -2.75rem !important; } - .sm\:to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; + .sm\:-mr-12 { + margin-right: -3rem !important; } - .sm\:to-yellow-500 { - --tw-gradient-to: #f59e0b !important; + .sm\:-mr-14 { + margin-right: -3.5rem !important; } - .sm\:to-yellow-600 { - --tw-gradient-to: #d97706 !important; + .sm\:-mr-16 { + margin-right: -4rem !important; } - .sm\:to-yellow-700 { - --tw-gradient-to: #b45309 !important; + .sm\:-mr-20 { + margin-right: -5rem !important; } - .sm\:to-yellow-800 { - --tw-gradient-to: #92400e !important; + .sm\:-mr-24 { + margin-right: -6rem !important; } - .sm\:to-yellow-900 { - --tw-gradient-to: #78350f !important; + .sm\:-mr-28 { + margin-right: -7rem !important; } - .sm\:to-green-50 { - --tw-gradient-to: #ecfdf5 !important; + .sm\:-mr-32 { + margin-right: -8rem !important; } - .sm\:to-green-100 { - --tw-gradient-to: #d1fae5 !important; + .sm\:-mr-36 { + margin-right: -9rem !important; } - .sm\:to-green-200 { - --tw-gradient-to: #a7f3d0 !important; + .sm\:-mr-40 { + margin-right: -10rem !important; } - .sm\:to-green-300 { - --tw-gradient-to: #6ee7b7 !important; + .sm\:-mr-44 { + margin-right: -11rem !important; } - .sm\:to-green-400 { - --tw-gradient-to: #34d399 !important; + .sm\:-mr-48 { + margin-right: -12rem !important; } - .sm\:to-green-500 { - --tw-gradient-to: #10b981 !important; + .sm\:-mr-52 { + margin-right: -13rem !important; } - .sm\:to-green-600 { - --tw-gradient-to: #059669 !important; + .sm\:-mr-56 { + margin-right: -14rem !important; } - .sm\:to-green-700 { - --tw-gradient-to: #047857 !important; + .sm\:-mr-60 { + margin-right: -15rem !important; } - .sm\:to-green-800 { - --tw-gradient-to: #065f46 !important; + .sm\:-mr-64 { + margin-right: -16rem !important; } - .sm\:to-green-900 { - --tw-gradient-to: #064e3b !important; + .sm\:-mr-72 { + margin-right: -18rem !important; } - .sm\:to-blue-50 { - --tw-gradient-to: #eff6ff !important; + .sm\:-mr-80 { + margin-right: -20rem !important; } - .sm\:to-blue-100 { - --tw-gradient-to: #dbeafe !important; + .sm\:-mr-96 { + margin-right: -24rem !important; } - .sm\:to-blue-200 { - --tw-gradient-to: #bfdbfe !important; + .sm\:-mr-px { + margin-right: -1px !important; } - .sm\:to-blue-300 { - --tw-gradient-to: #93c5fd !important; + .sm\:-mr-0\.5 { + margin-right: -0.125rem !important; } - .sm\:to-blue-400 { - --tw-gradient-to: #60a5fa !important; + .sm\:-mr-1\.5 { + margin-right: -0.375rem !important; } - .sm\:to-blue-500 { - --tw-gradient-to: #3b82f6 !important; + .sm\:-mr-2\.5 { + margin-right: -0.625rem !important; } - .sm\:to-blue-600 { - --tw-gradient-to: #2563eb !important; + .sm\:-mr-3\.5 { + margin-right: -0.875rem !important; } - .sm\:to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; + .sm\:mb-0 { + margin-bottom: 0px !important; } - .sm\:to-blue-800 { - --tw-gradient-to: #1e40af !important; + .sm\:mb-1 { + margin-bottom: 0.25rem !important; } - .sm\:to-blue-900 { - --tw-gradient-to: #1e3a8a !important; + .sm\:mb-2 { + margin-bottom: 0.5rem !important; } - .sm\:to-indigo-50 { - --tw-gradient-to: #eef2ff !important; + .sm\:mb-3 { + margin-bottom: 0.75rem !important; } - .sm\:to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; + .sm\:mb-4 { + margin-bottom: 1rem !important; } - .sm\:to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; + .sm\:mb-5 { + margin-bottom: 1.25rem !important; } - .sm\:to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; + .sm\:mb-6 { + margin-bottom: 1.5rem !important; } - .sm\:to-indigo-400 { - --tw-gradient-to: #818cf8 !important; + .sm\:mb-7 { + margin-bottom: 1.75rem !important; } - .sm\:to-indigo-500 { - --tw-gradient-to: #6366f1 !important; + .sm\:mb-8 { + margin-bottom: 2rem !important; } - .sm\:to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; + .sm\:mb-9 { + margin-bottom: 2.25rem !important; } - .sm\:to-indigo-700 { - --tw-gradient-to: #4338ca !important; + .sm\:mb-10 { + margin-bottom: 2.5rem !important; } - .sm\:to-indigo-800 { - --tw-gradient-to: #3730a3 !important; + .sm\:mb-11 { + margin-bottom: 2.75rem !important; } - .sm\:to-indigo-900 { - --tw-gradient-to: #312e81 !important; + .sm\:mb-12 { + margin-bottom: 3rem !important; } - .sm\:to-purple-50 { - --tw-gradient-to: #f5f3ff !important; + .sm\:mb-14 { + margin-bottom: 3.5rem !important; } - .sm\:to-purple-100 { - --tw-gradient-to: #ede9fe !important; + .sm\:mb-16 { + margin-bottom: 4rem !important; } - .sm\:to-purple-200 { - --tw-gradient-to: #ddd6fe !important; + .sm\:mb-20 { + margin-bottom: 5rem !important; } - .sm\:to-purple-300 { - --tw-gradient-to: #c4b5fd !important; + .sm\:mb-24 { + margin-bottom: 6rem !important; } - .sm\:to-purple-400 { - --tw-gradient-to: #a78bfa !important; + .sm\:mb-28 { + margin-bottom: 7rem !important; } - .sm\:to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; + .sm\:mb-32 { + margin-bottom: 8rem !important; } - .sm\:to-purple-600 { - --tw-gradient-to: #7c3aed !important; + .sm\:mb-36 { + margin-bottom: 9rem !important; } - .sm\:to-purple-700 { - --tw-gradient-to: #6d28d9 !important; + .sm\:mb-40 { + margin-bottom: 10rem !important; } - .sm\:to-purple-800 { - --tw-gradient-to: #5b21b6 !important; + .sm\:mb-44 { + margin-bottom: 11rem !important; } - .sm\:to-purple-900 { - --tw-gradient-to: #4c1d95 !important; + .sm\:mb-48 { + margin-bottom: 12rem !important; } - .sm\:to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; + .sm\:mb-52 { + margin-bottom: 13rem !important; } - .sm\:to-pink-100 { - --tw-gradient-to: #fce7f3 !important; + .sm\:mb-56 { + margin-bottom: 14rem !important; } - .sm\:to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; + .sm\:mb-60 { + margin-bottom: 15rem !important; } - .sm\:to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; + .sm\:mb-64 { + margin-bottom: 16rem !important; } - .sm\:to-pink-400 { - --tw-gradient-to: #f472b6 !important; + .sm\:mb-72 { + margin-bottom: 18rem !important; } - .sm\:to-pink-500 { - --tw-gradient-to: #ec4899 !important; + .sm\:mb-80 { + margin-bottom: 20rem !important; } - .sm\:to-pink-600 { - --tw-gradient-to: #db2777 !important; + .sm\:mb-96 { + margin-bottom: 24rem !important; } - .sm\:to-pink-700 { - --tw-gradient-to: #be185d !important; + .sm\:mb-auto { + margin-bottom: auto !important; } - .sm\:to-pink-800 { - --tw-gradient-to: #9d174d !important; + .sm\:mb-px { + margin-bottom: 1px !important; } - .sm\:to-pink-900 { - --tw-gradient-to: #831843 !important; + .sm\:mb-0\.5 { + margin-bottom: 0.125rem !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\:mb-1\.5 { + margin-bottom: 0.375rem !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\:mb-2\.5 { + margin-bottom: 0.625rem !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\:mb-3\.5 { + margin-bottom: 0.875rem !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\:-mb-0 { + margin-bottom: 0px !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\:-mb-1 { + margin-bottom: -0.25rem !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\:-mb-2 { + margin-bottom: -0.5rem !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\:-mb-3 { + margin-bottom: -0.75rem !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\:-mb-4 { + margin-bottom: -1rem !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\:-mb-5 { + margin-bottom: -1.25rem !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\:-mb-6 { + margin-bottom: -1.5rem !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\:-mb-7 { + margin-bottom: -1.75rem !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\:-mb-8 { + margin-bottom: -2rem !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\:-mb-9 { + margin-bottom: -2.25rem !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\:-mb-10 { + margin-bottom: -2.5rem !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\:-mb-11 { + margin-bottom: -2.75rem !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\:-mb-12 { + margin-bottom: -3rem !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\:-mb-14 { + margin-bottom: -3.5rem !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\:-mb-16 { + margin-bottom: -4rem !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\:-mb-20 { + margin-bottom: -5rem !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\:-mb-24 { + margin-bottom: -6rem !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\:-mb-28 { + margin-bottom: -7rem !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\:-mb-32 { + margin-bottom: -8rem !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\:-mb-36 { + margin-bottom: -9rem !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\:-mb-40 { + margin-bottom: -10rem !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\:-mb-44 { + margin-bottom: -11rem !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\:-mb-48 { + margin-bottom: -12rem !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\:-mb-52 { + margin-bottom: -13rem !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\:-mb-56 { + margin-bottom: -14rem !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\:-mb-60 { + margin-bottom: -15rem !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\:-mb-64 { + margin-bottom: -16rem !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\:-mb-72 { + margin-bottom: -18rem !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\:-mb-80 { + margin-bottom: -20rem !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\:-mb-96 { + margin-bottom: -24rem !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\:-mb-px { + margin-bottom: -1px !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\:-mb-0\.5 { + margin-bottom: -0.125rem !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\:-mb-1\.5 { + margin-bottom: -0.375rem !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\:-mb-2\.5 { + margin-bottom: -0.625rem !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\:-mb-3\.5 { + margin-bottom: -0.875rem !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\:ml-0 { + margin-left: 0px !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\:ml-1 { + margin-left: 0.25rem !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\:ml-2 { + margin-left: 0.5rem !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\:ml-3 { + margin-left: 0.75rem !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\:ml-4 { + margin-left: 1rem !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\:ml-5 { + margin-left: 1.25rem !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\:ml-6 { + margin-left: 1.5rem !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\:ml-7 { + margin-left: 1.75rem !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\:ml-8 { + margin-left: 2rem !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\:ml-9 { + margin-left: 2.25rem !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\:ml-10 { + margin-left: 2.5rem !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\:ml-11 { + margin-left: 2.75rem !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\:ml-12 { + margin-left: 3rem !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\:ml-14 { + margin-left: 3.5rem !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\:ml-16 { + margin-left: 4rem !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\:ml-20 { + margin-left: 5rem !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\:ml-24 { + margin-left: 6rem !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\:ml-28 { + margin-left: 7rem !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\:ml-32 { + margin-left: 8rem !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\:ml-36 { + margin-left: 9rem !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\:ml-40 { + margin-left: 10rem !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\:ml-44 { + margin-left: 11rem !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\:ml-48 { + margin-left: 12rem !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\:ml-52 { + margin-left: 13rem !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\:ml-56 { + margin-left: 14rem !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\:ml-60 { + margin-left: 15rem !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\:ml-64 { + margin-left: 16rem !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\:ml-72 { + margin-left: 18rem !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\:ml-80 { + margin-left: 20rem !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\:ml-96 { + margin-left: 24rem !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\:ml-auto { + margin-left: auto !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\:ml-px { + margin-left: 1px !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\:ml-0\.5 { + margin-left: 0.125rem !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\:ml-1\.5 { + margin-left: 0.375rem !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\:ml-2\.5 { + margin-left: 0.625rem !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\:ml-3\.5 { + margin-left: 0.875rem !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\:-ml-0 { + margin-left: 0px !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\:-ml-1 { + margin-left: -0.25rem !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\:-ml-2 { + margin-left: -0.5rem !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\:-ml-3 { + margin-left: -0.75rem !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\:-ml-4 { + margin-left: -1rem !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\:-ml-5 { + margin-left: -1.25rem !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\:-ml-6 { + margin-left: -1.5rem !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\:-ml-7 { + margin-left: -1.75rem !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\:-ml-8 { + margin-left: -2rem !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\:-ml-9 { + margin-left: -2.25rem !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\:-ml-10 { + margin-left: -2.5rem !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\:-ml-11 { + margin-left: -2.75rem !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\:-ml-12 { + margin-left: -3rem !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\:-ml-14 { + margin-left: -3.5rem !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\:-ml-16 { + margin-left: -4rem !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\:-ml-20 { + margin-left: -5rem !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\:-ml-24 { + margin-left: -6rem !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\:-ml-28 { + margin-left: -7rem !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\:-ml-32 { + margin-left: -8rem !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\:-ml-36 { + margin-left: -9rem !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\:-ml-40 { + margin-left: -10rem !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\:-ml-44 { + margin-left: -11rem !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\:-ml-48 { + margin-left: -12rem !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\:-ml-52 { + margin-left: -13rem !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\:-ml-56 { + margin-left: -14rem !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\:-ml-60 { + margin-left: -15rem !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\:-ml-64 { + margin-left: -16rem !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\:-ml-72 { + margin-left: -18rem !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\:-ml-80 { + margin-left: -20rem !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\:-ml-96 { + margin-left: -24rem !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\:-ml-px { + margin-left: -1px !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\:-ml-0\.5 { + margin-left: -0.125rem !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\:-ml-1\.5 { + margin-left: -0.375rem !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\:-ml-2\.5 { + margin-left: -0.625rem !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\:-ml-3\.5 { + margin-left: -0.875rem !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\:box-border { + box-sizing: border-box !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\:box-content { + box-sizing: content-box !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\:block { + display: block !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\:inline-block { + display: inline-block !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\:inline { + display: inline !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\:flex { + display: flex !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\:inline-flex { + display: inline-flex !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\:table { + display: table !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\:inline-table { + display: inline-table !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\:table-caption { + display: table-caption !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\:table-cell { + display: table-cell !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\:table-column { + display: table-column !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\:table-column-group { + display: table-column-group !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\:table-footer-group { + display: table-footer-group !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\:table-header-group { + display: table-header-group !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\:table-row-group { + display: table-row-group !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\:table-row { + display: table-row !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\:flow-root { + display: flow-root !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\:grid { + display: grid !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\:inline-grid { + display: inline-grid !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\:contents { + display: contents !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\:list-item { + display: list-item !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\:hidden { + display: none !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\:h-0 { + height: 0px !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\:h-1 { + height: 0.25rem !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\:h-2 { + height: 0.5rem !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\:h-3 { + height: 0.75rem !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\:h-4 { + height: 1rem !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\:h-5 { + height: 1.25rem !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\:h-6 { + height: 1.5rem !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\:h-7 { + height: 1.75rem !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\:h-8 { + height: 2rem !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\:h-9 { + height: 2.25rem !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\:h-10 { + height: 2.5rem !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\:h-11 { + height: 2.75rem !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\:h-12 { + height: 3rem !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\:h-14 { + height: 3.5rem !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\:h-16 { + height: 4rem !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\:h-20 { + height: 5rem !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\:h-24 { + height: 6rem !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\:h-28 { + height: 7rem !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\:h-32 { + height: 8rem !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\:h-36 { + height: 9rem !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\:h-40 { + height: 10rem !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\:h-44 { + height: 11rem !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\:h-48 { + height: 12rem !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\:h-52 { + height: 13rem !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\:h-56 { + height: 14rem !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\:h-60 { + height: 15rem !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\:h-64 { + height: 16rem !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\:h-72 { + height: 18rem !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\:h-80 { + height: 20rem !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\:h-96 { + height: 24rem !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\:h-auto { + height: auto !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\:h-px { + height: 1px !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\:h-0\.5 { + height: 0.125rem !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\:h-1\.5 { + height: 0.375rem !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\:h-2\.5 { + height: 0.625rem !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\:h-3\.5 { + height: 0.875rem !important; } - .sm\:hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; + .sm\:h-1\/2 { + height: 50% !important; } - .sm\:hover\:to-current:hover { - --tw-gradient-to: currentColor !important; + .sm\:h-1\/3 { + height: 33.333333% !important; } - .sm\:hover\:to-black:hover { - --tw-gradient-to: #000 !important; + .sm\:h-2\/3 { + height: 66.666667% !important; } - .sm\:hover\:to-white:hover { - --tw-gradient-to: #fff !important; + .sm\:h-1\/4 { + height: 25% !important; } - .sm\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; + .sm\:h-2\/4 { + height: 50% !important; } - .sm\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; + .sm\:h-3\/4 { + height: 75% !important; } - .sm\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; + .sm\:h-1\/5 { + height: 20% !important; } - .sm\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; + .sm\:h-2\/5 { + height: 40% !important; } - .sm\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; + .sm\:h-3\/5 { + height: 60% !important; } - .sm\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; + .sm\:h-4\/5 { + height: 80% !important; } - .sm\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; + .sm\:h-1\/6 { + height: 16.666667% !important; } - .sm\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; + .sm\:h-2\/6 { + height: 33.333333% !important; } - .sm\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; + .sm\:h-3\/6 { + height: 50% !important; } - .sm\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; + .sm\:h-4\/6 { + height: 66.666667% !important; } - .sm\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; + .sm\:h-5\/6 { + height: 83.333333% !important; } - .sm\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; + .sm\:h-full { + height: 100% !important; } - .sm\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; + .sm\:h-screen { + height: 100vh !important; } - .sm\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; + .sm\:max-h-0 { + max-height: 0px !important; } - .sm\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; + .sm\:max-h-1 { + max-height: 0.25rem !important; } - .sm\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; + .sm\:max-h-2 { + max-height: 0.5rem !important; } - .sm\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; + .sm\:max-h-3 { + max-height: 0.75rem !important; } - .sm\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; + .sm\:max-h-4 { + max-height: 1rem !important; } - .sm\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; + .sm\:max-h-5 { + max-height: 1.25rem !important; } - .sm\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; + .sm\:max-h-6 { + max-height: 1.5rem !important; } - .sm\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; + .sm\:max-h-7 { + max-height: 1.75rem !important; } - .sm\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; + .sm\:max-h-8 { + max-height: 2rem !important; } - .sm\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; + .sm\:max-h-9 { + max-height: 2.25rem !important; } - .sm\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; + .sm\:max-h-10 { + max-height: 2.5rem !important; } - .sm\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; + .sm\:max-h-11 { + max-height: 2.75rem !important; } - .sm\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; + .sm\:max-h-12 { + max-height: 3rem !important; } - .sm\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; + .sm\:max-h-14 { + max-height: 3.5rem !important; } - .sm\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; + .sm\:max-h-16 { + max-height: 4rem !important; } - .sm\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; + .sm\:max-h-20 { + max-height: 5rem !important; } - .sm\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; + .sm\:max-h-24 { + max-height: 6rem !important; } - .sm\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; + .sm\:max-h-28 { + max-height: 7rem !important; } - .sm\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; + .sm\:max-h-32 { + max-height: 8rem !important; } - .sm\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; + .sm\:max-h-36 { + max-height: 9rem !important; } - .sm\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; + .sm\:max-h-40 { + max-height: 10rem !important; } - .sm\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; + .sm\:max-h-44 { + max-height: 11rem !important; } - .sm\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; + .sm\:max-h-48 { + max-height: 12rem !important; } - .sm\:hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; + .sm\:max-h-52 { + max-height: 13rem !important; } - .sm\:hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; + .sm\:max-h-56 { + max-height: 14rem !important; } - .sm\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; + .sm\:max-h-60 { + max-height: 15rem !important; } - .sm\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; + .sm\:max-h-64 { + max-height: 16rem !important; } - .sm\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; + .sm\:max-h-72 { + max-height: 18rem !important; } - .sm\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; + .sm\:max-h-80 { + max-height: 20rem !important; } - .sm\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; + .sm\:max-h-96 { + max-height: 24rem !important; } - .sm\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; + .sm\:max-h-px { + max-height: 1px !important; } - .sm\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; + .sm\:max-h-0\.5 { + max-height: 0.125rem !important; } - .sm\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; + .sm\:max-h-1\.5 { + max-height: 0.375rem !important; } - .sm\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; + .sm\:max-h-2\.5 { + max-height: 0.625rem !important; } - .sm\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; + .sm\:max-h-3\.5 { + max-height: 0.875rem !important; } - .sm\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; + .sm\:max-h-full { + max-height: 100% !important; } - .sm\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; + .sm\:max-h-screen { + max-height: 100vh !important; } - .sm\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; + .sm\:min-h-0 { + min-height: 0px !important; } - .sm\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; + .sm\:min-h-full { + min-height: 100% !important; } - .sm\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; + .sm\:min-h-screen { + min-height: 100vh !important; } - .sm\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; + .sm\:w-0 { + width: 0px !important; } - .sm\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; + .sm\:w-1 { + width: 0.25rem !important; } - .sm\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; + .sm\:w-2 { + width: 0.5rem !important; } - .sm\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; + .sm\:w-3 { + width: 0.75rem !important; } - .sm\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; + .sm\:w-4 { + width: 1rem !important; } - .sm\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; + .sm\:w-5 { + width: 1.25rem !important; } - .sm\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; + .sm\:w-6 { + width: 1.5rem !important; } - .sm\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; + .sm\:w-7 { + width: 1.75rem !important; } - .sm\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; + .sm\:w-8 { + width: 2rem !important; } - .sm\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; + .sm\:w-9 { + width: 2.25rem !important; } - .sm\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; + .sm\:w-10 { + width: 2.5rem !important; } - .sm\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; + .sm\:w-11 { + width: 2.75rem !important; } - .sm\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; + .sm\:w-12 { + width: 3rem !important; } - .sm\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; + .sm\:w-14 { + width: 3.5rem !important; } - .sm\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; + .sm\:w-16 { + width: 4rem !important; } - .sm\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; + .sm\:w-20 { + width: 5rem !important; } - .sm\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; + .sm\:w-24 { + width: 6rem !important; } - .sm\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; + .sm\:w-28 { + width: 7rem !important; } - .sm\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; + .sm\:w-32 { + width: 8rem !important; } - .sm\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; + .sm\:w-36 { + width: 9rem !important; } - .sm\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; + .sm\:w-40 { + width: 10rem !important; } - .sm\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; + .sm\:w-44 { + width: 11rem !important; } - .sm\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; + .sm\:w-48 { + width: 12rem !important; } - .sm\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; + .sm\:w-52 { + width: 13rem !important; } - .sm\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; + .sm\:w-56 { + width: 14rem !important; } - .sm\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; + .sm\:w-60 { + width: 15rem !important; } - .sm\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; + .sm\:w-64 { + width: 16rem !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\:w-72 { + width: 18rem !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\:w-80 { + width: 20rem !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\:w-96 { + width: 24rem !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\:w-auto { + width: auto !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\:w-px { + width: 1px !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\:w-0\.5 { + width: 0.125rem !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\:w-1\.5 { + width: 0.375rem !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\:w-2\.5 { + width: 0.625rem !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\:w-3\.5 { + width: 0.875rem !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\:w-1\/2 { + width: 50% !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\:w-1\/3 { + width: 33.333333% !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\:w-2\/3 { + width: 66.666667% !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\:w-1\/4 { + width: 25% !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\:w-2\/4 { + width: 50% !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\:w-3\/4 { + width: 75% !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\:w-1\/5 { + width: 20% !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\:w-2\/5 { + width: 40% !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\:w-3\/5 { + width: 60% !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\:w-4\/5 { + width: 80% !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\:w-1\/6 { + width: 16.666667% !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\:w-2\/6 { + width: 33.333333% !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\:w-3\/6 { + width: 50% !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\:w-4\/6 { + width: 66.666667% !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\:w-5\/6 { + width: 83.333333% !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\:w-1\/12 { + width: 8.333333% !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\:w-2\/12 { + width: 16.666667% !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\:w-3\/12 { + width: 25% !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\:w-4\/12 { + width: 33.333333% !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\:w-5\/12 { + width: 41.666667% !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\:w-6\/12 { + width: 50% !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\:w-7\/12 { + width: 58.333333% !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\:w-8\/12 { + width: 66.666667% !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\:w-9\/12 { + width: 75% !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\:w-10\/12 { + width: 83.333333% !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\:w-11\/12 { + width: 91.666667% !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\:w-full { + width: 100% !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\:w-screen { + width: 100vw !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\:w-min { + width: min-content !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\:w-max { + width: max-content !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\:min-w-0 { + min-width: 0px !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\:min-w-full { + min-width: 100% !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\:min-w-min { + min-width: min-content !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\:min-w-max { + min-width: max-content !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\:max-w-0 { + max-width: 0rem !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\:max-w-none { + max-width: none !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\:max-w-xs { + max-width: 20rem !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\:max-w-sm { + max-width: 24rem !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\:max-w-md { + max-width: 28rem !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\:max-w-lg { + max-width: 32rem !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\:max-w-xl { + max-width: 36rem !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\:max-w-2xl { + max-width: 42rem !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\:max-w-3xl { + max-width: 48rem !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\:max-w-4xl { + max-width: 56rem !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\:max-w-5xl { + max-width: 64rem !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\:max-w-6xl { + max-width: 72rem !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\:max-w-7xl { + max-width: 80rem !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\:max-w-full { + max-width: 100% !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\:max-w-min { + max-width: min-content !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\:max-w-max { + max-width: max-content !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\:max-w-prose { + max-width: 65ch !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\:max-w-screen-sm { + max-width: 640px !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\:max-w-screen-md { + max-width: 768px !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\:max-w-screen-lg { + max-width: 1024px !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\:max-w-screen-xl { + max-width: 1280px !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\:max-w-screen-2xl { + max-width: 1536px !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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto !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\:flex-initial { + flex: 0 1 auto !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\:flex-none { + flex: none !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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1 !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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1 !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\:table-auto { + table-layout: auto !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\:table-fixed { + table-layout: fixed !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\:border-collapse { + border-collapse: collapse !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\:border-separate { + border-collapse: separate !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\:transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !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\:transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !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\:transform-none { + transform: none !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\:origin-center { + transform-origin: center !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\:origin-top { + transform-origin: top !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\:origin-top-right { + transform-origin: top right !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\:origin-right { + transform-origin: right !important; } - .sm\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .sm\:origin-bottom-right { + transform-origin: bottom right !important; } - .sm\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .sm\:origin-bottom { + transform-origin: bottom !important; } - .sm\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .sm\:origin-bottom-left { + transform-origin: bottom left !important; } - .sm\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .sm\:origin-left { + transform-origin: left !important; } - .sm\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .sm\:origin-top-left { + transform-origin: top left !important; } - .sm\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .sm\:translate-x-0 { + --tw-translate-x: 0px !important; } - .sm\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .sm\:translate-x-1 { + --tw-translate-x: 0.25rem !important; } - .sm\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .sm\:translate-x-2 { + --tw-translate-x: 0.5rem !important; } - .sm\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .sm\:translate-x-3 { + --tw-translate-x: 0.75rem !important; } - .sm\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .sm\:translate-x-4 { + --tw-translate-x: 1rem !important; } - .sm\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .sm\:translate-x-5 { + --tw-translate-x: 1.25rem !important; } - .sm\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .sm\:translate-x-6 { + --tw-translate-x: 1.5rem !important; } - .sm\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .sm\:translate-x-7 { + --tw-translate-x: 1.75rem !important; } - .sm\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .sm\:translate-x-8 { + --tw-translate-x: 2rem !important; } - .sm\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .sm\:translate-x-9 { + --tw-translate-x: 2.25rem !important; } - .sm\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .sm\:translate-x-10 { + --tw-translate-x: 2.5rem !important; } - .sm\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .sm\:translate-x-11 { + --tw-translate-x: 2.75rem !important; } - .sm\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .sm\:translate-x-12 { + --tw-translate-x: 3rem !important; } - .sm\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .sm\:translate-x-14 { + --tw-translate-x: 3.5rem !important; } - .sm\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .sm\:translate-x-16 { + --tw-translate-x: 4rem !important; } - .sm\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .sm\:translate-x-20 { + --tw-translate-x: 5rem !important; } - .sm\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .sm\:translate-x-24 { + --tw-translate-x: 6rem !important; } - .sm\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .sm\:translate-x-28 { + --tw-translate-x: 7rem !important; } - .sm\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .sm\:translate-x-32 { + --tw-translate-x: 8rem !important; } - .sm\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .sm\:translate-x-36 { + --tw-translate-x: 9rem !important; } - .sm\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .sm\:translate-x-40 { + --tw-translate-x: 10rem !important; } - .sm\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .sm\:translate-x-44 { + --tw-translate-x: 11rem !important; } - .sm\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .sm\:translate-x-48 { + --tw-translate-x: 12rem !important; } - .sm\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .sm\:translate-x-52 { + --tw-translate-x: 13rem !important; } - .sm\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .sm\:translate-x-56 { + --tw-translate-x: 14rem !important; } - .sm\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .sm\:translate-x-60 { + --tw-translate-x: 15rem !important; } - .sm\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .sm\:translate-x-64 { + --tw-translate-x: 16rem !important; } - .sm\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .sm\:translate-x-72 { + --tw-translate-x: 18rem !important; } - .sm\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .sm\:translate-x-80 { + --tw-translate-x: 20rem !important; } - .sm\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .sm\:translate-x-96 { + --tw-translate-x: 24rem !important; } - .sm\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .sm\:translate-x-px { + --tw-translate-x: 1px !important; } - .sm\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .sm\:translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; } - .sm\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .sm\:translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; } - .sm\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .sm\:translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; } - .sm\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .sm\:translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; } - .sm\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .sm\:-translate-x-0 { + --tw-translate-x: 0px !important; } - .sm\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .sm\:-translate-x-1 { + --tw-translate-x: -0.25rem !important; } - .sm\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .sm\:-translate-x-2 { + --tw-translate-x: -0.5rem !important; } - .sm\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .sm\:-translate-x-3 { + --tw-translate-x: -0.75rem !important; } - .sm\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .sm\:-translate-x-4 { + --tw-translate-x: -1rem !important; } - .sm\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .sm\:-translate-x-5 { + --tw-translate-x: -1.25rem !important; } - .sm\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .sm\:-translate-x-6 { + --tw-translate-x: -1.5rem !important; } - .sm\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .sm\:-translate-x-7 { + --tw-translate-x: -1.75rem !important; } - .sm\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .sm\:-translate-x-8 { + --tw-translate-x: -2rem !important; } - .sm\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .sm\:-translate-x-9 { + --tw-translate-x: -2.25rem !important; } - .sm\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .sm\:-translate-x-10 { + --tw-translate-x: -2.5rem !important; } - .sm\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .sm\:-translate-x-11 { + --tw-translate-x: -2.75rem !important; } - .sm\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .sm\:-translate-x-12 { + --tw-translate-x: -3rem !important; } - .sm\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .sm\:-translate-x-14 { + --tw-translate-x: -3.5rem !important; } - .sm\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .sm\:-translate-x-16 { + --tw-translate-x: -4rem !important; } - .sm\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .sm\:-translate-x-20 { + --tw-translate-x: -5rem !important; } - .sm\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .sm\:-translate-x-24 { + --tw-translate-x: -6rem !important; } - .sm\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .sm\:-translate-x-28 { + --tw-translate-x: -7rem !important; } - .sm\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .sm\:-translate-x-32 { + --tw-translate-x: -8rem !important; } - .sm\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .sm\:-translate-x-36 { + --tw-translate-x: -9rem !important; } - .sm\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .sm\:-translate-x-40 { + --tw-translate-x: -10rem !important; } - .sm\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .sm\:-translate-x-44 { + --tw-translate-x: -11rem !important; } - .sm\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .sm\:-translate-x-48 { + --tw-translate-x: -12rem !important; } - .sm\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .sm\:-translate-x-52 { + --tw-translate-x: -13rem !important; } - .sm\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .sm\:-translate-x-56 { + --tw-translate-x: -14rem !important; } - .sm\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .sm\:-translate-x-60 { + --tw-translate-x: -15rem !important; } - .sm\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .sm\:-translate-x-64 { + --tw-translate-x: -16rem !important; } - .sm\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .sm\:-translate-x-72 { + --tw-translate-x: -18rem !important; } - .sm\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .sm\:-translate-x-80 { + --tw-translate-x: -20rem !important; } - .sm\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .sm\:-translate-x-96 { + --tw-translate-x: -24rem !important; } - .sm\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .sm\:-translate-x-px { + --tw-translate-x: -1px !important; } - .sm\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .sm\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; } - .sm\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .sm\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; } - .sm\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .sm\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; } - .sm\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .sm\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; } - .sm\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .sm\:translate-x-1\/2 { + --tw-translate-x: 50% !important; } - .sm\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .sm\:translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; } - .sm\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .sm\:translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; } - .sm\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .sm\:translate-x-1\/4 { + --tw-translate-x: 25% !important; } - .sm\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .sm\:translate-x-2\/4 { + --tw-translate-x: 50% !important; } - .sm\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .sm\:translate-x-3\/4 { + --tw-translate-x: 75% !important; } - .sm\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .sm\:translate-x-full { + --tw-translate-x: 100% !important; } - .sm\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .sm\:-translate-x-1\/2 { + --tw-translate-x: -50% !important; } - .sm\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .sm\:-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; } - .sm\:focus\:to-transparent:focus { - --tw-gradient-to: transparent !important; + .sm\:-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; } - .sm\:focus\:to-current:focus { - --tw-gradient-to: currentColor !important; + .sm\:-translate-x-1\/4 { + --tw-translate-x: -25% !important; } - .sm\:focus\:to-black:focus { - --tw-gradient-to: #000 !important; + .sm\:-translate-x-2\/4 { + --tw-translate-x: -50% !important; } - .sm\:focus\:to-white:focus { - --tw-gradient-to: #fff !important; + .sm\:-translate-x-3\/4 { + --tw-translate-x: -75% !important; } - .sm\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb !important; + .sm\:-translate-x-full { + --tw-translate-x: -100% !important; } - .sm\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6 !important; + .sm\:translate-y-0 { + --tw-translate-y: 0px !important; } - .sm\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb !important; + .sm\:translate-y-1 { + --tw-translate-y: 0.25rem !important; } - .sm\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db !important; + .sm\:translate-y-2 { + --tw-translate-y: 0.5rem !important; } - .sm\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af !important; + .sm\:translate-y-3 { + --tw-translate-y: 0.75rem !important; } - .sm\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280 !important; + .sm\:translate-y-4 { + --tw-translate-y: 1rem !important; } - .sm\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563 !important; + .sm\:translate-y-5 { + --tw-translate-y: 1.25rem !important; } - .sm\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151 !important; + .sm\:translate-y-6 { + --tw-translate-y: 1.5rem !important; } - .sm\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937 !important; + .sm\:translate-y-7 { + --tw-translate-y: 1.75rem !important; } - .sm\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827 !important; + .sm\:translate-y-8 { + --tw-translate-y: 2rem !important; } - .sm\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2 !important; + .sm\:translate-y-9 { + --tw-translate-y: 2.25rem !important; } - .sm\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2 !important; + .sm\:translate-y-10 { + --tw-translate-y: 2.5rem !important; } - .sm\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca !important; + .sm\:translate-y-11 { + --tw-translate-y: 2.75rem !important; } - .sm\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5 !important; + .sm\:translate-y-12 { + --tw-translate-y: 3rem !important; } - .sm\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171 !important; + .sm\:translate-y-14 { + --tw-translate-y: 3.5rem !important; } - .sm\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444 !important; + .sm\:translate-y-16 { + --tw-translate-y: 4rem !important; } - .sm\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626 !important; + .sm\:translate-y-20 { + --tw-translate-y: 5rem !important; } - .sm\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c !important; + .sm\:translate-y-24 { + --tw-translate-y: 6rem !important; } - .sm\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b !important; + .sm\:translate-y-28 { + --tw-translate-y: 7rem !important; } - .sm\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d !important; + .sm\:translate-y-32 { + --tw-translate-y: 8rem !important; } - .sm\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb !important; + .sm\:translate-y-36 { + --tw-translate-y: 9rem !important; } - .sm\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7 !important; + .sm\:translate-y-40 { + --tw-translate-y: 10rem !important; } - .sm\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a !important; + .sm\:translate-y-44 { + --tw-translate-y: 11rem !important; } - .sm\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d !important; + .sm\:translate-y-48 { + --tw-translate-y: 12rem !important; } - .sm\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24 !important; + .sm\:translate-y-52 { + --tw-translate-y: 13rem !important; } - .sm\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b !important; + .sm\:translate-y-56 { + --tw-translate-y: 14rem !important; } - .sm\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706 !important; + .sm\:translate-y-60 { + --tw-translate-y: 15rem !important; } - .sm\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309 !important; + .sm\:translate-y-64 { + --tw-translate-y: 16rem !important; } - .sm\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e !important; + .sm\:translate-y-72 { + --tw-translate-y: 18rem !important; } - .sm\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f !important; + .sm\:translate-y-80 { + --tw-translate-y: 20rem !important; } - .sm\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5 !important; + .sm\:translate-y-96 { + --tw-translate-y: 24rem !important; } - .sm\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5 !important; + .sm\:translate-y-px { + --tw-translate-y: 1px !important; } - .sm\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0 !important; + .sm\:translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; } - .sm\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7 !important; + .sm\:translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; } - .sm\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399 !important; + .sm\:translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; } - .sm\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981 !important; + .sm\:translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; } - .sm\:focus\:to-green-600:focus { - --tw-gradient-to: #059669 !important; + .sm\:-translate-y-0 { + --tw-translate-y: 0px !important; } - .sm\:focus\:to-green-700:focus { - --tw-gradient-to: #047857 !important; + .sm\:-translate-y-1 { + --tw-translate-y: -0.25rem !important; } - .sm\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46 !important; + .sm\:-translate-y-2 { + --tw-translate-y: -0.5rem !important; } - .sm\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b !important; + .sm\:-translate-y-3 { + --tw-translate-y: -0.75rem !important; } - .sm\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff !important; + .sm\:-translate-y-4 { + --tw-translate-y: -1rem !important; } - .sm\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe !important; + .sm\:-translate-y-5 { + --tw-translate-y: -1.25rem !important; } - .sm\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe !important; + .sm\:-translate-y-6 { + --tw-translate-y: -1.5rem !important; } - .sm\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd !important; + .sm\:-translate-y-7 { + --tw-translate-y: -1.75rem !important; } - .sm\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa !important; + .sm\:-translate-y-8 { + --tw-translate-y: -2rem !important; } - .sm\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6 !important; + .sm\:-translate-y-9 { + --tw-translate-y: -2.25rem !important; } - .sm\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb !important; + .sm\:-translate-y-10 { + --tw-translate-y: -2.5rem !important; } - .sm\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8 !important; + .sm\:-translate-y-11 { + --tw-translate-y: -2.75rem !important; } - .sm\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af !important; + .sm\:-translate-y-12 { + --tw-translate-y: -3rem !important; } - .sm\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a !important; + .sm\:-translate-y-14 { + --tw-translate-y: -3.5rem !important; } - .sm\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff !important; + .sm\:-translate-y-16 { + --tw-translate-y: -4rem !important; } - .sm\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff !important; + .sm\:-translate-y-20 { + --tw-translate-y: -5rem !important; } - .sm\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe !important; + .sm\:-translate-y-24 { + --tw-translate-y: -6rem !important; } - .sm\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc !important; + .sm\:-translate-y-28 { + --tw-translate-y: -7rem !important; } - .sm\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8 !important; + .sm\:-translate-y-32 { + --tw-translate-y: -8rem !important; } - .sm\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1 !important; + .sm\:-translate-y-36 { + --tw-translate-y: -9rem !important; } - .sm\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5 !important; + .sm\:-translate-y-40 { + --tw-translate-y: -10rem !important; } - .sm\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca !important; + .sm\:-translate-y-44 { + --tw-translate-y: -11rem !important; } - .sm\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3 !important; + .sm\:-translate-y-48 { + --tw-translate-y: -12rem !important; } - .sm\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81 !important; + .sm\:-translate-y-52 { + --tw-translate-y: -13rem !important; } - .sm\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff !important; + .sm\:-translate-y-56 { + --tw-translate-y: -14rem !important; } - .sm\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe !important; + .sm\:-translate-y-60 { + --tw-translate-y: -15rem !important; } - .sm\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe !important; + .sm\:-translate-y-64 { + --tw-translate-y: -16rem !important; } - .sm\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd !important; + .sm\:-translate-y-72 { + --tw-translate-y: -18rem !important; } - .sm\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa !important; + .sm\:-translate-y-80 { + --tw-translate-y: -20rem !important; } - .sm\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6 !important; + .sm\:-translate-y-96 { + --tw-translate-y: -24rem !important; } - .sm\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed !important; + .sm\:-translate-y-px { + --tw-translate-y: -1px !important; } - .sm\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9 !important; + .sm\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; } - .sm\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6 !important; + .sm\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; } - .sm\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95 !important; + .sm\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; } - .sm\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8 !important; + .sm\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; } - .sm\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3 !important; + .sm\:translate-y-1\/2 { + --tw-translate-y: 50% !important; } - .sm\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8 !important; + .sm\:translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; } - .sm\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4 !important; + .sm\:translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; } - .sm\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6 !important; + .sm\:translate-y-1\/4 { + --tw-translate-y: 25% !important; } - .sm\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899 !important; + .sm\:translate-y-2\/4 { + --tw-translate-y: 50% !important; } - .sm\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777 !important; + .sm\:translate-y-3\/4 { + --tw-translate-y: 75% !important; } - .sm\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d !important; + .sm\:translate-y-full { + --tw-translate-y: 100% !important; } - .sm\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d !important; + .sm\:-translate-y-1\/2 { + --tw-translate-y: -50% !important; } - .sm\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843 !important; + .sm\:-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; } - .sm\:bg-opacity-0 { - --tw-bg-opacity: 0 !important; + .sm\:-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; } - .sm\:bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; + .sm\:-translate-y-1\/4 { + --tw-translate-y: -25% !important; } - .sm\:bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; + .sm\:-translate-y-2\/4 { + --tw-translate-y: -50% !important; } - .sm\:bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; + .sm\:-translate-y-3\/4 { + --tw-translate-y: -75% !important; } - .sm\:bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; + .sm\:-translate-y-full { + --tw-translate-y: -100% !important; } - .sm\:bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; + .sm\:hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; } - .sm\:bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; + .sm\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; } - .sm\:bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; + .sm\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; } - .sm\:bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; + .sm\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; } - .sm\:bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; + .sm\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; } - .sm\:bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; + .sm\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; } - .sm\:bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; + .sm\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; } - .sm\:bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; + .sm\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; } - .sm\:bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; + .sm\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; } - .sm\:bg-opacity-100 { - --tw-bg-opacity: 1 !important; + .sm\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0 !important; + .sm\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; + .sm\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; + .sm\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; + .sm\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; + .sm\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; + .sm\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; + .sm\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; + .sm\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; + .sm\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; + .sm\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; + .sm\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; + .sm\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; + .sm\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; + .sm\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; } - .group:hover .sm\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1 !important; + .sm\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; } - .sm\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0 !important; + .sm\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; } - .sm\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05 !important; + .sm\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; } - .sm\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1 !important; + .sm\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; } - .sm\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2 !important; + .sm\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; } - .sm\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25 !important; + .sm\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; } - .sm\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3 !important; + .sm\:hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; } - .sm\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4 !important; + .sm\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; } - .sm\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5 !important; + .sm\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; } - .sm\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6 !important; + .sm\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; } - .sm\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7 !important; + .sm\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; } - .sm\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75 !important; + .sm\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; } - .sm\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8 !important; + .sm\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; } - .sm\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9 !important; + .sm\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; } - .sm\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95 !important; + .sm\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; } - .sm\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1 !important; + .sm\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; } - .sm\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0 !important; + .sm\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; } - .sm\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05 !important; + .sm\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; } - .sm\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1 !important; + .sm\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; } - .sm\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2 !important; + .sm\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; } - .sm\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25 !important; + .sm\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; } - .sm\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3 !important; + .sm\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; } - .sm\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4 !important; + .sm\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; } - .sm\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5 !important; + .sm\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; } - .sm\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6 !important; + .sm\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; } - .sm\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7 !important; + .sm\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; } - .sm\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75 !important; + .sm\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; } - .sm\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8 !important; + .sm\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; } - .sm\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9 !important; + .sm\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; } - .sm\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95 !important; + .sm\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; } - .sm\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1 !important; + .sm\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; } - .sm\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0 !important; + .sm\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; } - .sm\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05 !important; + .sm\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; } - .sm\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1 !important; + .sm\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; } - .sm\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2 !important; + .sm\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; } - .sm\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25 !important; + .sm\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; } - .sm\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3 !important; + .sm\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; } - .sm\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4 !important; + .sm\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; } - .sm\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5 !important; + .sm\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; } - .sm\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6 !important; + .sm\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; } - .sm\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7 !important; + .sm\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; } - .sm\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75 !important; + .sm\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; } - .sm\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8 !important; + .sm\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; } - .sm\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9 !important; + .sm\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; } - .sm\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95 !important; + .sm\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; } - .sm\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1 !important; + .sm\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; } - .sm\:bg-bottom { - background-position: bottom !important; + .sm\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; } - .sm\:bg-center { - background-position: center !important; + .sm\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; } - .sm\:bg-left { - background-position: left !important; + .sm\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; } - .sm\:bg-left-bottom { - background-position: left bottom !important; + .sm\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; } - .sm\:bg-left-top { - background-position: left top !important; + .sm\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; } - .sm\:bg-right { - background-position: right !important; + .sm\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; } - .sm\:bg-right-bottom { - background-position: right bottom !important; + .sm\:hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; } - .sm\:bg-right-top { - background-position: right top !important; + .sm\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; } - .sm\:bg-top { - background-position: top !important; + .sm\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; } - .sm\:bg-repeat { - background-repeat: repeat !important; + .sm\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; } - .sm\:bg-no-repeat { - background-repeat: no-repeat !important; + .sm\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; } - .sm\:bg-repeat-x { - background-repeat: repeat-x !important; + .sm\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; } - .sm\:bg-repeat-y { - background-repeat: repeat-y !important; + .sm\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; } - .sm\:bg-repeat-round { - background-repeat: round !important; + .sm\:hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; } - .sm\:bg-repeat-space { - background-repeat: space !important; + .sm\:hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; } - .sm\:bg-auto { - background-size: auto !important; + .sm\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; } - .sm\:bg-cover { - background-size: cover !important; + .sm\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; } - .sm\:bg-contain { - background-size: contain !important; + .sm\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; } - .sm\:bg-origin-border { - background-origin: border-box !important; + .sm\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; } - .sm\:bg-origin-padding { - background-origin: padding-box !important; + .sm\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; } - .sm\:bg-origin-content { - background-origin: content-box !important; + .sm\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; } - .sm\:border-collapse { - border-collapse: collapse !important; + .sm\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; } - .sm\:border-separate { - border-collapse: separate !important; + .sm\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; } - .sm\:border-transparent { - border-color: transparent !important; + .sm\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; } - .sm\:border-current { - border-color: currentColor !important; + .sm\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; } - .sm\:border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; } - .sm\:border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; } - .sm\:border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; } - .sm\:border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; } - .sm\:border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; } - .sm\:border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; } - .sm\:border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; } - .sm\:border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; } - .sm\:border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; } - .sm\:border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; } - .sm\:border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; } - .sm\:border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; } - .sm\:border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; } - .sm\:border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; } - .sm\:border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; } - .sm\:border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; } - .sm\:border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; } - .sm\:border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; } - .sm\:border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; } - .sm\:border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; } - .sm\:border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; } - .sm\:border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; } - .sm\:border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; } - .sm\:border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; } - .sm\:border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; } - .sm\:border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; } - .sm\:border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; } - .sm\:border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; } - .sm\:border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; } - .sm\:border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; } - .sm\:border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; } - .sm\:border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; } - .sm\:border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; } - .sm\:border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; } - .sm\:border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; } - .sm\:border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; } - .sm\:border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; } - .sm\:border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; } - .sm\:border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; } - .sm\:border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; } - .sm\:border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; } - .sm\:border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; } - .sm\:border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; } - .sm\:border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; } - .sm\:border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; } - .sm\:border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; } - .sm\:border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; } - .sm\:border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; } - .sm\:border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; } - .sm\:border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; } - .sm\:border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; } - .sm\:border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; } - .sm\:border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; } - .sm\:border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; } - .sm\:border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; } - .sm\:border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; } - .sm\:border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; } - .sm\:border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; } - .sm\:border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; } - .sm\:border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; } - .sm\:border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; } - .sm\:border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; } - .sm\:border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; } - .sm\:border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; } - .sm\:border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; } - .sm\:border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .sm\:hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; } - .sm\:border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; } - .sm\:border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; } - .sm\:border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; } - .sm\:border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; } - .sm\:border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; } - .sm\:border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; } - .sm\:border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .sm\:hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; } - .sm\:border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; } - .sm\:border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; } - .sm\:border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; } - .sm\:border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; } - .sm\:border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; } - .sm\:border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; } - .sm\:border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; } - .sm\:border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; } - .sm\:border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; } - .group:hover .sm\:group-hover\:border-transparent { - border-color: transparent !important; + .sm\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; } - .group:hover .sm\:group-hover\:border-current { - border-color: currentColor !important; + .sm\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; } - .group:hover .sm\:group-hover\:border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; } - .group:hover .sm\:group-hover\:border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; } - .group:hover .sm\:group-hover\:border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; } - .group:hover .sm\:group-hover\:border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; } - .group:hover .sm\:group-hover\:border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; } - .group:hover .sm\:group-hover\:border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; } - .group:hover .sm\:group-hover\:border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; } - .group:hover .sm\:group-hover\:border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; } - .group:hover .sm\:group-hover\:border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; } - .group:hover .sm\:group-hover\:border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; } - .group:hover .sm\:group-hover\:border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; } - .group:hover .sm\:group-hover\:border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; } - .group:hover .sm\:group-hover\:border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; } - .group:hover .sm\:group-hover\:border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; } - .group:hover .sm\:group-hover\:border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; } - .group:hover .sm\:group-hover\:border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; } - .group:hover .sm\:group-hover\:border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; } - .group:hover .sm\:group-hover\:border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; } - .group:hover .sm\:group-hover\:border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; } - .group:hover .sm\:group-hover\:border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; } - .group:hover .sm\:group-hover\:border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; } - .group:hover .sm\:group-hover\:border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; } - .group:hover .sm\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; } - .group:hover .sm\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; } - .group:hover .sm\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; } - .group:hover .sm\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; } - .group:hover .sm\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; } - .group:hover .sm\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; } - .group:hover .sm\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; } - .group:hover .sm\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; } - .group:hover .sm\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; } - .group:hover .sm\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; } - .group:hover .sm\:group-hover\:border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; } - .group:hover .sm\:group-hover\:border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; } - - .group:hover .sm\:group-hover\:border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + + .sm\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; } - .group:hover .sm\:group-hover\:border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; } - .group:hover .sm\:group-hover\:border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; } - .group:hover .sm\:group-hover\:border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; } - .group:hover .sm\:group-hover\:border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; } - .group:hover .sm\:group-hover\:border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; } - .group:hover .sm\:group-hover\:border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; } - .group:hover .sm\:group-hover\:border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; } - .group:hover .sm\:group-hover\:border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; } - .group:hover .sm\:group-hover\:border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; } - .group:hover .sm\:group-hover\:border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; } - .group:hover .sm\:group-hover\:border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; } - .group:hover .sm\:group-hover\:border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; } - .group:hover .sm\:group-hover\:border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; } - .group:hover .sm\:group-hover\:border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; } - .group:hover .sm\:group-hover\:border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; } - .group:hover .sm\:group-hover\:border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; } - .group:hover .sm\:group-hover\:border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; } - .group:hover .sm\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; } - .group:hover .sm\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; } - .group:hover .sm\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; } - .group:hover .sm\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; } - .group:hover .sm\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; } - .group:hover .sm\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; } - .group:hover .sm\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; } - .group:hover .sm\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; } - .group:hover .sm\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; } - .group:hover .sm\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; } - .group:hover .sm\:group-hover\:border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; } - .group:hover .sm\:group-hover\:border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; } - .group:hover .sm\:group-hover\:border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; } - .group:hover .sm\:group-hover\:border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; } - .group:hover .sm\:group-hover\:border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; } - .group:hover .sm\:group-hover\:border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; } - .group:hover .sm\:group-hover\:border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; } - .group:hover .sm\:group-hover\:border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; } - .group:hover .sm\:group-hover\:border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; } - .group:hover .sm\:group-hover\:border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; } - .group:hover .sm\:group-hover\:border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; } - .group:hover .sm\:group-hover\:border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; } - .group:hover .sm\:group-hover\:border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; } - .group:hover .sm\:group-hover\:border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; } - .group:hover .sm\:group-hover\:border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; } - .group:hover .sm\:group-hover\:border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; } - .group:hover .sm\:group-hover\:border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; } - .group:hover .sm\:group-hover\:border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; } - .group:hover .sm\:group-hover\:border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; } - .group:hover .sm\:group-hover\:border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; } - .sm\:focus-within\:border-transparent:focus-within { - border-color: transparent !important; + .sm\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; } - .sm\:focus-within\:border-current:focus-within { - border-color: currentColor !important; + .sm\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; } - .sm\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; } - .sm\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; } - .sm\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; } - .sm\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; } - .sm\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; } - .sm\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; } - .sm\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; } - .sm\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; } - .sm\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; } - .sm\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; } - .sm\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; } - .sm\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; } - .sm\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; } - .sm\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; } - .sm\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; } - .sm\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; } - .sm\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; } - .sm\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; } - .sm\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; } - .sm\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; } - .sm\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; } - .sm\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; } - .sm\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; } - .sm\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; } - .sm\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; } - .sm\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; } - .sm\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; } - .sm\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; } - .sm\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; } - .sm\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; } - .sm\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; } - .sm\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; } - .sm\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; } - .sm\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; } - .sm\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; } - .sm\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; } - .sm\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; } - .sm\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; } - .sm\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; } - .sm\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; } - .sm\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; } - .sm\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; } - .sm\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; } - .sm\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; } - .sm\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; } - .sm\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; } - .sm\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; } - .sm\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; } - .sm\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; } - .sm\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; } - .sm\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; } - .sm\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; } - .sm\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; } - .sm\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; } - .sm\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; } - .sm\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; } - .sm\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; } - .sm\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; } - .sm\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; } - .sm\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; } - .sm\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; } - .sm\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; } - .sm\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; } - .sm\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; } - .sm\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; } - .sm\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .sm\:focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; } - .sm\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; } - .sm\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; } - .sm\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; } - .sm\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; } - .sm\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; } - .sm\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; } - .sm\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .sm\:focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; } - .sm\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .sm\:rotate-0 { + --tw-rotate: 0deg !important; } - .sm\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .sm\:rotate-1 { + --tw-rotate: 1deg !important; } - .sm\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .sm\:rotate-2 { + --tw-rotate: 2deg !important; } - .sm\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .sm\:rotate-3 { + --tw-rotate: 3deg !important; } - .sm\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .sm\:rotate-6 { + --tw-rotate: 6deg !important; } - .sm\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .sm\:rotate-12 { + --tw-rotate: 12deg !important; } - .sm\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .sm\:rotate-45 { + --tw-rotate: 45deg !important; } - .sm\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .sm\:rotate-90 { + --tw-rotate: 90deg !important; } - .sm\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .sm\:rotate-180 { + --tw-rotate: 180deg !important; } - .sm\:hover\:border-transparent:hover { - border-color: transparent !important; + .sm\:-rotate-180 { + --tw-rotate: -180deg !important; } - .sm\:hover\:border-current:hover { - border-color: currentColor !important; + .sm\:-rotate-90 { + --tw-rotate: -90deg !important; } - .sm\:hover\:border-black:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .sm\:-rotate-45 { + --tw-rotate: -45deg !important; } - .sm\:hover\:border-white:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .sm\:-rotate-12 { + --tw-rotate: -12deg !important; } - .sm\:hover\:border-gray-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .sm\:-rotate-6 { + --tw-rotate: -6deg !important; } - .sm\:hover\:border-gray-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .sm\:-rotate-3 { + --tw-rotate: -3deg !important; } - .sm\:hover\:border-gray-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .sm\:-rotate-2 { + --tw-rotate: -2deg !important; } - .sm\:hover\:border-gray-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .sm\:-rotate-1 { + --tw-rotate: -1deg !important; } - .sm\:hover\:border-gray-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .sm\:hover\:rotate-0:hover { + --tw-rotate: 0deg !important; } - .sm\:hover\:border-gray-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .sm\:hover\:rotate-1:hover { + --tw-rotate: 1deg !important; } - .sm\:hover\:border-gray-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .sm\:hover\:rotate-2:hover { + --tw-rotate: 2deg !important; } - .sm\:hover\:border-gray-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .sm\:hover\:rotate-3:hover { + --tw-rotate: 3deg !important; } - .sm\:hover\:border-gray-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .sm\:hover\:rotate-6:hover { + --tw-rotate: 6deg !important; } - .sm\:hover\:border-gray-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .sm\:hover\:rotate-12:hover { + --tw-rotate: 12deg !important; } - .sm\:hover\:border-red-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .sm\:hover\:rotate-45:hover { + --tw-rotate: 45deg !important; } - .sm\:hover\:border-red-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .sm\:hover\:rotate-90:hover { + --tw-rotate: 90deg !important; } - .sm\:hover\:border-red-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .sm\:hover\:rotate-180:hover { + --tw-rotate: 180deg !important; } - .sm\:hover\:border-red-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .sm\:hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; } - .sm\:hover\:border-red-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .sm\:hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; } - .sm\:hover\:border-red-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .sm\:hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; } - .sm\:hover\:border-red-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .sm\:hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; } - .sm\:hover\:border-red-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .sm\:hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; } - .sm\:hover\:border-red-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .sm\:hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; } - .sm\:hover\:border-red-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .sm\:hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; } - .sm\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .sm\:hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; } - .sm\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .sm\:focus\:rotate-0:focus { + --tw-rotate: 0deg !important; } - .sm\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .sm\:focus\:rotate-1:focus { + --tw-rotate: 1deg !important; } - .sm\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .sm\:focus\:rotate-2:focus { + --tw-rotate: 2deg !important; } - .sm\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .sm\:focus\:rotate-3:focus { + --tw-rotate: 3deg !important; } - .sm\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .sm\:focus\:rotate-6:focus { + --tw-rotate: 6deg !important; } - .sm\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .sm\:focus\:rotate-12:focus { + --tw-rotate: 12deg !important; } - .sm\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .sm\:focus\:rotate-45:focus { + --tw-rotate: 45deg !important; } - .sm\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .sm\:focus\:rotate-90:focus { + --tw-rotate: 90deg !important; } - .sm\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .sm\:focus\:rotate-180:focus { + --tw-rotate: 180deg !important; } - .sm\:hover\:border-green-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .sm\:focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; } - .sm\:hover\:border-green-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .sm\:focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; } - .sm\:hover\:border-green-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .sm\:focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; } - .sm\:hover\:border-green-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .sm\:focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; } - .sm\:hover\:border-green-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .sm\:focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; } - .sm\:hover\:border-green-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .sm\:focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; } - .sm\:hover\:border-green-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .sm\:focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; } - .sm\:hover\:border-green-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .sm\:focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; } - .sm\:hover\:border-green-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .sm\:skew-x-0 { + --tw-skew-x: 0deg !important; } - .sm\:hover\:border-green-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .sm\:skew-x-1 { + --tw-skew-x: 1deg !important; } - .sm\:hover\:border-blue-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .sm\:skew-x-2 { + --tw-skew-x: 2deg !important; } - .sm\:hover\:border-blue-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .sm\:skew-x-3 { + --tw-skew-x: 3deg !important; } - .sm\:hover\:border-blue-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .sm\:skew-x-6 { + --tw-skew-x: 6deg !important; } - .sm\:hover\:border-blue-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .sm\:skew-x-12 { + --tw-skew-x: 12deg !important; } - .sm\:hover\:border-blue-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .sm\:-skew-x-12 { + --tw-skew-x: -12deg !important; } - .sm\:hover\:border-blue-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .sm\:-skew-x-6 { + --tw-skew-x: -6deg !important; } - .sm\:hover\:border-blue-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .sm\:-skew-x-3 { + --tw-skew-x: -3deg !important; } - .sm\:hover\:border-blue-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .sm\:-skew-x-2 { + --tw-skew-x: -2deg !important; } - .sm\:hover\:border-blue-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .sm\:-skew-x-1 { + --tw-skew-x: -1deg !important; } - .sm\:hover\:border-blue-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .sm\:skew-y-0 { + --tw-skew-y: 0deg !important; } - .sm\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .sm\:skew-y-1 { + --tw-skew-y: 1deg !important; } - .sm\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .sm\:skew-y-2 { + --tw-skew-y: 2deg !important; } - .sm\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .sm\:skew-y-3 { + --tw-skew-y: 3deg !important; } - .sm\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .sm\:skew-y-6 { + --tw-skew-y: 6deg !important; } - .sm\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .sm\:skew-y-12 { + --tw-skew-y: 12deg !important; } - .sm\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .sm\:-skew-y-12 { + --tw-skew-y: -12deg !important; } - .sm\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .sm\:-skew-y-6 { + --tw-skew-y: -6deg !important; } - .sm\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .sm\:-skew-y-3 { + --tw-skew-y: -3deg !important; } - .sm\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .sm\:-skew-y-2 { + --tw-skew-y: -2deg !important; } - .sm\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .sm\:-skew-y-1 { + --tw-skew-y: -1deg !important; } - .sm\:hover\:border-purple-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; } - .sm\:hover\:border-purple-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; } - .sm\:hover\:border-purple-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; } - .sm\:hover\:border-purple-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; } - .sm\:hover\:border-purple-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; } - .sm\:hover\:border-purple-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; } - .sm\:hover\:border-purple-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .sm\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; } - .sm\:hover\:border-purple-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .sm\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; } - .sm\:hover\:border-purple-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .sm\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; } - .sm\:hover\:border-purple-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .sm\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; } - .sm\:hover\:border-pink-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .sm\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; } - .sm\:hover\:border-pink-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; } - .sm\:hover\:border-pink-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; } - .sm\:hover\:border-pink-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; } - .sm\:hover\:border-pink-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; } - .sm\:hover\:border-pink-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; } - .sm\:hover\:border-pink-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .sm\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; } - .sm\:hover\:border-pink-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .sm\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; } - .sm\:hover\:border-pink-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .sm\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; } - .sm\:hover\:border-pink-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .sm\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; } - .sm\:focus\:border-transparent:focus { - border-color: transparent !important; + .sm\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; } - .sm\:focus\:border-current:focus { - border-color: currentColor !important; + .sm\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; } - .sm\:focus\:border-black:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; } - .sm\:focus\:border-white:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; } - .sm\:focus\:border-gray-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; } - .sm\:focus\:border-gray-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; } - .sm\:focus\:border-gray-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; } - .sm\:focus\:border-gray-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; } - .sm\:focus\:border-gray-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .sm\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; } - .sm\:focus\:border-gray-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .sm\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; } - .sm\:focus\:border-gray-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .sm\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; } - .sm\:focus\:border-gray-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .sm\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; } - .sm\:focus\:border-gray-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .sm\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; } - .sm\:focus\:border-gray-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; } - .sm\:focus\:border-red-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; } - .sm\:focus\:border-red-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; } - .sm\:focus\:border-red-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; } - .sm\:focus\:border-red-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; } - .sm\:focus\:border-red-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .sm\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; } - .sm\:focus\:border-red-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .sm\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; } - .sm\:focus\:border-red-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .sm\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; } - .sm\:focus\:border-red-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .sm\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; } - .sm\:focus\:border-red-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .sm\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; } - .sm\:focus\:border-red-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .sm\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; } - .sm\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .sm\:scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .sm\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .sm\:scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .sm\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .sm\:scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .sm\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .sm\:scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .sm\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .sm\:scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .sm\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .sm\:scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .sm\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .sm\:scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .sm\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .sm\:scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .sm\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .sm\:scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .sm\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .sm\:scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .sm\:focus\:border-green-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .sm\:scale-x-0 { + --tw-scale-x: 0 !important; } - .sm\:focus\:border-green-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .sm\:scale-x-50 { + --tw-scale-x: .5 !important; } - .sm\:focus\:border-green-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .sm\:scale-x-75 { + --tw-scale-x: .75 !important; } - .sm\:focus\:border-green-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .sm\:scale-x-90 { + --tw-scale-x: .9 !important; } - .sm\:focus\:border-green-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .sm\:scale-x-95 { + --tw-scale-x: .95 !important; } - .sm\:focus\:border-green-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .sm\:scale-x-100 { + --tw-scale-x: 1 !important; } - .sm\:focus\:border-green-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .sm\:scale-x-105 { + --tw-scale-x: 1.05 !important; } - .sm\:focus\:border-green-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .sm\:scale-x-110 { + --tw-scale-x: 1.1 !important; } - .sm\:focus\:border-green-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .sm\:scale-x-125 { + --tw-scale-x: 1.25 !important; } - .sm\:focus\:border-green-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .sm\:scale-x-150 { + --tw-scale-x: 1.5 !important; } - .sm\:focus\:border-blue-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .sm\:scale-y-0 { + --tw-scale-y: 0 !important; } - .sm\:focus\:border-blue-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .sm\:scale-y-50 { + --tw-scale-y: .5 !important; } - .sm\:focus\:border-blue-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .sm\:scale-y-75 { + --tw-scale-y: .75 !important; } - .sm\:focus\:border-blue-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .sm\:scale-y-90 { + --tw-scale-y: .9 !important; } - .sm\:focus\:border-blue-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .sm\:scale-y-95 { + --tw-scale-y: .95 !important; } - .sm\:focus\:border-blue-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .sm\:scale-y-100 { + --tw-scale-y: 1 !important; } - .sm\:focus\:border-blue-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .sm\:scale-y-105 { + --tw-scale-y: 1.05 !important; } - .sm\:focus\:border-blue-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .sm\:scale-y-110 { + --tw-scale-y: 1.1 !important; } - .sm\:focus\:border-blue-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .sm\:scale-y-125 { + --tw-scale-y: 1.25 !important; } - .sm\:focus\:border-blue-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .sm\:scale-y-150 { + --tw-scale-y: 1.5 !important; } - .sm\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .sm\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .sm\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .sm\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .sm\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .sm\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .sm\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .sm\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .sm\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .sm\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .sm\:focus\:border-purple-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; } - .sm\:focus\:border-purple-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; } - .sm\:focus\:border-purple-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; } - .sm\:focus\:border-purple-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; } - .sm\:focus\:border-purple-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; } - .sm\:focus\:border-purple-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; } - .sm\:focus\:border-purple-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; } - .sm\:focus\:border-purple-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; } - .sm\:focus\:border-purple-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; } - .sm\:focus\:border-purple-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; } - .sm\:focus\:border-pink-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; } - .sm\:focus\:border-pink-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; } - .sm\:focus\:border-pink-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; } - .sm\:focus\:border-pink-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; } - .sm\:focus\:border-pink-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; } - .sm\:focus\:border-pink-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; } - .sm\:focus\:border-pink-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; } - .sm\:focus\:border-pink-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; } - .sm\:focus\:border-pink-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; } - .sm\:focus\:border-pink-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .sm\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; } - .sm\:border-opacity-0 { - --tw-border-opacity: 0 !important; + .sm\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .sm\:border-opacity-5 { - --tw-border-opacity: 0.05 !important; + .sm\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .sm\:border-opacity-10 { - --tw-border-opacity: 0.1 !important; + .sm\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .sm\:border-opacity-20 { - --tw-border-opacity: 0.2 !important; + .sm\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .sm\:border-opacity-25 { - --tw-border-opacity: 0.25 !important; + .sm\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .sm\:border-opacity-30 { - --tw-border-opacity: 0.3 !important; + .sm\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .sm\:border-opacity-40 { - --tw-border-opacity: 0.4 !important; + .sm\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .sm\:border-opacity-50 { - --tw-border-opacity: 0.5 !important; + .sm\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .sm\:border-opacity-60 { - --tw-border-opacity: 0.6 !important; + .sm\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .sm\:border-opacity-70 { - --tw-border-opacity: 0.7 !important; + .sm\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .sm\:border-opacity-75 { - --tw-border-opacity: 0.75 !important; + .sm\:focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; } - .sm\:border-opacity-80 { - --tw-border-opacity: 0.8 !important; + .sm\:focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; } - .sm\:border-opacity-90 { - --tw-border-opacity: 0.9 !important; + .sm\:focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; } - .sm\:border-opacity-95 { - --tw-border-opacity: 0.95 !important; + .sm\:focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; } - .sm\:border-opacity-100 { - --tw-border-opacity: 1 !important; + .sm\:focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; } - .group:hover .sm\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0 !important; + .sm\:focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; } - .group:hover .sm\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05 !important; + .sm\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; } - .group:hover .sm\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1 !important; + .sm\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; } - .group:hover .sm\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2 !important; + .sm\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; } - .group:hover .sm\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25 !important; + .sm\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; } - .group:hover .sm\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3 !important; + .sm\:focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; } - .group:hover .sm\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4 !important; + .sm\:focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; } - .group:hover .sm\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5 !important; + .sm\:focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; } - .group:hover .sm\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6 !important; + .sm\:focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; } - .group:hover .sm\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7 !important; + .sm\:focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; } - .group:hover .sm\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75 !important; + .sm\:focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; } - .group:hover .sm\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8 !important; + .sm\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; } - .group:hover .sm\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9 !important; + .sm\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; } - .group:hover .sm\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95 !important; + .sm\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; } - .group:hover .sm\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1 !important; + .sm\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; } - .sm\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0 !important; + .sm\:animate-none { + animation: none !important; } - .sm\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05 !important; + .sm\:animate-spin { + animation: spin 1s linear infinite !important; } - .sm\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1 !important; + .sm\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; } - .sm\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2 !important; + .sm\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; } - .sm\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25 !important; + .sm\:animate-bounce { + animation: bounce 1s infinite !important; } - .sm\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3 !important; + .sm\:cursor-auto { + cursor: auto !important; } - .sm\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4 !important; + .sm\:cursor-default { + cursor: default !important; } - .sm\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5 !important; + .sm\:cursor-pointer { + cursor: pointer !important; } - .sm\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6 !important; + .sm\:cursor-wait { + cursor: wait !important; } - .sm\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7 !important; + .sm\:cursor-text { + cursor: text !important; } - .sm\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75 !important; + .sm\:cursor-move { + cursor: move !important; } - .sm\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8 !important; + .sm\:cursor-help { + cursor: help !important; } - .sm\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9 !important; + .sm\:cursor-not-allowed { + cursor: not-allowed !important; } - .sm\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95 !important; + .sm\:select-none { + user-select: none !important; } - .sm\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1 !important; + .sm\:select-text { + user-select: text !important; } - .sm\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0 !important; + .sm\:select-all { + user-select: all !important; } - .sm\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05 !important; + .sm\:select-auto { + user-select: auto !important; } - .sm\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1 !important; + .sm\:resize-none { + resize: none !important; } - .sm\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2 !important; + .sm\:resize-y { + resize: vertical !important; } - .sm\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25 !important; + .sm\:resize-x { + resize: horizontal !important; } - .sm\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3 !important; + .sm\:resize { + resize: both !important; } - .sm\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4 !important; + .sm\:list-inside { + list-style-position: inside !important; } - .sm\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5 !important; + .sm\:list-outside { + list-style-position: outside !important; } - .sm\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6 !important; + .sm\:list-none { + list-style-type: none !important; } - .sm\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7 !important; + .sm\:list-disc { + list-style-type: disc !important; } - .sm\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75 !important; + .sm\:list-decimal { + list-style-type: decimal !important; } - .sm\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8 !important; + .sm\:appearance-none { + appearance: none !important; } - .sm\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9 !important; + .sm\:auto-cols-auto { + grid-auto-columns: auto !important; } - .sm\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95 !important; + .sm\:auto-cols-min { + grid-auto-columns: min-content !important; } - .sm\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1 !important; + .sm\:auto-cols-max { + grid-auto-columns: max-content !important; } - .sm\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0 !important; + .sm\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; } - .sm\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05 !important; + .sm\:grid-flow-row { + grid-auto-flow: row !important; } - .sm\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1 !important; + .sm\:grid-flow-col { + grid-auto-flow: column !important; } - .sm\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2 !important; + .sm\:grid-flow-row-dense { + grid-auto-flow: row dense !important; } - .sm\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25 !important; + .sm\:grid-flow-col-dense { + grid-auto-flow: column dense !important; } - .sm\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3 !important; + .sm\:auto-rows-auto { + grid-auto-rows: auto !important; } - .sm\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4 !important; + .sm\:auto-rows-min { + grid-auto-rows: min-content !important; } - .sm\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5 !important; + .sm\:auto-rows-max { + grid-auto-rows: max-content !important; } - .sm\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6 !important; + .sm\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; } - .sm\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7 !important; + .sm\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } - .sm\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75 !important; + .sm\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } - .sm\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8 !important; + .sm\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } - .sm\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9 !important; + .sm\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } - .sm\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95 !important; + .sm\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } - .sm\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1 !important; + .sm\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } - .sm\:rounded-none { - border-radius: 0px !important; + .sm\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } - .sm\:rounded-sm { - border-radius: 0.125rem !important; + .sm\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } - .sm\:rounded { - border-radius: 0.25rem !important; + .sm\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } - .sm\:rounded-md { - border-radius: 0.375rem !important; + .sm\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } - .sm\:rounded-lg { - border-radius: 0.5rem !important; + .sm\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } - .sm\:rounded-xl { - border-radius: 0.75rem !important; + .sm\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } - .sm\:rounded-2xl { - border-radius: 1rem !important; + .sm\:grid-cols-none { + grid-template-columns: none !important; } - .sm\:rounded-3xl { - border-radius: 1.5rem !important; + .sm\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; } - .sm\:rounded-full { - border-radius: 9999px !important; + .sm\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; } - .sm\:rounded-t-none { - border-top-left-radius: 0px !important; - border-top-right-radius: 0px !important; + .sm\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; } - .sm\:rounded-r-none { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; + .sm\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; } - .sm\:rounded-b-none { - border-bottom-right-radius: 0px !important; - border-bottom-left-radius: 0px !important; + .sm\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; } - .sm\:rounded-l-none { - border-top-left-radius: 0px !important; - border-bottom-left-radius: 0px !important; + .sm\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; } - .sm\:rounded-t-sm { - border-top-left-radius: 0.125rem !important; - border-top-right-radius: 0.125rem !important; + .sm\:grid-rows-none { + grid-template-rows: none !important; } - .sm\:rounded-r-sm { - border-top-right-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; + .sm\:flex-row { + flex-direction: row !important; } - .sm\:rounded-b-sm { - border-bottom-right-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; + .sm\:flex-row-reverse { + flex-direction: row-reverse !important; } - .sm\:rounded-l-sm { - border-top-left-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; + .sm\:flex-col { + flex-direction: column !important; } - .sm\:rounded-t { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; + .sm\:flex-col-reverse { + flex-direction: column-reverse !important; } - .sm\:rounded-r { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; + .sm\:flex-wrap { + flex-wrap: wrap !important; } - .sm\:rounded-b { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; + .sm\:flex-wrap-reverse { + flex-wrap: wrap-reverse !important; } - .sm\:rounded-l { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; + .sm\:flex-nowrap { + flex-wrap: nowrap !important; } - .sm\:rounded-t-md { - border-top-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem !important; + .sm\:place-content-center { + place-content: center !important; } - .sm\:rounded-r-md { - border-top-right-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; + .sm\:place-content-start { + place-content: start !important; } - .sm\:rounded-b-md { - border-bottom-right-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; + .sm\:place-content-end { + place-content: end !important; } - .sm\:rounded-l-md { - border-top-left-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; + .sm\:place-content-between { + place-content: space-between !important; } - .sm\:rounded-t-lg { - border-top-left-radius: 0.5rem !important; - border-top-right-radius: 0.5rem !important; + .sm\:place-content-around { + place-content: space-around !important; } - .sm\:rounded-r-lg { - border-top-right-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; + .sm\:place-content-evenly { + place-content: space-evenly !important; } - .sm\:rounded-b-lg { - border-bottom-right-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; + .sm\:place-content-stretch { + place-content: stretch !important; } - .sm\:rounded-l-lg { - border-top-left-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; + .sm\:place-items-start { + place-items: start !important; } - .sm\:rounded-t-xl { - border-top-left-radius: 0.75rem !important; - border-top-right-radius: 0.75rem !important; + .sm\:place-items-end { + place-items: end !important; } - .sm\:rounded-r-xl { - border-top-right-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; + .sm\:place-items-center { + place-items: center !important; } - .sm\:rounded-b-xl { - border-bottom-right-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; + .sm\:place-items-stretch { + place-items: stretch !important; } - .sm\:rounded-l-xl { - border-top-left-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; + .sm\:content-center { + align-content: center !important; } - .sm\:rounded-t-2xl { - border-top-left-radius: 1rem !important; - border-top-right-radius: 1rem !important; + .sm\:content-start { + align-content: flex-start !important; } - .sm\:rounded-r-2xl { - border-top-right-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; + .sm\:content-end { + align-content: flex-end !important; } - .sm\:rounded-b-2xl { - border-bottom-right-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; + .sm\:content-between { + align-content: space-between !important; } - .sm\:rounded-l-2xl { - border-top-left-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; + .sm\:content-around { + align-content: space-around !important; } - .sm\:rounded-t-3xl { - border-top-left-radius: 1.5rem !important; - border-top-right-radius: 1.5rem !important; + .sm\:content-evenly { + align-content: space-evenly !important; } - .sm\:rounded-r-3xl { - border-top-right-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; + .sm\:items-start { + align-items: flex-start !important; } - .sm\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; + .sm\:items-end { + align-items: flex-end !important; } - .sm\:rounded-l-3xl { - border-top-left-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; + .sm\:items-center { + align-items: center !important; } - .sm\:rounded-t-full { - border-top-left-radius: 9999px !important; - border-top-right-radius: 9999px !important; + .sm\:items-baseline { + align-items: baseline !important; } - .sm\:rounded-r-full { - border-top-right-radius: 9999px !important; - border-bottom-right-radius: 9999px !important; + .sm\:items-stretch { + align-items: stretch !important; } - .sm\:rounded-b-full { - border-bottom-right-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; + .sm\:justify-start { + justify-content: flex-start !important; } - .sm\:rounded-l-full { - border-top-left-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; + .sm\:justify-end { + justify-content: flex-end !important; } - .sm\:rounded-tl-none { - border-top-left-radius: 0px !important; + .sm\:justify-center { + justify-content: center !important; } - .sm\:rounded-tr-none { - border-top-right-radius: 0px !important; + .sm\:justify-between { + justify-content: space-between !important; + } + + .sm\:justify-around { + justify-content: space-around !important; } - .sm\:rounded-br-none { - border-bottom-right-radius: 0px !important; + .sm\:justify-evenly { + justify-content: space-evenly !important; } - .sm\:rounded-bl-none { - border-bottom-left-radius: 0px !important; + .sm\:justify-items-start { + justify-items: start !important; } - .sm\:rounded-tl-sm { - border-top-left-radius: 0.125rem !important; + .sm\:justify-items-end { + justify-items: end !important; } - .sm\:rounded-tr-sm { - border-top-right-radius: 0.125rem !important; + .sm\:justify-items-center { + justify-items: center !important; } - .sm\:rounded-br-sm { - border-bottom-right-radius: 0.125rem !important; + .sm\:justify-items-stretch { + justify-items: stretch !important; } - .sm\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem !important; + .sm\:gap-0 { + gap: 0px !important; } - .sm\:rounded-tl { - border-top-left-radius: 0.25rem !important; + .sm\:gap-1 { + gap: 0.25rem !important; } - .sm\:rounded-tr { - border-top-right-radius: 0.25rem !important; + .sm\:gap-2 { + gap: 0.5rem !important; } - .sm\:rounded-br { - border-bottom-right-radius: 0.25rem !important; + .sm\:gap-3 { + gap: 0.75rem !important; } - .sm\:rounded-bl { - border-bottom-left-radius: 0.25rem !important; + .sm\:gap-4 { + gap: 1rem !important; } - .sm\:rounded-tl-md { - border-top-left-radius: 0.375rem !important; + .sm\:gap-5 { + gap: 1.25rem !important; } - .sm\:rounded-tr-md { - border-top-right-radius: 0.375rem !important; + .sm\:gap-6 { + gap: 1.5rem !important; } - .sm\:rounded-br-md { - border-bottom-right-radius: 0.375rem !important; + .sm\:gap-7 { + gap: 1.75rem !important; } - .sm\:rounded-bl-md { - border-bottom-left-radius: 0.375rem !important; + .sm\:gap-8 { + gap: 2rem !important; } - .sm\:rounded-tl-lg { - border-top-left-radius: 0.5rem !important; + .sm\:gap-9 { + gap: 2.25rem !important; } - .sm\:rounded-tr-lg { - border-top-right-radius: 0.5rem !important; + .sm\:gap-10 { + gap: 2.5rem !important; } - .sm\:rounded-br-lg { - border-bottom-right-radius: 0.5rem !important; + .sm\:gap-11 { + gap: 2.75rem !important; } - .sm\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem !important; + .sm\:gap-12 { + gap: 3rem !important; } - .sm\:rounded-tl-xl { - border-top-left-radius: 0.75rem !important; + .sm\:gap-14 { + gap: 3.5rem !important; } - .sm\:rounded-tr-xl { - border-top-right-radius: 0.75rem !important; + .sm\:gap-16 { + gap: 4rem !important; } - .sm\:rounded-br-xl { - border-bottom-right-radius: 0.75rem !important; + .sm\:gap-20 { + gap: 5rem !important; } - .sm\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem !important; + .sm\:gap-24 { + gap: 6rem !important; } - .sm\:rounded-tl-2xl { - border-top-left-radius: 1rem !important; + .sm\:gap-28 { + gap: 7rem !important; } - .sm\:rounded-tr-2xl { - border-top-right-radius: 1rem !important; + .sm\:gap-32 { + gap: 8rem !important; } - .sm\:rounded-br-2xl { - border-bottom-right-radius: 1rem !important; + .sm\:gap-36 { + gap: 9rem !important; } - .sm\:rounded-bl-2xl { - border-bottom-left-radius: 1rem !important; + .sm\:gap-40 { + gap: 10rem !important; } - .sm\:rounded-tl-3xl { - border-top-left-radius: 1.5rem !important; + .sm\:gap-44 { + gap: 11rem !important; } - .sm\:rounded-tr-3xl { - border-top-right-radius: 1.5rem !important; + .sm\:gap-48 { + gap: 12rem !important; } - .sm\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem !important; + .sm\:gap-52 { + gap: 13rem !important; } - .sm\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem !important; + .sm\:gap-56 { + gap: 14rem !important; } - .sm\:rounded-tl-full { - border-top-left-radius: 9999px !important; + .sm\:gap-60 { + gap: 15rem !important; } - .sm\:rounded-tr-full { - border-top-right-radius: 9999px !important; + .sm\:gap-64 { + gap: 16rem !important; } - .sm\:rounded-br-full { - border-bottom-right-radius: 9999px !important; + .sm\:gap-72 { + gap: 18rem !important; } - .sm\:rounded-bl-full { - border-bottom-left-radius: 9999px !important; + .sm\:gap-80 { + gap: 20rem !important; } - .sm\:border-solid { - border-style: solid !important; + .sm\:gap-96 { + gap: 24rem !important; } - .sm\:border-dashed { - border-style: dashed !important; + .sm\:gap-px { + gap: 1px !important; } - .sm\:border-dotted { - border-style: dotted !important; + .sm\:gap-0\.5 { + gap: 0.125rem !important; } - .sm\:border-double { - border-style: double !important; + .sm\:gap-1\.5 { + gap: 0.375rem !important; } - .sm\:border-none { - border-style: none !important; + .sm\:gap-2\.5 { + gap: 0.625rem !important; } - .sm\:border-0 { - border-width: 0px !important; + .sm\:gap-3\.5 { + gap: 0.875rem !important; } - .sm\:border-2 { - border-width: 2px !important; + .sm\:gap-x-0 { + column-gap: 0px !important; } - .sm\:border-4 { - border-width: 4px !important; + .sm\:gap-x-1 { + column-gap: 0.25rem !important; } - .sm\:border-8 { - border-width: 8px !important; + .sm\:gap-x-2 { + column-gap: 0.5rem !important; } - .sm\:border { - border-width: 1px !important; + .sm\:gap-x-3 { + column-gap: 0.75rem !important; } - .sm\:border-t-0 { - border-top-width: 0px !important; + .sm\:gap-x-4 { + column-gap: 1rem !important; } - .sm\:border-r-0 { - border-right-width: 0px !important; + .sm\:gap-x-5 { + column-gap: 1.25rem !important; } - .sm\:border-b-0 { - border-bottom-width: 0px !important; + .sm\:gap-x-6 { + column-gap: 1.5rem !important; } - .sm\:border-l-0 { - border-left-width: 0px !important; + .sm\:gap-x-7 { + column-gap: 1.75rem !important; } - .sm\:border-t-2 { - border-top-width: 2px !important; + .sm\:gap-x-8 { + column-gap: 2rem !important; } - .sm\:border-r-2 { - border-right-width: 2px !important; + .sm\:gap-x-9 { + column-gap: 2.25rem !important; } - .sm\:border-b-2 { - border-bottom-width: 2px !important; + .sm\:gap-x-10 { + column-gap: 2.5rem !important; } - .sm\:border-l-2 { - border-left-width: 2px !important; + .sm\:gap-x-11 { + column-gap: 2.75rem !important; } - .sm\:border-t-4 { - border-top-width: 4px !important; + .sm\:gap-x-12 { + column-gap: 3rem !important; } - .sm\:border-r-4 { - border-right-width: 4px !important; + .sm\:gap-x-14 { + column-gap: 3.5rem !important; } - .sm\:border-b-4 { - border-bottom-width: 4px !important; + .sm\:gap-x-16 { + column-gap: 4rem !important; } - .sm\:border-l-4 { - border-left-width: 4px !important; + .sm\:gap-x-20 { + column-gap: 5rem !important; } - .sm\:border-t-8 { - border-top-width: 8px !important; + .sm\:gap-x-24 { + column-gap: 6rem !important; } - .sm\:border-r-8 { - border-right-width: 8px !important; + .sm\:gap-x-28 { + column-gap: 7rem !important; } - .sm\:border-b-8 { - border-bottom-width: 8px !important; + .sm\:gap-x-32 { + column-gap: 8rem !important; } - .sm\:border-l-8 { - border-left-width: 8px !important; + .sm\:gap-x-36 { + column-gap: 9rem !important; } - .sm\:border-t { - border-top-width: 1px !important; + .sm\:gap-x-40 { + column-gap: 10rem !important; } - .sm\:border-r { - border-right-width: 1px !important; + .sm\:gap-x-44 { + column-gap: 11rem !important; } - .sm\:border-b { - border-bottom-width: 1px !important; + .sm\:gap-x-48 { + column-gap: 12rem !important; } - .sm\:border-l { - border-left-width: 1px !important; + .sm\:gap-x-52 { + column-gap: 13rem !important; } - .sm\:decoration-slice { - box-decoration-break: slice !important; + .sm\:gap-x-56 { + column-gap: 14rem !important; } - .sm\:decoration-clone { - box-decoration-break: clone !important; + .sm\:gap-x-60 { + column-gap: 15rem !important; } - .sm\:box-border { - box-sizing: border-box !important; + .sm\:gap-x-64 { + column-gap: 16rem !important; } - .sm\:box-content { - box-sizing: content-box !important; + .sm\:gap-x-72 { + column-gap: 18rem !important; } - .sm\:cursor-auto { - cursor: auto !important; + .sm\:gap-x-80 { + column-gap: 20rem !important; } - .sm\:cursor-default { - cursor: default !important; + .sm\:gap-x-96 { + column-gap: 24rem !important; } - .sm\:cursor-pointer { - cursor: pointer !important; + .sm\:gap-x-px { + column-gap: 1px !important; } - .sm\:cursor-wait { - cursor: wait !important; + .sm\:gap-x-0\.5 { + column-gap: 0.125rem !important; } - .sm\:cursor-text { - cursor: text !important; + .sm\:gap-x-1\.5 { + column-gap: 0.375rem !important; } - .sm\:cursor-move { - cursor: move !important; + .sm\:gap-x-2\.5 { + column-gap: 0.625rem !important; } - .sm\:cursor-help { - cursor: help !important; + .sm\:gap-x-3\.5 { + column-gap: 0.875rem !important; } - .sm\:cursor-not-allowed { - cursor: not-allowed !important; + .sm\:gap-y-0 { + row-gap: 0px !important; } - .sm\:block { - display: block !important; + .sm\:gap-y-1 { + row-gap: 0.25rem !important; } - .sm\:inline-block { - display: inline-block !important; + .sm\:gap-y-2 { + row-gap: 0.5rem !important; } - .sm\:inline { - display: inline !important; + .sm\:gap-y-3 { + row-gap: 0.75rem !important; } - .sm\:flex { - display: flex !important; + .sm\:gap-y-4 { + row-gap: 1rem !important; } - .sm\:inline-flex { - display: inline-flex !important; + .sm\:gap-y-5 { + row-gap: 1.25rem !important; } - .sm\:table { - display: table !important; + .sm\:gap-y-6 { + row-gap: 1.5rem !important; } - .sm\:inline-table { - display: inline-table !important; + .sm\:gap-y-7 { + row-gap: 1.75rem !important; } - .sm\:table-caption { - display: table-caption !important; + .sm\:gap-y-8 { + row-gap: 2rem !important; } - .sm\:table-cell { - display: table-cell !important; + .sm\:gap-y-9 { + row-gap: 2.25rem !important; } - .sm\:table-column { - display: table-column !important; + .sm\:gap-y-10 { + row-gap: 2.5rem !important; } - .sm\:table-column-group { - display: table-column-group !important; + .sm\:gap-y-11 { + row-gap: 2.75rem !important; } - .sm\:table-footer-group { - display: table-footer-group !important; + .sm\:gap-y-12 { + row-gap: 3rem !important; } - .sm\:table-header-group { - display: table-header-group !important; + .sm\:gap-y-14 { + row-gap: 3.5rem !important; } - .sm\:table-row-group { - display: table-row-group !important; + .sm\:gap-y-16 { + row-gap: 4rem !important; } - .sm\:table-row { - display: table-row !important; + .sm\:gap-y-20 { + row-gap: 5rem !important; } - .sm\:flow-root { - display: flow-root !important; + .sm\:gap-y-24 { + row-gap: 6rem !important; } - .sm\:grid { - display: grid !important; + .sm\:gap-y-28 { + row-gap: 7rem !important; } - .sm\:inline-grid { - display: inline-grid !important; + .sm\:gap-y-32 { + row-gap: 8rem !important; } - .sm\:contents { - display: contents !important; + .sm\:gap-y-36 { + row-gap: 9rem !important; } - .sm\:list-item { - display: list-item !important; + .sm\:gap-y-40 { + row-gap: 10rem !important; } - .sm\:hidden { - display: none !important; + .sm\:gap-y-44 { + row-gap: 11rem !important; } - .sm\:flex-row { - flex-direction: row !important; + .sm\:gap-y-48 { + row-gap: 12rem !important; } - .sm\:flex-row-reverse { - flex-direction: row-reverse !important; + .sm\:gap-y-52 { + row-gap: 13rem !important; } - .sm\:flex-col { - flex-direction: column !important; + .sm\:gap-y-56 { + row-gap: 14rem !important; } - .sm\:flex-col-reverse { - flex-direction: column-reverse !important; + .sm\:gap-y-60 { + row-gap: 15rem !important; } - .sm\:flex-wrap { - flex-wrap: wrap !important; + .sm\:gap-y-64 { + row-gap: 16rem !important; } - .sm\:flex-wrap-reverse { - flex-wrap: wrap-reverse !important; + .sm\:gap-y-72 { + row-gap: 18rem !important; } - .sm\:flex-nowrap { - flex-wrap: nowrap !important; + .sm\:gap-y-80 { + row-gap: 20rem !important; } - .sm\:place-items-start { - place-items: start !important; + .sm\:gap-y-96 { + row-gap: 24rem !important; } - .sm\:place-items-end { - place-items: end !important; + .sm\:gap-y-px { + row-gap: 1px !important; } - .sm\:place-items-center { - place-items: center !important; + .sm\:gap-y-0\.5 { + row-gap: 0.125rem !important; } - .sm\:place-items-stretch { - place-items: stretch !important; + .sm\:gap-y-1\.5 { + row-gap: 0.375rem !important; } - .sm\:place-content-center { - place-content: center !important; + .sm\:gap-y-2\.5 { + row-gap: 0.625rem !important; } - .sm\:place-content-start { - place-content: start !important; + .sm\:gap-y-3\.5 { + row-gap: 0.875rem !important; } - .sm\:place-content-end { - place-content: end !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\:place-content-between { - place-content: space-between !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\:place-content-around { - place-content: space-around !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\:place-content-evenly { - place-content: space-evenly !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\:place-content-stretch { - place-content: stretch !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\:place-self-auto { - place-self: auto !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\:place-self-start { - place-self: start !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\:place-self-end { - place-self: end !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\:place-self-center { - place-self: center !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\:place-self-stretch { - place-self: stretch !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\:items-start { - align-items: flex-start !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\:items-end { - align-items: flex-end !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\:items-center { - align-items: center !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\:items-baseline { - align-items: baseline !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\:items-stretch { - align-items: stretch !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\:content-center { - align-content: center !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\:content-start { - align-content: flex-start !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\:content-end { - align-content: flex-end !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\:content-between { - align-content: space-between !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\:content-around { - align-content: space-around !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\:content-evenly { - align-content: space-evenly !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\:self-auto { - align-self: auto !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\:self-start { - align-self: flex-start !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\:self-end { - align-self: flex-end !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\:self-center { - align-self: center !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\:self-stretch { - align-self: stretch !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\:justify-items-start { - justify-items: start !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\:justify-items-end { - justify-items: end !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\:justify-items-center { - justify-items: center !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\:justify-items-stretch { - justify-items: stretch !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\:justify-start { - justify-content: flex-start !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\:justify-end { - justify-content: flex-end !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\:justify-center { - justify-content: center !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\:justify-between { - justify-content: space-between !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\:justify-around { - justify-content: space-around !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\:justify-evenly { - justify-content: space-evenly !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\:justify-self-auto { - justify-self: auto !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\:justify-self-start { - justify-self: start !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\:justify-self-end { - justify-self: end !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\:justify-self-center { - justify-self: center !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\:justify-self-stretch { - justify-self: stretch !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\:flex-1 { - flex: 1 1 0% !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\:flex-auto { - flex: 1 1 auto !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\:flex-initial { - flex: 0 1 auto !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\:flex-none { - flex: none !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\:flex-grow-0 { - flex-grow: 0 !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\:flex-grow { - flex-grow: 1 !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\:flex-shrink-0 { - flex-shrink: 0 !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\:flex-shrink { - flex-shrink: 1 !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\:order-1 { - order: 1 !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\:order-2 { - order: 2 !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\:order-3 { - order: 3 !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\:order-4 { - order: 4 !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\:order-5 { - order: 5 !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\:order-6 { - order: 6 !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\:order-7 { - order: 7 !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\:order-8 { - order: 8 !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\:order-9 { - order: 9 !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\:order-10 { - order: 10 !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\:order-11 { - order: 11 !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\:order-12 { - order: 12 !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\:order-first { - order: -9999 !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\:order-last { - order: 9999 !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\:order-none { - order: 0 !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\:float-right { - float: right !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\:float-left { - float: left !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\:float-none { - float: none !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\:clear-left { - clear: left !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\:clear-right { - clear: right !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\:clear-both { - clear: both !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\:clear-none { - clear: none !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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !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\:font-thin { - font-weight: 100 !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\:font-extralight { - font-weight: 200 !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\:font-light { - font-weight: 300 !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\:font-normal { - font-weight: 400 !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\:font-medium { - font-weight: 500 !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\:font-semibold { - font-weight: 600 !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\:font-bold { - font-weight: 700 !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\:font-extrabold { - font-weight: 800 !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\:font-black { - font-weight: 900 !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\:h-0 { - height: 0px !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\:h-1 { - height: 0.25rem !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\:h-2 { - height: 0.5rem !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\:h-3 { - height: 0.75rem !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\:h-4 { - height: 1rem !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\:h-5 { - height: 1.25rem !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\:h-6 { - height: 1.5rem !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\:h-7 { - height: 1.75rem !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\:h-8 { - height: 2rem !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\:h-9 { - height: 2.25rem !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\:h-10 { - height: 2.5rem !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\:h-11 { - height: 2.75rem !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\:h-12 { - height: 3rem !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\:h-14 { - height: 3.5rem !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\:h-16 { - height: 4rem !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\:h-20 { - height: 5rem !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\:h-24 { - height: 6rem !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\:h-28 { - height: 7rem !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\:h-32 { - height: 8rem !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\:h-36 { - height: 9rem !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\:h-40 { - height: 10rem !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\:h-44 { - height: 11rem !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\:h-48 { - height: 12rem !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\:h-52 { - height: 13rem !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\:h-56 { - height: 14rem !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\:h-60 { - height: 15rem !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\:h-64 { - height: 16rem !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\:h-72 { - height: 18rem !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\:h-80 { - height: 20rem !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\:h-96 { - height: 24rem !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\:h-auto { - height: auto !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\:h-px { - height: 1px !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\:h-0\.5 { - height: 0.125rem !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\:h-1\.5 { - height: 0.375rem !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\:h-2\.5 { - height: 0.625rem !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\:h-3\.5 { - height: 0.875rem !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\:h-1\/2 { - height: 50% !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\:h-1\/3 { - height: 33.333333% !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\:h-2\/3 { - height: 66.666667% !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\:h-1\/4 { - height: 25% !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\:h-2\/4 { - height: 50% !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\:h-3\/4 { - height: 75% !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\:h-1\/5 { - height: 20% !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\:h-2\/5 { - height: 40% !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\:h-3\/5 { - height: 60% !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\:h-4\/5 { - height: 80% !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\:h-1\/6 { - height: 16.666667% !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\:h-2\/6 { - height: 33.333333% !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\:h-3\/6 { - height: 50% !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\:h-4\/6 { - height: 66.666667% !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\:h-5\/6 { - height: 83.333333% !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\:h-full { - height: 100% !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\:h-screen { - height: 100vh !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\:text-xs { - font-size: 0.75rem !important; - line-height: 1rem !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\:text-sm { - font-size: 0.875rem !important; - line-height: 1.25rem !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\:text-base { - font-size: 1rem !important; - line-height: 1.5rem !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\:text-lg { - font-size: 1.125rem !important; - line-height: 1.75rem !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\:text-xl { - font-size: 1.25rem !important; - line-height: 1.75rem !important; + .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; } - .sm\:text-2xl { - font-size: 1.5rem !important; - line-height: 2rem !important; + .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; } - .sm\:text-3xl { - font-size: 1.875rem !important; - line-height: 2.25rem !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\:text-4xl { - font-size: 2.25rem !important; - line-height: 2.5rem !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\:text-5xl { - font-size: 3rem !important; - line-height: 1 !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\:text-6xl { - font-size: 3.75rem !important; - line-height: 1 !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\:text-7xl { - font-size: 4.5rem !important; - line-height: 1 !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\:text-8xl { - font-size: 6rem !important; - line-height: 1 !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\:text-9xl { - font-size: 8rem !important; - line-height: 1 !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\:leading-3 { - line-height: .75rem !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\:leading-4 { - line-height: 1rem !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\:leading-5 { - line-height: 1.25rem !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\:leading-6 { - line-height: 1.5rem !important; + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; } - .sm\:leading-7 { - line-height: 1.75rem !important; + .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; } - .sm\:leading-8 { - line-height: 2rem !important; + .sm\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; } - .sm\:leading-9 { - line-height: 2.25rem !important; + .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; } - .sm\:leading-10 { - line-height: 2.5rem !important; + .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; } - .sm\:leading-none { - line-height: 1 !important; + .sm\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; } - .sm\:leading-tight { - line-height: 1.25 !important; + .sm\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; } - .sm\:leading-snug { - line-height: 1.375 !important; + .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; } - .sm\:leading-normal { - line-height: 1.5 !important; + .sm\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; } - .sm\:leading-relaxed { - line-height: 1.625 !important; + .sm\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; } - .sm\:leading-loose { - line-height: 2 !important; + .sm\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; } - .sm\:list-inside { - list-style-position: inside !important; + .sm\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; } - .sm\:list-outside { - list-style-position: outside !important; + .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; } - .sm\:list-none { - list-style-type: none !important; + .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; } - .sm\:list-disc { - list-style-type: disc !important; + .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; } - .sm\:list-decimal { - list-style-type: decimal !important; + .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; } - .sm\:m-0 { - margin: 0px !important; + .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; } - .sm\:m-1 { - margin: 0.25rem !important; + .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; } - .sm\:m-2 { - margin: 0.5rem !important; + .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; } - .sm\:m-3 { - margin: 0.75rem !important; + .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; } - .sm\:m-4 { - margin: 1rem !important; + .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; } - .sm\:m-5 { - margin: 1.25rem !important; + .sm\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; } - .sm\:m-6 { - margin: 1.5rem !important; + .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; } - .sm\:m-7 { - margin: 1.75rem !important; + .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; } - .sm\:m-8 { - margin: 2rem !important; + .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; } - .sm\:m-9 { - margin: 2.25rem !important; + .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; } - .sm\:m-10 { - margin: 2.5rem !important; + .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; } - .sm\:m-11 { - margin: 2.75rem !important; + .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; } - .sm\:m-12 { - margin: 3rem !important; + .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; } - .sm\:m-14 { - margin: 3.5rem !important; + .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; } - .sm\:m-16 { - margin: 4rem !important; + .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; } - .sm\:m-20 { - margin: 5rem !important; + .sm\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; } - .sm\:m-24 { - margin: 6rem !important; + .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; } - .sm\:m-28 { - margin: 7rem !important; + .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; } - .sm\:m-32 { - margin: 8rem !important; + .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; } - .sm\:m-36 { - margin: 9rem !important; + .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; } - .sm\:m-40 { - margin: 10rem !important; + .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; } - .sm\:m-44 { - margin: 11rem !important; + .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; } - .sm\:m-48 { - margin: 12rem !important; + .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; } - .sm\:m-52 { - margin: 13rem !important; + .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; } - .sm\:m-56 { - margin: 14rem !important; + .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; } - .sm\:m-60 { - margin: 15rem !important; + .sm\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; } - .sm\:m-64 { - margin: 16rem !important; + .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; } - .sm\:m-72 { - margin: 18rem !important; + .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; } - .sm\:m-80 { - margin: 20rem !important; + .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; } - .sm\:m-96 { - margin: 24rem !important; + .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; } - .sm\:m-auto { - margin: auto !important; + .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; } - .sm\:m-px { - margin: 1px !important; + .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; } - .sm\:m-0\.5 { - margin: 0.125rem !important; + .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; } - .sm\:m-1\.5 { - margin: 0.375rem !important; + .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; } - .sm\:m-2\.5 { - margin: 0.625rem !important; + .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; } - .sm\:m-3\.5 { - margin: 0.875rem !important; + .sm\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; } - .sm\:-m-0 { - margin: 0px !important; + .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; } - .sm\:-m-1 { - margin: -0.25rem !important; + .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; } - .sm\:-m-2 { - margin: -0.5rem !important; + .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; } - .sm\:-m-3 { - margin: -0.75rem !important; + .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; } - .sm\:-m-4 { - margin: -1rem !important; + .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; } - .sm\:-m-5 { - margin: -1.25rem !important; + .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; } - .sm\:-m-6 { - margin: -1.5rem !important; + .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; } - .sm\:-m-7 { - margin: -1.75rem !important; + .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; } - .sm\:-m-8 { - margin: -2rem !important; + .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; } - .sm\:-m-9 { - margin: -2.25rem !important; + .sm\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; } - .sm\:-m-10 { - margin: -2.5rem !important; + .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; } - .sm\:-m-11 { - margin: -2.75rem !important; + .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; } - .sm\:-m-12 { - margin: -3rem !important; + .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; } - .sm\:-m-14 { - margin: -3.5rem !important; + .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; } - .sm\:-m-16 { - margin: -4rem !important; + .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; } - .sm\:-m-20 { - margin: -5rem !important; + .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; } - .sm\:-m-24 { - margin: -6rem !important; + .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; } - .sm\:-m-28 { - margin: -7rem !important; + .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; } - .sm\:-m-32 { - margin: -8rem !important; + .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; } - .sm\:-m-36 { - margin: -9rem !important; + .sm\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; } - .sm\:-m-40 { - margin: -10rem !important; + .sm\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; } - .sm\:-m-44 { - margin: -11rem !important; + .sm\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; } - .sm\:-m-48 { - margin: -12rem !important; + .sm\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; } - .sm\:-m-52 { - margin: -13rem !important; + .sm\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; } - .sm\:-m-56 { - margin: -14rem !important; + .sm\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; } - .sm\:-m-60 { - margin: -15rem !important; + .sm\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; } - .sm\:-m-64 { - margin: -16rem !important; + .sm\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; } - .sm\:-m-72 { - margin: -18rem !important; + .sm\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; } - .sm\:-m-80 { - margin: -20rem !important; + .sm\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; } - .sm\:-m-96 { - margin: -24rem !important; + .sm\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; } - .sm\:-m-px { - margin: -1px !important; + .sm\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; } - .sm\:-m-0\.5 { - margin: -0.125rem !important; + .sm\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; } - .sm\:-m-1\.5 { - margin: -0.375rem !important; + .sm\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; } - .sm\:-m-2\.5 { - margin: -0.625rem !important; + .sm\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; } - .sm\:-m-3\.5 { - margin: -0.875rem !important; + .sm\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; } - .sm\:my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; + .sm\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; } - .sm\:mx-0 { - margin-left: 0px !important; - margin-right: 0px !important; + .sm\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; } - .sm\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; + .sm\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; } - .sm\:mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; + .sm\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; } - .sm\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; + .sm\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; } - .sm\:mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; + .sm\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; } - .sm\:my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; + .sm\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; } - .sm\:mx-3 { - margin-left: 0.75rem !important; - margin-right: 0.75rem !important; + .sm\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; } - .sm\:my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; + .sm\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; } - .sm\:mx-4 { - margin-left: 1rem !important; - margin-right: 1rem !important; + .sm\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; } - .sm\:my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !important; + .sm\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; } - .sm\:mx-5 { - margin-left: 1.25rem !important; - margin-right: 1.25rem !important; + .sm\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; } - .sm\:my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; + .sm\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; } - .sm\:mx-6 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; + .sm\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; } - .sm\:my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !important; + .sm\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; } - .sm\:mx-7 { - margin-left: 1.75rem !important; - margin-right: 1.75rem !important; + .sm\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; } - .sm\:my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; + .sm\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; } - .sm\:mx-8 { - margin-left: 2rem !important; - margin-right: 2rem !important; + .sm\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; } - .sm\:my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !important; + .sm\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; } - .sm\:mx-9 { - margin-left: 2.25rem !important; - margin-right: 2.25rem !important; + .sm\:place-self-auto { + place-self: auto !important; } - .sm\:my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; + .sm\:place-self-start { + place-self: start !important; } - .sm\:mx-10 { - margin-left: 2.5rem !important; - margin-right: 2.5rem !important; + .sm\:place-self-end { + place-self: end !important; } - .sm\:my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !important; + .sm\:place-self-center { + place-self: center !important; } - .sm\:mx-11 { - margin-left: 2.75rem !important; - margin-right: 2.75rem !important; + .sm\:place-self-stretch { + place-self: stretch !important; } - .sm\:my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; + .sm\:self-auto { + align-self: auto !important; } - .sm\:mx-12 { - margin-left: 3rem !important; - margin-right: 3rem !important; + .sm\:self-start { + align-self: flex-start !important; } - .sm\:my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !important; + .sm\:self-end { + align-self: flex-end !important; } - .sm\:mx-14 { - margin-left: 3.5rem !important; - margin-right: 3.5rem !important; + .sm\:self-center { + align-self: center !important; } - .sm\:my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; + .sm\:self-stretch { + align-self: stretch !important; } - .sm\:mx-16 { - margin-left: 4rem !important; - margin-right: 4rem !important; + .sm\:justify-self-auto { + justify-self: auto !important; } - .sm\:my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; + .sm\:justify-self-start { + justify-self: start !important; } - .sm\:mx-20 { - margin-left: 5rem !important; - margin-right: 5rem !important; + .sm\:justify-self-end { + justify-self: end !important; } - .sm\:my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !important; + .sm\:justify-self-center { + justify-self: center !important; } - .sm\:mx-24 { - margin-left: 6rem !important; - margin-right: 6rem !important; + .sm\:justify-self-stretch { + justify-self: stretch !important; } - .sm\:my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !important; + .sm\:overflow-auto { + overflow: auto !important; } - .sm\:mx-28 { - margin-left: 7rem !important; - margin-right: 7rem !important; + .sm\:overflow-hidden { + overflow: hidden !important; } - .sm\:my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !important; + .sm\:overflow-visible { + overflow: visible !important; } - .sm\:mx-32 { - margin-left: 8rem !important; - margin-right: 8rem !important; + .sm\:overflow-scroll { + overflow: scroll !important; } - .sm\:my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !important; + .sm\:overflow-x-auto { + overflow-x: auto !important; } - .sm\:mx-36 { - margin-left: 9rem !important; - margin-right: 9rem !important; + .sm\:overflow-y-auto { + overflow-y: auto !important; } - .sm\:my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !important; + .sm\:overflow-x-hidden { + overflow-x: hidden !important; } - .sm\:mx-40 { - margin-left: 10rem !important; - margin-right: 10rem !important; + .sm\:overflow-y-hidden { + overflow-y: hidden !important; } - .sm\:my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !important; + .sm\:overflow-x-visible { + overflow-x: visible !important; } - .sm\:mx-44 { - margin-left: 11rem !important; - margin-right: 11rem !important; + .sm\:overflow-y-visible { + overflow-y: visible !important; } - .sm\:my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !important; + .sm\:overflow-x-scroll { + overflow-x: scroll !important; } - .sm\:mx-48 { - margin-left: 12rem !important; - margin-right: 12rem !important; + .sm\:overflow-y-scroll { + overflow-y: scroll !important; } - .sm\:my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; + .sm\:overscroll-auto { + overscroll-behavior: auto !important; } - .sm\:mx-52 { - margin-left: 13rem !important; - margin-right: 13rem !important; + .sm\:overscroll-contain { + overscroll-behavior: contain !important; } - .sm\:my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !important; + .sm\:overscroll-none { + overscroll-behavior: none !important; } - .sm\:mx-56 { - margin-left: 14rem !important; - margin-right: 14rem !important; + .sm\:overscroll-y-auto { + overscroll-behavior-y: auto !important; } - .sm\:my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !important; + .sm\:overscroll-y-contain { + overscroll-behavior-y: contain !important; } - .sm\:mx-60 { - margin-left: 15rem !important; - margin-right: 15rem !important; + .sm\:overscroll-y-none { + overscroll-behavior-y: none !important; } - .sm\:my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !important; + .sm\:overscroll-x-auto { + overscroll-behavior-x: auto !important; } - .sm\:mx-64 { - margin-left: 16rem !important; - margin-right: 16rem !important; + .sm\:overscroll-x-contain { + overscroll-behavior-x: contain !important; } - .sm\:my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !important; + .sm\:overscroll-x-none { + overscroll-behavior-x: none !important; } - .sm\:mx-72 { - margin-left: 18rem !important; - margin-right: 18rem !important; + .sm\:truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; } - .sm\:my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !important; + .sm\:overflow-ellipsis { + text-overflow: ellipsis !important; } - .sm\:mx-80 { - margin-left: 20rem !important; - margin-right: 20rem !important; + .sm\:overflow-clip { + text-overflow: clip !important; } - .sm\:my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; + .sm\:whitespace-normal { + white-space: normal !important; } - .sm\:mx-96 { - margin-left: 24rem !important; - margin-right: 24rem !important; + .sm\:whitespace-nowrap { + white-space: nowrap !important; } - .sm\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; + .sm\:whitespace-pre { + white-space: pre !important; } - .sm\:mx-auto { - margin-left: auto !important; - margin-right: auto !important; + .sm\:whitespace-pre-line { + white-space: pre-line !important; } - .sm\:my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; + .sm\:whitespace-pre-wrap { + white-space: pre-wrap !important; } - .sm\:mx-px { - margin-left: 1px !important; - margin-right: 1px !important; + .sm\:break-normal { + overflow-wrap: normal !important; + word-break: normal !important; } - .sm\:my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; + .sm\:break-words { + overflow-wrap: break-word !important; } - .sm\:mx-0\.5 { - margin-left: 0.125rem !important; - margin-right: 0.125rem !important; + .sm\:break-all { + word-break: break-all !important; } - .sm\:my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; + .sm\:rounded-none { + border-radius: 0px !important; } - .sm\:mx-1\.5 { - margin-left: 0.375rem !important; - margin-right: 0.375rem !important; + .sm\:rounded-sm { + border-radius: 0.125rem !important; } - .sm\:my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; + .sm\:rounded { + border-radius: 0.25rem !important; } - .sm\:mx-2\.5 { - margin-left: 0.625rem !important; - margin-right: 0.625rem !important; + .sm\:rounded-md { + border-radius: 0.375rem !important; } - .sm\:my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; + .sm\:rounded-lg { + border-radius: 0.5rem !important; } - .sm\:mx-3\.5 { - margin-left: 0.875rem !important; - margin-right: 0.875rem !important; + .sm\:rounded-xl { + border-radius: 0.75rem !important; } - .sm\:-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; + .sm\:rounded-2xl { + border-radius: 1rem !important; } - .sm\:-mx-0 { - margin-left: 0px !important; - margin-right: 0px !important; + .sm\:rounded-3xl { + border-radius: 1.5rem !important; } - .sm\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; + .sm\:rounded-full { + border-radius: 9999px !important; } - .sm\:-mx-1 { - margin-left: -0.25rem !important; - margin-right: -0.25rem !important; + .sm\:rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; } - .sm\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; + .sm\:rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; } - .sm\:-mx-2 { - margin-left: -0.5rem !important; - margin-right: -0.5rem !important; + .sm\:rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; } - .sm\:-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; + .sm\:rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; } - .sm\:-mx-3 { - margin-left: -0.75rem !important; - margin-right: -0.75rem !important; + .sm\:rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; } - .sm\:-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; + .sm\:rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; } - .sm\:-mx-4 { - margin-left: -1rem !important; - margin-right: -1rem !important; + .sm\:rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; } - .sm\:-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; + .sm\:rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; } - .sm\:-mx-5 { - margin-left: -1.25rem !important; - margin-right: -1.25rem !important; + .sm\:rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; } - .sm\:-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; + .sm\:rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; } - .sm\:-mx-6 { - margin-left: -1.5rem !important; - margin-right: -1.5rem !important; + .sm\:rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; } - .sm\:-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; + .sm\:rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; } - .sm\:-mx-7 { - margin-left: -1.75rem !important; - margin-right: -1.75rem !important; + .sm\:rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; } - .sm\:-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; + .sm\:rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; } - .sm\:-mx-8 { - margin-left: -2rem !important; - margin-right: -2rem !important; + .sm\:rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; } - .sm\:-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; + .sm\:rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; } - .sm\:-mx-9 { - margin-left: -2.25rem !important; - margin-right: -2.25rem !important; + .sm\:rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; } - .sm\:-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; + .sm\:rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; } - .sm\:-mx-10 { - margin-left: -2.5rem !important; - margin-right: -2.5rem !important; + .sm\:rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; } - .sm\:-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; + .sm\:rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } - .sm\:-mx-11 { - margin-left: -2.75rem !important; - margin-right: -2.75rem !important; + .sm\:rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } - .sm\:-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; + .sm\:rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } - .sm\:-mx-12 { - margin-left: -3rem !important; - margin-right: -3rem !important; + .sm\:rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } - .sm\:-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; + .sm\:rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } - .sm\:-mx-14 { - margin-left: -3.5rem !important; - margin-right: -3.5rem !important; + .sm\:rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } - .sm\:-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; + .sm\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } - .sm\:-mx-16 { - margin-left: -4rem !important; - margin-right: -4rem !important; + .sm\:rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } - .sm\:-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; + .sm\:rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; } - .sm\:-mx-20 { - margin-left: -5rem !important; - margin-right: -5rem !important; + .sm\:rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } - .sm\:-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; + .sm\:rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } - .sm\:-mx-24 { - margin-left: -6rem !important; - margin-right: -6rem !important; + .sm\:rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } - .sm\:-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; + .sm\:rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } - .sm\:-mx-28 { - margin-left: -7rem !important; - margin-right: -7rem !important; + .sm\:rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } - .sm\:-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; + .sm\:rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } - .sm\:-mx-32 { - margin-left: -8rem !important; - margin-right: -8rem !important; + .sm\:rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } - .sm\:-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; + .sm\:rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } - .sm\:-mx-36 { - margin-left: -9rem !important; - margin-right: -9rem !important; + .sm\:rounded-tl-none { + border-top-left-radius: 0px !important; } - .sm\:-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; + .sm\:rounded-tl-sm { + border-top-left-radius: 0.125rem !important; } - .sm\:-mx-40 { - margin-left: -10rem !important; - margin-right: -10rem !important; + .sm\:rounded-tl { + border-top-left-radius: 0.25rem !important; } - .sm\:-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; + .sm\:rounded-tl-md { + border-top-left-radius: 0.375rem !important; } - .sm\:-mx-44 { - margin-left: -11rem !important; - margin-right: -11rem !important; + .sm\:rounded-tl-lg { + border-top-left-radius: 0.5rem !important; } - .sm\:-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; + .sm\:rounded-tl-xl { + border-top-left-radius: 0.75rem !important; } - .sm\:-mx-48 { - margin-left: -12rem !important; - margin-right: -12rem !important; + .sm\:rounded-tl-2xl { + border-top-left-radius: 1rem !important; } - .sm\:-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; + .sm\:rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; } - .sm\:-mx-52 { - margin-left: -13rem !important; - margin-right: -13rem !important; + .sm\:rounded-tl-full { + border-top-left-radius: 9999px !important; } - .sm\:-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; + .sm\:rounded-tr-none { + border-top-right-radius: 0px !important; } - .sm\:-mx-56 { - margin-left: -14rem !important; - margin-right: -14rem !important; + .sm\:rounded-tr-sm { + border-top-right-radius: 0.125rem !important; } - .sm\:-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; + .sm\:rounded-tr { + border-top-right-radius: 0.25rem !important; } - .sm\:-mx-60 { - margin-left: -15rem !important; - margin-right: -15rem !important; + .sm\:rounded-tr-md { + border-top-right-radius: 0.375rem !important; } - .sm\:-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; + .sm\:rounded-tr-lg { + border-top-right-radius: 0.5rem !important; } - .sm\:-mx-64 { - margin-left: -16rem !important; - margin-right: -16rem !important; + .sm\:rounded-tr-xl { + border-top-right-radius: 0.75rem !important; } - .sm\:-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; + .sm\:rounded-tr-2xl { + border-top-right-radius: 1rem !important; } - .sm\:-mx-72 { - margin-left: -18rem !important; - margin-right: -18rem !important; + .sm\:rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; } - .sm\:-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; + .sm\:rounded-tr-full { + border-top-right-radius: 9999px !important; } - .sm\:-mx-80 { - margin-left: -20rem !important; - margin-right: -20rem !important; + .sm\:rounded-br-none { + border-bottom-right-radius: 0px !important; } - .sm\:-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; + .sm\:rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; } - .sm\:-mx-96 { - margin-left: -24rem !important; - margin-right: -24rem !important; + .sm\:rounded-br { + border-bottom-right-radius: 0.25rem !important; } - .sm\:-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; + .sm\:rounded-br-md { + border-bottom-right-radius: 0.375rem !important; } - .sm\:-mx-px { - margin-left: -1px !important; - margin-right: -1px !important; + .sm\:rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; } - .sm\:-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; + .sm\:rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; } - .sm\:-mx-0\.5 { - margin-left: -0.125rem !important; - margin-right: -0.125rem !important; + .sm\:rounded-br-2xl { + border-bottom-right-radius: 1rem !important; } - .sm\:-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; + .sm\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; } - .sm\:-mx-1\.5 { - margin-left: -0.375rem !important; - margin-right: -0.375rem !important; + .sm\:rounded-br-full { + border-bottom-right-radius: 9999px !important; } - .sm\:-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; + .sm\:rounded-bl-none { + border-bottom-left-radius: 0px !important; } - .sm\:-mx-2\.5 { - margin-left: -0.625rem !important; - margin-right: -0.625rem !important; + .sm\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; } - .sm\:-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; + .sm\:rounded-bl { + border-bottom-left-radius: 0.25rem !important; } - .sm\:-mx-3\.5 { - margin-left: -0.875rem !important; - margin-right: -0.875rem !important; + .sm\:rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; } - .sm\:mt-0 { - margin-top: 0px !important; + .sm\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; } - .sm\:mr-0 { - margin-right: 0px !important; + .sm\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; } - .sm\:mb-0 { - margin-bottom: 0px !important; + .sm\:rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; } - .sm\:ml-0 { - margin-left: 0px !important; + .sm\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; } - .sm\:mt-1 { - margin-top: 0.25rem !important; + .sm\:rounded-bl-full { + border-bottom-left-radius: 9999px !important; } - .sm\:mr-1 { - margin-right: 0.25rem !important; + .sm\:border-0 { + border-width: 0px !important; } - .sm\:mb-1 { - margin-bottom: 0.25rem !important; + .sm\:border-2 { + border-width: 2px !important; } - .sm\:ml-1 { - margin-left: 0.25rem !important; + .sm\:border-4 { + border-width: 4px !important; } - .sm\:mt-2 { - margin-top: 0.5rem !important; + .sm\:border-8 { + border-width: 8px !important; } - .sm\:mr-2 { - margin-right: 0.5rem !important; + .sm\:border { + border-width: 1px !important; } - .sm\:mb-2 { - margin-bottom: 0.5rem !important; + .sm\:border-t-0 { + border-top-width: 0px !important; } - .sm\:ml-2 { - margin-left: 0.5rem !important; + .sm\:border-t-2 { + border-top-width: 2px !important; } - .sm\:mt-3 { - margin-top: 0.75rem !important; + .sm\:border-t-4 { + border-top-width: 4px !important; } - .sm\:mr-3 { - margin-right: 0.75rem !important; + .sm\:border-t-8 { + border-top-width: 8px !important; } - .sm\:mb-3 { - margin-bottom: 0.75rem !important; + .sm\:border-t { + border-top-width: 1px !important; } - .sm\:ml-3 { - margin-left: 0.75rem !important; + .sm\:border-r-0 { + border-right-width: 0px !important; } - .sm\:mt-4 { - margin-top: 1rem !important; + .sm\:border-r-2 { + border-right-width: 2px !important; } - .sm\:mr-4 { - margin-right: 1rem !important; + .sm\:border-r-4 { + border-right-width: 4px !important; } - .sm\:mb-4 { - margin-bottom: 1rem !important; + .sm\:border-r-8 { + border-right-width: 8px !important; } - .sm\:ml-4 { - margin-left: 1rem !important; + .sm\:border-r { + border-right-width: 1px !important; } - .sm\:mt-5 { - margin-top: 1.25rem !important; + .sm\:border-b-0 { + border-bottom-width: 0px !important; } - .sm\:mr-5 { - margin-right: 1.25rem !important; + .sm\:border-b-2 { + border-bottom-width: 2px !important; } - .sm\:mb-5 { - margin-bottom: 1.25rem !important; + .sm\:border-b-4 { + border-bottom-width: 4px !important; } - .sm\:ml-5 { - margin-left: 1.25rem !important; + .sm\:border-b-8 { + border-bottom-width: 8px !important; } - .sm\:mt-6 { - margin-top: 1.5rem !important; + .sm\:border-b { + border-bottom-width: 1px !important; } - .sm\:mr-6 { - margin-right: 1.5rem !important; + .sm\:border-l-0 { + border-left-width: 0px !important; } - .sm\:mb-6 { - margin-bottom: 1.5rem !important; + .sm\:border-l-2 { + border-left-width: 2px !important; } - .sm\:ml-6 { - margin-left: 1.5rem !important; + .sm\:border-l-4 { + border-left-width: 4px !important; } - .sm\:mt-7 { - margin-top: 1.75rem !important; + .sm\:border-l-8 { + border-left-width: 8px !important; } - .sm\:mr-7 { - margin-right: 1.75rem !important; + .sm\:border-l { + border-left-width: 1px !important; } - .sm\:mb-7 { - margin-bottom: 1.75rem !important; + .sm\:border-solid { + border-style: solid !important; } - .sm\:ml-7 { - margin-left: 1.75rem !important; + .sm\:border-dashed { + border-style: dashed !important; } - .sm\:mt-8 { - margin-top: 2rem !important; + .sm\:border-dotted { + border-style: dotted !important; } - .sm\:mr-8 { - margin-right: 2rem !important; + .sm\:border-double { + border-style: double !important; } - .sm\:mb-8 { - margin-bottom: 2rem !important; + .sm\:border-none { + border-style: none !important; } - .sm\:ml-8 { - margin-left: 2rem !important; + .sm\:border-transparent { + border-color: transparent !important; } - .sm\:mt-9 { - margin-top: 2.25rem !important; + .sm\:border-current { + border-color: currentColor !important; } - .sm\:mr-9 { - margin-right: 2.25rem !important; + .sm\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .sm\:mb-9 { - margin-bottom: 2.25rem !important; + .sm\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .sm\:ml-9 { - margin-left: 2.25rem !important; + .sm\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .sm\:mt-10 { - margin-top: 2.5rem !important; + .sm\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .sm\:mr-10 { - margin-right: 2.5rem !important; + .sm\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .sm\:mb-10 { - margin-bottom: 2.5rem !important; + .sm\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .sm\:ml-10 { - margin-left: 2.5rem !important; + .sm\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .sm\:mt-11 { - margin-top: 2.75rem !important; + .sm\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .sm\:mr-11 { - margin-right: 2.75rem !important; + .sm\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .sm\:mb-11 { - margin-bottom: 2.75rem !important; + .sm\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .sm\:ml-11 { - margin-left: 2.75rem !important; + .sm\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .sm\:mt-12 { - margin-top: 3rem !important; + .sm\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .sm\:mr-12 { - margin-right: 3rem !important; + .sm\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .sm\:mb-12 { - margin-bottom: 3rem !important; + .sm\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .sm\:ml-12 { - margin-left: 3rem !important; + .sm\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .sm\:mt-14 { - margin-top: 3.5rem !important; + .sm\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .sm\:mr-14 { - margin-right: 3.5rem !important; + .sm\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .sm\:mb-14 { - margin-bottom: 3.5rem !important; + .sm\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .sm\:ml-14 { - margin-left: 3.5rem !important; + .sm\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .sm\:mt-16 { - margin-top: 4rem !important; + .sm\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .sm\:mr-16 { - margin-right: 4rem !important; + .sm\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .sm\:mb-16 { - margin-bottom: 4rem !important; + .sm\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .sm\:ml-16 { - margin-left: 4rem !important; + .sm\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .sm\:mt-20 { - margin-top: 5rem !important; + .sm\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .sm\:mr-20 { - margin-right: 5rem !important; + .sm\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .sm\:mb-20 { - margin-bottom: 5rem !important; + .sm\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .sm\:ml-20 { - margin-left: 5rem !important; + .sm\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .sm\:mt-24 { - margin-top: 6rem !important; + .sm\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .sm\:mr-24 { - margin-right: 6rem !important; + .sm\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .sm\:mb-24 { - margin-bottom: 6rem !important; + .sm\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .sm\:ml-24 { - margin-left: 6rem !important; + .sm\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .sm\:mt-28 { - margin-top: 7rem !important; + .sm\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .sm\:mr-28 { - margin-right: 7rem !important; + .sm\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .sm\:mb-28 { - margin-bottom: 7rem !important; + .sm\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .sm\:ml-28 { - margin-left: 7rem !important; + .sm\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .sm\:mt-32 { - margin-top: 8rem !important; + .sm\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .sm\:mr-32 { - margin-right: 8rem !important; + .sm\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .sm\:mb-32 { - margin-bottom: 8rem !important; + .sm\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .sm\:ml-32 { - margin-left: 8rem !important; + .sm\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .sm\:mt-36 { - margin-top: 9rem !important; + .sm\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .sm\:mr-36 { - margin-right: 9rem !important; + .sm\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .sm\:mb-36 { - margin-bottom: 9rem !important; + .sm\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .sm\:ml-36 { - margin-left: 9rem !important; + .sm\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .sm\:mt-40 { - margin-top: 10rem !important; + .sm\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .sm\:mr-40 { - margin-right: 10rem !important; + .sm\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .sm\:mb-40 { - margin-bottom: 10rem !important; + .sm\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .sm\:ml-40 { - margin-left: 10rem !important; + .sm\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .sm\:mt-44 { - margin-top: 11rem !important; + .sm\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .sm\:mr-44 { - margin-right: 11rem !important; + .sm\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .sm\:mb-44 { - margin-bottom: 11rem !important; + .sm\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .sm\:ml-44 { - margin-left: 11rem !important; + .sm\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .sm\:mt-48 { - margin-top: 12rem !important; + .sm\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .sm\:mr-48 { - margin-right: 12rem !important; + .sm\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .sm\:mb-48 { - margin-bottom: 12rem !important; + .sm\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .sm\:ml-48 { - margin-left: 12rem !important; + .sm\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .sm\:mt-52 { - margin-top: 13rem !important; + .sm\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .sm\:mr-52 { - margin-right: 13rem !important; + .sm\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .sm\:mb-52 { - margin-bottom: 13rem !important; + .sm\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .sm\:ml-52 { - margin-left: 13rem !important; + .sm\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .sm\:mt-56 { - margin-top: 14rem !important; + .sm\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .sm\:mr-56 { - margin-right: 14rem !important; + .sm\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .sm\:mb-56 { - margin-bottom: 14rem !important; + .sm\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .sm\:ml-56 { - margin-left: 14rem !important; + .sm\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .sm\:mt-60 { - margin-top: 15rem !important; + .sm\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .sm\:mr-60 { - margin-right: 15rem !important; + .sm\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .sm\:mb-60 { - margin-bottom: 15rem !important; + .sm\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .sm\:ml-60 { - margin-left: 15rem !important; + .sm\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .sm\:mt-64 { - margin-top: 16rem !important; + .sm\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .sm\:mr-64 { - margin-right: 16rem !important; + .sm\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .sm\:mb-64 { - margin-bottom: 16rem !important; + .sm\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .sm\:ml-64 { - margin-left: 16rem !important; + .sm\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .sm\:mt-72 { - margin-top: 18rem !important; + .sm\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .sm\:mr-72 { - margin-right: 18rem !important; + .sm\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .sm\:mb-72 { - margin-bottom: 18rem !important; + .sm\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .sm\:ml-72 { - margin-left: 18rem !important; + .sm\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .sm\:mt-80 { - margin-top: 20rem !important; + .sm\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .sm\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .sm\:mr-80 { - margin-right: 20rem !important; + .sm\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .sm\:mb-80 { - margin-bottom: 20rem !important; + .sm\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .sm\:ml-80 { - margin-left: 20rem !important; + .sm\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .sm\:mt-96 { - margin-top: 24rem !important; + .sm\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .sm\:mr-96 { - margin-right: 24rem !important; + .sm\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .sm\:mb-96 { - margin-bottom: 24rem !important; + .group:hover .sm\:group-hover\:border-transparent { + border-color: transparent !important; } - .sm\:ml-96 { - margin-left: 24rem !important; + .group:hover .sm\:group-hover\:border-current { + border-color: currentColor !important; } - .sm\:mt-auto { - margin-top: auto !important; + .group:hover .sm\:group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .sm\:mr-auto { - margin-right: auto !important; + .group:hover .sm\:group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .sm\:mb-auto { - margin-bottom: auto !important; + .group:hover .sm\:group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .sm\:ml-auto { - margin-left: auto !important; + .group:hover .sm\:group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .sm\:mt-px { - margin-top: 1px !important; + .group:hover .sm\:group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .sm\:mr-px { - margin-right: 1px !important; + .group:hover .sm\:group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .sm\:mb-px { - margin-bottom: 1px !important; + .group:hover .sm\:group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .sm\:ml-px { - margin-left: 1px !important; + .group:hover .sm\:group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .sm\:mt-0\.5 { - margin-top: 0.125rem !important; + .group:hover .sm\:group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .sm\:mr-0\.5 { - margin-right: 0.125rem !important; + .group:hover .sm\:group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .sm\:mb-0\.5 { - margin-bottom: 0.125rem !important; + .group:hover .sm\:group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .sm\:ml-0\.5 { - margin-left: 0.125rem !important; + .group:hover .sm\:group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .sm\:mt-1\.5 { - margin-top: 0.375rem !important; + .group:hover .sm\:group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .sm\:mr-1\.5 { - margin-right: 0.375rem !important; + .group:hover .sm\:group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .sm\:mb-1\.5 { - margin-bottom: 0.375rem !important; + .group:hover .sm\:group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .sm\:ml-1\.5 { - margin-left: 0.375rem !important; + .group:hover .sm\:group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .sm\:mt-2\.5 { - margin-top: 0.625rem !important; + .group:hover .sm\:group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .sm\:mr-2\.5 { - margin-right: 0.625rem !important; + .group:hover .sm\:group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .sm\:mb-2\.5 { - margin-bottom: 0.625rem !important; + .group:hover .sm\:group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .sm\:ml-2\.5 { - margin-left: 0.625rem !important; + .group:hover .sm\:group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .sm\:mt-3\.5 { - margin-top: 0.875rem !important; + .group:hover .sm\:group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .sm\:mr-3\.5 { - margin-right: 0.875rem !important; + .group:hover .sm\:group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .sm\:mb-3\.5 { - margin-bottom: 0.875rem !important; + .group:hover .sm\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .sm\:ml-3\.5 { - margin-left: 0.875rem !important; + .group:hover .sm\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .sm\:-mt-0 { - margin-top: 0px !important; + .group:hover .sm\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .sm\:-mr-0 { - margin-right: 0px !important; + .group:hover .sm\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .sm\:-mb-0 { - margin-bottom: 0px !important; + .group:hover .sm\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .sm\:-ml-0 { - margin-left: 0px !important; + .group:hover .sm\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .sm\:-mt-1 { - margin-top: -0.25rem !important; + .group:hover .sm\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .sm\:-mr-1 { - margin-right: -0.25rem !important; + .group:hover .sm\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .sm\:-mb-1 { - margin-bottom: -0.25rem !important; + .group:hover .sm\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .sm\:-ml-1 { - margin-left: -0.25rem !important; + .group:hover .sm\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .sm\:-mt-2 { - margin-top: -0.5rem !important; + .group:hover .sm\:group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .sm\:-mr-2 { - margin-right: -0.5rem !important; + .group:hover .sm\:group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .sm\:-mb-2 { - margin-bottom: -0.5rem !important; + .group:hover .sm\:group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .sm\:-ml-2 { - margin-left: -0.5rem !important; + .group:hover .sm\:group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .sm\:-mt-3 { - margin-top: -0.75rem !important; + .group:hover .sm\:group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .sm\:-mr-3 { - margin-right: -0.75rem !important; + .group:hover .sm\:group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .sm\:-mb-3 { - margin-bottom: -0.75rem !important; + .group:hover .sm\:group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .sm\:-ml-3 { - margin-left: -0.75rem !important; + .group:hover .sm\:group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .sm\:-mt-4 { - margin-top: -1rem !important; + .group:hover .sm\:group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .sm\:-mr-4 { - margin-right: -1rem !important; + .group:hover .sm\:group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .sm\:-mb-4 { - margin-bottom: -1rem !important; + .group:hover .sm\:group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .sm\:-ml-4 { - margin-left: -1rem !important; + .group:hover .sm\:group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .sm\:-mt-5 { - margin-top: -1.25rem !important; + .group:hover .sm\:group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .sm\:-mr-5 { - margin-right: -1.25rem !important; + .group:hover .sm\:group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .sm\:-mb-5 { - margin-bottom: -1.25rem !important; + .group:hover .sm\:group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .sm\:-ml-5 { - margin-left: -1.25rem !important; + .group:hover .sm\:group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .sm\:-mt-6 { - margin-top: -1.5rem !important; + .group:hover .sm\:group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .sm\:-mr-6 { - margin-right: -1.5rem !important; + .group:hover .sm\:group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .sm\:-mb-6 { - margin-bottom: -1.5rem !important; + .group:hover .sm\:group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .sm\:-ml-6 { - margin-left: -1.5rem !important; + .group:hover .sm\:group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .sm\:-mt-7 { - margin-top: -1.75rem !important; + .group:hover .sm\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .sm\:-mr-7 { - margin-right: -1.75rem !important; + .group:hover .sm\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .sm\:-mb-7 { - margin-bottom: -1.75rem !important; + .group:hover .sm\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .sm\:-ml-7 { - margin-left: -1.75rem !important; + .group:hover .sm\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .sm\:-mt-8 { - margin-top: -2rem !important; + .group:hover .sm\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .sm\:-mr-8 { - margin-right: -2rem !important; + .group:hover .sm\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .sm\:-mb-8 { - margin-bottom: -2rem !important; + .group:hover .sm\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .sm\:-ml-8 { - margin-left: -2rem !important; + .group:hover .sm\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .sm\:-mt-9 { - margin-top: -2.25rem !important; + .group:hover .sm\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .sm\:-mr-9 { - margin-right: -2.25rem !important; + .group:hover .sm\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .sm\:-mb-9 { - margin-bottom: -2.25rem !important; + .group:hover .sm\:group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .sm\:-ml-9 { - margin-left: -2.25rem !important; + .group:hover .sm\:group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .sm\:-mt-10 { - margin-top: -2.5rem !important; + .group:hover .sm\:group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .sm\:-mr-10 { - margin-right: -2.5rem !important; + .group:hover .sm\:group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .sm\:-mb-10 { - margin-bottom: -2.5rem !important; + .group:hover .sm\:group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .sm\:-ml-10 { - margin-left: -2.5rem !important; + .group:hover .sm\:group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .sm\:-mt-11 { - margin-top: -2.75rem !important; + .group:hover .sm\:group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .sm\:-mr-11 { - margin-right: -2.75rem !important; + .group:hover .sm\:group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .sm\:-mb-11 { - margin-bottom: -2.75rem !important; + .group:hover .sm\:group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .sm\:-ml-11 { - margin-left: -2.75rem !important; + .group:hover .sm\:group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .sm\:-mt-12 { - margin-top: -3rem !important; + .group:hover .sm\:group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .sm\:-mr-12 { - margin-right: -3rem !important; + .group:hover .sm\:group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .sm\:-mb-12 { - margin-bottom: -3rem !important; + .group:hover .sm\:group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .sm\:-ml-12 { - margin-left: -3rem !important; + .group:hover .sm\:group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .sm\:-mt-14 { - margin-top: -3.5rem !important; + .group:hover .sm\:group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .sm\:-mr-14 { - margin-right: -3.5rem !important; + .group:hover .sm\:group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .sm\:-mb-14 { - margin-bottom: -3.5rem !important; + .group:hover .sm\:group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .sm\:-ml-14 { - margin-left: -3.5rem !important; + .group:hover .sm\:group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .sm\:-mt-16 { - margin-top: -4rem !important; + .group:hover .sm\:group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .sm\:-mr-16 { - margin-right: -4rem !important; + .group:hover .sm\:group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .sm\:-mb-16 { - margin-bottom: -4rem !important; + .sm\:focus-within\:border-transparent:focus-within { + border-color: transparent !important; } - .sm\:-ml-16 { - margin-left: -4rem !important; + .sm\:focus-within\:border-current:focus-within { + border-color: currentColor !important; } - .sm\:-mt-20 { - margin-top: -5rem !important; + .sm\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .sm\:-mr-20 { - margin-right: -5rem !important; + .sm\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .sm\:-mb-20 { - margin-bottom: -5rem !important; + .sm\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .sm\:-ml-20 { - margin-left: -5rem !important; + .sm\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .sm\:-mt-24 { - margin-top: -6rem !important; + .sm\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .sm\:-mr-24 { - margin-right: -6rem !important; + .sm\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .sm\:-mb-24 { - margin-bottom: -6rem !important; + .sm\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .sm\:-ml-24 { - margin-left: -6rem !important; + .sm\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .sm\:-mt-28 { - margin-top: -7rem !important; + .sm\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .sm\:-mr-28 { - margin-right: -7rem !important; + .sm\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .sm\:-mb-28 { - margin-bottom: -7rem !important; + .sm\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .sm\:-ml-28 { - margin-left: -7rem !important; + .sm\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .sm\:-mt-32 { - margin-top: -8rem !important; + .sm\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .sm\:-mr-32 { - margin-right: -8rem !important; + .sm\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .sm\:-mb-32 { - margin-bottom: -8rem !important; + .sm\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .sm\:-ml-32 { - margin-left: -8rem !important; + .sm\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .sm\:-mt-36 { - margin-top: -9rem !important; + .sm\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .sm\:-mr-36 { - margin-right: -9rem !important; + .sm\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .sm\:-mb-36 { - margin-bottom: -9rem !important; + .sm\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .sm\:-ml-36 { - margin-left: -9rem !important; + .sm\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .sm\:-mt-40 { - margin-top: -10rem !important; + .sm\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .sm\:-mr-40 { - margin-right: -10rem !important; + .sm\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .sm\:-mb-40 { - margin-bottom: -10rem !important; + .sm\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .sm\:-ml-40 { - margin-left: -10rem !important; + .sm\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .sm\:-mt-44 { - margin-top: -11rem !important; + .sm\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .sm\:-mr-44 { - margin-right: -11rem !important; + .sm\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .sm\:-mb-44 { - margin-bottom: -11rem !important; + .sm\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .sm\:-ml-44 { - margin-left: -11rem !important; + .sm\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .sm\:-mt-48 { - margin-top: -12rem !important; + .sm\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .sm\:-mr-48 { - margin-right: -12rem !important; + .sm\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .sm\:-mb-48 { - margin-bottom: -12rem !important; + .sm\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .sm\:-ml-48 { - margin-left: -12rem !important; + .sm\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .sm\:-mt-52 { - margin-top: -13rem !important; + .sm\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .sm\:-mr-52 { - margin-right: -13rem !important; + .sm\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .sm\:-mb-52 { - margin-bottom: -13rem !important; + .sm\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .sm\:-ml-52 { - margin-left: -13rem !important; + .sm\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .sm\:-mt-56 { - margin-top: -14rem !important; + .sm\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .sm\:-mr-56 { - margin-right: -14rem !important; + .sm\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .sm\:-mb-56 { - margin-bottom: -14rem !important; + .sm\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .sm\:-ml-56 { - margin-left: -14rem !important; + .sm\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .sm\:-mt-60 { - margin-top: -15rem !important; + .sm\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .sm\:-mr-60 { - margin-right: -15rem !important; + .sm\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .sm\:-mb-60 { - margin-bottom: -15rem !important; + .sm\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .sm\:-ml-60 { - margin-left: -15rem !important; + .sm\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .sm\:-mt-64 { - margin-top: -16rem !important; + .sm\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .sm\:-mr-64 { - margin-right: -16rem !important; + .sm\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .sm\:-mb-64 { - margin-bottom: -16rem !important; + .sm\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .sm\:-ml-64 { - margin-left: -16rem !important; + .sm\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .sm\:-mt-72 { - margin-top: -18rem !important; + .sm\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .sm\:-mr-72 { - margin-right: -18rem !important; + .sm\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .sm\:-mb-72 { - margin-bottom: -18rem !important; + .sm\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .sm\:-ml-72 { - margin-left: -18rem !important; + .sm\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .sm\:-mt-80 { - margin-top: -20rem !important; + .sm\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .sm\:-mr-80 { - margin-right: -20rem !important; + .sm\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .sm\:-mb-80 { - margin-bottom: -20rem !important; + .sm\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .sm\:-ml-80 { - margin-left: -20rem !important; + .sm\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .sm\:-mt-96 { - margin-top: -24rem !important; + .sm\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .sm\:-mr-96 { - margin-right: -24rem !important; + .sm\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .sm\:-mb-96 { - margin-bottom: -24rem !important; + .sm\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .sm\:-ml-96 { - margin-left: -24rem !important; + .sm\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .sm\:-mt-px { - margin-top: -1px !important; + .sm\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .sm\:-mr-px { - margin-right: -1px !important; + .sm\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .sm\:-mb-px { - margin-bottom: -1px !important; + .sm\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .sm\:-ml-px { - margin-left: -1px !important; + .sm\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .sm\:-mt-0\.5 { - margin-top: -0.125rem !important; + .sm\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .sm\:-mr-0\.5 { - margin-right: -0.125rem !important; + .sm\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .sm\:-mb-0\.5 { - margin-bottom: -0.125rem !important; + .sm\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .sm\:-ml-0\.5 { - margin-left: -0.125rem !important; + .sm\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .sm\:-mt-1\.5 { - margin-top: -0.375rem !important; + .sm\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .sm\:-mr-1\.5 { - margin-right: -0.375rem !important; + .sm\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .sm\:-mb-1\.5 { - margin-bottom: -0.375rem !important; + .sm\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .sm\:-ml-1\.5 { - margin-left: -0.375rem !important; + .sm\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .sm\:-mt-2\.5 { - margin-top: -0.625rem !important; + .sm\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .sm\:-mr-2\.5 { - margin-right: -0.625rem !important; + .sm\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .sm\:-mb-2\.5 { - margin-bottom: -0.625rem !important; + .sm\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .sm\:-ml-2\.5 { - margin-left: -0.625rem !important; + .sm\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .sm\:-mt-3\.5 { - margin-top: -0.875rem !important; + .sm\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .sm\:-mr-3\.5 { - margin-right: -0.875rem !important; + .sm\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .sm\:-mb-3\.5 { - margin-bottom: -0.875rem !important; + .sm\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .sm\:-ml-3\.5 { - margin-left: -0.875rem !important; + .sm\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .sm\:max-h-0 { - max-height: 0px !important; + .sm\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .sm\:max-h-1 { - max-height: 0.25rem !important; + .sm\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .sm\:max-h-2 { - max-height: 0.5rem !important; + .sm\:hover\:border-transparent:hover { + border-color: transparent !important; } - .sm\:max-h-3 { - max-height: 0.75rem !important; + .sm\:hover\:border-current:hover { + border-color: currentColor !important; } - .sm\:max-h-4 { - max-height: 1rem !important; + .sm\:hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .sm\:max-h-5 { - max-height: 1.25rem !important; + .sm\:hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .sm\:max-h-6 { - max-height: 1.5rem !important; + .sm\:hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .sm\:max-h-7 { - max-height: 1.75rem !important; + .sm\:hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .sm\:max-h-8 { - max-height: 2rem !important; + .sm\:hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .sm\:max-h-9 { - max-height: 2.25rem !important; + .sm\:hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .sm\:max-h-10 { - max-height: 2.5rem !important; + .sm\:hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .sm\:max-h-11 { - max-height: 2.75rem !important; + .sm\:hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .sm\:max-h-12 { - max-height: 3rem !important; + .sm\:hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .sm\:max-h-14 { - max-height: 3.5rem !important; + .sm\:hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .sm\:max-h-16 { - max-height: 4rem !important; + .sm\:hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .sm\:max-h-20 { - max-height: 5rem !important; + .sm\:hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .sm\:max-h-24 { - max-height: 6rem !important; + .sm\:hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .sm\:max-h-28 { - max-height: 7rem !important; + .sm\:hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .sm\:max-h-32 { - max-height: 8rem !important; + .sm\:hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .sm\:max-h-36 { - max-height: 9rem !important; + .sm\:hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .sm\:max-h-40 { - max-height: 10rem !important; + .sm\:hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .sm\:max-h-44 { - max-height: 11rem !important; + .sm\:hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .sm\:max-h-48 { - max-height: 12rem !important; + .sm\:hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .sm\:max-h-52 { - max-height: 13rem !important; + .sm\:hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .sm\:max-h-56 { - max-height: 14rem !important; + .sm\:hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .sm\:max-h-60 { - max-height: 15rem !important; + .sm\:hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .sm\:max-h-64 { - max-height: 16rem !important; + .sm\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .sm\:max-h-72 { - max-height: 18rem !important; + .sm\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .sm\:max-h-80 { - max-height: 20rem !important; + .sm\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .sm\:max-h-96 { - max-height: 24rem !important; + .sm\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .sm\:max-h-px { - max-height: 1px !important; + .sm\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .sm\:max-h-0\.5 { - max-height: 0.125rem !important; + .sm\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .sm\:max-h-1\.5 { - max-height: 0.375rem !important; + .sm\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .sm\:max-h-2\.5 { - max-height: 0.625rem !important; + .sm\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .sm\:max-h-3\.5 { - max-height: 0.875rem !important; + .sm\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .sm\:max-h-full { - max-height: 100% !important; + .sm\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .sm\:max-h-screen { - max-height: 100vh !important; + .sm\:hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .sm\:max-w-0 { - max-width: 0rem !important; + .sm\:hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .sm\:max-w-none { - max-width: none !important; + .sm\:hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .sm\:max-w-xs { - max-width: 20rem !important; + .sm\:hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .sm\:max-w-sm { - max-width: 24rem !important; + .sm\:hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .sm\:max-w-md { - max-width: 28rem !important; + .sm\:hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .sm\:max-w-lg { - max-width: 32rem !important; + .sm\:hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .sm\:max-w-xl { - max-width: 36rem !important; + .sm\:hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .sm\:max-w-2xl { - max-width: 42rem !important; + .sm\:hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .sm\:max-w-3xl { - max-width: 48rem !important; + .sm\:hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .sm\:max-w-4xl { - max-width: 56rem !important; + .sm\:hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .sm\:max-w-5xl { - max-width: 64rem !important; + .sm\:hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .sm\:max-w-6xl { - max-width: 72rem !important; + .sm\:hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .sm\:max-w-7xl { - max-width: 80rem !important; + .sm\:hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .sm\:max-w-full { - max-width: 100% !important; + .sm\:hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .sm\:max-w-min { - max-width: min-content !important; + .sm\:hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .sm\:max-w-max { - max-width: max-content !important; + .sm\:hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .sm\:max-w-prose { - max-width: 65ch !important; + .sm\:hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .sm\:max-w-screen-sm { - max-width: 640px !important; + .sm\:hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .sm\:max-w-screen-md { - max-width: 768px !important; + .sm\:hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .sm\:max-w-screen-lg { - max-width: 1024px !important; + .sm\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .sm\:max-w-screen-xl { - max-width: 1280px !important; + .sm\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .sm\:max-w-screen-2xl { - max-width: 1536px !important; + .sm\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .sm\:min-h-0 { - min-height: 0px !important; + .sm\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .sm\:min-h-full { - min-height: 100% !important; + .sm\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .sm\:min-h-screen { - min-height: 100vh !important; + .sm\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .sm\:min-w-0 { - min-width: 0px !important; + .sm\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .sm\:min-w-full { - min-width: 100% !important; + .sm\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .sm\:min-w-min { - min-width: min-content !important; + .sm\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .sm\:min-w-max { - min-width: max-content !important; + .sm\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .sm\:object-contain { - object-fit: contain !important; + .sm\:hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .sm\:object-cover { - object-fit: cover !important; + .sm\:hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .sm\:object-fill { - object-fit: fill !important; + .sm\:hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .sm\:object-none { - object-fit: none !important; + .sm\:hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .sm\:object-scale-down { - object-fit: scale-down !important; + .sm\:hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .sm\:object-bottom { - object-position: bottom !important; + .sm\:hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .sm\:object-center { - object-position: center !important; + .sm\:hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .sm\:object-left { - object-position: left !important; + .sm\:hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .sm\:object-left-bottom { - object-position: left bottom !important; + .sm\:hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .sm\:object-left-top { - object-position: left top !important; + .sm\:hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .sm\:object-right { - object-position: right !important; + .sm\:hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .sm\:object-right-bottom { - object-position: right bottom !important; + .sm\:hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .sm\:object-right-top { - object-position: right top !important; + .sm\:hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .sm\:object-top { - object-position: top !important; + .sm\:hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .sm\:opacity-0 { - opacity: 0 !important; + .sm\:hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .sm\:opacity-5 { - opacity: 0.05 !important; + .sm\:hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .sm\:opacity-10 { - opacity: 0.1 !important; + .sm\:hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .sm\:opacity-20 { - opacity: 0.2 !important; + .sm\:hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .sm\:opacity-25 { - opacity: 0.25 !important; + .sm\:hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .sm\:opacity-30 { - opacity: 0.3 !important; + .sm\:hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .sm\:opacity-40 { - opacity: 0.4 !important; + .sm\:focus\:border-transparent:focus { + border-color: transparent !important; } - .sm\:opacity-50 { - opacity: 0.5 !important; + .sm\:focus\:border-current:focus { + border-color: currentColor !important; } - .sm\:opacity-60 { - opacity: 0.6 !important; + .sm\:focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .sm\:opacity-70 { - opacity: 0.7 !important; + .sm\:focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .sm\:opacity-75 { - opacity: 0.75 !important; + .sm\:focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .sm\:opacity-80 { - opacity: 0.8 !important; + .sm\:focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .sm\:opacity-90 { - opacity: 0.9 !important; + .sm\:focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .sm\:opacity-95 { - opacity: 0.95 !important; + .sm\:focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .sm\:opacity-100 { - opacity: 1 !important; + .sm\:focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-0 { - opacity: 0 !important; + .sm\:focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-5 { - opacity: 0.05 !important; + .sm\:focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-10 { - opacity: 0.1 !important; + .sm\:focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-20 { - opacity: 0.2 !important; + .sm\:focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-25 { - opacity: 0.25 !important; + .sm\:focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-30 { - opacity: 0.3 !important; + .sm\:focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-40 { - opacity: 0.4 !important; + .sm\:focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-50 { - opacity: 0.5 !important; + .sm\:focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-60 { - opacity: 0.6 !important; + .sm\:focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-70 { - opacity: 0.7 !important; + .sm\:focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-75 { - opacity: 0.75 !important; + .sm\:focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-80 { - opacity: 0.8 !important; + .sm\:focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-90 { - opacity: 0.9 !important; + .sm\:focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-95 { - opacity: 0.95 !important; + .sm\:focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .group:hover .sm\:group-hover\:opacity-100 { - opacity: 1 !important; + .sm\:focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-0:focus-within { - opacity: 0 !important; + .sm\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-5:focus-within { - opacity: 0.05 !important; + .sm\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-10:focus-within { - opacity: 0.1 !important; + .sm\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-20:focus-within { - opacity: 0.2 !important; + .sm\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-25:focus-within { - opacity: 0.25 !important; + .sm\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-30:focus-within { - opacity: 0.3 !important; + .sm\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-40:focus-within { - opacity: 0.4 !important; + .sm\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-50:focus-within { - opacity: 0.5 !important; + .sm\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-60:focus-within { - opacity: 0.6 !important; + .sm\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-70:focus-within { - opacity: 0.7 !important; + .sm\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-75:focus-within { - opacity: 0.75 !important; + .sm\:focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-80:focus-within { - opacity: 0.8 !important; + .sm\:focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-90:focus-within { - opacity: 0.9 !important; + .sm\:focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-95:focus-within { - opacity: 0.95 !important; + .sm\:focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:opacity-100:focus-within { - opacity: 1 !important; + .sm\:focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-0:hover { - opacity: 0 !important; + .sm\:focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-5:hover { - opacity: 0.05 !important; + .sm\:focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-10:hover { - opacity: 0.1 !important; + .sm\:focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-20:hover { - opacity: 0.2 !important; + .sm\:focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-25:hover { - opacity: 0.25 !important; + .sm\:focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-30:hover { - opacity: 0.3 !important; + .sm\:focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-40:hover { - opacity: 0.4 !important; + .sm\:focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-50:hover { - opacity: 0.5 !important; + .sm\:focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-60:hover { - opacity: 0.6 !important; + .sm\:focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-70:hover { - opacity: 0.7 !important; + .sm\:focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-75:hover { - opacity: 0.75 !important; + .sm\:focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-80:hover { - opacity: 0.8 !important; + .sm\:focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-90:hover { - opacity: 0.9 !important; + .sm\:focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-95:hover { - opacity: 0.95 !important; + .sm\:focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .sm\:hover\:opacity-100:hover { - opacity: 1 !important; + .sm\:focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-0:focus { - opacity: 0 !important; + .sm\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-5:focus { - opacity: 0.05 !important; + .sm\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-10:focus { - opacity: 0.1 !important; + .sm\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-20:focus { - opacity: 0.2 !important; + .sm\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-25:focus { - opacity: 0.25 !important; + .sm\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-30:focus { - opacity: 0.3 !important; + .sm\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-40:focus { - opacity: 0.4 !important; + .sm\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-50:focus { - opacity: 0.5 !important; + .sm\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-60:focus { - opacity: 0.6 !important; + .sm\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-70:focus { - opacity: 0.7 !important; + .sm\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-75:focus { - opacity: 0.75 !important; + .sm\:focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-80:focus { - opacity: 0.8 !important; + .sm\:focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-90:focus { - opacity: 0.9 !important; + .sm\:focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-95:focus { - opacity: 0.95 !important; + .sm\:focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .sm\:focus\:opacity-100:focus { - opacity: 1 !important; + .sm\:focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .sm\:outline-none { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .sm\:focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .sm\:outline-white { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .sm\:focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .sm\:outline-black { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .sm\:focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .sm\:focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:outline-white:focus-within { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .sm\:focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .sm\:focus-within\:outline-black:focus-within { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .sm\:focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .sm\:focus\:outline-none:focus { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .sm\:focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .sm\:focus\:outline-white:focus { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .sm\:focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .sm\:focus\:outline-black:focus { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .sm\:focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .sm\:overflow-auto { - overflow: auto !important; + .sm\:focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .sm\:overflow-hidden { - overflow: hidden !important; + .sm\:focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .sm\:overflow-visible { - overflow: visible !important; + .sm\:focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .sm\:overflow-scroll { - overflow: scroll !important; + .sm\:focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .sm\:overflow-x-auto { - overflow-x: auto !important; + .sm\:focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .sm\:overflow-y-auto { - overflow-y: auto !important; + .sm\:focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .sm\:overflow-x-hidden { - overflow-x: hidden !important; + .sm\:border-opacity-0 { + --tw-border-opacity: 0 !important; } - .sm\:overflow-y-hidden { - overflow-y: hidden !important; + .sm\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; } - .sm\:overflow-x-visible { - overflow-x: visible !important; + .sm\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; } - .sm\:overflow-y-visible { - overflow-y: visible !important; + .sm\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; } - .sm\:overflow-x-scroll { - overflow-x: scroll !important; + .sm\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; } - .sm\:overflow-y-scroll { - overflow-y: scroll !important; + .sm\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; } - .sm\:overscroll-auto { - overscroll-behavior: auto !important; + .sm\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; } - .sm\:overscroll-contain { - overscroll-behavior: contain !important; + .sm\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; } - .sm\:overscroll-none { - overscroll-behavior: none !important; + .sm\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; } - .sm\:overscroll-y-auto { - overscroll-behavior-y: auto !important; + .sm\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; } - .sm\:overscroll-y-contain { - overscroll-behavior-y: contain !important; + .sm\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; } - .sm\:overscroll-y-none { - overscroll-behavior-y: none !important; + .sm\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; } - .sm\:overscroll-x-auto { - overscroll-behavior-x: auto !important; + .sm\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; } - .sm\:overscroll-x-contain { - overscroll-behavior-x: contain !important; + .sm\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; } - .sm\:overscroll-x-none { - overscroll-behavior-x: none !important; + .sm\:border-opacity-100 { + --tw-border-opacity: 1 !important; } - .sm\:p-0 { - padding: 0px !important; + .group:hover .sm\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; } - .sm\:p-1 { - padding: 0.25rem !important; + .group:hover .sm\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; } - .sm\:p-2 { - padding: 0.5rem !important; + .group:hover .sm\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; } - .sm\:p-3 { - padding: 0.75rem !important; + .group:hover .sm\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; } - .sm\:p-4 { - padding: 1rem !important; + .group:hover .sm\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; } - .sm\:p-5 { - padding: 1.25rem !important; + .group:hover .sm\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; } - .sm\:p-6 { - padding: 1.5rem !important; + .group:hover .sm\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; } - .sm\:p-7 { - padding: 1.75rem !important; + .group:hover .sm\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; } - .sm\:p-8 { - padding: 2rem !important; + .group:hover .sm\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; } - .sm\:p-9 { - padding: 2.25rem !important; + .group:hover .sm\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; } - .sm\:p-10 { - padding: 2.5rem !important; + .group:hover .sm\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; } - .sm\:p-11 { - padding: 2.75rem !important; + .group:hover .sm\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; } - .sm\:p-12 { - padding: 3rem !important; + .group:hover .sm\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; } - .sm\:p-14 { - padding: 3.5rem !important; + .group:hover .sm\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; } - .sm\:p-16 { - padding: 4rem !important; + .group:hover .sm\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; } - .sm\:p-20 { - padding: 5rem !important; + .sm\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; } - .sm\:p-24 { - padding: 6rem !important; + .sm\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; } - .sm\:p-28 { - padding: 7rem !important; + .sm\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; } - .sm\:p-32 { - padding: 8rem !important; + .sm\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; } - .sm\:p-36 { - padding: 9rem !important; + .sm\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; } - .sm\:p-40 { - padding: 10rem !important; + .sm\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; } - .sm\:p-44 { - padding: 11rem !important; + .sm\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; } - .sm\:p-48 { - padding: 12rem !important; + .sm\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; } - .sm\:p-52 { - padding: 13rem !important; + .sm\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; } - .sm\:p-56 { - padding: 14rem !important; + .sm\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; } - .sm\:p-60 { - padding: 15rem !important; + .sm\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; } - .sm\:p-64 { - padding: 16rem !important; + .sm\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; } - .sm\:p-72 { - padding: 18rem !important; + .sm\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; } - .sm\:p-80 { - padding: 20rem !important; + .sm\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; } - .sm\:p-96 { - padding: 24rem !important; + .sm\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; } - .sm\:p-px { - padding: 1px !important; + .sm\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; } - .sm\:p-0\.5 { - padding: 0.125rem !important; + .sm\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; } - .sm\:p-1\.5 { - padding: 0.375rem !important; + .sm\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; } - .sm\:p-2\.5 { - padding: 0.625rem !important; + .sm\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; } - .sm\:p-3\.5 { - padding: 0.875rem !important; + .sm\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; } - .sm\:py-0 { - padding-top: 0px !important; - padding-bottom: 0px !important; + .sm\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; } - .sm\:px-0 { - padding-left: 0px !important; - padding-right: 0px !important; + .sm\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; } - .sm\:py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; + .sm\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; } - .sm\:px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; + .sm\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; } - .sm\:py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; + .sm\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; } - .sm\:px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; + .sm\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; } - .sm\:py-3 { - padding-top: 0.75rem !important; - padding-bottom: 0.75rem !important; + .sm\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; } - .sm\:px-3 { - padding-left: 0.75rem !important; - padding-right: 0.75rem !important; + .sm\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; } - .sm\:py-4 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; + .sm\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; } - .sm\:px-4 { - padding-left: 1rem !important; - padding-right: 1rem !important; + .sm\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; } - .sm\:py-5 { - padding-top: 1.25rem !important; - padding-bottom: 1.25rem !important; + .sm\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; } - .sm\:px-5 { - padding-left: 1.25rem !important; - padding-right: 1.25rem !important; + .sm\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; } - .sm\:py-6 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; + .sm\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; } - .sm\:px-6 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; + .sm\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; } - .sm\:py-7 { - padding-top: 1.75rem !important; - padding-bottom: 1.75rem !important; + .sm\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; } - .sm\:px-7 { - padding-left: 1.75rem !important; - padding-right: 1.75rem !important; + .sm\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; } - .sm\:py-8 { - padding-top: 2rem !important; - padding-bottom: 2rem !important; + .sm\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; } - .sm\:px-8 { - padding-left: 2rem !important; - padding-right: 2rem !important; + .sm\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; } - .sm\:py-9 { - padding-top: 2.25rem !important; - padding-bottom: 2.25rem !important; + .sm\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; } - .sm\:px-9 { - padding-left: 2.25rem !important; - padding-right: 2.25rem !important; + .sm\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; } - .sm\:py-10 { - padding-top: 2.5rem !important; - padding-bottom: 2.5rem !important; + .sm\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; } - .sm\:px-10 { - padding-left: 2.5rem !important; - padding-right: 2.5rem !important; + .sm\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; } - .sm\:py-11 { - padding-top: 2.75rem !important; - padding-bottom: 2.75rem !important; + .sm\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; } - .sm\:px-11 { - padding-left: 2.75rem !important; - padding-right: 2.75rem !important; + .sm\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; } - .sm\:py-12 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; + .sm\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; } - .sm\:px-12 { - padding-left: 3rem !important; - padding-right: 3rem !important; + .sm\:bg-transparent { + background-color: transparent !important; } - .sm\:py-14 { - padding-top: 3.5rem !important; - padding-bottom: 3.5rem !important; + .sm\:bg-current { + background-color: currentColor !important; } - .sm\:px-14 { - padding-left: 3.5rem !important; - padding-right: 3.5rem !important; + .sm\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .sm\:py-16 { - padding-top: 4rem !important; - padding-bottom: 4rem !important; + .sm\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .sm\:px-16 { - padding-left: 4rem !important; - padding-right: 4rem !important; + .sm\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .sm\:py-20 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; + .sm\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .sm\:px-20 { - padding-left: 5rem !important; - padding-right: 5rem !important; + .sm\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .sm\:py-24 { - padding-top: 6rem !important; - padding-bottom: 6rem !important; + .sm\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .sm\:px-24 { - padding-left: 6rem !important; - padding-right: 6rem !important; + .sm\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .sm\:py-28 { - padding-top: 7rem !important; - padding-bottom: 7rem !important; + .sm\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .sm\:px-28 { - padding-left: 7rem !important; - padding-right: 7rem !important; + .sm\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .sm\:py-32 { - padding-top: 8rem !important; - padding-bottom: 8rem !important; + .sm\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .sm\:px-32 { - padding-left: 8rem !important; - padding-right: 8rem !important; + .sm\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .sm\:py-36 { - padding-top: 9rem !important; - padding-bottom: 9rem !important; + .sm\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .sm\:px-36 { - padding-left: 9rem !important; - padding-right: 9rem !important; + .sm\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .sm\:py-40 { - padding-top: 10rem !important; - padding-bottom: 10rem !important; + .sm\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .sm\:px-40 { - padding-left: 10rem !important; - padding-right: 10rem !important; + .sm\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .sm\:py-44 { - padding-top: 11rem !important; - padding-bottom: 11rem !important; + .sm\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .sm\:px-44 { - padding-left: 11rem !important; - padding-right: 11rem !important; + .sm\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .sm\:py-48 { - padding-top: 12rem !important; - padding-bottom: 12rem !important; + .sm\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .sm\:px-48 { - padding-left: 12rem !important; - padding-right: 12rem !important; + .sm\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .sm\:py-52 { - padding-top: 13rem !important; - padding-bottom: 13rem !important; + .sm\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .sm\:px-52 { - padding-left: 13rem !important; - padding-right: 13rem !important; + .sm\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .sm\:py-56 { - padding-top: 14rem !important; - padding-bottom: 14rem !important; + .sm\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .sm\:px-56 { - padding-left: 14rem !important; - padding-right: 14rem !important; + .sm\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .sm\:py-60 { - padding-top: 15rem !important; - padding-bottom: 15rem !important; + .sm\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .sm\:px-60 { - padding-left: 15rem !important; - padding-right: 15rem !important; + .sm\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .sm\:py-64 { - padding-top: 16rem !important; - padding-bottom: 16rem !important; + .sm\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .sm\:px-64 { - padding-left: 16rem !important; - padding-right: 16rem !important; + .sm\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .sm\:py-72 { - padding-top: 18rem !important; - padding-bottom: 18rem !important; + .sm\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .sm\:px-72 { - padding-left: 18rem !important; - padding-right: 18rem !important; + .sm\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .sm\:py-80 { - padding-top: 20rem !important; - padding-bottom: 20rem !important; + .sm\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .sm\:px-80 { - padding-left: 20rem !important; - padding-right: 20rem !important; + .sm\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .sm\:py-96 { - padding-top: 24rem !important; - padding-bottom: 24rem !important; + .sm\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .sm\:px-96 { - padding-left: 24rem !important; - padding-right: 24rem !important; + .sm\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .sm\:py-px { - padding-top: 1px !important; - padding-bottom: 1px !important; + .sm\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .sm\:px-px { - padding-left: 1px !important; - padding-right: 1px !important; + .sm\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .sm\:py-0\.5 { - padding-top: 0.125rem !important; - padding-bottom: 0.125rem !important; + .sm\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .sm\:px-0\.5 { - padding-left: 0.125rem !important; - padding-right: 0.125rem !important; + .sm\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .sm\:py-1\.5 { - padding-top: 0.375rem !important; - padding-bottom: 0.375rem !important; + .sm\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .sm\:px-1\.5 { - padding-left: 0.375rem !important; - padding-right: 0.375rem !important; + .sm\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .sm\:py-2\.5 { - padding-top: 0.625rem !important; - padding-bottom: 0.625rem !important; + .sm\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .sm\:px-2\.5 { - padding-left: 0.625rem !important; - padding-right: 0.625rem !important; + .sm\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .sm\:py-3\.5 { - padding-top: 0.875rem !important; - padding-bottom: 0.875rem !important; + .sm\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .sm\:px-3\.5 { - padding-left: 0.875rem !important; - padding-right: 0.875rem !important; + .sm\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .sm\:pt-0 { - padding-top: 0px !important; + .sm\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .sm\:pr-0 { - padding-right: 0px !important; + .sm\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .sm\:pb-0 { - padding-bottom: 0px !important; + .sm\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .sm\:pl-0 { - padding-left: 0px !important; + .sm\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .sm\:pt-1 { - padding-top: 0.25rem !important; + .sm\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .sm\:pr-1 { - padding-right: 0.25rem !important; + .sm\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .sm\:pb-1 { - padding-bottom: 0.25rem !important; + .sm\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .sm\:pl-1 { - padding-left: 0.25rem !important; + .sm\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .sm\:pt-2 { - padding-top: 0.5rem !important; + .sm\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .sm\:pr-2 { - padding-right: 0.5rem !important; + .sm\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .sm\:pb-2 { - padding-bottom: 0.5rem !important; + .sm\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .sm\:pl-2 { - padding-left: 0.5rem !important; + .sm\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .sm\:pt-3 { - padding-top: 0.75rem !important; + .sm\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .sm\:pr-3 { - padding-right: 0.75rem !important; + .sm\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .sm\:pb-3 { - padding-bottom: 0.75rem !important; + .sm\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .sm\:pl-3 { - padding-left: 0.75rem !important; + .sm\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .sm\:pt-4 { - padding-top: 1rem !important; + .sm\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .sm\:pr-4 { - padding-right: 1rem !important; + .sm\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .sm\:pb-4 { - padding-bottom: 1rem !important; + .sm\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .sm\:pl-4 { - padding-left: 1rem !important; + .sm\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .sm\:pt-5 { - padding-top: 1.25rem !important; + .sm\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .sm\:pr-5 { - padding-right: 1.25rem !important; + .sm\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .sm\:pb-5 { - padding-bottom: 1.25rem !important; + .sm\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .sm\:pl-5 { - padding-left: 1.25rem !important; + .sm\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .sm\:pt-6 { - padding-top: 1.5rem !important; + .sm\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .sm\:pr-6 { - padding-right: 1.5rem !important; + .sm\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .sm\:pb-6 { - padding-bottom: 1.5rem !important; + .sm\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .sm\:pl-6 { - padding-left: 1.5rem !important; + .sm\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .sm\:pt-7 { - padding-top: 1.75rem !important; + .sm\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .sm\:pr-7 { - padding-right: 1.75rem !important; + .sm\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .sm\:pb-7 { - padding-bottom: 1.75rem !important; + .sm\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .sm\:pl-7 { - padding-left: 1.75rem !important; + .sm\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .sm\:pt-8 { - padding-top: 2rem !important; + .sm\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .sm\:pr-8 { - padding-right: 2rem !important; + .sm\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .sm\:pb-8 { - padding-bottom: 2rem !important; + .sm\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .sm\:pl-8 { - padding-left: 2rem !important; + .sm\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .sm\:pt-9 { - padding-top: 2.25rem !important; + .sm\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .sm\:pr-9 { - padding-right: 2.25rem !important; + .sm\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .sm\:pb-9 { - padding-bottom: 2.25rem !important; + .sm\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .sm\:pl-9 { - padding-left: 2.25rem !important; + .group:hover .sm\:group-hover\:bg-transparent { + background-color: transparent !important; } - .sm\:pt-10 { - padding-top: 2.5rem !important; + .group:hover .sm\:group-hover\:bg-current { + background-color: currentColor !important; } - .sm\:pr-10 { - padding-right: 2.5rem !important; + .group:hover .sm\:group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .sm\:pb-10 { - padding-bottom: 2.5rem !important; + .group:hover .sm\:group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .sm\:pl-10 { - padding-left: 2.5rem !important; + .group:hover .sm\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .sm\:pt-11 { - padding-top: 2.75rem !important; + .group:hover .sm\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .sm\:pr-11 { - padding-right: 2.75rem !important; + .group:hover .sm\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .sm\:pb-11 { - padding-bottom: 2.75rem !important; + .group:hover .sm\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .sm\:pl-11 { - padding-left: 2.75rem !important; + .group:hover .sm\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .sm\:pt-12 { - padding-top: 3rem !important; + .group:hover .sm\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .sm\:pr-12 { - padding-right: 3rem !important; + .group:hover .sm\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .sm\:pb-12 { - padding-bottom: 3rem !important; + .group:hover .sm\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .sm\:pl-12 { - padding-left: 3rem !important; + .group:hover .sm\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .sm\:pt-14 { - padding-top: 3.5rem !important; + .group:hover .sm\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .sm\:pr-14 { - padding-right: 3.5rem !important; + .group:hover .sm\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .sm\:pb-14 { - padding-bottom: 3.5rem !important; + .group:hover .sm\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .sm\:pl-14 { - padding-left: 3.5rem !important; + .group:hover .sm\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .sm\:pt-16 { - padding-top: 4rem !important; + .group:hover .sm\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .sm\:pr-16 { - padding-right: 4rem !important; + .group:hover .sm\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .sm\:pb-16 { - padding-bottom: 4rem !important; + .group:hover .sm\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .sm\:pl-16 { - padding-left: 4rem !important; + .group:hover .sm\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .sm\:pt-20 { - padding-top: 5rem !important; + .group:hover .sm\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .sm\:pr-20 { - padding-right: 5rem !important; + .group:hover .sm\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .sm\:pb-20 { - padding-bottom: 5rem !important; + .group:hover .sm\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .sm\:pl-20 { - padding-left: 5rem !important; + .group:hover .sm\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .sm\:pt-24 { - padding-top: 6rem !important; + .group:hover .sm\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .sm\:pr-24 { - padding-right: 6rem !important; + .group:hover .sm\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .sm\:pb-24 { - padding-bottom: 6rem !important; + .group:hover .sm\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .sm\:pl-24 { - padding-left: 6rem !important; + .group:hover .sm\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .sm\:pt-28 { - padding-top: 7rem !important; + .group:hover .sm\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .sm\:pr-28 { - padding-right: 7rem !important; + .group:hover .sm\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .sm\:pb-28 { - padding-bottom: 7rem !important; + .group:hover .sm\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .sm\:pl-28 { - padding-left: 7rem !important; + .group:hover .sm\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .sm\:pt-32 { - padding-top: 8rem !important; + .group:hover .sm\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .sm\:pr-32 { - padding-right: 8rem !important; + .group:hover .sm\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .sm\:pb-32 { - padding-bottom: 8rem !important; + .group:hover .sm\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .sm\:pl-32 { - padding-left: 8rem !important; + .group:hover .sm\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .sm\:pt-36 { - padding-top: 9rem !important; + .group:hover .sm\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .sm\:pr-36 { - padding-right: 9rem !important; + .group:hover .sm\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .sm\:pb-36 { - padding-bottom: 9rem !important; + .group:hover .sm\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .sm\:pl-36 { - padding-left: 9rem !important; + .group:hover .sm\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .sm\:pt-40 { - padding-top: 10rem !important; + .group:hover .sm\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .sm\:pr-40 { - padding-right: 10rem !important; + .group:hover .sm\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .sm\:pb-40 { - padding-bottom: 10rem !important; + .group:hover .sm\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .sm\:pl-40 { - padding-left: 10rem !important; + .group:hover .sm\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .sm\:pt-44 { - padding-top: 11rem !important; + .group:hover .sm\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .sm\:pr-44 { - padding-right: 11rem !important; + .group:hover .sm\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .sm\:pb-44 { - padding-bottom: 11rem !important; + .group:hover .sm\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .sm\:pl-44 { - padding-left: 11rem !important; + .group:hover .sm\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .sm\:pt-48 { - padding-top: 12rem !important; + .group:hover .sm\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .sm\:pr-48 { - padding-right: 12rem !important; + .group:hover .sm\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .sm\:pb-48 { - padding-bottom: 12rem !important; + .group:hover .sm\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .sm\:pl-48 { - padding-left: 12rem !important; + .group:hover .sm\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .sm\:pt-52 { - padding-top: 13rem !important; + .group:hover .sm\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .sm\:pr-52 { - padding-right: 13rem !important; + .group:hover .sm\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .sm\:pb-52 { - padding-bottom: 13rem !important; + .group:hover .sm\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .sm\:pl-52 { - padding-left: 13rem !important; + .group:hover .sm\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .sm\:pt-56 { - padding-top: 14rem !important; + .group:hover .sm\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .sm\:pr-56 { - padding-right: 14rem !important; + .group:hover .sm\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .sm\:pb-56 { - padding-bottom: 14rem !important; + .group:hover .sm\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .sm\:pl-56 { - padding-left: 14rem !important; + .group:hover .sm\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .sm\:pt-60 { - padding-top: 15rem !important; + .group:hover .sm\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .sm\:pr-60 { - padding-right: 15rem !important; + .group:hover .sm\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .sm\:pb-60 { - padding-bottom: 15rem !important; + .group:hover .sm\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .sm\:pl-60 { - padding-left: 15rem !important; + .group:hover .sm\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .sm\:pt-64 { - padding-top: 16rem !important; + .group:hover .sm\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .sm\:pr-64 { - padding-right: 16rem !important; + .group:hover .sm\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .sm\:pb-64 { - padding-bottom: 16rem !important; + .group:hover .sm\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .sm\:pl-64 { - padding-left: 16rem !important; + .group:hover .sm\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .sm\:pt-72 { - padding-top: 18rem !important; + .group:hover .sm\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .sm\:pr-72 { - padding-right: 18rem !important; + .group:hover .sm\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .sm\:pb-72 { - padding-bottom: 18rem !important; + .group:hover .sm\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .sm\:pl-72 { - padding-left: 18rem !important; + .group:hover .sm\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .sm\:pt-80 { - padding-top: 20rem !important; + .group:hover .sm\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .sm\:pr-80 { - padding-right: 20rem !important; + .group:hover .sm\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .sm\:pb-80 { - padding-bottom: 20rem !important; + .group:hover .sm\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .sm\:pl-80 { - padding-left: 20rem !important; + .group:hover .sm\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .sm\:pt-96 { - padding-top: 24rem !important; + .group:hover .sm\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .sm\:pr-96 { - padding-right: 24rem !important; + .group:hover .sm\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .sm\:pb-96 { - padding-bottom: 24rem !important; + .group:hover .sm\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .sm\:pl-96 { - padding-left: 24rem !important; + .group:hover .sm\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .sm\:pt-px { - padding-top: 1px !important; + .group:hover .sm\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .sm\:pr-px { - padding-right: 1px !important; + .group:hover .sm\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .sm\:pb-px { - padding-bottom: 1px !important; + .group:hover .sm\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .sm\:pl-px { - padding-left: 1px !important; + .sm\:focus-within\:bg-transparent:focus-within { + background-color: transparent !important; } - .sm\:pt-0\.5 { - padding-top: 0.125rem !important; + .sm\:focus-within\:bg-current:focus-within { + background-color: currentColor !important; } - .sm\:pr-0\.5 { - padding-right: 0.125rem !important; + .sm\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .sm\:pb-0\.5 { - padding-bottom: 0.125rem !important; + .sm\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .sm\:pl-0\.5 { - padding-left: 0.125rem !important; + .sm\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .sm\:pt-1\.5 { - padding-top: 0.375rem !important; + .sm\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .sm\:pr-1\.5 { - padding-right: 0.375rem !important; + .sm\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .sm\:pb-1\.5 { - padding-bottom: 0.375rem !important; + .sm\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .sm\:pl-1\.5 { - padding-left: 0.375rem !important; + .sm\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .sm\:pt-2\.5 { - padding-top: 0.625rem !important; + .sm\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .sm\:pr-2\.5 { - padding-right: 0.625rem !important; + .sm\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .sm\:pb-2\.5 { - padding-bottom: 0.625rem !important; + .sm\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .sm\:pl-2\.5 { - padding-left: 0.625rem !important; + .sm\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .sm\:pt-3\.5 { - padding-top: 0.875rem !important; + .sm\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .sm\:pr-3\.5 { - padding-right: 0.875rem !important; + .sm\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .sm\:pb-3\.5 { - padding-bottom: 0.875rem !important; + .sm\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .sm\:pl-3\.5 { - padding-left: 0.875rem !important; + .sm\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-transparent::placeholder { - color: transparent !important; + .sm\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-current::placeholder { - color: currentColor !important; + .sm\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + .sm\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-transparent:hover { + background-color: transparent !important; } - .sm\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-current:hover { + background-color: currentColor !important; } - .sm\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-transparent:focus::placeholder { - color: transparent !important; + .sm\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-current:focus::placeholder { - color: currentColor !important; + .sm\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + .sm\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-transparent:focus { + background-color: transparent !important; } - .sm\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-current:focus { + background-color: currentColor !important; } - .sm\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + .sm\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0 !important; + .sm\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05 !important; + .sm\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1 !important; + .sm\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2 !important; + .sm\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25 !important; + .sm\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3 !important; + .sm\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4 !important; + .sm\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5 !important; + .sm\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6 !important; + .sm\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7 !important; + .sm\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75 !important; + .sm\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8 !important; + .sm\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9 !important; + .sm\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95 !important; + .sm\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .sm\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1 !important; + .sm\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0 !important; + .sm\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05 !important; + .sm\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1 !important; + .sm\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2 !important; + .sm\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25 !important; + .sm\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3 !important; + .sm\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4 !important; + .sm\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5 !important; + .sm\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6 !important; + .sm\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7 !important; + .sm\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75 !important; + .sm\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8 !important; + .sm\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9 !important; + .sm\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95 !important; + .sm\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .sm\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; + .sm\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .sm\:pointer-events-none { - pointer-events: none !important; + .sm\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .sm\:pointer-events-auto { - pointer-events: auto !important; + .sm\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .sm\:static { - position: static !important; + .sm\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .sm\:fixed { - position: fixed !important; + .sm\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .sm\:absolute { - position: absolute !important; + .sm\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .sm\:relative { - position: relative !important; + .sm\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .sm\:sticky { - position: sticky !important; + .sm\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .sm\:inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; + .sm\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .sm\:inset-1 { - top: 0.25rem !important; - right: 0.25rem !important; - bottom: 0.25rem !important; - left: 0.25rem !important; + .sm\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .sm\:inset-2 { - top: 0.5rem !important; - right: 0.5rem !important; - bottom: 0.5rem !important; - left: 0.5rem !important; + .sm\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .sm\:inset-3 { - top: 0.75rem !important; - right: 0.75rem !important; - bottom: 0.75rem !important; - left: 0.75rem !important; + .sm\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .sm\:inset-4 { - top: 1rem !important; - right: 1rem !important; - bottom: 1rem !important; - left: 1rem !important; + .sm\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .sm\:inset-5 { - top: 1.25rem !important; - right: 1.25rem !important; - bottom: 1.25rem !important; - left: 1.25rem !important; + .sm\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .sm\:inset-6 { - top: 1.5rem !important; - right: 1.5rem !important; - bottom: 1.5rem !important; - left: 1.5rem !important; + .sm\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .sm\:inset-7 { - top: 1.75rem !important; - right: 1.75rem !important; - bottom: 1.75rem !important; - left: 1.75rem !important; + .sm\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .sm\:inset-8 { - top: 2rem !important; - right: 2rem !important; - bottom: 2rem !important; - left: 2rem !important; + .sm\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .sm\:inset-9 { - top: 2.25rem !important; - right: 2.25rem !important; - bottom: 2.25rem !important; - left: 2.25rem !important; + .sm\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .sm\:inset-10 { - top: 2.5rem !important; - right: 2.5rem !important; - bottom: 2.5rem !important; - left: 2.5rem !important; + .sm\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .sm\:inset-11 { - top: 2.75rem !important; - right: 2.75rem !important; - bottom: 2.75rem !important; - left: 2.75rem !important; + .sm\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .sm\:inset-12 { - top: 3rem !important; - right: 3rem !important; - bottom: 3rem !important; - left: 3rem !important; + .sm\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .sm\:inset-14 { - top: 3.5rem !important; - right: 3.5rem !important; - bottom: 3.5rem !important; - left: 3.5rem !important; + .sm\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .sm\:inset-16 { - top: 4rem !important; - right: 4rem !important; - bottom: 4rem !important; - left: 4rem !important; + .sm\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .sm\:inset-20 { - top: 5rem !important; - right: 5rem !important; - bottom: 5rem !important; - left: 5rem !important; + .sm\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .sm\:inset-24 { - top: 6rem !important; - right: 6rem !important; - bottom: 6rem !important; - left: 6rem !important; + .sm\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .sm\:inset-28 { - top: 7rem !important; - right: 7rem !important; - bottom: 7rem !important; - left: 7rem !important; + .sm\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .sm\:inset-32 { - top: 8rem !important; - right: 8rem !important; - bottom: 8rem !important; - left: 8rem !important; + .sm\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .sm\:inset-36 { - top: 9rem !important; - right: 9rem !important; - bottom: 9rem !important; - left: 9rem !important; + .sm\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .sm\:inset-40 { - top: 10rem !important; - right: 10rem !important; - bottom: 10rem !important; - left: 10rem !important; + .sm\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .sm\:inset-44 { - top: 11rem !important; - right: 11rem !important; - bottom: 11rem !important; - left: 11rem !important; + .sm\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .sm\:inset-48 { - top: 12rem !important; - right: 12rem !important; - bottom: 12rem !important; - left: 12rem !important; + .sm\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .sm\:inset-52 { - top: 13rem !important; - right: 13rem !important; - bottom: 13rem !important; - left: 13rem !important; + .sm\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .sm\:inset-56 { - top: 14rem !important; - right: 14rem !important; - bottom: 14rem !important; - left: 14rem !important; + .sm\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .sm\:inset-60 { - top: 15rem !important; - right: 15rem !important; - bottom: 15rem !important; - left: 15rem !important; + .sm\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .sm\:inset-64 { - top: 16rem !important; - right: 16rem !important; - bottom: 16rem !important; - left: 16rem !important; + .sm\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .sm\:inset-72 { - top: 18rem !important; - right: 18rem !important; - bottom: 18rem !important; - left: 18rem !important; + .sm\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .sm\:inset-80 { - top: 20rem !important; - right: 20rem !important; - bottom: 20rem !important; - left: 20rem !important; + .sm\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .sm\:inset-96 { - top: 24rem !important; - right: 24rem !important; - bottom: 24rem !important; - left: 24rem !important; + .sm\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .sm\:inset-auto { - top: auto !important; - right: auto !important; - bottom: auto !important; - left: auto !important; + .sm\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; } - .sm\:inset-px { - top: 1px !important; - right: 1px !important; - bottom: 1px !important; - left: 1px !important; + .sm\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } - .sm\:inset-0\.5 { - top: 0.125rem !important; - right: 0.125rem !important; - bottom: 0.125rem !important; - left: 0.125rem !important; + .sm\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } - .sm\:inset-1\.5 { - top: 0.375rem !important; - right: 0.375rem !important; - bottom: 0.375rem !important; - left: 0.375rem !important; + .sm\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } - .sm\:inset-2\.5 { - top: 0.625rem !important; - right: 0.625rem !important; - bottom: 0.625rem !important; - left: 0.625rem !important; + .sm\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } - .sm\:inset-3\.5 { - top: 0.875rem !important; - right: 0.875rem !important; - bottom: 0.875rem !important; - left: 0.875rem !important; + .sm\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } - .sm\:-inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; + .sm\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } - .sm\:-inset-1 { - top: -0.25rem !important; - right: -0.25rem !important; - bottom: -0.25rem !important; - left: -0.25rem !important; + .sm\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } - .sm\:-inset-2 { - top: -0.5rem !important; - right: -0.5rem !important; - bottom: -0.5rem !important; - left: -0.5rem !important; + .sm\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } - .sm\:-inset-3 { - top: -0.75rem !important; - right: -0.75rem !important; - bottom: -0.75rem !important; - left: -0.75rem !important; + .sm\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } - .sm\:-inset-4 { - top: -1rem !important; - right: -1rem !important; - bottom: -1rem !important; - left: -1rem !important; + .sm\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } - .sm\:-inset-5 { - top: -1.25rem !important; - right: -1.25rem !important; - bottom: -1.25rem !important; - left: -1.25rem !important; + .sm\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } - .sm\:-inset-6 { - top: -1.5rem !important; - right: -1.5rem !important; - bottom: -1.5rem !important; - left: -1.5rem !important; + .sm\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } - .sm\:-inset-7 { - top: -1.75rem !important; - right: -1.75rem !important; - bottom: -1.75rem !important; - left: -1.75rem !important; + .sm\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } - .sm\:-inset-8 { - top: -2rem !important; - right: -2rem !important; - bottom: -2rem !important; - left: -2rem !important; + .sm\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; } - .sm\:-inset-9 { - top: -2.25rem !important; - right: -2.25rem !important; - bottom: -2.25rem !important; - left: -2.25rem !important; + .group:hover .sm\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; } - .sm\:-inset-10 { - top: -2.5rem !important; - right: -2.5rem !important; - bottom: -2.5rem !important; - left: -2.5rem !important; + .group:hover .sm\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } - .sm\:-inset-11 { - top: -2.75rem !important; - right: -2.75rem !important; - bottom: -2.75rem !important; - left: -2.75rem !important; + .group:hover .sm\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } - .sm\:-inset-12 { - top: -3rem !important; - right: -3rem !important; - bottom: -3rem !important; - left: -3rem !important; + .group:hover .sm\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } - .sm\:-inset-14 { - top: -3.5rem !important; - right: -3.5rem !important; - bottom: -3.5rem !important; - left: -3.5rem !important; + .group:hover .sm\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } - .sm\:-inset-16 { - top: -4rem !important; - right: -4rem !important; - bottom: -4rem !important; - left: -4rem !important; + .group:hover .sm\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } - .sm\:-inset-20 { - top: -5rem !important; - right: -5rem !important; - bottom: -5rem !important; - left: -5rem !important; + .group:hover .sm\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } - .sm\:-inset-24 { - top: -6rem !important; - right: -6rem !important; - bottom: -6rem !important; - left: -6rem !important; + .group:hover .sm\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } - .sm\:-inset-28 { - top: -7rem !important; - right: -7rem !important; - bottom: -7rem !important; - left: -7rem !important; + .group:hover .sm\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } - .sm\:-inset-32 { - top: -8rem !important; - right: -8rem !important; - bottom: -8rem !important; - left: -8rem !important; + .group:hover .sm\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } - .sm\:-inset-36 { - top: -9rem !important; - right: -9rem !important; - bottom: -9rem !important; - left: -9rem !important; + .group:hover .sm\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } - .sm\:-inset-40 { - top: -10rem !important; - right: -10rem !important; - bottom: -10rem !important; - left: -10rem !important; + .group:hover .sm\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } - .sm\:-inset-44 { - top: -11rem !important; - right: -11rem !important; - bottom: -11rem !important; - left: -11rem !important; + .group:hover .sm\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } - .sm\:-inset-48 { - top: -12rem !important; - right: -12rem !important; - bottom: -12rem !important; - left: -12rem !important; + .group:hover .sm\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } - .sm\:-inset-52 { - top: -13rem !important; - right: -13rem !important; - bottom: -13rem !important; - left: -13rem !important; + .group:hover .sm\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; } - .sm\:-inset-56 { - top: -14rem !important; - right: -14rem !important; - bottom: -14rem !important; - left: -14rem !important; + .sm\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; } - .sm\:-inset-60 { - top: -15rem !important; - right: -15rem !important; - bottom: -15rem !important; - left: -15rem !important; + .sm\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; } - .sm\:-inset-64 { - top: -16rem !important; - right: -16rem !important; - bottom: -16rem !important; - left: -16rem !important; + .sm\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; } - .sm\:-inset-72 { - top: -18rem !important; - right: -18rem !important; - bottom: -18rem !important; - left: -18rem !important; + .sm\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; } - .sm\:-inset-80 { - top: -20rem !important; - right: -20rem !important; - bottom: -20rem !important; - left: -20rem !important; + .sm\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; } - .sm\:-inset-96 { - top: -24rem !important; - right: -24rem !important; - bottom: -24rem !important; - left: -24rem !important; + .sm\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; } - .sm\:-inset-px { - top: -1px !important; - right: -1px !important; - bottom: -1px !important; - left: -1px !important; + .sm\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; } - .sm\:-inset-0\.5 { - top: -0.125rem !important; - right: -0.125rem !important; - bottom: -0.125rem !important; - left: -0.125rem !important; + .sm\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; } - .sm\:-inset-1\.5 { - top: -0.375rem !important; - right: -0.375rem !important; - bottom: -0.375rem !important; - left: -0.375rem !important; + .sm\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; } - .sm\:-inset-2\.5 { - top: -0.625rem !important; - right: -0.625rem !important; - bottom: -0.625rem !important; - left: -0.625rem !important; + .sm\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; } - .sm\:-inset-3\.5 { - top: -0.875rem !important; - right: -0.875rem !important; - bottom: -0.875rem !important; - left: -0.875rem !important; + .sm\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; } - .sm\:inset-1\/2 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; + .sm\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; } - .sm\:inset-1\/3 { - top: 33.333333% !important; - right: 33.333333% !important; - bottom: 33.333333% !important; - left: 33.333333% !important; + .sm\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; } - .sm\:inset-2\/3 { - top: 66.666667% !important; - right: 66.666667% !important; - bottom: 66.666667% !important; - left: 66.666667% !important; + .sm\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; } - .sm\:inset-1\/4 { - top: 25% !important; - right: 25% !important; - bottom: 25% !important; - left: 25% !important; + .sm\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; } - .sm\:inset-2\/4 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; + .sm\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; } - .sm\:inset-3\/4 { - top: 75% !important; - right: 75% !important; - bottom: 75% !important; - left: 75% !important; + .sm\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; } - .sm\:inset-full { - top: 100% !important; - right: 100% !important; - bottom: 100% !important; - left: 100% !important; + .sm\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; } - .sm\:-inset-1\/2 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; + .sm\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; } - .sm\:-inset-1\/3 { - top: -33.333333% !important; - right: -33.333333% !important; - bottom: -33.333333% !important; - left: -33.333333% !important; + .sm\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; } - .sm\:-inset-2\/3 { - top: -66.666667% !important; - right: -66.666667% !important; - bottom: -66.666667% !important; - left: -66.666667% !important; + .sm\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; } - .sm\:-inset-1\/4 { - top: -25% !important; - right: -25% !important; - bottom: -25% !important; - left: -25% !important; + .sm\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; } - .sm\:-inset-2\/4 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; + .sm\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; } - .sm\:-inset-3\/4 { - top: -75% !important; - right: -75% !important; - bottom: -75% !important; - left: -75% !important; + .sm\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; } - .sm\:-inset-full { - top: -100% !important; - right: -100% !important; - bottom: -100% !important; - left: -100% !important; + .sm\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; } - .sm\:inset-y-0 { - top: 0px !important; - bottom: 0px !important; + .sm\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; } - .sm\:inset-x-0 { - right: 0px !important; - left: 0px !important; + .sm\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; } - .sm\:inset-y-1 { - top: 0.25rem !important; - bottom: 0.25rem !important; + .sm\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; } - .sm\:inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; + .sm\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; } - .sm\:inset-y-2 { - top: 0.5rem !important; - bottom: 0.5rem !important; + .sm\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; } - .sm\:inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; + .sm\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; } - .sm\:inset-y-3 { - top: 0.75rem !important; - bottom: 0.75rem !important; + .sm\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; } - .sm\:inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; + .sm\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; } - .sm\:inset-y-4 { - top: 1rem !important; - bottom: 1rem !important; + .sm\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; } - .sm\:inset-x-4 { - right: 1rem !important; - left: 1rem !important; + .sm\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; } - .sm\:inset-y-5 { - top: 1.25rem !important; - bottom: 1.25rem !important; + .sm\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; } - .sm\:inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; + .sm\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; } - .sm\:inset-y-6 { - top: 1.5rem !important; - bottom: 1.5rem !important; + .sm\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; } - .sm\:inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; + .sm\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; } - .sm\:inset-y-7 { - top: 1.75rem !important; - bottom: 1.75rem !important; + .sm\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; } - .sm\:inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; + .sm\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; } - .sm\:inset-y-8 { - top: 2rem !important; - bottom: 2rem !important; + .sm\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; } - .sm\:inset-x-8 { - right: 2rem !important; - left: 2rem !important; + .sm\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; } - .sm\:inset-y-9 { - top: 2.25rem !important; - bottom: 2.25rem !important; + .sm\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; } - .sm\:inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; + .sm\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; } - .sm\:inset-y-10 { - top: 2.5rem !important; - bottom: 2.5rem !important; + .sm\:bg-none { + background-image: none !important; } - .sm\:inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; + .sm\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; } - .sm\:inset-y-11 { - top: 2.75rem !important; - bottom: 2.75rem !important; + .sm\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; } - .sm\:inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; + .sm\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; } - .sm\:inset-y-12 { - top: 3rem !important; - bottom: 3rem !important; + .sm\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; } - .sm\:inset-x-12 { - right: 3rem !important; - left: 3rem !important; + .sm\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; } - .sm\:inset-y-14 { - top: 3.5rem !important; - bottom: 3.5rem !important; + .sm\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; } - .sm\:inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; + .sm\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; } - .sm\:inset-y-16 { - top: 4rem !important; - bottom: 4rem !important; + .sm\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; } - .sm\:inset-x-16 { - right: 4rem !important; - left: 4rem !important; + .sm\:from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:inset-y-20 { - top: 5rem !important; - bottom: 5rem !important; + .sm\:from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:inset-x-20 { - right: 5rem !important; - left: 5rem !important; + .sm\:from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:inset-y-24 { - top: 6rem !important; - bottom: 6rem !important; + .sm\:from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:inset-x-24 { - right: 6rem !important; - left: 6rem !important; + .sm\:from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .sm\:inset-y-28 { - top: 7rem !important; - bottom: 7rem !important; + .sm\:from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .sm\:inset-x-28 { - right: 7rem !important; - left: 7rem !important; + .sm\:from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .sm\:inset-y-32 { - top: 8rem !important; - bottom: 8rem !important; + .sm\:from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .sm\:inset-x-32 { - right: 8rem !important; - left: 8rem !important; + .sm\:from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .sm\:inset-y-36 { - top: 9rem !important; - bottom: 9rem !important; + .sm\:from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .sm\:inset-x-36 { - right: 9rem !important; - left: 9rem !important; + .sm\:from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .sm\:inset-y-40 { - top: 10rem !important; - bottom: 10rem !important; + .sm\:from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .sm\:inset-x-40 { - right: 10rem !important; - left: 10rem !important; + .sm\:from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .sm\:inset-y-44 { - top: 11rem !important; - bottom: 11rem !important; + .sm\:from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .sm\:inset-x-44 { - right: 11rem !important; - left: 11rem !important; + .sm\:from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .sm\:inset-y-48 { - top: 12rem !important; - bottom: 12rem !important; + .sm\:from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .sm\:inset-x-48 { - right: 12rem !important; - left: 12rem !important; + .sm\:from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .sm\:inset-y-52 { - top: 13rem !important; - bottom: 13rem !important; + .sm\:from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .sm\:inset-x-52 { - right: 13rem !important; - left: 13rem !important; + .sm\:from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .sm\:inset-y-56 { - top: 14rem !important; - bottom: 14rem !important; + .sm\:from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .sm\:inset-x-56 { - right: 14rem !important; - left: 14rem !important; + .sm\:from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .sm\:inset-y-60 { - top: 15rem !important; - bottom: 15rem !important; + .sm\:from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .sm\:inset-x-60 { - right: 15rem !important; - left: 15rem !important; + .sm\:from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .sm\:inset-y-64 { - top: 16rem !important; - bottom: 16rem !important; + .sm\:from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .sm\:inset-x-64 { - right: 16rem !important; - left: 16rem !important; + .sm\:from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .sm\:inset-y-72 { - top: 18rem !important; - bottom: 18rem !important; + .sm\:from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .sm\:inset-x-72 { - right: 18rem !important; - left: 18rem !important; + .sm\:from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .sm\:inset-y-80 { - top: 20rem !important; - bottom: 20rem !important; + .sm\:from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .sm\:inset-x-80 { - right: 20rem !important; - left: 20rem !important; + .sm\:from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .sm\:inset-y-96 { - top: 24rem !important; - bottom: 24rem !important; + .sm\:from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .sm\:inset-x-96 { - right: 24rem !important; - left: 24rem !important; + .sm\:from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .sm\:inset-y-auto { - top: auto !important; - bottom: auto !important; + .sm\:from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .sm\:inset-x-auto { - right: auto !important; - left: auto !important; + .sm\:from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .sm\:inset-y-px { - top: 1px !important; - bottom: 1px !important; + .sm\:from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .sm\:inset-x-px { - right: 1px !important; - left: 1px !important; + .sm\:from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .sm\:inset-y-0\.5 { - top: 0.125rem !important; - bottom: 0.125rem !important; + .sm\:from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .sm\:inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; + .sm\:from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .sm\:inset-y-1\.5 { - top: 0.375rem !important; - bottom: 0.375rem !important; + .sm\:from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .sm\:inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; + .sm\:from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .sm\:inset-y-2\.5 { - top: 0.625rem !important; - bottom: 0.625rem !important; + .sm\:from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .sm\:inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; + .sm\:from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .sm\:inset-y-3\.5 { - top: 0.875rem !important; - bottom: 0.875rem !important; + .sm\:from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .sm\:inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; + .sm\:from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .sm\:-inset-y-0 { - top: 0px !important; - bottom: 0px !important; + .sm\:from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .sm\:-inset-x-0 { - right: 0px !important; - left: 0px !important; + .sm\:from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .sm\:-inset-y-1 { - top: -0.25rem !important; - bottom: -0.25rem !important; + .sm\:from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .sm\:-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; + .sm\:from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .sm\:-inset-y-2 { - top: -0.5rem !important; - bottom: -0.5rem !important; + .sm\:from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .sm\:-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; + .sm\:from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .sm\:-inset-y-3 { - top: -0.75rem !important; - bottom: -0.75rem !important; + .sm\:from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .sm\:-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; + .sm\:from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .sm\:-inset-y-4 { - top: -1rem !important; - bottom: -1rem !important; + .sm\:from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .sm\:-inset-x-4 { - right: -1rem !important; - left: -1rem !important; + .sm\:from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .sm\:-inset-y-5 { - top: -1.25rem !important; - bottom: -1.25rem !important; + .sm\:from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .sm\:-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; + .sm\:from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .sm\:-inset-y-6 { - top: -1.5rem !important; - bottom: -1.5rem !important; + .sm\:from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .sm\:-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; + .sm\:from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .sm\:-inset-y-7 { - top: -1.75rem !important; - bottom: -1.75rem !important; + .sm\:from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .sm\:-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; + .sm\:from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .sm\:-inset-y-8 { - top: -2rem !important; - bottom: -2rem !important; + .sm\:from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .sm\:-inset-x-8 { - right: -2rem !important; - left: -2rem !important; + .sm\:from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .sm\:-inset-y-9 { - top: -2.25rem !important; - bottom: -2.25rem !important; + .sm\:from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .sm\:-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; + .sm\:from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .sm\:-inset-y-10 { - top: -2.5rem !important; - bottom: -2.5rem !important; + .sm\:from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .sm\:-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; + .sm\:from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .sm\:-inset-y-11 { - top: -2.75rem !important; - bottom: -2.75rem !important; + .sm\:from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .sm\:-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; + .sm\:from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .sm\:-inset-y-12 { - top: -3rem !important; - bottom: -3rem !important; + .sm\:from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .sm\:-inset-x-12 { - right: -3rem !important; - left: -3rem !important; + .sm\:from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .sm\:-inset-y-14 { - top: -3.5rem !important; - bottom: -3.5rem !important; + .sm\:from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .sm\:-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; + .sm\:from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .sm\:-inset-y-16 { - top: -4rem !important; - bottom: -4rem !important; + .sm\:from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .sm\:-inset-x-16 { - right: -4rem !important; - left: -4rem !important; + .sm\:from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .sm\:-inset-y-20 { - top: -5rem !important; - bottom: -5rem !important; + .sm\:from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .sm\:-inset-x-20 { - right: -5rem !important; - left: -5rem !important; + .sm\:from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .sm\:-inset-y-24 { - top: -6rem !important; - bottom: -6rem !important; + .sm\:from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .sm\:-inset-x-24 { - right: -6rem !important; - left: -6rem !important; + .sm\:from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .sm\:-inset-y-28 { - top: -7rem !important; - bottom: -7rem !important; + .sm\:from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .sm\:-inset-x-28 { - right: -7rem !important; - left: -7rem !important; + .sm\:from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .sm\:-inset-y-32 { - top: -8rem !important; - bottom: -8rem !important; + .sm\:from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .sm\:-inset-x-32 { - right: -8rem !important; - left: -8rem !important; + .sm\:from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .sm\:-inset-y-36 { - top: -9rem !important; - bottom: -9rem !important; + .sm\:from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .sm\:-inset-x-36 { - right: -9rem !important; - left: -9rem !important; + .sm\:from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .sm\:-inset-y-40 { - top: -10rem !important; - bottom: -10rem !important; + .sm\:from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .sm\:-inset-x-40 { - right: -10rem !important; - left: -10rem !important; + .sm\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:-inset-y-44 { - top: -11rem !important; - bottom: -11rem !important; + .sm\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:-inset-x-44 { - right: -11rem !important; - left: -11rem !important; + .sm\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:-inset-y-48 { - top: -12rem !important; - bottom: -12rem !important; + .sm\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:-inset-x-48 { - right: -12rem !important; - left: -12rem !important; + .sm\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .sm\:-inset-y-52 { - top: -13rem !important; - bottom: -13rem !important; + .sm\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .sm\:-inset-x-52 { - right: -13rem !important; - left: -13rem !important; + .sm\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .sm\:-inset-y-56 { - top: -14rem !important; - bottom: -14rem !important; + .sm\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .sm\:-inset-x-56 { - right: -14rem !important; - left: -14rem !important; + .sm\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .sm\:-inset-y-60 { - top: -15rem !important; - bottom: -15rem !important; + .sm\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .sm\:-inset-x-60 { - right: -15rem !important; - left: -15rem !important; + .sm\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .sm\:-inset-y-64 { - top: -16rem !important; - bottom: -16rem !important; + .sm\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .sm\:-inset-x-64 { - right: -16rem !important; - left: -16rem !important; + .sm\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .sm\:-inset-y-72 { - top: -18rem !important; - bottom: -18rem !important; + .sm\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .sm\:-inset-x-72 { - right: -18rem !important; - left: -18rem !important; + .sm\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .sm\:-inset-y-80 { - top: -20rem !important; - bottom: -20rem !important; + .sm\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .sm\:-inset-x-80 { - right: -20rem !important; - left: -20rem !important; + .sm\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .sm\:-inset-y-96 { - top: -24rem !important; - bottom: -24rem !important; + .sm\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .sm\:-inset-x-96 { - right: -24rem !important; - left: -24rem !important; + .sm\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .sm\:-inset-y-px { - top: -1px !important; - bottom: -1px !important; + .sm\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .sm\:-inset-x-px { - right: -1px !important; - left: -1px !important; + .sm\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .sm\:-inset-y-0\.5 { - top: -0.125rem !important; - bottom: -0.125rem !important; + .sm\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .sm\:-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; + .sm\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .sm\:-inset-y-1\.5 { - top: -0.375rem !important; - bottom: -0.375rem !important; + .sm\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .sm\:-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; + .sm\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .sm\:-inset-y-2\.5 { - top: -0.625rem !important; - bottom: -0.625rem !important; + .sm\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .sm\:-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; + .sm\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .sm\:-inset-y-3\.5 { - top: -0.875rem !important; - bottom: -0.875rem !important; + .sm\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .sm\:-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; + .sm\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .sm\:inset-y-1\/2 { - top: 50% !important; - bottom: 50% !important; + .sm\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .sm\:inset-x-1\/2 { - right: 50% !important; - left: 50% !important; + .sm\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .sm\:inset-y-1\/3 { - top: 33.333333% !important; - bottom: 33.333333% !important; + .sm\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .sm\:inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; + .sm\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .sm\:inset-y-2\/3 { - top: 66.666667% !important; - bottom: 66.666667% !important; + .sm\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .sm\:inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; + .sm\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .sm\:inset-y-1\/4 { - top: 25% !important; - bottom: 25% !important; + .sm\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .sm\:inset-x-1\/4 { - right: 25% !important; - left: 25% !important; + .sm\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .sm\:inset-y-2\/4 { - top: 50% !important; - bottom: 50% !important; + .sm\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .sm\:inset-x-2\/4 { - right: 50% !important; - left: 50% !important; + .sm\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .sm\:inset-y-3\/4 { - top: 75% !important; - bottom: 75% !important; + .sm\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .sm\:inset-x-3\/4 { - right: 75% !important; - left: 75% !important; + .sm\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .sm\:inset-y-full { - top: 100% !important; - bottom: 100% !important; + .sm\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .sm\:inset-x-full { - right: 100% !important; - left: 100% !important; + .sm\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .sm\:-inset-y-1\/2 { - top: -50% !important; - bottom: -50% !important; + .sm\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .sm\:-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; + .sm\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .sm\:-inset-y-1\/3 { - top: -33.333333% !important; - bottom: -33.333333% !important; + .sm\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .sm\:-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; + .sm\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .sm\:-inset-y-2\/3 { - top: -66.666667% !important; - bottom: -66.666667% !important; + .sm\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .sm\:-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; + .sm\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .sm\:-inset-y-1\/4 { - top: -25% !important; - bottom: -25% !important; + .sm\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .sm\:-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; + .sm\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .sm\:-inset-y-2\/4 { - top: -50% !important; - bottom: -50% !important; + .sm\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .sm\:-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; + .sm\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .sm\:-inset-y-3\/4 { - top: -75% !important; - bottom: -75% !important; + .sm\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .sm\:-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; + .sm\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .sm\:-inset-y-full { - top: -100% !important; - bottom: -100% !important; + .sm\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .sm\:-inset-x-full { - right: -100% !important; - left: -100% !important; + .sm\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .sm\:top-0 { - top: 0px !important; + .sm\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .sm\:right-0 { - right: 0px !important; + .sm\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .sm\:bottom-0 { - bottom: 0px !important; + .sm\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .sm\:left-0 { - left: 0px !important; + .sm\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .sm\:top-1 { - top: 0.25rem !important; + .sm\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .sm\:right-1 { - right: 0.25rem !important; + .sm\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .sm\:bottom-1 { - bottom: 0.25rem !important; + .sm\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .sm\:left-1 { - left: 0.25rem !important; + .sm\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .sm\:top-2 { - top: 0.5rem !important; + .sm\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .sm\:right-2 { - right: 0.5rem !important; + .sm\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .sm\:bottom-2 { - bottom: 0.5rem !important; + .sm\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .sm\:left-2 { - left: 0.5rem !important; + .sm\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .sm\:top-3 { - top: 0.75rem !important; + .sm\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .sm\:right-3 { - right: 0.75rem !important; + .sm\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .sm\:bottom-3 { - bottom: 0.75rem !important; + .sm\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .sm\:left-3 { - left: 0.75rem !important; + .sm\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .sm\:top-4 { - top: 1rem !important; + .sm\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .sm\:right-4 { - right: 1rem !important; + .sm\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .sm\:bottom-4 { - bottom: 1rem !important; + .sm\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .sm\:left-4 { - left: 1rem !important; + .sm\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .sm\:top-5 { - top: 1.25rem !important; + .sm\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .sm\:right-5 { - right: 1.25rem !important; + .sm\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .sm\:bottom-5 { - bottom: 1.25rem !important; + .sm\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .sm\:left-5 { - left: 1.25rem !important; + .sm\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .sm\:top-6 { - top: 1.5rem !important; + .sm\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .sm\:right-6 { - right: 1.5rem !important; + .sm\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .sm\:bottom-6 { - bottom: 1.5rem !important; + .sm\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .sm\:left-6 { - left: 1.5rem !important; + .sm\:to-transparent { + --tw-gradient-to: transparent !important; } - .sm\:top-7 { - top: 1.75rem !important; + .sm\:to-current { + --tw-gradient-to: currentColor !important; } - .sm\:right-7 { - right: 1.75rem !important; + .sm\:to-black { + --tw-gradient-to: #000 !important; } - .sm\:bottom-7 { - bottom: 1.75rem !important; + .sm\:to-white { + --tw-gradient-to: #fff !important; } - .sm\:left-7 { - left: 1.75rem !important; + .sm\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; } - .sm\:top-8 { - top: 2rem !important; + .sm\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; } - .sm\:right-8 { - right: 2rem !important; + .sm\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; } - .sm\:bottom-8 { - bottom: 2rem !important; + .sm\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; } - .sm\:left-8 { - left: 2rem !important; + .sm\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; } - .sm\:top-9 { - top: 2.25rem !important; + .sm\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; } - .sm\:right-9 { - right: 2.25rem !important; + .sm\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; } - .sm\:bottom-9 { - bottom: 2.25rem !important; + .sm\:to-gray-700 { + --tw-gradient-to: #374151 !important; } - .sm\:left-9 { - left: 2.25rem !important; + .sm\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; } - .sm\:top-10 { - top: 2.5rem !important; + .sm\:to-gray-900 { + --tw-gradient-to: #111827 !important; } - .sm\:right-10 { - right: 2.5rem !important; + .sm\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; } - .sm\:bottom-10 { - bottom: 2.5rem !important; + .sm\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; } - .sm\:left-10 { - left: 2.5rem !important; + .sm\:to-red-200 { + --tw-gradient-to: #fecaca !important; } - .sm\:top-11 { - top: 2.75rem !important; + .sm\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; } - .sm\:right-11 { - right: 2.75rem !important; + .sm\:to-red-400 { + --tw-gradient-to: #f87171 !important; } - .sm\:bottom-11 { - bottom: 2.75rem !important; + .sm\:to-red-500 { + --tw-gradient-to: #ef4444 !important; } - .sm\:left-11 { - left: 2.75rem !important; + .sm\:to-red-600 { + --tw-gradient-to: #dc2626 !important; } - .sm\:top-12 { - top: 3rem !important; + .sm\:to-red-700 { + --tw-gradient-to: #b91c1c !important; } - .sm\:right-12 { - right: 3rem !important; + .sm\:to-red-800 { + --tw-gradient-to: #991b1b !important; } - .sm\:bottom-12 { - bottom: 3rem !important; + .sm\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; } - .sm\:left-12 { - left: 3rem !important; + .sm\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; } - .sm\:top-14 { - top: 3.5rem !important; + .sm\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; } - .sm\:right-14 { - right: 3.5rem !important; + .sm\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; } - .sm\:bottom-14 { - bottom: 3.5rem !important; + .sm\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; } - .sm\:left-14 { - left: 3.5rem !important; + .sm\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; } - .sm\:top-16 { - top: 4rem !important; + .sm\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; } - .sm\:right-16 { - right: 4rem !important; + .sm\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; } - .sm\:bottom-16 { - bottom: 4rem !important; + .sm\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; } - .sm\:left-16 { - left: 4rem !important; + .sm\:to-yellow-800 { + --tw-gradient-to: #92400e !important; } - .sm\:top-20 { - top: 5rem !important; + .sm\:to-yellow-900 { + --tw-gradient-to: #78350f !important; } - .sm\:right-20 { - right: 5rem !important; + .sm\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; } - .sm\:bottom-20 { - bottom: 5rem !important; + .sm\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; } - .sm\:left-20 { - left: 5rem !important; + .sm\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; } - .sm\:top-24 { - top: 6rem !important; + .sm\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; } - .sm\:right-24 { - right: 6rem !important; + .sm\:to-green-400 { + --tw-gradient-to: #34d399 !important; } - .sm\:bottom-24 { - bottom: 6rem !important; + .sm\:to-green-500 { + --tw-gradient-to: #10b981 !important; } - .sm\:left-24 { - left: 6rem !important; + .sm\:to-green-600 { + --tw-gradient-to: #059669 !important; } - .sm\:top-28 { - top: 7rem !important; + .sm\:to-green-700 { + --tw-gradient-to: #047857 !important; } - .sm\:right-28 { - right: 7rem !important; + .sm\:to-green-800 { + --tw-gradient-to: #065f46 !important; } - .sm\:bottom-28 { - bottom: 7rem !important; + .sm\:to-green-900 { + --tw-gradient-to: #064e3b !important; } - .sm\:left-28 { - left: 7rem !important; + .sm\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; } - .sm\:top-32 { - top: 8rem !important; + .sm\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; } - .sm\:right-32 { - right: 8rem !important; + .sm\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; } - .sm\:bottom-32 { - bottom: 8rem !important; + .sm\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; } - .sm\:left-32 { - left: 8rem !important; + .sm\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; } - .sm\:top-36 { - top: 9rem !important; + .sm\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; } - .sm\:right-36 { - right: 9rem !important; + .sm\:to-blue-600 { + --tw-gradient-to: #2563eb !important; } - .sm\:bottom-36 { - bottom: 9rem !important; + .sm\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; } - .sm\:left-36 { - left: 9rem !important; + .sm\:to-blue-800 { + --tw-gradient-to: #1e40af !important; } - .sm\:top-40 { - top: 10rem !important; + .sm\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; } - .sm\:right-40 { - right: 10rem !important; + .sm\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; } - .sm\:bottom-40 { - bottom: 10rem !important; + .sm\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; } - .sm\:left-40 { - left: 10rem !important; + .sm\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; } - .sm\:top-44 { - top: 11rem !important; + .sm\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; } - .sm\:right-44 { - right: 11rem !important; + .sm\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; } - .sm\:bottom-44 { - bottom: 11rem !important; + .sm\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; } - .sm\:left-44 { - left: 11rem !important; + .sm\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; } - .sm\:top-48 { - top: 12rem !important; + .sm\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; } - .sm\:right-48 { - right: 12rem !important; + .sm\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; } - .sm\:bottom-48 { - bottom: 12rem !important; + .sm\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; } - .sm\:left-48 { - left: 12rem !important; + .sm\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; } - .sm\:top-52 { - top: 13rem !important; + .sm\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; } - .sm\:right-52 { - right: 13rem !important; + .sm\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; } - .sm\:bottom-52 { - bottom: 13rem !important; + .sm\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; } - .sm\:left-52 { - left: 13rem !important; + .sm\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; } - .sm\:top-56 { - top: 14rem !important; + .sm\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; } - .sm\:right-56 { - right: 14rem !important; + .sm\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; } - .sm\:bottom-56 { - bottom: 14rem !important; + .sm\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; } - .sm\:left-56 { - left: 14rem !important; + .sm\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; } - .sm\:top-60 { - top: 15rem !important; + .sm\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; } - .sm\:right-60 { - right: 15rem !important; + .sm\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; } - .sm\:bottom-60 { - bottom: 15rem !important; + .sm\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; } - .sm\:left-60 { - left: 15rem !important; + .sm\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; } - .sm\:top-64 { - top: 16rem !important; + .sm\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; } - .sm\:right-64 { - right: 16rem !important; + .sm\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; } - .sm\:bottom-64 { - bottom: 16rem !important; + .sm\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; } - .sm\:left-64 { - left: 16rem !important; + .sm\:to-pink-600 { + --tw-gradient-to: #db2777 !important; } - .sm\:top-72 { - top: 18rem !important; + .sm\:to-pink-700 { + --tw-gradient-to: #be185d !important; } - .sm\:right-72 { - right: 18rem !important; + .sm\:to-pink-800 { + --tw-gradient-to: #9d174d !important; } - .sm\:bottom-72 { - bottom: 18rem !important; + .sm\:to-pink-900 { + --tw-gradient-to: #831843 !important; } - .sm\:left-72 { - left: 18rem !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\:top-80 { - top: 20rem !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\:right-80 { - right: 20rem !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\:bottom-80 { - bottom: 20rem !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\:left-80 { - left: 20rem !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\:top-96 { - top: 24rem !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\:right-96 { - right: 24rem !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\:bottom-96 { - bottom: 24rem !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\:left-96 { - left: 24rem !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\:top-auto { - top: auto !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\:right-auto { - right: auto !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\:bottom-auto { - bottom: auto !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\:left-auto { - left: auto !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\:top-px { - top: 1px !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\:right-px { - right: 1px !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\:bottom-px { - bottom: 1px !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\:left-px { - left: 1px !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\:top-0\.5 { - top: 0.125rem !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\:right-0\.5 { - right: 0.125rem !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\:bottom-0\.5 { - bottom: 0.125rem !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\:left-0\.5 { - left: 0.125rem !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\:top-1\.5 { - top: 0.375rem !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\:right-1\.5 { - right: 0.375rem !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\:bottom-1\.5 { - bottom: 0.375rem !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\:left-1\.5 { - left: 0.375rem !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\:top-2\.5 { - top: 0.625rem !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\:right-2\.5 { - right: 0.625rem !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\:bottom-2\.5 { - bottom: 0.625rem !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\:left-2\.5 { - left: 0.625rem !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\:top-3\.5 { - top: 0.875rem !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\:right-3\.5 { - right: 0.875rem !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\:bottom-3\.5 { - bottom: 0.875rem !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\:left-3\.5 { - left: 0.875rem !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\:-top-0 { - top: 0px !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\:-right-0 { - right: 0px !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\:-bottom-0 { - bottom: 0px !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\:-left-0 { - left: 0px !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\:-top-1 { - top: -0.25rem !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\:-right-1 { - right: -0.25rem !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\:-bottom-1 { - bottom: -0.25rem !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\:-left-1 { - left: -0.25rem !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\:-top-2 { - top: -0.5rem !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\:-right-2 { - right: -0.5rem !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\:-bottom-2 { - bottom: -0.5rem !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\:-left-2 { - left: -0.5rem !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\:-top-3 { - top: -0.75rem !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\:-right-3 { - right: -0.75rem !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\:-bottom-3 { - bottom: -0.75rem !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\:-left-3 { - left: -0.75rem !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\:-top-4 { - top: -1rem !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\:-right-4 { - right: -1rem !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\:-bottom-4 { - bottom: -1rem !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\:-left-4 { - left: -1rem !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\:-top-5 { - top: -1.25rem !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\:-right-5 { - right: -1.25rem !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\:-bottom-5 { - bottom: -1.25rem !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\:-left-5 { - left: -1.25rem !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\:-top-6 { - top: -1.5rem !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\:-right-6 { - right: -1.5rem !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\:-bottom-6 { - bottom: -1.5rem !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\:-left-6 { - left: -1.5rem !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\:-top-7 { - top: -1.75rem !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\:-right-7 { - right: -1.75rem !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\:-bottom-7 { - bottom: -1.75rem !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\:-left-7 { - left: -1.75rem !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\:-top-8 { - top: -2rem !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\:-right-8 { - right: -2rem !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\:-bottom-8 { - bottom: -2rem !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\:-left-8 { - left: -2rem !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\:-top-9 { - top: -2.25rem !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\:-right-9 { - right: -2.25rem !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\:-bottom-9 { - bottom: -2.25rem !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\:-left-9 { - left: -2.25rem !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\:-top-10 { - top: -2.5rem !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\:-right-10 { - right: -2.5rem !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\:-bottom-10 { - bottom: -2.5rem !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\:-left-10 { - left: -2.5rem !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\:-top-11 { - top: -2.75rem !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\:-right-11 { - right: -2.75rem !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\:-bottom-11 { - bottom: -2.75rem !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\:-left-11 { - left: -2.75rem !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\:-top-12 { - top: -3rem !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\:-right-12 { - right: -3rem !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\:-bottom-12 { - bottom: -3rem !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\:-left-12 { - left: -3rem !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\:-top-14 { - top: -3.5rem !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\:-right-14 { - right: -3.5rem !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\:-bottom-14 { - bottom: -3.5rem !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\:-left-14 { - left: -3.5rem !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\:-top-16 { - top: -4rem !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\:-right-16 { - right: -4rem !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\:-bottom-16 { - bottom: -4rem !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\:-left-16 { - left: -4rem !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\:-top-20 { - top: -5rem !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\:-right-20 { - right: -5rem !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\:-bottom-20 { - bottom: -5rem !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\:-left-20 { - left: -5rem !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\:-top-24 { - top: -6rem !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\:-right-24 { - right: -6rem !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\:-bottom-24 { - bottom: -6rem !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\:-left-24 { - left: -6rem !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\:-top-28 { - top: -7rem !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\:-right-28 { - right: -7rem !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\:-bottom-28 { - bottom: -7rem !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\:-left-28 { - left: -7rem !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\:-top-32 { - top: -8rem !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\:-right-32 { - right: -8rem !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\:-bottom-32 { - bottom: -8rem !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\:-left-32 { - left: -8rem !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\:-top-36 { - top: -9rem !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\:-right-36 { - right: -9rem !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\:-bottom-36 { - bottom: -9rem !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\:-left-36 { - left: -9rem !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\:-top-40 { - top: -10rem !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\:-right-40 { - right: -10rem !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\:-bottom-40 { - bottom: -10rem !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\:-left-40 { - left: -10rem !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\:-top-44 { - top: -11rem !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\:-right-44 { - right: -11rem !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\:-bottom-44 { - bottom: -11rem !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\:-left-44 { - left: -11rem !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\:-top-48 { - top: -12rem !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\:-right-48 { - right: -12rem !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\:-bottom-48 { - bottom: -12rem !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\:-left-48 { - left: -12rem !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\:-top-52 { - top: -13rem !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\:-right-52 { - right: -13rem !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\:-bottom-52 { - bottom: -13rem !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\:-left-52 { - left: -13rem !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\:-top-56 { - top: -14rem !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\:-right-56 { - right: -14rem !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\:-bottom-56 { - bottom: -14rem !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\:-left-56 { - left: -14rem !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\:-top-60 { - top: -15rem !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\:-right-60 { - right: -15rem !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\:-bottom-60 { - bottom: -15rem !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\:-left-60 { - left: -15rem !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\:-top-64 { - top: -16rem !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\:-right-64 { - right: -16rem !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\:-bottom-64 { - bottom: -16rem !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\:-left-64 { - left: -16rem !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\:-top-72 { - top: -18rem !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\:-right-72 { - right: -18rem !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\:-bottom-72 { - bottom: -18rem !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\:-left-72 { - left: -18rem !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\:-top-80 { - top: -20rem !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\:-right-80 { - right: -20rem !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\:-bottom-80 { - bottom: -20rem !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\:-left-80 { - left: -20rem !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\:-top-96 { - top: -24rem !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\:-right-96 { - right: -24rem !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\:-bottom-96 { - bottom: -24rem !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\:-left-96 { - left: -24rem !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\:-top-px { - top: -1px !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\:-right-px { - right: -1px !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\:-bottom-px { - bottom: -1px !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\:-left-px { - left: -1px !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\:-top-0\.5 { - top: -0.125rem !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\:-right-0\.5 { - right: -0.125rem !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\:-bottom-0\.5 { - bottom: -0.125rem !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\:-left-0\.5 { - left: -0.125rem !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\:-top-1\.5 { - top: -0.375rem !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\:-right-1\.5 { - right: -0.375rem !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\:-bottom-1\.5 { - bottom: -0.375rem !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\:-left-1\.5 { - left: -0.375rem !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\:-top-2\.5 { - top: -0.625rem !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\:-right-2\.5 { - right: -0.625rem !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\:-bottom-2\.5 { - bottom: -0.625rem !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\:-left-2\.5 { - left: -0.625rem !important; + .sm\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; } - .sm\:-top-3\.5 { - top: -0.875rem !important; + .sm\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; } - .sm\:-right-3\.5 { - right: -0.875rem !important; + .sm\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; } - .sm\:-bottom-3\.5 { - bottom: -0.875rem !important; + .sm\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; } - .sm\:-left-3\.5 { - left: -0.875rem !important; + .sm\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; } - .sm\:top-1\/2 { - top: 50% !important; + .sm\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; } - .sm\:right-1\/2 { - right: 50% !important; + .sm\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; } - .sm\:bottom-1\/2 { - bottom: 50% !important; + .sm\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; } - .sm\:left-1\/2 { - left: 50% !important; + .sm\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; } - .sm\:top-1\/3 { - top: 33.333333% !important; + .sm\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; } - .sm\:right-1\/3 { - right: 33.333333% !important; + .sm\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; } - .sm\:bottom-1\/3 { - bottom: 33.333333% !important; + .sm\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; } - .sm\:left-1\/3 { - left: 33.333333% !important; + .sm\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; } - .sm\:top-2\/3 { - top: 66.666667% !important; + .sm\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; } - .sm\:right-2\/3 { - right: 66.666667% !important; + .sm\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; } - .sm\:bottom-2\/3 { - bottom: 66.666667% !important; + .sm\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; } - .sm\:left-2\/3 { - left: 66.666667% !important; + .sm\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; } - .sm\:top-1\/4 { - top: 25% !important; + .sm\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; } - .sm\:right-1\/4 { - right: 25% !important; + .sm\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; } - .sm\:bottom-1\/4 { - bottom: 25% !important; + .sm\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; } - .sm\:left-1\/4 { - left: 25% !important; + .sm\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; } - .sm\:top-2\/4 { - top: 50% !important; + .sm\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; } - .sm\:right-2\/4 { - right: 50% !important; + .sm\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; } - .sm\:bottom-2\/4 { - bottom: 50% !important; + .sm\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; } - .sm\:left-2\/4 { - left: 50% !important; + .sm\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; } - .sm\:top-3\/4 { - top: 75% !important; + .sm\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; } - .sm\:right-3\/4 { - right: 75% !important; + .sm\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; } - .sm\:bottom-3\/4 { - bottom: 75% !important; + .sm\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; } - .sm\:left-3\/4 { - left: 75% !important; + .sm\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; } - .sm\:top-full { - top: 100% !important; + .sm\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; } - .sm\:right-full { - right: 100% !important; + .sm\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; } - .sm\:bottom-full { - bottom: 100% !important; + .sm\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; } - .sm\:left-full { - left: 100% !important; + .sm\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; } - .sm\:-top-1\/2 { - top: -50% !important; + .sm\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; } - .sm\:-right-1\/2 { - right: -50% !important; + .sm\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; } - .sm\:-bottom-1\/2 { - bottom: -50% !important; + .sm\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; } - .sm\:-left-1\/2 { - left: -50% !important; + .sm\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; } - .sm\:-top-1\/3 { - top: -33.333333% !important; + .sm\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; } - .sm\:-right-1\/3 { - right: -33.333333% !important; + .sm\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; } - .sm\:-bottom-1\/3 { - bottom: -33.333333% !important; + .sm\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; } - .sm\:-left-1\/3 { - left: -33.333333% !important; + .sm\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; } - .sm\:-top-2\/3 { - top: -66.666667% !important; + .sm\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; } - .sm\:-right-2\/3 { - right: -66.666667% !important; + .sm\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; } - .sm\:-bottom-2\/3 { - bottom: -66.666667% !important; + .sm\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; } - .sm\:-left-2\/3 { - left: -66.666667% !important; + .sm\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; } - .sm\:-top-1\/4 { - top: -25% !important; + .sm\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; } - .sm\:-right-1\/4 { - right: -25% !important; + .sm\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; } - .sm\:-bottom-1\/4 { - bottom: -25% !important; + .sm\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; } - .sm\:-left-1\/4 { - left: -25% !important; + .sm\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; } - .sm\:-top-2\/4 { - top: -50% !important; + .sm\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; } - .sm\:-right-2\/4 { - right: -50% !important; + .sm\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; } - .sm\:-bottom-2\/4 { - bottom: -50% !important; + .sm\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; } - .sm\:-left-2\/4 { - left: -50% !important; + .sm\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; } - .sm\:-top-3\/4 { - top: -75% !important; + .sm\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; } - .sm\:-right-3\/4 { - right: -75% !important; + .sm\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; } - .sm\:-bottom-3\/4 { - bottom: -75% !important; + .sm\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; } - .sm\:-left-3\/4 { - left: -75% !important; + .sm\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; } - .sm\:-top-full { - top: -100% !important; + .sm\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; } - .sm\:-right-full { - right: -100% !important; + .sm\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; } - .sm\:-bottom-full { - bottom: -100% !important; + .sm\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; } - .sm\:-left-full { - left: -100% !important; + .sm\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; } - .sm\:resize-none { - resize: none !important; + .sm\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; } - .sm\:resize-y { - resize: vertical !important; + .sm\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; } - .sm\:resize-x { - resize: horizontal !important; + .sm\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; } - .sm\:resize { - resize: both !important; + .sm\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; } - .sm\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; } - .sm\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; } - .sm\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; } - .sm\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; } - .sm\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; } - .sm\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; } - .sm\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; } - .sm\:shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; } - .group:hover .sm\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; } - .group:hover .sm\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; } - .group:hover .sm\:group-hover\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; } - .group:hover .sm\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; } - .group:hover .sm\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; } - .group:hover .sm\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; } - .group:hover .sm\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; } - .group:hover .sm\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; } - .sm\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; } - .sm\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; } - .sm\:focus-within\:shadow-md:focus-within { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .sm\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; } - .sm\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-md:hover { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-none:hover { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-md:focus { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:ring-0 { - --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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-1 { - --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-2 { - --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-4 { - --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-8 { - --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring { - --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-inset { - --tw-ring-inset: inset !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\: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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset !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\: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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring: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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-inset:focus { - --tw-ring-inset: inset !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\:ring-offset-transparent { - --tw-ring-offset-color: transparent !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\:ring-offset-current { - --tw-ring-offset-color: currentColor !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\:ring-offset-black { - --tw-ring-offset-color: #000 !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\:ring-offset-white { - --tw-ring-offset-color: #fff !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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb !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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6 !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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb !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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db !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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af !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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280 !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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563 !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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151 !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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937 !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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827 !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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2 !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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2 !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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca !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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5 !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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171 !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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444 !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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626 !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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c !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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b !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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d !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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb !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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7 !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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a !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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d !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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24 !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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b !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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706 !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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309 !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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e !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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f !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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5 !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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5 !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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0 !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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7 !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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399 !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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981 !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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669 !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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857 !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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46 !important; + .sm\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b !important; + .sm\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff !important; + .sm\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe !important; + .sm\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe !important; + .sm\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .sm\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd !important; + .sm\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .sm\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa !important; + .sm\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .sm\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6 !important; + .sm\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .sm\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb !important; + .sm\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .sm\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8 !important; + .sm\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .sm\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af !important; + .sm\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .sm\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a !important; + .sm\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .sm\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff !important; + .sm\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .sm\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff !important; + .sm\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .sm\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe !important; + .sm\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .sm\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc !important; + .sm\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .sm\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8 !important; + .sm\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .sm\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1 !important; + .sm\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .sm\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5 !important; + .sm\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .sm\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca !important; + .sm\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .sm\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3 !important; + .sm\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .sm\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81 !important; + .sm\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .sm\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff !important; + .sm\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .sm\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe !important; + .sm\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .sm\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe !important; + .sm\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .sm\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd !important; + .sm\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .sm\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa !important; + .sm\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .sm\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6 !important; + .sm\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .sm\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed !important; + .sm\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .sm\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9 !important; + .sm\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .sm\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6 !important; + .sm\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .sm\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95 !important; + .sm\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .sm\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8 !important; + .sm\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .sm\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3 !important; + .sm\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .sm\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8 !important; + .sm\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .sm\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4 !important; + .sm\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .sm\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6 !important; + .sm\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .sm\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899 !important; + .sm\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .sm\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777 !important; + .sm\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .sm\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d !important; + .sm\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .sm\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d !important; + .sm\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .sm\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843 !important; + .sm\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .sm\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent !important; + .sm\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .sm\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor !important; + .sm\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .sm\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000 !important; + .sm\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .sm\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff !important; + .sm\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .sm\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb !important; + .sm\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .sm\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6 !important; + .sm\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .sm\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb !important; + .sm\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .sm\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db !important; + .sm\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .sm\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af !important; + .sm\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .sm\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280 !important; + .sm\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .sm\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563 !important; + .sm\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .sm\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151 !important; + .sm\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .sm\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937 !important; + .sm\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .sm\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827 !important; + .sm\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .sm\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2 !important; + .sm\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .sm\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2 !important; + .sm\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .sm\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca !important; + .sm\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .sm\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5 !important; + .sm\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .sm\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171 !important; + .sm\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .sm\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444 !important; + .sm\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .sm\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626 !important; + .sm\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .sm\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c !important; + .sm\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .sm\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b !important; + .sm\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .sm\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d !important; + .sm\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .sm\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb !important; + .sm\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .sm\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7 !important; + .sm\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .sm\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a !important; + .sm\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .sm\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d !important; + .sm\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .sm\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24 !important; + .sm\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .sm\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b !important; + .sm\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .sm\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706 !important; + .sm\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .sm\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309 !important; + .sm\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .sm\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e !important; + .sm\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .sm\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f !important; + .sm\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .sm\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5 !important; + .sm\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .sm\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5 !important; + .sm\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .sm\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0 !important; + .sm\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .sm\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7 !important; + .sm\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .sm\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399 !important; + .sm\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .sm\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981 !important; + .sm\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .sm\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669 !important; + .sm\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .sm\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857 !important; + .sm\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .sm\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46 !important; + .sm\:focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; } - .sm\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b !important; + .sm\:focus\:to-current:focus { + --tw-gradient-to: currentColor !important; } - .sm\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff !important; + .sm\:focus\:to-black:focus { + --tw-gradient-to: #000 !important; } - .sm\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe !important; + .sm\:focus\:to-white:focus { + --tw-gradient-to: #fff !important; } - .sm\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe !important; + .sm\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; } - .sm\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd !important; + .sm\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; } - .sm\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa !important; + .sm\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; } - .sm\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6 !important; + .sm\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; } - .sm\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb !important; + .sm\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; } - .sm\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8 !important; + .sm\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; } - .sm\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af !important; + .sm\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; } - .sm\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a !important; + .sm\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; } - .sm\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff !important; + .sm\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; } - .sm\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff !important; + .sm\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; } - .sm\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe !important; + .sm\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; } - .sm\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc !important; + .sm\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; } - .sm\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8 !important; + .sm\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; } - .sm\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1 !important; + .sm\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; } - .sm\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5 !important; + .sm\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; } - .sm\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca !important; + .sm\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; } - .sm\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3 !important; + .sm\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; } - .sm\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81 !important; + .sm\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; } - .sm\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff !important; + .sm\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; } - .sm\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe !important; + .sm\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; } - .sm\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe !important; + .sm\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; } - .sm\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd !important; + .sm\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; } - .sm\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa !important; + .sm\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; } - .sm\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6 !important; + .sm\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; } - .sm\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed !important; + .sm\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; } - .sm\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9 !important; + .sm\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; } - .sm\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6 !important; + .sm\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; } - .sm\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95 !important; + .sm\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; } - .sm\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8 !important; + .sm\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; } - .sm\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3 !important; + .sm\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; } - .sm\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8 !important; + .sm\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; } - .sm\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4 !important; + .sm\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; } - .sm\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6 !important; + .sm\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; } - .sm\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899 !important; + .sm\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; } - .sm\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777 !important; + .sm\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; } - .sm\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d !important; + .sm\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; } - .sm\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d !important; + .sm\:focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; } - .sm\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843 !important; + .sm\:focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; } - .sm\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent !important; + .sm\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; } - .sm\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor !important; + .sm\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; } - .sm\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000 !important; + .sm\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; } - .sm\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff !important; + .sm\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; } - .sm\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb !important; + .sm\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; } - .sm\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6 !important; + .sm\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; } - .sm\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb !important; + .sm\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; } - .sm\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db !important; + .sm\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; } - .sm\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af !important; + .sm\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; } - .sm\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280 !important; + .sm\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; } - .sm\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563 !important; + .sm\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; } - .sm\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151 !important; + .sm\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; } - .sm\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937 !important; + .sm\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; } - .sm\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827 !important; + .sm\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; } - .sm\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2 !important; + .sm\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; } - .sm\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2 !important; + .sm\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; } - .sm\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca !important; + .sm\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; } - .sm\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5 !important; + .sm\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; } - .sm\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171 !important; + .sm\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; } - .sm\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444 !important; + .sm\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; } - .sm\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626 !important; + .sm\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; } - .sm\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c !important; + .sm\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; } - .sm\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b !important; + .sm\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; } - .sm\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d !important; + .sm\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; } - .sm\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb !important; + .sm\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; } - .sm\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7 !important; + .sm\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; } - .sm\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a !important; + .sm\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; } - .sm\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d !important; + .sm\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; } - .sm\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24 !important; + .sm\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; } - .sm\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b !important; + .sm\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; } - .sm\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706 !important; + .sm\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; } - .sm\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309 !important; + .sm\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; } - .sm\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e !important; + .sm\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; } - .sm\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f !important; + .sm\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; } - .sm\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5 !important; + .sm\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; } - .sm\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5 !important; + .sm\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; } - .sm\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0 !important; + .sm\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; } - .sm\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7 !important; + .sm\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; } - .sm\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399 !important; + .sm\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; } - .sm\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981 !important; + .sm\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; } - .sm\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669 !important; + .sm\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; } - .sm\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857 !important; + .sm\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; } - .sm\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46 !important; + .sm\:decoration-slice { + box-decoration-break: slice !important; } - .sm\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b !important; + .sm\:decoration-clone { + box-decoration-break: clone !important; } - .sm\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff !important; + .sm\:bg-auto { + background-size: auto !important; } - .sm\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe !important; + .sm\:bg-cover { + background-size: cover !important; } - .sm\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe !important; + .sm\:bg-contain { + background-size: contain !important; } - .sm\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd !important; + .sm\:bg-fixed { + background-attachment: fixed !important; } - .sm\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa !important; + .sm\:bg-local { + background-attachment: local !important; } - .sm\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6 !important; + .sm\:bg-scroll { + background-attachment: scroll !important; } - .sm\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb !important; + .sm\:bg-clip-border { + background-clip: border-box !important; } - .sm\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8 !important; + .sm\:bg-clip-padding { + background-clip: padding-box !important; } - .sm\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af !important; + .sm\:bg-clip-content { + background-clip: content-box !important; } - .sm\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a !important; + .sm\:bg-clip-text { + background-clip: text !important; } - .sm\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff !important; + .sm\:bg-bottom { + background-position: bottom !important; } - .sm\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff !important; + .sm\:bg-center { + background-position: center !important; } - .sm\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe !important; + .sm\:bg-left { + background-position: left !important; } - .sm\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc !important; + .sm\:bg-left-bottom { + background-position: left bottom !important; } - .sm\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8 !important; + .sm\:bg-left-top { + background-position: left top !important; } - .sm\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1 !important; + .sm\:bg-right { + background-position: right !important; } - .sm\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5 !important; + .sm\:bg-right-bottom { + background-position: right bottom !important; } - .sm\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca !important; + .sm\:bg-right-top { + background-position: right top !important; } - .sm\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3 !important; + .sm\:bg-top { + background-position: top !important; } - .sm\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81 !important; + .sm\:bg-repeat { + background-repeat: repeat !important; } - .sm\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff !important; + .sm\:bg-no-repeat { + background-repeat: no-repeat !important; } - .sm\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe !important; + .sm\:bg-repeat-x { + background-repeat: repeat-x !important; } - .sm\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe !important; + .sm\:bg-repeat-y { + background-repeat: repeat-y !important; } - .sm\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd !important; + .sm\:bg-repeat-round { + background-repeat: round !important; } - .sm\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa !important; + .sm\:bg-repeat-space { + background-repeat: space !important; } - .sm\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6 !important; + .sm\:bg-origin-border { + background-origin: border-box !important; } - .sm\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed !important; + .sm\:bg-origin-padding { + background-origin: padding-box !important; } - .sm\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9 !important; + .sm\:bg-origin-content { + background-origin: content-box !important; } - .sm\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6 !important; + .sm\:fill-current { + fill: currentColor !important; } - .sm\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95 !important; + .sm\:stroke-current { + stroke: currentColor !important; } - .sm\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8 !important; + .sm\:stroke-0 { + stroke-width: 0 !important; } - .sm\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3 !important; + .sm\:stroke-1 { + stroke-width: 1 !important; } - .sm\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8 !important; + .sm\:stroke-2 { + stroke-width: 2 !important; } - .sm\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4 !important; + .sm\:object-contain { + object-fit: contain !important; } - .sm\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6 !important; + .sm\:object-cover { + object-fit: cover !important; } - .sm\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899 !important; + .sm\:object-fill { + object-fit: fill !important; } - .sm\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777 !important; + .sm\:object-none { + object-fit: none !important; } - .sm\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d !important; + .sm\:object-scale-down { + object-fit: scale-down !important; } - .sm\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d !important; + .sm\:object-bottom { + object-position: bottom !important; } - .sm\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843 !important; + .sm\:object-center { + object-position: center !important; } - .sm\:ring-offset-0 { - --tw-ring-offset-width: 0px !important; + .sm\:object-left { + object-position: left !important; } - .sm\:ring-offset-1 { - --tw-ring-offset-width: 1px !important; + .sm\:object-left-bottom { + object-position: left bottom !important; } - .sm\:ring-offset-2 { - --tw-ring-offset-width: 2px !important; + .sm\:object-left-top { + object-position: left top !important; } - .sm\:ring-offset-4 { - --tw-ring-offset-width: 4px !important; + .sm\:object-right { + object-position: right !important; } - .sm\:ring-offset-8 { - --tw-ring-offset-width: 8px !important; + .sm\:object-right-bottom { + object-position: right bottom !important; } - .sm\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px !important; + .sm\:object-right-top { + object-position: right top !important; } - .sm\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px !important; + .sm\:object-top { + object-position: top !important; } - .sm\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px !important; + .sm\:p-0 { + padding: 0px !important; } - .sm\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px !important; + .sm\:p-1 { + padding: 0.25rem !important; } - .sm\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px !important; + .sm\:p-2 { + padding: 0.5rem !important; } - .sm\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px !important; + .sm\:p-3 { + padding: 0.75rem !important; } - .sm\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px !important; + .sm\:p-4 { + padding: 1rem !important; } - .sm\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px !important; + .sm\:p-5 { + padding: 1.25rem !important; } - .sm\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px !important; + .sm\:p-6 { + padding: 1.5rem !important; } - .sm\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px !important; + .sm\:p-7 { + padding: 1.75rem !important; } - .sm\:ring-transparent { - --tw-ring-color: transparent !important; + .sm\:p-8 { + padding: 2rem !important; } - .sm\:ring-current { - --tw-ring-color: currentColor !important; + .sm\:p-9 { + padding: 2.25rem !important; } - .sm\:ring-black { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .sm\:p-10 { + padding: 2.5rem !important; } - .sm\:ring-white { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .sm\:p-11 { + padding: 2.75rem !important; } - .sm\:ring-gray-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .sm\:p-12 { + padding: 3rem !important; } - .sm\:ring-gray-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .sm\:p-14 { + padding: 3.5rem !important; } - .sm\:ring-gray-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .sm\:p-16 { + padding: 4rem !important; } - .sm\:ring-gray-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .sm\:p-20 { + padding: 5rem !important; } - .sm\:ring-gray-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .sm\:p-24 { + padding: 6rem !important; } - .sm\:ring-gray-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .sm\:p-28 { + padding: 7rem !important; } - .sm\:ring-gray-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .sm\:p-32 { + padding: 8rem !important; } - .sm\:ring-gray-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .sm\:p-36 { + padding: 9rem !important; } - .sm\:ring-gray-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .sm\:p-40 { + padding: 10rem !important; } - .sm\:ring-gray-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .sm\:p-44 { + padding: 11rem !important; } - .sm\:ring-red-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .sm\:p-48 { + padding: 12rem !important; } - .sm\:ring-red-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .sm\:p-52 { + padding: 13rem !important; } - .sm\:ring-red-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .sm\:p-56 { + padding: 14rem !important; } - .sm\:ring-red-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .sm\:p-60 { + padding: 15rem !important; } - .sm\:ring-red-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .sm\:p-64 { + padding: 16rem !important; } - .sm\:ring-red-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .sm\:p-72 { + padding: 18rem !important; } - .sm\:ring-red-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .sm\:p-80 { + padding: 20rem !important; } - .sm\:ring-red-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .sm\:p-96 { + padding: 24rem !important; } - .sm\:ring-red-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .sm\:p-px { + padding: 1px !important; } - .sm\:ring-red-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .sm\:p-0\.5 { + padding: 0.125rem !important; } - .sm\:ring-yellow-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .sm\:p-1\.5 { + padding: 0.375rem !important; } - .sm\:ring-yellow-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .sm\:p-2\.5 { + padding: 0.625rem !important; } - .sm\:ring-yellow-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .sm\:p-3\.5 { + padding: 0.875rem !important; } - .sm\:ring-yellow-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .sm\:px-0 { + padding-left: 0px !important; + padding-right: 0px !important; } - .sm\:ring-yellow-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .sm\:px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; } - .sm\:ring-yellow-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .sm\:px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; } - .sm\:ring-yellow-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .sm\:px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; } - .sm\:ring-yellow-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .sm\:px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; } - .sm\:ring-yellow-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .sm\:px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; } - .sm\:ring-yellow-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .sm\:px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; } - .sm\:ring-green-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .sm\:px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; } - .sm\:ring-green-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .sm\:px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; } - .sm\:ring-green-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .sm\:px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; } - .sm\:ring-green-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .sm\:px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; } - .sm\:ring-green-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .sm\:px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; } - .sm\:ring-green-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .sm\:px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; } - .sm\:ring-green-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .sm\:px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; } - .sm\:ring-green-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .sm\:px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; } - .sm\:ring-green-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .sm\:px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; } - .sm\:ring-green-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .sm\:px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; } - .sm\:ring-blue-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .sm\:px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; } - .sm\:ring-blue-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .sm\:px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; } - .sm\:ring-blue-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .sm\:px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; } - .sm\:ring-blue-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .sm\:px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; } - .sm\:ring-blue-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .sm\:px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; } - .sm\:ring-blue-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .sm\:px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; } - .sm\:ring-blue-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .sm\:px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; } - .sm\:ring-blue-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .sm\:px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; } - .sm\:ring-blue-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .sm\:px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; } - .sm\:ring-blue-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .sm\:px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; } - .sm\:ring-indigo-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .sm\:px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; } - .sm\:ring-indigo-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .sm\:px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; } - .sm\:ring-indigo-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .sm\:px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; } - .sm\:ring-indigo-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .sm\:px-px { + padding-left: 1px !important; + padding-right: 1px !important; } - .sm\:ring-indigo-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .sm\:px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; } - .sm\:ring-indigo-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .sm\:px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; } - .sm\:ring-indigo-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .sm\:px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; } - .sm\:ring-indigo-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .sm\:px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; } - .sm\:ring-indigo-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .sm\:py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; } - .sm\:ring-indigo-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .sm\:py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } - .sm\:ring-purple-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .sm\:py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } - .sm\:ring-purple-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .sm\:py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; } - .sm\:ring-purple-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .sm\:py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } - .sm\:ring-purple-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .sm\:py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; } - .sm\:ring-purple-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .sm\:py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } - .sm\:ring-purple-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .sm\:py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; } - .sm\:ring-purple-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .sm\:py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; } - .sm\:ring-purple-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .sm\:py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; } - .sm\:ring-purple-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .sm\:py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; } - .sm\:ring-purple-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .sm\:py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; } - .sm\:ring-pink-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .sm\:py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } - .sm\:ring-pink-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .sm\:py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; } - .sm\:ring-pink-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .sm\:py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; } - .sm\:ring-pink-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .sm\:py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; } - .sm\:ring-pink-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .sm\:py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; } - .sm\:ring-pink-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .sm\:py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; } - .sm\:ring-pink-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .sm\:py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; } - .sm\:ring-pink-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .sm\:py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; } - .sm\:ring-pink-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .sm\:py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; } - .sm\:ring-pink-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .sm\:py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; } - .sm\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent !important; + .sm\:py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; } - .sm\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor !important; + .sm\:py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; } - .sm\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .sm\:py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; } - .sm\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .sm\:py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; } - .sm\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .sm\:py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; } - .sm\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .sm\:py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; } - .sm\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .sm\:py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; } - .sm\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .sm\:py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; } - .sm\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .sm\:py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; } - .sm\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .sm\:py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; } - .sm\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .sm\:py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; } - .sm\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .sm\:py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; } - .sm\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .sm\:py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; } - .sm\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .sm\:pt-0 { + padding-top: 0px !important; } - .sm\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .sm\:pt-1 { + padding-top: 0.25rem !important; } - .sm\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .sm\:pt-2 { + padding-top: 0.5rem !important; } - .sm\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .sm\:pt-3 { + padding-top: 0.75rem !important; } - .sm\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .sm\:pt-4 { + padding-top: 1rem !important; } - .sm\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .sm\:pt-5 { + padding-top: 1.25rem !important; } - .sm\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .sm\:pt-6 { + padding-top: 1.5rem !important; } - .sm\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .sm\:pt-7 { + padding-top: 1.75rem !important; } - .sm\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .sm\:pt-8 { + padding-top: 2rem !important; } - .sm\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .sm\:pt-9 { + padding-top: 2.25rem !important; } - .sm\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .sm\:pt-10 { + padding-top: 2.5rem !important; } - .sm\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .sm\:pt-11 { + padding-top: 2.75rem !important; } - .sm\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .sm\:pt-12 { + padding-top: 3rem !important; } - .sm\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .sm\:pt-14 { + padding-top: 3.5rem !important; } - .sm\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .sm\:pt-16 { + padding-top: 4rem !important; } - .sm\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .sm\:pt-20 { + padding-top: 5rem !important; } - .sm\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .sm\:pt-24 { + padding-top: 6rem !important; } - .sm\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .sm\:pt-28 { + padding-top: 7rem !important; } - .sm\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .sm\:pt-32 { + padding-top: 8rem !important; } - .sm\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .sm\:pt-36 { + padding-top: 9rem !important; } - .sm\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .sm\:pt-40 { + padding-top: 10rem !important; } - .sm\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .sm\:pt-44 { + padding-top: 11rem !important; } - .sm\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .sm\:pt-48 { + padding-top: 12rem !important; } - .sm\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .sm\:pt-52 { + padding-top: 13rem !important; } - .sm\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .sm\:pt-56 { + padding-top: 14rem !important; } - .sm\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .sm\:pt-60 { + padding-top: 15rem !important; } - .sm\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .sm\:pt-64 { + padding-top: 16rem !important; } - .sm\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .sm\:pt-72 { + padding-top: 18rem !important; } - .sm\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .sm\:pt-80 { + padding-top: 20rem !important; } - .sm\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .sm\:pt-96 { + padding-top: 24rem !important; } - .sm\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .sm\:pt-px { + padding-top: 1px !important; } - .sm\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .sm\:pt-0\.5 { + padding-top: 0.125rem !important; } - .sm\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .sm\:pt-1\.5 { + padding-top: 0.375rem !important; } - .sm\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .sm\:pt-2\.5 { + padding-top: 0.625rem !important; } - .sm\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .sm\:pt-3\.5 { + padding-top: 0.875rem !important; } - .sm\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .sm\:pr-0 { + padding-right: 0px !important; } - .sm\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .sm\:pr-1 { + padding-right: 0.25rem !important; } - .sm\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .sm\:pr-2 { + padding-right: 0.5rem !important; } - .sm\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .sm\:pr-3 { + padding-right: 0.75rem !important; } - .sm\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .sm\:pr-4 { + padding-right: 1rem !important; } - .sm\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .sm\:pr-5 { + padding-right: 1.25rem !important; } - .sm\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .sm\:pr-6 { + padding-right: 1.5rem !important; } - .sm\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .sm\:pr-7 { + padding-right: 1.75rem !important; } - .sm\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .sm\:pr-8 { + padding-right: 2rem !important; } - .sm\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .sm\:pr-9 { + padding-right: 2.25rem !important; } - .sm\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .sm\:pr-10 { + padding-right: 2.5rem !important; } - .sm\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .sm\:pr-11 { + padding-right: 2.75rem !important; } - .sm\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .sm\:pr-12 { + padding-right: 3rem !important; } - .sm\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .sm\:pr-14 { + padding-right: 3.5rem !important; } - .sm\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .sm\:pr-16 { + padding-right: 4rem !important; } - .sm\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .sm\:pr-20 { + padding-right: 5rem !important; } - .sm\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .sm\:pr-24 { + padding-right: 6rem !important; } - .sm\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .sm\:pr-28 { + padding-right: 7rem !important; } - .sm\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .sm\:pr-32 { + padding-right: 8rem !important; } - .sm\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .sm\:pr-36 { + padding-right: 9rem !important; } - .sm\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .sm\:pr-40 { + padding-right: 10rem !important; } - .sm\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .sm\:pr-44 { + padding-right: 11rem !important; } - .sm\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .sm\:pr-48 { + padding-right: 12rem !important; } - .sm\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .sm\:pr-52 { + padding-right: 13rem !important; } - .sm\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .sm\:pr-56 { + padding-right: 14rem !important; } - .sm\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .sm\:pr-60 { + padding-right: 15rem !important; } - .sm\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .sm\:pr-64 { + padding-right: 16rem !important; } - .sm\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .sm\:pr-72 { + padding-right: 18rem !important; } - .sm\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .sm\:pr-80 { + padding-right: 20rem !important; } - .sm\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .sm\:pr-96 { + padding-right: 24rem !important; } - .sm\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .sm\:pr-px { + padding-right: 1px !important; } - .sm\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .sm\:pr-0\.5 { + padding-right: 0.125rem !important; } - .sm\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .sm\:pr-1\.5 { + padding-right: 0.375rem !important; } - .sm\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .sm\:pr-2\.5 { + padding-right: 0.625rem !important; } - .sm\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .sm\:pr-3\.5 { + padding-right: 0.875rem !important; } - .sm\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .sm\:pb-0 { + padding-bottom: 0px !important; } - .sm\:focus\:ring-transparent:focus { - --tw-ring-color: transparent !important; + .sm\:pb-1 { + padding-bottom: 0.25rem !important; } - .sm\:focus\:ring-current:focus { - --tw-ring-color: currentColor !important; + .sm\:pb-2 { + padding-bottom: 0.5rem !important; } - .sm\:focus\:ring-black:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .sm\:pb-3 { + padding-bottom: 0.75rem !important; } - .sm\:focus\:ring-white:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .sm\:pb-4 { + padding-bottom: 1rem !important; } - .sm\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .sm\:pb-5 { + padding-bottom: 1.25rem !important; } - .sm\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .sm\:pb-6 { + padding-bottom: 1.5rem !important; } - .sm\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .sm\:pb-7 { + padding-bottom: 1.75rem !important; } - .sm\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .sm\:pb-8 { + padding-bottom: 2rem !important; } - .sm\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .sm\:pb-9 { + padding-bottom: 2.25rem !important; } - .sm\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .sm\:pb-10 { + padding-bottom: 2.5rem !important; } - .sm\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .sm\:pb-11 { + padding-bottom: 2.75rem !important; } - .sm\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .sm\:pb-12 { + padding-bottom: 3rem !important; } - .sm\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .sm\:pb-14 { + padding-bottom: 3.5rem !important; } - .sm\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .sm\:pb-16 { + padding-bottom: 4rem !important; } - .sm\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .sm\:pb-20 { + padding-bottom: 5rem !important; } - .sm\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .sm\:pb-24 { + padding-bottom: 6rem !important; } - .sm\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .sm\:pb-28 { + padding-bottom: 7rem !important; } - .sm\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .sm\:pb-32 { + padding-bottom: 8rem !important; } - .sm\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .sm\:pb-36 { + padding-bottom: 9rem !important; } - .sm\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .sm\:pb-40 { + padding-bottom: 10rem !important; } - .sm\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .sm\:pb-44 { + padding-bottom: 11rem !important; } - .sm\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .sm\:pb-48 { + padding-bottom: 12rem !important; } - .sm\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .sm\:pb-52 { + padding-bottom: 13rem !important; } - .sm\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .sm\:pb-56 { + padding-bottom: 14rem !important; } - .sm\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .sm\:pb-60 { + padding-bottom: 15rem !important; } - .sm\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .sm\:pb-64 { + padding-bottom: 16rem !important; } - .sm\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .sm\:pb-72 { + padding-bottom: 18rem !important; } - .sm\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .sm\:pb-80 { + padding-bottom: 20rem !important; } - .sm\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .sm\:pb-96 { + padding-bottom: 24rem !important; } - .sm\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .sm\:pb-px { + padding-bottom: 1px !important; } - .sm\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .sm\:pb-0\.5 { + padding-bottom: 0.125rem !important; } - .sm\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .sm\:pb-1\.5 { + padding-bottom: 0.375rem !important; } - .sm\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .sm\:pb-2\.5 { + padding-bottom: 0.625rem !important; } - .sm\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .sm\:pb-3\.5 { + padding-bottom: 0.875rem !important; } - .sm\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .sm\:pl-0 { + padding-left: 0px !important; } - .sm\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .sm\:pl-1 { + padding-left: 0.25rem !important; } - .sm\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .sm\:pl-2 { + padding-left: 0.5rem !important; } - .sm\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .sm\:pl-3 { + padding-left: 0.75rem !important; } - .sm\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .sm\:pl-4 { + padding-left: 1rem !important; } - .sm\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .sm\:pl-5 { + padding-left: 1.25rem !important; } - .sm\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .sm\:pl-6 { + padding-left: 1.5rem !important; } - .sm\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .sm\:pl-7 { + padding-left: 1.75rem !important; } - .sm\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .sm\:pl-8 { + padding-left: 2rem !important; } - .sm\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .sm\:pl-9 { + padding-left: 2.25rem !important; } - .sm\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .sm\:pl-10 { + padding-left: 2.5rem !important; } - .sm\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .sm\:pl-11 { + padding-left: 2.75rem !important; } - .sm\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .sm\:pl-12 { + padding-left: 3rem !important; } - .sm\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .sm\:pl-14 { + padding-left: 3.5rem !important; } - .sm\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .sm\:pl-16 { + padding-left: 4rem !important; } - .sm\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .sm\:pl-20 { + padding-left: 5rem !important; } - .sm\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .sm\:pl-24 { + padding-left: 6rem !important; } - .sm\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .sm\:pl-28 { + padding-left: 7rem !important; } - .sm\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .sm\:pl-32 { + padding-left: 8rem !important; } - .sm\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .sm\:pl-36 { + padding-left: 9rem !important; } - .sm\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .sm\:pl-40 { + padding-left: 10rem !important; } - .sm\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .sm\:pl-44 { + padding-left: 11rem !important; } - .sm\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .sm\:pl-48 { + padding-left: 12rem !important; } - .sm\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .sm\:pl-52 { + padding-left: 13rem !important; } - .sm\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .sm\:pl-56 { + padding-left: 14rem !important; } - .sm\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .sm\:pl-60 { + padding-left: 15rem !important; } - .sm\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .sm\:pl-64 { + padding-left: 16rem !important; } - .sm\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .sm\:pl-72 { + padding-left: 18rem !important; } - .sm\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .sm\:pl-80 { + padding-left: 20rem !important; } - .sm\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .sm\:pl-96 { + padding-left: 24rem !important; } - .sm\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .sm\:pl-px { + padding-left: 1px !important; } - .sm\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .sm\:pl-0\.5 { + padding-left: 0.125rem !important; } - .sm\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .sm\:pl-1\.5 { + padding-left: 0.375rem !important; } - .sm\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .sm\:pl-2\.5 { + padding-left: 0.625rem !important; } - .sm\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .sm\:pl-3\.5 { + padding-left: 0.875rem !important; } - .sm\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .sm\:text-left { + text-align: left !important; } - .sm\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .sm\:text-center { + text-align: center !important; } - .sm\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .sm\:text-right { + text-align: right !important; } - .sm\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .sm\:text-justify { + text-align: justify !important; } - .sm\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .sm\:align-baseline { + vertical-align: baseline !important; } - .sm\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .sm\:align-top { + vertical-align: top !important; } - .sm\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .sm\:align-middle { + vertical-align: middle !important; } - .sm\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .sm\:align-bottom { + vertical-align: bottom !important; } - .sm\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .sm\:align-text-top { + vertical-align: text-top !important; } - .sm\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .sm\:align-text-bottom { + vertical-align: text-bottom !important; } - .sm\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .sm\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; } - .sm\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .sm\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; } - .sm\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .sm\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; } - .sm\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .sm\:text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; } - .sm\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .sm\:text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; } - .sm\:ring-opacity-0 { - --tw-ring-opacity: 0 !important; + .sm\:text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; } - .sm\:ring-opacity-5 { - --tw-ring-opacity: 0.05 !important; + .sm\:text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; } - .sm\:ring-opacity-10 { - --tw-ring-opacity: 0.1 !important; + .sm\:text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; } - .sm\:ring-opacity-20 { - --tw-ring-opacity: 0.2 !important; + .sm\:text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; } - .sm\:ring-opacity-25 { - --tw-ring-opacity: 0.25 !important; + .sm\:text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; } - .sm\:ring-opacity-30 { - --tw-ring-opacity: 0.3 !important; + .sm\:text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; } - .sm\:ring-opacity-40 { - --tw-ring-opacity: 0.4 !important; + .sm\:text-5xl { + font-size: 3rem !important; + line-height: 1 !important; } - .sm\:ring-opacity-50 { - --tw-ring-opacity: 0.5 !important; + .sm\:text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; } - .sm\:ring-opacity-60 { - --tw-ring-opacity: 0.6 !important; + .sm\:text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; } - .sm\:ring-opacity-70 { - --tw-ring-opacity: 0.7 !important; + .sm\:text-8xl { + font-size: 6rem !important; + line-height: 1 !important; } - .sm\:ring-opacity-75 { - --tw-ring-opacity: 0.75 !important; + .sm\:text-9xl { + font-size: 8rem !important; + line-height: 1 !important; } - .sm\:ring-opacity-80 { - --tw-ring-opacity: 0.8 !important; + .sm\:font-thin { + font-weight: 100 !important; } - .sm\:ring-opacity-90 { - --tw-ring-opacity: 0.9 !important; + .sm\:font-extralight { + font-weight: 200 !important; } - .sm\:ring-opacity-95 { - --tw-ring-opacity: 0.95 !important; + .sm\:font-light { + font-weight: 300 !important; } - .sm\:ring-opacity-100 { - --tw-ring-opacity: 1 !important; + .sm\:font-normal { + font-weight: 400 !important; } - .sm\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0 !important; + .sm\:font-medium { + font-weight: 500 !important; } - .sm\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05 !important; + .sm\:font-semibold { + font-weight: 600 !important; } - .sm\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1 !important; + .sm\:font-bold { + font-weight: 700 !important; } - .sm\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2 !important; + .sm\:font-extrabold { + font-weight: 800 !important; } - .sm\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25 !important; + .sm\:font-black { + font-weight: 900 !important; } - .sm\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3 !important; + .sm\:uppercase { + text-transform: uppercase !important; } - .sm\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4 !important; + .sm\:lowercase { + text-transform: lowercase !important; } - .sm\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5 !important; + .sm\:capitalize { + text-transform: capitalize !important; } - .sm\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6 !important; + .sm\:normal-case { + text-transform: none !important; } - .sm\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7 !important; + .sm\:italic { + font-style: italic !important; } - .sm\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75 !important; + .sm\:not-italic { + font-style: normal !important; } - .sm\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8 !important; + .sm\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; } - .sm\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9 !important; + .sm\:normal-nums { + font-variant-numeric: normal !important; } - .sm\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95 !important; + .sm\:ordinal { + --tw-ordinal: ordinal !important; } - .sm\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1 !important; + .sm\:slashed-zero { + --tw-slashed-zero: slashed-zero !important; } - .sm\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0 !important; + .sm\:lining-nums { + --tw-numeric-figure: lining-nums !important; } - .sm\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05 !important; + .sm\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; } - .sm\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1 !important; + .sm\:proportional-nums { + --tw-numeric-spacing: proportional-nums !important; } - .sm\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2 !important; + .sm\:tabular-nums { + --tw-numeric-spacing: tabular-nums !important; } - .sm\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25 !important; + .sm\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; } - .sm\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3 !important; + .sm\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; } - .sm\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4 !important; + .sm\:leading-3 { + line-height: .75rem !important; } - .sm\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5 !important; + .sm\:leading-4 { + line-height: 1rem !important; } - .sm\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6 !important; + .sm\:leading-5 { + line-height: 1.25rem !important; } - .sm\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7 !important; + .sm\:leading-6 { + line-height: 1.5rem !important; } - .sm\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75 !important; + .sm\:leading-7 { + line-height: 1.75rem !important; } - .sm\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8 !important; + .sm\:leading-8 { + line-height: 2rem !important; } - .sm\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9 !important; + .sm\:leading-9 { + line-height: 2.25rem !important; } - .sm\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95 !important; + .sm\:leading-10 { + line-height: 2.5rem !important; } - .sm\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1 !important; + .sm\:leading-none { + line-height: 1 !important; } - .sm\:fill-current { - fill: currentColor !important; + .sm\:leading-tight { + line-height: 1.25 !important; } - .sm\:stroke-current { - stroke: currentColor !important; + .sm\:leading-snug { + line-height: 1.375 !important; } - .sm\:stroke-0 { - stroke-width: 0 !important; + .sm\:leading-normal { + line-height: 1.5 !important; } - .sm\:stroke-1 { - stroke-width: 1 !important; + .sm\:leading-relaxed { + line-height: 1.625 !important; } - .sm\:stroke-2 { - stroke-width: 2 !important; + .sm\:leading-loose { + line-height: 2 !important; } - .sm\:table-auto { - table-layout: auto !important; + .sm\:tracking-tighter { + letter-spacing: -0.05em !important; } - .sm\:table-fixed { - table-layout: fixed !important; + .sm\:tracking-tight { + letter-spacing: -0.025em !important; } - .sm\:text-left { - text-align: left !important; + .sm\:tracking-normal { + letter-spacing: 0em !important; } - .sm\:text-center { - text-align: center !important; + .sm\:tracking-wide { + letter-spacing: 0.025em !important; } - .sm\:text-right { - text-align: right !important; + .sm\:tracking-wider { + letter-spacing: 0.05em !important; } - .sm\:text-justify { - text-align: justify !important; + .sm\:tracking-widest { + letter-spacing: 0.1em !important; } .sm\:text-transparent { @@ -53869,44 +54058,6 @@ video { --tw-text-opacity: 1 !important; } - .sm\:truncate { - overflow: hidden !important; - text-overflow: ellipsis !important; - white-space: nowrap !important; - } - - .sm\:overflow-ellipsis { - text-overflow: ellipsis !important; - } - - .sm\:overflow-clip { - text-overflow: clip !important; - } - - .sm\:italic { - font-style: italic !important; - } - - .sm\:not-italic { - font-style: normal !important; - } - - .sm\:uppercase { - text-transform: uppercase !important; - } - - .sm\:lowercase { - text-transform: lowercase !important; - } - - .sm\:capitalize { - text-transform: capitalize !important; - } - - .sm\:normal-case { - text-transform: none !important; - } - .sm\:underline { text-decoration: underline !important; } @@ -53977,4258 +54128,4669 @@ video { -moz-osx-font-smoothing: auto !important; } - .sm\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; - } - - .sm\:normal-nums { - font-variant-numeric: normal !important; - } - - .sm\:ordinal { - --tw-ordinal: ordinal !important; - } - - .sm\:slashed-zero { - --tw-slashed-zero: slashed-zero !important; - } - - .sm\:lining-nums { - --tw-numeric-figure: lining-nums !important; - } - - .sm\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums !important; - } - - .sm\:proportional-nums { - --tw-numeric-spacing: proportional-nums !important; - } - - .sm\:tabular-nums { - --tw-numeric-spacing: tabular-nums !important; - } - - .sm\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions !important; - } - - .sm\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions !important; - } - - .sm\:tracking-tighter { - letter-spacing: -0.05em !important; - } - - .sm\:tracking-tight { - letter-spacing: -0.025em !important; - } - - .sm\:tracking-normal { - letter-spacing: 0em !important; - } - - .sm\:tracking-wide { - letter-spacing: 0.025em !important; + .sm\:placeholder-transparent::placeholder { + color: transparent !important; } - .sm\:tracking-wider { - letter-spacing: 0.05em !important; + .sm\:placeholder-current::placeholder { + color: currentColor !important; } - .sm\:tracking-widest { - letter-spacing: 0.1em !important; + .sm\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } - .sm\:select-none { - user-select: none !important; + .sm\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } - .sm\:select-text { - user-select: text !important; + .sm\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } - .sm\:select-all { - user-select: all !important; + .sm\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } - .sm\:select-auto { - user-select: auto !important; + .sm\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } - .sm\:align-baseline { - vertical-align: baseline !important; + .sm\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } - .sm\:align-top { - vertical-align: top !important; + .sm\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } - .sm\:align-middle { - vertical-align: middle !important; + .sm\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } - .sm\:align-bottom { - vertical-align: bottom !important; + .sm\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } - .sm\:align-text-top { - vertical-align: text-top !important; + .sm\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } - .sm\:align-text-bottom { - vertical-align: text-bottom !important; + .sm\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } - .sm\:visible { - visibility: visible !important; + .sm\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } - .sm\:invisible { - visibility: hidden !important; + .sm\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } - .sm\:whitespace-normal { - white-space: normal !important; + .sm\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } - .sm\:whitespace-nowrap { - white-space: nowrap !important; + .sm\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } - .sm\:whitespace-pre { - white-space: pre !important; + .sm\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } - .sm\:whitespace-pre-line { - white-space: pre-line !important; + .sm\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } - .sm\:whitespace-pre-wrap { - white-space: pre-wrap !important; + .sm\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } - .sm\:break-normal { - overflow-wrap: normal !important; - word-break: normal !important; + .sm\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } - .sm\:break-words { - overflow-wrap: break-word !important; + .sm\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } - .sm\:break-all { - word-break: break-all !important; + .sm\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } - .sm\:w-0 { - width: 0px !important; + .sm\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } - .sm\:w-1 { - width: 0.25rem !important; + .sm\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } - .sm\:w-2 { - width: 0.5rem !important; + .sm\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } - .sm\:w-3 { - width: 0.75rem !important; + .sm\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } - .sm\:w-4 { - width: 1rem !important; + .sm\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } - .sm\:w-5 { - width: 1.25rem !important; + .sm\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } - .sm\:w-6 { - width: 1.5rem !important; + .sm\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } - .sm\:w-7 { - width: 1.75rem !important; + .sm\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } - .sm\:w-8 { - width: 2rem !important; + .sm\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } - .sm\:w-9 { - width: 2.25rem !important; + .sm\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } - .sm\:w-10 { - width: 2.5rem !important; + .sm\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } - .sm\:w-11 { - width: 2.75rem !important; + .sm\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } - .sm\:w-12 { - width: 3rem !important; + .sm\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } - .sm\:w-14 { - width: 3.5rem !important; + .sm\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } - .sm\:w-16 { - width: 4rem !important; + .sm\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } - .sm\:w-20 { - width: 5rem !important; + .sm\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } - .sm\:w-24 { - width: 6rem !important; + .sm\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } - .sm\:w-28 { - width: 7rem !important; + .sm\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } - .sm\:w-32 { - width: 8rem !important; + .sm\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } - .sm\:w-36 { - width: 9rem !important; + .sm\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } - .sm\:w-40 { - width: 10rem !important; + .sm\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } - .sm\:w-44 { - width: 11rem !important; + .sm\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } - .sm\:w-48 { - width: 12rem !important; + .sm\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } - .sm\:w-52 { - width: 13rem !important; + .sm\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } - .sm\:w-56 { - width: 14rem !important; + .sm\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } - .sm\:w-60 { - width: 15rem !important; + .sm\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } - .sm\:w-64 { - width: 16rem !important; + .sm\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } - .sm\:w-72 { - width: 18rem !important; + .sm\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } - .sm\:w-80 { - width: 20rem !important; + .sm\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } - .sm\:w-96 { - width: 24rem !important; + .sm\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } - .sm\:w-auto { - width: auto !important; + .sm\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } - .sm\:w-px { - width: 1px !important; + .sm\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } - .sm\:w-0\.5 { - width: 0.125rem !important; + .sm\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } - .sm\:w-1\.5 { - width: 0.375rem !important; + .sm\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } - .sm\:w-2\.5 { - width: 0.625rem !important; + .sm\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } - .sm\:w-3\.5 { - width: 0.875rem !important; + .sm\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } - .sm\:w-1\/2 { - width: 50% !important; + .sm\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } - .sm\:w-1\/3 { - width: 33.333333% !important; + .sm\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } - .sm\:w-2\/3 { - width: 66.666667% !important; + .sm\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } - .sm\:w-1\/4 { - width: 25% !important; + .sm\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } - .sm\:w-2\/4 { - width: 50% !important; + .sm\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } - .sm\:w-3\/4 { - width: 75% !important; + .sm\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } - .sm\:w-1\/5 { - width: 20% !important; + .sm\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } - .sm\:w-2\/5 { - width: 40% !important; + .sm\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } - .sm\:w-3\/5 { - width: 60% !important; + .sm\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } - .sm\:w-4\/5 { - width: 80% !important; + .sm\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } - .sm\:w-1\/6 { - width: 16.666667% !important; + .sm\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } - .sm\:w-2\/6 { - width: 33.333333% !important; + .sm\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } - .sm\:w-3\/6 { - width: 50% !important; + .sm\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } - .sm\:w-4\/6 { - width: 66.666667% !important; + .sm\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } - .sm\:w-5\/6 { - width: 83.333333% !important; + .sm\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } - .sm\:w-1\/12 { - width: 8.333333% !important; + .sm\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } - .sm\:w-2\/12 { - width: 16.666667% !important; + .sm\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } - .sm\:w-3\/12 { - width: 25% !important; + .sm\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } - .sm\:w-4\/12 { - width: 33.333333% !important; + .sm\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } - .sm\:w-5\/12 { - width: 41.666667% !important; + .sm\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } - .sm\:w-6\/12 { - width: 50% !important; + .sm\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } - .sm\:w-7\/12 { - width: 58.333333% !important; + .sm\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } - .sm\:w-8\/12 { - width: 66.666667% !important; + .sm\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } - .sm\:w-9\/12 { - width: 75% !important; + .sm\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } - .sm\:w-10\/12 { - width: 83.333333% !important; + .sm\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } - .sm\:w-11\/12 { - width: 91.666667% !important; + .sm\:focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; } - .sm\:w-full { - width: 100% !important; + .sm\:focus\:placeholder-current:focus::placeholder { + color: currentColor !important; } - .sm\:w-screen { - width: 100vw !important; + .sm\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } - .sm\:w-min { - width: min-content !important; + .sm\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } - .sm\:w-max { - width: max-content !important; + .sm\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } - .sm\:z-0 { - z-index: 0 !important; + .sm\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } - .sm\:z-10 { - z-index: 10 !important; + .sm\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } - .sm\:z-20 { - z-index: 20 !important; + .sm\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } - .sm\:z-30 { - z-index: 30 !important; + .sm\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } - .sm\:z-40 { - z-index: 40 !important; + .sm\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } - .sm\:z-50 { - z-index: 50 !important; + .sm\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } - .sm\:z-auto { - z-index: auto !important; + .sm\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } - .sm\:focus-within\:z-0:focus-within { - z-index: 0 !important; + .sm\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } - .sm\:focus-within\:z-10:focus-within { - z-index: 10 !important; + .sm\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } - .sm\:focus-within\:z-20:focus-within { - z-index: 20 !important; + .sm\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } - .sm\:focus-within\:z-30:focus-within { - z-index: 30 !important; + .sm\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } - .sm\:focus-within\:z-40:focus-within { - z-index: 40 !important; + .sm\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } - .sm\:focus-within\:z-50:focus-within { - z-index: 50 !important; + .sm\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } - .sm\:focus-within\:z-auto:focus-within { - z-index: auto !important; + .sm\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } - .sm\:focus\:z-0:focus { - z-index: 0 !important; + .sm\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } - .sm\:focus\:z-10:focus { - z-index: 10 !important; + .sm\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } - .sm\:focus\:z-20:focus { - z-index: 20 !important; + .sm\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } - .sm\:focus\:z-30:focus { - z-index: 30 !important; + .sm\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } - .sm\:focus\:z-40:focus { - z-index: 40 !important; + .sm\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } - .sm\:focus\:z-50:focus { - z-index: 50 !important; + .sm\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } - .sm\:focus\:z-auto:focus { - z-index: auto !important; + .sm\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } - .sm\:isolate { - isolation: isolate !important; + .sm\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } - .sm\:isolation-auto { - isolation: auto !important; + .sm\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-0 { - gap: 0px !important; + .sm\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-1 { - gap: 0.25rem !important; + .sm\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-2 { - gap: 0.5rem !important; + .sm\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-3 { - gap: 0.75rem !important; + .sm\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-4 { - gap: 1rem !important; + .sm\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-5 { - gap: 1.25rem !important; + .sm\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-6 { - gap: 1.5rem !important; + .sm\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-7 { - gap: 1.75rem !important; + .sm\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-8 { - gap: 2rem !important; + .sm\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-9 { - gap: 2.25rem !important; + .sm\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-10 { - gap: 2.5rem !important; + .sm\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-11 { - gap: 2.75rem !important; + .sm\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-12 { - gap: 3rem !important; + .sm\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-14 { - gap: 3.5rem !important; + .sm\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-16 { - gap: 4rem !important; + .sm\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-20 { - gap: 5rem !important; + .sm\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-24 { - gap: 6rem !important; + .sm\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-28 { - gap: 7rem !important; + .sm\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-32 { - gap: 8rem !important; + .sm\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-36 { - gap: 9rem !important; + .sm\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-40 { - gap: 10rem !important; + .sm\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-44 { - gap: 11rem !important; + .sm\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-48 { - gap: 12rem !important; + .sm\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-52 { - gap: 13rem !important; + .sm\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-56 { - gap: 14rem !important; + .sm\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-60 { - gap: 15rem !important; + .sm\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-64 { - gap: 16rem !important; + .sm\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-72 { - gap: 18rem !important; + .sm\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-80 { - gap: 20rem !important; + .sm\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-96 { - gap: 24rem !important; + .sm\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-px { - gap: 1px !important; + .sm\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-0\.5 { - gap: 0.125rem !important; + .sm\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-1\.5 { - gap: 0.375rem !important; + .sm\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-2\.5 { - gap: 0.625rem !important; + .sm\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-3\.5 { - gap: 0.875rem !important; + .sm\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-0 { - column-gap: 0px !important; + .sm\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-1 { - column-gap: 0.25rem !important; + .sm\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-2 { - column-gap: 0.5rem !important; + .sm\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-3 { - column-gap: 0.75rem !important; + .sm\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-4 { - column-gap: 1rem !important; + .sm\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-5 { - column-gap: 1.25rem !important; + .sm\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-6 { - column-gap: 1.5rem !important; + .sm\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-7 { - column-gap: 1.75rem !important; + .sm\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-8 { - column-gap: 2rem !important; + .sm\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-9 { - column-gap: 2.25rem !important; + .sm\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-10 { - column-gap: 2.5rem !important; + .sm\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-11 { - column-gap: 2.75rem !important; + .sm\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-12 { - column-gap: 3rem !important; + .sm\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-14 { - column-gap: 3.5rem !important; + .sm\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-16 { - column-gap: 4rem !important; + .sm\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-20 { - column-gap: 5rem !important; + .sm\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-24 { - column-gap: 6rem !important; + .sm\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-28 { - column-gap: 7rem !important; + .sm\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-32 { - column-gap: 8rem !important; + .sm\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-36 { - column-gap: 9rem !important; + .sm\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-40 { - column-gap: 10rem !important; + .sm\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } - .sm\:gap-x-44 { - column-gap: 11rem !important; + .sm\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; } - .sm\:gap-x-48 { - column-gap: 12rem !important; + .sm\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; } - .sm\:gap-x-52 { - column-gap: 13rem !important; + .sm\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; } - .sm\:gap-x-56 { - column-gap: 14rem !important; + .sm\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; } - .sm\:gap-x-60 { - column-gap: 15rem !important; + .sm\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; } - .sm\:gap-x-64 { - column-gap: 16rem !important; + .sm\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; } - .sm\:gap-x-72 { - column-gap: 18rem !important; + .sm\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; } - .sm\:gap-x-80 { - column-gap: 20rem !important; + .sm\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; } - .sm\:gap-x-96 { - column-gap: 24rem !important; + .sm\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; } - .sm\:gap-x-px { - column-gap: 1px !important; + .sm\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; } - .sm\:gap-x-0\.5 { - column-gap: 0.125rem !important; + .sm\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; } - .sm\:gap-x-1\.5 { - column-gap: 0.375rem !important; + .sm\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; } - .sm\:gap-x-2\.5 { - column-gap: 0.625rem !important; + .sm\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; } - .sm\:gap-x-3\.5 { - column-gap: 0.875rem !important; + .sm\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; } - .sm\:gap-y-0 { - row-gap: 0px !important; + .sm\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; } - .sm\:gap-y-1 { - row-gap: 0.25rem !important; + .sm\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; } - .sm\:gap-y-2 { - row-gap: 0.5rem !important; + .sm\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; } - .sm\:gap-y-3 { - row-gap: 0.75rem !important; + .sm\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; } - .sm\:gap-y-4 { - row-gap: 1rem !important; + .sm\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; } - .sm\:gap-y-5 { - row-gap: 1.25rem !important; + .sm\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; } - .sm\:gap-y-6 { - row-gap: 1.5rem !important; + .sm\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; } - .sm\:gap-y-7 { - row-gap: 1.75rem !important; + .sm\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; } - .sm\:gap-y-8 { - row-gap: 2rem !important; + .sm\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; } - .sm\:gap-y-9 { - row-gap: 2.25rem !important; + .sm\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; } - .sm\:gap-y-10 { - row-gap: 2.5rem !important; + .sm\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; } - .sm\:gap-y-11 { - row-gap: 2.75rem !important; + .sm\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; } - .sm\:gap-y-12 { - row-gap: 3rem !important; + .sm\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; } - .sm\:gap-y-14 { - row-gap: 3.5rem !important; + .sm\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; } - .sm\:gap-y-16 { - row-gap: 4rem !important; + .sm\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; } - .sm\:gap-y-20 { - row-gap: 5rem !important; + .sm\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; } - .sm\:gap-y-24 { - row-gap: 6rem !important; + .sm\:opacity-0 { + opacity: 0 !important; } - .sm\:gap-y-28 { - row-gap: 7rem !important; + .sm\:opacity-5 { + opacity: 0.05 !important; } - .sm\:gap-y-32 { - row-gap: 8rem !important; + .sm\:opacity-10 { + opacity: 0.1 !important; } - .sm\:gap-y-36 { - row-gap: 9rem !important; + .sm\:opacity-20 { + opacity: 0.2 !important; } - .sm\:gap-y-40 { - row-gap: 10rem !important; + .sm\:opacity-25 { + opacity: 0.25 !important; } - .sm\:gap-y-44 { - row-gap: 11rem !important; + .sm\:opacity-30 { + opacity: 0.3 !important; } - .sm\:gap-y-48 { - row-gap: 12rem !important; + .sm\:opacity-40 { + opacity: 0.4 !important; } - .sm\:gap-y-52 { - row-gap: 13rem !important; + .sm\:opacity-50 { + opacity: 0.5 !important; } - .sm\:gap-y-56 { - row-gap: 14rem !important; + .sm\:opacity-60 { + opacity: 0.6 !important; } - .sm\:gap-y-60 { - row-gap: 15rem !important; + .sm\:opacity-70 { + opacity: 0.7 !important; } - .sm\:gap-y-64 { - row-gap: 16rem !important; + .sm\:opacity-75 { + opacity: 0.75 !important; } - .sm\:gap-y-72 { - row-gap: 18rem !important; + .sm\:opacity-80 { + opacity: 0.8 !important; } - .sm\:gap-y-80 { - row-gap: 20rem !important; + .sm\:opacity-90 { + opacity: 0.9 !important; } - .sm\:gap-y-96 { - row-gap: 24rem !important; + .sm\:opacity-95 { + opacity: 0.95 !important; } - .sm\:gap-y-px { - row-gap: 1px !important; + .sm\:opacity-100 { + opacity: 1 !important; } - .sm\:gap-y-0\.5 { - row-gap: 0.125rem !important; + .group:hover .sm\:group-hover\:opacity-0 { + opacity: 0 !important; } - .sm\:gap-y-1\.5 { - row-gap: 0.375rem !important; + .group:hover .sm\:group-hover\:opacity-5 { + opacity: 0.05 !important; } - .sm\:gap-y-2\.5 { - row-gap: 0.625rem !important; + .group:hover .sm\:group-hover\:opacity-10 { + opacity: 0.1 !important; } - .sm\:gap-y-3\.5 { - row-gap: 0.875rem !important; + .group:hover .sm\:group-hover\:opacity-20 { + opacity: 0.2 !important; } - .sm\:grid-flow-row { - grid-auto-flow: row !important; + .group:hover .sm\:group-hover\:opacity-25 { + opacity: 0.25 !important; } - .sm\:grid-flow-col { - grid-auto-flow: column !important; + .group:hover .sm\:group-hover\:opacity-30 { + opacity: 0.3 !important; } - .sm\:grid-flow-row-dense { - grid-auto-flow: row dense !important; + .group:hover .sm\:group-hover\:opacity-40 { + opacity: 0.4 !important; } - .sm\:grid-flow-col-dense { - grid-auto-flow: column dense !important; + .group:hover .sm\:group-hover\:opacity-50 { + opacity: 0.5 !important; } - .sm\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)) !important; + .group:hover .sm\:group-hover\:opacity-60 { + opacity: 0.6 !important; } - .sm\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)) !important; + .group:hover .sm\:group-hover\:opacity-70 { + opacity: 0.7 !important; } - .sm\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)) !important; + .group:hover .sm\:group-hover\:opacity-75 { + opacity: 0.75 !important; } - .sm\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)) !important; + .group:hover .sm\:group-hover\:opacity-80 { + opacity: 0.8 !important; } - .sm\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)) !important; + .group:hover .sm\:group-hover\:opacity-90 { + opacity: 0.9 !important; } - .sm\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)) !important; + .group:hover .sm\:group-hover\:opacity-95 { + opacity: 0.95 !important; } - .sm\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)) !important; + .group:hover .sm\:group-hover\:opacity-100 { + opacity: 1 !important; } - .sm\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)) !important; + .sm\:focus-within\:opacity-0:focus-within { + opacity: 0 !important; } - .sm\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)) !important; + .sm\:focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; } - .sm\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)) !important; + .sm\:focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; } - .sm\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)) !important; + .sm\:focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; } - .sm\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)) !important; + .sm\:focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; } - .sm\:grid-cols-none { - grid-template-columns: none !important; + .sm\:focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; } - .sm\:auto-cols-auto { - grid-auto-columns: auto !important; + .sm\:focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; } - .sm\:auto-cols-min { - grid-auto-columns: min-content !important; + .sm\:focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; } - .sm\:auto-cols-max { - grid-auto-columns: max-content !important; + .sm\:focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; } - .sm\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr) !important; + .sm\:focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; } - .sm\:col-auto { - grid-column: auto !important; + .sm\:focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; } - .sm\:col-span-1 { - grid-column: span 1 / span 1 !important; + .sm\:focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; } - .sm\:col-span-2 { - grid-column: span 2 / span 2 !important; + .sm\:focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; } - .sm\:col-span-3 { - grid-column: span 3 / span 3 !important; + .sm\:focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; } - .sm\:col-span-4 { - grid-column: span 4 / span 4 !important; + .sm\:focus-within\:opacity-100:focus-within { + opacity: 1 !important; } - .sm\:col-span-5 { - grid-column: span 5 / span 5 !important; + .sm\:hover\:opacity-0:hover { + opacity: 0 !important; } - .sm\:col-span-6 { - grid-column: span 6 / span 6 !important; + .sm\:hover\:opacity-5:hover { + opacity: 0.05 !important; } - .sm\:col-span-7 { - grid-column: span 7 / span 7 !important; + .sm\:hover\:opacity-10:hover { + opacity: 0.1 !important; } - .sm\:col-span-8 { - grid-column: span 8 / span 8 !important; + .sm\:hover\:opacity-20:hover { + opacity: 0.2 !important; } - .sm\:col-span-9 { - grid-column: span 9 / span 9 !important; + .sm\:hover\:opacity-25:hover { + opacity: 0.25 !important; } - .sm\:col-span-10 { - grid-column: span 10 / span 10 !important; + .sm\:hover\:opacity-30:hover { + opacity: 0.3 !important; } - .sm\:col-span-11 { - grid-column: span 11 / span 11 !important; + .sm\:hover\:opacity-40:hover { + opacity: 0.4 !important; } - .sm\:col-span-12 { - grid-column: span 12 / span 12 !important; + .sm\:hover\:opacity-50:hover { + opacity: 0.5 !important; } - .sm\:col-span-full { - grid-column: 1 / -1 !important; + .sm\:hover\:opacity-60:hover { + opacity: 0.6 !important; } - .sm\:col-start-1 { - grid-column-start: 1 !important; + .sm\:hover\:opacity-70:hover { + opacity: 0.7 !important; } - .sm\:col-start-2 { - grid-column-start: 2 !important; + .sm\:hover\:opacity-75:hover { + opacity: 0.75 !important; } - .sm\:col-start-3 { - grid-column-start: 3 !important; + .sm\:hover\:opacity-80:hover { + opacity: 0.8 !important; } - .sm\:col-start-4 { - grid-column-start: 4 !important; + .sm\:hover\:opacity-90:hover { + opacity: 0.9 !important; } - .sm\:col-start-5 { - grid-column-start: 5 !important; + .sm\:hover\:opacity-95:hover { + opacity: 0.95 !important; } - .sm\:col-start-6 { - grid-column-start: 6 !important; + .sm\:hover\:opacity-100:hover { + opacity: 1 !important; } - .sm\:col-start-7 { - grid-column-start: 7 !important; + .sm\:focus\:opacity-0:focus { + opacity: 0 !important; } - .sm\:col-start-8 { - grid-column-start: 8 !important; + .sm\:focus\:opacity-5:focus { + opacity: 0.05 !important; } - .sm\:col-start-9 { - grid-column-start: 9 !important; + .sm\:focus\:opacity-10:focus { + opacity: 0.1 !important; } - .sm\:col-start-10 { - grid-column-start: 10 !important; + .sm\:focus\:opacity-20:focus { + opacity: 0.2 !important; } - .sm\:col-start-11 { - grid-column-start: 11 !important; + .sm\:focus\:opacity-25:focus { + opacity: 0.25 !important; } - .sm\:col-start-12 { - grid-column-start: 12 !important; + .sm\:focus\:opacity-30:focus { + opacity: 0.3 !important; } - .sm\:col-start-13 { - grid-column-start: 13 !important; + .sm\:focus\:opacity-40:focus { + opacity: 0.4 !important; } - .sm\:col-start-auto { - grid-column-start: auto !important; + .sm\:focus\:opacity-50:focus { + opacity: 0.5 !important; } - .sm\:col-end-1 { - grid-column-end: 1 !important; + .sm\:focus\:opacity-60:focus { + opacity: 0.6 !important; } - .sm\:col-end-2 { - grid-column-end: 2 !important; + .sm\:focus\:opacity-70:focus { + opacity: 0.7 !important; } - .sm\:col-end-3 { - grid-column-end: 3 !important; + .sm\:focus\:opacity-75:focus { + opacity: 0.75 !important; } - .sm\:col-end-4 { - grid-column-end: 4 !important; + .sm\:focus\:opacity-80:focus { + opacity: 0.8 !important; } - .sm\:col-end-5 { - grid-column-end: 5 !important; + .sm\:focus\:opacity-90:focus { + opacity: 0.9 !important; } - .sm\:col-end-6 { - grid-column-end: 6 !important; + .sm\:focus\:opacity-95:focus { + opacity: 0.95 !important; } - .sm\:col-end-7 { - grid-column-end: 7 !important; + .sm\:focus\:opacity-100:focus { + opacity: 1 !important; } - .sm\:col-end-8 { - grid-column-end: 8 !important; + .sm\:bg-blend-normal { + background-blend-mode: normal !important; } - .sm\:col-end-9 { - grid-column-end: 9 !important; + .sm\:bg-blend-multiply { + background-blend-mode: multiply !important; } - .sm\:col-end-10 { - grid-column-end: 10 !important; + .sm\:bg-blend-screen { + background-blend-mode: screen !important; } - .sm\:col-end-11 { - grid-column-end: 11 !important; + .sm\:bg-blend-overlay { + background-blend-mode: overlay !important; } - .sm\:col-end-12 { - grid-column-end: 12 !important; + .sm\:bg-blend-darken { + background-blend-mode: darken !important; } - .sm\:col-end-13 { - grid-column-end: 13 !important; + .sm\:bg-blend-lighten { + background-blend-mode: lighten !important; } - .sm\:col-end-auto { - grid-column-end: auto !important; + .sm\:bg-blend-color-dodge { + background-blend-mode: color-dodge !important; } - .sm\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)) !important; + .sm\:bg-blend-color-burn { + background-blend-mode: color-burn !important; } - .sm\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)) !important; + .sm\:bg-blend-hard-light { + background-blend-mode: hard-light !important; } - .sm\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)) !important; + .sm\:bg-blend-soft-light { + background-blend-mode: soft-light !important; } - .sm\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)) !important; + .sm\:bg-blend-difference { + background-blend-mode: difference !important; } - .sm\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)) !important; + .sm\:bg-blend-exclusion { + background-blend-mode: exclusion !important; } - .sm\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)) !important; + .sm\:bg-blend-hue { + background-blend-mode: hue !important; } - .sm\:grid-rows-none { - grid-template-rows: none !important; + .sm\:bg-blend-saturation { + background-blend-mode: saturation !important; } - .sm\:auto-rows-auto { - grid-auto-rows: auto !important; + .sm\:bg-blend-color { + background-blend-mode: color !important; } - .sm\:auto-rows-min { - grid-auto-rows: min-content !important; + .sm\:bg-blend-luminosity { + background-blend-mode: luminosity !important; } - .sm\:auto-rows-max { - grid-auto-rows: max-content !important; + .sm\:mix-blend-normal { + mix-blend-mode: normal !important; } - .sm\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr) !important; + .sm\:mix-blend-multiply { + mix-blend-mode: multiply !important; } - .sm\:row-auto { - grid-row: auto !important; + .sm\:mix-blend-screen { + mix-blend-mode: screen !important; } - .sm\:row-span-1 { - grid-row: span 1 / span 1 !important; + .sm\:mix-blend-overlay { + mix-blend-mode: overlay !important; } - .sm\:row-span-2 { - grid-row: span 2 / span 2 !important; + .sm\:mix-blend-darken { + mix-blend-mode: darken !important; } - .sm\:row-span-3 { - grid-row: span 3 / span 3 !important; + .sm\:mix-blend-lighten { + mix-blend-mode: lighten !important; } - .sm\:row-span-4 { - grid-row: span 4 / span 4 !important; + .sm\:mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; } - .sm\:row-span-5 { - grid-row: span 5 / span 5 !important; + .sm\:mix-blend-color-burn { + mix-blend-mode: color-burn !important; } - .sm\:row-span-6 { - grid-row: span 6 / span 6 !important; + .sm\:mix-blend-hard-light { + mix-blend-mode: hard-light !important; } - .sm\:row-span-full { - grid-row: 1 / -1 !important; + .sm\:mix-blend-soft-light { + mix-blend-mode: soft-light !important; } - .sm\:row-start-1 { - grid-row-start: 1 !important; + .sm\:mix-blend-difference { + mix-blend-mode: difference !important; } - .sm\:row-start-2 { - grid-row-start: 2 !important; + .sm\:mix-blend-exclusion { + mix-blend-mode: exclusion !important; } - .sm\:row-start-3 { - grid-row-start: 3 !important; + .sm\:mix-blend-hue { + mix-blend-mode: hue !important; } - .sm\:row-start-4 { - grid-row-start: 4 !important; + .sm\:mix-blend-saturation { + mix-blend-mode: saturation !important; } - .sm\:row-start-5 { - grid-row-start: 5 !important; + .sm\:mix-blend-color { + mix-blend-mode: color !important; } - .sm\:row-start-6 { - grid-row-start: 6 !important; + .sm\:mix-blend-luminosity { + mix-blend-mode: luminosity !important; } - .sm\:row-start-7 { - grid-row-start: 7 !important; + .sm\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:row-start-auto { - grid-row-start: auto !important; + .sm\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:row-end-1 { - grid-row-end: 1 !important; + .sm\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:row-end-2 { - grid-row-end: 2 !important; + .sm\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:row-end-3 { - grid-row-end: 3 !important; + .sm\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:row-end-4 { - grid-row-end: 4 !important; + .sm\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:row-end-5 { - grid-row-end: 5 !important; + .sm\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:row-end-6 { - grid-row-end: 6 !important; + .sm\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:row-end-7 { - grid-row-end: 7 !important; + .group:hover .sm\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:row-end-auto { - grid-row-end: auto !important; + .group:hover .sm\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:transform { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + .group:hover .sm\:group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:transform-gpu { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + .group:hover .sm\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:transform-none { - transform: none !important; + .group:hover .sm\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:origin-center { - transform-origin: center !important; + .group:hover .sm\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:origin-top { - transform-origin: top !important; + .group:hover .sm\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:origin-top-right { - transform-origin: top right !important; + .group:hover .sm\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:origin-right { - transform-origin: right !important; + .sm\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:origin-bottom-right { - transform-origin: bottom right !important; + .sm\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:origin-bottom { - transform-origin: bottom !important; + .sm\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:origin-bottom-left { - transform-origin: bottom left !important; + .sm\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:origin-left { - transform-origin: left !important; + .sm\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:origin-top-left { - transform-origin: top left !important; + .sm\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-0 { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .sm\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-50 { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .sm\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-75 { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .sm\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-90 { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .sm\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-95 { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; + .sm\:hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-100 { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .sm\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-105 { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .sm\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-110 { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .sm\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-125 { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .sm\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-150 { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .sm\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-x-0 { - --tw-scale-x: 0 !important; + .sm\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-x-50 { - --tw-scale-x: .5 !important; + .sm\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-x-75 { - --tw-scale-x: .75 !important; + .sm\:focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-x-90 { - --tw-scale-x: .9 !important; + .sm\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-x-95 { - --tw-scale-x: .95 !important; + .sm\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-x-100 { - --tw-scale-x: 1 !important; + .sm\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-x-105 { - --tw-scale-x: 1.05 !important; + .sm\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-x-110 { - --tw-scale-x: 1.1 !important; + .sm\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .sm\:scale-x-125 { - --tw-scale-x: 1.25 !important; + .sm\:outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .sm\:scale-x-150 { - --tw-scale-x: 1.5 !important; + .sm\:outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .sm\:scale-y-0 { - --tw-scale-y: 0 !important; + .sm\:outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .sm\:scale-y-50 { - --tw-scale-y: .5 !important; + .sm\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .sm\:scale-y-75 { - --tw-scale-y: .75 !important; + .sm\:focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .sm\:scale-y-90 { - --tw-scale-y: .9 !important; + .sm\:focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .sm\:scale-y-95 { - --tw-scale-y: .95 !important; + .sm\:focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .sm\:scale-y-100 { - --tw-scale-y: 1 !important; + .sm\:focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .sm\:scale-y-105 { - --tw-scale-y: 1.05 !important; + .sm\:focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .sm\:scale-y-110 { - --tw-scale-y: 1.1 !important; + .sm\:ring-0 { + --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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:scale-y-125 { - --tw-scale-y: 1.25 !important; + .sm\:ring-1 { + --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:scale-y-150 { - --tw-scale-y: 1.5 !important; + .sm\:ring-2 { + --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-0:hover { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .sm\:ring-4 { + --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-50:hover { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .sm\:ring-8 { + --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-75:hover { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .sm\:ring { + --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-90:hover { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .sm\:ring-inset { + --tw-ring-inset: inset !important; } - .sm\:hover\:scale-95:hover { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-100:hover { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .sm\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-105:hover { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .sm\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-110:hover { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .sm\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-125:hover { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .sm\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-150:hover { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .sm\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-x-0:hover { - --tw-scale-x: 0 !important; + .sm\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; } - .sm\:hover\:scale-x-50:hover { - --tw-scale-x: .5 !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-x-75:hover { - --tw-scale-x: .75 !important; + .sm\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-x-90:hover { - --tw-scale-x: .9 !important; + .sm\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-x-95:hover { - --tw-scale-x: .95 !important; + .sm\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-x-100:hover { - --tw-scale-x: 1 !important; + .sm\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05 !important; + .sm\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1 !important; + .sm\:focus\:ring-inset:focus { + --tw-ring-inset: inset !important; } - .sm\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25 !important; + .sm\:ring-transparent { + --tw-ring-color: transparent !important; } - .sm\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5 !important; + .sm\:ring-current { + --tw-ring-color: currentColor !important; } - .sm\:hover\:scale-y-0:hover { - --tw-scale-y: 0 !important; + .sm\:ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .sm\:hover\:scale-y-50:hover { - --tw-scale-y: .5 !important; + .sm\:ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .sm\:hover\:scale-y-75:hover { - --tw-scale-y: .75 !important; + .sm\:ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .sm\:hover\:scale-y-90:hover { - --tw-scale-y: .9 !important; + .sm\:ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .sm\:hover\:scale-y-95:hover { - --tw-scale-y: .95 !important; + .sm\:ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .sm\:hover\:scale-y-100:hover { - --tw-scale-y: 1 !important; + .sm\:ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .sm\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05 !important; + .sm\:ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .sm\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1 !important; + .sm\:ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .sm\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25 !important; + .sm\:ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .sm\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5 !important; + .sm\:ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .sm\:ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .sm\:ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .sm\:ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .sm\:ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; + .sm\:ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .sm\:ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .sm\:ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .sm\:ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .sm\:ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .sm\:ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-x-0:focus { - --tw-scale-x: 0 !important; + .sm\:ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-x-50:focus { - --tw-scale-x: .5 !important; + .sm\:ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-x-75:focus { - --tw-scale-x: .75 !important; + .sm\:ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-x-90:focus { - --tw-scale-x: .9 !important; + .sm\:ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-x-95:focus { - --tw-scale-x: .95 !important; + .sm\:ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-x-100:focus { - --tw-scale-x: 1 !important; + .sm\:ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05 !important; + .sm\:ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1 !important; + .sm\:ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25 !important; + .sm\:ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5 !important; + .sm\:ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-y-0:focus { - --tw-scale-y: 0 !important; + .sm\:ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-y-50:focus { - --tw-scale-y: .5 !important; + .sm\:ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-y-75:focus { - --tw-scale-y: .75 !important; + .sm\:ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-y-90:focus { - --tw-scale-y: .9 !important; + .sm\:ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-y-95:focus { - --tw-scale-y: .95 !important; + .sm\:ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-y-100:focus { - --tw-scale-y: 1 !important; + .sm\:ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05 !important; + .sm\:ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1 !important; + .sm\:ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25 !important; + .sm\:ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .sm\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5 !important; + .sm\:ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .sm\:rotate-0 { - --tw-rotate: 0deg !important; + .sm\:ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .sm\:rotate-1 { - --tw-rotate: 1deg !important; + .sm\:ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .sm\:rotate-2 { - --tw-rotate: 2deg !important; + .sm\:ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .sm\:rotate-3 { - --tw-rotate: 3deg !important; + .sm\:ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .sm\:rotate-6 { - --tw-rotate: 6deg !important; + .sm\:ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .sm\:rotate-12 { - --tw-rotate: 12deg !important; + .sm\:ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .sm\:rotate-45 { - --tw-rotate: 45deg !important; + .sm\:ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .sm\:rotate-90 { - --tw-rotate: 90deg !important; + .sm\:ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .sm\:rotate-180 { - --tw-rotate: 180deg !important; + .sm\:ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .sm\:-rotate-180 { - --tw-rotate: -180deg !important; + .sm\:ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .sm\:-rotate-90 { - --tw-rotate: -90deg !important; + .sm\:ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .sm\:-rotate-45 { - --tw-rotate: -45deg !important; + .sm\:ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .sm\:-rotate-12 { - --tw-rotate: -12deg !important; + .sm\:ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .sm\:-rotate-6 { - --tw-rotate: -6deg !important; + .sm\:ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .sm\:-rotate-3 { - --tw-rotate: -3deg !important; + .sm\:ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .sm\:-rotate-2 { - --tw-rotate: -2deg !important; + .sm\:ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .sm\:-rotate-1 { - --tw-rotate: -1deg !important; + .sm\:ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .sm\:hover\:rotate-0:hover { - --tw-rotate: 0deg !important; + .sm\:ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .sm\:hover\:rotate-1:hover { - --tw-rotate: 1deg !important; + .sm\:ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .sm\:hover\:rotate-2:hover { - --tw-rotate: 2deg !important; + .sm\:ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .sm\:hover\:rotate-3:hover { - --tw-rotate: 3deg !important; + .sm\:ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .sm\:hover\:rotate-6:hover { - --tw-rotate: 6deg !important; + .sm\:ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .sm\:hover\:rotate-12:hover { - --tw-rotate: 12deg !important; + .sm\:ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .sm\:hover\:rotate-45:hover { - --tw-rotate: 45deg !important; + .sm\:ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .sm\:hover\:rotate-90:hover { - --tw-rotate: 90deg !important; + .sm\:ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .sm\:hover\:rotate-180:hover { - --tw-rotate: 180deg !important; + .sm\:ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .sm\:hover\:-rotate-180:hover { - --tw-rotate: -180deg !important; + .sm\:ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .sm\:hover\:-rotate-90:hover { - --tw-rotate: -90deg !important; + .sm\:ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .sm\:hover\:-rotate-45:hover { - --tw-rotate: -45deg !important; + .sm\:ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .sm\:hover\:-rotate-12:hover { - --tw-rotate: -12deg !important; + .sm\:ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .sm\:hover\:-rotate-6:hover { - --tw-rotate: -6deg !important; + .sm\:ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .sm\:hover\:-rotate-3:hover { - --tw-rotate: -3deg !important; + .sm\:ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .sm\:hover\:-rotate-2:hover { - --tw-rotate: -2deg !important; + .sm\:ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .sm\:hover\:-rotate-1:hover { - --tw-rotate: -1deg !important; + .sm\:ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .sm\:focus\:rotate-0:focus { - --tw-rotate: 0deg !important; + .sm\:ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .sm\:focus\:rotate-1:focus { - --tw-rotate: 1deg !important; + .sm\:ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .sm\:focus\:rotate-2:focus { - --tw-rotate: 2deg !important; + .sm\:ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .sm\:focus\:rotate-3:focus { - --tw-rotate: 3deg !important; + .sm\:ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .sm\:focus\:rotate-6:focus { - --tw-rotate: 6deg !important; + .sm\:ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .sm\:focus\:rotate-12:focus { - --tw-rotate: 12deg !important; + .sm\:ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .sm\:focus\:rotate-45:focus { - --tw-rotate: 45deg !important; + .sm\:ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .sm\:focus\:rotate-90:focus { - --tw-rotate: 90deg !important; + .sm\:ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .sm\:focus\:rotate-180:focus { - --tw-rotate: 180deg !important; + .sm\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; } - .sm\:focus\:-rotate-180:focus { - --tw-rotate: -180deg !important; + .sm\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; } - .sm\:focus\:-rotate-90:focus { - --tw-rotate: -90deg !important; + .sm\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .sm\:focus\:-rotate-45:focus { - --tw-rotate: -45deg !important; + .sm\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .sm\:focus\:-rotate-12:focus { - --tw-rotate: -12deg !important; + .sm\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .sm\:focus\:-rotate-6:focus { - --tw-rotate: -6deg !important; + .sm\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .sm\:focus\:-rotate-3:focus { - --tw-rotate: -3deg !important; + .sm\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .sm\:focus\:-rotate-2:focus { - --tw-rotate: -2deg !important; + .sm\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .sm\:focus\:-rotate-1:focus { - --tw-rotate: -1deg !important; + .sm\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-0 { - --tw-translate-x: 0px !important; + .sm\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-1 { - --tw-translate-x: 0.25rem !important; + .sm\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-2 { - --tw-translate-x: 0.5rem !important; + .sm\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-3 { - --tw-translate-x: 0.75rem !important; + .sm\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-4 { - --tw-translate-x: 1rem !important; + .sm\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-5 { - --tw-translate-x: 1.25rem !important; + .sm\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-6 { - --tw-translate-x: 1.5rem !important; + .sm\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-7 { - --tw-translate-x: 1.75rem !important; + .sm\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-8 { - --tw-translate-x: 2rem !important; + .sm\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-9 { - --tw-translate-x: 2.25rem !important; + .sm\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-10 { - --tw-translate-x: 2.5rem !important; + .sm\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-11 { - --tw-translate-x: 2.75rem !important; + .sm\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-12 { - --tw-translate-x: 3rem !important; + .sm\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-14 { - --tw-translate-x: 3.5rem !important; + .sm\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-16 { - --tw-translate-x: 4rem !important; + .sm\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-20 { - --tw-translate-x: 5rem !important; + .sm\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-24 { - --tw-translate-x: 6rem !important; + .sm\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-28 { - --tw-translate-x: 7rem !important; + .sm\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-32 { - --tw-translate-x: 8rem !important; + .sm\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-36 { - --tw-translate-x: 9rem !important; + .sm\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-40 { - --tw-translate-x: 10rem !important; + .sm\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-44 { - --tw-translate-x: 11rem !important; + .sm\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-48 { - --tw-translate-x: 12rem !important; + .sm\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-52 { - --tw-translate-x: 13rem !important; + .sm\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-56 { - --tw-translate-x: 14rem !important; + .sm\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-60 { - --tw-translate-x: 15rem !important; + .sm\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-64 { - --tw-translate-x: 16rem !important; + .sm\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-72 { - --tw-translate-x: 18rem !important; + .sm\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-80 { - --tw-translate-x: 20rem !important; + .sm\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-96 { - --tw-translate-x: 24rem !important; + .sm\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-px { - --tw-translate-x: 1px !important; + .sm\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-0\.5 { - --tw-translate-x: 0.125rem !important; + .sm\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-1\.5 { - --tw-translate-x: 0.375rem !important; + .sm\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-2\.5 { - --tw-translate-x: 0.625rem !important; + .sm\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-3\.5 { - --tw-translate-x: 0.875rem !important; + .sm\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-0 { - --tw-translate-x: 0px !important; + .sm\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-1 { - --tw-translate-x: -0.25rem !important; + .sm\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-2 { - --tw-translate-x: -0.5rem !important; + .sm\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-3 { - --tw-translate-x: -0.75rem !important; + .sm\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-4 { - --tw-translate-x: -1rem !important; + .sm\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-5 { - --tw-translate-x: -1.25rem !important; + .sm\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-6 { - --tw-translate-x: -1.5rem !important; + .sm\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-7 { - --tw-translate-x: -1.75rem !important; + .sm\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-8 { - --tw-translate-x: -2rem !important; + .sm\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-9 { - --tw-translate-x: -2.25rem !important; + .sm\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-10 { - --tw-translate-x: -2.5rem !important; + .sm\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-11 { - --tw-translate-x: -2.75rem !important; + .sm\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-12 { - --tw-translate-x: -3rem !important; + .sm\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-14 { - --tw-translate-x: -3.5rem !important; + .sm\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-16 { - --tw-translate-x: -4rem !important; + .sm\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-20 { - --tw-translate-x: -5rem !important; + .sm\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-24 { - --tw-translate-x: -6rem !important; + .sm\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-28 { - --tw-translate-x: -7rem !important; + .sm\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-32 { - --tw-translate-x: -8rem !important; + .sm\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-36 { - --tw-translate-x: -9rem !important; + .sm\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-40 { - --tw-translate-x: -10rem !important; + .sm\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-44 { - --tw-translate-x: -11rem !important; + .sm\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-48 { - --tw-translate-x: -12rem !important; + .sm\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-52 { - --tw-translate-x: -13rem !important; + .sm\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-56 { - --tw-translate-x: -14rem !important; + .sm\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-60 { - --tw-translate-x: -15rem !important; + .sm\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-64 { - --tw-translate-x: -16rem !important; + .sm\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-72 { - --tw-translate-x: -18rem !important; + .sm\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-80 { - --tw-translate-x: -20rem !important; + .sm\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-96 { - --tw-translate-x: -24rem !important; + .sm\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-px { - --tw-translate-x: -1px !important; + .sm\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem !important; + .sm\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem !important; + .sm\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem !important; + .sm\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem !important; + .sm\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-1\/2 { - --tw-translate-x: 50% !important; + .sm\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-1\/3 { - --tw-translate-x: 33.333333% !important; + .sm\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-2\/3 { - --tw-translate-x: 66.666667% !important; + .sm\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-1\/4 { - --tw-translate-x: 25% !important; + .sm\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-2\/4 { - --tw-translate-x: 50% !important; + .sm\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .sm\:translate-x-3\/4 { - --tw-translate-x: 75% !important; + .sm\:focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; } - .sm\:translate-x-full { - --tw-translate-x: 100% !important; + .sm\:focus\:ring-current:focus { + --tw-ring-color: currentColor !important; } - .sm\:-translate-x-1\/2 { - --tw-translate-x: -50% !important; + .sm\:focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-1\/3 { - --tw-translate-x: -33.333333% !important; + .sm\:focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-2\/3 { - --tw-translate-x: -66.666667% !important; + .sm\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-1\/4 { - --tw-translate-x: -25% !important; + .sm\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-2\/4 { - --tw-translate-x: -50% !important; + .sm\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-3\/4 { - --tw-translate-x: -75% !important; + .sm\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .sm\:-translate-x-full { - --tw-translate-x: -100% !important; + .sm\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-0 { - --tw-translate-y: 0px !important; + .sm\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-1 { - --tw-translate-y: 0.25rem !important; + .sm\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-2 { - --tw-translate-y: 0.5rem !important; + .sm\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-3 { - --tw-translate-y: 0.75rem !important; + .sm\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-4 { - --tw-translate-y: 1rem !important; + .sm\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-5 { - --tw-translate-y: 1.25rem !important; + .sm\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-6 { - --tw-translate-y: 1.5rem !important; + .sm\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-7 { - --tw-translate-y: 1.75rem !important; + .sm\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-8 { - --tw-translate-y: 2rem !important; + .sm\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-9 { - --tw-translate-y: 2.25rem !important; + .sm\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-10 { - --tw-translate-y: 2.5rem !important; + .sm\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-11 { - --tw-translate-y: 2.75rem !important; + .sm\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-12 { - --tw-translate-y: 3rem !important; + .sm\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-14 { - --tw-translate-y: 3.5rem !important; + .sm\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-16 { - --tw-translate-y: 4rem !important; + .sm\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-20 { - --tw-translate-y: 5rem !important; + .sm\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-24 { - --tw-translate-y: 6rem !important; + .sm\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-28 { - --tw-translate-y: 7rem !important; + .sm\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-32 { - --tw-translate-y: 8rem !important; + .sm\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-36 { - --tw-translate-y: 9rem !important; + .sm\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-40 { - --tw-translate-y: 10rem !important; + .sm\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-44 { - --tw-translate-y: 11rem !important; + .sm\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-48 { - --tw-translate-y: 12rem !important; + .sm\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-52 { - --tw-translate-y: 13rem !important; + .sm\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-56 { - --tw-translate-y: 14rem !important; + .sm\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-60 { - --tw-translate-y: 15rem !important; + .sm\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-64 { - --tw-translate-y: 16rem !important; + .sm\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-72 { - --tw-translate-y: 18rem !important; + .sm\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-80 { - --tw-translate-y: 20rem !important; + .sm\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-96 { - --tw-translate-y: 24rem !important; + .sm\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-px { - --tw-translate-y: 1px !important; + .sm\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-0\.5 { - --tw-translate-y: 0.125rem !important; + .sm\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-1\.5 { - --tw-translate-y: 0.375rem !important; + .sm\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-2\.5 { - --tw-translate-y: 0.625rem !important; + .sm\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-3\.5 { - --tw-translate-y: 0.875rem !important; + .sm\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-0 { - --tw-translate-y: 0px !important; + .sm\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-1 { - --tw-translate-y: -0.25rem !important; + .sm\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-2 { - --tw-translate-y: -0.5rem !important; + .sm\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-3 { - --tw-translate-y: -0.75rem !important; + .sm\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-4 { - --tw-translate-y: -1rem !important; + .sm\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-5 { - --tw-translate-y: -1.25rem !important; + .sm\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-6 { - --tw-translate-y: -1.5rem !important; + .sm\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-7 { - --tw-translate-y: -1.75rem !important; + .sm\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-8 { - --tw-translate-y: -2rem !important; + .sm\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-9 { - --tw-translate-y: -2.25rem !important; + .sm\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-10 { - --tw-translate-y: -2.5rem !important; + .sm\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-11 { - --tw-translate-y: -2.75rem !important; + .sm\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-12 { - --tw-translate-y: -3rem !important; + .sm\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-14 { - --tw-translate-y: -3.5rem !important; + .sm\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-16 { - --tw-translate-y: -4rem !important; + .sm\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-20 { - --tw-translate-y: -5rem !important; + .sm\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-24 { - --tw-translate-y: -6rem !important; + .sm\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-28 { - --tw-translate-y: -7rem !important; + .sm\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-32 { - --tw-translate-y: -8rem !important; + .sm\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-36 { - --tw-translate-y: -9rem !important; + .sm\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-40 { - --tw-translate-y: -10rem !important; + .sm\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-44 { - --tw-translate-y: -11rem !important; + .sm\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-48 { - --tw-translate-y: -12rem !important; + .sm\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-52 { - --tw-translate-y: -13rem !important; + .sm\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-56 { - --tw-translate-y: -14rem !important; + .sm\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-60 { - --tw-translate-y: -15rem !important; + .sm\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-64 { - --tw-translate-y: -16rem !important; + .sm\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-72 { - --tw-translate-y: -18rem !important; + .sm\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-80 { - --tw-translate-y: -20rem !important; + .sm\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-96 { - --tw-translate-y: -24rem !important; + .sm\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-px { - --tw-translate-y: -1px !important; + .sm\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem !important; + .sm\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem !important; + .sm\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem !important; + .sm\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .sm\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem !important; + .sm\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-1\/2 { - --tw-translate-y: 50% !important; + .sm\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-1\/3 { - --tw-translate-y: 33.333333% !important; + .sm\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-2\/3 { - --tw-translate-y: 66.666667% !important; + .sm\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-1\/4 { - --tw-translate-y: 25% !important; + .sm\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-2\/4 { - --tw-translate-y: 50% !important; + .sm\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .sm\:translate-y-3\/4 { - --tw-translate-y: 75% !important; + .sm\:ring-opacity-0 { + --tw-ring-opacity: 0 !important; } - .sm\:translate-y-full { - --tw-translate-y: 100% !important; + .sm\:ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; } - .sm\:-translate-y-1\/2 { - --tw-translate-y: -50% !important; + .sm\:ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; } - .sm\:-translate-y-1\/3 { - --tw-translate-y: -33.333333% !important; + .sm\:ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; } - .sm\:-translate-y-2\/3 { - --tw-translate-y: -66.666667% !important; + .sm\:ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; } - .sm\:-translate-y-1\/4 { - --tw-translate-y: -25% !important; + .sm\:ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; } - .sm\:-translate-y-2\/4 { - --tw-translate-y: -50% !important; + .sm\:ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; } - .sm\:-translate-y-3\/4 { - --tw-translate-y: -75% !important; + .sm\:ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; } - .sm\:-translate-y-full { - --tw-translate-y: -100% !important; + .sm\:ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; } - .sm\:hover\:translate-x-0:hover { - --tw-translate-x: 0px !important; + .sm\:ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; } - .sm\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem !important; + .sm\:ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; } - .sm\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem !important; + .sm\:ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; } - .sm\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem !important; + .sm\:ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; } - .sm\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem !important; + .sm\:ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; } - .sm\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem !important; + .sm\:ring-opacity-100 { + --tw-ring-opacity: 1 !important; } - .sm\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem !important; + .sm\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; } - .sm\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem !important; + .sm\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; } - .sm\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem !important; + .sm\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; } - .sm\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem !important; + .sm\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; } - .sm\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem !important; + .sm\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; } - .sm\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem !important; + .sm\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; } - .sm\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem !important; + .sm\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; } - .sm\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem !important; + .sm\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; } - .sm\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem !important; + .sm\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; } - .sm\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem !important; + .sm\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; } - .sm\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem !important; + .sm\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; } - .sm\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem !important; + .sm\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; } - .sm\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem !important; + .sm\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; } - .sm\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem !important; + .sm\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; } - .sm\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem !important; + .sm\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; } - .sm\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem !important; + .sm\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; } - .sm\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem !important; + .sm\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; } - .sm\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem !important; + .sm\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; } - .sm\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem !important; + .sm\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; } - .sm\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem !important; + .sm\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; } - .sm\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem !important; + .sm\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; } - .sm\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem !important; + .sm\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; } - .sm\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem !important; + .sm\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; } - .sm\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem !important; + .sm\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; } - .sm\:hover\:translate-x-px:hover { - --tw-translate-x: 1px !important; + .sm\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; } - .sm\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem !important; + .sm\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; } - .sm\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem !important; + .sm\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; } - .sm\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem !important; + .sm\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; } - .sm\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem !important; + .sm\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; } - .sm\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px !important; + .sm\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; } - .sm\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem !important; + .sm\:ring-offset-0 { + --tw-ring-offset-width: 0px !important; } - .sm\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem !important; + .sm\:ring-offset-1 { + --tw-ring-offset-width: 1px !important; } - .sm\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem !important; + .sm\:ring-offset-2 { + --tw-ring-offset-width: 2px !important; } - .sm\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem !important; + .sm\:ring-offset-4 { + --tw-ring-offset-width: 4px !important; } - .sm\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem !important; + .sm\:ring-offset-8 { + --tw-ring-offset-width: 8px !important; } - .sm\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem !important; + .sm\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; } - .sm\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem !important; + .sm\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; } - .sm\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem !important; + .sm\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; } - .sm\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem !important; + .sm\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; } - .sm\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem !important; + .sm\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; } - .sm\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem !important; + .sm\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; } - .sm\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem !important; + .sm\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; } - .sm\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem !important; + .sm\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; } - .sm\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem !important; + .sm\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; } - .sm\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem !important; + .sm\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; } - .sm\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem !important; + .sm\:ring-offset-transparent { + --tw-ring-offset-color: transparent !important; } - .sm\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem !important; + .sm\:ring-offset-current { + --tw-ring-offset-color: currentColor !important; } - .sm\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem !important; + .sm\:ring-offset-black { + --tw-ring-offset-color: #000 !important; } - .sm\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem !important; + .sm\:ring-offset-white { + --tw-ring-offset-color: #fff !important; } - .sm\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem !important; + .sm\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; } - .sm\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem !important; + .sm\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; } - .sm\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem !important; + .sm\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; } - .sm\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem !important; + .sm\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; } - .sm\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem !important; + .sm\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; } - .sm\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem !important; + .sm\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; } - .sm\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem !important; + .sm\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; } - .sm\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem !important; + .sm\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; } - .sm\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem !important; + .sm\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; } - .sm\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem !important; + .sm\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; } - .sm\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px !important; + .sm\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; } - .sm\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem !important; + .sm\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; } - .sm\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem !important; + .sm\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; } - .sm\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem !important; + .sm\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; } - .sm\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem !important; + .sm\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; } - .sm\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50% !important; + .sm\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; } - .sm\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333% !important; + .sm\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; } - .sm\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667% !important; + .sm\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; } - .sm\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25% !important; + .sm\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; } - .sm\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50% !important; + .sm\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; } - .sm\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75% !important; + .sm\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; } - .sm\:hover\:translate-x-full:hover { - --tw-translate-x: 100% !important; + .sm\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; } - .sm\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50% !important; + .sm\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; } - .sm\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333% !important; + .sm\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; } - .sm\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667% !important; + .sm\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; } - .sm\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25% !important; + .sm\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; } - .sm\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50% !important; + .sm\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; } - .sm\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75% !important; + .sm\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; } - .sm\:hover\:-translate-x-full:hover { - --tw-translate-x: -100% !important; + .sm\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; } - .sm\:hover\:translate-y-0:hover { - --tw-translate-y: 0px !important; + .sm\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; } - .sm\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem !important; + .sm\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; } - .sm\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem !important; + .sm\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; } - .sm\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem !important; + .sm\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; } - .sm\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem !important; + .sm\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; } - .sm\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem !important; + .sm\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; } - .sm\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem !important; + .sm\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; } - .sm\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem !important; + .sm\:ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; } - .sm\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem !important; + .sm\:ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; } - .sm\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem !important; + .sm\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; } - .sm\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem !important; + .sm\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; } - .sm\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem !important; + .sm\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; } - .sm\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem !important; + .sm\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; } - .sm\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem !important; + .sm\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; } - .sm\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem !important; + .sm\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; } - .sm\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem !important; + .sm\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; } - .sm\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem !important; + .sm\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; } - .sm\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem !important; + .sm\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; } - .sm\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem !important; + .sm\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; } - .sm\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem !important; + .sm\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; } - .sm\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem !important; + .sm\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; } - .sm\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem !important; + .sm\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; } - .sm\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem !important; + .sm\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; } - .sm\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem !important; + .sm\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; } - .sm\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem !important; + .sm\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; } - .sm\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem !important; + .sm\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; } - .sm\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem !important; + .sm\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; } - .sm\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem !important; + .sm\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; } - .sm\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem !important; + .sm\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; } - .sm\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem !important; + .sm\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; } - .sm\:hover\:translate-y-px:hover { - --tw-translate-y: 1px !important; + .sm\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; } - .sm\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem !important; + .sm\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; } - .sm\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem !important; + .sm\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; } - .sm\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem !important; + .sm\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; } - .sm\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem !important; + .sm\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; } - .sm\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px !important; + .sm\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; } - .sm\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem !important; + .sm\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; } - .sm\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem !important; + .sm\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; } - .sm\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem !important; + .sm\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; } - .sm\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem !important; + .sm\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; } - .sm\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem !important; + .sm\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; } - .sm\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem !important; + .sm\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; } - .sm\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem !important; + .sm\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; } - .sm\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem !important; + .sm\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; } - .sm\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem !important; + .sm\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; } - .sm\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem !important; + .sm\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; } - .sm\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem !important; + .sm\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; } - .sm\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem !important; + .sm\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; } - .sm\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem !important; + .sm\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; } - .sm\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem !important; + .sm\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; } - .sm\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem !important; + .sm\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; } - .sm\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem !important; + .sm\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; } - .sm\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem !important; + .sm\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; } - .sm\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem !important; + .sm\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; } - .sm\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem !important; + .sm\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; } - .sm\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem !important; + .sm\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; } - .sm\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem !important; + .sm\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; } - .sm\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem !important; + .sm\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; } - .sm\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem !important; + .sm\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; } - .sm\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem !important; + .sm\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; } - .sm\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem !important; + .sm\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; } - .sm\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem !important; + .sm\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; } - .sm\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem !important; + .sm\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; } - .sm\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem !important; + .sm\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; } - .sm\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem !important; + .sm\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; } - .sm\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px !important; + .sm\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; } - .sm\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem !important; + .sm\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; } - .sm\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem !important; + .sm\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; } - .sm\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem !important; + .sm\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; } - .sm\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem !important; + .sm\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; } - .sm\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50% !important; + .sm\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; } - .sm\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333% !important; + .sm\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; } - .sm\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667% !important; + .sm\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; } - .sm\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25% !important; + .sm\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; } - .sm\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50% !important; + .sm\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; } - .sm\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75% !important; + .sm\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; } - .sm\:hover\:translate-y-full:hover { - --tw-translate-y: 100% !important; + .sm\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; } - .sm\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50% !important; + .sm\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; } - .sm\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333% !important; + .sm\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; } - .sm\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667% !important; + .sm\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; } - .sm\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25% !important; + .sm\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; } - .sm\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50% !important; + .sm\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; } - .sm\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75% !important; + .sm\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; } - .sm\:hover\:-translate-y-full:hover { - --tw-translate-y: -100% !important; + .sm\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; } - .sm\:focus\:translate-x-0:focus { - --tw-translate-x: 0px !important; + .sm\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; } - .sm\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem !important; + .sm\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; } - - .sm\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem !important; + + .sm\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; } - .sm\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem !important; + .sm\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; } - .sm\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem !important; + .sm\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; } - .sm\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem !important; + .sm\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; } - .sm\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem !important; + .sm\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; } - .sm\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem !important; + .sm\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; } - .sm\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem !important; + .sm\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; } - .sm\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem !important; + .sm\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; } - .sm\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem !important; + .sm\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; } - .sm\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem !important; + .sm\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; } - .sm\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem !important; + .sm\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; } - .sm\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem !important; + .sm\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; } - .sm\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem !important; + .sm\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; } - .sm\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem !important; + .sm\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; } - .sm\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem !important; + .sm\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; } - .sm\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem !important; + .sm\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; } - .sm\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem !important; + .sm\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; } - .sm\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem !important; + .sm\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; } - .sm\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem !important; + .sm\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; } - .sm\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem !important; + .sm\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; } - .sm\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem !important; + .sm\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; } - .sm\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem !important; + .sm\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; } - .sm\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem !important; + .sm\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; } - .sm\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem !important; + .sm\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; } - .sm\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem !important; + .sm\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; } - .sm\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem !important; + .sm\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; } - .sm\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem !important; + .sm\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; } - .sm\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem !important; + .sm\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; } - .sm\:focus\:translate-x-px:focus { - --tw-translate-x: 1px !important; + .sm\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; } - .sm\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem !important; + .sm\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; } - .sm\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem !important; + .sm\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; } - .sm\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem !important; + .sm\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; } - .sm\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem !important; + .sm\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; } - .sm\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px !important; + .sm\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; } - .sm\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem !important; + .sm\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; } - .sm\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem !important; + .sm\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; } - .sm\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem !important; + .sm\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; } - .sm\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem !important; + .sm\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; } - .sm\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem !important; + .sm\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; } - .sm\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem !important; + .sm\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; } - .sm\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem !important; + .sm\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; } - .sm\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem !important; + .sm\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; } - .sm\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem !important; + .sm\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; } - .sm\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem !important; + .sm\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; } - .sm\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem !important; + .sm\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; } - .sm\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem !important; + .sm\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; } - .sm\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem !important; + .sm\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; } - .sm\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem !important; + .sm\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; } - .sm\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem !important; + .sm\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; } - .sm\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem !important; + .sm\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; } - .sm\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem !important; + .sm\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; } - .sm\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem !important; + .sm\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; } - .sm\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem !important; + .sm\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; } - .sm\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem !important; + .sm\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; } - .sm\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem !important; + .sm\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; } - .sm\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem !important; + .sm\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; } - .sm\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem !important; + .sm\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; } - .sm\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem !important; + .sm\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; } - .sm\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem !important; + .sm\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; } - .sm\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem !important; + .sm\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; } - .sm\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem !important; + .sm\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; } - .sm\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem !important; + .sm\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; } - .sm\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem !important; + .sm\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; } - .sm\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px !important; + .sm\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; } - .sm\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem !important; + .sm\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; } - .sm\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem !important; + .sm\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; } - .sm\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem !important; + .sm\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; } - .sm\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem !important; + .sm\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; } - .sm\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50% !important; + .sm\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; } - .sm\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333% !important; + .sm\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; } - .sm\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667% !important; + .sm\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; } - .sm\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25% !important; + .sm\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; } - .sm\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50% !important; + .sm\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; } - .sm\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75% !important; + .sm\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; } - .sm\:focus\:translate-x-full:focus { - --tw-translate-x: 100% !important; + .sm\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; } - .sm\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50% !important; + .sm\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; } - .sm\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333% !important; + .sm\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; } - .sm\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667% !important; + .sm\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; } - .sm\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25% !important; + .sm\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; } - .sm\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50% !important; + .sm\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; } - .sm\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75% !important; + .sm\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; } - .sm\:focus\:-translate-x-full:focus { - --tw-translate-x: -100% !important; + .sm\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; } - .sm\:focus\:translate-y-0:focus { - --tw-translate-y: 0px !important; + .sm\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; } - .sm\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem !important; + .sm\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; } - .sm\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem !important; + .sm\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; } - .sm\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem !important; + .sm\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; } - .sm\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem !important; + .sm\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; } - .sm\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem !important; + .sm\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; } - .sm\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem !important; + .sm\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; } - .sm\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem !important; + .sm\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; } - .sm\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem !important; + .sm\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; } - .sm\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem !important; + .sm\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; } - .sm\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem !important; + .sm\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; } - .sm\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem !important; + .sm\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; } - .sm\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem !important; + .sm\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; } - .sm\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem !important; + .sm\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; } - .sm\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem !important; + .sm\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; } - .sm\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem !important; + .sm\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; } - .sm\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem !important; + .sm\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; } - .sm\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem !important; + .sm\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; } - .sm\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem !important; + .sm\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; } - .sm\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem !important; + .sm\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; } - .sm\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem !important; + .sm\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; } - .sm\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem !important; + .sm\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; } - .sm\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem !important; + .sm\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; } - .sm\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem !important; + .sm\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; } - .sm\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem !important; + .sm\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; } - .sm\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem !important; + .sm\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; } - .sm\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem !important; + .sm\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; } - .sm\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem !important; + .sm\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; } - .sm\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem !important; + .sm\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; } - .sm\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem !important; + .sm\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; } - .sm\:focus\:translate-y-px:focus { - --tw-translate-y: 1px !important; + .sm\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; } - .sm\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem !important; + .sm\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; } - .sm\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem !important; + .sm\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; } - .sm\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem !important; + .sm\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; } - .sm\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem !important; + .sm\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; } - .sm\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px !important; + .sm\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; } - .sm\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem !important; + .sm\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; } - .sm\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem !important; + .sm\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; } - .sm\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem !important; + .sm\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; } - .sm\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem !important; + .sm\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; } - .sm\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem !important; + .sm\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; } - .sm\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem !important; + .sm\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; } - .sm\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem !important; + .sm\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; } - .sm\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem !important; + .sm\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; } - .sm\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem !important; + .sm\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; } - .sm\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem !important; + .sm\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; } - .sm\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem !important; + .sm\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; } - .sm\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem !important; + .sm\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; } - .sm\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem !important; + .sm\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; } - .sm\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem !important; + .sm\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; } - .sm\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem !important; + .sm\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; } - .sm\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem !important; + .sm\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important; } - .sm\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem !important; + .sm\:filter-none { + filter: none !important; } - .sm\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem !important; + .sm\:blur-0 { + --tw-blur: blur(0) !important; } - .sm\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem !important; + .sm\:blur-sm { + --tw-blur: blur(4px) !important; } - .sm\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem !important; + .sm\:blur { + --tw-blur: blur(8px) !important; } - .sm\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem !important; + .sm\:blur-md { + --tw-blur: blur(12px) !important; } - .sm\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem !important; + .sm\:blur-lg { + --tw-blur: blur(16px) !important; } - .sm\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem !important; + .sm\:blur-xl { + --tw-blur: blur(24px) !important; } - .sm\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem !important; + .sm\:blur-2xl { + --tw-blur: blur(40px) !important; } - .sm\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem !important; + .sm\:blur-3xl { + --tw-blur: blur(64px) !important; } - .sm\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem !important; + .sm\:brightness-0 { + --tw-brightness: brightness(0) !important; } - .sm\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem !important; + .sm\:brightness-50 { + --tw-brightness: brightness(.5) !important; } - .sm\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem !important; + .sm\:brightness-75 { + --tw-brightness: brightness(.75) !important; } - .sm\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem !important; + .sm\:brightness-90 { + --tw-brightness: brightness(.9) !important; } - .sm\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px !important; + .sm\:brightness-95 { + --tw-brightness: brightness(.95) !important; } - .sm\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem !important; + .sm\:brightness-100 { + --tw-brightness: brightness(1) !important; } - .sm\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem !important; + .sm\:brightness-105 { + --tw-brightness: brightness(1.05) !important; } - .sm\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem !important; + .sm\:brightness-110 { + --tw-brightness: brightness(1.1) !important; } - .sm\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem !important; + .sm\:brightness-125 { + --tw-brightness: brightness(1.25) !important; } - .sm\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50% !important; + .sm\:brightness-150 { + --tw-brightness: brightness(1.5) !important; } - .sm\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333% !important; + .sm\:brightness-200 { + --tw-brightness: brightness(2) !important; } - .sm\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667% !important; + .sm\:contrast-0 { + --tw-contrast: contrast(0) !important; } - .sm\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25% !important; + .sm\:contrast-50 { + --tw-contrast: contrast(.5) !important; } - .sm\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50% !important; + .sm\:contrast-75 { + --tw-contrast: contrast(.75) !important; } - .sm\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75% !important; + .sm\:contrast-100 { + --tw-contrast: contrast(1) !important; } - .sm\:focus\:translate-y-full:focus { - --tw-translate-y: 100% !important; + .sm\:contrast-125 { + --tw-contrast: contrast(1.25) !important; } - .sm\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50% !important; + .sm\:contrast-150 { + --tw-contrast: contrast(1.5) !important; } - .sm\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333% !important; + .sm\:contrast-200 { + --tw-contrast: contrast(2) !important; } - .sm\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667% !important; + .sm\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; } - .sm\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25% !important; + .sm\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; } - .sm\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50% !important; + .sm\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; } - .sm\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75% !important; + .sm\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; } - .sm\:focus\:-translate-y-full:focus { - --tw-translate-y: -100% !important; + .sm\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; } - .sm\:skew-x-0 { - --tw-skew-x: 0deg !important; + .sm\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; } - .sm\:skew-x-1 { - --tw-skew-x: 1deg !important; + .sm\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000) !important; } - .sm\:skew-x-2 { - --tw-skew-x: 2deg !important; + .sm\:grayscale-0 { + --tw-grayscale: grayscale(0) !important; } - .sm\:skew-x-3 { - --tw-skew-x: 3deg !important; + .sm\:grayscale { + --tw-grayscale: grayscale(100%) !important; } - .sm\:skew-x-6 { - --tw-skew-x: 6deg !important; + .sm\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg) !important; } - .sm\:skew-x-12 { - --tw-skew-x: 12deg !important; + .sm\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg) !important; } - .sm\:-skew-x-12 { - --tw-skew-x: -12deg !important; + .sm\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg) !important; } - .sm\:-skew-x-6 { - --tw-skew-x: -6deg !important; + .sm\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg) !important; } - .sm\:-skew-x-3 { - --tw-skew-x: -3deg !important; + .sm\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg) !important; } - .sm\:-skew-x-2 { - --tw-skew-x: -2deg !important; + .sm\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg) !important; } - .sm\:-skew-x-1 { - --tw-skew-x: -1deg !important; + .sm\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg) !important; } - .sm\:skew-y-0 { - --tw-skew-y: 0deg !important; + .sm\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg) !important; } - .sm\:skew-y-1 { - --tw-skew-y: 1deg !important; + .sm\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg) !important; } - .sm\:skew-y-2 { - --tw-skew-y: 2deg !important; + .sm\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg) !important; } - .sm\:skew-y-3 { - --tw-skew-y: 3deg !important; + .sm\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg) !important; } - .sm\:skew-y-6 { - --tw-skew-y: 6deg !important; + .sm\:invert-0 { + --tw-invert: invert(0) !important; } - .sm\:skew-y-12 { - --tw-skew-y: 12deg !important; + .sm\:invert { + --tw-invert: invert(100%) !important; } - .sm\:-skew-y-12 { - --tw-skew-y: -12deg !important; + .sm\:saturate-0 { + --tw-saturate: saturate(0) !important; } - .sm\:-skew-y-6 { - --tw-skew-y: -6deg !important; + .sm\:saturate-50 { + --tw-saturate: saturate(.5) !important; } - .sm\:-skew-y-3 { - --tw-skew-y: -3deg !important; + .sm\:saturate-100 { + --tw-saturate: saturate(1) !important; } - .sm\:-skew-y-2 { - --tw-skew-y: -2deg !important; + .sm\:saturate-150 { + --tw-saturate: saturate(1.5) !important; } - .sm\:-skew-y-1 { - --tw-skew-y: -1deg !important; + .sm\:saturate-200 { + --tw-saturate: saturate(2) !important; } - .sm\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg !important; + .sm\:sepia-0 { + --tw-sepia: sepia(0) !important; } - .sm\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg !important; + .sm\:sepia { + --tw-sepia: sepia(100%) !important; } - .sm\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg !important; + .sm\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important; } - .sm\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg !important; + .sm\:backdrop-filter-none { + backdrop-filter: none !important; } - .sm\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg !important; + .sm\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0) !important; } - .sm\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg !important; + .sm\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5) !important; } - .sm\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg !important; + .sm\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75) !important; } - .sm\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg !important; + .sm\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9) !important; } - .sm\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg !important; + .sm\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95) !important; } - .sm\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg !important; + .sm\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1) !important; } - .sm\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg !important; + .sm\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05) !important; } - .sm\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg !important; + .sm\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1) !important; } - .sm\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg !important; + .sm\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25) !important; } - .sm\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg !important; + .sm\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5) !important; } - .sm\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg !important; + .sm\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2) !important; } - .sm\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg !important; + .sm\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0) !important; } - .sm\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg !important; + .sm\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5) !important; } - .sm\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg !important; + .sm\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75) !important; } - .sm\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg !important; + .sm\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1) !important; } - .sm\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg !important; + .sm\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25) !important; } - .sm\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg !important; + .sm\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5) !important; } - .sm\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg !important; + .sm\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2) !important; } - .sm\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg !important; + .sm\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0) !important; } - .sm\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg !important; + .sm\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%) !important; } - .sm\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg !important; + .sm\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; } - .sm\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg !important; + .sm\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; } - .sm\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg !important; + .sm\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; } - .sm\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg !important; + .sm\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; } - .sm\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg !important; + .sm\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; } - .sm\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg !important; + .sm\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; } - .sm\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg !important; + .sm\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; } - .sm\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg !important; + .sm\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; } - .sm\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg !important; + .sm\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; } - .sm\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg !important; + .sm\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; } - .sm\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg !important; + .sm\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; } - .sm\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg !important; + .sm\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0) !important; } - .sm\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg !important; + .sm\:backdrop-invert { + --tw-backdrop-invert: invert(100%) !important; } - .sm\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg !important; + .sm\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0) !important; } - .sm\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg !important; + .sm\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5) !important; } - .sm\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg !important; + .sm\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1) !important; } - .sm\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg !important; + .sm\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5) !important; } - .sm\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg !important; + .sm\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2) !important; } - .sm\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg !important; + .sm\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0) !important; } - .sm\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg !important; + .sm\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%) !important; } .sm\:transition-none { @@ -58271,6 +58833,70 @@ video { transition-duration: 150ms !important; } + .sm\:delay-75 { + transition-delay: 75ms !important; + } + + .sm\:delay-100 { + transition-delay: 100ms !important; + } + + .sm\:delay-150 { + transition-delay: 150ms !important; + } + + .sm\:delay-200 { + transition-delay: 200ms !important; + } + + .sm\:delay-300 { + transition-delay: 300ms !important; + } + + .sm\:delay-500 { + transition-delay: 500ms !important; + } + + .sm\:delay-700 { + transition-delay: 700ms !important; + } + + .sm\:delay-1000 { + transition-delay: 1000ms !important; + } + + .sm\:duration-75 { + transition-duration: 75ms !important; + } + + .sm\:duration-100 { + transition-duration: 100ms !important; + } + + .sm\:duration-150 { + transition-duration: 150ms !important; + } + + .sm\:duration-200 { + transition-duration: 200ms !important; + } + + .sm\:duration-300 { + transition-duration: 300ms !important; + } + + .sm\:duration-500 { + transition-duration: 500ms !important; + } + + .sm\:duration-700 { + transition-duration: 700ms !important; + } + + .sm\:duration-1000 { + transition-duration: 1000ms !important; + } + .sm\:ease-linear { transition-timing-function: linear !important; } @@ -58287,22319 +58913,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; } - .sm\:duration-75 { - transition-duration: 75ms !important; + .sm\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 768px) { + .md\:container { + width: 100%; + } + + @media (min-width: 640px) { + .md\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .md\:container { + max-width: 768px; + } } - .sm\:duration-100 { - transition-duration: 100ms !important; + @media (min-width: 1024px) { + .md\:container { + max-width: 1024px; + } } - .sm\:duration-150 { - transition-duration: 150ms !important; + @media (min-width: 1280px) { + .md\:container { + max-width: 1280px; + } } - .sm\:duration-200 { - transition-duration: 200ms !important; + @media (min-width: 1536px) { + .md\:container { + max-width: 1536px; + } } - .sm\:duration-300 { - transition-duration: 300ms !important; + .md\:sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .sm\:duration-500 { - transition-duration: 500ms !important; + .md\:not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .sm\:duration-700 { - transition-duration: 700ms !important; + .md\:focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .sm\:duration-1000 { - transition-duration: 1000ms !important; + .md\:focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .sm\:delay-75 { - transition-delay: 75ms !important; + .md\:focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .sm\:delay-100 { - transition-delay: 100ms !important; + .md\:focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .sm\:delay-150 { - transition-delay: 150ms !important; + .md\:pointer-events-none { + pointer-events: none !important; } - .sm\:delay-200 { - transition-delay: 200ms !important; + .md\:pointer-events-auto { + pointer-events: auto !important; } - .sm\:delay-300 { - transition-delay: 300ms !important; + .md\:visible { + visibility: visible !important; } - .sm\:delay-500 { - transition-delay: 500ms !important; + .md\:invisible { + visibility: hidden !important; } - .sm\:delay-700 { - transition-delay: 700ms !important; + .md\:static { + position: static !important; } - .sm\:delay-1000 { - transition-delay: 1000ms !important; + .md\:fixed { + position: fixed !important; } - .sm\:animate-none { - animation: none !important; + .md\:absolute { + position: absolute !important; } - .sm\:animate-spin { - animation: spin 1s linear infinite !important; + .md\:relative { + position: relative !important; } - .sm\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + .md\:sticky { + position: sticky !important; } - .sm\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + .md\:inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; } - .sm\:animate-bounce { - animation: bounce 1s infinite !important; + .md\:inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !important; } - .sm\:mix-blend-normal { - mix-blend-mode: normal !important; + .md\:inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !important; } - .sm\:mix-blend-multiply { - mix-blend-mode: multiply !important; + .md\:inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !important; } - .sm\:mix-blend-screen { - mix-blend-mode: screen !important; + .md\:inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !important; } - .sm\:mix-blend-overlay { - mix-blend-mode: overlay !important; + .md\:inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !important; } - .sm\:mix-blend-darken { - mix-blend-mode: darken !important; + .md\:inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !important; } - .sm\:mix-blend-lighten { - mix-blend-mode: lighten !important; + .md\:inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !important; } - .sm\:mix-blend-color-dodge { - mix-blend-mode: color-dodge !important; + .md\:inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !important; } - .sm\:mix-blend-color-burn { - mix-blend-mode: color-burn !important; + .md\:inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !important; } - .sm\:mix-blend-hard-light { - mix-blend-mode: hard-light !important; + .md\:inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !important; } - .sm\:mix-blend-soft-light { - mix-blend-mode: soft-light !important; + .md\:inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !important; } - .sm\:mix-blend-difference { - mix-blend-mode: difference !important; + .md\:inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !important; } - .sm\:mix-blend-exclusion { - mix-blend-mode: exclusion !important; + .md\:inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !important; } - .sm\:mix-blend-hue { - mix-blend-mode: hue !important; + .md\:inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !important; } - .sm\:mix-blend-saturation { - mix-blend-mode: saturation !important; + .md\:inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !important; } - .sm\:mix-blend-color { - mix-blend-mode: color !important; + .md\:inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !important; } - .sm\:mix-blend-luminosity { - mix-blend-mode: luminosity !important; + .md\:inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !important; } - .sm\:bg-blend-normal { - background-blend-mode: normal !important; + .md\:inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !important; } - .sm\:bg-blend-multiply { - background-blend-mode: multiply !important; + .md\:inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !important; } - .sm\:bg-blend-screen { - background-blend-mode: screen !important; + .md\:inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !important; } - .sm\:bg-blend-overlay { - background-blend-mode: overlay !important; + .md\:inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !important; } - .sm\:bg-blend-darken { - background-blend-mode: darken !important; + .md\:inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !important; } - .sm\:bg-blend-lighten { - background-blend-mode: lighten !important; + .md\:inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !important; } - .sm\:bg-blend-color-dodge { - background-blend-mode: color-dodge !important; + .md\:inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !important; } - .sm\:bg-blend-color-burn { - background-blend-mode: color-burn !important; + .md\:inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !important; } - .sm\:bg-blend-hard-light { - background-blend-mode: hard-light !important; + .md\:inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !important; } - .sm\:bg-blend-soft-light { - background-blend-mode: soft-light !important; + .md\:inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !important; } - .sm\:bg-blend-difference { - background-blend-mode: difference !important; + .md\:inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !important; } - .sm\:bg-blend-exclusion { - background-blend-mode: exclusion !important; + .md\:inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !important; } - .sm\:bg-blend-hue { - background-blend-mode: hue !important; + .md\:inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !important; } - .sm\:bg-blend-saturation { - background-blend-mode: saturation !important; + .md\:inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !important; } - .sm\:bg-blend-color { - background-blend-mode: color !important; + .md\:inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !important; } - .sm\:bg-blend-luminosity { - background-blend-mode: luminosity !important; + .md\:inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !important; } - .sm\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important; + .md\:inset-2\.5 { + top: 0.625rem !important; + right: 0.625rem !important; + bottom: 0.625rem !important; + left: 0.625rem !important; } - .sm\:filter-none { - filter: none !important; + .md\:inset-3\.5 { + top: 0.875rem !important; + right: 0.875rem !important; + bottom: 0.875rem !important; + left: 0.875rem !important; } - .sm\:blur-0 { - --tw-blur: blur(0) !important; + .md\:-inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; } - .sm\:blur-sm { - --tw-blur: blur(4px) !important; + .md\:-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !important; } - .sm\:blur { - --tw-blur: blur(8px) !important; + .md\:-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !important; } - .sm\:blur-md { - --tw-blur: blur(12px) !important; + .md\:-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !important; } - .sm\:blur-lg { - --tw-blur: blur(16px) !important; + .md\:-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !important; } - .sm\:blur-xl { - --tw-blur: blur(24px) !important; + .md\:-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !important; } - .sm\:blur-2xl { - --tw-blur: blur(40px) !important; + .md\:-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !important; } - .sm\:blur-3xl { - --tw-blur: blur(64px) !important; + .md\:-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !important; } - .sm\:brightness-0 { - --tw-brightness: brightness(0) !important; + .md\:-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !important; } - .sm\:brightness-50 { - --tw-brightness: brightness(.5) !important; + .md\:-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !important; } - .sm\:brightness-75 { - --tw-brightness: brightness(.75) !important; + .md\:-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !important; } - .sm\:brightness-90 { - --tw-brightness: brightness(.9) !important; + .md\:-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !important; } - .sm\:brightness-95 { - --tw-brightness: brightness(.95) !important; + .md\:-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !important; } - .sm\:brightness-100 { - --tw-brightness: brightness(1) !important; + .md\:-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !important; } - .sm\:brightness-105 { - --tw-brightness: brightness(1.05) !important; + .md\:-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !important; } - .sm\:brightness-110 { - --tw-brightness: brightness(1.1) !important; + .md\:-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !important; } - .sm\:brightness-125 { - --tw-brightness: brightness(1.25) !important; + .md\:-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !important; } - .sm\:brightness-150 { - --tw-brightness: brightness(1.5) !important; + .md\:-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !important; } - .sm\:brightness-200 { - --tw-brightness: brightness(2) !important; + .md\:-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !important; } - .sm\:contrast-0 { - --tw-contrast: contrast(0) !important; + .md\:-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !important; } - .sm\:contrast-50 { - --tw-contrast: contrast(.5) !important; + .md\:-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !important; } - .sm\:contrast-75 { - --tw-contrast: contrast(.75) !important; + .md\:-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !important; } - .sm\:contrast-100 { - --tw-contrast: contrast(1) !important; + .md\:-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !important; } - .sm\:contrast-125 { - --tw-contrast: contrast(1.25) !important; + .md\:-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !important; } - .sm\:contrast-150 { - --tw-contrast: contrast(1.5) !important; + .md\:-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !important; } - .sm\:contrast-200 { - --tw-contrast: contrast(2) !important; + .md\:-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !important; } - .sm\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; + .md\:-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !important; } - .sm\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; + .md\:-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !important; } - .sm\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; + .md\:-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !important; } - .sm\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; + .md\:-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !important; } - .sm\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; + .md\:-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !important; } - .sm\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; + .md\:-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !important; } - .sm\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000) !important; + .md\:-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !important; } - .sm\:grayscale-0 { - --tw-grayscale: grayscale(0) !important; + .md\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; } - .sm\:grayscale { - --tw-grayscale: grayscale(100%) !important; + .md\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; } - .sm\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg) !important; + .md\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; } - .sm\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg) !important; + .md\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; } - .sm\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg) !important; + .md\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; } - .sm\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg) !important; + .md\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; } - .sm\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg) !important; + .md\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; } - .sm\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg) !important; + .md\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; } - .sm\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg) !important; + .md\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; } - .sm\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg) !important; + .md\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; } - .sm\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg) !important; + .md\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; } - .sm\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg) !important; + .md\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; } - .sm\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg) !important; + .md\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; } - .sm\:invert-0 { - --tw-invert: invert(0) !important; + .md\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; } - .sm\:invert { - --tw-invert: invert(100%) !important; + .md\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; } - .sm\:saturate-0 { - --tw-saturate: saturate(0) !important; + .md\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; } - .sm\:saturate-50 { - --tw-saturate: saturate(.5) !important; + .md\:inset-y-0 { + top: 0px !important; + bottom: 0px !important; } - .sm\:saturate-100 { - --tw-saturate: saturate(1) !important; + .md\:inset-x-0 { + right: 0px !important; + left: 0px !important; } - .sm\:saturate-150 { - --tw-saturate: saturate(1.5) !important; + .md\:inset-y-1 { + top: 0.25rem !important; + bottom: 0.25rem !important; } - .sm\:saturate-200 { - --tw-saturate: saturate(2) !important; + .md\:inset-x-1 { + right: 0.25rem !important; + left: 0.25rem !important; } - .sm\:sepia-0 { - --tw-sepia: sepia(0) !important; + .md\:inset-y-2 { + top: 0.5rem !important; + bottom: 0.5rem !important; } - .sm\:sepia { - --tw-sepia: sepia(100%) !important; + .md\:inset-x-2 { + right: 0.5rem !important; + left: 0.5rem !important; } - .sm\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important; + .md\:inset-y-3 { + top: 0.75rem !important; + bottom: 0.75rem !important; } - .sm\:backdrop-filter-none { - backdrop-filter: none !important; + .md\:inset-x-3 { + right: 0.75rem !important; + left: 0.75rem !important; } - .sm\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0) !important; + .md\:inset-y-4 { + top: 1rem !important; + bottom: 1rem !important; } - .sm\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5) !important; + .md\:inset-x-4 { + right: 1rem !important; + left: 1rem !important; } - .sm\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75) !important; + .md\:inset-y-5 { + top: 1.25rem !important; + bottom: 1.25rem !important; } - .sm\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9) !important; + .md\:inset-x-5 { + right: 1.25rem !important; + left: 1.25rem !important; } - .sm\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95) !important; + .md\:inset-y-6 { + top: 1.5rem !important; + bottom: 1.5rem !important; } - .sm\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1) !important; + .md\:inset-x-6 { + right: 1.5rem !important; + left: 1.5rem !important; } - .sm\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05) !important; + .md\:inset-y-7 { + top: 1.75rem !important; + bottom: 1.75rem !important; } - .sm\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1) !important; + .md\:inset-x-7 { + right: 1.75rem !important; + left: 1.75rem !important; } - .sm\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25) !important; + .md\:inset-y-8 { + top: 2rem !important; + bottom: 2rem !important; } - .sm\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5) !important; + .md\:inset-x-8 { + right: 2rem !important; + left: 2rem !important; } - .sm\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2) !important; + .md\:inset-y-9 { + top: 2.25rem !important; + bottom: 2.25rem !important; } - .sm\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0) !important; + .md\:inset-x-9 { + right: 2.25rem !important; + left: 2.25rem !important; } - .sm\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5) !important; + .md\:inset-y-10 { + top: 2.5rem !important; + bottom: 2.5rem !important; } - .sm\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75) !important; + .md\:inset-x-10 { + right: 2.5rem !important; + left: 2.5rem !important; } - .sm\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1) !important; + .md\:inset-y-11 { + top: 2.75rem !important; + bottom: 2.75rem !important; } - .sm\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25) !important; + .md\:inset-x-11 { + right: 2.75rem !important; + left: 2.75rem !important; } - .sm\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5) !important; + .md\:inset-y-12 { + top: 3rem !important; + bottom: 3rem !important; } - .sm\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2) !important; + .md\:inset-x-12 { + right: 3rem !important; + left: 3rem !important; } - .sm\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0) !important; + .md\:inset-y-14 { + top: 3.5rem !important; + bottom: 3.5rem !important; } - .sm\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%) !important; + .md\:inset-x-14 { + right: 3.5rem !important; + left: 3.5rem !important; } - .sm\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; + .md\:inset-y-16 { + top: 4rem !important; + bottom: 4rem !important; } - .sm\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; + .md\:inset-x-16 { + right: 4rem !important; + left: 4rem !important; } - .sm\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; + .md\:inset-y-20 { + top: 5rem !important; + bottom: 5rem !important; } - .sm\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; + .md\:inset-x-20 { + right: 5rem !important; + left: 5rem !important; } - .sm\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; + .md\:inset-y-24 { + top: 6rem !important; + bottom: 6rem !important; } - .sm\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; + .md\:inset-x-24 { + right: 6rem !important; + left: 6rem !important; } - .sm\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; + .md\:inset-y-28 { + top: 7rem !important; + bottom: 7rem !important; } - .sm\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; + .md\:inset-x-28 { + right: 7rem !important; + left: 7rem !important; } - .sm\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; + .md\:inset-y-32 { + top: 8rem !important; + bottom: 8rem !important; } - .sm\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; + .md\:inset-x-32 { + right: 8rem !important; + left: 8rem !important; } - .sm\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; + .md\:inset-y-36 { + top: 9rem !important; + bottom: 9rem !important; } - .sm\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0) !important; + .md\:inset-x-36 { + right: 9rem !important; + left: 9rem !important; } - .sm\:backdrop-invert { - --tw-backdrop-invert: invert(100%) !important; + .md\:inset-y-40 { + top: 10rem !important; + bottom: 10rem !important; } - .sm\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0) !important; + .md\:inset-x-40 { + right: 10rem !important; + left: 10rem !important; } - .sm\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5) !important; + .md\:inset-y-44 { + top: 11rem !important; + bottom: 11rem !important; } - .sm\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1) !important; + .md\:inset-x-44 { + right: 11rem !important; + left: 11rem !important; } - .sm\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5) !important; + .md\:inset-y-48 { + top: 12rem !important; + bottom: 12rem !important; } - .sm\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2) !important; + .md\:inset-x-48 { + right: 12rem !important; + left: 12rem !important; } - .sm\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0) !important; + .md\:inset-y-52 { + top: 13rem !important; + bottom: 13rem !important; } - .sm\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%) !important; + .md\:inset-x-52 { + right: 13rem !important; + left: 13rem !important; } - .sm\:example { - font-weight: 700; - color: #ef4444; + .md\:inset-y-56 { + top: 14rem !important; + bottom: 14rem !important; } -} -@media (min-width: 768px) { - .md\:container { - width: 100%; + .md\:inset-x-56 { + right: 14rem !important; + left: 14rem !important; } - @media (min-width: 640px) { - .md\:container { - max-width: 640px; - } + .md\:inset-y-60 { + top: 15rem !important; + bottom: 15rem !important; } - @media (min-width: 768px) { - .md\:container { - max-width: 768px; - } + .md\:inset-x-60 { + right: 15rem !important; + left: 15rem !important; } - @media (min-width: 1024px) { - .md\:container { - max-width: 1024px; - } + .md\:inset-y-64 { + top: 16rem !important; + bottom: 16rem !important; } - @media (min-width: 1280px) { - .md\:container { - max-width: 1280px; - } + .md\:inset-x-64 { + right: 16rem !important; + left: 16rem !important; } - @media (min-width: 1536px) { - .md\:container { - max-width: 1536px; - } + .md\:inset-y-72 { + top: 18rem !important; + bottom: 18rem !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\:inset-x-72 { + right: 18rem !important; + left: 18rem !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\:inset-y-80 { + top: 20rem !important; + bottom: 20rem !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\:inset-x-80 { + right: 20rem !important; + left: 20rem !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\:inset-y-96 { + top: 24rem !important; + bottom: 24rem !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\:inset-x-96 { + right: 24rem !important; + left: 24rem !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\:inset-y-auto { + top: auto !important; + bottom: auto !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\:inset-x-auto { + right: auto !important; + left: auto !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\:inset-y-px { + top: 1px !important; + bottom: 1px !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\:inset-x-px { + right: 1px !important; + left: 1px !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\:inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !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\:inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !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\:inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !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\:inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !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\:inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !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\:inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !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\:inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !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\:inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !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\:-inset-y-0 { + top: 0px !important; + bottom: 0px !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\:-inset-x-0 { + right: 0px !important; + left: 0px !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\:-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !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\:-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !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\:-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !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\:-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !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\:-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !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\:-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !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\:-inset-y-4 { + top: -1rem !important; + bottom: -1rem !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\:-inset-x-4 { + right: -1rem !important; + left: -1rem !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\:-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !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\:-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !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\:-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !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\:-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !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\:-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !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\:-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !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\:-inset-y-8 { + top: -2rem !important; + bottom: -2rem !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\:-inset-x-8 { + right: -2rem !important; + left: -2rem !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\:-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !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\:-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !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\:-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !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\:-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !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\:-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !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\:-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !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\:-inset-y-12 { + top: -3rem !important; + bottom: -3rem !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\:-inset-x-12 { + right: -3rem !important; + left: -3rem !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\:-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !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\:-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !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\:-inset-y-16 { + top: -4rem !important; + bottom: -4rem !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\:-inset-x-16 { + right: -4rem !important; + left: -4rem !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\:-inset-y-20 { + top: -5rem !important; + bottom: -5rem !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\:-inset-x-20 { + right: -5rem !important; + left: -5rem !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\:-inset-y-24 { + top: -6rem !important; + bottom: -6rem !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\:-inset-x-24 { + right: -6rem !important; + left: -6rem !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\:-inset-y-28 { + top: -7rem !important; + bottom: -7rem !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\:-inset-x-28 { + right: -7rem !important; + left: -7rem !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\:-inset-y-32 { + top: -8rem !important; + bottom: -8rem !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\:-inset-x-32 { + right: -8rem !important; + left: -8rem !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\:-inset-y-36 { + top: -9rem !important; + bottom: -9rem !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\:-inset-x-36 { + right: -9rem !important; + left: -9rem !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\:-inset-y-40 { + top: -10rem !important; + bottom: -10rem !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\:-inset-x-40 { + right: -10rem !important; + left: -10rem !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\:-inset-y-44 { + top: -11rem !important; + bottom: -11rem !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\:-inset-x-44 { + right: -11rem !important; + left: -11rem !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\:-inset-y-48 { + top: -12rem !important; + bottom: -12rem !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\:-inset-x-48 { + right: -12rem !important; + left: -12rem !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\:-inset-y-52 { + top: -13rem !important; + bottom: -13rem !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\:-inset-x-52 { + right: -13rem !important; + left: -13rem !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\:-inset-y-56 { + top: -14rem !important; + bottom: -14rem !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\:-inset-x-56 { + right: -14rem !important; + left: -14rem !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\:-inset-y-60 { + top: -15rem !important; + bottom: -15rem !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\:-inset-x-60 { + right: -15rem !important; + left: -15rem !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\:-inset-y-64 { + top: -16rem !important; + bottom: -16rem !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\:-inset-x-64 { + right: -16rem !important; + left: -16rem !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\:-inset-y-72 { + top: -18rem !important; + bottom: -18rem !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\:-inset-x-72 { + right: -18rem !important; + left: -18rem !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\:-inset-y-80 { + top: -20rem !important; + bottom: -20rem !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\:-inset-x-80 { + right: -20rem !important; + left: -20rem !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\:-inset-y-96 { + top: -24rem !important; + bottom: -24rem !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\:-inset-x-96 { + right: -24rem !important; + left: -24rem !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\:-inset-y-px { + top: -1px !important; + bottom: -1px !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\:-inset-x-px { + right: -1px !important; + left: -1px !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\:-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !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\:-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !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\:-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !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\:-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !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\:-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !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\:-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !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\:-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !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\:-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !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\:inset-y-1\/2 { + top: 50% !important; + bottom: 50% !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\:inset-x-1\/2 { + right: 50% !important; + left: 50% !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\:inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !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\:inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !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\:inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !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\:inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !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\:inset-y-1\/4 { + top: 25% !important; + bottom: 25% !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\:inset-x-1\/4 { + right: 25% !important; + left: 25% !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\:inset-y-2\/4 { + top: 50% !important; + bottom: 50% !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\:inset-x-2\/4 { + right: 50% !important; + left: 50% !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\:inset-y-3\/4 { + top: 75% !important; + bottom: 75% !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\:inset-x-3\/4 { + right: 75% !important; + left: 75% !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\:inset-y-full { + top: 100% !important; + bottom: 100% !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\:inset-x-full { + right: 100% !important; + left: 100% !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\:-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !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\:-inset-x-1\/2 { + right: -50% !important; + left: -50% !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\:-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !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\:-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !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\:-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !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\:-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !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\:-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !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\:-inset-x-1\/4 { + right: -25% !important; + left: -25% !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\:-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !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\:-inset-x-2\/4 { + right: -50% !important; + left: -50% !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\:-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !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\:-inset-x-3\/4 { + right: -75% !important; + left: -75% !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\:-inset-y-full { + top: -100% !important; + bottom: -100% !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\:-inset-x-full { + right: -100% !important; + left: -100% !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\:top-0 { + top: 0px !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\:right-0 { + right: 0px !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\:bottom-0 { + bottom: 0px !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\:left-0 { + left: 0px !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\:top-1 { + top: 0.25rem !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\:right-1 { + right: 0.25rem !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\:bottom-1 { + bottom: 0.25rem !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\:left-1 { + left: 0.25rem !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\:top-2 { + top: 0.5rem !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\:right-2 { + right: 0.5rem !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\:bottom-2 { + bottom: 0.5rem !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\:left-2 { + left: 0.5rem !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\:top-3 { + top: 0.75rem !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\:right-3 { + right: 0.75rem !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\:bottom-3 { + bottom: 0.75rem !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\:left-3 { + left: 0.75rem !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\:top-4 { + top: 1rem !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\:right-4 { + right: 1rem !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\:bottom-4 { + bottom: 1rem !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\:left-4 { + left: 1rem !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\:top-5 { + top: 1.25rem !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\:right-5 { + right: 1.25rem !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\:bottom-5 { + bottom: 1.25rem !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\:left-5 { + left: 1.25rem !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\:top-6 { + top: 1.5rem !important; } - .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1 !important; + .md\:right-6 { + right: 1.5rem !important; } - .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1 !important; + .md\:bottom-6 { + bottom: 1.5rem !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\:left-6 { + left: 1.5rem !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\:top-7 { + top: 1.75rem !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\:right-7 { + right: 1.75rem !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\:bottom-7 { + bottom: 1.75rem !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\:left-7 { + left: 1.75rem !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\:top-8 { + top: 2rem !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\:right-8 { + right: 2rem !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\:bottom-8 { + bottom: 2rem !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\:left-8 { + left: 2rem !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\:top-9 { + top: 2.25rem !important; } - .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1 !important; + .md\:right-9 { + right: 2.25rem !important; } - .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1 !important; + .md\:bottom-9 { + bottom: 2.25rem !important; } - .md\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent !important; + .md\:left-9 { + left: 2.25rem !important; } - .md\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor !important; + .md\:top-10 { + top: 2.5rem !important; } - .md\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; + .md\:right-10 { + right: 2.5rem !important; } - .md\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; + .md\:bottom-10 { + bottom: 2.5rem !important; } - .md\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; + .md\:left-10 { + left: 2.5rem !important; } - .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; + .md\:top-11 { + top: 2.75rem !important; } - .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; + .md\:right-11 { + right: 2.75rem !important; } - .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; + .md\:bottom-11 { + bottom: 2.75rem !important; } - .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; + .md\:left-11 { + left: 2.75rem !important; } - .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; + .md\:top-12 { + top: 3rem !important; } - .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; + .md\:right-12 { + right: 3rem !important; } - .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; + .md\:bottom-12 { + bottom: 3rem !important; } - .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; + .md\:left-12 { + left: 3rem !important; } - .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; + .md\:top-14 { + top: 3.5rem !important; } - .md\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; + .md\:right-14 { + right: 3.5rem !important; } - .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; + .md\:bottom-14 { + bottom: 3.5rem !important; } - .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; + .md\:left-14 { + left: 3.5rem !important; } - .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; + .md\:top-16 { + top: 4rem !important; } - .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; + .md\:right-16 { + right: 4rem !important; } - .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; + .md\:bottom-16 { + bottom: 4rem !important; } - .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; + .md\:left-16 { + left: 4rem !important; } - .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; + .md\:top-20 { + top: 5rem !important; } - .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; + .md\:right-20 { + right: 5rem !important; } - .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; + .md\:bottom-20 { + bottom: 5rem !important; } - .md\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; + .md\:left-20 { + left: 5rem !important; } - .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; + .md\:top-24 { + top: 6rem !important; } - .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; + .md\:right-24 { + right: 6rem !important; } - .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; + .md\:bottom-24 { + bottom: 6rem !important; } - .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; + .md\:left-24 { + left: 6rem !important; } - .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; + .md\:top-28 { + top: 7rem !important; } - .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; + .md\:right-28 { + right: 7rem !important; } - .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; + .md\:bottom-28 { + bottom: 7rem !important; } - .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; + .md\:left-28 { + left: 7rem !important; } - .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; + .md\:top-32 { + top: 8rem !important; } - .md\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; + .md\:right-32 { + right: 8rem !important; } - .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; + .md\:bottom-32 { + bottom: 8rem !important; } - .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; + .md\:left-32 { + left: 8rem !important; } - .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; + .md\:top-36 { + top: 9rem !important; } - .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; + .md\:right-36 { + right: 9rem !important; } - .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; + .md\:bottom-36 { + bottom: 9rem !important; } - .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; + .md\:left-36 { + left: 9rem !important; } - .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; + .md\:top-40 { + top: 10rem !important; } - .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; + .md\:right-40 { + right: 10rem !important; } - .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; + .md\:bottom-40 { + bottom: 10rem !important; } - .md\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; + .md\:left-40 { + left: 10rem !important; } - .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; + .md\:top-44 { + top: 11rem !important; } - .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; + .md\:right-44 { + right: 11rem !important; } - .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; + .md\:bottom-44 { + bottom: 11rem !important; } - .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; + .md\:left-44 { + left: 11rem !important; } - .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; + .md\:top-48 { + top: 12rem !important; } - .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; + .md\:right-48 { + right: 12rem !important; } - .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; + .md\:bottom-48 { + bottom: 12rem !important; } - .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; + .md\:left-48 { + left: 12rem !important; } - .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; + .md\:top-52 { + top: 13rem !important; } - .md\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; + .md\:right-52 { + right: 13rem !important; } - .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; + .md\:bottom-52 { + bottom: 13rem !important; } - .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; + .md\:left-52 { + left: 13rem !important; } - .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; + .md\:top-56 { + top: 14rem !important; } - .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; + .md\:right-56 { + right: 14rem !important; } - .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; + .md\:bottom-56 { + bottom: 14rem !important; } - .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; + .md\:left-56 { + left: 14rem !important; } - .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; + .md\:top-60 { + top: 15rem !important; } - .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; + .md\:right-60 { + right: 15rem !important; } - .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; + .md\:bottom-60 { + bottom: 15rem !important; } - .md\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; + .md\:left-60 { + left: 15rem !important; } - .md\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; + .md\:top-64 { + top: 16rem !important; } - .md\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; + .md\:right-64 { + right: 16rem !important; } - .md\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; + .md\:bottom-64 { + bottom: 16rem !important; } - .md\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; + .md\:left-64 { + left: 16rem !important; } - .md\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; + .md\:top-72 { + top: 18rem !important; } - .md\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; + .md\:right-72 { + right: 18rem !important; } - .md\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; + .md\:bottom-72 { + bottom: 18rem !important; } - .md\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; + .md\:left-72 { + left: 18rem !important; } - .md\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; + .md\:top-80 { + top: 20rem !important; } - .md\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; + .md\:right-80 { + right: 20rem !important; } - .md\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; + .md\:bottom-80 { + bottom: 20rem !important; } - .md\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; + .md\:left-80 { + left: 20rem !important; } - .md\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; + .md\:top-96 { + top: 24rem !important; } - .md\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; + .md\:right-96 { + right: 24rem !important; } - .md\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; + .md\:bottom-96 { + bottom: 24rem !important; } - .md\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; + .md\:left-96 { + left: 24rem !important; } - .md\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; + .md\:top-auto { + top: auto !important; } - .md\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; + .md\:right-auto { + right: auto !important; } - .md\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; + .md\:bottom-auto { + bottom: auto !important; } - .md\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid !important; + .md\:left-auto { + left: auto !important; } - .md\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed !important; + .md\:top-px { + top: 1px !important; } - .md\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted !important; + .md\:right-px { + right: 1px !important; } - .md\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double !important; + .md\:bottom-px { + bottom: 1px !important; } - .md\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none !important; + .md\:left-px { + left: 1px !important; } - .md\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0 !important; + .md\:top-0\.5 { + top: 0.125rem !important; } - .md\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05 !important; + .md\:right-0\.5 { + right: 0.125rem !important; } - .md\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1 !important; + .md\:bottom-0\.5 { + bottom: 0.125rem !important; } - .md\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2 !important; + .md\:left-0\.5 { + left: 0.125rem !important; } - .md\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25 !important; + .md\:top-1\.5 { + top: 0.375rem !important; } - .md\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3 !important; + .md\:right-1\.5 { + right: 0.375rem !important; } - .md\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4 !important; + .md\:bottom-1\.5 { + bottom: 0.375rem !important; } - .md\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5 !important; + .md\:left-1\.5 { + left: 0.375rem !important; } - .md\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6 !important; + .md\:top-2\.5 { + top: 0.625rem !important; } - .md\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7 !important; + .md\:right-2\.5 { + right: 0.625rem !important; } - .md\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75 !important; + .md\:bottom-2\.5 { + bottom: 0.625rem !important; } - .md\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8 !important; + .md\:left-2\.5 { + left: 0.625rem !important; } - .md\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9 !important; + .md\:top-3\.5 { + top: 0.875rem !important; } - .md\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95 !important; + .md\:right-3\.5 { + right: 0.875rem !important; } - .md\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; + .md\:bottom-3\.5 { + bottom: 0.875rem !important; } - .md\:sr-only { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .md\:left-3\.5 { + left: 0.875rem !important; } - .md\:not-sr-only { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .md\:-top-0 { + top: 0px !important; } - .md\:focus-within\:sr-only:focus-within { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .md\:-right-0 { + right: 0px !important; } - .md\:focus-within\:not-sr-only:focus-within { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .md\:-bottom-0 { + bottom: 0px !important; } - .md\:focus\:sr-only:focus { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .md\:-left-0 { + left: 0px !important; } - .md\:focus\:not-sr-only:focus { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .md\:-top-1 { + top: -0.25rem !important; } - .md\:appearance-none { - appearance: none !important; + .md\:-right-1 { + right: -0.25rem !important; } - .md\:bg-fixed { - background-attachment: fixed !important; + .md\:-bottom-1 { + bottom: -0.25rem !important; } - .md\:bg-local { - background-attachment: local !important; + .md\:-left-1 { + left: -0.25rem !important; } - .md\:bg-scroll { - background-attachment: scroll !important; + .md\:-top-2 { + top: -0.5rem !important; } - .md\:bg-clip-border { - background-clip: border-box !important; + .md\:-right-2 { + right: -0.5rem !important; } - .md\:bg-clip-padding { - background-clip: padding-box !important; + .md\:-bottom-2 { + bottom: -0.5rem !important; } - .md\:bg-clip-content { - background-clip: content-box !important; + .md\:-left-2 { + left: -0.5rem !important; } - .md\:bg-clip-text { - background-clip: text !important; + .md\:-top-3 { + top: -0.75rem !important; } - .md\:bg-transparent { - background-color: transparent !important; + .md\:-right-3 { + right: -0.75rem !important; } - .md\:bg-current { - background-color: currentColor !important; + .md\:-bottom-3 { + bottom: -0.75rem !important; } - .md\:bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .md\:-left-3 { + left: -0.75rem !important; } - .md\:bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .md\:-top-4 { + top: -1rem !important; } - .md\:bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .md\:-right-4 { + right: -1rem !important; } - .md\:bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .md\:-bottom-4 { + bottom: -1rem !important; } - .md\:bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .md\:-left-4 { + left: -1rem !important; } - .md\:bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .md\:-top-5 { + top: -1.25rem !important; } - .md\:bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .md\:-right-5 { + right: -1.25rem !important; } - .md\:bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .md\:-bottom-5 { + bottom: -1.25rem !important; } - .md\:bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .md\:-left-5 { + left: -1.25rem !important; } - .md\:bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .md\:-top-6 { + top: -1.5rem !important; } - .md\:bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .md\:-right-6 { + right: -1.5rem !important; } - .md\:bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .md\:-bottom-6 { + bottom: -1.5rem !important; } - .md\:bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .md\:-left-6 { + left: -1.5rem !important; } - .md\:bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .md\:-top-7 { + top: -1.75rem !important; } - .md\:bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .md\:-right-7 { + right: -1.75rem !important; } - .md\:bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .md\:-bottom-7 { + bottom: -1.75rem !important; } - .md\:bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .md\:-left-7 { + left: -1.75rem !important; } - .md\:bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .md\:-top-8 { + top: -2rem !important; } - .md\:bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .md\:-right-8 { + right: -2rem !important; } - .md\:bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .md\:-bottom-8 { + bottom: -2rem !important; } - .md\:bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .md\:-left-8 { + left: -2rem !important; } - .md\:bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .md\:-top-9 { + top: -2.25rem !important; } - .md\:bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .md\:-right-9 { + right: -2.25rem !important; } - .md\:bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .md\:-bottom-9 { + bottom: -2.25rem !important; } - .md\:bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .md\:-left-9 { + left: -2.25rem !important; } - .md\:bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .md\:-top-10 { + top: -2.5rem !important; } - .md\:bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .md\:-right-10 { + right: -2.5rem !important; } - .md\:bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .md\:-bottom-10 { + bottom: -2.5rem !important; } - .md\:bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .md\:-left-10 { + left: -2.5rem !important; } - .md\:bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .md\:-top-11 { + top: -2.75rem !important; } - .md\:bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .md\:-right-11 { + right: -2.75rem !important; } - .md\:bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .md\:-bottom-11 { + bottom: -2.75rem !important; } - .md\:bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .md\:-left-11 { + left: -2.75rem !important; } - .md\:bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .md\:-top-12 { + top: -3rem !important; } - .md\:bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .md\:-right-12 { + right: -3rem !important; } - .md\:bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .md\:-bottom-12 { + bottom: -3rem !important; } - .md\:bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .md\:-left-12 { + left: -3rem !important; } - .md\:bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .md\:-top-14 { + top: -3.5rem !important; } - .md\:bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .md\:-right-14 { + right: -3.5rem !important; } - .md\:bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .md\:-bottom-14 { + bottom: -3.5rem !important; } - .md\:bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .md\:-left-14 { + left: -3.5rem !important; } - .md\:bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .md\:-top-16 { + top: -4rem !important; } - .md\:bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .md\:-right-16 { + right: -4rem !important; } - .md\:bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .md\:-bottom-16 { + bottom: -4rem !important; } - .md\:bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .md\:-left-16 { + left: -4rem !important; } - .md\:bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .md\:-top-20 { + top: -5rem !important; } - .md\:bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .md\:-right-20 { + right: -5rem !important; } - .md\:bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .md\:-bottom-20 { + bottom: -5rem !important; } - .md\:bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .md\:-left-20 { + left: -5rem !important; } - .md\:bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .md\:-top-24 { + top: -6rem !important; } - .md\:bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .md\:-right-24 { + right: -6rem !important; } - .md\:bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .md\:-bottom-24 { + bottom: -6rem !important; } - .md\:bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .md\:-left-24 { + left: -6rem !important; } - .md\:bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .md\:-top-28 { + top: -7rem !important; } - .md\:bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .md\:-right-28 { + right: -7rem !important; } - .md\:bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .md\:-bottom-28 { + bottom: -7rem !important; } - .md\:bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .md\:-left-28 { + left: -7rem !important; } - .md\:bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .md\:-top-32 { + top: -8rem !important; } - .md\:bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .md\:-right-32 { + right: -8rem !important; } - .md\:bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .md\:-bottom-32 { + bottom: -8rem !important; } - .md\:bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .md\:-left-32 { + left: -8rem !important; } - .md\:bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .md\:-top-36 { + top: -9rem !important; } - .md\:bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .md\:-right-36 { + right: -9rem !important; } - .md\:bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .md\:-bottom-36 { + bottom: -9rem !important; } - .md\:bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .md\:-left-36 { + left: -9rem !important; } - .md\:bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .md\:-top-40 { + top: -10rem !important; } - .md\:bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .md\:-right-40 { + right: -10rem !important; } - .md\:bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .md\:-bottom-40 { + bottom: -10rem !important; } - .md\:bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .md\:-left-40 { + left: -10rem !important; } - .md\:bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .md\:-top-44 { + top: -11rem !important; } - .md\:bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .md\:-right-44 { + right: -11rem !important; } - .md\:bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .md\:-bottom-44 { + bottom: -11rem !important; } - .md\:bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .md\:-left-44 { + left: -11rem !important; } - .md\:bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .md\:-top-48 { + top: -12rem !important; } - .md\:bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .md\:-right-48 { + right: -12rem !important; } - .md\:bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .md\:-bottom-48 { + bottom: -12rem !important; } - .md\:bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .md\:-left-48 { + left: -12rem !important; } - .md\:bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .md\:-top-52 { + top: -13rem !important; } - .md\:bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .md\:-right-52 { + right: -13rem !important; } - .md\:bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .md\:-bottom-52 { + bottom: -13rem !important; + } + + .md\:-left-52 { + left: -13rem !important; } - .md\:bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .md\:-top-56 { + top: -14rem !important; } - .md\:bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .md\:-right-56 { + right: -14rem !important; } - .group:hover .md\:group-hover\:bg-transparent { - background-color: transparent !important; + .md\:-bottom-56 { + bottom: -14rem !important; } - .group:hover .md\:group-hover\:bg-current { - background-color: currentColor !important; + .md\:-left-56 { + left: -14rem !important; } - .group:hover .md\:group-hover\:bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .md\:-top-60 { + top: -15rem !important; } - .group:hover .md\:group-hover\:bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .md\:-right-60 { + right: -15rem !important; } - .group:hover .md\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .md\:-bottom-60 { + bottom: -15rem !important; } - .group:hover .md\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .md\:-left-60 { + left: -15rem !important; } - .group:hover .md\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .md\:-top-64 { + top: -16rem !important; } - .group:hover .md\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .md\:-right-64 { + right: -16rem !important; } - .group:hover .md\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .md\:-bottom-64 { + bottom: -16rem !important; } - .group:hover .md\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .md\:-left-64 { + left: -16rem !important; } - .group:hover .md\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .md\:-top-72 { + top: -18rem !important; } - .group:hover .md\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .md\:-right-72 { + right: -18rem !important; } - .group:hover .md\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .md\:-bottom-72 { + bottom: -18rem !important; } - .group:hover .md\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .md\:-left-72 { + left: -18rem !important; } - .group:hover .md\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .md\:-top-80 { + top: -20rem !important; } - .group:hover .md\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .md\:-right-80 { + right: -20rem !important; } - .group:hover .md\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .md\:-bottom-80 { + bottom: -20rem !important; } - .group:hover .md\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .md\:-left-80 { + left: -20rem !important; } - .group:hover .md\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .md\:-top-96 { + top: -24rem !important; } - .group:hover .md\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .md\:-right-96 { + right: -24rem !important; } - .group:hover .md\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .md\:-bottom-96 { + bottom: -24rem !important; } - .group:hover .md\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .md\:-left-96 { + left: -24rem !important; } - .group:hover .md\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .md\:-top-px { + top: -1px !important; } - .group:hover .md\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .md\:-right-px { + right: -1px !important; } - .group:hover .md\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .md\:-bottom-px { + bottom: -1px !important; } - .group:hover .md\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .md\:-left-px { + left: -1px !important; } - .group:hover .md\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .md\:-top-0\.5 { + top: -0.125rem !important; } - .group:hover .md\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .md\:-right-0\.5 { + right: -0.125rem !important; } - .group:hover .md\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .md\:-bottom-0\.5 { + bottom: -0.125rem !important; } - .group:hover .md\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .md\:-left-0\.5 { + left: -0.125rem !important; } - .group:hover .md\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .md\:-top-1\.5 { + top: -0.375rem !important; } - .group:hover .md\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .md\:-right-1\.5 { + right: -0.375rem !important; } - .group:hover .md\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .md\:-bottom-1\.5 { + bottom: -0.375rem !important; } - .group:hover .md\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .md\:-left-1\.5 { + left: -0.375rem !important; } - .group:hover .md\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .md\:-top-2\.5 { + top: -0.625rem !important; } - .group:hover .md\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .md\:-right-2\.5 { + right: -0.625rem !important; } - .group:hover .md\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .md\:-bottom-2\.5 { + bottom: -0.625rem !important; } - .group:hover .md\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .md\:-left-2\.5 { + left: -0.625rem !important; } - .group:hover .md\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .md\:-top-3\.5 { + top: -0.875rem !important; } - .group:hover .md\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .md\:-right-3\.5 { + right: -0.875rem !important; } - .group:hover .md\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .md\:-bottom-3\.5 { + bottom: -0.875rem !important; } - .group:hover .md\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .md\:-left-3\.5 { + left: -0.875rem !important; } - .group:hover .md\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .md\:top-1\/2 { + top: 50% !important; } - .group:hover .md\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .md\:right-1\/2 { + right: 50% !important; } - .group:hover .md\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .md\:bottom-1\/2 { + bottom: 50% !important; } - .group:hover .md\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .md\:left-1\/2 { + left: 50% !important; } - .group:hover .md\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .md\:top-1\/3 { + top: 33.333333% !important; } - .group:hover .md\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .md\:right-1\/3 { + right: 33.333333% !important; } - .group:hover .md\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .md\:bottom-1\/3 { + bottom: 33.333333% !important; } - .group:hover .md\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .md\:left-1\/3 { + left: 33.333333% !important; } - .group:hover .md\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .md\:top-2\/3 { + top: 66.666667% !important; } - .group:hover .md\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .md\:right-2\/3 { + right: 66.666667% !important; } - .group:hover .md\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .md\:bottom-2\/3 { + bottom: 66.666667% !important; } - .group:hover .md\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .md\:left-2\/3 { + left: 66.666667% !important; } - .group:hover .md\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .md\:top-1\/4 { + top: 25% !important; } - .group:hover .md\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .md\:right-1\/4 { + right: 25% !important; } - .group:hover .md\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .md\:bottom-1\/4 { + bottom: 25% !important; } - .group:hover .md\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .md\:left-1\/4 { + left: 25% !important; } - .group:hover .md\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .md\:top-2\/4 { + top: 50% !important; } - .group:hover .md\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .md\:right-2\/4 { + right: 50% !important; } - .group:hover .md\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .md\:bottom-2\/4 { + bottom: 50% !important; } - .group:hover .md\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .md\:left-2\/4 { + left: 50% !important; } - .group:hover .md\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .md\:top-3\/4 { + top: 75% !important; } - .group:hover .md\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .md\:right-3\/4 { + right: 75% !important; } - .group:hover .md\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .md\:bottom-3\/4 { + bottom: 75% !important; } - .group:hover .md\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .md\:left-3\/4 { + left: 75% !important; } - .group:hover .md\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .md\:top-full { + top: 100% !important; } - .group:hover .md\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .md\:right-full { + right: 100% !important; } - .group:hover .md\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .md\:bottom-full { + bottom: 100% !important; } - .group:hover .md\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .md\:left-full { + left: 100% !important; } - .group:hover .md\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .md\:-top-1\/2 { + top: -50% !important; } - .group:hover .md\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .md\:-right-1\/2 { + right: -50% !important; } - .group:hover .md\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .md\:-bottom-1\/2 { + bottom: -50% !important; } - .group:hover .md\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .md\:-left-1\/2 { + left: -50% !important; } - .group:hover .md\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .md\:-top-1\/3 { + top: -33.333333% !important; } - .group:hover .md\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .md\:-right-1\/3 { + right: -33.333333% !important; } - .group:hover .md\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .md\:-bottom-1\/3 { + bottom: -33.333333% !important; } - .group:hover .md\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .md\:-left-1\/3 { + left: -33.333333% !important; } - .group:hover .md\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .md\:-top-2\/3 { + top: -66.666667% !important; } - .group:hover .md\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .md\:-right-2\/3 { + right: -66.666667% !important; } - .group:hover .md\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .md\:-bottom-2\/3 { + bottom: -66.666667% !important; } - .group:hover .md\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .md\:-left-2\/3 { + left: -66.666667% !important; } - .group:hover .md\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .md\:-top-1\/4 { + top: -25% !important; } - .group:hover .md\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .md\:-right-1\/4 { + right: -25% !important; } - .md\:focus-within\:bg-transparent:focus-within { - background-color: transparent !important; + .md\:-bottom-1\/4 { + bottom: -25% !important; } - .md\:focus-within\:bg-current:focus-within { - background-color: currentColor !important; + .md\:-left-1\/4 { + left: -25% !important; } - .md\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .md\:-top-2\/4 { + top: -50% !important; } - .md\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .md\:-right-2\/4 { + right: -50% !important; } - .md\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .md\:-bottom-2\/4 { + bottom: -50% !important; } - .md\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .md\:-left-2\/4 { + left: -50% !important; } - .md\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .md\:-top-3\/4 { + top: -75% !important; } - .md\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .md\:-right-3\/4 { + right: -75% !important; } - .md\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .md\:-bottom-3\/4 { + bottom: -75% !important; } - .md\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .md\:-left-3\/4 { + left: -75% !important; } - .md\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .md\:-top-full { + top: -100% !important; } - .md\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .md\:-right-full { + right: -100% !important; } - .md\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .md\:-bottom-full { + bottom: -100% !important; } - .md\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .md\:-left-full { + left: -100% !important; } - .md\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .md\:isolate { + isolation: isolate !important; } - .md\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .md\:isolation-auto { + isolation: auto !important; } - .md\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .md\:z-0 { + z-index: 0 !important; } - .md\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .md\:z-10 { + z-index: 10 !important; } - .md\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .md\:z-20 { + z-index: 20 !important; } - .md\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .md\:z-30 { + z-index: 30 !important; } - .md\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .md\:z-40 { + z-index: 40 !important; } - .md\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .md\:z-50 { + z-index: 50 !important; } - .md\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .md\:z-auto { + z-index: auto !important; } - .md\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .md\:focus-within\:z-0:focus-within { + z-index: 0 !important; } - .md\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .md\:focus-within\:z-10:focus-within { + z-index: 10 !important; } - .md\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .md\:focus-within\:z-20:focus-within { + z-index: 20 !important; } - .md\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .md\:focus-within\:z-30:focus-within { + z-index: 30 !important; } - .md\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .md\:focus-within\:z-40:focus-within { + z-index: 40 !important; } - .md\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .md\:focus-within\:z-50:focus-within { + z-index: 50 !important; } - .md\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .md\:focus-within\:z-auto:focus-within { + z-index: auto !important; } - .md\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .md\:focus\:z-0:focus { + z-index: 0 !important; } - .md\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .md\:focus\:z-10:focus { + z-index: 10 !important; } - .md\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .md\:focus\:z-20:focus { + z-index: 20 !important; } - .md\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .md\:focus\:z-30:focus { + z-index: 30 !important; } - .md\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .md\:focus\:z-40:focus { + z-index: 40 !important; } - .md\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .md\:focus\:z-50:focus { + z-index: 50 !important; } - .md\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .md\:focus\:z-auto:focus { + z-index: auto !important; } - .md\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .md\:order-1 { + order: 1 !important; } - .md\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .md\:order-2 { + order: 2 !important; } - .md\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .md\:order-3 { + order: 3 !important; } - .md\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .md\:order-4 { + order: 4 !important; } - .md\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .md\:order-5 { + order: 5 !important; } - .md\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .md\:order-6 { + order: 6 !important; } - .md\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .md\:order-7 { + order: 7 !important; } - .md\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .md\:order-8 { + order: 8 !important; } - .md\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .md\:order-9 { + order: 9 !important; } - .md\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .md\:order-10 { + order: 10 !important; } - .md\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .md\:order-11 { + order: 11 !important; } - .md\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .md\:order-12 { + order: 12 !important; } - .md\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .md\:order-first { + order: -9999 !important; } - .md\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .md\:order-last { + order: 9999 !important; } - .md\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .md\:order-none { + order: 0 !important; } - .md\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .md\:col-auto { + grid-column: auto !important; } - .md\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .md\:col-span-1 { + grid-column: span 1 / span 1 !important; } - .md\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .md\:col-span-2 { + grid-column: span 2 / span 2 !important; } - .md\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .md\:col-span-3 { + grid-column: span 3 / span 3 !important; } - .md\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .md\:col-span-4 { + grid-column: span 4 / span 4 !important; } - .md\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .md\:col-span-5 { + grid-column: span 5 / span 5 !important; } - .md\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .md\:col-span-6 { + grid-column: span 6 / span 6 !important; } - .md\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .md\:col-span-7 { + grid-column: span 7 / span 7 !important; } - .md\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .md\:col-span-8 { + grid-column: span 8 / span 8 !important; } - .md\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .md\:col-span-9 { + grid-column: span 9 / span 9 !important; } - .md\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .md\:col-span-10 { + grid-column: span 10 / span 10 !important; } - .md\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .md\:col-span-11 { + grid-column: span 11 / span 11 !important; } - .md\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .md\:col-span-12 { + grid-column: span 12 / span 12 !important; } - .md\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .md\:col-span-full { + grid-column: 1 / -1 !important; } - .md\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .md\:col-start-1 { + grid-column-start: 1 !important; } - .md\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .md\:col-start-2 { + grid-column-start: 2 !important; } - .md\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .md\:col-start-3 { + grid-column-start: 3 !important; } - .md\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .md\:col-start-4 { + grid-column-start: 4 !important; } - .md\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .md\:col-start-5 { + grid-column-start: 5 !important; } - .md\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .md\:col-start-6 { + grid-column-start: 6 !important; } - .md\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .md\:col-start-7 { + grid-column-start: 7 !important; } - .md\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .md\:col-start-8 { + grid-column-start: 8 !important; } - .md\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .md\:col-start-9 { + grid-column-start: 9 !important; } - .md\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .md\:col-start-10 { + grid-column-start: 10 !important; } - .md\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .md\:col-start-11 { + grid-column-start: 11 !important; } - .md\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .md\:col-start-12 { + grid-column-start: 12 !important; } - .md\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .md\:col-start-13 { + grid-column-start: 13 !important; } - .md\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .md\:col-start-auto { + grid-column-start: auto !important; } - .md\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .md\:col-end-1 { + grid-column-end: 1 !important; } - .md\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .md\:col-end-2 { + grid-column-end: 2 !important; } - .md\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .md\:col-end-3 { + grid-column-end: 3 !important; } - .md\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .md\:col-end-4 { + grid-column-end: 4 !important; } - .md\:hover\:bg-transparent:hover { - background-color: transparent !important; + .md\:col-end-5 { + grid-column-end: 5 !important; } - .md\:hover\:bg-current:hover { - background-color: currentColor !important; + .md\:col-end-6 { + grid-column-end: 6 !important; } - .md\:hover\:bg-black:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .md\:col-end-7 { + grid-column-end: 7 !important; } - .md\:hover\:bg-white:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .md\:col-end-8 { + grid-column-end: 8 !important; } - .md\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .md\:col-end-9 { + grid-column-end: 9 !important; } - .md\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .md\:col-end-10 { + grid-column-end: 10 !important; } - .md\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .md\:col-end-11 { + grid-column-end: 11 !important; } - .md\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .md\:col-end-12 { + grid-column-end: 12 !important; } - .md\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .md\:col-end-13 { + grid-column-end: 13 !important; } - .md\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .md\:col-end-auto { + grid-column-end: auto !important; } - .md\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .md\:row-auto { + grid-row: auto !important; } - .md\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .md\:row-span-1 { + grid-row: span 1 / span 1 !important; } - .md\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .md\:row-span-2 { + grid-row: span 2 / span 2 !important; } - .md\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .md\:row-span-3 { + grid-row: span 3 / span 3 !important; } - .md\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .md\:row-span-4 { + grid-row: span 4 / span 4 !important; } - .md\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .md\:row-span-5 { + grid-row: span 5 / span 5 !important; } - .md\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .md\:row-span-6 { + grid-row: span 6 / span 6 !important; } - .md\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .md\:row-span-full { + grid-row: 1 / -1 !important; } - .md\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .md\:row-start-1 { + grid-row-start: 1 !important; } - .md\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .md\:row-start-2 { + grid-row-start: 2 !important; } - .md\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .md\:row-start-3 { + grid-row-start: 3 !important; } - .md\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .md\:row-start-4 { + grid-row-start: 4 !important; } - .md\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .md\:row-start-5 { + grid-row-start: 5 !important; } - .md\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .md\:row-start-6 { + grid-row-start: 6 !important; } - .md\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .md\:row-start-7 { + grid-row-start: 7 !important; } - .md\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .md\:row-start-auto { + grid-row-start: auto !important; } - .md\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .md\:row-end-1 { + grid-row-end: 1 !important; } - .md\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .md\:row-end-2 { + grid-row-end: 2 !important; } - .md\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .md\:row-end-3 { + grid-row-end: 3 !important; } - .md\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .md\:row-end-4 { + grid-row-end: 4 !important; } - .md\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .md\:row-end-5 { + grid-row-end: 5 !important; } - .md\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .md\:row-end-6 { + grid-row-end: 6 !important; } - .md\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .md\:row-end-7 { + grid-row-end: 7 !important; } - .md\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .md\:row-end-auto { + grid-row-end: auto !important; } - .md\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .md\:float-right { + float: right !important; } - .md\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .md\:float-left { + float: left !important; } - .md\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .md\:float-none { + float: none !important; } - .md\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .md\:clear-left { + clear: left !important; } - .md\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .md\:clear-right { + clear: right !important; } - .md\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .md\:clear-both { + clear: both !important; } - .md\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .md\:clear-none { + clear: none !important; } - .md\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .md\:m-0 { + margin: 0px !important; } - .md\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .md\:m-1 { + margin: 0.25rem !important; } - .md\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .md\:m-2 { + margin: 0.5rem !important; } - .md\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .md\:m-3 { + margin: 0.75rem !important; } - .md\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .md\:m-4 { + margin: 1rem !important; } - .md\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .md\:m-5 { + margin: 1.25rem !important; } - .md\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .md\:m-6 { + margin: 1.5rem !important; } - .md\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .md\:m-7 { + margin: 1.75rem !important; } - .md\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .md\:m-8 { + margin: 2rem !important; } - .md\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .md\:m-9 { + margin: 2.25rem !important; } - .md\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .md\:m-10 { + margin: 2.5rem !important; } - .md\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .md\:m-11 { + margin: 2.75rem !important; } - .md\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .md\:m-12 { + margin: 3rem !important; } - .md\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .md\:m-14 { + margin: 3.5rem !important; } - .md\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .md\:m-16 { + margin: 4rem !important; } - .md\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .md\:m-20 { + margin: 5rem !important; } - .md\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .md\:m-24 { + margin: 6rem !important; } - .md\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .md\:m-28 { + margin: 7rem !important; } - .md\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .md\:m-32 { + margin: 8rem !important; } - .md\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .md\:m-36 { + margin: 9rem !important; } - .md\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .md\:m-40 { + margin: 10rem !important; } - .md\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .md\:m-44 { + margin: 11rem !important; } - .md\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .md\:m-48 { + margin: 12rem !important; } - .md\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .md\:m-52 { + margin: 13rem !important; } - .md\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .md\:m-56 { + margin: 14rem !important; } - .md\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .md\:m-60 { + margin: 15rem !important; } - .md\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .md\:m-64 { + margin: 16rem !important; } - .md\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .md\:m-72 { + margin: 18rem !important; } - .md\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .md\:m-80 { + margin: 20rem !important; } - .md\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .md\:m-96 { + margin: 24rem !important; } - .md\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .md\:m-auto { + margin: auto !important; } - .md\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .md\:m-px { + margin: 1px !important; } - .md\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .md\:m-0\.5 { + margin: 0.125rem !important; } - .md\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .md\:m-1\.5 { + margin: 0.375rem !important; } - .md\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .md\:m-2\.5 { + margin: 0.625rem !important; } - .md\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .md\:m-3\.5 { + margin: 0.875rem !important; } - .md\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .md\:-m-0 { + margin: 0px !important; } - .md\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .md\:-m-1 { + margin: -0.25rem !important; } - .md\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .md\:-m-2 { + margin: -0.5rem !important; } - .md\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .md\:-m-3 { + margin: -0.75rem !important; } - .md\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .md\:-m-4 { + margin: -1rem !important; } - .md\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .md\:-m-5 { + margin: -1.25rem !important; } - .md\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .md\:-m-6 { + margin: -1.5rem !important; } - .md\:focus\:bg-transparent:focus { - background-color: transparent !important; + .md\:-m-7 { + margin: -1.75rem !important; } - .md\:focus\:bg-current:focus { - background-color: currentColor !important; + .md\:-m-8 { + margin: -2rem !important; } - .md\:focus\:bg-black:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .md\:-m-9 { + margin: -2.25rem !important; } - .md\:focus\:bg-white:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .md\:-m-10 { + margin: -2.5rem !important; } - .md\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .md\:-m-11 { + margin: -2.75rem !important; } - .md\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .md\:-m-12 { + margin: -3rem !important; } - .md\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .md\:-m-14 { + margin: -3.5rem !important; } - .md\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .md\:-m-16 { + margin: -4rem !important; } - .md\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .md\:-m-20 { + margin: -5rem !important; } - .md\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .md\:-m-24 { + margin: -6rem !important; } - .md\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .md\:-m-28 { + margin: -7rem !important; } - .md\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .md\:-m-32 { + margin: -8rem !important; } - .md\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .md\:-m-36 { + margin: -9rem !important; } - .md\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .md\:-m-40 { + margin: -10rem !important; } - .md\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .md\:-m-44 { + margin: -11rem !important; } - .md\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .md\:-m-48 { + margin: -12rem !important; } - .md\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .md\:-m-52 { + margin: -13rem !important; } - .md\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .md\:-m-56 { + margin: -14rem !important; } - .md\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .md\:-m-60 { + margin: -15rem !important; } - .md\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .md\:-m-64 { + margin: -16rem !important; } - .md\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .md\:-m-72 { + margin: -18rem !important; } - .md\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .md\:-m-80 { + margin: -20rem !important; } - .md\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .md\:-m-96 { + margin: -24rem !important; } - .md\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .md\:-m-px { + margin: -1px !important; } - .md\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .md\:-m-0\.5 { + margin: -0.125rem !important; } - .md\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .md\:-m-1\.5 { + margin: -0.375rem !important; } - .md\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .md\:-m-2\.5 { + margin: -0.625rem !important; } - .md\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .md\:-m-3\.5 { + margin: -0.875rem !important; } - .md\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .md\:mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } - .md\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .md\:mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; } - .md\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .md\:mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; } - .md\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .md\:mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; } - .md\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .md\:mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; } - .md\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .md\:mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; } - .md\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .md\:mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; } - .md\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .md\:mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; } - .md\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .md\:mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; } - .md\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .md\:mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; } - .md\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .md\:mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; } - .md\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .md\:mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; } - .md\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .md\:mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; } - .md\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .md\:mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; } - .md\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .md\:mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; } - .md\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .md\:mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; } - .md\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .md\:mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; } - .md\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .md\:mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; } - .md\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .md\:mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; } - .md\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .md\:mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; } - .md\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .md\:mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; } - .md\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .md\:mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; } - .md\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .md\:mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; } - .md\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .md\:mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; } - .md\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .md\:mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; } - .md\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .md\:mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; } - .md\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .md\:mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; } - .md\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .md\:mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; } - .md\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .md\:mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; } - .md\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .md\:mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; } - .md\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .md\:mx-auto { + margin-left: auto !important; + margin-right: auto !important; } - .md\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .md\:mx-px { + margin-left: 1px !important; + margin-right: 1px !important; } - .md\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .md\:mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; } - .md\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .md\:mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; } - .md\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .md\:mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; } - .md\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .md\:mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; } - .md\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .md\:-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } - .md\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .md\:-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; } - .md\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .md\:-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; } - .md\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .md\:-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; } - .md\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .md\:-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; } - .md\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .md\:-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; } - .md\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .md\:-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; } - .md\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .md\:-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; } - .md\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .md\:-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; } - .md\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .md\:-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; } - .md\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .md\:-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; } - .md\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .md\:-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; } - .md\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .md\:-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; } - .md\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .md\:-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; } - .md\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .md\:-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; } - .md\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .md\:-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; } - .md\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .md\:-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; } - .md\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .md\:-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; } - .md\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .md\:-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; } - .md\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .md\:-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; } - .md\:bg-none { - background-image: none !important; + .md\:-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; } - .md\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; + .md\:-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; } - .md\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; + .md\:-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; } - .md\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; + .md\:-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; } - .md\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; + .md\:-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; } - .md\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; + .md\:-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; } - .md\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; + .md\:-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; } - .md\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; + .md\:-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; } - .md\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; + .md\:-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; } - .md\:from-transparent { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .md\:-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; } - .md\:from-current { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .md\:-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; } - .md\:from-black { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .md\:-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; } - .md\:from-white { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .md\:-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; } - .md\:from-gray-50 { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .md\:-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; } - .md\:from-gray-100 { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .md\:-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; } - .md\:from-gray-200 { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .md\:my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .md\:from-gray-300 { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .md\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .md\:from-gray-400 { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .md\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } - .md\:from-gray-500 { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .md\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; } - .md\:from-gray-600 { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .md\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } - .md\:from-gray-700 { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .md\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; } - .md\:from-gray-800 { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .md\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } - .md\:from-gray-900 { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .md\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; } - .md\:from-red-50 { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .md\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; } - .md\:from-red-100 { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .md\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; } - .md\:from-red-200 { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .md\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; } - .md\:from-red-300 { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .md\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; } - .md\:from-red-400 { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .md\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } - .md\:from-red-500 { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .md\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; } - .md\:from-red-600 { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .md\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; } - .md\:from-red-700 { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .md\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; } - .md\:from-red-800 { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .md\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; } - .md\:from-red-900 { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .md\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; } - .md\:from-yellow-50 { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .md\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; } - .md\:from-yellow-100 { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .md\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; } - .md\:from-yellow-200 { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .md\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; } - .md\:from-yellow-300 { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .md\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; } - .md\:from-yellow-400 { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .md\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; } - .md\:from-yellow-500 { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .md\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; } - .md\:from-yellow-600 { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .md\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; } - .md\:from-yellow-700 { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .md\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; } - .md\:from-yellow-800 { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .md\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; } - .md\:from-yellow-900 { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .md\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; } - .md\:from-green-50 { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .md\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; } - .md\:from-green-100 { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .md\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; } - .md\:from-green-200 { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .md\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } - .md\:from-green-300 { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .md\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; } - .md\:from-green-400 { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .md\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; } - .md\:from-green-500 { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .md\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; } - .md\:from-green-600 { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .md\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; } - .md\:from-green-700 { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .md\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; } - .md\:from-green-800 { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .md\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .md\:from-green-900 { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .md\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } - .md\:from-blue-50 { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .md\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } - .md\:from-blue-100 { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .md\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } - .md\:from-blue-200 { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .md\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } - .md\:from-blue-300 { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .md\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } - .md\:from-blue-400 { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .md\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } - .md\:from-blue-500 { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .md\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } - .md\:from-blue-600 { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .md\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } - .md\:from-blue-700 { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .md\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } - .md\:from-blue-800 { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .md\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } - .md\:from-blue-900 { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .md\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } - .md\:from-indigo-50 { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .md\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } - .md\:from-indigo-100 { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .md\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } - .md\:from-indigo-200 { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .md\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } - .md\:from-indigo-300 { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .md\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } - .md\:from-indigo-400 { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .md\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } - .md\:from-indigo-500 { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .md\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } - .md\:from-indigo-600 { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .md\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } - .md\:from-indigo-700 { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .md\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } - .md\:from-indigo-800 { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .md\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } - .md\:from-indigo-900 { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .md\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } - .md\:from-purple-50 { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .md\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } - .md\:from-purple-100 { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .md\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } - .md\:from-purple-200 { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .md\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } - .md\:from-purple-300 { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .md\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } - .md\:from-purple-400 { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .md\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } - .md\:from-purple-500 { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .md\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } - .md\:from-purple-600 { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .md\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } - .md\:from-purple-700 { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .md\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } - .md\:from-purple-800 { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .md\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } - .md\:from-purple-900 { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .md\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } - .md\:from-pink-50 { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .md\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } - .md\:from-pink-100 { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .md\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } - .md\:from-pink-200 { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .md\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } - .md\:from-pink-300 { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .md\:mt-0 { + margin-top: 0px !important; } - .md\:from-pink-400 { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .md\:mt-1 { + margin-top: 0.25rem !important; } - .md\:from-pink-500 { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .md\:mt-2 { + margin-top: 0.5rem !important; } - .md\:from-pink-600 { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .md\:mt-3 { + margin-top: 0.75rem !important; } - .md\:from-pink-700 { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .md\:mt-4 { + margin-top: 1rem !important; } - .md\:from-pink-800 { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .md\:mt-5 { + margin-top: 1.25rem !important; } - .md\:from-pink-900 { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .md\:mt-6 { + margin-top: 1.5rem !important; } - .md\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .md\:mt-7 { + margin-top: 1.75rem !important; } - .md\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .md\:mt-8 { + margin-top: 2rem !important; } - .md\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .md\:mt-9 { + margin-top: 2.25rem !important; } - .md\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .md\:mt-10 { + margin-top: 2.5rem !important; } - .md\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .md\:mt-11 { + margin-top: 2.75rem !important; } - .md\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .md\:mt-12 { + margin-top: 3rem !important; } - .md\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .md\:mt-14 { + margin-top: 3.5rem !important; } - .md\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .md\:mt-16 { + margin-top: 4rem !important; } - .md\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .md\:mt-20 { + margin-top: 5rem !important; } - .md\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .md\:mt-24 { + margin-top: 6rem !important; } - .md\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .md\:mt-28 { + margin-top: 7rem !important; } - .md\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .md\:mt-32 { + margin-top: 8rem !important; } - .md\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .md\:mt-36 { + margin-top: 9rem !important; } - .md\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .md\:mt-40 { + margin-top: 10rem !important; } - .md\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .md\:mt-44 { + margin-top: 11rem !important; } - .md\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .md\:mt-48 { + margin-top: 12rem !important; } - .md\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .md\:mt-52 { + margin-top: 13rem !important; } - .md\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .md\:mt-56 { + margin-top: 14rem !important; } - .md\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .md\:mt-60 { + margin-top: 15rem !important; } - .md\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .md\:mt-64 { + margin-top: 16rem !important; } - .md\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .md\:mt-72 { + margin-top: 18rem !important; } - .md\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .md\:mt-80 { + margin-top: 20rem !important; } - .md\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .md\:mt-96 { + margin-top: 24rem !important; } - .md\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .md\:mt-auto { + margin-top: auto !important; } - .md\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .md\:mt-px { + margin-top: 1px !important; } - .md\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .md\:mt-0\.5 { + margin-top: 0.125rem !important; } - .md\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .md\:mt-1\.5 { + margin-top: 0.375rem !important; } - .md\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .md\:mt-2\.5 { + margin-top: 0.625rem !important; } - .md\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .md\:mt-3\.5 { + margin-top: 0.875rem !important; } - .md\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .md\:-mt-0 { + margin-top: 0px !important; } - .md\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .md\:-mt-1 { + margin-top: -0.25rem !important; } - .md\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .md\:-mt-2 { + margin-top: -0.5rem !important; } - .md\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .md\:-mt-3 { + margin-top: -0.75rem !important; } - .md\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .md\:-mt-4 { + margin-top: -1rem !important; } - .md\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .md\:-mt-5 { + margin-top: -1.25rem !important; } - .md\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .md\:-mt-6 { + margin-top: -1.5rem !important; } - .md\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .md\:-mt-7 { + margin-top: -1.75rem !important; } - .md\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .md\:-mt-8 { + margin-top: -2rem !important; } - .md\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .md\:-mt-9 { + margin-top: -2.25rem !important; } - .md\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .md\:-mt-10 { + margin-top: -2.5rem !important; } - .md\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .md\:-mt-11 { + margin-top: -2.75rem !important; } - .md\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .md\:-mt-12 { + margin-top: -3rem !important; } - .md\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .md\:-mt-14 { + margin-top: -3.5rem !important; } - .md\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .md\:-mt-16 { + margin-top: -4rem !important; } - .md\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .md\:-mt-20 { + margin-top: -5rem !important; } - .md\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .md\:-mt-24 { + margin-top: -6rem !important; } - .md\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .md\:-mt-28 { + margin-top: -7rem !important; } - .md\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .md\:-mt-32 { + margin-top: -8rem !important; } - .md\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .md\:-mt-36 { + margin-top: -9rem !important; } - .md\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .md\:-mt-40 { + margin-top: -10rem !important; } - .md\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .md\:-mt-44 { + margin-top: -11rem !important; } - .md\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .md\:-mt-48 { + margin-top: -12rem !important; } - .md\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .md\:-mt-52 { + margin-top: -13rem !important; } - .md\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .md\:-mt-56 { + margin-top: -14rem !important; } - .md\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .md\:-mt-60 { + margin-top: -15rem !important; } - .md\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .md\:-mt-64 { + margin-top: -16rem !important; } - .md\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .md\:-mt-72 { + margin-top: -18rem !important; } - .md\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .md\:-mt-80 { + margin-top: -20rem !important; } - .md\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .md\:-mt-96 { + margin-top: -24rem !important; } - .md\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .md\:-mt-px { + margin-top: -1px !important; } - .md\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .md\:-mt-0\.5 { + margin-top: -0.125rem !important; } - .md\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .md\:-mt-1\.5 { + margin-top: -0.375rem !important; } - .md\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .md\:-mt-2\.5 { + margin-top: -0.625rem !important; } - .md\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .md\:-mt-3\.5 { + margin-top: -0.875rem !important; } - .md\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .md\:mr-0 { + margin-right: 0px !important; } - .md\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .md\:mr-1 { + margin-right: 0.25rem !important; } - .md\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .md\:mr-2 { + margin-right: 0.5rem !important; } - .md\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .md\:mr-3 { + margin-right: 0.75rem !important; } - .md\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .md\:mr-4 { + margin-right: 1rem !important; } - .md\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .md\:mr-5 { + margin-right: 1.25rem !important; } - .md\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .md\:mr-6 { + margin-right: 1.5rem !important; } - .md\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .md\:mr-7 { + margin-right: 1.75rem !important; } - .md\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .md\:mr-8 { + margin-right: 2rem !important; } - .md\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .md\:mr-9 { + margin-right: 2.25rem !important; } - .md\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .md\:mr-10 { + margin-right: 2.5rem !important; } - .md\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .md\:mr-11 { + margin-right: 2.75rem !important; } - .md\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .md\:mr-12 { + margin-right: 3rem !important; } - .md\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .md\:mr-14 { + margin-right: 3.5rem !important; } - .md\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .md\:mr-16 { + margin-right: 4rem !important; } - .md\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .md\:mr-20 { + margin-right: 5rem !important; } - .md\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .md\:mr-24 { + margin-right: 6rem !important; } - .md\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .md\:mr-28 { + margin-right: 7rem !important; } - .md\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .md\:mr-32 { + margin-right: 8rem !important; } - .md\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .md\:mr-36 { + margin-right: 9rem !important; } - .md\:to-transparent { - --tw-gradient-to: transparent !important; + .md\:mr-40 { + margin-right: 10rem !important; } - .md\:to-current { - --tw-gradient-to: currentColor !important; + .md\:mr-44 { + margin-right: 11rem !important; } - .md\:to-black { - --tw-gradient-to: #000 !important; + .md\:mr-48 { + margin-right: 12rem !important; } - .md\:to-white { - --tw-gradient-to: #fff !important; + .md\:mr-52 { + margin-right: 13rem !important; } - .md\:to-gray-50 { - --tw-gradient-to: #f9fafb !important; + .md\:mr-56 { + margin-right: 14rem !important; } - .md\:to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; + .md\:mr-60 { + margin-right: 15rem !important; } - .md\:to-gray-200 { - --tw-gradient-to: #e5e7eb !important; + .md\:mr-64 { + margin-right: 16rem !important; } - .md\:to-gray-300 { - --tw-gradient-to: #d1d5db !important; + .md\:mr-72 { + margin-right: 18rem !important; } - .md\:to-gray-400 { - --tw-gradient-to: #9ca3af !important; + .md\:mr-80 { + margin-right: 20rem !important; } - .md\:to-gray-500 { - --tw-gradient-to: #6b7280 !important; + .md\:mr-96 { + margin-right: 24rem !important; } - .md\:to-gray-600 { - --tw-gradient-to: #4b5563 !important; + .md\:mr-auto { + margin-right: auto !important; } - .md\:to-gray-700 { - --tw-gradient-to: #374151 !important; + .md\:mr-px { + margin-right: 1px !important; } - .md\:to-gray-800 { - --tw-gradient-to: #1f2937 !important; + .md\:mr-0\.5 { + margin-right: 0.125rem !important; } - .md\:to-gray-900 { - --tw-gradient-to: #111827 !important; + .md\:mr-1\.5 { + margin-right: 0.375rem !important; } - .md\:to-red-50 { - --tw-gradient-to: #fef2f2 !important; + .md\:mr-2\.5 { + margin-right: 0.625rem !important; } - .md\:to-red-100 { - --tw-gradient-to: #fee2e2 !important; + .md\:mr-3\.5 { + margin-right: 0.875rem !important; } - .md\:to-red-200 { - --tw-gradient-to: #fecaca !important; + .md\:-mr-0 { + margin-right: 0px !important; } - .md\:to-red-300 { - --tw-gradient-to: #fca5a5 !important; + .md\:-mr-1 { + margin-right: -0.25rem !important; } - .md\:to-red-400 { - --tw-gradient-to: #f87171 !important; + .md\:-mr-2 { + margin-right: -0.5rem !important; } - .md\:to-red-500 { - --tw-gradient-to: #ef4444 !important; + .md\:-mr-3 { + margin-right: -0.75rem !important; } - .md\:to-red-600 { - --tw-gradient-to: #dc2626 !important; + .md\:-mr-4 { + margin-right: -1rem !important; } - .md\:to-red-700 { - --tw-gradient-to: #b91c1c !important; + .md\:-mr-5 { + margin-right: -1.25rem !important; } - .md\:to-red-800 { - --tw-gradient-to: #991b1b !important; + .md\:-mr-6 { + margin-right: -1.5rem !important; } - .md\:to-red-900 { - --tw-gradient-to: #7f1d1d !important; + .md\:-mr-7 { + margin-right: -1.75rem !important; } - .md\:to-yellow-50 { - --tw-gradient-to: #fffbeb !important; + .md\:-mr-8 { + margin-right: -2rem !important; } - .md\:to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; + .md\:-mr-9 { + margin-right: -2.25rem !important; } - .md\:to-yellow-200 { - --tw-gradient-to: #fde68a !important; + .md\:-mr-10 { + margin-right: -2.5rem !important; } - .md\:to-yellow-300 { - --tw-gradient-to: #fcd34d !important; + .md\:-mr-11 { + margin-right: -2.75rem !important; } - .md\:to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; + .md\:-mr-12 { + margin-right: -3rem !important; } - .md\:to-yellow-500 { - --tw-gradient-to: #f59e0b !important; + .md\:-mr-14 { + margin-right: -3.5rem !important; } - .md\:to-yellow-600 { - --tw-gradient-to: #d97706 !important; + .md\:-mr-16 { + margin-right: -4rem !important; } - .md\:to-yellow-700 { - --tw-gradient-to: #b45309 !important; + .md\:-mr-20 { + margin-right: -5rem !important; } - .md\:to-yellow-800 { - --tw-gradient-to: #92400e !important; + .md\:-mr-24 { + margin-right: -6rem !important; } - .md\:to-yellow-900 { - --tw-gradient-to: #78350f !important; + .md\:-mr-28 { + margin-right: -7rem !important; } - .md\:to-green-50 { - --tw-gradient-to: #ecfdf5 !important; + .md\:-mr-32 { + margin-right: -8rem !important; } - .md\:to-green-100 { - --tw-gradient-to: #d1fae5 !important; + .md\:-mr-36 { + margin-right: -9rem !important; } - .md\:to-green-200 { - --tw-gradient-to: #a7f3d0 !important; + .md\:-mr-40 { + margin-right: -10rem !important; } - .md\:to-green-300 { - --tw-gradient-to: #6ee7b7 !important; + .md\:-mr-44 { + margin-right: -11rem !important; } - .md\:to-green-400 { - --tw-gradient-to: #34d399 !important; + .md\:-mr-48 { + margin-right: -12rem !important; } - .md\:to-green-500 { - --tw-gradient-to: #10b981 !important; + .md\:-mr-52 { + margin-right: -13rem !important; } - .md\:to-green-600 { - --tw-gradient-to: #059669 !important; + .md\:-mr-56 { + margin-right: -14rem !important; } - .md\:to-green-700 { - --tw-gradient-to: #047857 !important; + .md\:-mr-60 { + margin-right: -15rem !important; } - .md\:to-green-800 { - --tw-gradient-to: #065f46 !important; + .md\:-mr-64 { + margin-right: -16rem !important; } - .md\:to-green-900 { - --tw-gradient-to: #064e3b !important; + .md\:-mr-72 { + margin-right: -18rem !important; } - .md\:to-blue-50 { - --tw-gradient-to: #eff6ff !important; + .md\:-mr-80 { + margin-right: -20rem !important; } - .md\:to-blue-100 { - --tw-gradient-to: #dbeafe !important; + .md\:-mr-96 { + margin-right: -24rem !important; } - .md\:to-blue-200 { - --tw-gradient-to: #bfdbfe !important; + .md\:-mr-px { + margin-right: -1px !important; } - .md\:to-blue-300 { - --tw-gradient-to: #93c5fd !important; + .md\:-mr-0\.5 { + margin-right: -0.125rem !important; } - .md\:to-blue-400 { - --tw-gradient-to: #60a5fa !important; + .md\:-mr-1\.5 { + margin-right: -0.375rem !important; } - .md\:to-blue-500 { - --tw-gradient-to: #3b82f6 !important; + .md\:-mr-2\.5 { + margin-right: -0.625rem !important; } - .md\:to-blue-600 { - --tw-gradient-to: #2563eb !important; + .md\:-mr-3\.5 { + margin-right: -0.875rem !important; } - .md\:to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; + .md\:mb-0 { + margin-bottom: 0px !important; } - .md\:to-blue-800 { - --tw-gradient-to: #1e40af !important; + .md\:mb-1 { + margin-bottom: 0.25rem !important; } - .md\:to-blue-900 { - --tw-gradient-to: #1e3a8a !important; + .md\:mb-2 { + margin-bottom: 0.5rem !important; } - .md\:to-indigo-50 { - --tw-gradient-to: #eef2ff !important; + .md\:mb-3 { + margin-bottom: 0.75rem !important; } - .md\:to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; + .md\:mb-4 { + margin-bottom: 1rem !important; } - .md\:to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; + .md\:mb-5 { + margin-bottom: 1.25rem !important; } - .md\:to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; + .md\:mb-6 { + margin-bottom: 1.5rem !important; } - .md\:to-indigo-400 { - --tw-gradient-to: #818cf8 !important; + .md\:mb-7 { + margin-bottom: 1.75rem !important; } - .md\:to-indigo-500 { - --tw-gradient-to: #6366f1 !important; + .md\:mb-8 { + margin-bottom: 2rem !important; } - .md\:to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; + .md\:mb-9 { + margin-bottom: 2.25rem !important; } - .md\:to-indigo-700 { - --tw-gradient-to: #4338ca !important; + .md\:mb-10 { + margin-bottom: 2.5rem !important; } - .md\:to-indigo-800 { - --tw-gradient-to: #3730a3 !important; + .md\:mb-11 { + margin-bottom: 2.75rem !important; } - .md\:to-indigo-900 { - --tw-gradient-to: #312e81 !important; + .md\:mb-12 { + margin-bottom: 3rem !important; } - .md\:to-purple-50 { - --tw-gradient-to: #f5f3ff !important; + .md\:mb-14 { + margin-bottom: 3.5rem !important; } - .md\:to-purple-100 { - --tw-gradient-to: #ede9fe !important; + .md\:mb-16 { + margin-bottom: 4rem !important; } - .md\:to-purple-200 { - --tw-gradient-to: #ddd6fe !important; + .md\:mb-20 { + margin-bottom: 5rem !important; } - .md\:to-purple-300 { - --tw-gradient-to: #c4b5fd !important; + .md\:mb-24 { + margin-bottom: 6rem !important; } - .md\:to-purple-400 { - --tw-gradient-to: #a78bfa !important; + .md\:mb-28 { + margin-bottom: 7rem !important; } - .md\:to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; + .md\:mb-32 { + margin-bottom: 8rem !important; } - .md\:to-purple-600 { - --tw-gradient-to: #7c3aed !important; + .md\:mb-36 { + margin-bottom: 9rem !important; } - .md\:to-purple-700 { - --tw-gradient-to: #6d28d9 !important; + .md\:mb-40 { + margin-bottom: 10rem !important; } - .md\:to-purple-800 { - --tw-gradient-to: #5b21b6 !important; + .md\:mb-44 { + margin-bottom: 11rem !important; } - .md\:to-purple-900 { - --tw-gradient-to: #4c1d95 !important; + .md\:mb-48 { + margin-bottom: 12rem !important; } - .md\:to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; + .md\:mb-52 { + margin-bottom: 13rem !important; } - .md\:to-pink-100 { - --tw-gradient-to: #fce7f3 !important; + .md\:mb-56 { + margin-bottom: 14rem !important; } - .md\:to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; + .md\:mb-60 { + margin-bottom: 15rem !important; } - .md\:to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; + .md\:mb-64 { + margin-bottom: 16rem !important; } - .md\:to-pink-400 { - --tw-gradient-to: #f472b6 !important; + .md\:mb-72 { + margin-bottom: 18rem !important; } - .md\:to-pink-500 { - --tw-gradient-to: #ec4899 !important; + .md\:mb-80 { + margin-bottom: 20rem !important; } - .md\:to-pink-600 { - --tw-gradient-to: #db2777 !important; + .md\:mb-96 { + margin-bottom: 24rem !important; } - .md\:to-pink-700 { - --tw-gradient-to: #be185d !important; + .md\:mb-auto { + margin-bottom: auto !important; } - .md\:to-pink-800 { - --tw-gradient-to: #9d174d !important; + .md\:mb-px { + margin-bottom: 1px !important; } - .md\:to-pink-900 { - --tw-gradient-to: #831843 !important; + .md\:mb-0\.5 { + margin-bottom: 0.125rem !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\:mb-1\.5 { + margin-bottom: 0.375rem !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\:mb-2\.5 { + margin-bottom: 0.625rem !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\:mb-3\.5 { + margin-bottom: 0.875rem !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\:-mb-0 { + margin-bottom: 0px !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\:-mb-1 { + margin-bottom: -0.25rem !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\:-mb-2 { + margin-bottom: -0.5rem !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\:-mb-3 { + margin-bottom: -0.75rem !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\:-mb-4 { + margin-bottom: -1rem !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\:-mb-5 { + margin-bottom: -1.25rem !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\:-mb-6 { + margin-bottom: -1.5rem !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\:-mb-7 { + margin-bottom: -1.75rem !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\:-mb-8 { + margin-bottom: -2rem !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\:-mb-9 { + margin-bottom: -2.25rem !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\:-mb-10 { + margin-bottom: -2.5rem !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\:-mb-11 { + margin-bottom: -2.75rem !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\:-mb-12 { + margin-bottom: -3rem !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\:-mb-14 { + margin-bottom: -3.5rem !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\:-mb-16 { + margin-bottom: -4rem !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\:-mb-20 { + margin-bottom: -5rem !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\:-mb-24 { + margin-bottom: -6rem !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\:-mb-28 { + margin-bottom: -7rem !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\:-mb-32 { + margin-bottom: -8rem !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\:-mb-36 { + margin-bottom: -9rem !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\:-mb-40 { + margin-bottom: -10rem !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\:-mb-44 { + margin-bottom: -11rem !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\:-mb-48 { + margin-bottom: -12rem !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\:-mb-52 { + margin-bottom: -13rem !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\:-mb-56 { + margin-bottom: -14rem !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\:-mb-60 { + margin-bottom: -15rem !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\:-mb-64 { + margin-bottom: -16rem !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\:-mb-72 { + margin-bottom: -18rem !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\:-mb-80 { + margin-bottom: -20rem !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\:-mb-96 { + margin-bottom: -24rem !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\:-mb-px { + margin-bottom: -1px !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\:-mb-0\.5 { + margin-bottom: -0.125rem !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\:-mb-1\.5 { + margin-bottom: -0.375rem !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\:-mb-2\.5 { + margin-bottom: -0.625rem !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\:-mb-3\.5 { + margin-bottom: -0.875rem !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\:ml-0 { + margin-left: 0px !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\:ml-1 { + margin-left: 0.25rem !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\:ml-2 { + margin-left: 0.5rem !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\:ml-3 { + margin-left: 0.75rem !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\:ml-4 { + margin-left: 1rem !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\:ml-5 { + margin-left: 1.25rem !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\:ml-6 { + margin-left: 1.5rem !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\:ml-7 { + margin-left: 1.75rem !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\:ml-8 { + margin-left: 2rem !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\:ml-9 { + margin-left: 2.25rem !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\:ml-10 { + margin-left: 2.5rem !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\:ml-11 { + margin-left: 2.75rem !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\:ml-12 { + margin-left: 3rem !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\:ml-14 { + margin-left: 3.5rem !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\:ml-16 { + margin-left: 4rem !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\:ml-20 { + margin-left: 5rem !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\:ml-24 { + margin-left: 6rem !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\:ml-28 { + margin-left: 7rem !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\:ml-32 { + margin-left: 8rem !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\:ml-36 { + margin-left: 9rem !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\:ml-40 { + margin-left: 10rem !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\:ml-44 { + margin-left: 11rem !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\:ml-48 { + margin-left: 12rem !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\:ml-52 { + margin-left: 13rem !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\:ml-56 { + margin-left: 14rem !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\:ml-60 { + margin-left: 15rem !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\:ml-64 { + margin-left: 16rem !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\:ml-72 { + margin-left: 18rem !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\:ml-80 { + margin-left: 20rem !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\:ml-96 { + margin-left: 24rem !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\:ml-auto { + margin-left: auto !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\:ml-px { + margin-left: 1px !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\:ml-0\.5 { + margin-left: 0.125rem !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\:ml-1\.5 { + margin-left: 0.375rem !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\:ml-2\.5 { + margin-left: 0.625rem !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\:ml-3\.5 { + margin-left: 0.875rem !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\:-ml-0 { + margin-left: 0px !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\:-ml-1 { + margin-left: -0.25rem !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\:-ml-2 { + margin-left: -0.5rem !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\:-ml-3 { + margin-left: -0.75rem !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\:-ml-4 { + margin-left: -1rem !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\:-ml-5 { + margin-left: -1.25rem !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\:-ml-6 { + margin-left: -1.5rem !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\:-ml-7 { + margin-left: -1.75rem !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\:-ml-8 { + margin-left: -2rem !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\:-ml-9 { + margin-left: -2.25rem !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\:-ml-10 { + margin-left: -2.5rem !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\:-ml-11 { + margin-left: -2.75rem !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\:-ml-12 { + margin-left: -3rem !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\:-ml-14 { + margin-left: -3.5rem !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\:-ml-16 { + margin-left: -4rem !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\:-ml-20 { + margin-left: -5rem !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\:-ml-24 { + margin-left: -6rem !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\:-ml-28 { + margin-left: -7rem !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\:-ml-32 { + margin-left: -8rem !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\:-ml-36 { + margin-left: -9rem !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\:-ml-40 { + margin-left: -10rem !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\:-ml-44 { + margin-left: -11rem !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\:-ml-48 { + margin-left: -12rem !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\:-ml-52 { + margin-left: -13rem !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\:-ml-56 { + margin-left: -14rem !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\:-ml-60 { + margin-left: -15rem !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\:-ml-64 { + margin-left: -16rem !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\:-ml-72 { + margin-left: -18rem !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\:-ml-80 { + margin-left: -20rem !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\:-ml-96 { + margin-left: -24rem !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\:-ml-px { + margin-left: -1px !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\:-ml-0\.5 { + margin-left: -0.125rem !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\:-ml-1\.5 { + margin-left: -0.375rem !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\:-ml-2\.5 { + margin-left: -0.625rem !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\:-ml-3\.5 { + margin-left: -0.875rem !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\:box-border { + box-sizing: border-box !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\:box-content { + box-sizing: content-box !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\:block { + display: block !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\:inline-block { + display: inline-block !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\:inline { + display: inline !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\:flex { + display: flex !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\:inline-flex { + display: inline-flex !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\:table { + display: table !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\:inline-table { + display: inline-table !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\:table-caption { + display: table-caption !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\:table-cell { + display: table-cell !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\:table-column { + display: table-column !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\:table-column-group { + display: table-column-group !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\:table-footer-group { + display: table-footer-group !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\:table-header-group { + display: table-header-group !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\:table-row-group { + display: table-row-group !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\:table-row { + display: table-row !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\:flow-root { + display: flow-root !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\:grid { + display: grid !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\:inline-grid { + display: inline-grid !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\:contents { + display: contents !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\:list-item { + display: list-item !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\:hidden { + display: none !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\:h-0 { + height: 0px !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\:h-1 { + height: 0.25rem !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\:h-2 { + height: 0.5rem !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\:h-3 { + height: 0.75rem !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\:h-4 { + height: 1rem !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\:h-5 { + height: 1.25rem !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\:h-6 { + height: 1.5rem !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\:h-7 { + height: 1.75rem !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\:h-8 { + height: 2rem !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\:h-9 { + height: 2.25rem !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\:h-10 { + height: 2.5rem !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\:h-11 { + height: 2.75rem !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\:h-12 { + height: 3rem !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\:h-14 { + height: 3.5rem !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\:h-16 { + height: 4rem !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\:h-20 { + height: 5rem !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\:h-24 { + height: 6rem !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\:h-28 { + height: 7rem !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\:h-32 { + height: 8rem !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\:h-36 { + height: 9rem !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\:h-40 { + height: 10rem !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\:h-44 { + height: 11rem !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\:h-48 { + height: 12rem !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\:h-52 { + height: 13rem !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\:h-56 { + height: 14rem !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\:h-60 { + height: 15rem !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\:h-64 { + height: 16rem !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\:h-72 { + height: 18rem !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\:h-80 { + height: 20rem !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\:h-96 { + height: 24rem !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\:h-auto { + height: auto !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\:h-px { + height: 1px !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\:h-0\.5 { + height: 0.125rem !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\:h-1\.5 { + height: 0.375rem !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\:h-2\.5 { + height: 0.625rem !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\:h-3\.5 { + height: 0.875rem !important; } - .md\:hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; + .md\:h-1\/2 { + height: 50% !important; } - .md\:hover\:to-current:hover { - --tw-gradient-to: currentColor !important; + .md\:h-1\/3 { + height: 33.333333% !important; } - .md\:hover\:to-black:hover { - --tw-gradient-to: #000 !important; + .md\:h-2\/3 { + height: 66.666667% !important; } - .md\:hover\:to-white:hover { - --tw-gradient-to: #fff !important; + .md\:h-1\/4 { + height: 25% !important; } - .md\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; + .md\:h-2\/4 { + height: 50% !important; } - .md\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; + .md\:h-3\/4 { + height: 75% !important; } - .md\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; + .md\:h-1\/5 { + height: 20% !important; } - .md\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; + .md\:h-2\/5 { + height: 40% !important; } - .md\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; + .md\:h-3\/5 { + height: 60% !important; } - .md\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; + .md\:h-4\/5 { + height: 80% !important; } - .md\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; + .md\:h-1\/6 { + height: 16.666667% !important; } - .md\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; + .md\:h-2\/6 { + height: 33.333333% !important; } - .md\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; + .md\:h-3\/6 { + height: 50% !important; } - .md\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; + .md\:h-4\/6 { + height: 66.666667% !important; } - .md\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; + .md\:h-5\/6 { + height: 83.333333% !important; } - .md\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; + .md\:h-full { + height: 100% !important; } - .md\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; + .md\:h-screen { + height: 100vh !important; } - .md\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; + .md\:max-h-0 { + max-height: 0px !important; } - .md\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; + .md\:max-h-1 { + max-height: 0.25rem !important; } - .md\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; + .md\:max-h-2 { + max-height: 0.5rem !important; } - .md\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; + .md\:max-h-3 { + max-height: 0.75rem !important; } - .md\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; + .md\:max-h-4 { + max-height: 1rem !important; } - .md\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; + .md\:max-h-5 { + max-height: 1.25rem !important; } - .md\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; + .md\:max-h-6 { + max-height: 1.5rem !important; } - .md\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; + .md\:max-h-7 { + max-height: 1.75rem !important; } - .md\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; + .md\:max-h-8 { + max-height: 2rem !important; } - .md\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; + .md\:max-h-9 { + max-height: 2.25rem !important; } - .md\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; + .md\:max-h-10 { + max-height: 2.5rem !important; } - .md\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; + .md\:max-h-11 { + max-height: 2.75rem !important; } - .md\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; + .md\:max-h-12 { + max-height: 3rem !important; } - .md\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; + .md\:max-h-14 { + max-height: 3.5rem !important; } - .md\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; + .md\:max-h-16 { + max-height: 4rem !important; } - .md\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; + .md\:max-h-20 { + max-height: 5rem !important; } - .md\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; + .md\:max-h-24 { + max-height: 6rem !important; } - .md\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; + .md\:max-h-28 { + max-height: 7rem !important; } - .md\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; + .md\:max-h-32 { + max-height: 8rem !important; } - .md\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; + .md\:max-h-36 { + max-height: 9rem !important; } - .md\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; + .md\:max-h-40 { + max-height: 10rem !important; } - .md\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; + .md\:max-h-44 { + max-height: 11rem !important; } - .md\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; + .md\:max-h-48 { + max-height: 12rem !important; } - .md\:hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; + .md\:max-h-52 { + max-height: 13rem !important; } - .md\:hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; + .md\:max-h-56 { + max-height: 14rem !important; } - .md\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; + .md\:max-h-60 { + max-height: 15rem !important; } - .md\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; + .md\:max-h-64 { + max-height: 16rem !important; } - .md\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; + .md\:max-h-72 { + max-height: 18rem !important; } - .md\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; + .md\:max-h-80 { + max-height: 20rem !important; } - .md\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; + .md\:max-h-96 { + max-height: 24rem !important; } - .md\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; + .md\:max-h-px { + max-height: 1px !important; } - .md\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; + .md\:max-h-0\.5 { + max-height: 0.125rem !important; } - .md\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; + .md\:max-h-1\.5 { + max-height: 0.375rem !important; } - .md\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; + .md\:max-h-2\.5 { + max-height: 0.625rem !important; } - .md\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; + .md\:max-h-3\.5 { + max-height: 0.875rem !important; } - .md\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; + .md\:max-h-full { + max-height: 100% !important; } - .md\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; + .md\:max-h-screen { + max-height: 100vh !important; } - .md\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; + .md\:min-h-0 { + min-height: 0px !important; } - .md\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; + .md\:min-h-full { + min-height: 100% !important; } - .md\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; + .md\:min-h-screen { + min-height: 100vh !important; } - .md\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; + .md\:w-0 { + width: 0px !important; } - .md\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; + .md\:w-1 { + width: 0.25rem !important; } - .md\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; + .md\:w-2 { + width: 0.5rem !important; } - .md\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; + .md\:w-3 { + width: 0.75rem !important; } - .md\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; + .md\:w-4 { + width: 1rem !important; } - .md\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; + .md\:w-5 { + width: 1.25rem !important; } - .md\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; + .md\:w-6 { + width: 1.5rem !important; } - .md\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; + .md\:w-7 { + width: 1.75rem !important; } - .md\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; + .md\:w-8 { + width: 2rem !important; } - .md\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; + .md\:w-9 { + width: 2.25rem !important; } - .md\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; + .md\:w-10 { + width: 2.5rem !important; } - .md\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; + .md\:w-11 { + width: 2.75rem !important; } - .md\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; + .md\:w-12 { + width: 3rem !important; } - .md\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; + .md\:w-14 { + width: 3.5rem !important; } - .md\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; + .md\:w-16 { + width: 4rem !important; } - .md\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; + .md\:w-20 { + width: 5rem !important; } - .md\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; + .md\:w-24 { + width: 6rem !important; } - .md\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; + .md\:w-28 { + width: 7rem !important; } - .md\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; + .md\:w-32 { + width: 8rem !important; } - .md\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; + .md\:w-36 { + width: 9rem !important; } - .md\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; + .md\:w-40 { + width: 10rem !important; } - .md\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; + .md\:w-44 { + width: 11rem !important; } - .md\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; + .md\:w-48 { + width: 12rem !important; } - .md\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; + .md\:w-52 { + width: 13rem !important; } - .md\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; + .md\:w-56 { + width: 14rem !important; } - .md\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; + .md\:w-60 { + width: 15rem !important; } - .md\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; + .md\:w-64 { + width: 16rem !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\:w-72 { + width: 18rem !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\:w-80 { + width: 20rem !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\:w-96 { + width: 24rem !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\:w-auto { + width: auto !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\:w-px { + width: 1px !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\:w-0\.5 { + width: 0.125rem !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\:w-1\.5 { + width: 0.375rem !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\:w-2\.5 { + width: 0.625rem !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\:w-3\.5 { + width: 0.875rem !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\:w-1\/2 { + width: 50% !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\:w-1\/3 { + width: 33.333333% !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\:w-2\/3 { + width: 66.666667% !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\:w-1\/4 { + width: 25% !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\:w-2\/4 { + width: 50% !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\:w-3\/4 { + width: 75% !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\:w-1\/5 { + width: 20% !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\:w-2\/5 { + width: 40% !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\:w-3\/5 { + width: 60% !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\:w-4\/5 { + width: 80% !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\:w-1\/6 { + width: 16.666667% !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\:w-2\/6 { + width: 33.333333% !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\:w-3\/6 { + width: 50% !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\:w-4\/6 { + width: 66.666667% !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\:w-5\/6 { + width: 83.333333% !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\:w-1\/12 { + width: 8.333333% !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\:w-2\/12 { + width: 16.666667% !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\:w-3\/12 { + width: 25% !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\:w-4\/12 { + width: 33.333333% !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\:w-5\/12 { + width: 41.666667% !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\:w-6\/12 { + width: 50% !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\:w-7\/12 { + width: 58.333333% !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\:w-8\/12 { + width: 66.666667% !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\:w-9\/12 { + width: 75% !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\:w-10\/12 { + width: 83.333333% !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\:w-11\/12 { + width: 91.666667% !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\:w-full { + width: 100% !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\:w-screen { + width: 100vw !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\:w-min { + width: min-content !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\:w-max { + width: max-content !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\:min-w-0 { + min-width: 0px !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\:min-w-full { + min-width: 100% !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\:min-w-min { + min-width: min-content !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\:min-w-max { + min-width: max-content !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\:max-w-0 { + max-width: 0rem !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\:max-w-none { + max-width: none !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\:max-w-xs { + max-width: 20rem !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\:max-w-sm { + max-width: 24rem !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\:max-w-md { + max-width: 28rem !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\:max-w-lg { + max-width: 32rem !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\:max-w-xl { + max-width: 36rem !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\:max-w-2xl { + max-width: 42rem !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\:max-w-3xl { + max-width: 48rem !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\:max-w-4xl { + max-width: 56rem !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\:max-w-5xl { + max-width: 64rem !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\:max-w-6xl { + max-width: 72rem !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\:max-w-7xl { + max-width: 80rem !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\:max-w-full { + max-width: 100% !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\:max-w-min { + max-width: min-content !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\:max-w-max { + max-width: max-content !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\:max-w-prose { + max-width: 65ch !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\:max-w-screen-sm { + max-width: 640px !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\:max-w-screen-md { + max-width: 768px !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\:max-w-screen-lg { + max-width: 1024px !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\:max-w-screen-xl { + max-width: 1280px !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\:max-w-screen-2xl { + max-width: 1536px !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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto !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\:flex-initial { + flex: 0 1 auto !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\:flex-none { + flex: none !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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1 !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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1 !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\:table-auto { + table-layout: auto !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\:table-fixed { + table-layout: fixed !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\:border-collapse { + border-collapse: collapse !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\:border-separate { + border-collapse: separate !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\:transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !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\:transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !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\:transform-none { + transform: none !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\:origin-center { + transform-origin: center !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\:origin-top { + transform-origin: top !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\:origin-top-right { + transform-origin: top right !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\:origin-right { + transform-origin: right !important; } - .md\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .md\:origin-bottom-right { + transform-origin: bottom right !important; } - .md\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .md\:origin-bottom { + transform-origin: bottom !important; } - .md\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .md\:origin-bottom-left { + transform-origin: bottom left !important; } - .md\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .md\:origin-left { + transform-origin: left !important; } - .md\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .md\:origin-top-left { + transform-origin: top left !important; } - .md\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .md\:translate-x-0 { + --tw-translate-x: 0px !important; } - .md\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .md\:translate-x-1 { + --tw-translate-x: 0.25rem !important; } - .md\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .md\:translate-x-2 { + --tw-translate-x: 0.5rem !important; } - .md\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .md\:translate-x-3 { + --tw-translate-x: 0.75rem !important; } - .md\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .md\:translate-x-4 { + --tw-translate-x: 1rem !important; } - .md\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .md\:translate-x-5 { + --tw-translate-x: 1.25rem !important; } - .md\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .md\:translate-x-6 { + --tw-translate-x: 1.5rem !important; } - .md\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .md\:translate-x-7 { + --tw-translate-x: 1.75rem !important; } - .md\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .md\:translate-x-8 { + --tw-translate-x: 2rem !important; } - .md\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .md\:translate-x-9 { + --tw-translate-x: 2.25rem !important; } - .md\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .md\:translate-x-10 { + --tw-translate-x: 2.5rem !important; } - .md\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .md\:translate-x-11 { + --tw-translate-x: 2.75rem !important; } - .md\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .md\:translate-x-12 { + --tw-translate-x: 3rem !important; } - .md\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .md\:translate-x-14 { + --tw-translate-x: 3.5rem !important; } - .md\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .md\:translate-x-16 { + --tw-translate-x: 4rem !important; } - .md\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .md\:translate-x-20 { + --tw-translate-x: 5rem !important; } - .md\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .md\:translate-x-24 { + --tw-translate-x: 6rem !important; } - .md\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .md\:translate-x-28 { + --tw-translate-x: 7rem !important; } - .md\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .md\:translate-x-32 { + --tw-translate-x: 8rem !important; } - .md\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .md\:translate-x-36 { + --tw-translate-x: 9rem !important; } - .md\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .md\:translate-x-40 { + --tw-translate-x: 10rem !important; } - .md\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .md\:translate-x-44 { + --tw-translate-x: 11rem !important; } - .md\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .md\:translate-x-48 { + --tw-translate-x: 12rem !important; } - .md\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .md\:translate-x-52 { + --tw-translate-x: 13rem !important; } - .md\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .md\:translate-x-56 { + --tw-translate-x: 14rem !important; } - .md\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .md\:translate-x-60 { + --tw-translate-x: 15rem !important; } - .md\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .md\:translate-x-64 { + --tw-translate-x: 16rem !important; } - .md\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .md\:translate-x-72 { + --tw-translate-x: 18rem !important; } - .md\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .md\:translate-x-80 { + --tw-translate-x: 20rem !important; } - .md\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .md\:translate-x-96 { + --tw-translate-x: 24rem !important; } - .md\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .md\:translate-x-px { + --tw-translate-x: 1px !important; } - .md\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .md\:translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; } - .md\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .md\:translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; } - .md\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .md\:translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; } - .md\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .md\:translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; } - .md\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .md\:-translate-x-0 { + --tw-translate-x: 0px !important; } - .md\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .md\:-translate-x-1 { + --tw-translate-x: -0.25rem !important; } - .md\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .md\:-translate-x-2 { + --tw-translate-x: -0.5rem !important; } - .md\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .md\:-translate-x-3 { + --tw-translate-x: -0.75rem !important; } - .md\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .md\:-translate-x-4 { + --tw-translate-x: -1rem !important; } - .md\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .md\:-translate-x-5 { + --tw-translate-x: -1.25rem !important; } - .md\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .md\:-translate-x-6 { + --tw-translate-x: -1.5rem !important; } - .md\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .md\:-translate-x-7 { + --tw-translate-x: -1.75rem !important; } - .md\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .md\:-translate-x-8 { + --tw-translate-x: -2rem !important; } - .md\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .md\:-translate-x-9 { + --tw-translate-x: -2.25rem !important; } - .md\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .md\:-translate-x-10 { + --tw-translate-x: -2.5rem !important; } - .md\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .md\:-translate-x-11 { + --tw-translate-x: -2.75rem !important; } - .md\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .md\:-translate-x-12 { + --tw-translate-x: -3rem !important; } - .md\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .md\:-translate-x-14 { + --tw-translate-x: -3.5rem !important; } - .md\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .md\:-translate-x-16 { + --tw-translate-x: -4rem !important; } - .md\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .md\:-translate-x-20 { + --tw-translate-x: -5rem !important; } - .md\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .md\:-translate-x-24 { + --tw-translate-x: -6rem !important; } - .md\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .md\:-translate-x-28 { + --tw-translate-x: -7rem !important; } - .md\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .md\:-translate-x-32 { + --tw-translate-x: -8rem !important; } - .md\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .md\:-translate-x-36 { + --tw-translate-x: -9rem !important; } - .md\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .md\:-translate-x-40 { + --tw-translate-x: -10rem !important; } - .md\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .md\:-translate-x-44 { + --tw-translate-x: -11rem !important; } - .md\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .md\:-translate-x-48 { + --tw-translate-x: -12rem !important; } - .md\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .md\:-translate-x-52 { + --tw-translate-x: -13rem !important; } - .md\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .md\:-translate-x-56 { + --tw-translate-x: -14rem !important; } - .md\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .md\:-translate-x-60 { + --tw-translate-x: -15rem !important; } - .md\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .md\:-translate-x-64 { + --tw-translate-x: -16rem !important; } - .md\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .md\:-translate-x-72 { + --tw-translate-x: -18rem !important; } - .md\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .md\:-translate-x-80 { + --tw-translate-x: -20rem !important; } - .md\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .md\:-translate-x-96 { + --tw-translate-x: -24rem !important; } - .md\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .md\:-translate-x-px { + --tw-translate-x: -1px !important; } - .md\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .md\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; } - .md\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .md\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; } - .md\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .md\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; } - .md\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .md\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; } - .md\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .md\:translate-x-1\/2 { + --tw-translate-x: 50% !important; } - .md\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .md\:translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; } - .md\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .md\:translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; } - .md\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .md\:translate-x-1\/4 { + --tw-translate-x: 25% !important; } - .md\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .md\:translate-x-2\/4 { + --tw-translate-x: 50% !important; } - .md\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .md\:translate-x-3\/4 { + --tw-translate-x: 75% !important; } - .md\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .md\:translate-x-full { + --tw-translate-x: 100% !important; } - .md\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .md\:-translate-x-1\/2 { + --tw-translate-x: -50% !important; } - .md\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .md\:-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; } - .md\:focus\:to-transparent:focus { - --tw-gradient-to: transparent !important; + .md\:-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; } - .md\:focus\:to-current:focus { - --tw-gradient-to: currentColor !important; + .md\:-translate-x-1\/4 { + --tw-translate-x: -25% !important; } - .md\:focus\:to-black:focus { - --tw-gradient-to: #000 !important; + .md\:-translate-x-2\/4 { + --tw-translate-x: -50% !important; } - .md\:focus\:to-white:focus { - --tw-gradient-to: #fff !important; + .md\:-translate-x-3\/4 { + --tw-translate-x: -75% !important; } - .md\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb !important; + .md\:-translate-x-full { + --tw-translate-x: -100% !important; } - .md\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6 !important; + .md\:translate-y-0 { + --tw-translate-y: 0px !important; } - .md\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb !important; + .md\:translate-y-1 { + --tw-translate-y: 0.25rem !important; } - .md\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db !important; + .md\:translate-y-2 { + --tw-translate-y: 0.5rem !important; } - .md\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af !important; + .md\:translate-y-3 { + --tw-translate-y: 0.75rem !important; } - .md\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280 !important; + .md\:translate-y-4 { + --tw-translate-y: 1rem !important; } - .md\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563 !important; + .md\:translate-y-5 { + --tw-translate-y: 1.25rem !important; } - .md\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151 !important; + .md\:translate-y-6 { + --tw-translate-y: 1.5rem !important; } - .md\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937 !important; + .md\:translate-y-7 { + --tw-translate-y: 1.75rem !important; } - .md\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827 !important; + .md\:translate-y-8 { + --tw-translate-y: 2rem !important; } - .md\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2 !important; + .md\:translate-y-9 { + --tw-translate-y: 2.25rem !important; } - .md\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2 !important; + .md\:translate-y-10 { + --tw-translate-y: 2.5rem !important; } - .md\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca !important; + .md\:translate-y-11 { + --tw-translate-y: 2.75rem !important; } - .md\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5 !important; + .md\:translate-y-12 { + --tw-translate-y: 3rem !important; } - .md\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171 !important; + .md\:translate-y-14 { + --tw-translate-y: 3.5rem !important; } - .md\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444 !important; + .md\:translate-y-16 { + --tw-translate-y: 4rem !important; } - .md\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626 !important; + .md\:translate-y-20 { + --tw-translate-y: 5rem !important; } - .md\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c !important; + .md\:translate-y-24 { + --tw-translate-y: 6rem !important; } - .md\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b !important; + .md\:translate-y-28 { + --tw-translate-y: 7rem !important; } - .md\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d !important; + .md\:translate-y-32 { + --tw-translate-y: 8rem !important; } - .md\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb !important; + .md\:translate-y-36 { + --tw-translate-y: 9rem !important; } - .md\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7 !important; + .md\:translate-y-40 { + --tw-translate-y: 10rem !important; } - .md\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a !important; + .md\:translate-y-44 { + --tw-translate-y: 11rem !important; } - .md\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d !important; + .md\:translate-y-48 { + --tw-translate-y: 12rem !important; } - .md\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24 !important; + .md\:translate-y-52 { + --tw-translate-y: 13rem !important; } - .md\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b !important; + .md\:translate-y-56 { + --tw-translate-y: 14rem !important; } - .md\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706 !important; + .md\:translate-y-60 { + --tw-translate-y: 15rem !important; } - .md\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309 !important; + .md\:translate-y-64 { + --tw-translate-y: 16rem !important; } - .md\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e !important; + .md\:translate-y-72 { + --tw-translate-y: 18rem !important; } - .md\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f !important; + .md\:translate-y-80 { + --tw-translate-y: 20rem !important; } - .md\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5 !important; + .md\:translate-y-96 { + --tw-translate-y: 24rem !important; } - .md\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5 !important; + .md\:translate-y-px { + --tw-translate-y: 1px !important; } - .md\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0 !important; + .md\:translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; } - .md\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7 !important; + .md\:translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; } - .md\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399 !important; + .md\:translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; } - .md\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981 !important; + .md\:translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; } - .md\:focus\:to-green-600:focus { - --tw-gradient-to: #059669 !important; + .md\:-translate-y-0 { + --tw-translate-y: 0px !important; } - .md\:focus\:to-green-700:focus { - --tw-gradient-to: #047857 !important; + .md\:-translate-y-1 { + --tw-translate-y: -0.25rem !important; } - .md\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46 !important; + .md\:-translate-y-2 { + --tw-translate-y: -0.5rem !important; } - .md\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b !important; + .md\:-translate-y-3 { + --tw-translate-y: -0.75rem !important; } - .md\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff !important; + .md\:-translate-y-4 { + --tw-translate-y: -1rem !important; } - .md\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe !important; + .md\:-translate-y-5 { + --tw-translate-y: -1.25rem !important; } - .md\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe !important; + .md\:-translate-y-6 { + --tw-translate-y: -1.5rem !important; } - .md\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd !important; + .md\:-translate-y-7 { + --tw-translate-y: -1.75rem !important; } - .md\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa !important; + .md\:-translate-y-8 { + --tw-translate-y: -2rem !important; } - .md\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6 !important; + .md\:-translate-y-9 { + --tw-translate-y: -2.25rem !important; } - .md\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb !important; + .md\:-translate-y-10 { + --tw-translate-y: -2.5rem !important; } - .md\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8 !important; + .md\:-translate-y-11 { + --tw-translate-y: -2.75rem !important; } - .md\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af !important; + .md\:-translate-y-12 { + --tw-translate-y: -3rem !important; } - .md\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a !important; + .md\:-translate-y-14 { + --tw-translate-y: -3.5rem !important; } - .md\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff !important; + .md\:-translate-y-16 { + --tw-translate-y: -4rem !important; } - .md\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff !important; + .md\:-translate-y-20 { + --tw-translate-y: -5rem !important; } - .md\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe !important; + .md\:-translate-y-24 { + --tw-translate-y: -6rem !important; } - .md\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc !important; + .md\:-translate-y-28 { + --tw-translate-y: -7rem !important; } - .md\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8 !important; + .md\:-translate-y-32 { + --tw-translate-y: -8rem !important; } - .md\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1 !important; + .md\:-translate-y-36 { + --tw-translate-y: -9rem !important; } - .md\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5 !important; + .md\:-translate-y-40 { + --tw-translate-y: -10rem !important; } - .md\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca !important; + .md\:-translate-y-44 { + --tw-translate-y: -11rem !important; } - .md\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3 !important; + .md\:-translate-y-48 { + --tw-translate-y: -12rem !important; } - .md\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81 !important; + .md\:-translate-y-52 { + --tw-translate-y: -13rem !important; } - .md\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff !important; + .md\:-translate-y-56 { + --tw-translate-y: -14rem !important; } - .md\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe !important; + .md\:-translate-y-60 { + --tw-translate-y: -15rem !important; } - .md\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe !important; + .md\:-translate-y-64 { + --tw-translate-y: -16rem !important; } - .md\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd !important; + .md\:-translate-y-72 { + --tw-translate-y: -18rem !important; } - .md\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa !important; + .md\:-translate-y-80 { + --tw-translate-y: -20rem !important; } - .md\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6 !important; + .md\:-translate-y-96 { + --tw-translate-y: -24rem !important; } - .md\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed !important; + .md\:-translate-y-px { + --tw-translate-y: -1px !important; } - .md\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9 !important; + .md\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; } - .md\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6 !important; + .md\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; } - .md\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95 !important; + .md\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; } - .md\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8 !important; + .md\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; } - .md\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3 !important; + .md\:translate-y-1\/2 { + --tw-translate-y: 50% !important; } - .md\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8 !important; + .md\:translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; } - .md\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4 !important; + .md\:translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; } - .md\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6 !important; + .md\:translate-y-1\/4 { + --tw-translate-y: 25% !important; } - .md\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899 !important; + .md\:translate-y-2\/4 { + --tw-translate-y: 50% !important; } - .md\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777 !important; + .md\:translate-y-3\/4 { + --tw-translate-y: 75% !important; } - .md\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d !important; + .md\:translate-y-full { + --tw-translate-y: 100% !important; } - .md\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d !important; + .md\:-translate-y-1\/2 { + --tw-translate-y: -50% !important; } - .md\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843 !important; + .md\:-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; } - .md\:bg-opacity-0 { - --tw-bg-opacity: 0 !important; + .md\:-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; } - .md\:bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; + .md\:-translate-y-1\/4 { + --tw-translate-y: -25% !important; } - .md\:bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; + .md\:-translate-y-2\/4 { + --tw-translate-y: -50% !important; } - .md\:bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; + .md\:-translate-y-3\/4 { + --tw-translate-y: -75% !important; } - .md\:bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; + .md\:-translate-y-full { + --tw-translate-y: -100% !important; } - .md\:bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; + .md\:hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; } - .md\:bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; + .md\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; } - .md\:bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; + .md\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; } - .md\:bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; + .md\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; } - .md\:bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; + .md\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; } - .md\:bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; + .md\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; } - .md\:bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; + .md\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; } - .md\:bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; + .md\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; } - .md\:bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; + .md\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; } - .md\:bg-opacity-100 { - --tw-bg-opacity: 1 !important; + .md\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; } - .group:hover .md\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0 !important; + .md\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; } - .group:hover .md\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; + .md\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; } - .group:hover .md\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; + .md\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; } - .group:hover .md\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; + .md\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; } - .group:hover .md\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; + .md\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; } - .group:hover .md\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; + .md\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; } - .group:hover .md\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; + .md\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; } - .group:hover .md\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; + .md\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; } - .group:hover .md\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; + .md\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; } - .group:hover .md\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; + .md\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; } - .group:hover .md\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; + .md\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; } - .group:hover .md\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; + .md\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; } - .group:hover .md\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; + .md\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; } - .group:hover .md\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; + .md\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; } - .group:hover .md\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1 !important; + .md\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; } - .md\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0 !important; + .md\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; } - .md\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05 !important; + .md\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; } - .md\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1 !important; + .md\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; } - .md\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2 !important; + .md\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; } - .md\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25 !important; + .md\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; } - .md\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3 !important; + .md\:hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; } - .md\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4 !important; + .md\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; } - .md\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5 !important; + .md\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; } - .md\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6 !important; + .md\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; } - .md\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7 !important; + .md\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; } - .md\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75 !important; + .md\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; } - .md\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8 !important; + .md\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; } - .md\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9 !important; + .md\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; } - .md\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95 !important; + .md\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; } - .md\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1 !important; + .md\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; } - .md\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0 !important; + .md\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; } - .md\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05 !important; + .md\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; } - .md\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1 !important; + .md\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; } - .md\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2 !important; + .md\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; } - .md\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25 !important; + .md\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; } - .md\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3 !important; + .md\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; } - .md\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4 !important; + .md\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; } - .md\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5 !important; + .md\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; } - .md\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6 !important; + .md\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; } - .md\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7 !important; + .md\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; } - .md\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75 !important; + .md\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; } - .md\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8 !important; + .md\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; } - .md\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9 !important; + .md\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; } - .md\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95 !important; + .md\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; } - .md\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1 !important; + .md\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; } - .md\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0 !important; + .md\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; } - .md\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05 !important; + .md\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; } - .md\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1 !important; + .md\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; } - .md\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2 !important; + .md\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; } - .md\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25 !important; + .md\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; } - .md\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3 !important; + .md\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; } - .md\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4 !important; + .md\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; } - .md\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5 !important; + .md\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; } - .md\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6 !important; + .md\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; } - .md\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7 !important; + .md\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; } - .md\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75 !important; + .md\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; } - .md\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8 !important; + .md\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; } - .md\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9 !important; + .md\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; } - .md\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95 !important; + .md\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; } - .md\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1 !important; + .md\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; } - .md\:bg-bottom { - background-position: bottom !important; + .md\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; } - .md\:bg-center { - background-position: center !important; + .md\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; } - .md\:bg-left { - background-position: left !important; + .md\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; } - .md\:bg-left-bottom { - background-position: left bottom !important; + .md\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; } - .md\:bg-left-top { - background-position: left top !important; + .md\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; } - .md\:bg-right { - background-position: right !important; + .md\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; } - .md\:bg-right-bottom { - background-position: right bottom !important; + .md\:hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; } - .md\:bg-right-top { - background-position: right top !important; + .md\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; } - .md\:bg-top { - background-position: top !important; + .md\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; } - .md\:bg-repeat { - background-repeat: repeat !important; + .md\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; } - .md\:bg-no-repeat { - background-repeat: no-repeat !important; + .md\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; } - .md\:bg-repeat-x { - background-repeat: repeat-x !important; + .md\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; } - .md\:bg-repeat-y { - background-repeat: repeat-y !important; + .md\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; } - .md\:bg-repeat-round { - background-repeat: round !important; + .md\:hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; } - .md\:bg-repeat-space { - background-repeat: space !important; + .md\:hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; } - .md\:bg-auto { - background-size: auto !important; + .md\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; } - .md\:bg-cover { - background-size: cover !important; + .md\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; } - .md\:bg-contain { - background-size: contain !important; + .md\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; } - .md\:bg-origin-border { - background-origin: border-box !important; + .md\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; } - .md\:bg-origin-padding { - background-origin: padding-box !important; + .md\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; } - .md\:bg-origin-content { - background-origin: content-box !important; + .md\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; } - .md\:border-collapse { - border-collapse: collapse !important; + .md\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; } - .md\:border-separate { - border-collapse: separate !important; + .md\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; } - .md\:border-transparent { - border-color: transparent !important; + .md\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; } - .md\:border-current { - border-color: currentColor !important; + .md\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; } - .md\:border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; } - .md\:border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; } - .md\:border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; } - .md\:border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; } - .md\:border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; } - .md\:border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; } - .md\:border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; } - .md\:border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; } - .md\:border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; } - .md\:border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; } - .md\:border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; } - .md\:border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; } - .md\:border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; } - .md\:border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; } - .md\:border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; } - .md\:border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; } - .md\:border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; } - .md\:border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; } - .md\:border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; } - .md\:border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; } - .md\:border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; } - .md\:border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; } - .md\:border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; } - .md\:border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; } - .md\:border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; } - .md\:border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; } - .md\:border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; } - .md\:border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; } - .md\:border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; } - .md\:border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; } - .md\:border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; } - .md\:border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; } - .md\:border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; } - .md\:border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; } - .md\:border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; } - .md\:border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; } - .md\:border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; } - .md\:border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; } - .md\:border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; } - .md\:border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; } - .md\:border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; } - .md\:border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; } - .md\:border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; } - .md\:border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; } - .md\:border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; } - .md\:border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; } - .md\:border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; } - .md\:border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; } - .md\:border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; } - .md\:border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; } - .md\:border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; } - .md\:border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; } - .md\:border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; } - .md\:border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; } - .md\:border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; } - .md\:border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; } - .md\:border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; } - .md\:border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; } - .md\:border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; } - .md\:border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; } - .md\:border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; } - .md\:border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; } - .md\:border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; } - .md\:border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; } - .md\:border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; } - .md\:border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .md\:hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; } - .md\:border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; } - .md\:border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; } - .md\:border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; } - .md\:border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; } - .md\:border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; } - .md\:border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; } - .md\:border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .md\:hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; } - .md\:border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; } - .md\:border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; } - .md\:border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; } - .md\:border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; } - .md\:border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; } - .md\:border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; } - .md\:border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; } - .md\:border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; } - .md\:border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; } - .group:hover .md\:group-hover\:border-transparent { - border-color: transparent !important; + .md\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; } - .group:hover .md\:group-hover\:border-current { - border-color: currentColor !important; + .md\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; } - .group:hover .md\:group-hover\:border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; } - .group:hover .md\:group-hover\:border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; } - .group:hover .md\:group-hover\:border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; } - .group:hover .md\:group-hover\:border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; } - .group:hover .md\:group-hover\:border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; } - .group:hover .md\:group-hover\:border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; } - .group:hover .md\:group-hover\:border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; } - .group:hover .md\:group-hover\:border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; } - .group:hover .md\:group-hover\:border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; } - .group:hover .md\:group-hover\:border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; } - .group:hover .md\:group-hover\:border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; } - .group:hover .md\:group-hover\:border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; } - .group:hover .md\:group-hover\:border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; } - .group:hover .md\:group-hover\:border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; } - .group:hover .md\:group-hover\:border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; } - .group:hover .md\:group-hover\:border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; } - .group:hover .md\:group-hover\:border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; } - .group:hover .md\:group-hover\:border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; } - .group:hover .md\:group-hover\:border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; } - .group:hover .md\:group-hover\:border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; } - .group:hover .md\:group-hover\:border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; } - .group:hover .md\:group-hover\:border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; } - .group:hover .md\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; } - .group:hover .md\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; } - .group:hover .md\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; } - .group:hover .md\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; } - .group:hover .md\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; } - .group:hover .md\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; } - .group:hover .md\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; } - .group:hover .md\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; } - .group:hover .md\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; } - .group:hover .md\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; } - .group:hover .md\:group-hover\:border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; } - .group:hover .md\:group-hover\:border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; } - - .group:hover .md\:group-hover\:border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + + .md\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; } - .group:hover .md\:group-hover\:border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; } - .group:hover .md\:group-hover\:border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; } - .group:hover .md\:group-hover\:border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; } - .group:hover .md\:group-hover\:border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; } - .group:hover .md\:group-hover\:border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; } - .group:hover .md\:group-hover\:border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; } - .group:hover .md\:group-hover\:border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; } - .group:hover .md\:group-hover\:border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; } - .group:hover .md\:group-hover\:border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; } - .group:hover .md\:group-hover\:border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; } - .group:hover .md\:group-hover\:border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; } - .group:hover .md\:group-hover\:border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; } - .group:hover .md\:group-hover\:border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; } - .group:hover .md\:group-hover\:border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; } - .group:hover .md\:group-hover\:border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; } - .group:hover .md\:group-hover\:border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; } - .group:hover .md\:group-hover\:border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; } - .group:hover .md\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; } - .group:hover .md\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; } - .group:hover .md\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; } - .group:hover .md\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; } - .group:hover .md\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; } - .group:hover .md\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; } - .group:hover .md\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; } - .group:hover .md\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; } - .group:hover .md\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; } - .group:hover .md\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; } - .group:hover .md\:group-hover\:border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; } - .group:hover .md\:group-hover\:border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; } - .group:hover .md\:group-hover\:border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; } - .group:hover .md\:group-hover\:border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .md\:focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; } - .group:hover .md\:group-hover\:border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; } - .group:hover .md\:group-hover\:border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; } - .group:hover .md\:group-hover\:border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; } - .group:hover .md\:group-hover\:border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; } - .group:hover .md\:group-hover\:border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; } - .group:hover .md\:group-hover\:border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; } - .group:hover .md\:group-hover\:border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; } - .group:hover .md\:group-hover\:border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; } - .group:hover .md\:group-hover\:border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; } - .group:hover .md\:group-hover\:border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; } - .group:hover .md\:group-hover\:border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; } - .group:hover .md\:group-hover\:border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; } - .group:hover .md\:group-hover\:border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; } - .group:hover .md\:group-hover\:border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; } - .group:hover .md\:group-hover\:border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; } - .group:hover .md\:group-hover\:border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; } - .md\:focus-within\:border-transparent:focus-within { - border-color: transparent !important; + .md\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; } - .md\:focus-within\:border-current:focus-within { - border-color: currentColor !important; + .md\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; } - .md\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; } - .md\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; } - .md\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; } - .md\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; } - .md\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; } - .md\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; } - .md\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; } - .md\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; } - .md\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; } - .md\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; } - .md\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; } - .md\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; } - .md\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; } - .md\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; } - .md\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; } - .md\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; } - .md\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; } - .md\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; } - .md\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; } - .md\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; } - .md\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; } - .md\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; } - .md\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; } - .md\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; } - .md\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; } - .md\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; } - .md\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; } - .md\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; } - .md\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; } - .md\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; } - .md\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; } - .md\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; } - .md\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; } - .md\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; } - .md\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; } - .md\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; } - .md\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; } - .md\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; } - .md\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; } - .md\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; } - .md\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; } - .md\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; } - .md\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; } - .md\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; } - .md\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; } - .md\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; } - .md\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; } - .md\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; } - .md\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; } - .md\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; } - .md\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; } - .md\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; } - .md\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; } - .md\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; } - .md\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; } - .md\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; } - .md\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; } - .md\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; } - .md\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; } - .md\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; } - .md\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; } - .md\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; } - .md\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; } - .md\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; } - .md\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; } - .md\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .md\:focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; } - .md\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; } - .md\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; } - .md\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; } - .md\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; } - .md\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; } - .md\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; } - .md\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .md\:focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; } - .md\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .md\:rotate-0 { + --tw-rotate: 0deg !important; } - .md\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .md\:rotate-1 { + --tw-rotate: 1deg !important; } - .md\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .md\:rotate-2 { + --tw-rotate: 2deg !important; } - .md\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .md\:rotate-3 { + --tw-rotate: 3deg !important; } - .md\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .md\:rotate-6 { + --tw-rotate: 6deg !important; } - .md\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .md\:rotate-12 { + --tw-rotate: 12deg !important; } - .md\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .md\:rotate-45 { + --tw-rotate: 45deg !important; } - .md\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .md\:rotate-90 { + --tw-rotate: 90deg !important; } - .md\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .md\:rotate-180 { + --tw-rotate: 180deg !important; } - .md\:hover\:border-transparent:hover { - border-color: transparent !important; + .md\:-rotate-180 { + --tw-rotate: -180deg !important; } - .md\:hover\:border-current:hover { - border-color: currentColor !important; + .md\:-rotate-90 { + --tw-rotate: -90deg !important; } - .md\:hover\:border-black:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .md\:-rotate-45 { + --tw-rotate: -45deg !important; } - .md\:hover\:border-white:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .md\:-rotate-12 { + --tw-rotate: -12deg !important; } - .md\:hover\:border-gray-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .md\:-rotate-6 { + --tw-rotate: -6deg !important; } - .md\:hover\:border-gray-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .md\:-rotate-3 { + --tw-rotate: -3deg !important; } - .md\:hover\:border-gray-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .md\:-rotate-2 { + --tw-rotate: -2deg !important; } - .md\:hover\:border-gray-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .md\:-rotate-1 { + --tw-rotate: -1deg !important; } - .md\:hover\:border-gray-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .md\:hover\:rotate-0:hover { + --tw-rotate: 0deg !important; } - .md\:hover\:border-gray-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .md\:hover\:rotate-1:hover { + --tw-rotate: 1deg !important; } - .md\:hover\:border-gray-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .md\:hover\:rotate-2:hover { + --tw-rotate: 2deg !important; } - .md\:hover\:border-gray-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .md\:hover\:rotate-3:hover { + --tw-rotate: 3deg !important; } - .md\:hover\:border-gray-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .md\:hover\:rotate-6:hover { + --tw-rotate: 6deg !important; } - .md\:hover\:border-gray-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .md\:hover\:rotate-12:hover { + --tw-rotate: 12deg !important; } - .md\:hover\:border-red-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .md\:hover\:rotate-45:hover { + --tw-rotate: 45deg !important; } - .md\:hover\:border-red-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .md\:hover\:rotate-90:hover { + --tw-rotate: 90deg !important; } - .md\:hover\:border-red-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .md\:hover\:rotate-180:hover { + --tw-rotate: 180deg !important; } - .md\:hover\:border-red-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .md\:hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; } - .md\:hover\:border-red-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .md\:hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; } - .md\:hover\:border-red-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .md\:hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; } - .md\:hover\:border-red-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .md\:hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; } - .md\:hover\:border-red-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .md\:hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; } - .md\:hover\:border-red-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .md\:hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; } - .md\:hover\:border-red-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .md\:hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; } - .md\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .md\:hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; } - .md\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .md\:focus\:rotate-0:focus { + --tw-rotate: 0deg !important; } - .md\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .md\:focus\:rotate-1:focus { + --tw-rotate: 1deg !important; } - .md\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .md\:focus\:rotate-2:focus { + --tw-rotate: 2deg !important; } - .md\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .md\:focus\:rotate-3:focus { + --tw-rotate: 3deg !important; } - .md\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .md\:focus\:rotate-6:focus { + --tw-rotate: 6deg !important; } - .md\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .md\:focus\:rotate-12:focus { + --tw-rotate: 12deg !important; } - .md\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .md\:focus\:rotate-45:focus { + --tw-rotate: 45deg !important; } - .md\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .md\:focus\:rotate-90:focus { + --tw-rotate: 90deg !important; } - .md\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .md\:focus\:rotate-180:focus { + --tw-rotate: 180deg !important; } - .md\:hover\:border-green-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .md\:focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; } - .md\:hover\:border-green-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .md\:focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; } - .md\:hover\:border-green-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .md\:focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; } - .md\:hover\:border-green-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .md\:focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; } - .md\:hover\:border-green-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .md\:focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; } - .md\:hover\:border-green-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .md\:focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; } - .md\:hover\:border-green-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .md\:focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; } - .md\:hover\:border-green-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .md\:focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; } - .md\:hover\:border-green-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .md\:skew-x-0 { + --tw-skew-x: 0deg !important; } - .md\:hover\:border-green-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .md\:skew-x-1 { + --tw-skew-x: 1deg !important; } - .md\:hover\:border-blue-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .md\:skew-x-2 { + --tw-skew-x: 2deg !important; } - .md\:hover\:border-blue-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .md\:skew-x-3 { + --tw-skew-x: 3deg !important; } - .md\:hover\:border-blue-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .md\:skew-x-6 { + --tw-skew-x: 6deg !important; } - .md\:hover\:border-blue-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .md\:skew-x-12 { + --tw-skew-x: 12deg !important; } - .md\:hover\:border-blue-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .md\:-skew-x-12 { + --tw-skew-x: -12deg !important; } - .md\:hover\:border-blue-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .md\:-skew-x-6 { + --tw-skew-x: -6deg !important; } - .md\:hover\:border-blue-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .md\:-skew-x-3 { + --tw-skew-x: -3deg !important; } - .md\:hover\:border-blue-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .md\:-skew-x-2 { + --tw-skew-x: -2deg !important; } - .md\:hover\:border-blue-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .md\:-skew-x-1 { + --tw-skew-x: -1deg !important; } - .md\:hover\:border-blue-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .md\:skew-y-0 { + --tw-skew-y: 0deg !important; } - .md\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .md\:skew-y-1 { + --tw-skew-y: 1deg !important; } - .md\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .md\:skew-y-2 { + --tw-skew-y: 2deg !important; } - .md\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .md\:skew-y-3 { + --tw-skew-y: 3deg !important; } - .md\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .md\:skew-y-6 { + --tw-skew-y: 6deg !important; } - .md\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .md\:skew-y-12 { + --tw-skew-y: 12deg !important; } - .md\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .md\:-skew-y-12 { + --tw-skew-y: -12deg !important; } - .md\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .md\:-skew-y-6 { + --tw-skew-y: -6deg !important; } - .md\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .md\:-skew-y-3 { + --tw-skew-y: -3deg !important; } - .md\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .md\:-skew-y-2 { + --tw-skew-y: -2deg !important; } - .md\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .md\:-skew-y-1 { + --tw-skew-y: -1deg !important; } - .md\:hover\:border-purple-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .md\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; } - .md\:hover\:border-purple-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .md\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; } - .md\:hover\:border-purple-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .md\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; } - .md\:hover\:border-purple-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .md\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; } - .md\:hover\:border-purple-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .md\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; } - .md\:hover\:border-purple-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .md\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; } - .md\:hover\:border-purple-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .md\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; } - .md\:hover\:border-purple-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .md\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; } - .md\:hover\:border-purple-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .md\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; } - .md\:hover\:border-purple-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .md\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; } - .md\:hover\:border-pink-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .md\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; } - .md\:hover\:border-pink-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .md\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; } - .md\:hover\:border-pink-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .md\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; } - .md\:hover\:border-pink-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .md\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; } - .md\:hover\:border-pink-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .md\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; } - .md\:hover\:border-pink-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .md\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; } - .md\:hover\:border-pink-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .md\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; } - .md\:hover\:border-pink-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .md\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; } - .md\:hover\:border-pink-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .md\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; } - .md\:hover\:border-pink-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .md\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; } - .md\:focus\:border-transparent:focus { - border-color: transparent !important; + .md\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; } - .md\:focus\:border-current:focus { - border-color: currentColor !important; + .md\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; } - .md\:focus\:border-black:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .md\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; } - .md\:focus\:border-white:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .md\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; } - .md\:focus\:border-gray-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .md\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; } - .md\:focus\:border-gray-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .md\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; } - .md\:focus\:border-gray-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .md\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; } - .md\:focus\:border-gray-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .md\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; } - .md\:focus\:border-gray-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .md\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; } - .md\:focus\:border-gray-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .md\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; } - .md\:focus\:border-gray-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .md\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; } - .md\:focus\:border-gray-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .md\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; } - .md\:focus\:border-gray-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .md\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; } - .md\:focus\:border-gray-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .md\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; } - .md\:focus\:border-red-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .md\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; } - .md\:focus\:border-red-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .md\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; } - .md\:focus\:border-red-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .md\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; } - .md\:focus\:border-red-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .md\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; } - .md\:focus\:border-red-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .md\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; } - .md\:focus\:border-red-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .md\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; } - .md\:focus\:border-red-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .md\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; } - .md\:focus\:border-red-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .md\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; } - .md\:focus\:border-red-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .md\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; } - .md\:focus\:border-red-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .md\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; } - .md\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .md\:scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .md\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .md\:scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .md\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .md\:scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .md\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .md\:scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .md\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .md\:scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .md\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .md\:scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .md\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .md\:scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .md\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .md\:scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .md\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .md\:scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .md\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .md\:scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .md\:focus\:border-green-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .md\:scale-x-0 { + --tw-scale-x: 0 !important; } - .md\:focus\:border-green-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .md\:scale-x-50 { + --tw-scale-x: .5 !important; } - .md\:focus\:border-green-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .md\:scale-x-75 { + --tw-scale-x: .75 !important; } - .md\:focus\:border-green-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .md\:scale-x-90 { + --tw-scale-x: .9 !important; } - .md\:focus\:border-green-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .md\:scale-x-95 { + --tw-scale-x: .95 !important; } - .md\:focus\:border-green-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .md\:scale-x-100 { + --tw-scale-x: 1 !important; } - .md\:focus\:border-green-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .md\:scale-x-105 { + --tw-scale-x: 1.05 !important; } - .md\:focus\:border-green-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .md\:scale-x-110 { + --tw-scale-x: 1.1 !important; } - .md\:focus\:border-green-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .md\:scale-x-125 { + --tw-scale-x: 1.25 !important; } - .md\:focus\:border-green-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .md\:scale-x-150 { + --tw-scale-x: 1.5 !important; } - .md\:focus\:border-blue-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .md\:scale-y-0 { + --tw-scale-y: 0 !important; } - .md\:focus\:border-blue-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .md\:scale-y-50 { + --tw-scale-y: .5 !important; } - .md\:focus\:border-blue-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .md\:scale-y-75 { + --tw-scale-y: .75 !important; } - .md\:focus\:border-blue-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .md\:scale-y-90 { + --tw-scale-y: .9 !important; } - .md\:focus\:border-blue-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .md\:scale-y-95 { + --tw-scale-y: .95 !important; } - .md\:focus\:border-blue-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .md\:scale-y-100 { + --tw-scale-y: 1 !important; } - .md\:focus\:border-blue-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .md\:scale-y-105 { + --tw-scale-y: 1.05 !important; } - .md\:focus\:border-blue-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .md\:scale-y-110 { + --tw-scale-y: 1.1 !important; } - .md\:focus\:border-blue-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .md\:scale-y-125 { + --tw-scale-y: 1.25 !important; } - .md\:focus\:border-blue-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .md\:scale-y-150 { + --tw-scale-y: 1.5 !important; } - .md\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .md\:hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .md\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .md\:hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .md\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .md\:hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .md\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .md\:hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .md\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .md\:hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .md\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .md\:hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .md\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .md\:hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .md\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .md\:hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .md\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .md\:hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .md\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .md\:hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .md\:focus\:border-purple-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .md\:hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; } - .md\:focus\:border-purple-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .md\:hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; } - .md\:focus\:border-purple-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .md\:hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; } - .md\:focus\:border-purple-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .md\:hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; } - .md\:focus\:border-purple-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .md\:hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; } - .md\:focus\:border-purple-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .md\:hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; } - .md\:focus\:border-purple-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .md\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; } - .md\:focus\:border-purple-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .md\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; } - .md\:focus\:border-purple-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .md\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; } - .md\:focus\:border-purple-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .md\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; } - .md\:focus\:border-pink-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .md\:hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; } - .md\:focus\:border-pink-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .md\:hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; } - .md\:focus\:border-pink-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .md\:hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; } - .md\:focus\:border-pink-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .md\:hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; } - .md\:focus\:border-pink-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .md\:hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; } - .md\:focus\:border-pink-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .md\:hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; } - .md\:focus\:border-pink-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .md\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; } - .md\:focus\:border-pink-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .md\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; } - .md\:focus\:border-pink-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .md\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; } - .md\:focus\:border-pink-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .md\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; } - .md\:border-opacity-0 { - --tw-border-opacity: 0 !important; + .md\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .md\:border-opacity-5 { - --tw-border-opacity: 0.05 !important; + .md\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .md\:border-opacity-10 { - --tw-border-opacity: 0.1 !important; + .md\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .md\:border-opacity-20 { - --tw-border-opacity: 0.2 !important; + .md\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .md\:border-opacity-25 { - --tw-border-opacity: 0.25 !important; + .md\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .md\:border-opacity-30 { - --tw-border-opacity: 0.3 !important; + .md\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .md\:border-opacity-40 { - --tw-border-opacity: 0.4 !important; + .md\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .md\:border-opacity-50 { - --tw-border-opacity: 0.5 !important; + .md\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .md\:border-opacity-60 { - --tw-border-opacity: 0.6 !important; + .md\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .md\:border-opacity-70 { - --tw-border-opacity: 0.7 !important; + .md\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .md\:border-opacity-75 { - --tw-border-opacity: 0.75 !important; + .md\:focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; } - .md\:border-opacity-80 { - --tw-border-opacity: 0.8 !important; + .md\:focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; } - .md\:border-opacity-90 { - --tw-border-opacity: 0.9 !important; + .md\:focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; } - .md\:border-opacity-95 { - --tw-border-opacity: 0.95 !important; + .md\:focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; } - .md\:border-opacity-100 { - --tw-border-opacity: 1 !important; + .md\:focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; } - .group:hover .md\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0 !important; + .md\:focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; } - .group:hover .md\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05 !important; + .md\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; } - .group:hover .md\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1 !important; + .md\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; } - .group:hover .md\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2 !important; + .md\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; } - .group:hover .md\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25 !important; + .md\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; } - .group:hover .md\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3 !important; + .md\:focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; } - .group:hover .md\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4 !important; + .md\:focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; } - .group:hover .md\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5 !important; + .md\:focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; } - .group:hover .md\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6 !important; + .md\:focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; } - .group:hover .md\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7 !important; + .md\:focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; } - .group:hover .md\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75 !important; + .md\:focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; } - .group:hover .md\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8 !important; + .md\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; } - .group:hover .md\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9 !important; + .md\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; } - .group:hover .md\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95 !important; + .md\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; } - .group:hover .md\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1 !important; + .md\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; } - .md\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0 !important; + .md\:animate-none { + animation: none !important; } - .md\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05 !important; + .md\:animate-spin { + animation: spin 1s linear infinite !important; } - .md\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1 !important; + .md\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; } - .md\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2 !important; + .md\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; } - .md\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25 !important; + .md\:animate-bounce { + animation: bounce 1s infinite !important; } - .md\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3 !important; + .md\:cursor-auto { + cursor: auto !important; } - .md\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4 !important; + .md\:cursor-default { + cursor: default !important; } - .md\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5 !important; + .md\:cursor-pointer { + cursor: pointer !important; } - .md\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6 !important; + .md\:cursor-wait { + cursor: wait !important; } - .md\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7 !important; + .md\:cursor-text { + cursor: text !important; } - .md\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75 !important; + .md\:cursor-move { + cursor: move !important; } - .md\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8 !important; + .md\:cursor-help { + cursor: help !important; } - .md\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9 !important; + .md\:cursor-not-allowed { + cursor: not-allowed !important; } - .md\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95 !important; + .md\:select-none { + user-select: none !important; } - .md\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1 !important; + .md\:select-text { + user-select: text !important; } - .md\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0 !important; + .md\:select-all { + user-select: all !important; } - .md\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05 !important; + .md\:select-auto { + user-select: auto !important; } - .md\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1 !important; + .md\:resize-none { + resize: none !important; } - .md\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2 !important; + .md\:resize-y { + resize: vertical !important; } - .md\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25 !important; + .md\:resize-x { + resize: horizontal !important; } - .md\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3 !important; + .md\:resize { + resize: both !important; } - .md\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4 !important; + .md\:list-inside { + list-style-position: inside !important; } - .md\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5 !important; + .md\:list-outside { + list-style-position: outside !important; } - .md\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6 !important; + .md\:list-none { + list-style-type: none !important; } - .md\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7 !important; + .md\:list-disc { + list-style-type: disc !important; } - .md\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75 !important; + .md\:list-decimal { + list-style-type: decimal !important; } - .md\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8 !important; + .md\:appearance-none { + appearance: none !important; } - .md\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9 !important; + .md\:auto-cols-auto { + grid-auto-columns: auto !important; } - .md\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95 !important; + .md\:auto-cols-min { + grid-auto-columns: min-content !important; } - .md\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1 !important; + .md\:auto-cols-max { + grid-auto-columns: max-content !important; } - .md\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0 !important; + .md\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; } - .md\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05 !important; + .md\:grid-flow-row { + grid-auto-flow: row !important; } - .md\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1 !important; + .md\:grid-flow-col { + grid-auto-flow: column !important; } - .md\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2 !important; + .md\:grid-flow-row-dense { + grid-auto-flow: row dense !important; } - .md\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25 !important; + .md\:grid-flow-col-dense { + grid-auto-flow: column dense !important; } - .md\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3 !important; + .md\:auto-rows-auto { + grid-auto-rows: auto !important; } - .md\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4 !important; + .md\:auto-rows-min { + grid-auto-rows: min-content !important; } - .md\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5 !important; + .md\:auto-rows-max { + grid-auto-rows: max-content !important; } - .md\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6 !important; + .md\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; } - .md\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7 !important; + .md\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } - .md\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75 !important; + .md\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } - .md\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8 !important; + .md\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } - .md\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9 !important; + .md\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } - .md\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95 !important; + .md\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } - .md\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1 !important; + .md\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } - .md\:rounded-none { - border-radius: 0px !important; + .md\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } - .md\:rounded-sm { - border-radius: 0.125rem !important; + .md\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } - .md\:rounded { - border-radius: 0.25rem !important; + .md\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } - .md\:rounded-md { - border-radius: 0.375rem !important; + .md\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } - .md\:rounded-lg { - border-radius: 0.5rem !important; + .md\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } - .md\:rounded-xl { - border-radius: 0.75rem !important; + .md\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } - .md\:rounded-2xl { - border-radius: 1rem !important; + .md\:grid-cols-none { + grid-template-columns: none !important; } - .md\:rounded-3xl { - border-radius: 1.5rem !important; + .md\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; } - .md\:rounded-full { - border-radius: 9999px !important; + .md\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; } - .md\:rounded-t-none { - border-top-left-radius: 0px !important; - border-top-right-radius: 0px !important; + .md\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; } - .md\:rounded-r-none { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; + .md\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; } - .md\:rounded-b-none { - border-bottom-right-radius: 0px !important; - border-bottom-left-radius: 0px !important; + .md\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; } - .md\:rounded-l-none { - border-top-left-radius: 0px !important; - border-bottom-left-radius: 0px !important; + .md\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; } - .md\:rounded-t-sm { - border-top-left-radius: 0.125rem !important; - border-top-right-radius: 0.125rem !important; + .md\:grid-rows-none { + grid-template-rows: none !important; } - .md\:rounded-r-sm { - border-top-right-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; + .md\:flex-row { + flex-direction: row !important; } - .md\:rounded-b-sm { - border-bottom-right-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; + .md\:flex-row-reverse { + flex-direction: row-reverse !important; } - .md\:rounded-l-sm { - border-top-left-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; + .md\:flex-col { + flex-direction: column !important; } - .md\:rounded-t { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; + .md\:flex-col-reverse { + flex-direction: column-reverse !important; } - .md\:rounded-r { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; + .md\:flex-wrap { + flex-wrap: wrap !important; } - .md\:rounded-b { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; + .md\:flex-wrap-reverse { + flex-wrap: wrap-reverse !important; } - .md\:rounded-l { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; + .md\:flex-nowrap { + flex-wrap: nowrap !important; } - .md\:rounded-t-md { - border-top-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem !important; + .md\:place-content-center { + place-content: center !important; } - .md\:rounded-r-md { - border-top-right-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; + .md\:place-content-start { + place-content: start !important; } - .md\:rounded-b-md { - border-bottom-right-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; + .md\:place-content-end { + place-content: end !important; } - .md\:rounded-l-md { - border-top-left-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; + .md\:place-content-between { + place-content: space-between !important; } - .md\:rounded-t-lg { - border-top-left-radius: 0.5rem !important; - border-top-right-radius: 0.5rem !important; + .md\:place-content-around { + place-content: space-around !important; } - .md\:rounded-r-lg { - border-top-right-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; + .md\:place-content-evenly { + place-content: space-evenly !important; } - .md\:rounded-b-lg { - border-bottom-right-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; + .md\:place-content-stretch { + place-content: stretch !important; } - .md\:rounded-l-lg { - border-top-left-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; + .md\:place-items-start { + place-items: start !important; } - .md\:rounded-t-xl { - border-top-left-radius: 0.75rem !important; - border-top-right-radius: 0.75rem !important; + .md\:place-items-end { + place-items: end !important; } - .md\:rounded-r-xl { - border-top-right-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; + .md\:place-items-center { + place-items: center !important; } - .md\:rounded-b-xl { - border-bottom-right-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; + .md\:place-items-stretch { + place-items: stretch !important; } - .md\:rounded-l-xl { - border-top-left-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; + .md\:content-center { + align-content: center !important; } - .md\:rounded-t-2xl { - border-top-left-radius: 1rem !important; - border-top-right-radius: 1rem !important; + .md\:content-start { + align-content: flex-start !important; } - .md\:rounded-r-2xl { - border-top-right-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; + .md\:content-end { + align-content: flex-end !important; } - .md\:rounded-b-2xl { - border-bottom-right-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; + .md\:content-between { + align-content: space-between !important; } - .md\:rounded-l-2xl { - border-top-left-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; + .md\:content-around { + align-content: space-around !important; } - .md\:rounded-t-3xl { - border-top-left-radius: 1.5rem !important; - border-top-right-radius: 1.5rem !important; + .md\:content-evenly { + align-content: space-evenly !important; } - .md\:rounded-r-3xl { - border-top-right-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; + .md\:items-start { + align-items: flex-start !important; } - .md\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; + .md\:items-end { + align-items: flex-end !important; } - .md\:rounded-l-3xl { - border-top-left-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; + .md\:items-center { + align-items: center !important; } - .md\:rounded-t-full { - border-top-left-radius: 9999px !important; - border-top-right-radius: 9999px !important; + .md\:items-baseline { + align-items: baseline !important; } - .md\:rounded-r-full { - border-top-right-radius: 9999px !important; - border-bottom-right-radius: 9999px !important; + .md\:items-stretch { + align-items: stretch !important; } - .md\:rounded-b-full { - border-bottom-right-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; + .md\:justify-start { + justify-content: flex-start !important; } - .md\:rounded-l-full { - border-top-left-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; + .md\:justify-end { + justify-content: flex-end !important; } - .md\:rounded-tl-none { - border-top-left-radius: 0px !important; + .md\:justify-center { + justify-content: center !important; } - .md\:rounded-tr-none { - border-top-right-radius: 0px !important; + .md\:justify-between { + justify-content: space-between !important; + } + + .md\:justify-around { + justify-content: space-around !important; } - .md\:rounded-br-none { - border-bottom-right-radius: 0px !important; + .md\:justify-evenly { + justify-content: space-evenly !important; } - .md\:rounded-bl-none { - border-bottom-left-radius: 0px !important; + .md\:justify-items-start { + justify-items: start !important; } - .md\:rounded-tl-sm { - border-top-left-radius: 0.125rem !important; + .md\:justify-items-end { + justify-items: end !important; } - .md\:rounded-tr-sm { - border-top-right-radius: 0.125rem !important; + .md\:justify-items-center { + justify-items: center !important; } - .md\:rounded-br-sm { - border-bottom-right-radius: 0.125rem !important; + .md\:justify-items-stretch { + justify-items: stretch !important; } - .md\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem !important; + .md\:gap-0 { + gap: 0px !important; } - .md\:rounded-tl { - border-top-left-radius: 0.25rem !important; + .md\:gap-1 { + gap: 0.25rem !important; } - .md\:rounded-tr { - border-top-right-radius: 0.25rem !important; + .md\:gap-2 { + gap: 0.5rem !important; } - .md\:rounded-br { - border-bottom-right-radius: 0.25rem !important; + .md\:gap-3 { + gap: 0.75rem !important; } - .md\:rounded-bl { - border-bottom-left-radius: 0.25rem !important; + .md\:gap-4 { + gap: 1rem !important; } - .md\:rounded-tl-md { - border-top-left-radius: 0.375rem !important; + .md\:gap-5 { + gap: 1.25rem !important; } - .md\:rounded-tr-md { - border-top-right-radius: 0.375rem !important; + .md\:gap-6 { + gap: 1.5rem !important; } - .md\:rounded-br-md { - border-bottom-right-radius: 0.375rem !important; + .md\:gap-7 { + gap: 1.75rem !important; } - .md\:rounded-bl-md { - border-bottom-left-radius: 0.375rem !important; + .md\:gap-8 { + gap: 2rem !important; } - .md\:rounded-tl-lg { - border-top-left-radius: 0.5rem !important; + .md\:gap-9 { + gap: 2.25rem !important; } - .md\:rounded-tr-lg { - border-top-right-radius: 0.5rem !important; + .md\:gap-10 { + gap: 2.5rem !important; } - .md\:rounded-br-lg { - border-bottom-right-radius: 0.5rem !important; + .md\:gap-11 { + gap: 2.75rem !important; } - .md\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem !important; + .md\:gap-12 { + gap: 3rem !important; } - .md\:rounded-tl-xl { - border-top-left-radius: 0.75rem !important; + .md\:gap-14 { + gap: 3.5rem !important; } - .md\:rounded-tr-xl { - border-top-right-radius: 0.75rem !important; + .md\:gap-16 { + gap: 4rem !important; } - .md\:rounded-br-xl { - border-bottom-right-radius: 0.75rem !important; + .md\:gap-20 { + gap: 5rem !important; } - .md\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem !important; + .md\:gap-24 { + gap: 6rem !important; } - .md\:rounded-tl-2xl { - border-top-left-radius: 1rem !important; + .md\:gap-28 { + gap: 7rem !important; } - .md\:rounded-tr-2xl { - border-top-right-radius: 1rem !important; + .md\:gap-32 { + gap: 8rem !important; } - .md\:rounded-br-2xl { - border-bottom-right-radius: 1rem !important; + .md\:gap-36 { + gap: 9rem !important; } - .md\:rounded-bl-2xl { - border-bottom-left-radius: 1rem !important; + .md\:gap-40 { + gap: 10rem !important; } - .md\:rounded-tl-3xl { - border-top-left-radius: 1.5rem !important; + .md\:gap-44 { + gap: 11rem !important; } - .md\:rounded-tr-3xl { - border-top-right-radius: 1.5rem !important; + .md\:gap-48 { + gap: 12rem !important; } - .md\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem !important; + .md\:gap-52 { + gap: 13rem !important; } - .md\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem !important; + .md\:gap-56 { + gap: 14rem !important; } - .md\:rounded-tl-full { - border-top-left-radius: 9999px !important; + .md\:gap-60 { + gap: 15rem !important; } - .md\:rounded-tr-full { - border-top-right-radius: 9999px !important; + .md\:gap-64 { + gap: 16rem !important; } - .md\:rounded-br-full { - border-bottom-right-radius: 9999px !important; + .md\:gap-72 { + gap: 18rem !important; } - .md\:rounded-bl-full { - border-bottom-left-radius: 9999px !important; + .md\:gap-80 { + gap: 20rem !important; } - .md\:border-solid { - border-style: solid !important; + .md\:gap-96 { + gap: 24rem !important; } - .md\:border-dashed { - border-style: dashed !important; + .md\:gap-px { + gap: 1px !important; } - .md\:border-dotted { - border-style: dotted !important; + .md\:gap-0\.5 { + gap: 0.125rem !important; } - .md\:border-double { - border-style: double !important; + .md\:gap-1\.5 { + gap: 0.375rem !important; } - .md\:border-none { - border-style: none !important; + .md\:gap-2\.5 { + gap: 0.625rem !important; } - .md\:border-0 { - border-width: 0px !important; + .md\:gap-3\.5 { + gap: 0.875rem !important; } - .md\:border-2 { - border-width: 2px !important; + .md\:gap-x-0 { + column-gap: 0px !important; } - .md\:border-4 { - border-width: 4px !important; + .md\:gap-x-1 { + column-gap: 0.25rem !important; } - .md\:border-8 { - border-width: 8px !important; + .md\:gap-x-2 { + column-gap: 0.5rem !important; } - .md\:border { - border-width: 1px !important; + .md\:gap-x-3 { + column-gap: 0.75rem !important; } - .md\:border-t-0 { - border-top-width: 0px !important; + .md\:gap-x-4 { + column-gap: 1rem !important; } - .md\:border-r-0 { - border-right-width: 0px !important; + .md\:gap-x-5 { + column-gap: 1.25rem !important; } - .md\:border-b-0 { - border-bottom-width: 0px !important; + .md\:gap-x-6 { + column-gap: 1.5rem !important; } - .md\:border-l-0 { - border-left-width: 0px !important; + .md\:gap-x-7 { + column-gap: 1.75rem !important; } - .md\:border-t-2 { - border-top-width: 2px !important; + .md\:gap-x-8 { + column-gap: 2rem !important; } - .md\:border-r-2 { - border-right-width: 2px !important; + .md\:gap-x-9 { + column-gap: 2.25rem !important; } - .md\:border-b-2 { - border-bottom-width: 2px !important; + .md\:gap-x-10 { + column-gap: 2.5rem !important; } - .md\:border-l-2 { - border-left-width: 2px !important; + .md\:gap-x-11 { + column-gap: 2.75rem !important; } - .md\:border-t-4 { - border-top-width: 4px !important; + .md\:gap-x-12 { + column-gap: 3rem !important; } - .md\:border-r-4 { - border-right-width: 4px !important; + .md\:gap-x-14 { + column-gap: 3.5rem !important; } - .md\:border-b-4 { - border-bottom-width: 4px !important; + .md\:gap-x-16 { + column-gap: 4rem !important; } - .md\:border-l-4 { - border-left-width: 4px !important; + .md\:gap-x-20 { + column-gap: 5rem !important; } - .md\:border-t-8 { - border-top-width: 8px !important; + .md\:gap-x-24 { + column-gap: 6rem !important; } - .md\:border-r-8 { - border-right-width: 8px !important; + .md\:gap-x-28 { + column-gap: 7rem !important; } - .md\:border-b-8 { - border-bottom-width: 8px !important; + .md\:gap-x-32 { + column-gap: 8rem !important; } - .md\:border-l-8 { - border-left-width: 8px !important; + .md\:gap-x-36 { + column-gap: 9rem !important; } - .md\:border-t { - border-top-width: 1px !important; + .md\:gap-x-40 { + column-gap: 10rem !important; } - .md\:border-r { - border-right-width: 1px !important; + .md\:gap-x-44 { + column-gap: 11rem !important; } - .md\:border-b { - border-bottom-width: 1px !important; + .md\:gap-x-48 { + column-gap: 12rem !important; } - .md\:border-l { - border-left-width: 1px !important; + .md\:gap-x-52 { + column-gap: 13rem !important; } - .md\:decoration-slice { - box-decoration-break: slice !important; + .md\:gap-x-56 { + column-gap: 14rem !important; } - .md\:decoration-clone { - box-decoration-break: clone !important; + .md\:gap-x-60 { + column-gap: 15rem !important; } - .md\:box-border { - box-sizing: border-box !important; + .md\:gap-x-64 { + column-gap: 16rem !important; } - .md\:box-content { - box-sizing: content-box !important; + .md\:gap-x-72 { + column-gap: 18rem !important; } - .md\:cursor-auto { - cursor: auto !important; + .md\:gap-x-80 { + column-gap: 20rem !important; } - .md\:cursor-default { - cursor: default !important; + .md\:gap-x-96 { + column-gap: 24rem !important; } - .md\:cursor-pointer { - cursor: pointer !important; + .md\:gap-x-px { + column-gap: 1px !important; } - .md\:cursor-wait { - cursor: wait !important; + .md\:gap-x-0\.5 { + column-gap: 0.125rem !important; } - .md\:cursor-text { - cursor: text !important; + .md\:gap-x-1\.5 { + column-gap: 0.375rem !important; } - .md\:cursor-move { - cursor: move !important; + .md\:gap-x-2\.5 { + column-gap: 0.625rem !important; } - .md\:cursor-help { - cursor: help !important; + .md\:gap-x-3\.5 { + column-gap: 0.875rem !important; } - .md\:cursor-not-allowed { - cursor: not-allowed !important; + .md\:gap-y-0 { + row-gap: 0px !important; } - .md\:block { - display: block !important; + .md\:gap-y-1 { + row-gap: 0.25rem !important; } - .md\:inline-block { - display: inline-block !important; + .md\:gap-y-2 { + row-gap: 0.5rem !important; } - .md\:inline { - display: inline !important; + .md\:gap-y-3 { + row-gap: 0.75rem !important; } - .md\:flex { - display: flex !important; + .md\:gap-y-4 { + row-gap: 1rem !important; } - .md\:inline-flex { - display: inline-flex !important; + .md\:gap-y-5 { + row-gap: 1.25rem !important; } - .md\:table { - display: table !important; + .md\:gap-y-6 { + row-gap: 1.5rem !important; } - .md\:inline-table { - display: inline-table !important; + .md\:gap-y-7 { + row-gap: 1.75rem !important; } - .md\:table-caption { - display: table-caption !important; + .md\:gap-y-8 { + row-gap: 2rem !important; } - .md\:table-cell { - display: table-cell !important; + .md\:gap-y-9 { + row-gap: 2.25rem !important; } - .md\:table-column { - display: table-column !important; + .md\:gap-y-10 { + row-gap: 2.5rem !important; } - .md\:table-column-group { - display: table-column-group !important; + .md\:gap-y-11 { + row-gap: 2.75rem !important; } - .md\:table-footer-group { - display: table-footer-group !important; + .md\:gap-y-12 { + row-gap: 3rem !important; } - .md\:table-header-group { - display: table-header-group !important; + .md\:gap-y-14 { + row-gap: 3.5rem !important; } - .md\:table-row-group { - display: table-row-group !important; + .md\:gap-y-16 { + row-gap: 4rem !important; } - .md\:table-row { - display: table-row !important; + .md\:gap-y-20 { + row-gap: 5rem !important; } - .md\:flow-root { - display: flow-root !important; + .md\:gap-y-24 { + row-gap: 6rem !important; } - .md\:grid { - display: grid !important; + .md\:gap-y-28 { + row-gap: 7rem !important; } - .md\:inline-grid { - display: inline-grid !important; + .md\:gap-y-32 { + row-gap: 8rem !important; } - .md\:contents { - display: contents !important; + .md\:gap-y-36 { + row-gap: 9rem !important; } - .md\:list-item { - display: list-item !important; + .md\:gap-y-40 { + row-gap: 10rem !important; } - .md\:hidden { - display: none !important; + .md\:gap-y-44 { + row-gap: 11rem !important; } - .md\:flex-row { - flex-direction: row !important; + .md\:gap-y-48 { + row-gap: 12rem !important; } - .md\:flex-row-reverse { - flex-direction: row-reverse !important; + .md\:gap-y-52 { + row-gap: 13rem !important; } - .md\:flex-col { - flex-direction: column !important; + .md\:gap-y-56 { + row-gap: 14rem !important; } - .md\:flex-col-reverse { - flex-direction: column-reverse !important; + .md\:gap-y-60 { + row-gap: 15rem !important; } - .md\:flex-wrap { - flex-wrap: wrap !important; + .md\:gap-y-64 { + row-gap: 16rem !important; } - .md\:flex-wrap-reverse { - flex-wrap: wrap-reverse !important; + .md\:gap-y-72 { + row-gap: 18rem !important; } - .md\:flex-nowrap { - flex-wrap: nowrap !important; + .md\:gap-y-80 { + row-gap: 20rem !important; } - .md\:place-items-start { - place-items: start !important; + .md\:gap-y-96 { + row-gap: 24rem !important; } - .md\:place-items-end { - place-items: end !important; + .md\:gap-y-px { + row-gap: 1px !important; } - .md\:place-items-center { - place-items: center !important; + .md\:gap-y-0\.5 { + row-gap: 0.125rem !important; } - .md\:place-items-stretch { - place-items: stretch !important; + .md\:gap-y-1\.5 { + row-gap: 0.375rem !important; } - .md\:place-content-center { - place-content: center !important; + .md\:gap-y-2\.5 { + row-gap: 0.625rem !important; } - .md\:place-content-start { - place-content: start !important; + .md\:gap-y-3\.5 { + row-gap: 0.875rem !important; } - .md\:place-content-end { - place-content: end !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\:place-content-between { - place-content: space-between !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\:place-content-around { - place-content: space-around !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\:place-content-evenly { - place-content: space-evenly !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\:place-content-stretch { - place-content: stretch !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\:place-self-auto { - place-self: auto !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\:place-self-start { - place-self: start !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\:place-self-end { - place-self: end !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\:place-self-center { - place-self: center !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\:place-self-stretch { - place-self: stretch !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\:items-start { - align-items: flex-start !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\:items-end { - align-items: flex-end !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\:items-center { - align-items: center !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\:items-baseline { - align-items: baseline !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\:items-stretch { - align-items: stretch !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\:content-center { - align-content: center !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\:content-start { - align-content: flex-start !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\:content-end { - align-content: flex-end !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\:content-between { - align-content: space-between !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\:content-around { - align-content: space-around !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\:content-evenly { - align-content: space-evenly !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\:self-auto { - align-self: auto !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\:self-start { - align-self: flex-start !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\:self-end { - align-self: flex-end !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\:self-center { - align-self: center !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\:self-stretch { - align-self: stretch !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\:justify-items-start { - justify-items: start !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\:justify-items-end { - justify-items: end !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\:justify-items-center { - justify-items: center !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\:justify-items-stretch { - justify-items: stretch !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\:justify-start { - justify-content: flex-start !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\:justify-end { - justify-content: flex-end !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\:justify-center { - justify-content: center !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\:justify-between { - justify-content: space-between !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\:justify-around { - justify-content: space-around !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\:justify-evenly { - justify-content: space-evenly !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\:justify-self-auto { - justify-self: auto !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\:justify-self-start { - justify-self: start !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\:justify-self-end { - justify-self: end !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\:justify-self-center { - justify-self: center !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\:justify-self-stretch { - justify-self: stretch !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\:flex-1 { - flex: 1 1 0% !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\:flex-auto { - flex: 1 1 auto !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\:flex-initial { - flex: 0 1 auto !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\:flex-none { - flex: none !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\:flex-grow-0 { - flex-grow: 0 !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\:flex-grow { - flex-grow: 1 !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\:flex-shrink-0 { - flex-shrink: 0 !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\:flex-shrink { - flex-shrink: 1 !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\:order-1 { - order: 1 !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\:order-2 { - order: 2 !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\:order-3 { - order: 3 !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\:order-4 { - order: 4 !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\:order-5 { - order: 5 !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\:order-6 { - order: 6 !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\:order-7 { - order: 7 !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\:order-8 { - order: 8 !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\:order-9 { - order: 9 !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\:order-10 { - order: 10 !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\:order-11 { - order: 11 !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\:order-12 { - order: 12 !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\:order-first { - order: -9999 !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\:order-last { - order: 9999 !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\:order-none { - order: 0 !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\:float-right { - float: right !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\:float-left { - float: left !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\:float-none { - float: none !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\:clear-left { - clear: left !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\:clear-right { - clear: right !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\:clear-both { - clear: both !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\:clear-none { - clear: none !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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !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\:font-thin { - font-weight: 100 !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\:font-extralight { - font-weight: 200 !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\:font-light { - font-weight: 300 !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\:font-normal { - font-weight: 400 !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\:font-medium { - font-weight: 500 !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\:font-semibold { - font-weight: 600 !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\:font-bold { - font-weight: 700 !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\:font-extrabold { - font-weight: 800 !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\:font-black { - font-weight: 900 !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\:h-0 { - height: 0px !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\:h-1 { - height: 0.25rem !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\:h-2 { - height: 0.5rem !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\:h-3 { - height: 0.75rem !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\:h-4 { - height: 1rem !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\:h-5 { - height: 1.25rem !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\:h-6 { - height: 1.5rem !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\:h-7 { - height: 1.75rem !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\:h-8 { - height: 2rem !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\:h-9 { - height: 2.25rem !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\:h-10 { - height: 2.5rem !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\:h-11 { - height: 2.75rem !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\:h-12 { - height: 3rem !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\:h-14 { - height: 3.5rem !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\:h-16 { - height: 4rem !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\:h-20 { - height: 5rem !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\:h-24 { - height: 6rem !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\:h-28 { - height: 7rem !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\:h-32 { - height: 8rem !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\:h-36 { - height: 9rem !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\:h-40 { - height: 10rem !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\:h-44 { - height: 11rem !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\:h-48 { - height: 12rem !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\:h-52 { - height: 13rem !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\:h-56 { - height: 14rem !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\:h-60 { - height: 15rem !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\:h-64 { - height: 16rem !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\:h-72 { - height: 18rem !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\:h-80 { - height: 20rem !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\:h-96 { - height: 24rem !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\:h-auto { - height: auto !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\:h-px { - height: 1px !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\:h-0\.5 { - height: 0.125rem !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\:h-1\.5 { - height: 0.375rem !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\:h-2\.5 { - height: 0.625rem !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\:h-3\.5 { - height: 0.875rem !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\:h-1\/2 { - height: 50% !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\:h-1\/3 { - height: 33.333333% !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\:h-2\/3 { - height: 66.666667% !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\:h-1\/4 { - height: 25% !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\:h-2\/4 { - height: 50% !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\:h-3\/4 { - height: 75% !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\:h-1\/5 { - height: 20% !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\:h-2\/5 { - height: 40% !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\:h-3\/5 { - height: 60% !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\:h-4\/5 { - height: 80% !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\:h-1\/6 { - height: 16.666667% !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\:h-2\/6 { - height: 33.333333% !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\:h-3\/6 { - height: 50% !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\:h-4\/6 { - height: 66.666667% !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\:h-5\/6 { - height: 83.333333% !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\:h-full { - height: 100% !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\:h-screen { - height: 100vh !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\:text-xs { - font-size: 0.75rem !important; - line-height: 1rem !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\:text-sm { - font-size: 0.875rem !important; - line-height: 1.25rem !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\:text-base { - font-size: 1rem !important; - line-height: 1.5rem !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\:text-lg { - font-size: 1.125rem !important; - line-height: 1.75rem !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\:text-xl { - font-size: 1.25rem !important; - line-height: 1.75rem !important; + .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; } - .md\:text-2xl { - font-size: 1.5rem !important; - line-height: 2rem !important; + .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; } - .md\:text-3xl { - font-size: 1.875rem !important; - line-height: 2.25rem !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\:text-4xl { - font-size: 2.25rem !important; - line-height: 2.5rem !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\:text-5xl { - font-size: 3rem !important; - line-height: 1 !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\:text-6xl { - font-size: 3.75rem !important; - line-height: 1 !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\:text-7xl { - font-size: 4.5rem !important; - line-height: 1 !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\:text-8xl { - font-size: 6rem !important; - line-height: 1 !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\:text-9xl { - font-size: 8rem !important; - line-height: 1 !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\:leading-3 { - line-height: .75rem !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\:leading-4 { - line-height: 1rem !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\:leading-5 { - line-height: 1.25rem !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\:leading-6 { - line-height: 1.5rem !important; + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; } - .md\:leading-7 { - line-height: 1.75rem !important; + .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; } - .md\:leading-8 { - line-height: 2rem !important; + .md\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; } - .md\:leading-9 { - line-height: 2.25rem !important; + .md\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; } - .md\:leading-10 { - line-height: 2.5rem !important; + .md\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; } - .md\:leading-none { - line-height: 1 !important; + .md\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; } - .md\:leading-tight { - line-height: 1.25 !important; + .md\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; } - .md\:leading-snug { - line-height: 1.375 !important; + .md\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; } - .md\:leading-normal { - line-height: 1.5 !important; + .md\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; } - .md\:leading-relaxed { - line-height: 1.625 !important; + .md\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; } - .md\:leading-loose { - line-height: 2 !important; + .md\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; } - .md\:list-inside { - list-style-position: inside !important; + .md\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; } - .md\:list-outside { - list-style-position: outside !important; + .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; } - .md\:list-none { - list-style-type: none !important; + .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; } - .md\:list-disc { - list-style-type: disc !important; + .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; } - .md\:list-decimal { - list-style-type: decimal !important; + .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; } - .md\:m-0 { - margin: 0px !important; + .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; } - .md\:m-1 { - margin: 0.25rem !important; + .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; } - .md\:m-2 { - margin: 0.5rem !important; + .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; } - .md\:m-3 { - margin: 0.75rem !important; + .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; } - .md\:m-4 { - margin: 1rem !important; + .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; } - .md\:m-5 { - margin: 1.25rem !important; + .md\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; } - .md\:m-6 { - margin: 1.5rem !important; + .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; } - .md\:m-7 { - margin: 1.75rem !important; + .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; } - .md\:m-8 { - margin: 2rem !important; + .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; } - .md\:m-9 { - margin: 2.25rem !important; + .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; } - .md\:m-10 { - margin: 2.5rem !important; + .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; } - .md\:m-11 { - margin: 2.75rem !important; + .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; } - .md\:m-12 { - margin: 3rem !important; + .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; } - .md\:m-14 { - margin: 3.5rem !important; + .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; } - .md\:m-16 { - margin: 4rem !important; + .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; } - .md\:m-20 { - margin: 5rem !important; + .md\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; } - .md\:m-24 { - margin: 6rem !important; + .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; } - .md\:m-28 { - margin: 7rem !important; + .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; } - .md\:m-32 { - margin: 8rem !important; + .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; } - .md\:m-36 { - margin: 9rem !important; + .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; } - .md\:m-40 { - margin: 10rem !important; + .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; } - .md\:m-44 { - margin: 11rem !important; + .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; } - .md\:m-48 { - margin: 12rem !important; + .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; } - .md\:m-52 { - margin: 13rem !important; + .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; } - .md\:m-56 { - margin: 14rem !important; + .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; } - .md\:m-60 { - margin: 15rem !important; + .md\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; } - .md\:m-64 { - margin: 16rem !important; + .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; } - .md\:m-72 { - margin: 18rem !important; + .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; } - .md\:m-80 { - margin: 20rem !important; + .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; } - .md\:m-96 { - margin: 24rem !important; + .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; } - .md\:m-auto { - margin: auto !important; + .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; } - .md\:m-px { - margin: 1px !important; + .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; } - .md\:m-0\.5 { - margin: 0.125rem !important; + .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; } - .md\:m-1\.5 { - margin: 0.375rem !important; + .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; } - .md\:m-2\.5 { - margin: 0.625rem !important; + .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; } - .md\:m-3\.5 { - margin: 0.875rem !important; + .md\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; } - .md\:-m-0 { - margin: 0px !important; + .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; } - .md\:-m-1 { - margin: -0.25rem !important; + .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; } - .md\:-m-2 { - margin: -0.5rem !important; + .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; } - .md\:-m-3 { - margin: -0.75rem !important; + .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; } - .md\:-m-4 { - margin: -1rem !important; + .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; } - .md\:-m-5 { - margin: -1.25rem !important; + .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; } - .md\:-m-6 { - margin: -1.5rem !important; + .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; } - .md\:-m-7 { - margin: -1.75rem !important; + .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; } - .md\:-m-8 { - margin: -2rem !important; + .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; } - .md\:-m-9 { - margin: -2.25rem !important; + .md\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; } - .md\:-m-10 { - margin: -2.5rem !important; + .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; } - .md\:-m-11 { - margin: -2.75rem !important; + .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; } - .md\:-m-12 { - margin: -3rem !important; + .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; } - .md\:-m-14 { - margin: -3.5rem !important; + .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; } - .md\:-m-16 { - margin: -4rem !important; + .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; } - .md\:-m-20 { - margin: -5rem !important; + .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; } - .md\:-m-24 { - margin: -6rem !important; + .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; } - .md\:-m-28 { - margin: -7rem !important; + .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; } - .md\:-m-32 { - margin: -8rem !important; + .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; } - .md\:-m-36 { - margin: -9rem !important; + .md\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; } - .md\:-m-40 { - margin: -10rem !important; + .md\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; } - .md\:-m-44 { - margin: -11rem !important; + .md\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; } - .md\:-m-48 { - margin: -12rem !important; + .md\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; } - .md\:-m-52 { - margin: -13rem !important; + .md\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; } - .md\:-m-56 { - margin: -14rem !important; + .md\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; } - .md\:-m-60 { - margin: -15rem !important; + .md\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; } - .md\:-m-64 { - margin: -16rem !important; + .md\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; } - .md\:-m-72 { - margin: -18rem !important; + .md\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; } - .md\:-m-80 { - margin: -20rem !important; + .md\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; } - .md\:-m-96 { - margin: -24rem !important; + .md\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; } - .md\:-m-px { - margin: -1px !important; + .md\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; } - .md\:-m-0\.5 { - margin: -0.125rem !important; + .md\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; } - .md\:-m-1\.5 { - margin: -0.375rem !important; + .md\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; } - .md\:-m-2\.5 { - margin: -0.625rem !important; + .md\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; } - .md\:-m-3\.5 { - margin: -0.875rem !important; + .md\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; } - .md\:my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; + .md\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; } - .md\:mx-0 { - margin-left: 0px !important; - margin-right: 0px !important; + .md\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; } - .md\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; + .md\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; } - .md\:mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; + .md\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; } - .md\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; + .md\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; } - .md\:mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; + .md\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; } - .md\:my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; + .md\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; } - .md\:mx-3 { - margin-left: 0.75rem !important; - margin-right: 0.75rem !important; + .md\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; } - .md\:my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; + .md\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; } - .md\:mx-4 { - margin-left: 1rem !important; - margin-right: 1rem !important; + .md\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; } - .md\:my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !important; + .md\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; } - .md\:mx-5 { - margin-left: 1.25rem !important; - margin-right: 1.25rem !important; + .md\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; } - .md\:my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; + .md\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; } - .md\:mx-6 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; + .md\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; } - .md\:my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !important; + .md\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; } - .md\:mx-7 { - margin-left: 1.75rem !important; - margin-right: 1.75rem !important; + .md\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; } - .md\:my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; + .md\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; } - .md\:mx-8 { - margin-left: 2rem !important; - margin-right: 2rem !important; + .md\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; } - .md\:my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !important; + .md\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; } - .md\:mx-9 { - margin-left: 2.25rem !important; - margin-right: 2.25rem !important; + .md\:place-self-auto { + place-self: auto !important; } - .md\:my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; + .md\:place-self-start { + place-self: start !important; } - .md\:mx-10 { - margin-left: 2.5rem !important; - margin-right: 2.5rem !important; + .md\:place-self-end { + place-self: end !important; } - .md\:my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !important; + .md\:place-self-center { + place-self: center !important; } - .md\:mx-11 { - margin-left: 2.75rem !important; - margin-right: 2.75rem !important; + .md\:place-self-stretch { + place-self: stretch !important; } - .md\:my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; + .md\:self-auto { + align-self: auto !important; } - .md\:mx-12 { - margin-left: 3rem !important; - margin-right: 3rem !important; + .md\:self-start { + align-self: flex-start !important; } - .md\:my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !important; + .md\:self-end { + align-self: flex-end !important; } - .md\:mx-14 { - margin-left: 3.5rem !important; - margin-right: 3.5rem !important; + .md\:self-center { + align-self: center !important; } - .md\:my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; + .md\:self-stretch { + align-self: stretch !important; } - .md\:mx-16 { - margin-left: 4rem !important; - margin-right: 4rem !important; + .md\:justify-self-auto { + justify-self: auto !important; } - .md\:my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; + .md\:justify-self-start { + justify-self: start !important; } - .md\:mx-20 { - margin-left: 5rem !important; - margin-right: 5rem !important; + .md\:justify-self-end { + justify-self: end !important; } - .md\:my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !important; + .md\:justify-self-center { + justify-self: center !important; } - .md\:mx-24 { - margin-left: 6rem !important; - margin-right: 6rem !important; + .md\:justify-self-stretch { + justify-self: stretch !important; } - .md\:my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !important; + .md\:overflow-auto { + overflow: auto !important; } - .md\:mx-28 { - margin-left: 7rem !important; - margin-right: 7rem !important; + .md\:overflow-hidden { + overflow: hidden !important; } - .md\:my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !important; + .md\:overflow-visible { + overflow: visible !important; } - .md\:mx-32 { - margin-left: 8rem !important; - margin-right: 8rem !important; + .md\:overflow-scroll { + overflow: scroll !important; } - .md\:my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !important; + .md\:overflow-x-auto { + overflow-x: auto !important; } - .md\:mx-36 { - margin-left: 9rem !important; - margin-right: 9rem !important; + .md\:overflow-y-auto { + overflow-y: auto !important; } - .md\:my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !important; + .md\:overflow-x-hidden { + overflow-x: hidden !important; } - .md\:mx-40 { - margin-left: 10rem !important; - margin-right: 10rem !important; + .md\:overflow-y-hidden { + overflow-y: hidden !important; } - .md\:my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !important; + .md\:overflow-x-visible { + overflow-x: visible !important; } - .md\:mx-44 { - margin-left: 11rem !important; - margin-right: 11rem !important; + .md\:overflow-y-visible { + overflow-y: visible !important; } - .md\:my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !important; + .md\:overflow-x-scroll { + overflow-x: scroll !important; } - .md\:mx-48 { - margin-left: 12rem !important; - margin-right: 12rem !important; + .md\:overflow-y-scroll { + overflow-y: scroll !important; } - .md\:my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; + .md\:overscroll-auto { + overscroll-behavior: auto !important; } - .md\:mx-52 { - margin-left: 13rem !important; - margin-right: 13rem !important; + .md\:overscroll-contain { + overscroll-behavior: contain !important; } - .md\:my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !important; + .md\:overscroll-none { + overscroll-behavior: none !important; } - .md\:mx-56 { - margin-left: 14rem !important; - margin-right: 14rem !important; + .md\:overscroll-y-auto { + overscroll-behavior-y: auto !important; } - .md\:my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !important; + .md\:overscroll-y-contain { + overscroll-behavior-y: contain !important; } - .md\:mx-60 { - margin-left: 15rem !important; - margin-right: 15rem !important; + .md\:overscroll-y-none { + overscroll-behavior-y: none !important; } - .md\:my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !important; + .md\:overscroll-x-auto { + overscroll-behavior-x: auto !important; } - .md\:mx-64 { - margin-left: 16rem !important; - margin-right: 16rem !important; + .md\:overscroll-x-contain { + overscroll-behavior-x: contain !important; } - .md\:my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !important; + .md\:overscroll-x-none { + overscroll-behavior-x: none !important; } - .md\:mx-72 { - margin-left: 18rem !important; - margin-right: 18rem !important; + .md\:truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; } - .md\:my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !important; + .md\:overflow-ellipsis { + text-overflow: ellipsis !important; } - .md\:mx-80 { - margin-left: 20rem !important; - margin-right: 20rem !important; + .md\:overflow-clip { + text-overflow: clip !important; } - .md\:my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; + .md\:whitespace-normal { + white-space: normal !important; } - .md\:mx-96 { - margin-left: 24rem !important; - margin-right: 24rem !important; + .md\:whitespace-nowrap { + white-space: nowrap !important; } - .md\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; + .md\:whitespace-pre { + white-space: pre !important; } - .md\:mx-auto { - margin-left: auto !important; - margin-right: auto !important; + .md\:whitespace-pre-line { + white-space: pre-line !important; } - .md\:my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; + .md\:whitespace-pre-wrap { + white-space: pre-wrap !important; } - .md\:mx-px { - margin-left: 1px !important; - margin-right: 1px !important; + .md\:break-normal { + overflow-wrap: normal !important; + word-break: normal !important; } - .md\:my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; + .md\:break-words { + overflow-wrap: break-word !important; } - .md\:mx-0\.5 { - margin-left: 0.125rem !important; - margin-right: 0.125rem !important; + .md\:break-all { + word-break: break-all !important; } - .md\:my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; + .md\:rounded-none { + border-radius: 0px !important; } - .md\:mx-1\.5 { - margin-left: 0.375rem !important; - margin-right: 0.375rem !important; + .md\:rounded-sm { + border-radius: 0.125rem !important; } - .md\:my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; + .md\:rounded { + border-radius: 0.25rem !important; } - .md\:mx-2\.5 { - margin-left: 0.625rem !important; - margin-right: 0.625rem !important; + .md\:rounded-md { + border-radius: 0.375rem !important; } - .md\:my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; + .md\:rounded-lg { + border-radius: 0.5rem !important; } - .md\:mx-3\.5 { - margin-left: 0.875rem !important; - margin-right: 0.875rem !important; + .md\:rounded-xl { + border-radius: 0.75rem !important; } - .md\:-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; + .md\:rounded-2xl { + border-radius: 1rem !important; } - .md\:-mx-0 { - margin-left: 0px !important; - margin-right: 0px !important; + .md\:rounded-3xl { + border-radius: 1.5rem !important; } - .md\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; + .md\:rounded-full { + border-radius: 9999px !important; } - .md\:-mx-1 { - margin-left: -0.25rem !important; - margin-right: -0.25rem !important; + .md\:rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; } - .md\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; + .md\:rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; } - .md\:-mx-2 { - margin-left: -0.5rem !important; - margin-right: -0.5rem !important; + .md\:rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; } - .md\:-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; + .md\:rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; } - .md\:-mx-3 { - margin-left: -0.75rem !important; - margin-right: -0.75rem !important; + .md\:rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; } - .md\:-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; + .md\:rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; } - .md\:-mx-4 { - margin-left: -1rem !important; - margin-right: -1rem !important; + .md\:rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; } - .md\:-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; + .md\:rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; } - .md\:-mx-5 { - margin-left: -1.25rem !important; - margin-right: -1.25rem !important; + .md\:rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; } - .md\:-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; + .md\:rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; } - .md\:-mx-6 { - margin-left: -1.5rem !important; - margin-right: -1.5rem !important; + .md\:rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; } - .md\:-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; + .md\:rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; } - .md\:-mx-7 { - margin-left: -1.75rem !important; - margin-right: -1.75rem !important; + .md\:rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; } - .md\:-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; + .md\:rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; } - .md\:-mx-8 { - margin-left: -2rem !important; - margin-right: -2rem !important; + .md\:rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; } - .md\:-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; + .md\:rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; } - .md\:-mx-9 { - margin-left: -2.25rem !important; - margin-right: -2.25rem !important; + .md\:rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; } - .md\:-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; + .md\:rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; } - .md\:-mx-10 { - margin-left: -2.5rem !important; - margin-right: -2.5rem !important; + .md\:rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; } - .md\:-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; + .md\:rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } - .md\:-mx-11 { - margin-left: -2.75rem !important; - margin-right: -2.75rem !important; + .md\:rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } - .md\:-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; + .md\:rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } - .md\:-mx-12 { - margin-left: -3rem !important; - margin-right: -3rem !important; + .md\:rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } - .md\:-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; + .md\:rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } - .md\:-mx-14 { - margin-left: -3.5rem !important; - margin-right: -3.5rem !important; + .md\:rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } - .md\:-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; + .md\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } - .md\:-mx-16 { - margin-left: -4rem !important; - margin-right: -4rem !important; + .md\:rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } - .md\:-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; + .md\:rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; } - .md\:-mx-20 { - margin-left: -5rem !important; - margin-right: -5rem !important; + .md\:rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } - .md\:-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; + .md\:rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } - .md\:-mx-24 { - margin-left: -6rem !important; - margin-right: -6rem !important; + .md\:rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } - .md\:-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; + .md\:rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } - .md\:-mx-28 { - margin-left: -7rem !important; - margin-right: -7rem !important; + .md\:rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } - .md\:-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; + .md\:rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } - .md\:-mx-32 { - margin-left: -8rem !important; - margin-right: -8rem !important; + .md\:rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } - .md\:-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; + .md\:rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } - .md\:-mx-36 { - margin-left: -9rem !important; - margin-right: -9rem !important; + .md\:rounded-tl-none { + border-top-left-radius: 0px !important; } - .md\:-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; + .md\:rounded-tl-sm { + border-top-left-radius: 0.125rem !important; } - .md\:-mx-40 { - margin-left: -10rem !important; - margin-right: -10rem !important; + .md\:rounded-tl { + border-top-left-radius: 0.25rem !important; } - .md\:-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; + .md\:rounded-tl-md { + border-top-left-radius: 0.375rem !important; } - .md\:-mx-44 { - margin-left: -11rem !important; - margin-right: -11rem !important; + .md\:rounded-tl-lg { + border-top-left-radius: 0.5rem !important; } - .md\:-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; + .md\:rounded-tl-xl { + border-top-left-radius: 0.75rem !important; } - .md\:-mx-48 { - margin-left: -12rem !important; - margin-right: -12rem !important; + .md\:rounded-tl-2xl { + border-top-left-radius: 1rem !important; } - .md\:-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; + .md\:rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; } - .md\:-mx-52 { - margin-left: -13rem !important; - margin-right: -13rem !important; + .md\:rounded-tl-full { + border-top-left-radius: 9999px !important; } - .md\:-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; + .md\:rounded-tr-none { + border-top-right-radius: 0px !important; } - .md\:-mx-56 { - margin-left: -14rem !important; - margin-right: -14rem !important; + .md\:rounded-tr-sm { + border-top-right-radius: 0.125rem !important; } - .md\:-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; + .md\:rounded-tr { + border-top-right-radius: 0.25rem !important; } - .md\:-mx-60 { - margin-left: -15rem !important; - margin-right: -15rem !important; + .md\:rounded-tr-md { + border-top-right-radius: 0.375rem !important; } - .md\:-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; + .md\:rounded-tr-lg { + border-top-right-radius: 0.5rem !important; } - .md\:-mx-64 { - margin-left: -16rem !important; - margin-right: -16rem !important; + .md\:rounded-tr-xl { + border-top-right-radius: 0.75rem !important; } - .md\:-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; + .md\:rounded-tr-2xl { + border-top-right-radius: 1rem !important; } - .md\:-mx-72 { - margin-left: -18rem !important; - margin-right: -18rem !important; + .md\:rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; } - .md\:-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; + .md\:rounded-tr-full { + border-top-right-radius: 9999px !important; } - .md\:-mx-80 { - margin-left: -20rem !important; - margin-right: -20rem !important; + .md\:rounded-br-none { + border-bottom-right-radius: 0px !important; } - .md\:-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; + .md\:rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; } - .md\:-mx-96 { - margin-left: -24rem !important; - margin-right: -24rem !important; + .md\:rounded-br { + border-bottom-right-radius: 0.25rem !important; } - .md\:-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; + .md\:rounded-br-md { + border-bottom-right-radius: 0.375rem !important; } - .md\:-mx-px { - margin-left: -1px !important; - margin-right: -1px !important; + .md\:rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; } - .md\:-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; + .md\:rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; } - .md\:-mx-0\.5 { - margin-left: -0.125rem !important; - margin-right: -0.125rem !important; + .md\:rounded-br-2xl { + border-bottom-right-radius: 1rem !important; } - .md\:-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; + .md\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; } - .md\:-mx-1\.5 { - margin-left: -0.375rem !important; - margin-right: -0.375rem !important; + .md\:rounded-br-full { + border-bottom-right-radius: 9999px !important; } - .md\:-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; + .md\:rounded-bl-none { + border-bottom-left-radius: 0px !important; } - .md\:-mx-2\.5 { - margin-left: -0.625rem !important; - margin-right: -0.625rem !important; + .md\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; } - .md\:-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; + .md\:rounded-bl { + border-bottom-left-radius: 0.25rem !important; } - .md\:-mx-3\.5 { - margin-left: -0.875rem !important; - margin-right: -0.875rem !important; + .md\:rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; } - .md\:mt-0 { - margin-top: 0px !important; + .md\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; } - .md\:mr-0 { - margin-right: 0px !important; + .md\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; } - .md\:mb-0 { - margin-bottom: 0px !important; + .md\:rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; } - .md\:ml-0 { - margin-left: 0px !important; + .md\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; } - .md\:mt-1 { - margin-top: 0.25rem !important; + .md\:rounded-bl-full { + border-bottom-left-radius: 9999px !important; } - .md\:mr-1 { - margin-right: 0.25rem !important; + .md\:border-0 { + border-width: 0px !important; } - .md\:mb-1 { - margin-bottom: 0.25rem !important; + .md\:border-2 { + border-width: 2px !important; } - .md\:ml-1 { - margin-left: 0.25rem !important; + .md\:border-4 { + border-width: 4px !important; } - .md\:mt-2 { - margin-top: 0.5rem !important; + .md\:border-8 { + border-width: 8px !important; } - .md\:mr-2 { - margin-right: 0.5rem !important; + .md\:border { + border-width: 1px !important; } - .md\:mb-2 { - margin-bottom: 0.5rem !important; + .md\:border-t-0 { + border-top-width: 0px !important; } - .md\:ml-2 { - margin-left: 0.5rem !important; + .md\:border-t-2 { + border-top-width: 2px !important; } - .md\:mt-3 { - margin-top: 0.75rem !important; + .md\:border-t-4 { + border-top-width: 4px !important; } - .md\:mr-3 { - margin-right: 0.75rem !important; + .md\:border-t-8 { + border-top-width: 8px !important; } - .md\:mb-3 { - margin-bottom: 0.75rem !important; + .md\:border-t { + border-top-width: 1px !important; } - .md\:ml-3 { - margin-left: 0.75rem !important; + .md\:border-r-0 { + border-right-width: 0px !important; } - .md\:mt-4 { - margin-top: 1rem !important; + .md\:border-r-2 { + border-right-width: 2px !important; } - .md\:mr-4 { - margin-right: 1rem !important; + .md\:border-r-4 { + border-right-width: 4px !important; } - .md\:mb-4 { - margin-bottom: 1rem !important; + .md\:border-r-8 { + border-right-width: 8px !important; } - .md\:ml-4 { - margin-left: 1rem !important; + .md\:border-r { + border-right-width: 1px !important; } - .md\:mt-5 { - margin-top: 1.25rem !important; + .md\:border-b-0 { + border-bottom-width: 0px !important; } - .md\:mr-5 { - margin-right: 1.25rem !important; + .md\:border-b-2 { + border-bottom-width: 2px !important; } - .md\:mb-5 { - margin-bottom: 1.25rem !important; + .md\:border-b-4 { + border-bottom-width: 4px !important; } - .md\:ml-5 { - margin-left: 1.25rem !important; + .md\:border-b-8 { + border-bottom-width: 8px !important; } - .md\:mt-6 { - margin-top: 1.5rem !important; + .md\:border-b { + border-bottom-width: 1px !important; } - .md\:mr-6 { - margin-right: 1.5rem !important; + .md\:border-l-0 { + border-left-width: 0px !important; } - .md\:mb-6 { - margin-bottom: 1.5rem !important; + .md\:border-l-2 { + border-left-width: 2px !important; } - .md\:ml-6 { - margin-left: 1.5rem !important; + .md\:border-l-4 { + border-left-width: 4px !important; } - .md\:mt-7 { - margin-top: 1.75rem !important; + .md\:border-l-8 { + border-left-width: 8px !important; } - .md\:mr-7 { - margin-right: 1.75rem !important; + .md\:border-l { + border-left-width: 1px !important; } - .md\:mb-7 { - margin-bottom: 1.75rem !important; + .md\:border-solid { + border-style: solid !important; } - .md\:ml-7 { - margin-left: 1.75rem !important; + .md\:border-dashed { + border-style: dashed !important; } - .md\:mt-8 { - margin-top: 2rem !important; + .md\:border-dotted { + border-style: dotted !important; } - .md\:mr-8 { - margin-right: 2rem !important; + .md\:border-double { + border-style: double !important; } - .md\:mb-8 { - margin-bottom: 2rem !important; + .md\:border-none { + border-style: none !important; } - .md\:ml-8 { - margin-left: 2rem !important; + .md\:border-transparent { + border-color: transparent !important; } - .md\:mt-9 { - margin-top: 2.25rem !important; + .md\:border-current { + border-color: currentColor !important; } - .md\:mr-9 { - margin-right: 2.25rem !important; + .md\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .md\:mb-9 { - margin-bottom: 2.25rem !important; + .md\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .md\:ml-9 { - margin-left: 2.25rem !important; + .md\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .md\:mt-10 { - margin-top: 2.5rem !important; + .md\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .md\:mr-10 { - margin-right: 2.5rem !important; + .md\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .md\:mb-10 { - margin-bottom: 2.5rem !important; + .md\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .md\:ml-10 { - margin-left: 2.5rem !important; + .md\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .md\:mt-11 { - margin-top: 2.75rem !important; + .md\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .md\:mr-11 { - margin-right: 2.75rem !important; + .md\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .md\:mb-11 { - margin-bottom: 2.75rem !important; + .md\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .md\:ml-11 { - margin-left: 2.75rem !important; + .md\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .md\:mt-12 { - margin-top: 3rem !important; + .md\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .md\:mr-12 { - margin-right: 3rem !important; + .md\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .md\:mb-12 { - margin-bottom: 3rem !important; + .md\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .md\:ml-12 { - margin-left: 3rem !important; + .md\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .md\:mt-14 { - margin-top: 3.5rem !important; + .md\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .md\:mr-14 { - margin-right: 3.5rem !important; + .md\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .md\:mb-14 { - margin-bottom: 3.5rem !important; + .md\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .md\:ml-14 { - margin-left: 3.5rem !important; + .md\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .md\:mt-16 { - margin-top: 4rem !important; + .md\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .md\:mr-16 { - margin-right: 4rem !important; + .md\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .md\:mb-16 { - margin-bottom: 4rem !important; + .md\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .md\:ml-16 { - margin-left: 4rem !important; + .md\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .md\:mt-20 { - margin-top: 5rem !important; + .md\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .md\:mr-20 { - margin-right: 5rem !important; + .md\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .md\:mb-20 { - margin-bottom: 5rem !important; + .md\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .md\:ml-20 { - margin-left: 5rem !important; + .md\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .md\:mt-24 { - margin-top: 6rem !important; + .md\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .md\:mr-24 { - margin-right: 6rem !important; + .md\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .md\:mb-24 { - margin-bottom: 6rem !important; + .md\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .md\:ml-24 { - margin-left: 6rem !important; + .md\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .md\:mt-28 { - margin-top: 7rem !important; + .md\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .md\:mr-28 { - margin-right: 7rem !important; + .md\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .md\:mb-28 { - margin-bottom: 7rem !important; + .md\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .md\:ml-28 { - margin-left: 7rem !important; + .md\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .md\:mt-32 { - margin-top: 8rem !important; + .md\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .md\:mr-32 { - margin-right: 8rem !important; + .md\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .md\:mb-32 { - margin-bottom: 8rem !important; + .md\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .md\:ml-32 { - margin-left: 8rem !important; + .md\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .md\:mt-36 { - margin-top: 9rem !important; + .md\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .md\:mr-36 { - margin-right: 9rem !important; + .md\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .md\:mb-36 { - margin-bottom: 9rem !important; + .md\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .md\:ml-36 { - margin-left: 9rem !important; + .md\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .md\:mt-40 { - margin-top: 10rem !important; + .md\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .md\:mr-40 { - margin-right: 10rem !important; + .md\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .md\:mb-40 { - margin-bottom: 10rem !important; + .md\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .md\:ml-40 { - margin-left: 10rem !important; + .md\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .md\:mt-44 { - margin-top: 11rem !important; + .md\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .md\:mr-44 { - margin-right: 11rem !important; + .md\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .md\:mb-44 { - margin-bottom: 11rem !important; + .md\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .md\:ml-44 { - margin-left: 11rem !important; + .md\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .md\:mt-48 { - margin-top: 12rem !important; + .md\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .md\:mr-48 { - margin-right: 12rem !important; + .md\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .md\:mb-48 { - margin-bottom: 12rem !important; + .md\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .md\:ml-48 { - margin-left: 12rem !important; + .md\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .md\:mt-52 { - margin-top: 13rem !important; + .md\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .md\:mr-52 { - margin-right: 13rem !important; + .md\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .md\:mb-52 { - margin-bottom: 13rem !important; + .md\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .md\:ml-52 { - margin-left: 13rem !important; + .md\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .md\:mt-56 { - margin-top: 14rem !important; + .md\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .md\:mr-56 { - margin-right: 14rem !important; + .md\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .md\:mb-56 { - margin-bottom: 14rem !important; + .md\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .md\:ml-56 { - margin-left: 14rem !important; + .md\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .md\:mt-60 { - margin-top: 15rem !important; + .md\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .md\:mr-60 { - margin-right: 15rem !important; + .md\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .md\:mb-60 { - margin-bottom: 15rem !important; + .md\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .md\:ml-60 { - margin-left: 15rem !important; + .md\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .md\:mt-64 { - margin-top: 16rem !important; + .md\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .md\:mr-64 { - margin-right: 16rem !important; + .md\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .md\:mb-64 { - margin-bottom: 16rem !important; + .md\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .md\:ml-64 { - margin-left: 16rem !important; + .md\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .md\:mt-72 { - margin-top: 18rem !important; + .md\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .md\:mr-72 { - margin-right: 18rem !important; + .md\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .md\:mb-72 { - margin-bottom: 18rem !important; + .md\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .md\:ml-72 { - margin-left: 18rem !important; + .md\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .md\:mt-80 { - margin-top: 20rem !important; + .md\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .md\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .md\:mr-80 { - margin-right: 20rem !important; + .md\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .md\:mb-80 { - margin-bottom: 20rem !important; + .md\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .md\:ml-80 { - margin-left: 20rem !important; + .md\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .md\:mt-96 { - margin-top: 24rem !important; + .md\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .md\:mr-96 { - margin-right: 24rem !important; + .md\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .md\:mb-96 { - margin-bottom: 24rem !important; + .group:hover .md\:group-hover\:border-transparent { + border-color: transparent !important; } - .md\:ml-96 { - margin-left: 24rem !important; + .group:hover .md\:group-hover\:border-current { + border-color: currentColor !important; } - .md\:mt-auto { - margin-top: auto !important; + .group:hover .md\:group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .md\:mr-auto { - margin-right: auto !important; + .group:hover .md\:group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .md\:mb-auto { - margin-bottom: auto !important; + .group:hover .md\:group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .md\:ml-auto { - margin-left: auto !important; + .group:hover .md\:group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .md\:mt-px { - margin-top: 1px !important; + .group:hover .md\:group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .md\:mr-px { - margin-right: 1px !important; + .group:hover .md\:group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .md\:mb-px { - margin-bottom: 1px !important; + .group:hover .md\:group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .md\:ml-px { - margin-left: 1px !important; + .group:hover .md\:group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .md\:mt-0\.5 { - margin-top: 0.125rem !important; + .group:hover .md\:group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .md\:mr-0\.5 { - margin-right: 0.125rem !important; + .group:hover .md\:group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .md\:mb-0\.5 { - margin-bottom: 0.125rem !important; + .group:hover .md\:group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .md\:ml-0\.5 { - margin-left: 0.125rem !important; + .group:hover .md\:group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .md\:mt-1\.5 { - margin-top: 0.375rem !important; + .group:hover .md\:group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .md\:mr-1\.5 { - margin-right: 0.375rem !important; + .group:hover .md\:group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .md\:mb-1\.5 { - margin-bottom: 0.375rem !important; + .group:hover .md\:group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .md\:ml-1\.5 { - margin-left: 0.375rem !important; + .group:hover .md\:group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .md\:mt-2\.5 { - margin-top: 0.625rem !important; + .group:hover .md\:group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .md\:mr-2\.5 { - margin-right: 0.625rem !important; + .group:hover .md\:group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .md\:mb-2\.5 { - margin-bottom: 0.625rem !important; + .group:hover .md\:group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .md\:ml-2\.5 { - margin-left: 0.625rem !important; + .group:hover .md\:group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .md\:mt-3\.5 { - margin-top: 0.875rem !important; + .group:hover .md\:group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .md\:mr-3\.5 { - margin-right: 0.875rem !important; + .group:hover .md\:group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .md\:mb-3\.5 { - margin-bottom: 0.875rem !important; + .group:hover .md\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .md\:ml-3\.5 { - margin-left: 0.875rem !important; + .group:hover .md\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .md\:-mt-0 { - margin-top: 0px !important; + .group:hover .md\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .md\:-mr-0 { - margin-right: 0px !important; + .group:hover .md\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .md\:-mb-0 { - margin-bottom: 0px !important; + .group:hover .md\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .md\:-ml-0 { - margin-left: 0px !important; + .group:hover .md\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .md\:-mt-1 { - margin-top: -0.25rem !important; + .group:hover .md\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .md\:-mr-1 { - margin-right: -0.25rem !important; + .group:hover .md\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .md\:-mb-1 { - margin-bottom: -0.25rem !important; + .group:hover .md\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .md\:-ml-1 { - margin-left: -0.25rem !important; + .group:hover .md\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .md\:-mt-2 { - margin-top: -0.5rem !important; + .group:hover .md\:group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .md\:-mr-2 { - margin-right: -0.5rem !important; + .group:hover .md\:group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .md\:-mb-2 { - margin-bottom: -0.5rem !important; + .group:hover .md\:group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .md\:-ml-2 { - margin-left: -0.5rem !important; + .group:hover .md\:group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .md\:-mt-3 { - margin-top: -0.75rem !important; + .group:hover .md\:group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .md\:-mr-3 { - margin-right: -0.75rem !important; + .group:hover .md\:group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .md\:-mb-3 { - margin-bottom: -0.75rem !important; + .group:hover .md\:group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .md\:-ml-3 { - margin-left: -0.75rem !important; + .group:hover .md\:group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .md\:-mt-4 { - margin-top: -1rem !important; + .group:hover .md\:group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .md\:-mr-4 { - margin-right: -1rem !important; + .group:hover .md\:group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .md\:-mb-4 { - margin-bottom: -1rem !important; + .group:hover .md\:group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .md\:-ml-4 { - margin-left: -1rem !important; + .group:hover .md\:group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .md\:-mt-5 { - margin-top: -1.25rem !important; + .group:hover .md\:group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .md\:-mr-5 { - margin-right: -1.25rem !important; + .group:hover .md\:group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .md\:-mb-5 { - margin-bottom: -1.25rem !important; + .group:hover .md\:group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .md\:-ml-5 { - margin-left: -1.25rem !important; + .group:hover .md\:group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .md\:-mt-6 { - margin-top: -1.5rem !important; + .group:hover .md\:group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .md\:-mr-6 { - margin-right: -1.5rem !important; + .group:hover .md\:group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .md\:-mb-6 { - margin-bottom: -1.5rem !important; + .group:hover .md\:group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .md\:-ml-6 { - margin-left: -1.5rem !important; + .group:hover .md\:group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .md\:-mt-7 { - margin-top: -1.75rem !important; + .group:hover .md\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .md\:-mr-7 { - margin-right: -1.75rem !important; + .group:hover .md\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .md\:-mb-7 { - margin-bottom: -1.75rem !important; + .group:hover .md\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .md\:-ml-7 { - margin-left: -1.75rem !important; + .group:hover .md\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .md\:-mt-8 { - margin-top: -2rem !important; + .group:hover .md\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .md\:-mr-8 { - margin-right: -2rem !important; + .group:hover .md\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .md\:-mb-8 { - margin-bottom: -2rem !important; + .group:hover .md\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .md\:-ml-8 { - margin-left: -2rem !important; + .group:hover .md\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .md\:-mt-9 { - margin-top: -2.25rem !important; + .group:hover .md\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .md\:-mr-9 { - margin-right: -2.25rem !important; + .group:hover .md\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .md\:-mb-9 { - margin-bottom: -2.25rem !important; + .group:hover .md\:group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .md\:-ml-9 { - margin-left: -2.25rem !important; + .group:hover .md\:group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .md\:-mt-10 { - margin-top: -2.5rem !important; + .group:hover .md\:group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .md\:-mr-10 { - margin-right: -2.5rem !important; + .group:hover .md\:group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .md\:-mb-10 { - margin-bottom: -2.5rem !important; + .group:hover .md\:group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .md\:-ml-10 { - margin-left: -2.5rem !important; + .group:hover .md\:group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .md\:-mt-11 { - margin-top: -2.75rem !important; + .group:hover .md\:group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .md\:-mr-11 { - margin-right: -2.75rem !important; + .group:hover .md\:group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .md\:-mb-11 { - margin-bottom: -2.75rem !important; + .group:hover .md\:group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .md\:-ml-11 { - margin-left: -2.75rem !important; + .group:hover .md\:group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .md\:-mt-12 { - margin-top: -3rem !important; + .group:hover .md\:group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .md\:-mr-12 { - margin-right: -3rem !important; + .group:hover .md\:group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .md\:-mb-12 { - margin-bottom: -3rem !important; + .group:hover .md\:group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .md\:-ml-12 { - margin-left: -3rem !important; + .group:hover .md\:group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .md\:-mt-14 { - margin-top: -3.5rem !important; + .group:hover .md\:group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .md\:-mr-14 { - margin-right: -3.5rem !important; + .group:hover .md\:group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .md\:-mb-14 { - margin-bottom: -3.5rem !important; + .group:hover .md\:group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .md\:-ml-14 { - margin-left: -3.5rem !important; + .group:hover .md\:group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .md\:-mt-16 { - margin-top: -4rem !important; + .group:hover .md\:group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .md\:-mr-16 { - margin-right: -4rem !important; + .group:hover .md\:group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .md\:-mb-16 { - margin-bottom: -4rem !important; + .md\:focus-within\:border-transparent:focus-within { + border-color: transparent !important; } - .md\:-ml-16 { - margin-left: -4rem !important; + .md\:focus-within\:border-current:focus-within { + border-color: currentColor !important; } - .md\:-mt-20 { - margin-top: -5rem !important; + .md\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .md\:-mr-20 { - margin-right: -5rem !important; + .md\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .md\:-mb-20 { - margin-bottom: -5rem !important; + .md\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .md\:-ml-20 { - margin-left: -5rem !important; + .md\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .md\:-mt-24 { - margin-top: -6rem !important; + .md\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .md\:-mr-24 { - margin-right: -6rem !important; + .md\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .md\:-mb-24 { - margin-bottom: -6rem !important; + .md\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .md\:-ml-24 { - margin-left: -6rem !important; + .md\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .md\:-mt-28 { - margin-top: -7rem !important; + .md\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .md\:-mr-28 { - margin-right: -7rem !important; + .md\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .md\:-mb-28 { - margin-bottom: -7rem !important; + .md\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .md\:-ml-28 { - margin-left: -7rem !important; + .md\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .md\:-mt-32 { - margin-top: -8rem !important; + .md\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .md\:-mr-32 { - margin-right: -8rem !important; + .md\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .md\:-mb-32 { - margin-bottom: -8rem !important; + .md\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .md\:-ml-32 { - margin-left: -8rem !important; + .md\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .md\:-mt-36 { - margin-top: -9rem !important; + .md\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .md\:-mr-36 { - margin-right: -9rem !important; + .md\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .md\:-mb-36 { - margin-bottom: -9rem !important; + .md\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .md\:-ml-36 { - margin-left: -9rem !important; + .md\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .md\:-mt-40 { - margin-top: -10rem !important; + .md\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .md\:-mr-40 { - margin-right: -10rem !important; + .md\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .md\:-mb-40 { - margin-bottom: -10rem !important; + .md\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .md\:-ml-40 { - margin-left: -10rem !important; + .md\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .md\:-mt-44 { - margin-top: -11rem !important; + .md\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .md\:-mr-44 { - margin-right: -11rem !important; + .md\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .md\:-mb-44 { - margin-bottom: -11rem !important; + .md\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .md\:-ml-44 { - margin-left: -11rem !important; + .md\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .md\:-mt-48 { - margin-top: -12rem !important; + .md\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .md\:-mr-48 { - margin-right: -12rem !important; + .md\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .md\:-mb-48 { - margin-bottom: -12rem !important; + .md\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .md\:-ml-48 { - margin-left: -12rem !important; + .md\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .md\:-mt-52 { - margin-top: -13rem !important; + .md\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .md\:-mr-52 { - margin-right: -13rem !important; + .md\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .md\:-mb-52 { - margin-bottom: -13rem !important; + .md\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .md\:-ml-52 { - margin-left: -13rem !important; + .md\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .md\:-mt-56 { - margin-top: -14rem !important; + .md\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .md\:-mr-56 { - margin-right: -14rem !important; + .md\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .md\:-mb-56 { - margin-bottom: -14rem !important; + .md\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .md\:-ml-56 { - margin-left: -14rem !important; + .md\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .md\:-mt-60 { - margin-top: -15rem !important; + .md\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .md\:-mr-60 { - margin-right: -15rem !important; + .md\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .md\:-mb-60 { - margin-bottom: -15rem !important; + .md\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .md\:-ml-60 { - margin-left: -15rem !important; + .md\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .md\:-mt-64 { - margin-top: -16rem !important; + .md\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .md\:-mr-64 { - margin-right: -16rem !important; + .md\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .md\:-mb-64 { - margin-bottom: -16rem !important; + .md\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .md\:-ml-64 { - margin-left: -16rem !important; + .md\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .md\:-mt-72 { - margin-top: -18rem !important; + .md\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .md\:-mr-72 { - margin-right: -18rem !important; + .md\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .md\:-mb-72 { - margin-bottom: -18rem !important; + .md\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .md\:-ml-72 { - margin-left: -18rem !important; + .md\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .md\:-mt-80 { - margin-top: -20rem !important; + .md\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .md\:-mr-80 { - margin-right: -20rem !important; + .md\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .md\:-mb-80 { - margin-bottom: -20rem !important; + .md\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .md\:-ml-80 { - margin-left: -20rem !important; + .md\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .md\:-mt-96 { - margin-top: -24rem !important; + .md\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .md\:-mr-96 { - margin-right: -24rem !important; + .md\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .md\:-mb-96 { - margin-bottom: -24rem !important; + .md\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .md\:-ml-96 { - margin-left: -24rem !important; + .md\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .md\:-mt-px { - margin-top: -1px !important; + .md\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .md\:-mr-px { - margin-right: -1px !important; + .md\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .md\:-mb-px { - margin-bottom: -1px !important; + .md\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .md\:-ml-px { - margin-left: -1px !important; + .md\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .md\:-mt-0\.5 { - margin-top: -0.125rem !important; + .md\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .md\:-mr-0\.5 { - margin-right: -0.125rem !important; + .md\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .md\:-mb-0\.5 { - margin-bottom: -0.125rem !important; + .md\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .md\:-ml-0\.5 { - margin-left: -0.125rem !important; + .md\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .md\:-mt-1\.5 { - margin-top: -0.375rem !important; + .md\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .md\:-mr-1\.5 { - margin-right: -0.375rem !important; + .md\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .md\:-mb-1\.5 { - margin-bottom: -0.375rem !important; + .md\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .md\:-ml-1\.5 { - margin-left: -0.375rem !important; + .md\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .md\:-mt-2\.5 { - margin-top: -0.625rem !important; + .md\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .md\:-mr-2\.5 { - margin-right: -0.625rem !important; + .md\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .md\:-mb-2\.5 { - margin-bottom: -0.625rem !important; + .md\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .md\:-ml-2\.5 { - margin-left: -0.625rem !important; + .md\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .md\:-mt-3\.5 { - margin-top: -0.875rem !important; + .md\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .md\:-mr-3\.5 { - margin-right: -0.875rem !important; + .md\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .md\:-mb-3\.5 { - margin-bottom: -0.875rem !important; + .md\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .md\:-ml-3\.5 { - margin-left: -0.875rem !important; + .md\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .md\:max-h-0 { - max-height: 0px !important; + .md\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .md\:max-h-1 { - max-height: 0.25rem !important; + .md\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .md\:max-h-2 { - max-height: 0.5rem !important; + .md\:hover\:border-transparent:hover { + border-color: transparent !important; } - .md\:max-h-3 { - max-height: 0.75rem !important; + .md\:hover\:border-current:hover { + border-color: currentColor !important; } - .md\:max-h-4 { - max-height: 1rem !important; + .md\:hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .md\:max-h-5 { - max-height: 1.25rem !important; + .md\:hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .md\:max-h-6 { - max-height: 1.5rem !important; + .md\:hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .md\:max-h-7 { - max-height: 1.75rem !important; + .md\:hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .md\:max-h-8 { - max-height: 2rem !important; + .md\:hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .md\:max-h-9 { - max-height: 2.25rem !important; + .md\:hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .md\:max-h-10 { - max-height: 2.5rem !important; + .md\:hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .md\:max-h-11 { - max-height: 2.75rem !important; + .md\:hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .md\:max-h-12 { - max-height: 3rem !important; + .md\:hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .md\:max-h-14 { - max-height: 3.5rem !important; + .md\:hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .md\:max-h-16 { - max-height: 4rem !important; + .md\:hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .md\:max-h-20 { - max-height: 5rem !important; + .md\:hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .md\:max-h-24 { - max-height: 6rem !important; + .md\:hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .md\:max-h-28 { - max-height: 7rem !important; + .md\:hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .md\:max-h-32 { - max-height: 8rem !important; + .md\:hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .md\:max-h-36 { - max-height: 9rem !important; + .md\:hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .md\:max-h-40 { - max-height: 10rem !important; + .md\:hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .md\:max-h-44 { - max-height: 11rem !important; + .md\:hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .md\:max-h-48 { - max-height: 12rem !important; + .md\:hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .md\:max-h-52 { - max-height: 13rem !important; + .md\:hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .md\:max-h-56 { - max-height: 14rem !important; + .md\:hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .md\:max-h-60 { - max-height: 15rem !important; + .md\:hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .md\:max-h-64 { - max-height: 16rem !important; + .md\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .md\:max-h-72 { - max-height: 18rem !important; + .md\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .md\:max-h-80 { - max-height: 20rem !important; + .md\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .md\:max-h-96 { - max-height: 24rem !important; + .md\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .md\:max-h-px { - max-height: 1px !important; + .md\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .md\:max-h-0\.5 { - max-height: 0.125rem !important; + .md\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .md\:max-h-1\.5 { - max-height: 0.375rem !important; + .md\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .md\:max-h-2\.5 { - max-height: 0.625rem !important; + .md\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .md\:max-h-3\.5 { - max-height: 0.875rem !important; + .md\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .md\:max-h-full { - max-height: 100% !important; + .md\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .md\:max-h-screen { - max-height: 100vh !important; + .md\:hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .md\:max-w-0 { - max-width: 0rem !important; + .md\:hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .md\:max-w-none { - max-width: none !important; + .md\:hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .md\:max-w-xs { - max-width: 20rem !important; + .md\:hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .md\:max-w-sm { - max-width: 24rem !important; + .md\:hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .md\:max-w-md { - max-width: 28rem !important; + .md\:hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .md\:max-w-lg { - max-width: 32rem !important; + .md\:hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .md\:max-w-xl { - max-width: 36rem !important; + .md\:hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .md\:max-w-2xl { - max-width: 42rem !important; + .md\:hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .md\:max-w-3xl { - max-width: 48rem !important; + .md\:hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .md\:max-w-4xl { - max-width: 56rem !important; + .md\:hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .md\:max-w-5xl { - max-width: 64rem !important; + .md\:hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .md\:max-w-6xl { - max-width: 72rem !important; + .md\:hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .md\:max-w-7xl { - max-width: 80rem !important; + .md\:hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .md\:max-w-full { - max-width: 100% !important; + .md\:hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .md\:max-w-min { - max-width: min-content !important; + .md\:hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .md\:max-w-max { - max-width: max-content !important; + .md\:hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .md\:max-w-prose { - max-width: 65ch !important; + .md\:hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .md\:max-w-screen-sm { - max-width: 640px !important; + .md\:hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .md\:max-w-screen-md { - max-width: 768px !important; + .md\:hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .md\:max-w-screen-lg { - max-width: 1024px !important; + .md\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .md\:max-w-screen-xl { - max-width: 1280px !important; + .md\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .md\:max-w-screen-2xl { - max-width: 1536px !important; + .md\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .md\:min-h-0 { - min-height: 0px !important; + .md\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .md\:min-h-full { - min-height: 100% !important; + .md\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .md\:min-h-screen { - min-height: 100vh !important; + .md\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .md\:min-w-0 { - min-width: 0px !important; + .md\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .md\:min-w-full { - min-width: 100% !important; + .md\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .md\:min-w-min { - min-width: min-content !important; + .md\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .md\:min-w-max { - min-width: max-content !important; + .md\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .md\:object-contain { - object-fit: contain !important; + .md\:hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .md\:object-cover { - object-fit: cover !important; + .md\:hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .md\:object-fill { - object-fit: fill !important; + .md\:hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .md\:object-none { - object-fit: none !important; + .md\:hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .md\:object-scale-down { - object-fit: scale-down !important; + .md\:hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .md\:object-bottom { - object-position: bottom !important; + .md\:hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .md\:object-center { - object-position: center !important; + .md\:hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .md\:object-left { - object-position: left !important; + .md\:hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .md\:object-left-bottom { - object-position: left bottom !important; + .md\:hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .md\:object-left-top { - object-position: left top !important; + .md\:hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .md\:object-right { - object-position: right !important; + .md\:hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .md\:object-right-bottom { - object-position: right bottom !important; + .md\:hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .md\:object-right-top { - object-position: right top !important; + .md\:hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .md\:object-top { - object-position: top !important; + .md\:hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .md\:opacity-0 { - opacity: 0 !important; + .md\:hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .md\:opacity-5 { - opacity: 0.05 !important; + .md\:hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .md\:opacity-10 { - opacity: 0.1 !important; + .md\:hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .md\:opacity-20 { - opacity: 0.2 !important; + .md\:hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .md\:opacity-25 { - opacity: 0.25 !important; + .md\:hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .md\:opacity-30 { - opacity: 0.3 !important; + .md\:hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .md\:opacity-40 { - opacity: 0.4 !important; + .md\:focus\:border-transparent:focus { + border-color: transparent !important; } - .md\:opacity-50 { - opacity: 0.5 !important; + .md\:focus\:border-current:focus { + border-color: currentColor !important; } - .md\:opacity-60 { - opacity: 0.6 !important; + .md\:focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .md\:opacity-70 { - opacity: 0.7 !important; + .md\:focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .md\:opacity-75 { - opacity: 0.75 !important; + .md\:focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .md\:opacity-80 { - opacity: 0.8 !important; + .md\:focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .md\:opacity-90 { - opacity: 0.9 !important; + .md\:focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .md\:opacity-95 { - opacity: 0.95 !important; + .md\:focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .md\:opacity-100 { - opacity: 1 !important; + .md\:focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-0 { - opacity: 0 !important; + .md\:focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-5 { - opacity: 0.05 !important; + .md\:focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-10 { - opacity: 0.1 !important; + .md\:focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-20 { - opacity: 0.2 !important; + .md\:focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-25 { - opacity: 0.25 !important; + .md\:focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-30 { - opacity: 0.3 !important; + .md\:focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-40 { - opacity: 0.4 !important; + .md\:focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-50 { - opacity: 0.5 !important; + .md\:focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-60 { - opacity: 0.6 !important; + .md\:focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-70 { - opacity: 0.7 !important; + .md\:focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-75 { - opacity: 0.75 !important; + .md\:focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-80 { - opacity: 0.8 !important; + .md\:focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-90 { - opacity: 0.9 !important; + .md\:focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-95 { - opacity: 0.95 !important; + .md\:focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .group:hover .md\:group-hover\:opacity-100 { - opacity: 1 !important; + .md\:focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-0:focus-within { - opacity: 0 !important; + .md\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-5:focus-within { - opacity: 0.05 !important; + .md\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-10:focus-within { - opacity: 0.1 !important; + .md\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-20:focus-within { - opacity: 0.2 !important; + .md\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-25:focus-within { - opacity: 0.25 !important; + .md\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-30:focus-within { - opacity: 0.3 !important; + .md\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-40:focus-within { - opacity: 0.4 !important; + .md\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-50:focus-within { - opacity: 0.5 !important; + .md\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-60:focus-within { - opacity: 0.6 !important; + .md\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-70:focus-within { - opacity: 0.7 !important; + .md\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-75:focus-within { - opacity: 0.75 !important; + .md\:focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-80:focus-within { - opacity: 0.8 !important; + .md\:focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-90:focus-within { - opacity: 0.9 !important; + .md\:focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-95:focus-within { - opacity: 0.95 !important; + .md\:focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .md\:focus-within\:opacity-100:focus-within { - opacity: 1 !important; + .md\:focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-0:hover { - opacity: 0 !important; + .md\:focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-5:hover { - opacity: 0.05 !important; + .md\:focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-10:hover { - opacity: 0.1 !important; + .md\:focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-20:hover { - opacity: 0.2 !important; + .md\:focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-25:hover { - opacity: 0.25 !important; + .md\:focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-30:hover { - opacity: 0.3 !important; + .md\:focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-40:hover { - opacity: 0.4 !important; + .md\:focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-50:hover { - opacity: 0.5 !important; + .md\:focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-60:hover { - opacity: 0.6 !important; + .md\:focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-70:hover { - opacity: 0.7 !important; + .md\:focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-75:hover { - opacity: 0.75 !important; + .md\:focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-80:hover { - opacity: 0.8 !important; + .md\:focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-90:hover { - opacity: 0.9 !important; + .md\:focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-95:hover { - opacity: 0.95 !important; + .md\:focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .md\:hover\:opacity-100:hover { - opacity: 1 !important; + .md\:focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-0:focus { - opacity: 0 !important; + .md\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-5:focus { - opacity: 0.05 !important; + .md\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-10:focus { - opacity: 0.1 !important; + .md\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-20:focus { - opacity: 0.2 !important; + .md\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-25:focus { - opacity: 0.25 !important; + .md\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-30:focus { - opacity: 0.3 !important; + .md\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-40:focus { - opacity: 0.4 !important; + .md\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-50:focus { - opacity: 0.5 !important; + .md\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-60:focus { - opacity: 0.6 !important; + .md\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-70:focus { - opacity: 0.7 !important; + .md\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-75:focus { - opacity: 0.75 !important; + .md\:focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-80:focus { - opacity: 0.8 !important; + .md\:focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-90:focus { - opacity: 0.9 !important; + .md\:focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-95:focus { - opacity: 0.95 !important; + .md\:focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .md\:focus\:opacity-100:focus { - opacity: 1 !important; + .md\:focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .md\:outline-none { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .md\:focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .md\:outline-white { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .md\:focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .md\:outline-black { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .md\:focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .md\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .md\:focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .md\:focus-within\:outline-white:focus-within { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .md\:focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .md\:focus-within\:outline-black:focus-within { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .md\:focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .md\:focus\:outline-none:focus { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .md\:focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .md\:focus\:outline-white:focus { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .md\:focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .md\:focus\:outline-black:focus { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .md\:focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .md\:overflow-auto { - overflow: auto !important; + .md\:focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .md\:overflow-hidden { - overflow: hidden !important; + .md\:focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .md\:overflow-visible { - overflow: visible !important; + .md\:focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .md\:overflow-scroll { - overflow: scroll !important; + .md\:focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .md\:overflow-x-auto { - overflow-x: auto !important; + .md\:focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .md\:overflow-y-auto { - overflow-y: auto !important; + .md\:focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .md\:overflow-x-hidden { - overflow-x: hidden !important; + .md\:border-opacity-0 { + --tw-border-opacity: 0 !important; } - .md\:overflow-y-hidden { - overflow-y: hidden !important; + .md\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; } - .md\:overflow-x-visible { - overflow-x: visible !important; + .md\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; } - .md\:overflow-y-visible { - overflow-y: visible !important; + .md\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; } - .md\:overflow-x-scroll { - overflow-x: scroll !important; + .md\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; } - .md\:overflow-y-scroll { - overflow-y: scroll !important; + .md\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; } - .md\:overscroll-auto { - overscroll-behavior: auto !important; + .md\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; } - .md\:overscroll-contain { - overscroll-behavior: contain !important; + .md\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; } - .md\:overscroll-none { - overscroll-behavior: none !important; + .md\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; } - .md\:overscroll-y-auto { - overscroll-behavior-y: auto !important; + .md\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; } - .md\:overscroll-y-contain { - overscroll-behavior-y: contain !important; + .md\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; } - .md\:overscroll-y-none { - overscroll-behavior-y: none !important; + .md\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; } - .md\:overscroll-x-auto { - overscroll-behavior-x: auto !important; + .md\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; } - .md\:overscroll-x-contain { - overscroll-behavior-x: contain !important; + .md\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; } - .md\:overscroll-x-none { - overscroll-behavior-x: none !important; + .md\:border-opacity-100 { + --tw-border-opacity: 1 !important; } - .md\:p-0 { - padding: 0px !important; + .group:hover .md\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; } - .md\:p-1 { - padding: 0.25rem !important; + .group:hover .md\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; } - .md\:p-2 { - padding: 0.5rem !important; + .group:hover .md\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; } - .md\:p-3 { - padding: 0.75rem !important; + .group:hover .md\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; } - .md\:p-4 { - padding: 1rem !important; + .group:hover .md\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; } - .md\:p-5 { - padding: 1.25rem !important; + .group:hover .md\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; } - .md\:p-6 { - padding: 1.5rem !important; + .group:hover .md\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; } - .md\:p-7 { - padding: 1.75rem !important; + .group:hover .md\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; } - .md\:p-8 { - padding: 2rem !important; + .group:hover .md\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; } - .md\:p-9 { - padding: 2.25rem !important; + .group:hover .md\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; } - .md\:p-10 { - padding: 2.5rem !important; + .group:hover .md\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; } - .md\:p-11 { - padding: 2.75rem !important; + .group:hover .md\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; } - .md\:p-12 { - padding: 3rem !important; + .group:hover .md\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; } - .md\:p-14 { - padding: 3.5rem !important; + .group:hover .md\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; } - .md\:p-16 { - padding: 4rem !important; + .group:hover .md\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; } - .md\:p-20 { - padding: 5rem !important; + .md\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; } - .md\:p-24 { - padding: 6rem !important; + .md\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; } - .md\:p-28 { - padding: 7rem !important; + .md\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; } - .md\:p-32 { - padding: 8rem !important; + .md\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; } - .md\:p-36 { - padding: 9rem !important; + .md\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; } - .md\:p-40 { - padding: 10rem !important; + .md\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; } - .md\:p-44 { - padding: 11rem !important; + .md\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; } - .md\:p-48 { - padding: 12rem !important; + .md\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; } - .md\:p-52 { - padding: 13rem !important; + .md\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; } - .md\:p-56 { - padding: 14rem !important; + .md\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; } - .md\:p-60 { - padding: 15rem !important; + .md\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; } - .md\:p-64 { - padding: 16rem !important; + .md\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; } - .md\:p-72 { - padding: 18rem !important; + .md\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; } - .md\:p-80 { - padding: 20rem !important; + .md\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; } - .md\:p-96 { - padding: 24rem !important; + .md\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; } - .md\:p-px { - padding: 1px !important; + .md\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; } - .md\:p-0\.5 { - padding: 0.125rem !important; + .md\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; } - .md\:p-1\.5 { - padding: 0.375rem !important; + .md\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; } - .md\:p-2\.5 { - padding: 0.625rem !important; + .md\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; } - .md\:p-3\.5 { - padding: 0.875rem !important; + .md\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; } - .md\:py-0 { - padding-top: 0px !important; - padding-bottom: 0px !important; + .md\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; } - .md\:px-0 { - padding-left: 0px !important; - padding-right: 0px !important; + .md\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; } - .md\:py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; + .md\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; } - .md\:px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; + .md\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; } - .md\:py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; + .md\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; } - .md\:px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; + .md\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; } - .md\:py-3 { - padding-top: 0.75rem !important; - padding-bottom: 0.75rem !important; + .md\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; } - .md\:px-3 { - padding-left: 0.75rem !important; - padding-right: 0.75rem !important; + .md\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; } - .md\:py-4 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; + .md\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; } - .md\:px-4 { - padding-left: 1rem !important; - padding-right: 1rem !important; + .md\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; } - .md\:py-5 { - padding-top: 1.25rem !important; - padding-bottom: 1.25rem !important; + .md\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; } - .md\:px-5 { - padding-left: 1.25rem !important; - padding-right: 1.25rem !important; + .md\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; } - .md\:py-6 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; + .md\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; } - .md\:px-6 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; + .md\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; } - .md\:py-7 { - padding-top: 1.75rem !important; - padding-bottom: 1.75rem !important; + .md\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; } - .md\:px-7 { - padding-left: 1.75rem !important; - padding-right: 1.75rem !important; + .md\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; } - .md\:py-8 { - padding-top: 2rem !important; - padding-bottom: 2rem !important; + .md\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; } - .md\:px-8 { - padding-left: 2rem !important; - padding-right: 2rem !important; + .md\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; } - .md\:py-9 { - padding-top: 2.25rem !important; - padding-bottom: 2.25rem !important; + .md\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; } - .md\:px-9 { - padding-left: 2.25rem !important; - padding-right: 2.25rem !important; + .md\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; } - .md\:py-10 { - padding-top: 2.5rem !important; - padding-bottom: 2.5rem !important; + .md\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; } - .md\:px-10 { - padding-left: 2.5rem !important; - padding-right: 2.5rem !important; + .md\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; } - .md\:py-11 { - padding-top: 2.75rem !important; - padding-bottom: 2.75rem !important; + .md\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; } - .md\:px-11 { - padding-left: 2.75rem !important; - padding-right: 2.75rem !important; + .md\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; } - .md\:py-12 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; + .md\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; } - .md\:px-12 { - padding-left: 3rem !important; - padding-right: 3rem !important; + .md\:bg-transparent { + background-color: transparent !important; } - .md\:py-14 { - padding-top: 3.5rem !important; - padding-bottom: 3.5rem !important; + .md\:bg-current { + background-color: currentColor !important; } - .md\:px-14 { - padding-left: 3.5rem !important; - padding-right: 3.5rem !important; + .md\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .md\:py-16 { - padding-top: 4rem !important; - padding-bottom: 4rem !important; + .md\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .md\:px-16 { - padding-left: 4rem !important; - padding-right: 4rem !important; + .md\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .md\:py-20 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; + .md\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .md\:px-20 { - padding-left: 5rem !important; - padding-right: 5rem !important; + .md\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .md\:py-24 { - padding-top: 6rem !important; - padding-bottom: 6rem !important; + .md\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .md\:px-24 { - padding-left: 6rem !important; - padding-right: 6rem !important; + .md\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .md\:py-28 { - padding-top: 7rem !important; - padding-bottom: 7rem !important; + .md\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .md\:px-28 { - padding-left: 7rem !important; - padding-right: 7rem !important; + .md\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .md\:py-32 { - padding-top: 8rem !important; - padding-bottom: 8rem !important; + .md\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .md\:px-32 { - padding-left: 8rem !important; - padding-right: 8rem !important; + .md\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .md\:py-36 { - padding-top: 9rem !important; - padding-bottom: 9rem !important; + .md\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .md\:px-36 { - padding-left: 9rem !important; - padding-right: 9rem !important; + .md\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .md\:py-40 { - padding-top: 10rem !important; - padding-bottom: 10rem !important; + .md\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .md\:px-40 { - padding-left: 10rem !important; - padding-right: 10rem !important; + .md\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .md\:py-44 { - padding-top: 11rem !important; - padding-bottom: 11rem !important; + .md\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .md\:px-44 { - padding-left: 11rem !important; - padding-right: 11rem !important; + .md\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .md\:py-48 { - padding-top: 12rem !important; - padding-bottom: 12rem !important; + .md\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .md\:px-48 { - padding-left: 12rem !important; - padding-right: 12rem !important; + .md\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .md\:py-52 { - padding-top: 13rem !important; - padding-bottom: 13rem !important; + .md\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .md\:px-52 { - padding-left: 13rem !important; - padding-right: 13rem !important; + .md\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .md\:py-56 { - padding-top: 14rem !important; - padding-bottom: 14rem !important; + .md\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .md\:px-56 { - padding-left: 14rem !important; - padding-right: 14rem !important; + .md\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .md\:py-60 { - padding-top: 15rem !important; - padding-bottom: 15rem !important; + .md\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .md\:px-60 { - padding-left: 15rem !important; - padding-right: 15rem !important; + .md\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .md\:py-64 { - padding-top: 16rem !important; - padding-bottom: 16rem !important; + .md\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .md\:px-64 { - padding-left: 16rem !important; - padding-right: 16rem !important; + .md\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .md\:py-72 { - padding-top: 18rem !important; - padding-bottom: 18rem !important; + .md\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .md\:px-72 { - padding-left: 18rem !important; - padding-right: 18rem !important; + .md\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .md\:py-80 { - padding-top: 20rem !important; - padding-bottom: 20rem !important; + .md\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .md\:px-80 { - padding-left: 20rem !important; - padding-right: 20rem !important; + .md\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .md\:py-96 { - padding-top: 24rem !important; - padding-bottom: 24rem !important; + .md\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .md\:px-96 { - padding-left: 24rem !important; - padding-right: 24rem !important; + .md\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .md\:py-px { - padding-top: 1px !important; - padding-bottom: 1px !important; + .md\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .md\:px-px { - padding-left: 1px !important; - padding-right: 1px !important; + .md\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .md\:py-0\.5 { - padding-top: 0.125rem !important; - padding-bottom: 0.125rem !important; + .md\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .md\:px-0\.5 { - padding-left: 0.125rem !important; - padding-right: 0.125rem !important; + .md\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .md\:py-1\.5 { - padding-top: 0.375rem !important; - padding-bottom: 0.375rem !important; + .md\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .md\:px-1\.5 { - padding-left: 0.375rem !important; - padding-right: 0.375rem !important; + .md\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .md\:py-2\.5 { - padding-top: 0.625rem !important; - padding-bottom: 0.625rem !important; + .md\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .md\:px-2\.5 { - padding-left: 0.625rem !important; - padding-right: 0.625rem !important; + .md\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .md\:py-3\.5 { - padding-top: 0.875rem !important; - padding-bottom: 0.875rem !important; + .md\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .md\:px-3\.5 { - padding-left: 0.875rem !important; - padding-right: 0.875rem !important; + .md\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .md\:pt-0 { - padding-top: 0px !important; + .md\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .md\:pr-0 { - padding-right: 0px !important; + .md\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .md\:pb-0 { - padding-bottom: 0px !important; + .md\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .md\:pl-0 { - padding-left: 0px !important; + .md\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .md\:pt-1 { - padding-top: 0.25rem !important; + .md\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .md\:pr-1 { - padding-right: 0.25rem !important; + .md\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .md\:pb-1 { - padding-bottom: 0.25rem !important; + .md\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .md\:pl-1 { - padding-left: 0.25rem !important; + .md\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .md\:pt-2 { - padding-top: 0.5rem !important; + .md\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .md\:pr-2 { - padding-right: 0.5rem !important; + .md\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .md\:pb-2 { - padding-bottom: 0.5rem !important; + .md\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .md\:pl-2 { - padding-left: 0.5rem !important; + .md\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .md\:pt-3 { - padding-top: 0.75rem !important; + .md\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .md\:pr-3 { - padding-right: 0.75rem !important; + .md\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .md\:pb-3 { - padding-bottom: 0.75rem !important; + .md\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .md\:pl-3 { - padding-left: 0.75rem !important; + .md\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .md\:pt-4 { - padding-top: 1rem !important; + .md\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .md\:pr-4 { - padding-right: 1rem !important; + .md\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .md\:pb-4 { - padding-bottom: 1rem !important; + .md\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .md\:pl-4 { - padding-left: 1rem !important; + .md\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .md\:pt-5 { - padding-top: 1.25rem !important; + .md\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .md\:pr-5 { - padding-right: 1.25rem !important; + .md\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .md\:pb-5 { - padding-bottom: 1.25rem !important; + .md\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .md\:pl-5 { - padding-left: 1.25rem !important; + .md\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .md\:pt-6 { - padding-top: 1.5rem !important; + .md\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .md\:pr-6 { - padding-right: 1.5rem !important; + .md\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .md\:pb-6 { - padding-bottom: 1.5rem !important; + .md\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .md\:pl-6 { - padding-left: 1.5rem !important; + .md\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .md\:pt-7 { - padding-top: 1.75rem !important; + .md\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .md\:pr-7 { - padding-right: 1.75rem !important; + .md\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .md\:pb-7 { - padding-bottom: 1.75rem !important; + .md\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .md\:pl-7 { - padding-left: 1.75rem !important; + .md\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .md\:pt-8 { - padding-top: 2rem !important; + .md\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .md\:pr-8 { - padding-right: 2rem !important; + .md\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .md\:pb-8 { - padding-bottom: 2rem !important; + .md\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .md\:pl-8 { - padding-left: 2rem !important; + .md\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .md\:pt-9 { - padding-top: 2.25rem !important; + .md\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .md\:pr-9 { - padding-right: 2.25rem !important; + .md\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .md\:pb-9 { - padding-bottom: 2.25rem !important; + .md\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .md\:pl-9 { - padding-left: 2.25rem !important; + .group:hover .md\:group-hover\:bg-transparent { + background-color: transparent !important; } - .md\:pt-10 { - padding-top: 2.5rem !important; + .group:hover .md\:group-hover\:bg-current { + background-color: currentColor !important; } - .md\:pr-10 { - padding-right: 2.5rem !important; + .group:hover .md\:group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .md\:pb-10 { - padding-bottom: 2.5rem !important; + .group:hover .md\:group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .md\:pl-10 { - padding-left: 2.5rem !important; + .group:hover .md\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .md\:pt-11 { - padding-top: 2.75rem !important; + .group:hover .md\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .md\:pr-11 { - padding-right: 2.75rem !important; + .group:hover .md\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .md\:pb-11 { - padding-bottom: 2.75rem !important; + .group:hover .md\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .md\:pl-11 { - padding-left: 2.75rem !important; + .group:hover .md\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .md\:pt-12 { - padding-top: 3rem !important; + .group:hover .md\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .md\:pr-12 { - padding-right: 3rem !important; + .group:hover .md\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .md\:pb-12 { - padding-bottom: 3rem !important; + .group:hover .md\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .md\:pl-12 { - padding-left: 3rem !important; + .group:hover .md\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .md\:pt-14 { - padding-top: 3.5rem !important; + .group:hover .md\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .md\:pr-14 { - padding-right: 3.5rem !important; + .group:hover .md\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .md\:pb-14 { - padding-bottom: 3.5rem !important; + .group:hover .md\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .md\:pl-14 { - padding-left: 3.5rem !important; + .group:hover .md\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .md\:pt-16 { - padding-top: 4rem !important; + .group:hover .md\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .md\:pr-16 { - padding-right: 4rem !important; + .group:hover .md\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .md\:pb-16 { - padding-bottom: 4rem !important; + .group:hover .md\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .md\:pl-16 { - padding-left: 4rem !important; + .group:hover .md\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .md\:pt-20 { - padding-top: 5rem !important; + .group:hover .md\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .md\:pr-20 { - padding-right: 5rem !important; + .group:hover .md\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .md\:pb-20 { - padding-bottom: 5rem !important; + .group:hover .md\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .md\:pl-20 { - padding-left: 5rem !important; + .group:hover .md\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .md\:pt-24 { - padding-top: 6rem !important; + .group:hover .md\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .md\:pr-24 { - padding-right: 6rem !important; + .group:hover .md\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .md\:pb-24 { - padding-bottom: 6rem !important; + .group:hover .md\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .md\:pl-24 { - padding-left: 6rem !important; + .group:hover .md\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .md\:pt-28 { - padding-top: 7rem !important; + .group:hover .md\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .md\:pr-28 { - padding-right: 7rem !important; + .group:hover .md\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .md\:pb-28 { - padding-bottom: 7rem !important; + .group:hover .md\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .md\:pl-28 { - padding-left: 7rem !important; + .group:hover .md\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .md\:pt-32 { - padding-top: 8rem !important; + .group:hover .md\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .md\:pr-32 { - padding-right: 8rem !important; + .group:hover .md\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .md\:pb-32 { - padding-bottom: 8rem !important; + .group:hover .md\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .md\:pl-32 { - padding-left: 8rem !important; + .group:hover .md\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .md\:pt-36 { - padding-top: 9rem !important; + .group:hover .md\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .md\:pr-36 { - padding-right: 9rem !important; + .group:hover .md\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .md\:pb-36 { - padding-bottom: 9rem !important; + .group:hover .md\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .md\:pl-36 { - padding-left: 9rem !important; + .group:hover .md\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .md\:pt-40 { - padding-top: 10rem !important; + .group:hover .md\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .md\:pr-40 { - padding-right: 10rem !important; + .group:hover .md\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .md\:pb-40 { - padding-bottom: 10rem !important; + .group:hover .md\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .md\:pl-40 { - padding-left: 10rem !important; + .group:hover .md\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .md\:pt-44 { - padding-top: 11rem !important; + .group:hover .md\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .md\:pr-44 { - padding-right: 11rem !important; + .group:hover .md\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .md\:pb-44 { - padding-bottom: 11rem !important; + .group:hover .md\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .md\:pl-44 { - padding-left: 11rem !important; + .group:hover .md\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .md\:pt-48 { - padding-top: 12rem !important; + .group:hover .md\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .md\:pr-48 { - padding-right: 12rem !important; + .group:hover .md\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .md\:pb-48 { - padding-bottom: 12rem !important; + .group:hover .md\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .md\:pl-48 { - padding-left: 12rem !important; + .group:hover .md\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .md\:pt-52 { - padding-top: 13rem !important; + .group:hover .md\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .md\:pr-52 { - padding-right: 13rem !important; + .group:hover .md\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .md\:pb-52 { - padding-bottom: 13rem !important; + .group:hover .md\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .md\:pl-52 { - padding-left: 13rem !important; + .group:hover .md\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .md\:pt-56 { - padding-top: 14rem !important; + .group:hover .md\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .md\:pr-56 { - padding-right: 14rem !important; + .group:hover .md\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .md\:pb-56 { - padding-bottom: 14rem !important; + .group:hover .md\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .md\:pl-56 { - padding-left: 14rem !important; + .group:hover .md\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .md\:pt-60 { - padding-top: 15rem !important; + .group:hover .md\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .md\:pr-60 { - padding-right: 15rem !important; + .group:hover .md\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .md\:pb-60 { - padding-bottom: 15rem !important; + .group:hover .md\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .md\:pl-60 { - padding-left: 15rem !important; + .group:hover .md\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .md\:pt-64 { - padding-top: 16rem !important; + .group:hover .md\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .md\:pr-64 { - padding-right: 16rem !important; + .group:hover .md\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .md\:pb-64 { - padding-bottom: 16rem !important; + .group:hover .md\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .md\:pl-64 { - padding-left: 16rem !important; + .group:hover .md\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .md\:pt-72 { - padding-top: 18rem !important; + .group:hover .md\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .md\:pr-72 { - padding-right: 18rem !important; + .group:hover .md\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .md\:pb-72 { - padding-bottom: 18rem !important; + .group:hover .md\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .md\:pl-72 { - padding-left: 18rem !important; + .group:hover .md\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .md\:pt-80 { - padding-top: 20rem !important; + .group:hover .md\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .md\:pr-80 { - padding-right: 20rem !important; + .group:hover .md\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .md\:pb-80 { - padding-bottom: 20rem !important; + .group:hover .md\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .md\:pl-80 { - padding-left: 20rem !important; + .group:hover .md\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .md\:pt-96 { - padding-top: 24rem !important; + .group:hover .md\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .md\:pr-96 { - padding-right: 24rem !important; + .group:hover .md\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .md\:pb-96 { - padding-bottom: 24rem !important; + .group:hover .md\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .md\:pl-96 { - padding-left: 24rem !important; + .group:hover .md\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .md\:pt-px { - padding-top: 1px !important; + .group:hover .md\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .md\:pr-px { - padding-right: 1px !important; + .group:hover .md\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .md\:pb-px { - padding-bottom: 1px !important; + .group:hover .md\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .md\:pl-px { - padding-left: 1px !important; + .md\:focus-within\:bg-transparent:focus-within { + background-color: transparent !important; } - .md\:pt-0\.5 { - padding-top: 0.125rem !important; + .md\:focus-within\:bg-current:focus-within { + background-color: currentColor !important; } - .md\:pr-0\.5 { - padding-right: 0.125rem !important; + .md\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .md\:pb-0\.5 { - padding-bottom: 0.125rem !important; + .md\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .md\:pl-0\.5 { - padding-left: 0.125rem !important; + .md\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .md\:pt-1\.5 { - padding-top: 0.375rem !important; + .md\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .md\:pr-1\.5 { - padding-right: 0.375rem !important; + .md\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .md\:pb-1\.5 { - padding-bottom: 0.375rem !important; + .md\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .md\:pl-1\.5 { - padding-left: 0.375rem !important; + .md\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .md\:pt-2\.5 { - padding-top: 0.625rem !important; + .md\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .md\:pr-2\.5 { - padding-right: 0.625rem !important; + .md\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .md\:pb-2\.5 { - padding-bottom: 0.625rem !important; + .md\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .md\:pl-2\.5 { - padding-left: 0.625rem !important; + .md\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .md\:pt-3\.5 { - padding-top: 0.875rem !important; + .md\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .md\:pr-3\.5 { - padding-right: 0.875rem !important; + .md\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .md\:pb-3\.5 { - padding-bottom: 0.875rem !important; + .md\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .md\:pl-3\.5 { - padding-left: 0.875rem !important; + .md\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .md\:placeholder-transparent::placeholder { - color: transparent !important; + .md\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .md\:placeholder-current::placeholder { - color: currentColor !important; + .md\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .md\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .md\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .md\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .md\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .md\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .md\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .md\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .md\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .md\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .md\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .md\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .md\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .md\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .md\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .md\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .md\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .md\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .md\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .md\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .md\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .md\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .md\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .md\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .md\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .md\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .md\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .md\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .md\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .md\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .md\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .md\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .md\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .md\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .md\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .md\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .md\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .md\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .md\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .md\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .md\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .md\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .md\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .md\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .md\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .md\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .md\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .md\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .md\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .md\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .md\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .md\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .md\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .md\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .md\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .md\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .md\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .md\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .md\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .md\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .md\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .md\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .md\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .md\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .md\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .md\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + .md\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .md\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-transparent:hover { + background-color: transparent !important; } - .md\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-current:hover { + background-color: currentColor !important; } - .md\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .md\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .md\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .md\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .md\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .md\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .md\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .md\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .md\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .md\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .md\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .md\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .md\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .md\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .md\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-transparent:focus::placeholder { - color: transparent !important; + .md\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-current:focus::placeholder { - color: currentColor !important; + .md\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + .md\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-transparent:focus { + background-color: transparent !important; } - .md\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-current:focus { + background-color: currentColor !important; } - .md\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + .md\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0 !important; + .md\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05 !important; + .md\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1 !important; + .md\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2 !important; + .md\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25 !important; + .md\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3 !important; + .md\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4 !important; + .md\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5 !important; + .md\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6 !important; + .md\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7 !important; + .md\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75 !important; + .md\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8 !important; + .md\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9 !important; + .md\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95 !important; + .md\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .md\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1 !important; + .md\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0 !important; + .md\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05 !important; + .md\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1 !important; + .md\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2 !important; + .md\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25 !important; + .md\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3 !important; + .md\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4 !important; + .md\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5 !important; + .md\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6 !important; + .md\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7 !important; + .md\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75 !important; + .md\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8 !important; + .md\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9 !important; + .md\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95 !important; + .md\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .md\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; + .md\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .md\:pointer-events-none { - pointer-events: none !important; + .md\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .md\:pointer-events-auto { - pointer-events: auto !important; + .md\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .md\:static { - position: static !important; + .md\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .md\:fixed { - position: fixed !important; + .md\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .md\:absolute { - position: absolute !important; + .md\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .md\:relative { - position: relative !important; + .md\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .md\:sticky { - position: sticky !important; + .md\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .md\:inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; + .md\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .md\:inset-1 { - top: 0.25rem !important; - right: 0.25rem !important; - bottom: 0.25rem !important; - left: 0.25rem !important; + .md\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .md\:inset-2 { - top: 0.5rem !important; - right: 0.5rem !important; - bottom: 0.5rem !important; - left: 0.5rem !important; + .md\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .md\:inset-3 { - top: 0.75rem !important; - right: 0.75rem !important; - bottom: 0.75rem !important; - left: 0.75rem !important; + .md\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .md\:inset-4 { - top: 1rem !important; - right: 1rem !important; - bottom: 1rem !important; - left: 1rem !important; + .md\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .md\:inset-5 { - top: 1.25rem !important; - right: 1.25rem !important; - bottom: 1.25rem !important; - left: 1.25rem !important; + .md\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .md\:inset-6 { - top: 1.5rem !important; - right: 1.5rem !important; - bottom: 1.5rem !important; - left: 1.5rem !important; + .md\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .md\:inset-7 { - top: 1.75rem !important; - right: 1.75rem !important; - bottom: 1.75rem !important; - left: 1.75rem !important; + .md\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .md\:inset-8 { - top: 2rem !important; - right: 2rem !important; - bottom: 2rem !important; - left: 2rem !important; + .md\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .md\:inset-9 { - top: 2.25rem !important; - right: 2.25rem !important; - bottom: 2.25rem !important; - left: 2.25rem !important; + .md\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .md\:inset-10 { - top: 2.5rem !important; - right: 2.5rem !important; - bottom: 2.5rem !important; - left: 2.5rem !important; + .md\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .md\:inset-11 { - top: 2.75rem !important; - right: 2.75rem !important; - bottom: 2.75rem !important; - left: 2.75rem !important; + .md\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .md\:inset-12 { - top: 3rem !important; - right: 3rem !important; - bottom: 3rem !important; - left: 3rem !important; + .md\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .md\:inset-14 { - top: 3.5rem !important; - right: 3.5rem !important; - bottom: 3.5rem !important; - left: 3.5rem !important; + .md\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .md\:inset-16 { - top: 4rem !important; - right: 4rem !important; - bottom: 4rem !important; - left: 4rem !important; + .md\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .md\:inset-20 { - top: 5rem !important; - right: 5rem !important; - bottom: 5rem !important; - left: 5rem !important; + .md\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .md\:inset-24 { - top: 6rem !important; - right: 6rem !important; - bottom: 6rem !important; - left: 6rem !important; + .md\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .md\:inset-28 { - top: 7rem !important; - right: 7rem !important; - bottom: 7rem !important; - left: 7rem !important; + .md\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .md\:inset-32 { - top: 8rem !important; - right: 8rem !important; - bottom: 8rem !important; - left: 8rem !important; + .md\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .md\:inset-36 { - top: 9rem !important; - right: 9rem !important; - bottom: 9rem !important; - left: 9rem !important; + .md\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .md\:inset-40 { - top: 10rem !important; - right: 10rem !important; - bottom: 10rem !important; - left: 10rem !important; + .md\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .md\:inset-44 { - top: 11rem !important; - right: 11rem !important; - bottom: 11rem !important; - left: 11rem !important; + .md\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .md\:inset-48 { - top: 12rem !important; - right: 12rem !important; - bottom: 12rem !important; - left: 12rem !important; + .md\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .md\:inset-52 { - top: 13rem !important; - right: 13rem !important; - bottom: 13rem !important; - left: 13rem !important; + .md\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .md\:inset-56 { - top: 14rem !important; - right: 14rem !important; - bottom: 14rem !important; - left: 14rem !important; + .md\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .md\:inset-60 { - top: 15rem !important; - right: 15rem !important; - bottom: 15rem !important; - left: 15rem !important; + .md\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .md\:inset-64 { - top: 16rem !important; - right: 16rem !important; - bottom: 16rem !important; - left: 16rem !important; + .md\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .md\:inset-72 { - top: 18rem !important; - right: 18rem !important; - bottom: 18rem !important; - left: 18rem !important; + .md\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .md\:inset-80 { - top: 20rem !important; - right: 20rem !important; - bottom: 20rem !important; - left: 20rem !important; + .md\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .md\:inset-96 { - top: 24rem !important; - right: 24rem !important; - bottom: 24rem !important; - left: 24rem !important; + .md\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .md\:inset-auto { - top: auto !important; - right: auto !important; - bottom: auto !important; - left: auto !important; + .md\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; } - .md\:inset-px { - top: 1px !important; - right: 1px !important; - bottom: 1px !important; - left: 1px !important; + .md\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } - .md\:inset-0\.5 { - top: 0.125rem !important; - right: 0.125rem !important; - bottom: 0.125rem !important; - left: 0.125rem !important; + .md\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } - .md\:inset-1\.5 { - top: 0.375rem !important; - right: 0.375rem !important; - bottom: 0.375rem !important; - left: 0.375rem !important; + .md\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } - .md\:inset-2\.5 { - top: 0.625rem !important; - right: 0.625rem !important; - bottom: 0.625rem !important; - left: 0.625rem !important; + .md\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } - .md\:inset-3\.5 { - top: 0.875rem !important; - right: 0.875rem !important; - bottom: 0.875rem !important; - left: 0.875rem !important; + .md\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } - .md\:-inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; + .md\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } - .md\:-inset-1 { - top: -0.25rem !important; - right: -0.25rem !important; - bottom: -0.25rem !important; - left: -0.25rem !important; + .md\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } - .md\:-inset-2 { - top: -0.5rem !important; - right: -0.5rem !important; - bottom: -0.5rem !important; - left: -0.5rem !important; + .md\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } - .md\:-inset-3 { - top: -0.75rem !important; - right: -0.75rem !important; - bottom: -0.75rem !important; - left: -0.75rem !important; + .md\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } - .md\:-inset-4 { - top: -1rem !important; - right: -1rem !important; - bottom: -1rem !important; - left: -1rem !important; + .md\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } - .md\:-inset-5 { - top: -1.25rem !important; - right: -1.25rem !important; - bottom: -1.25rem !important; - left: -1.25rem !important; + .md\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } - .md\:-inset-6 { - top: -1.5rem !important; - right: -1.5rem !important; - bottom: -1.5rem !important; - left: -1.5rem !important; + .md\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } - .md\:-inset-7 { - top: -1.75rem !important; - right: -1.75rem !important; - bottom: -1.75rem !important; - left: -1.75rem !important; + .md\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } - .md\:-inset-8 { - top: -2rem !important; - right: -2rem !important; - bottom: -2rem !important; - left: -2rem !important; + .md\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; } - .md\:-inset-9 { - top: -2.25rem !important; - right: -2.25rem !important; - bottom: -2.25rem !important; - left: -2.25rem !important; + .group:hover .md\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; } - .md\:-inset-10 { - top: -2.5rem !important; - right: -2.5rem !important; - bottom: -2.5rem !important; - left: -2.5rem !important; + .group:hover .md\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } - .md\:-inset-11 { - top: -2.75rem !important; - right: -2.75rem !important; - bottom: -2.75rem !important; - left: -2.75rem !important; + .group:hover .md\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } - .md\:-inset-12 { - top: -3rem !important; - right: -3rem !important; - bottom: -3rem !important; - left: -3rem !important; + .group:hover .md\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } - .md\:-inset-14 { - top: -3.5rem !important; - right: -3.5rem !important; - bottom: -3.5rem !important; - left: -3.5rem !important; + .group:hover .md\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } - .md\:-inset-16 { - top: -4rem !important; - right: -4rem !important; - bottom: -4rem !important; - left: -4rem !important; + .group:hover .md\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } - .md\:-inset-20 { - top: -5rem !important; - right: -5rem !important; - bottom: -5rem !important; - left: -5rem !important; + .group:hover .md\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } - .md\:-inset-24 { - top: -6rem !important; - right: -6rem !important; - bottom: -6rem !important; - left: -6rem !important; + .group:hover .md\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } - .md\:-inset-28 { - top: -7rem !important; - right: -7rem !important; - bottom: -7rem !important; - left: -7rem !important; + .group:hover .md\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } - .md\:-inset-32 { - top: -8rem !important; - right: -8rem !important; - bottom: -8rem !important; - left: -8rem !important; + .group:hover .md\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } - .md\:-inset-36 { - top: -9rem !important; - right: -9rem !important; - bottom: -9rem !important; - left: -9rem !important; + .group:hover .md\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } - .md\:-inset-40 { - top: -10rem !important; - right: -10rem !important; - bottom: -10rem !important; - left: -10rem !important; + .group:hover .md\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } - .md\:-inset-44 { - top: -11rem !important; - right: -11rem !important; - bottom: -11rem !important; - left: -11rem !important; + .group:hover .md\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } - .md\:-inset-48 { - top: -12rem !important; - right: -12rem !important; - bottom: -12rem !important; - left: -12rem !important; + .group:hover .md\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } - .md\:-inset-52 { - top: -13rem !important; - right: -13rem !important; - bottom: -13rem !important; - left: -13rem !important; + .group:hover .md\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; } - .md\:-inset-56 { - top: -14rem !important; - right: -14rem !important; - bottom: -14rem !important; - left: -14rem !important; + .md\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; } - .md\:-inset-60 { - top: -15rem !important; - right: -15rem !important; - bottom: -15rem !important; - left: -15rem !important; + .md\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; } - .md\:-inset-64 { - top: -16rem !important; - right: -16rem !important; - bottom: -16rem !important; - left: -16rem !important; + .md\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; } - .md\:-inset-72 { - top: -18rem !important; - right: -18rem !important; - bottom: -18rem !important; - left: -18rem !important; + .md\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; } - .md\:-inset-80 { - top: -20rem !important; - right: -20rem !important; - bottom: -20rem !important; - left: -20rem !important; + .md\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; } - .md\:-inset-96 { - top: -24rem !important; - right: -24rem !important; - bottom: -24rem !important; - left: -24rem !important; + .md\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; } - .md\:-inset-px { - top: -1px !important; - right: -1px !important; - bottom: -1px !important; - left: -1px !important; + .md\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; } - .md\:-inset-0\.5 { - top: -0.125rem !important; - right: -0.125rem !important; - bottom: -0.125rem !important; - left: -0.125rem !important; + .md\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; } - .md\:-inset-1\.5 { - top: -0.375rem !important; - right: -0.375rem !important; - bottom: -0.375rem !important; - left: -0.375rem !important; + .md\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; } - .md\:-inset-2\.5 { - top: -0.625rem !important; - right: -0.625rem !important; - bottom: -0.625rem !important; - left: -0.625rem !important; + .md\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; } - .md\:-inset-3\.5 { - top: -0.875rem !important; - right: -0.875rem !important; - bottom: -0.875rem !important; - left: -0.875rem !important; + .md\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; } - .md\:inset-1\/2 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; + .md\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; } - .md\:inset-1\/3 { - top: 33.333333% !important; - right: 33.333333% !important; - bottom: 33.333333% !important; - left: 33.333333% !important; + .md\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; } - .md\:inset-2\/3 { - top: 66.666667% !important; - right: 66.666667% !important; - bottom: 66.666667% !important; - left: 66.666667% !important; + .md\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; } - .md\:inset-1\/4 { - top: 25% !important; - right: 25% !important; - bottom: 25% !important; - left: 25% !important; + .md\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; } - .md\:inset-2\/4 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; + .md\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; } - .md\:inset-3\/4 { - top: 75% !important; - right: 75% !important; - bottom: 75% !important; - left: 75% !important; + .md\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; } - .md\:inset-full { - top: 100% !important; - right: 100% !important; - bottom: 100% !important; - left: 100% !important; + .md\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; } - .md\:-inset-1\/2 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; + .md\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; } - .md\:-inset-1\/3 { - top: -33.333333% !important; - right: -33.333333% !important; - bottom: -33.333333% !important; - left: -33.333333% !important; + .md\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; } - .md\:-inset-2\/3 { - top: -66.666667% !important; - right: -66.666667% !important; - bottom: -66.666667% !important; - left: -66.666667% !important; + .md\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; } - .md\:-inset-1\/4 { - top: -25% !important; - right: -25% !important; - bottom: -25% !important; - left: -25% !important; + .md\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; } - .md\:-inset-2\/4 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; + .md\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; } - .md\:-inset-3\/4 { - top: -75% !important; - right: -75% !important; - bottom: -75% !important; - left: -75% !important; + .md\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; } - .md\:-inset-full { - top: -100% !important; - right: -100% !important; - bottom: -100% !important; - left: -100% !important; + .md\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; } - .md\:inset-y-0 { - top: 0px !important; - bottom: 0px !important; + .md\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; } - .md\:inset-x-0 { - right: 0px !important; - left: 0px !important; + .md\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; } - .md\:inset-y-1 { - top: 0.25rem !important; - bottom: 0.25rem !important; + .md\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; } - .md\:inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; + .md\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; } - .md\:inset-y-2 { - top: 0.5rem !important; - bottom: 0.5rem !important; + .md\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; } - .md\:inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; + .md\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; } - .md\:inset-y-3 { - top: 0.75rem !important; - bottom: 0.75rem !important; + .md\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; } - .md\:inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; + .md\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; } - .md\:inset-y-4 { - top: 1rem !important; - bottom: 1rem !important; + .md\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; } - .md\:inset-x-4 { - right: 1rem !important; - left: 1rem !important; + .md\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; } - .md\:inset-y-5 { - top: 1.25rem !important; - bottom: 1.25rem !important; + .md\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; } - .md\:inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; + .md\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; } - .md\:inset-y-6 { - top: 1.5rem !important; - bottom: 1.5rem !important; + .md\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; } - .md\:inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; + .md\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; } - .md\:inset-y-7 { - top: 1.75rem !important; - bottom: 1.75rem !important; + .md\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; } - .md\:inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; + .md\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; } - .md\:inset-y-8 { - top: 2rem !important; - bottom: 2rem !important; + .md\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; } - .md\:inset-x-8 { - right: 2rem !important; - left: 2rem !important; + .md\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; } - .md\:inset-y-9 { - top: 2.25rem !important; - bottom: 2.25rem !important; + .md\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; } - .md\:inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; + .md\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; } - .md\:inset-y-10 { - top: 2.5rem !important; - bottom: 2.5rem !important; + .md\:bg-none { + background-image: none !important; } - .md\:inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; + .md\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; } - .md\:inset-y-11 { - top: 2.75rem !important; - bottom: 2.75rem !important; + .md\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; } - .md\:inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; + .md\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; } - .md\:inset-y-12 { - top: 3rem !important; - bottom: 3rem !important; + .md\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; } - .md\:inset-x-12 { - right: 3rem !important; - left: 3rem !important; + .md\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; } - .md\:inset-y-14 { - top: 3.5rem !important; - bottom: 3.5rem !important; + .md\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; } - .md\:inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; + .md\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; } - .md\:inset-y-16 { - top: 4rem !important; - bottom: 4rem !important; + .md\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; } - .md\:inset-x-16 { - right: 4rem !important; - left: 4rem !important; + .md\:from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:inset-y-20 { - top: 5rem !important; - bottom: 5rem !important; + .md\:from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:inset-x-20 { - right: 5rem !important; - left: 5rem !important; + .md\:from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:inset-y-24 { - top: 6rem !important; - bottom: 6rem !important; + .md\:from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:inset-x-24 { - right: 6rem !important; - left: 6rem !important; + .md\:from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .md\:inset-y-28 { - top: 7rem !important; - bottom: 7rem !important; + .md\:from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .md\:inset-x-28 { - right: 7rem !important; - left: 7rem !important; + .md\:from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .md\:inset-y-32 { - top: 8rem !important; - bottom: 8rem !important; + .md\:from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .md\:inset-x-32 { - right: 8rem !important; - left: 8rem !important; + .md\:from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .md\:inset-y-36 { - top: 9rem !important; - bottom: 9rem !important; + .md\:from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .md\:inset-x-36 { - right: 9rem !important; - left: 9rem !important; + .md\:from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .md\:inset-y-40 { - top: 10rem !important; - bottom: 10rem !important; + .md\:from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .md\:inset-x-40 { - right: 10rem !important; - left: 10rem !important; + .md\:from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .md\:inset-y-44 { - top: 11rem !important; - bottom: 11rem !important; + .md\:from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .md\:inset-x-44 { - right: 11rem !important; - left: 11rem !important; + .md\:from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .md\:inset-y-48 { - top: 12rem !important; - bottom: 12rem !important; + .md\:from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .md\:inset-x-48 { - right: 12rem !important; - left: 12rem !important; + .md\:from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .md\:inset-y-52 { - top: 13rem !important; - bottom: 13rem !important; + .md\:from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .md\:inset-x-52 { - right: 13rem !important; - left: 13rem !important; + .md\:from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .md\:inset-y-56 { - top: 14rem !important; - bottom: 14rem !important; + .md\:from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .md\:inset-x-56 { - right: 14rem !important; - left: 14rem !important; + .md\:from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .md\:inset-y-60 { - top: 15rem !important; - bottom: 15rem !important; + .md\:from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .md\:inset-x-60 { - right: 15rem !important; - left: 15rem !important; + .md\:from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .md\:inset-y-64 { - top: 16rem !important; - bottom: 16rem !important; + .md\:from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .md\:inset-x-64 { - right: 16rem !important; - left: 16rem !important; + .md\:from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .md\:inset-y-72 { - top: 18rem !important; - bottom: 18rem !important; + .md\:from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .md\:inset-x-72 { - right: 18rem !important; - left: 18rem !important; + .md\:from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .md\:inset-y-80 { - top: 20rem !important; - bottom: 20rem !important; + .md\:from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .md\:inset-x-80 { - right: 20rem !important; - left: 20rem !important; + .md\:from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .md\:inset-y-96 { - top: 24rem !important; - bottom: 24rem !important; + .md\:from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .md\:inset-x-96 { - right: 24rem !important; - left: 24rem !important; + .md\:from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .md\:inset-y-auto { - top: auto !important; - bottom: auto !important; + .md\:from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .md\:inset-x-auto { - right: auto !important; - left: auto !important; + .md\:from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .md\:inset-y-px { - top: 1px !important; - bottom: 1px !important; + .md\:from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .md\:inset-x-px { - right: 1px !important; - left: 1px !important; + .md\:from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .md\:inset-y-0\.5 { - top: 0.125rem !important; - bottom: 0.125rem !important; + .md\:from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .md\:inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; + .md\:from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .md\:inset-y-1\.5 { - top: 0.375rem !important; - bottom: 0.375rem !important; + .md\:from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .md\:inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; + .md\:from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .md\:inset-y-2\.5 { - top: 0.625rem !important; - bottom: 0.625rem !important; + .md\:from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .md\:inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; + .md\:from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .md\:inset-y-3\.5 { - top: 0.875rem !important; - bottom: 0.875rem !important; + .md\:from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .md\:inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; + .md\:from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .md\:-inset-y-0 { - top: 0px !important; - bottom: 0px !important; + .md\:from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .md\:-inset-x-0 { - right: 0px !important; - left: 0px !important; + .md\:from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .md\:-inset-y-1 { - top: -0.25rem !important; - bottom: -0.25rem !important; + .md\:from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .md\:-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; + .md\:from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .md\:-inset-y-2 { - top: -0.5rem !important; - bottom: -0.5rem !important; + .md\:from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .md\:-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; + .md\:from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .md\:-inset-y-3 { - top: -0.75rem !important; - bottom: -0.75rem !important; + .md\:from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .md\:-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; + .md\:from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .md\:-inset-y-4 { - top: -1rem !important; - bottom: -1rem !important; + .md\:from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .md\:-inset-x-4 { - right: -1rem !important; - left: -1rem !important; + .md\:from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .md\:-inset-y-5 { - top: -1.25rem !important; - bottom: -1.25rem !important; + .md\:from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .md\:-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; + .md\:from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .md\:-inset-y-6 { - top: -1.5rem !important; - bottom: -1.5rem !important; + .md\:from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .md\:-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; + .md\:from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .md\:-inset-y-7 { - top: -1.75rem !important; - bottom: -1.75rem !important; + .md\:from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .md\:-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; + .md\:from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .md\:-inset-y-8 { - top: -2rem !important; - bottom: -2rem !important; + .md\:from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .md\:-inset-x-8 { - right: -2rem !important; - left: -2rem !important; + .md\:from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .md\:-inset-y-9 { - top: -2.25rem !important; - bottom: -2.25rem !important; + .md\:from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .md\:-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; + .md\:from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .md\:-inset-y-10 { - top: -2.5rem !important; - bottom: -2.5rem !important; + .md\:from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .md\:-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; + .md\:from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .md\:-inset-y-11 { - top: -2.75rem !important; - bottom: -2.75rem !important; + .md\:from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .md\:-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; + .md\:from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .md\:-inset-y-12 { - top: -3rem !important; - bottom: -3rem !important; + .md\:from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .md\:-inset-x-12 { - right: -3rem !important; - left: -3rem !important; + .md\:from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .md\:-inset-y-14 { - top: -3.5rem !important; - bottom: -3.5rem !important; + .md\:from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .md\:-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; + .md\:from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .md\:-inset-y-16 { - top: -4rem !important; - bottom: -4rem !important; + .md\:from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .md\:-inset-x-16 { - right: -4rem !important; - left: -4rem !important; + .md\:from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .md\:-inset-y-20 { - top: -5rem !important; - bottom: -5rem !important; + .md\:from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .md\:-inset-x-20 { - right: -5rem !important; - left: -5rem !important; + .md\:from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .md\:-inset-y-24 { - top: -6rem !important; - bottom: -6rem !important; + .md\:from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .md\:-inset-x-24 { - right: -6rem !important; - left: -6rem !important; + .md\:from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .md\:-inset-y-28 { - top: -7rem !important; - bottom: -7rem !important; + .md\:from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .md\:-inset-x-28 { - right: -7rem !important; - left: -7rem !important; + .md\:from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .md\:-inset-y-32 { - top: -8rem !important; - bottom: -8rem !important; + .md\:from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .md\:-inset-x-32 { - right: -8rem !important; - left: -8rem !important; + .md\:from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .md\:-inset-y-36 { - top: -9rem !important; - bottom: -9rem !important; + .md\:from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .md\:-inset-x-36 { - right: -9rem !important; - left: -9rem !important; + .md\:from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .md\:-inset-y-40 { - top: -10rem !important; - bottom: -10rem !important; + .md\:from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .md\:-inset-x-40 { - right: -10rem !important; - left: -10rem !important; + .md\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:-inset-y-44 { - top: -11rem !important; - bottom: -11rem !important; + .md\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:-inset-x-44 { - right: -11rem !important; - left: -11rem !important; + .md\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:-inset-y-48 { - top: -12rem !important; - bottom: -12rem !important; + .md\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:-inset-x-48 { - right: -12rem !important; - left: -12rem !important; + .md\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .md\:-inset-y-52 { - top: -13rem !important; - bottom: -13rem !important; + .md\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .md\:-inset-x-52 { - right: -13rem !important; - left: -13rem !important; + .md\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .md\:-inset-y-56 { - top: -14rem !important; - bottom: -14rem !important; + .md\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .md\:-inset-x-56 { - right: -14rem !important; - left: -14rem !important; + .md\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .md\:-inset-y-60 { - top: -15rem !important; - bottom: -15rem !important; + .md\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .md\:-inset-x-60 { - right: -15rem !important; - left: -15rem !important; + .md\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .md\:-inset-y-64 { - top: -16rem !important; - bottom: -16rem !important; + .md\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .md\:-inset-x-64 { - right: -16rem !important; - left: -16rem !important; + .md\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .md\:-inset-y-72 { - top: -18rem !important; - bottom: -18rem !important; + .md\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .md\:-inset-x-72 { - right: -18rem !important; - left: -18rem !important; + .md\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .md\:-inset-y-80 { - top: -20rem !important; - bottom: -20rem !important; + .md\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .md\:-inset-x-80 { - right: -20rem !important; - left: -20rem !important; + .md\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .md\:-inset-y-96 { - top: -24rem !important; - bottom: -24rem !important; + .md\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .md\:-inset-x-96 { - right: -24rem !important; - left: -24rem !important; + .md\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .md\:-inset-y-px { - top: -1px !important; - bottom: -1px !important; + .md\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .md\:-inset-x-px { - right: -1px !important; - left: -1px !important; + .md\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .md\:-inset-y-0\.5 { - top: -0.125rem !important; - bottom: -0.125rem !important; + .md\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .md\:-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; + .md\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .md\:-inset-y-1\.5 { - top: -0.375rem !important; - bottom: -0.375rem !important; + .md\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .md\:-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; + .md\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .md\:-inset-y-2\.5 { - top: -0.625rem !important; - bottom: -0.625rem !important; + .md\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .md\:-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; + .md\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .md\:-inset-y-3\.5 { - top: -0.875rem !important; - bottom: -0.875rem !important; + .md\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .md\:-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; + .md\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .md\:inset-y-1\/2 { - top: 50% !important; - bottom: 50% !important; + .md\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .md\:inset-x-1\/2 { - right: 50% !important; - left: 50% !important; + .md\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .md\:inset-y-1\/3 { - top: 33.333333% !important; - bottom: 33.333333% !important; + .md\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .md\:inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; + .md\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .md\:inset-y-2\/3 { - top: 66.666667% !important; - bottom: 66.666667% !important; + .md\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .md\:inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; + .md\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .md\:inset-y-1\/4 { - top: 25% !important; - bottom: 25% !important; + .md\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .md\:inset-x-1\/4 { - right: 25% !important; - left: 25% !important; + .md\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .md\:inset-y-2\/4 { - top: 50% !important; - bottom: 50% !important; + .md\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .md\:inset-x-2\/4 { - right: 50% !important; - left: 50% !important; + .md\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .md\:inset-y-3\/4 { - top: 75% !important; - bottom: 75% !important; + .md\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .md\:inset-x-3\/4 { - right: 75% !important; - left: 75% !important; + .md\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .md\:inset-y-full { - top: 100% !important; - bottom: 100% !important; + .md\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .md\:inset-x-full { - right: 100% !important; - left: 100% !important; + .md\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .md\:-inset-y-1\/2 { - top: -50% !important; - bottom: -50% !important; + .md\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .md\:-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; + .md\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .md\:-inset-y-1\/3 { - top: -33.333333% !important; - bottom: -33.333333% !important; + .md\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .md\:-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; + .md\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .md\:-inset-y-2\/3 { - top: -66.666667% !important; - bottom: -66.666667% !important; + .md\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .md\:-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; + .md\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .md\:-inset-y-1\/4 { - top: -25% !important; - bottom: -25% !important; + .md\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .md\:-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; + .md\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .md\:-inset-y-2\/4 { - top: -50% !important; - bottom: -50% !important; + .md\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .md\:-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; + .md\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .md\:-inset-y-3\/4 { - top: -75% !important; - bottom: -75% !important; + .md\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .md\:-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; + .md\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .md\:-inset-y-full { - top: -100% !important; - bottom: -100% !important; + .md\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .md\:-inset-x-full { - right: -100% !important; - left: -100% !important; + .md\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .md\:top-0 { - top: 0px !important; + .md\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .md\:right-0 { - right: 0px !important; + .md\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .md\:bottom-0 { - bottom: 0px !important; + .md\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .md\:left-0 { - left: 0px !important; + .md\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .md\:top-1 { - top: 0.25rem !important; + .md\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .md\:right-1 { - right: 0.25rem !important; + .md\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .md\:bottom-1 { - bottom: 0.25rem !important; + .md\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .md\:left-1 { - left: 0.25rem !important; + .md\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .md\:top-2 { - top: 0.5rem !important; + .md\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .md\:right-2 { - right: 0.5rem !important; + .md\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .md\:bottom-2 { - bottom: 0.5rem !important; + .md\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .md\:left-2 { - left: 0.5rem !important; + .md\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .md\:top-3 { - top: 0.75rem !important; + .md\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .md\:right-3 { - right: 0.75rem !important; + .md\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .md\:bottom-3 { - bottom: 0.75rem !important; + .md\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .md\:left-3 { - left: 0.75rem !important; + .md\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .md\:top-4 { - top: 1rem !important; + .md\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .md\:right-4 { - right: 1rem !important; + .md\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .md\:bottom-4 { - bottom: 1rem !important; + .md\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .md\:left-4 { - left: 1rem !important; + .md\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .md\:top-5 { - top: 1.25rem !important; + .md\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .md\:right-5 { - right: 1.25rem !important; + .md\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .md\:bottom-5 { - bottom: 1.25rem !important; + .md\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .md\:left-5 { - left: 1.25rem !important; + .md\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .md\:top-6 { - top: 1.5rem !important; + .md\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .md\:right-6 { - right: 1.5rem !important; + .md\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .md\:bottom-6 { - bottom: 1.5rem !important; + .md\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .md\:left-6 { - left: 1.5rem !important; + .md\:to-transparent { + --tw-gradient-to: transparent !important; } - .md\:top-7 { - top: 1.75rem !important; + .md\:to-current { + --tw-gradient-to: currentColor !important; } - .md\:right-7 { - right: 1.75rem !important; + .md\:to-black { + --tw-gradient-to: #000 !important; } - .md\:bottom-7 { - bottom: 1.75rem !important; + .md\:to-white { + --tw-gradient-to: #fff !important; } - .md\:left-7 { - left: 1.75rem !important; + .md\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; } - .md\:top-8 { - top: 2rem !important; + .md\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; } - .md\:right-8 { - right: 2rem !important; + .md\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; } - .md\:bottom-8 { - bottom: 2rem !important; + .md\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; } - .md\:left-8 { - left: 2rem !important; + .md\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; } - .md\:top-9 { - top: 2.25rem !important; + .md\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; } - .md\:right-9 { - right: 2.25rem !important; + .md\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; } - .md\:bottom-9 { - bottom: 2.25rem !important; + .md\:to-gray-700 { + --tw-gradient-to: #374151 !important; } - .md\:left-9 { - left: 2.25rem !important; + .md\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; } - .md\:top-10 { - top: 2.5rem !important; + .md\:to-gray-900 { + --tw-gradient-to: #111827 !important; } - .md\:right-10 { - right: 2.5rem !important; + .md\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; } - .md\:bottom-10 { - bottom: 2.5rem !important; + .md\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; } - .md\:left-10 { - left: 2.5rem !important; + .md\:to-red-200 { + --tw-gradient-to: #fecaca !important; } - .md\:top-11 { - top: 2.75rem !important; + .md\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; } - .md\:right-11 { - right: 2.75rem !important; + .md\:to-red-400 { + --tw-gradient-to: #f87171 !important; } - .md\:bottom-11 { - bottom: 2.75rem !important; + .md\:to-red-500 { + --tw-gradient-to: #ef4444 !important; } - .md\:left-11 { - left: 2.75rem !important; + .md\:to-red-600 { + --tw-gradient-to: #dc2626 !important; } - .md\:top-12 { - top: 3rem !important; + .md\:to-red-700 { + --tw-gradient-to: #b91c1c !important; } - .md\:right-12 { - right: 3rem !important; + .md\:to-red-800 { + --tw-gradient-to: #991b1b !important; } - .md\:bottom-12 { - bottom: 3rem !important; + .md\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; } - .md\:left-12 { - left: 3rem !important; + .md\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; } - .md\:top-14 { - top: 3.5rem !important; + .md\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; } - .md\:right-14 { - right: 3.5rem !important; + .md\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; } - .md\:bottom-14 { - bottom: 3.5rem !important; + .md\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; } - .md\:left-14 { - left: 3.5rem !important; + .md\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; } - .md\:top-16 { - top: 4rem !important; + .md\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; } - .md\:right-16 { - right: 4rem !important; + .md\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; } - .md\:bottom-16 { - bottom: 4rem !important; + .md\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; } - .md\:left-16 { - left: 4rem !important; + .md\:to-yellow-800 { + --tw-gradient-to: #92400e !important; } - .md\:top-20 { - top: 5rem !important; + .md\:to-yellow-900 { + --tw-gradient-to: #78350f !important; } - .md\:right-20 { - right: 5rem !important; + .md\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; } - .md\:bottom-20 { - bottom: 5rem !important; + .md\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; } - .md\:left-20 { - left: 5rem !important; + .md\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; } - .md\:top-24 { - top: 6rem !important; + .md\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; } - .md\:right-24 { - right: 6rem !important; + .md\:to-green-400 { + --tw-gradient-to: #34d399 !important; } - .md\:bottom-24 { - bottom: 6rem !important; + .md\:to-green-500 { + --tw-gradient-to: #10b981 !important; } - .md\:left-24 { - left: 6rem !important; + .md\:to-green-600 { + --tw-gradient-to: #059669 !important; } - .md\:top-28 { - top: 7rem !important; + .md\:to-green-700 { + --tw-gradient-to: #047857 !important; } - .md\:right-28 { - right: 7rem !important; + .md\:to-green-800 { + --tw-gradient-to: #065f46 !important; } - .md\:bottom-28 { - bottom: 7rem !important; + .md\:to-green-900 { + --tw-gradient-to: #064e3b !important; } - .md\:left-28 { - left: 7rem !important; + .md\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; } - .md\:top-32 { - top: 8rem !important; + .md\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; } - .md\:right-32 { - right: 8rem !important; + .md\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; } - .md\:bottom-32 { - bottom: 8rem !important; + .md\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; } - .md\:left-32 { - left: 8rem !important; + .md\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; } - .md\:top-36 { - top: 9rem !important; + .md\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; } - .md\:right-36 { - right: 9rem !important; + .md\:to-blue-600 { + --tw-gradient-to: #2563eb !important; } - .md\:bottom-36 { - bottom: 9rem !important; + .md\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; } - .md\:left-36 { - left: 9rem !important; + .md\:to-blue-800 { + --tw-gradient-to: #1e40af !important; } - .md\:top-40 { - top: 10rem !important; + .md\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; } - .md\:right-40 { - right: 10rem !important; + .md\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; } - .md\:bottom-40 { - bottom: 10rem !important; + .md\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; } - .md\:left-40 { - left: 10rem !important; + .md\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; } - .md\:top-44 { - top: 11rem !important; + .md\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; } - .md\:right-44 { - right: 11rem !important; + .md\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; } - .md\:bottom-44 { - bottom: 11rem !important; + .md\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; } - .md\:left-44 { - left: 11rem !important; + .md\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; } - .md\:top-48 { - top: 12rem !important; + .md\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; } - .md\:right-48 { - right: 12rem !important; + .md\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; } - .md\:bottom-48 { - bottom: 12rem !important; + .md\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; } - .md\:left-48 { - left: 12rem !important; + .md\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; } - .md\:top-52 { - top: 13rem !important; + .md\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; } - .md\:right-52 { - right: 13rem !important; + .md\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; } - .md\:bottom-52 { - bottom: 13rem !important; + .md\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; } - .md\:left-52 { - left: 13rem !important; + .md\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; } - .md\:top-56 { - top: 14rem !important; + .md\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; } - .md\:right-56 { - right: 14rem !important; + .md\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; } - .md\:bottom-56 { - bottom: 14rem !important; + .md\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; } - .md\:left-56 { - left: 14rem !important; + .md\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; } - .md\:top-60 { - top: 15rem !important; + .md\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; } - .md\:right-60 { - right: 15rem !important; + .md\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; } - .md\:bottom-60 { - bottom: 15rem !important; + .md\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; } - .md\:left-60 { - left: 15rem !important; + .md\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; } - .md\:top-64 { - top: 16rem !important; + .md\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; } - .md\:right-64 { - right: 16rem !important; + .md\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; } - .md\:bottom-64 { - bottom: 16rem !important; + .md\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; } - .md\:left-64 { - left: 16rem !important; + .md\:to-pink-600 { + --tw-gradient-to: #db2777 !important; } - .md\:top-72 { - top: 18rem !important; + .md\:to-pink-700 { + --tw-gradient-to: #be185d !important; } - .md\:right-72 { - right: 18rem !important; + .md\:to-pink-800 { + --tw-gradient-to: #9d174d !important; } - .md\:bottom-72 { - bottom: 18rem !important; + .md\:to-pink-900 { + --tw-gradient-to: #831843 !important; } - .md\:left-72 { - left: 18rem !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\:top-80 { - top: 20rem !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\:right-80 { - right: 20rem !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\:bottom-80 { - bottom: 20rem !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\:left-80 { - left: 20rem !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\:top-96 { - top: 24rem !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\:right-96 { - right: 24rem !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\:bottom-96 { - bottom: 24rem !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\:left-96 { - left: 24rem !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\:top-auto { - top: auto !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\:right-auto { - right: auto !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\:bottom-auto { - bottom: auto !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\:left-auto { - left: auto !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\:top-px { - top: 1px !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\:right-px { - right: 1px !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\:bottom-px { - bottom: 1px !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\:left-px { - left: 1px !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\:top-0\.5 { - top: 0.125rem !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\:right-0\.5 { - right: 0.125rem !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\:bottom-0\.5 { - bottom: 0.125rem !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\:left-0\.5 { - left: 0.125rem !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\:top-1\.5 { - top: 0.375rem !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\:right-1\.5 { - right: 0.375rem !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\:bottom-1\.5 { - bottom: 0.375rem !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\:left-1\.5 { - left: 0.375rem !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\:top-2\.5 { - top: 0.625rem !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\:right-2\.5 { - right: 0.625rem !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\:bottom-2\.5 { - bottom: 0.625rem !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\:left-2\.5 { - left: 0.625rem !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\:top-3\.5 { - top: 0.875rem !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\:right-3\.5 { - right: 0.875rem !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\:bottom-3\.5 { - bottom: 0.875rem !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\:left-3\.5 { - left: 0.875rem !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\:-top-0 { - top: 0px !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\:-right-0 { - right: 0px !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\:-bottom-0 { - bottom: 0px !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\:-left-0 { - left: 0px !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\:-top-1 { - top: -0.25rem !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\:-right-1 { - right: -0.25rem !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\:-bottom-1 { - bottom: -0.25rem !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\:-left-1 { - left: -0.25rem !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\:-top-2 { - top: -0.5rem !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\:-right-2 { - right: -0.5rem !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\:-bottom-2 { - bottom: -0.5rem !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\:-left-2 { - left: -0.5rem !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\:-top-3 { - top: -0.75rem !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\:-right-3 { - right: -0.75rem !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\:-bottom-3 { - bottom: -0.75rem !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\:-left-3 { - left: -0.75rem !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\:-top-4 { - top: -1rem !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\:-right-4 { - right: -1rem !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\:-bottom-4 { - bottom: -1rem !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\:-left-4 { - left: -1rem !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\:-top-5 { - top: -1.25rem !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\:-right-5 { - right: -1.25rem !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\:-bottom-5 { - bottom: -1.25rem !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\:-left-5 { - left: -1.25rem !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\:-top-6 { - top: -1.5rem !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\:-right-6 { - right: -1.5rem !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\:-bottom-6 { - bottom: -1.5rem !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\:-left-6 { - left: -1.5rem !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\:-top-7 { - top: -1.75rem !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\:-right-7 { - right: -1.75rem !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\:-bottom-7 { - bottom: -1.75rem !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\:-left-7 { - left: -1.75rem !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\:-top-8 { - top: -2rem !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\:-right-8 { - right: -2rem !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\:-bottom-8 { - bottom: -2rem !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\:-left-8 { - left: -2rem !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\:-top-9 { - top: -2.25rem !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\:-right-9 { - right: -2.25rem !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\:-bottom-9 { - bottom: -2.25rem !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\:-left-9 { - left: -2.25rem !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\:-top-10 { - top: -2.5rem !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\:-right-10 { - right: -2.5rem !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\:-bottom-10 { - bottom: -2.5rem !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\:-left-10 { - left: -2.5rem !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\:-top-11 { - top: -2.75rem !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\:-right-11 { - right: -2.75rem !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\:-bottom-11 { - bottom: -2.75rem !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\:-left-11 { - left: -2.75rem !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\:-top-12 { - top: -3rem !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\:-right-12 { - right: -3rem !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\:-bottom-12 { - bottom: -3rem !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\:-left-12 { - left: -3rem !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\:-top-14 { - top: -3.5rem !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\:-right-14 { - right: -3.5rem !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\:-bottom-14 { - bottom: -3.5rem !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\:-left-14 { - left: -3.5rem !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\:-top-16 { - top: -4rem !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\:-right-16 { - right: -4rem !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\:-bottom-16 { - bottom: -4rem !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\:-left-16 { - left: -4rem !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\:-top-20 { - top: -5rem !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\:-right-20 { - right: -5rem !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\:-bottom-20 { - bottom: -5rem !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\:-left-20 { - left: -5rem !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\:-top-24 { - top: -6rem !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\:-right-24 { - right: -6rem !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\:-bottom-24 { - bottom: -6rem !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\:-left-24 { - left: -6rem !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\:-top-28 { - top: -7rem !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\:-right-28 { - right: -7rem !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\:-bottom-28 { - bottom: -7rem !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\:-left-28 { - left: -7rem !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\:-top-32 { - top: -8rem !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\:-right-32 { - right: -8rem !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\:-bottom-32 { - bottom: -8rem !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\:-left-32 { - left: -8rem !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\:-top-36 { - top: -9rem !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\:-right-36 { - right: -9rem !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\:-bottom-36 { - bottom: -9rem !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\:-left-36 { - left: -9rem !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\:-top-40 { - top: -10rem !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\:-right-40 { - right: -10rem !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\:-bottom-40 { - bottom: -10rem !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\:-left-40 { - left: -10rem !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\:-top-44 { - top: -11rem !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\:-right-44 { - right: -11rem !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\:-bottom-44 { - bottom: -11rem !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\:-left-44 { - left: -11rem !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\:-top-48 { - top: -12rem !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\:-right-48 { - right: -12rem !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\:-bottom-48 { - bottom: -12rem !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\:-left-48 { - left: -12rem !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\:-top-52 { - top: -13rem !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\:-right-52 { - right: -13rem !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\:-bottom-52 { - bottom: -13rem !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\:-left-52 { - left: -13rem !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\:-top-56 { - top: -14rem !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\:-right-56 { - right: -14rem !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\:-bottom-56 { - bottom: -14rem !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\:-left-56 { - left: -14rem !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\:-top-60 { - top: -15rem !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\:-right-60 { - right: -15rem !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\:-bottom-60 { - bottom: -15rem !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\:-left-60 { - left: -15rem !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\:-top-64 { - top: -16rem !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\:-right-64 { - right: -16rem !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\:-bottom-64 { - bottom: -16rem !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\:-left-64 { - left: -16rem !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\:-top-72 { - top: -18rem !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\:-right-72 { - right: -18rem !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\:-bottom-72 { - bottom: -18rem !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\:-left-72 { - left: -18rem !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\:-top-80 { - top: -20rem !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\:-right-80 { - right: -20rem !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\:-bottom-80 { - bottom: -20rem !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\:-left-80 { - left: -20rem !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\:-top-96 { - top: -24rem !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\:-right-96 { - right: -24rem !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\:-bottom-96 { - bottom: -24rem !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\:-left-96 { - left: -24rem !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\:-top-px { - top: -1px !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\:-right-px { - right: -1px !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\:-bottom-px { - bottom: -1px !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\:-left-px { - left: -1px !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\:-top-0\.5 { - top: -0.125rem !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\:-right-0\.5 { - right: -0.125rem !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\:-bottom-0\.5 { - bottom: -0.125rem !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\:-left-0\.5 { - left: -0.125rem !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\:-top-1\.5 { - top: -0.375rem !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\:-right-1\.5 { - right: -0.375rem !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\:-bottom-1\.5 { - bottom: -0.375rem !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\:-left-1\.5 { - left: -0.375rem !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\:-top-2\.5 { - top: -0.625rem !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\:-right-2\.5 { - right: -0.625rem !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\:-bottom-2\.5 { - bottom: -0.625rem !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\:-left-2\.5 { - left: -0.625rem !important; + .md\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; } - .md\:-top-3\.5 { - top: -0.875rem !important; + .md\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; } - .md\:-right-3\.5 { - right: -0.875rem !important; + .md\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; } - .md\:-bottom-3\.5 { - bottom: -0.875rem !important; + .md\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; } - .md\:-left-3\.5 { - left: -0.875rem !important; + .md\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; } - .md\:top-1\/2 { - top: 50% !important; + .md\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; } - .md\:right-1\/2 { - right: 50% !important; + .md\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; } - .md\:bottom-1\/2 { - bottom: 50% !important; + .md\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; } - .md\:left-1\/2 { - left: 50% !important; + .md\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; } - .md\:top-1\/3 { - top: 33.333333% !important; + .md\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; } - .md\:right-1\/3 { - right: 33.333333% !important; + .md\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; } - .md\:bottom-1\/3 { - bottom: 33.333333% !important; + .md\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; } - .md\:left-1\/3 { - left: 33.333333% !important; + .md\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; } - .md\:top-2\/3 { - top: 66.666667% !important; + .md\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; } - .md\:right-2\/3 { - right: 66.666667% !important; + .md\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; } - .md\:bottom-2\/3 { - bottom: 66.666667% !important; + .md\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; } - .md\:left-2\/3 { - left: 66.666667% !important; + .md\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; } - .md\:top-1\/4 { - top: 25% !important; + .md\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; } - .md\:right-1\/4 { - right: 25% !important; + .md\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; } - .md\:bottom-1\/4 { - bottom: 25% !important; + .md\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; } - .md\:left-1\/4 { - left: 25% !important; + .md\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; } - .md\:top-2\/4 { - top: 50% !important; + .md\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; } - .md\:right-2\/4 { - right: 50% !important; + .md\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; } - .md\:bottom-2\/4 { - bottom: 50% !important; + .md\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; } - .md\:left-2\/4 { - left: 50% !important; + .md\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; } - .md\:top-3\/4 { - top: 75% !important; + .md\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; } - .md\:right-3\/4 { - right: 75% !important; + .md\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; } - .md\:bottom-3\/4 { - bottom: 75% !important; + .md\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; } - .md\:left-3\/4 { - left: 75% !important; + .md\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; } - .md\:top-full { - top: 100% !important; + .md\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; } - .md\:right-full { - right: 100% !important; + .md\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; } - .md\:bottom-full { - bottom: 100% !important; + .md\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; } - .md\:left-full { - left: 100% !important; + .md\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; } - .md\:-top-1\/2 { - top: -50% !important; + .md\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; } - .md\:-right-1\/2 { - right: -50% !important; + .md\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; } - .md\:-bottom-1\/2 { - bottom: -50% !important; + .md\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; } - .md\:-left-1\/2 { - left: -50% !important; + .md\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; } - .md\:-top-1\/3 { - top: -33.333333% !important; + .md\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; } - .md\:-right-1\/3 { - right: -33.333333% !important; + .md\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; } - .md\:-bottom-1\/3 { - bottom: -33.333333% !important; + .md\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; } - .md\:-left-1\/3 { - left: -33.333333% !important; + .md\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; } - .md\:-top-2\/3 { - top: -66.666667% !important; + .md\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; } - .md\:-right-2\/3 { - right: -66.666667% !important; + .md\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; } - .md\:-bottom-2\/3 { - bottom: -66.666667% !important; + .md\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; } - .md\:-left-2\/3 { - left: -66.666667% !important; + .md\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; } - .md\:-top-1\/4 { - top: -25% !important; + .md\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; } - .md\:-right-1\/4 { - right: -25% !important; + .md\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; } - .md\:-bottom-1\/4 { - bottom: -25% !important; + .md\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; } - .md\:-left-1\/4 { - left: -25% !important; + .md\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; } - .md\:-top-2\/4 { - top: -50% !important; + .md\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; } - .md\:-right-2\/4 { - right: -50% !important; + .md\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; } - .md\:-bottom-2\/4 { - bottom: -50% !important; + .md\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; } - .md\:-left-2\/4 { - left: -50% !important; + .md\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; } - .md\:-top-3\/4 { - top: -75% !important; + .md\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; } - .md\:-right-3\/4 { - right: -75% !important; + .md\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; } - .md\:-bottom-3\/4 { - bottom: -75% !important; + .md\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; } - .md\:-left-3\/4 { - left: -75% !important; + .md\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; } - .md\:-top-full { - top: -100% !important; + .md\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; } - .md\:-right-full { - right: -100% !important; + .md\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; } - .md\:-bottom-full { - bottom: -100% !important; + .md\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; } - .md\:-left-full { - left: -100% !important; + .md\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; } - .md\:resize-none { - resize: none !important; + .md\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; } - .md\:resize-y { - resize: vertical !important; + .md\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; } - .md\:resize-x { - resize: horizontal !important; + .md\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; } - .md\:resize { - resize: both !important; + .md\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; } - .md\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; } - .md\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; } - .md\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; } - .md\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; } - .md\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; } - .md\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; } - .md\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; } - .md\:shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; } - .group:hover .md\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; } - .group:hover .md\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; } - .group:hover .md\:group-hover\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; } - .group:hover .md\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; } - .group:hover .md\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; } - .group:hover .md\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; } - .group:hover .md\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; } - .group:hover .md\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; } - .md\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; } - .md\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; } - .md\:focus-within\:shadow-md:focus-within { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .md\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; } - .md\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-md:hover { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-none:hover { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-md:focus { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:ring-0 { - --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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-1 { - --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-2 { - --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-4 { - --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-8 { - --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring { - --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-inset { - --tw-ring-inset: inset !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\: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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset !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\: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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring: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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-inset:focus { - --tw-ring-inset: inset !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\:ring-offset-transparent { - --tw-ring-offset-color: transparent !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\:ring-offset-current { - --tw-ring-offset-color: currentColor !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\:ring-offset-black { - --tw-ring-offset-color: #000 !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\:ring-offset-white { - --tw-ring-offset-color: #fff !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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb !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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6 !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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb !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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db !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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af !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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280 !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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563 !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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151 !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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937 !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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827 !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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2 !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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2 !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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca !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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5 !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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171 !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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444 !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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626 !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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c !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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b !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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d !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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb !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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7 !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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a !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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d !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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24 !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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b !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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706 !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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309 !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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e !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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f !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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5 !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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5 !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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0 !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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7 !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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399 !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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981 !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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669 !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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857 !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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46 !important; + .md\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b !important; + .md\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff !important; + .md\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe !important; + .md\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe !important; + .md\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .md\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd !important; + .md\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .md\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa !important; + .md\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .md\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6 !important; + .md\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .md\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb !important; + .md\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .md\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8 !important; + .md\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .md\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af !important; + .md\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .md\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a !important; + .md\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .md\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff !important; + .md\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .md\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff !important; + .md\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .md\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe !important; + .md\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .md\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc !important; + .md\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .md\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8 !important; + .md\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .md\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1 !important; + .md\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .md\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5 !important; + .md\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .md\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca !important; + .md\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .md\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3 !important; + .md\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .md\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81 !important; + .md\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .md\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff !important; + .md\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .md\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe !important; + .md\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .md\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe !important; + .md\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .md\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd !important; + .md\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .md\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa !important; + .md\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .md\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6 !important; + .md\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .md\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed !important; + .md\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .md\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9 !important; + .md\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .md\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6 !important; + .md\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .md\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95 !important; + .md\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .md\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8 !important; + .md\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .md\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3 !important; + .md\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .md\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8 !important; + .md\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .md\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4 !important; + .md\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .md\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6 !important; + .md\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .md\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899 !important; + .md\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .md\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777 !important; + .md\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .md\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d !important; + .md\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .md\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d !important; + .md\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .md\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843 !important; + .md\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .md\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent !important; + .md\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .md\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor !important; + .md\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .md\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000 !important; + .md\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .md\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff !important; + .md\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .md\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb !important; + .md\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .md\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6 !important; + .md\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .md\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb !important; + .md\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .md\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db !important; + .md\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .md\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af !important; + .md\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .md\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280 !important; + .md\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .md\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563 !important; + .md\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .md\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151 !important; + .md\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .md\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937 !important; + .md\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .md\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827 !important; + .md\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .md\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2 !important; + .md\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .md\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2 !important; + .md\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .md\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca !important; + .md\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .md\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5 !important; + .md\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .md\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171 !important; + .md\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .md\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444 !important; + .md\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .md\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626 !important; + .md\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .md\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c !important; + .md\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .md\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b !important; + .md\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .md\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d !important; + .md\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .md\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb !important; + .md\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .md\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7 !important; + .md\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .md\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a !important; + .md\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .md\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d !important; + .md\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .md\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24 !important; + .md\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .md\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b !important; + .md\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .md\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706 !important; + .md\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .md\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309 !important; + .md\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .md\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e !important; + .md\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .md\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f !important; + .md\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .md\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5 !important; + .md\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .md\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5 !important; + .md\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .md\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0 !important; + .md\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .md\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7 !important; + .md\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .md\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399 !important; + .md\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .md\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981 !important; + .md\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .md\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669 !important; + .md\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .md\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857 !important; + .md\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .md\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46 !important; + .md\:focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; } - .md\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b !important; + .md\:focus\:to-current:focus { + --tw-gradient-to: currentColor !important; } - .md\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff !important; + .md\:focus\:to-black:focus { + --tw-gradient-to: #000 !important; } - .md\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe !important; + .md\:focus\:to-white:focus { + --tw-gradient-to: #fff !important; } - .md\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe !important; + .md\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; } - .md\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd !important; + .md\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; } - .md\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa !important; + .md\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; } - .md\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6 !important; + .md\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; } - .md\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb !important; + .md\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; } - .md\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8 !important; + .md\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; } - .md\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af !important; + .md\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; } - .md\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a !important; + .md\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; } - .md\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff !important; + .md\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; } - .md\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff !important; + .md\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; } - .md\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe !important; + .md\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; } - .md\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc !important; + .md\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; } - .md\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8 !important; + .md\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; } - .md\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1 !important; + .md\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; } - .md\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5 !important; + .md\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; } - .md\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca !important; + .md\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; } - .md\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3 !important; + .md\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; } - .md\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81 !important; + .md\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; } - .md\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff !important; + .md\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; } - .md\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe !important; + .md\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; } - .md\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe !important; + .md\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; } - .md\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd !important; + .md\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; } - .md\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa !important; + .md\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; } - .md\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6 !important; + .md\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; } - .md\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed !important; + .md\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; } - .md\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9 !important; + .md\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; } - .md\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6 !important; + .md\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; } - .md\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95 !important; + .md\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; } - .md\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8 !important; + .md\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; } - .md\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3 !important; + .md\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; } - .md\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8 !important; + .md\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; } - .md\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4 !important; + .md\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; } - .md\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6 !important; + .md\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; } - .md\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899 !important; + .md\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; } - .md\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777 !important; + .md\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; } - .md\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d !important; + .md\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; } - .md\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d !important; + .md\:focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; } - .md\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843 !important; + .md\:focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; } - .md\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent !important; + .md\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; } - .md\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor !important; + .md\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; } - .md\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000 !important; + .md\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; } - .md\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff !important; + .md\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; } - .md\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb !important; + .md\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; } - .md\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6 !important; + .md\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; } - .md\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb !important; + .md\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; } - .md\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db !important; + .md\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; } - .md\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af !important; + .md\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; } - .md\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280 !important; + .md\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; } - .md\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563 !important; + .md\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; } - .md\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151 !important; + .md\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; } - .md\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937 !important; + .md\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; } - .md\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827 !important; + .md\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; } - .md\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2 !important; + .md\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; } - .md\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2 !important; + .md\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; } - .md\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca !important; + .md\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; } - .md\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5 !important; + .md\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; } - .md\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171 !important; + .md\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; } - .md\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444 !important; + .md\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; } - .md\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626 !important; + .md\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; } - .md\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c !important; + .md\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; } - .md\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b !important; + .md\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; } - .md\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d !important; + .md\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; } - .md\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb !important; + .md\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; } - .md\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7 !important; + .md\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; } - .md\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a !important; + .md\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; } - .md\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d !important; + .md\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; } - .md\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24 !important; + .md\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; } - .md\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b !important; + .md\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; } - .md\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706 !important; + .md\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; } - .md\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309 !important; + .md\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; } - .md\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e !important; + .md\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; } - .md\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f !important; + .md\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; } - .md\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5 !important; + .md\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; } - .md\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5 !important; + .md\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; } - .md\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0 !important; + .md\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; } - .md\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7 !important; + .md\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; } - .md\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399 !important; + .md\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; } - .md\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981 !important; + .md\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; } - .md\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669 !important; + .md\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; } - .md\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857 !important; + .md\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; } - .md\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46 !important; + .md\:decoration-slice { + box-decoration-break: slice !important; } - .md\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b !important; + .md\:decoration-clone { + box-decoration-break: clone !important; } - .md\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff !important; + .md\:bg-auto { + background-size: auto !important; } - .md\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe !important; + .md\:bg-cover { + background-size: cover !important; } - .md\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe !important; + .md\:bg-contain { + background-size: contain !important; } - .md\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd !important; + .md\:bg-fixed { + background-attachment: fixed !important; } - .md\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa !important; + .md\:bg-local { + background-attachment: local !important; } - .md\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6 !important; + .md\:bg-scroll { + background-attachment: scroll !important; } - .md\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb !important; + .md\:bg-clip-border { + background-clip: border-box !important; } - .md\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8 !important; + .md\:bg-clip-padding { + background-clip: padding-box !important; } - .md\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af !important; + .md\:bg-clip-content { + background-clip: content-box !important; } - .md\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a !important; + .md\:bg-clip-text { + background-clip: text !important; } - .md\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff !important; + .md\:bg-bottom { + background-position: bottom !important; } - .md\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff !important; + .md\:bg-center { + background-position: center !important; } - .md\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe !important; + .md\:bg-left { + background-position: left !important; } - .md\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc !important; + .md\:bg-left-bottom { + background-position: left bottom !important; } - .md\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8 !important; + .md\:bg-left-top { + background-position: left top !important; } - .md\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1 !important; + .md\:bg-right { + background-position: right !important; } - .md\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5 !important; + .md\:bg-right-bottom { + background-position: right bottom !important; } - .md\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca !important; + .md\:bg-right-top { + background-position: right top !important; } - .md\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3 !important; + .md\:bg-top { + background-position: top !important; } - .md\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81 !important; + .md\:bg-repeat { + background-repeat: repeat !important; } - .md\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff !important; + .md\:bg-no-repeat { + background-repeat: no-repeat !important; } - .md\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe !important; + .md\:bg-repeat-x { + background-repeat: repeat-x !important; } - .md\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe !important; + .md\:bg-repeat-y { + background-repeat: repeat-y !important; } - .md\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd !important; + .md\:bg-repeat-round { + background-repeat: round !important; } - .md\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa !important; + .md\:bg-repeat-space { + background-repeat: space !important; } - .md\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6 !important; + .md\:bg-origin-border { + background-origin: border-box !important; } - .md\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed !important; + .md\:bg-origin-padding { + background-origin: padding-box !important; } - .md\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9 !important; + .md\:bg-origin-content { + background-origin: content-box !important; } - .md\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6 !important; + .md\:fill-current { + fill: currentColor !important; } - .md\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95 !important; + .md\:stroke-current { + stroke: currentColor !important; } - .md\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8 !important; + .md\:stroke-0 { + stroke-width: 0 !important; } - .md\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3 !important; + .md\:stroke-1 { + stroke-width: 1 !important; } - .md\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8 !important; + .md\:stroke-2 { + stroke-width: 2 !important; } - .md\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4 !important; + .md\:object-contain { + object-fit: contain !important; } - .md\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6 !important; + .md\:object-cover { + object-fit: cover !important; } - .md\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899 !important; + .md\:object-fill { + object-fit: fill !important; } - .md\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777 !important; + .md\:object-none { + object-fit: none !important; } - .md\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d !important; + .md\:object-scale-down { + object-fit: scale-down !important; } - .md\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d !important; + .md\:object-bottom { + object-position: bottom !important; } - .md\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843 !important; + .md\:object-center { + object-position: center !important; } - .md\:ring-offset-0 { - --tw-ring-offset-width: 0px !important; + .md\:object-left { + object-position: left !important; } - .md\:ring-offset-1 { - --tw-ring-offset-width: 1px !important; + .md\:object-left-bottom { + object-position: left bottom !important; } - .md\:ring-offset-2 { - --tw-ring-offset-width: 2px !important; + .md\:object-left-top { + object-position: left top !important; } - .md\:ring-offset-4 { - --tw-ring-offset-width: 4px !important; + .md\:object-right { + object-position: right !important; } - .md\:ring-offset-8 { - --tw-ring-offset-width: 8px !important; + .md\:object-right-bottom { + object-position: right bottom !important; } - .md\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px !important; + .md\:object-right-top { + object-position: right top !important; } - .md\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px !important; + .md\:object-top { + object-position: top !important; } - .md\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px !important; + .md\:p-0 { + padding: 0px !important; } - .md\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px !important; + .md\:p-1 { + padding: 0.25rem !important; } - .md\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px !important; + .md\:p-2 { + padding: 0.5rem !important; } - .md\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px !important; + .md\:p-3 { + padding: 0.75rem !important; } - .md\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px !important; + .md\:p-4 { + padding: 1rem !important; } - .md\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px !important; + .md\:p-5 { + padding: 1.25rem !important; } - .md\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px !important; + .md\:p-6 { + padding: 1.5rem !important; } - .md\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px !important; + .md\:p-7 { + padding: 1.75rem !important; } - .md\:ring-transparent { - --tw-ring-color: transparent !important; + .md\:p-8 { + padding: 2rem !important; } - .md\:ring-current { - --tw-ring-color: currentColor !important; + .md\:p-9 { + padding: 2.25rem !important; } - .md\:ring-black { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .md\:p-10 { + padding: 2.5rem !important; } - .md\:ring-white { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .md\:p-11 { + padding: 2.75rem !important; } - .md\:ring-gray-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .md\:p-12 { + padding: 3rem !important; } - .md\:ring-gray-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .md\:p-14 { + padding: 3.5rem !important; } - .md\:ring-gray-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .md\:p-16 { + padding: 4rem !important; } - .md\:ring-gray-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .md\:p-20 { + padding: 5rem !important; } - .md\:ring-gray-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .md\:p-24 { + padding: 6rem !important; } - .md\:ring-gray-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .md\:p-28 { + padding: 7rem !important; } - .md\:ring-gray-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .md\:p-32 { + padding: 8rem !important; } - .md\:ring-gray-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .md\:p-36 { + padding: 9rem !important; } - .md\:ring-gray-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .md\:p-40 { + padding: 10rem !important; } - .md\:ring-gray-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .md\:p-44 { + padding: 11rem !important; } - .md\:ring-red-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .md\:p-48 { + padding: 12rem !important; } - .md\:ring-red-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .md\:p-52 { + padding: 13rem !important; } - .md\:ring-red-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .md\:p-56 { + padding: 14rem !important; } - .md\:ring-red-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .md\:p-60 { + padding: 15rem !important; } - .md\:ring-red-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .md\:p-64 { + padding: 16rem !important; } - .md\:ring-red-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .md\:p-72 { + padding: 18rem !important; } - .md\:ring-red-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .md\:p-80 { + padding: 20rem !important; } - .md\:ring-red-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .md\:p-96 { + padding: 24rem !important; } - .md\:ring-red-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .md\:p-px { + padding: 1px !important; } - .md\:ring-red-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .md\:p-0\.5 { + padding: 0.125rem !important; } - .md\:ring-yellow-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .md\:p-1\.5 { + padding: 0.375rem !important; } - .md\:ring-yellow-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .md\:p-2\.5 { + padding: 0.625rem !important; } - .md\:ring-yellow-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .md\:p-3\.5 { + padding: 0.875rem !important; } - .md\:ring-yellow-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .md\:px-0 { + padding-left: 0px !important; + padding-right: 0px !important; } - .md\:ring-yellow-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .md\:px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; } - .md\:ring-yellow-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .md\:px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; } - .md\:ring-yellow-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .md\:px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; } - .md\:ring-yellow-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .md\:px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; } - .md\:ring-yellow-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .md\:px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; } - .md\:ring-yellow-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .md\:px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; } - .md\:ring-green-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .md\:px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; } - .md\:ring-green-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .md\:px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; } - .md\:ring-green-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .md\:px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; } - .md\:ring-green-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .md\:px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; } - .md\:ring-green-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .md\:px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; } - .md\:ring-green-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .md\:px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; } - .md\:ring-green-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .md\:px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; } - .md\:ring-green-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .md\:px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; } - .md\:ring-green-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .md\:px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; } - .md\:ring-green-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .md\:px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; } - .md\:ring-blue-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .md\:px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; } - .md\:ring-blue-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .md\:px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; } - .md\:ring-blue-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .md\:px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; } - .md\:ring-blue-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .md\:px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; } - .md\:ring-blue-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .md\:px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; } - .md\:ring-blue-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .md\:px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; } - .md\:ring-blue-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .md\:px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; } - .md\:ring-blue-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .md\:px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; } - .md\:ring-blue-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .md\:px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; } - .md\:ring-blue-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .md\:px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; } - .md\:ring-indigo-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .md\:px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; } - .md\:ring-indigo-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .md\:px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; } - .md\:ring-indigo-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .md\:px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; } - .md\:ring-indigo-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .md\:px-px { + padding-left: 1px !important; + padding-right: 1px !important; } - .md\:ring-indigo-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .md\:px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; } - .md\:ring-indigo-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .md\:px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; } - .md\:ring-indigo-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .md\:px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; } - .md\:ring-indigo-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .md\:px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; } - .md\:ring-indigo-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .md\:py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; } - .md\:ring-indigo-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .md\:py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } - .md\:ring-purple-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .md\:py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } - .md\:ring-purple-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .md\:py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; } - .md\:ring-purple-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .md\:py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } - .md\:ring-purple-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .md\:py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; } - .md\:ring-purple-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .md\:py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } - .md\:ring-purple-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .md\:py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; } - .md\:ring-purple-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .md\:py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; } - .md\:ring-purple-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .md\:py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; } - .md\:ring-purple-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .md\:py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; } - .md\:ring-purple-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .md\:py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; } - .md\:ring-pink-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .md\:py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } - .md\:ring-pink-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .md\:py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; } - .md\:ring-pink-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .md\:py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; } - .md\:ring-pink-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .md\:py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; } - .md\:ring-pink-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .md\:py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; } - .md\:ring-pink-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .md\:py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; } - .md\:ring-pink-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .md\:py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; } - .md\:ring-pink-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .md\:py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; } - .md\:ring-pink-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .md\:py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; } - .md\:ring-pink-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .md\:py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; } - .md\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent !important; + .md\:py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; } - .md\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor !important; + .md\:py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; } - .md\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .md\:py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; } - .md\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .md\:py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; } - .md\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .md\:py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; } - .md\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .md\:py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; } - .md\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .md\:py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; } - .md\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .md\:py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; } - .md\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .md\:py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; } - .md\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .md\:py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; } - .md\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .md\:py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; } - .md\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .md\:py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; } - .md\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .md\:py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; } - .md\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .md\:pt-0 { + padding-top: 0px !important; } - .md\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .md\:pt-1 { + padding-top: 0.25rem !important; } - .md\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .md\:pt-2 { + padding-top: 0.5rem !important; } - .md\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .md\:pt-3 { + padding-top: 0.75rem !important; } - .md\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .md\:pt-4 { + padding-top: 1rem !important; } - .md\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .md\:pt-5 { + padding-top: 1.25rem !important; } - .md\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .md\:pt-6 { + padding-top: 1.5rem !important; } - .md\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .md\:pt-7 { + padding-top: 1.75rem !important; } - .md\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .md\:pt-8 { + padding-top: 2rem !important; } - .md\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .md\:pt-9 { + padding-top: 2.25rem !important; } - .md\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .md\:pt-10 { + padding-top: 2.5rem !important; } - .md\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .md\:pt-11 { + padding-top: 2.75rem !important; } - .md\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .md\:pt-12 { + padding-top: 3rem !important; } - .md\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .md\:pt-14 { + padding-top: 3.5rem !important; } - .md\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .md\:pt-16 { + padding-top: 4rem !important; } - .md\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .md\:pt-20 { + padding-top: 5rem !important; } - .md\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .md\:pt-24 { + padding-top: 6rem !important; } - .md\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .md\:pt-28 { + padding-top: 7rem !important; } - .md\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .md\:pt-32 { + padding-top: 8rem !important; } - .md\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .md\:pt-36 { + padding-top: 9rem !important; } - .md\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .md\:pt-40 { + padding-top: 10rem !important; } - .md\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .md\:pt-44 { + padding-top: 11rem !important; } - .md\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .md\:pt-48 { + padding-top: 12rem !important; } - .md\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .md\:pt-52 { + padding-top: 13rem !important; } - .md\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .md\:pt-56 { + padding-top: 14rem !important; } - .md\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .md\:pt-60 { + padding-top: 15rem !important; } - .md\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .md\:pt-64 { + padding-top: 16rem !important; } - .md\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .md\:pt-72 { + padding-top: 18rem !important; } - .md\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .md\:pt-80 { + padding-top: 20rem !important; } - .md\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .md\:pt-96 { + padding-top: 24rem !important; } - .md\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .md\:pt-px { + padding-top: 1px !important; } - .md\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .md\:pt-0\.5 { + padding-top: 0.125rem !important; } - .md\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .md\:pt-1\.5 { + padding-top: 0.375rem !important; } - .md\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .md\:pt-2\.5 { + padding-top: 0.625rem !important; } - .md\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .md\:pt-3\.5 { + padding-top: 0.875rem !important; } - .md\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .md\:pr-0 { + padding-right: 0px !important; } - .md\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .md\:pr-1 { + padding-right: 0.25rem !important; } - .md\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .md\:pr-2 { + padding-right: 0.5rem !important; } - .md\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .md\:pr-3 { + padding-right: 0.75rem !important; } - .md\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .md\:pr-4 { + padding-right: 1rem !important; } - .md\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .md\:pr-5 { + padding-right: 1.25rem !important; } - .md\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .md\:pr-6 { + padding-right: 1.5rem !important; } - .md\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .md\:pr-7 { + padding-right: 1.75rem !important; } - .md\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .md\:pr-8 { + padding-right: 2rem !important; } - .md\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .md\:pr-9 { + padding-right: 2.25rem !important; } - .md\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .md\:pr-10 { + padding-right: 2.5rem !important; } - .md\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .md\:pr-11 { + padding-right: 2.75rem !important; } - .md\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .md\:pr-12 { + padding-right: 3rem !important; } - .md\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .md\:pr-14 { + padding-right: 3.5rem !important; } - .md\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .md\:pr-16 { + padding-right: 4rem !important; } - .md\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .md\:pr-20 { + padding-right: 5rem !important; } - .md\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .md\:pr-24 { + padding-right: 6rem !important; } - .md\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .md\:pr-28 { + padding-right: 7rem !important; } - .md\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .md\:pr-32 { + padding-right: 8rem !important; } - .md\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .md\:pr-36 { + padding-right: 9rem !important; } - .md\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .md\:pr-40 { + padding-right: 10rem !important; } - .md\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .md\:pr-44 { + padding-right: 11rem !important; } - .md\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .md\:pr-48 { + padding-right: 12rem !important; } - .md\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .md\:pr-52 { + padding-right: 13rem !important; } - .md\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .md\:pr-56 { + padding-right: 14rem !important; } - .md\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .md\:pr-60 { + padding-right: 15rem !important; } - .md\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .md\:pr-64 { + padding-right: 16rem !important; } - .md\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .md\:pr-72 { + padding-right: 18rem !important; } - .md\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .md\:pr-80 { + padding-right: 20rem !important; } - .md\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .md\:pr-96 { + padding-right: 24rem !important; } - .md\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .md\:pr-px { + padding-right: 1px !important; } - .md\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .md\:pr-0\.5 { + padding-right: 0.125rem !important; } - .md\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .md\:pr-1\.5 { + padding-right: 0.375rem !important; } - .md\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .md\:pr-2\.5 { + padding-right: 0.625rem !important; } - .md\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .md\:pr-3\.5 { + padding-right: 0.875rem !important; } - .md\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .md\:pb-0 { + padding-bottom: 0px !important; } - .md\:focus\:ring-transparent:focus { - --tw-ring-color: transparent !important; + .md\:pb-1 { + padding-bottom: 0.25rem !important; } - .md\:focus\:ring-current:focus { - --tw-ring-color: currentColor !important; + .md\:pb-2 { + padding-bottom: 0.5rem !important; } - .md\:focus\:ring-black:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .md\:pb-3 { + padding-bottom: 0.75rem !important; } - .md\:focus\:ring-white:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .md\:pb-4 { + padding-bottom: 1rem !important; } - .md\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .md\:pb-5 { + padding-bottom: 1.25rem !important; } - .md\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .md\:pb-6 { + padding-bottom: 1.5rem !important; } - .md\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .md\:pb-7 { + padding-bottom: 1.75rem !important; } - .md\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .md\:pb-8 { + padding-bottom: 2rem !important; } - .md\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .md\:pb-9 { + padding-bottom: 2.25rem !important; } - .md\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .md\:pb-10 { + padding-bottom: 2.5rem !important; } - .md\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .md\:pb-11 { + padding-bottom: 2.75rem !important; } - .md\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .md\:pb-12 { + padding-bottom: 3rem !important; } - .md\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .md\:pb-14 { + padding-bottom: 3.5rem !important; } - .md\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .md\:pb-16 { + padding-bottom: 4rem !important; } - .md\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .md\:pb-20 { + padding-bottom: 5rem !important; } - .md\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .md\:pb-24 { + padding-bottom: 6rem !important; } - .md\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .md\:pb-28 { + padding-bottom: 7rem !important; } - .md\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .md\:pb-32 { + padding-bottom: 8rem !important; } - .md\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .md\:pb-36 { + padding-bottom: 9rem !important; } - .md\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .md\:pb-40 { + padding-bottom: 10rem !important; } - .md\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .md\:pb-44 { + padding-bottom: 11rem !important; } - .md\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .md\:pb-48 { + padding-bottom: 12rem !important; } - .md\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .md\:pb-52 { + padding-bottom: 13rem !important; } - .md\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .md\:pb-56 { + padding-bottom: 14rem !important; } - .md\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .md\:pb-60 { + padding-bottom: 15rem !important; } - .md\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .md\:pb-64 { + padding-bottom: 16rem !important; } - .md\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .md\:pb-72 { + padding-bottom: 18rem !important; } - .md\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .md\:pb-80 { + padding-bottom: 20rem !important; } - .md\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .md\:pb-96 { + padding-bottom: 24rem !important; } - .md\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .md\:pb-px { + padding-bottom: 1px !important; } - .md\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .md\:pb-0\.5 { + padding-bottom: 0.125rem !important; } - .md\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .md\:pb-1\.5 { + padding-bottom: 0.375rem !important; } - .md\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .md\:pb-2\.5 { + padding-bottom: 0.625rem !important; } - .md\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .md\:pb-3\.5 { + padding-bottom: 0.875rem !important; } - .md\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .md\:pl-0 { + padding-left: 0px !important; } - .md\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .md\:pl-1 { + padding-left: 0.25rem !important; } - .md\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .md\:pl-2 { + padding-left: 0.5rem !important; } - .md\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .md\:pl-3 { + padding-left: 0.75rem !important; } - .md\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .md\:pl-4 { + padding-left: 1rem !important; } - .md\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .md\:pl-5 { + padding-left: 1.25rem !important; } - .md\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .md\:pl-6 { + padding-left: 1.5rem !important; } - .md\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .md\:pl-7 { + padding-left: 1.75rem !important; } - .md\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .md\:pl-8 { + padding-left: 2rem !important; } - .md\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .md\:pl-9 { + padding-left: 2.25rem !important; } - .md\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .md\:pl-10 { + padding-left: 2.5rem !important; } - .md\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .md\:pl-11 { + padding-left: 2.75rem !important; } - .md\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .md\:pl-12 { + padding-left: 3rem !important; } - .md\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .md\:pl-14 { + padding-left: 3.5rem !important; } - .md\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .md\:pl-16 { + padding-left: 4rem !important; } - .md\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .md\:pl-20 { + padding-left: 5rem !important; } - .md\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .md\:pl-24 { + padding-left: 6rem !important; } - .md\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .md\:pl-28 { + padding-left: 7rem !important; } - .md\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .md\:pl-32 { + padding-left: 8rem !important; } - .md\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .md\:pl-36 { + padding-left: 9rem !important; } - .md\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .md\:pl-40 { + padding-left: 10rem !important; } - .md\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .md\:pl-44 { + padding-left: 11rem !important; } - .md\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .md\:pl-48 { + padding-left: 12rem !important; } - .md\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .md\:pl-52 { + padding-left: 13rem !important; } - .md\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .md\:pl-56 { + padding-left: 14rem !important; } - .md\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .md\:pl-60 { + padding-left: 15rem !important; } - .md\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .md\:pl-64 { + padding-left: 16rem !important; } - .md\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .md\:pl-72 { + padding-left: 18rem !important; } - .md\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .md\:pl-80 { + padding-left: 20rem !important; } - .md\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .md\:pl-96 { + padding-left: 24rem !important; } - .md\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .md\:pl-px { + padding-left: 1px !important; } - .md\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .md\:pl-0\.5 { + padding-left: 0.125rem !important; } - .md\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .md\:pl-1\.5 { + padding-left: 0.375rem !important; } - .md\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .md\:pl-2\.5 { + padding-left: 0.625rem !important; } - .md\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .md\:pl-3\.5 { + padding-left: 0.875rem !important; } - .md\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .md\:text-left { + text-align: left !important; } - .md\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .md\:text-center { + text-align: center !important; } - .md\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .md\:text-right { + text-align: right !important; } - .md\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .md\:text-justify { + text-align: justify !important; } - .md\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .md\:align-baseline { + vertical-align: baseline !important; } - .md\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .md\:align-top { + vertical-align: top !important; } - .md\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .md\:align-middle { + vertical-align: middle !important; } - .md\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .md\:align-bottom { + vertical-align: bottom !important; } - .md\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .md\:align-text-top { + vertical-align: text-top !important; } - .md\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .md\:align-text-bottom { + vertical-align: text-bottom !important; } - .md\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .md\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; } - .md\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .md\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; } - .md\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .md\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; } - .md\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .md\:text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; } - .md\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .md\:text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; } - .md\:ring-opacity-0 { - --tw-ring-opacity: 0 !important; + .md\:text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; } - .md\:ring-opacity-5 { - --tw-ring-opacity: 0.05 !important; + .md\:text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; } - .md\:ring-opacity-10 { - --tw-ring-opacity: 0.1 !important; + .md\:text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; } - .md\:ring-opacity-20 { - --tw-ring-opacity: 0.2 !important; + .md\:text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; } - .md\:ring-opacity-25 { - --tw-ring-opacity: 0.25 !important; + .md\:text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; } - .md\:ring-opacity-30 { - --tw-ring-opacity: 0.3 !important; + .md\:text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; } - .md\:ring-opacity-40 { - --tw-ring-opacity: 0.4 !important; + .md\:text-5xl { + font-size: 3rem !important; + line-height: 1 !important; } - .md\:ring-opacity-50 { - --tw-ring-opacity: 0.5 !important; + .md\:text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; } - .md\:ring-opacity-60 { - --tw-ring-opacity: 0.6 !important; + .md\:text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; } - .md\:ring-opacity-70 { - --tw-ring-opacity: 0.7 !important; + .md\:text-8xl { + font-size: 6rem !important; + line-height: 1 !important; } - .md\:ring-opacity-75 { - --tw-ring-opacity: 0.75 !important; + .md\:text-9xl { + font-size: 8rem !important; + line-height: 1 !important; } - .md\:ring-opacity-80 { - --tw-ring-opacity: 0.8 !important; + .md\:font-thin { + font-weight: 100 !important; } - .md\:ring-opacity-90 { - --tw-ring-opacity: 0.9 !important; + .md\:font-extralight { + font-weight: 200 !important; } - .md\:ring-opacity-95 { - --tw-ring-opacity: 0.95 !important; + .md\:font-light { + font-weight: 300 !important; } - .md\:ring-opacity-100 { - --tw-ring-opacity: 1 !important; + .md\:font-normal { + font-weight: 400 !important; } - .md\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0 !important; + .md\:font-medium { + font-weight: 500 !important; } - .md\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05 !important; + .md\:font-semibold { + font-weight: 600 !important; } - .md\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1 !important; + .md\:font-bold { + font-weight: 700 !important; } - .md\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2 !important; + .md\:font-extrabold { + font-weight: 800 !important; } - .md\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25 !important; + .md\:font-black { + font-weight: 900 !important; } - .md\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3 !important; + .md\:uppercase { + text-transform: uppercase !important; } - .md\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4 !important; + .md\:lowercase { + text-transform: lowercase !important; } - .md\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5 !important; + .md\:capitalize { + text-transform: capitalize !important; } - .md\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6 !important; + .md\:normal-case { + text-transform: none !important; } - .md\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7 !important; + .md\:italic { + font-style: italic !important; } - .md\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75 !important; + .md\:not-italic { + font-style: normal !important; } - .md\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8 !important; + .md\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; } - .md\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9 !important; + .md\:normal-nums { + font-variant-numeric: normal !important; } - .md\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95 !important; + .md\:ordinal { + --tw-ordinal: ordinal !important; } - .md\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1 !important; + .md\:slashed-zero { + --tw-slashed-zero: slashed-zero !important; } - .md\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0 !important; + .md\:lining-nums { + --tw-numeric-figure: lining-nums !important; } - .md\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05 !important; + .md\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; } - .md\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1 !important; + .md\:proportional-nums { + --tw-numeric-spacing: proportional-nums !important; } - .md\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2 !important; + .md\:tabular-nums { + --tw-numeric-spacing: tabular-nums !important; } - .md\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25 !important; + .md\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; } - .md\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3 !important; + .md\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; } - .md\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4 !important; + .md\:leading-3 { + line-height: .75rem !important; } - .md\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5 !important; + .md\:leading-4 { + line-height: 1rem !important; } - .md\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6 !important; + .md\:leading-5 { + line-height: 1.25rem !important; } - .md\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7 !important; + .md\:leading-6 { + line-height: 1.5rem !important; } - .md\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75 !important; + .md\:leading-7 { + line-height: 1.75rem !important; } - .md\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8 !important; + .md\:leading-8 { + line-height: 2rem !important; } - .md\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9 !important; + .md\:leading-9 { + line-height: 2.25rem !important; } - .md\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95 !important; + .md\:leading-10 { + line-height: 2.5rem !important; } - .md\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1 !important; + .md\:leading-none { + line-height: 1 !important; } - .md\:fill-current { - fill: currentColor !important; + .md\:leading-tight { + line-height: 1.25 !important; } - .md\:stroke-current { - stroke: currentColor !important; + .md\:leading-snug { + line-height: 1.375 !important; } - .md\:stroke-0 { - stroke-width: 0 !important; + .md\:leading-normal { + line-height: 1.5 !important; } - .md\:stroke-1 { - stroke-width: 1 !important; + .md\:leading-relaxed { + line-height: 1.625 !important; } - .md\:stroke-2 { - stroke-width: 2 !important; + .md\:leading-loose { + line-height: 2 !important; } - .md\:table-auto { - table-layout: auto !important; + .md\:tracking-tighter { + letter-spacing: -0.05em !important; } - .md\:table-fixed { - table-layout: fixed !important; + .md\:tracking-tight { + letter-spacing: -0.025em !important; } - .md\:text-left { - text-align: left !important; + .md\:tracking-normal { + letter-spacing: 0em !important; } - .md\:text-center { - text-align: center !important; + .md\:tracking-wide { + letter-spacing: 0.025em !important; } - .md\:text-right { - text-align: right !important; + .md\:tracking-wider { + letter-spacing: 0.05em !important; } - .md\:text-justify { - text-align: justify !important; + .md\:tracking-widest { + letter-spacing: 0.1em !important; } .md\:text-transparent { @@ -82992,44 +83181,6 @@ video { --tw-text-opacity: 1 !important; } - .md\:truncate { - overflow: hidden !important; - text-overflow: ellipsis !important; - white-space: nowrap !important; - } - - .md\:overflow-ellipsis { - text-overflow: ellipsis !important; - } - - .md\:overflow-clip { - text-overflow: clip !important; - } - - .md\:italic { - font-style: italic !important; - } - - .md\:not-italic { - font-style: normal !important; - } - - .md\:uppercase { - text-transform: uppercase !important; - } - - .md\:lowercase { - text-transform: lowercase !important; - } - - .md\:capitalize { - text-transform: capitalize !important; - } - - .md\:normal-case { - text-transform: none !important; - } - .md\:underline { text-decoration: underline !important; } @@ -83100,4258 +83251,4669 @@ video { -moz-osx-font-smoothing: auto !important; } - .md\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; - } - - .md\:normal-nums { - font-variant-numeric: normal !important; - } - - .md\:ordinal { - --tw-ordinal: ordinal !important; - } - - .md\:slashed-zero { - --tw-slashed-zero: slashed-zero !important; - } - - .md\:lining-nums { - --tw-numeric-figure: lining-nums !important; - } - - .md\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums !important; - } - - .md\:proportional-nums { - --tw-numeric-spacing: proportional-nums !important; - } - - .md\:tabular-nums { - --tw-numeric-spacing: tabular-nums !important; - } - - .md\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions !important; - } - - .md\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions !important; - } - - .md\:tracking-tighter { - letter-spacing: -0.05em !important; - } - - .md\:tracking-tight { - letter-spacing: -0.025em !important; - } - - .md\:tracking-normal { - letter-spacing: 0em !important; - } - - .md\:tracking-wide { - letter-spacing: 0.025em !important; + .md\:placeholder-transparent::placeholder { + color: transparent !important; } - .md\:tracking-wider { - letter-spacing: 0.05em !important; + .md\:placeholder-current::placeholder { + color: currentColor !important; } - .md\:tracking-widest { - letter-spacing: 0.1em !important; + .md\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } - .md\:select-none { - user-select: none !important; + .md\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } - .md\:select-text { - user-select: text !important; + .md\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } - .md\:select-all { - user-select: all !important; + .md\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } - .md\:select-auto { - user-select: auto !important; + .md\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } - .md\:align-baseline { - vertical-align: baseline !important; + .md\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } - .md\:align-top { - vertical-align: top !important; + .md\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } - .md\:align-middle { - vertical-align: middle !important; + .md\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } - .md\:align-bottom { - vertical-align: bottom !important; + .md\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } - .md\:align-text-top { - vertical-align: text-top !important; + .md\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } - .md\:align-text-bottom { - vertical-align: text-bottom !important; + .md\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } - .md\:visible { - visibility: visible !important; + .md\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } - .md\:invisible { - visibility: hidden !important; + .md\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } - .md\:whitespace-normal { - white-space: normal !important; + .md\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } - .md\:whitespace-nowrap { - white-space: nowrap !important; + .md\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } - .md\:whitespace-pre { - white-space: pre !important; + .md\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } - .md\:whitespace-pre-line { - white-space: pre-line !important; + .md\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } - .md\:whitespace-pre-wrap { - white-space: pre-wrap !important; + .md\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } - .md\:break-normal { - overflow-wrap: normal !important; - word-break: normal !important; + .md\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } - .md\:break-words { - overflow-wrap: break-word !important; + .md\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } - .md\:break-all { - word-break: break-all !important; + .md\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } - .md\:w-0 { - width: 0px !important; + .md\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } - .md\:w-1 { - width: 0.25rem !important; + .md\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } - .md\:w-2 { - width: 0.5rem !important; + .md\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } - .md\:w-3 { - width: 0.75rem !important; + .md\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } - .md\:w-4 { - width: 1rem !important; + .md\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } - .md\:w-5 { - width: 1.25rem !important; + .md\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } - .md\:w-6 { - width: 1.5rem !important; + .md\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } - .md\:w-7 { - width: 1.75rem !important; + .md\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } - .md\:w-8 { - width: 2rem !important; + .md\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } - .md\:w-9 { - width: 2.25rem !important; + .md\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } - .md\:w-10 { - width: 2.5rem !important; + .md\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } - .md\:w-11 { - width: 2.75rem !important; + .md\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } - .md\:w-12 { - width: 3rem !important; + .md\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } - .md\:w-14 { - width: 3.5rem !important; + .md\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } - .md\:w-16 { - width: 4rem !important; + .md\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } - .md\:w-20 { - width: 5rem !important; + .md\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } - .md\:w-24 { - width: 6rem !important; + .md\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } - .md\:w-28 { - width: 7rem !important; + .md\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } - .md\:w-32 { - width: 8rem !important; + .md\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } - .md\:w-36 { - width: 9rem !important; + .md\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } - .md\:w-40 { - width: 10rem !important; + .md\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } - .md\:w-44 { - width: 11rem !important; + .md\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } - .md\:w-48 { - width: 12rem !important; + .md\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } - .md\:w-52 { - width: 13rem !important; + .md\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } - .md\:w-56 { - width: 14rem !important; + .md\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } - .md\:w-60 { - width: 15rem !important; + .md\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } - .md\:w-64 { - width: 16rem !important; + .md\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } - .md\:w-72 { - width: 18rem !important; + .md\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } - .md\:w-80 { - width: 20rem !important; + .md\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } - .md\:w-96 { - width: 24rem !important; + .md\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } - .md\:w-auto { - width: auto !important; + .md\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } - .md\:w-px { - width: 1px !important; + .md\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } - .md\:w-0\.5 { - width: 0.125rem !important; + .md\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } - .md\:w-1\.5 { - width: 0.375rem !important; + .md\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } - .md\:w-2\.5 { - width: 0.625rem !important; + .md\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } - .md\:w-3\.5 { - width: 0.875rem !important; + .md\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } - .md\:w-1\/2 { - width: 50% !important; + .md\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } - .md\:w-1\/3 { - width: 33.333333% !important; + .md\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } - .md\:w-2\/3 { - width: 66.666667% !important; + .md\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } - .md\:w-1\/4 { - width: 25% !important; + .md\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } - .md\:w-2\/4 { - width: 50% !important; + .md\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } - .md\:w-3\/4 { - width: 75% !important; + .md\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } - .md\:w-1\/5 { - width: 20% !important; + .md\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } - .md\:w-2\/5 { - width: 40% !important; + .md\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } - .md\:w-3\/5 { - width: 60% !important; + .md\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } - .md\:w-4\/5 { - width: 80% !important; + .md\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } - .md\:w-1\/6 { - width: 16.666667% !important; + .md\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } - .md\:w-2\/6 { - width: 33.333333% !important; + .md\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } - .md\:w-3\/6 { - width: 50% !important; + .md\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } - .md\:w-4\/6 { - width: 66.666667% !important; + .md\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } - .md\:w-5\/6 { - width: 83.333333% !important; + .md\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } - .md\:w-1\/12 { - width: 8.333333% !important; + .md\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } - .md\:w-2\/12 { - width: 16.666667% !important; + .md\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } - .md\:w-3\/12 { - width: 25% !important; + .md\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } - .md\:w-4\/12 { - width: 33.333333% !important; + .md\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } - .md\:w-5\/12 { - width: 41.666667% !important; + .md\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } - .md\:w-6\/12 { - width: 50% !important; + .md\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } - .md\:w-7\/12 { - width: 58.333333% !important; + .md\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } - .md\:w-8\/12 { - width: 66.666667% !important; + .md\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } - .md\:w-9\/12 { - width: 75% !important; + .md\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } - .md\:w-10\/12 { - width: 83.333333% !important; + .md\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } - .md\:w-11\/12 { - width: 91.666667% !important; + .md\:focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; } - .md\:w-full { - width: 100% !important; + .md\:focus\:placeholder-current:focus::placeholder { + color: currentColor !important; } - .md\:w-screen { - width: 100vw !important; + .md\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } - .md\:w-min { - width: min-content !important; + .md\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } - .md\:w-max { - width: max-content !important; + .md\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } - .md\:z-0 { - z-index: 0 !important; + .md\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } - .md\:z-10 { - z-index: 10 !important; + .md\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } - .md\:z-20 { - z-index: 20 !important; + .md\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } - .md\:z-30 { - z-index: 30 !important; + .md\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } - .md\:z-40 { - z-index: 40 !important; + .md\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } - .md\:z-50 { - z-index: 50 !important; + .md\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } - .md\:z-auto { - z-index: auto !important; + .md\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } - .md\:focus-within\:z-0:focus-within { - z-index: 0 !important; + .md\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } - .md\:focus-within\:z-10:focus-within { - z-index: 10 !important; + .md\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } - .md\:focus-within\:z-20:focus-within { - z-index: 20 !important; + .md\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } - .md\:focus-within\:z-30:focus-within { - z-index: 30 !important; + .md\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } - .md\:focus-within\:z-40:focus-within { - z-index: 40 !important; + .md\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } - .md\:focus-within\:z-50:focus-within { - z-index: 50 !important; + .md\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } - .md\:focus-within\:z-auto:focus-within { - z-index: auto !important; + .md\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } - .md\:focus\:z-0:focus { - z-index: 0 !important; + .md\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } - .md\:focus\:z-10:focus { - z-index: 10 !important; + .md\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } - .md\:focus\:z-20:focus { - z-index: 20 !important; + .md\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } - .md\:focus\:z-30:focus { - z-index: 30 !important; + .md\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } - .md\:focus\:z-40:focus { - z-index: 40 !important; + .md\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } - .md\:focus\:z-50:focus { - z-index: 50 !important; + .md\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } - .md\:focus\:z-auto:focus { - z-index: auto !important; + .md\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } - .md\:isolate { - isolation: isolate !important; + .md\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } - .md\:isolation-auto { - isolation: auto !important; + .md\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } - .md\:gap-0 { - gap: 0px !important; + .md\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } - .md\:gap-1 { - gap: 0.25rem !important; + .md\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } - .md\:gap-2 { - gap: 0.5rem !important; + .md\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } - .md\:gap-3 { - gap: 0.75rem !important; + .md\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } - .md\:gap-4 { - gap: 1rem !important; + .md\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } - .md\:gap-5 { - gap: 1.25rem !important; + .md\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } - .md\:gap-6 { - gap: 1.5rem !important; + .md\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } - .md\:gap-7 { - gap: 1.75rem !important; + .md\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } - .md\:gap-8 { - gap: 2rem !important; + .md\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } - .md\:gap-9 { - gap: 2.25rem !important; + .md\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } - .md\:gap-10 { - gap: 2.5rem !important; + .md\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } - .md\:gap-11 { - gap: 2.75rem !important; + .md\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } - .md\:gap-12 { - gap: 3rem !important; + .md\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } - .md\:gap-14 { - gap: 3.5rem !important; + .md\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } - .md\:gap-16 { - gap: 4rem !important; + .md\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } - .md\:gap-20 { - gap: 5rem !important; + .md\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } - .md\:gap-24 { - gap: 6rem !important; + .md\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } - .md\:gap-28 { - gap: 7rem !important; + .md\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } - .md\:gap-32 { - gap: 8rem !important; + .md\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } - .md\:gap-36 { - gap: 9rem !important; + .md\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } - .md\:gap-40 { - gap: 10rem !important; + .md\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } - .md\:gap-44 { - gap: 11rem !important; + .md\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } - .md\:gap-48 { - gap: 12rem !important; + .md\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } - .md\:gap-52 { - gap: 13rem !important; + .md\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } - .md\:gap-56 { - gap: 14rem !important; + .md\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } - .md\:gap-60 { - gap: 15rem !important; + .md\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } - .md\:gap-64 { - gap: 16rem !important; + .md\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } - .md\:gap-72 { - gap: 18rem !important; + .md\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } - .md\:gap-80 { - gap: 20rem !important; + .md\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } - .md\:gap-96 { - gap: 24rem !important; + .md\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } - .md\:gap-px { - gap: 1px !important; + .md\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } - .md\:gap-0\.5 { - gap: 0.125rem !important; + .md\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } - .md\:gap-1\.5 { - gap: 0.375rem !important; + .md\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } - .md\:gap-2\.5 { - gap: 0.625rem !important; + .md\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } - .md\:gap-3\.5 { - gap: 0.875rem !important; + .md\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-0 { - column-gap: 0px !important; + .md\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-1 { - column-gap: 0.25rem !important; + .md\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-2 { - column-gap: 0.5rem !important; + .md\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-3 { - column-gap: 0.75rem !important; + .md\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-4 { - column-gap: 1rem !important; + .md\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-5 { - column-gap: 1.25rem !important; + .md\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-6 { - column-gap: 1.5rem !important; + .md\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-7 { - column-gap: 1.75rem !important; + .md\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-8 { - column-gap: 2rem !important; + .md\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-9 { - column-gap: 2.25rem !important; + .md\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-10 { - column-gap: 2.5rem !important; + .md\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-11 { - column-gap: 2.75rem !important; + .md\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-12 { - column-gap: 3rem !important; + .md\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-14 { - column-gap: 3.5rem !important; + .md\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-16 { - column-gap: 4rem !important; + .md\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-20 { - column-gap: 5rem !important; + .md\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-24 { - column-gap: 6rem !important; + .md\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-28 { - column-gap: 7rem !important; + .md\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-32 { - column-gap: 8rem !important; + .md\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-36 { - column-gap: 9rem !important; + .md\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-40 { - column-gap: 10rem !important; + .md\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } - .md\:gap-x-44 { - column-gap: 11rem !important; + .md\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; } - .md\:gap-x-48 { - column-gap: 12rem !important; + .md\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; } - .md\:gap-x-52 { - column-gap: 13rem !important; + .md\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; } - .md\:gap-x-56 { - column-gap: 14rem !important; + .md\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; } - .md\:gap-x-60 { - column-gap: 15rem !important; + .md\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; } - .md\:gap-x-64 { - column-gap: 16rem !important; + .md\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; } - .md\:gap-x-72 { - column-gap: 18rem !important; + .md\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; } - .md\:gap-x-80 { - column-gap: 20rem !important; + .md\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; } - .md\:gap-x-96 { - column-gap: 24rem !important; + .md\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; } - .md\:gap-x-px { - column-gap: 1px !important; + .md\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; } - .md\:gap-x-0\.5 { - column-gap: 0.125rem !important; + .md\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; } - .md\:gap-x-1\.5 { - column-gap: 0.375rem !important; + .md\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; } - .md\:gap-x-2\.5 { - column-gap: 0.625rem !important; + .md\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; } - .md\:gap-x-3\.5 { - column-gap: 0.875rem !important; + .md\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; } - .md\:gap-y-0 { - row-gap: 0px !important; + .md\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; } - .md\:gap-y-1 { - row-gap: 0.25rem !important; + .md\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; } - .md\:gap-y-2 { - row-gap: 0.5rem !important; + .md\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; } - .md\:gap-y-3 { - row-gap: 0.75rem !important; + .md\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; } - .md\:gap-y-4 { - row-gap: 1rem !important; + .md\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; } - .md\:gap-y-5 { - row-gap: 1.25rem !important; + .md\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; } - .md\:gap-y-6 { - row-gap: 1.5rem !important; + .md\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; } - .md\:gap-y-7 { - row-gap: 1.75rem !important; + .md\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; } - .md\:gap-y-8 { - row-gap: 2rem !important; + .md\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; } - .md\:gap-y-9 { - row-gap: 2.25rem !important; + .md\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; } - .md\:gap-y-10 { - row-gap: 2.5rem !important; + .md\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; } - .md\:gap-y-11 { - row-gap: 2.75rem !important; + .md\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; } - .md\:gap-y-12 { - row-gap: 3rem !important; + .md\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; } - .md\:gap-y-14 { - row-gap: 3.5rem !important; + .md\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; } - .md\:gap-y-16 { - row-gap: 4rem !important; + .md\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; } - .md\:gap-y-20 { - row-gap: 5rem !important; + .md\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; } - .md\:gap-y-24 { - row-gap: 6rem !important; + .md\:opacity-0 { + opacity: 0 !important; } - .md\:gap-y-28 { - row-gap: 7rem !important; + .md\:opacity-5 { + opacity: 0.05 !important; } - .md\:gap-y-32 { - row-gap: 8rem !important; + .md\:opacity-10 { + opacity: 0.1 !important; } - .md\:gap-y-36 { - row-gap: 9rem !important; + .md\:opacity-20 { + opacity: 0.2 !important; } - .md\:gap-y-40 { - row-gap: 10rem !important; + .md\:opacity-25 { + opacity: 0.25 !important; } - .md\:gap-y-44 { - row-gap: 11rem !important; + .md\:opacity-30 { + opacity: 0.3 !important; } - .md\:gap-y-48 { - row-gap: 12rem !important; + .md\:opacity-40 { + opacity: 0.4 !important; } - .md\:gap-y-52 { - row-gap: 13rem !important; + .md\:opacity-50 { + opacity: 0.5 !important; } - .md\:gap-y-56 { - row-gap: 14rem !important; + .md\:opacity-60 { + opacity: 0.6 !important; } - .md\:gap-y-60 { - row-gap: 15rem !important; + .md\:opacity-70 { + opacity: 0.7 !important; } - .md\:gap-y-64 { - row-gap: 16rem !important; + .md\:opacity-75 { + opacity: 0.75 !important; } - .md\:gap-y-72 { - row-gap: 18rem !important; + .md\:opacity-80 { + opacity: 0.8 !important; } - .md\:gap-y-80 { - row-gap: 20rem !important; + .md\:opacity-90 { + opacity: 0.9 !important; } - .md\:gap-y-96 { - row-gap: 24rem !important; + .md\:opacity-95 { + opacity: 0.95 !important; } - .md\:gap-y-px { - row-gap: 1px !important; + .md\:opacity-100 { + opacity: 1 !important; } - .md\:gap-y-0\.5 { - row-gap: 0.125rem !important; + .group:hover .md\:group-hover\:opacity-0 { + opacity: 0 !important; } - .md\:gap-y-1\.5 { - row-gap: 0.375rem !important; + .group:hover .md\:group-hover\:opacity-5 { + opacity: 0.05 !important; } - .md\:gap-y-2\.5 { - row-gap: 0.625rem !important; + .group:hover .md\:group-hover\:opacity-10 { + opacity: 0.1 !important; } - .md\:gap-y-3\.5 { - row-gap: 0.875rem !important; + .group:hover .md\:group-hover\:opacity-20 { + opacity: 0.2 !important; } - .md\:grid-flow-row { - grid-auto-flow: row !important; + .group:hover .md\:group-hover\:opacity-25 { + opacity: 0.25 !important; } - .md\:grid-flow-col { - grid-auto-flow: column !important; + .group:hover .md\:group-hover\:opacity-30 { + opacity: 0.3 !important; } - .md\:grid-flow-row-dense { - grid-auto-flow: row dense !important; + .group:hover .md\:group-hover\:opacity-40 { + opacity: 0.4 !important; } - .md\:grid-flow-col-dense { - grid-auto-flow: column dense !important; + .group:hover .md\:group-hover\:opacity-50 { + opacity: 0.5 !important; } - .md\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)) !important; + .group:hover .md\:group-hover\:opacity-60 { + opacity: 0.6 !important; } - .md\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)) !important; + .group:hover .md\:group-hover\:opacity-70 { + opacity: 0.7 !important; } - .md\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)) !important; + .group:hover .md\:group-hover\:opacity-75 { + opacity: 0.75 !important; } - .md\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)) !important; + .group:hover .md\:group-hover\:opacity-80 { + opacity: 0.8 !important; } - .md\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)) !important; + .group:hover .md\:group-hover\:opacity-90 { + opacity: 0.9 !important; } - .md\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)) !important; + .group:hover .md\:group-hover\:opacity-95 { + opacity: 0.95 !important; } - .md\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)) !important; + .group:hover .md\:group-hover\:opacity-100 { + opacity: 1 !important; } - .md\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)) !important; + .md\:focus-within\:opacity-0:focus-within { + opacity: 0 !important; } - .md\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)) !important; + .md\:focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; } - .md\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)) !important; + .md\:focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; } - .md\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)) !important; + .md\:focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; } - .md\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)) !important; + .md\:focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; } - .md\:grid-cols-none { - grid-template-columns: none !important; + .md\:focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; } - .md\:auto-cols-auto { - grid-auto-columns: auto !important; + .md\:focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; } - .md\:auto-cols-min { - grid-auto-columns: min-content !important; + .md\:focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; } - .md\:auto-cols-max { - grid-auto-columns: max-content !important; + .md\:focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; } - .md\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr) !important; + .md\:focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; } - .md\:col-auto { - grid-column: auto !important; + .md\:focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; } - .md\:col-span-1 { - grid-column: span 1 / span 1 !important; + .md\:focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; } - .md\:col-span-2 { - grid-column: span 2 / span 2 !important; + .md\:focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; } - .md\:col-span-3 { - grid-column: span 3 / span 3 !important; + .md\:focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; } - .md\:col-span-4 { - grid-column: span 4 / span 4 !important; + .md\:focus-within\:opacity-100:focus-within { + opacity: 1 !important; } - .md\:col-span-5 { - grid-column: span 5 / span 5 !important; + .md\:hover\:opacity-0:hover { + opacity: 0 !important; } - .md\:col-span-6 { - grid-column: span 6 / span 6 !important; + .md\:hover\:opacity-5:hover { + opacity: 0.05 !important; } - .md\:col-span-7 { - grid-column: span 7 / span 7 !important; + .md\:hover\:opacity-10:hover { + opacity: 0.1 !important; } - .md\:col-span-8 { - grid-column: span 8 / span 8 !important; + .md\:hover\:opacity-20:hover { + opacity: 0.2 !important; } - .md\:col-span-9 { - grid-column: span 9 / span 9 !important; + .md\:hover\:opacity-25:hover { + opacity: 0.25 !important; } - .md\:col-span-10 { - grid-column: span 10 / span 10 !important; + .md\:hover\:opacity-30:hover { + opacity: 0.3 !important; } - .md\:col-span-11 { - grid-column: span 11 / span 11 !important; + .md\:hover\:opacity-40:hover { + opacity: 0.4 !important; } - .md\:col-span-12 { - grid-column: span 12 / span 12 !important; + .md\:hover\:opacity-50:hover { + opacity: 0.5 !important; } - .md\:col-span-full { - grid-column: 1 / -1 !important; + .md\:hover\:opacity-60:hover { + opacity: 0.6 !important; } - .md\:col-start-1 { - grid-column-start: 1 !important; + .md\:hover\:opacity-70:hover { + opacity: 0.7 !important; } - .md\:col-start-2 { - grid-column-start: 2 !important; + .md\:hover\:opacity-75:hover { + opacity: 0.75 !important; } - .md\:col-start-3 { - grid-column-start: 3 !important; + .md\:hover\:opacity-80:hover { + opacity: 0.8 !important; } - .md\:col-start-4 { - grid-column-start: 4 !important; + .md\:hover\:opacity-90:hover { + opacity: 0.9 !important; } - .md\:col-start-5 { - grid-column-start: 5 !important; + .md\:hover\:opacity-95:hover { + opacity: 0.95 !important; } - .md\:col-start-6 { - grid-column-start: 6 !important; + .md\:hover\:opacity-100:hover { + opacity: 1 !important; } - .md\:col-start-7 { - grid-column-start: 7 !important; + .md\:focus\:opacity-0:focus { + opacity: 0 !important; } - .md\:col-start-8 { - grid-column-start: 8 !important; + .md\:focus\:opacity-5:focus { + opacity: 0.05 !important; } - .md\:col-start-9 { - grid-column-start: 9 !important; + .md\:focus\:opacity-10:focus { + opacity: 0.1 !important; } - .md\:col-start-10 { - grid-column-start: 10 !important; + .md\:focus\:opacity-20:focus { + opacity: 0.2 !important; } - .md\:col-start-11 { - grid-column-start: 11 !important; + .md\:focus\:opacity-25:focus { + opacity: 0.25 !important; } - .md\:col-start-12 { - grid-column-start: 12 !important; + .md\:focus\:opacity-30:focus { + opacity: 0.3 !important; } - .md\:col-start-13 { - grid-column-start: 13 !important; + .md\:focus\:opacity-40:focus { + opacity: 0.4 !important; } - .md\:col-start-auto { - grid-column-start: auto !important; + .md\:focus\:opacity-50:focus { + opacity: 0.5 !important; } - .md\:col-end-1 { - grid-column-end: 1 !important; + .md\:focus\:opacity-60:focus { + opacity: 0.6 !important; } - .md\:col-end-2 { - grid-column-end: 2 !important; + .md\:focus\:opacity-70:focus { + opacity: 0.7 !important; } - .md\:col-end-3 { - grid-column-end: 3 !important; + .md\:focus\:opacity-75:focus { + opacity: 0.75 !important; } - .md\:col-end-4 { - grid-column-end: 4 !important; + .md\:focus\:opacity-80:focus { + opacity: 0.8 !important; } - .md\:col-end-5 { - grid-column-end: 5 !important; + .md\:focus\:opacity-90:focus { + opacity: 0.9 !important; } - .md\:col-end-6 { - grid-column-end: 6 !important; + .md\:focus\:opacity-95:focus { + opacity: 0.95 !important; } - .md\:col-end-7 { - grid-column-end: 7 !important; + .md\:focus\:opacity-100:focus { + opacity: 1 !important; } - .md\:col-end-8 { - grid-column-end: 8 !important; + .md\:bg-blend-normal { + background-blend-mode: normal !important; } - .md\:col-end-9 { - grid-column-end: 9 !important; + .md\:bg-blend-multiply { + background-blend-mode: multiply !important; } - .md\:col-end-10 { - grid-column-end: 10 !important; + .md\:bg-blend-screen { + background-blend-mode: screen !important; } - .md\:col-end-11 { - grid-column-end: 11 !important; + .md\:bg-blend-overlay { + background-blend-mode: overlay !important; } - .md\:col-end-12 { - grid-column-end: 12 !important; + .md\:bg-blend-darken { + background-blend-mode: darken !important; } - .md\:col-end-13 { - grid-column-end: 13 !important; + .md\:bg-blend-lighten { + background-blend-mode: lighten !important; } - .md\:col-end-auto { - grid-column-end: auto !important; + .md\:bg-blend-color-dodge { + background-blend-mode: color-dodge !important; } - .md\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)) !important; + .md\:bg-blend-color-burn { + background-blend-mode: color-burn !important; } - .md\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)) !important; + .md\:bg-blend-hard-light { + background-blend-mode: hard-light !important; } - .md\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)) !important; + .md\:bg-blend-soft-light { + background-blend-mode: soft-light !important; } - .md\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)) !important; + .md\:bg-blend-difference { + background-blend-mode: difference !important; } - .md\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)) !important; + .md\:bg-blend-exclusion { + background-blend-mode: exclusion !important; } - .md\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)) !important; + .md\:bg-blend-hue { + background-blend-mode: hue !important; } - .md\:grid-rows-none { - grid-template-rows: none !important; + .md\:bg-blend-saturation { + background-blend-mode: saturation !important; } - .md\:auto-rows-auto { - grid-auto-rows: auto !important; + .md\:bg-blend-color { + background-blend-mode: color !important; } - .md\:auto-rows-min { - grid-auto-rows: min-content !important; + .md\:bg-blend-luminosity { + background-blend-mode: luminosity !important; } - .md\:auto-rows-max { - grid-auto-rows: max-content !important; + .md\:mix-blend-normal { + mix-blend-mode: normal !important; } - .md\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr) !important; + .md\:mix-blend-multiply { + mix-blend-mode: multiply !important; } - .md\:row-auto { - grid-row: auto !important; + .md\:mix-blend-screen { + mix-blend-mode: screen !important; } - .md\:row-span-1 { - grid-row: span 1 / span 1 !important; + .md\:mix-blend-overlay { + mix-blend-mode: overlay !important; } - .md\:row-span-2 { - grid-row: span 2 / span 2 !important; + .md\:mix-blend-darken { + mix-blend-mode: darken !important; } - .md\:row-span-3 { - grid-row: span 3 / span 3 !important; + .md\:mix-blend-lighten { + mix-blend-mode: lighten !important; } - .md\:row-span-4 { - grid-row: span 4 / span 4 !important; + .md\:mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; } - .md\:row-span-5 { - grid-row: span 5 / span 5 !important; + .md\:mix-blend-color-burn { + mix-blend-mode: color-burn !important; } - .md\:row-span-6 { - grid-row: span 6 / span 6 !important; + .md\:mix-blend-hard-light { + mix-blend-mode: hard-light !important; } - .md\:row-span-full { - grid-row: 1 / -1 !important; + .md\:mix-blend-soft-light { + mix-blend-mode: soft-light !important; } - .md\:row-start-1 { - grid-row-start: 1 !important; + .md\:mix-blend-difference { + mix-blend-mode: difference !important; } - .md\:row-start-2 { - grid-row-start: 2 !important; + .md\:mix-blend-exclusion { + mix-blend-mode: exclusion !important; } - .md\:row-start-3 { - grid-row-start: 3 !important; + .md\:mix-blend-hue { + mix-blend-mode: hue !important; } - .md\:row-start-4 { - grid-row-start: 4 !important; + .md\:mix-blend-saturation { + mix-blend-mode: saturation !important; } - .md\:row-start-5 { - grid-row-start: 5 !important; + .md\:mix-blend-color { + mix-blend-mode: color !important; } - .md\:row-start-6 { - grid-row-start: 6 !important; + .md\:mix-blend-luminosity { + mix-blend-mode: luminosity !important; } - .md\:row-start-7 { - grid-row-start: 7 !important; + .md\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:row-start-auto { - grid-row-start: auto !important; + .md\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:row-end-1 { - grid-row-end: 1 !important; + .md\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:row-end-2 { - grid-row-end: 2 !important; + .md\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:row-end-3 { - grid-row-end: 3 !important; + .md\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:row-end-4 { - grid-row-end: 4 !important; + .md\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:row-end-5 { - grid-row-end: 5 !important; + .md\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:row-end-6 { - grid-row-end: 6 !important; + .md\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:row-end-7 { - grid-row-end: 7 !important; + .group:hover .md\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:row-end-auto { - grid-row-end: auto !important; + .group:hover .md\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:transform { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + .group:hover .md\:group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:transform-gpu { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + .group:hover .md\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:transform-none { - transform: none !important; + .group:hover .md\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:origin-center { - transform-origin: center !important; + .group:hover .md\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:origin-top { - transform-origin: top !important; + .group:hover .md\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:origin-top-right { - transform-origin: top right !important; + .group:hover .md\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:origin-right { - transform-origin: right !important; + .md\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:origin-bottom-right { - transform-origin: bottom right !important; + .md\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:origin-bottom { - transform-origin: bottom !important; + .md\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:origin-bottom-left { - transform-origin: bottom left !important; + .md\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:origin-left { - transform-origin: left !important; + .md\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:origin-top-left { - transform-origin: top left !important; + .md\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-0 { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .md\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-50 { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .md\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-75 { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .md\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-90 { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .md\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-95 { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; + .md\:hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-100 { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .md\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-105 { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .md\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-110 { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .md\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-125 { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .md\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-150 { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .md\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-x-0 { - --tw-scale-x: 0 !important; + .md\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-x-50 { - --tw-scale-x: .5 !important; + .md\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-x-75 { - --tw-scale-x: .75 !important; + .md\:focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-x-90 { - --tw-scale-x: .9 !important; + .md\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-x-95 { - --tw-scale-x: .95 !important; + .md\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-x-100 { - --tw-scale-x: 1 !important; + .md\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-x-105 { - --tw-scale-x: 1.05 !important; + .md\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-x-110 { - --tw-scale-x: 1.1 !important; + .md\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .md\:scale-x-125 { - --tw-scale-x: 1.25 !important; + .md\:outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .md\:scale-x-150 { - --tw-scale-x: 1.5 !important; + .md\:outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .md\:scale-y-0 { - --tw-scale-y: 0 !important; + .md\:outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .md\:scale-y-50 { - --tw-scale-y: .5 !important; + .md\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .md\:scale-y-75 { - --tw-scale-y: .75 !important; + .md\:focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .md\:scale-y-90 { - --tw-scale-y: .9 !important; + .md\:focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .md\:scale-y-95 { - --tw-scale-y: .95 !important; + .md\:focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .md\:scale-y-100 { - --tw-scale-y: 1 !important; + .md\:focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .md\:scale-y-105 { - --tw-scale-y: 1.05 !important; + .md\:focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .md\:scale-y-110 { - --tw-scale-y: 1.1 !important; + .md\:ring-0 { + --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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:scale-y-125 { - --tw-scale-y: 1.25 !important; + .md\:ring-1 { + --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:scale-y-150 { - --tw-scale-y: 1.5 !important; + .md\:ring-2 { + --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-0:hover { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .md\:ring-4 { + --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-50:hover { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .md\:ring-8 { + --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-75:hover { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .md\:ring { + --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-90:hover { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .md\:ring-inset { + --tw-ring-inset: inset !important; } - .md\:hover\:scale-95:hover { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-100:hover { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .md\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-105:hover { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .md\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-110:hover { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .md\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-125:hover { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .md\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-150:hover { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .md\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-x-0:hover { - --tw-scale-x: 0 !important; + .md\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; } - .md\:hover\:scale-x-50:hover { - --tw-scale-x: .5 !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-x-75:hover { - --tw-scale-x: .75 !important; + .md\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-x-90:hover { - --tw-scale-x: .9 !important; + .md\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-x-95:hover { - --tw-scale-x: .95 !important; + .md\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-x-100:hover { - --tw-scale-x: 1 !important; + .md\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05 !important; + .md\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1 !important; + .md\:focus\:ring-inset:focus { + --tw-ring-inset: inset !important; } - .md\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25 !important; + .md\:ring-transparent { + --tw-ring-color: transparent !important; } - .md\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5 !important; + .md\:ring-current { + --tw-ring-color: currentColor !important; } - .md\:hover\:scale-y-0:hover { - --tw-scale-y: 0 !important; + .md\:ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .md\:hover\:scale-y-50:hover { - --tw-scale-y: .5 !important; + .md\:ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .md\:hover\:scale-y-75:hover { - --tw-scale-y: .75 !important; + .md\:ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .md\:hover\:scale-y-90:hover { - --tw-scale-y: .9 !important; + .md\:ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .md\:hover\:scale-y-95:hover { - --tw-scale-y: .95 !important; + .md\:ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .md\:hover\:scale-y-100:hover { - --tw-scale-y: 1 !important; + .md\:ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .md\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05 !important; + .md\:ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .md\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1 !important; + .md\:ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .md\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25 !important; + .md\:ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .md\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5 !important; + .md\:ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .md\:ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .md\:ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .md\:ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .md\:ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; + .md\:ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .md\:ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .md\:ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .md\:ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .md\:ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .md\:ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-x-0:focus { - --tw-scale-x: 0 !important; + .md\:ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-x-50:focus { - --tw-scale-x: .5 !important; + .md\:ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-x-75:focus { - --tw-scale-x: .75 !important; + .md\:ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-x-90:focus { - --tw-scale-x: .9 !important; + .md\:ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-x-95:focus { - --tw-scale-x: .95 !important; + .md\:ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-x-100:focus { - --tw-scale-x: 1 !important; + .md\:ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05 !important; + .md\:ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1 !important; + .md\:ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25 !important; + .md\:ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5 !important; + .md\:ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-y-0:focus { - --tw-scale-y: 0 !important; + .md\:ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-y-50:focus { - --tw-scale-y: .5 !important; + .md\:ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-y-75:focus { - --tw-scale-y: .75 !important; + .md\:ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-y-90:focus { - --tw-scale-y: .9 !important; + .md\:ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-y-95:focus { - --tw-scale-y: .95 !important; + .md\:ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-y-100:focus { - --tw-scale-y: 1 !important; + .md\:ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05 !important; + .md\:ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1 !important; + .md\:ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25 !important; + .md\:ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .md\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5 !important; + .md\:ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .md\:rotate-0 { - --tw-rotate: 0deg !important; + .md\:ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .md\:rotate-1 { - --tw-rotate: 1deg !important; + .md\:ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .md\:rotate-2 { - --tw-rotate: 2deg !important; + .md\:ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .md\:rotate-3 { - --tw-rotate: 3deg !important; + .md\:ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .md\:rotate-6 { - --tw-rotate: 6deg !important; + .md\:ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .md\:rotate-12 { - --tw-rotate: 12deg !important; + .md\:ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .md\:rotate-45 { - --tw-rotate: 45deg !important; + .md\:ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .md\:rotate-90 { - --tw-rotate: 90deg !important; + .md\:ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .md\:rotate-180 { - --tw-rotate: 180deg !important; + .md\:ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .md\:-rotate-180 { - --tw-rotate: -180deg !important; + .md\:ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .md\:-rotate-90 { - --tw-rotate: -90deg !important; + .md\:ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .md\:-rotate-45 { - --tw-rotate: -45deg !important; + .md\:ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .md\:-rotate-12 { - --tw-rotate: -12deg !important; + .md\:ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .md\:-rotate-6 { - --tw-rotate: -6deg !important; + .md\:ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .md\:-rotate-3 { - --tw-rotate: -3deg !important; + .md\:ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .md\:-rotate-2 { - --tw-rotate: -2deg !important; + .md\:ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .md\:-rotate-1 { - --tw-rotate: -1deg !important; + .md\:ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .md\:hover\:rotate-0:hover { - --tw-rotate: 0deg !important; + .md\:ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .md\:hover\:rotate-1:hover { - --tw-rotate: 1deg !important; + .md\:ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .md\:hover\:rotate-2:hover { - --tw-rotate: 2deg !important; + .md\:ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .md\:hover\:rotate-3:hover { - --tw-rotate: 3deg !important; + .md\:ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .md\:hover\:rotate-6:hover { - --tw-rotate: 6deg !important; + .md\:ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .md\:hover\:rotate-12:hover { - --tw-rotate: 12deg !important; + .md\:ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .md\:hover\:rotate-45:hover { - --tw-rotate: 45deg !important; + .md\:ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .md\:hover\:rotate-90:hover { - --tw-rotate: 90deg !important; + .md\:ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .md\:hover\:rotate-180:hover { - --tw-rotate: 180deg !important; + .md\:ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .md\:hover\:-rotate-180:hover { - --tw-rotate: -180deg !important; + .md\:ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .md\:hover\:-rotate-90:hover { - --tw-rotate: -90deg !important; + .md\:ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .md\:hover\:-rotate-45:hover { - --tw-rotate: -45deg !important; + .md\:ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .md\:hover\:-rotate-12:hover { - --tw-rotate: -12deg !important; + .md\:ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .md\:hover\:-rotate-6:hover { - --tw-rotate: -6deg !important; + .md\:ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .md\:hover\:-rotate-3:hover { - --tw-rotate: -3deg !important; + .md\:ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .md\:hover\:-rotate-2:hover { - --tw-rotate: -2deg !important; + .md\:ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .md\:hover\:-rotate-1:hover { - --tw-rotate: -1deg !important; + .md\:ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .md\:focus\:rotate-0:focus { - --tw-rotate: 0deg !important; + .md\:ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .md\:focus\:rotate-1:focus { - --tw-rotate: 1deg !important; + .md\:ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .md\:focus\:rotate-2:focus { - --tw-rotate: 2deg !important; + .md\:ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .md\:focus\:rotate-3:focus { - --tw-rotate: 3deg !important; + .md\:ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .md\:focus\:rotate-6:focus { - --tw-rotate: 6deg !important; + .md\:ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .md\:focus\:rotate-12:focus { - --tw-rotate: 12deg !important; + .md\:ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .md\:focus\:rotate-45:focus { - --tw-rotate: 45deg !important; + .md\:ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .md\:focus\:rotate-90:focus { - --tw-rotate: 90deg !important; + .md\:ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .md\:focus\:rotate-180:focus { - --tw-rotate: 180deg !important; + .md\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; } - .md\:focus\:-rotate-180:focus { - --tw-rotate: -180deg !important; + .md\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; } - .md\:focus\:-rotate-90:focus { - --tw-rotate: -90deg !important; + .md\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .md\:focus\:-rotate-45:focus { - --tw-rotate: -45deg !important; + .md\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .md\:focus\:-rotate-12:focus { - --tw-rotate: -12deg !important; + .md\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .md\:focus\:-rotate-6:focus { - --tw-rotate: -6deg !important; + .md\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .md\:focus\:-rotate-3:focus { - --tw-rotate: -3deg !important; + .md\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .md\:focus\:-rotate-2:focus { - --tw-rotate: -2deg !important; + .md\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .md\:focus\:-rotate-1:focus { - --tw-rotate: -1deg !important; + .md\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .md\:translate-x-0 { - --tw-translate-x: 0px !important; + .md\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .md\:translate-x-1 { - --tw-translate-x: 0.25rem !important; + .md\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .md\:translate-x-2 { - --tw-translate-x: 0.5rem !important; + .md\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .md\:translate-x-3 { - --tw-translate-x: 0.75rem !important; + .md\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .md\:translate-x-4 { - --tw-translate-x: 1rem !important; + .md\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .md\:translate-x-5 { - --tw-translate-x: 1.25rem !important; + .md\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .md\:translate-x-6 { - --tw-translate-x: 1.5rem !important; + .md\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .md\:translate-x-7 { - --tw-translate-x: 1.75rem !important; + .md\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .md\:translate-x-8 { - --tw-translate-x: 2rem !important; + .md\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .md\:translate-x-9 { - --tw-translate-x: 2.25rem !important; + .md\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .md\:translate-x-10 { - --tw-translate-x: 2.5rem !important; + .md\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .md\:translate-x-11 { - --tw-translate-x: 2.75rem !important; + .md\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .md\:translate-x-12 { - --tw-translate-x: 3rem !important; + .md\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .md\:translate-x-14 { - --tw-translate-x: 3.5rem !important; + .md\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .md\:translate-x-16 { - --tw-translate-x: 4rem !important; + .md\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .md\:translate-x-20 { - --tw-translate-x: 5rem !important; + .md\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .md\:translate-x-24 { - --tw-translate-x: 6rem !important; + .md\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .md\:translate-x-28 { - --tw-translate-x: 7rem !important; + .md\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .md\:translate-x-32 { - --tw-translate-x: 8rem !important; + .md\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .md\:translate-x-36 { - --tw-translate-x: 9rem !important; + .md\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .md\:translate-x-40 { - --tw-translate-x: 10rem !important; + .md\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .md\:translate-x-44 { - --tw-translate-x: 11rem !important; + .md\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .md\:translate-x-48 { - --tw-translate-x: 12rem !important; + .md\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .md\:translate-x-52 { - --tw-translate-x: 13rem !important; + .md\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .md\:translate-x-56 { - --tw-translate-x: 14rem !important; + .md\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .md\:translate-x-60 { - --tw-translate-x: 15rem !important; + .md\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .md\:translate-x-64 { - --tw-translate-x: 16rem !important; + .md\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .md\:translate-x-72 { - --tw-translate-x: 18rem !important; + .md\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .md\:translate-x-80 { - --tw-translate-x: 20rem !important; + .md\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .md\:translate-x-96 { - --tw-translate-x: 24rem !important; + .md\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .md\:translate-x-px { - --tw-translate-x: 1px !important; + .md\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .md\:translate-x-0\.5 { - --tw-translate-x: 0.125rem !important; + .md\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .md\:translate-x-1\.5 { - --tw-translate-x: 0.375rem !important; + .md\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .md\:translate-x-2\.5 { - --tw-translate-x: 0.625rem !important; + .md\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .md\:translate-x-3\.5 { - --tw-translate-x: 0.875rem !important; + .md\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-0 { - --tw-translate-x: 0px !important; + .md\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-1 { - --tw-translate-x: -0.25rem !important; + .md\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-2 { - --tw-translate-x: -0.5rem !important; + .md\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-3 { - --tw-translate-x: -0.75rem !important; + .md\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-4 { - --tw-translate-x: -1rem !important; + .md\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-5 { - --tw-translate-x: -1.25rem !important; + .md\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-6 { - --tw-translate-x: -1.5rem !important; + .md\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-7 { - --tw-translate-x: -1.75rem !important; + .md\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-8 { - --tw-translate-x: -2rem !important; + .md\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-9 { - --tw-translate-x: -2.25rem !important; + .md\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-10 { - --tw-translate-x: -2.5rem !important; + .md\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-11 { - --tw-translate-x: -2.75rem !important; + .md\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-12 { - --tw-translate-x: -3rem !important; + .md\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-14 { - --tw-translate-x: -3.5rem !important; + .md\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-16 { - --tw-translate-x: -4rem !important; + .md\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-20 { - --tw-translate-x: -5rem !important; + .md\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-24 { - --tw-translate-x: -6rem !important; + .md\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-28 { - --tw-translate-x: -7rem !important; + .md\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-32 { - --tw-translate-x: -8rem !important; + .md\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-36 { - --tw-translate-x: -9rem !important; + .md\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-40 { - --tw-translate-x: -10rem !important; + .md\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-44 { - --tw-translate-x: -11rem !important; + .md\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-48 { - --tw-translate-x: -12rem !important; + .md\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-52 { - --tw-translate-x: -13rem !important; + .md\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-56 { - --tw-translate-x: -14rem !important; + .md\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-60 { - --tw-translate-x: -15rem !important; + .md\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-64 { - --tw-translate-x: -16rem !important; + .md\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-72 { - --tw-translate-x: -18rem !important; + .md\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-80 { - --tw-translate-x: -20rem !important; + .md\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-96 { - --tw-translate-x: -24rem !important; + .md\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-px { - --tw-translate-x: -1px !important; + .md\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem !important; + .md\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem !important; + .md\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem !important; + .md\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem !important; + .md\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .md\:translate-x-1\/2 { - --tw-translate-x: 50% !important; + .md\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .md\:translate-x-1\/3 { - --tw-translate-x: 33.333333% !important; + .md\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .md\:translate-x-2\/3 { - --tw-translate-x: 66.666667% !important; + .md\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .md\:translate-x-1\/4 { - --tw-translate-x: 25% !important; + .md\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .md\:translate-x-2\/4 { - --tw-translate-x: 50% !important; + .md\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .md\:translate-x-3\/4 { - --tw-translate-x: 75% !important; + .md\:focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; } - .md\:translate-x-full { - --tw-translate-x: 100% !important; + .md\:focus\:ring-current:focus { + --tw-ring-color: currentColor !important; } - .md\:-translate-x-1\/2 { - --tw-translate-x: -50% !important; + .md\:focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-1\/3 { - --tw-translate-x: -33.333333% !important; + .md\:focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-2\/3 { - --tw-translate-x: -66.666667% !important; + .md\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-1\/4 { - --tw-translate-x: -25% !important; + .md\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-2\/4 { - --tw-translate-x: -50% !important; + .md\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-3\/4 { - --tw-translate-x: -75% !important; + .md\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .md\:-translate-x-full { - --tw-translate-x: -100% !important; + .md\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .md\:translate-y-0 { - --tw-translate-y: 0px !important; + .md\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .md\:translate-y-1 { - --tw-translate-y: 0.25rem !important; + .md\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .md\:translate-y-2 { - --tw-translate-y: 0.5rem !important; + .md\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .md\:translate-y-3 { - --tw-translate-y: 0.75rem !important; + .md\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .md\:translate-y-4 { - --tw-translate-y: 1rem !important; + .md\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .md\:translate-y-5 { - --tw-translate-y: 1.25rem !important; + .md\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .md\:translate-y-6 { - --tw-translate-y: 1.5rem !important; + .md\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .md\:translate-y-7 { - --tw-translate-y: 1.75rem !important; + .md\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .md\:translate-y-8 { - --tw-translate-y: 2rem !important; + .md\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .md\:translate-y-9 { - --tw-translate-y: 2.25rem !important; + .md\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .md\:translate-y-10 { - --tw-translate-y: 2.5rem !important; + .md\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .md\:translate-y-11 { - --tw-translate-y: 2.75rem !important; + .md\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .md\:translate-y-12 { - --tw-translate-y: 3rem !important; + .md\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .md\:translate-y-14 { - --tw-translate-y: 3.5rem !important; + .md\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .md\:translate-y-16 { - --tw-translate-y: 4rem !important; + .md\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .md\:translate-y-20 { - --tw-translate-y: 5rem !important; + .md\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .md\:translate-y-24 { - --tw-translate-y: 6rem !important; + .md\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .md\:translate-y-28 { - --tw-translate-y: 7rem !important; + .md\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .md\:translate-y-32 { - --tw-translate-y: 8rem !important; + .md\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .md\:translate-y-36 { - --tw-translate-y: 9rem !important; + .md\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .md\:translate-y-40 { - --tw-translate-y: 10rem !important; + .md\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .md\:translate-y-44 { - --tw-translate-y: 11rem !important; + .md\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .md\:translate-y-48 { - --tw-translate-y: 12rem !important; + .md\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .md\:translate-y-52 { - --tw-translate-y: 13rem !important; + .md\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .md\:translate-y-56 { - --tw-translate-y: 14rem !important; + .md\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .md\:translate-y-60 { - --tw-translate-y: 15rem !important; + .md\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .md\:translate-y-64 { - --tw-translate-y: 16rem !important; + .md\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .md\:translate-y-72 { - --tw-translate-y: 18rem !important; + .md\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .md\:translate-y-80 { - --tw-translate-y: 20rem !important; + .md\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .md\:translate-y-96 { - --tw-translate-y: 24rem !important; + .md\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .md\:translate-y-px { - --tw-translate-y: 1px !important; + .md\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .md\:translate-y-0\.5 { - --tw-translate-y: 0.125rem !important; + .md\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .md\:translate-y-1\.5 { - --tw-translate-y: 0.375rem !important; + .md\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .md\:translate-y-2\.5 { - --tw-translate-y: 0.625rem !important; + .md\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .md\:translate-y-3\.5 { - --tw-translate-y: 0.875rem !important; + .md\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-0 { - --tw-translate-y: 0px !important; + .md\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-1 { - --tw-translate-y: -0.25rem !important; + .md\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-2 { - --tw-translate-y: -0.5rem !important; + .md\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-3 { - --tw-translate-y: -0.75rem !important; + .md\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-4 { - --tw-translate-y: -1rem !important; + .md\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-5 { - --tw-translate-y: -1.25rem !important; + .md\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-6 { - --tw-translate-y: -1.5rem !important; + .md\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-7 { - --tw-translate-y: -1.75rem !important; + .md\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-8 { - --tw-translate-y: -2rem !important; + .md\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-9 { - --tw-translate-y: -2.25rem !important; + .md\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-10 { - --tw-translate-y: -2.5rem !important; + .md\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-11 { - --tw-translate-y: -2.75rem !important; + .md\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-12 { - --tw-translate-y: -3rem !important; + .md\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-14 { - --tw-translate-y: -3.5rem !important; + .md\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-16 { - --tw-translate-y: -4rem !important; + .md\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-20 { - --tw-translate-y: -5rem !important; + .md\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-24 { - --tw-translate-y: -6rem !important; + .md\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-28 { - --tw-translate-y: -7rem !important; + .md\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-32 { - --tw-translate-y: -8rem !important; + .md\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-36 { - --tw-translate-y: -9rem !important; + .md\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-40 { - --tw-translate-y: -10rem !important; + .md\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-44 { - --tw-translate-y: -11rem !important; + .md\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-48 { - --tw-translate-y: -12rem !important; + .md\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-52 { - --tw-translate-y: -13rem !important; + .md\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-56 { - --tw-translate-y: -14rem !important; + .md\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-60 { - --tw-translate-y: -15rem !important; + .md\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-64 { - --tw-translate-y: -16rem !important; + .md\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-72 { - --tw-translate-y: -18rem !important; + .md\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-80 { - --tw-translate-y: -20rem !important; + .md\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-96 { - --tw-translate-y: -24rem !important; + .md\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-px { - --tw-translate-y: -1px !important; + .md\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem !important; + .md\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem !important; + .md\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem !important; + .md\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .md\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem !important; + .md\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .md\:translate-y-1\/2 { - --tw-translate-y: 50% !important; + .md\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .md\:translate-y-1\/3 { - --tw-translate-y: 33.333333% !important; + .md\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .md\:translate-y-2\/3 { - --tw-translate-y: 66.666667% !important; + .md\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .md\:translate-y-1\/4 { - --tw-translate-y: 25% !important; + .md\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .md\:translate-y-2\/4 { - --tw-translate-y: 50% !important; + .md\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .md\:translate-y-3\/4 { - --tw-translate-y: 75% !important; + .md\:ring-opacity-0 { + --tw-ring-opacity: 0 !important; } - .md\:translate-y-full { - --tw-translate-y: 100% !important; + .md\:ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; } - .md\:-translate-y-1\/2 { - --tw-translate-y: -50% !important; + .md\:ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; } - .md\:-translate-y-1\/3 { - --tw-translate-y: -33.333333% !important; + .md\:ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; } - .md\:-translate-y-2\/3 { - --tw-translate-y: -66.666667% !important; + .md\:ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; } - .md\:-translate-y-1\/4 { - --tw-translate-y: -25% !important; + .md\:ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; } - .md\:-translate-y-2\/4 { - --tw-translate-y: -50% !important; + .md\:ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; } - .md\:-translate-y-3\/4 { - --tw-translate-y: -75% !important; + .md\:ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; } - .md\:-translate-y-full { - --tw-translate-y: -100% !important; + .md\:ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; } - .md\:hover\:translate-x-0:hover { - --tw-translate-x: 0px !important; + .md\:ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; } - .md\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem !important; + .md\:ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; } - .md\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem !important; + .md\:ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; } - .md\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem !important; + .md\:ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; } - .md\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem !important; + .md\:ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; } - .md\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem !important; + .md\:ring-opacity-100 { + --tw-ring-opacity: 1 !important; } - .md\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem !important; + .md\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; } - .md\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem !important; + .md\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; } - .md\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem !important; + .md\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; } - .md\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem !important; + .md\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; } - .md\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem !important; + .md\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; } - .md\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem !important; + .md\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; } - .md\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem !important; + .md\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; } - .md\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem !important; + .md\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; } - .md\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem !important; + .md\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; } - .md\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem !important; + .md\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; } - .md\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem !important; + .md\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; } - .md\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem !important; + .md\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; } - .md\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem !important; + .md\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; } - .md\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem !important; + .md\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; } - .md\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem !important; + .md\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; } - .md\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem !important; + .md\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; } - .md\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem !important; + .md\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; } - .md\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem !important; + .md\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; } - .md\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem !important; + .md\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; } - .md\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem !important; + .md\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; } - .md\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem !important; + .md\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; } - .md\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem !important; + .md\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; } - .md\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem !important; + .md\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; } - .md\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem !important; + .md\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; } - .md\:hover\:translate-x-px:hover { - --tw-translate-x: 1px !important; + .md\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; } - .md\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem !important; + .md\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; } - .md\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem !important; + .md\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; } - .md\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem !important; + .md\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; } - .md\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem !important; + .md\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; } - .md\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px !important; + .md\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; } - .md\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem !important; + .md\:ring-offset-0 { + --tw-ring-offset-width: 0px !important; } - .md\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem !important; + .md\:ring-offset-1 { + --tw-ring-offset-width: 1px !important; } - .md\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem !important; + .md\:ring-offset-2 { + --tw-ring-offset-width: 2px !important; } - .md\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem !important; + .md\:ring-offset-4 { + --tw-ring-offset-width: 4px !important; } - .md\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem !important; + .md\:ring-offset-8 { + --tw-ring-offset-width: 8px !important; } - .md\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem !important; + .md\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; } - .md\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem !important; + .md\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; } - .md\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem !important; + .md\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; } - .md\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem !important; + .md\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; } - .md\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem !important; + .md\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; } - .md\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem !important; + .md\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; } - .md\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem !important; + .md\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; } - .md\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem !important; + .md\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; } - .md\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem !important; + .md\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; } - .md\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem !important; + .md\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; } - .md\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem !important; + .md\:ring-offset-transparent { + --tw-ring-offset-color: transparent !important; } - .md\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem !important; + .md\:ring-offset-current { + --tw-ring-offset-color: currentColor !important; } - .md\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem !important; + .md\:ring-offset-black { + --tw-ring-offset-color: #000 !important; } - .md\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem !important; + .md\:ring-offset-white { + --tw-ring-offset-color: #fff !important; } - .md\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem !important; + .md\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; } - .md\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem !important; + .md\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; } - .md\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem !important; + .md\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; } - .md\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem !important; + .md\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; } - .md\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem !important; + .md\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; } - .md\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem !important; + .md\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; } - .md\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem !important; + .md\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; } - .md\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem !important; + .md\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; } - .md\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem !important; + .md\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; } - .md\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem !important; + .md\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; } - .md\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px !important; + .md\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; } - .md\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem !important; + .md\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; } - .md\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem !important; + .md\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; } - .md\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem !important; + .md\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; } - .md\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem !important; + .md\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; } - .md\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50% !important; + .md\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; } - .md\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333% !important; + .md\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; } - .md\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667% !important; + .md\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; } - .md\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25% !important; + .md\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; } - .md\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50% !important; + .md\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; } - .md\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75% !important; + .md\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; } - .md\:hover\:translate-x-full:hover { - --tw-translate-x: 100% !important; + .md\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; } - .md\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50% !important; + .md\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; } - .md\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333% !important; + .md\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; } - .md\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667% !important; + .md\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; } - .md\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25% !important; + .md\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; } - .md\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50% !important; + .md\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; } - .md\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75% !important; + .md\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; } - .md\:hover\:-translate-x-full:hover { - --tw-translate-x: -100% !important; + .md\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; } - .md\:hover\:translate-y-0:hover { - --tw-translate-y: 0px !important; + .md\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; } - .md\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem !important; + .md\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; } - .md\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem !important; + .md\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; } - .md\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem !important; + .md\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; } - .md\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem !important; + .md\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; } - .md\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem !important; + .md\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; } - .md\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem !important; + .md\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; } - .md\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem !important; + .md\:ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; } - .md\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem !important; + .md\:ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; } - .md\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem !important; + .md\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; } - .md\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem !important; + .md\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; } - .md\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem !important; + .md\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; } - .md\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem !important; + .md\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; } - .md\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem !important; + .md\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; } - .md\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem !important; + .md\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; } - .md\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem !important; + .md\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; } - .md\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem !important; + .md\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; } - .md\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem !important; + .md\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; } - .md\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem !important; + .md\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; } - .md\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem !important; + .md\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; } - .md\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem !important; + .md\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; } - .md\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem !important; + .md\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; } - .md\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem !important; + .md\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; } - .md\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem !important; + .md\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; } - .md\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem !important; + .md\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; } - .md\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem !important; + .md\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; } - .md\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem !important; + .md\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; } - .md\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem !important; + .md\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; } - .md\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem !important; + .md\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; } - .md\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem !important; + .md\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; } - .md\:hover\:translate-y-px:hover { - --tw-translate-y: 1px !important; + .md\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; } - .md\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem !important; + .md\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; } - .md\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem !important; + .md\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; } - .md\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem !important; + .md\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; } - .md\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem !important; + .md\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; } - .md\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px !important; + .md\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; } - .md\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem !important; + .md\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; } - .md\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem !important; + .md\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; } - .md\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem !important; + .md\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; } - .md\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem !important; + .md\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; } - .md\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem !important; + .md\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; } - .md\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem !important; + .md\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; } - .md\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem !important; + .md\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; } - .md\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem !important; + .md\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; } - .md\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem !important; + .md\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; } - .md\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem !important; + .md\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; } - .md\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem !important; + .md\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; } - .md\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem !important; + .md\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; } - .md\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem !important; + .md\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; } - .md\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem !important; + .md\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; } - .md\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem !important; + .md\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; } - .md\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem !important; + .md\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; } - .md\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem !important; + .md\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; } - .md\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem !important; + .md\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; } - .md\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem !important; + .md\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; } - .md\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem !important; + .md\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; } - .md\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem !important; + .md\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; } - .md\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem !important; + .md\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; } - .md\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem !important; + .md\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; } - .md\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem !important; + .md\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; } - .md\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem !important; + .md\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; } - .md\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem !important; + .md\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; } - .md\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem !important; + .md\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; } - .md\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem !important; + .md\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; } - .md\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem !important; + .md\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; } - .md\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px !important; + .md\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; } - .md\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem !important; + .md\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; } - .md\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem !important; + .md\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; } - .md\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem !important; + .md\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; } - .md\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem !important; + .md\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; } - .md\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50% !important; + .md\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; } - .md\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333% !important; + .md\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; } - .md\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667% !important; + .md\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; } - .md\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25% !important; + .md\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; } - .md\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50% !important; + .md\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; } - .md\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75% !important; + .md\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; } - .md\:hover\:translate-y-full:hover { - --tw-translate-y: 100% !important; + .md\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; } - .md\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50% !important; + .md\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; } - .md\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333% !important; + .md\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; } - .md\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667% !important; + .md\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; } - .md\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25% !important; + .md\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; } - .md\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50% !important; + .md\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; } - .md\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75% !important; + .md\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; } - .md\:hover\:-translate-y-full:hover { - --tw-translate-y: -100% !important; + .md\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; } - .md\:focus\:translate-x-0:focus { - --tw-translate-x: 0px !important; + .md\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; } - .md\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem !important; + .md\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; } - - .md\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem !important; + + .md\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; } - .md\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem !important; + .md\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; } - .md\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem !important; + .md\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; } - .md\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem !important; + .md\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; } - .md\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem !important; + .md\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; } - .md\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem !important; + .md\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; } - .md\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem !important; + .md\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; } - .md\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem !important; + .md\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; } - .md\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem !important; + .md\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; } - .md\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem !important; + .md\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; } - .md\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem !important; + .md\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; } - .md\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem !important; + .md\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; } - .md\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem !important; + .md\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; } - .md\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem !important; + .md\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; } - .md\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem !important; + .md\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; } - .md\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem !important; + .md\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; } - .md\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem !important; + .md\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; } - .md\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem !important; + .md\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; } - .md\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem !important; + .md\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; } - .md\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem !important; + .md\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; } - .md\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem !important; + .md\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; } - .md\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem !important; + .md\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; } - .md\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem !important; + .md\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; } - .md\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem !important; + .md\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; } - .md\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem !important; + .md\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; } - .md\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem !important; + .md\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; } - .md\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem !important; + .md\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; } - .md\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem !important; + .md\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; } - .md\:focus\:translate-x-px:focus { - --tw-translate-x: 1px !important; + .md\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; } - .md\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem !important; + .md\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; } - .md\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem !important; + .md\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; } - .md\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem !important; + .md\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; } - .md\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem !important; + .md\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; } - .md\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px !important; + .md\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; } - .md\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem !important; + .md\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; } - .md\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem !important; + .md\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; } - .md\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem !important; + .md\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; } - .md\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem !important; + .md\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; } - .md\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem !important; + .md\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; } - .md\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem !important; + .md\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; } - .md\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem !important; + .md\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; } - .md\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem !important; + .md\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; } - .md\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem !important; + .md\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; } - .md\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem !important; + .md\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; } - .md\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem !important; + .md\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; } - .md\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem !important; + .md\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; } - .md\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem !important; + .md\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; } - .md\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem !important; + .md\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; } - .md\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem !important; + .md\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; } - .md\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem !important; + .md\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; } - .md\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem !important; + .md\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; } - .md\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem !important; + .md\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; } - .md\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem !important; + .md\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; } - .md\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem !important; + .md\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; } - .md\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem !important; + .md\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; } - .md\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem !important; + .md\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; } - .md\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem !important; + .md\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; } - .md\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem !important; + .md\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; } - .md\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem !important; + .md\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; } - .md\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem !important; + .md\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; } - .md\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem !important; + .md\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; } - .md\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem !important; + .md\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; } - .md\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem !important; + .md\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; } - .md\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px !important; + .md\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; } - .md\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem !important; + .md\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; } - .md\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem !important; + .md\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; } - .md\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem !important; + .md\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; } - .md\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem !important; + .md\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; } - .md\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50% !important; + .md\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; } - .md\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333% !important; + .md\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; } - .md\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667% !important; + .md\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; } - .md\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25% !important; + .md\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; } - .md\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50% !important; + .md\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; } - .md\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75% !important; + .md\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; } - .md\:focus\:translate-x-full:focus { - --tw-translate-x: 100% !important; + .md\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; } - .md\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50% !important; + .md\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; } - .md\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333% !important; + .md\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; } - .md\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667% !important; + .md\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; } - .md\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25% !important; + .md\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; } - .md\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50% !important; + .md\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; } - .md\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75% !important; + .md\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; } - .md\:focus\:-translate-x-full:focus { - --tw-translate-x: -100% !important; + .md\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; } - .md\:focus\:translate-y-0:focus { - --tw-translate-y: 0px !important; + .md\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; } - .md\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem !important; + .md\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; } - .md\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem !important; + .md\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; } - .md\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem !important; + .md\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; } - .md\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem !important; + .md\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; } - .md\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem !important; + .md\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; } - .md\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem !important; + .md\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; } - .md\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem !important; + .md\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; } - .md\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem !important; + .md\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; } - .md\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem !important; + .md\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; } - .md\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem !important; + .md\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; } - .md\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem !important; + .md\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; } - .md\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem !important; + .md\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; } - .md\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem !important; + .md\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; } - .md\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem !important; + .md\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; } - .md\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem !important; + .md\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; } - .md\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem !important; + .md\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; } - .md\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem !important; + .md\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; } - .md\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem !important; + .md\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; } - .md\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem !important; + .md\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; } - .md\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem !important; + .md\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; } - .md\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem !important; + .md\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; } - .md\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem !important; + .md\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; } - .md\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem !important; + .md\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; } - .md\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem !important; + .md\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; } - .md\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem !important; + .md\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; } - .md\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem !important; + .md\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; } - .md\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem !important; + .md\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; } - .md\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem !important; + .md\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; } - .md\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem !important; + .md\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; } - .md\:focus\:translate-y-px:focus { - --tw-translate-y: 1px !important; + .md\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; } - .md\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem !important; + .md\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; } - .md\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem !important; + .md\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; } - .md\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem !important; + .md\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; } - .md\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem !important; + .md\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; } - .md\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px !important; + .md\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; } - .md\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem !important; + .md\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; } - .md\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem !important; + .md\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; } - .md\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem !important; + .md\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; } - .md\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem !important; + .md\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; } - .md\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem !important; + .md\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; } - .md\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem !important; + .md\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; } - .md\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem !important; + .md\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; } - .md\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem !important; + .md\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; } - .md\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem !important; + .md\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; } - .md\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem !important; + .md\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; } - .md\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem !important; + .md\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; } - .md\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem !important; + .md\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; } - .md\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem !important; + .md\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; } - .md\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem !important; + .md\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; } - .md\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem !important; + .md\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; } - .md\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem !important; + .md\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important; } - .md\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem !important; + .md\:filter-none { + filter: none !important; } - .md\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem !important; + .md\:blur-0 { + --tw-blur: blur(0) !important; } - .md\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem !important; + .md\:blur-sm { + --tw-blur: blur(4px) !important; } - .md\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem !important; + .md\:blur { + --tw-blur: blur(8px) !important; } - .md\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem !important; + .md\:blur-md { + --tw-blur: blur(12px) !important; } - .md\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem !important; + .md\:blur-lg { + --tw-blur: blur(16px) !important; } - .md\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem !important; + .md\:blur-xl { + --tw-blur: blur(24px) !important; } - .md\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem !important; + .md\:blur-2xl { + --tw-blur: blur(40px) !important; } - .md\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem !important; + .md\:blur-3xl { + --tw-blur: blur(64px) !important; } - .md\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem !important; + .md\:brightness-0 { + --tw-brightness: brightness(0) !important; } - .md\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem !important; + .md\:brightness-50 { + --tw-brightness: brightness(.5) !important; } - .md\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem !important; + .md\:brightness-75 { + --tw-brightness: brightness(.75) !important; } - .md\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem !important; + .md\:brightness-90 { + --tw-brightness: brightness(.9) !important; } - .md\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px !important; + .md\:brightness-95 { + --tw-brightness: brightness(.95) !important; } - .md\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem !important; + .md\:brightness-100 { + --tw-brightness: brightness(1) !important; } - .md\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem !important; + .md\:brightness-105 { + --tw-brightness: brightness(1.05) !important; } - .md\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem !important; + .md\:brightness-110 { + --tw-brightness: brightness(1.1) !important; } - .md\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem !important; + .md\:brightness-125 { + --tw-brightness: brightness(1.25) !important; } - .md\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50% !important; + .md\:brightness-150 { + --tw-brightness: brightness(1.5) !important; } - .md\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333% !important; + .md\:brightness-200 { + --tw-brightness: brightness(2) !important; } - .md\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667% !important; + .md\:contrast-0 { + --tw-contrast: contrast(0) !important; } - .md\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25% !important; + .md\:contrast-50 { + --tw-contrast: contrast(.5) !important; } - .md\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50% !important; + .md\:contrast-75 { + --tw-contrast: contrast(.75) !important; } - .md\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75% !important; + .md\:contrast-100 { + --tw-contrast: contrast(1) !important; } - .md\:focus\:translate-y-full:focus { - --tw-translate-y: 100% !important; + .md\:contrast-125 { + --tw-contrast: contrast(1.25) !important; } - .md\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50% !important; + .md\:contrast-150 { + --tw-contrast: contrast(1.5) !important; } - .md\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333% !important; + .md\:contrast-200 { + --tw-contrast: contrast(2) !important; } - .md\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667% !important; + .md\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; } - .md\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25% !important; + .md\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; } - .md\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50% !important; + .md\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; } - .md\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75% !important; + .md\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; } - .md\:focus\:-translate-y-full:focus { - --tw-translate-y: -100% !important; + .md\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; } - .md\:skew-x-0 { - --tw-skew-x: 0deg !important; + .md\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; } - .md\:skew-x-1 { - --tw-skew-x: 1deg !important; + .md\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000) !important; } - .md\:skew-x-2 { - --tw-skew-x: 2deg !important; + .md\:grayscale-0 { + --tw-grayscale: grayscale(0) !important; } - .md\:skew-x-3 { - --tw-skew-x: 3deg !important; + .md\:grayscale { + --tw-grayscale: grayscale(100%) !important; } - .md\:skew-x-6 { - --tw-skew-x: 6deg !important; + .md\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg) !important; } - .md\:skew-x-12 { - --tw-skew-x: 12deg !important; + .md\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg) !important; } - .md\:-skew-x-12 { - --tw-skew-x: -12deg !important; + .md\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg) !important; } - .md\:-skew-x-6 { - --tw-skew-x: -6deg !important; + .md\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg) !important; } - .md\:-skew-x-3 { - --tw-skew-x: -3deg !important; + .md\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg) !important; } - .md\:-skew-x-2 { - --tw-skew-x: -2deg !important; + .md\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg) !important; } - .md\:-skew-x-1 { - --tw-skew-x: -1deg !important; + .md\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg) !important; } - .md\:skew-y-0 { - --tw-skew-y: 0deg !important; + .md\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg) !important; } - .md\:skew-y-1 { - --tw-skew-y: 1deg !important; + .md\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg) !important; } - .md\:skew-y-2 { - --tw-skew-y: 2deg !important; + .md\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg) !important; } - .md\:skew-y-3 { - --tw-skew-y: 3deg !important; + .md\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg) !important; } - .md\:skew-y-6 { - --tw-skew-y: 6deg !important; + .md\:invert-0 { + --tw-invert: invert(0) !important; } - .md\:skew-y-12 { - --tw-skew-y: 12deg !important; + .md\:invert { + --tw-invert: invert(100%) !important; } - .md\:-skew-y-12 { - --tw-skew-y: -12deg !important; + .md\:saturate-0 { + --tw-saturate: saturate(0) !important; } - .md\:-skew-y-6 { - --tw-skew-y: -6deg !important; + .md\:saturate-50 { + --tw-saturate: saturate(.5) !important; } - .md\:-skew-y-3 { - --tw-skew-y: -3deg !important; + .md\:saturate-100 { + --tw-saturate: saturate(1) !important; } - .md\:-skew-y-2 { - --tw-skew-y: -2deg !important; + .md\:saturate-150 { + --tw-saturate: saturate(1.5) !important; } - .md\:-skew-y-1 { - --tw-skew-y: -1deg !important; + .md\:saturate-200 { + --tw-saturate: saturate(2) !important; } - .md\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg !important; + .md\:sepia-0 { + --tw-sepia: sepia(0) !important; } - .md\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg !important; + .md\:sepia { + --tw-sepia: sepia(100%) !important; } - .md\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg !important; + .md\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important; } - .md\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg !important; + .md\:backdrop-filter-none { + backdrop-filter: none !important; } - .md\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg !important; + .md\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0) !important; } - .md\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg !important; + .md\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5) !important; } - .md\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg !important; + .md\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75) !important; } - .md\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg !important; + .md\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9) !important; } - .md\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg !important; + .md\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95) !important; } - .md\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg !important; + .md\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1) !important; } - .md\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg !important; + .md\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05) !important; } - .md\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg !important; + .md\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1) !important; } - .md\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg !important; + .md\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25) !important; } - .md\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg !important; + .md\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5) !important; } - .md\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg !important; + .md\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2) !important; } - .md\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg !important; + .md\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0) !important; } - .md\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg !important; + .md\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5) !important; } - .md\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg !important; + .md\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75) !important; } - .md\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg !important; + .md\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1) !important; } - .md\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg !important; + .md\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25) !important; } - .md\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg !important; + .md\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5) !important; } - .md\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg !important; + .md\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2) !important; } - .md\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg !important; + .md\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0) !important; } - .md\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg !important; + .md\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%) !important; } - .md\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg !important; + .md\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; } - .md\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg !important; + .md\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; } - .md\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg !important; + .md\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; } - .md\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg !important; + .md\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; } - .md\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg !important; + .md\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; } - .md\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg !important; + .md\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; } - .md\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg !important; + .md\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; } - .md\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg !important; + .md\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; } - .md\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg !important; + .md\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; } - .md\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg !important; + .md\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; } - .md\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg !important; + .md\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; } - .md\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg !important; + .md\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0) !important; } - .md\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg !important; + .md\:backdrop-invert { + --tw-backdrop-invert: invert(100%) !important; } - .md\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg !important; + .md\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0) !important; } - .md\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg !important; + .md\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5) !important; } - .md\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg !important; + .md\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1) !important; } - .md\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg !important; + .md\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5) !important; } - .md\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg !important; + .md\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2) !important; } - .md\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg !important; + .md\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0) !important; } - .md\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg !important; + .md\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%) !important; } .md\:transition-none { @@ -87394,6 +87956,70 @@ video { transition-duration: 150ms !important; } + .md\:delay-75 { + transition-delay: 75ms !important; + } + + .md\:delay-100 { + transition-delay: 100ms !important; + } + + .md\:delay-150 { + transition-delay: 150ms !important; + } + + .md\:delay-200 { + transition-delay: 200ms !important; + } + + .md\:delay-300 { + transition-delay: 300ms !important; + } + + .md\:delay-500 { + transition-delay: 500ms !important; + } + + .md\:delay-700 { + transition-delay: 700ms !important; + } + + .md\:delay-1000 { + transition-delay: 1000ms !important; + } + + .md\:duration-75 { + transition-duration: 75ms !important; + } + + .md\:duration-100 { + transition-duration: 100ms !important; + } + + .md\:duration-150 { + transition-duration: 150ms !important; + } + + .md\:duration-200 { + transition-duration: 200ms !important; + } + + .md\:duration-300 { + transition-duration: 300ms !important; + } + + .md\:duration-500 { + transition-duration: 500ms !important; + } + + .md\:duration-700 { + transition-duration: 700ms !important; + } + + .md\:duration-1000 { + transition-duration: 1000ms !important; + } + .md\:ease-linear { transition-timing-function: linear !important; } @@ -87410,22319 +88036,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; } - .md\:duration-75 { - transition-duration: 75ms !important; + .md\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 1024px) { + .lg\:container { + width: 100%; + } + + @media (min-width: 640px) { + .lg\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .lg\:container { + max-width: 768px; + } } - .md\:duration-100 { - transition-duration: 100ms !important; + @media (min-width: 1024px) { + .lg\:container { + max-width: 1024px; + } } - .md\:duration-150 { - transition-duration: 150ms !important; + @media (min-width: 1280px) { + .lg\:container { + max-width: 1280px; + } } - .md\:duration-200 { - transition-duration: 200ms !important; + @media (min-width: 1536px) { + .lg\:container { + max-width: 1536px; + } } - .md\:duration-300 { - transition-duration: 300ms !important; + .lg\:sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .md\:duration-500 { - transition-duration: 500ms !important; + .lg\:not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .md\:duration-700 { - transition-duration: 700ms !important; + .lg\:focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .md\:duration-1000 { - transition-duration: 1000ms !important; + .lg\:focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .md\:delay-75 { - transition-delay: 75ms !important; + .lg\:focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .md\:delay-100 { - transition-delay: 100ms !important; + .lg\:focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .md\:delay-150 { - transition-delay: 150ms !important; + .lg\:pointer-events-none { + pointer-events: none !important; } - .md\:delay-200 { - transition-delay: 200ms !important; + .lg\:pointer-events-auto { + pointer-events: auto !important; } - .md\:delay-300 { - transition-delay: 300ms !important; + .lg\:visible { + visibility: visible !important; } - .md\:delay-500 { - transition-delay: 500ms !important; + .lg\:invisible { + visibility: hidden !important; } - .md\:delay-700 { - transition-delay: 700ms !important; + .lg\:static { + position: static !important; } - .md\:delay-1000 { - transition-delay: 1000ms !important; + .lg\:fixed { + position: fixed !important; } - .md\:animate-none { - animation: none !important; + .lg\:absolute { + position: absolute !important; } - .md\:animate-spin { - animation: spin 1s linear infinite !important; + .lg\:relative { + position: relative !important; } - .md\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + .lg\:sticky { + position: sticky !important; } - .md\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + .lg\:inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; } - .md\:animate-bounce { - animation: bounce 1s infinite !important; + .lg\:inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !important; } - .md\:mix-blend-normal { - mix-blend-mode: normal !important; + .lg\:inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !important; } - .md\:mix-blend-multiply { - mix-blend-mode: multiply !important; + .lg\:inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !important; } - .md\:mix-blend-screen { - mix-blend-mode: screen !important; + .lg\:inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !important; } - .md\:mix-blend-overlay { - mix-blend-mode: overlay !important; + .lg\:inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !important; } - .md\:mix-blend-darken { - mix-blend-mode: darken !important; + .lg\:inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !important; } - .md\:mix-blend-lighten { - mix-blend-mode: lighten !important; + .lg\:inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !important; } - .md\:mix-blend-color-dodge { - mix-blend-mode: color-dodge !important; + .lg\:inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !important; } - .md\:mix-blend-color-burn { - mix-blend-mode: color-burn !important; + .lg\:inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !important; } - .md\:mix-blend-hard-light { - mix-blend-mode: hard-light !important; + .lg\:inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !important; } - .md\:mix-blend-soft-light { - mix-blend-mode: soft-light !important; + .lg\:inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !important; } - .md\:mix-blend-difference { - mix-blend-mode: difference !important; + .lg\:inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !important; } - .md\:mix-blend-exclusion { - mix-blend-mode: exclusion !important; + .lg\:inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !important; } - .md\:mix-blend-hue { - mix-blend-mode: hue !important; + .lg\:inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !important; } - .md\:mix-blend-saturation { - mix-blend-mode: saturation !important; + .lg\:inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !important; } - .md\:mix-blend-color { - mix-blend-mode: color !important; + .lg\:inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !important; } - .md\:mix-blend-luminosity { - mix-blend-mode: luminosity !important; + .lg\:inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !important; } - .md\:bg-blend-normal { - background-blend-mode: normal !important; + .lg\:inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !important; } - .md\:bg-blend-multiply { - background-blend-mode: multiply !important; + .lg\:inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !important; } - .md\:bg-blend-screen { - background-blend-mode: screen !important; + .lg\:inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !important; } - .md\:bg-blend-overlay { - background-blend-mode: overlay !important; + .lg\:inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !important; } - .md\:bg-blend-darken { - background-blend-mode: darken !important; + .lg\:inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !important; } - .md\:bg-blend-lighten { - background-blend-mode: lighten !important; + .lg\:inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !important; } - .md\:bg-blend-color-dodge { - background-blend-mode: color-dodge !important; + .lg\:inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !important; } - .md\:bg-blend-color-burn { - background-blend-mode: color-burn !important; + .lg\:inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !important; } - .md\:bg-blend-hard-light { - background-blend-mode: hard-light !important; + .lg\:inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !important; } - .md\:bg-blend-soft-light { - background-blend-mode: soft-light !important; + .lg\:inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !important; } - .md\:bg-blend-difference { - background-blend-mode: difference !important; + .lg\:inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !important; } - .md\:bg-blend-exclusion { - background-blend-mode: exclusion !important; + .lg\:inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !important; } - .md\:bg-blend-hue { - background-blend-mode: hue !important; + .lg\:inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !important; } - .md\:bg-blend-saturation { - background-blend-mode: saturation !important; + .lg\:inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !important; } - .md\:bg-blend-color { - background-blend-mode: color !important; + .lg\:inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !important; } - .md\:bg-blend-luminosity { - background-blend-mode: luminosity !important; + .lg\:inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !important; } - .md\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important; + .lg\:inset-2\.5 { + top: 0.625rem !important; + right: 0.625rem !important; + bottom: 0.625rem !important; + left: 0.625rem !important; } - .md\:filter-none { - filter: none !important; + .lg\:inset-3\.5 { + top: 0.875rem !important; + right: 0.875rem !important; + bottom: 0.875rem !important; + left: 0.875rem !important; } - .md\:blur-0 { - --tw-blur: blur(0) !important; + .lg\:-inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; } - .md\:blur-sm { - --tw-blur: blur(4px) !important; + .lg\:-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !important; } - .md\:blur { - --tw-blur: blur(8px) !important; + .lg\:-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !important; } - .md\:blur-md { - --tw-blur: blur(12px) !important; + .lg\:-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !important; } - .md\:blur-lg { - --tw-blur: blur(16px) !important; + .lg\:-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !important; } - .md\:blur-xl { - --tw-blur: blur(24px) !important; + .lg\:-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !important; } - .md\:blur-2xl { - --tw-blur: blur(40px) !important; + .lg\:-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !important; } - .md\:blur-3xl { - --tw-blur: blur(64px) !important; + .lg\:-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !important; } - .md\:brightness-0 { - --tw-brightness: brightness(0) !important; + .lg\:-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !important; } - .md\:brightness-50 { - --tw-brightness: brightness(.5) !important; + .lg\:-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !important; } - .md\:brightness-75 { - --tw-brightness: brightness(.75) !important; + .lg\:-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !important; } - .md\:brightness-90 { - --tw-brightness: brightness(.9) !important; + .lg\:-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !important; } - .md\:brightness-95 { - --tw-brightness: brightness(.95) !important; + .lg\:-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !important; } - .md\:brightness-100 { - --tw-brightness: brightness(1) !important; + .lg\:-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !important; } - .md\:brightness-105 { - --tw-brightness: brightness(1.05) !important; + .lg\:-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !important; } - .md\:brightness-110 { - --tw-brightness: brightness(1.1) !important; + .lg\:-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !important; } - .md\:brightness-125 { - --tw-brightness: brightness(1.25) !important; + .lg\:-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !important; } - .md\:brightness-150 { - --tw-brightness: brightness(1.5) !important; + .lg\:-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !important; } - .md\:brightness-200 { - --tw-brightness: brightness(2) !important; + .lg\:-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !important; } - .md\:contrast-0 { - --tw-contrast: contrast(0) !important; + .lg\:-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !important; } - .md\:contrast-50 { - --tw-contrast: contrast(.5) !important; + .lg\:-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !important; } - .md\:contrast-75 { - --tw-contrast: contrast(.75) !important; + .lg\:-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !important; } - .md\:contrast-100 { - --tw-contrast: contrast(1) !important; + .lg\:-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !important; } - .md\:contrast-125 { - --tw-contrast: contrast(1.25) !important; + .lg\:-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !important; } - .md\:contrast-150 { - --tw-contrast: contrast(1.5) !important; + .lg\:-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !important; } - .md\:contrast-200 { - --tw-contrast: contrast(2) !important; + .lg\:-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !important; } - .md\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; + .lg\:-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !important; } - .md\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; + .lg\:-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !important; } - .md\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; + .lg\:-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !important; } - .md\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; + .lg\:-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !important; } - .md\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; + .lg\:-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !important; } - .md\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; + .lg\:-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !important; } - .md\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000) !important; + .lg\:-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !important; } - .md\:grayscale-0 { - --tw-grayscale: grayscale(0) !important; + .lg\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; } - .md\:grayscale { - --tw-grayscale: grayscale(100%) !important; + .lg\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; } - .md\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg) !important; + .lg\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; } - .md\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg) !important; + .lg\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; } - .md\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg) !important; + .lg\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; } - .md\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg) !important; + .lg\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; } - .md\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg) !important; + .lg\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; } - .md\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg) !important; + .lg\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; } - .md\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg) !important; + .lg\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; } - .md\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg) !important; + .lg\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; } - .md\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg) !important; + .lg\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; } - .md\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg) !important; + .lg\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; } - .md\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg) !important; + .lg\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; } - .md\:invert-0 { - --tw-invert: invert(0) !important; + .lg\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; } - .md\:invert { - --tw-invert: invert(100%) !important; + .lg\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; } - .md\:saturate-0 { - --tw-saturate: saturate(0) !important; + .lg\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; } - .md\:saturate-50 { - --tw-saturate: saturate(.5) !important; + .lg\:inset-y-0 { + top: 0px !important; + bottom: 0px !important; } - .md\:saturate-100 { - --tw-saturate: saturate(1) !important; + .lg\:inset-x-0 { + right: 0px !important; + left: 0px !important; } - .md\:saturate-150 { - --tw-saturate: saturate(1.5) !important; + .lg\:inset-y-1 { + top: 0.25rem !important; + bottom: 0.25rem !important; } - .md\:saturate-200 { - --tw-saturate: saturate(2) !important; + .lg\:inset-x-1 { + right: 0.25rem !important; + left: 0.25rem !important; } - .md\:sepia-0 { - --tw-sepia: sepia(0) !important; + .lg\:inset-y-2 { + top: 0.5rem !important; + bottom: 0.5rem !important; } - .md\:sepia { - --tw-sepia: sepia(100%) !important; + .lg\:inset-x-2 { + right: 0.5rem !important; + left: 0.5rem !important; } - .md\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important; + .lg\:inset-y-3 { + top: 0.75rem !important; + bottom: 0.75rem !important; } - .md\:backdrop-filter-none { - backdrop-filter: none !important; + .lg\:inset-x-3 { + right: 0.75rem !important; + left: 0.75rem !important; } - .md\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0) !important; + .lg\:inset-y-4 { + top: 1rem !important; + bottom: 1rem !important; } - .md\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5) !important; + .lg\:inset-x-4 { + right: 1rem !important; + left: 1rem !important; } - .md\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75) !important; + .lg\:inset-y-5 { + top: 1.25rem !important; + bottom: 1.25rem !important; } - .md\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9) !important; + .lg\:inset-x-5 { + right: 1.25rem !important; + left: 1.25rem !important; } - .md\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95) !important; + .lg\:inset-y-6 { + top: 1.5rem !important; + bottom: 1.5rem !important; } - .md\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1) !important; + .lg\:inset-x-6 { + right: 1.5rem !important; + left: 1.5rem !important; } - .md\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05) !important; + .lg\:inset-y-7 { + top: 1.75rem !important; + bottom: 1.75rem !important; } - .md\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1) !important; + .lg\:inset-x-7 { + right: 1.75rem !important; + left: 1.75rem !important; } - .md\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25) !important; + .lg\:inset-y-8 { + top: 2rem !important; + bottom: 2rem !important; } - .md\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5) !important; + .lg\:inset-x-8 { + right: 2rem !important; + left: 2rem !important; } - .md\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2) !important; + .lg\:inset-y-9 { + top: 2.25rem !important; + bottom: 2.25rem !important; } - .md\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0) !important; + .lg\:inset-x-9 { + right: 2.25rem !important; + left: 2.25rem !important; } - .md\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5) !important; + .lg\:inset-y-10 { + top: 2.5rem !important; + bottom: 2.5rem !important; } - .md\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75) !important; + .lg\:inset-x-10 { + right: 2.5rem !important; + left: 2.5rem !important; } - .md\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1) !important; + .lg\:inset-y-11 { + top: 2.75rem !important; + bottom: 2.75rem !important; } - .md\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25) !important; + .lg\:inset-x-11 { + right: 2.75rem !important; + left: 2.75rem !important; } - .md\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5) !important; + .lg\:inset-y-12 { + top: 3rem !important; + bottom: 3rem !important; } - .md\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2) !important; + .lg\:inset-x-12 { + right: 3rem !important; + left: 3rem !important; } - .md\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0) !important; + .lg\:inset-y-14 { + top: 3.5rem !important; + bottom: 3.5rem !important; } - .md\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%) !important; + .lg\:inset-x-14 { + right: 3.5rem !important; + left: 3.5rem !important; } - .md\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; + .lg\:inset-y-16 { + top: 4rem !important; + bottom: 4rem !important; } - .md\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; + .lg\:inset-x-16 { + right: 4rem !important; + left: 4rem !important; } - .md\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; + .lg\:inset-y-20 { + top: 5rem !important; + bottom: 5rem !important; } - .md\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; + .lg\:inset-x-20 { + right: 5rem !important; + left: 5rem !important; } - .md\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; + .lg\:inset-y-24 { + top: 6rem !important; + bottom: 6rem !important; } - .md\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; + .lg\:inset-x-24 { + right: 6rem !important; + left: 6rem !important; } - .md\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; + .lg\:inset-y-28 { + top: 7rem !important; + bottom: 7rem !important; } - .md\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; + .lg\:inset-x-28 { + right: 7rem !important; + left: 7rem !important; } - .md\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; + .lg\:inset-y-32 { + top: 8rem !important; + bottom: 8rem !important; } - .md\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; + .lg\:inset-x-32 { + right: 8rem !important; + left: 8rem !important; } - .md\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; + .lg\:inset-y-36 { + top: 9rem !important; + bottom: 9rem !important; } - .md\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0) !important; + .lg\:inset-x-36 { + right: 9rem !important; + left: 9rem !important; } - .md\:backdrop-invert { - --tw-backdrop-invert: invert(100%) !important; + .lg\:inset-y-40 { + top: 10rem !important; + bottom: 10rem !important; } - .md\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0) !important; + .lg\:inset-x-40 { + right: 10rem !important; + left: 10rem !important; } - .md\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5) !important; + .lg\:inset-y-44 { + top: 11rem !important; + bottom: 11rem !important; } - .md\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1) !important; + .lg\:inset-x-44 { + right: 11rem !important; + left: 11rem !important; } - .md\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5) !important; + .lg\:inset-y-48 { + top: 12rem !important; + bottom: 12rem !important; } - .md\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2) !important; + .lg\:inset-x-48 { + right: 12rem !important; + left: 12rem !important; } - .md\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0) !important; + .lg\:inset-y-52 { + top: 13rem !important; + bottom: 13rem !important; } - .md\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%) !important; + .lg\:inset-x-52 { + right: 13rem !important; + left: 13rem !important; } - .md\:example { - font-weight: 700; - color: #ef4444; + .lg\:inset-y-56 { + top: 14rem !important; + bottom: 14rem !important; } -} -@media (min-width: 1024px) { - .lg\:container { - width: 100%; + .lg\:inset-x-56 { + right: 14rem !important; + left: 14rem !important; } - @media (min-width: 640px) { - .lg\:container { - max-width: 640px; - } + .lg\:inset-y-60 { + top: 15rem !important; + bottom: 15rem !important; } - @media (min-width: 768px) { - .lg\:container { - max-width: 768px; - } + .lg\:inset-x-60 { + right: 15rem !important; + left: 15rem !important; } - @media (min-width: 1024px) { - .lg\:container { - max-width: 1024px; - } + .lg\:inset-y-64 { + top: 16rem !important; + bottom: 16rem !important; } - @media (min-width: 1280px) { - .lg\:container { - max-width: 1280px; - } + .lg\:inset-x-64 { + right: 16rem !important; + left: 16rem !important; } - @media (min-width: 1536px) { - .lg\:container { - max-width: 1536px; - } + .lg\:inset-y-72 { + top: 18rem !important; + bottom: 18rem !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\:inset-x-72 { + right: 18rem !important; + left: 18rem !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\:inset-y-80 { + top: 20rem !important; + bottom: 20rem !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\:inset-x-80 { + right: 20rem !important; + left: 20rem !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\:inset-y-96 { + top: 24rem !important; + bottom: 24rem !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\:inset-x-96 { + right: 24rem !important; + left: 24rem !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\:inset-y-auto { + top: auto !important; + bottom: auto !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\:inset-x-auto { + right: auto !important; + left: auto !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\:inset-y-px { + top: 1px !important; + bottom: 1px !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\:inset-x-px { + right: 1px !important; + left: 1px !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\:inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !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\:inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !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\:inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !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\:inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !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\:inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !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\:inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !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\:inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !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\:inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !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\:-inset-y-0 { + top: 0px !important; + bottom: 0px !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\:-inset-x-0 { + right: 0px !important; + left: 0px !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\:-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !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\:-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !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\:-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !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\:-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !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\:-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !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\:-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !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\:-inset-y-4 { + top: -1rem !important; + bottom: -1rem !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\:-inset-x-4 { + right: -1rem !important; + left: -1rem !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\:-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !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\:-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !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\:-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !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\:-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !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\:-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !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\:-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !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\:-inset-y-8 { + top: -2rem !important; + bottom: -2rem !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\:-inset-x-8 { + right: -2rem !important; + left: -2rem !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\:-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !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\:-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !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\:-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !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\:-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !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\:-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !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\:-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !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\:-inset-y-12 { + top: -3rem !important; + bottom: -3rem !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\:-inset-x-12 { + right: -3rem !important; + left: -3rem !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\:-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !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\:-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !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\:-inset-y-16 { + top: -4rem !important; + bottom: -4rem !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\:-inset-x-16 { + right: -4rem !important; + left: -4rem !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\:-inset-y-20 { + top: -5rem !important; + bottom: -5rem !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\:-inset-x-20 { + right: -5rem !important; + left: -5rem !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\:-inset-y-24 { + top: -6rem !important; + bottom: -6rem !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\:-inset-x-24 { + right: -6rem !important; + left: -6rem !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\:-inset-y-28 { + top: -7rem !important; + bottom: -7rem !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\:-inset-x-28 { + right: -7rem !important; + left: -7rem !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\:-inset-y-32 { + top: -8rem !important; + bottom: -8rem !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\:-inset-x-32 { + right: -8rem !important; + left: -8rem !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\:-inset-y-36 { + top: -9rem !important; + bottom: -9rem !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\:-inset-x-36 { + right: -9rem !important; + left: -9rem !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\:-inset-y-40 { + top: -10rem !important; + bottom: -10rem !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\:-inset-x-40 { + right: -10rem !important; + left: -10rem !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\:-inset-y-44 { + top: -11rem !important; + bottom: -11rem !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\:-inset-x-44 { + right: -11rem !important; + left: -11rem !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\:-inset-y-48 { + top: -12rem !important; + bottom: -12rem !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\:-inset-x-48 { + right: -12rem !important; + left: -12rem !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\:-inset-y-52 { + top: -13rem !important; + bottom: -13rem !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\:-inset-x-52 { + right: -13rem !important; + left: -13rem !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\:-inset-y-56 { + top: -14rem !important; + bottom: -14rem !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\:-inset-x-56 { + right: -14rem !important; + left: -14rem !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\:-inset-y-60 { + top: -15rem !important; + bottom: -15rem !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\:-inset-x-60 { + right: -15rem !important; + left: -15rem !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\:-inset-y-64 { + top: -16rem !important; + bottom: -16rem !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\:-inset-x-64 { + right: -16rem !important; + left: -16rem !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\:-inset-y-72 { + top: -18rem !important; + bottom: -18rem !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\:-inset-x-72 { + right: -18rem !important; + left: -18rem !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\:-inset-y-80 { + top: -20rem !important; + bottom: -20rem !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\:-inset-x-80 { + right: -20rem !important; + left: -20rem !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\:-inset-y-96 { + top: -24rem !important; + bottom: -24rem !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\:-inset-x-96 { + right: -24rem !important; + left: -24rem !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\:-inset-y-px { + top: -1px !important; + bottom: -1px !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\:-inset-x-px { + right: -1px !important; + left: -1px !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\:-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !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\:-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !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\:-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !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\:-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !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\:-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !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\:-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !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\:-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !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\:-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !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\:inset-y-1\/2 { + top: 50% !important; + bottom: 50% !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\:inset-x-1\/2 { + right: 50% !important; + left: 50% !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\:inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !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\:inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !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\:inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !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\:inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !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\:inset-y-1\/4 { + top: 25% !important; + bottom: 25% !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\:inset-x-1\/4 { + right: 25% !important; + left: 25% !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\:inset-y-2\/4 { + top: 50% !important; + bottom: 50% !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\:inset-x-2\/4 { + right: 50% !important; + left: 50% !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\:inset-y-3\/4 { + top: 75% !important; + bottom: 75% !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\:inset-x-3\/4 { + right: 75% !important; + left: 75% !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\:inset-y-full { + top: 100% !important; + bottom: 100% !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\:inset-x-full { + right: 100% !important; + left: 100% !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\:-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !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\:-inset-x-1\/2 { + right: -50% !important; + left: -50% !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\:-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !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\:-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !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\:-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !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\:-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !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\:-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !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\:-inset-x-1\/4 { + right: -25% !important; + left: -25% !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\:-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !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\:-inset-x-2\/4 { + right: -50% !important; + left: -50% !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\:-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !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\:-inset-x-3\/4 { + right: -75% !important; + left: -75% !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\:-inset-y-full { + top: -100% !important; + bottom: -100% !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\:-inset-x-full { + right: -100% !important; + left: -100% !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\:top-0 { + top: 0px !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\:right-0 { + right: 0px !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\:bottom-0 { + bottom: 0px !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\:left-0 { + left: 0px !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\:top-1 { + top: 0.25rem !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\:right-1 { + right: 0.25rem !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\:bottom-1 { + bottom: 0.25rem !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\:left-1 { + left: 0.25rem !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\:top-2 { + top: 0.5rem !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\:right-2 { + right: 0.5rem !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\:bottom-2 { + bottom: 0.5rem !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\:left-2 { + left: 0.5rem !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\:top-3 { + top: 0.75rem !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\:right-3 { + right: 0.75rem !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\:bottom-3 { + bottom: 0.75rem !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\:left-3 { + left: 0.75rem !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\:top-4 { + top: 1rem !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\:right-4 { + right: 1rem !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\:bottom-4 { + bottom: 1rem !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\:left-4 { + left: 1rem !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\:top-5 { + top: 1.25rem !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\:right-5 { + right: 1.25rem !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\:bottom-5 { + bottom: 1.25rem !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\:left-5 { + left: 1.25rem !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\:top-6 { + top: 1.5rem !important; } - .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1 !important; + .lg\:right-6 { + right: 1.5rem !important; } - .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1 !important; + .lg\:bottom-6 { + bottom: 1.5rem !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\:left-6 { + left: 1.5rem !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\:top-7 { + top: 1.75rem !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\:right-7 { + right: 1.75rem !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\:bottom-7 { + bottom: 1.75rem !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\:left-7 { + left: 1.75rem !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\:top-8 { + top: 2rem !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\:right-8 { + right: 2rem !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\:bottom-8 { + bottom: 2rem !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\:left-8 { + left: 2rem !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\:top-9 { + top: 2.25rem !important; } - .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1 !important; + .lg\:right-9 { + right: 2.25rem !important; } - .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1 !important; + .lg\:bottom-9 { + bottom: 2.25rem !important; } - .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent !important; + .lg\:left-9 { + left: 2.25rem !important; } - .lg\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor !important; + .lg\:top-10 { + top: 2.5rem !important; } - .lg\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; + .lg\:right-10 { + right: 2.5rem !important; } - .lg\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; + .lg\:bottom-10 { + bottom: 2.5rem !important; } - .lg\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; + .lg\:left-10 { + left: 2.5rem !important; } - .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; + .lg\:top-11 { + top: 2.75rem !important; } - .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; + .lg\:right-11 { + right: 2.75rem !important; } - .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; + .lg\:bottom-11 { + bottom: 2.75rem !important; } - .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; + .lg\:left-11 { + left: 2.75rem !important; } - .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; + .lg\:top-12 { + top: 3rem !important; } - .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; + .lg\:right-12 { + right: 3rem !important; } - .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; + .lg\:bottom-12 { + bottom: 3rem !important; } - .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; + .lg\:left-12 { + left: 3rem !important; } - .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; + .lg\:top-14 { + top: 3.5rem !important; } - .lg\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; + .lg\:right-14 { + right: 3.5rem !important; } - .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; + .lg\:bottom-14 { + bottom: 3.5rem !important; } - .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; + .lg\:left-14 { + left: 3.5rem !important; } - .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; + .lg\:top-16 { + top: 4rem !important; } - .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; + .lg\:right-16 { + right: 4rem !important; } - .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; + .lg\:bottom-16 { + bottom: 4rem !important; } - .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; + .lg\:left-16 { + left: 4rem !important; } - .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; + .lg\:top-20 { + top: 5rem !important; } - .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; + .lg\:right-20 { + right: 5rem !important; } - .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; + .lg\:bottom-20 { + bottom: 5rem !important; } - .lg\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; + .lg\:left-20 { + left: 5rem !important; } - .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; + .lg\:top-24 { + top: 6rem !important; } - .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; + .lg\:right-24 { + right: 6rem !important; } - .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; + .lg\:bottom-24 { + bottom: 6rem !important; } - .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; + .lg\:left-24 { + left: 6rem !important; } - .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; + .lg\:top-28 { + top: 7rem !important; } - .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; + .lg\:right-28 { + right: 7rem !important; } - .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; + .lg\:bottom-28 { + bottom: 7rem !important; } - .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; + .lg\:left-28 { + left: 7rem !important; } - .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; + .lg\:top-32 { + top: 8rem !important; } - .lg\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; + .lg\:right-32 { + right: 8rem !important; } - .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; + .lg\:bottom-32 { + bottom: 8rem !important; } - .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; + .lg\:left-32 { + left: 8rem !important; } - .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; + .lg\:top-36 { + top: 9rem !important; } - .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; + .lg\:right-36 { + right: 9rem !important; } - .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; + .lg\:bottom-36 { + bottom: 9rem !important; } - .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; + .lg\:left-36 { + left: 9rem !important; } - .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; + .lg\:top-40 { + top: 10rem !important; } - .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; + .lg\:right-40 { + right: 10rem !important; } - .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; + .lg\:bottom-40 { + bottom: 10rem !important; } - .lg\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; + .lg\:left-40 { + left: 10rem !important; } - .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; + .lg\:top-44 { + top: 11rem !important; } - .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; + .lg\:right-44 { + right: 11rem !important; } - .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; + .lg\:bottom-44 { + bottom: 11rem !important; } - .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; + .lg\:left-44 { + left: 11rem !important; } - .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; + .lg\:top-48 { + top: 12rem !important; } - .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; + .lg\:right-48 { + right: 12rem !important; } - .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; + .lg\:bottom-48 { + bottom: 12rem !important; } - .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; + .lg\:left-48 { + left: 12rem !important; } - .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; + .lg\:top-52 { + top: 13rem !important; } - .lg\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; + .lg\:right-52 { + right: 13rem !important; } - .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; + .lg\:bottom-52 { + bottom: 13rem !important; } - .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; + .lg\:left-52 { + left: 13rem !important; } - .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; + .lg\:top-56 { + top: 14rem !important; } - .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; + .lg\:right-56 { + right: 14rem !important; } - .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; + .lg\:bottom-56 { + bottom: 14rem !important; } - .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; + .lg\:left-56 { + left: 14rem !important; } - .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; + .lg\:top-60 { + top: 15rem !important; } - .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; + .lg\:right-60 { + right: 15rem !important; } - .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; + .lg\:bottom-60 { + bottom: 15rem !important; } - .lg\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; + .lg\:left-60 { + left: 15rem !important; } - .lg\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; + .lg\:top-64 { + top: 16rem !important; } - .lg\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; + .lg\:right-64 { + right: 16rem !important; } - .lg\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; + .lg\:bottom-64 { + bottom: 16rem !important; } - .lg\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; + .lg\:left-64 { + left: 16rem !important; } - .lg\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; + .lg\:top-72 { + top: 18rem !important; } - .lg\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; + .lg\:right-72 { + right: 18rem !important; } - .lg\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; + .lg\:bottom-72 { + bottom: 18rem !important; } - .lg\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; + .lg\:left-72 { + left: 18rem !important; } - .lg\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; + .lg\:top-80 { + top: 20rem !important; } - .lg\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; + .lg\:right-80 { + right: 20rem !important; } - .lg\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; + .lg\:bottom-80 { + bottom: 20rem !important; } - .lg\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; + .lg\:left-80 { + left: 20rem !important; } - .lg\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; + .lg\:top-96 { + top: 24rem !important; } - .lg\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; + .lg\:right-96 { + right: 24rem !important; } - .lg\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; + .lg\:bottom-96 { + bottom: 24rem !important; } - .lg\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; + .lg\:left-96 { + left: 24rem !important; } - .lg\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; + .lg\:top-auto { + top: auto !important; } - .lg\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; + .lg\:right-auto { + right: auto !important; } - .lg\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; + .lg\:bottom-auto { + bottom: auto !important; } - .lg\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid !important; + .lg\:left-auto { + left: auto !important; } - .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed !important; + .lg\:top-px { + top: 1px !important; } - .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted !important; + .lg\:right-px { + right: 1px !important; } - .lg\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double !important; + .lg\:bottom-px { + bottom: 1px !important; } - .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none !important; + .lg\:left-px { + left: 1px !important; } - .lg\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0 !important; + .lg\:top-0\.5 { + top: 0.125rem !important; } - .lg\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05 !important; + .lg\:right-0\.5 { + right: 0.125rem !important; } - .lg\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1 !important; + .lg\:bottom-0\.5 { + bottom: 0.125rem !important; } - .lg\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2 !important; + .lg\:left-0\.5 { + left: 0.125rem !important; } - .lg\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25 !important; + .lg\:top-1\.5 { + top: 0.375rem !important; } - .lg\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3 !important; + .lg\:right-1\.5 { + right: 0.375rem !important; } - .lg\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4 !important; + .lg\:bottom-1\.5 { + bottom: 0.375rem !important; } - .lg\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5 !important; + .lg\:left-1\.5 { + left: 0.375rem !important; } - .lg\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6 !important; + .lg\:top-2\.5 { + top: 0.625rem !important; } - .lg\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7 !important; + .lg\:right-2\.5 { + right: 0.625rem !important; } - .lg\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75 !important; + .lg\:bottom-2\.5 { + bottom: 0.625rem !important; } - .lg\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8 !important; + .lg\:left-2\.5 { + left: 0.625rem !important; } - .lg\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9 !important; + .lg\:top-3\.5 { + top: 0.875rem !important; } - .lg\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95 !important; + .lg\:right-3\.5 { + right: 0.875rem !important; } - .lg\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; + .lg\:bottom-3\.5 { + bottom: 0.875rem !important; } - .lg\:sr-only { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .lg\:left-3\.5 { + left: 0.875rem !important; } - .lg\:not-sr-only { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .lg\:-top-0 { + top: 0px !important; } - .lg\:focus-within\:sr-only:focus-within { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .lg\:-right-0 { + right: 0px !important; } - .lg\:focus-within\:not-sr-only:focus-within { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .lg\:-bottom-0 { + bottom: 0px !important; } - .lg\:focus\:sr-only:focus { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .lg\:-left-0 { + left: 0px !important; } - .lg\:focus\:not-sr-only:focus { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .lg\:-top-1 { + top: -0.25rem !important; } - .lg\:appearance-none { - appearance: none !important; + .lg\:-right-1 { + right: -0.25rem !important; } - .lg\:bg-fixed { - background-attachment: fixed !important; + .lg\:-bottom-1 { + bottom: -0.25rem !important; } - .lg\:bg-local { - background-attachment: local !important; + .lg\:-left-1 { + left: -0.25rem !important; } - .lg\:bg-scroll { - background-attachment: scroll !important; + .lg\:-top-2 { + top: -0.5rem !important; } - .lg\:bg-clip-border { - background-clip: border-box !important; + .lg\:-right-2 { + right: -0.5rem !important; } - .lg\:bg-clip-padding { - background-clip: padding-box !important; + .lg\:-bottom-2 { + bottom: -0.5rem !important; } - .lg\:bg-clip-content { - background-clip: content-box !important; + .lg\:-left-2 { + left: -0.5rem !important; } - .lg\:bg-clip-text { - background-clip: text !important; + .lg\:-top-3 { + top: -0.75rem !important; } - .lg\:bg-transparent { - background-color: transparent !important; + .lg\:-right-3 { + right: -0.75rem !important; } - .lg\:bg-current { - background-color: currentColor !important; + .lg\:-bottom-3 { + bottom: -0.75rem !important; } - .lg\:bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .lg\:-left-3 { + left: -0.75rem !important; } - .lg\:bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .lg\:-top-4 { + top: -1rem !important; } - .lg\:bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .lg\:-right-4 { + right: -1rem !important; } - .lg\:bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .lg\:-bottom-4 { + bottom: -1rem !important; } - .lg\:bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .lg\:-left-4 { + left: -1rem !important; } - .lg\:bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .lg\:-top-5 { + top: -1.25rem !important; } - .lg\:bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .lg\:-right-5 { + right: -1.25rem !important; } - .lg\:bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .lg\:-bottom-5 { + bottom: -1.25rem !important; } - .lg\:bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .lg\:-left-5 { + left: -1.25rem !important; } - .lg\:bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .lg\:-top-6 { + top: -1.5rem !important; } - .lg\:bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .lg\:-right-6 { + right: -1.5rem !important; } - .lg\:bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .lg\:-bottom-6 { + bottom: -1.5rem !important; } - .lg\:bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .lg\:-left-6 { + left: -1.5rem !important; } - .lg\:bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .lg\:-top-7 { + top: -1.75rem !important; } - .lg\:bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .lg\:-right-7 { + right: -1.75rem !important; } - .lg\:bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .lg\:-bottom-7 { + bottom: -1.75rem !important; } - .lg\:bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .lg\:-left-7 { + left: -1.75rem !important; } - .lg\:bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .lg\:-top-8 { + top: -2rem !important; } - .lg\:bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .lg\:-right-8 { + right: -2rem !important; } - .lg\:bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .lg\:-bottom-8 { + bottom: -2rem !important; } - .lg\:bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .lg\:-left-8 { + left: -2rem !important; } - .lg\:bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .lg\:-top-9 { + top: -2.25rem !important; } - .lg\:bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .lg\:-right-9 { + right: -2.25rem !important; } - .lg\:bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .lg\:-bottom-9 { + bottom: -2.25rem !important; } - .lg\:bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .lg\:-left-9 { + left: -2.25rem !important; } - .lg\:bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .lg\:-top-10 { + top: -2.5rem !important; } - .lg\:bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .lg\:-right-10 { + right: -2.5rem !important; } - .lg\:bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .lg\:-bottom-10 { + bottom: -2.5rem !important; } - .lg\:bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .lg\:-left-10 { + left: -2.5rem !important; } - .lg\:bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .lg\:-top-11 { + top: -2.75rem !important; } - .lg\:bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .lg\:-right-11 { + right: -2.75rem !important; } - .lg\:bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .lg\:-bottom-11 { + bottom: -2.75rem !important; } - .lg\:bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .lg\:-left-11 { + left: -2.75rem !important; } - .lg\:bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .lg\:-top-12 { + top: -3rem !important; } - .lg\:bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .lg\:-right-12 { + right: -3rem !important; } - .lg\:bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .lg\:-bottom-12 { + bottom: -3rem !important; } - .lg\:bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .lg\:-left-12 { + left: -3rem !important; } - .lg\:bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .lg\:-top-14 { + top: -3.5rem !important; } - .lg\:bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .lg\:-right-14 { + right: -3.5rem !important; } - .lg\:bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .lg\:-bottom-14 { + bottom: -3.5rem !important; } - .lg\:bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .lg\:-left-14 { + left: -3.5rem !important; } - .lg\:bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .lg\:-top-16 { + top: -4rem !important; } - .lg\:bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .lg\:-right-16 { + right: -4rem !important; } - .lg\:bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .lg\:-bottom-16 { + bottom: -4rem !important; } - .lg\:bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .lg\:-left-16 { + left: -4rem !important; } - .lg\:bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .lg\:-top-20 { + top: -5rem !important; } - .lg\:bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .lg\:-right-20 { + right: -5rem !important; } - .lg\:bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .lg\:-bottom-20 { + bottom: -5rem !important; } - .lg\:bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .lg\:-left-20 { + left: -5rem !important; } - .lg\:bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .lg\:-top-24 { + top: -6rem !important; } - .lg\:bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .lg\:-right-24 { + right: -6rem !important; } - .lg\:bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .lg\:-bottom-24 { + bottom: -6rem !important; } - .lg\:bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .lg\:-left-24 { + left: -6rem !important; } - .lg\:bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .lg\:-top-28 { + top: -7rem !important; } - .lg\:bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .lg\:-right-28 { + right: -7rem !important; } - .lg\:bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .lg\:-bottom-28 { + bottom: -7rem !important; } - .lg\:bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .lg\:-left-28 { + left: -7rem !important; } - .lg\:bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .lg\:-top-32 { + top: -8rem !important; } - .lg\:bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .lg\:-right-32 { + right: -8rem !important; } - .lg\:bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .lg\:-bottom-32 { + bottom: -8rem !important; } - .lg\:bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .lg\:-left-32 { + left: -8rem !important; } - .lg\:bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .lg\:-top-36 { + top: -9rem !important; } - .lg\:bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .lg\:-right-36 { + right: -9rem !important; } - .lg\:bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .lg\:-bottom-36 { + bottom: -9rem !important; } - .lg\:bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .lg\:-left-36 { + left: -9rem !important; } - .lg\:bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .lg\:-top-40 { + top: -10rem !important; } - .lg\:bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .lg\:-right-40 { + right: -10rem !important; } - .lg\:bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .lg\:-bottom-40 { + bottom: -10rem !important; } - .lg\:bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .lg\:-left-40 { + left: -10rem !important; } - .lg\:bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .lg\:-top-44 { + top: -11rem !important; } - .lg\:bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .lg\:-right-44 { + right: -11rem !important; } - .lg\:bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .lg\:-bottom-44 { + bottom: -11rem !important; } - .lg\:bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .lg\:-left-44 { + left: -11rem !important; } - .lg\:bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .lg\:-top-48 { + top: -12rem !important; } - .lg\:bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .lg\:-right-48 { + right: -12rem !important; } - .lg\:bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .lg\:-bottom-48 { + bottom: -12rem !important; } - .lg\:bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .lg\:-left-48 { + left: -12rem !important; } - .lg\:bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .lg\:-top-52 { + top: -13rem !important; } - .lg\:bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .lg\:-right-52 { + right: -13rem !important; } - .lg\:bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .lg\:-bottom-52 { + bottom: -13rem !important; + } + + .lg\:-left-52 { + left: -13rem !important; } - .lg\:bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .lg\:-top-56 { + top: -14rem !important; } - .lg\:bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .lg\:-right-56 { + right: -14rem !important; } - .group:hover .lg\:group-hover\:bg-transparent { - background-color: transparent !important; + .lg\:-bottom-56 { + bottom: -14rem !important; } - .group:hover .lg\:group-hover\:bg-current { - background-color: currentColor !important; + .lg\:-left-56 { + left: -14rem !important; } - .group:hover .lg\:group-hover\:bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .lg\:-top-60 { + top: -15rem !important; } - .group:hover .lg\:group-hover\:bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .lg\:-right-60 { + right: -15rem !important; } - .group:hover .lg\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .lg\:-bottom-60 { + bottom: -15rem !important; } - .group:hover .lg\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .lg\:-left-60 { + left: -15rem !important; } - .group:hover .lg\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .lg\:-top-64 { + top: -16rem !important; } - .group:hover .lg\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .lg\:-right-64 { + right: -16rem !important; } - .group:hover .lg\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .lg\:-bottom-64 { + bottom: -16rem !important; } - .group:hover .lg\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .lg\:-left-64 { + left: -16rem !important; } - .group:hover .lg\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .lg\:-top-72 { + top: -18rem !important; } - .group:hover .lg\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .lg\:-right-72 { + right: -18rem !important; } - .group:hover .lg\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .lg\:-bottom-72 { + bottom: -18rem !important; } - .group:hover .lg\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .lg\:-left-72 { + left: -18rem !important; } - .group:hover .lg\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .lg\:-top-80 { + top: -20rem !important; } - .group:hover .lg\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .lg\:-right-80 { + right: -20rem !important; } - .group:hover .lg\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .lg\:-bottom-80 { + bottom: -20rem !important; } - .group:hover .lg\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .lg\:-left-80 { + left: -20rem !important; } - .group:hover .lg\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .lg\:-top-96 { + top: -24rem !important; } - .group:hover .lg\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .lg\:-right-96 { + right: -24rem !important; } - .group:hover .lg\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .lg\:-bottom-96 { + bottom: -24rem !important; } - .group:hover .lg\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .lg\:-left-96 { + left: -24rem !important; } - .group:hover .lg\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .lg\:-top-px { + top: -1px !important; } - .group:hover .lg\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .lg\:-right-px { + right: -1px !important; } - .group:hover .lg\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .lg\:-bottom-px { + bottom: -1px !important; } - .group:hover .lg\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .lg\:-left-px { + left: -1px !important; } - .group:hover .lg\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .lg\:-top-0\.5 { + top: -0.125rem !important; } - .group:hover .lg\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .lg\:-right-0\.5 { + right: -0.125rem !important; } - .group:hover .lg\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .lg\:-bottom-0\.5 { + bottom: -0.125rem !important; } - .group:hover .lg\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .lg\:-left-0\.5 { + left: -0.125rem !important; } - .group:hover .lg\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .lg\:-top-1\.5 { + top: -0.375rem !important; } - .group:hover .lg\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .lg\:-right-1\.5 { + right: -0.375rem !important; } - .group:hover .lg\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .lg\:-bottom-1\.5 { + bottom: -0.375rem !important; } - .group:hover .lg\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .lg\:-left-1\.5 { + left: -0.375rem !important; } - .group:hover .lg\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .lg\:-top-2\.5 { + top: -0.625rem !important; } - .group:hover .lg\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .lg\:-right-2\.5 { + right: -0.625rem !important; } - .group:hover .lg\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .lg\:-bottom-2\.5 { + bottom: -0.625rem !important; } - .group:hover .lg\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .lg\:-left-2\.5 { + left: -0.625rem !important; } - .group:hover .lg\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .lg\:-top-3\.5 { + top: -0.875rem !important; } - .group:hover .lg\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .lg\:-right-3\.5 { + right: -0.875rem !important; } - .group:hover .lg\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .lg\:-bottom-3\.5 { + bottom: -0.875rem !important; } - .group:hover .lg\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .lg\:-left-3\.5 { + left: -0.875rem !important; } - .group:hover .lg\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .lg\:top-1\/2 { + top: 50% !important; } - .group:hover .lg\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .lg\:right-1\/2 { + right: 50% !important; } - .group:hover .lg\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .lg\:bottom-1\/2 { + bottom: 50% !important; } - .group:hover .lg\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .lg\:left-1\/2 { + left: 50% !important; } - .group:hover .lg\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .lg\:top-1\/3 { + top: 33.333333% !important; } - .group:hover .lg\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .lg\:right-1\/3 { + right: 33.333333% !important; } - .group:hover .lg\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .lg\:bottom-1\/3 { + bottom: 33.333333% !important; } - .group:hover .lg\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .lg\:left-1\/3 { + left: 33.333333% !important; } - .group:hover .lg\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .lg\:top-2\/3 { + top: 66.666667% !important; } - .group:hover .lg\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .lg\:right-2\/3 { + right: 66.666667% !important; } - .group:hover .lg\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .lg\:bottom-2\/3 { + bottom: 66.666667% !important; } - .group:hover .lg\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .lg\:left-2\/3 { + left: 66.666667% !important; } - .group:hover .lg\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .lg\:top-1\/4 { + top: 25% !important; } - .group:hover .lg\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .lg\:right-1\/4 { + right: 25% !important; } - .group:hover .lg\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .lg\:bottom-1\/4 { + bottom: 25% !important; } - .group:hover .lg\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .lg\:left-1\/4 { + left: 25% !important; } - .group:hover .lg\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .lg\:top-2\/4 { + top: 50% !important; } - .group:hover .lg\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .lg\:right-2\/4 { + right: 50% !important; } - .group:hover .lg\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .lg\:bottom-2\/4 { + bottom: 50% !important; } - .group:hover .lg\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .lg\:left-2\/4 { + left: 50% !important; } - .group:hover .lg\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .lg\:top-3\/4 { + top: 75% !important; } - .group:hover .lg\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .lg\:right-3\/4 { + right: 75% !important; } - .group:hover .lg\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .lg\:bottom-3\/4 { + bottom: 75% !important; } - .group:hover .lg\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .lg\:left-3\/4 { + left: 75% !important; } - .group:hover .lg\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .lg\:top-full { + top: 100% !important; } - .group:hover .lg\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .lg\:right-full { + right: 100% !important; } - .group:hover .lg\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .lg\:bottom-full { + bottom: 100% !important; } - .group:hover .lg\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .lg\:left-full { + left: 100% !important; } - .group:hover .lg\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .lg\:-top-1\/2 { + top: -50% !important; } - .group:hover .lg\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .lg\:-right-1\/2 { + right: -50% !important; } - .group:hover .lg\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .lg\:-bottom-1\/2 { + bottom: -50% !important; } - .group:hover .lg\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .lg\:-left-1\/2 { + left: -50% !important; } - .group:hover .lg\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .lg\:-top-1\/3 { + top: -33.333333% !important; } - .group:hover .lg\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .lg\:-right-1\/3 { + right: -33.333333% !important; } - .group:hover .lg\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .lg\:-bottom-1\/3 { + bottom: -33.333333% !important; } - .group:hover .lg\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .lg\:-left-1\/3 { + left: -33.333333% !important; } - .group:hover .lg\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .lg\:-top-2\/3 { + top: -66.666667% !important; } - .group:hover .lg\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .lg\:-right-2\/3 { + right: -66.666667% !important; } - .group:hover .lg\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .lg\:-bottom-2\/3 { + bottom: -66.666667% !important; } - .group:hover .lg\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .lg\:-left-2\/3 { + left: -66.666667% !important; } - .group:hover .lg\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .lg\:-top-1\/4 { + top: -25% !important; } - .group:hover .lg\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .lg\:-right-1\/4 { + right: -25% !important; } - .lg\:focus-within\:bg-transparent:focus-within { - background-color: transparent !important; + .lg\:-bottom-1\/4 { + bottom: -25% !important; } - .lg\:focus-within\:bg-current:focus-within { - background-color: currentColor !important; + .lg\:-left-1\/4 { + left: -25% !important; } - .lg\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .lg\:-top-2\/4 { + top: -50% !important; } - .lg\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .lg\:-right-2\/4 { + right: -50% !important; } - .lg\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .lg\:-bottom-2\/4 { + bottom: -50% !important; } - .lg\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .lg\:-left-2\/4 { + left: -50% !important; } - .lg\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .lg\:-top-3\/4 { + top: -75% !important; } - .lg\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .lg\:-right-3\/4 { + right: -75% !important; } - .lg\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .lg\:-bottom-3\/4 { + bottom: -75% !important; } - .lg\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .lg\:-left-3\/4 { + left: -75% !important; } - .lg\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .lg\:-top-full { + top: -100% !important; } - .lg\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .lg\:-right-full { + right: -100% !important; } - .lg\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .lg\:-bottom-full { + bottom: -100% !important; } - .lg\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .lg\:-left-full { + left: -100% !important; } - .lg\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .lg\:isolate { + isolation: isolate !important; } - .lg\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .lg\:isolation-auto { + isolation: auto !important; } - .lg\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .lg\:z-0 { + z-index: 0 !important; } - .lg\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .lg\:z-10 { + z-index: 10 !important; } - .lg\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .lg\:z-20 { + z-index: 20 !important; } - .lg\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .lg\:z-30 { + z-index: 30 !important; } - .lg\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .lg\:z-40 { + z-index: 40 !important; } - .lg\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .lg\:z-50 { + z-index: 50 !important; } - .lg\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .lg\:z-auto { + z-index: auto !important; } - .lg\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .lg\:focus-within\:z-0:focus-within { + z-index: 0 !important; } - .lg\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .lg\:focus-within\:z-10:focus-within { + z-index: 10 !important; } - .lg\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .lg\:focus-within\:z-20:focus-within { + z-index: 20 !important; } - .lg\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .lg\:focus-within\:z-30:focus-within { + z-index: 30 !important; } - .lg\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .lg\:focus-within\:z-40:focus-within { + z-index: 40 !important; } - .lg\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .lg\:focus-within\:z-50:focus-within { + z-index: 50 !important; } - .lg\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .lg\:focus-within\:z-auto:focus-within { + z-index: auto !important; } - .lg\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .lg\:focus\:z-0:focus { + z-index: 0 !important; } - .lg\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .lg\:focus\:z-10:focus { + z-index: 10 !important; } - .lg\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .lg\:focus\:z-20:focus { + z-index: 20 !important; } - .lg\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .lg\:focus\:z-30:focus { + z-index: 30 !important; } - .lg\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .lg\:focus\:z-40:focus { + z-index: 40 !important; } - .lg\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .lg\:focus\:z-50:focus { + z-index: 50 !important; } - .lg\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .lg\:focus\:z-auto:focus { + z-index: auto !important; } - .lg\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .lg\:order-1 { + order: 1 !important; } - .lg\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .lg\:order-2 { + order: 2 !important; } - .lg\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .lg\:order-3 { + order: 3 !important; } - .lg\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .lg\:order-4 { + order: 4 !important; } - .lg\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .lg\:order-5 { + order: 5 !important; } - .lg\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .lg\:order-6 { + order: 6 !important; } - .lg\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .lg\:order-7 { + order: 7 !important; } - .lg\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .lg\:order-8 { + order: 8 !important; } - .lg\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .lg\:order-9 { + order: 9 !important; } - .lg\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .lg\:order-10 { + order: 10 !important; } - .lg\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .lg\:order-11 { + order: 11 !important; } - .lg\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .lg\:order-12 { + order: 12 !important; } - .lg\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .lg\:order-first { + order: -9999 !important; } - .lg\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .lg\:order-last { + order: 9999 !important; } - .lg\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .lg\:order-none { + order: 0 !important; } - .lg\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .lg\:col-auto { + grid-column: auto !important; } - .lg\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .lg\:col-span-1 { + grid-column: span 1 / span 1 !important; } - .lg\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .lg\:col-span-2 { + grid-column: span 2 / span 2 !important; } - .lg\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .lg\:col-span-3 { + grid-column: span 3 / span 3 !important; } - .lg\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .lg\:col-span-4 { + grid-column: span 4 / span 4 !important; } - .lg\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .lg\:col-span-5 { + grid-column: span 5 / span 5 !important; } - .lg\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .lg\:col-span-6 { + grid-column: span 6 / span 6 !important; } - .lg\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .lg\:col-span-7 { + grid-column: span 7 / span 7 !important; } - .lg\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .lg\:col-span-8 { + grid-column: span 8 / span 8 !important; } - .lg\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .lg\:col-span-9 { + grid-column: span 9 / span 9 !important; } - .lg\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .lg\:col-span-10 { + grid-column: span 10 / span 10 !important; } - .lg\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .lg\:col-span-11 { + grid-column: span 11 / span 11 !important; } - .lg\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .lg\:col-span-12 { + grid-column: span 12 / span 12 !important; } - .lg\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .lg\:col-span-full { + grid-column: 1 / -1 !important; } - .lg\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .lg\:col-start-1 { + grid-column-start: 1 !important; } - .lg\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .lg\:col-start-2 { + grid-column-start: 2 !important; } - .lg\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .lg\:col-start-3 { + grid-column-start: 3 !important; } - .lg\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .lg\:col-start-4 { + grid-column-start: 4 !important; } - .lg\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .lg\:col-start-5 { + grid-column-start: 5 !important; } - .lg\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .lg\:col-start-6 { + grid-column-start: 6 !important; } - .lg\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .lg\:col-start-7 { + grid-column-start: 7 !important; } - .lg\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .lg\:col-start-8 { + grid-column-start: 8 !important; } - .lg\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .lg\:col-start-9 { + grid-column-start: 9 !important; } - .lg\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .lg\:col-start-10 { + grid-column-start: 10 !important; } - .lg\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .lg\:col-start-11 { + grid-column-start: 11 !important; } - .lg\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .lg\:col-start-12 { + grid-column-start: 12 !important; } - .lg\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .lg\:col-start-13 { + grid-column-start: 13 !important; } - .lg\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .lg\:col-start-auto { + grid-column-start: auto !important; } - .lg\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .lg\:col-end-1 { + grid-column-end: 1 !important; } - .lg\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .lg\:col-end-2 { + grid-column-end: 2 !important; } - .lg\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .lg\:col-end-3 { + grid-column-end: 3 !important; } - .lg\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .lg\:col-end-4 { + grid-column-end: 4 !important; } - .lg\:hover\:bg-transparent:hover { - background-color: transparent !important; + .lg\:col-end-5 { + grid-column-end: 5 !important; } - .lg\:hover\:bg-current:hover { - background-color: currentColor !important; + .lg\:col-end-6 { + grid-column-end: 6 !important; } - .lg\:hover\:bg-black:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .lg\:col-end-7 { + grid-column-end: 7 !important; } - .lg\:hover\:bg-white:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .lg\:col-end-8 { + grid-column-end: 8 !important; } - .lg\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .lg\:col-end-9 { + grid-column-end: 9 !important; } - .lg\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .lg\:col-end-10 { + grid-column-end: 10 !important; } - .lg\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .lg\:col-end-11 { + grid-column-end: 11 !important; } - .lg\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .lg\:col-end-12 { + grid-column-end: 12 !important; } - .lg\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .lg\:col-end-13 { + grid-column-end: 13 !important; } - .lg\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .lg\:col-end-auto { + grid-column-end: auto !important; } - .lg\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .lg\:row-auto { + grid-row: auto !important; } - .lg\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .lg\:row-span-1 { + grid-row: span 1 / span 1 !important; } - .lg\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .lg\:row-span-2 { + grid-row: span 2 / span 2 !important; } - .lg\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .lg\:row-span-3 { + grid-row: span 3 / span 3 !important; } - .lg\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .lg\:row-span-4 { + grid-row: span 4 / span 4 !important; } - .lg\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .lg\:row-span-5 { + grid-row: span 5 / span 5 !important; } - .lg\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .lg\:row-span-6 { + grid-row: span 6 / span 6 !important; } - .lg\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .lg\:row-span-full { + grid-row: 1 / -1 !important; } - .lg\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .lg\:row-start-1 { + grid-row-start: 1 !important; } - .lg\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .lg\:row-start-2 { + grid-row-start: 2 !important; } - .lg\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .lg\:row-start-3 { + grid-row-start: 3 !important; } - .lg\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .lg\:row-start-4 { + grid-row-start: 4 !important; } - .lg\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .lg\:row-start-5 { + grid-row-start: 5 !important; } - .lg\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .lg\:row-start-6 { + grid-row-start: 6 !important; } - .lg\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .lg\:row-start-7 { + grid-row-start: 7 !important; } - .lg\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .lg\:row-start-auto { + grid-row-start: auto !important; } - .lg\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .lg\:row-end-1 { + grid-row-end: 1 !important; } - .lg\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .lg\:row-end-2 { + grid-row-end: 2 !important; } - .lg\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .lg\:row-end-3 { + grid-row-end: 3 !important; } - .lg\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .lg\:row-end-4 { + grid-row-end: 4 !important; } - .lg\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .lg\:row-end-5 { + grid-row-end: 5 !important; } - .lg\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .lg\:row-end-6 { + grid-row-end: 6 !important; } - .lg\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .lg\:row-end-7 { + grid-row-end: 7 !important; } - .lg\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .lg\:row-end-auto { + grid-row-end: auto !important; } - .lg\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .lg\:float-right { + float: right !important; } - .lg\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .lg\:float-left { + float: left !important; } - .lg\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .lg\:float-none { + float: none !important; } - .lg\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .lg\:clear-left { + clear: left !important; } - .lg\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .lg\:clear-right { + clear: right !important; } - .lg\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .lg\:clear-both { + clear: both !important; } - .lg\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .lg\:clear-none { + clear: none !important; } - .lg\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .lg\:m-0 { + margin: 0px !important; } - .lg\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .lg\:m-1 { + margin: 0.25rem !important; } - .lg\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .lg\:m-2 { + margin: 0.5rem !important; } - .lg\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .lg\:m-3 { + margin: 0.75rem !important; } - .lg\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .lg\:m-4 { + margin: 1rem !important; } - .lg\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .lg\:m-5 { + margin: 1.25rem !important; } - .lg\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .lg\:m-6 { + margin: 1.5rem !important; } - .lg\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .lg\:m-7 { + margin: 1.75rem !important; } - .lg\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .lg\:m-8 { + margin: 2rem !important; } - .lg\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .lg\:m-9 { + margin: 2.25rem !important; } - .lg\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .lg\:m-10 { + margin: 2.5rem !important; } - .lg\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .lg\:m-11 { + margin: 2.75rem !important; } - .lg\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .lg\:m-12 { + margin: 3rem !important; } - .lg\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .lg\:m-14 { + margin: 3.5rem !important; } - .lg\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .lg\:m-16 { + margin: 4rem !important; } - .lg\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .lg\:m-20 { + margin: 5rem !important; } - .lg\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .lg\:m-24 { + margin: 6rem !important; } - .lg\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .lg\:m-28 { + margin: 7rem !important; } - .lg\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .lg\:m-32 { + margin: 8rem !important; } - .lg\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .lg\:m-36 { + margin: 9rem !important; } - .lg\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .lg\:m-40 { + margin: 10rem !important; } - .lg\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .lg\:m-44 { + margin: 11rem !important; } - .lg\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .lg\:m-48 { + margin: 12rem !important; } - .lg\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .lg\:m-52 { + margin: 13rem !important; } - .lg\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .lg\:m-56 { + margin: 14rem !important; } - .lg\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .lg\:m-60 { + margin: 15rem !important; } - .lg\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .lg\:m-64 { + margin: 16rem !important; } - .lg\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .lg\:m-72 { + margin: 18rem !important; } - .lg\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .lg\:m-80 { + margin: 20rem !important; } - .lg\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .lg\:m-96 { + margin: 24rem !important; } - .lg\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .lg\:m-auto { + margin: auto !important; } - .lg\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .lg\:m-px { + margin: 1px !important; } - .lg\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .lg\:m-0\.5 { + margin: 0.125rem !important; } - .lg\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .lg\:m-1\.5 { + margin: 0.375rem !important; } - .lg\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .lg\:m-2\.5 { + margin: 0.625rem !important; } - .lg\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .lg\:m-3\.5 { + margin: 0.875rem !important; } - .lg\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .lg\:-m-0 { + margin: 0px !important; } - .lg\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .lg\:-m-1 { + margin: -0.25rem !important; } - .lg\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .lg\:-m-2 { + margin: -0.5rem !important; } - .lg\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .lg\:-m-3 { + margin: -0.75rem !important; } - .lg\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .lg\:-m-4 { + margin: -1rem !important; } - .lg\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .lg\:-m-5 { + margin: -1.25rem !important; } - .lg\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .lg\:-m-6 { + margin: -1.5rem !important; } - .lg\:focus\:bg-transparent:focus { - background-color: transparent !important; + .lg\:-m-7 { + margin: -1.75rem !important; } - .lg\:focus\:bg-current:focus { - background-color: currentColor !important; + .lg\:-m-8 { + margin: -2rem !important; } - .lg\:focus\:bg-black:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .lg\:-m-9 { + margin: -2.25rem !important; } - .lg\:focus\:bg-white:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .lg\:-m-10 { + margin: -2.5rem !important; } - .lg\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .lg\:-m-11 { + margin: -2.75rem !important; } - .lg\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .lg\:-m-12 { + margin: -3rem !important; } - .lg\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .lg\:-m-14 { + margin: -3.5rem !important; } - .lg\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .lg\:-m-16 { + margin: -4rem !important; } - .lg\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .lg\:-m-20 { + margin: -5rem !important; } - .lg\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .lg\:-m-24 { + margin: -6rem !important; } - .lg\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .lg\:-m-28 { + margin: -7rem !important; } - .lg\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .lg\:-m-32 { + margin: -8rem !important; } - .lg\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .lg\:-m-36 { + margin: -9rem !important; } - .lg\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .lg\:-m-40 { + margin: -10rem !important; } - .lg\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .lg\:-m-44 { + margin: -11rem !important; } - .lg\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .lg\:-m-48 { + margin: -12rem !important; } - .lg\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .lg\:-m-52 { + margin: -13rem !important; } - .lg\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .lg\:-m-56 { + margin: -14rem !important; } - .lg\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .lg\:-m-60 { + margin: -15rem !important; } - .lg\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .lg\:-m-64 { + margin: -16rem !important; } - .lg\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .lg\:-m-72 { + margin: -18rem !important; } - .lg\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .lg\:-m-80 { + margin: -20rem !important; } - .lg\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .lg\:-m-96 { + margin: -24rem !important; } - .lg\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .lg\:-m-px { + margin: -1px !important; } - .lg\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .lg\:-m-0\.5 { + margin: -0.125rem !important; } - .lg\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .lg\:-m-1\.5 { + margin: -0.375rem !important; } - .lg\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .lg\:-m-2\.5 { + margin: -0.625rem !important; } - .lg\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .lg\:-m-3\.5 { + margin: -0.875rem !important; } - .lg\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .lg\:mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } - .lg\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .lg\:mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; } - .lg\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .lg\:mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; } - .lg\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .lg\:mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; } - .lg\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .lg\:mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; } - .lg\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .lg\:mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; } - .lg\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .lg\:mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; } - .lg\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .lg\:mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; } - .lg\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .lg\:mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; } - .lg\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .lg\:mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; } - .lg\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .lg\:mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; } - .lg\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .lg\:mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; } - .lg\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .lg\:mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; } - .lg\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .lg\:mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; } - .lg\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .lg\:mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; } - .lg\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .lg\:mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; } - .lg\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .lg\:mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; } - .lg\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .lg\:mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; } - .lg\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .lg\:mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; } - .lg\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .lg\:mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; } - .lg\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .lg\:mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; } - .lg\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .lg\:mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; } - .lg\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .lg\:mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; } - .lg\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .lg\:mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; } - .lg\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .lg\:mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; } - .lg\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .lg\:mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; } - .lg\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .lg\:mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; } - .lg\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .lg\:mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; } - .lg\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .lg\:mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; } - .lg\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .lg\:mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; } - .lg\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .lg\:mx-auto { + margin-left: auto !important; + margin-right: auto !important; } - .lg\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .lg\:mx-px { + margin-left: 1px !important; + margin-right: 1px !important; } - .lg\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .lg\:mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; } - .lg\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .lg\:mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; } - .lg\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .lg\:mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; } - .lg\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .lg\:mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; } - .lg\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .lg\:-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } - .lg\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .lg\:-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; } - .lg\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .lg\:-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; } - .lg\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .lg\:-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; } - .lg\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .lg\:-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; } - .lg\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .lg\:-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; } - .lg\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .lg\:-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; } - .lg\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .lg\:-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; } - .lg\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .lg\:-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; } - .lg\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .lg\:-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; } - .lg\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .lg\:-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; } - .lg\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .lg\:-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; } - .lg\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .lg\:-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; } - .lg\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .lg\:-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; } - .lg\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .lg\:-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; } - .lg\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .lg\:-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; } - .lg\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .lg\:-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; } - .lg\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .lg\:-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; } - .lg\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .lg\:-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; } - .lg\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .lg\:-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; } - .lg\:bg-none { - background-image: none !important; + .lg\:-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; } - .lg\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; + .lg\:-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; } - .lg\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; + .lg\:-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; } - .lg\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; + .lg\:-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; } - .lg\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; + .lg\:-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; } - .lg\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; + .lg\:-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; } - .lg\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; + .lg\:-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; } - .lg\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; + .lg\:-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; } - .lg\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; + .lg\:-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; } - .lg\:from-transparent { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .lg\:-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; } - .lg\:from-current { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .lg\:-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; } - .lg\:from-black { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .lg\:-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; } - .lg\:from-white { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .lg\:-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; } - .lg\:from-gray-50 { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .lg\:-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; } - .lg\:from-gray-100 { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .lg\:-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; } - .lg\:from-gray-200 { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .lg\:my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .lg\:from-gray-300 { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .lg\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .lg\:from-gray-400 { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .lg\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } - .lg\:from-gray-500 { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .lg\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; } - .lg\:from-gray-600 { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .lg\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } - .lg\:from-gray-700 { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .lg\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; } - .lg\:from-gray-800 { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .lg\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } - .lg\:from-gray-900 { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .lg\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; } - .lg\:from-red-50 { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .lg\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; } - .lg\:from-red-100 { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .lg\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; } - .lg\:from-red-200 { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .lg\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; } - .lg\:from-red-300 { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .lg\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; } - .lg\:from-red-400 { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .lg\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } - .lg\:from-red-500 { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .lg\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; } - .lg\:from-red-600 { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .lg\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; } - .lg\:from-red-700 { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .lg\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; } - .lg\:from-red-800 { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .lg\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; } - .lg\:from-red-900 { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .lg\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; } - .lg\:from-yellow-50 { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .lg\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; } - .lg\:from-yellow-100 { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .lg\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; } - .lg\:from-yellow-200 { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .lg\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; } - .lg\:from-yellow-300 { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .lg\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; } - .lg\:from-yellow-400 { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .lg\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; } - .lg\:from-yellow-500 { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .lg\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; } - .lg\:from-yellow-600 { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .lg\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; } - .lg\:from-yellow-700 { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .lg\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; } - .lg\:from-yellow-800 { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .lg\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; } - .lg\:from-yellow-900 { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .lg\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; } - .lg\:from-green-50 { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .lg\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; } - .lg\:from-green-100 { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .lg\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; } - .lg\:from-green-200 { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .lg\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } - .lg\:from-green-300 { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .lg\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; } - .lg\:from-green-400 { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .lg\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; } - .lg\:from-green-500 { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .lg\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; } - .lg\:from-green-600 { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .lg\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; } - .lg\:from-green-700 { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .lg\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; } - .lg\:from-green-800 { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .lg\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .lg\:from-green-900 { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .lg\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } - .lg\:from-blue-50 { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .lg\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } - .lg\:from-blue-100 { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .lg\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } - .lg\:from-blue-200 { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .lg\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } - .lg\:from-blue-300 { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .lg\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } - .lg\:from-blue-400 { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .lg\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } - .lg\:from-blue-500 { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .lg\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } - .lg\:from-blue-600 { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .lg\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } - .lg\:from-blue-700 { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .lg\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } - .lg\:from-blue-800 { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .lg\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } - .lg\:from-blue-900 { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .lg\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } - .lg\:from-indigo-50 { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .lg\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } - .lg\:from-indigo-100 { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .lg\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } - .lg\:from-indigo-200 { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .lg\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } - .lg\:from-indigo-300 { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .lg\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } - .lg\:from-indigo-400 { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .lg\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } - .lg\:from-indigo-500 { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .lg\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } - .lg\:from-indigo-600 { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .lg\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } - .lg\:from-indigo-700 { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .lg\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } - .lg\:from-indigo-800 { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .lg\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } - .lg\:from-indigo-900 { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .lg\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } - .lg\:from-purple-50 { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .lg\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } - .lg\:from-purple-100 { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .lg\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } - .lg\:from-purple-200 { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .lg\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } - .lg\:from-purple-300 { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .lg\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } - .lg\:from-purple-400 { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .lg\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } - .lg\:from-purple-500 { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .lg\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } - .lg\:from-purple-600 { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .lg\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } - .lg\:from-purple-700 { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .lg\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } - .lg\:from-purple-800 { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .lg\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } - .lg\:from-purple-900 { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .lg\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } - .lg\:from-pink-50 { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .lg\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } - .lg\:from-pink-100 { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .lg\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } - .lg\:from-pink-200 { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .lg\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } - .lg\:from-pink-300 { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .lg\:mt-0 { + margin-top: 0px !important; } - .lg\:from-pink-400 { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .lg\:mt-1 { + margin-top: 0.25rem !important; } - .lg\:from-pink-500 { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .lg\:mt-2 { + margin-top: 0.5rem !important; } - .lg\:from-pink-600 { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .lg\:mt-3 { + margin-top: 0.75rem !important; } - .lg\:from-pink-700 { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .lg\:mt-4 { + margin-top: 1rem !important; } - .lg\:from-pink-800 { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .lg\:mt-5 { + margin-top: 1.25rem !important; } - .lg\:from-pink-900 { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .lg\:mt-6 { + margin-top: 1.5rem !important; } - .lg\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .lg\:mt-7 { + margin-top: 1.75rem !important; } - .lg\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .lg\:mt-8 { + margin-top: 2rem !important; } - .lg\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .lg\:mt-9 { + margin-top: 2.25rem !important; } - .lg\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .lg\:mt-10 { + margin-top: 2.5rem !important; } - .lg\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .lg\:mt-11 { + margin-top: 2.75rem !important; } - .lg\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .lg\:mt-12 { + margin-top: 3rem !important; } - .lg\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .lg\:mt-14 { + margin-top: 3.5rem !important; } - .lg\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .lg\:mt-16 { + margin-top: 4rem !important; } - .lg\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .lg\:mt-20 { + margin-top: 5rem !important; } - .lg\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .lg\:mt-24 { + margin-top: 6rem !important; } - .lg\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .lg\:mt-28 { + margin-top: 7rem !important; } - .lg\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .lg\:mt-32 { + margin-top: 8rem !important; } - .lg\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .lg\:mt-36 { + margin-top: 9rem !important; } - .lg\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .lg\:mt-40 { + margin-top: 10rem !important; } - .lg\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .lg\:mt-44 { + margin-top: 11rem !important; } - .lg\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .lg\:mt-48 { + margin-top: 12rem !important; } - .lg\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .lg\:mt-52 { + margin-top: 13rem !important; } - .lg\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .lg\:mt-56 { + margin-top: 14rem !important; } - .lg\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .lg\:mt-60 { + margin-top: 15rem !important; } - .lg\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .lg\:mt-64 { + margin-top: 16rem !important; } - .lg\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .lg\:mt-72 { + margin-top: 18rem !important; } - .lg\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .lg\:mt-80 { + margin-top: 20rem !important; } - .lg\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .lg\:mt-96 { + margin-top: 24rem !important; } - .lg\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .lg\:mt-auto { + margin-top: auto !important; } - .lg\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .lg\:mt-px { + margin-top: 1px !important; } - .lg\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .lg\:mt-0\.5 { + margin-top: 0.125rem !important; } - .lg\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .lg\:mt-1\.5 { + margin-top: 0.375rem !important; } - .lg\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .lg\:mt-2\.5 { + margin-top: 0.625rem !important; } - .lg\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .lg\:mt-3\.5 { + margin-top: 0.875rem !important; } - .lg\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .lg\:-mt-0 { + margin-top: 0px !important; } - .lg\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .lg\:-mt-1 { + margin-top: -0.25rem !important; } - .lg\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .lg\:-mt-2 { + margin-top: -0.5rem !important; } - .lg\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .lg\:-mt-3 { + margin-top: -0.75rem !important; } - .lg\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .lg\:-mt-4 { + margin-top: -1rem !important; } - .lg\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .lg\:-mt-5 { + margin-top: -1.25rem !important; } - .lg\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .lg\:-mt-6 { + margin-top: -1.5rem !important; } - .lg\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .lg\:-mt-7 { + margin-top: -1.75rem !important; } - .lg\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .lg\:-mt-8 { + margin-top: -2rem !important; } - .lg\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .lg\:-mt-9 { + margin-top: -2.25rem !important; } - .lg\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .lg\:-mt-10 { + margin-top: -2.5rem !important; } - .lg\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .lg\:-mt-11 { + margin-top: -2.75rem !important; } - .lg\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .lg\:-mt-12 { + margin-top: -3rem !important; } - .lg\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .lg\:-mt-14 { + margin-top: -3.5rem !important; } - .lg\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .lg\:-mt-16 { + margin-top: -4rem !important; } - .lg\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .lg\:-mt-20 { + margin-top: -5rem !important; } - .lg\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .lg\:-mt-24 { + margin-top: -6rem !important; } - .lg\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .lg\:-mt-28 { + margin-top: -7rem !important; } - .lg\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .lg\:-mt-32 { + margin-top: -8rem !important; } - .lg\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .lg\:-mt-36 { + margin-top: -9rem !important; } - .lg\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .lg\:-mt-40 { + margin-top: -10rem !important; } - .lg\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .lg\:-mt-44 { + margin-top: -11rem !important; } - .lg\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .lg\:-mt-48 { + margin-top: -12rem !important; } - .lg\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .lg\:-mt-52 { + margin-top: -13rem !important; } - .lg\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .lg\:-mt-56 { + margin-top: -14rem !important; } - .lg\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .lg\:-mt-60 { + margin-top: -15rem !important; } - .lg\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .lg\:-mt-64 { + margin-top: -16rem !important; } - .lg\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .lg\:-mt-72 { + margin-top: -18rem !important; } - .lg\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .lg\:-mt-80 { + margin-top: -20rem !important; } - .lg\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .lg\:-mt-96 { + margin-top: -24rem !important; } - .lg\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .lg\:-mt-px { + margin-top: -1px !important; } - .lg\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .lg\:-mt-0\.5 { + margin-top: -0.125rem !important; } - .lg\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .lg\:-mt-1\.5 { + margin-top: -0.375rem !important; } - .lg\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .lg\:-mt-2\.5 { + margin-top: -0.625rem !important; } - .lg\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .lg\:-mt-3\.5 { + margin-top: -0.875rem !important; } - .lg\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .lg\:mr-0 { + margin-right: 0px !important; } - .lg\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .lg\:mr-1 { + margin-right: 0.25rem !important; } - .lg\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .lg\:mr-2 { + margin-right: 0.5rem !important; } - .lg\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .lg\:mr-3 { + margin-right: 0.75rem !important; } - .lg\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .lg\:mr-4 { + margin-right: 1rem !important; } - .lg\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .lg\:mr-5 { + margin-right: 1.25rem !important; } - .lg\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .lg\:mr-6 { + margin-right: 1.5rem !important; } - .lg\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .lg\:mr-7 { + margin-right: 1.75rem !important; } - .lg\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .lg\:mr-8 { + margin-right: 2rem !important; } - .lg\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .lg\:mr-9 { + margin-right: 2.25rem !important; } - .lg\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .lg\:mr-10 { + margin-right: 2.5rem !important; } - .lg\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .lg\:mr-11 { + margin-right: 2.75rem !important; } - .lg\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .lg\:mr-12 { + margin-right: 3rem !important; } - .lg\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .lg\:mr-14 { + margin-right: 3.5rem !important; } - .lg\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .lg\:mr-16 { + margin-right: 4rem !important; } - .lg\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .lg\:mr-20 { + margin-right: 5rem !important; } - .lg\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .lg\:mr-24 { + margin-right: 6rem !important; } - .lg\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .lg\:mr-28 { + margin-right: 7rem !important; } - .lg\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .lg\:mr-32 { + margin-right: 8rem !important; } - .lg\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .lg\:mr-36 { + margin-right: 9rem !important; } - .lg\:to-transparent { - --tw-gradient-to: transparent !important; + .lg\:mr-40 { + margin-right: 10rem !important; } - .lg\:to-current { - --tw-gradient-to: currentColor !important; + .lg\:mr-44 { + margin-right: 11rem !important; } - .lg\:to-black { - --tw-gradient-to: #000 !important; + .lg\:mr-48 { + margin-right: 12rem !important; } - .lg\:to-white { - --tw-gradient-to: #fff !important; + .lg\:mr-52 { + margin-right: 13rem !important; } - .lg\:to-gray-50 { - --tw-gradient-to: #f9fafb !important; + .lg\:mr-56 { + margin-right: 14rem !important; } - .lg\:to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; + .lg\:mr-60 { + margin-right: 15rem !important; } - .lg\:to-gray-200 { - --tw-gradient-to: #e5e7eb !important; + .lg\:mr-64 { + margin-right: 16rem !important; } - .lg\:to-gray-300 { - --tw-gradient-to: #d1d5db !important; + .lg\:mr-72 { + margin-right: 18rem !important; } - .lg\:to-gray-400 { - --tw-gradient-to: #9ca3af !important; + .lg\:mr-80 { + margin-right: 20rem !important; } - .lg\:to-gray-500 { - --tw-gradient-to: #6b7280 !important; + .lg\:mr-96 { + margin-right: 24rem !important; } - .lg\:to-gray-600 { - --tw-gradient-to: #4b5563 !important; + .lg\:mr-auto { + margin-right: auto !important; } - .lg\:to-gray-700 { - --tw-gradient-to: #374151 !important; + .lg\:mr-px { + margin-right: 1px !important; } - .lg\:to-gray-800 { - --tw-gradient-to: #1f2937 !important; + .lg\:mr-0\.5 { + margin-right: 0.125rem !important; } - .lg\:to-gray-900 { - --tw-gradient-to: #111827 !important; + .lg\:mr-1\.5 { + margin-right: 0.375rem !important; } - .lg\:to-red-50 { - --tw-gradient-to: #fef2f2 !important; + .lg\:mr-2\.5 { + margin-right: 0.625rem !important; } - .lg\:to-red-100 { - --tw-gradient-to: #fee2e2 !important; + .lg\:mr-3\.5 { + margin-right: 0.875rem !important; } - .lg\:to-red-200 { - --tw-gradient-to: #fecaca !important; + .lg\:-mr-0 { + margin-right: 0px !important; } - .lg\:to-red-300 { - --tw-gradient-to: #fca5a5 !important; + .lg\:-mr-1 { + margin-right: -0.25rem !important; } - .lg\:to-red-400 { - --tw-gradient-to: #f87171 !important; + .lg\:-mr-2 { + margin-right: -0.5rem !important; } - .lg\:to-red-500 { - --tw-gradient-to: #ef4444 !important; + .lg\:-mr-3 { + margin-right: -0.75rem !important; } - .lg\:to-red-600 { - --tw-gradient-to: #dc2626 !important; + .lg\:-mr-4 { + margin-right: -1rem !important; } - .lg\:to-red-700 { - --tw-gradient-to: #b91c1c !important; + .lg\:-mr-5 { + margin-right: -1.25rem !important; } - .lg\:to-red-800 { - --tw-gradient-to: #991b1b !important; + .lg\:-mr-6 { + margin-right: -1.5rem !important; } - .lg\:to-red-900 { - --tw-gradient-to: #7f1d1d !important; + .lg\:-mr-7 { + margin-right: -1.75rem !important; } - .lg\:to-yellow-50 { - --tw-gradient-to: #fffbeb !important; + .lg\:-mr-8 { + margin-right: -2rem !important; } - .lg\:to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; + .lg\:-mr-9 { + margin-right: -2.25rem !important; } - .lg\:to-yellow-200 { - --tw-gradient-to: #fde68a !important; + .lg\:-mr-10 { + margin-right: -2.5rem !important; } - .lg\:to-yellow-300 { - --tw-gradient-to: #fcd34d !important; + .lg\:-mr-11 { + margin-right: -2.75rem !important; } - .lg\:to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; + .lg\:-mr-12 { + margin-right: -3rem !important; } - .lg\:to-yellow-500 { - --tw-gradient-to: #f59e0b !important; + .lg\:-mr-14 { + margin-right: -3.5rem !important; } - .lg\:to-yellow-600 { - --tw-gradient-to: #d97706 !important; + .lg\:-mr-16 { + margin-right: -4rem !important; } - .lg\:to-yellow-700 { - --tw-gradient-to: #b45309 !important; + .lg\:-mr-20 { + margin-right: -5rem !important; } - .lg\:to-yellow-800 { - --tw-gradient-to: #92400e !important; + .lg\:-mr-24 { + margin-right: -6rem !important; } - .lg\:to-yellow-900 { - --tw-gradient-to: #78350f !important; + .lg\:-mr-28 { + margin-right: -7rem !important; } - .lg\:to-green-50 { - --tw-gradient-to: #ecfdf5 !important; + .lg\:-mr-32 { + margin-right: -8rem !important; } - .lg\:to-green-100 { - --tw-gradient-to: #d1fae5 !important; + .lg\:-mr-36 { + margin-right: -9rem !important; } - .lg\:to-green-200 { - --tw-gradient-to: #a7f3d0 !important; + .lg\:-mr-40 { + margin-right: -10rem !important; } - .lg\:to-green-300 { - --tw-gradient-to: #6ee7b7 !important; + .lg\:-mr-44 { + margin-right: -11rem !important; } - .lg\:to-green-400 { - --tw-gradient-to: #34d399 !important; + .lg\:-mr-48 { + margin-right: -12rem !important; } - .lg\:to-green-500 { - --tw-gradient-to: #10b981 !important; + .lg\:-mr-52 { + margin-right: -13rem !important; } - .lg\:to-green-600 { - --tw-gradient-to: #059669 !important; + .lg\:-mr-56 { + margin-right: -14rem !important; } - .lg\:to-green-700 { - --tw-gradient-to: #047857 !important; + .lg\:-mr-60 { + margin-right: -15rem !important; } - .lg\:to-green-800 { - --tw-gradient-to: #065f46 !important; + .lg\:-mr-64 { + margin-right: -16rem !important; } - .lg\:to-green-900 { - --tw-gradient-to: #064e3b !important; + .lg\:-mr-72 { + margin-right: -18rem !important; } - .lg\:to-blue-50 { - --tw-gradient-to: #eff6ff !important; + .lg\:-mr-80 { + margin-right: -20rem !important; } - .lg\:to-blue-100 { - --tw-gradient-to: #dbeafe !important; + .lg\:-mr-96 { + margin-right: -24rem !important; } - .lg\:to-blue-200 { - --tw-gradient-to: #bfdbfe !important; + .lg\:-mr-px { + margin-right: -1px !important; } - .lg\:to-blue-300 { - --tw-gradient-to: #93c5fd !important; + .lg\:-mr-0\.5 { + margin-right: -0.125rem !important; } - .lg\:to-blue-400 { - --tw-gradient-to: #60a5fa !important; + .lg\:-mr-1\.5 { + margin-right: -0.375rem !important; } - .lg\:to-blue-500 { - --tw-gradient-to: #3b82f6 !important; + .lg\:-mr-2\.5 { + margin-right: -0.625rem !important; } - .lg\:to-blue-600 { - --tw-gradient-to: #2563eb !important; + .lg\:-mr-3\.5 { + margin-right: -0.875rem !important; } - .lg\:to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; + .lg\:mb-0 { + margin-bottom: 0px !important; } - .lg\:to-blue-800 { - --tw-gradient-to: #1e40af !important; + .lg\:mb-1 { + margin-bottom: 0.25rem !important; } - .lg\:to-blue-900 { - --tw-gradient-to: #1e3a8a !important; + .lg\:mb-2 { + margin-bottom: 0.5rem !important; } - .lg\:to-indigo-50 { - --tw-gradient-to: #eef2ff !important; + .lg\:mb-3 { + margin-bottom: 0.75rem !important; } - .lg\:to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; + .lg\:mb-4 { + margin-bottom: 1rem !important; } - .lg\:to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; + .lg\:mb-5 { + margin-bottom: 1.25rem !important; } - .lg\:to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; + .lg\:mb-6 { + margin-bottom: 1.5rem !important; } - .lg\:to-indigo-400 { - --tw-gradient-to: #818cf8 !important; + .lg\:mb-7 { + margin-bottom: 1.75rem !important; } - .lg\:to-indigo-500 { - --tw-gradient-to: #6366f1 !important; + .lg\:mb-8 { + margin-bottom: 2rem !important; } - .lg\:to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; + .lg\:mb-9 { + margin-bottom: 2.25rem !important; } - .lg\:to-indigo-700 { - --tw-gradient-to: #4338ca !important; + .lg\:mb-10 { + margin-bottom: 2.5rem !important; } - .lg\:to-indigo-800 { - --tw-gradient-to: #3730a3 !important; + .lg\:mb-11 { + margin-bottom: 2.75rem !important; } - .lg\:to-indigo-900 { - --tw-gradient-to: #312e81 !important; + .lg\:mb-12 { + margin-bottom: 3rem !important; } - .lg\:to-purple-50 { - --tw-gradient-to: #f5f3ff !important; + .lg\:mb-14 { + margin-bottom: 3.5rem !important; } - .lg\:to-purple-100 { - --tw-gradient-to: #ede9fe !important; + .lg\:mb-16 { + margin-bottom: 4rem !important; } - .lg\:to-purple-200 { - --tw-gradient-to: #ddd6fe !important; + .lg\:mb-20 { + margin-bottom: 5rem !important; } - .lg\:to-purple-300 { - --tw-gradient-to: #c4b5fd !important; + .lg\:mb-24 { + margin-bottom: 6rem !important; } - .lg\:to-purple-400 { - --tw-gradient-to: #a78bfa !important; + .lg\:mb-28 { + margin-bottom: 7rem !important; } - .lg\:to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; + .lg\:mb-32 { + margin-bottom: 8rem !important; } - .lg\:to-purple-600 { - --tw-gradient-to: #7c3aed !important; + .lg\:mb-36 { + margin-bottom: 9rem !important; } - .lg\:to-purple-700 { - --tw-gradient-to: #6d28d9 !important; + .lg\:mb-40 { + margin-bottom: 10rem !important; } - .lg\:to-purple-800 { - --tw-gradient-to: #5b21b6 !important; + .lg\:mb-44 { + margin-bottom: 11rem !important; } - .lg\:to-purple-900 { - --tw-gradient-to: #4c1d95 !important; + .lg\:mb-48 { + margin-bottom: 12rem !important; } - .lg\:to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; + .lg\:mb-52 { + margin-bottom: 13rem !important; } - .lg\:to-pink-100 { - --tw-gradient-to: #fce7f3 !important; + .lg\:mb-56 { + margin-bottom: 14rem !important; } - .lg\:to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; + .lg\:mb-60 { + margin-bottom: 15rem !important; } - .lg\:to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; + .lg\:mb-64 { + margin-bottom: 16rem !important; } - .lg\:to-pink-400 { - --tw-gradient-to: #f472b6 !important; + .lg\:mb-72 { + margin-bottom: 18rem !important; } - .lg\:to-pink-500 { - --tw-gradient-to: #ec4899 !important; + .lg\:mb-80 { + margin-bottom: 20rem !important; } - .lg\:to-pink-600 { - --tw-gradient-to: #db2777 !important; + .lg\:mb-96 { + margin-bottom: 24rem !important; } - .lg\:to-pink-700 { - --tw-gradient-to: #be185d !important; + .lg\:mb-auto { + margin-bottom: auto !important; } - .lg\:to-pink-800 { - --tw-gradient-to: #9d174d !important; + .lg\:mb-px { + margin-bottom: 1px !important; } - .lg\:to-pink-900 { - --tw-gradient-to: #831843 !important; + .lg\:mb-0\.5 { + margin-bottom: 0.125rem !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\:mb-1\.5 { + margin-bottom: 0.375rem !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\:mb-2\.5 { + margin-bottom: 0.625rem !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\:mb-3\.5 { + margin-bottom: 0.875rem !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\:-mb-0 { + margin-bottom: 0px !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\:-mb-1 { + margin-bottom: -0.25rem !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\:-mb-2 { + margin-bottom: -0.5rem !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\:-mb-3 { + margin-bottom: -0.75rem !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\:-mb-4 { + margin-bottom: -1rem !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\:-mb-5 { + margin-bottom: -1.25rem !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\:-mb-6 { + margin-bottom: -1.5rem !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\:-mb-7 { + margin-bottom: -1.75rem !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\:-mb-8 { + margin-bottom: -2rem !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\:-mb-9 { + margin-bottom: -2.25rem !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\:-mb-10 { + margin-bottom: -2.5rem !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\:-mb-11 { + margin-bottom: -2.75rem !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\:-mb-12 { + margin-bottom: -3rem !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\:-mb-14 { + margin-bottom: -3.5rem !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\:-mb-16 { + margin-bottom: -4rem !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\:-mb-20 { + margin-bottom: -5rem !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\:-mb-24 { + margin-bottom: -6rem !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\:-mb-28 { + margin-bottom: -7rem !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\:-mb-32 { + margin-bottom: -8rem !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\:-mb-36 { + margin-bottom: -9rem !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\:-mb-40 { + margin-bottom: -10rem !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\:-mb-44 { + margin-bottom: -11rem !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\:-mb-48 { + margin-bottom: -12rem !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\:-mb-52 { + margin-bottom: -13rem !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\:-mb-56 { + margin-bottom: -14rem !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\:-mb-60 { + margin-bottom: -15rem !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\:-mb-64 { + margin-bottom: -16rem !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\:-mb-72 { + margin-bottom: -18rem !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\:-mb-80 { + margin-bottom: -20rem !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\:-mb-96 { + margin-bottom: -24rem !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\:-mb-px { + margin-bottom: -1px !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\:-mb-0\.5 { + margin-bottom: -0.125rem !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\:-mb-1\.5 { + margin-bottom: -0.375rem !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\:-mb-2\.5 { + margin-bottom: -0.625rem !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\:-mb-3\.5 { + margin-bottom: -0.875rem !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\:ml-0 { + margin-left: 0px !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\:ml-1 { + margin-left: 0.25rem !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\:ml-2 { + margin-left: 0.5rem !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\:ml-3 { + margin-left: 0.75rem !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\:ml-4 { + margin-left: 1rem !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\:ml-5 { + margin-left: 1.25rem !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\:ml-6 { + margin-left: 1.5rem !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\:ml-7 { + margin-left: 1.75rem !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\:ml-8 { + margin-left: 2rem !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\:ml-9 { + margin-left: 2.25rem !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\:ml-10 { + margin-left: 2.5rem !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\:ml-11 { + margin-left: 2.75rem !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\:ml-12 { + margin-left: 3rem !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\:ml-14 { + margin-left: 3.5rem !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\:ml-16 { + margin-left: 4rem !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\:ml-20 { + margin-left: 5rem !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\:ml-24 { + margin-left: 6rem !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\:ml-28 { + margin-left: 7rem !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\:ml-32 { + margin-left: 8rem !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\:ml-36 { + margin-left: 9rem !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\:ml-40 { + margin-left: 10rem !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\:ml-44 { + margin-left: 11rem !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\:ml-48 { + margin-left: 12rem !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\:ml-52 { + margin-left: 13rem !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\:ml-56 { + margin-left: 14rem !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\:ml-60 { + margin-left: 15rem !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\:ml-64 { + margin-left: 16rem !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\:ml-72 { + margin-left: 18rem !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\:ml-80 { + margin-left: 20rem !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\:ml-96 { + margin-left: 24rem !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\:ml-auto { + margin-left: auto !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\:ml-px { + margin-left: 1px !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\:ml-0\.5 { + margin-left: 0.125rem !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\:ml-1\.5 { + margin-left: 0.375rem !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\:ml-2\.5 { + margin-left: 0.625rem !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\:ml-3\.5 { + margin-left: 0.875rem !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\:-ml-0 { + margin-left: 0px !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\:-ml-1 { + margin-left: -0.25rem !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\:-ml-2 { + margin-left: -0.5rem !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\:-ml-3 { + margin-left: -0.75rem !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\:-ml-4 { + margin-left: -1rem !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\:-ml-5 { + margin-left: -1.25rem !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\:-ml-6 { + margin-left: -1.5rem !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\:-ml-7 { + margin-left: -1.75rem !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\:-ml-8 { + margin-left: -2rem !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\:-ml-9 { + margin-left: -2.25rem !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\:-ml-10 { + margin-left: -2.5rem !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\:-ml-11 { + margin-left: -2.75rem !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\:-ml-12 { + margin-left: -3rem !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\:-ml-14 { + margin-left: -3.5rem !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\:-ml-16 { + margin-left: -4rem !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\:-ml-20 { + margin-left: -5rem !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\:-ml-24 { + margin-left: -6rem !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\:-ml-28 { + margin-left: -7rem !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\:-ml-32 { + margin-left: -8rem !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\:-ml-36 { + margin-left: -9rem !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\:-ml-40 { + margin-left: -10rem !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\:-ml-44 { + margin-left: -11rem !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\:-ml-48 { + margin-left: -12rem !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\:-ml-52 { + margin-left: -13rem !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\:-ml-56 { + margin-left: -14rem !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\:-ml-60 { + margin-left: -15rem !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\:-ml-64 { + margin-left: -16rem !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\:-ml-72 { + margin-left: -18rem !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\:-ml-80 { + margin-left: -20rem !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\:-ml-96 { + margin-left: -24rem !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\:-ml-px { + margin-left: -1px !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\:-ml-0\.5 { + margin-left: -0.125rem !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\:-ml-1\.5 { + margin-left: -0.375rem !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\:-ml-2\.5 { + margin-left: -0.625rem !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\:-ml-3\.5 { + margin-left: -0.875rem !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\:box-border { + box-sizing: border-box !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\:box-content { + box-sizing: content-box !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\:block { + display: block !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\:inline-block { + display: inline-block !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\:inline { + display: inline !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\:flex { + display: flex !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\:inline-flex { + display: inline-flex !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\:table { + display: table !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\:inline-table { + display: inline-table !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\:table-caption { + display: table-caption !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\:table-cell { + display: table-cell !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\:table-column { + display: table-column !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\:table-column-group { + display: table-column-group !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\:table-footer-group { + display: table-footer-group !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\:table-header-group { + display: table-header-group !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\:table-row-group { + display: table-row-group !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\:table-row { + display: table-row !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\:flow-root { + display: flow-root !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\:grid { + display: grid !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\:inline-grid { + display: inline-grid !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\:contents { + display: contents !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\:list-item { + display: list-item !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\:hidden { + display: none !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\:h-0 { + height: 0px !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\:h-1 { + height: 0.25rem !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\:h-2 { + height: 0.5rem !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\:h-3 { + height: 0.75rem !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\:h-4 { + height: 1rem !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\:h-5 { + height: 1.25rem !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\:h-6 { + height: 1.5rem !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\:h-7 { + height: 1.75rem !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\:h-8 { + height: 2rem !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\:h-9 { + height: 2.25rem !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\:h-10 { + height: 2.5rem !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\:h-11 { + height: 2.75rem !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\:h-12 { + height: 3rem !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\:h-14 { + height: 3.5rem !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\:h-16 { + height: 4rem !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\:h-20 { + height: 5rem !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\:h-24 { + height: 6rem !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\:h-28 { + height: 7rem !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\:h-32 { + height: 8rem !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\:h-36 { + height: 9rem !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\:h-40 { + height: 10rem !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\:h-44 { + height: 11rem !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\:h-48 { + height: 12rem !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\:h-52 { + height: 13rem !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\:h-56 { + height: 14rem !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\:h-60 { + height: 15rem !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\:h-64 { + height: 16rem !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\:h-72 { + height: 18rem !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\:h-80 { + height: 20rem !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\:h-96 { + height: 24rem !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\:h-auto { + height: auto !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\:h-px { + height: 1px !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\:h-0\.5 { + height: 0.125rem !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\:h-1\.5 { + height: 0.375rem !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\:h-2\.5 { + height: 0.625rem !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\:h-3\.5 { + height: 0.875rem !important; } - .lg\:hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; + .lg\:h-1\/2 { + height: 50% !important; } - .lg\:hover\:to-current:hover { - --tw-gradient-to: currentColor !important; + .lg\:h-1\/3 { + height: 33.333333% !important; } - .lg\:hover\:to-black:hover { - --tw-gradient-to: #000 !important; + .lg\:h-2\/3 { + height: 66.666667% !important; } - .lg\:hover\:to-white:hover { - --tw-gradient-to: #fff !important; + .lg\:h-1\/4 { + height: 25% !important; } - .lg\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; + .lg\:h-2\/4 { + height: 50% !important; } - .lg\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; + .lg\:h-3\/4 { + height: 75% !important; } - .lg\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; + .lg\:h-1\/5 { + height: 20% !important; } - .lg\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; + .lg\:h-2\/5 { + height: 40% !important; } - .lg\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; + .lg\:h-3\/5 { + height: 60% !important; } - .lg\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; + .lg\:h-4\/5 { + height: 80% !important; } - .lg\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; + .lg\:h-1\/6 { + height: 16.666667% !important; } - .lg\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; + .lg\:h-2\/6 { + height: 33.333333% !important; } - .lg\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; + .lg\:h-3\/6 { + height: 50% !important; } - .lg\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; + .lg\:h-4\/6 { + height: 66.666667% !important; } - .lg\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; + .lg\:h-5\/6 { + height: 83.333333% !important; } - .lg\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; + .lg\:h-full { + height: 100% !important; } - .lg\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; + .lg\:h-screen { + height: 100vh !important; } - .lg\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; + .lg\:max-h-0 { + max-height: 0px !important; } - .lg\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; + .lg\:max-h-1 { + max-height: 0.25rem !important; } - .lg\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; + .lg\:max-h-2 { + max-height: 0.5rem !important; } - .lg\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; + .lg\:max-h-3 { + max-height: 0.75rem !important; } - .lg\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; + .lg\:max-h-4 { + max-height: 1rem !important; } - .lg\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; + .lg\:max-h-5 { + max-height: 1.25rem !important; } - .lg\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; + .lg\:max-h-6 { + max-height: 1.5rem !important; } - .lg\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; + .lg\:max-h-7 { + max-height: 1.75rem !important; } - .lg\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; + .lg\:max-h-8 { + max-height: 2rem !important; } - .lg\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; + .lg\:max-h-9 { + max-height: 2.25rem !important; } - .lg\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; + .lg\:max-h-10 { + max-height: 2.5rem !important; } - .lg\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; + .lg\:max-h-11 { + max-height: 2.75rem !important; } - .lg\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; + .lg\:max-h-12 { + max-height: 3rem !important; } - .lg\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; + .lg\:max-h-14 { + max-height: 3.5rem !important; } - .lg\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; + .lg\:max-h-16 { + max-height: 4rem !important; } - .lg\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; + .lg\:max-h-20 { + max-height: 5rem !important; } - .lg\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; + .lg\:max-h-24 { + max-height: 6rem !important; } - .lg\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; + .lg\:max-h-28 { + max-height: 7rem !important; } - .lg\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; + .lg\:max-h-32 { + max-height: 8rem !important; } - .lg\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; + .lg\:max-h-36 { + max-height: 9rem !important; } - .lg\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; + .lg\:max-h-40 { + max-height: 10rem !important; } - .lg\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; + .lg\:max-h-44 { + max-height: 11rem !important; } - .lg\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; + .lg\:max-h-48 { + max-height: 12rem !important; } - .lg\:hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; + .lg\:max-h-52 { + max-height: 13rem !important; } - .lg\:hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; + .lg\:max-h-56 { + max-height: 14rem !important; } - .lg\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; + .lg\:max-h-60 { + max-height: 15rem !important; } - .lg\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; + .lg\:max-h-64 { + max-height: 16rem !important; } - .lg\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; + .lg\:max-h-72 { + max-height: 18rem !important; } - .lg\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; + .lg\:max-h-80 { + max-height: 20rem !important; } - .lg\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; + .lg\:max-h-96 { + max-height: 24rem !important; } - .lg\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; + .lg\:max-h-px { + max-height: 1px !important; } - .lg\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; + .lg\:max-h-0\.5 { + max-height: 0.125rem !important; } - .lg\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; + .lg\:max-h-1\.5 { + max-height: 0.375rem !important; } - .lg\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; + .lg\:max-h-2\.5 { + max-height: 0.625rem !important; } - .lg\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; + .lg\:max-h-3\.5 { + max-height: 0.875rem !important; } - .lg\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; + .lg\:max-h-full { + max-height: 100% !important; } - .lg\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; + .lg\:max-h-screen { + max-height: 100vh !important; } - .lg\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; + .lg\:min-h-0 { + min-height: 0px !important; } - .lg\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; + .lg\:min-h-full { + min-height: 100% !important; } - .lg\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; + .lg\:min-h-screen { + min-height: 100vh !important; } - .lg\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; + .lg\:w-0 { + width: 0px !important; } - .lg\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; + .lg\:w-1 { + width: 0.25rem !important; } - .lg\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; + .lg\:w-2 { + width: 0.5rem !important; } - .lg\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; + .lg\:w-3 { + width: 0.75rem !important; } - .lg\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; + .lg\:w-4 { + width: 1rem !important; } - .lg\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; + .lg\:w-5 { + width: 1.25rem !important; } - .lg\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; + .lg\:w-6 { + width: 1.5rem !important; } - .lg\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; + .lg\:w-7 { + width: 1.75rem !important; } - .lg\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; + .lg\:w-8 { + width: 2rem !important; } - .lg\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; + .lg\:w-9 { + width: 2.25rem !important; } - .lg\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; + .lg\:w-10 { + width: 2.5rem !important; } - .lg\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; + .lg\:w-11 { + width: 2.75rem !important; } - .lg\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; + .lg\:w-12 { + width: 3rem !important; } - .lg\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; + .lg\:w-14 { + width: 3.5rem !important; } - .lg\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; + .lg\:w-16 { + width: 4rem !important; } - .lg\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; + .lg\:w-20 { + width: 5rem !important; } - .lg\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; + .lg\:w-24 { + width: 6rem !important; } - .lg\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; + .lg\:w-28 { + width: 7rem !important; } - .lg\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; + .lg\:w-32 { + width: 8rem !important; } - .lg\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; + .lg\:w-36 { + width: 9rem !important; } - .lg\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; + .lg\:w-40 { + width: 10rem !important; } - .lg\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; + .lg\:w-44 { + width: 11rem !important; } - .lg\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; + .lg\:w-48 { + width: 12rem !important; } - .lg\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; + .lg\:w-52 { + width: 13rem !important; } - .lg\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; + .lg\:w-56 { + width: 14rem !important; } - .lg\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; + .lg\:w-60 { + width: 15rem !important; } - .lg\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; + .lg\:w-64 { + width: 16rem !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\:w-72 { + width: 18rem !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\:w-80 { + width: 20rem !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\:w-96 { + width: 24rem !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\:w-auto { + width: auto !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\:w-px { + width: 1px !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\:w-0\.5 { + width: 0.125rem !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\:w-1\.5 { + width: 0.375rem !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\:w-2\.5 { + width: 0.625rem !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\:w-3\.5 { + width: 0.875rem !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\:w-1\/2 { + width: 50% !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\:w-1\/3 { + width: 33.333333% !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\:w-2\/3 { + width: 66.666667% !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\:w-1\/4 { + width: 25% !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\:w-2\/4 { + width: 50% !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\:w-3\/4 { + width: 75% !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\:w-1\/5 { + width: 20% !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\:w-2\/5 { + width: 40% !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\:w-3\/5 { + width: 60% !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\:w-4\/5 { + width: 80% !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\:w-1\/6 { + width: 16.666667% !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\:w-2\/6 { + width: 33.333333% !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\:w-3\/6 { + width: 50% !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\:w-4\/6 { + width: 66.666667% !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\:w-5\/6 { + width: 83.333333% !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\:w-1\/12 { + width: 8.333333% !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\:w-2\/12 { + width: 16.666667% !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\:w-3\/12 { + width: 25% !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\:w-4\/12 { + width: 33.333333% !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\:w-5\/12 { + width: 41.666667% !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\:w-6\/12 { + width: 50% !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\:w-7\/12 { + width: 58.333333% !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\:w-8\/12 { + width: 66.666667% !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\:w-9\/12 { + width: 75% !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\:w-10\/12 { + width: 83.333333% !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\:w-11\/12 { + width: 91.666667% !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\:w-full { + width: 100% !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\:w-screen { + width: 100vw !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\:w-min { + width: min-content !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\:w-max { + width: max-content !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\:min-w-0 { + min-width: 0px !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\:min-w-full { + min-width: 100% !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\:min-w-min { + min-width: min-content !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\:min-w-max { + min-width: max-content !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\:max-w-0 { + max-width: 0rem !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\:max-w-none { + max-width: none !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\:max-w-xs { + max-width: 20rem !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\:max-w-sm { + max-width: 24rem !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\:max-w-md { + max-width: 28rem !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\:max-w-lg { + max-width: 32rem !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\:max-w-xl { + max-width: 36rem !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\:max-w-2xl { + max-width: 42rem !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\:max-w-3xl { + max-width: 48rem !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\:max-w-4xl { + max-width: 56rem !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\:max-w-5xl { + max-width: 64rem !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\:max-w-6xl { + max-width: 72rem !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\:max-w-7xl { + max-width: 80rem !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\:max-w-full { + max-width: 100% !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\:max-w-min { + max-width: min-content !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\:max-w-max { + max-width: max-content !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\:max-w-prose { + max-width: 65ch !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\:max-w-screen-sm { + max-width: 640px !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\:max-w-screen-md { + max-width: 768px !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\:max-w-screen-lg { + max-width: 1024px !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\:max-w-screen-xl { + max-width: 1280px !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\:max-w-screen-2xl { + max-width: 1536px !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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto !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\:flex-initial { + flex: 0 1 auto !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\:flex-none { + flex: none !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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1 !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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1 !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\:table-auto { + table-layout: auto !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\:table-fixed { + table-layout: fixed !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\:border-collapse { + border-collapse: collapse !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\:border-separate { + border-collapse: separate !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\:transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !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\:transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !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\:transform-none { + transform: none !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\:origin-center { + transform-origin: center !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\:origin-top { + transform-origin: top !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\:origin-top-right { + transform-origin: top right !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\:origin-right { + transform-origin: right !important; } - .lg\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .lg\:origin-bottom-right { + transform-origin: bottom right !important; } - .lg\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .lg\:origin-bottom { + transform-origin: bottom !important; } - .lg\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .lg\:origin-bottom-left { + transform-origin: bottom left !important; } - .lg\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .lg\:origin-left { + transform-origin: left !important; } - .lg\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .lg\:origin-top-left { + transform-origin: top left !important; } - .lg\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .lg\:translate-x-0 { + --tw-translate-x: 0px !important; } - .lg\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .lg\:translate-x-1 { + --tw-translate-x: 0.25rem !important; } - .lg\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .lg\:translate-x-2 { + --tw-translate-x: 0.5rem !important; } - .lg\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .lg\:translate-x-3 { + --tw-translate-x: 0.75rem !important; } - .lg\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .lg\:translate-x-4 { + --tw-translate-x: 1rem !important; } - .lg\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .lg\:translate-x-5 { + --tw-translate-x: 1.25rem !important; } - .lg\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .lg\:translate-x-6 { + --tw-translate-x: 1.5rem !important; } - .lg\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .lg\:translate-x-7 { + --tw-translate-x: 1.75rem !important; } - .lg\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .lg\:translate-x-8 { + --tw-translate-x: 2rem !important; } - .lg\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .lg\:translate-x-9 { + --tw-translate-x: 2.25rem !important; } - .lg\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .lg\:translate-x-10 { + --tw-translate-x: 2.5rem !important; } - .lg\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .lg\:translate-x-11 { + --tw-translate-x: 2.75rem !important; } - .lg\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .lg\:translate-x-12 { + --tw-translate-x: 3rem !important; } - .lg\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .lg\:translate-x-14 { + --tw-translate-x: 3.5rem !important; } - .lg\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .lg\:translate-x-16 { + --tw-translate-x: 4rem !important; } - .lg\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .lg\:translate-x-20 { + --tw-translate-x: 5rem !important; } - .lg\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .lg\:translate-x-24 { + --tw-translate-x: 6rem !important; } - .lg\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .lg\:translate-x-28 { + --tw-translate-x: 7rem !important; } - .lg\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .lg\:translate-x-32 { + --tw-translate-x: 8rem !important; } - .lg\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .lg\:translate-x-36 { + --tw-translate-x: 9rem !important; } - .lg\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .lg\:translate-x-40 { + --tw-translate-x: 10rem !important; } - .lg\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .lg\:translate-x-44 { + --tw-translate-x: 11rem !important; } - .lg\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .lg\:translate-x-48 { + --tw-translate-x: 12rem !important; } - .lg\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .lg\:translate-x-52 { + --tw-translate-x: 13rem !important; } - .lg\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .lg\:translate-x-56 { + --tw-translate-x: 14rem !important; } - .lg\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .lg\:translate-x-60 { + --tw-translate-x: 15rem !important; } - .lg\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .lg\:translate-x-64 { + --tw-translate-x: 16rem !important; } - .lg\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .lg\:translate-x-72 { + --tw-translate-x: 18rem !important; } - .lg\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .lg\:translate-x-80 { + --tw-translate-x: 20rem !important; } - .lg\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .lg\:translate-x-96 { + --tw-translate-x: 24rem !important; } - .lg\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .lg\:translate-x-px { + --tw-translate-x: 1px !important; } - .lg\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .lg\:translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; } - .lg\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .lg\:translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; } - .lg\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .lg\:translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; } - .lg\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .lg\:translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; } - .lg\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .lg\:-translate-x-0 { + --tw-translate-x: 0px !important; } - .lg\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .lg\:-translate-x-1 { + --tw-translate-x: -0.25rem !important; } - .lg\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .lg\:-translate-x-2 { + --tw-translate-x: -0.5rem !important; } - .lg\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .lg\:-translate-x-3 { + --tw-translate-x: -0.75rem !important; } - .lg\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .lg\:-translate-x-4 { + --tw-translate-x: -1rem !important; } - .lg\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .lg\:-translate-x-5 { + --tw-translate-x: -1.25rem !important; } - .lg\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .lg\:-translate-x-6 { + --tw-translate-x: -1.5rem !important; } - .lg\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .lg\:-translate-x-7 { + --tw-translate-x: -1.75rem !important; } - .lg\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .lg\:-translate-x-8 { + --tw-translate-x: -2rem !important; } - .lg\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .lg\:-translate-x-9 { + --tw-translate-x: -2.25rem !important; } - .lg\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .lg\:-translate-x-10 { + --tw-translate-x: -2.5rem !important; } - .lg\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .lg\:-translate-x-11 { + --tw-translate-x: -2.75rem !important; } - .lg\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .lg\:-translate-x-12 { + --tw-translate-x: -3rem !important; } - .lg\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .lg\:-translate-x-14 { + --tw-translate-x: -3.5rem !important; } - .lg\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .lg\:-translate-x-16 { + --tw-translate-x: -4rem !important; } - .lg\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .lg\:-translate-x-20 { + --tw-translate-x: -5rem !important; } - .lg\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .lg\:-translate-x-24 { + --tw-translate-x: -6rem !important; } - .lg\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .lg\:-translate-x-28 { + --tw-translate-x: -7rem !important; } - .lg\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .lg\:-translate-x-32 { + --tw-translate-x: -8rem !important; } - .lg\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .lg\:-translate-x-36 { + --tw-translate-x: -9rem !important; } - .lg\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .lg\:-translate-x-40 { + --tw-translate-x: -10rem !important; } - .lg\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .lg\:-translate-x-44 { + --tw-translate-x: -11rem !important; } - .lg\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .lg\:-translate-x-48 { + --tw-translate-x: -12rem !important; } - .lg\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .lg\:-translate-x-52 { + --tw-translate-x: -13rem !important; } - .lg\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .lg\:-translate-x-56 { + --tw-translate-x: -14rem !important; } - .lg\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .lg\:-translate-x-60 { + --tw-translate-x: -15rem !important; } - .lg\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .lg\:-translate-x-64 { + --tw-translate-x: -16rem !important; } - .lg\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .lg\:-translate-x-72 { + --tw-translate-x: -18rem !important; } - .lg\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .lg\:-translate-x-80 { + --tw-translate-x: -20rem !important; } - .lg\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .lg\:-translate-x-96 { + --tw-translate-x: -24rem !important; } - .lg\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .lg\:-translate-x-px { + --tw-translate-x: -1px !important; } - .lg\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .lg\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; } - .lg\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .lg\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; } - .lg\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .lg\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; } - .lg\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .lg\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; } - .lg\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .lg\:translate-x-1\/2 { + --tw-translate-x: 50% !important; } - .lg\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .lg\:translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; } - .lg\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .lg\:translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; } - .lg\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .lg\:translate-x-1\/4 { + --tw-translate-x: 25% !important; } - .lg\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .lg\:translate-x-2\/4 { + --tw-translate-x: 50% !important; } - .lg\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .lg\:translate-x-3\/4 { + --tw-translate-x: 75% !important; } - .lg\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .lg\:translate-x-full { + --tw-translate-x: 100% !important; } - .lg\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .lg\:-translate-x-1\/2 { + --tw-translate-x: -50% !important; } - .lg\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .lg\:-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; } - .lg\:focus\:to-transparent:focus { - --tw-gradient-to: transparent !important; + .lg\:-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; } - .lg\:focus\:to-current:focus { - --tw-gradient-to: currentColor !important; + .lg\:-translate-x-1\/4 { + --tw-translate-x: -25% !important; } - .lg\:focus\:to-black:focus { - --tw-gradient-to: #000 !important; + .lg\:-translate-x-2\/4 { + --tw-translate-x: -50% !important; } - .lg\:focus\:to-white:focus { - --tw-gradient-to: #fff !important; + .lg\:-translate-x-3\/4 { + --tw-translate-x: -75% !important; } - .lg\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb !important; + .lg\:-translate-x-full { + --tw-translate-x: -100% !important; } - .lg\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6 !important; + .lg\:translate-y-0 { + --tw-translate-y: 0px !important; } - .lg\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb !important; + .lg\:translate-y-1 { + --tw-translate-y: 0.25rem !important; } - .lg\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db !important; + .lg\:translate-y-2 { + --tw-translate-y: 0.5rem !important; } - .lg\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af !important; + .lg\:translate-y-3 { + --tw-translate-y: 0.75rem !important; } - .lg\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280 !important; + .lg\:translate-y-4 { + --tw-translate-y: 1rem !important; } - .lg\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563 !important; + .lg\:translate-y-5 { + --tw-translate-y: 1.25rem !important; } - .lg\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151 !important; + .lg\:translate-y-6 { + --tw-translate-y: 1.5rem !important; } - .lg\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937 !important; + .lg\:translate-y-7 { + --tw-translate-y: 1.75rem !important; } - .lg\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827 !important; + .lg\:translate-y-8 { + --tw-translate-y: 2rem !important; } - .lg\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2 !important; + .lg\:translate-y-9 { + --tw-translate-y: 2.25rem !important; } - .lg\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2 !important; + .lg\:translate-y-10 { + --tw-translate-y: 2.5rem !important; } - .lg\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca !important; + .lg\:translate-y-11 { + --tw-translate-y: 2.75rem !important; } - .lg\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5 !important; + .lg\:translate-y-12 { + --tw-translate-y: 3rem !important; } - .lg\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171 !important; + .lg\:translate-y-14 { + --tw-translate-y: 3.5rem !important; } - .lg\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444 !important; + .lg\:translate-y-16 { + --tw-translate-y: 4rem !important; } - .lg\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626 !important; + .lg\:translate-y-20 { + --tw-translate-y: 5rem !important; } - .lg\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c !important; + .lg\:translate-y-24 { + --tw-translate-y: 6rem !important; } - .lg\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b !important; + .lg\:translate-y-28 { + --tw-translate-y: 7rem !important; } - .lg\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d !important; + .lg\:translate-y-32 { + --tw-translate-y: 8rem !important; } - .lg\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb !important; + .lg\:translate-y-36 { + --tw-translate-y: 9rem !important; } - .lg\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7 !important; + .lg\:translate-y-40 { + --tw-translate-y: 10rem !important; } - .lg\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a !important; + .lg\:translate-y-44 { + --tw-translate-y: 11rem !important; } - .lg\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d !important; + .lg\:translate-y-48 { + --tw-translate-y: 12rem !important; } - .lg\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24 !important; + .lg\:translate-y-52 { + --tw-translate-y: 13rem !important; } - .lg\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b !important; + .lg\:translate-y-56 { + --tw-translate-y: 14rem !important; } - .lg\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706 !important; + .lg\:translate-y-60 { + --tw-translate-y: 15rem !important; } - .lg\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309 !important; + .lg\:translate-y-64 { + --tw-translate-y: 16rem !important; } - .lg\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e !important; + .lg\:translate-y-72 { + --tw-translate-y: 18rem !important; } - .lg\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f !important; + .lg\:translate-y-80 { + --tw-translate-y: 20rem !important; } - .lg\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5 !important; + .lg\:translate-y-96 { + --tw-translate-y: 24rem !important; } - .lg\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5 !important; + .lg\:translate-y-px { + --tw-translate-y: 1px !important; } - .lg\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0 !important; + .lg\:translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; } - .lg\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7 !important; + .lg\:translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; } - .lg\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399 !important; + .lg\:translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; } - .lg\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981 !important; + .lg\:translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; } - .lg\:focus\:to-green-600:focus { - --tw-gradient-to: #059669 !important; + .lg\:-translate-y-0 { + --tw-translate-y: 0px !important; } - .lg\:focus\:to-green-700:focus { - --tw-gradient-to: #047857 !important; + .lg\:-translate-y-1 { + --tw-translate-y: -0.25rem !important; } - .lg\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46 !important; + .lg\:-translate-y-2 { + --tw-translate-y: -0.5rem !important; } - .lg\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b !important; + .lg\:-translate-y-3 { + --tw-translate-y: -0.75rem !important; } - .lg\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff !important; + .lg\:-translate-y-4 { + --tw-translate-y: -1rem !important; } - .lg\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe !important; + .lg\:-translate-y-5 { + --tw-translate-y: -1.25rem !important; } - .lg\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe !important; + .lg\:-translate-y-6 { + --tw-translate-y: -1.5rem !important; } - .lg\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd !important; + .lg\:-translate-y-7 { + --tw-translate-y: -1.75rem !important; } - .lg\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa !important; + .lg\:-translate-y-8 { + --tw-translate-y: -2rem !important; } - .lg\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6 !important; + .lg\:-translate-y-9 { + --tw-translate-y: -2.25rem !important; } - .lg\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb !important; + .lg\:-translate-y-10 { + --tw-translate-y: -2.5rem !important; } - .lg\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8 !important; + .lg\:-translate-y-11 { + --tw-translate-y: -2.75rem !important; } - .lg\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af !important; + .lg\:-translate-y-12 { + --tw-translate-y: -3rem !important; } - .lg\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a !important; + .lg\:-translate-y-14 { + --tw-translate-y: -3.5rem !important; } - .lg\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff !important; + .lg\:-translate-y-16 { + --tw-translate-y: -4rem !important; } - .lg\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff !important; + .lg\:-translate-y-20 { + --tw-translate-y: -5rem !important; } - .lg\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe !important; + .lg\:-translate-y-24 { + --tw-translate-y: -6rem !important; } - .lg\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc !important; + .lg\:-translate-y-28 { + --tw-translate-y: -7rem !important; } - .lg\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8 !important; + .lg\:-translate-y-32 { + --tw-translate-y: -8rem !important; } - .lg\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1 !important; + .lg\:-translate-y-36 { + --tw-translate-y: -9rem !important; } - .lg\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5 !important; + .lg\:-translate-y-40 { + --tw-translate-y: -10rem !important; } - .lg\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca !important; + .lg\:-translate-y-44 { + --tw-translate-y: -11rem !important; } - .lg\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3 !important; + .lg\:-translate-y-48 { + --tw-translate-y: -12rem !important; } - .lg\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81 !important; + .lg\:-translate-y-52 { + --tw-translate-y: -13rem !important; } - .lg\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff !important; + .lg\:-translate-y-56 { + --tw-translate-y: -14rem !important; } - .lg\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe !important; + .lg\:-translate-y-60 { + --tw-translate-y: -15rem !important; } - .lg\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe !important; + .lg\:-translate-y-64 { + --tw-translate-y: -16rem !important; } - .lg\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd !important; + .lg\:-translate-y-72 { + --tw-translate-y: -18rem !important; } - .lg\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa !important; + .lg\:-translate-y-80 { + --tw-translate-y: -20rem !important; } - .lg\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6 !important; + .lg\:-translate-y-96 { + --tw-translate-y: -24rem !important; } - .lg\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed !important; + .lg\:-translate-y-px { + --tw-translate-y: -1px !important; } - .lg\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9 !important; + .lg\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; } - .lg\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6 !important; + .lg\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; } - .lg\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95 !important; + .lg\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; } - .lg\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8 !important; + .lg\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; } - .lg\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3 !important; + .lg\:translate-y-1\/2 { + --tw-translate-y: 50% !important; } - .lg\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8 !important; + .lg\:translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; } - .lg\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4 !important; + .lg\:translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; } - .lg\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6 !important; + .lg\:translate-y-1\/4 { + --tw-translate-y: 25% !important; } - .lg\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899 !important; + .lg\:translate-y-2\/4 { + --tw-translate-y: 50% !important; } - .lg\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777 !important; + .lg\:translate-y-3\/4 { + --tw-translate-y: 75% !important; } - .lg\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d !important; + .lg\:translate-y-full { + --tw-translate-y: 100% !important; } - .lg\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d !important; + .lg\:-translate-y-1\/2 { + --tw-translate-y: -50% !important; } - .lg\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843 !important; + .lg\:-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; } - .lg\:bg-opacity-0 { - --tw-bg-opacity: 0 !important; + .lg\:-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; } - .lg\:bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; + .lg\:-translate-y-1\/4 { + --tw-translate-y: -25% !important; } - .lg\:bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; + .lg\:-translate-y-2\/4 { + --tw-translate-y: -50% !important; } - .lg\:bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; + .lg\:-translate-y-3\/4 { + --tw-translate-y: -75% !important; } - .lg\:bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; + .lg\:-translate-y-full { + --tw-translate-y: -100% !important; } - .lg\:bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; + .lg\:hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; } - .lg\:bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; + .lg\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; } - .lg\:bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; + .lg\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; } - .lg\:bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; + .lg\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; } - .lg\:bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; + .lg\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; } - .lg\:bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; + .lg\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; } - .lg\:bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; + .lg\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; } - .lg\:bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; + .lg\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; } - .lg\:bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; + .lg\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; } - .lg\:bg-opacity-100 { - --tw-bg-opacity: 1 !important; + .lg\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0 !important; + .lg\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; + .lg\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; + .lg\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; + .lg\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; + .lg\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; + .lg\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; + .lg\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; + .lg\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; + .lg\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; + .lg\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; + .lg\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; + .lg\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; + .lg\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; + .lg\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; } - .group:hover .lg\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1 !important; + .lg\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; } - .lg\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0 !important; + .lg\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; } - .lg\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05 !important; + .lg\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; } - .lg\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1 !important; + .lg\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; } - .lg\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2 !important; + .lg\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; } - .lg\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25 !important; + .lg\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; } - .lg\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3 !important; + .lg\:hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; } - .lg\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4 !important; + .lg\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; } - .lg\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5 !important; + .lg\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; } - .lg\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6 !important; + .lg\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; } - .lg\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7 !important; + .lg\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; } - .lg\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75 !important; + .lg\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; } - .lg\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8 !important; + .lg\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; } - .lg\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9 !important; + .lg\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; } - .lg\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95 !important; + .lg\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; } - .lg\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1 !important; + .lg\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; } - .lg\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0 !important; + .lg\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; } - .lg\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05 !important; + .lg\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; } - .lg\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1 !important; + .lg\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; } - .lg\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2 !important; + .lg\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; } - .lg\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25 !important; + .lg\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; } - .lg\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3 !important; + .lg\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; } - .lg\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4 !important; + .lg\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; } - .lg\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5 !important; + .lg\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; } - .lg\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6 !important; + .lg\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; } - .lg\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7 !important; + .lg\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; } - .lg\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75 !important; + .lg\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; } - .lg\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8 !important; + .lg\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; } - .lg\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9 !important; + .lg\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; } - .lg\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95 !important; + .lg\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; } - .lg\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1 !important; + .lg\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; } - .lg\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0 !important; + .lg\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; } - .lg\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05 !important; + .lg\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; } - .lg\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1 !important; + .lg\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; } - .lg\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2 !important; + .lg\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; } - .lg\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25 !important; + .lg\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; } - .lg\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3 !important; + .lg\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; } - .lg\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4 !important; + .lg\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; } - .lg\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5 !important; + .lg\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; } - .lg\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6 !important; + .lg\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; } - .lg\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7 !important; + .lg\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; } - .lg\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75 !important; + .lg\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; } - .lg\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8 !important; + .lg\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; } - .lg\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9 !important; + .lg\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; } - .lg\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95 !important; + .lg\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; } - .lg\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1 !important; + .lg\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; } - .lg\:bg-bottom { - background-position: bottom !important; + .lg\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; } - .lg\:bg-center { - background-position: center !important; + .lg\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; } - .lg\:bg-left { - background-position: left !important; + .lg\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; } - .lg\:bg-left-bottom { - background-position: left bottom !important; + .lg\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; } - .lg\:bg-left-top { - background-position: left top !important; + .lg\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; } - .lg\:bg-right { - background-position: right !important; + .lg\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; } - .lg\:bg-right-bottom { - background-position: right bottom !important; + .lg\:hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; } - .lg\:bg-right-top { - background-position: right top !important; + .lg\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; } - .lg\:bg-top { - background-position: top !important; + .lg\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; } - .lg\:bg-repeat { - background-repeat: repeat !important; + .lg\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; } - .lg\:bg-no-repeat { - background-repeat: no-repeat !important; + .lg\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; } - .lg\:bg-repeat-x { - background-repeat: repeat-x !important; + .lg\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; } - .lg\:bg-repeat-y { - background-repeat: repeat-y !important; + .lg\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; } - .lg\:bg-repeat-round { - background-repeat: round !important; + .lg\:hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; } - .lg\:bg-repeat-space { - background-repeat: space !important; + .lg\:hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; } - .lg\:bg-auto { - background-size: auto !important; + .lg\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; } - .lg\:bg-cover { - background-size: cover !important; + .lg\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; } - .lg\:bg-contain { - background-size: contain !important; + .lg\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; } - .lg\:bg-origin-border { - background-origin: border-box !important; + .lg\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; } - .lg\:bg-origin-padding { - background-origin: padding-box !important; + .lg\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; } - .lg\:bg-origin-content { - background-origin: content-box !important; + .lg\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; } - .lg\:border-collapse { - border-collapse: collapse !important; + .lg\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; } - .lg\:border-separate { - border-collapse: separate !important; + .lg\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; } - .lg\:border-transparent { - border-color: transparent !important; + .lg\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; } - .lg\:border-current { - border-color: currentColor !important; + .lg\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; } - .lg\:border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; } - .lg\:border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; } - .lg\:border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; } - .lg\:border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; } - .lg\:border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; } - .lg\:border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; } - .lg\:border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; } - .lg\:border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; } - .lg\:border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; } - .lg\:border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; } - .lg\:border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; } - .lg\:border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; } - .lg\:border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; } - .lg\:border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; } - .lg\:border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; } - .lg\:border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; } - .lg\:border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; } - .lg\:border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; } - .lg\:border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; } - .lg\:border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; } - .lg\:border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; } - .lg\:border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; } - .lg\:border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; } - .lg\:border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; } - .lg\:border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; } - .lg\:border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; } - .lg\:border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; } - .lg\:border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; } - .lg\:border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; } - .lg\:border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; } - .lg\:border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; } - .lg\:border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; } - .lg\:border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; } - .lg\:border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; } - .lg\:border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; } - .lg\:border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; } - .lg\:border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; } - .lg\:border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; } - .lg\:border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; } - .lg\:border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; } - .lg\:border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; } - .lg\:border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; } - .lg\:border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; } - .lg\:border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; } - .lg\:border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; } - .lg\:border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; } - .lg\:border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; } - .lg\:border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; } - .lg\:border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; } - .lg\:border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; } - .lg\:border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; } - .lg\:border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; } - .lg\:border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; } - .lg\:border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; } - .lg\:border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; } - .lg\:border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; } - .lg\:border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; } - .lg\:border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; } - .lg\:border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; } - .lg\:border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; } - .lg\:border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; } - .lg\:border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; } - .lg\:border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; } - .lg\:border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; } - .lg\:border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; } - .lg\:border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .lg\:hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; } - .lg\:border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; } - .lg\:border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; } - .lg\:border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; } - .lg\:border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; } - .lg\:border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; } - .lg\:border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; } - .lg\:border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .lg\:hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; } - .lg\:border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; } - .lg\:border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; } - .lg\:border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; } - .lg\:border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; } - .lg\:border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; } - .lg\:border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; } - .lg\:border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; } - .lg\:border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; } - .lg\:border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; } - .group:hover .lg\:group-hover\:border-transparent { - border-color: transparent !important; + .lg\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; } - .group:hover .lg\:group-hover\:border-current { - border-color: currentColor !important; + .lg\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; } - .group:hover .lg\:group-hover\:border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; } - .group:hover .lg\:group-hover\:border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; } - .group:hover .lg\:group-hover\:border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; } - .group:hover .lg\:group-hover\:border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; } - .group:hover .lg\:group-hover\:border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; } - .group:hover .lg\:group-hover\:border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; } - .group:hover .lg\:group-hover\:border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; } - .group:hover .lg\:group-hover\:border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; } - .group:hover .lg\:group-hover\:border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; } - .group:hover .lg\:group-hover\:border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; } - .group:hover .lg\:group-hover\:border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; } - .group:hover .lg\:group-hover\:border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; } - .group:hover .lg\:group-hover\:border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; } - .group:hover .lg\:group-hover\:border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; } - .group:hover .lg\:group-hover\:border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; } - .group:hover .lg\:group-hover\:border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; } - .group:hover .lg\:group-hover\:border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; } - .group:hover .lg\:group-hover\:border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; } - .group:hover .lg\:group-hover\:border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; } - .group:hover .lg\:group-hover\:border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; } - .group:hover .lg\:group-hover\:border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; } - .group:hover .lg\:group-hover\:border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; } - .group:hover .lg\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; } - .group:hover .lg\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; } - .group:hover .lg\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; } - .group:hover .lg\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; } - .group:hover .lg\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; } - .group:hover .lg\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; } - .group:hover .lg\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; } - .group:hover .lg\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; } - .group:hover .lg\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; } - .group:hover .lg\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; } - .group:hover .lg\:group-hover\:border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; } - .group:hover .lg\:group-hover\:border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; } - - .group:hover .lg\:group-hover\:border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + + .lg\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; } - .group:hover .lg\:group-hover\:border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; } - .group:hover .lg\:group-hover\:border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; } - .group:hover .lg\:group-hover\:border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; } - .group:hover .lg\:group-hover\:border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; } - .group:hover .lg\:group-hover\:border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; } - .group:hover .lg\:group-hover\:border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; } - .group:hover .lg\:group-hover\:border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; } - .group:hover .lg\:group-hover\:border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; } - .group:hover .lg\:group-hover\:border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; } - .group:hover .lg\:group-hover\:border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; } - .group:hover .lg\:group-hover\:border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; } - .group:hover .lg\:group-hover\:border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; } - .group:hover .lg\:group-hover\:border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; } - .group:hover .lg\:group-hover\:border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; } - .group:hover .lg\:group-hover\:border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; } - .group:hover .lg\:group-hover\:border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; } - .group:hover .lg\:group-hover\:border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; } - .group:hover .lg\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; } - .group:hover .lg\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; } - .group:hover .lg\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; } - .group:hover .lg\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; } - .group:hover .lg\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; } - .group:hover .lg\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; } - .group:hover .lg\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; } - .group:hover .lg\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; } - .group:hover .lg\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; } - .group:hover .lg\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; } - .group:hover .lg\:group-hover\:border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; } - .group:hover .lg\:group-hover\:border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; } - .group:hover .lg\:group-hover\:border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; } - .group:hover .lg\:group-hover\:border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; } - .group:hover .lg\:group-hover\:border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; } - .group:hover .lg\:group-hover\:border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; } - .group:hover .lg\:group-hover\:border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; } - .group:hover .lg\:group-hover\:border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; } - .group:hover .lg\:group-hover\:border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; } - .group:hover .lg\:group-hover\:border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; } - .group:hover .lg\:group-hover\:border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; } - .group:hover .lg\:group-hover\:border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; } - .group:hover .lg\:group-hover\:border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; } - .group:hover .lg\:group-hover\:border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; } - .group:hover .lg\:group-hover\:border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; } - .group:hover .lg\:group-hover\:border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; } - .group:hover .lg\:group-hover\:border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; } - .group:hover .lg\:group-hover\:border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; } - .group:hover .lg\:group-hover\:border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; } - .group:hover .lg\:group-hover\:border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; } - .lg\:focus-within\:border-transparent:focus-within { - border-color: transparent !important; + .lg\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; } - .lg\:focus-within\:border-current:focus-within { - border-color: currentColor !important; + .lg\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; } - .lg\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; } - .lg\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; } - .lg\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; } - .lg\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; } - .lg\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; } - .lg\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; } - .lg\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; } - .lg\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; } - .lg\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; } - .lg\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; } - .lg\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; } - .lg\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; } - .lg\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; } - .lg\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; } - .lg\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; } - .lg\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; } - .lg\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; } - .lg\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; } - .lg\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; } - .lg\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; } - .lg\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; } - .lg\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; } - .lg\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; } - .lg\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; } - .lg\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; } - .lg\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; } - .lg\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; } - .lg\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; } - .lg\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; } - .lg\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; } - .lg\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; } - .lg\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; } - .lg\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; } - .lg\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; } - .lg\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; } - .lg\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; } - .lg\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; } - .lg\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; } - .lg\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; } - .lg\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; } - .lg\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; } - .lg\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; } - .lg\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; } - .lg\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; } - .lg\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; } - .lg\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; } - .lg\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; } - .lg\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; } - .lg\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; } - .lg\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; } - .lg\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; } - .lg\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; } - .lg\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; } - .lg\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; } - .lg\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; } - .lg\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; } - .lg\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; } - .lg\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; } - .lg\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; } - .lg\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; } - .lg\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; } - .lg\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; } - .lg\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; } - .lg\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; } - .lg\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; } - .lg\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .lg\:focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; } - .lg\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; } - .lg\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; } - .lg\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; } - .lg\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; } - .lg\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; } - .lg\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; } - .lg\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .lg\:focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; } - .lg\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .lg\:rotate-0 { + --tw-rotate: 0deg !important; } - .lg\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .lg\:rotate-1 { + --tw-rotate: 1deg !important; } - .lg\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .lg\:rotate-2 { + --tw-rotate: 2deg !important; } - .lg\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .lg\:rotate-3 { + --tw-rotate: 3deg !important; } - .lg\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .lg\:rotate-6 { + --tw-rotate: 6deg !important; } - .lg\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .lg\:rotate-12 { + --tw-rotate: 12deg !important; } - .lg\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .lg\:rotate-45 { + --tw-rotate: 45deg !important; } - .lg\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .lg\:rotate-90 { + --tw-rotate: 90deg !important; } - .lg\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .lg\:rotate-180 { + --tw-rotate: 180deg !important; } - .lg\:hover\:border-transparent:hover { - border-color: transparent !important; + .lg\:-rotate-180 { + --tw-rotate: -180deg !important; } - .lg\:hover\:border-current:hover { - border-color: currentColor !important; + .lg\:-rotate-90 { + --tw-rotate: -90deg !important; } - .lg\:hover\:border-black:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .lg\:-rotate-45 { + --tw-rotate: -45deg !important; } - .lg\:hover\:border-white:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .lg\:-rotate-12 { + --tw-rotate: -12deg !important; } - .lg\:hover\:border-gray-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .lg\:-rotate-6 { + --tw-rotate: -6deg !important; } - .lg\:hover\:border-gray-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .lg\:-rotate-3 { + --tw-rotate: -3deg !important; } - .lg\:hover\:border-gray-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .lg\:-rotate-2 { + --tw-rotate: -2deg !important; } - .lg\:hover\:border-gray-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .lg\:-rotate-1 { + --tw-rotate: -1deg !important; } - .lg\:hover\:border-gray-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .lg\:hover\:rotate-0:hover { + --tw-rotate: 0deg !important; } - .lg\:hover\:border-gray-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .lg\:hover\:rotate-1:hover { + --tw-rotate: 1deg !important; } - .lg\:hover\:border-gray-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .lg\:hover\:rotate-2:hover { + --tw-rotate: 2deg !important; } - .lg\:hover\:border-gray-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .lg\:hover\:rotate-3:hover { + --tw-rotate: 3deg !important; } - .lg\:hover\:border-gray-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .lg\:hover\:rotate-6:hover { + --tw-rotate: 6deg !important; } - .lg\:hover\:border-gray-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .lg\:hover\:rotate-12:hover { + --tw-rotate: 12deg !important; } - .lg\:hover\:border-red-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .lg\:hover\:rotate-45:hover { + --tw-rotate: 45deg !important; } - .lg\:hover\:border-red-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .lg\:hover\:rotate-90:hover { + --tw-rotate: 90deg !important; } - .lg\:hover\:border-red-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .lg\:hover\:rotate-180:hover { + --tw-rotate: 180deg !important; } - .lg\:hover\:border-red-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .lg\:hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; } - .lg\:hover\:border-red-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .lg\:hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; } - .lg\:hover\:border-red-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .lg\:hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; } - .lg\:hover\:border-red-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .lg\:hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; } - .lg\:hover\:border-red-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .lg\:hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; } - .lg\:hover\:border-red-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .lg\:hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; } - .lg\:hover\:border-red-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .lg\:hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; } - .lg\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .lg\:hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; } - .lg\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .lg\:focus\:rotate-0:focus { + --tw-rotate: 0deg !important; } - .lg\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .lg\:focus\:rotate-1:focus { + --tw-rotate: 1deg !important; } - .lg\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .lg\:focus\:rotate-2:focus { + --tw-rotate: 2deg !important; } - .lg\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .lg\:focus\:rotate-3:focus { + --tw-rotate: 3deg !important; } - .lg\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .lg\:focus\:rotate-6:focus { + --tw-rotate: 6deg !important; } - .lg\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .lg\:focus\:rotate-12:focus { + --tw-rotate: 12deg !important; } - .lg\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .lg\:focus\:rotate-45:focus { + --tw-rotate: 45deg !important; } - .lg\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .lg\:focus\:rotate-90:focus { + --tw-rotate: 90deg !important; } - .lg\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .lg\:focus\:rotate-180:focus { + --tw-rotate: 180deg !important; } - .lg\:hover\:border-green-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .lg\:focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; } - .lg\:hover\:border-green-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .lg\:focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; } - .lg\:hover\:border-green-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .lg\:focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; } - .lg\:hover\:border-green-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .lg\:focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; } - .lg\:hover\:border-green-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .lg\:focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; } - .lg\:hover\:border-green-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .lg\:focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; } - .lg\:hover\:border-green-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .lg\:focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; } - .lg\:hover\:border-green-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .lg\:focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; } - .lg\:hover\:border-green-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .lg\:skew-x-0 { + --tw-skew-x: 0deg !important; } - .lg\:hover\:border-green-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .lg\:skew-x-1 { + --tw-skew-x: 1deg !important; } - .lg\:hover\:border-blue-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .lg\:skew-x-2 { + --tw-skew-x: 2deg !important; } - .lg\:hover\:border-blue-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .lg\:skew-x-3 { + --tw-skew-x: 3deg !important; } - .lg\:hover\:border-blue-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .lg\:skew-x-6 { + --tw-skew-x: 6deg !important; } - .lg\:hover\:border-blue-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .lg\:skew-x-12 { + --tw-skew-x: 12deg !important; } - .lg\:hover\:border-blue-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .lg\:-skew-x-12 { + --tw-skew-x: -12deg !important; } - .lg\:hover\:border-blue-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .lg\:-skew-x-6 { + --tw-skew-x: -6deg !important; } - .lg\:hover\:border-blue-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .lg\:-skew-x-3 { + --tw-skew-x: -3deg !important; } - .lg\:hover\:border-blue-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .lg\:-skew-x-2 { + --tw-skew-x: -2deg !important; } - .lg\:hover\:border-blue-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .lg\:-skew-x-1 { + --tw-skew-x: -1deg !important; } - .lg\:hover\:border-blue-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .lg\:skew-y-0 { + --tw-skew-y: 0deg !important; } - .lg\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .lg\:skew-y-1 { + --tw-skew-y: 1deg !important; } - .lg\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .lg\:skew-y-2 { + --tw-skew-y: 2deg !important; } - .lg\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .lg\:skew-y-3 { + --tw-skew-y: 3deg !important; } - .lg\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .lg\:skew-y-6 { + --tw-skew-y: 6deg !important; } - .lg\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .lg\:skew-y-12 { + --tw-skew-y: 12deg !important; } - .lg\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .lg\:-skew-y-12 { + --tw-skew-y: -12deg !important; } - .lg\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .lg\:-skew-y-6 { + --tw-skew-y: -6deg !important; } - .lg\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .lg\:-skew-y-3 { + --tw-skew-y: -3deg !important; } - .lg\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .lg\:-skew-y-2 { + --tw-skew-y: -2deg !important; } - .lg\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .lg\:-skew-y-1 { + --tw-skew-y: -1deg !important; } - .lg\:hover\:border-purple-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; } - .lg\:hover\:border-purple-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; } - .lg\:hover\:border-purple-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; } - .lg\:hover\:border-purple-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; } - .lg\:hover\:border-purple-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; } - .lg\:hover\:border-purple-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; } - .lg\:hover\:border-purple-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .lg\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; } - .lg\:hover\:border-purple-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .lg\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; } - .lg\:hover\:border-purple-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .lg\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; } - .lg\:hover\:border-purple-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .lg\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; } - .lg\:hover\:border-pink-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .lg\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; } - .lg\:hover\:border-pink-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; } - .lg\:hover\:border-pink-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; } - .lg\:hover\:border-pink-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; } - .lg\:hover\:border-pink-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; } - .lg\:hover\:border-pink-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; } - .lg\:hover\:border-pink-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .lg\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; } - .lg\:hover\:border-pink-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .lg\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; } - .lg\:hover\:border-pink-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .lg\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; } - .lg\:hover\:border-pink-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .lg\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; } - .lg\:focus\:border-transparent:focus { - border-color: transparent !important; + .lg\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; } - .lg\:focus\:border-current:focus { - border-color: currentColor !important; + .lg\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; } - .lg\:focus\:border-black:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; } - .lg\:focus\:border-white:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; } - .lg\:focus\:border-gray-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; } - .lg\:focus\:border-gray-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; } - .lg\:focus\:border-gray-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; } - .lg\:focus\:border-gray-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; } - .lg\:focus\:border-gray-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .lg\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; } - .lg\:focus\:border-gray-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .lg\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; } - .lg\:focus\:border-gray-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .lg\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; } - .lg\:focus\:border-gray-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .lg\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; } - .lg\:focus\:border-gray-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .lg\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; } - .lg\:focus\:border-gray-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; } - .lg\:focus\:border-red-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; } - .lg\:focus\:border-red-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; } - .lg\:focus\:border-red-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; } - .lg\:focus\:border-red-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; } - .lg\:focus\:border-red-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .lg\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; } - .lg\:focus\:border-red-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .lg\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; } - .lg\:focus\:border-red-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .lg\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; } - .lg\:focus\:border-red-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .lg\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; } - .lg\:focus\:border-red-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .lg\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; } - .lg\:focus\:border-red-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .lg\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; } - .lg\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .lg\:scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .lg\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .lg\:scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .lg\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .lg\:scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .lg\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .lg\:scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .lg\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .lg\:scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .lg\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .lg\:scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .lg\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .lg\:scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .lg\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .lg\:scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .lg\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .lg\:scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .lg\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .lg\:scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .lg\:focus\:border-green-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .lg\:scale-x-0 { + --tw-scale-x: 0 !important; } - .lg\:focus\:border-green-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .lg\:scale-x-50 { + --tw-scale-x: .5 !important; } - .lg\:focus\:border-green-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .lg\:scale-x-75 { + --tw-scale-x: .75 !important; } - .lg\:focus\:border-green-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .lg\:scale-x-90 { + --tw-scale-x: .9 !important; } - .lg\:focus\:border-green-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .lg\:scale-x-95 { + --tw-scale-x: .95 !important; } - .lg\:focus\:border-green-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .lg\:scale-x-100 { + --tw-scale-x: 1 !important; } - .lg\:focus\:border-green-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .lg\:scale-x-105 { + --tw-scale-x: 1.05 !important; } - .lg\:focus\:border-green-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .lg\:scale-x-110 { + --tw-scale-x: 1.1 !important; } - .lg\:focus\:border-green-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .lg\:scale-x-125 { + --tw-scale-x: 1.25 !important; } - .lg\:focus\:border-green-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .lg\:scale-x-150 { + --tw-scale-x: 1.5 !important; } - .lg\:focus\:border-blue-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .lg\:scale-y-0 { + --tw-scale-y: 0 !important; } - .lg\:focus\:border-blue-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .lg\:scale-y-50 { + --tw-scale-y: .5 !important; } - .lg\:focus\:border-blue-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .lg\:scale-y-75 { + --tw-scale-y: .75 !important; } - .lg\:focus\:border-blue-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .lg\:scale-y-90 { + --tw-scale-y: .9 !important; } - .lg\:focus\:border-blue-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .lg\:scale-y-95 { + --tw-scale-y: .95 !important; } - .lg\:focus\:border-blue-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .lg\:scale-y-100 { + --tw-scale-y: 1 !important; } - .lg\:focus\:border-blue-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .lg\:scale-y-105 { + --tw-scale-y: 1.05 !important; } - .lg\:focus\:border-blue-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .lg\:scale-y-110 { + --tw-scale-y: 1.1 !important; } - .lg\:focus\:border-blue-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .lg\:scale-y-125 { + --tw-scale-y: 1.25 !important; } - .lg\:focus\:border-blue-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .lg\:scale-y-150 { + --tw-scale-y: 1.5 !important; } - .lg\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .lg\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .lg\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .lg\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .lg\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .lg\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .lg\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .lg\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .lg\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .lg\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .lg\:focus\:border-purple-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; } - .lg\:focus\:border-purple-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; } - .lg\:focus\:border-purple-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; } - .lg\:focus\:border-purple-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; } - .lg\:focus\:border-purple-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; } - .lg\:focus\:border-purple-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; } - .lg\:focus\:border-purple-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; } - .lg\:focus\:border-purple-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; } - .lg\:focus\:border-purple-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; } - .lg\:focus\:border-purple-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; } - .lg\:focus\:border-pink-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; } - .lg\:focus\:border-pink-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; } - .lg\:focus\:border-pink-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; } - .lg\:focus\:border-pink-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; } - .lg\:focus\:border-pink-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; } - .lg\:focus\:border-pink-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; } - .lg\:focus\:border-pink-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; } - .lg\:focus\:border-pink-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; } - .lg\:focus\:border-pink-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; } - .lg\:focus\:border-pink-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .lg\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; } - .lg\:border-opacity-0 { - --tw-border-opacity: 0 !important; + .lg\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .lg\:border-opacity-5 { - --tw-border-opacity: 0.05 !important; + .lg\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .lg\:border-opacity-10 { - --tw-border-opacity: 0.1 !important; + .lg\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .lg\:border-opacity-20 { - --tw-border-opacity: 0.2 !important; + .lg\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .lg\:border-opacity-25 { - --tw-border-opacity: 0.25 !important; + .lg\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .lg\:border-opacity-30 { - --tw-border-opacity: 0.3 !important; + .lg\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .lg\:border-opacity-40 { - --tw-border-opacity: 0.4 !important; + .lg\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .lg\:border-opacity-50 { - --tw-border-opacity: 0.5 !important; + .lg\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .lg\:border-opacity-60 { - --tw-border-opacity: 0.6 !important; + .lg\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .lg\:border-opacity-70 { - --tw-border-opacity: 0.7 !important; + .lg\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .lg\:border-opacity-75 { - --tw-border-opacity: 0.75 !important; + .lg\:focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; } - .lg\:border-opacity-80 { - --tw-border-opacity: 0.8 !important; + .lg\:focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; } - .lg\:border-opacity-90 { - --tw-border-opacity: 0.9 !important; + .lg\:focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; } - .lg\:border-opacity-95 { - --tw-border-opacity: 0.95 !important; + .lg\:focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; } - .lg\:border-opacity-100 { - --tw-border-opacity: 1 !important; + .lg\:focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; } - .group:hover .lg\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0 !important; + .lg\:focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; } - .group:hover .lg\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05 !important; + .lg\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; } - .group:hover .lg\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1 !important; + .lg\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; } - .group:hover .lg\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2 !important; + .lg\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; } - .group:hover .lg\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25 !important; + .lg\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; } - .group:hover .lg\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3 !important; + .lg\:focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; } - .group:hover .lg\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4 !important; + .lg\:focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; } - .group:hover .lg\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5 !important; + .lg\:focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; } - .group:hover .lg\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6 !important; + .lg\:focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; } - .group:hover .lg\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7 !important; + .lg\:focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; } - .group:hover .lg\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75 !important; + .lg\:focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; } - .group:hover .lg\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8 !important; + .lg\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; } - .group:hover .lg\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9 !important; + .lg\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; } - .group:hover .lg\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95 !important; + .lg\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; } - .group:hover .lg\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1 !important; + .lg\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; } - .lg\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0 !important; + .lg\:animate-none { + animation: none !important; } - .lg\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05 !important; + .lg\:animate-spin { + animation: spin 1s linear infinite !important; } - .lg\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1 !important; + .lg\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; } - .lg\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2 !important; + .lg\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; } - .lg\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25 !important; + .lg\:animate-bounce { + animation: bounce 1s infinite !important; } - .lg\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3 !important; + .lg\:cursor-auto { + cursor: auto !important; } - .lg\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4 !important; + .lg\:cursor-default { + cursor: default !important; } - .lg\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5 !important; + .lg\:cursor-pointer { + cursor: pointer !important; } - .lg\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6 !important; + .lg\:cursor-wait { + cursor: wait !important; } - .lg\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7 !important; + .lg\:cursor-text { + cursor: text !important; } - .lg\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75 !important; + .lg\:cursor-move { + cursor: move !important; } - .lg\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8 !important; + .lg\:cursor-help { + cursor: help !important; } - .lg\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9 !important; + .lg\:cursor-not-allowed { + cursor: not-allowed !important; } - .lg\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95 !important; + .lg\:select-none { + user-select: none !important; } - .lg\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1 !important; + .lg\:select-text { + user-select: text !important; } - .lg\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0 !important; + .lg\:select-all { + user-select: all !important; } - .lg\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05 !important; + .lg\:select-auto { + user-select: auto !important; } - .lg\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1 !important; + .lg\:resize-none { + resize: none !important; } - .lg\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2 !important; + .lg\:resize-y { + resize: vertical !important; } - .lg\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25 !important; + .lg\:resize-x { + resize: horizontal !important; } - .lg\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3 !important; + .lg\:resize { + resize: both !important; } - .lg\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4 !important; + .lg\:list-inside { + list-style-position: inside !important; } - .lg\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5 !important; + .lg\:list-outside { + list-style-position: outside !important; } - .lg\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6 !important; + .lg\:list-none { + list-style-type: none !important; } - .lg\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7 !important; + .lg\:list-disc { + list-style-type: disc !important; } - .lg\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75 !important; + .lg\:list-decimal { + list-style-type: decimal !important; } - .lg\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8 !important; + .lg\:appearance-none { + appearance: none !important; } - .lg\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9 !important; + .lg\:auto-cols-auto { + grid-auto-columns: auto !important; } - .lg\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95 !important; + .lg\:auto-cols-min { + grid-auto-columns: min-content !important; } - .lg\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1 !important; + .lg\:auto-cols-max { + grid-auto-columns: max-content !important; } - .lg\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0 !important; + .lg\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; } - .lg\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05 !important; + .lg\:grid-flow-row { + grid-auto-flow: row !important; } - .lg\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1 !important; + .lg\:grid-flow-col { + grid-auto-flow: column !important; } - .lg\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2 !important; + .lg\:grid-flow-row-dense { + grid-auto-flow: row dense !important; } - .lg\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25 !important; + .lg\:grid-flow-col-dense { + grid-auto-flow: column dense !important; } - .lg\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3 !important; + .lg\:auto-rows-auto { + grid-auto-rows: auto !important; } - .lg\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4 !important; + .lg\:auto-rows-min { + grid-auto-rows: min-content !important; } - .lg\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5 !important; + .lg\:auto-rows-max { + grid-auto-rows: max-content !important; } - .lg\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6 !important; + .lg\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; } - .lg\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7 !important; + .lg\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } - .lg\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75 !important; + .lg\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } - .lg\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8 !important; + .lg\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } - .lg\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9 !important; + .lg\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } - .lg\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95 !important; + .lg\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } - .lg\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1 !important; + .lg\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } - .lg\:rounded-none { - border-radius: 0px !important; + .lg\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } - .lg\:rounded-sm { - border-radius: 0.125rem !important; + .lg\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } - .lg\:rounded { - border-radius: 0.25rem !important; + .lg\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } - .lg\:rounded-md { - border-radius: 0.375rem !important; + .lg\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } - .lg\:rounded-lg { - border-radius: 0.5rem !important; + .lg\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } - .lg\:rounded-xl { - border-radius: 0.75rem !important; + .lg\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } - .lg\:rounded-2xl { - border-radius: 1rem !important; + .lg\:grid-cols-none { + grid-template-columns: none !important; } - .lg\:rounded-3xl { - border-radius: 1.5rem !important; + .lg\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; } - .lg\:rounded-full { - border-radius: 9999px !important; + .lg\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; } - .lg\:rounded-t-none { - border-top-left-radius: 0px !important; - border-top-right-radius: 0px !important; + .lg\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; } - .lg\:rounded-r-none { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; + .lg\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; } - .lg\:rounded-b-none { - border-bottom-right-radius: 0px !important; - border-bottom-left-radius: 0px !important; + .lg\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; } - .lg\:rounded-l-none { - border-top-left-radius: 0px !important; - border-bottom-left-radius: 0px !important; + .lg\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; } - .lg\:rounded-t-sm { - border-top-left-radius: 0.125rem !important; - border-top-right-radius: 0.125rem !important; + .lg\:grid-rows-none { + grid-template-rows: none !important; } - .lg\:rounded-r-sm { - border-top-right-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; + .lg\:flex-row { + flex-direction: row !important; } - .lg\:rounded-b-sm { - border-bottom-right-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; + .lg\:flex-row-reverse { + flex-direction: row-reverse !important; } - .lg\:rounded-l-sm { - border-top-left-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; + .lg\:flex-col { + flex-direction: column !important; } - .lg\:rounded-t { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; + .lg\:flex-col-reverse { + flex-direction: column-reverse !important; } - .lg\:rounded-r { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; + .lg\:flex-wrap { + flex-wrap: wrap !important; } - .lg\:rounded-b { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; + .lg\:flex-wrap-reverse { + flex-wrap: wrap-reverse !important; } - .lg\:rounded-l { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; + .lg\:flex-nowrap { + flex-wrap: nowrap !important; } - .lg\:rounded-t-md { - border-top-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem !important; + .lg\:place-content-center { + place-content: center !important; } - .lg\:rounded-r-md { - border-top-right-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; + .lg\:place-content-start { + place-content: start !important; } - .lg\:rounded-b-md { - border-bottom-right-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; + .lg\:place-content-end { + place-content: end !important; } - .lg\:rounded-l-md { - border-top-left-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; + .lg\:place-content-between { + place-content: space-between !important; } - .lg\:rounded-t-lg { - border-top-left-radius: 0.5rem !important; - border-top-right-radius: 0.5rem !important; + .lg\:place-content-around { + place-content: space-around !important; } - .lg\:rounded-r-lg { - border-top-right-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; + .lg\:place-content-evenly { + place-content: space-evenly !important; } - .lg\:rounded-b-lg { - border-bottom-right-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; + .lg\:place-content-stretch { + place-content: stretch !important; } - .lg\:rounded-l-lg { - border-top-left-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; + .lg\:place-items-start { + place-items: start !important; } - .lg\:rounded-t-xl { - border-top-left-radius: 0.75rem !important; - border-top-right-radius: 0.75rem !important; + .lg\:place-items-end { + place-items: end !important; } - .lg\:rounded-r-xl { - border-top-right-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; + .lg\:place-items-center { + place-items: center !important; } - .lg\:rounded-b-xl { - border-bottom-right-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; + .lg\:place-items-stretch { + place-items: stretch !important; } - .lg\:rounded-l-xl { - border-top-left-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; + .lg\:content-center { + align-content: center !important; } - .lg\:rounded-t-2xl { - border-top-left-radius: 1rem !important; - border-top-right-radius: 1rem !important; + .lg\:content-start { + align-content: flex-start !important; } - .lg\:rounded-r-2xl { - border-top-right-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; + .lg\:content-end { + align-content: flex-end !important; } - .lg\:rounded-b-2xl { - border-bottom-right-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; + .lg\:content-between { + align-content: space-between !important; } - .lg\:rounded-l-2xl { - border-top-left-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; + .lg\:content-around { + align-content: space-around !important; } - .lg\:rounded-t-3xl { - border-top-left-radius: 1.5rem !important; - border-top-right-radius: 1.5rem !important; + .lg\:content-evenly { + align-content: space-evenly !important; } - .lg\:rounded-r-3xl { - border-top-right-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; + .lg\:items-start { + align-items: flex-start !important; } - .lg\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; + .lg\:items-end { + align-items: flex-end !important; } - .lg\:rounded-l-3xl { - border-top-left-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; + .lg\:items-center { + align-items: center !important; } - .lg\:rounded-t-full { - border-top-left-radius: 9999px !important; - border-top-right-radius: 9999px !important; + .lg\:items-baseline { + align-items: baseline !important; } - .lg\:rounded-r-full { - border-top-right-radius: 9999px !important; - border-bottom-right-radius: 9999px !important; + .lg\:items-stretch { + align-items: stretch !important; } - .lg\:rounded-b-full { - border-bottom-right-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; + .lg\:justify-start { + justify-content: flex-start !important; } - .lg\:rounded-l-full { - border-top-left-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; + .lg\:justify-end { + justify-content: flex-end !important; } - .lg\:rounded-tl-none { - border-top-left-radius: 0px !important; + .lg\:justify-center { + justify-content: center !important; } - .lg\:rounded-tr-none { - border-top-right-radius: 0px !important; + .lg\:justify-between { + justify-content: space-between !important; + } + + .lg\:justify-around { + justify-content: space-around !important; } - .lg\:rounded-br-none { - border-bottom-right-radius: 0px !important; + .lg\:justify-evenly { + justify-content: space-evenly !important; } - .lg\:rounded-bl-none { - border-bottom-left-radius: 0px !important; + .lg\:justify-items-start { + justify-items: start !important; } - .lg\:rounded-tl-sm { - border-top-left-radius: 0.125rem !important; + .lg\:justify-items-end { + justify-items: end !important; } - .lg\:rounded-tr-sm { - border-top-right-radius: 0.125rem !important; + .lg\:justify-items-center { + justify-items: center !important; } - .lg\:rounded-br-sm { - border-bottom-right-radius: 0.125rem !important; + .lg\:justify-items-stretch { + justify-items: stretch !important; } - .lg\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem !important; + .lg\:gap-0 { + gap: 0px !important; } - .lg\:rounded-tl { - border-top-left-radius: 0.25rem !important; + .lg\:gap-1 { + gap: 0.25rem !important; } - .lg\:rounded-tr { - border-top-right-radius: 0.25rem !important; + .lg\:gap-2 { + gap: 0.5rem !important; } - .lg\:rounded-br { - border-bottom-right-radius: 0.25rem !important; + .lg\:gap-3 { + gap: 0.75rem !important; } - .lg\:rounded-bl { - border-bottom-left-radius: 0.25rem !important; + .lg\:gap-4 { + gap: 1rem !important; } - .lg\:rounded-tl-md { - border-top-left-radius: 0.375rem !important; + .lg\:gap-5 { + gap: 1.25rem !important; } - .lg\:rounded-tr-md { - border-top-right-radius: 0.375rem !important; + .lg\:gap-6 { + gap: 1.5rem !important; } - .lg\:rounded-br-md { - border-bottom-right-radius: 0.375rem !important; + .lg\:gap-7 { + gap: 1.75rem !important; } - .lg\:rounded-bl-md { - border-bottom-left-radius: 0.375rem !important; + .lg\:gap-8 { + gap: 2rem !important; } - .lg\:rounded-tl-lg { - border-top-left-radius: 0.5rem !important; + .lg\:gap-9 { + gap: 2.25rem !important; } - .lg\:rounded-tr-lg { - border-top-right-radius: 0.5rem !important; + .lg\:gap-10 { + gap: 2.5rem !important; } - .lg\:rounded-br-lg { - border-bottom-right-radius: 0.5rem !important; + .lg\:gap-11 { + gap: 2.75rem !important; } - .lg\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem !important; + .lg\:gap-12 { + gap: 3rem !important; } - .lg\:rounded-tl-xl { - border-top-left-radius: 0.75rem !important; + .lg\:gap-14 { + gap: 3.5rem !important; } - .lg\:rounded-tr-xl { - border-top-right-radius: 0.75rem !important; + .lg\:gap-16 { + gap: 4rem !important; } - .lg\:rounded-br-xl { - border-bottom-right-radius: 0.75rem !important; + .lg\:gap-20 { + gap: 5rem !important; } - .lg\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem !important; + .lg\:gap-24 { + gap: 6rem !important; } - .lg\:rounded-tl-2xl { - border-top-left-radius: 1rem !important; + .lg\:gap-28 { + gap: 7rem !important; } - .lg\:rounded-tr-2xl { - border-top-right-radius: 1rem !important; + .lg\:gap-32 { + gap: 8rem !important; } - .lg\:rounded-br-2xl { - border-bottom-right-radius: 1rem !important; + .lg\:gap-36 { + gap: 9rem !important; } - .lg\:rounded-bl-2xl { - border-bottom-left-radius: 1rem !important; + .lg\:gap-40 { + gap: 10rem !important; } - .lg\:rounded-tl-3xl { - border-top-left-radius: 1.5rem !important; + .lg\:gap-44 { + gap: 11rem !important; } - .lg\:rounded-tr-3xl { - border-top-right-radius: 1.5rem !important; + .lg\:gap-48 { + gap: 12rem !important; } - .lg\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem !important; + .lg\:gap-52 { + gap: 13rem !important; } - .lg\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem !important; + .lg\:gap-56 { + gap: 14rem !important; } - .lg\:rounded-tl-full { - border-top-left-radius: 9999px !important; + .lg\:gap-60 { + gap: 15rem !important; } - .lg\:rounded-tr-full { - border-top-right-radius: 9999px !important; + .lg\:gap-64 { + gap: 16rem !important; } - .lg\:rounded-br-full { - border-bottom-right-radius: 9999px !important; + .lg\:gap-72 { + gap: 18rem !important; } - .lg\:rounded-bl-full { - border-bottom-left-radius: 9999px !important; + .lg\:gap-80 { + gap: 20rem !important; } - .lg\:border-solid { - border-style: solid !important; + .lg\:gap-96 { + gap: 24rem !important; } - .lg\:border-dashed { - border-style: dashed !important; + .lg\:gap-px { + gap: 1px !important; } - .lg\:border-dotted { - border-style: dotted !important; + .lg\:gap-0\.5 { + gap: 0.125rem !important; } - .lg\:border-double { - border-style: double !important; + .lg\:gap-1\.5 { + gap: 0.375rem !important; } - .lg\:border-none { - border-style: none !important; + .lg\:gap-2\.5 { + gap: 0.625rem !important; } - .lg\:border-0 { - border-width: 0px !important; + .lg\:gap-3\.5 { + gap: 0.875rem !important; } - .lg\:border-2 { - border-width: 2px !important; + .lg\:gap-x-0 { + column-gap: 0px !important; } - .lg\:border-4 { - border-width: 4px !important; + .lg\:gap-x-1 { + column-gap: 0.25rem !important; } - .lg\:border-8 { - border-width: 8px !important; + .lg\:gap-x-2 { + column-gap: 0.5rem !important; } - .lg\:border { - border-width: 1px !important; + .lg\:gap-x-3 { + column-gap: 0.75rem !important; } - .lg\:border-t-0 { - border-top-width: 0px !important; + .lg\:gap-x-4 { + column-gap: 1rem !important; } - .lg\:border-r-0 { - border-right-width: 0px !important; + .lg\:gap-x-5 { + column-gap: 1.25rem !important; } - .lg\:border-b-0 { - border-bottom-width: 0px !important; + .lg\:gap-x-6 { + column-gap: 1.5rem !important; } - .lg\:border-l-0 { - border-left-width: 0px !important; + .lg\:gap-x-7 { + column-gap: 1.75rem !important; } - .lg\:border-t-2 { - border-top-width: 2px !important; + .lg\:gap-x-8 { + column-gap: 2rem !important; } - .lg\:border-r-2 { - border-right-width: 2px !important; + .lg\:gap-x-9 { + column-gap: 2.25rem !important; } - .lg\:border-b-2 { - border-bottom-width: 2px !important; + .lg\:gap-x-10 { + column-gap: 2.5rem !important; } - .lg\:border-l-2 { - border-left-width: 2px !important; + .lg\:gap-x-11 { + column-gap: 2.75rem !important; } - .lg\:border-t-4 { - border-top-width: 4px !important; + .lg\:gap-x-12 { + column-gap: 3rem !important; } - .lg\:border-r-4 { - border-right-width: 4px !important; + .lg\:gap-x-14 { + column-gap: 3.5rem !important; } - .lg\:border-b-4 { - border-bottom-width: 4px !important; + .lg\:gap-x-16 { + column-gap: 4rem !important; } - .lg\:border-l-4 { - border-left-width: 4px !important; + .lg\:gap-x-20 { + column-gap: 5rem !important; } - .lg\:border-t-8 { - border-top-width: 8px !important; + .lg\:gap-x-24 { + column-gap: 6rem !important; } - .lg\:border-r-8 { - border-right-width: 8px !important; + .lg\:gap-x-28 { + column-gap: 7rem !important; } - .lg\:border-b-8 { - border-bottom-width: 8px !important; + .lg\:gap-x-32 { + column-gap: 8rem !important; } - .lg\:border-l-8 { - border-left-width: 8px !important; + .lg\:gap-x-36 { + column-gap: 9rem !important; } - .lg\:border-t { - border-top-width: 1px !important; + .lg\:gap-x-40 { + column-gap: 10rem !important; } - .lg\:border-r { - border-right-width: 1px !important; + .lg\:gap-x-44 { + column-gap: 11rem !important; } - .lg\:border-b { - border-bottom-width: 1px !important; + .lg\:gap-x-48 { + column-gap: 12rem !important; } - .lg\:border-l { - border-left-width: 1px !important; + .lg\:gap-x-52 { + column-gap: 13rem !important; } - .lg\:decoration-slice { - box-decoration-break: slice !important; + .lg\:gap-x-56 { + column-gap: 14rem !important; } - .lg\:decoration-clone { - box-decoration-break: clone !important; + .lg\:gap-x-60 { + column-gap: 15rem !important; } - .lg\:box-border { - box-sizing: border-box !important; + .lg\:gap-x-64 { + column-gap: 16rem !important; } - .lg\:box-content { - box-sizing: content-box !important; + .lg\:gap-x-72 { + column-gap: 18rem !important; } - .lg\:cursor-auto { - cursor: auto !important; + .lg\:gap-x-80 { + column-gap: 20rem !important; } - .lg\:cursor-default { - cursor: default !important; + .lg\:gap-x-96 { + column-gap: 24rem !important; } - .lg\:cursor-pointer { - cursor: pointer !important; + .lg\:gap-x-px { + column-gap: 1px !important; } - .lg\:cursor-wait { - cursor: wait !important; + .lg\:gap-x-0\.5 { + column-gap: 0.125rem !important; } - .lg\:cursor-text { - cursor: text !important; + .lg\:gap-x-1\.5 { + column-gap: 0.375rem !important; } - .lg\:cursor-move { - cursor: move !important; + .lg\:gap-x-2\.5 { + column-gap: 0.625rem !important; } - .lg\:cursor-help { - cursor: help !important; + .lg\:gap-x-3\.5 { + column-gap: 0.875rem !important; } - .lg\:cursor-not-allowed { - cursor: not-allowed !important; + .lg\:gap-y-0 { + row-gap: 0px !important; } - .lg\:block { - display: block !important; + .lg\:gap-y-1 { + row-gap: 0.25rem !important; } - .lg\:inline-block { - display: inline-block !important; + .lg\:gap-y-2 { + row-gap: 0.5rem !important; } - .lg\:inline { - display: inline !important; + .lg\:gap-y-3 { + row-gap: 0.75rem !important; } - .lg\:flex { - display: flex !important; + .lg\:gap-y-4 { + row-gap: 1rem !important; } - .lg\:inline-flex { - display: inline-flex !important; + .lg\:gap-y-5 { + row-gap: 1.25rem !important; } - .lg\:table { - display: table !important; + .lg\:gap-y-6 { + row-gap: 1.5rem !important; } - .lg\:inline-table { - display: inline-table !important; + .lg\:gap-y-7 { + row-gap: 1.75rem !important; } - .lg\:table-caption { - display: table-caption !important; + .lg\:gap-y-8 { + row-gap: 2rem !important; } - .lg\:table-cell { - display: table-cell !important; + .lg\:gap-y-9 { + row-gap: 2.25rem !important; } - .lg\:table-column { - display: table-column !important; + .lg\:gap-y-10 { + row-gap: 2.5rem !important; } - .lg\:table-column-group { - display: table-column-group !important; + .lg\:gap-y-11 { + row-gap: 2.75rem !important; } - .lg\:table-footer-group { - display: table-footer-group !important; + .lg\:gap-y-12 { + row-gap: 3rem !important; } - .lg\:table-header-group { - display: table-header-group !important; + .lg\:gap-y-14 { + row-gap: 3.5rem !important; } - .lg\:table-row-group { - display: table-row-group !important; + .lg\:gap-y-16 { + row-gap: 4rem !important; } - .lg\:table-row { - display: table-row !important; + .lg\:gap-y-20 { + row-gap: 5rem !important; } - .lg\:flow-root { - display: flow-root !important; + .lg\:gap-y-24 { + row-gap: 6rem !important; } - .lg\:grid { - display: grid !important; + .lg\:gap-y-28 { + row-gap: 7rem !important; } - .lg\:inline-grid { - display: inline-grid !important; + .lg\:gap-y-32 { + row-gap: 8rem !important; } - .lg\:contents { - display: contents !important; + .lg\:gap-y-36 { + row-gap: 9rem !important; } - .lg\:list-item { - display: list-item !important; + .lg\:gap-y-40 { + row-gap: 10rem !important; } - .lg\:hidden { - display: none !important; + .lg\:gap-y-44 { + row-gap: 11rem !important; } - .lg\:flex-row { - flex-direction: row !important; + .lg\:gap-y-48 { + row-gap: 12rem !important; } - .lg\:flex-row-reverse { - flex-direction: row-reverse !important; + .lg\:gap-y-52 { + row-gap: 13rem !important; } - .lg\:flex-col { - flex-direction: column !important; + .lg\:gap-y-56 { + row-gap: 14rem !important; } - .lg\:flex-col-reverse { - flex-direction: column-reverse !important; + .lg\:gap-y-60 { + row-gap: 15rem !important; } - .lg\:flex-wrap { - flex-wrap: wrap !important; + .lg\:gap-y-64 { + row-gap: 16rem !important; } - .lg\:flex-wrap-reverse { - flex-wrap: wrap-reverse !important; + .lg\:gap-y-72 { + row-gap: 18rem !important; } - .lg\:flex-nowrap { - flex-wrap: nowrap !important; + .lg\:gap-y-80 { + row-gap: 20rem !important; } - .lg\:place-items-start { - place-items: start !important; + .lg\:gap-y-96 { + row-gap: 24rem !important; } - .lg\:place-items-end { - place-items: end !important; + .lg\:gap-y-px { + row-gap: 1px !important; } - .lg\:place-items-center { - place-items: center !important; + .lg\:gap-y-0\.5 { + row-gap: 0.125rem !important; } - .lg\:place-items-stretch { - place-items: stretch !important; + .lg\:gap-y-1\.5 { + row-gap: 0.375rem !important; } - .lg\:place-content-center { - place-content: center !important; + .lg\:gap-y-2\.5 { + row-gap: 0.625rem !important; } - .lg\:place-content-start { - place-content: start !important; + .lg\:gap-y-3\.5 { + row-gap: 0.875rem !important; } - .lg\:place-content-end { - place-content: end !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\:place-content-between { - place-content: space-between !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\:place-content-around { - place-content: space-around !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\:place-content-evenly { - place-content: space-evenly !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\:place-content-stretch { - place-content: stretch !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\:place-self-auto { - place-self: auto !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\:place-self-start { - place-self: start !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\:place-self-end { - place-self: end !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\:place-self-center { - place-self: center !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\:place-self-stretch { - place-self: stretch !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\:items-start { - align-items: flex-start !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\:items-end { - align-items: flex-end !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\:items-center { - align-items: center !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\:items-baseline { - align-items: baseline !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\:items-stretch { - align-items: stretch !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\:content-center { - align-content: center !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\:content-start { - align-content: flex-start !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\:content-end { - align-content: flex-end !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\:content-between { - align-content: space-between !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\:content-around { - align-content: space-around !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\:content-evenly { - align-content: space-evenly !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\:self-auto { - align-self: auto !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\:self-start { - align-self: flex-start !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\:self-end { - align-self: flex-end !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\:self-center { - align-self: center !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\:self-stretch { - align-self: stretch !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\:justify-items-start { - justify-items: start !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\:justify-items-end { - justify-items: end !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\:justify-items-center { - justify-items: center !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\:justify-items-stretch { - justify-items: stretch !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\:justify-start { - justify-content: flex-start !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\:justify-end { - justify-content: flex-end !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\:justify-center { - justify-content: center !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\:justify-between { - justify-content: space-between !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\:justify-around { - justify-content: space-around !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\:justify-evenly { - justify-content: space-evenly !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\:justify-self-auto { - justify-self: auto !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\:justify-self-start { - justify-self: start !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\:justify-self-end { - justify-self: end !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\:justify-self-center { - justify-self: center !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\:justify-self-stretch { - justify-self: stretch !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\:flex-1 { - flex: 1 1 0% !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\:flex-auto { - flex: 1 1 auto !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\:flex-initial { - flex: 0 1 auto !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\:flex-none { - flex: none !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\:flex-grow-0 { - flex-grow: 0 !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\:flex-grow { - flex-grow: 1 !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\:flex-shrink-0 { - flex-shrink: 0 !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\:flex-shrink { - flex-shrink: 1 !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\:order-1 { - order: 1 !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\:order-2 { - order: 2 !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\:order-3 { - order: 3 !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\:order-4 { - order: 4 !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\:order-5 { - order: 5 !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\:order-6 { - order: 6 !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\:order-7 { - order: 7 !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\:order-8 { - order: 8 !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\:order-9 { - order: 9 !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\:order-10 { - order: 10 !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\:order-11 { - order: 11 !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\:order-12 { - order: 12 !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\:order-first { - order: -9999 !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\:order-last { - order: 9999 !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\:order-none { - order: 0 !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\:float-right { - float: right !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\:float-left { - float: left !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\:float-none { - float: none !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\:clear-left { - clear: left !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\:clear-right { - clear: right !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\:clear-both { - clear: both !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\:clear-none { - clear: none !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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !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\:font-thin { - font-weight: 100 !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\:font-extralight { - font-weight: 200 !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\:font-light { - font-weight: 300 !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\:font-normal { - font-weight: 400 !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\:font-medium { - font-weight: 500 !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\:font-semibold { - font-weight: 600 !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\:font-bold { - font-weight: 700 !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\:font-extrabold { - font-weight: 800 !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\:font-black { - font-weight: 900 !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\:h-0 { - height: 0px !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\:h-1 { - height: 0.25rem !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\:h-2 { - height: 0.5rem !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\:h-3 { - height: 0.75rem !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\:h-4 { - height: 1rem !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\:h-5 { - height: 1.25rem !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\:h-6 { - height: 1.5rem !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\:h-7 { - height: 1.75rem !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\:h-8 { - height: 2rem !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\:h-9 { - height: 2.25rem !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\:h-10 { - height: 2.5rem !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\:h-11 { - height: 2.75rem !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\:h-12 { - height: 3rem !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\:h-14 { - height: 3.5rem !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\:h-16 { - height: 4rem !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\:h-20 { - height: 5rem !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\:h-24 { - height: 6rem !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\:h-28 { - height: 7rem !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\:h-32 { - height: 8rem !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\:h-36 { - height: 9rem !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\:h-40 { - height: 10rem !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\:h-44 { - height: 11rem !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\:h-48 { - height: 12rem !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\:h-52 { - height: 13rem !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\:h-56 { - height: 14rem !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\:h-60 { - height: 15rem !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\:h-64 { - height: 16rem !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\:h-72 { - height: 18rem !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\:h-80 { - height: 20rem !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\:h-96 { - height: 24rem !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\:h-auto { - height: auto !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\:h-px { - height: 1px !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\:h-0\.5 { - height: 0.125rem !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\:h-1\.5 { - height: 0.375rem !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\:h-2\.5 { - height: 0.625rem !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\:h-3\.5 { - height: 0.875rem !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\:h-1\/2 { - height: 50% !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\:h-1\/3 { - height: 33.333333% !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\:h-2\/3 { - height: 66.666667% !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\:h-1\/4 { - height: 25% !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\:h-2\/4 { - height: 50% !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\:h-3\/4 { - height: 75% !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\:h-1\/5 { - height: 20% !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\:h-2\/5 { - height: 40% !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\:h-3\/5 { - height: 60% !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\:h-4\/5 { - height: 80% !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\:h-1\/6 { - height: 16.666667% !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\:h-2\/6 { - height: 33.333333% !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\:h-3\/6 { - height: 50% !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\:h-4\/6 { - height: 66.666667% !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\:h-5\/6 { - height: 83.333333% !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\:h-full { - height: 100% !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\:h-screen { - height: 100vh !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\:text-xs { - font-size: 0.75rem !important; - line-height: 1rem !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\:text-sm { - font-size: 0.875rem !important; - line-height: 1.25rem !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\:text-base { - font-size: 1rem !important; - line-height: 1.5rem !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\:text-lg { - font-size: 1.125rem !important; - line-height: 1.75rem !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\:text-xl { - font-size: 1.25rem !important; - line-height: 1.75rem !important; + .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; } - .lg\:text-2xl { - font-size: 1.5rem !important; - line-height: 2rem !important; + .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; } - .lg\:text-3xl { - font-size: 1.875rem !important; - line-height: 2.25rem !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\:text-4xl { - font-size: 2.25rem !important; - line-height: 2.5rem !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\:text-5xl { - font-size: 3rem !important; - line-height: 1 !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\:text-6xl { - font-size: 3.75rem !important; - line-height: 1 !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\:text-7xl { - font-size: 4.5rem !important; - line-height: 1 !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\:text-8xl { - font-size: 6rem !important; - line-height: 1 !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\:text-9xl { - font-size: 8rem !important; - line-height: 1 !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\:leading-3 { - line-height: .75rem !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\:leading-4 { - line-height: 1rem !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\:leading-5 { - line-height: 1.25rem !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\:leading-6 { - line-height: 1.5rem !important; + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; } - .lg\:leading-7 { - line-height: 1.75rem !important; + .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; } - .lg\:leading-8 { - line-height: 2rem !important; + .lg\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; } - .lg\:leading-9 { - line-height: 2.25rem !important; + .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; } - .lg\:leading-10 { - line-height: 2.5rem !important; + .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; } - .lg\:leading-none { - line-height: 1 !important; + .lg\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; } - .lg\:leading-tight { - line-height: 1.25 !important; + .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; } - .lg\:leading-snug { - line-height: 1.375 !important; + .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; } - .lg\:leading-normal { - line-height: 1.5 !important; + .lg\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; } - .lg\:leading-relaxed { - line-height: 1.625 !important; + .lg\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; } - .lg\:leading-loose { - line-height: 2 !important; + .lg\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; } - .lg\:list-inside { - list-style-position: inside !important; + .lg\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; } - .lg\:list-outside { - list-style-position: outside !important; + .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; } - .lg\:list-none { - list-style-type: none !important; + .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; } - .lg\:list-disc { - list-style-type: disc !important; + .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; } - .lg\:list-decimal { - list-style-type: decimal !important; + .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; } - .lg\:m-0 { - margin: 0px !important; + .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; } - .lg\:m-1 { - margin: 0.25rem !important; + .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; } - .lg\:m-2 { - margin: 0.5rem !important; + .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; } - .lg\:m-3 { - margin: 0.75rem !important; + .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; } - .lg\:m-4 { - margin: 1rem !important; + .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; } - .lg\:m-5 { - margin: 1.25rem !important; + .lg\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; } - .lg\:m-6 { - margin: 1.5rem !important; + .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; } - .lg\:m-7 { - margin: 1.75rem !important; + .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; } - .lg\:m-8 { - margin: 2rem !important; + .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; } - .lg\:m-9 { - margin: 2.25rem !important; + .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; } - .lg\:m-10 { - margin: 2.5rem !important; + .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; } - .lg\:m-11 { - margin: 2.75rem !important; + .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; } - .lg\:m-12 { - margin: 3rem !important; + .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; } - .lg\:m-14 { - margin: 3.5rem !important; + .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; } - .lg\:m-16 { - margin: 4rem !important; + .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; } - .lg\:m-20 { - margin: 5rem !important; + .lg\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; } - .lg\:m-24 { - margin: 6rem !important; + .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; } - .lg\:m-28 { - margin: 7rem !important; + .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; } - .lg\:m-32 { - margin: 8rem !important; + .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; } - .lg\:m-36 { - margin: 9rem !important; + .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; } - .lg\:m-40 { - margin: 10rem !important; + .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; } - .lg\:m-44 { - margin: 11rem !important; + .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; } - .lg\:m-48 { - margin: 12rem !important; + .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; } - .lg\:m-52 { - margin: 13rem !important; + .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; } - .lg\:m-56 { - margin: 14rem !important; + .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; } - .lg\:m-60 { - margin: 15rem !important; + .lg\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; } - .lg\:m-64 { - margin: 16rem !important; + .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; } - .lg\:m-72 { - margin: 18rem !important; + .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; } - .lg\:m-80 { - margin: 20rem !important; + .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; } - .lg\:m-96 { - margin: 24rem !important; + .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; } - .lg\:m-auto { - margin: auto !important; + .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; } - .lg\:m-px { - margin: 1px !important; + .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; } - .lg\:m-0\.5 { - margin: 0.125rem !important; + .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; } - .lg\:m-1\.5 { - margin: 0.375rem !important; + .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; } - .lg\:m-2\.5 { - margin: 0.625rem !important; + .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; } - .lg\:m-3\.5 { - margin: 0.875rem !important; + .lg\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; } - .lg\:-m-0 { - margin: 0px !important; + .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; } - .lg\:-m-1 { - margin: -0.25rem !important; + .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; } - .lg\:-m-2 { - margin: -0.5rem !important; + .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; } - .lg\:-m-3 { - margin: -0.75rem !important; + .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; } - .lg\:-m-4 { - margin: -1rem !important; + .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; } - .lg\:-m-5 { - margin: -1.25rem !important; + .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; } - .lg\:-m-6 { - margin: -1.5rem !important; + .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; } - .lg\:-m-7 { - margin: -1.75rem !important; + .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; } - .lg\:-m-8 { - margin: -2rem !important; + .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; } - .lg\:-m-9 { - margin: -2.25rem !important; + .lg\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; } - .lg\:-m-10 { - margin: -2.5rem !important; + .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; } - .lg\:-m-11 { - margin: -2.75rem !important; + .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; } - .lg\:-m-12 { - margin: -3rem !important; + .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; } - .lg\:-m-14 { - margin: -3.5rem !important; + .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; } - .lg\:-m-16 { - margin: -4rem !important; + .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; } - .lg\:-m-20 { - margin: -5rem !important; + .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; } - .lg\:-m-24 { - margin: -6rem !important; + .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; } - .lg\:-m-28 { - margin: -7rem !important; + .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; } - .lg\:-m-32 { - margin: -8rem !important; + .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; } - .lg\:-m-36 { - margin: -9rem !important; + .lg\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; } - .lg\:-m-40 { - margin: -10rem !important; + .lg\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; } - .lg\:-m-44 { - margin: -11rem !important; + .lg\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; } - .lg\:-m-48 { - margin: -12rem !important; + .lg\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; } - .lg\:-m-52 { - margin: -13rem !important; + .lg\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; } - .lg\:-m-56 { - margin: -14rem !important; + .lg\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; } - .lg\:-m-60 { - margin: -15rem !important; + .lg\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; } - .lg\:-m-64 { - margin: -16rem !important; + .lg\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; } - .lg\:-m-72 { - margin: -18rem !important; + .lg\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; } - .lg\:-m-80 { - margin: -20rem !important; + .lg\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; } - .lg\:-m-96 { - margin: -24rem !important; + .lg\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; } - .lg\:-m-px { - margin: -1px !important; + .lg\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; } - .lg\:-m-0\.5 { - margin: -0.125rem !important; + .lg\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; } - .lg\:-m-1\.5 { - margin: -0.375rem !important; + .lg\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; } - .lg\:-m-2\.5 { - margin: -0.625rem !important; + .lg\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; } - .lg\:-m-3\.5 { - margin: -0.875rem !important; + .lg\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; } - .lg\:my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; + .lg\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; } - .lg\:mx-0 { - margin-left: 0px !important; - margin-right: 0px !important; + .lg\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; } - .lg\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; + .lg\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; } - .lg\:mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; + .lg\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; } - .lg\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; + .lg\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; } - .lg\:mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; + .lg\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; } - .lg\:my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; + .lg\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; } - .lg\:mx-3 { - margin-left: 0.75rem !important; - margin-right: 0.75rem !important; + .lg\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; } - .lg\:my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; + .lg\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; } - .lg\:mx-4 { - margin-left: 1rem !important; - margin-right: 1rem !important; + .lg\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; } - .lg\:my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !important; + .lg\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; } - .lg\:mx-5 { - margin-left: 1.25rem !important; - margin-right: 1.25rem !important; + .lg\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; } - .lg\:my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; + .lg\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; } - .lg\:mx-6 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; + .lg\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; } - .lg\:my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !important; + .lg\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; } - .lg\:mx-7 { - margin-left: 1.75rem !important; - margin-right: 1.75rem !important; + .lg\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; } - .lg\:my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; + .lg\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; } - .lg\:mx-8 { - margin-left: 2rem !important; - margin-right: 2rem !important; + .lg\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; } - .lg\:my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !important; + .lg\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; } - .lg\:mx-9 { - margin-left: 2.25rem !important; - margin-right: 2.25rem !important; + .lg\:place-self-auto { + place-self: auto !important; } - .lg\:my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; + .lg\:place-self-start { + place-self: start !important; } - .lg\:mx-10 { - margin-left: 2.5rem !important; - margin-right: 2.5rem !important; + .lg\:place-self-end { + place-self: end !important; } - .lg\:my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !important; + .lg\:place-self-center { + place-self: center !important; } - .lg\:mx-11 { - margin-left: 2.75rem !important; - margin-right: 2.75rem !important; + .lg\:place-self-stretch { + place-self: stretch !important; } - .lg\:my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; + .lg\:self-auto { + align-self: auto !important; } - .lg\:mx-12 { - margin-left: 3rem !important; - margin-right: 3rem !important; + .lg\:self-start { + align-self: flex-start !important; } - .lg\:my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !important; + .lg\:self-end { + align-self: flex-end !important; } - .lg\:mx-14 { - margin-left: 3.5rem !important; - margin-right: 3.5rem !important; + .lg\:self-center { + align-self: center !important; } - .lg\:my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; + .lg\:self-stretch { + align-self: stretch !important; } - .lg\:mx-16 { - margin-left: 4rem !important; - margin-right: 4rem !important; + .lg\:justify-self-auto { + justify-self: auto !important; } - .lg\:my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; + .lg\:justify-self-start { + justify-self: start !important; } - .lg\:mx-20 { - margin-left: 5rem !important; - margin-right: 5rem !important; + .lg\:justify-self-end { + justify-self: end !important; } - .lg\:my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !important; + .lg\:justify-self-center { + justify-self: center !important; } - .lg\:mx-24 { - margin-left: 6rem !important; - margin-right: 6rem !important; + .lg\:justify-self-stretch { + justify-self: stretch !important; } - .lg\:my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !important; + .lg\:overflow-auto { + overflow: auto !important; } - .lg\:mx-28 { - margin-left: 7rem !important; - margin-right: 7rem !important; + .lg\:overflow-hidden { + overflow: hidden !important; } - .lg\:my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !important; + .lg\:overflow-visible { + overflow: visible !important; } - .lg\:mx-32 { - margin-left: 8rem !important; - margin-right: 8rem !important; + .lg\:overflow-scroll { + overflow: scroll !important; } - .lg\:my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !important; + .lg\:overflow-x-auto { + overflow-x: auto !important; } - .lg\:mx-36 { - margin-left: 9rem !important; - margin-right: 9rem !important; + .lg\:overflow-y-auto { + overflow-y: auto !important; } - .lg\:my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !important; + .lg\:overflow-x-hidden { + overflow-x: hidden !important; } - .lg\:mx-40 { - margin-left: 10rem !important; - margin-right: 10rem !important; + .lg\:overflow-y-hidden { + overflow-y: hidden !important; } - .lg\:my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !important; + .lg\:overflow-x-visible { + overflow-x: visible !important; } - .lg\:mx-44 { - margin-left: 11rem !important; - margin-right: 11rem !important; + .lg\:overflow-y-visible { + overflow-y: visible !important; } - .lg\:my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !important; + .lg\:overflow-x-scroll { + overflow-x: scroll !important; } - .lg\:mx-48 { - margin-left: 12rem !important; - margin-right: 12rem !important; + .lg\:overflow-y-scroll { + overflow-y: scroll !important; } - .lg\:my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; + .lg\:overscroll-auto { + overscroll-behavior: auto !important; } - .lg\:mx-52 { - margin-left: 13rem !important; - margin-right: 13rem !important; + .lg\:overscroll-contain { + overscroll-behavior: contain !important; } - .lg\:my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !important; + .lg\:overscroll-none { + overscroll-behavior: none !important; } - .lg\:mx-56 { - margin-left: 14rem !important; - margin-right: 14rem !important; + .lg\:overscroll-y-auto { + overscroll-behavior-y: auto !important; } - .lg\:my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !important; + .lg\:overscroll-y-contain { + overscroll-behavior-y: contain !important; } - .lg\:mx-60 { - margin-left: 15rem !important; - margin-right: 15rem !important; + .lg\:overscroll-y-none { + overscroll-behavior-y: none !important; } - .lg\:my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !important; + .lg\:overscroll-x-auto { + overscroll-behavior-x: auto !important; } - .lg\:mx-64 { - margin-left: 16rem !important; - margin-right: 16rem !important; + .lg\:overscroll-x-contain { + overscroll-behavior-x: contain !important; } - .lg\:my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !important; + .lg\:overscroll-x-none { + overscroll-behavior-x: none !important; } - .lg\:mx-72 { - margin-left: 18rem !important; - margin-right: 18rem !important; + .lg\:truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; } - .lg\:my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !important; + .lg\:overflow-ellipsis { + text-overflow: ellipsis !important; } - .lg\:mx-80 { - margin-left: 20rem !important; - margin-right: 20rem !important; + .lg\:overflow-clip { + text-overflow: clip !important; } - .lg\:my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; + .lg\:whitespace-normal { + white-space: normal !important; } - .lg\:mx-96 { - margin-left: 24rem !important; - margin-right: 24rem !important; + .lg\:whitespace-nowrap { + white-space: nowrap !important; } - .lg\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; + .lg\:whitespace-pre { + white-space: pre !important; } - .lg\:mx-auto { - margin-left: auto !important; - margin-right: auto !important; + .lg\:whitespace-pre-line { + white-space: pre-line !important; } - .lg\:my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; + .lg\:whitespace-pre-wrap { + white-space: pre-wrap !important; } - .lg\:mx-px { - margin-left: 1px !important; - margin-right: 1px !important; + .lg\:break-normal { + overflow-wrap: normal !important; + word-break: normal !important; } - .lg\:my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; + .lg\:break-words { + overflow-wrap: break-word !important; } - .lg\:mx-0\.5 { - margin-left: 0.125rem !important; - margin-right: 0.125rem !important; + .lg\:break-all { + word-break: break-all !important; } - .lg\:my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; + .lg\:rounded-none { + border-radius: 0px !important; } - .lg\:mx-1\.5 { - margin-left: 0.375rem !important; - margin-right: 0.375rem !important; + .lg\:rounded-sm { + border-radius: 0.125rem !important; } - .lg\:my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; + .lg\:rounded { + border-radius: 0.25rem !important; } - .lg\:mx-2\.5 { - margin-left: 0.625rem !important; - margin-right: 0.625rem !important; + .lg\:rounded-md { + border-radius: 0.375rem !important; } - .lg\:my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; + .lg\:rounded-lg { + border-radius: 0.5rem !important; } - .lg\:mx-3\.5 { - margin-left: 0.875rem !important; - margin-right: 0.875rem !important; + .lg\:rounded-xl { + border-radius: 0.75rem !important; } - .lg\:-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; + .lg\:rounded-2xl { + border-radius: 1rem !important; } - .lg\:-mx-0 { - margin-left: 0px !important; - margin-right: 0px !important; + .lg\:rounded-3xl { + border-radius: 1.5rem !important; } - .lg\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; + .lg\:rounded-full { + border-radius: 9999px !important; } - .lg\:-mx-1 { - margin-left: -0.25rem !important; - margin-right: -0.25rem !important; + .lg\:rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; } - .lg\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; + .lg\:rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; } - .lg\:-mx-2 { - margin-left: -0.5rem !important; - margin-right: -0.5rem !important; + .lg\:rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; } - .lg\:-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; + .lg\:rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; } - .lg\:-mx-3 { - margin-left: -0.75rem !important; - margin-right: -0.75rem !important; + .lg\:rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; } - .lg\:-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; + .lg\:rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; } - .lg\:-mx-4 { - margin-left: -1rem !important; - margin-right: -1rem !important; + .lg\:rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; } - .lg\:-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; + .lg\:rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; } - .lg\:-mx-5 { - margin-left: -1.25rem !important; - margin-right: -1.25rem !important; + .lg\:rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; } - .lg\:-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; + .lg\:rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; } - .lg\:-mx-6 { - margin-left: -1.5rem !important; - margin-right: -1.5rem !important; + .lg\:rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; } - .lg\:-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; + .lg\:rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; } - .lg\:-mx-7 { - margin-left: -1.75rem !important; - margin-right: -1.75rem !important; + .lg\:rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; } - .lg\:-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; + .lg\:rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; } - .lg\:-mx-8 { - margin-left: -2rem !important; - margin-right: -2rem !important; + .lg\:rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; } - .lg\:-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; + .lg\:rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; } - .lg\:-mx-9 { - margin-left: -2.25rem !important; - margin-right: -2.25rem !important; + .lg\:rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; } - .lg\:-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; + .lg\:rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; } - .lg\:-mx-10 { - margin-left: -2.5rem !important; - margin-right: -2.5rem !important; + .lg\:rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; } - .lg\:-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; + .lg\:rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } - .lg\:-mx-11 { - margin-left: -2.75rem !important; - margin-right: -2.75rem !important; + .lg\:rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } - .lg\:-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; + .lg\:rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } - .lg\:-mx-12 { - margin-left: -3rem !important; - margin-right: -3rem !important; + .lg\:rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } - .lg\:-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; + .lg\:rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } - .lg\:-mx-14 { - margin-left: -3.5rem !important; - margin-right: -3.5rem !important; + .lg\:rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } - .lg\:-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; + .lg\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } - .lg\:-mx-16 { - margin-left: -4rem !important; - margin-right: -4rem !important; + .lg\:rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } - .lg\:-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; + .lg\:rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; } - .lg\:-mx-20 { - margin-left: -5rem !important; - margin-right: -5rem !important; + .lg\:rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } - .lg\:-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; + .lg\:rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } - .lg\:-mx-24 { - margin-left: -6rem !important; - margin-right: -6rem !important; + .lg\:rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } - .lg\:-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; + .lg\:rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } - .lg\:-mx-28 { - margin-left: -7rem !important; - margin-right: -7rem !important; + .lg\:rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } - .lg\:-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; + .lg\:rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } - .lg\:-mx-32 { - margin-left: -8rem !important; - margin-right: -8rem !important; + .lg\:rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } - .lg\:-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; + .lg\:rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } - .lg\:-mx-36 { - margin-left: -9rem !important; - margin-right: -9rem !important; + .lg\:rounded-tl-none { + border-top-left-radius: 0px !important; } - .lg\:-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; + .lg\:rounded-tl-sm { + border-top-left-radius: 0.125rem !important; } - .lg\:-mx-40 { - margin-left: -10rem !important; - margin-right: -10rem !important; + .lg\:rounded-tl { + border-top-left-radius: 0.25rem !important; } - .lg\:-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; + .lg\:rounded-tl-md { + border-top-left-radius: 0.375rem !important; } - .lg\:-mx-44 { - margin-left: -11rem !important; - margin-right: -11rem !important; + .lg\:rounded-tl-lg { + border-top-left-radius: 0.5rem !important; } - .lg\:-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; + .lg\:rounded-tl-xl { + border-top-left-radius: 0.75rem !important; } - .lg\:-mx-48 { - margin-left: -12rem !important; - margin-right: -12rem !important; + .lg\:rounded-tl-2xl { + border-top-left-radius: 1rem !important; } - .lg\:-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; + .lg\:rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; } - .lg\:-mx-52 { - margin-left: -13rem !important; - margin-right: -13rem !important; + .lg\:rounded-tl-full { + border-top-left-radius: 9999px !important; } - .lg\:-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; + .lg\:rounded-tr-none { + border-top-right-radius: 0px !important; } - .lg\:-mx-56 { - margin-left: -14rem !important; - margin-right: -14rem !important; + .lg\:rounded-tr-sm { + border-top-right-radius: 0.125rem !important; } - .lg\:-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; + .lg\:rounded-tr { + border-top-right-radius: 0.25rem !important; } - .lg\:-mx-60 { - margin-left: -15rem !important; - margin-right: -15rem !important; + .lg\:rounded-tr-md { + border-top-right-radius: 0.375rem !important; } - .lg\:-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; + .lg\:rounded-tr-lg { + border-top-right-radius: 0.5rem !important; } - .lg\:-mx-64 { - margin-left: -16rem !important; - margin-right: -16rem !important; + .lg\:rounded-tr-xl { + border-top-right-radius: 0.75rem !important; } - .lg\:-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; + .lg\:rounded-tr-2xl { + border-top-right-radius: 1rem !important; } - .lg\:-mx-72 { - margin-left: -18rem !important; - margin-right: -18rem !important; + .lg\:rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; } - .lg\:-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; + .lg\:rounded-tr-full { + border-top-right-radius: 9999px !important; } - .lg\:-mx-80 { - margin-left: -20rem !important; - margin-right: -20rem !important; + .lg\:rounded-br-none { + border-bottom-right-radius: 0px !important; } - .lg\:-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; + .lg\:rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; } - .lg\:-mx-96 { - margin-left: -24rem !important; - margin-right: -24rem !important; + .lg\:rounded-br { + border-bottom-right-radius: 0.25rem !important; } - .lg\:-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; + .lg\:rounded-br-md { + border-bottom-right-radius: 0.375rem !important; } - .lg\:-mx-px { - margin-left: -1px !important; - margin-right: -1px !important; + .lg\:rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; } - .lg\:-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; + .lg\:rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; } - .lg\:-mx-0\.5 { - margin-left: -0.125rem !important; - margin-right: -0.125rem !important; + .lg\:rounded-br-2xl { + border-bottom-right-radius: 1rem !important; } - .lg\:-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; + .lg\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; } - .lg\:-mx-1\.5 { - margin-left: -0.375rem !important; - margin-right: -0.375rem !important; + .lg\:rounded-br-full { + border-bottom-right-radius: 9999px !important; } - .lg\:-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; + .lg\:rounded-bl-none { + border-bottom-left-radius: 0px !important; } - .lg\:-mx-2\.5 { - margin-left: -0.625rem !important; - margin-right: -0.625rem !important; + .lg\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; } - .lg\:-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; + .lg\:rounded-bl { + border-bottom-left-radius: 0.25rem !important; } - .lg\:-mx-3\.5 { - margin-left: -0.875rem !important; - margin-right: -0.875rem !important; + .lg\:rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; } - .lg\:mt-0 { - margin-top: 0px !important; + .lg\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; } - .lg\:mr-0 { - margin-right: 0px !important; + .lg\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; } - .lg\:mb-0 { - margin-bottom: 0px !important; + .lg\:rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; } - .lg\:ml-0 { - margin-left: 0px !important; + .lg\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; } - .lg\:mt-1 { - margin-top: 0.25rem !important; + .lg\:rounded-bl-full { + border-bottom-left-radius: 9999px !important; } - .lg\:mr-1 { - margin-right: 0.25rem !important; + .lg\:border-0 { + border-width: 0px !important; } - .lg\:mb-1 { - margin-bottom: 0.25rem !important; + .lg\:border-2 { + border-width: 2px !important; } - .lg\:ml-1 { - margin-left: 0.25rem !important; + .lg\:border-4 { + border-width: 4px !important; } - .lg\:mt-2 { - margin-top: 0.5rem !important; + .lg\:border-8 { + border-width: 8px !important; } - .lg\:mr-2 { - margin-right: 0.5rem !important; + .lg\:border { + border-width: 1px !important; } - .lg\:mb-2 { - margin-bottom: 0.5rem !important; + .lg\:border-t-0 { + border-top-width: 0px !important; } - .lg\:ml-2 { - margin-left: 0.5rem !important; + .lg\:border-t-2 { + border-top-width: 2px !important; } - .lg\:mt-3 { - margin-top: 0.75rem !important; + .lg\:border-t-4 { + border-top-width: 4px !important; } - .lg\:mr-3 { - margin-right: 0.75rem !important; + .lg\:border-t-8 { + border-top-width: 8px !important; } - .lg\:mb-3 { - margin-bottom: 0.75rem !important; + .lg\:border-t { + border-top-width: 1px !important; } - .lg\:ml-3 { - margin-left: 0.75rem !important; + .lg\:border-r-0 { + border-right-width: 0px !important; } - .lg\:mt-4 { - margin-top: 1rem !important; + .lg\:border-r-2 { + border-right-width: 2px !important; } - .lg\:mr-4 { - margin-right: 1rem !important; + .lg\:border-r-4 { + border-right-width: 4px !important; } - .lg\:mb-4 { - margin-bottom: 1rem !important; + .lg\:border-r-8 { + border-right-width: 8px !important; } - .lg\:ml-4 { - margin-left: 1rem !important; + .lg\:border-r { + border-right-width: 1px !important; } - .lg\:mt-5 { - margin-top: 1.25rem !important; + .lg\:border-b-0 { + border-bottom-width: 0px !important; } - .lg\:mr-5 { - margin-right: 1.25rem !important; + .lg\:border-b-2 { + border-bottom-width: 2px !important; } - .lg\:mb-5 { - margin-bottom: 1.25rem !important; + .lg\:border-b-4 { + border-bottom-width: 4px !important; } - .lg\:ml-5 { - margin-left: 1.25rem !important; + .lg\:border-b-8 { + border-bottom-width: 8px !important; } - .lg\:mt-6 { - margin-top: 1.5rem !important; + .lg\:border-b { + border-bottom-width: 1px !important; } - .lg\:mr-6 { - margin-right: 1.5rem !important; + .lg\:border-l-0 { + border-left-width: 0px !important; } - .lg\:mb-6 { - margin-bottom: 1.5rem !important; + .lg\:border-l-2 { + border-left-width: 2px !important; } - .lg\:ml-6 { - margin-left: 1.5rem !important; + .lg\:border-l-4 { + border-left-width: 4px !important; } - .lg\:mt-7 { - margin-top: 1.75rem !important; + .lg\:border-l-8 { + border-left-width: 8px !important; } - .lg\:mr-7 { - margin-right: 1.75rem !important; + .lg\:border-l { + border-left-width: 1px !important; } - .lg\:mb-7 { - margin-bottom: 1.75rem !important; + .lg\:border-solid { + border-style: solid !important; } - .lg\:ml-7 { - margin-left: 1.75rem !important; + .lg\:border-dashed { + border-style: dashed !important; } - .lg\:mt-8 { - margin-top: 2rem !important; + .lg\:border-dotted { + border-style: dotted !important; } - .lg\:mr-8 { - margin-right: 2rem !important; + .lg\:border-double { + border-style: double !important; } - .lg\:mb-8 { - margin-bottom: 2rem !important; + .lg\:border-none { + border-style: none !important; } - .lg\:ml-8 { - margin-left: 2rem !important; + .lg\:border-transparent { + border-color: transparent !important; } - .lg\:mt-9 { - margin-top: 2.25rem !important; + .lg\:border-current { + border-color: currentColor !important; } - .lg\:mr-9 { - margin-right: 2.25rem !important; + .lg\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .lg\:mb-9 { - margin-bottom: 2.25rem !important; + .lg\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .lg\:ml-9 { - margin-left: 2.25rem !important; + .lg\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .lg\:mt-10 { - margin-top: 2.5rem !important; + .lg\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .lg\:mr-10 { - margin-right: 2.5rem !important; + .lg\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .lg\:mb-10 { - margin-bottom: 2.5rem !important; + .lg\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .lg\:ml-10 { - margin-left: 2.5rem !important; + .lg\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .lg\:mt-11 { - margin-top: 2.75rem !important; + .lg\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .lg\:mr-11 { - margin-right: 2.75rem !important; + .lg\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .lg\:mb-11 { - margin-bottom: 2.75rem !important; + .lg\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .lg\:ml-11 { - margin-left: 2.75rem !important; + .lg\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .lg\:mt-12 { - margin-top: 3rem !important; + .lg\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .lg\:mr-12 { - margin-right: 3rem !important; + .lg\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .lg\:mb-12 { - margin-bottom: 3rem !important; + .lg\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .lg\:ml-12 { - margin-left: 3rem !important; + .lg\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .lg\:mt-14 { - margin-top: 3.5rem !important; + .lg\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .lg\:mr-14 { - margin-right: 3.5rem !important; + .lg\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .lg\:mb-14 { - margin-bottom: 3.5rem !important; + .lg\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .lg\:ml-14 { - margin-left: 3.5rem !important; + .lg\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .lg\:mt-16 { - margin-top: 4rem !important; + .lg\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .lg\:mr-16 { - margin-right: 4rem !important; + .lg\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .lg\:mb-16 { - margin-bottom: 4rem !important; + .lg\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .lg\:ml-16 { - margin-left: 4rem !important; + .lg\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .lg\:mt-20 { - margin-top: 5rem !important; + .lg\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .lg\:mr-20 { - margin-right: 5rem !important; + .lg\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .lg\:mb-20 { - margin-bottom: 5rem !important; + .lg\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .lg\:ml-20 { - margin-left: 5rem !important; + .lg\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .lg\:mt-24 { - margin-top: 6rem !important; + .lg\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .lg\:mr-24 { - margin-right: 6rem !important; + .lg\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .lg\:mb-24 { - margin-bottom: 6rem !important; + .lg\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .lg\:ml-24 { - margin-left: 6rem !important; + .lg\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .lg\:mt-28 { - margin-top: 7rem !important; + .lg\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .lg\:mr-28 { - margin-right: 7rem !important; + .lg\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .lg\:mb-28 { - margin-bottom: 7rem !important; + .lg\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .lg\:ml-28 { - margin-left: 7rem !important; + .lg\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .lg\:mt-32 { - margin-top: 8rem !important; + .lg\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .lg\:mr-32 { - margin-right: 8rem !important; + .lg\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .lg\:mb-32 { - margin-bottom: 8rem !important; + .lg\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .lg\:ml-32 { - margin-left: 8rem !important; + .lg\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .lg\:mt-36 { - margin-top: 9rem !important; + .lg\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .lg\:mr-36 { - margin-right: 9rem !important; + .lg\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .lg\:mb-36 { - margin-bottom: 9rem !important; + .lg\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .lg\:ml-36 { - margin-left: 9rem !important; + .lg\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .lg\:mt-40 { - margin-top: 10rem !important; + .lg\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .lg\:mr-40 { - margin-right: 10rem !important; + .lg\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .lg\:mb-40 { - margin-bottom: 10rem !important; + .lg\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .lg\:ml-40 { - margin-left: 10rem !important; + .lg\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .lg\:mt-44 { - margin-top: 11rem !important; + .lg\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .lg\:mr-44 { - margin-right: 11rem !important; + .lg\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .lg\:mb-44 { - margin-bottom: 11rem !important; + .lg\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .lg\:ml-44 { - margin-left: 11rem !important; + .lg\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .lg\:mt-48 { - margin-top: 12rem !important; + .lg\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .lg\:mr-48 { - margin-right: 12rem !important; + .lg\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .lg\:mb-48 { - margin-bottom: 12rem !important; + .lg\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .lg\:ml-48 { - margin-left: 12rem !important; + .lg\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .lg\:mt-52 { - margin-top: 13rem !important; + .lg\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .lg\:mr-52 { - margin-right: 13rem !important; + .lg\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .lg\:mb-52 { - margin-bottom: 13rem !important; + .lg\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .lg\:ml-52 { - margin-left: 13rem !important; + .lg\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .lg\:mt-56 { - margin-top: 14rem !important; + .lg\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .lg\:mr-56 { - margin-right: 14rem !important; + .lg\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .lg\:mb-56 { - margin-bottom: 14rem !important; + .lg\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .lg\:ml-56 { - margin-left: 14rem !important; + .lg\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .lg\:mt-60 { - margin-top: 15rem !important; + .lg\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .lg\:mr-60 { - margin-right: 15rem !important; + .lg\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .lg\:mb-60 { - margin-bottom: 15rem !important; + .lg\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .lg\:ml-60 { - margin-left: 15rem !important; + .lg\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .lg\:mt-64 { - margin-top: 16rem !important; + .lg\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .lg\:mr-64 { - margin-right: 16rem !important; + .lg\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .lg\:mb-64 { - margin-bottom: 16rem !important; + .lg\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .lg\:ml-64 { - margin-left: 16rem !important; + .lg\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .lg\:mt-72 { - margin-top: 18rem !important; + .lg\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .lg\:mr-72 { - margin-right: 18rem !important; + .lg\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .lg\:mb-72 { - margin-bottom: 18rem !important; + .lg\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .lg\:ml-72 { - margin-left: 18rem !important; + .lg\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .lg\:mt-80 { - margin-top: 20rem !important; + .lg\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .lg\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .lg\:mr-80 { - margin-right: 20rem !important; + .lg\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .lg\:mb-80 { - margin-bottom: 20rem !important; + .lg\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .lg\:ml-80 { - margin-left: 20rem !important; + .lg\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .lg\:mt-96 { - margin-top: 24rem !important; + .lg\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .lg\:mr-96 { - margin-right: 24rem !important; + .lg\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .lg\:mb-96 { - margin-bottom: 24rem !important; + .group:hover .lg\:group-hover\:border-transparent { + border-color: transparent !important; } - .lg\:ml-96 { - margin-left: 24rem !important; + .group:hover .lg\:group-hover\:border-current { + border-color: currentColor !important; } - .lg\:mt-auto { - margin-top: auto !important; + .group:hover .lg\:group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .lg\:mr-auto { - margin-right: auto !important; + .group:hover .lg\:group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .lg\:mb-auto { - margin-bottom: auto !important; + .group:hover .lg\:group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .lg\:ml-auto { - margin-left: auto !important; + .group:hover .lg\:group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .lg\:mt-px { - margin-top: 1px !important; + .group:hover .lg\:group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .lg\:mr-px { - margin-right: 1px !important; + .group:hover .lg\:group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .lg\:mb-px { - margin-bottom: 1px !important; + .group:hover .lg\:group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .lg\:ml-px { - margin-left: 1px !important; + .group:hover .lg\:group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .lg\:mt-0\.5 { - margin-top: 0.125rem !important; + .group:hover .lg\:group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .lg\:mr-0\.5 { - margin-right: 0.125rem !important; + .group:hover .lg\:group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .lg\:mb-0\.5 { - margin-bottom: 0.125rem !important; + .group:hover .lg\:group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .lg\:ml-0\.5 { - margin-left: 0.125rem !important; + .group:hover .lg\:group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .lg\:mt-1\.5 { - margin-top: 0.375rem !important; + .group:hover .lg\:group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .lg\:mr-1\.5 { - margin-right: 0.375rem !important; + .group:hover .lg\:group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .lg\:mb-1\.5 { - margin-bottom: 0.375rem !important; + .group:hover .lg\:group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .lg\:ml-1\.5 { - margin-left: 0.375rem !important; + .group:hover .lg\:group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .lg\:mt-2\.5 { - margin-top: 0.625rem !important; + .group:hover .lg\:group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .lg\:mr-2\.5 { - margin-right: 0.625rem !important; + .group:hover .lg\:group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .lg\:mb-2\.5 { - margin-bottom: 0.625rem !important; + .group:hover .lg\:group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .lg\:ml-2\.5 { - margin-left: 0.625rem !important; + .group:hover .lg\:group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .lg\:mt-3\.5 { - margin-top: 0.875rem !important; + .group:hover .lg\:group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .lg\:mr-3\.5 { - margin-right: 0.875rem !important; + .group:hover .lg\:group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .lg\:mb-3\.5 { - margin-bottom: 0.875rem !important; + .group:hover .lg\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .lg\:ml-3\.5 { - margin-left: 0.875rem !important; + .group:hover .lg\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .lg\:-mt-0 { - margin-top: 0px !important; + .group:hover .lg\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .lg\:-mr-0 { - margin-right: 0px !important; + .group:hover .lg\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .lg\:-mb-0 { - margin-bottom: 0px !important; + .group:hover .lg\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .lg\:-ml-0 { - margin-left: 0px !important; + .group:hover .lg\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .lg\:-mt-1 { - margin-top: -0.25rem !important; + .group:hover .lg\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .lg\:-mr-1 { - margin-right: -0.25rem !important; + .group:hover .lg\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .lg\:-mb-1 { - margin-bottom: -0.25rem !important; + .group:hover .lg\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .lg\:-ml-1 { - margin-left: -0.25rem !important; + .group:hover .lg\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .lg\:-mt-2 { - margin-top: -0.5rem !important; + .group:hover .lg\:group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .lg\:-mr-2 { - margin-right: -0.5rem !important; + .group:hover .lg\:group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .lg\:-mb-2 { - margin-bottom: -0.5rem !important; + .group:hover .lg\:group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .lg\:-ml-2 { - margin-left: -0.5rem !important; + .group:hover .lg\:group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .lg\:-mt-3 { - margin-top: -0.75rem !important; + .group:hover .lg\:group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .lg\:-mr-3 { - margin-right: -0.75rem !important; + .group:hover .lg\:group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .lg\:-mb-3 { - margin-bottom: -0.75rem !important; + .group:hover .lg\:group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .lg\:-ml-3 { - margin-left: -0.75rem !important; + .group:hover .lg\:group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .lg\:-mt-4 { - margin-top: -1rem !important; + .group:hover .lg\:group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .lg\:-mr-4 { - margin-right: -1rem !important; + .group:hover .lg\:group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .lg\:-mb-4 { - margin-bottom: -1rem !important; + .group:hover .lg\:group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .lg\:-ml-4 { - margin-left: -1rem !important; + .group:hover .lg\:group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .lg\:-mt-5 { - margin-top: -1.25rem !important; + .group:hover .lg\:group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .lg\:-mr-5 { - margin-right: -1.25rem !important; + .group:hover .lg\:group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .lg\:-mb-5 { - margin-bottom: -1.25rem !important; + .group:hover .lg\:group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .lg\:-ml-5 { - margin-left: -1.25rem !important; + .group:hover .lg\:group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .lg\:-mt-6 { - margin-top: -1.5rem !important; + .group:hover .lg\:group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .lg\:-mr-6 { - margin-right: -1.5rem !important; + .group:hover .lg\:group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .lg\:-mb-6 { - margin-bottom: -1.5rem !important; + .group:hover .lg\:group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .lg\:-ml-6 { - margin-left: -1.5rem !important; + .group:hover .lg\:group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .lg\:-mt-7 { - margin-top: -1.75rem !important; + .group:hover .lg\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .lg\:-mr-7 { - margin-right: -1.75rem !important; + .group:hover .lg\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .lg\:-mb-7 { - margin-bottom: -1.75rem !important; + .group:hover .lg\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .lg\:-ml-7 { - margin-left: -1.75rem !important; + .group:hover .lg\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .lg\:-mt-8 { - margin-top: -2rem !important; + .group:hover .lg\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .lg\:-mr-8 { - margin-right: -2rem !important; + .group:hover .lg\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .lg\:-mb-8 { - margin-bottom: -2rem !important; + .group:hover .lg\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .lg\:-ml-8 { - margin-left: -2rem !important; + .group:hover .lg\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .lg\:-mt-9 { - margin-top: -2.25rem !important; + .group:hover .lg\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .lg\:-mr-9 { - margin-right: -2.25rem !important; + .group:hover .lg\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .lg\:-mb-9 { - margin-bottom: -2.25rem !important; + .group:hover .lg\:group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .lg\:-ml-9 { - margin-left: -2.25rem !important; + .group:hover .lg\:group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .lg\:-mt-10 { - margin-top: -2.5rem !important; + .group:hover .lg\:group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .lg\:-mr-10 { - margin-right: -2.5rem !important; + .group:hover .lg\:group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .lg\:-mb-10 { - margin-bottom: -2.5rem !important; + .group:hover .lg\:group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .lg\:-ml-10 { - margin-left: -2.5rem !important; + .group:hover .lg\:group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .lg\:-mt-11 { - margin-top: -2.75rem !important; + .group:hover .lg\:group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .lg\:-mr-11 { - margin-right: -2.75rem !important; + .group:hover .lg\:group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .lg\:-mb-11 { - margin-bottom: -2.75rem !important; + .group:hover .lg\:group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .lg\:-ml-11 { - margin-left: -2.75rem !important; + .group:hover .lg\:group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .lg\:-mt-12 { - margin-top: -3rem !important; + .group:hover .lg\:group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .lg\:-mr-12 { - margin-right: -3rem !important; + .group:hover .lg\:group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .lg\:-mb-12 { - margin-bottom: -3rem !important; + .group:hover .lg\:group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .lg\:-ml-12 { - margin-left: -3rem !important; + .group:hover .lg\:group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .lg\:-mt-14 { - margin-top: -3.5rem !important; + .group:hover .lg\:group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .lg\:-mr-14 { - margin-right: -3.5rem !important; + .group:hover .lg\:group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .lg\:-mb-14 { - margin-bottom: -3.5rem !important; + .group:hover .lg\:group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .lg\:-ml-14 { - margin-left: -3.5rem !important; + .group:hover .lg\:group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .lg\:-mt-16 { - margin-top: -4rem !important; + .group:hover .lg\:group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .lg\:-mr-16 { - margin-right: -4rem !important; + .group:hover .lg\:group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .lg\:-mb-16 { - margin-bottom: -4rem !important; + .lg\:focus-within\:border-transparent:focus-within { + border-color: transparent !important; } - .lg\:-ml-16 { - margin-left: -4rem !important; + .lg\:focus-within\:border-current:focus-within { + border-color: currentColor !important; } - .lg\:-mt-20 { - margin-top: -5rem !important; + .lg\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .lg\:-mr-20 { - margin-right: -5rem !important; + .lg\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .lg\:-mb-20 { - margin-bottom: -5rem !important; + .lg\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .lg\:-ml-20 { - margin-left: -5rem !important; + .lg\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .lg\:-mt-24 { - margin-top: -6rem !important; + .lg\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .lg\:-mr-24 { - margin-right: -6rem !important; + .lg\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .lg\:-mb-24 { - margin-bottom: -6rem !important; + .lg\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .lg\:-ml-24 { - margin-left: -6rem !important; + .lg\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .lg\:-mt-28 { - margin-top: -7rem !important; + .lg\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .lg\:-mr-28 { - margin-right: -7rem !important; + .lg\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .lg\:-mb-28 { - margin-bottom: -7rem !important; + .lg\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .lg\:-ml-28 { - margin-left: -7rem !important; + .lg\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .lg\:-mt-32 { - margin-top: -8rem !important; + .lg\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .lg\:-mr-32 { - margin-right: -8rem !important; + .lg\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .lg\:-mb-32 { - margin-bottom: -8rem !important; + .lg\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .lg\:-ml-32 { - margin-left: -8rem !important; + .lg\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .lg\:-mt-36 { - margin-top: -9rem !important; + .lg\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .lg\:-mr-36 { - margin-right: -9rem !important; + .lg\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .lg\:-mb-36 { - margin-bottom: -9rem !important; + .lg\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .lg\:-ml-36 { - margin-left: -9rem !important; + .lg\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .lg\:-mt-40 { - margin-top: -10rem !important; + .lg\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .lg\:-mr-40 { - margin-right: -10rem !important; + .lg\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .lg\:-mb-40 { - margin-bottom: -10rem !important; + .lg\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .lg\:-ml-40 { - margin-left: -10rem !important; + .lg\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .lg\:-mt-44 { - margin-top: -11rem !important; + .lg\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .lg\:-mr-44 { - margin-right: -11rem !important; + .lg\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .lg\:-mb-44 { - margin-bottom: -11rem !important; + .lg\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .lg\:-ml-44 { - margin-left: -11rem !important; + .lg\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .lg\:-mt-48 { - margin-top: -12rem !important; + .lg\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .lg\:-mr-48 { - margin-right: -12rem !important; + .lg\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .lg\:-mb-48 { - margin-bottom: -12rem !important; + .lg\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .lg\:-ml-48 { - margin-left: -12rem !important; + .lg\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .lg\:-mt-52 { - margin-top: -13rem !important; + .lg\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .lg\:-mr-52 { - margin-right: -13rem !important; + .lg\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .lg\:-mb-52 { - margin-bottom: -13rem !important; + .lg\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .lg\:-ml-52 { - margin-left: -13rem !important; + .lg\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .lg\:-mt-56 { - margin-top: -14rem !important; + .lg\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .lg\:-mr-56 { - margin-right: -14rem !important; + .lg\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .lg\:-mb-56 { - margin-bottom: -14rem !important; + .lg\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .lg\:-ml-56 { - margin-left: -14rem !important; + .lg\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .lg\:-mt-60 { - margin-top: -15rem !important; + .lg\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .lg\:-mr-60 { - margin-right: -15rem !important; + .lg\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .lg\:-mb-60 { - margin-bottom: -15rem !important; + .lg\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .lg\:-ml-60 { - margin-left: -15rem !important; + .lg\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .lg\:-mt-64 { - margin-top: -16rem !important; + .lg\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .lg\:-mr-64 { - margin-right: -16rem !important; + .lg\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .lg\:-mb-64 { - margin-bottom: -16rem !important; + .lg\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .lg\:-ml-64 { - margin-left: -16rem !important; + .lg\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .lg\:-mt-72 { - margin-top: -18rem !important; + .lg\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .lg\:-mr-72 { - margin-right: -18rem !important; + .lg\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .lg\:-mb-72 { - margin-bottom: -18rem !important; + .lg\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .lg\:-ml-72 { - margin-left: -18rem !important; + .lg\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .lg\:-mt-80 { - margin-top: -20rem !important; + .lg\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .lg\:-mr-80 { - margin-right: -20rem !important; + .lg\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .lg\:-mb-80 { - margin-bottom: -20rem !important; + .lg\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .lg\:-ml-80 { - margin-left: -20rem !important; + .lg\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .lg\:-mt-96 { - margin-top: -24rem !important; + .lg\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .lg\:-mr-96 { - margin-right: -24rem !important; + .lg\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .lg\:-mb-96 { - margin-bottom: -24rem !important; + .lg\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .lg\:-ml-96 { - margin-left: -24rem !important; + .lg\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .lg\:-mt-px { - margin-top: -1px !important; + .lg\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .lg\:-mr-px { - margin-right: -1px !important; + .lg\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .lg\:-mb-px { - margin-bottom: -1px !important; + .lg\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .lg\:-ml-px { - margin-left: -1px !important; + .lg\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .lg\:-mt-0\.5 { - margin-top: -0.125rem !important; + .lg\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .lg\:-mr-0\.5 { - margin-right: -0.125rem !important; + .lg\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .lg\:-mb-0\.5 { - margin-bottom: -0.125rem !important; + .lg\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .lg\:-ml-0\.5 { - margin-left: -0.125rem !important; + .lg\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .lg\:-mt-1\.5 { - margin-top: -0.375rem !important; + .lg\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .lg\:-mr-1\.5 { - margin-right: -0.375rem !important; + .lg\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .lg\:-mb-1\.5 { - margin-bottom: -0.375rem !important; + .lg\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .lg\:-ml-1\.5 { - margin-left: -0.375rem !important; + .lg\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .lg\:-mt-2\.5 { - margin-top: -0.625rem !important; + .lg\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .lg\:-mr-2\.5 { - margin-right: -0.625rem !important; + .lg\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .lg\:-mb-2\.5 { - margin-bottom: -0.625rem !important; + .lg\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .lg\:-ml-2\.5 { - margin-left: -0.625rem !important; + .lg\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .lg\:-mt-3\.5 { - margin-top: -0.875rem !important; + .lg\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .lg\:-mr-3\.5 { - margin-right: -0.875rem !important; + .lg\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .lg\:-mb-3\.5 { - margin-bottom: -0.875rem !important; + .lg\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .lg\:-ml-3\.5 { - margin-left: -0.875rem !important; + .lg\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .lg\:max-h-0 { - max-height: 0px !important; + .lg\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .lg\:max-h-1 { - max-height: 0.25rem !important; + .lg\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .lg\:max-h-2 { - max-height: 0.5rem !important; + .lg\:hover\:border-transparent:hover { + border-color: transparent !important; } - .lg\:max-h-3 { - max-height: 0.75rem !important; + .lg\:hover\:border-current:hover { + border-color: currentColor !important; } - .lg\:max-h-4 { - max-height: 1rem !important; + .lg\:hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .lg\:max-h-5 { - max-height: 1.25rem !important; + .lg\:hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .lg\:max-h-6 { - max-height: 1.5rem !important; + .lg\:hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .lg\:max-h-7 { - max-height: 1.75rem !important; + .lg\:hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .lg\:max-h-8 { - max-height: 2rem !important; + .lg\:hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .lg\:max-h-9 { - max-height: 2.25rem !important; + .lg\:hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .lg\:max-h-10 { - max-height: 2.5rem !important; + .lg\:hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .lg\:max-h-11 { - max-height: 2.75rem !important; + .lg\:hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .lg\:max-h-12 { - max-height: 3rem !important; + .lg\:hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .lg\:max-h-14 { - max-height: 3.5rem !important; + .lg\:hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .lg\:max-h-16 { - max-height: 4rem !important; + .lg\:hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .lg\:max-h-20 { - max-height: 5rem !important; + .lg\:hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .lg\:max-h-24 { - max-height: 6rem !important; + .lg\:hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .lg\:max-h-28 { - max-height: 7rem !important; + .lg\:hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .lg\:max-h-32 { - max-height: 8rem !important; + .lg\:hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .lg\:max-h-36 { - max-height: 9rem !important; + .lg\:hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .lg\:max-h-40 { - max-height: 10rem !important; + .lg\:hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .lg\:max-h-44 { - max-height: 11rem !important; + .lg\:hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .lg\:max-h-48 { - max-height: 12rem !important; + .lg\:hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .lg\:max-h-52 { - max-height: 13rem !important; + .lg\:hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .lg\:max-h-56 { - max-height: 14rem !important; + .lg\:hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .lg\:max-h-60 { - max-height: 15rem !important; + .lg\:hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .lg\:max-h-64 { - max-height: 16rem !important; + .lg\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .lg\:max-h-72 { - max-height: 18rem !important; + .lg\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .lg\:max-h-80 { - max-height: 20rem !important; + .lg\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .lg\:max-h-96 { - max-height: 24rem !important; + .lg\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .lg\:max-h-px { - max-height: 1px !important; + .lg\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .lg\:max-h-0\.5 { - max-height: 0.125rem !important; + .lg\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .lg\:max-h-1\.5 { - max-height: 0.375rem !important; + .lg\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .lg\:max-h-2\.5 { - max-height: 0.625rem !important; + .lg\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .lg\:max-h-3\.5 { - max-height: 0.875rem !important; + .lg\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .lg\:max-h-full { - max-height: 100% !important; + .lg\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .lg\:max-h-screen { - max-height: 100vh !important; + .lg\:hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .lg\:max-w-0 { - max-width: 0rem !important; + .lg\:hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .lg\:max-w-none { - max-width: none !important; + .lg\:hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .lg\:max-w-xs { - max-width: 20rem !important; + .lg\:hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .lg\:max-w-sm { - max-width: 24rem !important; + .lg\:hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .lg\:max-w-md { - max-width: 28rem !important; + .lg\:hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .lg\:max-w-lg { - max-width: 32rem !important; + .lg\:hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .lg\:max-w-xl { - max-width: 36rem !important; + .lg\:hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .lg\:max-w-2xl { - max-width: 42rem !important; + .lg\:hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .lg\:max-w-3xl { - max-width: 48rem !important; + .lg\:hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .lg\:max-w-4xl { - max-width: 56rem !important; + .lg\:hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .lg\:max-w-5xl { - max-width: 64rem !important; + .lg\:hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .lg\:max-w-6xl { - max-width: 72rem !important; + .lg\:hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .lg\:max-w-7xl { - max-width: 80rem !important; + .lg\:hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .lg\:max-w-full { - max-width: 100% !important; + .lg\:hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .lg\:max-w-min { - max-width: min-content !important; + .lg\:hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .lg\:max-w-max { - max-width: max-content !important; + .lg\:hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .lg\:max-w-prose { - max-width: 65ch !important; + .lg\:hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .lg\:max-w-screen-sm { - max-width: 640px !important; + .lg\:hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .lg\:max-w-screen-md { - max-width: 768px !important; + .lg\:hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .lg\:max-w-screen-lg { - max-width: 1024px !important; + .lg\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .lg\:max-w-screen-xl { - max-width: 1280px !important; + .lg\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .lg\:max-w-screen-2xl { - max-width: 1536px !important; + .lg\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .lg\:min-h-0 { - min-height: 0px !important; + .lg\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .lg\:min-h-full { - min-height: 100% !important; + .lg\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .lg\:min-h-screen { - min-height: 100vh !important; + .lg\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .lg\:min-w-0 { - min-width: 0px !important; + .lg\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .lg\:min-w-full { - min-width: 100% !important; + .lg\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .lg\:min-w-min { - min-width: min-content !important; + .lg\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .lg\:min-w-max { - min-width: max-content !important; + .lg\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .lg\:object-contain { - object-fit: contain !important; + .lg\:hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .lg\:object-cover { - object-fit: cover !important; + .lg\:hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .lg\:object-fill { - object-fit: fill !important; + .lg\:hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .lg\:object-none { - object-fit: none !important; + .lg\:hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .lg\:object-scale-down { - object-fit: scale-down !important; + .lg\:hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .lg\:object-bottom { - object-position: bottom !important; + .lg\:hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .lg\:object-center { - object-position: center !important; + .lg\:hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .lg\:object-left { - object-position: left !important; + .lg\:hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .lg\:object-left-bottom { - object-position: left bottom !important; + .lg\:hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .lg\:object-left-top { - object-position: left top !important; + .lg\:hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .lg\:object-right { - object-position: right !important; + .lg\:hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .lg\:object-right-bottom { - object-position: right bottom !important; + .lg\:hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .lg\:object-right-top { - object-position: right top !important; + .lg\:hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .lg\:object-top { - object-position: top !important; + .lg\:hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .lg\:opacity-0 { - opacity: 0 !important; + .lg\:hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .lg\:opacity-5 { - opacity: 0.05 !important; + .lg\:hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .lg\:opacity-10 { - opacity: 0.1 !important; + .lg\:hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .lg\:opacity-20 { - opacity: 0.2 !important; + .lg\:hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .lg\:opacity-25 { - opacity: 0.25 !important; + .lg\:hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .lg\:opacity-30 { - opacity: 0.3 !important; + .lg\:hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .lg\:opacity-40 { - opacity: 0.4 !important; + .lg\:focus\:border-transparent:focus { + border-color: transparent !important; } - .lg\:opacity-50 { - opacity: 0.5 !important; + .lg\:focus\:border-current:focus { + border-color: currentColor !important; } - .lg\:opacity-60 { - opacity: 0.6 !important; + .lg\:focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .lg\:opacity-70 { - opacity: 0.7 !important; + .lg\:focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .lg\:opacity-75 { - opacity: 0.75 !important; + .lg\:focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .lg\:opacity-80 { - opacity: 0.8 !important; + .lg\:focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .lg\:opacity-90 { - opacity: 0.9 !important; + .lg\:focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .lg\:opacity-95 { - opacity: 0.95 !important; + .lg\:focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .lg\:opacity-100 { - opacity: 1 !important; + .lg\:focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-0 { - opacity: 0 !important; + .lg\:focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-5 { - opacity: 0.05 !important; + .lg\:focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-10 { - opacity: 0.1 !important; + .lg\:focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-20 { - opacity: 0.2 !important; + .lg\:focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-25 { - opacity: 0.25 !important; + .lg\:focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-30 { - opacity: 0.3 !important; + .lg\:focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-40 { - opacity: 0.4 !important; + .lg\:focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-50 { - opacity: 0.5 !important; + .lg\:focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-60 { - opacity: 0.6 !important; + .lg\:focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-70 { - opacity: 0.7 !important; + .lg\:focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-75 { - opacity: 0.75 !important; + .lg\:focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-80 { - opacity: 0.8 !important; + .lg\:focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-90 { - opacity: 0.9 !important; + .lg\:focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-95 { - opacity: 0.95 !important; + .lg\:focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .group:hover .lg\:group-hover\:opacity-100 { - opacity: 1 !important; + .lg\:focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-0:focus-within { - opacity: 0 !important; + .lg\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-5:focus-within { - opacity: 0.05 !important; + .lg\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-10:focus-within { - opacity: 0.1 !important; + .lg\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-20:focus-within { - opacity: 0.2 !important; + .lg\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-25:focus-within { - opacity: 0.25 !important; + .lg\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-30:focus-within { - opacity: 0.3 !important; + .lg\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-40:focus-within { - opacity: 0.4 !important; + .lg\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-50:focus-within { - opacity: 0.5 !important; + .lg\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-60:focus-within { - opacity: 0.6 !important; + .lg\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-70:focus-within { - opacity: 0.7 !important; + .lg\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-75:focus-within { - opacity: 0.75 !important; + .lg\:focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-80:focus-within { - opacity: 0.8 !important; + .lg\:focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-90:focus-within { - opacity: 0.9 !important; + .lg\:focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-95:focus-within { - opacity: 0.95 !important; + .lg\:focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:opacity-100:focus-within { - opacity: 1 !important; + .lg\:focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-0:hover { - opacity: 0 !important; + .lg\:focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-5:hover { - opacity: 0.05 !important; + .lg\:focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-10:hover { - opacity: 0.1 !important; + .lg\:focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-20:hover { - opacity: 0.2 !important; + .lg\:focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-25:hover { - opacity: 0.25 !important; + .lg\:focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-30:hover { - opacity: 0.3 !important; + .lg\:focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-40:hover { - opacity: 0.4 !important; + .lg\:focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-50:hover { - opacity: 0.5 !important; + .lg\:focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-60:hover { - opacity: 0.6 !important; + .lg\:focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-70:hover { - opacity: 0.7 !important; + .lg\:focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-75:hover { - opacity: 0.75 !important; + .lg\:focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-80:hover { - opacity: 0.8 !important; + .lg\:focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-90:hover { - opacity: 0.9 !important; + .lg\:focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-95:hover { - opacity: 0.95 !important; + .lg\:focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .lg\:hover\:opacity-100:hover { - opacity: 1 !important; + .lg\:focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-0:focus { - opacity: 0 !important; + .lg\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-5:focus { - opacity: 0.05 !important; + .lg\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-10:focus { - opacity: 0.1 !important; + .lg\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-20:focus { - opacity: 0.2 !important; + .lg\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-25:focus { - opacity: 0.25 !important; + .lg\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-30:focus { - opacity: 0.3 !important; + .lg\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-40:focus { - opacity: 0.4 !important; + .lg\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-50:focus { - opacity: 0.5 !important; + .lg\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-60:focus { - opacity: 0.6 !important; + .lg\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-70:focus { - opacity: 0.7 !important; + .lg\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-75:focus { - opacity: 0.75 !important; + .lg\:focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-80:focus { - opacity: 0.8 !important; + .lg\:focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-90:focus { - opacity: 0.9 !important; + .lg\:focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-95:focus { - opacity: 0.95 !important; + .lg\:focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .lg\:focus\:opacity-100:focus { - opacity: 1 !important; + .lg\:focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .lg\:outline-none { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .lg\:focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .lg\:outline-white { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .lg\:focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .lg\:outline-black { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .lg\:focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .lg\:focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:outline-white:focus-within { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .lg\:focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .lg\:focus-within\:outline-black:focus-within { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .lg\:focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .lg\:focus\:outline-none:focus { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .lg\:focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .lg\:focus\:outline-white:focus { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .lg\:focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .lg\:focus\:outline-black:focus { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .lg\:focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .lg\:overflow-auto { - overflow: auto !important; + .lg\:focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .lg\:overflow-hidden { - overflow: hidden !important; + .lg\:focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .lg\:overflow-visible { - overflow: visible !important; + .lg\:focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .lg\:overflow-scroll { - overflow: scroll !important; + .lg\:focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .lg\:overflow-x-auto { - overflow-x: auto !important; + .lg\:focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .lg\:overflow-y-auto { - overflow-y: auto !important; + .lg\:focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .lg\:overflow-x-hidden { - overflow-x: hidden !important; + .lg\:border-opacity-0 { + --tw-border-opacity: 0 !important; } - .lg\:overflow-y-hidden { - overflow-y: hidden !important; + .lg\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; } - .lg\:overflow-x-visible { - overflow-x: visible !important; + .lg\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; } - .lg\:overflow-y-visible { - overflow-y: visible !important; + .lg\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; } - .lg\:overflow-x-scroll { - overflow-x: scroll !important; + .lg\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; } - .lg\:overflow-y-scroll { - overflow-y: scroll !important; + .lg\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; } - .lg\:overscroll-auto { - overscroll-behavior: auto !important; + .lg\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; } - .lg\:overscroll-contain { - overscroll-behavior: contain !important; + .lg\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; } - .lg\:overscroll-none { - overscroll-behavior: none !important; + .lg\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; } - .lg\:overscroll-y-auto { - overscroll-behavior-y: auto !important; + .lg\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; } - .lg\:overscroll-y-contain { - overscroll-behavior-y: contain !important; + .lg\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; } - .lg\:overscroll-y-none { - overscroll-behavior-y: none !important; + .lg\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; } - .lg\:overscroll-x-auto { - overscroll-behavior-x: auto !important; + .lg\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; } - .lg\:overscroll-x-contain { - overscroll-behavior-x: contain !important; + .lg\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; } - .lg\:overscroll-x-none { - overscroll-behavior-x: none !important; + .lg\:border-opacity-100 { + --tw-border-opacity: 1 !important; } - .lg\:p-0 { - padding: 0px !important; + .group:hover .lg\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; } - .lg\:p-1 { - padding: 0.25rem !important; + .group:hover .lg\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; } - .lg\:p-2 { - padding: 0.5rem !important; + .group:hover .lg\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; } - .lg\:p-3 { - padding: 0.75rem !important; + .group:hover .lg\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; } - .lg\:p-4 { - padding: 1rem !important; + .group:hover .lg\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; } - .lg\:p-5 { - padding: 1.25rem !important; + .group:hover .lg\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; } - .lg\:p-6 { - padding: 1.5rem !important; + .group:hover .lg\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; } - .lg\:p-7 { - padding: 1.75rem !important; + .group:hover .lg\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; } - .lg\:p-8 { - padding: 2rem !important; + .group:hover .lg\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; } - .lg\:p-9 { - padding: 2.25rem !important; + .group:hover .lg\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; } - .lg\:p-10 { - padding: 2.5rem !important; + .group:hover .lg\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; } - .lg\:p-11 { - padding: 2.75rem !important; + .group:hover .lg\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; } - .lg\:p-12 { - padding: 3rem !important; + .group:hover .lg\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; } - .lg\:p-14 { - padding: 3.5rem !important; + .group:hover .lg\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; } - .lg\:p-16 { - padding: 4rem !important; + .group:hover .lg\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; } - .lg\:p-20 { - padding: 5rem !important; + .lg\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; } - .lg\:p-24 { - padding: 6rem !important; + .lg\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; } - .lg\:p-28 { - padding: 7rem !important; + .lg\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; } - .lg\:p-32 { - padding: 8rem !important; + .lg\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; } - .lg\:p-36 { - padding: 9rem !important; + .lg\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; } - .lg\:p-40 { - padding: 10rem !important; + .lg\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; } - .lg\:p-44 { - padding: 11rem !important; + .lg\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; } - .lg\:p-48 { - padding: 12rem !important; + .lg\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; } - .lg\:p-52 { - padding: 13rem !important; + .lg\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; } - .lg\:p-56 { - padding: 14rem !important; + .lg\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; } - .lg\:p-60 { - padding: 15rem !important; + .lg\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; } - .lg\:p-64 { - padding: 16rem !important; + .lg\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; } - .lg\:p-72 { - padding: 18rem !important; + .lg\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; } - .lg\:p-80 { - padding: 20rem !important; + .lg\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; } - .lg\:p-96 { - padding: 24rem !important; + .lg\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; } - .lg\:p-px { - padding: 1px !important; + .lg\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; } - .lg\:p-0\.5 { - padding: 0.125rem !important; + .lg\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; } - .lg\:p-1\.5 { - padding: 0.375rem !important; + .lg\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; } - .lg\:p-2\.5 { - padding: 0.625rem !important; + .lg\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; } - .lg\:p-3\.5 { - padding: 0.875rem !important; + .lg\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; } - .lg\:py-0 { - padding-top: 0px !important; - padding-bottom: 0px !important; + .lg\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; } - .lg\:px-0 { - padding-left: 0px !important; - padding-right: 0px !important; + .lg\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; } - .lg\:py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; + .lg\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; } - .lg\:px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; + .lg\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; } - .lg\:py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; + .lg\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; } - .lg\:px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; + .lg\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; } - .lg\:py-3 { - padding-top: 0.75rem !important; - padding-bottom: 0.75rem !important; + .lg\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; } - .lg\:px-3 { - padding-left: 0.75rem !important; - padding-right: 0.75rem !important; + .lg\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; } - .lg\:py-4 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; + .lg\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; } - .lg\:px-4 { - padding-left: 1rem !important; - padding-right: 1rem !important; + .lg\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; } - .lg\:py-5 { - padding-top: 1.25rem !important; - padding-bottom: 1.25rem !important; + .lg\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; } - .lg\:px-5 { - padding-left: 1.25rem !important; - padding-right: 1.25rem !important; + .lg\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; } - .lg\:py-6 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; + .lg\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; } - .lg\:px-6 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; + .lg\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; } - .lg\:py-7 { - padding-top: 1.75rem !important; - padding-bottom: 1.75rem !important; + .lg\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; } - .lg\:px-7 { - padding-left: 1.75rem !important; - padding-right: 1.75rem !important; + .lg\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; } - .lg\:py-8 { - padding-top: 2rem !important; - padding-bottom: 2rem !important; + .lg\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; } - .lg\:px-8 { - padding-left: 2rem !important; - padding-right: 2rem !important; + .lg\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; } - .lg\:py-9 { - padding-top: 2.25rem !important; - padding-bottom: 2.25rem !important; + .lg\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; } - .lg\:px-9 { - padding-left: 2.25rem !important; - padding-right: 2.25rem !important; + .lg\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; } - .lg\:py-10 { - padding-top: 2.5rem !important; - padding-bottom: 2.5rem !important; + .lg\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; } - .lg\:px-10 { - padding-left: 2.5rem !important; - padding-right: 2.5rem !important; + .lg\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; } - .lg\:py-11 { - padding-top: 2.75rem !important; - padding-bottom: 2.75rem !important; + .lg\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; } - .lg\:px-11 { - padding-left: 2.75rem !important; - padding-right: 2.75rem !important; + .lg\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; } - .lg\:py-12 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; + .lg\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; } - .lg\:px-12 { - padding-left: 3rem !important; - padding-right: 3rem !important; + .lg\:bg-transparent { + background-color: transparent !important; } - .lg\:py-14 { - padding-top: 3.5rem !important; - padding-bottom: 3.5rem !important; + .lg\:bg-current { + background-color: currentColor !important; } - .lg\:px-14 { - padding-left: 3.5rem !important; - padding-right: 3.5rem !important; + .lg\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .lg\:py-16 { - padding-top: 4rem !important; - padding-bottom: 4rem !important; + .lg\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .lg\:px-16 { - padding-left: 4rem !important; - padding-right: 4rem !important; + .lg\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .lg\:py-20 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; + .lg\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .lg\:px-20 { - padding-left: 5rem !important; - padding-right: 5rem !important; + .lg\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .lg\:py-24 { - padding-top: 6rem !important; - padding-bottom: 6rem !important; + .lg\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .lg\:px-24 { - padding-left: 6rem !important; - padding-right: 6rem !important; + .lg\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .lg\:py-28 { - padding-top: 7rem !important; - padding-bottom: 7rem !important; + .lg\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .lg\:px-28 { - padding-left: 7rem !important; - padding-right: 7rem !important; + .lg\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .lg\:py-32 { - padding-top: 8rem !important; - padding-bottom: 8rem !important; + .lg\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .lg\:px-32 { - padding-left: 8rem !important; - padding-right: 8rem !important; + .lg\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .lg\:py-36 { - padding-top: 9rem !important; - padding-bottom: 9rem !important; + .lg\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .lg\:px-36 { - padding-left: 9rem !important; - padding-right: 9rem !important; + .lg\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .lg\:py-40 { - padding-top: 10rem !important; - padding-bottom: 10rem !important; + .lg\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .lg\:px-40 { - padding-left: 10rem !important; - padding-right: 10rem !important; + .lg\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .lg\:py-44 { - padding-top: 11rem !important; - padding-bottom: 11rem !important; + .lg\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .lg\:px-44 { - padding-left: 11rem !important; - padding-right: 11rem !important; + .lg\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .lg\:py-48 { - padding-top: 12rem !important; - padding-bottom: 12rem !important; + .lg\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .lg\:px-48 { - padding-left: 12rem !important; - padding-right: 12rem !important; + .lg\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .lg\:py-52 { - padding-top: 13rem !important; - padding-bottom: 13rem !important; + .lg\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .lg\:px-52 { - padding-left: 13rem !important; - padding-right: 13rem !important; + .lg\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .lg\:py-56 { - padding-top: 14rem !important; - padding-bottom: 14rem !important; + .lg\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .lg\:px-56 { - padding-left: 14rem !important; - padding-right: 14rem !important; + .lg\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .lg\:py-60 { - padding-top: 15rem !important; - padding-bottom: 15rem !important; + .lg\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .lg\:px-60 { - padding-left: 15rem !important; - padding-right: 15rem !important; + .lg\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .lg\:py-64 { - padding-top: 16rem !important; - padding-bottom: 16rem !important; + .lg\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .lg\:px-64 { - padding-left: 16rem !important; - padding-right: 16rem !important; + .lg\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .lg\:py-72 { - padding-top: 18rem !important; - padding-bottom: 18rem !important; + .lg\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .lg\:px-72 { - padding-left: 18rem !important; - padding-right: 18rem !important; + .lg\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .lg\:py-80 { - padding-top: 20rem !important; - padding-bottom: 20rem !important; + .lg\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .lg\:px-80 { - padding-left: 20rem !important; - padding-right: 20rem !important; + .lg\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .lg\:py-96 { - padding-top: 24rem !important; - padding-bottom: 24rem !important; + .lg\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .lg\:px-96 { - padding-left: 24rem !important; - padding-right: 24rem !important; + .lg\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .lg\:py-px { - padding-top: 1px !important; - padding-bottom: 1px !important; + .lg\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .lg\:px-px { - padding-left: 1px !important; - padding-right: 1px !important; + .lg\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .lg\:py-0\.5 { - padding-top: 0.125rem !important; - padding-bottom: 0.125rem !important; + .lg\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .lg\:px-0\.5 { - padding-left: 0.125rem !important; - padding-right: 0.125rem !important; + .lg\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .lg\:py-1\.5 { - padding-top: 0.375rem !important; - padding-bottom: 0.375rem !important; + .lg\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .lg\:px-1\.5 { - padding-left: 0.375rem !important; - padding-right: 0.375rem !important; + .lg\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .lg\:py-2\.5 { - padding-top: 0.625rem !important; - padding-bottom: 0.625rem !important; + .lg\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .lg\:px-2\.5 { - padding-left: 0.625rem !important; - padding-right: 0.625rem !important; + .lg\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .lg\:py-3\.5 { - padding-top: 0.875rem !important; - padding-bottom: 0.875rem !important; + .lg\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .lg\:px-3\.5 { - padding-left: 0.875rem !important; - padding-right: 0.875rem !important; + .lg\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .lg\:pt-0 { - padding-top: 0px !important; + .lg\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .lg\:pr-0 { - padding-right: 0px !important; + .lg\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .lg\:pb-0 { - padding-bottom: 0px !important; + .lg\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .lg\:pl-0 { - padding-left: 0px !important; + .lg\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .lg\:pt-1 { - padding-top: 0.25rem !important; + .lg\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .lg\:pr-1 { - padding-right: 0.25rem !important; + .lg\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .lg\:pb-1 { - padding-bottom: 0.25rem !important; + .lg\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .lg\:pl-1 { - padding-left: 0.25rem !important; + .lg\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .lg\:pt-2 { - padding-top: 0.5rem !important; + .lg\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .lg\:pr-2 { - padding-right: 0.5rem !important; + .lg\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .lg\:pb-2 { - padding-bottom: 0.5rem !important; + .lg\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .lg\:pl-2 { - padding-left: 0.5rem !important; + .lg\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .lg\:pt-3 { - padding-top: 0.75rem !important; + .lg\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .lg\:pr-3 { - padding-right: 0.75rem !important; + .lg\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .lg\:pb-3 { - padding-bottom: 0.75rem !important; + .lg\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .lg\:pl-3 { - padding-left: 0.75rem !important; + .lg\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .lg\:pt-4 { - padding-top: 1rem !important; + .lg\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .lg\:pr-4 { - padding-right: 1rem !important; + .lg\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .lg\:pb-4 { - padding-bottom: 1rem !important; + .lg\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .lg\:pl-4 { - padding-left: 1rem !important; + .lg\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .lg\:pt-5 { - padding-top: 1.25rem !important; + .lg\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .lg\:pr-5 { - padding-right: 1.25rem !important; + .lg\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .lg\:pb-5 { - padding-bottom: 1.25rem !important; + .lg\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .lg\:pl-5 { - padding-left: 1.25rem !important; + .lg\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .lg\:pt-6 { - padding-top: 1.5rem !important; + .lg\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .lg\:pr-6 { - padding-right: 1.5rem !important; + .lg\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .lg\:pb-6 { - padding-bottom: 1.5rem !important; + .lg\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .lg\:pl-6 { - padding-left: 1.5rem !important; + .lg\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .lg\:pt-7 { - padding-top: 1.75rem !important; + .lg\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .lg\:pr-7 { - padding-right: 1.75rem !important; + .lg\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .lg\:pb-7 { - padding-bottom: 1.75rem !important; + .lg\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .lg\:pl-7 { - padding-left: 1.75rem !important; + .lg\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .lg\:pt-8 { - padding-top: 2rem !important; + .lg\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .lg\:pr-8 { - padding-right: 2rem !important; + .lg\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .lg\:pb-8 { - padding-bottom: 2rem !important; + .lg\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .lg\:pl-8 { - padding-left: 2rem !important; + .lg\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .lg\:pt-9 { - padding-top: 2.25rem !important; + .lg\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .lg\:pr-9 { - padding-right: 2.25rem !important; + .lg\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .lg\:pb-9 { - padding-bottom: 2.25rem !important; + .lg\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .lg\:pl-9 { - padding-left: 2.25rem !important; + .group:hover .lg\:group-hover\:bg-transparent { + background-color: transparent !important; } - .lg\:pt-10 { - padding-top: 2.5rem !important; + .group:hover .lg\:group-hover\:bg-current { + background-color: currentColor !important; } - .lg\:pr-10 { - padding-right: 2.5rem !important; + .group:hover .lg\:group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .lg\:pb-10 { - padding-bottom: 2.5rem !important; + .group:hover .lg\:group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .lg\:pl-10 { - padding-left: 2.5rem !important; + .group:hover .lg\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .lg\:pt-11 { - padding-top: 2.75rem !important; + .group:hover .lg\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .lg\:pr-11 { - padding-right: 2.75rem !important; + .group:hover .lg\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .lg\:pb-11 { - padding-bottom: 2.75rem !important; + .group:hover .lg\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .lg\:pl-11 { - padding-left: 2.75rem !important; + .group:hover .lg\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .lg\:pt-12 { - padding-top: 3rem !important; + .group:hover .lg\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .lg\:pr-12 { - padding-right: 3rem !important; + .group:hover .lg\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .lg\:pb-12 { - padding-bottom: 3rem !important; + .group:hover .lg\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .lg\:pl-12 { - padding-left: 3rem !important; + .group:hover .lg\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .lg\:pt-14 { - padding-top: 3.5rem !important; + .group:hover .lg\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .lg\:pr-14 { - padding-right: 3.5rem !important; + .group:hover .lg\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .lg\:pb-14 { - padding-bottom: 3.5rem !important; + .group:hover .lg\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .lg\:pl-14 { - padding-left: 3.5rem !important; + .group:hover .lg\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .lg\:pt-16 { - padding-top: 4rem !important; + .group:hover .lg\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .lg\:pr-16 { - padding-right: 4rem !important; + .group:hover .lg\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .lg\:pb-16 { - padding-bottom: 4rem !important; + .group:hover .lg\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .lg\:pl-16 { - padding-left: 4rem !important; + .group:hover .lg\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .lg\:pt-20 { - padding-top: 5rem !important; + .group:hover .lg\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .lg\:pr-20 { - padding-right: 5rem !important; + .group:hover .lg\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .lg\:pb-20 { - padding-bottom: 5rem !important; + .group:hover .lg\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .lg\:pl-20 { - padding-left: 5rem !important; + .group:hover .lg\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .lg\:pt-24 { - padding-top: 6rem !important; + .group:hover .lg\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .lg\:pr-24 { - padding-right: 6rem !important; + .group:hover .lg\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .lg\:pb-24 { - padding-bottom: 6rem !important; + .group:hover .lg\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .lg\:pl-24 { - padding-left: 6rem !important; + .group:hover .lg\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .lg\:pt-28 { - padding-top: 7rem !important; + .group:hover .lg\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .lg\:pr-28 { - padding-right: 7rem !important; + .group:hover .lg\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .lg\:pb-28 { - padding-bottom: 7rem !important; + .group:hover .lg\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .lg\:pl-28 { - padding-left: 7rem !important; + .group:hover .lg\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .lg\:pt-32 { - padding-top: 8rem !important; + .group:hover .lg\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .lg\:pr-32 { - padding-right: 8rem !important; + .group:hover .lg\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .lg\:pb-32 { - padding-bottom: 8rem !important; + .group:hover .lg\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .lg\:pl-32 { - padding-left: 8rem !important; + .group:hover .lg\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .lg\:pt-36 { - padding-top: 9rem !important; + .group:hover .lg\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .lg\:pr-36 { - padding-right: 9rem !important; + .group:hover .lg\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .lg\:pb-36 { - padding-bottom: 9rem !important; + .group:hover .lg\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .lg\:pl-36 { - padding-left: 9rem !important; + .group:hover .lg\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .lg\:pt-40 { - padding-top: 10rem !important; + .group:hover .lg\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .lg\:pr-40 { - padding-right: 10rem !important; + .group:hover .lg\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .lg\:pb-40 { - padding-bottom: 10rem !important; + .group:hover .lg\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .lg\:pl-40 { - padding-left: 10rem !important; + .group:hover .lg\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .lg\:pt-44 { - padding-top: 11rem !important; + .group:hover .lg\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .lg\:pr-44 { - padding-right: 11rem !important; + .group:hover .lg\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .lg\:pb-44 { - padding-bottom: 11rem !important; + .group:hover .lg\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .lg\:pl-44 { - padding-left: 11rem !important; + .group:hover .lg\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .lg\:pt-48 { - padding-top: 12rem !important; + .group:hover .lg\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .lg\:pr-48 { - padding-right: 12rem !important; + .group:hover .lg\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .lg\:pb-48 { - padding-bottom: 12rem !important; + .group:hover .lg\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .lg\:pl-48 { - padding-left: 12rem !important; + .group:hover .lg\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .lg\:pt-52 { - padding-top: 13rem !important; + .group:hover .lg\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .lg\:pr-52 { - padding-right: 13rem !important; + .group:hover .lg\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .lg\:pb-52 { - padding-bottom: 13rem !important; + .group:hover .lg\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .lg\:pl-52 { - padding-left: 13rem !important; + .group:hover .lg\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .lg\:pt-56 { - padding-top: 14rem !important; + .group:hover .lg\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .lg\:pr-56 { - padding-right: 14rem !important; + .group:hover .lg\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .lg\:pb-56 { - padding-bottom: 14rem !important; + .group:hover .lg\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .lg\:pl-56 { - padding-left: 14rem !important; + .group:hover .lg\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .lg\:pt-60 { - padding-top: 15rem !important; + .group:hover .lg\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .lg\:pr-60 { - padding-right: 15rem !important; + .group:hover .lg\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .lg\:pb-60 { - padding-bottom: 15rem !important; + .group:hover .lg\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .lg\:pl-60 { - padding-left: 15rem !important; + .group:hover .lg\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .lg\:pt-64 { - padding-top: 16rem !important; + .group:hover .lg\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .lg\:pr-64 { - padding-right: 16rem !important; + .group:hover .lg\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .lg\:pb-64 { - padding-bottom: 16rem !important; + .group:hover .lg\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .lg\:pl-64 { - padding-left: 16rem !important; + .group:hover .lg\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .lg\:pt-72 { - padding-top: 18rem !important; + .group:hover .lg\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .lg\:pr-72 { - padding-right: 18rem !important; + .group:hover .lg\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .lg\:pb-72 { - padding-bottom: 18rem !important; + .group:hover .lg\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .lg\:pl-72 { - padding-left: 18rem !important; + .group:hover .lg\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .lg\:pt-80 { - padding-top: 20rem !important; + .group:hover .lg\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .lg\:pr-80 { - padding-right: 20rem !important; + .group:hover .lg\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .lg\:pb-80 { - padding-bottom: 20rem !important; + .group:hover .lg\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .lg\:pl-80 { - padding-left: 20rem !important; + .group:hover .lg\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .lg\:pt-96 { - padding-top: 24rem !important; + .group:hover .lg\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .lg\:pr-96 { - padding-right: 24rem !important; + .group:hover .lg\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .lg\:pb-96 { - padding-bottom: 24rem !important; + .group:hover .lg\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .lg\:pl-96 { - padding-left: 24rem !important; + .group:hover .lg\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .lg\:pt-px { - padding-top: 1px !important; + .group:hover .lg\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .lg\:pr-px { - padding-right: 1px !important; + .group:hover .lg\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .lg\:pb-px { - padding-bottom: 1px !important; + .group:hover .lg\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .lg\:pl-px { - padding-left: 1px !important; + .lg\:focus-within\:bg-transparent:focus-within { + background-color: transparent !important; } - .lg\:pt-0\.5 { - padding-top: 0.125rem !important; + .lg\:focus-within\:bg-current:focus-within { + background-color: currentColor !important; } - .lg\:pr-0\.5 { - padding-right: 0.125rem !important; + .lg\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .lg\:pb-0\.5 { - padding-bottom: 0.125rem !important; + .lg\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .lg\:pl-0\.5 { - padding-left: 0.125rem !important; + .lg\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .lg\:pt-1\.5 { - padding-top: 0.375rem !important; + .lg\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .lg\:pr-1\.5 { - padding-right: 0.375rem !important; + .lg\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .lg\:pb-1\.5 { - padding-bottom: 0.375rem !important; + .lg\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .lg\:pl-1\.5 { - padding-left: 0.375rem !important; + .lg\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .lg\:pt-2\.5 { - padding-top: 0.625rem !important; + .lg\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .lg\:pr-2\.5 { - padding-right: 0.625rem !important; + .lg\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .lg\:pb-2\.5 { - padding-bottom: 0.625rem !important; + .lg\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .lg\:pl-2\.5 { - padding-left: 0.625rem !important; + .lg\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .lg\:pt-3\.5 { - padding-top: 0.875rem !important; + .lg\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .lg\:pr-3\.5 { - padding-right: 0.875rem !important; + .lg\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .lg\:pb-3\.5 { - padding-bottom: 0.875rem !important; + .lg\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .lg\:pl-3\.5 { - padding-left: 0.875rem !important; + .lg\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-transparent::placeholder { - color: transparent !important; + .lg\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-current::placeholder { - color: currentColor !important; + .lg\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + .lg\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-transparent:hover { + background-color: transparent !important; } - .lg\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-current:hover { + background-color: currentColor !important; } - .lg\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-transparent:focus::placeholder { - color: transparent !important; + .lg\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-current:focus::placeholder { - color: currentColor !important; + .lg\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + .lg\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-transparent:focus { + background-color: transparent !important; } - .lg\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-current:focus { + background-color: currentColor !important; } - .lg\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + .lg\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0 !important; + .lg\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05 !important; + .lg\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1 !important; + .lg\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2 !important; + .lg\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25 !important; + .lg\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3 !important; + .lg\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4 !important; + .lg\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5 !important; + .lg\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6 !important; + .lg\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7 !important; + .lg\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75 !important; + .lg\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8 !important; + .lg\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9 !important; + .lg\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95 !important; + .lg\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .lg\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1 !important; + .lg\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0 !important; + .lg\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05 !important; + .lg\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1 !important; + .lg\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2 !important; + .lg\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25 !important; + .lg\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3 !important; + .lg\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4 !important; + .lg\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5 !important; + .lg\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6 !important; + .lg\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7 !important; + .lg\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75 !important; + .lg\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8 !important; + .lg\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9 !important; + .lg\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95 !important; + .lg\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .lg\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; + .lg\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .lg\:pointer-events-none { - pointer-events: none !important; + .lg\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .lg\:pointer-events-auto { - pointer-events: auto !important; + .lg\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .lg\:static { - position: static !important; + .lg\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .lg\:fixed { - position: fixed !important; + .lg\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .lg\:absolute { - position: absolute !important; + .lg\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .lg\:relative { - position: relative !important; + .lg\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .lg\:sticky { - position: sticky !important; + .lg\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .lg\:inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; + .lg\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .lg\:inset-1 { - top: 0.25rem !important; - right: 0.25rem !important; - bottom: 0.25rem !important; - left: 0.25rem !important; + .lg\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .lg\:inset-2 { - top: 0.5rem !important; - right: 0.5rem !important; - bottom: 0.5rem !important; - left: 0.5rem !important; + .lg\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .lg\:inset-3 { - top: 0.75rem !important; - right: 0.75rem !important; - bottom: 0.75rem !important; - left: 0.75rem !important; + .lg\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .lg\:inset-4 { - top: 1rem !important; - right: 1rem !important; - bottom: 1rem !important; - left: 1rem !important; + .lg\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .lg\:inset-5 { - top: 1.25rem !important; - right: 1.25rem !important; - bottom: 1.25rem !important; - left: 1.25rem !important; + .lg\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .lg\:inset-6 { - top: 1.5rem !important; - right: 1.5rem !important; - bottom: 1.5rem !important; - left: 1.5rem !important; + .lg\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .lg\:inset-7 { - top: 1.75rem !important; - right: 1.75rem !important; - bottom: 1.75rem !important; - left: 1.75rem !important; + .lg\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .lg\:inset-8 { - top: 2rem !important; - right: 2rem !important; - bottom: 2rem !important; - left: 2rem !important; + .lg\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .lg\:inset-9 { - top: 2.25rem !important; - right: 2.25rem !important; - bottom: 2.25rem !important; - left: 2.25rem !important; + .lg\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .lg\:inset-10 { - top: 2.5rem !important; - right: 2.5rem !important; - bottom: 2.5rem !important; - left: 2.5rem !important; + .lg\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .lg\:inset-11 { - top: 2.75rem !important; - right: 2.75rem !important; - bottom: 2.75rem !important; - left: 2.75rem !important; + .lg\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .lg\:inset-12 { - top: 3rem !important; - right: 3rem !important; - bottom: 3rem !important; - left: 3rem !important; + .lg\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .lg\:inset-14 { - top: 3.5rem !important; - right: 3.5rem !important; - bottom: 3.5rem !important; - left: 3.5rem !important; + .lg\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .lg\:inset-16 { - top: 4rem !important; - right: 4rem !important; - bottom: 4rem !important; - left: 4rem !important; + .lg\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .lg\:inset-20 { - top: 5rem !important; - right: 5rem !important; - bottom: 5rem !important; - left: 5rem !important; + .lg\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .lg\:inset-24 { - top: 6rem !important; - right: 6rem !important; - bottom: 6rem !important; - left: 6rem !important; + .lg\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .lg\:inset-28 { - top: 7rem !important; - right: 7rem !important; - bottom: 7rem !important; - left: 7rem !important; + .lg\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .lg\:inset-32 { - top: 8rem !important; - right: 8rem !important; - bottom: 8rem !important; - left: 8rem !important; + .lg\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .lg\:inset-36 { - top: 9rem !important; - right: 9rem !important; - bottom: 9rem !important; - left: 9rem !important; + .lg\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .lg\:inset-40 { - top: 10rem !important; - right: 10rem !important; - bottom: 10rem !important; - left: 10rem !important; + .lg\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .lg\:inset-44 { - top: 11rem !important; - right: 11rem !important; - bottom: 11rem !important; - left: 11rem !important; + .lg\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .lg\:inset-48 { - top: 12rem !important; - right: 12rem !important; - bottom: 12rem !important; - left: 12rem !important; + .lg\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .lg\:inset-52 { - top: 13rem !important; - right: 13rem !important; - bottom: 13rem !important; - left: 13rem !important; + .lg\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .lg\:inset-56 { - top: 14rem !important; - right: 14rem !important; - bottom: 14rem !important; - left: 14rem !important; + .lg\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .lg\:inset-60 { - top: 15rem !important; - right: 15rem !important; - bottom: 15rem !important; - left: 15rem !important; + .lg\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .lg\:inset-64 { - top: 16rem !important; - right: 16rem !important; - bottom: 16rem !important; - left: 16rem !important; + .lg\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .lg\:inset-72 { - top: 18rem !important; - right: 18rem !important; - bottom: 18rem !important; - left: 18rem !important; + .lg\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .lg\:inset-80 { - top: 20rem !important; - right: 20rem !important; - bottom: 20rem !important; - left: 20rem !important; + .lg\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .lg\:inset-96 { - top: 24rem !important; - right: 24rem !important; - bottom: 24rem !important; - left: 24rem !important; + .lg\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .lg\:inset-auto { - top: auto !important; - right: auto !important; - bottom: auto !important; - left: auto !important; + .lg\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; } - .lg\:inset-px { - top: 1px !important; - right: 1px !important; - bottom: 1px !important; - left: 1px !important; + .lg\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } - .lg\:inset-0\.5 { - top: 0.125rem !important; - right: 0.125rem !important; - bottom: 0.125rem !important; - left: 0.125rem !important; + .lg\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } - .lg\:inset-1\.5 { - top: 0.375rem !important; - right: 0.375rem !important; - bottom: 0.375rem !important; - left: 0.375rem !important; + .lg\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } - .lg\:inset-2\.5 { - top: 0.625rem !important; - right: 0.625rem !important; - bottom: 0.625rem !important; - left: 0.625rem !important; + .lg\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } - .lg\:inset-3\.5 { - top: 0.875rem !important; - right: 0.875rem !important; - bottom: 0.875rem !important; - left: 0.875rem !important; + .lg\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } - .lg\:-inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; + .lg\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } - .lg\:-inset-1 { - top: -0.25rem !important; - right: -0.25rem !important; - bottom: -0.25rem !important; - left: -0.25rem !important; + .lg\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } - .lg\:-inset-2 { - top: -0.5rem !important; - right: -0.5rem !important; - bottom: -0.5rem !important; - left: -0.5rem !important; + .lg\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } - .lg\:-inset-3 { - top: -0.75rem !important; - right: -0.75rem !important; - bottom: -0.75rem !important; - left: -0.75rem !important; + .lg\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } - .lg\:-inset-4 { - top: -1rem !important; - right: -1rem !important; - bottom: -1rem !important; - left: -1rem !important; + .lg\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } - .lg\:-inset-5 { - top: -1.25rem !important; - right: -1.25rem !important; - bottom: -1.25rem !important; - left: -1.25rem !important; + .lg\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } - .lg\:-inset-6 { - top: -1.5rem !important; - right: -1.5rem !important; - bottom: -1.5rem !important; - left: -1.5rem !important; + .lg\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } - .lg\:-inset-7 { - top: -1.75rem !important; - right: -1.75rem !important; - bottom: -1.75rem !important; - left: -1.75rem !important; + .lg\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } - .lg\:-inset-8 { - top: -2rem !important; - right: -2rem !important; - bottom: -2rem !important; - left: -2rem !important; + .lg\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; } - .lg\:-inset-9 { - top: -2.25rem !important; - right: -2.25rem !important; - bottom: -2.25rem !important; - left: -2.25rem !important; + .group:hover .lg\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; } - .lg\:-inset-10 { - top: -2.5rem !important; - right: -2.5rem !important; - bottom: -2.5rem !important; - left: -2.5rem !important; + .group:hover .lg\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } - .lg\:-inset-11 { - top: -2.75rem !important; - right: -2.75rem !important; - bottom: -2.75rem !important; - left: -2.75rem !important; + .group:hover .lg\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } - .lg\:-inset-12 { - top: -3rem !important; - right: -3rem !important; - bottom: -3rem !important; - left: -3rem !important; + .group:hover .lg\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } - .lg\:-inset-14 { - top: -3.5rem !important; - right: -3.5rem !important; - bottom: -3.5rem !important; - left: -3.5rem !important; + .group:hover .lg\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } - .lg\:-inset-16 { - top: -4rem !important; - right: -4rem !important; - bottom: -4rem !important; - left: -4rem !important; + .group:hover .lg\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } - .lg\:-inset-20 { - top: -5rem !important; - right: -5rem !important; - bottom: -5rem !important; - left: -5rem !important; + .group:hover .lg\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } - .lg\:-inset-24 { - top: -6rem !important; - right: -6rem !important; - bottom: -6rem !important; - left: -6rem !important; + .group:hover .lg\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } - .lg\:-inset-28 { - top: -7rem !important; - right: -7rem !important; - bottom: -7rem !important; - left: -7rem !important; + .group:hover .lg\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } - .lg\:-inset-32 { - top: -8rem !important; - right: -8rem !important; - bottom: -8rem !important; - left: -8rem !important; + .group:hover .lg\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } - .lg\:-inset-36 { - top: -9rem !important; - right: -9rem !important; - bottom: -9rem !important; - left: -9rem !important; + .group:hover .lg\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } - .lg\:-inset-40 { - top: -10rem !important; - right: -10rem !important; - bottom: -10rem !important; - left: -10rem !important; + .group:hover .lg\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } - .lg\:-inset-44 { - top: -11rem !important; - right: -11rem !important; - bottom: -11rem !important; - left: -11rem !important; + .group:hover .lg\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } - .lg\:-inset-48 { - top: -12rem !important; - right: -12rem !important; - bottom: -12rem !important; - left: -12rem !important; + .group:hover .lg\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } - .lg\:-inset-52 { - top: -13rem !important; - right: -13rem !important; - bottom: -13rem !important; - left: -13rem !important; + .group:hover .lg\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; } - .lg\:-inset-56 { - top: -14rem !important; - right: -14rem !important; - bottom: -14rem !important; - left: -14rem !important; + .lg\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; } - .lg\:-inset-60 { - top: -15rem !important; - right: -15rem !important; - bottom: -15rem !important; - left: -15rem !important; + .lg\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; } - .lg\:-inset-64 { - top: -16rem !important; - right: -16rem !important; - bottom: -16rem !important; - left: -16rem !important; + .lg\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; } - .lg\:-inset-72 { - top: -18rem !important; - right: -18rem !important; - bottom: -18rem !important; - left: -18rem !important; + .lg\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; } - .lg\:-inset-80 { - top: -20rem !important; - right: -20rem !important; - bottom: -20rem !important; - left: -20rem !important; + .lg\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; } - .lg\:-inset-96 { - top: -24rem !important; - right: -24rem !important; - bottom: -24rem !important; - left: -24rem !important; + .lg\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; } - .lg\:-inset-px { - top: -1px !important; - right: -1px !important; - bottom: -1px !important; - left: -1px !important; + .lg\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; } - .lg\:-inset-0\.5 { - top: -0.125rem !important; - right: -0.125rem !important; - bottom: -0.125rem !important; - left: -0.125rem !important; + .lg\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; } - .lg\:-inset-1\.5 { - top: -0.375rem !important; - right: -0.375rem !important; - bottom: -0.375rem !important; - left: -0.375rem !important; + .lg\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; } - .lg\:-inset-2\.5 { - top: -0.625rem !important; - right: -0.625rem !important; - bottom: -0.625rem !important; - left: -0.625rem !important; + .lg\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; } - .lg\:-inset-3\.5 { - top: -0.875rem !important; - right: -0.875rem !important; - bottom: -0.875rem !important; - left: -0.875rem !important; + .lg\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; } - .lg\:inset-1\/2 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; + .lg\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; } - .lg\:inset-1\/3 { - top: 33.333333% !important; - right: 33.333333% !important; - bottom: 33.333333% !important; - left: 33.333333% !important; + .lg\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; } - .lg\:inset-2\/3 { - top: 66.666667% !important; - right: 66.666667% !important; - bottom: 66.666667% !important; - left: 66.666667% !important; + .lg\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; } - .lg\:inset-1\/4 { - top: 25% !important; - right: 25% !important; - bottom: 25% !important; - left: 25% !important; + .lg\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; } - .lg\:inset-2\/4 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; + .lg\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; } - .lg\:inset-3\/4 { - top: 75% !important; - right: 75% !important; - bottom: 75% !important; - left: 75% !important; + .lg\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; } - .lg\:inset-full { - top: 100% !important; - right: 100% !important; - bottom: 100% !important; - left: 100% !important; + .lg\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; } - .lg\:-inset-1\/2 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; + .lg\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; } - .lg\:-inset-1\/3 { - top: -33.333333% !important; - right: -33.333333% !important; - bottom: -33.333333% !important; - left: -33.333333% !important; + .lg\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; } - .lg\:-inset-2\/3 { - top: -66.666667% !important; - right: -66.666667% !important; - bottom: -66.666667% !important; - left: -66.666667% !important; + .lg\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; } - .lg\:-inset-1\/4 { - top: -25% !important; - right: -25% !important; - bottom: -25% !important; - left: -25% !important; + .lg\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; } - .lg\:-inset-2\/4 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; + .lg\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; } - .lg\:-inset-3\/4 { - top: -75% !important; - right: -75% !important; - bottom: -75% !important; - left: -75% !important; + .lg\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; } - .lg\:-inset-full { - top: -100% !important; - right: -100% !important; - bottom: -100% !important; - left: -100% !important; + .lg\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; } - .lg\:inset-y-0 { - top: 0px !important; - bottom: 0px !important; + .lg\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; } - .lg\:inset-x-0 { - right: 0px !important; - left: 0px !important; + .lg\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; } - .lg\:inset-y-1 { - top: 0.25rem !important; - bottom: 0.25rem !important; + .lg\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; } - .lg\:inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; + .lg\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; } - .lg\:inset-y-2 { - top: 0.5rem !important; - bottom: 0.5rem !important; + .lg\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; } - .lg\:inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; + .lg\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; } - .lg\:inset-y-3 { - top: 0.75rem !important; - bottom: 0.75rem !important; + .lg\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; } - .lg\:inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; + .lg\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; } - .lg\:inset-y-4 { - top: 1rem !important; - bottom: 1rem !important; + .lg\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; } - .lg\:inset-x-4 { - right: 1rem !important; - left: 1rem !important; + .lg\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; } - .lg\:inset-y-5 { - top: 1.25rem !important; - bottom: 1.25rem !important; + .lg\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; } - .lg\:inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; + .lg\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; } - .lg\:inset-y-6 { - top: 1.5rem !important; - bottom: 1.5rem !important; + .lg\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; } - .lg\:inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; + .lg\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; } - .lg\:inset-y-7 { - top: 1.75rem !important; - bottom: 1.75rem !important; + .lg\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; } - .lg\:inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; + .lg\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; } - .lg\:inset-y-8 { - top: 2rem !important; - bottom: 2rem !important; + .lg\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; } - .lg\:inset-x-8 { - right: 2rem !important; - left: 2rem !important; + .lg\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; } - .lg\:inset-y-9 { - top: 2.25rem !important; - bottom: 2.25rem !important; + .lg\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; } - .lg\:inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; + .lg\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; } - .lg\:inset-y-10 { - top: 2.5rem !important; - bottom: 2.5rem !important; + .lg\:bg-none { + background-image: none !important; } - .lg\:inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; + .lg\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; } - .lg\:inset-y-11 { - top: 2.75rem !important; - bottom: 2.75rem !important; + .lg\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; } - .lg\:inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; + .lg\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; } - .lg\:inset-y-12 { - top: 3rem !important; - bottom: 3rem !important; + .lg\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; } - .lg\:inset-x-12 { - right: 3rem !important; - left: 3rem !important; + .lg\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; } - .lg\:inset-y-14 { - top: 3.5rem !important; - bottom: 3.5rem !important; + .lg\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; } - .lg\:inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; + .lg\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; } - .lg\:inset-y-16 { - top: 4rem !important; - bottom: 4rem !important; + .lg\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; } - .lg\:inset-x-16 { - right: 4rem !important; - left: 4rem !important; + .lg\:from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:inset-y-20 { - top: 5rem !important; - bottom: 5rem !important; + .lg\:from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:inset-x-20 { - right: 5rem !important; - left: 5rem !important; + .lg\:from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:inset-y-24 { - top: 6rem !important; - bottom: 6rem !important; + .lg\:from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:inset-x-24 { - right: 6rem !important; - left: 6rem !important; + .lg\:from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .lg\:inset-y-28 { - top: 7rem !important; - bottom: 7rem !important; + .lg\:from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .lg\:inset-x-28 { - right: 7rem !important; - left: 7rem !important; + .lg\:from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .lg\:inset-y-32 { - top: 8rem !important; - bottom: 8rem !important; + .lg\:from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .lg\:inset-x-32 { - right: 8rem !important; - left: 8rem !important; + .lg\:from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .lg\:inset-y-36 { - top: 9rem !important; - bottom: 9rem !important; + .lg\:from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .lg\:inset-x-36 { - right: 9rem !important; - left: 9rem !important; + .lg\:from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .lg\:inset-y-40 { - top: 10rem !important; - bottom: 10rem !important; + .lg\:from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .lg\:inset-x-40 { - right: 10rem !important; - left: 10rem !important; + .lg\:from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .lg\:inset-y-44 { - top: 11rem !important; - bottom: 11rem !important; + .lg\:from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .lg\:inset-x-44 { - right: 11rem !important; - left: 11rem !important; + .lg\:from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .lg\:inset-y-48 { - top: 12rem !important; - bottom: 12rem !important; + .lg\:from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .lg\:inset-x-48 { - right: 12rem !important; - left: 12rem !important; + .lg\:from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .lg\:inset-y-52 { - top: 13rem !important; - bottom: 13rem !important; + .lg\:from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .lg\:inset-x-52 { - right: 13rem !important; - left: 13rem !important; + .lg\:from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .lg\:inset-y-56 { - top: 14rem !important; - bottom: 14rem !important; + .lg\:from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .lg\:inset-x-56 { - right: 14rem !important; - left: 14rem !important; + .lg\:from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .lg\:inset-y-60 { - top: 15rem !important; - bottom: 15rem !important; + .lg\:from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .lg\:inset-x-60 { - right: 15rem !important; - left: 15rem !important; + .lg\:from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .lg\:inset-y-64 { - top: 16rem !important; - bottom: 16rem !important; + .lg\:from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .lg\:inset-x-64 { - right: 16rem !important; - left: 16rem !important; + .lg\:from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .lg\:inset-y-72 { - top: 18rem !important; - bottom: 18rem !important; + .lg\:from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .lg\:inset-x-72 { - right: 18rem !important; - left: 18rem !important; + .lg\:from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .lg\:inset-y-80 { - top: 20rem !important; - bottom: 20rem !important; + .lg\:from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .lg\:inset-x-80 { - right: 20rem !important; - left: 20rem !important; + .lg\:from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .lg\:inset-y-96 { - top: 24rem !important; - bottom: 24rem !important; + .lg\:from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .lg\:inset-x-96 { - right: 24rem !important; - left: 24rem !important; + .lg\:from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .lg\:inset-y-auto { - top: auto !important; - bottom: auto !important; + .lg\:from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .lg\:inset-x-auto { - right: auto !important; - left: auto !important; + .lg\:from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .lg\:inset-y-px { - top: 1px !important; - bottom: 1px !important; + .lg\:from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .lg\:inset-x-px { - right: 1px !important; - left: 1px !important; + .lg\:from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .lg\:inset-y-0\.5 { - top: 0.125rem !important; - bottom: 0.125rem !important; + .lg\:from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .lg\:inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; + .lg\:from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .lg\:inset-y-1\.5 { - top: 0.375rem !important; - bottom: 0.375rem !important; + .lg\:from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .lg\:inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; + .lg\:from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .lg\:inset-y-2\.5 { - top: 0.625rem !important; - bottom: 0.625rem !important; + .lg\:from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .lg\:inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; + .lg\:from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .lg\:inset-y-3\.5 { - top: 0.875rem !important; - bottom: 0.875rem !important; + .lg\:from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .lg\:inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; + .lg\:from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .lg\:-inset-y-0 { - top: 0px !important; - bottom: 0px !important; + .lg\:from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .lg\:-inset-x-0 { - right: 0px !important; - left: 0px !important; + .lg\:from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .lg\:-inset-y-1 { - top: -0.25rem !important; - bottom: -0.25rem !important; + .lg\:from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .lg\:-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; + .lg\:from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .lg\:-inset-y-2 { - top: -0.5rem !important; - bottom: -0.5rem !important; + .lg\:from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .lg\:-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; + .lg\:from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .lg\:-inset-y-3 { - top: -0.75rem !important; - bottom: -0.75rem !important; + .lg\:from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .lg\:-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; + .lg\:from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .lg\:-inset-y-4 { - top: -1rem !important; - bottom: -1rem !important; + .lg\:from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .lg\:-inset-x-4 { - right: -1rem !important; - left: -1rem !important; + .lg\:from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .lg\:-inset-y-5 { - top: -1.25rem !important; - bottom: -1.25rem !important; + .lg\:from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .lg\:-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; + .lg\:from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .lg\:-inset-y-6 { - top: -1.5rem !important; - bottom: -1.5rem !important; + .lg\:from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .lg\:-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; + .lg\:from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .lg\:-inset-y-7 { - top: -1.75rem !important; - bottom: -1.75rem !important; + .lg\:from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .lg\:-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; + .lg\:from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .lg\:-inset-y-8 { - top: -2rem !important; - bottom: -2rem !important; + .lg\:from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .lg\:-inset-x-8 { - right: -2rem !important; - left: -2rem !important; + .lg\:from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .lg\:-inset-y-9 { - top: -2.25rem !important; - bottom: -2.25rem !important; + .lg\:from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .lg\:-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; + .lg\:from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .lg\:-inset-y-10 { - top: -2.5rem !important; - bottom: -2.5rem !important; + .lg\:from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .lg\:-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; + .lg\:from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .lg\:-inset-y-11 { - top: -2.75rem !important; - bottom: -2.75rem !important; + .lg\:from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .lg\:-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; + .lg\:from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .lg\:-inset-y-12 { - top: -3rem !important; - bottom: -3rem !important; + .lg\:from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .lg\:-inset-x-12 { - right: -3rem !important; - left: -3rem !important; + .lg\:from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .lg\:-inset-y-14 { - top: -3.5rem !important; - bottom: -3.5rem !important; + .lg\:from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .lg\:-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; + .lg\:from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .lg\:-inset-y-16 { - top: -4rem !important; - bottom: -4rem !important; + .lg\:from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .lg\:-inset-x-16 { - right: -4rem !important; - left: -4rem !important; + .lg\:from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .lg\:-inset-y-20 { - top: -5rem !important; - bottom: -5rem !important; + .lg\:from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .lg\:-inset-x-20 { - right: -5rem !important; - left: -5rem !important; + .lg\:from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .lg\:-inset-y-24 { - top: -6rem !important; - bottom: -6rem !important; + .lg\:from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .lg\:-inset-x-24 { - right: -6rem !important; - left: -6rem !important; + .lg\:from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .lg\:-inset-y-28 { - top: -7rem !important; - bottom: -7rem !important; + .lg\:from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .lg\:-inset-x-28 { - right: -7rem !important; - left: -7rem !important; + .lg\:from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .lg\:-inset-y-32 { - top: -8rem !important; - bottom: -8rem !important; + .lg\:from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .lg\:-inset-x-32 { - right: -8rem !important; - left: -8rem !important; + .lg\:from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .lg\:-inset-y-36 { - top: -9rem !important; - bottom: -9rem !important; + .lg\:from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .lg\:-inset-x-36 { - right: -9rem !important; - left: -9rem !important; + .lg\:from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .lg\:-inset-y-40 { - top: -10rem !important; - bottom: -10rem !important; + .lg\:from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .lg\:-inset-x-40 { - right: -10rem !important; - left: -10rem !important; + .lg\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:-inset-y-44 { - top: -11rem !important; - bottom: -11rem !important; + .lg\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:-inset-x-44 { - right: -11rem !important; - left: -11rem !important; + .lg\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:-inset-y-48 { - top: -12rem !important; - bottom: -12rem !important; + .lg\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:-inset-x-48 { - right: -12rem !important; - left: -12rem !important; + .lg\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .lg\:-inset-y-52 { - top: -13rem !important; - bottom: -13rem !important; + .lg\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .lg\:-inset-x-52 { - right: -13rem !important; - left: -13rem !important; + .lg\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .lg\:-inset-y-56 { - top: -14rem !important; - bottom: -14rem !important; + .lg\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .lg\:-inset-x-56 { - right: -14rem !important; - left: -14rem !important; + .lg\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .lg\:-inset-y-60 { - top: -15rem !important; - bottom: -15rem !important; + .lg\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .lg\:-inset-x-60 { - right: -15rem !important; - left: -15rem !important; + .lg\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .lg\:-inset-y-64 { - top: -16rem !important; - bottom: -16rem !important; + .lg\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .lg\:-inset-x-64 { - right: -16rem !important; - left: -16rem !important; + .lg\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .lg\:-inset-y-72 { - top: -18rem !important; - bottom: -18rem !important; + .lg\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .lg\:-inset-x-72 { - right: -18rem !important; - left: -18rem !important; + .lg\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .lg\:-inset-y-80 { - top: -20rem !important; - bottom: -20rem !important; + .lg\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .lg\:-inset-x-80 { - right: -20rem !important; - left: -20rem !important; + .lg\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .lg\:-inset-y-96 { - top: -24rem !important; - bottom: -24rem !important; + .lg\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .lg\:-inset-x-96 { - right: -24rem !important; - left: -24rem !important; + .lg\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .lg\:-inset-y-px { - top: -1px !important; - bottom: -1px !important; + .lg\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .lg\:-inset-x-px { - right: -1px !important; - left: -1px !important; + .lg\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .lg\:-inset-y-0\.5 { - top: -0.125rem !important; - bottom: -0.125rem !important; + .lg\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .lg\:-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; + .lg\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .lg\:-inset-y-1\.5 { - top: -0.375rem !important; - bottom: -0.375rem !important; + .lg\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .lg\:-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; + .lg\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .lg\:-inset-y-2\.5 { - top: -0.625rem !important; - bottom: -0.625rem !important; + .lg\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .lg\:-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; + .lg\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .lg\:-inset-y-3\.5 { - top: -0.875rem !important; - bottom: -0.875rem !important; + .lg\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .lg\:-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; + .lg\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .lg\:inset-y-1\/2 { - top: 50% !important; - bottom: 50% !important; + .lg\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .lg\:inset-x-1\/2 { - right: 50% !important; - left: 50% !important; + .lg\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .lg\:inset-y-1\/3 { - top: 33.333333% !important; - bottom: 33.333333% !important; + .lg\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .lg\:inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; + .lg\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .lg\:inset-y-2\/3 { - top: 66.666667% !important; - bottom: 66.666667% !important; + .lg\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .lg\:inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; + .lg\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .lg\:inset-y-1\/4 { - top: 25% !important; - bottom: 25% !important; + .lg\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .lg\:inset-x-1\/4 { - right: 25% !important; - left: 25% !important; + .lg\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .lg\:inset-y-2\/4 { - top: 50% !important; - bottom: 50% !important; + .lg\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .lg\:inset-x-2\/4 { - right: 50% !important; - left: 50% !important; + .lg\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .lg\:inset-y-3\/4 { - top: 75% !important; - bottom: 75% !important; + .lg\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .lg\:inset-x-3\/4 { - right: 75% !important; - left: 75% !important; + .lg\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .lg\:inset-y-full { - top: 100% !important; - bottom: 100% !important; + .lg\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .lg\:inset-x-full { - right: 100% !important; - left: 100% !important; + .lg\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .lg\:-inset-y-1\/2 { - top: -50% !important; - bottom: -50% !important; + .lg\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .lg\:-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; + .lg\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .lg\:-inset-y-1\/3 { - top: -33.333333% !important; - bottom: -33.333333% !important; + .lg\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .lg\:-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; + .lg\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .lg\:-inset-y-2\/3 { - top: -66.666667% !important; - bottom: -66.666667% !important; + .lg\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .lg\:-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; + .lg\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .lg\:-inset-y-1\/4 { - top: -25% !important; - bottom: -25% !important; + .lg\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .lg\:-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; + .lg\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .lg\:-inset-y-2\/4 { - top: -50% !important; - bottom: -50% !important; + .lg\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .lg\:-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; + .lg\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .lg\:-inset-y-3\/4 { - top: -75% !important; - bottom: -75% !important; + .lg\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .lg\:-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; + .lg\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .lg\:-inset-y-full { - top: -100% !important; - bottom: -100% !important; + .lg\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .lg\:-inset-x-full { - right: -100% !important; - left: -100% !important; + .lg\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .lg\:top-0 { - top: 0px !important; + .lg\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .lg\:right-0 { - right: 0px !important; + .lg\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .lg\:bottom-0 { - bottom: 0px !important; + .lg\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .lg\:left-0 { - left: 0px !important; + .lg\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .lg\:top-1 { - top: 0.25rem !important; + .lg\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .lg\:right-1 { - right: 0.25rem !important; + .lg\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .lg\:bottom-1 { - bottom: 0.25rem !important; + .lg\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .lg\:left-1 { - left: 0.25rem !important; + .lg\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .lg\:top-2 { - top: 0.5rem !important; + .lg\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .lg\:right-2 { - right: 0.5rem !important; + .lg\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .lg\:bottom-2 { - bottom: 0.5rem !important; + .lg\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .lg\:left-2 { - left: 0.5rem !important; + .lg\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .lg\:top-3 { - top: 0.75rem !important; + .lg\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .lg\:right-3 { - right: 0.75rem !important; + .lg\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .lg\:bottom-3 { - bottom: 0.75rem !important; + .lg\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .lg\:left-3 { - left: 0.75rem !important; + .lg\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .lg\:top-4 { - top: 1rem !important; + .lg\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .lg\:right-4 { - right: 1rem !important; + .lg\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .lg\:bottom-4 { - bottom: 1rem !important; + .lg\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .lg\:left-4 { - left: 1rem !important; + .lg\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .lg\:top-5 { - top: 1.25rem !important; + .lg\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .lg\:right-5 { - right: 1.25rem !important; + .lg\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .lg\:bottom-5 { - bottom: 1.25rem !important; + .lg\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .lg\:left-5 { - left: 1.25rem !important; + .lg\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .lg\:top-6 { - top: 1.5rem !important; + .lg\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .lg\:right-6 { - right: 1.5rem !important; + .lg\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .lg\:bottom-6 { - bottom: 1.5rem !important; + .lg\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .lg\:left-6 { - left: 1.5rem !important; + .lg\:to-transparent { + --tw-gradient-to: transparent !important; } - .lg\:top-7 { - top: 1.75rem !important; + .lg\:to-current { + --tw-gradient-to: currentColor !important; } - .lg\:right-7 { - right: 1.75rem !important; + .lg\:to-black { + --tw-gradient-to: #000 !important; } - .lg\:bottom-7 { - bottom: 1.75rem !important; + .lg\:to-white { + --tw-gradient-to: #fff !important; } - .lg\:left-7 { - left: 1.75rem !important; + .lg\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; } - .lg\:top-8 { - top: 2rem !important; + .lg\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; } - .lg\:right-8 { - right: 2rem !important; + .lg\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; } - .lg\:bottom-8 { - bottom: 2rem !important; + .lg\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; } - .lg\:left-8 { - left: 2rem !important; + .lg\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; } - .lg\:top-9 { - top: 2.25rem !important; + .lg\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; } - .lg\:right-9 { - right: 2.25rem !important; + .lg\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; } - .lg\:bottom-9 { - bottom: 2.25rem !important; + .lg\:to-gray-700 { + --tw-gradient-to: #374151 !important; } - .lg\:left-9 { - left: 2.25rem !important; + .lg\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; } - .lg\:top-10 { - top: 2.5rem !important; + .lg\:to-gray-900 { + --tw-gradient-to: #111827 !important; } - .lg\:right-10 { - right: 2.5rem !important; + .lg\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; } - .lg\:bottom-10 { - bottom: 2.5rem !important; + .lg\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; } - .lg\:left-10 { - left: 2.5rem !important; + .lg\:to-red-200 { + --tw-gradient-to: #fecaca !important; } - .lg\:top-11 { - top: 2.75rem !important; + .lg\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; } - .lg\:right-11 { - right: 2.75rem !important; + .lg\:to-red-400 { + --tw-gradient-to: #f87171 !important; } - .lg\:bottom-11 { - bottom: 2.75rem !important; + .lg\:to-red-500 { + --tw-gradient-to: #ef4444 !important; } - .lg\:left-11 { - left: 2.75rem !important; + .lg\:to-red-600 { + --tw-gradient-to: #dc2626 !important; } - .lg\:top-12 { - top: 3rem !important; + .lg\:to-red-700 { + --tw-gradient-to: #b91c1c !important; } - .lg\:right-12 { - right: 3rem !important; + .lg\:to-red-800 { + --tw-gradient-to: #991b1b !important; } - .lg\:bottom-12 { - bottom: 3rem !important; + .lg\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; } - .lg\:left-12 { - left: 3rem !important; + .lg\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; } - .lg\:top-14 { - top: 3.5rem !important; + .lg\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; } - .lg\:right-14 { - right: 3.5rem !important; + .lg\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; } - .lg\:bottom-14 { - bottom: 3.5rem !important; + .lg\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; } - .lg\:left-14 { - left: 3.5rem !important; + .lg\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; } - .lg\:top-16 { - top: 4rem !important; + .lg\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; } - .lg\:right-16 { - right: 4rem !important; + .lg\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; } - .lg\:bottom-16 { - bottom: 4rem !important; + .lg\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; } - .lg\:left-16 { - left: 4rem !important; + .lg\:to-yellow-800 { + --tw-gradient-to: #92400e !important; } - .lg\:top-20 { - top: 5rem !important; + .lg\:to-yellow-900 { + --tw-gradient-to: #78350f !important; } - .lg\:right-20 { - right: 5rem !important; + .lg\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; } - .lg\:bottom-20 { - bottom: 5rem !important; + .lg\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; } - .lg\:left-20 { - left: 5rem !important; + .lg\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; } - .lg\:top-24 { - top: 6rem !important; + .lg\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; } - .lg\:right-24 { - right: 6rem !important; + .lg\:to-green-400 { + --tw-gradient-to: #34d399 !important; } - .lg\:bottom-24 { - bottom: 6rem !important; + .lg\:to-green-500 { + --tw-gradient-to: #10b981 !important; } - .lg\:left-24 { - left: 6rem !important; + .lg\:to-green-600 { + --tw-gradient-to: #059669 !important; } - .lg\:top-28 { - top: 7rem !important; + .lg\:to-green-700 { + --tw-gradient-to: #047857 !important; } - .lg\:right-28 { - right: 7rem !important; + .lg\:to-green-800 { + --tw-gradient-to: #065f46 !important; } - .lg\:bottom-28 { - bottom: 7rem !important; + .lg\:to-green-900 { + --tw-gradient-to: #064e3b !important; } - .lg\:left-28 { - left: 7rem !important; + .lg\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; } - .lg\:top-32 { - top: 8rem !important; + .lg\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; } - .lg\:right-32 { - right: 8rem !important; + .lg\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; } - .lg\:bottom-32 { - bottom: 8rem !important; + .lg\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; } - .lg\:left-32 { - left: 8rem !important; + .lg\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; } - .lg\:top-36 { - top: 9rem !important; + .lg\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; } - .lg\:right-36 { - right: 9rem !important; + .lg\:to-blue-600 { + --tw-gradient-to: #2563eb !important; } - .lg\:bottom-36 { - bottom: 9rem !important; + .lg\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; } - .lg\:left-36 { - left: 9rem !important; + .lg\:to-blue-800 { + --tw-gradient-to: #1e40af !important; } - .lg\:top-40 { - top: 10rem !important; + .lg\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; } - .lg\:right-40 { - right: 10rem !important; + .lg\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; } - .lg\:bottom-40 { - bottom: 10rem !important; + .lg\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; } - .lg\:left-40 { - left: 10rem !important; + .lg\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; } - .lg\:top-44 { - top: 11rem !important; + .lg\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; } - .lg\:right-44 { - right: 11rem !important; + .lg\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; } - .lg\:bottom-44 { - bottom: 11rem !important; + .lg\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; } - .lg\:left-44 { - left: 11rem !important; + .lg\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; } - .lg\:top-48 { - top: 12rem !important; + .lg\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; } - .lg\:right-48 { - right: 12rem !important; + .lg\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; } - .lg\:bottom-48 { - bottom: 12rem !important; + .lg\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; } - .lg\:left-48 { - left: 12rem !important; + .lg\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; } - .lg\:top-52 { - top: 13rem !important; + .lg\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; } - .lg\:right-52 { - right: 13rem !important; + .lg\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; } - .lg\:bottom-52 { - bottom: 13rem !important; + .lg\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; } - .lg\:left-52 { - left: 13rem !important; + .lg\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; } - .lg\:top-56 { - top: 14rem !important; + .lg\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; } - .lg\:right-56 { - right: 14rem !important; + .lg\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; } - .lg\:bottom-56 { - bottom: 14rem !important; + .lg\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; } - .lg\:left-56 { - left: 14rem !important; + .lg\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; } - .lg\:top-60 { - top: 15rem !important; + .lg\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; } - .lg\:right-60 { - right: 15rem !important; + .lg\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; } - .lg\:bottom-60 { - bottom: 15rem !important; + .lg\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; } - .lg\:left-60 { - left: 15rem !important; + .lg\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; } - .lg\:top-64 { - top: 16rem !important; + .lg\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; } - .lg\:right-64 { - right: 16rem !important; + .lg\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; } - .lg\:bottom-64 { - bottom: 16rem !important; + .lg\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; } - .lg\:left-64 { - left: 16rem !important; + .lg\:to-pink-600 { + --tw-gradient-to: #db2777 !important; } - .lg\:top-72 { - top: 18rem !important; + .lg\:to-pink-700 { + --tw-gradient-to: #be185d !important; } - .lg\:right-72 { - right: 18rem !important; + .lg\:to-pink-800 { + --tw-gradient-to: #9d174d !important; } - .lg\:bottom-72 { - bottom: 18rem !important; + .lg\:to-pink-900 { + --tw-gradient-to: #831843 !important; } - .lg\:left-72 { - left: 18rem !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\:top-80 { - top: 20rem !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\:right-80 { - right: 20rem !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\:bottom-80 { - bottom: 20rem !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\:left-80 { - left: 20rem !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\:top-96 { - top: 24rem !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\:right-96 { - right: 24rem !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\:bottom-96 { - bottom: 24rem !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\:left-96 { - left: 24rem !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\:top-auto { - top: auto !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\:right-auto { - right: auto !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\:bottom-auto { - bottom: auto !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\:left-auto { - left: auto !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\:top-px { - top: 1px !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\:right-px { - right: 1px !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\:bottom-px { - bottom: 1px !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\:left-px { - left: 1px !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\:top-0\.5 { - top: 0.125rem !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\:right-0\.5 { - right: 0.125rem !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\:bottom-0\.5 { - bottom: 0.125rem !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\:left-0\.5 { - left: 0.125rem !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\:top-1\.5 { - top: 0.375rem !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\:right-1\.5 { - right: 0.375rem !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\:bottom-1\.5 { - bottom: 0.375rem !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\:left-1\.5 { - left: 0.375rem !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\:top-2\.5 { - top: 0.625rem !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\:right-2\.5 { - right: 0.625rem !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\:bottom-2\.5 { - bottom: 0.625rem !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\:left-2\.5 { - left: 0.625rem !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\:top-3\.5 { - top: 0.875rem !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\:right-3\.5 { - right: 0.875rem !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\:bottom-3\.5 { - bottom: 0.875rem !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\:left-3\.5 { - left: 0.875rem !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\:-top-0 { - top: 0px !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\:-right-0 { - right: 0px !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\:-bottom-0 { - bottom: 0px !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\:-left-0 { - left: 0px !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\:-top-1 { - top: -0.25rem !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\:-right-1 { - right: -0.25rem !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\:-bottom-1 { - bottom: -0.25rem !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\:-left-1 { - left: -0.25rem !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\:-top-2 { - top: -0.5rem !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\:-right-2 { - right: -0.5rem !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\:-bottom-2 { - bottom: -0.5rem !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\:-left-2 { - left: -0.5rem !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\:-top-3 { - top: -0.75rem !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\:-right-3 { - right: -0.75rem !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\:-bottom-3 { - bottom: -0.75rem !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\:-left-3 { - left: -0.75rem !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\:-top-4 { - top: -1rem !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\:-right-4 { - right: -1rem !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\:-bottom-4 { - bottom: -1rem !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\:-left-4 { - left: -1rem !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\:-top-5 { - top: -1.25rem !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\:-right-5 { - right: -1.25rem !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\:-bottom-5 { - bottom: -1.25rem !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\:-left-5 { - left: -1.25rem !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\:-top-6 { - top: -1.5rem !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\:-right-6 { - right: -1.5rem !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\:-bottom-6 { - bottom: -1.5rem !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\:-left-6 { - left: -1.5rem !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\:-top-7 { - top: -1.75rem !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\:-right-7 { - right: -1.75rem !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\:-bottom-7 { - bottom: -1.75rem !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\:-left-7 { - left: -1.75rem !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\:-top-8 { - top: -2rem !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\:-right-8 { - right: -2rem !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\:-bottom-8 { - bottom: -2rem !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\:-left-8 { - left: -2rem !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\:-top-9 { - top: -2.25rem !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\:-right-9 { - right: -2.25rem !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\:-bottom-9 { - bottom: -2.25rem !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\:-left-9 { - left: -2.25rem !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\:-top-10 { - top: -2.5rem !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\:-right-10 { - right: -2.5rem !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\:-bottom-10 { - bottom: -2.5rem !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\:-left-10 { - left: -2.5rem !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\:-top-11 { - top: -2.75rem !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\:-right-11 { - right: -2.75rem !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\:-bottom-11 { - bottom: -2.75rem !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\:-left-11 { - left: -2.75rem !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\:-top-12 { - top: -3rem !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\:-right-12 { - right: -3rem !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\:-bottom-12 { - bottom: -3rem !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\:-left-12 { - left: -3rem !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\:-top-14 { - top: -3.5rem !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\:-right-14 { - right: -3.5rem !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\:-bottom-14 { - bottom: -3.5rem !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\:-left-14 { - left: -3.5rem !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\:-top-16 { - top: -4rem !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\:-right-16 { - right: -4rem !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\:-bottom-16 { - bottom: -4rem !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\:-left-16 { - left: -4rem !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\:-top-20 { - top: -5rem !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\:-right-20 { - right: -5rem !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\:-bottom-20 { - bottom: -5rem !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\:-left-20 { - left: -5rem !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\:-top-24 { - top: -6rem !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\:-right-24 { - right: -6rem !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\:-bottom-24 { - bottom: -6rem !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\:-left-24 { - left: -6rem !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\:-top-28 { - top: -7rem !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\:-right-28 { - right: -7rem !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\:-bottom-28 { - bottom: -7rem !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\:-left-28 { - left: -7rem !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\:-top-32 { - top: -8rem !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\:-right-32 { - right: -8rem !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\:-bottom-32 { - bottom: -8rem !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\:-left-32 { - left: -8rem !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\:-top-36 { - top: -9rem !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\:-right-36 { - right: -9rem !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\:-bottom-36 { - bottom: -9rem !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\:-left-36 { - left: -9rem !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\:-top-40 { - top: -10rem !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\:-right-40 { - right: -10rem !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\:-bottom-40 { - bottom: -10rem !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\:-left-40 { - left: -10rem !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\:-top-44 { - top: -11rem !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\:-right-44 { - right: -11rem !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\:-bottom-44 { - bottom: -11rem !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\:-left-44 { - left: -11rem !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\:-top-48 { - top: -12rem !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\:-right-48 { - right: -12rem !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\:-bottom-48 { - bottom: -12rem !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\:-left-48 { - left: -12rem !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\:-top-52 { - top: -13rem !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\:-right-52 { - right: -13rem !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\:-bottom-52 { - bottom: -13rem !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\:-left-52 { - left: -13rem !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\:-top-56 { - top: -14rem !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\:-right-56 { - right: -14rem !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\:-bottom-56 { - bottom: -14rem !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\:-left-56 { - left: -14rem !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\:-top-60 { - top: -15rem !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\:-right-60 { - right: -15rem !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\:-bottom-60 { - bottom: -15rem !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\:-left-60 { - left: -15rem !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\:-top-64 { - top: -16rem !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\:-right-64 { - right: -16rem !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\:-bottom-64 { - bottom: -16rem !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\:-left-64 { - left: -16rem !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\:-top-72 { - top: -18rem !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\:-right-72 { - right: -18rem !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\:-bottom-72 { - bottom: -18rem !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\:-left-72 { - left: -18rem !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\:-top-80 { - top: -20rem !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\:-right-80 { - right: -20rem !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\:-bottom-80 { - bottom: -20rem !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\:-left-80 { - left: -20rem !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\:-top-96 { - top: -24rem !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\:-right-96 { - right: -24rem !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\:-bottom-96 { - bottom: -24rem !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\:-left-96 { - left: -24rem !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\:-top-px { - top: -1px !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\:-right-px { - right: -1px !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\:-bottom-px { - bottom: -1px !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\:-left-px { - left: -1px !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\:-top-0\.5 { - top: -0.125rem !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\:-right-0\.5 { - right: -0.125rem !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\:-bottom-0\.5 { - bottom: -0.125rem !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\:-left-0\.5 { - left: -0.125rem !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\:-top-1\.5 { - top: -0.375rem !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\:-right-1\.5 { - right: -0.375rem !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\:-bottom-1\.5 { - bottom: -0.375rem !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\:-left-1\.5 { - left: -0.375rem !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\:-top-2\.5 { - top: -0.625rem !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\:-right-2\.5 { - right: -0.625rem !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\:-bottom-2\.5 { - bottom: -0.625rem !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\:-left-2\.5 { - left: -0.625rem !important; + .lg\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; } - .lg\:-top-3\.5 { - top: -0.875rem !important; + .lg\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; } - .lg\:-right-3\.5 { - right: -0.875rem !important; + .lg\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; } - .lg\:-bottom-3\.5 { - bottom: -0.875rem !important; + .lg\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; } - .lg\:-left-3\.5 { - left: -0.875rem !important; + .lg\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; } - .lg\:top-1\/2 { - top: 50% !important; + .lg\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; } - .lg\:right-1\/2 { - right: 50% !important; + .lg\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; } - .lg\:bottom-1\/2 { - bottom: 50% !important; + .lg\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; } - .lg\:left-1\/2 { - left: 50% !important; + .lg\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; } - .lg\:top-1\/3 { - top: 33.333333% !important; + .lg\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; } - .lg\:right-1\/3 { - right: 33.333333% !important; + .lg\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; } - .lg\:bottom-1\/3 { - bottom: 33.333333% !important; + .lg\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; } - .lg\:left-1\/3 { - left: 33.333333% !important; + .lg\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; } - .lg\:top-2\/3 { - top: 66.666667% !important; + .lg\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; } - .lg\:right-2\/3 { - right: 66.666667% !important; + .lg\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; } - .lg\:bottom-2\/3 { - bottom: 66.666667% !important; + .lg\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; } - .lg\:left-2\/3 { - left: 66.666667% !important; + .lg\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; } - .lg\:top-1\/4 { - top: 25% !important; + .lg\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; } - .lg\:right-1\/4 { - right: 25% !important; + .lg\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; } - .lg\:bottom-1\/4 { - bottom: 25% !important; + .lg\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; } - .lg\:left-1\/4 { - left: 25% !important; + .lg\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; } - .lg\:top-2\/4 { - top: 50% !important; + .lg\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; } - .lg\:right-2\/4 { - right: 50% !important; + .lg\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; } - .lg\:bottom-2\/4 { - bottom: 50% !important; + .lg\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; } - .lg\:left-2\/4 { - left: 50% !important; + .lg\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; } - .lg\:top-3\/4 { - top: 75% !important; + .lg\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; } - .lg\:right-3\/4 { - right: 75% !important; + .lg\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; } - .lg\:bottom-3\/4 { - bottom: 75% !important; + .lg\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; } - .lg\:left-3\/4 { - left: 75% !important; + .lg\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; } - .lg\:top-full { - top: 100% !important; + .lg\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; } - .lg\:right-full { - right: 100% !important; + .lg\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; } - .lg\:bottom-full { - bottom: 100% !important; + .lg\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; } - .lg\:left-full { - left: 100% !important; + .lg\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; } - .lg\:-top-1\/2 { - top: -50% !important; + .lg\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; } - .lg\:-right-1\/2 { - right: -50% !important; + .lg\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; } - .lg\:-bottom-1\/2 { - bottom: -50% !important; + .lg\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; } - .lg\:-left-1\/2 { - left: -50% !important; + .lg\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; } - .lg\:-top-1\/3 { - top: -33.333333% !important; + .lg\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; } - .lg\:-right-1\/3 { - right: -33.333333% !important; + .lg\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; } - .lg\:-bottom-1\/3 { - bottom: -33.333333% !important; + .lg\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; } - .lg\:-left-1\/3 { - left: -33.333333% !important; + .lg\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; } - .lg\:-top-2\/3 { - top: -66.666667% !important; + .lg\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; } - .lg\:-right-2\/3 { - right: -66.666667% !important; + .lg\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; } - .lg\:-bottom-2\/3 { - bottom: -66.666667% !important; + .lg\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; } - .lg\:-left-2\/3 { - left: -66.666667% !important; + .lg\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; } - .lg\:-top-1\/4 { - top: -25% !important; + .lg\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; } - .lg\:-right-1\/4 { - right: -25% !important; + .lg\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; } - .lg\:-bottom-1\/4 { - bottom: -25% !important; + .lg\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; } - .lg\:-left-1\/4 { - left: -25% !important; + .lg\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; } - .lg\:-top-2\/4 { - top: -50% !important; + .lg\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; } - .lg\:-right-2\/4 { - right: -50% !important; + .lg\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; } - .lg\:-bottom-2\/4 { - bottom: -50% !important; + .lg\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; } - .lg\:-left-2\/4 { - left: -50% !important; + .lg\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; } - .lg\:-top-3\/4 { - top: -75% !important; + .lg\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; } - .lg\:-right-3\/4 { - right: -75% !important; + .lg\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; } - .lg\:-bottom-3\/4 { - bottom: -75% !important; + .lg\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; } - .lg\:-left-3\/4 { - left: -75% !important; + .lg\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; } - .lg\:-top-full { - top: -100% !important; + .lg\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; } - .lg\:-right-full { - right: -100% !important; + .lg\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; } - .lg\:-bottom-full { - bottom: -100% !important; + .lg\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; } - .lg\:-left-full { - left: -100% !important; + .lg\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; } - .lg\:resize-none { - resize: none !important; + .lg\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; } - .lg\:resize-y { - resize: vertical !important; + .lg\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; } - .lg\:resize-x { - resize: horizontal !important; + .lg\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; } - .lg\:resize { - resize: both !important; + .lg\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; } - .lg\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; } - .lg\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; } - .lg\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; } - .lg\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; } - .lg\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; } - .lg\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; } - .lg\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; } - .lg\:shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; } - .group:hover .lg\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; } - .group:hover .lg\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; } - .group:hover .lg\:group-hover\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; } - .group:hover .lg\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; } - .group:hover .lg\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; } - .group:hover .lg\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; } - .group:hover .lg\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; } - .group:hover .lg\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; } - .lg\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; } - .lg\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; } - .lg\:focus-within\:shadow-md:focus-within { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .lg\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; } - .lg\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-md:hover { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-none:hover { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-md:focus { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:ring-0 { - --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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-1 { - --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-2 { - --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-4 { - --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-8 { - --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring { - --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-inset { - --tw-ring-inset: inset !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\: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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset !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\: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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring: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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-inset:focus { - --tw-ring-inset: inset !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\:ring-offset-transparent { - --tw-ring-offset-color: transparent !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\:ring-offset-current { - --tw-ring-offset-color: currentColor !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\:ring-offset-black { - --tw-ring-offset-color: #000 !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\:ring-offset-white { - --tw-ring-offset-color: #fff !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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb !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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6 !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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb !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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db !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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af !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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280 !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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563 !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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151 !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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937 !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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827 !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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2 !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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2 !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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca !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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5 !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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171 !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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444 !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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626 !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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c !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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b !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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d !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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb !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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7 !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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a !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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d !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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24 !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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b !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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706 !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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309 !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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e !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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f !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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5 !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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5 !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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0 !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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7 !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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399 !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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981 !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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669 !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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857 !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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46 !important; + .lg\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b !important; + .lg\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff !important; + .lg\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe !important; + .lg\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe !important; + .lg\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .lg\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd !important; + .lg\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .lg\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa !important; + .lg\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .lg\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6 !important; + .lg\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .lg\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb !important; + .lg\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .lg\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8 !important; + .lg\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .lg\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af !important; + .lg\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .lg\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a !important; + .lg\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .lg\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff !important; + .lg\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .lg\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff !important; + .lg\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .lg\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe !important; + .lg\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .lg\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc !important; + .lg\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .lg\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8 !important; + .lg\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .lg\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1 !important; + .lg\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .lg\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5 !important; + .lg\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .lg\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca !important; + .lg\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .lg\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3 !important; + .lg\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .lg\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81 !important; + .lg\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .lg\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff !important; + .lg\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .lg\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe !important; + .lg\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .lg\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe !important; + .lg\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .lg\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd !important; + .lg\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .lg\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa !important; + .lg\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .lg\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6 !important; + .lg\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .lg\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed !important; + .lg\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .lg\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9 !important; + .lg\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .lg\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6 !important; + .lg\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .lg\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95 !important; + .lg\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .lg\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8 !important; + .lg\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .lg\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3 !important; + .lg\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .lg\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8 !important; + .lg\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .lg\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4 !important; + .lg\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .lg\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6 !important; + .lg\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .lg\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899 !important; + .lg\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .lg\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777 !important; + .lg\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .lg\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d !important; + .lg\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .lg\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d !important; + .lg\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .lg\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843 !important; + .lg\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .lg\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent !important; + .lg\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .lg\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor !important; + .lg\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .lg\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000 !important; + .lg\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .lg\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff !important; + .lg\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .lg\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb !important; + .lg\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .lg\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6 !important; + .lg\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .lg\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb !important; + .lg\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .lg\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db !important; + .lg\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .lg\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af !important; + .lg\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .lg\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280 !important; + .lg\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .lg\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563 !important; + .lg\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .lg\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151 !important; + .lg\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .lg\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937 !important; + .lg\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .lg\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827 !important; + .lg\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .lg\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2 !important; + .lg\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .lg\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2 !important; + .lg\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .lg\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca !important; + .lg\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .lg\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5 !important; + .lg\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .lg\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171 !important; + .lg\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .lg\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444 !important; + .lg\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .lg\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626 !important; + .lg\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .lg\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c !important; + .lg\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .lg\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b !important; + .lg\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .lg\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d !important; + .lg\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .lg\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb !important; + .lg\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .lg\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7 !important; + .lg\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .lg\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a !important; + .lg\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .lg\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d !important; + .lg\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .lg\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24 !important; + .lg\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .lg\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b !important; + .lg\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .lg\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706 !important; + .lg\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .lg\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309 !important; + .lg\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .lg\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e !important; + .lg\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .lg\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f !important; + .lg\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .lg\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5 !important; + .lg\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .lg\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5 !important; + .lg\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .lg\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0 !important; + .lg\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .lg\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7 !important; + .lg\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .lg\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399 !important; + .lg\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .lg\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981 !important; + .lg\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .lg\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669 !important; + .lg\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .lg\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857 !important; + .lg\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .lg\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46 !important; + .lg\:focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; } - .lg\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b !important; + .lg\:focus\:to-current:focus { + --tw-gradient-to: currentColor !important; } - .lg\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff !important; + .lg\:focus\:to-black:focus { + --tw-gradient-to: #000 !important; } - .lg\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe !important; + .lg\:focus\:to-white:focus { + --tw-gradient-to: #fff !important; } - .lg\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe !important; + .lg\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; } - .lg\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd !important; + .lg\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; } - .lg\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa !important; + .lg\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; } - .lg\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6 !important; + .lg\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; } - .lg\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb !important; + .lg\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; } - .lg\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8 !important; + .lg\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; } - .lg\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af !important; + .lg\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; } - .lg\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a !important; + .lg\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; } - .lg\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff !important; + .lg\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; } - .lg\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff !important; + .lg\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; } - .lg\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe !important; + .lg\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; } - .lg\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc !important; + .lg\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; } - .lg\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8 !important; + .lg\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; } - .lg\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1 !important; + .lg\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; } - .lg\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5 !important; + .lg\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; } - .lg\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca !important; + .lg\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; } - .lg\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3 !important; + .lg\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; } - .lg\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81 !important; + .lg\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; } - .lg\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff !important; + .lg\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; } - .lg\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe !important; + .lg\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; } - .lg\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe !important; + .lg\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; } - .lg\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd !important; + .lg\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; } - .lg\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa !important; + .lg\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; } - .lg\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6 !important; + .lg\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; } - .lg\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed !important; + .lg\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; } - .lg\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9 !important; + .lg\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; } - .lg\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6 !important; + .lg\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; } - .lg\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95 !important; + .lg\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; } - .lg\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8 !important; + .lg\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; } - .lg\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3 !important; + .lg\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; } - .lg\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8 !important; + .lg\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; } - .lg\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4 !important; + .lg\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; } - .lg\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6 !important; + .lg\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; } - .lg\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899 !important; + .lg\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; } - .lg\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777 !important; + .lg\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; } - .lg\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d !important; + .lg\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; } - .lg\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d !important; + .lg\:focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; } - .lg\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843 !important; + .lg\:focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; } - .lg\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent !important; + .lg\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; } - .lg\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor !important; + .lg\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; } - .lg\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000 !important; + .lg\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; } - .lg\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff !important; + .lg\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; } - .lg\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb !important; + .lg\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; } - .lg\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6 !important; + .lg\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; } - .lg\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb !important; + .lg\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; } - .lg\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db !important; + .lg\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; } - .lg\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af !important; + .lg\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; } - .lg\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280 !important; + .lg\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; } - .lg\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563 !important; + .lg\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; } - .lg\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151 !important; + .lg\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; } - .lg\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937 !important; + .lg\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; } - .lg\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827 !important; + .lg\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; } - .lg\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2 !important; + .lg\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; } - .lg\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2 !important; + .lg\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; } - .lg\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca !important; + .lg\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; } - .lg\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5 !important; + .lg\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; } - .lg\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171 !important; + .lg\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; } - .lg\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444 !important; + .lg\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; } - .lg\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626 !important; + .lg\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; } - .lg\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c !important; + .lg\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; } - .lg\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b !important; + .lg\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; } - .lg\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d !important; + .lg\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; } - .lg\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb !important; + .lg\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; } - .lg\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7 !important; + .lg\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; } - .lg\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a !important; + .lg\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; } - .lg\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d !important; + .lg\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; } - .lg\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24 !important; + .lg\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; } - .lg\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b !important; + .lg\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; } - .lg\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706 !important; + .lg\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; } - .lg\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309 !important; + .lg\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; } - .lg\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e !important; + .lg\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; } - .lg\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f !important; + .lg\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; } - .lg\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5 !important; + .lg\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; } - .lg\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5 !important; + .lg\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; } - .lg\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0 !important; + .lg\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; } - .lg\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7 !important; + .lg\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; } - .lg\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399 !important; + .lg\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; } - .lg\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981 !important; + .lg\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; } - .lg\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669 !important; + .lg\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; } - .lg\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857 !important; + .lg\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; } - .lg\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46 !important; + .lg\:decoration-slice { + box-decoration-break: slice !important; } - .lg\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b !important; + .lg\:decoration-clone { + box-decoration-break: clone !important; } - .lg\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff !important; + .lg\:bg-auto { + background-size: auto !important; } - .lg\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe !important; + .lg\:bg-cover { + background-size: cover !important; } - .lg\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe !important; + .lg\:bg-contain { + background-size: contain !important; } - .lg\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd !important; + .lg\:bg-fixed { + background-attachment: fixed !important; } - .lg\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa !important; + .lg\:bg-local { + background-attachment: local !important; } - .lg\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6 !important; + .lg\:bg-scroll { + background-attachment: scroll !important; } - .lg\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb !important; + .lg\:bg-clip-border { + background-clip: border-box !important; } - .lg\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8 !important; + .lg\:bg-clip-padding { + background-clip: padding-box !important; } - .lg\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af !important; + .lg\:bg-clip-content { + background-clip: content-box !important; } - .lg\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a !important; + .lg\:bg-clip-text { + background-clip: text !important; } - .lg\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff !important; + .lg\:bg-bottom { + background-position: bottom !important; } - .lg\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff !important; + .lg\:bg-center { + background-position: center !important; } - .lg\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe !important; + .lg\:bg-left { + background-position: left !important; } - .lg\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc !important; + .lg\:bg-left-bottom { + background-position: left bottom !important; } - .lg\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8 !important; + .lg\:bg-left-top { + background-position: left top !important; } - .lg\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1 !important; + .lg\:bg-right { + background-position: right !important; } - .lg\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5 !important; + .lg\:bg-right-bottom { + background-position: right bottom !important; } - .lg\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca !important; + .lg\:bg-right-top { + background-position: right top !important; } - .lg\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3 !important; + .lg\:bg-top { + background-position: top !important; } - .lg\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81 !important; + .lg\:bg-repeat { + background-repeat: repeat !important; } - .lg\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff !important; + .lg\:bg-no-repeat { + background-repeat: no-repeat !important; } - .lg\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe !important; + .lg\:bg-repeat-x { + background-repeat: repeat-x !important; } - .lg\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe !important; + .lg\:bg-repeat-y { + background-repeat: repeat-y !important; } - .lg\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd !important; + .lg\:bg-repeat-round { + background-repeat: round !important; } - .lg\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa !important; + .lg\:bg-repeat-space { + background-repeat: space !important; } - .lg\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6 !important; + .lg\:bg-origin-border { + background-origin: border-box !important; } - .lg\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed !important; + .lg\:bg-origin-padding { + background-origin: padding-box !important; } - .lg\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9 !important; + .lg\:bg-origin-content { + background-origin: content-box !important; } - .lg\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6 !important; + .lg\:fill-current { + fill: currentColor !important; } - .lg\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95 !important; + .lg\:stroke-current { + stroke: currentColor !important; } - .lg\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8 !important; + .lg\:stroke-0 { + stroke-width: 0 !important; } - .lg\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3 !important; + .lg\:stroke-1 { + stroke-width: 1 !important; } - .lg\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8 !important; + .lg\:stroke-2 { + stroke-width: 2 !important; } - .lg\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4 !important; + .lg\:object-contain { + object-fit: contain !important; } - .lg\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6 !important; + .lg\:object-cover { + object-fit: cover !important; } - .lg\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899 !important; + .lg\:object-fill { + object-fit: fill !important; } - .lg\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777 !important; + .lg\:object-none { + object-fit: none !important; } - .lg\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d !important; + .lg\:object-scale-down { + object-fit: scale-down !important; } - .lg\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d !important; + .lg\:object-bottom { + object-position: bottom !important; } - .lg\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843 !important; + .lg\:object-center { + object-position: center !important; } - .lg\:ring-offset-0 { - --tw-ring-offset-width: 0px !important; + .lg\:object-left { + object-position: left !important; } - .lg\:ring-offset-1 { - --tw-ring-offset-width: 1px !important; + .lg\:object-left-bottom { + object-position: left bottom !important; } - .lg\:ring-offset-2 { - --tw-ring-offset-width: 2px !important; + .lg\:object-left-top { + object-position: left top !important; } - .lg\:ring-offset-4 { - --tw-ring-offset-width: 4px !important; + .lg\:object-right { + object-position: right !important; } - .lg\:ring-offset-8 { - --tw-ring-offset-width: 8px !important; + .lg\:object-right-bottom { + object-position: right bottom !important; } - .lg\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px !important; + .lg\:object-right-top { + object-position: right top !important; } - .lg\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px !important; + .lg\:object-top { + object-position: top !important; } - .lg\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px !important; + .lg\:p-0 { + padding: 0px !important; } - .lg\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px !important; + .lg\:p-1 { + padding: 0.25rem !important; } - .lg\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px !important; + .lg\:p-2 { + padding: 0.5rem !important; } - .lg\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px !important; + .lg\:p-3 { + padding: 0.75rem !important; } - .lg\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px !important; + .lg\:p-4 { + padding: 1rem !important; } - .lg\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px !important; + .lg\:p-5 { + padding: 1.25rem !important; } - .lg\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px !important; + .lg\:p-6 { + padding: 1.5rem !important; } - .lg\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px !important; + .lg\:p-7 { + padding: 1.75rem !important; } - .lg\:ring-transparent { - --tw-ring-color: transparent !important; + .lg\:p-8 { + padding: 2rem !important; } - .lg\:ring-current { - --tw-ring-color: currentColor !important; + .lg\:p-9 { + padding: 2.25rem !important; } - .lg\:ring-black { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .lg\:p-10 { + padding: 2.5rem !important; } - .lg\:ring-white { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .lg\:p-11 { + padding: 2.75rem !important; } - .lg\:ring-gray-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .lg\:p-12 { + padding: 3rem !important; } - .lg\:ring-gray-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .lg\:p-14 { + padding: 3.5rem !important; } - .lg\:ring-gray-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .lg\:p-16 { + padding: 4rem !important; } - .lg\:ring-gray-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .lg\:p-20 { + padding: 5rem !important; } - .lg\:ring-gray-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .lg\:p-24 { + padding: 6rem !important; } - .lg\:ring-gray-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .lg\:p-28 { + padding: 7rem !important; } - .lg\:ring-gray-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .lg\:p-32 { + padding: 8rem !important; } - .lg\:ring-gray-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .lg\:p-36 { + padding: 9rem !important; } - .lg\:ring-gray-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .lg\:p-40 { + padding: 10rem !important; } - .lg\:ring-gray-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .lg\:p-44 { + padding: 11rem !important; } - .lg\:ring-red-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .lg\:p-48 { + padding: 12rem !important; } - .lg\:ring-red-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .lg\:p-52 { + padding: 13rem !important; } - .lg\:ring-red-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .lg\:p-56 { + padding: 14rem !important; } - .lg\:ring-red-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .lg\:p-60 { + padding: 15rem !important; } - .lg\:ring-red-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .lg\:p-64 { + padding: 16rem !important; } - .lg\:ring-red-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .lg\:p-72 { + padding: 18rem !important; } - .lg\:ring-red-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .lg\:p-80 { + padding: 20rem !important; } - .lg\:ring-red-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .lg\:p-96 { + padding: 24rem !important; } - .lg\:ring-red-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .lg\:p-px { + padding: 1px !important; } - .lg\:ring-red-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .lg\:p-0\.5 { + padding: 0.125rem !important; } - .lg\:ring-yellow-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .lg\:p-1\.5 { + padding: 0.375rem !important; } - .lg\:ring-yellow-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .lg\:p-2\.5 { + padding: 0.625rem !important; } - .lg\:ring-yellow-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .lg\:p-3\.5 { + padding: 0.875rem !important; } - .lg\:ring-yellow-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .lg\:px-0 { + padding-left: 0px !important; + padding-right: 0px !important; } - .lg\:ring-yellow-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .lg\:px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; } - .lg\:ring-yellow-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .lg\:px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; } - .lg\:ring-yellow-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .lg\:px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; } - .lg\:ring-yellow-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .lg\:px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; } - .lg\:ring-yellow-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .lg\:px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; } - .lg\:ring-yellow-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .lg\:px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; } - .lg\:ring-green-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .lg\:px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; } - .lg\:ring-green-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .lg\:px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; } - .lg\:ring-green-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .lg\:px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; } - .lg\:ring-green-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .lg\:px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; } - .lg\:ring-green-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .lg\:px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; } - .lg\:ring-green-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .lg\:px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; } - .lg\:ring-green-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .lg\:px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; } - .lg\:ring-green-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .lg\:px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; } - .lg\:ring-green-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .lg\:px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; } - .lg\:ring-green-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .lg\:px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; } - .lg\:ring-blue-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .lg\:px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; } - .lg\:ring-blue-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .lg\:px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; } - .lg\:ring-blue-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .lg\:px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; } - .lg\:ring-blue-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .lg\:px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; } - .lg\:ring-blue-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .lg\:px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; } - .lg\:ring-blue-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .lg\:px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; } - .lg\:ring-blue-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .lg\:px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; } - .lg\:ring-blue-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .lg\:px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; } - .lg\:ring-blue-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .lg\:px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; } - .lg\:ring-blue-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .lg\:px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; } - .lg\:ring-indigo-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .lg\:px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; } - .lg\:ring-indigo-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .lg\:px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; } - .lg\:ring-indigo-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .lg\:px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; } - .lg\:ring-indigo-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .lg\:px-px { + padding-left: 1px !important; + padding-right: 1px !important; } - .lg\:ring-indigo-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .lg\:px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; } - .lg\:ring-indigo-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .lg\:px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; } - .lg\:ring-indigo-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .lg\:px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; } - .lg\:ring-indigo-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .lg\:px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; } - .lg\:ring-indigo-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .lg\:py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; } - .lg\:ring-indigo-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .lg\:py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } - .lg\:ring-purple-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .lg\:py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } - .lg\:ring-purple-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .lg\:py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; } - .lg\:ring-purple-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .lg\:py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } - .lg\:ring-purple-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .lg\:py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; } - .lg\:ring-purple-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .lg\:py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } - .lg\:ring-purple-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .lg\:py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; } - .lg\:ring-purple-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .lg\:py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; } - .lg\:ring-purple-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .lg\:py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; } - .lg\:ring-purple-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .lg\:py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; } - .lg\:ring-purple-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .lg\:py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; } - .lg\:ring-pink-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .lg\:py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } - .lg\:ring-pink-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .lg\:py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; } - .lg\:ring-pink-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .lg\:py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; } - .lg\:ring-pink-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .lg\:py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; } - .lg\:ring-pink-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .lg\:py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; } - .lg\:ring-pink-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .lg\:py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; } - .lg\:ring-pink-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .lg\:py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; } - .lg\:ring-pink-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .lg\:py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; } - .lg\:ring-pink-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .lg\:py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; } - .lg\:ring-pink-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .lg\:py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; } - .lg\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent !important; + .lg\:py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; } - .lg\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor !important; + .lg\:py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; } - .lg\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .lg\:py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; } - .lg\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .lg\:py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; } - .lg\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .lg\:py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; } - .lg\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .lg\:py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; } - .lg\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .lg\:py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; } - .lg\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .lg\:py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; } - .lg\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .lg\:py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; } - .lg\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .lg\:py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; } - .lg\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .lg\:py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; } - .lg\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .lg\:py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; } - .lg\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .lg\:py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; } - .lg\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .lg\:pt-0 { + padding-top: 0px !important; } - .lg\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .lg\:pt-1 { + padding-top: 0.25rem !important; } - .lg\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .lg\:pt-2 { + padding-top: 0.5rem !important; } - .lg\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .lg\:pt-3 { + padding-top: 0.75rem !important; } - .lg\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .lg\:pt-4 { + padding-top: 1rem !important; } - .lg\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .lg\:pt-5 { + padding-top: 1.25rem !important; } - .lg\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .lg\:pt-6 { + padding-top: 1.5rem !important; } - .lg\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .lg\:pt-7 { + padding-top: 1.75rem !important; } - .lg\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .lg\:pt-8 { + padding-top: 2rem !important; } - .lg\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .lg\:pt-9 { + padding-top: 2.25rem !important; } - .lg\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .lg\:pt-10 { + padding-top: 2.5rem !important; } - .lg\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .lg\:pt-11 { + padding-top: 2.75rem !important; } - .lg\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .lg\:pt-12 { + padding-top: 3rem !important; } - .lg\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .lg\:pt-14 { + padding-top: 3.5rem !important; } - .lg\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .lg\:pt-16 { + padding-top: 4rem !important; } - .lg\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .lg\:pt-20 { + padding-top: 5rem !important; } - .lg\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .lg\:pt-24 { + padding-top: 6rem !important; } - .lg\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .lg\:pt-28 { + padding-top: 7rem !important; } - .lg\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .lg\:pt-32 { + padding-top: 8rem !important; } - .lg\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .lg\:pt-36 { + padding-top: 9rem !important; } - .lg\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .lg\:pt-40 { + padding-top: 10rem !important; } - .lg\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .lg\:pt-44 { + padding-top: 11rem !important; } - .lg\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .lg\:pt-48 { + padding-top: 12rem !important; } - .lg\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .lg\:pt-52 { + padding-top: 13rem !important; } - .lg\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .lg\:pt-56 { + padding-top: 14rem !important; } - .lg\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .lg\:pt-60 { + padding-top: 15rem !important; } - .lg\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .lg\:pt-64 { + padding-top: 16rem !important; } - .lg\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .lg\:pt-72 { + padding-top: 18rem !important; } - .lg\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .lg\:pt-80 { + padding-top: 20rem !important; } - .lg\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .lg\:pt-96 { + padding-top: 24rem !important; } - .lg\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .lg\:pt-px { + padding-top: 1px !important; } - .lg\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .lg\:pt-0\.5 { + padding-top: 0.125rem !important; } - .lg\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .lg\:pt-1\.5 { + padding-top: 0.375rem !important; } - .lg\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .lg\:pt-2\.5 { + padding-top: 0.625rem !important; } - .lg\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .lg\:pt-3\.5 { + padding-top: 0.875rem !important; } - .lg\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .lg\:pr-0 { + padding-right: 0px !important; } - .lg\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .lg\:pr-1 { + padding-right: 0.25rem !important; } - .lg\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .lg\:pr-2 { + padding-right: 0.5rem !important; } - .lg\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .lg\:pr-3 { + padding-right: 0.75rem !important; } - .lg\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .lg\:pr-4 { + padding-right: 1rem !important; } - .lg\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .lg\:pr-5 { + padding-right: 1.25rem !important; } - .lg\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .lg\:pr-6 { + padding-right: 1.5rem !important; } - .lg\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .lg\:pr-7 { + padding-right: 1.75rem !important; } - .lg\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .lg\:pr-8 { + padding-right: 2rem !important; } - .lg\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .lg\:pr-9 { + padding-right: 2.25rem !important; } - .lg\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .lg\:pr-10 { + padding-right: 2.5rem !important; } - .lg\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .lg\:pr-11 { + padding-right: 2.75rem !important; } - .lg\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .lg\:pr-12 { + padding-right: 3rem !important; } - .lg\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .lg\:pr-14 { + padding-right: 3.5rem !important; } - .lg\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .lg\:pr-16 { + padding-right: 4rem !important; } - .lg\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .lg\:pr-20 { + padding-right: 5rem !important; } - .lg\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .lg\:pr-24 { + padding-right: 6rem !important; } - .lg\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .lg\:pr-28 { + padding-right: 7rem !important; } - .lg\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .lg\:pr-32 { + padding-right: 8rem !important; } - .lg\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .lg\:pr-36 { + padding-right: 9rem !important; } - .lg\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .lg\:pr-40 { + padding-right: 10rem !important; } - .lg\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .lg\:pr-44 { + padding-right: 11rem !important; } - .lg\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .lg\:pr-48 { + padding-right: 12rem !important; } - .lg\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .lg\:pr-52 { + padding-right: 13rem !important; } - .lg\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .lg\:pr-56 { + padding-right: 14rem !important; } - .lg\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .lg\:pr-60 { + padding-right: 15rem !important; } - .lg\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .lg\:pr-64 { + padding-right: 16rem !important; } - .lg\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .lg\:pr-72 { + padding-right: 18rem !important; } - .lg\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .lg\:pr-80 { + padding-right: 20rem !important; } - .lg\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .lg\:pr-96 { + padding-right: 24rem !important; } - .lg\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .lg\:pr-px { + padding-right: 1px !important; } - .lg\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .lg\:pr-0\.5 { + padding-right: 0.125rem !important; } - .lg\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .lg\:pr-1\.5 { + padding-right: 0.375rem !important; } - .lg\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .lg\:pr-2\.5 { + padding-right: 0.625rem !important; } - .lg\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .lg\:pr-3\.5 { + padding-right: 0.875rem !important; } - .lg\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .lg\:pb-0 { + padding-bottom: 0px !important; } - .lg\:focus\:ring-transparent:focus { - --tw-ring-color: transparent !important; + .lg\:pb-1 { + padding-bottom: 0.25rem !important; } - .lg\:focus\:ring-current:focus { - --tw-ring-color: currentColor !important; + .lg\:pb-2 { + padding-bottom: 0.5rem !important; } - .lg\:focus\:ring-black:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .lg\:pb-3 { + padding-bottom: 0.75rem !important; } - .lg\:focus\:ring-white:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .lg\:pb-4 { + padding-bottom: 1rem !important; } - .lg\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .lg\:pb-5 { + padding-bottom: 1.25rem !important; } - .lg\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .lg\:pb-6 { + padding-bottom: 1.5rem !important; } - .lg\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .lg\:pb-7 { + padding-bottom: 1.75rem !important; } - .lg\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .lg\:pb-8 { + padding-bottom: 2rem !important; } - .lg\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .lg\:pb-9 { + padding-bottom: 2.25rem !important; } - .lg\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .lg\:pb-10 { + padding-bottom: 2.5rem !important; } - .lg\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .lg\:pb-11 { + padding-bottom: 2.75rem !important; } - .lg\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .lg\:pb-12 { + padding-bottom: 3rem !important; } - .lg\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .lg\:pb-14 { + padding-bottom: 3.5rem !important; } - .lg\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .lg\:pb-16 { + padding-bottom: 4rem !important; } - .lg\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .lg\:pb-20 { + padding-bottom: 5rem !important; } - .lg\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .lg\:pb-24 { + padding-bottom: 6rem !important; } - .lg\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .lg\:pb-28 { + padding-bottom: 7rem !important; } - .lg\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .lg\:pb-32 { + padding-bottom: 8rem !important; } - .lg\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .lg\:pb-36 { + padding-bottom: 9rem !important; } - .lg\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .lg\:pb-40 { + padding-bottom: 10rem !important; } - .lg\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .lg\:pb-44 { + padding-bottom: 11rem !important; } - .lg\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .lg\:pb-48 { + padding-bottom: 12rem !important; } - .lg\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .lg\:pb-52 { + padding-bottom: 13rem !important; } - .lg\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .lg\:pb-56 { + padding-bottom: 14rem !important; } - .lg\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .lg\:pb-60 { + padding-bottom: 15rem !important; } - .lg\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .lg\:pb-64 { + padding-bottom: 16rem !important; } - .lg\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .lg\:pb-72 { + padding-bottom: 18rem !important; } - .lg\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .lg\:pb-80 { + padding-bottom: 20rem !important; } - .lg\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .lg\:pb-96 { + padding-bottom: 24rem !important; } - .lg\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .lg\:pb-px { + padding-bottom: 1px !important; } - .lg\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .lg\:pb-0\.5 { + padding-bottom: 0.125rem !important; } - .lg\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .lg\:pb-1\.5 { + padding-bottom: 0.375rem !important; } - .lg\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .lg\:pb-2\.5 { + padding-bottom: 0.625rem !important; } - .lg\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .lg\:pb-3\.5 { + padding-bottom: 0.875rem !important; } - .lg\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .lg\:pl-0 { + padding-left: 0px !important; } - .lg\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .lg\:pl-1 { + padding-left: 0.25rem !important; } - .lg\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .lg\:pl-2 { + padding-left: 0.5rem !important; } - .lg\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .lg\:pl-3 { + padding-left: 0.75rem !important; } - .lg\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .lg\:pl-4 { + padding-left: 1rem !important; } - .lg\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .lg\:pl-5 { + padding-left: 1.25rem !important; } - .lg\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .lg\:pl-6 { + padding-left: 1.5rem !important; } - .lg\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .lg\:pl-7 { + padding-left: 1.75rem !important; } - .lg\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .lg\:pl-8 { + padding-left: 2rem !important; } - .lg\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .lg\:pl-9 { + padding-left: 2.25rem !important; } - .lg\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .lg\:pl-10 { + padding-left: 2.5rem !important; } - .lg\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .lg\:pl-11 { + padding-left: 2.75rem !important; } - .lg\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .lg\:pl-12 { + padding-left: 3rem !important; } - .lg\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .lg\:pl-14 { + padding-left: 3.5rem !important; } - .lg\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .lg\:pl-16 { + padding-left: 4rem !important; } - .lg\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .lg\:pl-20 { + padding-left: 5rem !important; } - .lg\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .lg\:pl-24 { + padding-left: 6rem !important; } - .lg\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .lg\:pl-28 { + padding-left: 7rem !important; } - .lg\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .lg\:pl-32 { + padding-left: 8rem !important; } - .lg\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .lg\:pl-36 { + padding-left: 9rem !important; } - .lg\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .lg\:pl-40 { + padding-left: 10rem !important; } - .lg\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .lg\:pl-44 { + padding-left: 11rem !important; } - .lg\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .lg\:pl-48 { + padding-left: 12rem !important; } - .lg\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .lg\:pl-52 { + padding-left: 13rem !important; } - .lg\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .lg\:pl-56 { + padding-left: 14rem !important; } - .lg\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .lg\:pl-60 { + padding-left: 15rem !important; } - .lg\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .lg\:pl-64 { + padding-left: 16rem !important; } - .lg\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .lg\:pl-72 { + padding-left: 18rem !important; } - .lg\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .lg\:pl-80 { + padding-left: 20rem !important; } - .lg\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .lg\:pl-96 { + padding-left: 24rem !important; } - .lg\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .lg\:pl-px { + padding-left: 1px !important; } - .lg\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .lg\:pl-0\.5 { + padding-left: 0.125rem !important; } - .lg\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .lg\:pl-1\.5 { + padding-left: 0.375rem !important; } - .lg\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .lg\:pl-2\.5 { + padding-left: 0.625rem !important; } - .lg\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .lg\:pl-3\.5 { + padding-left: 0.875rem !important; } - .lg\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .lg\:text-left { + text-align: left !important; } - .lg\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .lg\:text-center { + text-align: center !important; } - .lg\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .lg\:text-right { + text-align: right !important; } - .lg\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .lg\:text-justify { + text-align: justify !important; } - .lg\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .lg\:align-baseline { + vertical-align: baseline !important; } - .lg\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .lg\:align-top { + vertical-align: top !important; } - .lg\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .lg\:align-middle { + vertical-align: middle !important; } - .lg\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .lg\:align-bottom { + vertical-align: bottom !important; } - .lg\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .lg\:align-text-top { + vertical-align: text-top !important; } - .lg\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .lg\:align-text-bottom { + vertical-align: text-bottom !important; } - .lg\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .lg\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; } - .lg\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .lg\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; } - .lg\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .lg\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; } - .lg\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .lg\:text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; } - .lg\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .lg\:text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; } - .lg\:ring-opacity-0 { - --tw-ring-opacity: 0 !important; + .lg\:text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; } - .lg\:ring-opacity-5 { - --tw-ring-opacity: 0.05 !important; + .lg\:text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; } - .lg\:ring-opacity-10 { - --tw-ring-opacity: 0.1 !important; + .lg\:text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; } - .lg\:ring-opacity-20 { - --tw-ring-opacity: 0.2 !important; + .lg\:text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; } - .lg\:ring-opacity-25 { - --tw-ring-opacity: 0.25 !important; + .lg\:text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; } - .lg\:ring-opacity-30 { - --tw-ring-opacity: 0.3 !important; + .lg\:text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; } - .lg\:ring-opacity-40 { - --tw-ring-opacity: 0.4 !important; + .lg\:text-5xl { + font-size: 3rem !important; + line-height: 1 !important; } - .lg\:ring-opacity-50 { - --tw-ring-opacity: 0.5 !important; + .lg\:text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; } - .lg\:ring-opacity-60 { - --tw-ring-opacity: 0.6 !important; + .lg\:text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; } - .lg\:ring-opacity-70 { - --tw-ring-opacity: 0.7 !important; + .lg\:text-8xl { + font-size: 6rem !important; + line-height: 1 !important; } - .lg\:ring-opacity-75 { - --tw-ring-opacity: 0.75 !important; + .lg\:text-9xl { + font-size: 8rem !important; + line-height: 1 !important; } - .lg\:ring-opacity-80 { - --tw-ring-opacity: 0.8 !important; + .lg\:font-thin { + font-weight: 100 !important; } - .lg\:ring-opacity-90 { - --tw-ring-opacity: 0.9 !important; + .lg\:font-extralight { + font-weight: 200 !important; } - .lg\:ring-opacity-95 { - --tw-ring-opacity: 0.95 !important; + .lg\:font-light { + font-weight: 300 !important; } - .lg\:ring-opacity-100 { - --tw-ring-opacity: 1 !important; + .lg\:font-normal { + font-weight: 400 !important; } - .lg\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0 !important; + .lg\:font-medium { + font-weight: 500 !important; } - .lg\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05 !important; + .lg\:font-semibold { + font-weight: 600 !important; } - .lg\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1 !important; + .lg\:font-bold { + font-weight: 700 !important; } - .lg\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2 !important; + .lg\:font-extrabold { + font-weight: 800 !important; } - .lg\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25 !important; + .lg\:font-black { + font-weight: 900 !important; } - .lg\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3 !important; + .lg\:uppercase { + text-transform: uppercase !important; } - .lg\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4 !important; + .lg\:lowercase { + text-transform: lowercase !important; } - .lg\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5 !important; + .lg\:capitalize { + text-transform: capitalize !important; } - .lg\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6 !important; + .lg\:normal-case { + text-transform: none !important; } - .lg\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7 !important; + .lg\:italic { + font-style: italic !important; } - .lg\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75 !important; + .lg\:not-italic { + font-style: normal !important; } - .lg\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8 !important; + .lg\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; } - .lg\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9 !important; + .lg\:normal-nums { + font-variant-numeric: normal !important; } - .lg\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95 !important; + .lg\:ordinal { + --tw-ordinal: ordinal !important; } - .lg\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1 !important; + .lg\:slashed-zero { + --tw-slashed-zero: slashed-zero !important; } - .lg\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0 !important; + .lg\:lining-nums { + --tw-numeric-figure: lining-nums !important; } - .lg\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05 !important; + .lg\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; } - .lg\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1 !important; + .lg\:proportional-nums { + --tw-numeric-spacing: proportional-nums !important; } - .lg\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2 !important; + .lg\:tabular-nums { + --tw-numeric-spacing: tabular-nums !important; } - .lg\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25 !important; + .lg\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; } - .lg\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3 !important; + .lg\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; } - .lg\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4 !important; + .lg\:leading-3 { + line-height: .75rem !important; } - .lg\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5 !important; + .lg\:leading-4 { + line-height: 1rem !important; } - .lg\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6 !important; + .lg\:leading-5 { + line-height: 1.25rem !important; } - .lg\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7 !important; + .lg\:leading-6 { + line-height: 1.5rem !important; } - .lg\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75 !important; + .lg\:leading-7 { + line-height: 1.75rem !important; } - .lg\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8 !important; + .lg\:leading-8 { + line-height: 2rem !important; } - .lg\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9 !important; + .lg\:leading-9 { + line-height: 2.25rem !important; } - .lg\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95 !important; + .lg\:leading-10 { + line-height: 2.5rem !important; } - .lg\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1 !important; + .lg\:leading-none { + line-height: 1 !important; } - .lg\:fill-current { - fill: currentColor !important; + .lg\:leading-tight { + line-height: 1.25 !important; } - .lg\:stroke-current { - stroke: currentColor !important; + .lg\:leading-snug { + line-height: 1.375 !important; } - .lg\:stroke-0 { - stroke-width: 0 !important; + .lg\:leading-normal { + line-height: 1.5 !important; } - .lg\:stroke-1 { - stroke-width: 1 !important; + .lg\:leading-relaxed { + line-height: 1.625 !important; } - .lg\:stroke-2 { - stroke-width: 2 !important; + .lg\:leading-loose { + line-height: 2 !important; } - .lg\:table-auto { - table-layout: auto !important; + .lg\:tracking-tighter { + letter-spacing: -0.05em !important; } - .lg\:table-fixed { - table-layout: fixed !important; + .lg\:tracking-tight { + letter-spacing: -0.025em !important; } - .lg\:text-left { - text-align: left !important; + .lg\:tracking-normal { + letter-spacing: 0em !important; } - .lg\:text-center { - text-align: center !important; + .lg\:tracking-wide { + letter-spacing: 0.025em !important; } - .lg\:text-right { - text-align: right !important; + .lg\:tracking-wider { + letter-spacing: 0.05em !important; } - .lg\:text-justify { - text-align: justify !important; + .lg\:tracking-widest { + letter-spacing: 0.1em !important; } .lg\:text-transparent { @@ -112115,44 +112304,6 @@ video { --tw-text-opacity: 1 !important; } - .lg\:truncate { - overflow: hidden !important; - text-overflow: ellipsis !important; - white-space: nowrap !important; - } - - .lg\:overflow-ellipsis { - text-overflow: ellipsis !important; - } - - .lg\:overflow-clip { - text-overflow: clip !important; - } - - .lg\:italic { - font-style: italic !important; - } - - .lg\:not-italic { - font-style: normal !important; - } - - .lg\:uppercase { - text-transform: uppercase !important; - } - - .lg\:lowercase { - text-transform: lowercase !important; - } - - .lg\:capitalize { - text-transform: capitalize !important; - } - - .lg\:normal-case { - text-transform: none !important; - } - .lg\:underline { text-decoration: underline !important; } @@ -112223,4258 +112374,4669 @@ video { -moz-osx-font-smoothing: auto !important; } - .lg\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; - } - - .lg\:normal-nums { - font-variant-numeric: normal !important; - } - - .lg\:ordinal { - --tw-ordinal: ordinal !important; - } - - .lg\:slashed-zero { - --tw-slashed-zero: slashed-zero !important; - } - - .lg\:lining-nums { - --tw-numeric-figure: lining-nums !important; - } - - .lg\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums !important; - } - - .lg\:proportional-nums { - --tw-numeric-spacing: proportional-nums !important; - } - - .lg\:tabular-nums { - --tw-numeric-spacing: tabular-nums !important; - } - - .lg\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions !important; - } - - .lg\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions !important; - } - - .lg\:tracking-tighter { - letter-spacing: -0.05em !important; - } - - .lg\:tracking-tight { - letter-spacing: -0.025em !important; - } - - .lg\:tracking-normal { - letter-spacing: 0em !important; - } - - .lg\:tracking-wide { - letter-spacing: 0.025em !important; + .lg\:placeholder-transparent::placeholder { + color: transparent !important; } - .lg\:tracking-wider { - letter-spacing: 0.05em !important; + .lg\:placeholder-current::placeholder { + color: currentColor !important; } - .lg\:tracking-widest { - letter-spacing: 0.1em !important; + .lg\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } - .lg\:select-none { - user-select: none !important; + .lg\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } - .lg\:select-text { - user-select: text !important; + .lg\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } - .lg\:select-all { - user-select: all !important; + .lg\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } - .lg\:select-auto { - user-select: auto !important; + .lg\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } - .lg\:align-baseline { - vertical-align: baseline !important; + .lg\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } - .lg\:align-top { - vertical-align: top !important; + .lg\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } - .lg\:align-middle { - vertical-align: middle !important; + .lg\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } - .lg\:align-bottom { - vertical-align: bottom !important; + .lg\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } - .lg\:align-text-top { - vertical-align: text-top !important; + .lg\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } - .lg\:align-text-bottom { - vertical-align: text-bottom !important; + .lg\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } - .lg\:visible { - visibility: visible !important; + .lg\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } - .lg\:invisible { - visibility: hidden !important; + .lg\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } - .lg\:whitespace-normal { - white-space: normal !important; + .lg\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } - .lg\:whitespace-nowrap { - white-space: nowrap !important; + .lg\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } - .lg\:whitespace-pre { - white-space: pre !important; + .lg\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } - .lg\:whitespace-pre-line { - white-space: pre-line !important; + .lg\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } - .lg\:whitespace-pre-wrap { - white-space: pre-wrap !important; + .lg\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } - .lg\:break-normal { - overflow-wrap: normal !important; - word-break: normal !important; + .lg\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } - .lg\:break-words { - overflow-wrap: break-word !important; + .lg\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } - .lg\:break-all { - word-break: break-all !important; + .lg\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } - .lg\:w-0 { - width: 0px !important; + .lg\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } - .lg\:w-1 { - width: 0.25rem !important; + .lg\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } - .lg\:w-2 { - width: 0.5rem !important; + .lg\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } - .lg\:w-3 { - width: 0.75rem !important; + .lg\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } - .lg\:w-4 { - width: 1rem !important; + .lg\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } - .lg\:w-5 { - width: 1.25rem !important; + .lg\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } - .lg\:w-6 { - width: 1.5rem !important; + .lg\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } - .lg\:w-7 { - width: 1.75rem !important; + .lg\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } - .lg\:w-8 { - width: 2rem !important; + .lg\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } - .lg\:w-9 { - width: 2.25rem !important; + .lg\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } - .lg\:w-10 { - width: 2.5rem !important; + .lg\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } - .lg\:w-11 { - width: 2.75rem !important; + .lg\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } - .lg\:w-12 { - width: 3rem !important; + .lg\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } - .lg\:w-14 { - width: 3.5rem !important; + .lg\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } - .lg\:w-16 { - width: 4rem !important; + .lg\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } - .lg\:w-20 { - width: 5rem !important; + .lg\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } - .lg\:w-24 { - width: 6rem !important; + .lg\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } - .lg\:w-28 { - width: 7rem !important; + .lg\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } - .lg\:w-32 { - width: 8rem !important; + .lg\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } - .lg\:w-36 { - width: 9rem !important; + .lg\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } - .lg\:w-40 { - width: 10rem !important; + .lg\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } - .lg\:w-44 { - width: 11rem !important; + .lg\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } - .lg\:w-48 { - width: 12rem !important; + .lg\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } - .lg\:w-52 { - width: 13rem !important; + .lg\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } - .lg\:w-56 { - width: 14rem !important; + .lg\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } - .lg\:w-60 { - width: 15rem !important; + .lg\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } - .lg\:w-64 { - width: 16rem !important; + .lg\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } - .lg\:w-72 { - width: 18rem !important; + .lg\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } - .lg\:w-80 { - width: 20rem !important; + .lg\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } - .lg\:w-96 { - width: 24rem !important; + .lg\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } - .lg\:w-auto { - width: auto !important; + .lg\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } - .lg\:w-px { - width: 1px !important; + .lg\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } - .lg\:w-0\.5 { - width: 0.125rem !important; + .lg\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } - .lg\:w-1\.5 { - width: 0.375rem !important; + .lg\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } - .lg\:w-2\.5 { - width: 0.625rem !important; + .lg\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } - .lg\:w-3\.5 { - width: 0.875rem !important; + .lg\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } - .lg\:w-1\/2 { - width: 50% !important; + .lg\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } - .lg\:w-1\/3 { - width: 33.333333% !important; + .lg\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } - .lg\:w-2\/3 { - width: 66.666667% !important; + .lg\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } - .lg\:w-1\/4 { - width: 25% !important; + .lg\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } - .lg\:w-2\/4 { - width: 50% !important; + .lg\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } - .lg\:w-3\/4 { - width: 75% !important; + .lg\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } - .lg\:w-1\/5 { - width: 20% !important; + .lg\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } - .lg\:w-2\/5 { - width: 40% !important; + .lg\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } - .lg\:w-3\/5 { - width: 60% !important; + .lg\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } - .lg\:w-4\/5 { - width: 80% !important; + .lg\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } - .lg\:w-1\/6 { - width: 16.666667% !important; + .lg\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } - .lg\:w-2\/6 { - width: 33.333333% !important; + .lg\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } - .lg\:w-3\/6 { - width: 50% !important; + .lg\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } - .lg\:w-4\/6 { - width: 66.666667% !important; + .lg\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } - .lg\:w-5\/6 { - width: 83.333333% !important; + .lg\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } - .lg\:w-1\/12 { - width: 8.333333% !important; + .lg\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } - .lg\:w-2\/12 { - width: 16.666667% !important; + .lg\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } - .lg\:w-3\/12 { - width: 25% !important; + .lg\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } - .lg\:w-4\/12 { - width: 33.333333% !important; + .lg\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } - .lg\:w-5\/12 { - width: 41.666667% !important; + .lg\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } - .lg\:w-6\/12 { - width: 50% !important; + .lg\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } - .lg\:w-7\/12 { - width: 58.333333% !important; + .lg\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } - .lg\:w-8\/12 { - width: 66.666667% !important; + .lg\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } - .lg\:w-9\/12 { - width: 75% !important; + .lg\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } - .lg\:w-10\/12 { - width: 83.333333% !important; + .lg\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } - .lg\:w-11\/12 { - width: 91.666667% !important; + .lg\:focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; } - .lg\:w-full { - width: 100% !important; + .lg\:focus\:placeholder-current:focus::placeholder { + color: currentColor !important; } - .lg\:w-screen { - width: 100vw !important; + .lg\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } - .lg\:w-min { - width: min-content !important; + .lg\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } - .lg\:w-max { - width: max-content !important; + .lg\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } - .lg\:z-0 { - z-index: 0 !important; + .lg\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } - .lg\:z-10 { - z-index: 10 !important; + .lg\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } - .lg\:z-20 { - z-index: 20 !important; + .lg\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } - .lg\:z-30 { - z-index: 30 !important; + .lg\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } - .lg\:z-40 { - z-index: 40 !important; + .lg\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } - .lg\:z-50 { - z-index: 50 !important; + .lg\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } - .lg\:z-auto { - z-index: auto !important; + .lg\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } - .lg\:focus-within\:z-0:focus-within { - z-index: 0 !important; + .lg\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } - .lg\:focus-within\:z-10:focus-within { - z-index: 10 !important; + .lg\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } - .lg\:focus-within\:z-20:focus-within { - z-index: 20 !important; + .lg\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } - .lg\:focus-within\:z-30:focus-within { - z-index: 30 !important; + .lg\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } - .lg\:focus-within\:z-40:focus-within { - z-index: 40 !important; + .lg\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } - .lg\:focus-within\:z-50:focus-within { - z-index: 50 !important; + .lg\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } - .lg\:focus-within\:z-auto:focus-within { - z-index: auto !important; + .lg\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } - .lg\:focus\:z-0:focus { - z-index: 0 !important; + .lg\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } - .lg\:focus\:z-10:focus { - z-index: 10 !important; + .lg\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } - .lg\:focus\:z-20:focus { - z-index: 20 !important; + .lg\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } - .lg\:focus\:z-30:focus { - z-index: 30 !important; + .lg\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } - .lg\:focus\:z-40:focus { - z-index: 40 !important; + .lg\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } - .lg\:focus\:z-50:focus { - z-index: 50 !important; + .lg\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } - .lg\:focus\:z-auto:focus { - z-index: auto !important; + .lg\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } - .lg\:isolate { - isolation: isolate !important; + .lg\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } - .lg\:isolation-auto { - isolation: auto !important; + .lg\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-0 { - gap: 0px !important; + .lg\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-1 { - gap: 0.25rem !important; + .lg\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-2 { - gap: 0.5rem !important; + .lg\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-3 { - gap: 0.75rem !important; + .lg\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-4 { - gap: 1rem !important; + .lg\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-5 { - gap: 1.25rem !important; + .lg\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-6 { - gap: 1.5rem !important; + .lg\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-7 { - gap: 1.75rem !important; + .lg\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-8 { - gap: 2rem !important; + .lg\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-9 { - gap: 2.25rem !important; + .lg\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-10 { - gap: 2.5rem !important; + .lg\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-11 { - gap: 2.75rem !important; + .lg\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-12 { - gap: 3rem !important; + .lg\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-14 { - gap: 3.5rem !important; + .lg\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-16 { - gap: 4rem !important; + .lg\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-20 { - gap: 5rem !important; + .lg\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-24 { - gap: 6rem !important; + .lg\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-28 { - gap: 7rem !important; + .lg\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-32 { - gap: 8rem !important; + .lg\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-36 { - gap: 9rem !important; + .lg\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-40 { - gap: 10rem !important; + .lg\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-44 { - gap: 11rem !important; + .lg\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-48 { - gap: 12rem !important; + .lg\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-52 { - gap: 13rem !important; + .lg\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-56 { - gap: 14rem !important; + .lg\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-60 { - gap: 15rem !important; + .lg\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-64 { - gap: 16rem !important; + .lg\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-72 { - gap: 18rem !important; + .lg\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-80 { - gap: 20rem !important; + .lg\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-96 { - gap: 24rem !important; + .lg\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-px { - gap: 1px !important; + .lg\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-0\.5 { - gap: 0.125rem !important; + .lg\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-1\.5 { - gap: 0.375rem !important; + .lg\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-2\.5 { - gap: 0.625rem !important; + .lg\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-3\.5 { - gap: 0.875rem !important; + .lg\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-0 { - column-gap: 0px !important; + .lg\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-1 { - column-gap: 0.25rem !important; + .lg\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-2 { - column-gap: 0.5rem !important; + .lg\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-3 { - column-gap: 0.75rem !important; + .lg\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-4 { - column-gap: 1rem !important; + .lg\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-5 { - column-gap: 1.25rem !important; + .lg\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-6 { - column-gap: 1.5rem !important; + .lg\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-7 { - column-gap: 1.75rem !important; + .lg\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-8 { - column-gap: 2rem !important; + .lg\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-9 { - column-gap: 2.25rem !important; + .lg\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-10 { - column-gap: 2.5rem !important; + .lg\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-11 { - column-gap: 2.75rem !important; + .lg\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-12 { - column-gap: 3rem !important; + .lg\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-14 { - column-gap: 3.5rem !important; + .lg\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-16 { - column-gap: 4rem !important; + .lg\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-20 { - column-gap: 5rem !important; + .lg\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-24 { - column-gap: 6rem !important; + .lg\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-28 { - column-gap: 7rem !important; + .lg\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-32 { - column-gap: 8rem !important; + .lg\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-36 { - column-gap: 9rem !important; + .lg\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-40 { - column-gap: 10rem !important; + .lg\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } - .lg\:gap-x-44 { - column-gap: 11rem !important; + .lg\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; } - .lg\:gap-x-48 { - column-gap: 12rem !important; + .lg\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; } - .lg\:gap-x-52 { - column-gap: 13rem !important; + .lg\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; } - .lg\:gap-x-56 { - column-gap: 14rem !important; + .lg\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; } - .lg\:gap-x-60 { - column-gap: 15rem !important; + .lg\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; } - .lg\:gap-x-64 { - column-gap: 16rem !important; + .lg\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; } - .lg\:gap-x-72 { - column-gap: 18rem !important; + .lg\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; } - .lg\:gap-x-80 { - column-gap: 20rem !important; + .lg\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; } - .lg\:gap-x-96 { - column-gap: 24rem !important; + .lg\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; } - .lg\:gap-x-px { - column-gap: 1px !important; + .lg\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; } - .lg\:gap-x-0\.5 { - column-gap: 0.125rem !important; + .lg\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; } - .lg\:gap-x-1\.5 { - column-gap: 0.375rem !important; + .lg\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; } - .lg\:gap-x-2\.5 { - column-gap: 0.625rem !important; + .lg\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; } - .lg\:gap-x-3\.5 { - column-gap: 0.875rem !important; + .lg\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; } - .lg\:gap-y-0 { - row-gap: 0px !important; + .lg\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; } - .lg\:gap-y-1 { - row-gap: 0.25rem !important; + .lg\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; } - .lg\:gap-y-2 { - row-gap: 0.5rem !important; + .lg\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; } - .lg\:gap-y-3 { - row-gap: 0.75rem !important; + .lg\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; } - .lg\:gap-y-4 { - row-gap: 1rem !important; + .lg\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; } - .lg\:gap-y-5 { - row-gap: 1.25rem !important; + .lg\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; } - .lg\:gap-y-6 { - row-gap: 1.5rem !important; + .lg\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; } - .lg\:gap-y-7 { - row-gap: 1.75rem !important; + .lg\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; } - .lg\:gap-y-8 { - row-gap: 2rem !important; + .lg\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; } - .lg\:gap-y-9 { - row-gap: 2.25rem !important; + .lg\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; } - .lg\:gap-y-10 { - row-gap: 2.5rem !important; + .lg\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; } - .lg\:gap-y-11 { - row-gap: 2.75rem !important; + .lg\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; } - .lg\:gap-y-12 { - row-gap: 3rem !important; + .lg\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; } - .lg\:gap-y-14 { - row-gap: 3.5rem !important; + .lg\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; } - .lg\:gap-y-16 { - row-gap: 4rem !important; + .lg\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; } - .lg\:gap-y-20 { - row-gap: 5rem !important; + .lg\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; } - .lg\:gap-y-24 { - row-gap: 6rem !important; + .lg\:opacity-0 { + opacity: 0 !important; } - .lg\:gap-y-28 { - row-gap: 7rem !important; + .lg\:opacity-5 { + opacity: 0.05 !important; } - .lg\:gap-y-32 { - row-gap: 8rem !important; + .lg\:opacity-10 { + opacity: 0.1 !important; } - .lg\:gap-y-36 { - row-gap: 9rem !important; + .lg\:opacity-20 { + opacity: 0.2 !important; } - .lg\:gap-y-40 { - row-gap: 10rem !important; + .lg\:opacity-25 { + opacity: 0.25 !important; } - .lg\:gap-y-44 { - row-gap: 11rem !important; + .lg\:opacity-30 { + opacity: 0.3 !important; } - .lg\:gap-y-48 { - row-gap: 12rem !important; + .lg\:opacity-40 { + opacity: 0.4 !important; } - .lg\:gap-y-52 { - row-gap: 13rem !important; + .lg\:opacity-50 { + opacity: 0.5 !important; } - .lg\:gap-y-56 { - row-gap: 14rem !important; + .lg\:opacity-60 { + opacity: 0.6 !important; } - .lg\:gap-y-60 { - row-gap: 15rem !important; + .lg\:opacity-70 { + opacity: 0.7 !important; } - .lg\:gap-y-64 { - row-gap: 16rem !important; + .lg\:opacity-75 { + opacity: 0.75 !important; } - .lg\:gap-y-72 { - row-gap: 18rem !important; + .lg\:opacity-80 { + opacity: 0.8 !important; } - .lg\:gap-y-80 { - row-gap: 20rem !important; + .lg\:opacity-90 { + opacity: 0.9 !important; } - .lg\:gap-y-96 { - row-gap: 24rem !important; + .lg\:opacity-95 { + opacity: 0.95 !important; } - .lg\:gap-y-px { - row-gap: 1px !important; + .lg\:opacity-100 { + opacity: 1 !important; } - .lg\:gap-y-0\.5 { - row-gap: 0.125rem !important; + .group:hover .lg\:group-hover\:opacity-0 { + opacity: 0 !important; } - .lg\:gap-y-1\.5 { - row-gap: 0.375rem !important; + .group:hover .lg\:group-hover\:opacity-5 { + opacity: 0.05 !important; } - .lg\:gap-y-2\.5 { - row-gap: 0.625rem !important; + .group:hover .lg\:group-hover\:opacity-10 { + opacity: 0.1 !important; } - .lg\:gap-y-3\.5 { - row-gap: 0.875rem !important; + .group:hover .lg\:group-hover\:opacity-20 { + opacity: 0.2 !important; } - .lg\:grid-flow-row { - grid-auto-flow: row !important; + .group:hover .lg\:group-hover\:opacity-25 { + opacity: 0.25 !important; } - .lg\:grid-flow-col { - grid-auto-flow: column !important; + .group:hover .lg\:group-hover\:opacity-30 { + opacity: 0.3 !important; } - .lg\:grid-flow-row-dense { - grid-auto-flow: row dense !important; + .group:hover .lg\:group-hover\:opacity-40 { + opacity: 0.4 !important; } - .lg\:grid-flow-col-dense { - grid-auto-flow: column dense !important; + .group:hover .lg\:group-hover\:opacity-50 { + opacity: 0.5 !important; } - .lg\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)) !important; + .group:hover .lg\:group-hover\:opacity-60 { + opacity: 0.6 !important; } - .lg\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)) !important; + .group:hover .lg\:group-hover\:opacity-70 { + opacity: 0.7 !important; } - .lg\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)) !important; + .group:hover .lg\:group-hover\:opacity-75 { + opacity: 0.75 !important; } - .lg\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)) !important; + .group:hover .lg\:group-hover\:opacity-80 { + opacity: 0.8 !important; } - .lg\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)) !important; + .group:hover .lg\:group-hover\:opacity-90 { + opacity: 0.9 !important; } - .lg\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)) !important; + .group:hover .lg\:group-hover\:opacity-95 { + opacity: 0.95 !important; } - .lg\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)) !important; + .group:hover .lg\:group-hover\:opacity-100 { + opacity: 1 !important; } - .lg\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)) !important; + .lg\:focus-within\:opacity-0:focus-within { + opacity: 0 !important; } - .lg\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)) !important; + .lg\:focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; } - .lg\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)) !important; + .lg\:focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; } - .lg\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)) !important; + .lg\:focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; } - .lg\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)) !important; + .lg\:focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; } - .lg\:grid-cols-none { - grid-template-columns: none !important; + .lg\:focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; } - .lg\:auto-cols-auto { - grid-auto-columns: auto !important; + .lg\:focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; } - .lg\:auto-cols-min { - grid-auto-columns: min-content !important; + .lg\:focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; } - .lg\:auto-cols-max { - grid-auto-columns: max-content !important; + .lg\:focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; } - .lg\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr) !important; + .lg\:focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; } - .lg\:col-auto { - grid-column: auto !important; + .lg\:focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; } - .lg\:col-span-1 { - grid-column: span 1 / span 1 !important; + .lg\:focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; } - .lg\:col-span-2 { - grid-column: span 2 / span 2 !important; + .lg\:focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; } - .lg\:col-span-3 { - grid-column: span 3 / span 3 !important; + .lg\:focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; } - .lg\:col-span-4 { - grid-column: span 4 / span 4 !important; + .lg\:focus-within\:opacity-100:focus-within { + opacity: 1 !important; } - .lg\:col-span-5 { - grid-column: span 5 / span 5 !important; + .lg\:hover\:opacity-0:hover { + opacity: 0 !important; } - .lg\:col-span-6 { - grid-column: span 6 / span 6 !important; + .lg\:hover\:opacity-5:hover { + opacity: 0.05 !important; } - .lg\:col-span-7 { - grid-column: span 7 / span 7 !important; + .lg\:hover\:opacity-10:hover { + opacity: 0.1 !important; } - .lg\:col-span-8 { - grid-column: span 8 / span 8 !important; + .lg\:hover\:opacity-20:hover { + opacity: 0.2 !important; } - .lg\:col-span-9 { - grid-column: span 9 / span 9 !important; + .lg\:hover\:opacity-25:hover { + opacity: 0.25 !important; } - .lg\:col-span-10 { - grid-column: span 10 / span 10 !important; + .lg\:hover\:opacity-30:hover { + opacity: 0.3 !important; } - .lg\:col-span-11 { - grid-column: span 11 / span 11 !important; + .lg\:hover\:opacity-40:hover { + opacity: 0.4 !important; } - .lg\:col-span-12 { - grid-column: span 12 / span 12 !important; + .lg\:hover\:opacity-50:hover { + opacity: 0.5 !important; } - .lg\:col-span-full { - grid-column: 1 / -1 !important; + .lg\:hover\:opacity-60:hover { + opacity: 0.6 !important; } - .lg\:col-start-1 { - grid-column-start: 1 !important; + .lg\:hover\:opacity-70:hover { + opacity: 0.7 !important; } - .lg\:col-start-2 { - grid-column-start: 2 !important; + .lg\:hover\:opacity-75:hover { + opacity: 0.75 !important; } - .lg\:col-start-3 { - grid-column-start: 3 !important; + .lg\:hover\:opacity-80:hover { + opacity: 0.8 !important; } - .lg\:col-start-4 { - grid-column-start: 4 !important; + .lg\:hover\:opacity-90:hover { + opacity: 0.9 !important; } - .lg\:col-start-5 { - grid-column-start: 5 !important; + .lg\:hover\:opacity-95:hover { + opacity: 0.95 !important; } - .lg\:col-start-6 { - grid-column-start: 6 !important; + .lg\:hover\:opacity-100:hover { + opacity: 1 !important; } - .lg\:col-start-7 { - grid-column-start: 7 !important; + .lg\:focus\:opacity-0:focus { + opacity: 0 !important; } - .lg\:col-start-8 { - grid-column-start: 8 !important; + .lg\:focus\:opacity-5:focus { + opacity: 0.05 !important; } - .lg\:col-start-9 { - grid-column-start: 9 !important; + .lg\:focus\:opacity-10:focus { + opacity: 0.1 !important; } - .lg\:col-start-10 { - grid-column-start: 10 !important; + .lg\:focus\:opacity-20:focus { + opacity: 0.2 !important; } - .lg\:col-start-11 { - grid-column-start: 11 !important; + .lg\:focus\:opacity-25:focus { + opacity: 0.25 !important; } - .lg\:col-start-12 { - grid-column-start: 12 !important; + .lg\:focus\:opacity-30:focus { + opacity: 0.3 !important; } - .lg\:col-start-13 { - grid-column-start: 13 !important; + .lg\:focus\:opacity-40:focus { + opacity: 0.4 !important; } - .lg\:col-start-auto { - grid-column-start: auto !important; + .lg\:focus\:opacity-50:focus { + opacity: 0.5 !important; } - .lg\:col-end-1 { - grid-column-end: 1 !important; + .lg\:focus\:opacity-60:focus { + opacity: 0.6 !important; } - .lg\:col-end-2 { - grid-column-end: 2 !important; + .lg\:focus\:opacity-70:focus { + opacity: 0.7 !important; } - .lg\:col-end-3 { - grid-column-end: 3 !important; + .lg\:focus\:opacity-75:focus { + opacity: 0.75 !important; } - .lg\:col-end-4 { - grid-column-end: 4 !important; + .lg\:focus\:opacity-80:focus { + opacity: 0.8 !important; } - .lg\:col-end-5 { - grid-column-end: 5 !important; + .lg\:focus\:opacity-90:focus { + opacity: 0.9 !important; } - .lg\:col-end-6 { - grid-column-end: 6 !important; + .lg\:focus\:opacity-95:focus { + opacity: 0.95 !important; } - .lg\:col-end-7 { - grid-column-end: 7 !important; + .lg\:focus\:opacity-100:focus { + opacity: 1 !important; } - .lg\:col-end-8 { - grid-column-end: 8 !important; + .lg\:bg-blend-normal { + background-blend-mode: normal !important; } - .lg\:col-end-9 { - grid-column-end: 9 !important; + .lg\:bg-blend-multiply { + background-blend-mode: multiply !important; } - .lg\:col-end-10 { - grid-column-end: 10 !important; + .lg\:bg-blend-screen { + background-blend-mode: screen !important; } - .lg\:col-end-11 { - grid-column-end: 11 !important; + .lg\:bg-blend-overlay { + background-blend-mode: overlay !important; } - .lg\:col-end-12 { - grid-column-end: 12 !important; + .lg\:bg-blend-darken { + background-blend-mode: darken !important; } - .lg\:col-end-13 { - grid-column-end: 13 !important; + .lg\:bg-blend-lighten { + background-blend-mode: lighten !important; } - .lg\:col-end-auto { - grid-column-end: auto !important; + .lg\:bg-blend-color-dodge { + background-blend-mode: color-dodge !important; } - .lg\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)) !important; + .lg\:bg-blend-color-burn { + background-blend-mode: color-burn !important; } - .lg\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)) !important; + .lg\:bg-blend-hard-light { + background-blend-mode: hard-light !important; } - .lg\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)) !important; + .lg\:bg-blend-soft-light { + background-blend-mode: soft-light !important; } - .lg\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)) !important; + .lg\:bg-blend-difference { + background-blend-mode: difference !important; } - .lg\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)) !important; + .lg\:bg-blend-exclusion { + background-blend-mode: exclusion !important; } - .lg\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)) !important; + .lg\:bg-blend-hue { + background-blend-mode: hue !important; } - .lg\:grid-rows-none { - grid-template-rows: none !important; + .lg\:bg-blend-saturation { + background-blend-mode: saturation !important; } - .lg\:auto-rows-auto { - grid-auto-rows: auto !important; + .lg\:bg-blend-color { + background-blend-mode: color !important; } - .lg\:auto-rows-min { - grid-auto-rows: min-content !important; + .lg\:bg-blend-luminosity { + background-blend-mode: luminosity !important; } - .lg\:auto-rows-max { - grid-auto-rows: max-content !important; + .lg\:mix-blend-normal { + mix-blend-mode: normal !important; } - .lg\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr) !important; + .lg\:mix-blend-multiply { + mix-blend-mode: multiply !important; } - .lg\:row-auto { - grid-row: auto !important; + .lg\:mix-blend-screen { + mix-blend-mode: screen !important; } - .lg\:row-span-1 { - grid-row: span 1 / span 1 !important; + .lg\:mix-blend-overlay { + mix-blend-mode: overlay !important; } - .lg\:row-span-2 { - grid-row: span 2 / span 2 !important; + .lg\:mix-blend-darken { + mix-blend-mode: darken !important; } - .lg\:row-span-3 { - grid-row: span 3 / span 3 !important; + .lg\:mix-blend-lighten { + mix-blend-mode: lighten !important; } - .lg\:row-span-4 { - grid-row: span 4 / span 4 !important; + .lg\:mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; } - .lg\:row-span-5 { - grid-row: span 5 / span 5 !important; + .lg\:mix-blend-color-burn { + mix-blend-mode: color-burn !important; } - .lg\:row-span-6 { - grid-row: span 6 / span 6 !important; + .lg\:mix-blend-hard-light { + mix-blend-mode: hard-light !important; } - .lg\:row-span-full { - grid-row: 1 / -1 !important; + .lg\:mix-blend-soft-light { + mix-blend-mode: soft-light !important; } - .lg\:row-start-1 { - grid-row-start: 1 !important; + .lg\:mix-blend-difference { + mix-blend-mode: difference !important; } - .lg\:row-start-2 { - grid-row-start: 2 !important; + .lg\:mix-blend-exclusion { + mix-blend-mode: exclusion !important; } - .lg\:row-start-3 { - grid-row-start: 3 !important; + .lg\:mix-blend-hue { + mix-blend-mode: hue !important; } - .lg\:row-start-4 { - grid-row-start: 4 !important; + .lg\:mix-blend-saturation { + mix-blend-mode: saturation !important; } - .lg\:row-start-5 { - grid-row-start: 5 !important; + .lg\:mix-blend-color { + mix-blend-mode: color !important; } - .lg\:row-start-6 { - grid-row-start: 6 !important; + .lg\:mix-blend-luminosity { + mix-blend-mode: luminosity !important; } - .lg\:row-start-7 { - grid-row-start: 7 !important; + .lg\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:row-start-auto { - grid-row-start: auto !important; + .lg\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:row-end-1 { - grid-row-end: 1 !important; + .lg\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:row-end-2 { - grid-row-end: 2 !important; + .lg\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:row-end-3 { - grid-row-end: 3 !important; + .lg\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:row-end-4 { - grid-row-end: 4 !important; + .lg\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:row-end-5 { - grid-row-end: 5 !important; + .lg\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:row-end-6 { - grid-row-end: 6 !important; + .lg\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:row-end-7 { - grid-row-end: 7 !important; + .group:hover .lg\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:row-end-auto { - grid-row-end: auto !important; + .group:hover .lg\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:transform { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + .group:hover .lg\:group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:transform-gpu { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + .group:hover .lg\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:transform-none { - transform: none !important; + .group:hover .lg\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:origin-center { - transform-origin: center !important; + .group:hover .lg\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:origin-top { - transform-origin: top !important; + .group:hover .lg\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:origin-top-right { - transform-origin: top right !important; + .group:hover .lg\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:origin-right { - transform-origin: right !important; + .lg\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:origin-bottom-right { - transform-origin: bottom right !important; + .lg\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:origin-bottom { - transform-origin: bottom !important; + .lg\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:origin-bottom-left { - transform-origin: bottom left !important; + .lg\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:origin-left { - transform-origin: left !important; + .lg\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:origin-top-left { - transform-origin: top left !important; + .lg\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-0 { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .lg\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-50 { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .lg\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-75 { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .lg\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-90 { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .lg\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-95 { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; + .lg\:hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-100 { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .lg\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-105 { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .lg\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-110 { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .lg\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-125 { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .lg\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-150 { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .lg\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-x-0 { - --tw-scale-x: 0 !important; + .lg\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-x-50 { - --tw-scale-x: .5 !important; + .lg\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-x-75 { - --tw-scale-x: .75 !important; + .lg\:focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-x-90 { - --tw-scale-x: .9 !important; + .lg\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-x-95 { - --tw-scale-x: .95 !important; + .lg\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-x-100 { - --tw-scale-x: 1 !important; + .lg\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-x-105 { - --tw-scale-x: 1.05 !important; + .lg\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-x-110 { - --tw-scale-x: 1.1 !important; + .lg\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .lg\:scale-x-125 { - --tw-scale-x: 1.25 !important; + .lg\:outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .lg\:scale-x-150 { - --tw-scale-x: 1.5 !important; + .lg\:outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .lg\:scale-y-0 { - --tw-scale-y: 0 !important; + .lg\:outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .lg\:scale-y-50 { - --tw-scale-y: .5 !important; + .lg\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .lg\:scale-y-75 { - --tw-scale-y: .75 !important; + .lg\:focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .lg\:scale-y-90 { - --tw-scale-y: .9 !important; + .lg\:focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .lg\:scale-y-95 { - --tw-scale-y: .95 !important; + .lg\:focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .lg\:scale-y-100 { - --tw-scale-y: 1 !important; + .lg\:focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .lg\:scale-y-105 { - --tw-scale-y: 1.05 !important; + .lg\:focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .lg\:scale-y-110 { - --tw-scale-y: 1.1 !important; + .lg\:ring-0 { + --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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:scale-y-125 { - --tw-scale-y: 1.25 !important; + .lg\:ring-1 { + --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:scale-y-150 { - --tw-scale-y: 1.5 !important; + .lg\:ring-2 { + --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-0:hover { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .lg\:ring-4 { + --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-50:hover { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .lg\:ring-8 { + --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-75:hover { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .lg\:ring { + --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-90:hover { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .lg\:ring-inset { + --tw-ring-inset: inset !important; } - .lg\:hover\:scale-95:hover { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-100:hover { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .lg\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-105:hover { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .lg\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-110:hover { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .lg\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-125:hover { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .lg\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-150:hover { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .lg\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-x-0:hover { - --tw-scale-x: 0 !important; + .lg\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; } - .lg\:hover\:scale-x-50:hover { - --tw-scale-x: .5 !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-x-75:hover { - --tw-scale-x: .75 !important; + .lg\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-x-90:hover { - --tw-scale-x: .9 !important; + .lg\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-x-95:hover { - --tw-scale-x: .95 !important; + .lg\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-x-100:hover { - --tw-scale-x: 1 !important; + .lg\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05 !important; + .lg\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1 !important; + .lg\:focus\:ring-inset:focus { + --tw-ring-inset: inset !important; } - .lg\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25 !important; + .lg\:ring-transparent { + --tw-ring-color: transparent !important; } - .lg\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5 !important; + .lg\:ring-current { + --tw-ring-color: currentColor !important; } - .lg\:hover\:scale-y-0:hover { - --tw-scale-y: 0 !important; + .lg\:ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .lg\:hover\:scale-y-50:hover { - --tw-scale-y: .5 !important; + .lg\:ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .lg\:hover\:scale-y-75:hover { - --tw-scale-y: .75 !important; + .lg\:ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .lg\:hover\:scale-y-90:hover { - --tw-scale-y: .9 !important; + .lg\:ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .lg\:hover\:scale-y-95:hover { - --tw-scale-y: .95 !important; + .lg\:ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .lg\:hover\:scale-y-100:hover { - --tw-scale-y: 1 !important; + .lg\:ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .lg\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05 !important; + .lg\:ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .lg\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1 !important; + .lg\:ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .lg\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25 !important; + .lg\:ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .lg\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5 !important; + .lg\:ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .lg\:ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .lg\:ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .lg\:ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .lg\:ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; + .lg\:ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .lg\:ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .lg\:ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .lg\:ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .lg\:ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .lg\:ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-x-0:focus { - --tw-scale-x: 0 !important; + .lg\:ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-x-50:focus { - --tw-scale-x: .5 !important; + .lg\:ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-x-75:focus { - --tw-scale-x: .75 !important; + .lg\:ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-x-90:focus { - --tw-scale-x: .9 !important; + .lg\:ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-x-95:focus { - --tw-scale-x: .95 !important; + .lg\:ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-x-100:focus { - --tw-scale-x: 1 !important; + .lg\:ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05 !important; + .lg\:ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1 !important; + .lg\:ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25 !important; + .lg\:ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5 !important; + .lg\:ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-y-0:focus { - --tw-scale-y: 0 !important; + .lg\:ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-y-50:focus { - --tw-scale-y: .5 !important; + .lg\:ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-y-75:focus { - --tw-scale-y: .75 !important; + .lg\:ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-y-90:focus { - --tw-scale-y: .9 !important; + .lg\:ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-y-95:focus { - --tw-scale-y: .95 !important; + .lg\:ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-y-100:focus { - --tw-scale-y: 1 !important; + .lg\:ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05 !important; + .lg\:ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1 !important; + .lg\:ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25 !important; + .lg\:ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .lg\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5 !important; + .lg\:ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .lg\:rotate-0 { - --tw-rotate: 0deg !important; + .lg\:ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .lg\:rotate-1 { - --tw-rotate: 1deg !important; + .lg\:ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .lg\:rotate-2 { - --tw-rotate: 2deg !important; + .lg\:ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .lg\:rotate-3 { - --tw-rotate: 3deg !important; + .lg\:ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .lg\:rotate-6 { - --tw-rotate: 6deg !important; + .lg\:ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .lg\:rotate-12 { - --tw-rotate: 12deg !important; + .lg\:ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .lg\:rotate-45 { - --tw-rotate: 45deg !important; + .lg\:ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .lg\:rotate-90 { - --tw-rotate: 90deg !important; + .lg\:ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .lg\:rotate-180 { - --tw-rotate: 180deg !important; + .lg\:ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .lg\:-rotate-180 { - --tw-rotate: -180deg !important; + .lg\:ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .lg\:-rotate-90 { - --tw-rotate: -90deg !important; + .lg\:ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .lg\:-rotate-45 { - --tw-rotate: -45deg !important; + .lg\:ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .lg\:-rotate-12 { - --tw-rotate: -12deg !important; + .lg\:ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .lg\:-rotate-6 { - --tw-rotate: -6deg !important; + .lg\:ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .lg\:-rotate-3 { - --tw-rotate: -3deg !important; + .lg\:ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .lg\:-rotate-2 { - --tw-rotate: -2deg !important; + .lg\:ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .lg\:-rotate-1 { - --tw-rotate: -1deg !important; + .lg\:ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .lg\:hover\:rotate-0:hover { - --tw-rotate: 0deg !important; + .lg\:ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .lg\:hover\:rotate-1:hover { - --tw-rotate: 1deg !important; + .lg\:ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .lg\:hover\:rotate-2:hover { - --tw-rotate: 2deg !important; + .lg\:ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .lg\:hover\:rotate-3:hover { - --tw-rotate: 3deg !important; + .lg\:ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .lg\:hover\:rotate-6:hover { - --tw-rotate: 6deg !important; + .lg\:ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .lg\:hover\:rotate-12:hover { - --tw-rotate: 12deg !important; + .lg\:ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .lg\:hover\:rotate-45:hover { - --tw-rotate: 45deg !important; + .lg\:ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .lg\:hover\:rotate-90:hover { - --tw-rotate: 90deg !important; + .lg\:ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .lg\:hover\:rotate-180:hover { - --tw-rotate: 180deg !important; + .lg\:ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .lg\:hover\:-rotate-180:hover { - --tw-rotate: -180deg !important; + .lg\:ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .lg\:hover\:-rotate-90:hover { - --tw-rotate: -90deg !important; + .lg\:ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .lg\:hover\:-rotate-45:hover { - --tw-rotate: -45deg !important; + .lg\:ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .lg\:hover\:-rotate-12:hover { - --tw-rotate: -12deg !important; + .lg\:ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .lg\:hover\:-rotate-6:hover { - --tw-rotate: -6deg !important; + .lg\:ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .lg\:hover\:-rotate-3:hover { - --tw-rotate: -3deg !important; + .lg\:ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .lg\:hover\:-rotate-2:hover { - --tw-rotate: -2deg !important; + .lg\:ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .lg\:hover\:-rotate-1:hover { - --tw-rotate: -1deg !important; + .lg\:ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .lg\:focus\:rotate-0:focus { - --tw-rotate: 0deg !important; + .lg\:ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .lg\:focus\:rotate-1:focus { - --tw-rotate: 1deg !important; + .lg\:ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .lg\:focus\:rotate-2:focus { - --tw-rotate: 2deg !important; + .lg\:ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .lg\:focus\:rotate-3:focus { - --tw-rotate: 3deg !important; + .lg\:ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .lg\:focus\:rotate-6:focus { - --tw-rotate: 6deg !important; + .lg\:ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .lg\:focus\:rotate-12:focus { - --tw-rotate: 12deg !important; + .lg\:ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .lg\:focus\:rotate-45:focus { - --tw-rotate: 45deg !important; + .lg\:ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .lg\:focus\:rotate-90:focus { - --tw-rotate: 90deg !important; + .lg\:ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .lg\:focus\:rotate-180:focus { - --tw-rotate: 180deg !important; + .lg\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; } - .lg\:focus\:-rotate-180:focus { - --tw-rotate: -180deg !important; + .lg\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; } - .lg\:focus\:-rotate-90:focus { - --tw-rotate: -90deg !important; + .lg\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .lg\:focus\:-rotate-45:focus { - --tw-rotate: -45deg !important; + .lg\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .lg\:focus\:-rotate-12:focus { - --tw-rotate: -12deg !important; + .lg\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .lg\:focus\:-rotate-6:focus { - --tw-rotate: -6deg !important; + .lg\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .lg\:focus\:-rotate-3:focus { - --tw-rotate: -3deg !important; + .lg\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .lg\:focus\:-rotate-2:focus { - --tw-rotate: -2deg !important; + .lg\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .lg\:focus\:-rotate-1:focus { - --tw-rotate: -1deg !important; + .lg\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-0 { - --tw-translate-x: 0px !important; + .lg\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-1 { - --tw-translate-x: 0.25rem !important; + .lg\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-2 { - --tw-translate-x: 0.5rem !important; + .lg\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-3 { - --tw-translate-x: 0.75rem !important; + .lg\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-4 { - --tw-translate-x: 1rem !important; + .lg\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-5 { - --tw-translate-x: 1.25rem !important; + .lg\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-6 { - --tw-translate-x: 1.5rem !important; + .lg\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-7 { - --tw-translate-x: 1.75rem !important; + .lg\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-8 { - --tw-translate-x: 2rem !important; + .lg\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-9 { - --tw-translate-x: 2.25rem !important; + .lg\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-10 { - --tw-translate-x: 2.5rem !important; + .lg\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-11 { - --tw-translate-x: 2.75rem !important; + .lg\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-12 { - --tw-translate-x: 3rem !important; + .lg\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-14 { - --tw-translate-x: 3.5rem !important; + .lg\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-16 { - --tw-translate-x: 4rem !important; + .lg\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-20 { - --tw-translate-x: 5rem !important; + .lg\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-24 { - --tw-translate-x: 6rem !important; + .lg\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-28 { - --tw-translate-x: 7rem !important; + .lg\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-32 { - --tw-translate-x: 8rem !important; + .lg\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-36 { - --tw-translate-x: 9rem !important; + .lg\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-40 { - --tw-translate-x: 10rem !important; + .lg\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-44 { - --tw-translate-x: 11rem !important; + .lg\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-48 { - --tw-translate-x: 12rem !important; + .lg\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-52 { - --tw-translate-x: 13rem !important; + .lg\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-56 { - --tw-translate-x: 14rem !important; + .lg\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-60 { - --tw-translate-x: 15rem !important; + .lg\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-64 { - --tw-translate-x: 16rem !important; + .lg\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-72 { - --tw-translate-x: 18rem !important; + .lg\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-80 { - --tw-translate-x: 20rem !important; + .lg\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-96 { - --tw-translate-x: 24rem !important; + .lg\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-px { - --tw-translate-x: 1px !important; + .lg\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-0\.5 { - --tw-translate-x: 0.125rem !important; + .lg\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-1\.5 { - --tw-translate-x: 0.375rem !important; + .lg\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-2\.5 { - --tw-translate-x: 0.625rem !important; + .lg\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-3\.5 { - --tw-translate-x: 0.875rem !important; + .lg\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-0 { - --tw-translate-x: 0px !important; + .lg\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-1 { - --tw-translate-x: -0.25rem !important; + .lg\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-2 { - --tw-translate-x: -0.5rem !important; + .lg\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-3 { - --tw-translate-x: -0.75rem !important; + .lg\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-4 { - --tw-translate-x: -1rem !important; + .lg\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-5 { - --tw-translate-x: -1.25rem !important; + .lg\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-6 { - --tw-translate-x: -1.5rem !important; + .lg\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-7 { - --tw-translate-x: -1.75rem !important; + .lg\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-8 { - --tw-translate-x: -2rem !important; + .lg\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-9 { - --tw-translate-x: -2.25rem !important; + .lg\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-10 { - --tw-translate-x: -2.5rem !important; + .lg\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-11 { - --tw-translate-x: -2.75rem !important; + .lg\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-12 { - --tw-translate-x: -3rem !important; + .lg\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-14 { - --tw-translate-x: -3.5rem !important; + .lg\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-16 { - --tw-translate-x: -4rem !important; + .lg\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-20 { - --tw-translate-x: -5rem !important; + .lg\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-24 { - --tw-translate-x: -6rem !important; + .lg\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-28 { - --tw-translate-x: -7rem !important; + .lg\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-32 { - --tw-translate-x: -8rem !important; + .lg\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-36 { - --tw-translate-x: -9rem !important; + .lg\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-40 { - --tw-translate-x: -10rem !important; + .lg\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-44 { - --tw-translate-x: -11rem !important; + .lg\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-48 { - --tw-translate-x: -12rem !important; + .lg\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-52 { - --tw-translate-x: -13rem !important; + .lg\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-56 { - --tw-translate-x: -14rem !important; + .lg\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-60 { - --tw-translate-x: -15rem !important; + .lg\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-64 { - --tw-translate-x: -16rem !important; + .lg\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-72 { - --tw-translate-x: -18rem !important; + .lg\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-80 { - --tw-translate-x: -20rem !important; + .lg\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-96 { - --tw-translate-x: -24rem !important; + .lg\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-px { - --tw-translate-x: -1px !important; + .lg\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem !important; + .lg\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem !important; + .lg\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem !important; + .lg\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem !important; + .lg\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-1\/2 { - --tw-translate-x: 50% !important; + .lg\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-1\/3 { - --tw-translate-x: 33.333333% !important; + .lg\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-2\/3 { - --tw-translate-x: 66.666667% !important; + .lg\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-1\/4 { - --tw-translate-x: 25% !important; + .lg\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-2\/4 { - --tw-translate-x: 50% !important; + .lg\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .lg\:translate-x-3\/4 { - --tw-translate-x: 75% !important; + .lg\:focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; } - .lg\:translate-x-full { - --tw-translate-x: 100% !important; + .lg\:focus\:ring-current:focus { + --tw-ring-color: currentColor !important; } - .lg\:-translate-x-1\/2 { - --tw-translate-x: -50% !important; + .lg\:focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-1\/3 { - --tw-translate-x: -33.333333% !important; + .lg\:focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-2\/3 { - --tw-translate-x: -66.666667% !important; + .lg\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-1\/4 { - --tw-translate-x: -25% !important; + .lg\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-2\/4 { - --tw-translate-x: -50% !important; + .lg\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-3\/4 { - --tw-translate-x: -75% !important; + .lg\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .lg\:-translate-x-full { - --tw-translate-x: -100% !important; + .lg\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-0 { - --tw-translate-y: 0px !important; + .lg\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-1 { - --tw-translate-y: 0.25rem !important; + .lg\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-2 { - --tw-translate-y: 0.5rem !important; + .lg\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-3 { - --tw-translate-y: 0.75rem !important; + .lg\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-4 { - --tw-translate-y: 1rem !important; + .lg\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-5 { - --tw-translate-y: 1.25rem !important; + .lg\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-6 { - --tw-translate-y: 1.5rem !important; + .lg\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-7 { - --tw-translate-y: 1.75rem !important; + .lg\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-8 { - --tw-translate-y: 2rem !important; + .lg\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-9 { - --tw-translate-y: 2.25rem !important; + .lg\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-10 { - --tw-translate-y: 2.5rem !important; + .lg\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-11 { - --tw-translate-y: 2.75rem !important; + .lg\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-12 { - --tw-translate-y: 3rem !important; + .lg\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-14 { - --tw-translate-y: 3.5rem !important; + .lg\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-16 { - --tw-translate-y: 4rem !important; + .lg\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-20 { - --tw-translate-y: 5rem !important; + .lg\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-24 { - --tw-translate-y: 6rem !important; + .lg\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-28 { - --tw-translate-y: 7rem !important; + .lg\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-32 { - --tw-translate-y: 8rem !important; + .lg\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-36 { - --tw-translate-y: 9rem !important; + .lg\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-40 { - --tw-translate-y: 10rem !important; + .lg\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-44 { - --tw-translate-y: 11rem !important; + .lg\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-48 { - --tw-translate-y: 12rem !important; + .lg\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-52 { - --tw-translate-y: 13rem !important; + .lg\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-56 { - --tw-translate-y: 14rem !important; + .lg\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-60 { - --tw-translate-y: 15rem !important; + .lg\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-64 { - --tw-translate-y: 16rem !important; + .lg\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-72 { - --tw-translate-y: 18rem !important; + .lg\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-80 { - --tw-translate-y: 20rem !important; + .lg\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-96 { - --tw-translate-y: 24rem !important; + .lg\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-px { - --tw-translate-y: 1px !important; + .lg\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-0\.5 { - --tw-translate-y: 0.125rem !important; + .lg\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-1\.5 { - --tw-translate-y: 0.375rem !important; + .lg\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-2\.5 { - --tw-translate-y: 0.625rem !important; + .lg\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-3\.5 { - --tw-translate-y: 0.875rem !important; + .lg\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-0 { - --tw-translate-y: 0px !important; + .lg\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-1 { - --tw-translate-y: -0.25rem !important; + .lg\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-2 { - --tw-translate-y: -0.5rem !important; + .lg\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-3 { - --tw-translate-y: -0.75rem !important; + .lg\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-4 { - --tw-translate-y: -1rem !important; + .lg\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-5 { - --tw-translate-y: -1.25rem !important; + .lg\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-6 { - --tw-translate-y: -1.5rem !important; + .lg\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-7 { - --tw-translate-y: -1.75rem !important; + .lg\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-8 { - --tw-translate-y: -2rem !important; + .lg\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-9 { - --tw-translate-y: -2.25rem !important; + .lg\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-10 { - --tw-translate-y: -2.5rem !important; + .lg\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-11 { - --tw-translate-y: -2.75rem !important; + .lg\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-12 { - --tw-translate-y: -3rem !important; + .lg\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-14 { - --tw-translate-y: -3.5rem !important; + .lg\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-16 { - --tw-translate-y: -4rem !important; + .lg\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-20 { - --tw-translate-y: -5rem !important; + .lg\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-24 { - --tw-translate-y: -6rem !important; + .lg\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-28 { - --tw-translate-y: -7rem !important; + .lg\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-32 { - --tw-translate-y: -8rem !important; + .lg\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-36 { - --tw-translate-y: -9rem !important; + .lg\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-40 { - --tw-translate-y: -10rem !important; + .lg\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-44 { - --tw-translate-y: -11rem !important; + .lg\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-48 { - --tw-translate-y: -12rem !important; + .lg\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-52 { - --tw-translate-y: -13rem !important; + .lg\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-56 { - --tw-translate-y: -14rem !important; + .lg\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-60 { - --tw-translate-y: -15rem !important; + .lg\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-64 { - --tw-translate-y: -16rem !important; + .lg\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-72 { - --tw-translate-y: -18rem !important; + .lg\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-80 { - --tw-translate-y: -20rem !important; + .lg\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-96 { - --tw-translate-y: -24rem !important; + .lg\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-px { - --tw-translate-y: -1px !important; + .lg\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem !important; + .lg\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem !important; + .lg\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem !important; + .lg\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .lg\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem !important; + .lg\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-1\/2 { - --tw-translate-y: 50% !important; + .lg\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-1\/3 { - --tw-translate-y: 33.333333% !important; + .lg\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-2\/3 { - --tw-translate-y: 66.666667% !important; + .lg\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-1\/4 { - --tw-translate-y: 25% !important; + .lg\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-2\/4 { - --tw-translate-y: 50% !important; + .lg\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .lg\:translate-y-3\/4 { - --tw-translate-y: 75% !important; + .lg\:ring-opacity-0 { + --tw-ring-opacity: 0 !important; } - .lg\:translate-y-full { - --tw-translate-y: 100% !important; + .lg\:ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; } - .lg\:-translate-y-1\/2 { - --tw-translate-y: -50% !important; + .lg\:ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; } - .lg\:-translate-y-1\/3 { - --tw-translate-y: -33.333333% !important; + .lg\:ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; } - .lg\:-translate-y-2\/3 { - --tw-translate-y: -66.666667% !important; + .lg\:ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; } - .lg\:-translate-y-1\/4 { - --tw-translate-y: -25% !important; + .lg\:ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; } - .lg\:-translate-y-2\/4 { - --tw-translate-y: -50% !important; + .lg\:ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; } - .lg\:-translate-y-3\/4 { - --tw-translate-y: -75% !important; + .lg\:ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; } - .lg\:-translate-y-full { - --tw-translate-y: -100% !important; + .lg\:ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; } - .lg\:hover\:translate-x-0:hover { - --tw-translate-x: 0px !important; + .lg\:ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; } - .lg\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem !important; + .lg\:ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; } - .lg\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem !important; + .lg\:ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; } - .lg\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem !important; + .lg\:ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; } - .lg\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem !important; + .lg\:ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; } - .lg\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem !important; + .lg\:ring-opacity-100 { + --tw-ring-opacity: 1 !important; } - .lg\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem !important; + .lg\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; } - .lg\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem !important; + .lg\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; } - .lg\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem !important; + .lg\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; } - .lg\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem !important; + .lg\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; } - .lg\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem !important; + .lg\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; } - .lg\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem !important; + .lg\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; } - .lg\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem !important; + .lg\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; } - .lg\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem !important; + .lg\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; } - .lg\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem !important; + .lg\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; } - .lg\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem !important; + .lg\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; } - .lg\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem !important; + .lg\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; } - .lg\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem !important; + .lg\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; } - .lg\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem !important; + .lg\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; } - .lg\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem !important; + .lg\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; } - .lg\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem !important; + .lg\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; } - .lg\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem !important; + .lg\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; } - .lg\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem !important; + .lg\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; } - .lg\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem !important; + .lg\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; } - .lg\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem !important; + .lg\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; } - .lg\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem !important; + .lg\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; } - .lg\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem !important; + .lg\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; } - .lg\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem !important; + .lg\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; } - .lg\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem !important; + .lg\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; } - .lg\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem !important; + .lg\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; } - .lg\:hover\:translate-x-px:hover { - --tw-translate-x: 1px !important; + .lg\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; } - .lg\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem !important; + .lg\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; } - .lg\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem !important; + .lg\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; } - .lg\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem !important; + .lg\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; } - .lg\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem !important; + .lg\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; } - .lg\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px !important; + .lg\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; } - .lg\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem !important; + .lg\:ring-offset-0 { + --tw-ring-offset-width: 0px !important; } - .lg\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem !important; + .lg\:ring-offset-1 { + --tw-ring-offset-width: 1px !important; } - .lg\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem !important; + .lg\:ring-offset-2 { + --tw-ring-offset-width: 2px !important; } - .lg\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem !important; + .lg\:ring-offset-4 { + --tw-ring-offset-width: 4px !important; } - .lg\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem !important; + .lg\:ring-offset-8 { + --tw-ring-offset-width: 8px !important; } - .lg\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem !important; + .lg\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; } - .lg\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem !important; + .lg\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; } - .lg\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem !important; + .lg\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; } - .lg\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem !important; + .lg\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; } - .lg\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem !important; + .lg\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; } - .lg\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem !important; + .lg\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; } - .lg\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem !important; + .lg\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; } - .lg\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem !important; + .lg\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; } - .lg\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem !important; + .lg\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; } - .lg\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem !important; + .lg\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; } - .lg\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem !important; + .lg\:ring-offset-transparent { + --tw-ring-offset-color: transparent !important; } - .lg\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem !important; + .lg\:ring-offset-current { + --tw-ring-offset-color: currentColor !important; } - .lg\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem !important; + .lg\:ring-offset-black { + --tw-ring-offset-color: #000 !important; } - .lg\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem !important; + .lg\:ring-offset-white { + --tw-ring-offset-color: #fff !important; } - .lg\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem !important; + .lg\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; } - .lg\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem !important; + .lg\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; } - .lg\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem !important; + .lg\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; } - .lg\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem !important; + .lg\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; } - .lg\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem !important; + .lg\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; } - .lg\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem !important; + .lg\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; } - .lg\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem !important; + .lg\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; } - .lg\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem !important; + .lg\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; } - .lg\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem !important; + .lg\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; } - .lg\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem !important; + .lg\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; } - .lg\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px !important; + .lg\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; } - .lg\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem !important; + .lg\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; } - .lg\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem !important; + .lg\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; } - .lg\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem !important; + .lg\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; } - .lg\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem !important; + .lg\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; } - .lg\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50% !important; + .lg\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; } - .lg\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333% !important; + .lg\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; } - .lg\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667% !important; + .lg\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; } - .lg\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25% !important; + .lg\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; } - .lg\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50% !important; + .lg\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; } - .lg\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75% !important; + .lg\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; } - .lg\:hover\:translate-x-full:hover { - --tw-translate-x: 100% !important; + .lg\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; } - .lg\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50% !important; + .lg\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; } - .lg\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333% !important; + .lg\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; } - .lg\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667% !important; + .lg\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; } - .lg\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25% !important; + .lg\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; } - .lg\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50% !important; + .lg\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; } - .lg\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75% !important; + .lg\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; } - .lg\:hover\:-translate-x-full:hover { - --tw-translate-x: -100% !important; + .lg\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; } - .lg\:hover\:translate-y-0:hover { - --tw-translate-y: 0px !important; + .lg\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; } - .lg\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem !important; + .lg\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; } - .lg\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem !important; + .lg\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; } - .lg\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem !important; + .lg\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; } - .lg\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem !important; + .lg\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; } - .lg\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem !important; + .lg\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; } - .lg\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem !important; + .lg\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; } - .lg\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem !important; + .lg\:ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; } - .lg\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem !important; + .lg\:ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; } - .lg\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem !important; + .lg\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; } - .lg\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem !important; + .lg\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; } - .lg\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem !important; + .lg\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; } - .lg\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem !important; + .lg\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; } - .lg\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem !important; + .lg\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; } - .lg\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem !important; + .lg\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; } - .lg\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem !important; + .lg\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; } - .lg\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem !important; + .lg\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; } - .lg\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem !important; + .lg\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; } - .lg\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem !important; + .lg\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; } - .lg\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem !important; + .lg\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; } - .lg\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem !important; + .lg\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; } - .lg\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem !important; + .lg\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; } - .lg\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem !important; + .lg\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; } - .lg\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem !important; + .lg\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; } - .lg\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem !important; + .lg\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; } - .lg\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem !important; + .lg\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; } - .lg\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem !important; + .lg\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; } - .lg\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem !important; + .lg\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; } - .lg\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem !important; + .lg\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; } - .lg\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem !important; + .lg\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; } - .lg\:hover\:translate-y-px:hover { - --tw-translate-y: 1px !important; + .lg\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; } - .lg\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem !important; + .lg\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; } - .lg\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem !important; + .lg\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; } - .lg\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem !important; + .lg\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; } - .lg\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem !important; + .lg\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; } - .lg\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px !important; + .lg\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; } - .lg\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem !important; + .lg\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; } - .lg\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem !important; + .lg\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; } - .lg\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem !important; + .lg\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; } - .lg\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem !important; + .lg\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; } - .lg\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem !important; + .lg\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; } - .lg\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem !important; + .lg\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; } - .lg\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem !important; + .lg\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; } - .lg\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem !important; + .lg\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; } - .lg\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem !important; + .lg\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; } - .lg\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem !important; + .lg\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; } - .lg\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem !important; + .lg\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; } - .lg\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem !important; + .lg\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; } - .lg\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem !important; + .lg\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; } - .lg\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem !important; + .lg\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; } - .lg\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem !important; + .lg\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; } - .lg\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem !important; + .lg\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; } - .lg\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem !important; + .lg\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; } - .lg\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem !important; + .lg\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; } - .lg\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem !important; + .lg\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; } - .lg\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem !important; + .lg\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; } - .lg\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem !important; + .lg\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; } - .lg\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem !important; + .lg\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; } - .lg\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem !important; + .lg\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; } - .lg\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem !important; + .lg\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; } - .lg\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem !important; + .lg\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; } - .lg\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem !important; + .lg\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; } - .lg\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem !important; + .lg\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; } - .lg\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem !important; + .lg\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; } - .lg\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem !important; + .lg\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; } - .lg\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px !important; + .lg\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; } - .lg\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem !important; + .lg\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; } - .lg\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem !important; + .lg\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; } - .lg\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem !important; + .lg\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; } - .lg\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem !important; + .lg\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; } - .lg\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50% !important; + .lg\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; } - .lg\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333% !important; + .lg\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; } - .lg\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667% !important; + .lg\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; } - .lg\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25% !important; + .lg\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; } - .lg\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50% !important; + .lg\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; } - .lg\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75% !important; + .lg\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; } - .lg\:hover\:translate-y-full:hover { - --tw-translate-y: 100% !important; + .lg\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; } - .lg\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50% !important; + .lg\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; } - .lg\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333% !important; + .lg\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; } - .lg\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667% !important; + .lg\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; } - .lg\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25% !important; + .lg\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; } - .lg\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50% !important; + .lg\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; } - .lg\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75% !important; + .lg\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; } - .lg\:hover\:-translate-y-full:hover { - --tw-translate-y: -100% !important; + .lg\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; } - .lg\:focus\:translate-x-0:focus { - --tw-translate-x: 0px !important; + .lg\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; } - .lg\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem !important; + .lg\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; } - - .lg\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem !important; + + .lg\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; } - .lg\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem !important; + .lg\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; } - .lg\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem !important; + .lg\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; } - .lg\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem !important; + .lg\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; } - .lg\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem !important; + .lg\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; } - .lg\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem !important; + .lg\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; } - .lg\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem !important; + .lg\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; } - .lg\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem !important; + .lg\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; } - .lg\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem !important; + .lg\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; } - .lg\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem !important; + .lg\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; } - .lg\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem !important; + .lg\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; } - .lg\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem !important; + .lg\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; } - .lg\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem !important; + .lg\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; } - .lg\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem !important; + .lg\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; } - .lg\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem !important; + .lg\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; } - .lg\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem !important; + .lg\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; } - .lg\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem !important; + .lg\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; } - .lg\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem !important; + .lg\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; } - .lg\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem !important; + .lg\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; } - .lg\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem !important; + .lg\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; } - .lg\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem !important; + .lg\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; } - .lg\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem !important; + .lg\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; } - .lg\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem !important; + .lg\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; } - .lg\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem !important; + .lg\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; } - .lg\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem !important; + .lg\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; } - .lg\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem !important; + .lg\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; } - .lg\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem !important; + .lg\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; } - .lg\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem !important; + .lg\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; } - .lg\:focus\:translate-x-px:focus { - --tw-translate-x: 1px !important; + .lg\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; } - .lg\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem !important; + .lg\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; } - .lg\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem !important; + .lg\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; } - .lg\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem !important; + .lg\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; } - .lg\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem !important; + .lg\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; } - .lg\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px !important; + .lg\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; } - .lg\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem !important; + .lg\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; } - .lg\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem !important; + .lg\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; } - .lg\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem !important; + .lg\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; } - .lg\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem !important; + .lg\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; } - .lg\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem !important; + .lg\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; } - .lg\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem !important; + .lg\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; } - .lg\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem !important; + .lg\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; } - .lg\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem !important; + .lg\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; } - .lg\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem !important; + .lg\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; } - .lg\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem !important; + .lg\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; } - .lg\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem !important; + .lg\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; } - .lg\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem !important; + .lg\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; } - .lg\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem !important; + .lg\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; } - .lg\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem !important; + .lg\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; } - .lg\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem !important; + .lg\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; } - .lg\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem !important; + .lg\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; } - .lg\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem !important; + .lg\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; } - .lg\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem !important; + .lg\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; } - .lg\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem !important; + .lg\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; } - .lg\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem !important; + .lg\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; } - .lg\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem !important; + .lg\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; } - .lg\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem !important; + .lg\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; } - .lg\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem !important; + .lg\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; } - .lg\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem !important; + .lg\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; } - .lg\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem !important; + .lg\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; } - .lg\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem !important; + .lg\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; } - .lg\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem !important; + .lg\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; } - .lg\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem !important; + .lg\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; } - .lg\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem !important; + .lg\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; } - .lg\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px !important; + .lg\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; } - .lg\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem !important; + .lg\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; } - .lg\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem !important; + .lg\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; } - .lg\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem !important; + .lg\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; } - .lg\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem !important; + .lg\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; } - .lg\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50% !important; + .lg\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; } - .lg\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333% !important; + .lg\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; } - .lg\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667% !important; + .lg\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; } - .lg\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25% !important; + .lg\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; } - .lg\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50% !important; + .lg\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; } - .lg\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75% !important; + .lg\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; } - .lg\:focus\:translate-x-full:focus { - --tw-translate-x: 100% !important; + .lg\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; } - .lg\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50% !important; + .lg\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; } - .lg\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333% !important; + .lg\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; } - .lg\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667% !important; + .lg\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; } - .lg\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25% !important; + .lg\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; } - .lg\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50% !important; + .lg\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; } - .lg\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75% !important; + .lg\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; } - .lg\:focus\:-translate-x-full:focus { - --tw-translate-x: -100% !important; + .lg\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; } - .lg\:focus\:translate-y-0:focus { - --tw-translate-y: 0px !important; + .lg\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; } - .lg\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem !important; + .lg\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; } - .lg\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem !important; + .lg\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; } - .lg\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem !important; + .lg\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; } - .lg\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem !important; + .lg\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; } - .lg\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem !important; + .lg\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; } - .lg\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem !important; + .lg\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; } - .lg\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem !important; + .lg\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; } - .lg\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem !important; + .lg\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; } - .lg\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem !important; + .lg\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; } - .lg\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem !important; + .lg\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; } - .lg\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem !important; + .lg\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; } - .lg\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem !important; + .lg\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; } - .lg\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem !important; + .lg\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; } - .lg\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem !important; + .lg\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; } - .lg\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem !important; + .lg\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; } - .lg\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem !important; + .lg\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; } - .lg\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem !important; + .lg\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; } - .lg\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem !important; + .lg\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; } - .lg\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem !important; + .lg\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; } - .lg\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem !important; + .lg\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; } - .lg\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem !important; + .lg\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; } - .lg\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem !important; + .lg\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; } - .lg\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem !important; + .lg\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; } - .lg\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem !important; + .lg\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; } - .lg\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem !important; + .lg\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; } - .lg\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem !important; + .lg\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; } - .lg\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem !important; + .lg\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; } - .lg\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem !important; + .lg\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; } - .lg\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem !important; + .lg\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; } - .lg\:focus\:translate-y-px:focus { - --tw-translate-y: 1px !important; + .lg\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; } - .lg\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem !important; + .lg\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; } - .lg\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem !important; + .lg\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; } - .lg\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem !important; + .lg\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; } - .lg\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem !important; + .lg\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; } - .lg\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px !important; + .lg\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; } - .lg\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem !important; + .lg\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; } - .lg\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem !important; + .lg\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; } - .lg\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem !important; + .lg\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; } - .lg\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem !important; + .lg\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; } - .lg\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem !important; + .lg\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; } - .lg\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem !important; + .lg\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; } - .lg\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem !important; + .lg\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; } - .lg\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem !important; + .lg\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; } - .lg\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem !important; + .lg\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; } - .lg\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem !important; + .lg\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; } - .lg\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem !important; + .lg\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; } - .lg\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem !important; + .lg\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; } - .lg\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem !important; + .lg\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; } - .lg\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem !important; + .lg\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; } - .lg\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem !important; + .lg\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; } - .lg\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem !important; + .lg\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important; } - .lg\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem !important; + .lg\:filter-none { + filter: none !important; } - .lg\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem !important; + .lg\:blur-0 { + --tw-blur: blur(0) !important; } - .lg\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem !important; + .lg\:blur-sm { + --tw-blur: blur(4px) !important; } - .lg\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem !important; + .lg\:blur { + --tw-blur: blur(8px) !important; } - .lg\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem !important; + .lg\:blur-md { + --tw-blur: blur(12px) !important; } - .lg\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem !important; + .lg\:blur-lg { + --tw-blur: blur(16px) !important; } - .lg\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem !important; + .lg\:blur-xl { + --tw-blur: blur(24px) !important; } - .lg\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem !important; + .lg\:blur-2xl { + --tw-blur: blur(40px) !important; } - .lg\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem !important; + .lg\:blur-3xl { + --tw-blur: blur(64px) !important; } - .lg\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem !important; + .lg\:brightness-0 { + --tw-brightness: brightness(0) !important; } - .lg\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem !important; + .lg\:brightness-50 { + --tw-brightness: brightness(.5) !important; } - .lg\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem !important; + .lg\:brightness-75 { + --tw-brightness: brightness(.75) !important; } - .lg\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem !important; + .lg\:brightness-90 { + --tw-brightness: brightness(.9) !important; } - .lg\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px !important; + .lg\:brightness-95 { + --tw-brightness: brightness(.95) !important; } - .lg\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem !important; + .lg\:brightness-100 { + --tw-brightness: brightness(1) !important; } - .lg\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem !important; + .lg\:brightness-105 { + --tw-brightness: brightness(1.05) !important; } - .lg\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem !important; + .lg\:brightness-110 { + --tw-brightness: brightness(1.1) !important; } - .lg\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem !important; + .lg\:brightness-125 { + --tw-brightness: brightness(1.25) !important; } - .lg\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50% !important; + .lg\:brightness-150 { + --tw-brightness: brightness(1.5) !important; } - .lg\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333% !important; + .lg\:brightness-200 { + --tw-brightness: brightness(2) !important; } - .lg\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667% !important; + .lg\:contrast-0 { + --tw-contrast: contrast(0) !important; } - .lg\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25% !important; + .lg\:contrast-50 { + --tw-contrast: contrast(.5) !important; } - .lg\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50% !important; + .lg\:contrast-75 { + --tw-contrast: contrast(.75) !important; } - .lg\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75% !important; + .lg\:contrast-100 { + --tw-contrast: contrast(1) !important; } - .lg\:focus\:translate-y-full:focus { - --tw-translate-y: 100% !important; + .lg\:contrast-125 { + --tw-contrast: contrast(1.25) !important; } - .lg\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50% !important; + .lg\:contrast-150 { + --tw-contrast: contrast(1.5) !important; } - .lg\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333% !important; + .lg\:contrast-200 { + --tw-contrast: contrast(2) !important; } - .lg\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667% !important; + .lg\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; } - .lg\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25% !important; + .lg\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; } - .lg\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50% !important; + .lg\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; } - .lg\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75% !important; + .lg\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; } - .lg\:focus\:-translate-y-full:focus { - --tw-translate-y: -100% !important; + .lg\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; } - .lg\:skew-x-0 { - --tw-skew-x: 0deg !important; + .lg\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; } - .lg\:skew-x-1 { - --tw-skew-x: 1deg !important; + .lg\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000) !important; } - .lg\:skew-x-2 { - --tw-skew-x: 2deg !important; + .lg\:grayscale-0 { + --tw-grayscale: grayscale(0) !important; } - .lg\:skew-x-3 { - --tw-skew-x: 3deg !important; + .lg\:grayscale { + --tw-grayscale: grayscale(100%) !important; } - .lg\:skew-x-6 { - --tw-skew-x: 6deg !important; + .lg\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg) !important; } - .lg\:skew-x-12 { - --tw-skew-x: 12deg !important; + .lg\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg) !important; } - .lg\:-skew-x-12 { - --tw-skew-x: -12deg !important; + .lg\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg) !important; } - .lg\:-skew-x-6 { - --tw-skew-x: -6deg !important; + .lg\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg) !important; } - .lg\:-skew-x-3 { - --tw-skew-x: -3deg !important; + .lg\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg) !important; } - .lg\:-skew-x-2 { - --tw-skew-x: -2deg !important; + .lg\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg) !important; } - .lg\:-skew-x-1 { - --tw-skew-x: -1deg !important; + .lg\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg) !important; } - .lg\:skew-y-0 { - --tw-skew-y: 0deg !important; + .lg\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg) !important; } - .lg\:skew-y-1 { - --tw-skew-y: 1deg !important; + .lg\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg) !important; } - .lg\:skew-y-2 { - --tw-skew-y: 2deg !important; + .lg\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg) !important; } - .lg\:skew-y-3 { - --tw-skew-y: 3deg !important; + .lg\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg) !important; } - .lg\:skew-y-6 { - --tw-skew-y: 6deg !important; + .lg\:invert-0 { + --tw-invert: invert(0) !important; } - .lg\:skew-y-12 { - --tw-skew-y: 12deg !important; + .lg\:invert { + --tw-invert: invert(100%) !important; } - .lg\:-skew-y-12 { - --tw-skew-y: -12deg !important; + .lg\:saturate-0 { + --tw-saturate: saturate(0) !important; } - .lg\:-skew-y-6 { - --tw-skew-y: -6deg !important; + .lg\:saturate-50 { + --tw-saturate: saturate(.5) !important; } - .lg\:-skew-y-3 { - --tw-skew-y: -3deg !important; + .lg\:saturate-100 { + --tw-saturate: saturate(1) !important; } - .lg\:-skew-y-2 { - --tw-skew-y: -2deg !important; + .lg\:saturate-150 { + --tw-saturate: saturate(1.5) !important; } - .lg\:-skew-y-1 { - --tw-skew-y: -1deg !important; + .lg\:saturate-200 { + --tw-saturate: saturate(2) !important; } - .lg\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg !important; + .lg\:sepia-0 { + --tw-sepia: sepia(0) !important; } - .lg\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg !important; + .lg\:sepia { + --tw-sepia: sepia(100%) !important; } - .lg\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg !important; + .lg\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important; } - .lg\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg !important; + .lg\:backdrop-filter-none { + backdrop-filter: none !important; } - .lg\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg !important; + .lg\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0) !important; } - .lg\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg !important; + .lg\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5) !important; } - .lg\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg !important; + .lg\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75) !important; } - .lg\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg !important; + .lg\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9) !important; } - .lg\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg !important; + .lg\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95) !important; } - .lg\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg !important; + .lg\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1) !important; } - .lg\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg !important; + .lg\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05) !important; } - .lg\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg !important; + .lg\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1) !important; } - .lg\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg !important; + .lg\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25) !important; } - .lg\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg !important; + .lg\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5) !important; } - .lg\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg !important; + .lg\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2) !important; } - .lg\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg !important; + .lg\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0) !important; } - .lg\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg !important; + .lg\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5) !important; } - .lg\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg !important; + .lg\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75) !important; } - .lg\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg !important; + .lg\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1) !important; } - .lg\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg !important; + .lg\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25) !important; } - .lg\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg !important; + .lg\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5) !important; } - .lg\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg !important; + .lg\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2) !important; } - .lg\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg !important; + .lg\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0) !important; } - .lg\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg !important; + .lg\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%) !important; } - .lg\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg !important; + .lg\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; } - .lg\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg !important; + .lg\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; } - .lg\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg !important; + .lg\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; } - .lg\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg !important; + .lg\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; } - .lg\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg !important; + .lg\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; } - .lg\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg !important; + .lg\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; } - .lg\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg !important; + .lg\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; } - .lg\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg !important; + .lg\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; } - .lg\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg !important; + .lg\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; } - .lg\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg !important; + .lg\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; } - .lg\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg !important; + .lg\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; } - .lg\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg !important; + .lg\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0) !important; } - .lg\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg !important; + .lg\:backdrop-invert { + --tw-backdrop-invert: invert(100%) !important; } - .lg\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg !important; + .lg\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0) !important; } - .lg\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg !important; + .lg\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5) !important; } - .lg\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg !important; + .lg\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1) !important; } - .lg\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg !important; + .lg\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5) !important; } - .lg\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg !important; + .lg\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2) !important; } - .lg\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg !important; + .lg\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0) !important; } - .lg\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg !important; + .lg\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%) !important; } .lg\:transition-none { @@ -116517,6 +117079,70 @@ video { transition-duration: 150ms !important; } + .lg\:delay-75 { + transition-delay: 75ms !important; + } + + .lg\:delay-100 { + transition-delay: 100ms !important; + } + + .lg\:delay-150 { + transition-delay: 150ms !important; + } + + .lg\:delay-200 { + transition-delay: 200ms !important; + } + + .lg\:delay-300 { + transition-delay: 300ms !important; + } + + .lg\:delay-500 { + transition-delay: 500ms !important; + } + + .lg\:delay-700 { + transition-delay: 700ms !important; + } + + .lg\:delay-1000 { + transition-delay: 1000ms !important; + } + + .lg\:duration-75 { + transition-duration: 75ms !important; + } + + .lg\:duration-100 { + transition-duration: 100ms !important; + } + + .lg\:duration-150 { + transition-duration: 150ms !important; + } + + .lg\:duration-200 { + transition-duration: 200ms !important; + } + + .lg\:duration-300 { + transition-duration: 300ms !important; + } + + .lg\:duration-500 { + transition-duration: 500ms !important; + } + + .lg\:duration-700 { + transition-duration: 700ms !important; + } + + .lg\:duration-1000 { + transition-duration: 1000ms !important; + } + .lg\:ease-linear { transition-timing-function: linear !important; } @@ -116533,22319 +117159,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; } - .lg\:duration-75 { - transition-duration: 75ms !important; + .lg\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 1280px) { + .xl\:container { + width: 100%; + } + + @media (min-width: 640px) { + .xl\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .xl\:container { + max-width: 768px; + } } - .lg\:duration-100 { - transition-duration: 100ms !important; + @media (min-width: 1024px) { + .xl\:container { + max-width: 1024px; + } } - .lg\:duration-150 { - transition-duration: 150ms !important; + @media (min-width: 1280px) { + .xl\:container { + max-width: 1280px; + } } - .lg\:duration-200 { - transition-duration: 200ms !important; + @media (min-width: 1536px) { + .xl\:container { + max-width: 1536px; + } } - .lg\:duration-300 { - transition-duration: 300ms !important; + .xl\:sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .lg\:duration-500 { - transition-duration: 500ms !important; + .xl\:not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .lg\:duration-700 { - transition-duration: 700ms !important; + .xl\:focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .lg\:duration-1000 { - transition-duration: 1000ms !important; + .xl\:focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .lg\:delay-75 { - transition-delay: 75ms !important; + .xl\:focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .lg\:delay-100 { - transition-delay: 100ms !important; + .xl\:focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .lg\:delay-150 { - transition-delay: 150ms !important; + .xl\:pointer-events-none { + pointer-events: none !important; } - .lg\:delay-200 { - transition-delay: 200ms !important; + .xl\:pointer-events-auto { + pointer-events: auto !important; } - .lg\:delay-300 { - transition-delay: 300ms !important; + .xl\:visible { + visibility: visible !important; } - .lg\:delay-500 { - transition-delay: 500ms !important; + .xl\:invisible { + visibility: hidden !important; } - .lg\:delay-700 { - transition-delay: 700ms !important; + .xl\:static { + position: static !important; } - .lg\:delay-1000 { - transition-delay: 1000ms !important; + .xl\:fixed { + position: fixed !important; } - .lg\:animate-none { - animation: none !important; + .xl\:absolute { + position: absolute !important; } - .lg\:animate-spin { - animation: spin 1s linear infinite !important; + .xl\:relative { + position: relative !important; } - .lg\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + .xl\:sticky { + position: sticky !important; } - .lg\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + .xl\:inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; } - .lg\:animate-bounce { - animation: bounce 1s infinite !important; + .xl\:inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !important; } - .lg\:mix-blend-normal { - mix-blend-mode: normal !important; + .xl\:inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !important; } - .lg\:mix-blend-multiply { - mix-blend-mode: multiply !important; + .xl\:inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !important; } - .lg\:mix-blend-screen { - mix-blend-mode: screen !important; + .xl\:inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !important; } - .lg\:mix-blend-overlay { - mix-blend-mode: overlay !important; + .xl\:inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !important; } - .lg\:mix-blend-darken { - mix-blend-mode: darken !important; + .xl\:inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !important; } - .lg\:mix-blend-lighten { - mix-blend-mode: lighten !important; + .xl\:inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !important; } - .lg\:mix-blend-color-dodge { - mix-blend-mode: color-dodge !important; + .xl\:inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !important; } - .lg\:mix-blend-color-burn { - mix-blend-mode: color-burn !important; + .xl\:inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !important; } - .lg\:mix-blend-hard-light { - mix-blend-mode: hard-light !important; + .xl\:inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !important; } - .lg\:mix-blend-soft-light { - mix-blend-mode: soft-light !important; + .xl\:inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !important; } - .lg\:mix-blend-difference { - mix-blend-mode: difference !important; + .xl\:inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !important; } - .lg\:mix-blend-exclusion { - mix-blend-mode: exclusion !important; + .xl\:inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !important; } - .lg\:mix-blend-hue { - mix-blend-mode: hue !important; + .xl\:inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !important; } - .lg\:mix-blend-saturation { - mix-blend-mode: saturation !important; + .xl\:inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !important; } - .lg\:mix-blend-color { - mix-blend-mode: color !important; + .xl\:inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !important; } - .lg\:mix-blend-luminosity { - mix-blend-mode: luminosity !important; + .xl\:inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !important; } - .lg\:bg-blend-normal { - background-blend-mode: normal !important; + .xl\:inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !important; } - .lg\:bg-blend-multiply { - background-blend-mode: multiply !important; + .xl\:inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !important; } - .lg\:bg-blend-screen { - background-blend-mode: screen !important; + .xl\:inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !important; } - .lg\:bg-blend-overlay { - background-blend-mode: overlay !important; + .xl\:inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !important; } - .lg\:bg-blend-darken { - background-blend-mode: darken !important; + .xl\:inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !important; } - .lg\:bg-blend-lighten { - background-blend-mode: lighten !important; + .xl\:inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !important; } - .lg\:bg-blend-color-dodge { - background-blend-mode: color-dodge !important; + .xl\:inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !important; } - .lg\:bg-blend-color-burn { - background-blend-mode: color-burn !important; + .xl\:inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !important; } - .lg\:bg-blend-hard-light { - background-blend-mode: hard-light !important; + .xl\:inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !important; } - .lg\:bg-blend-soft-light { - background-blend-mode: soft-light !important; + .xl\:inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !important; } - .lg\:bg-blend-difference { - background-blend-mode: difference !important; + .xl\:inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !important; } - .lg\:bg-blend-exclusion { - background-blend-mode: exclusion !important; + .xl\:inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !important; } - .lg\:bg-blend-hue { - background-blend-mode: hue !important; + .xl\:inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !important; } - .lg\:bg-blend-saturation { - background-blend-mode: saturation !important; + .xl\:inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !important; } - .lg\:bg-blend-color { - background-blend-mode: color !important; + .xl\:inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !important; } - .lg\:bg-blend-luminosity { - background-blend-mode: luminosity !important; + .xl\:inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !important; } - .lg\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important; + .xl\:inset-2\.5 { + top: 0.625rem !important; + right: 0.625rem !important; + bottom: 0.625rem !important; + left: 0.625rem !important; } - .lg\:filter-none { - filter: none !important; + .xl\:inset-3\.5 { + top: 0.875rem !important; + right: 0.875rem !important; + bottom: 0.875rem !important; + left: 0.875rem !important; } - .lg\:blur-0 { - --tw-blur: blur(0) !important; + .xl\:-inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; } - .lg\:blur-sm { - --tw-blur: blur(4px) !important; + .xl\:-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !important; } - .lg\:blur { - --tw-blur: blur(8px) !important; + .xl\:-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !important; } - .lg\:blur-md { - --tw-blur: blur(12px) !important; + .xl\:-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !important; } - .lg\:blur-lg { - --tw-blur: blur(16px) !important; + .xl\:-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !important; } - .lg\:blur-xl { - --tw-blur: blur(24px) !important; + .xl\:-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !important; } - .lg\:blur-2xl { - --tw-blur: blur(40px) !important; + .xl\:-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !important; } - .lg\:blur-3xl { - --tw-blur: blur(64px) !important; + .xl\:-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !important; } - .lg\:brightness-0 { - --tw-brightness: brightness(0) !important; + .xl\:-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !important; } - .lg\:brightness-50 { - --tw-brightness: brightness(.5) !important; + .xl\:-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !important; } - .lg\:brightness-75 { - --tw-brightness: brightness(.75) !important; + .xl\:-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !important; } - .lg\:brightness-90 { - --tw-brightness: brightness(.9) !important; + .xl\:-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !important; } - .lg\:brightness-95 { - --tw-brightness: brightness(.95) !important; + .xl\:-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !important; } - .lg\:brightness-100 { - --tw-brightness: brightness(1) !important; + .xl\:-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !important; } - .lg\:brightness-105 { - --tw-brightness: brightness(1.05) !important; + .xl\:-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !important; } - .lg\:brightness-110 { - --tw-brightness: brightness(1.1) !important; + .xl\:-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !important; } - .lg\:brightness-125 { - --tw-brightness: brightness(1.25) !important; + .xl\:-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !important; } - .lg\:brightness-150 { - --tw-brightness: brightness(1.5) !important; + .xl\:-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !important; } - .lg\:brightness-200 { - --tw-brightness: brightness(2) !important; + .xl\:-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !important; } - .lg\:contrast-0 { - --tw-contrast: contrast(0) !important; + .xl\:-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !important; } - .lg\:contrast-50 { - --tw-contrast: contrast(.5) !important; + .xl\:-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !important; } - .lg\:contrast-75 { - --tw-contrast: contrast(.75) !important; + .xl\:-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !important; } - .lg\:contrast-100 { - --tw-contrast: contrast(1) !important; + .xl\:-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !important; } - .lg\:contrast-125 { - --tw-contrast: contrast(1.25) !important; + .xl\:-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !important; } - .lg\:contrast-150 { - --tw-contrast: contrast(1.5) !important; + .xl\:-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !important; } - .lg\:contrast-200 { - --tw-contrast: contrast(2) !important; + .xl\:-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !important; } - .lg\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; + .xl\:-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !important; } - .lg\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; + .xl\:-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !important; } - .lg\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; + .xl\:-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !important; } - .lg\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; + .xl\:-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !important; } - .lg\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; + .xl\:-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !important; } - .lg\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; + .xl\:-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !important; } - .lg\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000) !important; + .xl\:-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !important; } - .lg\:grayscale-0 { - --tw-grayscale: grayscale(0) !important; + .xl\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; } - .lg\:grayscale { - --tw-grayscale: grayscale(100%) !important; + .xl\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; } - .lg\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg) !important; + .xl\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; } - .lg\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg) !important; + .xl\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; } - .lg\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg) !important; + .xl\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; } - .lg\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg) !important; + .xl\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; } - .lg\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg) !important; + .xl\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; } - .lg\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg) !important; + .xl\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; } - .lg\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg) !important; + .xl\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; } - .lg\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg) !important; + .xl\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; } - .lg\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg) !important; + .xl\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; } - .lg\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg) !important; + .xl\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; } - .lg\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg) !important; + .xl\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; } - .lg\:invert-0 { - --tw-invert: invert(0) !important; + .xl\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; } - .lg\:invert { - --tw-invert: invert(100%) !important; + .xl\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; } - .lg\:saturate-0 { - --tw-saturate: saturate(0) !important; + .xl\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; } - .lg\:saturate-50 { - --tw-saturate: saturate(.5) !important; + .xl\:inset-y-0 { + top: 0px !important; + bottom: 0px !important; } - .lg\:saturate-100 { - --tw-saturate: saturate(1) !important; + .xl\:inset-x-0 { + right: 0px !important; + left: 0px !important; } - .lg\:saturate-150 { - --tw-saturate: saturate(1.5) !important; + .xl\:inset-y-1 { + top: 0.25rem !important; + bottom: 0.25rem !important; } - .lg\:saturate-200 { - --tw-saturate: saturate(2) !important; + .xl\:inset-x-1 { + right: 0.25rem !important; + left: 0.25rem !important; } - .lg\:sepia-0 { - --tw-sepia: sepia(0) !important; + .xl\:inset-y-2 { + top: 0.5rem !important; + bottom: 0.5rem !important; } - .lg\:sepia { - --tw-sepia: sepia(100%) !important; + .xl\:inset-x-2 { + right: 0.5rem !important; + left: 0.5rem !important; } - .lg\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important; + .xl\:inset-y-3 { + top: 0.75rem !important; + bottom: 0.75rem !important; } - .lg\:backdrop-filter-none { - backdrop-filter: none !important; + .xl\:inset-x-3 { + right: 0.75rem !important; + left: 0.75rem !important; } - .lg\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0) !important; + .xl\:inset-y-4 { + top: 1rem !important; + bottom: 1rem !important; } - .lg\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5) !important; + .xl\:inset-x-4 { + right: 1rem !important; + left: 1rem !important; } - .lg\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75) !important; + .xl\:inset-y-5 { + top: 1.25rem !important; + bottom: 1.25rem !important; } - .lg\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9) !important; + .xl\:inset-x-5 { + right: 1.25rem !important; + left: 1.25rem !important; } - .lg\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95) !important; + .xl\:inset-y-6 { + top: 1.5rem !important; + bottom: 1.5rem !important; } - .lg\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1) !important; + .xl\:inset-x-6 { + right: 1.5rem !important; + left: 1.5rem !important; } - .lg\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05) !important; + .xl\:inset-y-7 { + top: 1.75rem !important; + bottom: 1.75rem !important; } - .lg\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1) !important; + .xl\:inset-x-7 { + right: 1.75rem !important; + left: 1.75rem !important; } - .lg\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25) !important; + .xl\:inset-y-8 { + top: 2rem !important; + bottom: 2rem !important; } - .lg\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5) !important; + .xl\:inset-x-8 { + right: 2rem !important; + left: 2rem !important; } - .lg\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2) !important; + .xl\:inset-y-9 { + top: 2.25rem !important; + bottom: 2.25rem !important; } - .lg\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0) !important; + .xl\:inset-x-9 { + right: 2.25rem !important; + left: 2.25rem !important; } - .lg\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5) !important; + .xl\:inset-y-10 { + top: 2.5rem !important; + bottom: 2.5rem !important; } - .lg\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75) !important; + .xl\:inset-x-10 { + right: 2.5rem !important; + left: 2.5rem !important; } - .lg\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1) !important; + .xl\:inset-y-11 { + top: 2.75rem !important; + bottom: 2.75rem !important; } - .lg\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25) !important; + .xl\:inset-x-11 { + right: 2.75rem !important; + left: 2.75rem !important; } - .lg\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5) !important; + .xl\:inset-y-12 { + top: 3rem !important; + bottom: 3rem !important; } - .lg\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2) !important; + .xl\:inset-x-12 { + right: 3rem !important; + left: 3rem !important; } - .lg\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0) !important; + .xl\:inset-y-14 { + top: 3.5rem !important; + bottom: 3.5rem !important; } - .lg\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%) !important; + .xl\:inset-x-14 { + right: 3.5rem !important; + left: 3.5rem !important; } - .lg\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; + .xl\:inset-y-16 { + top: 4rem !important; + bottom: 4rem !important; } - .lg\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; + .xl\:inset-x-16 { + right: 4rem !important; + left: 4rem !important; } - .lg\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; + .xl\:inset-y-20 { + top: 5rem !important; + bottom: 5rem !important; } - .lg\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; + .xl\:inset-x-20 { + right: 5rem !important; + left: 5rem !important; } - .lg\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; + .xl\:inset-y-24 { + top: 6rem !important; + bottom: 6rem !important; } - .lg\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; + .xl\:inset-x-24 { + right: 6rem !important; + left: 6rem !important; } - .lg\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; + .xl\:inset-y-28 { + top: 7rem !important; + bottom: 7rem !important; } - .lg\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; + .xl\:inset-x-28 { + right: 7rem !important; + left: 7rem !important; } - .lg\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; + .xl\:inset-y-32 { + top: 8rem !important; + bottom: 8rem !important; } - .lg\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; + .xl\:inset-x-32 { + right: 8rem !important; + left: 8rem !important; } - .lg\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; + .xl\:inset-y-36 { + top: 9rem !important; + bottom: 9rem !important; } - .lg\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0) !important; + .xl\:inset-x-36 { + right: 9rem !important; + left: 9rem !important; } - .lg\:backdrop-invert { - --tw-backdrop-invert: invert(100%) !important; + .xl\:inset-y-40 { + top: 10rem !important; + bottom: 10rem !important; } - .lg\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0) !important; + .xl\:inset-x-40 { + right: 10rem !important; + left: 10rem !important; } - .lg\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5) !important; + .xl\:inset-y-44 { + top: 11rem !important; + bottom: 11rem !important; } - .lg\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1) !important; + .xl\:inset-x-44 { + right: 11rem !important; + left: 11rem !important; } - .lg\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5) !important; + .xl\:inset-y-48 { + top: 12rem !important; + bottom: 12rem !important; } - .lg\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2) !important; + .xl\:inset-x-48 { + right: 12rem !important; + left: 12rem !important; } - .lg\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0) !important; + .xl\:inset-y-52 { + top: 13rem !important; + bottom: 13rem !important; } - .lg\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%) !important; + .xl\:inset-x-52 { + right: 13rem !important; + left: 13rem !important; } - .lg\:example { - font-weight: 700; - color: #ef4444; + .xl\:inset-y-56 { + top: 14rem !important; + bottom: 14rem !important; } -} -@media (min-width: 1280px) { - .xl\:container { - width: 100%; + .xl\:inset-x-56 { + right: 14rem !important; + left: 14rem !important; } - @media (min-width: 640px) { - .xl\:container { - max-width: 640px; - } + .xl\:inset-y-60 { + top: 15rem !important; + bottom: 15rem !important; } - @media (min-width: 768px) { - .xl\:container { - max-width: 768px; - } + .xl\:inset-x-60 { + right: 15rem !important; + left: 15rem !important; } - @media (min-width: 1024px) { - .xl\:container { - max-width: 1024px; - } + .xl\:inset-y-64 { + top: 16rem !important; + bottom: 16rem !important; } - @media (min-width: 1280px) { - .xl\:container { - max-width: 1280px; - } + .xl\:inset-x-64 { + right: 16rem !important; + left: 16rem !important; } - @media (min-width: 1536px) { - .xl\:container { - max-width: 1536px; - } + .xl\:inset-y-72 { + top: 18rem !important; + bottom: 18rem !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\:inset-x-72 { + right: 18rem !important; + left: 18rem !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\:inset-y-80 { + top: 20rem !important; + bottom: 20rem !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\:inset-x-80 { + right: 20rem !important; + left: 20rem !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\:inset-y-96 { + top: 24rem !important; + bottom: 24rem !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\:inset-x-96 { + right: 24rem !important; + left: 24rem !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\:inset-y-auto { + top: auto !important; + bottom: auto !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\:inset-x-auto { + right: auto !important; + left: auto !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\:inset-y-px { + top: 1px !important; + bottom: 1px !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\:inset-x-px { + right: 1px !important; + left: 1px !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\:inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !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\:inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !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\:inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !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\:inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !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\:inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !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\:inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !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\:inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !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\:inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !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\:-inset-y-0 { + top: 0px !important; + bottom: 0px !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\:-inset-x-0 { + right: 0px !important; + left: 0px !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\:-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !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\:-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !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\:-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !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\:-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !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\:-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !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\:-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !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\:-inset-y-4 { + top: -1rem !important; + bottom: -1rem !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\:-inset-x-4 { + right: -1rem !important; + left: -1rem !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\:-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !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\:-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !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\:-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !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\:-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !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\:-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !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\:-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !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\:-inset-y-8 { + top: -2rem !important; + bottom: -2rem !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\:-inset-x-8 { + right: -2rem !important; + left: -2rem !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\:-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !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\:-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !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\:-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !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\:-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !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\:-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !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\:-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !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\:-inset-y-12 { + top: -3rem !important; + bottom: -3rem !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\:-inset-x-12 { + right: -3rem !important; + left: -3rem !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\:-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !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\:-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !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\:-inset-y-16 { + top: -4rem !important; + bottom: -4rem !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\:-inset-x-16 { + right: -4rem !important; + left: -4rem !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\:-inset-y-20 { + top: -5rem !important; + bottom: -5rem !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\:-inset-x-20 { + right: -5rem !important; + left: -5rem !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\:-inset-y-24 { + top: -6rem !important; + bottom: -6rem !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\:-inset-x-24 { + right: -6rem !important; + left: -6rem !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\:-inset-y-28 { + top: -7rem !important; + bottom: -7rem !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\:-inset-x-28 { + right: -7rem !important; + left: -7rem !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\:-inset-y-32 { + top: -8rem !important; + bottom: -8rem !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\:-inset-x-32 { + right: -8rem !important; + left: -8rem !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\:-inset-y-36 { + top: -9rem !important; + bottom: -9rem !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\:-inset-x-36 { + right: -9rem !important; + left: -9rem !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\:-inset-y-40 { + top: -10rem !important; + bottom: -10rem !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\:-inset-x-40 { + right: -10rem !important; + left: -10rem !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\:-inset-y-44 { + top: -11rem !important; + bottom: -11rem !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\:-inset-x-44 { + right: -11rem !important; + left: -11rem !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\:-inset-y-48 { + top: -12rem !important; + bottom: -12rem !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\:-inset-x-48 { + right: -12rem !important; + left: -12rem !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\:-inset-y-52 { + top: -13rem !important; + bottom: -13rem !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\:-inset-x-52 { + right: -13rem !important; + left: -13rem !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\:-inset-y-56 { + top: -14rem !important; + bottom: -14rem !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\:-inset-x-56 { + right: -14rem !important; + left: -14rem !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\:-inset-y-60 { + top: -15rem !important; + bottom: -15rem !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\:-inset-x-60 { + right: -15rem !important; + left: -15rem !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\:-inset-y-64 { + top: -16rem !important; + bottom: -16rem !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\:-inset-x-64 { + right: -16rem !important; + left: -16rem !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\:-inset-y-72 { + top: -18rem !important; + bottom: -18rem !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\:-inset-x-72 { + right: -18rem !important; + left: -18rem !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\:-inset-y-80 { + top: -20rem !important; + bottom: -20rem !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\:-inset-x-80 { + right: -20rem !important; + left: -20rem !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\:-inset-y-96 { + top: -24rem !important; + bottom: -24rem !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\:-inset-x-96 { + right: -24rem !important; + left: -24rem !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\:-inset-y-px { + top: -1px !important; + bottom: -1px !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\:-inset-x-px { + right: -1px !important; + left: -1px !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\:-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !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\:-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !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\:-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !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\:-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !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\:-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !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\:-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !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\:-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !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\:-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !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\:inset-y-1\/2 { + top: 50% !important; + bottom: 50% !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\:inset-x-1\/2 { + right: 50% !important; + left: 50% !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\:inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !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\:inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !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\:inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !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\:inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !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\:inset-y-1\/4 { + top: 25% !important; + bottom: 25% !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\:inset-x-1\/4 { + right: 25% !important; + left: 25% !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\:inset-y-2\/4 { + top: 50% !important; + bottom: 50% !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\:inset-x-2\/4 { + right: 50% !important; + left: 50% !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\:inset-y-3\/4 { + top: 75% !important; + bottom: 75% !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\:inset-x-3\/4 { + right: 75% !important; + left: 75% !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\:inset-y-full { + top: 100% !important; + bottom: 100% !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\:inset-x-full { + right: 100% !important; + left: 100% !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\:-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !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\:-inset-x-1\/2 { + right: -50% !important; + left: -50% !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\:-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !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\:-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !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\:-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !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\:-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !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\:-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !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\:-inset-x-1\/4 { + right: -25% !important; + left: -25% !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\:-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !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\:-inset-x-2\/4 { + right: -50% !important; + left: -50% !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\:-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !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\:-inset-x-3\/4 { + right: -75% !important; + left: -75% !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\:-inset-y-full { + top: -100% !important; + bottom: -100% !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\:-inset-x-full { + right: -100% !important; + left: -100% !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\:top-0 { + top: 0px !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\:right-0 { + right: 0px !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\:bottom-0 { + bottom: 0px !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\:left-0 { + left: 0px !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\:top-1 { + top: 0.25rem !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\:right-1 { + right: 0.25rem !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\:bottom-1 { + bottom: 0.25rem !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\:left-1 { + left: 0.25rem !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\:top-2 { + top: 0.5rem !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\:right-2 { + right: 0.5rem !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\:bottom-2 { + bottom: 0.5rem !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\:left-2 { + left: 0.5rem !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\:top-3 { + top: 0.75rem !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\:right-3 { + right: 0.75rem !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\:bottom-3 { + bottom: 0.75rem !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\:left-3 { + left: 0.75rem !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\:top-4 { + top: 1rem !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\:right-4 { + right: 1rem !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\:bottom-4 { + bottom: 1rem !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\:left-4 { + left: 1rem !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\:top-5 { + top: 1.25rem !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\:right-5 { + right: 1.25rem !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\:bottom-5 { + bottom: 1.25rem !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\:left-5 { + left: 1.25rem !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\:top-6 { + top: 1.5rem !important; } - .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1 !important; + .xl\:right-6 { + right: 1.5rem !important; } - .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1 !important; + .xl\:bottom-6 { + bottom: 1.5rem !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\:left-6 { + left: 1.5rem !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\:top-7 { + top: 1.75rem !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\:right-7 { + right: 1.75rem !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\:bottom-7 { + bottom: 1.75rem !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\:left-7 { + left: 1.75rem !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\:top-8 { + top: 2rem !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\:right-8 { + right: 2rem !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\:bottom-8 { + bottom: 2rem !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\:left-8 { + left: 2rem !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\:top-9 { + top: 2.25rem !important; } - .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1 !important; + .xl\:right-9 { + right: 2.25rem !important; } - .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1 !important; + .xl\:bottom-9 { + bottom: 2.25rem !important; } - .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent !important; + .xl\:left-9 { + left: 2.25rem !important; } - .xl\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor !important; + .xl\:top-10 { + top: 2.5rem !important; } - .xl\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; + .xl\:right-10 { + right: 2.5rem !important; } - .xl\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; + .xl\:bottom-10 { + bottom: 2.5rem !important; } - .xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; + .xl\:left-10 { + left: 2.5rem !important; } - .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; + .xl\:top-11 { + top: 2.75rem !important; } - .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; + .xl\:right-11 { + right: 2.75rem !important; } - .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; + .xl\:bottom-11 { + bottom: 2.75rem !important; } - .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; + .xl\:left-11 { + left: 2.75rem !important; } - .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; + .xl\:top-12 { + top: 3rem !important; } - .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; + .xl\:right-12 { + right: 3rem !important; } - .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; + .xl\:bottom-12 { + bottom: 3rem !important; } - .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; + .xl\:left-12 { + left: 3rem !important; } - .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; + .xl\:top-14 { + top: 3.5rem !important; } - .xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; + .xl\:right-14 { + right: 3.5rem !important; } - .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; + .xl\:bottom-14 { + bottom: 3.5rem !important; } - .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; + .xl\:left-14 { + left: 3.5rem !important; } - .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; + .xl\:top-16 { + top: 4rem !important; } - .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; + .xl\:right-16 { + right: 4rem !important; } - .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; + .xl\:bottom-16 { + bottom: 4rem !important; } - .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; + .xl\:left-16 { + left: 4rem !important; } - .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; + .xl\:top-20 { + top: 5rem !important; } - .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; + .xl\:right-20 { + right: 5rem !important; } - .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; + .xl\:bottom-20 { + bottom: 5rem !important; } - .xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; + .xl\:left-20 { + left: 5rem !important; } - .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; + .xl\:top-24 { + top: 6rem !important; } - .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; + .xl\:right-24 { + right: 6rem !important; } - .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; + .xl\:bottom-24 { + bottom: 6rem !important; } - .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; + .xl\:left-24 { + left: 6rem !important; } - .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; + .xl\:top-28 { + top: 7rem !important; } - .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; + .xl\:right-28 { + right: 7rem !important; } - .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; + .xl\:bottom-28 { + bottom: 7rem !important; } - .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; + .xl\:left-28 { + left: 7rem !important; } - .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; + .xl\:top-32 { + top: 8rem !important; } - .xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; + .xl\:right-32 { + right: 8rem !important; } - .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; + .xl\:bottom-32 { + bottom: 8rem !important; } - .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; + .xl\:left-32 { + left: 8rem !important; } - .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; + .xl\:top-36 { + top: 9rem !important; } - .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; + .xl\:right-36 { + right: 9rem !important; } - .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; + .xl\:bottom-36 { + bottom: 9rem !important; } - .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; + .xl\:left-36 { + left: 9rem !important; } - .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; + .xl\:top-40 { + top: 10rem !important; } - .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; + .xl\:right-40 { + right: 10rem !important; } - .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; + .xl\:bottom-40 { + bottom: 10rem !important; } - .xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; + .xl\:left-40 { + left: 10rem !important; } - .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; + .xl\:top-44 { + top: 11rem !important; } - .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; + .xl\:right-44 { + right: 11rem !important; } - .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; + .xl\:bottom-44 { + bottom: 11rem !important; } - .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; + .xl\:left-44 { + left: 11rem !important; } - .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; + .xl\:top-48 { + top: 12rem !important; } - .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; + .xl\:right-48 { + right: 12rem !important; } - .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; + .xl\:bottom-48 { + bottom: 12rem !important; } - .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; + .xl\:left-48 { + left: 12rem !important; } - .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; + .xl\:top-52 { + top: 13rem !important; } - .xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; + .xl\:right-52 { + right: 13rem !important; } - .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; + .xl\:bottom-52 { + bottom: 13rem !important; } - .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; + .xl\:left-52 { + left: 13rem !important; } - .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; + .xl\:top-56 { + top: 14rem !important; } - .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; + .xl\:right-56 { + right: 14rem !important; } - .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; + .xl\:bottom-56 { + bottom: 14rem !important; } - .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; + .xl\:left-56 { + left: 14rem !important; } - .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; + .xl\:top-60 { + top: 15rem !important; } - .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; + .xl\:right-60 { + right: 15rem !important; } - .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; + .xl\:bottom-60 { + bottom: 15rem !important; } - .xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; + .xl\:left-60 { + left: 15rem !important; } - .xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; + .xl\:top-64 { + top: 16rem !important; } - .xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; + .xl\:right-64 { + right: 16rem !important; } - .xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; + .xl\:bottom-64 { + bottom: 16rem !important; } - .xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; + .xl\:left-64 { + left: 16rem !important; } - .xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; + .xl\:top-72 { + top: 18rem !important; } - .xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; + .xl\:right-72 { + right: 18rem !important; } - .xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; + .xl\:bottom-72 { + bottom: 18rem !important; } - .xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; + .xl\:left-72 { + left: 18rem !important; } - .xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; + .xl\:top-80 { + top: 20rem !important; } - .xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; + .xl\:right-80 { + right: 20rem !important; } - .xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; + .xl\:bottom-80 { + bottom: 20rem !important; } - .xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; + .xl\:left-80 { + left: 20rem !important; } - .xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; + .xl\:top-96 { + top: 24rem !important; } - .xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; + .xl\:right-96 { + right: 24rem !important; } - .xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; + .xl\:bottom-96 { + bottom: 24rem !important; } - .xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; + .xl\:left-96 { + left: 24rem !important; } - .xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; + .xl\:top-auto { + top: auto !important; } - .xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; + .xl\:right-auto { + right: auto !important; } - .xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; + .xl\:bottom-auto { + bottom: auto !important; } - .xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid !important; + .xl\:left-auto { + left: auto !important; } - .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed !important; + .xl\:top-px { + top: 1px !important; } - .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted !important; + .xl\:right-px { + right: 1px !important; } - .xl\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double !important; + .xl\:bottom-px { + bottom: 1px !important; } - .xl\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none !important; + .xl\:left-px { + left: 1px !important; } - .xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0 !important; + .xl\:top-0\.5 { + top: 0.125rem !important; } - .xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05 !important; + .xl\:right-0\.5 { + right: 0.125rem !important; } - .xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1 !important; + .xl\:bottom-0\.5 { + bottom: 0.125rem !important; } - .xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2 !important; + .xl\:left-0\.5 { + left: 0.125rem !important; } - .xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25 !important; + .xl\:top-1\.5 { + top: 0.375rem !important; } - .xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3 !important; + .xl\:right-1\.5 { + right: 0.375rem !important; } - .xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4 !important; + .xl\:bottom-1\.5 { + bottom: 0.375rem !important; } - .xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5 !important; + .xl\:left-1\.5 { + left: 0.375rem !important; } - .xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6 !important; + .xl\:top-2\.5 { + top: 0.625rem !important; } - .xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7 !important; + .xl\:right-2\.5 { + right: 0.625rem !important; } - .xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75 !important; + .xl\:bottom-2\.5 { + bottom: 0.625rem !important; } - .xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8 !important; + .xl\:left-2\.5 { + left: 0.625rem !important; } - .xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9 !important; + .xl\:top-3\.5 { + top: 0.875rem !important; } - .xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95 !important; + .xl\:right-3\.5 { + right: 0.875rem !important; } - .xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; + .xl\:bottom-3\.5 { + bottom: 0.875rem !important; } - .xl\:sr-only { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .xl\:left-3\.5 { + left: 0.875rem !important; } - .xl\:not-sr-only { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .xl\:-top-0 { + top: 0px !important; } - .xl\:focus-within\:sr-only:focus-within { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .xl\:-right-0 { + right: 0px !important; } - .xl\:focus-within\:not-sr-only:focus-within { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .xl\:-bottom-0 { + bottom: 0px !important; } - .xl\:focus\:sr-only:focus { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .xl\:-left-0 { + left: 0px !important; } - .xl\:focus\:not-sr-only:focus { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .xl\:-top-1 { + top: -0.25rem !important; } - .xl\:appearance-none { - appearance: none !important; + .xl\:-right-1 { + right: -0.25rem !important; } - .xl\:bg-fixed { - background-attachment: fixed !important; + .xl\:-bottom-1 { + bottom: -0.25rem !important; } - .xl\:bg-local { - background-attachment: local !important; + .xl\:-left-1 { + left: -0.25rem !important; } - .xl\:bg-scroll { - background-attachment: scroll !important; + .xl\:-top-2 { + top: -0.5rem !important; } - .xl\:bg-clip-border { - background-clip: border-box !important; + .xl\:-right-2 { + right: -0.5rem !important; } - .xl\:bg-clip-padding { - background-clip: padding-box !important; + .xl\:-bottom-2 { + bottom: -0.5rem !important; } - .xl\:bg-clip-content { - background-clip: content-box !important; + .xl\:-left-2 { + left: -0.5rem !important; } - .xl\:bg-clip-text { - background-clip: text !important; + .xl\:-top-3 { + top: -0.75rem !important; } - .xl\:bg-transparent { - background-color: transparent !important; + .xl\:-right-3 { + right: -0.75rem !important; } - .xl\:bg-current { - background-color: currentColor !important; + .xl\:-bottom-3 { + bottom: -0.75rem !important; } - .xl\:bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .xl\:-left-3 { + left: -0.75rem !important; } - .xl\:bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .xl\:-top-4 { + top: -1rem !important; } - .xl\:bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .xl\:-right-4 { + right: -1rem !important; } - .xl\:bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .xl\:-bottom-4 { + bottom: -1rem !important; } - .xl\:bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .xl\:-left-4 { + left: -1rem !important; } - .xl\:bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .xl\:-top-5 { + top: -1.25rem !important; } - .xl\:bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .xl\:-right-5 { + right: -1.25rem !important; } - .xl\:bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .xl\:-bottom-5 { + bottom: -1.25rem !important; } - .xl\:bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .xl\:-left-5 { + left: -1.25rem !important; } - .xl\:bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .xl\:-top-6 { + top: -1.5rem !important; } - .xl\:bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .xl\:-right-6 { + right: -1.5rem !important; } - .xl\:bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .xl\:-bottom-6 { + bottom: -1.5rem !important; } - .xl\:bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .xl\:-left-6 { + left: -1.5rem !important; } - .xl\:bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .xl\:-top-7 { + top: -1.75rem !important; } - .xl\:bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .xl\:-right-7 { + right: -1.75rem !important; } - .xl\:bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .xl\:-bottom-7 { + bottom: -1.75rem !important; } - .xl\:bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .xl\:-left-7 { + left: -1.75rem !important; } - .xl\:bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .xl\:-top-8 { + top: -2rem !important; } - .xl\:bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .xl\:-right-8 { + right: -2rem !important; } - .xl\:bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .xl\:-bottom-8 { + bottom: -2rem !important; } - .xl\:bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .xl\:-left-8 { + left: -2rem !important; } - .xl\:bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .xl\:-top-9 { + top: -2.25rem !important; } - .xl\:bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .xl\:-right-9 { + right: -2.25rem !important; } - .xl\:bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .xl\:-bottom-9 { + bottom: -2.25rem !important; } - .xl\:bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .xl\:-left-9 { + left: -2.25rem !important; } - .xl\:bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .xl\:-top-10 { + top: -2.5rem !important; } - .xl\:bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .xl\:-right-10 { + right: -2.5rem !important; } - .xl\:bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .xl\:-bottom-10 { + bottom: -2.5rem !important; } - .xl\:bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .xl\:-left-10 { + left: -2.5rem !important; } - .xl\:bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .xl\:-top-11 { + top: -2.75rem !important; } - .xl\:bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .xl\:-right-11 { + right: -2.75rem !important; } - .xl\:bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .xl\:-bottom-11 { + bottom: -2.75rem !important; } - .xl\:bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .xl\:-left-11 { + left: -2.75rem !important; } - .xl\:bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .xl\:-top-12 { + top: -3rem !important; } - .xl\:bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .xl\:-right-12 { + right: -3rem !important; } - .xl\:bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .xl\:-bottom-12 { + bottom: -3rem !important; } - .xl\:bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .xl\:-left-12 { + left: -3rem !important; } - .xl\:bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .xl\:-top-14 { + top: -3.5rem !important; } - .xl\:bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .xl\:-right-14 { + right: -3.5rem !important; } - .xl\:bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .xl\:-bottom-14 { + bottom: -3.5rem !important; } - .xl\:bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .xl\:-left-14 { + left: -3.5rem !important; } - .xl\:bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .xl\:-top-16 { + top: -4rem !important; } - .xl\:bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .xl\:-right-16 { + right: -4rem !important; } - .xl\:bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .xl\:-bottom-16 { + bottom: -4rem !important; } - .xl\:bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .xl\:-left-16 { + left: -4rem !important; } - .xl\:bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .xl\:-top-20 { + top: -5rem !important; } - .xl\:bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .xl\:-right-20 { + right: -5rem !important; } - .xl\:bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .xl\:-bottom-20 { + bottom: -5rem !important; } - .xl\:bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .xl\:-left-20 { + left: -5rem !important; } - .xl\:bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .xl\:-top-24 { + top: -6rem !important; } - .xl\:bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .xl\:-right-24 { + right: -6rem !important; } - .xl\:bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .xl\:-bottom-24 { + bottom: -6rem !important; } - .xl\:bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .xl\:-left-24 { + left: -6rem !important; } - .xl\:bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .xl\:-top-28 { + top: -7rem !important; } - .xl\:bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .xl\:-right-28 { + right: -7rem !important; } - .xl\:bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .xl\:-bottom-28 { + bottom: -7rem !important; } - .xl\:bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .xl\:-left-28 { + left: -7rem !important; } - .xl\:bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .xl\:-top-32 { + top: -8rem !important; } - .xl\:bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .xl\:-right-32 { + right: -8rem !important; } - .xl\:bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .xl\:-bottom-32 { + bottom: -8rem !important; } - .xl\:bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .xl\:-left-32 { + left: -8rem !important; } - .xl\:bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .xl\:-top-36 { + top: -9rem !important; } - .xl\:bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .xl\:-right-36 { + right: -9rem !important; } - .xl\:bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .xl\:-bottom-36 { + bottom: -9rem !important; } - .xl\:bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .xl\:-left-36 { + left: -9rem !important; } - .xl\:bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .xl\:-top-40 { + top: -10rem !important; } - .xl\:bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .xl\:-right-40 { + right: -10rem !important; } - .xl\:bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .xl\:-bottom-40 { + bottom: -10rem !important; } - .xl\:bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .xl\:-left-40 { + left: -10rem !important; } - .xl\:bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .xl\:-top-44 { + top: -11rem !important; } - .xl\:bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .xl\:-right-44 { + right: -11rem !important; } - .xl\:bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .xl\:-bottom-44 { + bottom: -11rem !important; } - .xl\:bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .xl\:-left-44 { + left: -11rem !important; } - .xl\:bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .xl\:-top-48 { + top: -12rem !important; } - .xl\:bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .xl\:-right-48 { + right: -12rem !important; } - .xl\:bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .xl\:-bottom-48 { + bottom: -12rem !important; } - .xl\:bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .xl\:-left-48 { + left: -12rem !important; } - .xl\:bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .xl\:-top-52 { + top: -13rem !important; } - .xl\:bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .xl\:-right-52 { + right: -13rem !important; } - .xl\:bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .xl\:-bottom-52 { + bottom: -13rem !important; + } + + .xl\:-left-52 { + left: -13rem !important; } - .xl\:bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .xl\:-top-56 { + top: -14rem !important; } - .xl\:bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .xl\:-right-56 { + right: -14rem !important; } - .group:hover .xl\:group-hover\:bg-transparent { - background-color: transparent !important; + .xl\:-bottom-56 { + bottom: -14rem !important; } - .group:hover .xl\:group-hover\:bg-current { - background-color: currentColor !important; + .xl\:-left-56 { + left: -14rem !important; } - .group:hover .xl\:group-hover\:bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .xl\:-top-60 { + top: -15rem !important; } - .group:hover .xl\:group-hover\:bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .xl\:-right-60 { + right: -15rem !important; } - .group:hover .xl\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .xl\:-bottom-60 { + bottom: -15rem !important; } - .group:hover .xl\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .xl\:-left-60 { + left: -15rem !important; } - .group:hover .xl\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .xl\:-top-64 { + top: -16rem !important; } - .group:hover .xl\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .xl\:-right-64 { + right: -16rem !important; } - .group:hover .xl\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .xl\:-bottom-64 { + bottom: -16rem !important; } - .group:hover .xl\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .xl\:-left-64 { + left: -16rem !important; } - .group:hover .xl\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .xl\:-top-72 { + top: -18rem !important; } - .group:hover .xl\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .xl\:-right-72 { + right: -18rem !important; } - .group:hover .xl\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .xl\:-bottom-72 { + bottom: -18rem !important; } - .group:hover .xl\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .xl\:-left-72 { + left: -18rem !important; } - .group:hover .xl\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .xl\:-top-80 { + top: -20rem !important; } - .group:hover .xl\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .xl\:-right-80 { + right: -20rem !important; } - .group:hover .xl\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .xl\:-bottom-80 { + bottom: -20rem !important; } - .group:hover .xl\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .xl\:-left-80 { + left: -20rem !important; } - .group:hover .xl\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .xl\:-top-96 { + top: -24rem !important; } - .group:hover .xl\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .xl\:-right-96 { + right: -24rem !important; } - .group:hover .xl\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .xl\:-bottom-96 { + bottom: -24rem !important; } - .group:hover .xl\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .xl\:-left-96 { + left: -24rem !important; } - .group:hover .xl\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .xl\:-top-px { + top: -1px !important; } - .group:hover .xl\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .xl\:-right-px { + right: -1px !important; } - .group:hover .xl\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .xl\:-bottom-px { + bottom: -1px !important; } - .group:hover .xl\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .xl\:-left-px { + left: -1px !important; } - .group:hover .xl\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .xl\:-top-0\.5 { + top: -0.125rem !important; } - .group:hover .xl\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .xl\:-right-0\.5 { + right: -0.125rem !important; } - .group:hover .xl\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .xl\:-bottom-0\.5 { + bottom: -0.125rem !important; } - .group:hover .xl\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .xl\:-left-0\.5 { + left: -0.125rem !important; } - .group:hover .xl\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .xl\:-top-1\.5 { + top: -0.375rem !important; } - .group:hover .xl\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .xl\:-right-1\.5 { + right: -0.375rem !important; } - .group:hover .xl\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .xl\:-bottom-1\.5 { + bottom: -0.375rem !important; } - .group:hover .xl\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .xl\:-left-1\.5 { + left: -0.375rem !important; } - .group:hover .xl\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .xl\:-top-2\.5 { + top: -0.625rem !important; } - .group:hover .xl\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .xl\:-right-2\.5 { + right: -0.625rem !important; } - .group:hover .xl\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .xl\:-bottom-2\.5 { + bottom: -0.625rem !important; } - .group:hover .xl\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .xl\:-left-2\.5 { + left: -0.625rem !important; } - .group:hover .xl\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .xl\:-top-3\.5 { + top: -0.875rem !important; } - .group:hover .xl\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .xl\:-right-3\.5 { + right: -0.875rem !important; } - .group:hover .xl\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .xl\:-bottom-3\.5 { + bottom: -0.875rem !important; } - .group:hover .xl\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .xl\:-left-3\.5 { + left: -0.875rem !important; } - .group:hover .xl\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .xl\:top-1\/2 { + top: 50% !important; } - .group:hover .xl\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .xl\:right-1\/2 { + right: 50% !important; } - .group:hover .xl\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .xl\:bottom-1\/2 { + bottom: 50% !important; } - .group:hover .xl\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .xl\:left-1\/2 { + left: 50% !important; } - .group:hover .xl\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .xl\:top-1\/3 { + top: 33.333333% !important; } - .group:hover .xl\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .xl\:right-1\/3 { + right: 33.333333% !important; } - .group:hover .xl\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .xl\:bottom-1\/3 { + bottom: 33.333333% !important; } - .group:hover .xl\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .xl\:left-1\/3 { + left: 33.333333% !important; } - .group:hover .xl\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .xl\:top-2\/3 { + top: 66.666667% !important; } - .group:hover .xl\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .xl\:right-2\/3 { + right: 66.666667% !important; } - .group:hover .xl\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .xl\:bottom-2\/3 { + bottom: 66.666667% !important; } - .group:hover .xl\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .xl\:left-2\/3 { + left: 66.666667% !important; } - .group:hover .xl\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .xl\:top-1\/4 { + top: 25% !important; } - .group:hover .xl\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .xl\:right-1\/4 { + right: 25% !important; } - .group:hover .xl\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .xl\:bottom-1\/4 { + bottom: 25% !important; } - .group:hover .xl\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .xl\:left-1\/4 { + left: 25% !important; } - .group:hover .xl\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .xl\:top-2\/4 { + top: 50% !important; } - .group:hover .xl\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .xl\:right-2\/4 { + right: 50% !important; } - .group:hover .xl\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .xl\:bottom-2\/4 { + bottom: 50% !important; } - .group:hover .xl\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .xl\:left-2\/4 { + left: 50% !important; } - .group:hover .xl\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .xl\:top-3\/4 { + top: 75% !important; } - .group:hover .xl\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .xl\:right-3\/4 { + right: 75% !important; } - .group:hover .xl\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .xl\:bottom-3\/4 { + bottom: 75% !important; } - .group:hover .xl\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .xl\:left-3\/4 { + left: 75% !important; } - .group:hover .xl\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .xl\:top-full { + top: 100% !important; } - .group:hover .xl\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .xl\:right-full { + right: 100% !important; } - .group:hover .xl\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .xl\:bottom-full { + bottom: 100% !important; } - .group:hover .xl\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .xl\:left-full { + left: 100% !important; } - .group:hover .xl\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .xl\:-top-1\/2 { + top: -50% !important; } - .group:hover .xl\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .xl\:-right-1\/2 { + right: -50% !important; } - .group:hover .xl\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .xl\:-bottom-1\/2 { + bottom: -50% !important; } - .group:hover .xl\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .xl\:-left-1\/2 { + left: -50% !important; } - .group:hover .xl\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .xl\:-top-1\/3 { + top: -33.333333% !important; } - .group:hover .xl\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .xl\:-right-1\/3 { + right: -33.333333% !important; } - .group:hover .xl\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .xl\:-bottom-1\/3 { + bottom: -33.333333% !important; } - .group:hover .xl\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .xl\:-left-1\/3 { + left: -33.333333% !important; } - .group:hover .xl\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .xl\:-top-2\/3 { + top: -66.666667% !important; } - .group:hover .xl\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .xl\:-right-2\/3 { + right: -66.666667% !important; } - .group:hover .xl\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .xl\:-bottom-2\/3 { + bottom: -66.666667% !important; } - .group:hover .xl\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .xl\:-left-2\/3 { + left: -66.666667% !important; } - .group:hover .xl\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .xl\:-top-1\/4 { + top: -25% !important; } - .group:hover .xl\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .xl\:-right-1\/4 { + right: -25% !important; } - .xl\:focus-within\:bg-transparent:focus-within { - background-color: transparent !important; + .xl\:-bottom-1\/4 { + bottom: -25% !important; } - .xl\:focus-within\:bg-current:focus-within { - background-color: currentColor !important; + .xl\:-left-1\/4 { + left: -25% !important; } - .xl\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .xl\:-top-2\/4 { + top: -50% !important; } - .xl\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .xl\:-right-2\/4 { + right: -50% !important; } - .xl\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .xl\:-bottom-2\/4 { + bottom: -50% !important; } - .xl\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .xl\:-left-2\/4 { + left: -50% !important; } - .xl\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .xl\:-top-3\/4 { + top: -75% !important; } - .xl\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .xl\:-right-3\/4 { + right: -75% !important; } - .xl\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .xl\:-bottom-3\/4 { + bottom: -75% !important; } - .xl\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .xl\:-left-3\/4 { + left: -75% !important; } - .xl\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .xl\:-top-full { + top: -100% !important; } - .xl\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .xl\:-right-full { + right: -100% !important; } - .xl\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .xl\:-bottom-full { + bottom: -100% !important; } - .xl\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .xl\:-left-full { + left: -100% !important; } - .xl\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .xl\:isolate { + isolation: isolate !important; } - .xl\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .xl\:isolation-auto { + isolation: auto !important; } - .xl\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .xl\:z-0 { + z-index: 0 !important; } - .xl\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .xl\:z-10 { + z-index: 10 !important; } - .xl\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .xl\:z-20 { + z-index: 20 !important; } - .xl\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .xl\:z-30 { + z-index: 30 !important; } - .xl\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .xl\:z-40 { + z-index: 40 !important; } - .xl\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .xl\:z-50 { + z-index: 50 !important; } - .xl\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .xl\:z-auto { + z-index: auto !important; } - .xl\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .xl\:focus-within\:z-0:focus-within { + z-index: 0 !important; } - .xl\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .xl\:focus-within\:z-10:focus-within { + z-index: 10 !important; } - .xl\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .xl\:focus-within\:z-20:focus-within { + z-index: 20 !important; } - .xl\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .xl\:focus-within\:z-30:focus-within { + z-index: 30 !important; } - .xl\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .xl\:focus-within\:z-40:focus-within { + z-index: 40 !important; } - .xl\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .xl\:focus-within\:z-50:focus-within { + z-index: 50 !important; } - .xl\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .xl\:focus-within\:z-auto:focus-within { + z-index: auto !important; } - .xl\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .xl\:focus\:z-0:focus { + z-index: 0 !important; } - .xl\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .xl\:focus\:z-10:focus { + z-index: 10 !important; } - .xl\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .xl\:focus\:z-20:focus { + z-index: 20 !important; } - .xl\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .xl\:focus\:z-30:focus { + z-index: 30 !important; } - .xl\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .xl\:focus\:z-40:focus { + z-index: 40 !important; } - .xl\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .xl\:focus\:z-50:focus { + z-index: 50 !important; } - .xl\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .xl\:focus\:z-auto:focus { + z-index: auto !important; } - .xl\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .xl\:order-1 { + order: 1 !important; } - .xl\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .xl\:order-2 { + order: 2 !important; } - .xl\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .xl\:order-3 { + order: 3 !important; } - .xl\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .xl\:order-4 { + order: 4 !important; } - .xl\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .xl\:order-5 { + order: 5 !important; } - .xl\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .xl\:order-6 { + order: 6 !important; } - .xl\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .xl\:order-7 { + order: 7 !important; } - .xl\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .xl\:order-8 { + order: 8 !important; } - .xl\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .xl\:order-9 { + order: 9 !important; } - .xl\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .xl\:order-10 { + order: 10 !important; } - .xl\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .xl\:order-11 { + order: 11 !important; } - .xl\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .xl\:order-12 { + order: 12 !important; } - .xl\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .xl\:order-first { + order: -9999 !important; } - .xl\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .xl\:order-last { + order: 9999 !important; } - .xl\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .xl\:order-none { + order: 0 !important; } - .xl\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .xl\:col-auto { + grid-column: auto !important; } - .xl\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .xl\:col-span-1 { + grid-column: span 1 / span 1 !important; } - .xl\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .xl\:col-span-2 { + grid-column: span 2 / span 2 !important; } - .xl\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .xl\:col-span-3 { + grid-column: span 3 / span 3 !important; } - .xl\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .xl\:col-span-4 { + grid-column: span 4 / span 4 !important; } - .xl\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .xl\:col-span-5 { + grid-column: span 5 / span 5 !important; } - .xl\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .xl\:col-span-6 { + grid-column: span 6 / span 6 !important; } - .xl\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .xl\:col-span-7 { + grid-column: span 7 / span 7 !important; } - .xl\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .xl\:col-span-8 { + grid-column: span 8 / span 8 !important; } - .xl\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .xl\:col-span-9 { + grid-column: span 9 / span 9 !important; } - .xl\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .xl\:col-span-10 { + grid-column: span 10 / span 10 !important; } - .xl\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .xl\:col-span-11 { + grid-column: span 11 / span 11 !important; } - .xl\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .xl\:col-span-12 { + grid-column: span 12 / span 12 !important; } - .xl\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .xl\:col-span-full { + grid-column: 1 / -1 !important; } - .xl\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .xl\:col-start-1 { + grid-column-start: 1 !important; } - .xl\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .xl\:col-start-2 { + grid-column-start: 2 !important; } - .xl\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .xl\:col-start-3 { + grid-column-start: 3 !important; } - .xl\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .xl\:col-start-4 { + grid-column-start: 4 !important; } - .xl\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .xl\:col-start-5 { + grid-column-start: 5 !important; } - .xl\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .xl\:col-start-6 { + grid-column-start: 6 !important; } - .xl\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .xl\:col-start-7 { + grid-column-start: 7 !important; } - .xl\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .xl\:col-start-8 { + grid-column-start: 8 !important; } - .xl\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .xl\:col-start-9 { + grid-column-start: 9 !important; } - .xl\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .xl\:col-start-10 { + grid-column-start: 10 !important; } - .xl\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .xl\:col-start-11 { + grid-column-start: 11 !important; } - .xl\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .xl\:col-start-12 { + grid-column-start: 12 !important; } - .xl\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .xl\:col-start-13 { + grid-column-start: 13 !important; } - .xl\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .xl\:col-start-auto { + grid-column-start: auto !important; } - .xl\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .xl\:col-end-1 { + grid-column-end: 1 !important; } - .xl\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .xl\:col-end-2 { + grid-column-end: 2 !important; } - .xl\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .xl\:col-end-3 { + grid-column-end: 3 !important; } - .xl\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .xl\:col-end-4 { + grid-column-end: 4 !important; } - .xl\:hover\:bg-transparent:hover { - background-color: transparent !important; + .xl\:col-end-5 { + grid-column-end: 5 !important; } - .xl\:hover\:bg-current:hover { - background-color: currentColor !important; + .xl\:col-end-6 { + grid-column-end: 6 !important; } - .xl\:hover\:bg-black:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .xl\:col-end-7 { + grid-column-end: 7 !important; } - .xl\:hover\:bg-white:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .xl\:col-end-8 { + grid-column-end: 8 !important; } - .xl\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .xl\:col-end-9 { + grid-column-end: 9 !important; } - .xl\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .xl\:col-end-10 { + grid-column-end: 10 !important; } - .xl\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .xl\:col-end-11 { + grid-column-end: 11 !important; } - .xl\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .xl\:col-end-12 { + grid-column-end: 12 !important; } - .xl\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .xl\:col-end-13 { + grid-column-end: 13 !important; } - .xl\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .xl\:col-end-auto { + grid-column-end: auto !important; } - .xl\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .xl\:row-auto { + grid-row: auto !important; } - .xl\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .xl\:row-span-1 { + grid-row: span 1 / span 1 !important; } - .xl\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .xl\:row-span-2 { + grid-row: span 2 / span 2 !important; } - .xl\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .xl\:row-span-3 { + grid-row: span 3 / span 3 !important; } - .xl\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .xl\:row-span-4 { + grid-row: span 4 / span 4 !important; } - .xl\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .xl\:row-span-5 { + grid-row: span 5 / span 5 !important; } - .xl\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .xl\:row-span-6 { + grid-row: span 6 / span 6 !important; } - .xl\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .xl\:row-span-full { + grid-row: 1 / -1 !important; } - .xl\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .xl\:row-start-1 { + grid-row-start: 1 !important; } - .xl\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .xl\:row-start-2 { + grid-row-start: 2 !important; } - .xl\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .xl\:row-start-3 { + grid-row-start: 3 !important; } - .xl\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .xl\:row-start-4 { + grid-row-start: 4 !important; } - .xl\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .xl\:row-start-5 { + grid-row-start: 5 !important; } - .xl\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .xl\:row-start-6 { + grid-row-start: 6 !important; } - .xl\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .xl\:row-start-7 { + grid-row-start: 7 !important; } - .xl\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .xl\:row-start-auto { + grid-row-start: auto !important; } - .xl\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .xl\:row-end-1 { + grid-row-end: 1 !important; } - .xl\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .xl\:row-end-2 { + grid-row-end: 2 !important; } - .xl\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .xl\:row-end-3 { + grid-row-end: 3 !important; } - .xl\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .xl\:row-end-4 { + grid-row-end: 4 !important; } - .xl\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .xl\:row-end-5 { + grid-row-end: 5 !important; } - .xl\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .xl\:row-end-6 { + grid-row-end: 6 !important; } - .xl\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .xl\:row-end-7 { + grid-row-end: 7 !important; } - .xl\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .xl\:row-end-auto { + grid-row-end: auto !important; } - .xl\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .xl\:float-right { + float: right !important; } - .xl\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .xl\:float-left { + float: left !important; } - .xl\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .xl\:float-none { + float: none !important; } - .xl\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .xl\:clear-left { + clear: left !important; } - .xl\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .xl\:clear-right { + clear: right !important; } - .xl\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .xl\:clear-both { + clear: both !important; } - .xl\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .xl\:clear-none { + clear: none !important; } - .xl\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .xl\:m-0 { + margin: 0px !important; } - .xl\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .xl\:m-1 { + margin: 0.25rem !important; } - .xl\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .xl\:m-2 { + margin: 0.5rem !important; } - .xl\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .xl\:m-3 { + margin: 0.75rem !important; } - .xl\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .xl\:m-4 { + margin: 1rem !important; } - .xl\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .xl\:m-5 { + margin: 1.25rem !important; } - .xl\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .xl\:m-6 { + margin: 1.5rem !important; } - .xl\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .xl\:m-7 { + margin: 1.75rem !important; } - .xl\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .xl\:m-8 { + margin: 2rem !important; } - .xl\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .xl\:m-9 { + margin: 2.25rem !important; } - .xl\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .xl\:m-10 { + margin: 2.5rem !important; } - .xl\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .xl\:m-11 { + margin: 2.75rem !important; } - .xl\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .xl\:m-12 { + margin: 3rem !important; } - .xl\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .xl\:m-14 { + margin: 3.5rem !important; } - .xl\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .xl\:m-16 { + margin: 4rem !important; } - .xl\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .xl\:m-20 { + margin: 5rem !important; } - .xl\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .xl\:m-24 { + margin: 6rem !important; } - .xl\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .xl\:m-28 { + margin: 7rem !important; } - .xl\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .xl\:m-32 { + margin: 8rem !important; } - .xl\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .xl\:m-36 { + margin: 9rem !important; } - .xl\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .xl\:m-40 { + margin: 10rem !important; } - .xl\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .xl\:m-44 { + margin: 11rem !important; } - .xl\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .xl\:m-48 { + margin: 12rem !important; } - .xl\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .xl\:m-52 { + margin: 13rem !important; } - .xl\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .xl\:m-56 { + margin: 14rem !important; } - .xl\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .xl\:m-60 { + margin: 15rem !important; } - .xl\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .xl\:m-64 { + margin: 16rem !important; } - .xl\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .xl\:m-72 { + margin: 18rem !important; } - .xl\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .xl\:m-80 { + margin: 20rem !important; } - .xl\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .xl\:m-96 { + margin: 24rem !important; } - .xl\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .xl\:m-auto { + margin: auto !important; } - .xl\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .xl\:m-px { + margin: 1px !important; } - .xl\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .xl\:m-0\.5 { + margin: 0.125rem !important; } - .xl\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .xl\:m-1\.5 { + margin: 0.375rem !important; } - .xl\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .xl\:m-2\.5 { + margin: 0.625rem !important; } - .xl\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .xl\:m-3\.5 { + margin: 0.875rem !important; } - .xl\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .xl\:-m-0 { + margin: 0px !important; } - .xl\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .xl\:-m-1 { + margin: -0.25rem !important; } - .xl\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .xl\:-m-2 { + margin: -0.5rem !important; } - .xl\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .xl\:-m-3 { + margin: -0.75rem !important; } - .xl\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .xl\:-m-4 { + margin: -1rem !important; } - .xl\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .xl\:-m-5 { + margin: -1.25rem !important; } - .xl\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .xl\:-m-6 { + margin: -1.5rem !important; } - .xl\:focus\:bg-transparent:focus { - background-color: transparent !important; + .xl\:-m-7 { + margin: -1.75rem !important; } - .xl\:focus\:bg-current:focus { - background-color: currentColor !important; + .xl\:-m-8 { + margin: -2rem !important; } - .xl\:focus\:bg-black:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .xl\:-m-9 { + margin: -2.25rem !important; } - .xl\:focus\:bg-white:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .xl\:-m-10 { + margin: -2.5rem !important; } - .xl\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .xl\:-m-11 { + margin: -2.75rem !important; } - .xl\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .xl\:-m-12 { + margin: -3rem !important; } - .xl\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .xl\:-m-14 { + margin: -3.5rem !important; } - .xl\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .xl\:-m-16 { + margin: -4rem !important; } - .xl\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .xl\:-m-20 { + margin: -5rem !important; } - .xl\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .xl\:-m-24 { + margin: -6rem !important; } - .xl\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .xl\:-m-28 { + margin: -7rem !important; } - .xl\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .xl\:-m-32 { + margin: -8rem !important; } - .xl\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .xl\:-m-36 { + margin: -9rem !important; } - .xl\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .xl\:-m-40 { + margin: -10rem !important; } - .xl\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .xl\:-m-44 { + margin: -11rem !important; } - .xl\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .xl\:-m-48 { + margin: -12rem !important; } - .xl\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .xl\:-m-52 { + margin: -13rem !important; } - .xl\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .xl\:-m-56 { + margin: -14rem !important; } - .xl\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .xl\:-m-60 { + margin: -15rem !important; } - .xl\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .xl\:-m-64 { + margin: -16rem !important; } - .xl\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .xl\:-m-72 { + margin: -18rem !important; } - .xl\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .xl\:-m-80 { + margin: -20rem !important; } - .xl\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .xl\:-m-96 { + margin: -24rem !important; } - .xl\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .xl\:-m-px { + margin: -1px !important; } - .xl\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .xl\:-m-0\.5 { + margin: -0.125rem !important; } - .xl\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .xl\:-m-1\.5 { + margin: -0.375rem !important; } - .xl\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .xl\:-m-2\.5 { + margin: -0.625rem !important; } - .xl\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .xl\:-m-3\.5 { + margin: -0.875rem !important; } - .xl\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .xl\:mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } - .xl\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .xl\:mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; } - .xl\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .xl\:mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; } - .xl\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .xl\:mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; } - .xl\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .xl\:mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; } - .xl\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .xl\:mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; } - .xl\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .xl\:mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; } - .xl\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .xl\:mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; } - .xl\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .xl\:mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; } - .xl\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .xl\:mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; } - .xl\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .xl\:mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; } - .xl\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .xl\:mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; } - .xl\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .xl\:mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; } - .xl\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .xl\:mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; } - .xl\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .xl\:mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; } - .xl\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .xl\:mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; } - .xl\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .xl\:mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; } - .xl\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .xl\:mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; } - .xl\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .xl\:mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; } - .xl\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .xl\:mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; } - .xl\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .xl\:mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; } - .xl\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .xl\:mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; } - .xl\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .xl\:mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; } - .xl\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .xl\:mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; } - .xl\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .xl\:mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; } - .xl\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .xl\:mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; } - .xl\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .xl\:mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; } - .xl\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .xl\:mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; } - .xl\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .xl\:mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; } - .xl\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .xl\:mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; } - .xl\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .xl\:mx-auto { + margin-left: auto !important; + margin-right: auto !important; } - .xl\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .xl\:mx-px { + margin-left: 1px !important; + margin-right: 1px !important; } - .xl\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .xl\:mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; } - .xl\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .xl\:mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; } - .xl\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .xl\:mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; } - .xl\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .xl\:mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; } - .xl\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .xl\:-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } - .xl\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .xl\:-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; } - .xl\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .xl\:-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; } - .xl\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .xl\:-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; } - .xl\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .xl\:-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; } - .xl\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .xl\:-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; } - .xl\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .xl\:-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; } - .xl\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .xl\:-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; } - .xl\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .xl\:-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; } - .xl\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .xl\:-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; } - .xl\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .xl\:-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; } - .xl\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .xl\:-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; } - .xl\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .xl\:-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; } - .xl\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .xl\:-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; } - .xl\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .xl\:-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; } - .xl\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .xl\:-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; } - .xl\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .xl\:-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; } - .xl\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .xl\:-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; } - .xl\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .xl\:-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; } - .xl\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .xl\:-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; } - .xl\:bg-none { - background-image: none !important; + .xl\:-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; } - .xl\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; + .xl\:-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; } - .xl\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; + .xl\:-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; } - .xl\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; + .xl\:-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; } - .xl\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; + .xl\:-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; } - .xl\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; + .xl\:-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; } - .xl\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; + .xl\:-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; } - .xl\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; + .xl\:-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; } - .xl\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; + .xl\:-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; } - .xl\:from-transparent { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .xl\:-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; } - .xl\:from-current { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .xl\:-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; } - .xl\:from-black { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .xl\:-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; } - .xl\:from-white { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .xl\:-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; } - .xl\:from-gray-50 { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .xl\:-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; } - .xl\:from-gray-100 { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .xl\:-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; } - .xl\:from-gray-200 { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .xl\:my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .xl\:from-gray-300 { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .xl\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .xl\:from-gray-400 { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .xl\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } - .xl\:from-gray-500 { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .xl\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; } - .xl\:from-gray-600 { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .xl\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } - .xl\:from-gray-700 { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .xl\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; } - .xl\:from-gray-800 { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .xl\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } - .xl\:from-gray-900 { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .xl\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; } - .xl\:from-red-50 { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .xl\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; } - .xl\:from-red-100 { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .xl\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; } - .xl\:from-red-200 { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .xl\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; } - .xl\:from-red-300 { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .xl\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; } - .xl\:from-red-400 { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .xl\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } - .xl\:from-red-500 { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .xl\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; } - .xl\:from-red-600 { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .xl\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; } - .xl\:from-red-700 { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .xl\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; } - .xl\:from-red-800 { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .xl\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; } - .xl\:from-red-900 { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .xl\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; } - .xl\:from-yellow-50 { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .xl\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; } - .xl\:from-yellow-100 { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .xl\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; } - .xl\:from-yellow-200 { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .xl\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; } - .xl\:from-yellow-300 { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .xl\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; } - .xl\:from-yellow-400 { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .xl\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; } - .xl\:from-yellow-500 { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .xl\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; } - .xl\:from-yellow-600 { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .xl\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; } - .xl\:from-yellow-700 { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .xl\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; } - .xl\:from-yellow-800 { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .xl\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; } - .xl\:from-yellow-900 { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .xl\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; } - .xl\:from-green-50 { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .xl\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; } - .xl\:from-green-100 { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .xl\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; } - .xl\:from-green-200 { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .xl\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } - .xl\:from-green-300 { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .xl\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; } - .xl\:from-green-400 { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .xl\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; } - .xl\:from-green-500 { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .xl\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; } - .xl\:from-green-600 { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .xl\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; } - .xl\:from-green-700 { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .xl\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; } - .xl\:from-green-800 { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .xl\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .xl\:from-green-900 { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .xl\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } - .xl\:from-blue-50 { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .xl\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } - .xl\:from-blue-100 { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .xl\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } - .xl\:from-blue-200 { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .xl\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } - .xl\:from-blue-300 { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .xl\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } - .xl\:from-blue-400 { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .xl\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } - .xl\:from-blue-500 { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .xl\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } - .xl\:from-blue-600 { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .xl\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } - .xl\:from-blue-700 { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .xl\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } - .xl\:from-blue-800 { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .xl\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } - .xl\:from-blue-900 { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .xl\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } - .xl\:from-indigo-50 { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .xl\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } - .xl\:from-indigo-100 { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .xl\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } - .xl\:from-indigo-200 { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .xl\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } - .xl\:from-indigo-300 { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .xl\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } - .xl\:from-indigo-400 { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .xl\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } - .xl\:from-indigo-500 { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .xl\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } - .xl\:from-indigo-600 { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .xl\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } - .xl\:from-indigo-700 { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .xl\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } - .xl\:from-indigo-800 { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .xl\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } - .xl\:from-indigo-900 { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .xl\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } - .xl\:from-purple-50 { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .xl\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } - .xl\:from-purple-100 { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .xl\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } - .xl\:from-purple-200 { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .xl\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } - .xl\:from-purple-300 { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .xl\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } - .xl\:from-purple-400 { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .xl\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } - .xl\:from-purple-500 { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .xl\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } - .xl\:from-purple-600 { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .xl\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } - .xl\:from-purple-700 { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .xl\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } - .xl\:from-purple-800 { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .xl\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } - .xl\:from-purple-900 { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .xl\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } - .xl\:from-pink-50 { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .xl\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } - .xl\:from-pink-100 { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .xl\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } - .xl\:from-pink-200 { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .xl\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } - .xl\:from-pink-300 { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .xl\:mt-0 { + margin-top: 0px !important; } - .xl\:from-pink-400 { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .xl\:mt-1 { + margin-top: 0.25rem !important; } - .xl\:from-pink-500 { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .xl\:mt-2 { + margin-top: 0.5rem !important; } - .xl\:from-pink-600 { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .xl\:mt-3 { + margin-top: 0.75rem !important; } - .xl\:from-pink-700 { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .xl\:mt-4 { + margin-top: 1rem !important; } - .xl\:from-pink-800 { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .xl\:mt-5 { + margin-top: 1.25rem !important; } - .xl\:from-pink-900 { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .xl\:mt-6 { + margin-top: 1.5rem !important; } - .xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .xl\:mt-7 { + margin-top: 1.75rem !important; } - .xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .xl\:mt-8 { + margin-top: 2rem !important; } - .xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .xl\:mt-9 { + margin-top: 2.25rem !important; } - .xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .xl\:mt-10 { + margin-top: 2.5rem !important; } - .xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .xl\:mt-11 { + margin-top: 2.75rem !important; } - .xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .xl\:mt-12 { + margin-top: 3rem !important; } - .xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .xl\:mt-14 { + margin-top: 3.5rem !important; } - .xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .xl\:mt-16 { + margin-top: 4rem !important; } - .xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .xl\:mt-20 { + margin-top: 5rem !important; } - .xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .xl\:mt-24 { + margin-top: 6rem !important; } - .xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .xl\:mt-28 { + margin-top: 7rem !important; } - .xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .xl\:mt-32 { + margin-top: 8rem !important; } - .xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .xl\:mt-36 { + margin-top: 9rem !important; } - .xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .xl\:mt-40 { + margin-top: 10rem !important; } - .xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .xl\:mt-44 { + margin-top: 11rem !important; } - .xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .xl\:mt-48 { + margin-top: 12rem !important; } - .xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .xl\:mt-52 { + margin-top: 13rem !important; } - .xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .xl\:mt-56 { + margin-top: 14rem !important; } - .xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .xl\:mt-60 { + margin-top: 15rem !important; } - .xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .xl\:mt-64 { + margin-top: 16rem !important; } - .xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .xl\:mt-72 { + margin-top: 18rem !important; } - .xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .xl\:mt-80 { + margin-top: 20rem !important; } - .xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .xl\:mt-96 { + margin-top: 24rem !important; } - .xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .xl\:mt-auto { + margin-top: auto !important; } - .xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .xl\:mt-px { + margin-top: 1px !important; } - .xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .xl\:mt-0\.5 { + margin-top: 0.125rem !important; } - .xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .xl\:mt-1\.5 { + margin-top: 0.375rem !important; } - .xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .xl\:mt-2\.5 { + margin-top: 0.625rem !important; } - .xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .xl\:mt-3\.5 { + margin-top: 0.875rem !important; } - .xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .xl\:-mt-0 { + margin-top: 0px !important; } - .xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .xl\:-mt-1 { + margin-top: -0.25rem !important; } - .xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .xl\:-mt-2 { + margin-top: -0.5rem !important; } - .xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .xl\:-mt-3 { + margin-top: -0.75rem !important; } - .xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .xl\:-mt-4 { + margin-top: -1rem !important; } - .xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .xl\:-mt-5 { + margin-top: -1.25rem !important; } - .xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .xl\:-mt-6 { + margin-top: -1.5rem !important; } - .xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .xl\:-mt-7 { + margin-top: -1.75rem !important; } - .xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .xl\:-mt-8 { + margin-top: -2rem !important; } - .xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .xl\:-mt-9 { + margin-top: -2.25rem !important; } - .xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .xl\:-mt-10 { + margin-top: -2.5rem !important; } - .xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .xl\:-mt-11 { + margin-top: -2.75rem !important; } - .xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .xl\:-mt-12 { + margin-top: -3rem !important; } - .xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .xl\:-mt-14 { + margin-top: -3.5rem !important; } - .xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .xl\:-mt-16 { + margin-top: -4rem !important; } - .xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .xl\:-mt-20 { + margin-top: -5rem !important; } - .xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .xl\:-mt-24 { + margin-top: -6rem !important; } - .xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .xl\:-mt-28 { + margin-top: -7rem !important; } - .xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .xl\:-mt-32 { + margin-top: -8rem !important; } - .xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .xl\:-mt-36 { + margin-top: -9rem !important; } - .xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .xl\:-mt-40 { + margin-top: -10rem !important; } - .xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .xl\:-mt-44 { + margin-top: -11rem !important; } - .xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .xl\:-mt-48 { + margin-top: -12rem !important; } - .xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .xl\:-mt-52 { + margin-top: -13rem !important; } - .xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .xl\:-mt-56 { + margin-top: -14rem !important; } - .xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .xl\:-mt-60 { + margin-top: -15rem !important; } - .xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .xl\:-mt-64 { + margin-top: -16rem !important; } - .xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .xl\:-mt-72 { + margin-top: -18rem !important; } - .xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .xl\:-mt-80 { + margin-top: -20rem !important; } - .xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .xl\:-mt-96 { + margin-top: -24rem !important; } - .xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .xl\:-mt-px { + margin-top: -1px !important; } - .xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .xl\:-mt-0\.5 { + margin-top: -0.125rem !important; } - .xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .xl\:-mt-1\.5 { + margin-top: -0.375rem !important; } - .xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .xl\:-mt-2\.5 { + margin-top: -0.625rem !important; } - .xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .xl\:-mt-3\.5 { + margin-top: -0.875rem !important; } - .xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .xl\:mr-0 { + margin-right: 0px !important; } - .xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .xl\:mr-1 { + margin-right: 0.25rem !important; } - .xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .xl\:mr-2 { + margin-right: 0.5rem !important; } - .xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .xl\:mr-3 { + margin-right: 0.75rem !important; } - .xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .xl\:mr-4 { + margin-right: 1rem !important; } - .xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .xl\:mr-5 { + margin-right: 1.25rem !important; } - .xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .xl\:mr-6 { + margin-right: 1.5rem !important; } - .xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .xl\:mr-7 { + margin-right: 1.75rem !important; } - .xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .xl\:mr-8 { + margin-right: 2rem !important; } - .xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .xl\:mr-9 { + margin-right: 2.25rem !important; } - .xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .xl\:mr-10 { + margin-right: 2.5rem !important; } - .xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .xl\:mr-11 { + margin-right: 2.75rem !important; } - .xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .xl\:mr-12 { + margin-right: 3rem !important; } - .xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .xl\:mr-14 { + margin-right: 3.5rem !important; } - .xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .xl\:mr-16 { + margin-right: 4rem !important; } - .xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .xl\:mr-20 { + margin-right: 5rem !important; } - .xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .xl\:mr-24 { + margin-right: 6rem !important; } - .xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .xl\:mr-28 { + margin-right: 7rem !important; } - .xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .xl\:mr-32 { + margin-right: 8rem !important; } - .xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .xl\:mr-36 { + margin-right: 9rem !important; } - .xl\:to-transparent { - --tw-gradient-to: transparent !important; + .xl\:mr-40 { + margin-right: 10rem !important; } - .xl\:to-current { - --tw-gradient-to: currentColor !important; + .xl\:mr-44 { + margin-right: 11rem !important; } - .xl\:to-black { - --tw-gradient-to: #000 !important; + .xl\:mr-48 { + margin-right: 12rem !important; } - .xl\:to-white { - --tw-gradient-to: #fff !important; + .xl\:mr-52 { + margin-right: 13rem !important; } - .xl\:to-gray-50 { - --tw-gradient-to: #f9fafb !important; + .xl\:mr-56 { + margin-right: 14rem !important; } - .xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; + .xl\:mr-60 { + margin-right: 15rem !important; } - .xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb !important; + .xl\:mr-64 { + margin-right: 16rem !important; } - .xl\:to-gray-300 { - --tw-gradient-to: #d1d5db !important; + .xl\:mr-72 { + margin-right: 18rem !important; } - .xl\:to-gray-400 { - --tw-gradient-to: #9ca3af !important; + .xl\:mr-80 { + margin-right: 20rem !important; } - .xl\:to-gray-500 { - --tw-gradient-to: #6b7280 !important; + .xl\:mr-96 { + margin-right: 24rem !important; } - .xl\:to-gray-600 { - --tw-gradient-to: #4b5563 !important; + .xl\:mr-auto { + margin-right: auto !important; } - .xl\:to-gray-700 { - --tw-gradient-to: #374151 !important; + .xl\:mr-px { + margin-right: 1px !important; } - .xl\:to-gray-800 { - --tw-gradient-to: #1f2937 !important; + .xl\:mr-0\.5 { + margin-right: 0.125rem !important; } - .xl\:to-gray-900 { - --tw-gradient-to: #111827 !important; + .xl\:mr-1\.5 { + margin-right: 0.375rem !important; } - .xl\:to-red-50 { - --tw-gradient-to: #fef2f2 !important; + .xl\:mr-2\.5 { + margin-right: 0.625rem !important; } - .xl\:to-red-100 { - --tw-gradient-to: #fee2e2 !important; + .xl\:mr-3\.5 { + margin-right: 0.875rem !important; } - .xl\:to-red-200 { - --tw-gradient-to: #fecaca !important; + .xl\:-mr-0 { + margin-right: 0px !important; } - .xl\:to-red-300 { - --tw-gradient-to: #fca5a5 !important; + .xl\:-mr-1 { + margin-right: -0.25rem !important; } - .xl\:to-red-400 { - --tw-gradient-to: #f87171 !important; + .xl\:-mr-2 { + margin-right: -0.5rem !important; } - .xl\:to-red-500 { - --tw-gradient-to: #ef4444 !important; + .xl\:-mr-3 { + margin-right: -0.75rem !important; } - .xl\:to-red-600 { - --tw-gradient-to: #dc2626 !important; + .xl\:-mr-4 { + margin-right: -1rem !important; } - .xl\:to-red-700 { - --tw-gradient-to: #b91c1c !important; + .xl\:-mr-5 { + margin-right: -1.25rem !important; } - .xl\:to-red-800 { - --tw-gradient-to: #991b1b !important; + .xl\:-mr-6 { + margin-right: -1.5rem !important; } - .xl\:to-red-900 { - --tw-gradient-to: #7f1d1d !important; + .xl\:-mr-7 { + margin-right: -1.75rem !important; } - .xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb !important; + .xl\:-mr-8 { + margin-right: -2rem !important; } - .xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; + .xl\:-mr-9 { + margin-right: -2.25rem !important; } - .xl\:to-yellow-200 { - --tw-gradient-to: #fde68a !important; + .xl\:-mr-10 { + margin-right: -2.5rem !important; } - .xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d !important; + .xl\:-mr-11 { + margin-right: -2.75rem !important; } - .xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; + .xl\:-mr-12 { + margin-right: -3rem !important; } - .xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b !important; + .xl\:-mr-14 { + margin-right: -3.5rem !important; } - .xl\:to-yellow-600 { - --tw-gradient-to: #d97706 !important; + .xl\:-mr-16 { + margin-right: -4rem !important; } - .xl\:to-yellow-700 { - --tw-gradient-to: #b45309 !important; + .xl\:-mr-20 { + margin-right: -5rem !important; } - .xl\:to-yellow-800 { - --tw-gradient-to: #92400e !important; + .xl\:-mr-24 { + margin-right: -6rem !important; } - .xl\:to-yellow-900 { - --tw-gradient-to: #78350f !important; + .xl\:-mr-28 { + margin-right: -7rem !important; } - .xl\:to-green-50 { - --tw-gradient-to: #ecfdf5 !important; + .xl\:-mr-32 { + margin-right: -8rem !important; } - .xl\:to-green-100 { - --tw-gradient-to: #d1fae5 !important; + .xl\:-mr-36 { + margin-right: -9rem !important; } - .xl\:to-green-200 { - --tw-gradient-to: #a7f3d0 !important; + .xl\:-mr-40 { + margin-right: -10rem !important; } - .xl\:to-green-300 { - --tw-gradient-to: #6ee7b7 !important; + .xl\:-mr-44 { + margin-right: -11rem !important; } - .xl\:to-green-400 { - --tw-gradient-to: #34d399 !important; + .xl\:-mr-48 { + margin-right: -12rem !important; } - .xl\:to-green-500 { - --tw-gradient-to: #10b981 !important; + .xl\:-mr-52 { + margin-right: -13rem !important; } - .xl\:to-green-600 { - --tw-gradient-to: #059669 !important; + .xl\:-mr-56 { + margin-right: -14rem !important; } - .xl\:to-green-700 { - --tw-gradient-to: #047857 !important; + .xl\:-mr-60 { + margin-right: -15rem !important; } - .xl\:to-green-800 { - --tw-gradient-to: #065f46 !important; + .xl\:-mr-64 { + margin-right: -16rem !important; } - .xl\:to-green-900 { - --tw-gradient-to: #064e3b !important; + .xl\:-mr-72 { + margin-right: -18rem !important; } - .xl\:to-blue-50 { - --tw-gradient-to: #eff6ff !important; + .xl\:-mr-80 { + margin-right: -20rem !important; } - .xl\:to-blue-100 { - --tw-gradient-to: #dbeafe !important; + .xl\:-mr-96 { + margin-right: -24rem !important; } - .xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe !important; + .xl\:-mr-px { + margin-right: -1px !important; } - .xl\:to-blue-300 { - --tw-gradient-to: #93c5fd !important; + .xl\:-mr-0\.5 { + margin-right: -0.125rem !important; } - .xl\:to-blue-400 { - --tw-gradient-to: #60a5fa !important; + .xl\:-mr-1\.5 { + margin-right: -0.375rem !important; } - .xl\:to-blue-500 { - --tw-gradient-to: #3b82f6 !important; + .xl\:-mr-2\.5 { + margin-right: -0.625rem !important; } - .xl\:to-blue-600 { - --tw-gradient-to: #2563eb !important; + .xl\:-mr-3\.5 { + margin-right: -0.875rem !important; } - .xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; + .xl\:mb-0 { + margin-bottom: 0px !important; } - .xl\:to-blue-800 { - --tw-gradient-to: #1e40af !important; + .xl\:mb-1 { + margin-bottom: 0.25rem !important; } - .xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a !important; + .xl\:mb-2 { + margin-bottom: 0.5rem !important; } - .xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff !important; + .xl\:mb-3 { + margin-bottom: 0.75rem !important; } - .xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; + .xl\:mb-4 { + margin-bottom: 1rem !important; } - .xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; + .xl\:mb-5 { + margin-bottom: 1.25rem !important; } - .xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; + .xl\:mb-6 { + margin-bottom: 1.5rem !important; } - .xl\:to-indigo-400 { - --tw-gradient-to: #818cf8 !important; + .xl\:mb-7 { + margin-bottom: 1.75rem !important; } - .xl\:to-indigo-500 { - --tw-gradient-to: #6366f1 !important; + .xl\:mb-8 { + margin-bottom: 2rem !important; } - .xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; + .xl\:mb-9 { + margin-bottom: 2.25rem !important; } - .xl\:to-indigo-700 { - --tw-gradient-to: #4338ca !important; + .xl\:mb-10 { + margin-bottom: 2.5rem !important; } - .xl\:to-indigo-800 { - --tw-gradient-to: #3730a3 !important; + .xl\:mb-11 { + margin-bottom: 2.75rem !important; } - .xl\:to-indigo-900 { - --tw-gradient-to: #312e81 !important; + .xl\:mb-12 { + margin-bottom: 3rem !important; } - .xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff !important; + .xl\:mb-14 { + margin-bottom: 3.5rem !important; } - .xl\:to-purple-100 { - --tw-gradient-to: #ede9fe !important; + .xl\:mb-16 { + margin-bottom: 4rem !important; } - .xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe !important; + .xl\:mb-20 { + margin-bottom: 5rem !important; } - .xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd !important; + .xl\:mb-24 { + margin-bottom: 6rem !important; } - .xl\:to-purple-400 { - --tw-gradient-to: #a78bfa !important; + .xl\:mb-28 { + margin-bottom: 7rem !important; } - .xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; + .xl\:mb-32 { + margin-bottom: 8rem !important; } - .xl\:to-purple-600 { - --tw-gradient-to: #7c3aed !important; + .xl\:mb-36 { + margin-bottom: 9rem !important; } - .xl\:to-purple-700 { - --tw-gradient-to: #6d28d9 !important; + .xl\:mb-40 { + margin-bottom: 10rem !important; } - .xl\:to-purple-800 { - --tw-gradient-to: #5b21b6 !important; + .xl\:mb-44 { + margin-bottom: 11rem !important; } - .xl\:to-purple-900 { - --tw-gradient-to: #4c1d95 !important; + .xl\:mb-48 { + margin-bottom: 12rem !important; } - .xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; + .xl\:mb-52 { + margin-bottom: 13rem !important; } - .xl\:to-pink-100 { - --tw-gradient-to: #fce7f3 !important; + .xl\:mb-56 { + margin-bottom: 14rem !important; } - .xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; + .xl\:mb-60 { + margin-bottom: 15rem !important; } - .xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; + .xl\:mb-64 { + margin-bottom: 16rem !important; } - .xl\:to-pink-400 { - --tw-gradient-to: #f472b6 !important; + .xl\:mb-72 { + margin-bottom: 18rem !important; } - .xl\:to-pink-500 { - --tw-gradient-to: #ec4899 !important; + .xl\:mb-80 { + margin-bottom: 20rem !important; } - .xl\:to-pink-600 { - --tw-gradient-to: #db2777 !important; + .xl\:mb-96 { + margin-bottom: 24rem !important; } - .xl\:to-pink-700 { - --tw-gradient-to: #be185d !important; + .xl\:mb-auto { + margin-bottom: auto !important; } - .xl\:to-pink-800 { - --tw-gradient-to: #9d174d !important; + .xl\:mb-px { + margin-bottom: 1px !important; } - .xl\:to-pink-900 { - --tw-gradient-to: #831843 !important; + .xl\:mb-0\.5 { + margin-bottom: 0.125rem !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\:mb-1\.5 { + margin-bottom: 0.375rem !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\:mb-2\.5 { + margin-bottom: 0.625rem !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\:mb-3\.5 { + margin-bottom: 0.875rem !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\:-mb-0 { + margin-bottom: 0px !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\:-mb-1 { + margin-bottom: -0.25rem !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\:-mb-2 { + margin-bottom: -0.5rem !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\:-mb-3 { + margin-bottom: -0.75rem !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\:-mb-4 { + margin-bottom: -1rem !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\:-mb-5 { + margin-bottom: -1.25rem !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\:-mb-6 { + margin-bottom: -1.5rem !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\:-mb-7 { + margin-bottom: -1.75rem !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\:-mb-8 { + margin-bottom: -2rem !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\:-mb-9 { + margin-bottom: -2.25rem !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\:-mb-10 { + margin-bottom: -2.5rem !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\:-mb-11 { + margin-bottom: -2.75rem !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\:-mb-12 { + margin-bottom: -3rem !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\:-mb-14 { + margin-bottom: -3.5rem !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\:-mb-16 { + margin-bottom: -4rem !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\:-mb-20 { + margin-bottom: -5rem !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\:-mb-24 { + margin-bottom: -6rem !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\:-mb-28 { + margin-bottom: -7rem !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\:-mb-32 { + margin-bottom: -8rem !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\:-mb-36 { + margin-bottom: -9rem !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\:-mb-40 { + margin-bottom: -10rem !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\:-mb-44 { + margin-bottom: -11rem !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\:-mb-48 { + margin-bottom: -12rem !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\:-mb-52 { + margin-bottom: -13rem !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\:-mb-56 { + margin-bottom: -14rem !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\:-mb-60 { + margin-bottom: -15rem !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\:-mb-64 { + margin-bottom: -16rem !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\:-mb-72 { + margin-bottom: -18rem !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\:-mb-80 { + margin-bottom: -20rem !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\:-mb-96 { + margin-bottom: -24rem !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\:-mb-px { + margin-bottom: -1px !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\:-mb-0\.5 { + margin-bottom: -0.125rem !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\:-mb-1\.5 { + margin-bottom: -0.375rem !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\:-mb-2\.5 { + margin-bottom: -0.625rem !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\:-mb-3\.5 { + margin-bottom: -0.875rem !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\:ml-0 { + margin-left: 0px !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\:ml-1 { + margin-left: 0.25rem !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\:ml-2 { + margin-left: 0.5rem !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\:ml-3 { + margin-left: 0.75rem !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\:ml-4 { + margin-left: 1rem !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\:ml-5 { + margin-left: 1.25rem !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\:ml-6 { + margin-left: 1.5rem !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\:ml-7 { + margin-left: 1.75rem !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\:ml-8 { + margin-left: 2rem !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\:ml-9 { + margin-left: 2.25rem !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\:ml-10 { + margin-left: 2.5rem !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\:ml-11 { + margin-left: 2.75rem !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\:ml-12 { + margin-left: 3rem !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\:ml-14 { + margin-left: 3.5rem !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\:ml-16 { + margin-left: 4rem !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\:ml-20 { + margin-left: 5rem !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\:ml-24 { + margin-left: 6rem !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\:ml-28 { + margin-left: 7rem !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\:ml-32 { + margin-left: 8rem !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\:ml-36 { + margin-left: 9rem !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\:ml-40 { + margin-left: 10rem !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\:ml-44 { + margin-left: 11rem !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\:ml-48 { + margin-left: 12rem !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\:ml-52 { + margin-left: 13rem !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\:ml-56 { + margin-left: 14rem !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\:ml-60 { + margin-left: 15rem !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\:ml-64 { + margin-left: 16rem !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\:ml-72 { + margin-left: 18rem !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\:ml-80 { + margin-left: 20rem !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\:ml-96 { + margin-left: 24rem !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\:ml-auto { + margin-left: auto !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\:ml-px { + margin-left: 1px !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\:ml-0\.5 { + margin-left: 0.125rem !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\:ml-1\.5 { + margin-left: 0.375rem !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\:ml-2\.5 { + margin-left: 0.625rem !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\:ml-3\.5 { + margin-left: 0.875rem !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\:-ml-0 { + margin-left: 0px !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\:-ml-1 { + margin-left: -0.25rem !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\:-ml-2 { + margin-left: -0.5rem !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\:-ml-3 { + margin-left: -0.75rem !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\:-ml-4 { + margin-left: -1rem !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\:-ml-5 { + margin-left: -1.25rem !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\:-ml-6 { + margin-left: -1.5rem !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\:-ml-7 { + margin-left: -1.75rem !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\:-ml-8 { + margin-left: -2rem !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\:-ml-9 { + margin-left: -2.25rem !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\:-ml-10 { + margin-left: -2.5rem !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\:-ml-11 { + margin-left: -2.75rem !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\:-ml-12 { + margin-left: -3rem !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\:-ml-14 { + margin-left: -3.5rem !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\:-ml-16 { + margin-left: -4rem !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\:-ml-20 { + margin-left: -5rem !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\:-ml-24 { + margin-left: -6rem !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\:-ml-28 { + margin-left: -7rem !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\:-ml-32 { + margin-left: -8rem !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\:-ml-36 { + margin-left: -9rem !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\:-ml-40 { + margin-left: -10rem !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\:-ml-44 { + margin-left: -11rem !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\:-ml-48 { + margin-left: -12rem !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\:-ml-52 { + margin-left: -13rem !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\:-ml-56 { + margin-left: -14rem !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\:-ml-60 { + margin-left: -15rem !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\:-ml-64 { + margin-left: -16rem !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\:-ml-72 { + margin-left: -18rem !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\:-ml-80 { + margin-left: -20rem !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\:-ml-96 { + margin-left: -24rem !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\:-ml-px { + margin-left: -1px !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\:-ml-0\.5 { + margin-left: -0.125rem !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\:-ml-1\.5 { + margin-left: -0.375rem !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\:-ml-2\.5 { + margin-left: -0.625rem !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\:-ml-3\.5 { + margin-left: -0.875rem !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\:box-border { + box-sizing: border-box !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\:box-content { + box-sizing: content-box !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\:block { + display: block !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\:inline-block { + display: inline-block !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\:inline { + display: inline !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\:flex { + display: flex !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\:inline-flex { + display: inline-flex !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\:table { + display: table !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\:inline-table { + display: inline-table !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\:table-caption { + display: table-caption !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\:table-cell { + display: table-cell !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\:table-column { + display: table-column !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\:table-column-group { + display: table-column-group !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\:table-footer-group { + display: table-footer-group !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\:table-header-group { + display: table-header-group !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\:table-row-group { + display: table-row-group !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\:table-row { + display: table-row !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\:flow-root { + display: flow-root !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\:grid { + display: grid !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\:inline-grid { + display: inline-grid !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\:contents { + display: contents !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\:list-item { + display: list-item !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\:hidden { + display: none !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\:h-0 { + height: 0px !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\:h-1 { + height: 0.25rem !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\:h-2 { + height: 0.5rem !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\:h-3 { + height: 0.75rem !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\:h-4 { + height: 1rem !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\:h-5 { + height: 1.25rem !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\:h-6 { + height: 1.5rem !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\:h-7 { + height: 1.75rem !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\:h-8 { + height: 2rem !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\:h-9 { + height: 2.25rem !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\:h-10 { + height: 2.5rem !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\:h-11 { + height: 2.75rem !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\:h-12 { + height: 3rem !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\:h-14 { + height: 3.5rem !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\:h-16 { + height: 4rem !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\:h-20 { + height: 5rem !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\:h-24 { + height: 6rem !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\:h-28 { + height: 7rem !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\:h-32 { + height: 8rem !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\:h-36 { + height: 9rem !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\:h-40 { + height: 10rem !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\:h-44 { + height: 11rem !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\:h-48 { + height: 12rem !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\:h-52 { + height: 13rem !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\:h-56 { + height: 14rem !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\:h-60 { + height: 15rem !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\:h-64 { + height: 16rem !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\:h-72 { + height: 18rem !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\:h-80 { + height: 20rem !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\:h-96 { + height: 24rem !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\:h-auto { + height: auto !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\:h-px { + height: 1px !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\:h-0\.5 { + height: 0.125rem !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\:h-1\.5 { + height: 0.375rem !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\:h-2\.5 { + height: 0.625rem !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\:h-3\.5 { + height: 0.875rem !important; } - .xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; + .xl\:h-1\/2 { + height: 50% !important; } - .xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor !important; + .xl\:h-1\/3 { + height: 33.333333% !important; } - .xl\:hover\:to-black:hover { - --tw-gradient-to: #000 !important; + .xl\:h-2\/3 { + height: 66.666667% !important; } - .xl\:hover\:to-white:hover { - --tw-gradient-to: #fff !important; + .xl\:h-1\/4 { + height: 25% !important; } - .xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; + .xl\:h-2\/4 { + height: 50% !important; } - .xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; + .xl\:h-3\/4 { + height: 75% !important; } - .xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; + .xl\:h-1\/5 { + height: 20% !important; } - .xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; + .xl\:h-2\/5 { + height: 40% !important; } - .xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; + .xl\:h-3\/5 { + height: 60% !important; } - .xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; + .xl\:h-4\/5 { + height: 80% !important; } - .xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; + .xl\:h-1\/6 { + height: 16.666667% !important; } - .xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; + .xl\:h-2\/6 { + height: 33.333333% !important; } - .xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; + .xl\:h-3\/6 { + height: 50% !important; } - .xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; + .xl\:h-4\/6 { + height: 66.666667% !important; } - .xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; + .xl\:h-5\/6 { + height: 83.333333% !important; } - .xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; + .xl\:h-full { + height: 100% !important; } - .xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; + .xl\:h-screen { + height: 100vh !important; } - .xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; + .xl\:max-h-0 { + max-height: 0px !important; } - .xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; + .xl\:max-h-1 { + max-height: 0.25rem !important; } - .xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; + .xl\:max-h-2 { + max-height: 0.5rem !important; } - .xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; + .xl\:max-h-3 { + max-height: 0.75rem !important; } - .xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; + .xl\:max-h-4 { + max-height: 1rem !important; } - .xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; + .xl\:max-h-5 { + max-height: 1.25rem !important; } - .xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; + .xl\:max-h-6 { + max-height: 1.5rem !important; } - .xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; + .xl\:max-h-7 { + max-height: 1.75rem !important; } - .xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; + .xl\:max-h-8 { + max-height: 2rem !important; } - .xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; + .xl\:max-h-9 { + max-height: 2.25rem !important; } - .xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; + .xl\:max-h-10 { + max-height: 2.5rem !important; } - .xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; + .xl\:max-h-11 { + max-height: 2.75rem !important; } - .xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; + .xl\:max-h-12 { + max-height: 3rem !important; } - .xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; + .xl\:max-h-14 { + max-height: 3.5rem !important; } - .xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; + .xl\:max-h-16 { + max-height: 4rem !important; } - .xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; + .xl\:max-h-20 { + max-height: 5rem !important; } - .xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; + .xl\:max-h-24 { + max-height: 6rem !important; } - .xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; + .xl\:max-h-28 { + max-height: 7rem !important; } - .xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; + .xl\:max-h-32 { + max-height: 8rem !important; } - .xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; + .xl\:max-h-36 { + max-height: 9rem !important; } - .xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; + .xl\:max-h-40 { + max-height: 10rem !important; } - .xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; + .xl\:max-h-44 { + max-height: 11rem !important; } - .xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; + .xl\:max-h-48 { + max-height: 12rem !important; } - .xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; + .xl\:max-h-52 { + max-height: 13rem !important; } - .xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; + .xl\:max-h-56 { + max-height: 14rem !important; } - .xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; + .xl\:max-h-60 { + max-height: 15rem !important; } - .xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; + .xl\:max-h-64 { + max-height: 16rem !important; } - .xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; + .xl\:max-h-72 { + max-height: 18rem !important; } - .xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; + .xl\:max-h-80 { + max-height: 20rem !important; } - .xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; + .xl\:max-h-96 { + max-height: 24rem !important; } - .xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; + .xl\:max-h-px { + max-height: 1px !important; } - .xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; + .xl\:max-h-0\.5 { + max-height: 0.125rem !important; } - .xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; + .xl\:max-h-1\.5 { + max-height: 0.375rem !important; } - .xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; + .xl\:max-h-2\.5 { + max-height: 0.625rem !important; } - .xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; + .xl\:max-h-3\.5 { + max-height: 0.875rem !important; } - .xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; + .xl\:max-h-full { + max-height: 100% !important; } - .xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; + .xl\:max-h-screen { + max-height: 100vh !important; } - .xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; + .xl\:min-h-0 { + min-height: 0px !important; } - .xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; + .xl\:min-h-full { + min-height: 100% !important; } - .xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; + .xl\:min-h-screen { + min-height: 100vh !important; } - .xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; + .xl\:w-0 { + width: 0px !important; } - .xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; + .xl\:w-1 { + width: 0.25rem !important; } - .xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; + .xl\:w-2 { + width: 0.5rem !important; } - .xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; + .xl\:w-3 { + width: 0.75rem !important; } - .xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; + .xl\:w-4 { + width: 1rem !important; } - .xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; + .xl\:w-5 { + width: 1.25rem !important; } - .xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; + .xl\:w-6 { + width: 1.5rem !important; } - .xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; + .xl\:w-7 { + width: 1.75rem !important; } - .xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; + .xl\:w-8 { + width: 2rem !important; } - .xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; + .xl\:w-9 { + width: 2.25rem !important; } - .xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; + .xl\:w-10 { + width: 2.5rem !important; } - .xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; + .xl\:w-11 { + width: 2.75rem !important; } - .xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; + .xl\:w-12 { + width: 3rem !important; } - .xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; + .xl\:w-14 { + width: 3.5rem !important; } - .xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; + .xl\:w-16 { + width: 4rem !important; } - .xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; + .xl\:w-20 { + width: 5rem !important; } - .xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; + .xl\:w-24 { + width: 6rem !important; } - .xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; + .xl\:w-28 { + width: 7rem !important; } - .xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; + .xl\:w-32 { + width: 8rem !important; } - .xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; + .xl\:w-36 { + width: 9rem !important; } - .xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; + .xl\:w-40 { + width: 10rem !important; } - .xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; + .xl\:w-44 { + width: 11rem !important; } - .xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; + .xl\:w-48 { + width: 12rem !important; } - .xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; + .xl\:w-52 { + width: 13rem !important; } - .xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; + .xl\:w-56 { + width: 14rem !important; } - .xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; + .xl\:w-60 { + width: 15rem !important; } - .xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; + .xl\:w-64 { + width: 16rem !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\:w-72 { + width: 18rem !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\:w-80 { + width: 20rem !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\:w-96 { + width: 24rem !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\:w-auto { + width: auto !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\:w-px { + width: 1px !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\:w-0\.5 { + width: 0.125rem !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\:w-1\.5 { + width: 0.375rem !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\:w-2\.5 { + width: 0.625rem !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\:w-3\.5 { + width: 0.875rem !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\:w-1\/2 { + width: 50% !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\:w-1\/3 { + width: 33.333333% !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\:w-2\/3 { + width: 66.666667% !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\:w-1\/4 { + width: 25% !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\:w-2\/4 { + width: 50% !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\:w-3\/4 { + width: 75% !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\:w-1\/5 { + width: 20% !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\:w-2\/5 { + width: 40% !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\:w-3\/5 { + width: 60% !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\:w-4\/5 { + width: 80% !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\:w-1\/6 { + width: 16.666667% !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\:w-2\/6 { + width: 33.333333% !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\:w-3\/6 { + width: 50% !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\:w-4\/6 { + width: 66.666667% !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\:w-5\/6 { + width: 83.333333% !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\:w-1\/12 { + width: 8.333333% !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\:w-2\/12 { + width: 16.666667% !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\:w-3\/12 { + width: 25% !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\:w-4\/12 { + width: 33.333333% !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\:w-5\/12 { + width: 41.666667% !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\:w-6\/12 { + width: 50% !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\:w-7\/12 { + width: 58.333333% !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\:w-8\/12 { + width: 66.666667% !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\:w-9\/12 { + width: 75% !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\:w-10\/12 { + width: 83.333333% !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\:w-11\/12 { + width: 91.666667% !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\:w-full { + width: 100% !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\:w-screen { + width: 100vw !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\:w-min { + width: min-content !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\:w-max { + width: max-content !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\:min-w-0 { + min-width: 0px !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\:min-w-full { + min-width: 100% !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\:min-w-min { + min-width: min-content !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\:min-w-max { + min-width: max-content !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\:max-w-0 { + max-width: 0rem !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\:max-w-none { + max-width: none !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\:max-w-xs { + max-width: 20rem !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\:max-w-sm { + max-width: 24rem !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\:max-w-md { + max-width: 28rem !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\:max-w-lg { + max-width: 32rem !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\:max-w-xl { + max-width: 36rem !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\:max-w-2xl { + max-width: 42rem !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\:max-w-3xl { + max-width: 48rem !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\:max-w-4xl { + max-width: 56rem !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\:max-w-5xl { + max-width: 64rem !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\:max-w-6xl { + max-width: 72rem !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\:max-w-7xl { + max-width: 80rem !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\:max-w-full { + max-width: 100% !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\:max-w-min { + max-width: min-content !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\:max-w-max { + max-width: max-content !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\:max-w-prose { + max-width: 65ch !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\:max-w-screen-sm { + max-width: 640px !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\:max-w-screen-md { + max-width: 768px !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\:max-w-screen-lg { + max-width: 1024px !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\:max-w-screen-xl { + max-width: 1280px !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\:max-w-screen-2xl { + max-width: 1536px !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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto !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\:flex-initial { + flex: 0 1 auto !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\:flex-none { + flex: none !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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1 !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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1 !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\:table-auto { + table-layout: auto !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\:table-fixed { + table-layout: fixed !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\:border-collapse { + border-collapse: collapse !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\:border-separate { + border-collapse: separate !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\:transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !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\:transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !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\:transform-none { + transform: none !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\:origin-center { + transform-origin: center !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\:origin-top { + transform-origin: top !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\:origin-top-right { + transform-origin: top right !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\:origin-right { + transform-origin: right !important; } - .xl\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .xl\:origin-bottom-right { + transform-origin: bottom right !important; } - .xl\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .xl\:origin-bottom { + transform-origin: bottom !important; } - .xl\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .xl\:origin-bottom-left { + transform-origin: bottom left !important; } - .xl\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .xl\:origin-left { + transform-origin: left !important; } - .xl\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .xl\:origin-top-left { + transform-origin: top left !important; } - .xl\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .xl\:translate-x-0 { + --tw-translate-x: 0px !important; } - .xl\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .xl\:translate-x-1 { + --tw-translate-x: 0.25rem !important; } - .xl\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .xl\:translate-x-2 { + --tw-translate-x: 0.5rem !important; } - .xl\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .xl\:translate-x-3 { + --tw-translate-x: 0.75rem !important; } - .xl\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .xl\:translate-x-4 { + --tw-translate-x: 1rem !important; } - .xl\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .xl\:translate-x-5 { + --tw-translate-x: 1.25rem !important; } - .xl\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .xl\:translate-x-6 { + --tw-translate-x: 1.5rem !important; } - .xl\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .xl\:translate-x-7 { + --tw-translate-x: 1.75rem !important; } - .xl\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .xl\:translate-x-8 { + --tw-translate-x: 2rem !important; } - .xl\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .xl\:translate-x-9 { + --tw-translate-x: 2.25rem !important; } - .xl\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .xl\:translate-x-10 { + --tw-translate-x: 2.5rem !important; } - .xl\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .xl\:translate-x-11 { + --tw-translate-x: 2.75rem !important; } - .xl\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .xl\:translate-x-12 { + --tw-translate-x: 3rem !important; } - .xl\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .xl\:translate-x-14 { + --tw-translate-x: 3.5rem !important; } - .xl\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .xl\:translate-x-16 { + --tw-translate-x: 4rem !important; } - .xl\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .xl\:translate-x-20 { + --tw-translate-x: 5rem !important; } - .xl\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .xl\:translate-x-24 { + --tw-translate-x: 6rem !important; } - .xl\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .xl\:translate-x-28 { + --tw-translate-x: 7rem !important; } - .xl\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .xl\:translate-x-32 { + --tw-translate-x: 8rem !important; } - .xl\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .xl\:translate-x-36 { + --tw-translate-x: 9rem !important; } - .xl\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .xl\:translate-x-40 { + --tw-translate-x: 10rem !important; } - .xl\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .xl\:translate-x-44 { + --tw-translate-x: 11rem !important; } - .xl\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .xl\:translate-x-48 { + --tw-translate-x: 12rem !important; } - .xl\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .xl\:translate-x-52 { + --tw-translate-x: 13rem !important; } - .xl\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .xl\:translate-x-56 { + --tw-translate-x: 14rem !important; } - .xl\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .xl\:translate-x-60 { + --tw-translate-x: 15rem !important; } - .xl\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .xl\:translate-x-64 { + --tw-translate-x: 16rem !important; } - .xl\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .xl\:translate-x-72 { + --tw-translate-x: 18rem !important; } - .xl\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .xl\:translate-x-80 { + --tw-translate-x: 20rem !important; } - .xl\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .xl\:translate-x-96 { + --tw-translate-x: 24rem !important; } - .xl\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .xl\:translate-x-px { + --tw-translate-x: 1px !important; } - .xl\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; } - .xl\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; } - .xl\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; } - .xl\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; } - .xl\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .xl\:-translate-x-0 { + --tw-translate-x: 0px !important; } - .xl\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .xl\:-translate-x-1 { + --tw-translate-x: -0.25rem !important; } - .xl\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .xl\:-translate-x-2 { + --tw-translate-x: -0.5rem !important; } - .xl\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .xl\:-translate-x-3 { + --tw-translate-x: -0.75rem !important; } - .xl\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .xl\:-translate-x-4 { + --tw-translate-x: -1rem !important; } - .xl\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .xl\:-translate-x-5 { + --tw-translate-x: -1.25rem !important; } - .xl\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .xl\:-translate-x-6 { + --tw-translate-x: -1.5rem !important; } - .xl\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .xl\:-translate-x-7 { + --tw-translate-x: -1.75rem !important; } - .xl\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .xl\:-translate-x-8 { + --tw-translate-x: -2rem !important; } - .xl\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .xl\:-translate-x-9 { + --tw-translate-x: -2.25rem !important; } - .xl\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .xl\:-translate-x-10 { + --tw-translate-x: -2.5rem !important; } - .xl\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .xl\:-translate-x-11 { + --tw-translate-x: -2.75rem !important; } - .xl\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .xl\:-translate-x-12 { + --tw-translate-x: -3rem !important; } - .xl\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .xl\:-translate-x-14 { + --tw-translate-x: -3.5rem !important; } - .xl\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .xl\:-translate-x-16 { + --tw-translate-x: -4rem !important; } - .xl\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .xl\:-translate-x-20 { + --tw-translate-x: -5rem !important; } - .xl\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .xl\:-translate-x-24 { + --tw-translate-x: -6rem !important; } - .xl\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .xl\:-translate-x-28 { + --tw-translate-x: -7rem !important; } - .xl\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .xl\:-translate-x-32 { + --tw-translate-x: -8rem !important; } - .xl\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .xl\:-translate-x-36 { + --tw-translate-x: -9rem !important; } - .xl\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .xl\:-translate-x-40 { + --tw-translate-x: -10rem !important; } - .xl\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .xl\:-translate-x-44 { + --tw-translate-x: -11rem !important; } - .xl\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .xl\:-translate-x-48 { + --tw-translate-x: -12rem !important; } - .xl\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .xl\:-translate-x-52 { + --tw-translate-x: -13rem !important; } - .xl\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .xl\:-translate-x-56 { + --tw-translate-x: -14rem !important; } - .xl\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .xl\:-translate-x-60 { + --tw-translate-x: -15rem !important; } - .xl\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .xl\:-translate-x-64 { + --tw-translate-x: -16rem !important; } - .xl\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .xl\:-translate-x-72 { + --tw-translate-x: -18rem !important; } - .xl\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .xl\:-translate-x-80 { + --tw-translate-x: -20rem !important; } - .xl\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .xl\:-translate-x-96 { + --tw-translate-x: -24rem !important; } - .xl\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .xl\:-translate-x-px { + --tw-translate-x: -1px !important; } - .xl\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; } - .xl\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; } - .xl\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; } - .xl\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; } - .xl\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .xl\:translate-x-1\/2 { + --tw-translate-x: 50% !important; } - .xl\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; } - .xl\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; } - .xl\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .xl\:translate-x-1\/4 { + --tw-translate-x: 25% !important; } - .xl\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .xl\:translate-x-2\/4 { + --tw-translate-x: 50% !important; } - .xl\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .xl\:translate-x-3\/4 { + --tw-translate-x: 75% !important; } - .xl\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .xl\:translate-x-full { + --tw-translate-x: 100% !important; } - .xl\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .xl\:-translate-x-1\/2 { + --tw-translate-x: -50% !important; } - .xl\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; } - .xl\:focus\:to-transparent:focus { - --tw-gradient-to: transparent !important; + .xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; } - .xl\:focus\:to-current:focus { - --tw-gradient-to: currentColor !important; + .xl\:-translate-x-1\/4 { + --tw-translate-x: -25% !important; } - .xl\:focus\:to-black:focus { - --tw-gradient-to: #000 !important; + .xl\:-translate-x-2\/4 { + --tw-translate-x: -50% !important; } - .xl\:focus\:to-white:focus { - --tw-gradient-to: #fff !important; + .xl\:-translate-x-3\/4 { + --tw-translate-x: -75% !important; } - .xl\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb !important; + .xl\:-translate-x-full { + --tw-translate-x: -100% !important; } - .xl\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6 !important; + .xl\:translate-y-0 { + --tw-translate-y: 0px !important; } - .xl\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb !important; + .xl\:translate-y-1 { + --tw-translate-y: 0.25rem !important; } - .xl\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db !important; + .xl\:translate-y-2 { + --tw-translate-y: 0.5rem !important; } - .xl\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af !important; + .xl\:translate-y-3 { + --tw-translate-y: 0.75rem !important; } - .xl\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280 !important; + .xl\:translate-y-4 { + --tw-translate-y: 1rem !important; } - .xl\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563 !important; + .xl\:translate-y-5 { + --tw-translate-y: 1.25rem !important; } - .xl\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151 !important; + .xl\:translate-y-6 { + --tw-translate-y: 1.5rem !important; } - .xl\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937 !important; + .xl\:translate-y-7 { + --tw-translate-y: 1.75rem !important; } - .xl\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827 !important; + .xl\:translate-y-8 { + --tw-translate-y: 2rem !important; } - .xl\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2 !important; + .xl\:translate-y-9 { + --tw-translate-y: 2.25rem !important; } - .xl\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2 !important; + .xl\:translate-y-10 { + --tw-translate-y: 2.5rem !important; } - .xl\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca !important; + .xl\:translate-y-11 { + --tw-translate-y: 2.75rem !important; } - .xl\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5 !important; + .xl\:translate-y-12 { + --tw-translate-y: 3rem !important; } - .xl\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171 !important; + .xl\:translate-y-14 { + --tw-translate-y: 3.5rem !important; } - .xl\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444 !important; + .xl\:translate-y-16 { + --tw-translate-y: 4rem !important; } - .xl\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626 !important; + .xl\:translate-y-20 { + --tw-translate-y: 5rem !important; } - .xl\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c !important; + .xl\:translate-y-24 { + --tw-translate-y: 6rem !important; } - .xl\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b !important; + .xl\:translate-y-28 { + --tw-translate-y: 7rem !important; } - .xl\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d !important; + .xl\:translate-y-32 { + --tw-translate-y: 8rem !important; } - .xl\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb !important; + .xl\:translate-y-36 { + --tw-translate-y: 9rem !important; } - .xl\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7 !important; + .xl\:translate-y-40 { + --tw-translate-y: 10rem !important; } - .xl\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a !important; + .xl\:translate-y-44 { + --tw-translate-y: 11rem !important; } - .xl\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d !important; + .xl\:translate-y-48 { + --tw-translate-y: 12rem !important; } - .xl\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24 !important; + .xl\:translate-y-52 { + --tw-translate-y: 13rem !important; } - .xl\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b !important; + .xl\:translate-y-56 { + --tw-translate-y: 14rem !important; } - .xl\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706 !important; + .xl\:translate-y-60 { + --tw-translate-y: 15rem !important; } - .xl\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309 !important; + .xl\:translate-y-64 { + --tw-translate-y: 16rem !important; } - .xl\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e !important; + .xl\:translate-y-72 { + --tw-translate-y: 18rem !important; } - .xl\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f !important; + .xl\:translate-y-80 { + --tw-translate-y: 20rem !important; } - .xl\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5 !important; + .xl\:translate-y-96 { + --tw-translate-y: 24rem !important; } - .xl\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5 !important; + .xl\:translate-y-px { + --tw-translate-y: 1px !important; } - .xl\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0 !important; + .xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; } - .xl\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7 !important; + .xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; } - .xl\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399 !important; + .xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; } - .xl\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981 !important; + .xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; } - .xl\:focus\:to-green-600:focus { - --tw-gradient-to: #059669 !important; + .xl\:-translate-y-0 { + --tw-translate-y: 0px !important; } - .xl\:focus\:to-green-700:focus { - --tw-gradient-to: #047857 !important; + .xl\:-translate-y-1 { + --tw-translate-y: -0.25rem !important; } - .xl\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46 !important; + .xl\:-translate-y-2 { + --tw-translate-y: -0.5rem !important; } - .xl\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b !important; + .xl\:-translate-y-3 { + --tw-translate-y: -0.75rem !important; } - .xl\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff !important; + .xl\:-translate-y-4 { + --tw-translate-y: -1rem !important; } - .xl\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe !important; + .xl\:-translate-y-5 { + --tw-translate-y: -1.25rem !important; } - .xl\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe !important; + .xl\:-translate-y-6 { + --tw-translate-y: -1.5rem !important; } - .xl\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd !important; + .xl\:-translate-y-7 { + --tw-translate-y: -1.75rem !important; } - .xl\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa !important; + .xl\:-translate-y-8 { + --tw-translate-y: -2rem !important; } - .xl\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6 !important; + .xl\:-translate-y-9 { + --tw-translate-y: -2.25rem !important; } - .xl\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb !important; + .xl\:-translate-y-10 { + --tw-translate-y: -2.5rem !important; } - .xl\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8 !important; + .xl\:-translate-y-11 { + --tw-translate-y: -2.75rem !important; } - .xl\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af !important; + .xl\:-translate-y-12 { + --tw-translate-y: -3rem !important; } - .xl\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a !important; + .xl\:-translate-y-14 { + --tw-translate-y: -3.5rem !important; } - .xl\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff !important; + .xl\:-translate-y-16 { + --tw-translate-y: -4rem !important; } - .xl\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff !important; + .xl\:-translate-y-20 { + --tw-translate-y: -5rem !important; } - .xl\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe !important; + .xl\:-translate-y-24 { + --tw-translate-y: -6rem !important; } - .xl\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc !important; + .xl\:-translate-y-28 { + --tw-translate-y: -7rem !important; } - .xl\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8 !important; + .xl\:-translate-y-32 { + --tw-translate-y: -8rem !important; } - .xl\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1 !important; + .xl\:-translate-y-36 { + --tw-translate-y: -9rem !important; } - .xl\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5 !important; + .xl\:-translate-y-40 { + --tw-translate-y: -10rem !important; } - .xl\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca !important; + .xl\:-translate-y-44 { + --tw-translate-y: -11rem !important; } - .xl\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3 !important; + .xl\:-translate-y-48 { + --tw-translate-y: -12rem !important; } - .xl\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81 !important; + .xl\:-translate-y-52 { + --tw-translate-y: -13rem !important; } - .xl\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff !important; + .xl\:-translate-y-56 { + --tw-translate-y: -14rem !important; } - .xl\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe !important; + .xl\:-translate-y-60 { + --tw-translate-y: -15rem !important; } - .xl\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe !important; + .xl\:-translate-y-64 { + --tw-translate-y: -16rem !important; } - .xl\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd !important; + .xl\:-translate-y-72 { + --tw-translate-y: -18rem !important; } - .xl\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa !important; + .xl\:-translate-y-80 { + --tw-translate-y: -20rem !important; } - .xl\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6 !important; + .xl\:-translate-y-96 { + --tw-translate-y: -24rem !important; } - .xl\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed !important; + .xl\:-translate-y-px { + --tw-translate-y: -1px !important; } - .xl\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9 !important; + .xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; } - .xl\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6 !important; + .xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; } - .xl\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95 !important; + .xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; } - .xl\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8 !important; + .xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; } - .xl\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3 !important; + .xl\:translate-y-1\/2 { + --tw-translate-y: 50% !important; } - .xl\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8 !important; + .xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; } - .xl\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4 !important; + .xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; } - .xl\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6 !important; + .xl\:translate-y-1\/4 { + --tw-translate-y: 25% !important; } - .xl\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899 !important; + .xl\:translate-y-2\/4 { + --tw-translate-y: 50% !important; } - .xl\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777 !important; + .xl\:translate-y-3\/4 { + --tw-translate-y: 75% !important; } - .xl\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d !important; + .xl\:translate-y-full { + --tw-translate-y: 100% !important; } - .xl\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d !important; + .xl\:-translate-y-1\/2 { + --tw-translate-y: -50% !important; } - .xl\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843 !important; + .xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; } - .xl\:bg-opacity-0 { - --tw-bg-opacity: 0 !important; + .xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; } - .xl\:bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; + .xl\:-translate-y-1\/4 { + --tw-translate-y: -25% !important; } - .xl\:bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; + .xl\:-translate-y-2\/4 { + --tw-translate-y: -50% !important; } - .xl\:bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; + .xl\:-translate-y-3\/4 { + --tw-translate-y: -75% !important; } - .xl\:bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; + .xl\:-translate-y-full { + --tw-translate-y: -100% !important; } - .xl\:bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; + .xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; } - .xl\:bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; + .xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; } - .xl\:bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; + .xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; } - .xl\:bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; + .xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; } - .xl\:bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; + .xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; } - .xl\:bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; + .xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; } - .xl\:bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; + .xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; } - .xl\:bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; + .xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; } - .xl\:bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; + .xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; } - .xl\:bg-opacity-100 { - --tw-bg-opacity: 1 !important; + .xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0 !important; + .xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; + .xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; + .xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; + .xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; + .xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; + .xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; + .xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; + .xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; + .xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; + .xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; + .xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; + .xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; + .xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; + .xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; } - .group:hover .xl\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1 !important; + .xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; } - .xl\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0 !important; + .xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; } - .xl\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05 !important; + .xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; } - .xl\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1 !important; + .xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; } - .xl\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2 !important; + .xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; } - .xl\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25 !important; + .xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; } - .xl\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3 !important; + .xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; } - .xl\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4 !important; + .xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; } - .xl\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5 !important; + .xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; } - .xl\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6 !important; + .xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; } - .xl\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7 !important; + .xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; } - .xl\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75 !important; + .xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; } - .xl\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8 !important; + .xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; } - .xl\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9 !important; + .xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; } - .xl\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95 !important; + .xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; } - .xl\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1 !important; + .xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; } - .xl\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0 !important; + .xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; } - .xl\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05 !important; + .xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; } - .xl\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1 !important; + .xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; } - .xl\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2 !important; + .xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; } - .xl\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25 !important; + .xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; } - .xl\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3 !important; + .xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; } - .xl\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4 !important; + .xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; } - .xl\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5 !important; + .xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; } - .xl\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6 !important; + .xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; } - .xl\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7 !important; + .xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; } - .xl\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75 !important; + .xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; } - .xl\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8 !important; + .xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; } - .xl\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9 !important; + .xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; } - .xl\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95 !important; + .xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; } - .xl\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1 !important; + .xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; } - .xl\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0 !important; + .xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; } - .xl\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05 !important; + .xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; } - .xl\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1 !important; + .xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; } - .xl\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2 !important; + .xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; } - .xl\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25 !important; + .xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; } - .xl\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3 !important; + .xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; } - .xl\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4 !important; + .xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; } - .xl\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5 !important; + .xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; } - .xl\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6 !important; + .xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; } - .xl\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7 !important; + .xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; } - .xl\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75 !important; + .xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; } - .xl\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8 !important; + .xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; } - .xl\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9 !important; + .xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; } - .xl\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95 !important; + .xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; } - .xl\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1 !important; + .xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; } - .xl\:bg-bottom { - background-position: bottom !important; + .xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; } - .xl\:bg-center { - background-position: center !important; + .xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; } - .xl\:bg-left { - background-position: left !important; + .xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; } - .xl\:bg-left-bottom { - background-position: left bottom !important; + .xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; } - .xl\:bg-left-top { - background-position: left top !important; + .xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; } - .xl\:bg-right { - background-position: right !important; + .xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; } - .xl\:bg-right-bottom { - background-position: right bottom !important; + .xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; } - .xl\:bg-right-top { - background-position: right top !important; + .xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; } - .xl\:bg-top { - background-position: top !important; + .xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; } - .xl\:bg-repeat { - background-repeat: repeat !important; + .xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; } - .xl\:bg-no-repeat { - background-repeat: no-repeat !important; + .xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; } - .xl\:bg-repeat-x { - background-repeat: repeat-x !important; + .xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; } - .xl\:bg-repeat-y { - background-repeat: repeat-y !important; + .xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; } - .xl\:bg-repeat-round { - background-repeat: round !important; + .xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; } - .xl\:bg-repeat-space { - background-repeat: space !important; + .xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; } - .xl\:bg-auto { - background-size: auto !important; + .xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; } - .xl\:bg-cover { - background-size: cover !important; + .xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; } - .xl\:bg-contain { - background-size: contain !important; + .xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; } - .xl\:bg-origin-border { - background-origin: border-box !important; + .xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; } - .xl\:bg-origin-padding { - background-origin: padding-box !important; + .xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; } - .xl\:bg-origin-content { - background-origin: content-box !important; + .xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; } - .xl\:border-collapse { - border-collapse: collapse !important; + .xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; } - .xl\:border-separate { - border-collapse: separate !important; + .xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; } - .xl\:border-transparent { - border-color: transparent !important; + .xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; } - .xl\:border-current { - border-color: currentColor !important; + .xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; } - .xl\:border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; } - .xl\:border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; } - .xl\:border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; } - .xl\:border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; } - .xl\:border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; } - .xl\:border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; } - .xl\:border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; } - .xl\:border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; } - .xl\:border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; } - .xl\:border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; } - .xl\:border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; } - .xl\:border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; } - .xl\:border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; } - .xl\:border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; } - .xl\:border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; } - .xl\:border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; } - .xl\:border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; } - .xl\:border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; } - .xl\:border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; } - .xl\:border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; } - .xl\:border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; } - .xl\:border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; } - .xl\:border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; } - .xl\:border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; } - .xl\:border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; } - .xl\:border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; } - .xl\:border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; } - .xl\:border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; } - .xl\:border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; } - .xl\:border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; } - .xl\:border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; } - .xl\:border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; } - .xl\:border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; } - .xl\:border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; } - .xl\:border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; } - .xl\:border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; } - .xl\:border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; } - .xl\:border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; } - .xl\:border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; } - .xl\:border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; } - .xl\:border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; } - .xl\:border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; } - .xl\:border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; } - .xl\:border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; } - .xl\:border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; } - .xl\:border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; } - .xl\:border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; } - .xl\:border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; } - .xl\:border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; } - .xl\:border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; } - .xl\:border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; } - .xl\:border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; } - .xl\:border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; } - .xl\:border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; } - .xl\:border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; } - .xl\:border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; } - .xl\:border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; } - .xl\:border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; } - .xl\:border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; } - .xl\:border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; } - .xl\:border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; } - .xl\:border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; } - .xl\:border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; } - .xl\:border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; } - .xl\:border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; } - .xl\:border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; } - .xl\:border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; } - .xl\:border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; } - .xl\:border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; } - .xl\:border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; } - .xl\:border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; } - .xl\:border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; } - .xl\:border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; } - .xl\:border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; } - .xl\:border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; } - .xl\:border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; } - .xl\:border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; } - .xl\:border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; } - .xl\:border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; } - .xl\:border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; } - .xl\:border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; } - .xl\:border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; } - .group:hover .xl\:group-hover\:border-transparent { - border-color: transparent !important; + .xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; } - .group:hover .xl\:group-hover\:border-current { - border-color: currentColor !important; + .xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; } - .group:hover .xl\:group-hover\:border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; } - .group:hover .xl\:group-hover\:border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; } - .group:hover .xl\:group-hover\:border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; } - .group:hover .xl\:group-hover\:border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; } - .group:hover .xl\:group-hover\:border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; } - .group:hover .xl\:group-hover\:border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; } - .group:hover .xl\:group-hover\:border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; } - .group:hover .xl\:group-hover\:border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; } - .group:hover .xl\:group-hover\:border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; } - .group:hover .xl\:group-hover\:border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; } - .group:hover .xl\:group-hover\:border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; } - .group:hover .xl\:group-hover\:border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; } - .group:hover .xl\:group-hover\:border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; } - .group:hover .xl\:group-hover\:border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; } - .group:hover .xl\:group-hover\:border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; } - .group:hover .xl\:group-hover\:border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; } - .group:hover .xl\:group-hover\:border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; } - .group:hover .xl\:group-hover\:border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; } - .group:hover .xl\:group-hover\:border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; } - .group:hover .xl\:group-hover\:border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; } - .group:hover .xl\:group-hover\:border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; } - .group:hover .xl\:group-hover\:border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; } - .group:hover .xl\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; } - .group:hover .xl\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; } - .group:hover .xl\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; } - .group:hover .xl\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; } - .group:hover .xl\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; } - .group:hover .xl\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; } - .group:hover .xl\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; } - .group:hover .xl\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; } - .group:hover .xl\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; } - .group:hover .xl\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; } - .group:hover .xl\:group-hover\:border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; } - .group:hover .xl\:group-hover\:border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; } - - .group:hover .xl\:group-hover\:border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + + .xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; } - .group:hover .xl\:group-hover\:border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; } - .group:hover .xl\:group-hover\:border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; } - .group:hover .xl\:group-hover\:border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; } - .group:hover .xl\:group-hover\:border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; } - .group:hover .xl\:group-hover\:border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; } - .group:hover .xl\:group-hover\:border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; } - .group:hover .xl\:group-hover\:border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; } - .group:hover .xl\:group-hover\:border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; } - .group:hover .xl\:group-hover\:border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; } - .group:hover .xl\:group-hover\:border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; } - .group:hover .xl\:group-hover\:border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; } - .group:hover .xl\:group-hover\:border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; } - .group:hover .xl\:group-hover\:border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; } - .group:hover .xl\:group-hover\:border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; } - .group:hover .xl\:group-hover\:border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; } - .group:hover .xl\:group-hover\:border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; } - .group:hover .xl\:group-hover\:border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; } - .group:hover .xl\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; } - .group:hover .xl\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; } - .group:hover .xl\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; } - .group:hover .xl\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; } - .group:hover .xl\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; } - .group:hover .xl\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; } - .group:hover .xl\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; } - .group:hover .xl\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; } - .group:hover .xl\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; } - .group:hover .xl\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; } - .group:hover .xl\:group-hover\:border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; } - .group:hover .xl\:group-hover\:border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; } - .group:hover .xl\:group-hover\:border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; } - .group:hover .xl\:group-hover\:border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; } - .group:hover .xl\:group-hover\:border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; } - .group:hover .xl\:group-hover\:border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; } - .group:hover .xl\:group-hover\:border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; } - .group:hover .xl\:group-hover\:border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; } - .group:hover .xl\:group-hover\:border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; } - .group:hover .xl\:group-hover\:border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; } - .group:hover .xl\:group-hover\:border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; } - .group:hover .xl\:group-hover\:border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; } - .group:hover .xl\:group-hover\:border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; } - .group:hover .xl\:group-hover\:border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; } - .group:hover .xl\:group-hover\:border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; } - .group:hover .xl\:group-hover\:border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; } - .group:hover .xl\:group-hover\:border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; } - .group:hover .xl\:group-hover\:border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; } - .group:hover .xl\:group-hover\:border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; } - .group:hover .xl\:group-hover\:border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; } - .xl\:focus-within\:border-transparent:focus-within { - border-color: transparent !important; + .xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; } - .xl\:focus-within\:border-current:focus-within { - border-color: currentColor !important; + .xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; } - .xl\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; } - .xl\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; } - .xl\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; } - .xl\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; } - .xl\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; } - .xl\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; } - .xl\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; } - .xl\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; } - .xl\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; } - .xl\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; } - .xl\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; } - .xl\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; } - .xl\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; } - .xl\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; } - .xl\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; } - .xl\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; } - .xl\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; } - .xl\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; } - .xl\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; } - .xl\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; } - .xl\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; } - .xl\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; } - .xl\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; } - .xl\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; } - .xl\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; } - .xl\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; } - .xl\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; } - .xl\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; } - .xl\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; } - .xl\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; } - .xl\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; } - .xl\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; } - .xl\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; } - .xl\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; } - .xl\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; } - .xl\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; } - .xl\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; } - .xl\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; } - .xl\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; } - .xl\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; } - .xl\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; } - .xl\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; } - .xl\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; } - .xl\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; } - .xl\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; } - .xl\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; } - .xl\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; } - .xl\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; } - .xl\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; } - .xl\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; } - .xl\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; } - .xl\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; } - .xl\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; } - .xl\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; } - .xl\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; } - .xl\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; } - .xl\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; } - .xl\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; } - .xl\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; } - .xl\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; } - .xl\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; } - .xl\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; } - .xl\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; } - .xl\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; } - .xl\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; } - .xl\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; } - .xl\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; } - .xl\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; } - .xl\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; } - .xl\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; } - .xl\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; } - .xl\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; } - .xl\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; } - .xl\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .xl\:rotate-0 { + --tw-rotate: 0deg !important; } - .xl\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .xl\:rotate-1 { + --tw-rotate: 1deg !important; } - .xl\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .xl\:rotate-2 { + --tw-rotate: 2deg !important; } - .xl\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .xl\:rotate-3 { + --tw-rotate: 3deg !important; } - .xl\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .xl\:rotate-6 { + --tw-rotate: 6deg !important; } - .xl\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .xl\:rotate-12 { + --tw-rotate: 12deg !important; } - .xl\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .xl\:rotate-45 { + --tw-rotate: 45deg !important; } - .xl\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .xl\:rotate-90 { + --tw-rotate: 90deg !important; } - .xl\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .xl\:rotate-180 { + --tw-rotate: 180deg !important; } - .xl\:hover\:border-transparent:hover { - border-color: transparent !important; + .xl\:-rotate-180 { + --tw-rotate: -180deg !important; } - .xl\:hover\:border-current:hover { - border-color: currentColor !important; + .xl\:-rotate-90 { + --tw-rotate: -90deg !important; } - .xl\:hover\:border-black:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .xl\:-rotate-45 { + --tw-rotate: -45deg !important; } - .xl\:hover\:border-white:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .xl\:-rotate-12 { + --tw-rotate: -12deg !important; } - .xl\:hover\:border-gray-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .xl\:-rotate-6 { + --tw-rotate: -6deg !important; } - .xl\:hover\:border-gray-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .xl\:-rotate-3 { + --tw-rotate: -3deg !important; } - .xl\:hover\:border-gray-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .xl\:-rotate-2 { + --tw-rotate: -2deg !important; } - .xl\:hover\:border-gray-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .xl\:-rotate-1 { + --tw-rotate: -1deg !important; } - .xl\:hover\:border-gray-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg !important; } - .xl\:hover\:border-gray-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg !important; } - .xl\:hover\:border-gray-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg !important; } - .xl\:hover\:border-gray-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg !important; } - .xl\:hover\:border-gray-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg !important; } - .xl\:hover\:border-gray-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg !important; } - .xl\:hover\:border-red-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg !important; } - .xl\:hover\:border-red-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg !important; } - .xl\:hover\:border-red-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg !important; } - .xl\:hover\:border-red-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; } - .xl\:hover\:border-red-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; } - .xl\:hover\:border-red-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; } - .xl\:hover\:border-red-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; } - .xl\:hover\:border-red-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; } - .xl\:hover\:border-red-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; } - .xl\:hover\:border-red-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; } - .xl\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; } - .xl\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg !important; } - .xl\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg !important; } - .xl\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg !important; } - .xl\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg !important; } - .xl\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg !important; } - .xl\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg !important; } - .xl\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg !important; } - .xl\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg !important; } - .xl\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg !important; } - .xl\:hover\:border-green-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; } - .xl\:hover\:border-green-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; } - .xl\:hover\:border-green-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; } - .xl\:hover\:border-green-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; } - .xl\:hover\:border-green-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; } - .xl\:hover\:border-green-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; } - .xl\:hover\:border-green-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; } - .xl\:hover\:border-green-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; } - .xl\:hover\:border-green-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .xl\:skew-x-0 { + --tw-skew-x: 0deg !important; } - .xl\:hover\:border-green-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .xl\:skew-x-1 { + --tw-skew-x: 1deg !important; } - .xl\:hover\:border-blue-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .xl\:skew-x-2 { + --tw-skew-x: 2deg !important; } - .xl\:hover\:border-blue-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .xl\:skew-x-3 { + --tw-skew-x: 3deg !important; } - .xl\:hover\:border-blue-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .xl\:skew-x-6 { + --tw-skew-x: 6deg !important; } - .xl\:hover\:border-blue-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .xl\:skew-x-12 { + --tw-skew-x: 12deg !important; } - .xl\:hover\:border-blue-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .xl\:-skew-x-12 { + --tw-skew-x: -12deg !important; } - .xl\:hover\:border-blue-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .xl\:-skew-x-6 { + --tw-skew-x: -6deg !important; } - .xl\:hover\:border-blue-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .xl\:-skew-x-3 { + --tw-skew-x: -3deg !important; } - .xl\:hover\:border-blue-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .xl\:-skew-x-2 { + --tw-skew-x: -2deg !important; } - .xl\:hover\:border-blue-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .xl\:-skew-x-1 { + --tw-skew-x: -1deg !important; } - .xl\:hover\:border-blue-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .xl\:skew-y-0 { + --tw-skew-y: 0deg !important; } - .xl\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .xl\:skew-y-1 { + --tw-skew-y: 1deg !important; } - .xl\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .xl\:skew-y-2 { + --tw-skew-y: 2deg !important; } - .xl\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .xl\:skew-y-3 { + --tw-skew-y: 3deg !important; } - .xl\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .xl\:skew-y-6 { + --tw-skew-y: 6deg !important; } - .xl\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .xl\:skew-y-12 { + --tw-skew-y: 12deg !important; } - .xl\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .xl\:-skew-y-12 { + --tw-skew-y: -12deg !important; } - .xl\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .xl\:-skew-y-6 { + --tw-skew-y: -6deg !important; } - .xl\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .xl\:-skew-y-3 { + --tw-skew-y: -3deg !important; } - .xl\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .xl\:-skew-y-2 { + --tw-skew-y: -2deg !important; } - .xl\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .xl\:-skew-y-1 { + --tw-skew-y: -1deg !important; } - .xl\:hover\:border-purple-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; } - .xl\:hover\:border-purple-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; } - .xl\:hover\:border-purple-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; } - .xl\:hover\:border-purple-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; } - .xl\:hover\:border-purple-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; } - .xl\:hover\:border-purple-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; } - .xl\:hover\:border-purple-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; } - .xl\:hover\:border-purple-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; } - .xl\:hover\:border-purple-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; } - .xl\:hover\:border-purple-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; } - .xl\:hover\:border-pink-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; } - .xl\:hover\:border-pink-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; } - .xl\:hover\:border-pink-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; } - .xl\:hover\:border-pink-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; } - .xl\:hover\:border-pink-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; } - .xl\:hover\:border-pink-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; } - .xl\:hover\:border-pink-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; } - .xl\:hover\:border-pink-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; } - .xl\:hover\:border-pink-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; } - .xl\:hover\:border-pink-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; } - .xl\:focus\:border-transparent:focus { - border-color: transparent !important; + .xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; } - .xl\:focus\:border-current:focus { - border-color: currentColor !important; + .xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; } - .xl\:focus\:border-black:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; } - .xl\:focus\:border-white:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; } - .xl\:focus\:border-gray-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; } - .xl\:focus\:border-gray-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; } - .xl\:focus\:border-gray-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; } - .xl\:focus\:border-gray-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; } - .xl\:focus\:border-gray-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; } - .xl\:focus\:border-gray-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; } - .xl\:focus\:border-gray-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; } - .xl\:focus\:border-gray-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; } - .xl\:focus\:border-gray-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; } - .xl\:focus\:border-gray-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; } - .xl\:focus\:border-red-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; } - .xl\:focus\:border-red-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; } - .xl\:focus\:border-red-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; } - .xl\:focus\:border-red-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; } - .xl\:focus\:border-red-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; } - .xl\:focus\:border-red-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; } - .xl\:focus\:border-red-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; } - .xl\:focus\:border-red-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; } - .xl\:focus\:border-red-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; } - .xl\:focus\:border-red-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; } - .xl\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .xl\:scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .xl\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .xl\:scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .xl\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .xl\:scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .xl\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .xl\:scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .xl\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .xl\:scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .xl\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .xl\:scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .xl\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .xl\:scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .xl\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .xl\:scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .xl\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .xl\:scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .xl\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .xl\:scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .xl\:focus\:border-green-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .xl\:scale-x-0 { + --tw-scale-x: 0 !important; } - .xl\:focus\:border-green-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .xl\:scale-x-50 { + --tw-scale-x: .5 !important; } - .xl\:focus\:border-green-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .xl\:scale-x-75 { + --tw-scale-x: .75 !important; } - .xl\:focus\:border-green-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .xl\:scale-x-90 { + --tw-scale-x: .9 !important; } - .xl\:focus\:border-green-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .xl\:scale-x-95 { + --tw-scale-x: .95 !important; } - .xl\:focus\:border-green-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .xl\:scale-x-100 { + --tw-scale-x: 1 !important; } - .xl\:focus\:border-green-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .xl\:scale-x-105 { + --tw-scale-x: 1.05 !important; } - .xl\:focus\:border-green-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .xl\:scale-x-110 { + --tw-scale-x: 1.1 !important; } - .xl\:focus\:border-green-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .xl\:scale-x-125 { + --tw-scale-x: 1.25 !important; } - .xl\:focus\:border-green-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .xl\:scale-x-150 { + --tw-scale-x: 1.5 !important; } - .xl\:focus\:border-blue-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .xl\:scale-y-0 { + --tw-scale-y: 0 !important; } - .xl\:focus\:border-blue-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .xl\:scale-y-50 { + --tw-scale-y: .5 !important; } - .xl\:focus\:border-blue-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .xl\:scale-y-75 { + --tw-scale-y: .75 !important; } - .xl\:focus\:border-blue-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .xl\:scale-y-90 { + --tw-scale-y: .9 !important; } - .xl\:focus\:border-blue-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .xl\:scale-y-95 { + --tw-scale-y: .95 !important; } - .xl\:focus\:border-blue-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .xl\:scale-y-100 { + --tw-scale-y: 1 !important; } - .xl\:focus\:border-blue-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .xl\:scale-y-105 { + --tw-scale-y: 1.05 !important; } - .xl\:focus\:border-blue-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .xl\:scale-y-110 { + --tw-scale-y: 1.1 !important; } - .xl\:focus\:border-blue-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .xl\:scale-y-125 { + --tw-scale-y: 1.25 !important; } - .xl\:focus\:border-blue-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .xl\:scale-y-150 { + --tw-scale-y: 1.5 !important; } - .xl\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .xl\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .xl\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .xl\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .xl\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .xl\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .xl\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .xl\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .xl\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .xl\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .xl\:focus\:border-purple-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; } - .xl\:focus\:border-purple-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; } - .xl\:focus\:border-purple-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; } - .xl\:focus\:border-purple-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; } - .xl\:focus\:border-purple-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; } - .xl\:focus\:border-purple-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; } - .xl\:focus\:border-purple-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; } - .xl\:focus\:border-purple-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; } - .xl\:focus\:border-purple-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; } - .xl\:focus\:border-purple-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; } - .xl\:focus\:border-pink-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; } - .xl\:focus\:border-pink-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; } - .xl\:focus\:border-pink-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; } - .xl\:focus\:border-pink-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; } - .xl\:focus\:border-pink-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; } - .xl\:focus\:border-pink-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; } - .xl\:focus\:border-pink-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; } - .xl\:focus\:border-pink-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; } - .xl\:focus\:border-pink-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; } - .xl\:focus\:border-pink-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; } - .xl\:border-opacity-0 { - --tw-border-opacity: 0 !important; + .xl\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .xl\:border-opacity-5 { - --tw-border-opacity: 0.05 !important; + .xl\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .xl\:border-opacity-10 { - --tw-border-opacity: 0.1 !important; + .xl\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .xl\:border-opacity-20 { - --tw-border-opacity: 0.2 !important; + .xl\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .xl\:border-opacity-25 { - --tw-border-opacity: 0.25 !important; + .xl\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .xl\:border-opacity-30 { - --tw-border-opacity: 0.3 !important; + .xl\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .xl\:border-opacity-40 { - --tw-border-opacity: 0.4 !important; + .xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .xl\:border-opacity-50 { - --tw-border-opacity: 0.5 !important; + .xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .xl\:border-opacity-60 { - --tw-border-opacity: 0.6 !important; + .xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .xl\:border-opacity-70 { - --tw-border-opacity: 0.7 !important; + .xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .xl\:border-opacity-75 { - --tw-border-opacity: 0.75 !important; + .xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; } - .xl\:border-opacity-80 { - --tw-border-opacity: 0.8 !important; + .xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; } - .xl\:border-opacity-90 { - --tw-border-opacity: 0.9 !important; + .xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; } - .xl\:border-opacity-95 { - --tw-border-opacity: 0.95 !important; + .xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; } - .xl\:border-opacity-100 { - --tw-border-opacity: 1 !important; + .xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; } - .group:hover .xl\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0 !important; + .xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; } - .group:hover .xl\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05 !important; + .xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; } - .group:hover .xl\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1 !important; + .xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; } - .group:hover .xl\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2 !important; + .xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; } - .group:hover .xl\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25 !important; + .xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; } - .group:hover .xl\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3 !important; + .xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; } - .group:hover .xl\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4 !important; + .xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; } - .group:hover .xl\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5 !important; + .xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; } - .group:hover .xl\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6 !important; + .xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; } - .group:hover .xl\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7 !important; + .xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; } - .group:hover .xl\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75 !important; + .xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; } - .group:hover .xl\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8 !important; + .xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; } - .group:hover .xl\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9 !important; + .xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; } - .group:hover .xl\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95 !important; + .xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; } - .group:hover .xl\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1 !important; + .xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; } - .xl\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0 !important; + .xl\:animate-none { + animation: none !important; } - .xl\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05 !important; + .xl\:animate-spin { + animation: spin 1s linear infinite !important; } - .xl\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1 !important; + .xl\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; } - .xl\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2 !important; + .xl\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; } - .xl\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25 !important; + .xl\:animate-bounce { + animation: bounce 1s infinite !important; } - .xl\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3 !important; + .xl\:cursor-auto { + cursor: auto !important; } - .xl\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4 !important; + .xl\:cursor-default { + cursor: default !important; } - .xl\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5 !important; + .xl\:cursor-pointer { + cursor: pointer !important; } - .xl\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6 !important; + .xl\:cursor-wait { + cursor: wait !important; } - .xl\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7 !important; + .xl\:cursor-text { + cursor: text !important; } - .xl\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75 !important; + .xl\:cursor-move { + cursor: move !important; } - .xl\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8 !important; + .xl\:cursor-help { + cursor: help !important; } - .xl\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9 !important; + .xl\:cursor-not-allowed { + cursor: not-allowed !important; } - .xl\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95 !important; + .xl\:select-none { + user-select: none !important; } - .xl\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1 !important; + .xl\:select-text { + user-select: text !important; } - .xl\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0 !important; + .xl\:select-all { + user-select: all !important; } - .xl\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05 !important; + .xl\:select-auto { + user-select: auto !important; } - .xl\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1 !important; + .xl\:resize-none { + resize: none !important; } - .xl\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2 !important; + .xl\:resize-y { + resize: vertical !important; } - .xl\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25 !important; + .xl\:resize-x { + resize: horizontal !important; } - .xl\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3 !important; + .xl\:resize { + resize: both !important; } - .xl\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4 !important; + .xl\:list-inside { + list-style-position: inside !important; } - .xl\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5 !important; + .xl\:list-outside { + list-style-position: outside !important; } - .xl\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6 !important; + .xl\:list-none { + list-style-type: none !important; } - .xl\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7 !important; + .xl\:list-disc { + list-style-type: disc !important; } - .xl\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75 !important; + .xl\:list-decimal { + list-style-type: decimal !important; } - .xl\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8 !important; + .xl\:appearance-none { + appearance: none !important; } - .xl\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9 !important; + .xl\:auto-cols-auto { + grid-auto-columns: auto !important; } - .xl\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95 !important; + .xl\:auto-cols-min { + grid-auto-columns: min-content !important; } - .xl\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1 !important; + .xl\:auto-cols-max { + grid-auto-columns: max-content !important; } - .xl\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0 !important; + .xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; } - .xl\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05 !important; + .xl\:grid-flow-row { + grid-auto-flow: row !important; } - .xl\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1 !important; + .xl\:grid-flow-col { + grid-auto-flow: column !important; } - .xl\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2 !important; + .xl\:grid-flow-row-dense { + grid-auto-flow: row dense !important; } - .xl\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25 !important; + .xl\:grid-flow-col-dense { + grid-auto-flow: column dense !important; } - .xl\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3 !important; + .xl\:auto-rows-auto { + grid-auto-rows: auto !important; } - .xl\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4 !important; + .xl\:auto-rows-min { + grid-auto-rows: min-content !important; } - .xl\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5 !important; + .xl\:auto-rows-max { + grid-auto-rows: max-content !important; } - .xl\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6 !important; + .xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; } - .xl\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7 !important; + .xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } - .xl\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75 !important; + .xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } - .xl\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8 !important; + .xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } - .xl\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9 !important; + .xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } - .xl\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95 !important; + .xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } - .xl\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1 !important; + .xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } - .xl\:rounded-none { - border-radius: 0px !important; + .xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } - .xl\:rounded-sm { - border-radius: 0.125rem !important; + .xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } - .xl\:rounded { - border-radius: 0.25rem !important; + .xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } - .xl\:rounded-md { - border-radius: 0.375rem !important; + .xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } - .xl\:rounded-lg { - border-radius: 0.5rem !important; + .xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } - .xl\:rounded-xl { - border-radius: 0.75rem !important; + .xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } - .xl\:rounded-2xl { - border-radius: 1rem !important; + .xl\:grid-cols-none { + grid-template-columns: none !important; } - .xl\:rounded-3xl { - border-radius: 1.5rem !important; + .xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; } - .xl\:rounded-full { - border-radius: 9999px !important; + .xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; } - .xl\:rounded-t-none { - border-top-left-radius: 0px !important; - border-top-right-radius: 0px !important; + .xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; } - .xl\:rounded-r-none { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; + .xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; } - .xl\:rounded-b-none { - border-bottom-right-radius: 0px !important; - border-bottom-left-radius: 0px !important; + .xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; } - .xl\:rounded-l-none { - border-top-left-radius: 0px !important; - border-bottom-left-radius: 0px !important; + .xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; } - .xl\:rounded-t-sm { - border-top-left-radius: 0.125rem !important; - border-top-right-radius: 0.125rem !important; + .xl\:grid-rows-none { + grid-template-rows: none !important; } - .xl\:rounded-r-sm { - border-top-right-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; + .xl\:flex-row { + flex-direction: row !important; } - .xl\:rounded-b-sm { - border-bottom-right-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; + .xl\:flex-row-reverse { + flex-direction: row-reverse !important; } - .xl\:rounded-l-sm { - border-top-left-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; + .xl\:flex-col { + flex-direction: column !important; } - .xl\:rounded-t { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; + .xl\:flex-col-reverse { + flex-direction: column-reverse !important; } - .xl\:rounded-r { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; + .xl\:flex-wrap { + flex-wrap: wrap !important; } - .xl\:rounded-b { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; + .xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse !important; } - .xl\:rounded-l { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; + .xl\:flex-nowrap { + flex-wrap: nowrap !important; } - .xl\:rounded-t-md { - border-top-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem !important; + .xl\:place-content-center { + place-content: center !important; } - .xl\:rounded-r-md { - border-top-right-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; + .xl\:place-content-start { + place-content: start !important; } - .xl\:rounded-b-md { - border-bottom-right-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; + .xl\:place-content-end { + place-content: end !important; } - .xl\:rounded-l-md { - border-top-left-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; + .xl\:place-content-between { + place-content: space-between !important; } - .xl\:rounded-t-lg { - border-top-left-radius: 0.5rem !important; - border-top-right-radius: 0.5rem !important; + .xl\:place-content-around { + place-content: space-around !important; } - .xl\:rounded-r-lg { - border-top-right-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; + .xl\:place-content-evenly { + place-content: space-evenly !important; } - .xl\:rounded-b-lg { - border-bottom-right-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; + .xl\:place-content-stretch { + place-content: stretch !important; } - .xl\:rounded-l-lg { - border-top-left-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; + .xl\:place-items-start { + place-items: start !important; } - .xl\:rounded-t-xl { - border-top-left-radius: 0.75rem !important; - border-top-right-radius: 0.75rem !important; + .xl\:place-items-end { + place-items: end !important; } - .xl\:rounded-r-xl { - border-top-right-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; + .xl\:place-items-center { + place-items: center !important; } - .xl\:rounded-b-xl { - border-bottom-right-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; + .xl\:place-items-stretch { + place-items: stretch !important; } - .xl\:rounded-l-xl { - border-top-left-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; + .xl\:content-center { + align-content: center !important; } - .xl\:rounded-t-2xl { - border-top-left-radius: 1rem !important; - border-top-right-radius: 1rem !important; + .xl\:content-start { + align-content: flex-start !important; } - .xl\:rounded-r-2xl { - border-top-right-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; + .xl\:content-end { + align-content: flex-end !important; } - .xl\:rounded-b-2xl { - border-bottom-right-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; + .xl\:content-between { + align-content: space-between !important; } - .xl\:rounded-l-2xl { - border-top-left-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; + .xl\:content-around { + align-content: space-around !important; } - .xl\:rounded-t-3xl { - border-top-left-radius: 1.5rem !important; - border-top-right-radius: 1.5rem !important; + .xl\:content-evenly { + align-content: space-evenly !important; } - .xl\:rounded-r-3xl { - border-top-right-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; + .xl\:items-start { + align-items: flex-start !important; } - .xl\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; + .xl\:items-end { + align-items: flex-end !important; } - .xl\:rounded-l-3xl { - border-top-left-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; + .xl\:items-center { + align-items: center !important; } - .xl\:rounded-t-full { - border-top-left-radius: 9999px !important; - border-top-right-radius: 9999px !important; + .xl\:items-baseline { + align-items: baseline !important; } - .xl\:rounded-r-full { - border-top-right-radius: 9999px !important; - border-bottom-right-radius: 9999px !important; + .xl\:items-stretch { + align-items: stretch !important; } - .xl\:rounded-b-full { - border-bottom-right-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; + .xl\:justify-start { + justify-content: flex-start !important; } - .xl\:rounded-l-full { - border-top-left-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; + .xl\:justify-end { + justify-content: flex-end !important; } - .xl\:rounded-tl-none { - border-top-left-radius: 0px !important; + .xl\:justify-center { + justify-content: center !important; } - .xl\:rounded-tr-none { - border-top-right-radius: 0px !important; + .xl\:justify-between { + justify-content: space-between !important; + } + + .xl\:justify-around { + justify-content: space-around !important; } - .xl\:rounded-br-none { - border-bottom-right-radius: 0px !important; + .xl\:justify-evenly { + justify-content: space-evenly !important; } - .xl\:rounded-bl-none { - border-bottom-left-radius: 0px !important; + .xl\:justify-items-start { + justify-items: start !important; } - .xl\:rounded-tl-sm { - border-top-left-radius: 0.125rem !important; + .xl\:justify-items-end { + justify-items: end !important; } - .xl\:rounded-tr-sm { - border-top-right-radius: 0.125rem !important; + .xl\:justify-items-center { + justify-items: center !important; } - .xl\:rounded-br-sm { - border-bottom-right-radius: 0.125rem !important; + .xl\:justify-items-stretch { + justify-items: stretch !important; } - .xl\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem !important; + .xl\:gap-0 { + gap: 0px !important; } - .xl\:rounded-tl { - border-top-left-radius: 0.25rem !important; + .xl\:gap-1 { + gap: 0.25rem !important; } - .xl\:rounded-tr { - border-top-right-radius: 0.25rem !important; + .xl\:gap-2 { + gap: 0.5rem !important; } - .xl\:rounded-br { - border-bottom-right-radius: 0.25rem !important; + .xl\:gap-3 { + gap: 0.75rem !important; } - .xl\:rounded-bl { - border-bottom-left-radius: 0.25rem !important; + .xl\:gap-4 { + gap: 1rem !important; } - .xl\:rounded-tl-md { - border-top-left-radius: 0.375rem !important; + .xl\:gap-5 { + gap: 1.25rem !important; } - .xl\:rounded-tr-md { - border-top-right-radius: 0.375rem !important; + .xl\:gap-6 { + gap: 1.5rem !important; } - .xl\:rounded-br-md { - border-bottom-right-radius: 0.375rem !important; + .xl\:gap-7 { + gap: 1.75rem !important; } - .xl\:rounded-bl-md { - border-bottom-left-radius: 0.375rem !important; + .xl\:gap-8 { + gap: 2rem !important; } - .xl\:rounded-tl-lg { - border-top-left-radius: 0.5rem !important; + .xl\:gap-9 { + gap: 2.25rem !important; } - .xl\:rounded-tr-lg { - border-top-right-radius: 0.5rem !important; + .xl\:gap-10 { + gap: 2.5rem !important; } - .xl\:rounded-br-lg { - border-bottom-right-radius: 0.5rem !important; + .xl\:gap-11 { + gap: 2.75rem !important; } - .xl\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem !important; + .xl\:gap-12 { + gap: 3rem !important; } - .xl\:rounded-tl-xl { - border-top-left-radius: 0.75rem !important; + .xl\:gap-14 { + gap: 3.5rem !important; } - .xl\:rounded-tr-xl { - border-top-right-radius: 0.75rem !important; + .xl\:gap-16 { + gap: 4rem !important; } - .xl\:rounded-br-xl { - border-bottom-right-radius: 0.75rem !important; + .xl\:gap-20 { + gap: 5rem !important; } - .xl\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem !important; + .xl\:gap-24 { + gap: 6rem !important; } - .xl\:rounded-tl-2xl { - border-top-left-radius: 1rem !important; + .xl\:gap-28 { + gap: 7rem !important; } - .xl\:rounded-tr-2xl { - border-top-right-radius: 1rem !important; + .xl\:gap-32 { + gap: 8rem !important; } - .xl\:rounded-br-2xl { - border-bottom-right-radius: 1rem !important; + .xl\:gap-36 { + gap: 9rem !important; } - .xl\:rounded-bl-2xl { - border-bottom-left-radius: 1rem !important; + .xl\:gap-40 { + gap: 10rem !important; } - .xl\:rounded-tl-3xl { - border-top-left-radius: 1.5rem !important; + .xl\:gap-44 { + gap: 11rem !important; } - .xl\:rounded-tr-3xl { - border-top-right-radius: 1.5rem !important; + .xl\:gap-48 { + gap: 12rem !important; } - .xl\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem !important; + .xl\:gap-52 { + gap: 13rem !important; } - .xl\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem !important; + .xl\:gap-56 { + gap: 14rem !important; } - .xl\:rounded-tl-full { - border-top-left-radius: 9999px !important; + .xl\:gap-60 { + gap: 15rem !important; } - .xl\:rounded-tr-full { - border-top-right-radius: 9999px !important; + .xl\:gap-64 { + gap: 16rem !important; } - .xl\:rounded-br-full { - border-bottom-right-radius: 9999px !important; + .xl\:gap-72 { + gap: 18rem !important; } - .xl\:rounded-bl-full { - border-bottom-left-radius: 9999px !important; + .xl\:gap-80 { + gap: 20rem !important; } - .xl\:border-solid { - border-style: solid !important; + .xl\:gap-96 { + gap: 24rem !important; } - .xl\:border-dashed { - border-style: dashed !important; + .xl\:gap-px { + gap: 1px !important; } - .xl\:border-dotted { - border-style: dotted !important; + .xl\:gap-0\.5 { + gap: 0.125rem !important; } - .xl\:border-double { - border-style: double !important; + .xl\:gap-1\.5 { + gap: 0.375rem !important; } - .xl\:border-none { - border-style: none !important; + .xl\:gap-2\.5 { + gap: 0.625rem !important; } - .xl\:border-0 { - border-width: 0px !important; + .xl\:gap-3\.5 { + gap: 0.875rem !important; } - .xl\:border-2 { - border-width: 2px !important; + .xl\:gap-x-0 { + column-gap: 0px !important; } - .xl\:border-4 { - border-width: 4px !important; + .xl\:gap-x-1 { + column-gap: 0.25rem !important; } - .xl\:border-8 { - border-width: 8px !important; + .xl\:gap-x-2 { + column-gap: 0.5rem !important; } - .xl\:border { - border-width: 1px !important; + .xl\:gap-x-3 { + column-gap: 0.75rem !important; } - .xl\:border-t-0 { - border-top-width: 0px !important; + .xl\:gap-x-4 { + column-gap: 1rem !important; } - .xl\:border-r-0 { - border-right-width: 0px !important; + .xl\:gap-x-5 { + column-gap: 1.25rem !important; } - .xl\:border-b-0 { - border-bottom-width: 0px !important; + .xl\:gap-x-6 { + column-gap: 1.5rem !important; } - .xl\:border-l-0 { - border-left-width: 0px !important; + .xl\:gap-x-7 { + column-gap: 1.75rem !important; } - .xl\:border-t-2 { - border-top-width: 2px !important; + .xl\:gap-x-8 { + column-gap: 2rem !important; } - .xl\:border-r-2 { - border-right-width: 2px !important; + .xl\:gap-x-9 { + column-gap: 2.25rem !important; } - .xl\:border-b-2 { - border-bottom-width: 2px !important; + .xl\:gap-x-10 { + column-gap: 2.5rem !important; } - .xl\:border-l-2 { - border-left-width: 2px !important; + .xl\:gap-x-11 { + column-gap: 2.75rem !important; } - .xl\:border-t-4 { - border-top-width: 4px !important; + .xl\:gap-x-12 { + column-gap: 3rem !important; } - .xl\:border-r-4 { - border-right-width: 4px !important; + .xl\:gap-x-14 { + column-gap: 3.5rem !important; } - .xl\:border-b-4 { - border-bottom-width: 4px !important; + .xl\:gap-x-16 { + column-gap: 4rem !important; } - .xl\:border-l-4 { - border-left-width: 4px !important; + .xl\:gap-x-20 { + column-gap: 5rem !important; } - .xl\:border-t-8 { - border-top-width: 8px !important; + .xl\:gap-x-24 { + column-gap: 6rem !important; } - .xl\:border-r-8 { - border-right-width: 8px !important; + .xl\:gap-x-28 { + column-gap: 7rem !important; } - .xl\:border-b-8 { - border-bottom-width: 8px !important; + .xl\:gap-x-32 { + column-gap: 8rem !important; } - .xl\:border-l-8 { - border-left-width: 8px !important; + .xl\:gap-x-36 { + column-gap: 9rem !important; } - .xl\:border-t { - border-top-width: 1px !important; + .xl\:gap-x-40 { + column-gap: 10rem !important; } - .xl\:border-r { - border-right-width: 1px !important; + .xl\:gap-x-44 { + column-gap: 11rem !important; } - .xl\:border-b { - border-bottom-width: 1px !important; + .xl\:gap-x-48 { + column-gap: 12rem !important; } - .xl\:border-l { - border-left-width: 1px !important; + .xl\:gap-x-52 { + column-gap: 13rem !important; } - .xl\:decoration-slice { - box-decoration-break: slice !important; + .xl\:gap-x-56 { + column-gap: 14rem !important; } - .xl\:decoration-clone { - box-decoration-break: clone !important; + .xl\:gap-x-60 { + column-gap: 15rem !important; } - .xl\:box-border { - box-sizing: border-box !important; + .xl\:gap-x-64 { + column-gap: 16rem !important; } - .xl\:box-content { - box-sizing: content-box !important; + .xl\:gap-x-72 { + column-gap: 18rem !important; } - .xl\:cursor-auto { - cursor: auto !important; + .xl\:gap-x-80 { + column-gap: 20rem !important; } - .xl\:cursor-default { - cursor: default !important; + .xl\:gap-x-96 { + column-gap: 24rem !important; } - .xl\:cursor-pointer { - cursor: pointer !important; + .xl\:gap-x-px { + column-gap: 1px !important; } - .xl\:cursor-wait { - cursor: wait !important; + .xl\:gap-x-0\.5 { + column-gap: 0.125rem !important; } - .xl\:cursor-text { - cursor: text !important; + .xl\:gap-x-1\.5 { + column-gap: 0.375rem !important; } - .xl\:cursor-move { - cursor: move !important; + .xl\:gap-x-2\.5 { + column-gap: 0.625rem !important; } - .xl\:cursor-help { - cursor: help !important; + .xl\:gap-x-3\.5 { + column-gap: 0.875rem !important; } - .xl\:cursor-not-allowed { - cursor: not-allowed !important; + .xl\:gap-y-0 { + row-gap: 0px !important; } - .xl\:block { - display: block !important; + .xl\:gap-y-1 { + row-gap: 0.25rem !important; } - .xl\:inline-block { - display: inline-block !important; + .xl\:gap-y-2 { + row-gap: 0.5rem !important; } - .xl\:inline { - display: inline !important; + .xl\:gap-y-3 { + row-gap: 0.75rem !important; } - .xl\:flex { - display: flex !important; + .xl\:gap-y-4 { + row-gap: 1rem !important; } - .xl\:inline-flex { - display: inline-flex !important; + .xl\:gap-y-5 { + row-gap: 1.25rem !important; } - .xl\:table { - display: table !important; + .xl\:gap-y-6 { + row-gap: 1.5rem !important; } - .xl\:inline-table { - display: inline-table !important; + .xl\:gap-y-7 { + row-gap: 1.75rem !important; } - .xl\:table-caption { - display: table-caption !important; + .xl\:gap-y-8 { + row-gap: 2rem !important; } - .xl\:table-cell { - display: table-cell !important; + .xl\:gap-y-9 { + row-gap: 2.25rem !important; } - .xl\:table-column { - display: table-column !important; + .xl\:gap-y-10 { + row-gap: 2.5rem !important; } - .xl\:table-column-group { - display: table-column-group !important; + .xl\:gap-y-11 { + row-gap: 2.75rem !important; } - .xl\:table-footer-group { - display: table-footer-group !important; + .xl\:gap-y-12 { + row-gap: 3rem !important; } - .xl\:table-header-group { - display: table-header-group !important; + .xl\:gap-y-14 { + row-gap: 3.5rem !important; } - .xl\:table-row-group { - display: table-row-group !important; + .xl\:gap-y-16 { + row-gap: 4rem !important; } - .xl\:table-row { - display: table-row !important; + .xl\:gap-y-20 { + row-gap: 5rem !important; } - .xl\:flow-root { - display: flow-root !important; + .xl\:gap-y-24 { + row-gap: 6rem !important; } - .xl\:grid { - display: grid !important; + .xl\:gap-y-28 { + row-gap: 7rem !important; } - .xl\:inline-grid { - display: inline-grid !important; + .xl\:gap-y-32 { + row-gap: 8rem !important; } - .xl\:contents { - display: contents !important; + .xl\:gap-y-36 { + row-gap: 9rem !important; } - .xl\:list-item { - display: list-item !important; + .xl\:gap-y-40 { + row-gap: 10rem !important; } - .xl\:hidden { - display: none !important; + .xl\:gap-y-44 { + row-gap: 11rem !important; } - .xl\:flex-row { - flex-direction: row !important; + .xl\:gap-y-48 { + row-gap: 12rem !important; } - .xl\:flex-row-reverse { - flex-direction: row-reverse !important; + .xl\:gap-y-52 { + row-gap: 13rem !important; } - .xl\:flex-col { - flex-direction: column !important; + .xl\:gap-y-56 { + row-gap: 14rem !important; } - .xl\:flex-col-reverse { - flex-direction: column-reverse !important; + .xl\:gap-y-60 { + row-gap: 15rem !important; } - .xl\:flex-wrap { - flex-wrap: wrap !important; + .xl\:gap-y-64 { + row-gap: 16rem !important; } - .xl\:flex-wrap-reverse { - flex-wrap: wrap-reverse !important; + .xl\:gap-y-72 { + row-gap: 18rem !important; } - .xl\:flex-nowrap { - flex-wrap: nowrap !important; + .xl\:gap-y-80 { + row-gap: 20rem !important; } - .xl\:place-items-start { - place-items: start !important; + .xl\:gap-y-96 { + row-gap: 24rem !important; } - .xl\:place-items-end { - place-items: end !important; + .xl\:gap-y-px { + row-gap: 1px !important; } - .xl\:place-items-center { - place-items: center !important; + .xl\:gap-y-0\.5 { + row-gap: 0.125rem !important; } - .xl\:place-items-stretch { - place-items: stretch !important; + .xl\:gap-y-1\.5 { + row-gap: 0.375rem !important; } - .xl\:place-content-center { - place-content: center !important; + .xl\:gap-y-2\.5 { + row-gap: 0.625rem !important; } - .xl\:place-content-start { - place-content: start !important; + .xl\:gap-y-3\.5 { + row-gap: 0.875rem !important; } - .xl\:place-content-end { - place-content: end !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\:place-content-between { - place-content: space-between !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\:place-content-around { - place-content: space-around !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\:place-content-evenly { - place-content: space-evenly !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\:place-content-stretch { - place-content: stretch !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\:place-self-auto { - place-self: auto !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\:place-self-start { - place-self: start !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\:place-self-end { - place-self: end !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\:place-self-center { - place-self: center !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\:place-self-stretch { - place-self: stretch !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\:items-start { - align-items: flex-start !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\:items-end { - align-items: flex-end !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\:items-center { - align-items: center !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\:items-baseline { - align-items: baseline !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\:items-stretch { - align-items: stretch !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\:content-center { - align-content: center !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\:content-start { - align-content: flex-start !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\:content-end { - align-content: flex-end !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\:content-between { - align-content: space-between !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\:content-around { - align-content: space-around !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\:content-evenly { - align-content: space-evenly !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\:self-auto { - align-self: auto !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\:self-start { - align-self: flex-start !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\:self-end { - align-self: flex-end !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\:self-center { - align-self: center !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\:self-stretch { - align-self: stretch !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\:justify-items-start { - justify-items: start !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\:justify-items-end { - justify-items: end !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\:justify-items-center { - justify-items: center !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\:justify-items-stretch { - justify-items: stretch !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\:justify-start { - justify-content: flex-start !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\:justify-end { - justify-content: flex-end !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\:justify-center { - justify-content: center !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\:justify-between { - justify-content: space-between !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\:justify-around { - justify-content: space-around !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\:justify-evenly { - justify-content: space-evenly !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\:justify-self-auto { - justify-self: auto !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\:justify-self-start { - justify-self: start !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\:justify-self-end { - justify-self: end !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\:justify-self-center { - justify-self: center !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\:justify-self-stretch { - justify-self: stretch !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\:flex-1 { - flex: 1 1 0% !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\:flex-auto { - flex: 1 1 auto !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\:flex-initial { - flex: 0 1 auto !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\:flex-none { - flex: none !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\:flex-grow-0 { - flex-grow: 0 !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\:flex-grow { - flex-grow: 1 !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\:flex-shrink-0 { - flex-shrink: 0 !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\:flex-shrink { - flex-shrink: 1 !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\:order-1 { - order: 1 !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\:order-2 { - order: 2 !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\:order-3 { - order: 3 !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\:order-4 { - order: 4 !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\:order-5 { - order: 5 !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\:order-6 { - order: 6 !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\:order-7 { - order: 7 !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\:order-8 { - order: 8 !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\:order-9 { - order: 9 !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\:order-10 { - order: 10 !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\:order-11 { - order: 11 !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\:order-12 { - order: 12 !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\:order-first { - order: -9999 !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\:order-last { - order: 9999 !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\:order-none { - order: 0 !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\:float-right { - float: right !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\:float-left { - float: left !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\:float-none { - float: none !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\:clear-left { - clear: left !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\:clear-right { - clear: right !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\:clear-both { - clear: both !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\:clear-none { - clear: none !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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !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\:font-thin { - font-weight: 100 !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\:font-extralight { - font-weight: 200 !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\:font-light { - font-weight: 300 !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\:font-normal { - font-weight: 400 !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\:font-medium { - font-weight: 500 !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\:font-semibold { - font-weight: 600 !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\:font-bold { - font-weight: 700 !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\:font-extrabold { - font-weight: 800 !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\:font-black { - font-weight: 900 !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\:h-0 { - height: 0px !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\:h-1 { - height: 0.25rem !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\:h-2 { - height: 0.5rem !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\:h-3 { - height: 0.75rem !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\:h-4 { - height: 1rem !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\:h-5 { - height: 1.25rem !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\:h-6 { - height: 1.5rem !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\:h-7 { - height: 1.75rem !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\:h-8 { - height: 2rem !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\:h-9 { - height: 2.25rem !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\:h-10 { - height: 2.5rem !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\:h-11 { - height: 2.75rem !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\:h-12 { - height: 3rem !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\:h-14 { - height: 3.5rem !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\:h-16 { - height: 4rem !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\:h-20 { - height: 5rem !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\:h-24 { - height: 6rem !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\:h-28 { - height: 7rem !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\:h-32 { - height: 8rem !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\:h-36 { - height: 9rem !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\:h-40 { - height: 10rem !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\:h-44 { - height: 11rem !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\:h-48 { - height: 12rem !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\:h-52 { - height: 13rem !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\:h-56 { - height: 14rem !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\:h-60 { - height: 15rem !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\:h-64 { - height: 16rem !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\:h-72 { - height: 18rem !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\:h-80 { - height: 20rem !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\:h-96 { - height: 24rem !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\:h-auto { - height: auto !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\:h-px { - height: 1px !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\:h-0\.5 { - height: 0.125rem !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\:h-1\.5 { - height: 0.375rem !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\:h-2\.5 { - height: 0.625rem !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\:h-3\.5 { - height: 0.875rem !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\:h-1\/2 { - height: 50% !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\:h-1\/3 { - height: 33.333333% !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\:h-2\/3 { - height: 66.666667% !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\:h-1\/4 { - height: 25% !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\:h-2\/4 { - height: 50% !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\:h-3\/4 { - height: 75% !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\:h-1\/5 { - height: 20% !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\:h-2\/5 { - height: 40% !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\:h-3\/5 { - height: 60% !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\:h-4\/5 { - height: 80% !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\:h-1\/6 { - height: 16.666667% !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\:h-2\/6 { - height: 33.333333% !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\:h-3\/6 { - height: 50% !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\:h-4\/6 { - height: 66.666667% !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\:h-5\/6 { - height: 83.333333% !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\:h-full { - height: 100% !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\:h-screen { - height: 100vh !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\:text-xs { - font-size: 0.75rem !important; - line-height: 1rem !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\:text-sm { - font-size: 0.875rem !important; - line-height: 1.25rem !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\:text-base { - font-size: 1rem !important; - line-height: 1.5rem !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\:text-lg { - font-size: 1.125rem !important; - line-height: 1.75rem !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\:text-xl { - font-size: 1.25rem !important; - line-height: 1.75rem !important; + .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; } - .xl\:text-2xl { - font-size: 1.5rem !important; - line-height: 2rem !important; + .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; } - .xl\:text-3xl { - font-size: 1.875rem !important; - line-height: 2.25rem !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\:text-4xl { - font-size: 2.25rem !important; - line-height: 2.5rem !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\:text-5xl { - font-size: 3rem !important; - line-height: 1 !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\:text-6xl { - font-size: 3.75rem !important; - line-height: 1 !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\:text-7xl { - font-size: 4.5rem !important; - line-height: 1 !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\:text-8xl { - font-size: 6rem !important; - line-height: 1 !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\:text-9xl { - font-size: 8rem !important; - line-height: 1 !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\:leading-3 { - line-height: .75rem !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\:leading-4 { - line-height: 1rem !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\:leading-5 { - line-height: 1.25rem !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\:leading-6 { - line-height: 1.5rem !important; + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; } - .xl\:leading-7 { - line-height: 1.75rem !important; + .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; } - .xl\:leading-8 { - line-height: 2rem !important; + .xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; } - .xl\:leading-9 { - line-height: 2.25rem !important; + .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; } - .xl\:leading-10 { - line-height: 2.5rem !important; + .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; } - .xl\:leading-none { - line-height: 1 !important; + .xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; } - .xl\:leading-tight { - line-height: 1.25 !important; + .xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; } - .xl\:leading-snug { - line-height: 1.375 !important; + .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; } - .xl\:leading-normal { - line-height: 1.5 !important; + .xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; } - .xl\:leading-relaxed { - line-height: 1.625 !important; + .xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; } - .xl\:leading-loose { - line-height: 2 !important; + .xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; } - .xl\:list-inside { - list-style-position: inside !important; + .xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; } - .xl\:list-outside { - list-style-position: outside !important; + .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; } - .xl\:list-none { - list-style-type: none !important; + .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; } - .xl\:list-disc { - list-style-type: disc !important; + .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; } - .xl\:list-decimal { - list-style-type: decimal !important; + .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; } - .xl\:m-0 { - margin: 0px !important; + .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; } - .xl\:m-1 { - margin: 0.25rem !important; + .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; } - .xl\:m-2 { - margin: 0.5rem !important; + .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; } - .xl\:m-3 { - margin: 0.75rem !important; + .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; } - .xl\:m-4 { - margin: 1rem !important; + .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; } - .xl\:m-5 { - margin: 1.25rem !important; + .xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; } - .xl\:m-6 { - margin: 1.5rem !important; + .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; } - .xl\:m-7 { - margin: 1.75rem !important; + .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; } - .xl\:m-8 { - margin: 2rem !important; + .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; } - .xl\:m-9 { - margin: 2.25rem !important; + .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; } - .xl\:m-10 { - margin: 2.5rem !important; + .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; } - .xl\:m-11 { - margin: 2.75rem !important; + .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; } - .xl\:m-12 { - margin: 3rem !important; + .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; } - .xl\:m-14 { - margin: 3.5rem !important; + .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; } - .xl\:m-16 { - margin: 4rem !important; + .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; } - .xl\:m-20 { - margin: 5rem !important; + .xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; } - .xl\:m-24 { - margin: 6rem !important; + .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; } - .xl\:m-28 { - margin: 7rem !important; + .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; } - .xl\:m-32 { - margin: 8rem !important; + .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; } - .xl\:m-36 { - margin: 9rem !important; + .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; } - .xl\:m-40 { - margin: 10rem !important; + .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; } - .xl\:m-44 { - margin: 11rem !important; + .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; } - .xl\:m-48 { - margin: 12rem !important; + .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; } - .xl\:m-52 { - margin: 13rem !important; + .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; } - .xl\:m-56 { - margin: 14rem !important; + .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; } - .xl\:m-60 { - margin: 15rem !important; + .xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; } - .xl\:m-64 { - margin: 16rem !important; + .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; } - .xl\:m-72 { - margin: 18rem !important; + .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; } - .xl\:m-80 { - margin: 20rem !important; + .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; } - .xl\:m-96 { - margin: 24rem !important; + .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; } - .xl\:m-auto { - margin: auto !important; + .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; } - .xl\:m-px { - margin: 1px !important; + .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; } - .xl\:m-0\.5 { - margin: 0.125rem !important; + .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; } - .xl\:m-1\.5 { - margin: 0.375rem !important; + .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; } - .xl\:m-2\.5 { - margin: 0.625rem !important; + .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; } - .xl\:m-3\.5 { - margin: 0.875rem !important; + .xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; } - .xl\:-m-0 { - margin: 0px !important; + .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; } - .xl\:-m-1 { - margin: -0.25rem !important; + .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; } - .xl\:-m-2 { - margin: -0.5rem !important; + .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; } - .xl\:-m-3 { - margin: -0.75rem !important; + .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; } - .xl\:-m-4 { - margin: -1rem !important; + .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; } - .xl\:-m-5 { - margin: -1.25rem !important; + .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; } - .xl\:-m-6 { - margin: -1.5rem !important; + .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; } - .xl\:-m-7 { - margin: -1.75rem !important; + .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; } - .xl\:-m-8 { - margin: -2rem !important; + .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; } - .xl\:-m-9 { - margin: -2.25rem !important; + .xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; } - .xl\:-m-10 { - margin: -2.5rem !important; + .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; } - .xl\:-m-11 { - margin: -2.75rem !important; + .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; } - .xl\:-m-12 { - margin: -3rem !important; + .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; } - .xl\:-m-14 { - margin: -3.5rem !important; + .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; } - .xl\:-m-16 { - margin: -4rem !important; + .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; } - .xl\:-m-20 { - margin: -5rem !important; + .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; } - .xl\:-m-24 { - margin: -6rem !important; + .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; } - .xl\:-m-28 { - margin: -7rem !important; + .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; } - .xl\:-m-32 { - margin: -8rem !important; + .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; } - .xl\:-m-36 { - margin: -9rem !important; + .xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; } - .xl\:-m-40 { - margin: -10rem !important; + .xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; } - .xl\:-m-44 { - margin: -11rem !important; + .xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; } - .xl\:-m-48 { - margin: -12rem !important; + .xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; } - .xl\:-m-52 { - margin: -13rem !important; + .xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; } - .xl\:-m-56 { - margin: -14rem !important; + .xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; } - .xl\:-m-60 { - margin: -15rem !important; + .xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; } - .xl\:-m-64 { - margin: -16rem !important; + .xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; } - .xl\:-m-72 { - margin: -18rem !important; + .xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; } - .xl\:-m-80 { - margin: -20rem !important; + .xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; } - .xl\:-m-96 { - margin: -24rem !important; + .xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; } - .xl\:-m-px { - margin: -1px !important; + .xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; } - .xl\:-m-0\.5 { - margin: -0.125rem !important; + .xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; } - .xl\:-m-1\.5 { - margin: -0.375rem !important; + .xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; } - .xl\:-m-2\.5 { - margin: -0.625rem !important; + .xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; } - .xl\:-m-3\.5 { - margin: -0.875rem !important; + .xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; } - .xl\:my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; + .xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; } - .xl\:mx-0 { - margin-left: 0px !important; - margin-right: 0px !important; + .xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; } - .xl\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; + .xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; } - .xl\:mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; + .xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; } - .xl\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; + .xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; } - .xl\:mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; + .xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; } - .xl\:my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; + .xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; } - .xl\:mx-3 { - margin-left: 0.75rem !important; - margin-right: 0.75rem !important; + .xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; } - .xl\:my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; + .xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; } - .xl\:mx-4 { - margin-left: 1rem !important; - margin-right: 1rem !important; + .xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; } - .xl\:my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !important; + .xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; } - .xl\:mx-5 { - margin-left: 1.25rem !important; - margin-right: 1.25rem !important; + .xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; } - .xl\:my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; + .xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; } - .xl\:mx-6 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; + .xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; } - .xl\:my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !important; + .xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; } - .xl\:mx-7 { - margin-left: 1.75rem !important; - margin-right: 1.75rem !important; + .xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; } - .xl\:my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; + .xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; } - .xl\:mx-8 { - margin-left: 2rem !important; - margin-right: 2rem !important; + .xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; } - .xl\:my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !important; + .xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; } - .xl\:mx-9 { - margin-left: 2.25rem !important; - margin-right: 2.25rem !important; + .xl\:place-self-auto { + place-self: auto !important; } - .xl\:my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; + .xl\:place-self-start { + place-self: start !important; } - .xl\:mx-10 { - margin-left: 2.5rem !important; - margin-right: 2.5rem !important; + .xl\:place-self-end { + place-self: end !important; } - .xl\:my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !important; + .xl\:place-self-center { + place-self: center !important; } - .xl\:mx-11 { - margin-left: 2.75rem !important; - margin-right: 2.75rem !important; + .xl\:place-self-stretch { + place-self: stretch !important; } - .xl\:my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; + .xl\:self-auto { + align-self: auto !important; } - .xl\:mx-12 { - margin-left: 3rem !important; - margin-right: 3rem !important; + .xl\:self-start { + align-self: flex-start !important; } - .xl\:my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !important; + .xl\:self-end { + align-self: flex-end !important; } - .xl\:mx-14 { - margin-left: 3.5rem !important; - margin-right: 3.5rem !important; + .xl\:self-center { + align-self: center !important; } - .xl\:my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; + .xl\:self-stretch { + align-self: stretch !important; } - .xl\:mx-16 { - margin-left: 4rem !important; - margin-right: 4rem !important; + .xl\:justify-self-auto { + justify-self: auto !important; } - .xl\:my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; + .xl\:justify-self-start { + justify-self: start !important; } - .xl\:mx-20 { - margin-left: 5rem !important; - margin-right: 5rem !important; + .xl\:justify-self-end { + justify-self: end !important; } - .xl\:my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !important; + .xl\:justify-self-center { + justify-self: center !important; } - .xl\:mx-24 { - margin-left: 6rem !important; - margin-right: 6rem !important; + .xl\:justify-self-stretch { + justify-self: stretch !important; } - .xl\:my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !important; + .xl\:overflow-auto { + overflow: auto !important; } - .xl\:mx-28 { - margin-left: 7rem !important; - margin-right: 7rem !important; + .xl\:overflow-hidden { + overflow: hidden !important; } - .xl\:my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !important; + .xl\:overflow-visible { + overflow: visible !important; } - .xl\:mx-32 { - margin-left: 8rem !important; - margin-right: 8rem !important; + .xl\:overflow-scroll { + overflow: scroll !important; } - .xl\:my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !important; + .xl\:overflow-x-auto { + overflow-x: auto !important; } - .xl\:mx-36 { - margin-left: 9rem !important; - margin-right: 9rem !important; + .xl\:overflow-y-auto { + overflow-y: auto !important; } - .xl\:my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !important; + .xl\:overflow-x-hidden { + overflow-x: hidden !important; } - .xl\:mx-40 { - margin-left: 10rem !important; - margin-right: 10rem !important; + .xl\:overflow-y-hidden { + overflow-y: hidden !important; } - .xl\:my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !important; + .xl\:overflow-x-visible { + overflow-x: visible !important; } - .xl\:mx-44 { - margin-left: 11rem !important; - margin-right: 11rem !important; + .xl\:overflow-y-visible { + overflow-y: visible !important; } - .xl\:my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !important; + .xl\:overflow-x-scroll { + overflow-x: scroll !important; } - .xl\:mx-48 { - margin-left: 12rem !important; - margin-right: 12rem !important; + .xl\:overflow-y-scroll { + overflow-y: scroll !important; } - .xl\:my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; + .xl\:overscroll-auto { + overscroll-behavior: auto !important; } - .xl\:mx-52 { - margin-left: 13rem !important; - margin-right: 13rem !important; + .xl\:overscroll-contain { + overscroll-behavior: contain !important; } - .xl\:my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !important; + .xl\:overscroll-none { + overscroll-behavior: none !important; } - .xl\:mx-56 { - margin-left: 14rem !important; - margin-right: 14rem !important; + .xl\:overscroll-y-auto { + overscroll-behavior-y: auto !important; } - .xl\:my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !important; + .xl\:overscroll-y-contain { + overscroll-behavior-y: contain !important; } - .xl\:mx-60 { - margin-left: 15rem !important; - margin-right: 15rem !important; + .xl\:overscroll-y-none { + overscroll-behavior-y: none !important; } - .xl\:my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !important; + .xl\:overscroll-x-auto { + overscroll-behavior-x: auto !important; } - .xl\:mx-64 { - margin-left: 16rem !important; - margin-right: 16rem !important; + .xl\:overscroll-x-contain { + overscroll-behavior-x: contain !important; } - .xl\:my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !important; + .xl\:overscroll-x-none { + overscroll-behavior-x: none !important; } - .xl\:mx-72 { - margin-left: 18rem !important; - margin-right: 18rem !important; + .xl\:truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; } - .xl\:my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !important; + .xl\:overflow-ellipsis { + text-overflow: ellipsis !important; } - .xl\:mx-80 { - margin-left: 20rem !important; - margin-right: 20rem !important; + .xl\:overflow-clip { + text-overflow: clip !important; } - .xl\:my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; + .xl\:whitespace-normal { + white-space: normal !important; } - .xl\:mx-96 { - margin-left: 24rem !important; - margin-right: 24rem !important; + .xl\:whitespace-nowrap { + white-space: nowrap !important; } - .xl\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; + .xl\:whitespace-pre { + white-space: pre !important; } - .xl\:mx-auto { - margin-left: auto !important; - margin-right: auto !important; + .xl\:whitespace-pre-line { + white-space: pre-line !important; } - .xl\:my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; + .xl\:whitespace-pre-wrap { + white-space: pre-wrap !important; } - .xl\:mx-px { - margin-left: 1px !important; - margin-right: 1px !important; + .xl\:break-normal { + overflow-wrap: normal !important; + word-break: normal !important; } - .xl\:my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; + .xl\:break-words { + overflow-wrap: break-word !important; } - .xl\:mx-0\.5 { - margin-left: 0.125rem !important; - margin-right: 0.125rem !important; + .xl\:break-all { + word-break: break-all !important; } - .xl\:my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; + .xl\:rounded-none { + border-radius: 0px !important; } - .xl\:mx-1\.5 { - margin-left: 0.375rem !important; - margin-right: 0.375rem !important; + .xl\:rounded-sm { + border-radius: 0.125rem !important; } - .xl\:my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; + .xl\:rounded { + border-radius: 0.25rem !important; } - .xl\:mx-2\.5 { - margin-left: 0.625rem !important; - margin-right: 0.625rem !important; + .xl\:rounded-md { + border-radius: 0.375rem !important; } - .xl\:my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; + .xl\:rounded-lg { + border-radius: 0.5rem !important; } - .xl\:mx-3\.5 { - margin-left: 0.875rem !important; - margin-right: 0.875rem !important; + .xl\:rounded-xl { + border-radius: 0.75rem !important; } - .xl\:-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; + .xl\:rounded-2xl { + border-radius: 1rem !important; } - .xl\:-mx-0 { - margin-left: 0px !important; - margin-right: 0px !important; + .xl\:rounded-3xl { + border-radius: 1.5rem !important; } - .xl\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; + .xl\:rounded-full { + border-radius: 9999px !important; } - .xl\:-mx-1 { - margin-left: -0.25rem !important; - margin-right: -0.25rem !important; + .xl\:rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; } - .xl\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; + .xl\:rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; } - .xl\:-mx-2 { - margin-left: -0.5rem !important; - margin-right: -0.5rem !important; + .xl\:rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; } - .xl\:-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; + .xl\:rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; } - .xl\:-mx-3 { - margin-left: -0.75rem !important; - margin-right: -0.75rem !important; + .xl\:rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; } - .xl\:-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; + .xl\:rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; } - .xl\:-mx-4 { - margin-left: -1rem !important; - margin-right: -1rem !important; + .xl\:rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; } - .xl\:-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; + .xl\:rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; } - .xl\:-mx-5 { - margin-left: -1.25rem !important; - margin-right: -1.25rem !important; + .xl\:rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; } - .xl\:-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; + .xl\:rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; } - .xl\:-mx-6 { - margin-left: -1.5rem !important; - margin-right: -1.5rem !important; + .xl\:rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; } - .xl\:-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; + .xl\:rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; } - .xl\:-mx-7 { - margin-left: -1.75rem !important; - margin-right: -1.75rem !important; + .xl\:rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; } - .xl\:-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; + .xl\:rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; } - .xl\:-mx-8 { - margin-left: -2rem !important; - margin-right: -2rem !important; + .xl\:rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; } - .xl\:-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; + .xl\:rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; } - .xl\:-mx-9 { - margin-left: -2.25rem !important; - margin-right: -2.25rem !important; + .xl\:rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; } - .xl\:-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; + .xl\:rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; } - .xl\:-mx-10 { - margin-left: -2.5rem !important; - margin-right: -2.5rem !important; + .xl\:rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; } - .xl\:-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; + .xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } - .xl\:-mx-11 { - margin-left: -2.75rem !important; - margin-right: -2.75rem !important; + .xl\:rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } - .xl\:-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; + .xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } - .xl\:-mx-12 { - margin-left: -3rem !important; - margin-right: -3rem !important; + .xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } - .xl\:-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; + .xl\:rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } - .xl\:-mx-14 { - margin-left: -3.5rem !important; - margin-right: -3.5rem !important; + .xl\:rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } - .xl\:-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; + .xl\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } - .xl\:-mx-16 { - margin-left: -4rem !important; - margin-right: -4rem !important; + .xl\:rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } - .xl\:-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; + .xl\:rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; } - .xl\:-mx-20 { - margin-left: -5rem !important; - margin-right: -5rem !important; + .xl\:rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } - .xl\:-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; + .xl\:rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } - .xl\:-mx-24 { - margin-left: -6rem !important; - margin-right: -6rem !important; + .xl\:rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } - .xl\:-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; + .xl\:rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } - .xl\:-mx-28 { - margin-left: -7rem !important; - margin-right: -7rem !important; + .xl\:rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } - .xl\:-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; + .xl\:rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } - .xl\:-mx-32 { - margin-left: -8rem !important; - margin-right: -8rem !important; + .xl\:rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } - .xl\:-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; + .xl\:rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } - .xl\:-mx-36 { - margin-left: -9rem !important; - margin-right: -9rem !important; + .xl\:rounded-tl-none { + border-top-left-radius: 0px !important; } - .xl\:-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; + .xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem !important; } - .xl\:-mx-40 { - margin-left: -10rem !important; - margin-right: -10rem !important; + .xl\:rounded-tl { + border-top-left-radius: 0.25rem !important; } - .xl\:-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; + .xl\:rounded-tl-md { + border-top-left-radius: 0.375rem !important; } - .xl\:-mx-44 { - margin-left: -11rem !important; - margin-right: -11rem !important; + .xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem !important; } - .xl\:-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; + .xl\:rounded-tl-xl { + border-top-left-radius: 0.75rem !important; } - .xl\:-mx-48 { - margin-left: -12rem !important; - margin-right: -12rem !important; + .xl\:rounded-tl-2xl { + border-top-left-radius: 1rem !important; } - .xl\:-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; + .xl\:rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; } - .xl\:-mx-52 { - margin-left: -13rem !important; - margin-right: -13rem !important; + .xl\:rounded-tl-full { + border-top-left-radius: 9999px !important; } - .xl\:-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; + .xl\:rounded-tr-none { + border-top-right-radius: 0px !important; } - .xl\:-mx-56 { - margin-left: -14rem !important; - margin-right: -14rem !important; + .xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem !important; } - .xl\:-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; + .xl\:rounded-tr { + border-top-right-radius: 0.25rem !important; } - .xl\:-mx-60 { - margin-left: -15rem !important; - margin-right: -15rem !important; + .xl\:rounded-tr-md { + border-top-right-radius: 0.375rem !important; } - .xl\:-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; + .xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem !important; } - .xl\:-mx-64 { - margin-left: -16rem !important; - margin-right: -16rem !important; + .xl\:rounded-tr-xl { + border-top-right-radius: 0.75rem !important; } - .xl\:-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; + .xl\:rounded-tr-2xl { + border-top-right-radius: 1rem !important; } - .xl\:-mx-72 { - margin-left: -18rem !important; - margin-right: -18rem !important; + .xl\:rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; } - .xl\:-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; + .xl\:rounded-tr-full { + border-top-right-radius: 9999px !important; } - .xl\:-mx-80 { - margin-left: -20rem !important; - margin-right: -20rem !important; + .xl\:rounded-br-none { + border-bottom-right-radius: 0px !important; } - .xl\:-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; + .xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; } - .xl\:-mx-96 { - margin-left: -24rem !important; - margin-right: -24rem !important; + .xl\:rounded-br { + border-bottom-right-radius: 0.25rem !important; } - .xl\:-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; + .xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem !important; } - .xl\:-mx-px { - margin-left: -1px !important; - margin-right: -1px !important; + .xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; } - .xl\:-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; + .xl\:rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; } - .xl\:-mx-0\.5 { - margin-left: -0.125rem !important; - margin-right: -0.125rem !important; + .xl\:rounded-br-2xl { + border-bottom-right-radius: 1rem !important; } - .xl\:-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; + .xl\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; } - .xl\:-mx-1\.5 { - margin-left: -0.375rem !important; - margin-right: -0.375rem !important; + .xl\:rounded-br-full { + border-bottom-right-radius: 9999px !important; } - .xl\:-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; + .xl\:rounded-bl-none { + border-bottom-left-radius: 0px !important; } - .xl\:-mx-2\.5 { - margin-left: -0.625rem !important; - margin-right: -0.625rem !important; + .xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; } - .xl\:-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; + .xl\:rounded-bl { + border-bottom-left-radius: 0.25rem !important; } - .xl\:-mx-3\.5 { - margin-left: -0.875rem !important; - margin-right: -0.875rem !important; + .xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; } - .xl\:mt-0 { - margin-top: 0px !important; + .xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; } - .xl\:mr-0 { - margin-right: 0px !important; + .xl\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; } - .xl\:mb-0 { - margin-bottom: 0px !important; + .xl\:rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; } - .xl\:ml-0 { - margin-left: 0px !important; + .xl\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; } - .xl\:mt-1 { - margin-top: 0.25rem !important; + .xl\:rounded-bl-full { + border-bottom-left-radius: 9999px !important; } - .xl\:mr-1 { - margin-right: 0.25rem !important; + .xl\:border-0 { + border-width: 0px !important; } - .xl\:mb-1 { - margin-bottom: 0.25rem !important; + .xl\:border-2 { + border-width: 2px !important; } - .xl\:ml-1 { - margin-left: 0.25rem !important; + .xl\:border-4 { + border-width: 4px !important; } - .xl\:mt-2 { - margin-top: 0.5rem !important; + .xl\:border-8 { + border-width: 8px !important; } - .xl\:mr-2 { - margin-right: 0.5rem !important; + .xl\:border { + border-width: 1px !important; } - .xl\:mb-2 { - margin-bottom: 0.5rem !important; + .xl\:border-t-0 { + border-top-width: 0px !important; } - .xl\:ml-2 { - margin-left: 0.5rem !important; + .xl\:border-t-2 { + border-top-width: 2px !important; } - .xl\:mt-3 { - margin-top: 0.75rem !important; + .xl\:border-t-4 { + border-top-width: 4px !important; } - .xl\:mr-3 { - margin-right: 0.75rem !important; + .xl\:border-t-8 { + border-top-width: 8px !important; } - .xl\:mb-3 { - margin-bottom: 0.75rem !important; + .xl\:border-t { + border-top-width: 1px !important; } - .xl\:ml-3 { - margin-left: 0.75rem !important; + .xl\:border-r-0 { + border-right-width: 0px !important; } - .xl\:mt-4 { - margin-top: 1rem !important; + .xl\:border-r-2 { + border-right-width: 2px !important; } - .xl\:mr-4 { - margin-right: 1rem !important; + .xl\:border-r-4 { + border-right-width: 4px !important; } - .xl\:mb-4 { - margin-bottom: 1rem !important; + .xl\:border-r-8 { + border-right-width: 8px !important; } - .xl\:ml-4 { - margin-left: 1rem !important; + .xl\:border-r { + border-right-width: 1px !important; } - .xl\:mt-5 { - margin-top: 1.25rem !important; + .xl\:border-b-0 { + border-bottom-width: 0px !important; } - .xl\:mr-5 { - margin-right: 1.25rem !important; + .xl\:border-b-2 { + border-bottom-width: 2px !important; } - .xl\:mb-5 { - margin-bottom: 1.25rem !important; + .xl\:border-b-4 { + border-bottom-width: 4px !important; } - .xl\:ml-5 { - margin-left: 1.25rem !important; + .xl\:border-b-8 { + border-bottom-width: 8px !important; } - .xl\:mt-6 { - margin-top: 1.5rem !important; + .xl\:border-b { + border-bottom-width: 1px !important; } - .xl\:mr-6 { - margin-right: 1.5rem !important; + .xl\:border-l-0 { + border-left-width: 0px !important; } - .xl\:mb-6 { - margin-bottom: 1.5rem !important; + .xl\:border-l-2 { + border-left-width: 2px !important; } - .xl\:ml-6 { - margin-left: 1.5rem !important; + .xl\:border-l-4 { + border-left-width: 4px !important; } - .xl\:mt-7 { - margin-top: 1.75rem !important; + .xl\:border-l-8 { + border-left-width: 8px !important; } - .xl\:mr-7 { - margin-right: 1.75rem !important; + .xl\:border-l { + border-left-width: 1px !important; } - .xl\:mb-7 { - margin-bottom: 1.75rem !important; + .xl\:border-solid { + border-style: solid !important; } - .xl\:ml-7 { - margin-left: 1.75rem !important; + .xl\:border-dashed { + border-style: dashed !important; } - .xl\:mt-8 { - margin-top: 2rem !important; + .xl\:border-dotted { + border-style: dotted !important; } - .xl\:mr-8 { - margin-right: 2rem !important; + .xl\:border-double { + border-style: double !important; } - .xl\:mb-8 { - margin-bottom: 2rem !important; + .xl\:border-none { + border-style: none !important; } - .xl\:ml-8 { - margin-left: 2rem !important; + .xl\:border-transparent { + border-color: transparent !important; } - .xl\:mt-9 { - margin-top: 2.25rem !important; + .xl\:border-current { + border-color: currentColor !important; } - .xl\:mr-9 { - margin-right: 2.25rem !important; + .xl\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .xl\:mb-9 { - margin-bottom: 2.25rem !important; + .xl\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .xl\:ml-9 { - margin-left: 2.25rem !important; + .xl\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .xl\:mt-10 { - margin-top: 2.5rem !important; + .xl\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .xl\:mr-10 { - margin-right: 2.5rem !important; + .xl\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .xl\:mb-10 { - margin-bottom: 2.5rem !important; + .xl\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .xl\:ml-10 { - margin-left: 2.5rem !important; + .xl\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .xl\:mt-11 { - margin-top: 2.75rem !important; + .xl\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .xl\:mr-11 { - margin-right: 2.75rem !important; + .xl\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .xl\:mb-11 { - margin-bottom: 2.75rem !important; + .xl\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .xl\:ml-11 { - margin-left: 2.75rem !important; + .xl\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .xl\:mt-12 { - margin-top: 3rem !important; + .xl\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .xl\:mr-12 { - margin-right: 3rem !important; + .xl\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .xl\:mb-12 { - margin-bottom: 3rem !important; + .xl\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .xl\:ml-12 { - margin-left: 3rem !important; + .xl\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .xl\:mt-14 { - margin-top: 3.5rem !important; + .xl\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .xl\:mr-14 { - margin-right: 3.5rem !important; + .xl\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .xl\:mb-14 { - margin-bottom: 3.5rem !important; + .xl\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .xl\:ml-14 { - margin-left: 3.5rem !important; + .xl\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .xl\:mt-16 { - margin-top: 4rem !important; + .xl\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .xl\:mr-16 { - margin-right: 4rem !important; + .xl\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .xl\:mb-16 { - margin-bottom: 4rem !important; + .xl\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .xl\:ml-16 { - margin-left: 4rem !important; + .xl\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .xl\:mt-20 { - margin-top: 5rem !important; + .xl\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .xl\:mr-20 { - margin-right: 5rem !important; + .xl\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .xl\:mb-20 { - margin-bottom: 5rem !important; + .xl\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .xl\:ml-20 { - margin-left: 5rem !important; + .xl\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .xl\:mt-24 { - margin-top: 6rem !important; + .xl\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .xl\:mr-24 { - margin-right: 6rem !important; + .xl\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .xl\:mb-24 { - margin-bottom: 6rem !important; + .xl\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .xl\:ml-24 { - margin-left: 6rem !important; + .xl\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .xl\:mt-28 { - margin-top: 7rem !important; + .xl\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .xl\:mr-28 { - margin-right: 7rem !important; + .xl\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .xl\:mb-28 { - margin-bottom: 7rem !important; + .xl\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .xl\:ml-28 { - margin-left: 7rem !important; + .xl\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .xl\:mt-32 { - margin-top: 8rem !important; + .xl\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .xl\:mr-32 { - margin-right: 8rem !important; + .xl\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .xl\:mb-32 { - margin-bottom: 8rem !important; + .xl\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .xl\:ml-32 { - margin-left: 8rem !important; + .xl\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .xl\:mt-36 { - margin-top: 9rem !important; + .xl\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .xl\:mr-36 { - margin-right: 9rem !important; + .xl\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .xl\:mb-36 { - margin-bottom: 9rem !important; + .xl\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .xl\:ml-36 { - margin-left: 9rem !important; + .xl\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .xl\:mt-40 { - margin-top: 10rem !important; + .xl\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .xl\:mr-40 { - margin-right: 10rem !important; + .xl\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .xl\:mb-40 { - margin-bottom: 10rem !important; + .xl\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .xl\:ml-40 { - margin-left: 10rem !important; + .xl\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .xl\:mt-44 { - margin-top: 11rem !important; + .xl\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .xl\:mr-44 { - margin-right: 11rem !important; + .xl\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .xl\:mb-44 { - margin-bottom: 11rem !important; + .xl\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .xl\:ml-44 { - margin-left: 11rem !important; + .xl\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .xl\:mt-48 { - margin-top: 12rem !important; + .xl\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .xl\:mr-48 { - margin-right: 12rem !important; + .xl\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .xl\:mb-48 { - margin-bottom: 12rem !important; + .xl\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .xl\:ml-48 { - margin-left: 12rem !important; + .xl\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .xl\:mt-52 { - margin-top: 13rem !important; + .xl\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .xl\:mr-52 { - margin-right: 13rem !important; + .xl\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .xl\:mb-52 { - margin-bottom: 13rem !important; + .xl\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .xl\:ml-52 { - margin-left: 13rem !important; + .xl\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .xl\:mt-56 { - margin-top: 14rem !important; + .xl\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .xl\:mr-56 { - margin-right: 14rem !important; + .xl\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .xl\:mb-56 { - margin-bottom: 14rem !important; + .xl\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .xl\:ml-56 { - margin-left: 14rem !important; + .xl\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .xl\:mt-60 { - margin-top: 15rem !important; + .xl\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .xl\:mr-60 { - margin-right: 15rem !important; + .xl\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .xl\:mb-60 { - margin-bottom: 15rem !important; + .xl\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .xl\:ml-60 { - margin-left: 15rem !important; + .xl\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .xl\:mt-64 { - margin-top: 16rem !important; + .xl\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .xl\:mr-64 { - margin-right: 16rem !important; + .xl\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .xl\:mb-64 { - margin-bottom: 16rem !important; + .xl\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .xl\:ml-64 { - margin-left: 16rem !important; + .xl\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .xl\:mt-72 { - margin-top: 18rem !important; + .xl\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .xl\:mr-72 { - margin-right: 18rem !important; + .xl\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .xl\:mb-72 { - margin-bottom: 18rem !important; + .xl\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .xl\:ml-72 { - margin-left: 18rem !important; + .xl\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .xl\:mt-80 { - margin-top: 20rem !important; + .xl\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .xl\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .xl\:mr-80 { - margin-right: 20rem !important; + .xl\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .xl\:mb-80 { - margin-bottom: 20rem !important; + .xl\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .xl\:ml-80 { - margin-left: 20rem !important; + .xl\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .xl\:mt-96 { - margin-top: 24rem !important; + .xl\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .xl\:mr-96 { - margin-right: 24rem !important; + .xl\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .xl\:mb-96 { - margin-bottom: 24rem !important; + .group:hover .xl\:group-hover\:border-transparent { + border-color: transparent !important; } - .xl\:ml-96 { - margin-left: 24rem !important; + .group:hover .xl\:group-hover\:border-current { + border-color: currentColor !important; } - .xl\:mt-auto { - margin-top: auto !important; + .group:hover .xl\:group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .xl\:mr-auto { - margin-right: auto !important; + .group:hover .xl\:group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .xl\:mb-auto { - margin-bottom: auto !important; + .group:hover .xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .xl\:ml-auto { - margin-left: auto !important; + .group:hover .xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .xl\:mt-px { - margin-top: 1px !important; + .group:hover .xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .xl\:mr-px { - margin-right: 1px !important; + .group:hover .xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .xl\:mb-px { - margin-bottom: 1px !important; + .group:hover .xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .xl\:ml-px { - margin-left: 1px !important; + .group:hover .xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .xl\:mt-0\.5 { - margin-top: 0.125rem !important; + .group:hover .xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .xl\:mr-0\.5 { - margin-right: 0.125rem !important; + .group:hover .xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .xl\:mb-0\.5 { - margin-bottom: 0.125rem !important; + .group:hover .xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .xl\:ml-0\.5 { - margin-left: 0.125rem !important; + .group:hover .xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .xl\:mt-1\.5 { - margin-top: 0.375rem !important; + .group:hover .xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .xl\:mr-1\.5 { - margin-right: 0.375rem !important; + .group:hover .xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .xl\:mb-1\.5 { - margin-bottom: 0.375rem !important; + .group:hover .xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .xl\:ml-1\.5 { - margin-left: 0.375rem !important; + .group:hover .xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .xl\:mt-2\.5 { - margin-top: 0.625rem !important; + .group:hover .xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .xl\:mr-2\.5 { - margin-right: 0.625rem !important; + .group:hover .xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .xl\:mb-2\.5 { - margin-bottom: 0.625rem !important; + .group:hover .xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .xl\:ml-2\.5 { - margin-left: 0.625rem !important; + .group:hover .xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .xl\:mt-3\.5 { - margin-top: 0.875rem !important; + .group:hover .xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .xl\:mr-3\.5 { - margin-right: 0.875rem !important; + .group:hover .xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .xl\:mb-3\.5 { - margin-bottom: 0.875rem !important; + .group:hover .xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .xl\:ml-3\.5 { - margin-left: 0.875rem !important; + .group:hover .xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .xl\:-mt-0 { - margin-top: 0px !important; + .group:hover .xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .xl\:-mr-0 { - margin-right: 0px !important; + .group:hover .xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .xl\:-mb-0 { - margin-bottom: 0px !important; + .group:hover .xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .xl\:-ml-0 { - margin-left: 0px !important; + .group:hover .xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .xl\:-mt-1 { - margin-top: -0.25rem !important; + .group:hover .xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .xl\:-mr-1 { - margin-right: -0.25rem !important; + .group:hover .xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .xl\:-mb-1 { - margin-bottom: -0.25rem !important; + .group:hover .xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .xl\:-ml-1 { - margin-left: -0.25rem !important; + .group:hover .xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .xl\:-mt-2 { - margin-top: -0.5rem !important; + .group:hover .xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .xl\:-mr-2 { - margin-right: -0.5rem !important; + .group:hover .xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .xl\:-mb-2 { - margin-bottom: -0.5rem !important; + .group:hover .xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .xl\:-ml-2 { - margin-left: -0.5rem !important; + .group:hover .xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .xl\:-mt-3 { - margin-top: -0.75rem !important; + .group:hover .xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .xl\:-mr-3 { - margin-right: -0.75rem !important; + .group:hover .xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .xl\:-mb-3 { - margin-bottom: -0.75rem !important; + .group:hover .xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .xl\:-ml-3 { - margin-left: -0.75rem !important; + .group:hover .xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .xl\:-mt-4 { - margin-top: -1rem !important; + .group:hover .xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .xl\:-mr-4 { - margin-right: -1rem !important; + .group:hover .xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .xl\:-mb-4 { - margin-bottom: -1rem !important; + .group:hover .xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .xl\:-ml-4 { - margin-left: -1rem !important; + .group:hover .xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .xl\:-mt-5 { - margin-top: -1.25rem !important; + .group:hover .xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .xl\:-mr-5 { - margin-right: -1.25rem !important; + .group:hover .xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .xl\:-mb-5 { - margin-bottom: -1.25rem !important; + .group:hover .xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .xl\:-ml-5 { - margin-left: -1.25rem !important; + .group:hover .xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .xl\:-mt-6 { - margin-top: -1.5rem !important; + .group:hover .xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .xl\:-mr-6 { - margin-right: -1.5rem !important; + .group:hover .xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .xl\:-mb-6 { - margin-bottom: -1.5rem !important; + .group:hover .xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .xl\:-ml-6 { - margin-left: -1.5rem !important; + .group:hover .xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .xl\:-mt-7 { - margin-top: -1.75rem !important; + .group:hover .xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .xl\:-mr-7 { - margin-right: -1.75rem !important; + .group:hover .xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .xl\:-mb-7 { - margin-bottom: -1.75rem !important; + .group:hover .xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .xl\:-ml-7 { - margin-left: -1.75rem !important; + .group:hover .xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .xl\:-mt-8 { - margin-top: -2rem !important; + .group:hover .xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .xl\:-mr-8 { - margin-right: -2rem !important; + .group:hover .xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .xl\:-mb-8 { - margin-bottom: -2rem !important; + .group:hover .xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .xl\:-ml-8 { - margin-left: -2rem !important; + .group:hover .xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .xl\:-mt-9 { - margin-top: -2.25rem !important; + .group:hover .xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .xl\:-mr-9 { - margin-right: -2.25rem !important; + .group:hover .xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .xl\:-mb-9 { - margin-bottom: -2.25rem !important; + .group:hover .xl\:group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .xl\:-ml-9 { - margin-left: -2.25rem !important; + .group:hover .xl\:group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .xl\:-mt-10 { - margin-top: -2.5rem !important; + .group:hover .xl\:group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .xl\:-mr-10 { - margin-right: -2.5rem !important; + .group:hover .xl\:group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .xl\:-mb-10 { - margin-bottom: -2.5rem !important; + .group:hover .xl\:group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .xl\:-ml-10 { - margin-left: -2.5rem !important; + .group:hover .xl\:group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .xl\:-mt-11 { - margin-top: -2.75rem !important; + .group:hover .xl\:group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .xl\:-mr-11 { - margin-right: -2.75rem !important; + .group:hover .xl\:group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .xl\:-mb-11 { - margin-bottom: -2.75rem !important; + .group:hover .xl\:group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .xl\:-ml-11 { - margin-left: -2.75rem !important; + .group:hover .xl\:group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .xl\:-mt-12 { - margin-top: -3rem !important; + .group:hover .xl\:group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .xl\:-mr-12 { - margin-right: -3rem !important; + .group:hover .xl\:group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .xl\:-mb-12 { - margin-bottom: -3rem !important; + .group:hover .xl\:group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .xl\:-ml-12 { - margin-left: -3rem !important; + .group:hover .xl\:group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .xl\:-mt-14 { - margin-top: -3.5rem !important; + .group:hover .xl\:group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .xl\:-mr-14 { - margin-right: -3.5rem !important; + .group:hover .xl\:group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .xl\:-mb-14 { - margin-bottom: -3.5rem !important; + .group:hover .xl\:group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .xl\:-ml-14 { - margin-left: -3.5rem !important; + .group:hover .xl\:group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .xl\:-mt-16 { - margin-top: -4rem !important; + .group:hover .xl\:group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .xl\:-mr-16 { - margin-right: -4rem !important; + .group:hover .xl\:group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .xl\:-mb-16 { - margin-bottom: -4rem !important; + .xl\:focus-within\:border-transparent:focus-within { + border-color: transparent !important; } - .xl\:-ml-16 { - margin-left: -4rem !important; + .xl\:focus-within\:border-current:focus-within { + border-color: currentColor !important; } - .xl\:-mt-20 { - margin-top: -5rem !important; + .xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .xl\:-mr-20 { - margin-right: -5rem !important; + .xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .xl\:-mb-20 { - margin-bottom: -5rem !important; + .xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .xl\:-ml-20 { - margin-left: -5rem !important; + .xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .xl\:-mt-24 { - margin-top: -6rem !important; + .xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .xl\:-mr-24 { - margin-right: -6rem !important; + .xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .xl\:-mb-24 { - margin-bottom: -6rem !important; + .xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .xl\:-ml-24 { - margin-left: -6rem !important; + .xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .xl\:-mt-28 { - margin-top: -7rem !important; + .xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .xl\:-mr-28 { - margin-right: -7rem !important; + .xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .xl\:-mb-28 { - margin-bottom: -7rem !important; + .xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .xl\:-ml-28 { - margin-left: -7rem !important; + .xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .xl\:-mt-32 { - margin-top: -8rem !important; + .xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .xl\:-mr-32 { - margin-right: -8rem !important; + .xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .xl\:-mb-32 { - margin-bottom: -8rem !important; + .xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .xl\:-ml-32 { - margin-left: -8rem !important; + .xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .xl\:-mt-36 { - margin-top: -9rem !important; + .xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .xl\:-mr-36 { - margin-right: -9rem !important; + .xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .xl\:-mb-36 { - margin-bottom: -9rem !important; + .xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .xl\:-ml-36 { - margin-left: -9rem !important; + .xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .xl\:-mt-40 { - margin-top: -10rem !important; + .xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .xl\:-mr-40 { - margin-right: -10rem !important; + .xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .xl\:-mb-40 { - margin-bottom: -10rem !important; + .xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .xl\:-ml-40 { - margin-left: -10rem !important; + .xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .xl\:-mt-44 { - margin-top: -11rem !important; + .xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .xl\:-mr-44 { - margin-right: -11rem !important; + .xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .xl\:-mb-44 { - margin-bottom: -11rem !important; + .xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .xl\:-ml-44 { - margin-left: -11rem !important; + .xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .xl\:-mt-48 { - margin-top: -12rem !important; + .xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .xl\:-mr-48 { - margin-right: -12rem !important; + .xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .xl\:-mb-48 { - margin-bottom: -12rem !important; + .xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .xl\:-ml-48 { - margin-left: -12rem !important; + .xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .xl\:-mt-52 { - margin-top: -13rem !important; + .xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .xl\:-mr-52 { - margin-right: -13rem !important; + .xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .xl\:-mb-52 { - margin-bottom: -13rem !important; + .xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .xl\:-ml-52 { - margin-left: -13rem !important; + .xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .xl\:-mt-56 { - margin-top: -14rem !important; + .xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .xl\:-mr-56 { - margin-right: -14rem !important; + .xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .xl\:-mb-56 { - margin-bottom: -14rem !important; + .xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .xl\:-ml-56 { - margin-left: -14rem !important; + .xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .xl\:-mt-60 { - margin-top: -15rem !important; + .xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .xl\:-mr-60 { - margin-right: -15rem !important; + .xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .xl\:-mb-60 { - margin-bottom: -15rem !important; + .xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .xl\:-ml-60 { - margin-left: -15rem !important; + .xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .xl\:-mt-64 { - margin-top: -16rem !important; + .xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .xl\:-mr-64 { - margin-right: -16rem !important; + .xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .xl\:-mb-64 { - margin-bottom: -16rem !important; + .xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .xl\:-ml-64 { - margin-left: -16rem !important; + .xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .xl\:-mt-72 { - margin-top: -18rem !important; + .xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .xl\:-mr-72 { - margin-right: -18rem !important; + .xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .xl\:-mb-72 { - margin-bottom: -18rem !important; + .xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .xl\:-ml-72 { - margin-left: -18rem !important; + .xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .xl\:-mt-80 { - margin-top: -20rem !important; + .xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .xl\:-mr-80 { - margin-right: -20rem !important; + .xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .xl\:-mb-80 { - margin-bottom: -20rem !important; + .xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .xl\:-ml-80 { - margin-left: -20rem !important; + .xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .xl\:-mt-96 { - margin-top: -24rem !important; + .xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .xl\:-mr-96 { - margin-right: -24rem !important; + .xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .xl\:-mb-96 { - margin-bottom: -24rem !important; + .xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .xl\:-ml-96 { - margin-left: -24rem !important; + .xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .xl\:-mt-px { - margin-top: -1px !important; + .xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .xl\:-mr-px { - margin-right: -1px !important; + .xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .xl\:-mb-px { - margin-bottom: -1px !important; + .xl\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .xl\:-ml-px { - margin-left: -1px !important; + .xl\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .xl\:-mt-0\.5 { - margin-top: -0.125rem !important; + .xl\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .xl\:-mr-0\.5 { - margin-right: -0.125rem !important; + .xl\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .xl\:-mb-0\.5 { - margin-bottom: -0.125rem !important; + .xl\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .xl\:-ml-0\.5 { - margin-left: -0.125rem !important; + .xl\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .xl\:-mt-1\.5 { - margin-top: -0.375rem !important; + .xl\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .xl\:-mr-1\.5 { - margin-right: -0.375rem !important; + .xl\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .xl\:-mb-1\.5 { - margin-bottom: -0.375rem !important; + .xl\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .xl\:-ml-1\.5 { - margin-left: -0.375rem !important; + .xl\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .xl\:-mt-2\.5 { - margin-top: -0.625rem !important; + .xl\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .xl\:-mr-2\.5 { - margin-right: -0.625rem !important; + .xl\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .xl\:-mb-2\.5 { - margin-bottom: -0.625rem !important; + .xl\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .xl\:-ml-2\.5 { - margin-left: -0.625rem !important; + .xl\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .xl\:-mt-3\.5 { - margin-top: -0.875rem !important; + .xl\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .xl\:-mr-3\.5 { - margin-right: -0.875rem !important; + .xl\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .xl\:-mb-3\.5 { - margin-bottom: -0.875rem !important; + .xl\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .xl\:-ml-3\.5 { - margin-left: -0.875rem !important; + .xl\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .xl\:max-h-0 { - max-height: 0px !important; + .xl\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .xl\:max-h-1 { - max-height: 0.25rem !important; + .xl\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .xl\:max-h-2 { - max-height: 0.5rem !important; + .xl\:hover\:border-transparent:hover { + border-color: transparent !important; } - .xl\:max-h-3 { - max-height: 0.75rem !important; + .xl\:hover\:border-current:hover { + border-color: currentColor !important; } - .xl\:max-h-4 { - max-height: 1rem !important; + .xl\:hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .xl\:max-h-5 { - max-height: 1.25rem !important; + .xl\:hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .xl\:max-h-6 { - max-height: 1.5rem !important; + .xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .xl\:max-h-7 { - max-height: 1.75rem !important; + .xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .xl\:max-h-8 { - max-height: 2rem !important; + .xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .xl\:max-h-9 { - max-height: 2.25rem !important; + .xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .xl\:max-h-10 { - max-height: 2.5rem !important; + .xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .xl\:max-h-11 { - max-height: 2.75rem !important; + .xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .xl\:max-h-12 { - max-height: 3rem !important; + .xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .xl\:max-h-14 { - max-height: 3.5rem !important; + .xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .xl\:max-h-16 { - max-height: 4rem !important; + .xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .xl\:max-h-20 { - max-height: 5rem !important; + .xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .xl\:max-h-24 { - max-height: 6rem !important; + .xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .xl\:max-h-28 { - max-height: 7rem !important; + .xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .xl\:max-h-32 { - max-height: 8rem !important; + .xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .xl\:max-h-36 { - max-height: 9rem !important; + .xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .xl\:max-h-40 { - max-height: 10rem !important; + .xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .xl\:max-h-44 { - max-height: 11rem !important; + .xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .xl\:max-h-48 { - max-height: 12rem !important; + .xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .xl\:max-h-52 { - max-height: 13rem !important; + .xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .xl\:max-h-56 { - max-height: 14rem !important; + .xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .xl\:max-h-60 { - max-height: 15rem !important; + .xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .xl\:max-h-64 { - max-height: 16rem !important; + .xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .xl\:max-h-72 { - max-height: 18rem !important; + .xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .xl\:max-h-80 { - max-height: 20rem !important; + .xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .xl\:max-h-96 { - max-height: 24rem !important; + .xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .xl\:max-h-px { - max-height: 1px !important; + .xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .xl\:max-h-0\.5 { - max-height: 0.125rem !important; + .xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .xl\:max-h-1\.5 { - max-height: 0.375rem !important; + .xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .xl\:max-h-2\.5 { - max-height: 0.625rem !important; + .xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .xl\:max-h-3\.5 { - max-height: 0.875rem !important; + .xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .xl\:max-h-full { - max-height: 100% !important; + .xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .xl\:max-h-screen { - max-height: 100vh !important; + .xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .xl\:max-w-0 { - max-width: 0rem !important; + .xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .xl\:max-w-none { - max-width: none !important; + .xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .xl\:max-w-xs { - max-width: 20rem !important; + .xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .xl\:max-w-sm { - max-width: 24rem !important; + .xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .xl\:max-w-md { - max-width: 28rem !important; + .xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .xl\:max-w-lg { - max-width: 32rem !important; + .xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .xl\:max-w-xl { - max-width: 36rem !important; + .xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .xl\:max-w-2xl { - max-width: 42rem !important; + .xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .xl\:max-w-3xl { - max-width: 48rem !important; + .xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .xl\:max-w-4xl { - max-width: 56rem !important; + .xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .xl\:max-w-5xl { - max-width: 64rem !important; + .xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .xl\:max-w-6xl { - max-width: 72rem !important; + .xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .xl\:max-w-7xl { - max-width: 80rem !important; + .xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .xl\:max-w-full { - max-width: 100% !important; + .xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .xl\:max-w-min { - max-width: min-content !important; + .xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .xl\:max-w-max { - max-width: max-content !important; + .xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .xl\:max-w-prose { - max-width: 65ch !important; + .xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .xl\:max-w-screen-sm { - max-width: 640px !important; + .xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .xl\:max-w-screen-md { - max-width: 768px !important; + .xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .xl\:max-w-screen-lg { - max-width: 1024px !important; + .xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .xl\:max-w-screen-xl { - max-width: 1280px !important; + .xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .xl\:max-w-screen-2xl { - max-width: 1536px !important; + .xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .xl\:min-h-0 { - min-height: 0px !important; + .xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .xl\:min-h-full { - min-height: 100% !important; + .xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .xl\:min-h-screen { - min-height: 100vh !important; + .xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .xl\:min-w-0 { - min-width: 0px !important; + .xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .xl\:min-w-full { - min-width: 100% !important; + .xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .xl\:min-w-min { - min-width: min-content !important; + .xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .xl\:min-w-max { - min-width: max-content !important; + .xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .xl\:object-contain { - object-fit: contain !important; + .xl\:hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .xl\:object-cover { - object-fit: cover !important; + .xl\:hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .xl\:object-fill { - object-fit: fill !important; + .xl\:hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .xl\:object-none { - object-fit: none !important; + .xl\:hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .xl\:object-scale-down { - object-fit: scale-down !important; + .xl\:hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .xl\:object-bottom { - object-position: bottom !important; + .xl\:hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .xl\:object-center { - object-position: center !important; + .xl\:hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .xl\:object-left { - object-position: left !important; + .xl\:hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .xl\:object-left-bottom { - object-position: left bottom !important; + .xl\:hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .xl\:object-left-top { - object-position: left top !important; + .xl\:hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .xl\:object-right { - object-position: right !important; + .xl\:hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .xl\:object-right-bottom { - object-position: right bottom !important; + .xl\:hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .xl\:object-right-top { - object-position: right top !important; + .xl\:hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .xl\:object-top { - object-position: top !important; + .xl\:hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .xl\:opacity-0 { - opacity: 0 !important; + .xl\:hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .xl\:opacity-5 { - opacity: 0.05 !important; + .xl\:hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .xl\:opacity-10 { - opacity: 0.1 !important; + .xl\:hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .xl\:opacity-20 { - opacity: 0.2 !important; + .xl\:hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .xl\:opacity-25 { - opacity: 0.25 !important; + .xl\:hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .xl\:opacity-30 { - opacity: 0.3 !important; + .xl\:hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .xl\:opacity-40 { - opacity: 0.4 !important; + .xl\:focus\:border-transparent:focus { + border-color: transparent !important; } - .xl\:opacity-50 { - opacity: 0.5 !important; + .xl\:focus\:border-current:focus { + border-color: currentColor !important; } - .xl\:opacity-60 { - opacity: 0.6 !important; + .xl\:focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .xl\:opacity-70 { - opacity: 0.7 !important; + .xl\:focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .xl\:opacity-75 { - opacity: 0.75 !important; + .xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .xl\:opacity-80 { - opacity: 0.8 !important; + .xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .xl\:opacity-90 { - opacity: 0.9 !important; + .xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .xl\:opacity-95 { - opacity: 0.95 !important; + .xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .xl\:opacity-100 { - opacity: 1 !important; + .xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-0 { - opacity: 0 !important; + .xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-5 { - opacity: 0.05 !important; + .xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-10 { - opacity: 0.1 !important; + .xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-20 { - opacity: 0.2 !important; + .xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-25 { - opacity: 0.25 !important; + .xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-30 { - opacity: 0.3 !important; + .xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-40 { - opacity: 0.4 !important; + .xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-50 { - opacity: 0.5 !important; + .xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-60 { - opacity: 0.6 !important; + .xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-70 { - opacity: 0.7 !important; + .xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-75 { - opacity: 0.75 !important; + .xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-80 { - opacity: 0.8 !important; + .xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-90 { - opacity: 0.9 !important; + .xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-95 { - opacity: 0.95 !important; + .xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .group:hover .xl\:group-hover\:opacity-100 { - opacity: 1 !important; + .xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-0:focus-within { - opacity: 0 !important; + .xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-5:focus-within { - opacity: 0.05 !important; + .xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-10:focus-within { - opacity: 0.1 !important; + .xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-20:focus-within { - opacity: 0.2 !important; + .xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-25:focus-within { - opacity: 0.25 !important; + .xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-30:focus-within { - opacity: 0.3 !important; + .xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-40:focus-within { - opacity: 0.4 !important; + .xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-50:focus-within { - opacity: 0.5 !important; + .xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-60:focus-within { - opacity: 0.6 !important; + .xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-70:focus-within { - opacity: 0.7 !important; + .xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-75:focus-within { - opacity: 0.75 !important; + .xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-80:focus-within { - opacity: 0.8 !important; + .xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-90:focus-within { - opacity: 0.9 !important; + .xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-95:focus-within { - opacity: 0.95 !important; + .xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:opacity-100:focus-within { - opacity: 1 !important; + .xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-0:hover { - opacity: 0 !important; + .xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-5:hover { - opacity: 0.05 !important; + .xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-10:hover { - opacity: 0.1 !important; + .xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-20:hover { - opacity: 0.2 !important; + .xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-25:hover { - opacity: 0.25 !important; + .xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-30:hover { - opacity: 0.3 !important; + .xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-40:hover { - opacity: 0.4 !important; + .xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-50:hover { - opacity: 0.5 !important; + .xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-60:hover { - opacity: 0.6 !important; + .xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-70:hover { - opacity: 0.7 !important; + .xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-75:hover { - opacity: 0.75 !important; + .xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-80:hover { - opacity: 0.8 !important; + .xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-90:hover { - opacity: 0.9 !important; + .xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-95:hover { - opacity: 0.95 !important; + .xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .xl\:hover\:opacity-100:hover { - opacity: 1 !important; + .xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-0:focus { - opacity: 0 !important; + .xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-5:focus { - opacity: 0.05 !important; + .xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-10:focus { - opacity: 0.1 !important; + .xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-20:focus { - opacity: 0.2 !important; + .xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-25:focus { - opacity: 0.25 !important; + .xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-30:focus { - opacity: 0.3 !important; + .xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-40:focus { - opacity: 0.4 !important; + .xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-50:focus { - opacity: 0.5 !important; + .xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-60:focus { - opacity: 0.6 !important; + .xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-70:focus { - opacity: 0.7 !important; + .xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-75:focus { - opacity: 0.75 !important; + .xl\:focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-80:focus { - opacity: 0.8 !important; + .xl\:focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-90:focus { - opacity: 0.9 !important; + .xl\:focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-95:focus { - opacity: 0.95 !important; + .xl\:focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .xl\:focus\:opacity-100:focus { - opacity: 1 !important; + .xl\:focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .xl\:outline-none { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .xl\:focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .xl\:outline-white { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .xl\:focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .xl\:outline-black { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .xl\:focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .xl\:focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:outline-white:focus-within { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .xl\:focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .xl\:focus-within\:outline-black:focus-within { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .xl\:focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .xl\:focus\:outline-none:focus { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .xl\:focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .xl\:focus\:outline-white:focus { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .xl\:focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .xl\:focus\:outline-black:focus { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .xl\:focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .xl\:overflow-auto { - overflow: auto !important; + .xl\:focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .xl\:overflow-hidden { - overflow: hidden !important; + .xl\:focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .xl\:overflow-visible { - overflow: visible !important; + .xl\:focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .xl\:overflow-scroll { - overflow: scroll !important; + .xl\:focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .xl\:overflow-x-auto { - overflow-x: auto !important; + .xl\:focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .xl\:overflow-y-auto { - overflow-y: auto !important; + .xl\:focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .xl\:overflow-x-hidden { - overflow-x: hidden !important; + .xl\:border-opacity-0 { + --tw-border-opacity: 0 !important; } - .xl\:overflow-y-hidden { - overflow-y: hidden !important; + .xl\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; } - .xl\:overflow-x-visible { - overflow-x: visible !important; + .xl\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; } - .xl\:overflow-y-visible { - overflow-y: visible !important; + .xl\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; } - .xl\:overflow-x-scroll { - overflow-x: scroll !important; + .xl\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; } - .xl\:overflow-y-scroll { - overflow-y: scroll !important; + .xl\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; } - .xl\:overscroll-auto { - overscroll-behavior: auto !important; + .xl\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; } - .xl\:overscroll-contain { - overscroll-behavior: contain !important; + .xl\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; } - .xl\:overscroll-none { - overscroll-behavior: none !important; + .xl\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; } - .xl\:overscroll-y-auto { - overscroll-behavior-y: auto !important; + .xl\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; } - .xl\:overscroll-y-contain { - overscroll-behavior-y: contain !important; + .xl\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; } - .xl\:overscroll-y-none { - overscroll-behavior-y: none !important; + .xl\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; } - .xl\:overscroll-x-auto { - overscroll-behavior-x: auto !important; + .xl\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; } - .xl\:overscroll-x-contain { - overscroll-behavior-x: contain !important; + .xl\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; } - .xl\:overscroll-x-none { - overscroll-behavior-x: none !important; + .xl\:border-opacity-100 { + --tw-border-opacity: 1 !important; } - .xl\:p-0 { - padding: 0px !important; + .group:hover .xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; } - .xl\:p-1 { - padding: 0.25rem !important; + .group:hover .xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; } - .xl\:p-2 { - padding: 0.5rem !important; + .group:hover .xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; } - .xl\:p-3 { - padding: 0.75rem !important; + .group:hover .xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; } - .xl\:p-4 { - padding: 1rem !important; + .group:hover .xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; } - .xl\:p-5 { - padding: 1.25rem !important; + .group:hover .xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; } - .xl\:p-6 { - padding: 1.5rem !important; + .group:hover .xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; } - .xl\:p-7 { - padding: 1.75rem !important; + .group:hover .xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; } - .xl\:p-8 { - padding: 2rem !important; + .group:hover .xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; } - .xl\:p-9 { - padding: 2.25rem !important; + .group:hover .xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; } - .xl\:p-10 { - padding: 2.5rem !important; + .group:hover .xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; } - .xl\:p-11 { - padding: 2.75rem !important; + .group:hover .xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; } - .xl\:p-12 { - padding: 3rem !important; + .group:hover .xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; } - .xl\:p-14 { - padding: 3.5rem !important; + .group:hover .xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; } - .xl\:p-16 { - padding: 4rem !important; + .group:hover .xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; } - .xl\:p-20 { - padding: 5rem !important; + .xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; } - .xl\:p-24 { - padding: 6rem !important; + .xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; } - .xl\:p-28 { - padding: 7rem !important; + .xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; } - .xl\:p-32 { - padding: 8rem !important; + .xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; } - .xl\:p-36 { - padding: 9rem !important; + .xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; } - .xl\:p-40 { - padding: 10rem !important; + .xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; } - .xl\:p-44 { - padding: 11rem !important; + .xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; } - .xl\:p-48 { - padding: 12rem !important; + .xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; } - .xl\:p-52 { - padding: 13rem !important; + .xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; } - .xl\:p-56 { - padding: 14rem !important; + .xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; } - .xl\:p-60 { - padding: 15rem !important; + .xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; } - .xl\:p-64 { - padding: 16rem !important; + .xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; } - .xl\:p-72 { - padding: 18rem !important; + .xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; } - .xl\:p-80 { - padding: 20rem !important; + .xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; } - .xl\:p-96 { - padding: 24rem !important; + .xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; } - .xl\:p-px { - padding: 1px !important; + .xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; } - .xl\:p-0\.5 { - padding: 0.125rem !important; + .xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; } - .xl\:p-1\.5 { - padding: 0.375rem !important; + .xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; } - .xl\:p-2\.5 { - padding: 0.625rem !important; + .xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; } - .xl\:p-3\.5 { - padding: 0.875rem !important; + .xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; } - .xl\:py-0 { - padding-top: 0px !important; - padding-bottom: 0px !important; + .xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; } - .xl\:px-0 { - padding-left: 0px !important; - padding-right: 0px !important; + .xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; } - .xl\:py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; + .xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; } - .xl\:px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; + .xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; } - .xl\:py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; + .xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; } - .xl\:px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; + .xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; } - .xl\:py-3 { - padding-top: 0.75rem !important; - padding-bottom: 0.75rem !important; + .xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; } - .xl\:px-3 { - padding-left: 0.75rem !important; - padding-right: 0.75rem !important; + .xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; } - .xl\:py-4 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; + .xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; } - .xl\:px-4 { - padding-left: 1rem !important; - padding-right: 1rem !important; + .xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; } - .xl\:py-5 { - padding-top: 1.25rem !important; - padding-bottom: 1.25rem !important; + .xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; } - .xl\:px-5 { - padding-left: 1.25rem !important; - padding-right: 1.25rem !important; + .xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; } - .xl\:py-6 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; + .xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; } - .xl\:px-6 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; + .xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; } - .xl\:py-7 { - padding-top: 1.75rem !important; - padding-bottom: 1.75rem !important; + .xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; } - .xl\:px-7 { - padding-left: 1.75rem !important; - padding-right: 1.75rem !important; + .xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; } - .xl\:py-8 { - padding-top: 2rem !important; - padding-bottom: 2rem !important; + .xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; } - .xl\:px-8 { - padding-left: 2rem !important; - padding-right: 2rem !important; + .xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; } - .xl\:py-9 { - padding-top: 2.25rem !important; - padding-bottom: 2.25rem !important; + .xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; } - .xl\:px-9 { - padding-left: 2.25rem !important; - padding-right: 2.25rem !important; + .xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; } - .xl\:py-10 { - padding-top: 2.5rem !important; - padding-bottom: 2.5rem !important; + .xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; } - .xl\:px-10 { - padding-left: 2.5rem !important; - padding-right: 2.5rem !important; + .xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; } - .xl\:py-11 { - padding-top: 2.75rem !important; - padding-bottom: 2.75rem !important; + .xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; } - .xl\:px-11 { - padding-left: 2.75rem !important; - padding-right: 2.75rem !important; + .xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; } - .xl\:py-12 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; + .xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; } - .xl\:px-12 { - padding-left: 3rem !important; - padding-right: 3rem !important; + .xl\:bg-transparent { + background-color: transparent !important; } - .xl\:py-14 { - padding-top: 3.5rem !important; - padding-bottom: 3.5rem !important; + .xl\:bg-current { + background-color: currentColor !important; } - .xl\:px-14 { - padding-left: 3.5rem !important; - padding-right: 3.5rem !important; + .xl\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .xl\:py-16 { - padding-top: 4rem !important; - padding-bottom: 4rem !important; + .xl\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .xl\:px-16 { - padding-left: 4rem !important; - padding-right: 4rem !important; + .xl\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .xl\:py-20 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; + .xl\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .xl\:px-20 { - padding-left: 5rem !important; - padding-right: 5rem !important; + .xl\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .xl\:py-24 { - padding-top: 6rem !important; - padding-bottom: 6rem !important; + .xl\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .xl\:px-24 { - padding-left: 6rem !important; - padding-right: 6rem !important; + .xl\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .xl\:py-28 { - padding-top: 7rem !important; - padding-bottom: 7rem !important; + .xl\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .xl\:px-28 { - padding-left: 7rem !important; - padding-right: 7rem !important; + .xl\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .xl\:py-32 { - padding-top: 8rem !important; - padding-bottom: 8rem !important; + .xl\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .xl\:px-32 { - padding-left: 8rem !important; - padding-right: 8rem !important; + .xl\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .xl\:py-36 { - padding-top: 9rem !important; - padding-bottom: 9rem !important; + .xl\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .xl\:px-36 { - padding-left: 9rem !important; - padding-right: 9rem !important; + .xl\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .xl\:py-40 { - padding-top: 10rem !important; - padding-bottom: 10rem !important; + .xl\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .xl\:px-40 { - padding-left: 10rem !important; - padding-right: 10rem !important; + .xl\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .xl\:py-44 { - padding-top: 11rem !important; - padding-bottom: 11rem !important; + .xl\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .xl\:px-44 { - padding-left: 11rem !important; - padding-right: 11rem !important; + .xl\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .xl\:py-48 { - padding-top: 12rem !important; - padding-bottom: 12rem !important; + .xl\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .xl\:px-48 { - padding-left: 12rem !important; - padding-right: 12rem !important; + .xl\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .xl\:py-52 { - padding-top: 13rem !important; - padding-bottom: 13rem !important; + .xl\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .xl\:px-52 { - padding-left: 13rem !important; - padding-right: 13rem !important; + .xl\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .xl\:py-56 { - padding-top: 14rem !important; - padding-bottom: 14rem !important; + .xl\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .xl\:px-56 { - padding-left: 14rem !important; - padding-right: 14rem !important; + .xl\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .xl\:py-60 { - padding-top: 15rem !important; - padding-bottom: 15rem !important; + .xl\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .xl\:px-60 { - padding-left: 15rem !important; - padding-right: 15rem !important; + .xl\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .xl\:py-64 { - padding-top: 16rem !important; - padding-bottom: 16rem !important; + .xl\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .xl\:px-64 { - padding-left: 16rem !important; - padding-right: 16rem !important; + .xl\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .xl\:py-72 { - padding-top: 18rem !important; - padding-bottom: 18rem !important; + .xl\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .xl\:px-72 { - padding-left: 18rem !important; - padding-right: 18rem !important; + .xl\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .xl\:py-80 { - padding-top: 20rem !important; - padding-bottom: 20rem !important; + .xl\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .xl\:px-80 { - padding-left: 20rem !important; - padding-right: 20rem !important; + .xl\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .xl\:py-96 { - padding-top: 24rem !important; - padding-bottom: 24rem !important; + .xl\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .xl\:px-96 { - padding-left: 24rem !important; - padding-right: 24rem !important; + .xl\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .xl\:py-px { - padding-top: 1px !important; - padding-bottom: 1px !important; + .xl\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .xl\:px-px { - padding-left: 1px !important; - padding-right: 1px !important; + .xl\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .xl\:py-0\.5 { - padding-top: 0.125rem !important; - padding-bottom: 0.125rem !important; + .xl\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .xl\:px-0\.5 { - padding-left: 0.125rem !important; - padding-right: 0.125rem !important; + .xl\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .xl\:py-1\.5 { - padding-top: 0.375rem !important; - padding-bottom: 0.375rem !important; + .xl\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .xl\:px-1\.5 { - padding-left: 0.375rem !important; - padding-right: 0.375rem !important; + .xl\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .xl\:py-2\.5 { - padding-top: 0.625rem !important; - padding-bottom: 0.625rem !important; + .xl\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .xl\:px-2\.5 { - padding-left: 0.625rem !important; - padding-right: 0.625rem !important; + .xl\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .xl\:py-3\.5 { - padding-top: 0.875rem !important; - padding-bottom: 0.875rem !important; + .xl\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .xl\:px-3\.5 { - padding-left: 0.875rem !important; - padding-right: 0.875rem !important; + .xl\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .xl\:pt-0 { - padding-top: 0px !important; + .xl\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .xl\:pr-0 { - padding-right: 0px !important; + .xl\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .xl\:pb-0 { - padding-bottom: 0px !important; + .xl\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .xl\:pl-0 { - padding-left: 0px !important; + .xl\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .xl\:pt-1 { - padding-top: 0.25rem !important; + .xl\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .xl\:pr-1 { - padding-right: 0.25rem !important; + .xl\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .xl\:pb-1 { - padding-bottom: 0.25rem !important; + .xl\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .xl\:pl-1 { - padding-left: 0.25rem !important; + .xl\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .xl\:pt-2 { - padding-top: 0.5rem !important; + .xl\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .xl\:pr-2 { - padding-right: 0.5rem !important; + .xl\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .xl\:pb-2 { - padding-bottom: 0.5rem !important; + .xl\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .xl\:pl-2 { - padding-left: 0.5rem !important; + .xl\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .xl\:pt-3 { - padding-top: 0.75rem !important; + .xl\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .xl\:pr-3 { - padding-right: 0.75rem !important; + .xl\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .xl\:pb-3 { - padding-bottom: 0.75rem !important; + .xl\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .xl\:pl-3 { - padding-left: 0.75rem !important; + .xl\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .xl\:pt-4 { - padding-top: 1rem !important; + .xl\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .xl\:pr-4 { - padding-right: 1rem !important; + .xl\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .xl\:pb-4 { - padding-bottom: 1rem !important; + .xl\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .xl\:pl-4 { - padding-left: 1rem !important; + .xl\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .xl\:pt-5 { - padding-top: 1.25rem !important; + .xl\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .xl\:pr-5 { - padding-right: 1.25rem !important; + .xl\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .xl\:pb-5 { - padding-bottom: 1.25rem !important; + .xl\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .xl\:pl-5 { - padding-left: 1.25rem !important; + .xl\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .xl\:pt-6 { - padding-top: 1.5rem !important; + .xl\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .xl\:pr-6 { - padding-right: 1.5rem !important; + .xl\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .xl\:pb-6 { - padding-bottom: 1.5rem !important; + .xl\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .xl\:pl-6 { - padding-left: 1.5rem !important; + .xl\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .xl\:pt-7 { - padding-top: 1.75rem !important; + .xl\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .xl\:pr-7 { - padding-right: 1.75rem !important; + .xl\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .xl\:pb-7 { - padding-bottom: 1.75rem !important; + .xl\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .xl\:pl-7 { - padding-left: 1.75rem !important; + .xl\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .xl\:pt-8 { - padding-top: 2rem !important; + .xl\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .xl\:pr-8 { - padding-right: 2rem !important; + .xl\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .xl\:pb-8 { - padding-bottom: 2rem !important; + .xl\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .xl\:pl-8 { - padding-left: 2rem !important; + .xl\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .xl\:pt-9 { - padding-top: 2.25rem !important; + .xl\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .xl\:pr-9 { - padding-right: 2.25rem !important; + .xl\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .xl\:pb-9 { - padding-bottom: 2.25rem !important; + .xl\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .xl\:pl-9 { - padding-left: 2.25rem !important; + .group:hover .xl\:group-hover\:bg-transparent { + background-color: transparent !important; } - .xl\:pt-10 { - padding-top: 2.5rem !important; + .group:hover .xl\:group-hover\:bg-current { + background-color: currentColor !important; } - .xl\:pr-10 { - padding-right: 2.5rem !important; + .group:hover .xl\:group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .xl\:pb-10 { - padding-bottom: 2.5rem !important; + .group:hover .xl\:group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .xl\:pl-10 { - padding-left: 2.5rem !important; + .group:hover .xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .xl\:pt-11 { - padding-top: 2.75rem !important; + .group:hover .xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .xl\:pr-11 { - padding-right: 2.75rem !important; + .group:hover .xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .xl\:pb-11 { - padding-bottom: 2.75rem !important; + .group:hover .xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .xl\:pl-11 { - padding-left: 2.75rem !important; + .group:hover .xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .xl\:pt-12 { - padding-top: 3rem !important; + .group:hover .xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .xl\:pr-12 { - padding-right: 3rem !important; + .group:hover .xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .xl\:pb-12 { - padding-bottom: 3rem !important; + .group:hover .xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .xl\:pl-12 { - padding-left: 3rem !important; + .group:hover .xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .xl\:pt-14 { - padding-top: 3.5rem !important; + .group:hover .xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .xl\:pr-14 { - padding-right: 3.5rem !important; + .group:hover .xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .xl\:pb-14 { - padding-bottom: 3.5rem !important; + .group:hover .xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .xl\:pl-14 { - padding-left: 3.5rem !important; + .group:hover .xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .xl\:pt-16 { - padding-top: 4rem !important; + .group:hover .xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .xl\:pr-16 { - padding-right: 4rem !important; + .group:hover .xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .xl\:pb-16 { - padding-bottom: 4rem !important; + .group:hover .xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .xl\:pl-16 { - padding-left: 4rem !important; + .group:hover .xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .xl\:pt-20 { - padding-top: 5rem !important; + .group:hover .xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .xl\:pr-20 { - padding-right: 5rem !important; + .group:hover .xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .xl\:pb-20 { - padding-bottom: 5rem !important; + .group:hover .xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .xl\:pl-20 { - padding-left: 5rem !important; + .group:hover .xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .xl\:pt-24 { - padding-top: 6rem !important; + .group:hover .xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .xl\:pr-24 { - padding-right: 6rem !important; + .group:hover .xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .xl\:pb-24 { - padding-bottom: 6rem !important; + .group:hover .xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .xl\:pl-24 { - padding-left: 6rem !important; + .group:hover .xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .xl\:pt-28 { - padding-top: 7rem !important; + .group:hover .xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .xl\:pr-28 { - padding-right: 7rem !important; + .group:hover .xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .xl\:pb-28 { - padding-bottom: 7rem !important; + .group:hover .xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .xl\:pl-28 { - padding-left: 7rem !important; + .group:hover .xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .xl\:pt-32 { - padding-top: 8rem !important; + .group:hover .xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .xl\:pr-32 { - padding-right: 8rem !important; + .group:hover .xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .xl\:pb-32 { - padding-bottom: 8rem !important; + .group:hover .xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .xl\:pl-32 { - padding-left: 8rem !important; + .group:hover .xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .xl\:pt-36 { - padding-top: 9rem !important; + .group:hover .xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .xl\:pr-36 { - padding-right: 9rem !important; + .group:hover .xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .xl\:pb-36 { - padding-bottom: 9rem !important; + .group:hover .xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .xl\:pl-36 { - padding-left: 9rem !important; + .group:hover .xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .xl\:pt-40 { - padding-top: 10rem !important; + .group:hover .xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .xl\:pr-40 { - padding-right: 10rem !important; + .group:hover .xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .xl\:pb-40 { - padding-bottom: 10rem !important; + .group:hover .xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .xl\:pl-40 { - padding-left: 10rem !important; + .group:hover .xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .xl\:pt-44 { - padding-top: 11rem !important; + .group:hover .xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .xl\:pr-44 { - padding-right: 11rem !important; + .group:hover .xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .xl\:pb-44 { - padding-bottom: 11rem !important; + .group:hover .xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .xl\:pl-44 { - padding-left: 11rem !important; + .group:hover .xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .xl\:pt-48 { - padding-top: 12rem !important; + .group:hover .xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .xl\:pr-48 { - padding-right: 12rem !important; + .group:hover .xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .xl\:pb-48 { - padding-bottom: 12rem !important; + .group:hover .xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .xl\:pl-48 { - padding-left: 12rem !important; + .group:hover .xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .xl\:pt-52 { - padding-top: 13rem !important; + .group:hover .xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .xl\:pr-52 { - padding-right: 13rem !important; + .group:hover .xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .xl\:pb-52 { - padding-bottom: 13rem !important; + .group:hover .xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .xl\:pl-52 { - padding-left: 13rem !important; + .group:hover .xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .xl\:pt-56 { - padding-top: 14rem !important; + .group:hover .xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .xl\:pr-56 { - padding-right: 14rem !important; + .group:hover .xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .xl\:pb-56 { - padding-bottom: 14rem !important; + .group:hover .xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .xl\:pl-56 { - padding-left: 14rem !important; + .group:hover .xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .xl\:pt-60 { - padding-top: 15rem !important; + .group:hover .xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .xl\:pr-60 { - padding-right: 15rem !important; + .group:hover .xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .xl\:pb-60 { - padding-bottom: 15rem !important; + .group:hover .xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .xl\:pl-60 { - padding-left: 15rem !important; + .group:hover .xl\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .xl\:pt-64 { - padding-top: 16rem !important; + .group:hover .xl\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .xl\:pr-64 { - padding-right: 16rem !important; + .group:hover .xl\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .xl\:pb-64 { - padding-bottom: 16rem !important; + .group:hover .xl\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .xl\:pl-64 { - padding-left: 16rem !important; + .group:hover .xl\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .xl\:pt-72 { - padding-top: 18rem !important; + .group:hover .xl\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .xl\:pr-72 { - padding-right: 18rem !important; + .group:hover .xl\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .xl\:pb-72 { - padding-bottom: 18rem !important; + .group:hover .xl\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .xl\:pl-72 { - padding-left: 18rem !important; + .group:hover .xl\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .xl\:pt-80 { - padding-top: 20rem !important; + .group:hover .xl\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .xl\:pr-80 { - padding-right: 20rem !important; + .group:hover .xl\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .xl\:pb-80 { - padding-bottom: 20rem !important; + .group:hover .xl\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .xl\:pl-80 { - padding-left: 20rem !important; + .group:hover .xl\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .xl\:pt-96 { - padding-top: 24rem !important; + .group:hover .xl\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .xl\:pr-96 { - padding-right: 24rem !important; + .group:hover .xl\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .xl\:pb-96 { - padding-bottom: 24rem !important; + .group:hover .xl\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .xl\:pl-96 { - padding-left: 24rem !important; + .group:hover .xl\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .xl\:pt-px { - padding-top: 1px !important; + .group:hover .xl\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .xl\:pr-px { - padding-right: 1px !important; + .group:hover .xl\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .xl\:pb-px { - padding-bottom: 1px !important; + .group:hover .xl\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .xl\:pl-px { - padding-left: 1px !important; + .xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent !important; } - .xl\:pt-0\.5 { - padding-top: 0.125rem !important; + .xl\:focus-within\:bg-current:focus-within { + background-color: currentColor !important; } - .xl\:pr-0\.5 { - padding-right: 0.125rem !important; + .xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .xl\:pb-0\.5 { - padding-bottom: 0.125rem !important; + .xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .xl\:pl-0\.5 { - padding-left: 0.125rem !important; + .xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .xl\:pt-1\.5 { - padding-top: 0.375rem !important; + .xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .xl\:pr-1\.5 { - padding-right: 0.375rem !important; + .xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .xl\:pb-1\.5 { - padding-bottom: 0.375rem !important; + .xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .xl\:pl-1\.5 { - padding-left: 0.375rem !important; + .xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .xl\:pt-2\.5 { - padding-top: 0.625rem !important; + .xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .xl\:pr-2\.5 { - padding-right: 0.625rem !important; + .xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .xl\:pb-2\.5 { - padding-bottom: 0.625rem !important; + .xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .xl\:pl-2\.5 { - padding-left: 0.625rem !important; + .xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .xl\:pt-3\.5 { - padding-top: 0.875rem !important; + .xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .xl\:pr-3\.5 { - padding-right: 0.875rem !important; + .xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .xl\:pb-3\.5 { - padding-bottom: 0.875rem !important; + .xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .xl\:pl-3\.5 { - padding-left: 0.875rem !important; + .xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-transparent::placeholder { - color: transparent !important; + .xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-current::placeholder { - color: currentColor !important; + .xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + .xl\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-transparent:hover { + background-color: transparent !important; } - .xl\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-current:hover { + background-color: currentColor !important; } - .xl\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-transparent:focus::placeholder { - color: transparent !important; + .xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-current:focus::placeholder { - color: currentColor !important; + .xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + .xl\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-transparent:focus { + background-color: transparent !important; } - .xl\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-current:focus { + background-color: currentColor !important; } - .xl\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + .xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0 !important; + .xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05 !important; + .xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1 !important; + .xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2 !important; + .xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25 !important; + .xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3 !important; + .xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4 !important; + .xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5 !important; + .xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6 !important; + .xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7 !important; + .xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75 !important; + .xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8 !important; + .xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9 !important; + .xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95 !important; + .xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .xl\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1 !important; + .xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0 !important; + .xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05 !important; + .xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1 !important; + .xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2 !important; + .xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25 !important; + .xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3 !important; + .xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4 !important; + .xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5 !important; + .xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6 !important; + .xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7 !important; + .xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75 !important; + .xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8 !important; + .xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9 !important; + .xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95 !important; + .xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .xl\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; + .xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .xl\:pointer-events-none { - pointer-events: none !important; + .xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .xl\:pointer-events-auto { - pointer-events: auto !important; + .xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .xl\:static { - position: static !important; + .xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .xl\:fixed { - position: fixed !important; + .xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .xl\:absolute { - position: absolute !important; + .xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .xl\:relative { - position: relative !important; + .xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .xl\:sticky { - position: sticky !important; + .xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .xl\:inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; + .xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .xl\:inset-1 { - top: 0.25rem !important; - right: 0.25rem !important; - bottom: 0.25rem !important; - left: 0.25rem !important; + .xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .xl\:inset-2 { - top: 0.5rem !important; - right: 0.5rem !important; - bottom: 0.5rem !important; - left: 0.5rem !important; + .xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .xl\:inset-3 { - top: 0.75rem !important; - right: 0.75rem !important; - bottom: 0.75rem !important; - left: 0.75rem !important; + .xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .xl\:inset-4 { - top: 1rem !important; - right: 1rem !important; - bottom: 1rem !important; - left: 1rem !important; + .xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .xl\:inset-5 { - top: 1.25rem !important; - right: 1.25rem !important; - bottom: 1.25rem !important; - left: 1.25rem !important; + .xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .xl\:inset-6 { - top: 1.5rem !important; - right: 1.5rem !important; - bottom: 1.5rem !important; - left: 1.5rem !important; + .xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .xl\:inset-7 { - top: 1.75rem !important; - right: 1.75rem !important; - bottom: 1.75rem !important; - left: 1.75rem !important; + .xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .xl\:inset-8 { - top: 2rem !important; - right: 2rem !important; - bottom: 2rem !important; - left: 2rem !important; + .xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .xl\:inset-9 { - top: 2.25rem !important; - right: 2.25rem !important; - bottom: 2.25rem !important; - left: 2.25rem !important; + .xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .xl\:inset-10 { - top: 2.5rem !important; - right: 2.5rem !important; - bottom: 2.5rem !important; - left: 2.5rem !important; + .xl\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .xl\:inset-11 { - top: 2.75rem !important; - right: 2.75rem !important; - bottom: 2.75rem !important; - left: 2.75rem !important; + .xl\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .xl\:inset-12 { - top: 3rem !important; - right: 3rem !important; - bottom: 3rem !important; - left: 3rem !important; + .xl\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .xl\:inset-14 { - top: 3.5rem !important; - right: 3.5rem !important; - bottom: 3.5rem !important; - left: 3.5rem !important; + .xl\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .xl\:inset-16 { - top: 4rem !important; - right: 4rem !important; - bottom: 4rem !important; - left: 4rem !important; + .xl\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .xl\:inset-20 { - top: 5rem !important; - right: 5rem !important; - bottom: 5rem !important; - left: 5rem !important; + .xl\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .xl\:inset-24 { - top: 6rem !important; - right: 6rem !important; - bottom: 6rem !important; - left: 6rem !important; + .xl\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .xl\:inset-28 { - top: 7rem !important; - right: 7rem !important; - bottom: 7rem !important; - left: 7rem !important; + .xl\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .xl\:inset-32 { - top: 8rem !important; - right: 8rem !important; - bottom: 8rem !important; - left: 8rem !important; + .xl\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .xl\:inset-36 { - top: 9rem !important; - right: 9rem !important; - bottom: 9rem !important; - left: 9rem !important; + .xl\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .xl\:inset-40 { - top: 10rem !important; - right: 10rem !important; - bottom: 10rem !important; - left: 10rem !important; + .xl\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .xl\:inset-44 { - top: 11rem !important; - right: 11rem !important; - bottom: 11rem !important; - left: 11rem !important; + .xl\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .xl\:inset-48 { - top: 12rem !important; - right: 12rem !important; - bottom: 12rem !important; - left: 12rem !important; + .xl\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .xl\:inset-52 { - top: 13rem !important; - right: 13rem !important; - bottom: 13rem !important; - left: 13rem !important; + .xl\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .xl\:inset-56 { - top: 14rem !important; - right: 14rem !important; - bottom: 14rem !important; - left: 14rem !important; + .xl\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .xl\:inset-60 { - top: 15rem !important; - right: 15rem !important; - bottom: 15rem !important; - left: 15rem !important; + .xl\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .xl\:inset-64 { - top: 16rem !important; - right: 16rem !important; - bottom: 16rem !important; - left: 16rem !important; + .xl\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .xl\:inset-72 { - top: 18rem !important; - right: 18rem !important; - bottom: 18rem !important; - left: 18rem !important; + .xl\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .xl\:inset-80 { - top: 20rem !important; - right: 20rem !important; - bottom: 20rem !important; - left: 20rem !important; + .xl\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .xl\:inset-96 { - top: 24rem !important; - right: 24rem !important; - bottom: 24rem !important; - left: 24rem !important; + .xl\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .xl\:inset-auto { - top: auto !important; - right: auto !important; - bottom: auto !important; - left: auto !important; + .xl\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; } - .xl\:inset-px { - top: 1px !important; - right: 1px !important; - bottom: 1px !important; - left: 1px !important; + .xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } - .xl\:inset-0\.5 { - top: 0.125rem !important; - right: 0.125rem !important; - bottom: 0.125rem !important; - left: 0.125rem !important; + .xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } - .xl\:inset-1\.5 { - top: 0.375rem !important; - right: 0.375rem !important; - bottom: 0.375rem !important; - left: 0.375rem !important; + .xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } - .xl\:inset-2\.5 { - top: 0.625rem !important; - right: 0.625rem !important; - bottom: 0.625rem !important; - left: 0.625rem !important; + .xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } - .xl\:inset-3\.5 { - top: 0.875rem !important; - right: 0.875rem !important; - bottom: 0.875rem !important; - left: 0.875rem !important; + .xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } - .xl\:-inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; + .xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } - .xl\:-inset-1 { - top: -0.25rem !important; - right: -0.25rem !important; - bottom: -0.25rem !important; - left: -0.25rem !important; + .xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } - .xl\:-inset-2 { - top: -0.5rem !important; - right: -0.5rem !important; - bottom: -0.5rem !important; - left: -0.5rem !important; + .xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } - .xl\:-inset-3 { - top: -0.75rem !important; - right: -0.75rem !important; - bottom: -0.75rem !important; - left: -0.75rem !important; + .xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } - .xl\:-inset-4 { - top: -1rem !important; - right: -1rem !important; - bottom: -1rem !important; - left: -1rem !important; + .xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } - .xl\:-inset-5 { - top: -1.25rem !important; - right: -1.25rem !important; - bottom: -1.25rem !important; - left: -1.25rem !important; + .xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } - .xl\:-inset-6 { - top: -1.5rem !important; - right: -1.5rem !important; - bottom: -1.5rem !important; - left: -1.5rem !important; + .xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } - .xl\:-inset-7 { - top: -1.75rem !important; - right: -1.75rem !important; - bottom: -1.75rem !important; - left: -1.75rem !important; + .xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } - .xl\:-inset-8 { - top: -2rem !important; - right: -2rem !important; - bottom: -2rem !important; - left: -2rem !important; + .xl\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; } - .xl\:-inset-9 { - top: -2.25rem !important; - right: -2.25rem !important; - bottom: -2.25rem !important; - left: -2.25rem !important; + .group:hover .xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; } - .xl\:-inset-10 { - top: -2.5rem !important; - right: -2.5rem !important; - bottom: -2.5rem !important; - left: -2.5rem !important; + .group:hover .xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } - .xl\:-inset-11 { - top: -2.75rem !important; - right: -2.75rem !important; - bottom: -2.75rem !important; - left: -2.75rem !important; + .group:hover .xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } - .xl\:-inset-12 { - top: -3rem !important; - right: -3rem !important; - bottom: -3rem !important; - left: -3rem !important; + .group:hover .xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } - .xl\:-inset-14 { - top: -3.5rem !important; - right: -3.5rem !important; - bottom: -3.5rem !important; - left: -3.5rem !important; + .group:hover .xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } - .xl\:-inset-16 { - top: -4rem !important; - right: -4rem !important; - bottom: -4rem !important; - left: -4rem !important; + .group:hover .xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } - .xl\:-inset-20 { - top: -5rem !important; - right: -5rem !important; - bottom: -5rem !important; - left: -5rem !important; + .group:hover .xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } - .xl\:-inset-24 { - top: -6rem !important; - right: -6rem !important; - bottom: -6rem !important; - left: -6rem !important; + .group:hover .xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } - .xl\:-inset-28 { - top: -7rem !important; - right: -7rem !important; - bottom: -7rem !important; - left: -7rem !important; + .group:hover .xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } - .xl\:-inset-32 { - top: -8rem !important; - right: -8rem !important; - bottom: -8rem !important; - left: -8rem !important; + .group:hover .xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } - .xl\:-inset-36 { - top: -9rem !important; - right: -9rem !important; - bottom: -9rem !important; - left: -9rem !important; + .group:hover .xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } - .xl\:-inset-40 { - top: -10rem !important; - right: -10rem !important; - bottom: -10rem !important; - left: -10rem !important; + .group:hover .xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } - .xl\:-inset-44 { - top: -11rem !important; - right: -11rem !important; - bottom: -11rem !important; - left: -11rem !important; + .group:hover .xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } - .xl\:-inset-48 { - top: -12rem !important; - right: -12rem !important; - bottom: -12rem !important; - left: -12rem !important; + .group:hover .xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } - .xl\:-inset-52 { - top: -13rem !important; - right: -13rem !important; - bottom: -13rem !important; - left: -13rem !important; + .group:hover .xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; } - .xl\:-inset-56 { - top: -14rem !important; - right: -14rem !important; - bottom: -14rem !important; - left: -14rem !important; + .xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; } - .xl\:-inset-60 { - top: -15rem !important; - right: -15rem !important; - bottom: -15rem !important; - left: -15rem !important; + .xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; } - .xl\:-inset-64 { - top: -16rem !important; - right: -16rem !important; - bottom: -16rem !important; - left: -16rem !important; + .xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; } - .xl\:-inset-72 { - top: -18rem !important; - right: -18rem !important; - bottom: -18rem !important; - left: -18rem !important; + .xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; } - .xl\:-inset-80 { - top: -20rem !important; - right: -20rem !important; - bottom: -20rem !important; - left: -20rem !important; + .xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; } - .xl\:-inset-96 { - top: -24rem !important; - right: -24rem !important; - bottom: -24rem !important; - left: -24rem !important; + .xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; } - .xl\:-inset-px { - top: -1px !important; - right: -1px !important; - bottom: -1px !important; - left: -1px !important; + .xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; } - .xl\:-inset-0\.5 { - top: -0.125rem !important; - right: -0.125rem !important; - bottom: -0.125rem !important; - left: -0.125rem !important; + .xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; } - .xl\:-inset-1\.5 { - top: -0.375rem !important; - right: -0.375rem !important; - bottom: -0.375rem !important; - left: -0.375rem !important; + .xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; } - .xl\:-inset-2\.5 { - top: -0.625rem !important; - right: -0.625rem !important; - bottom: -0.625rem !important; - left: -0.625rem !important; + .xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; } - .xl\:-inset-3\.5 { - top: -0.875rem !important; - right: -0.875rem !important; - bottom: -0.875rem !important; - left: -0.875rem !important; + .xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; } - .xl\:inset-1\/2 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; + .xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; } - .xl\:inset-1\/3 { - top: 33.333333% !important; - right: 33.333333% !important; - bottom: 33.333333% !important; - left: 33.333333% !important; + .xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; } - .xl\:inset-2\/3 { - top: 66.666667% !important; - right: 66.666667% !important; - bottom: 66.666667% !important; - left: 66.666667% !important; + .xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; } - .xl\:inset-1\/4 { - top: 25% !important; - right: 25% !important; - bottom: 25% !important; - left: 25% !important; + .xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; } - .xl\:inset-2\/4 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; + .xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; } - .xl\:inset-3\/4 { - top: 75% !important; - right: 75% !important; - bottom: 75% !important; - left: 75% !important; + .xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; } - .xl\:inset-full { - top: 100% !important; - right: 100% !important; - bottom: 100% !important; - left: 100% !important; + .xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; } - .xl\:-inset-1\/2 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; + .xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; } - .xl\:-inset-1\/3 { - top: -33.333333% !important; - right: -33.333333% !important; - bottom: -33.333333% !important; - left: -33.333333% !important; + .xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; } - .xl\:-inset-2\/3 { - top: -66.666667% !important; - right: -66.666667% !important; - bottom: -66.666667% !important; - left: -66.666667% !important; + .xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; } - .xl\:-inset-1\/4 { - top: -25% !important; - right: -25% !important; - bottom: -25% !important; - left: -25% !important; + .xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; } - .xl\:-inset-2\/4 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; + .xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; } - .xl\:-inset-3\/4 { - top: -75% !important; - right: -75% !important; - bottom: -75% !important; - left: -75% !important; + .xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; } - .xl\:-inset-full { - top: -100% !important; - right: -100% !important; - bottom: -100% !important; - left: -100% !important; + .xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; } - .xl\:inset-y-0 { - top: 0px !important; - bottom: 0px !important; + .xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; } - .xl\:inset-x-0 { - right: 0px !important; - left: 0px !important; + .xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; } - .xl\:inset-y-1 { - top: 0.25rem !important; - bottom: 0.25rem !important; + .xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; } - .xl\:inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; + .xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; } - .xl\:inset-y-2 { - top: 0.5rem !important; - bottom: 0.5rem !important; + .xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; } - .xl\:inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; + .xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; } - .xl\:inset-y-3 { - top: 0.75rem !important; - bottom: 0.75rem !important; + .xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; } - .xl\:inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; + .xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; } - .xl\:inset-y-4 { - top: 1rem !important; - bottom: 1rem !important; + .xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; } - .xl\:inset-x-4 { - right: 1rem !important; - left: 1rem !important; + .xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; } - .xl\:inset-y-5 { - top: 1.25rem !important; - bottom: 1.25rem !important; + .xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; } - .xl\:inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; + .xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; } - .xl\:inset-y-6 { - top: 1.5rem !important; - bottom: 1.5rem !important; + .xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; } - .xl\:inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; + .xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; } - .xl\:inset-y-7 { - top: 1.75rem !important; - bottom: 1.75rem !important; + .xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; } - .xl\:inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; + .xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; } - .xl\:inset-y-8 { - top: 2rem !important; - bottom: 2rem !important; + .xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; } - .xl\:inset-x-8 { - right: 2rem !important; - left: 2rem !important; + .xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; } - .xl\:inset-y-9 { - top: 2.25rem !important; - bottom: 2.25rem !important; + .xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; } - .xl\:inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; + .xl\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; } - .xl\:inset-y-10 { - top: 2.5rem !important; - bottom: 2.5rem !important; + .xl\:bg-none { + background-image: none !important; } - .xl\:inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; + .xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; } - .xl\:inset-y-11 { - top: 2.75rem !important; - bottom: 2.75rem !important; + .xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; } - .xl\:inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; + .xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; } - .xl\:inset-y-12 { - top: 3rem !important; - bottom: 3rem !important; + .xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; } - .xl\:inset-x-12 { - right: 3rem !important; - left: 3rem !important; + .xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; } - .xl\:inset-y-14 { - top: 3.5rem !important; - bottom: 3.5rem !important; + .xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; } - .xl\:inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; + .xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; } - .xl\:inset-y-16 { - top: 4rem !important; - bottom: 4rem !important; + .xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; } - .xl\:inset-x-16 { - right: 4rem !important; - left: 4rem !important; + .xl\:from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:inset-y-20 { - top: 5rem !important; - bottom: 5rem !important; + .xl\:from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:inset-x-20 { - right: 5rem !important; - left: 5rem !important; + .xl\:from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:inset-y-24 { - top: 6rem !important; - bottom: 6rem !important; + .xl\:from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:inset-x-24 { - right: 6rem !important; - left: 6rem !important; + .xl\:from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .xl\:inset-y-28 { - top: 7rem !important; - bottom: 7rem !important; + .xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .xl\:inset-x-28 { - right: 7rem !important; - left: 7rem !important; + .xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .xl\:inset-y-32 { - top: 8rem !important; - bottom: 8rem !important; + .xl\:from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .xl\:inset-x-32 { - right: 8rem !important; - left: 8rem !important; + .xl\:from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .xl\:inset-y-36 { - top: 9rem !important; - bottom: 9rem !important; + .xl\:from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .xl\:inset-x-36 { - right: 9rem !important; - left: 9rem !important; + .xl\:from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .xl\:inset-y-40 { - top: 10rem !important; - bottom: 10rem !important; + .xl\:from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .xl\:inset-x-40 { - right: 10rem !important; - left: 10rem !important; + .xl\:from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .xl\:inset-y-44 { - top: 11rem !important; - bottom: 11rem !important; + .xl\:from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .xl\:inset-x-44 { - right: 11rem !important; - left: 11rem !important; + .xl\:from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .xl\:inset-y-48 { - top: 12rem !important; - bottom: 12rem !important; + .xl\:from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .xl\:inset-x-48 { - right: 12rem !important; - left: 12rem !important; + .xl\:from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .xl\:inset-y-52 { - top: 13rem !important; - bottom: 13rem !important; + .xl\:from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .xl\:inset-x-52 { - right: 13rem !important; - left: 13rem !important; + .xl\:from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .xl\:inset-y-56 { - top: 14rem !important; - bottom: 14rem !important; + .xl\:from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .xl\:inset-x-56 { - right: 14rem !important; - left: 14rem !important; + .xl\:from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .xl\:inset-y-60 { - top: 15rem !important; - bottom: 15rem !important; + .xl\:from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .xl\:inset-x-60 { - right: 15rem !important; - left: 15rem !important; + .xl\:from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .xl\:inset-y-64 { - top: 16rem !important; - bottom: 16rem !important; + .xl\:from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .xl\:inset-x-64 { - right: 16rem !important; - left: 16rem !important; + .xl\:from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .xl\:inset-y-72 { - top: 18rem !important; - bottom: 18rem !important; + .xl\:from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .xl\:inset-x-72 { - right: 18rem !important; - left: 18rem !important; + .xl\:from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .xl\:inset-y-80 { - top: 20rem !important; - bottom: 20rem !important; + .xl\:from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .xl\:inset-x-80 { - right: 20rem !important; - left: 20rem !important; + .xl\:from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .xl\:inset-y-96 { - top: 24rem !important; - bottom: 24rem !important; + .xl\:from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .xl\:inset-x-96 { - right: 24rem !important; - left: 24rem !important; + .xl\:from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .xl\:inset-y-auto { - top: auto !important; - bottom: auto !important; + .xl\:from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .xl\:inset-x-auto { - right: auto !important; - left: auto !important; + .xl\:from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .xl\:inset-y-px { - top: 1px !important; - bottom: 1px !important; + .xl\:from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .xl\:inset-x-px { - right: 1px !important; - left: 1px !important; + .xl\:from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .xl\:inset-y-0\.5 { - top: 0.125rem !important; - bottom: 0.125rem !important; + .xl\:from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .xl\:inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; + .xl\:from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .xl\:inset-y-1\.5 { - top: 0.375rem !important; - bottom: 0.375rem !important; + .xl\:from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .xl\:inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; + .xl\:from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .xl\:inset-y-2\.5 { - top: 0.625rem !important; - bottom: 0.625rem !important; + .xl\:from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .xl\:inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; + .xl\:from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .xl\:inset-y-3\.5 { - top: 0.875rem !important; - bottom: 0.875rem !important; + .xl\:from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .xl\:inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; + .xl\:from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .xl\:-inset-y-0 { - top: 0px !important; - bottom: 0px !important; + .xl\:from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .xl\:-inset-x-0 { - right: 0px !important; - left: 0px !important; + .xl\:from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .xl\:-inset-y-1 { - top: -0.25rem !important; - bottom: -0.25rem !important; + .xl\:from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .xl\:-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; + .xl\:from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .xl\:-inset-y-2 { - top: -0.5rem !important; - bottom: -0.5rem !important; + .xl\:from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .xl\:-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; + .xl\:from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .xl\:-inset-y-3 { - top: -0.75rem !important; - bottom: -0.75rem !important; + .xl\:from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .xl\:-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; + .xl\:from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .xl\:-inset-y-4 { - top: -1rem !important; - bottom: -1rem !important; + .xl\:from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .xl\:-inset-x-4 { - right: -1rem !important; - left: -1rem !important; + .xl\:from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .xl\:-inset-y-5 { - top: -1.25rem !important; - bottom: -1.25rem !important; + .xl\:from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .xl\:-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; + .xl\:from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .xl\:-inset-y-6 { - top: -1.5rem !important; - bottom: -1.5rem !important; + .xl\:from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .xl\:-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; + .xl\:from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .xl\:-inset-y-7 { - top: -1.75rem !important; - bottom: -1.75rem !important; + .xl\:from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .xl\:-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; + .xl\:from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .xl\:-inset-y-8 { - top: -2rem !important; - bottom: -2rem !important; + .xl\:from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .xl\:-inset-x-8 { - right: -2rem !important; - left: -2rem !important; + .xl\:from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .xl\:-inset-y-9 { - top: -2.25rem !important; - bottom: -2.25rem !important; + .xl\:from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .xl\:-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; + .xl\:from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .xl\:-inset-y-10 { - top: -2.5rem !important; - bottom: -2.5rem !important; + .xl\:from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .xl\:-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; + .xl\:from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .xl\:-inset-y-11 { - top: -2.75rem !important; - bottom: -2.75rem !important; + .xl\:from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .xl\:-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; + .xl\:from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .xl\:-inset-y-12 { - top: -3rem !important; - bottom: -3rem !important; + .xl\:from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .xl\:-inset-x-12 { - right: -3rem !important; - left: -3rem !important; + .xl\:from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .xl\:-inset-y-14 { - top: -3.5rem !important; - bottom: -3.5rem !important; + .xl\:from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .xl\:-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; + .xl\:from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .xl\:-inset-y-16 { - top: -4rem !important; - bottom: -4rem !important; + .xl\:from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .xl\:-inset-x-16 { - right: -4rem !important; - left: -4rem !important; + .xl\:from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .xl\:-inset-y-20 { - top: -5rem !important; - bottom: -5rem !important; + .xl\:from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .xl\:-inset-x-20 { - right: -5rem !important; - left: -5rem !important; + .xl\:from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .xl\:-inset-y-24 { - top: -6rem !important; - bottom: -6rem !important; + .xl\:from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .xl\:-inset-x-24 { - right: -6rem !important; - left: -6rem !important; + .xl\:from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .xl\:-inset-y-28 { - top: -7rem !important; - bottom: -7rem !important; + .xl\:from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .xl\:-inset-x-28 { - right: -7rem !important; - left: -7rem !important; + .xl\:from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .xl\:-inset-y-32 { - top: -8rem !important; - bottom: -8rem !important; + .xl\:from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .xl\:-inset-x-32 { - right: -8rem !important; - left: -8rem !important; + .xl\:from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .xl\:-inset-y-36 { - top: -9rem !important; - bottom: -9rem !important; + .xl\:from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .xl\:-inset-x-36 { - right: -9rem !important; - left: -9rem !important; + .xl\:from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .xl\:-inset-y-40 { - top: -10rem !important; - bottom: -10rem !important; + .xl\:from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .xl\:-inset-x-40 { - right: -10rem !important; - left: -10rem !important; + .xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:-inset-y-44 { - top: -11rem !important; - bottom: -11rem !important; + .xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:-inset-x-44 { - right: -11rem !important; - left: -11rem !important; + .xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:-inset-y-48 { - top: -12rem !important; - bottom: -12rem !important; + .xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:-inset-x-48 { - right: -12rem !important; - left: -12rem !important; + .xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .xl\:-inset-y-52 { - top: -13rem !important; - bottom: -13rem !important; + .xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .xl\:-inset-x-52 { - right: -13rem !important; - left: -13rem !important; + .xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .xl\:-inset-y-56 { - top: -14rem !important; - bottom: -14rem !important; + .xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .xl\:-inset-x-56 { - right: -14rem !important; - left: -14rem !important; + .xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .xl\:-inset-y-60 { - top: -15rem !important; - bottom: -15rem !important; + .xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .xl\:-inset-x-60 { - right: -15rem !important; - left: -15rem !important; + .xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .xl\:-inset-y-64 { - top: -16rem !important; - bottom: -16rem !important; + .xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .xl\:-inset-x-64 { - right: -16rem !important; - left: -16rem !important; + .xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .xl\:-inset-y-72 { - top: -18rem !important; - bottom: -18rem !important; + .xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .xl\:-inset-x-72 { - right: -18rem !important; - left: -18rem !important; + .xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .xl\:-inset-y-80 { - top: -20rem !important; - bottom: -20rem !important; + .xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .xl\:-inset-x-80 { - right: -20rem !important; - left: -20rem !important; + .xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .xl\:-inset-y-96 { - top: -24rem !important; - bottom: -24rem !important; + .xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .xl\:-inset-x-96 { - right: -24rem !important; - left: -24rem !important; + .xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .xl\:-inset-y-px { - top: -1px !important; - bottom: -1px !important; + .xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .xl\:-inset-x-px { - right: -1px !important; - left: -1px !important; + .xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .xl\:-inset-y-0\.5 { - top: -0.125rem !important; - bottom: -0.125rem !important; + .xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .xl\:-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; + .xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .xl\:-inset-y-1\.5 { - top: -0.375rem !important; - bottom: -0.375rem !important; + .xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .xl\:-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; + .xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .xl\:-inset-y-2\.5 { - top: -0.625rem !important; - bottom: -0.625rem !important; + .xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .xl\:-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; + .xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .xl\:-inset-y-3\.5 { - top: -0.875rem !important; - bottom: -0.875rem !important; + .xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .xl\:-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; + .xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .xl\:inset-y-1\/2 { - top: 50% !important; - bottom: 50% !important; + .xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .xl\:inset-x-1\/2 { - right: 50% !important; - left: 50% !important; + .xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .xl\:inset-y-1\/3 { - top: 33.333333% !important; - bottom: 33.333333% !important; + .xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .xl\:inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; + .xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .xl\:inset-y-2\/3 { - top: 66.666667% !important; - bottom: 66.666667% !important; + .xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .xl\:inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; + .xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .xl\:inset-y-1\/4 { - top: 25% !important; - bottom: 25% !important; + .xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .xl\:inset-x-1\/4 { - right: 25% !important; - left: 25% !important; + .xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .xl\:inset-y-2\/4 { - top: 50% !important; - bottom: 50% !important; + .xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .xl\:inset-x-2\/4 { - right: 50% !important; - left: 50% !important; + .xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .xl\:inset-y-3\/4 { - top: 75% !important; - bottom: 75% !important; + .xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .xl\:inset-x-3\/4 { - right: 75% !important; - left: 75% !important; + .xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .xl\:inset-y-full { - top: 100% !important; - bottom: 100% !important; + .xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .xl\:inset-x-full { - right: 100% !important; - left: 100% !important; + .xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .xl\:-inset-y-1\/2 { - top: -50% !important; - bottom: -50% !important; + .xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .xl\:-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; + .xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .xl\:-inset-y-1\/3 { - top: -33.333333% !important; - bottom: -33.333333% !important; + .xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .xl\:-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; + .xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .xl\:-inset-y-2\/3 { - top: -66.666667% !important; - bottom: -66.666667% !important; + .xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .xl\:-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; + .xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .xl\:-inset-y-1\/4 { - top: -25% !important; - bottom: -25% !important; + .xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .xl\:-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; + .xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .xl\:-inset-y-2\/4 { - top: -50% !important; - bottom: -50% !important; + .xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .xl\:-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; + .xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .xl\:-inset-y-3\/4 { - top: -75% !important; - bottom: -75% !important; + .xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .xl\:-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; + .xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .xl\:-inset-y-full { - top: -100% !important; - bottom: -100% !important; + .xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .xl\:-inset-x-full { - right: -100% !important; - left: -100% !important; + .xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .xl\:top-0 { - top: 0px !important; + .xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .xl\:right-0 { - right: 0px !important; + .xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .xl\:bottom-0 { - bottom: 0px !important; + .xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .xl\:left-0 { - left: 0px !important; + .xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .xl\:top-1 { - top: 0.25rem !important; + .xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .xl\:right-1 { - right: 0.25rem !important; + .xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .xl\:bottom-1 { - bottom: 0.25rem !important; + .xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .xl\:left-1 { - left: 0.25rem !important; + .xl\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .xl\:top-2 { - top: 0.5rem !important; + .xl\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .xl\:right-2 { - right: 0.5rem !important; + .xl\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .xl\:bottom-2 { - bottom: 0.5rem !important; + .xl\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .xl\:left-2 { - left: 0.5rem !important; + .xl\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .xl\:top-3 { - top: 0.75rem !important; + .xl\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .xl\:right-3 { - right: 0.75rem !important; + .xl\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .xl\:bottom-3 { - bottom: 0.75rem !important; + .xl\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .xl\:left-3 { - left: 0.75rem !important; + .xl\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .xl\:top-4 { - top: 1rem !important; + .xl\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .xl\:right-4 { - right: 1rem !important; + .xl\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .xl\:bottom-4 { - bottom: 1rem !important; + .xl\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .xl\:left-4 { - left: 1rem !important; + .xl\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .xl\:top-5 { - top: 1.25rem !important; + .xl\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .xl\:right-5 { - right: 1.25rem !important; + .xl\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .xl\:bottom-5 { - bottom: 1.25rem !important; + .xl\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .xl\:left-5 { - left: 1.25rem !important; + .xl\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .xl\:top-6 { - top: 1.5rem !important; + .xl\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .xl\:right-6 { - right: 1.5rem !important; + .xl\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .xl\:bottom-6 { - bottom: 1.5rem !important; + .xl\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .xl\:left-6 { - left: 1.5rem !important; + .xl\:to-transparent { + --tw-gradient-to: transparent !important; } - .xl\:top-7 { - top: 1.75rem !important; + .xl\:to-current { + --tw-gradient-to: currentColor !important; } - .xl\:right-7 { - right: 1.75rem !important; + .xl\:to-black { + --tw-gradient-to: #000 !important; } - .xl\:bottom-7 { - bottom: 1.75rem !important; + .xl\:to-white { + --tw-gradient-to: #fff !important; } - .xl\:left-7 { - left: 1.75rem !important; + .xl\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; } - .xl\:top-8 { - top: 2rem !important; + .xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; } - .xl\:right-8 { - right: 2rem !important; + .xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; } - .xl\:bottom-8 { - bottom: 2rem !important; + .xl\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; } - .xl\:left-8 { - left: 2rem !important; + .xl\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; } - .xl\:top-9 { - top: 2.25rem !important; + .xl\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; } - .xl\:right-9 { - right: 2.25rem !important; + .xl\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; } - .xl\:bottom-9 { - bottom: 2.25rem !important; + .xl\:to-gray-700 { + --tw-gradient-to: #374151 !important; } - .xl\:left-9 { - left: 2.25rem !important; + .xl\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; } - .xl\:top-10 { - top: 2.5rem !important; + .xl\:to-gray-900 { + --tw-gradient-to: #111827 !important; } - .xl\:right-10 { - right: 2.5rem !important; + .xl\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; } - .xl\:bottom-10 { - bottom: 2.5rem !important; + .xl\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; } - .xl\:left-10 { - left: 2.5rem !important; + .xl\:to-red-200 { + --tw-gradient-to: #fecaca !important; } - .xl\:top-11 { - top: 2.75rem !important; + .xl\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; } - .xl\:right-11 { - right: 2.75rem !important; + .xl\:to-red-400 { + --tw-gradient-to: #f87171 !important; } - .xl\:bottom-11 { - bottom: 2.75rem !important; + .xl\:to-red-500 { + --tw-gradient-to: #ef4444 !important; } - .xl\:left-11 { - left: 2.75rem !important; + .xl\:to-red-600 { + --tw-gradient-to: #dc2626 !important; } - .xl\:top-12 { - top: 3rem !important; + .xl\:to-red-700 { + --tw-gradient-to: #b91c1c !important; } - .xl\:right-12 { - right: 3rem !important; + .xl\:to-red-800 { + --tw-gradient-to: #991b1b !important; } - .xl\:bottom-12 { - bottom: 3rem !important; + .xl\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; } - .xl\:left-12 { - left: 3rem !important; + .xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; } - .xl\:top-14 { - top: 3.5rem !important; + .xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; } - .xl\:right-14 { - right: 3.5rem !important; + .xl\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; } - .xl\:bottom-14 { - bottom: 3.5rem !important; + .xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; } - .xl\:left-14 { - left: 3.5rem !important; + .xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; } - .xl\:top-16 { - top: 4rem !important; + .xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; } - .xl\:right-16 { - right: 4rem !important; + .xl\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; } - .xl\:bottom-16 { - bottom: 4rem !important; + .xl\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; } - .xl\:left-16 { - left: 4rem !important; + .xl\:to-yellow-800 { + --tw-gradient-to: #92400e !important; } - .xl\:top-20 { - top: 5rem !important; + .xl\:to-yellow-900 { + --tw-gradient-to: #78350f !important; } - .xl\:right-20 { - right: 5rem !important; + .xl\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; } - .xl\:bottom-20 { - bottom: 5rem !important; + .xl\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; } - .xl\:left-20 { - left: 5rem !important; + .xl\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; } - .xl\:top-24 { - top: 6rem !important; + .xl\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; } - .xl\:right-24 { - right: 6rem !important; + .xl\:to-green-400 { + --tw-gradient-to: #34d399 !important; } - .xl\:bottom-24 { - bottom: 6rem !important; + .xl\:to-green-500 { + --tw-gradient-to: #10b981 !important; } - .xl\:left-24 { - left: 6rem !important; + .xl\:to-green-600 { + --tw-gradient-to: #059669 !important; } - .xl\:top-28 { - top: 7rem !important; + .xl\:to-green-700 { + --tw-gradient-to: #047857 !important; } - .xl\:right-28 { - right: 7rem !important; + .xl\:to-green-800 { + --tw-gradient-to: #065f46 !important; } - .xl\:bottom-28 { - bottom: 7rem !important; + .xl\:to-green-900 { + --tw-gradient-to: #064e3b !important; } - .xl\:left-28 { - left: 7rem !important; + .xl\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; } - .xl\:top-32 { - top: 8rem !important; + .xl\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; } - .xl\:right-32 { - right: 8rem !important; + .xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; } - .xl\:bottom-32 { - bottom: 8rem !important; + .xl\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; } - .xl\:left-32 { - left: 8rem !important; + .xl\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; } - .xl\:top-36 { - top: 9rem !important; + .xl\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; } - .xl\:right-36 { - right: 9rem !important; + .xl\:to-blue-600 { + --tw-gradient-to: #2563eb !important; } - .xl\:bottom-36 { - bottom: 9rem !important; + .xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; } - .xl\:left-36 { - left: 9rem !important; + .xl\:to-blue-800 { + --tw-gradient-to: #1e40af !important; } - .xl\:top-40 { - top: 10rem !important; + .xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; } - .xl\:right-40 { - right: 10rem !important; + .xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; } - .xl\:bottom-40 { - bottom: 10rem !important; + .xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; } - .xl\:left-40 { - left: 10rem !important; + .xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; } - .xl\:top-44 { - top: 11rem !important; + .xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; } - .xl\:right-44 { - right: 11rem !important; + .xl\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; } - .xl\:bottom-44 { - bottom: 11rem !important; + .xl\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; } - .xl\:left-44 { - left: 11rem !important; + .xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; } - .xl\:top-48 { - top: 12rem !important; + .xl\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; } - .xl\:right-48 { - right: 12rem !important; + .xl\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; } - .xl\:bottom-48 { - bottom: 12rem !important; + .xl\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; } - .xl\:left-48 { - left: 12rem !important; + .xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; } - .xl\:top-52 { - top: 13rem !important; + .xl\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; } - .xl\:right-52 { - right: 13rem !important; + .xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; } - .xl\:bottom-52 { - bottom: 13rem !important; + .xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; } - .xl\:left-52 { - left: 13rem !important; + .xl\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; } - .xl\:top-56 { - top: 14rem !important; + .xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; } - .xl\:right-56 { - right: 14rem !important; + .xl\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; } - .xl\:bottom-56 { - bottom: 14rem !important; + .xl\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; } - .xl\:left-56 { - left: 14rem !important; + .xl\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; } - .xl\:top-60 { - top: 15rem !important; + .xl\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; } - .xl\:right-60 { - right: 15rem !important; + .xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; } - .xl\:bottom-60 { - bottom: 15rem !important; + .xl\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; } - .xl\:left-60 { - left: 15rem !important; + .xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; } - .xl\:top-64 { - top: 16rem !important; + .xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; } - .xl\:right-64 { - right: 16rem !important; + .xl\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; } - .xl\:bottom-64 { - bottom: 16rem !important; + .xl\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; } - .xl\:left-64 { - left: 16rem !important; + .xl\:to-pink-600 { + --tw-gradient-to: #db2777 !important; } - .xl\:top-72 { - top: 18rem !important; + .xl\:to-pink-700 { + --tw-gradient-to: #be185d !important; } - .xl\:right-72 { - right: 18rem !important; + .xl\:to-pink-800 { + --tw-gradient-to: #9d174d !important; } - .xl\:bottom-72 { - bottom: 18rem !important; + .xl\:to-pink-900 { + --tw-gradient-to: #831843 !important; } - .xl\:left-72 { - left: 18rem !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\:top-80 { - top: 20rem !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\:right-80 { - right: 20rem !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\:bottom-80 { - bottom: 20rem !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\:left-80 { - left: 20rem !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\:top-96 { - top: 24rem !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\:right-96 { - right: 24rem !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\:bottom-96 { - bottom: 24rem !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\:left-96 { - left: 24rem !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\:top-auto { - top: auto !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\:right-auto { - right: auto !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\:bottom-auto { - bottom: auto !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\:left-auto { - left: auto !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\:top-px { - top: 1px !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\:right-px { - right: 1px !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\:bottom-px { - bottom: 1px !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\:left-px { - left: 1px !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\:top-0\.5 { - top: 0.125rem !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\:right-0\.5 { - right: 0.125rem !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\:bottom-0\.5 { - bottom: 0.125rem !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\:left-0\.5 { - left: 0.125rem !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\:top-1\.5 { - top: 0.375rem !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\:right-1\.5 { - right: 0.375rem !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\:bottom-1\.5 { - bottom: 0.375rem !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\:left-1\.5 { - left: 0.375rem !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\:top-2\.5 { - top: 0.625rem !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\:right-2\.5 { - right: 0.625rem !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\:bottom-2\.5 { - bottom: 0.625rem !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\:left-2\.5 { - left: 0.625rem !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\:top-3\.5 { - top: 0.875rem !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\:right-3\.5 { - right: 0.875rem !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\:bottom-3\.5 { - bottom: 0.875rem !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\:left-3\.5 { - left: 0.875rem !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\:-top-0 { - top: 0px !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\:-right-0 { - right: 0px !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\:-bottom-0 { - bottom: 0px !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\:-left-0 { - left: 0px !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\:-top-1 { - top: -0.25rem !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\:-right-1 { - right: -0.25rem !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\:-bottom-1 { - bottom: -0.25rem !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\:-left-1 { - left: -0.25rem !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\:-top-2 { - top: -0.5rem !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\:-right-2 { - right: -0.5rem !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\:-bottom-2 { - bottom: -0.5rem !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\:-left-2 { - left: -0.5rem !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\:-top-3 { - top: -0.75rem !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\:-right-3 { - right: -0.75rem !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\:-bottom-3 { - bottom: -0.75rem !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\:-left-3 { - left: -0.75rem !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\:-top-4 { - top: -1rem !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\:-right-4 { - right: -1rem !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\:-bottom-4 { - bottom: -1rem !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\:-left-4 { - left: -1rem !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\:-top-5 { - top: -1.25rem !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\:-right-5 { - right: -1.25rem !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\:-bottom-5 { - bottom: -1.25rem !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\:-left-5 { - left: -1.25rem !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\:-top-6 { - top: -1.5rem !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\:-right-6 { - right: -1.5rem !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\:-bottom-6 { - bottom: -1.5rem !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\:-left-6 { - left: -1.5rem !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\:-top-7 { - top: -1.75rem !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\:-right-7 { - right: -1.75rem !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\:-bottom-7 { - bottom: -1.75rem !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\:-left-7 { - left: -1.75rem !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\:-top-8 { - top: -2rem !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\:-right-8 { - right: -2rem !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\:-bottom-8 { - bottom: -2rem !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\:-left-8 { - left: -2rem !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\:-top-9 { - top: -2.25rem !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\:-right-9 { - right: -2.25rem !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\:-bottom-9 { - bottom: -2.25rem !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\:-left-9 { - left: -2.25rem !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\:-top-10 { - top: -2.5rem !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\:-right-10 { - right: -2.5rem !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\:-bottom-10 { - bottom: -2.5rem !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\:-left-10 { - left: -2.5rem !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\:-top-11 { - top: -2.75rem !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\:-right-11 { - right: -2.75rem !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\:-bottom-11 { - bottom: -2.75rem !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\:-left-11 { - left: -2.75rem !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\:-top-12 { - top: -3rem !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\:-right-12 { - right: -3rem !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\:-bottom-12 { - bottom: -3rem !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\:-left-12 { - left: -3rem !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\:-top-14 { - top: -3.5rem !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\:-right-14 { - right: -3.5rem !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\:-bottom-14 { - bottom: -3.5rem !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\:-left-14 { - left: -3.5rem !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\:-top-16 { - top: -4rem !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\:-right-16 { - right: -4rem !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\:-bottom-16 { - bottom: -4rem !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\:-left-16 { - left: -4rem !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\:-top-20 { - top: -5rem !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\:-right-20 { - right: -5rem !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\:-bottom-20 { - bottom: -5rem !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\:-left-20 { - left: -5rem !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\:-top-24 { - top: -6rem !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\:-right-24 { - right: -6rem !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\:-bottom-24 { - bottom: -6rem !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\:-left-24 { - left: -6rem !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\:-top-28 { - top: -7rem !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\:-right-28 { - right: -7rem !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\:-bottom-28 { - bottom: -7rem !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\:-left-28 { - left: -7rem !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\:-top-32 { - top: -8rem !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\:-right-32 { - right: -8rem !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\:-bottom-32 { - bottom: -8rem !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\:-left-32 { - left: -8rem !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\:-top-36 { - top: -9rem !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\:-right-36 { - right: -9rem !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\:-bottom-36 { - bottom: -9rem !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\:-left-36 { - left: -9rem !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\:-top-40 { - top: -10rem !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\:-right-40 { - right: -10rem !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\:-bottom-40 { - bottom: -10rem !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\:-left-40 { - left: -10rem !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\:-top-44 { - top: -11rem !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\:-right-44 { - right: -11rem !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\:-bottom-44 { - bottom: -11rem !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\:-left-44 { - left: -11rem !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\:-top-48 { - top: -12rem !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\:-right-48 { - right: -12rem !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\:-bottom-48 { - bottom: -12rem !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\:-left-48 { - left: -12rem !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\:-top-52 { - top: -13rem !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\:-right-52 { - right: -13rem !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\:-bottom-52 { - bottom: -13rem !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\:-left-52 { - left: -13rem !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\:-top-56 { - top: -14rem !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\:-right-56 { - right: -14rem !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\:-bottom-56 { - bottom: -14rem !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\:-left-56 { - left: -14rem !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\:-top-60 { - top: -15rem !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\:-right-60 { - right: -15rem !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\:-bottom-60 { - bottom: -15rem !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\:-left-60 { - left: -15rem !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\:-top-64 { - top: -16rem !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\:-right-64 { - right: -16rem !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\:-bottom-64 { - bottom: -16rem !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\:-left-64 { - left: -16rem !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\:-top-72 { - top: -18rem !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\:-right-72 { - right: -18rem !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\:-bottom-72 { - bottom: -18rem !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\:-left-72 { - left: -18rem !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\:-top-80 { - top: -20rem !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\:-right-80 { - right: -20rem !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\:-bottom-80 { - bottom: -20rem !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\:-left-80 { - left: -20rem !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\:-top-96 { - top: -24rem !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\:-right-96 { - right: -24rem !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\:-bottom-96 { - bottom: -24rem !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\:-left-96 { - left: -24rem !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\:-top-px { - top: -1px !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\:-right-px { - right: -1px !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\:-bottom-px { - bottom: -1px !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\:-left-px { - left: -1px !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\:-top-0\.5 { - top: -0.125rem !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\:-right-0\.5 { - right: -0.125rem !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\:-bottom-0\.5 { - bottom: -0.125rem !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\:-left-0\.5 { - left: -0.125rem !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\:-top-1\.5 { - top: -0.375rem !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\:-right-1\.5 { - right: -0.375rem !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\:-bottom-1\.5 { - bottom: -0.375rem !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\:-left-1\.5 { - left: -0.375rem !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\:-top-2\.5 { - top: -0.625rem !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\:-right-2\.5 { - right: -0.625rem !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\:-bottom-2\.5 { - bottom: -0.625rem !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\:-left-2\.5 { - left: -0.625rem !important; + .xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; } - .xl\:-top-3\.5 { - top: -0.875rem !important; + .xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; } - .xl\:-right-3\.5 { - right: -0.875rem !important; + .xl\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; } - .xl\:-bottom-3\.5 { - bottom: -0.875rem !important; + .xl\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; } - .xl\:-left-3\.5 { - left: -0.875rem !important; + .xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; } - .xl\:top-1\/2 { - top: 50% !important; + .xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; } - .xl\:right-1\/2 { - right: 50% !important; + .xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; } - .xl\:bottom-1\/2 { - bottom: 50% !important; + .xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; } - .xl\:left-1\/2 { - left: 50% !important; + .xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; } - .xl\:top-1\/3 { - top: 33.333333% !important; + .xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; } - .xl\:right-1\/3 { - right: 33.333333% !important; + .xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; } - .xl\:bottom-1\/3 { - bottom: 33.333333% !important; + .xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; } - .xl\:left-1\/3 { - left: 33.333333% !important; + .xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; } - .xl\:top-2\/3 { - top: 66.666667% !important; + .xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; } - .xl\:right-2\/3 { - right: 66.666667% !important; + .xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; } - .xl\:bottom-2\/3 { - bottom: 66.666667% !important; + .xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; } - .xl\:left-2\/3 { - left: 66.666667% !important; + .xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; } - .xl\:top-1\/4 { - top: 25% !important; + .xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; } - .xl\:right-1\/4 { - right: 25% !important; + .xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; } - .xl\:bottom-1\/4 { - bottom: 25% !important; + .xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; } - .xl\:left-1\/4 { - left: 25% !important; + .xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; } - .xl\:top-2\/4 { - top: 50% !important; + .xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; } - .xl\:right-2\/4 { - right: 50% !important; + .xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; } - .xl\:bottom-2\/4 { - bottom: 50% !important; + .xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; } - .xl\:left-2\/4 { - left: 50% !important; + .xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; } - .xl\:top-3\/4 { - top: 75% !important; + .xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; } - .xl\:right-3\/4 { - right: 75% !important; + .xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; } - .xl\:bottom-3\/4 { - bottom: 75% !important; + .xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; } - .xl\:left-3\/4 { - left: 75% !important; + .xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; } - .xl\:top-full { - top: 100% !important; + .xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; } - .xl\:right-full { - right: 100% !important; + .xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; } - .xl\:bottom-full { - bottom: 100% !important; + .xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; } - .xl\:left-full { - left: 100% !important; + .xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; } - .xl\:-top-1\/2 { - top: -50% !important; + .xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; } - .xl\:-right-1\/2 { - right: -50% !important; + .xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; } - .xl\:-bottom-1\/2 { - bottom: -50% !important; + .xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; } - .xl\:-left-1\/2 { - left: -50% !important; + .xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; } - .xl\:-top-1\/3 { - top: -33.333333% !important; + .xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; } - .xl\:-right-1\/3 { - right: -33.333333% !important; + .xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; } - .xl\:-bottom-1\/3 { - bottom: -33.333333% !important; + .xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; } - .xl\:-left-1\/3 { - left: -33.333333% !important; + .xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; } - .xl\:-top-2\/3 { - top: -66.666667% !important; + .xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; } - .xl\:-right-2\/3 { - right: -66.666667% !important; + .xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; } - .xl\:-bottom-2\/3 { - bottom: -66.666667% !important; + .xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; } - .xl\:-left-2\/3 { - left: -66.666667% !important; + .xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; } - .xl\:-top-1\/4 { - top: -25% !important; + .xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; } - .xl\:-right-1\/4 { - right: -25% !important; + .xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; } - .xl\:-bottom-1\/4 { - bottom: -25% !important; + .xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; } - .xl\:-left-1\/4 { - left: -25% !important; + .xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; } - .xl\:-top-2\/4 { - top: -50% !important; + .xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; } - .xl\:-right-2\/4 { - right: -50% !important; + .xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; } - .xl\:-bottom-2\/4 { - bottom: -50% !important; + .xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; } - .xl\:-left-2\/4 { - left: -50% !important; + .xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; } - .xl\:-top-3\/4 { - top: -75% !important; + .xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; } - .xl\:-right-3\/4 { - right: -75% !important; + .xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; } - .xl\:-bottom-3\/4 { - bottom: -75% !important; + .xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; } - .xl\:-left-3\/4 { - left: -75% !important; + .xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; } - .xl\:-top-full { - top: -100% !important; + .xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; } - .xl\:-right-full { - right: -100% !important; + .xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; } - .xl\:-bottom-full { - bottom: -100% !important; + .xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; } - .xl\:-left-full { - left: -100% !important; + .xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; } - .xl\:resize-none { - resize: none !important; + .xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; } - .xl\:resize-y { - resize: vertical !important; + .xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; } - .xl\:resize-x { - resize: horizontal !important; + .xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; } - .xl\:resize { - resize: both !important; + .xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; } - .xl\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; } - .xl\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; } - .xl\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; } - .xl\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; } - .xl\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; } - .xl\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; } - .xl\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; } - .xl\:shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; } - .group:hover .xl\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; } - .group:hover .xl\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; } - .group:hover .xl\:group-hover\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; } - .group:hover .xl\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; } - .group:hover .xl\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; } - .group:hover .xl\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; } - .group:hover .xl\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; } - .group:hover .xl\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; } - .xl\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; } - .xl\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; } - .xl\:focus-within\:shadow-md:focus-within { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; } - .xl\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-md:hover { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-none:hover { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-md:focus { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:ring-0 { - --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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-1 { - --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-2 { - --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-4 { - --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-8 { - --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring { - --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-inset { - --tw-ring-inset: inset !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\: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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset !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\: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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring: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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-inset:focus { - --tw-ring-inset: inset !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\:ring-offset-transparent { - --tw-ring-offset-color: transparent !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\:ring-offset-current { - --tw-ring-offset-color: currentColor !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\:ring-offset-black { - --tw-ring-offset-color: #000 !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\:ring-offset-white { - --tw-ring-offset-color: #fff !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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb !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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6 !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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb !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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db !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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af !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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280 !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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563 !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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151 !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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937 !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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827 !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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2 !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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2 !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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca !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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5 !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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171 !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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444 !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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626 !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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c !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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b !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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d !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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb !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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7 !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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a !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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d !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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24 !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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b !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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706 !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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309 !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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e !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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f !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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5 !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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5 !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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0 !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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7 !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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399 !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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981 !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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669 !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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857 !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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46 !important; + .xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b !important; + .xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff !important; + .xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe !important; + .xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe !important; + .xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .xl\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd !important; + .xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .xl\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa !important; + .xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .xl\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6 !important; + .xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .xl\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb !important; + .xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .xl\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8 !important; + .xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .xl\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af !important; + .xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .xl\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a !important; + .xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .xl\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff !important; + .xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .xl\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff !important; + .xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .xl\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe !important; + .xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .xl\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc !important; + .xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .xl\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8 !important; + .xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .xl\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1 !important; + .xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .xl\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5 !important; + .xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .xl\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca !important; + .xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .xl\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3 !important; + .xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .xl\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81 !important; + .xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .xl\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff !important; + .xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .xl\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe !important; + .xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .xl\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe !important; + .xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .xl\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd !important; + .xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .xl\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa !important; + .xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .xl\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6 !important; + .xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .xl\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed !important; + .xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .xl\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9 !important; + .xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .xl\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6 !important; + .xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .xl\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95 !important; + .xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .xl\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8 !important; + .xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .xl\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3 !important; + .xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .xl\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8 !important; + .xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .xl\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4 !important; + .xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .xl\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6 !important; + .xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .xl\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899 !important; + .xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .xl\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777 !important; + .xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .xl\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d !important; + .xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .xl\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d !important; + .xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .xl\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843 !important; + .xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .xl\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent !important; + .xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .xl\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor !important; + .xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .xl\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000 !important; + .xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .xl\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff !important; + .xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .xl\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb !important; + .xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .xl\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6 !important; + .xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .xl\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb !important; + .xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .xl\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db !important; + .xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .xl\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af !important; + .xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .xl\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280 !important; + .xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .xl\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563 !important; + .xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .xl\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151 !important; + .xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .xl\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937 !important; + .xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .xl\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827 !important; + .xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .xl\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2 !important; + .xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .xl\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2 !important; + .xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .xl\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca !important; + .xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .xl\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5 !important; + .xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .xl\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171 !important; + .xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .xl\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444 !important; + .xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .xl\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626 !important; + .xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .xl\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c !important; + .xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .xl\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b !important; + .xl\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .xl\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d !important; + .xl\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .xl\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb !important; + .xl\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .xl\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7 !important; + .xl\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .xl\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a !important; + .xl\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .xl\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d !important; + .xl\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .xl\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24 !important; + .xl\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .xl\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b !important; + .xl\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .xl\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706 !important; + .xl\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .xl\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309 !important; + .xl\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .xl\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e !important; + .xl\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .xl\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f !important; + .xl\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .xl\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5 !important; + .xl\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .xl\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5 !important; + .xl\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .xl\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0 !important; + .xl\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .xl\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7 !important; + .xl\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .xl\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399 !important; + .xl\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .xl\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981 !important; + .xl\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .xl\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669 !important; + .xl\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .xl\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857 !important; + .xl\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .xl\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46 !important; + .xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; } - .xl\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b !important; + .xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor !important; } - .xl\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff !important; + .xl\:focus\:to-black:focus { + --tw-gradient-to: #000 !important; } - .xl\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe !important; + .xl\:focus\:to-white:focus { + --tw-gradient-to: #fff !important; } - .xl\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe !important; + .xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; } - .xl\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd !important; + .xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; } - .xl\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa !important; + .xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; } - .xl\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6 !important; + .xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; } - .xl\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb !important; + .xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; } - .xl\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8 !important; + .xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; } - .xl\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af !important; + .xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; } - .xl\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a !important; + .xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; } - .xl\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff !important; + .xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; } - .xl\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff !important; + .xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; } - .xl\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe !important; + .xl\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; } - .xl\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc !important; + .xl\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; } - .xl\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8 !important; + .xl\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; } - .xl\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1 !important; + .xl\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; } - .xl\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5 !important; + .xl\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; } - .xl\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca !important; + .xl\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; } - .xl\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3 !important; + .xl\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; } - .xl\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81 !important; + .xl\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; } - .xl\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff !important; + .xl\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; } - .xl\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe !important; + .xl\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; } - .xl\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe !important; + .xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; } - .xl\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd !important; + .xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; } - .xl\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa !important; + .xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; } - .xl\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6 !important; + .xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; } - .xl\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed !important; + .xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; } - .xl\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9 !important; + .xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; } - .xl\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6 !important; + .xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; } - .xl\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95 !important; + .xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; } - .xl\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8 !important; + .xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; } - .xl\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3 !important; + .xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; } - .xl\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8 !important; + .xl\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; } - .xl\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4 !important; + .xl\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; } - .xl\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6 !important; + .xl\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; } - .xl\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899 !important; + .xl\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; } - .xl\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777 !important; + .xl\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; } - .xl\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d !important; + .xl\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; } - .xl\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d !important; + .xl\:focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; } - .xl\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843 !important; + .xl\:focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; } - .xl\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent !important; + .xl\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; } - .xl\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor !important; + .xl\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; } - .xl\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000 !important; + .xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; } - .xl\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff !important; + .xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; } - .xl\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb !important; + .xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; } - .xl\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6 !important; + .xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; } - .xl\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb !important; + .xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; } - .xl\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db !important; + .xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; } - .xl\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af !important; + .xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; } - .xl\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280 !important; + .xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; } - .xl\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563 !important; + .xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; } - .xl\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151 !important; + .xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; } - .xl\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937 !important; + .xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; } - .xl\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827 !important; + .xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; } - .xl\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2 !important; + .xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; } - .xl\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2 !important; + .xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; } - .xl\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca !important; + .xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; } - .xl\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5 !important; + .xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; } - .xl\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171 !important; + .xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; } - .xl\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444 !important; + .xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; } - .xl\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626 !important; + .xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; } - .xl\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c !important; + .xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; } - .xl\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b !important; + .xl\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; } - .xl\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d !important; + .xl\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; } - .xl\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb !important; + .xl\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; } - .xl\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7 !important; + .xl\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; } - .xl\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a !important; + .xl\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; } - .xl\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d !important; + .xl\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; } - .xl\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24 !important; + .xl\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; } - .xl\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b !important; + .xl\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; } - .xl\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706 !important; + .xl\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; } - .xl\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309 !important; + .xl\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; } - .xl\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e !important; + .xl\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; } - .xl\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f !important; + .xl\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; } - .xl\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5 !important; + .xl\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; } - .xl\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5 !important; + .xl\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; } - .xl\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0 !important; + .xl\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; } - .xl\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7 !important; + .xl\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; } - .xl\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399 !important; + .xl\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; } - .xl\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981 !important; + .xl\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; } - .xl\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669 !important; + .xl\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; } - .xl\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857 !important; + .xl\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; } - .xl\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46 !important; + .xl\:decoration-slice { + box-decoration-break: slice !important; } - .xl\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b !important; + .xl\:decoration-clone { + box-decoration-break: clone !important; } - .xl\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff !important; + .xl\:bg-auto { + background-size: auto !important; } - .xl\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe !important; + .xl\:bg-cover { + background-size: cover !important; } - .xl\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe !important; + .xl\:bg-contain { + background-size: contain !important; } - .xl\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd !important; + .xl\:bg-fixed { + background-attachment: fixed !important; } - .xl\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa !important; + .xl\:bg-local { + background-attachment: local !important; } - .xl\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6 !important; + .xl\:bg-scroll { + background-attachment: scroll !important; } - .xl\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb !important; + .xl\:bg-clip-border { + background-clip: border-box !important; } - .xl\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8 !important; + .xl\:bg-clip-padding { + background-clip: padding-box !important; } - .xl\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af !important; + .xl\:bg-clip-content { + background-clip: content-box !important; } - .xl\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a !important; + .xl\:bg-clip-text { + background-clip: text !important; } - .xl\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff !important; + .xl\:bg-bottom { + background-position: bottom !important; } - .xl\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff !important; + .xl\:bg-center { + background-position: center !important; } - .xl\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe !important; + .xl\:bg-left { + background-position: left !important; } - .xl\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc !important; + .xl\:bg-left-bottom { + background-position: left bottom !important; } - .xl\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8 !important; + .xl\:bg-left-top { + background-position: left top !important; } - .xl\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1 !important; + .xl\:bg-right { + background-position: right !important; } - .xl\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5 !important; + .xl\:bg-right-bottom { + background-position: right bottom !important; } - .xl\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca !important; + .xl\:bg-right-top { + background-position: right top !important; } - .xl\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3 !important; + .xl\:bg-top { + background-position: top !important; } - .xl\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81 !important; + .xl\:bg-repeat { + background-repeat: repeat !important; } - .xl\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff !important; + .xl\:bg-no-repeat { + background-repeat: no-repeat !important; } - .xl\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe !important; + .xl\:bg-repeat-x { + background-repeat: repeat-x !important; } - .xl\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe !important; + .xl\:bg-repeat-y { + background-repeat: repeat-y !important; } - .xl\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd !important; + .xl\:bg-repeat-round { + background-repeat: round !important; } - .xl\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa !important; + .xl\:bg-repeat-space { + background-repeat: space !important; } - .xl\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6 !important; + .xl\:bg-origin-border { + background-origin: border-box !important; } - .xl\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed !important; + .xl\:bg-origin-padding { + background-origin: padding-box !important; } - .xl\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9 !important; + .xl\:bg-origin-content { + background-origin: content-box !important; } - .xl\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6 !important; + .xl\:fill-current { + fill: currentColor !important; } - .xl\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95 !important; + .xl\:stroke-current { + stroke: currentColor !important; } - .xl\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8 !important; + .xl\:stroke-0 { + stroke-width: 0 !important; } - .xl\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3 !important; + .xl\:stroke-1 { + stroke-width: 1 !important; } - .xl\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8 !important; + .xl\:stroke-2 { + stroke-width: 2 !important; } - .xl\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4 !important; + .xl\:object-contain { + object-fit: contain !important; } - .xl\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6 !important; + .xl\:object-cover { + object-fit: cover !important; } - .xl\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899 !important; + .xl\:object-fill { + object-fit: fill !important; } - .xl\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777 !important; + .xl\:object-none { + object-fit: none !important; } - .xl\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d !important; + .xl\:object-scale-down { + object-fit: scale-down !important; } - .xl\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d !important; + .xl\:object-bottom { + object-position: bottom !important; } - .xl\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843 !important; + .xl\:object-center { + object-position: center !important; } - .xl\:ring-offset-0 { - --tw-ring-offset-width: 0px !important; + .xl\:object-left { + object-position: left !important; } - .xl\:ring-offset-1 { - --tw-ring-offset-width: 1px !important; + .xl\:object-left-bottom { + object-position: left bottom !important; } - .xl\:ring-offset-2 { - --tw-ring-offset-width: 2px !important; + .xl\:object-left-top { + object-position: left top !important; } - .xl\:ring-offset-4 { - --tw-ring-offset-width: 4px !important; + .xl\:object-right { + object-position: right !important; } - .xl\:ring-offset-8 { - --tw-ring-offset-width: 8px !important; + .xl\:object-right-bottom { + object-position: right bottom !important; } - .xl\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px !important; + .xl\:object-right-top { + object-position: right top !important; } - .xl\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px !important; + .xl\:object-top { + object-position: top !important; } - .xl\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px !important; + .xl\:p-0 { + padding: 0px !important; } - .xl\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px !important; + .xl\:p-1 { + padding: 0.25rem !important; } - .xl\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px !important; + .xl\:p-2 { + padding: 0.5rem !important; } - .xl\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px !important; + .xl\:p-3 { + padding: 0.75rem !important; } - .xl\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px !important; + .xl\:p-4 { + padding: 1rem !important; } - .xl\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px !important; + .xl\:p-5 { + padding: 1.25rem !important; } - .xl\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px !important; + .xl\:p-6 { + padding: 1.5rem !important; } - .xl\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px !important; + .xl\:p-7 { + padding: 1.75rem !important; } - .xl\:ring-transparent { - --tw-ring-color: transparent !important; + .xl\:p-8 { + padding: 2rem !important; } - .xl\:ring-current { - --tw-ring-color: currentColor !important; + .xl\:p-9 { + padding: 2.25rem !important; } - .xl\:ring-black { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .xl\:p-10 { + padding: 2.5rem !important; } - .xl\:ring-white { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .xl\:p-11 { + padding: 2.75rem !important; } - .xl\:ring-gray-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .xl\:p-12 { + padding: 3rem !important; } - .xl\:ring-gray-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .xl\:p-14 { + padding: 3.5rem !important; } - .xl\:ring-gray-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .xl\:p-16 { + padding: 4rem !important; } - .xl\:ring-gray-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .xl\:p-20 { + padding: 5rem !important; } - .xl\:ring-gray-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .xl\:p-24 { + padding: 6rem !important; } - .xl\:ring-gray-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .xl\:p-28 { + padding: 7rem !important; } - .xl\:ring-gray-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .xl\:p-32 { + padding: 8rem !important; } - .xl\:ring-gray-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .xl\:p-36 { + padding: 9rem !important; } - .xl\:ring-gray-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .xl\:p-40 { + padding: 10rem !important; } - .xl\:ring-gray-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .xl\:p-44 { + padding: 11rem !important; } - .xl\:ring-red-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .xl\:p-48 { + padding: 12rem !important; } - .xl\:ring-red-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .xl\:p-52 { + padding: 13rem !important; } - .xl\:ring-red-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .xl\:p-56 { + padding: 14rem !important; } - .xl\:ring-red-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .xl\:p-60 { + padding: 15rem !important; } - .xl\:ring-red-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .xl\:p-64 { + padding: 16rem !important; } - .xl\:ring-red-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .xl\:p-72 { + padding: 18rem !important; } - .xl\:ring-red-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .xl\:p-80 { + padding: 20rem !important; } - .xl\:ring-red-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .xl\:p-96 { + padding: 24rem !important; } - .xl\:ring-red-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .xl\:p-px { + padding: 1px !important; } - .xl\:ring-red-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .xl\:p-0\.5 { + padding: 0.125rem !important; } - .xl\:ring-yellow-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .xl\:p-1\.5 { + padding: 0.375rem !important; } - .xl\:ring-yellow-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .xl\:p-2\.5 { + padding: 0.625rem !important; } - .xl\:ring-yellow-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .xl\:p-3\.5 { + padding: 0.875rem !important; } - .xl\:ring-yellow-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .xl\:px-0 { + padding-left: 0px !important; + padding-right: 0px !important; } - .xl\:ring-yellow-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .xl\:px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; } - .xl\:ring-yellow-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .xl\:px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; } - .xl\:ring-yellow-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .xl\:px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; } - .xl\:ring-yellow-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .xl\:px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; } - .xl\:ring-yellow-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .xl\:px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; } - .xl\:ring-yellow-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .xl\:px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; } - .xl\:ring-green-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .xl\:px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; } - .xl\:ring-green-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .xl\:px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; } - .xl\:ring-green-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .xl\:px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; } - .xl\:ring-green-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .xl\:px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; } - .xl\:ring-green-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .xl\:px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; } - .xl\:ring-green-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .xl\:px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; } - .xl\:ring-green-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .xl\:px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; } - .xl\:ring-green-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .xl\:px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; } - .xl\:ring-green-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .xl\:px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; } - .xl\:ring-green-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .xl\:px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; } - .xl\:ring-blue-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .xl\:px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; } - .xl\:ring-blue-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .xl\:px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; } - .xl\:ring-blue-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .xl\:px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; } - .xl\:ring-blue-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .xl\:px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; } - .xl\:ring-blue-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .xl\:px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; } - .xl\:ring-blue-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .xl\:px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; } - .xl\:ring-blue-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .xl\:px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; } - .xl\:ring-blue-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .xl\:px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; } - .xl\:ring-blue-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .xl\:px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; } - .xl\:ring-blue-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .xl\:px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; } - .xl\:ring-indigo-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .xl\:px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; } - .xl\:ring-indigo-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .xl\:px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; } - .xl\:ring-indigo-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .xl\:px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; } - .xl\:ring-indigo-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .xl\:px-px { + padding-left: 1px !important; + padding-right: 1px !important; } - .xl\:ring-indigo-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .xl\:px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; } - .xl\:ring-indigo-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .xl\:px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; } - .xl\:ring-indigo-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .xl\:px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; } - .xl\:ring-indigo-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .xl\:px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; } - .xl\:ring-indigo-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .xl\:py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; } - .xl\:ring-indigo-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .xl\:py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } - .xl\:ring-purple-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .xl\:py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } - .xl\:ring-purple-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .xl\:py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; } - .xl\:ring-purple-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .xl\:py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } - .xl\:ring-purple-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .xl\:py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; } - .xl\:ring-purple-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .xl\:py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } - .xl\:ring-purple-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .xl\:py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; } - .xl\:ring-purple-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .xl\:py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; } - .xl\:ring-purple-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .xl\:py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; } - .xl\:ring-purple-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .xl\:py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; } - .xl\:ring-purple-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .xl\:py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; } - .xl\:ring-pink-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .xl\:py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } - .xl\:ring-pink-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .xl\:py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; } - .xl\:ring-pink-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .xl\:py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; } - .xl\:ring-pink-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .xl\:py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; } - .xl\:ring-pink-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .xl\:py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; } - .xl\:ring-pink-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .xl\:py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; } - .xl\:ring-pink-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .xl\:py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; } - .xl\:ring-pink-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .xl\:py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; } - .xl\:ring-pink-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .xl\:py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; } - .xl\:ring-pink-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .xl\:py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; } - .xl\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent !important; + .xl\:py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; } - .xl\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor !important; + .xl\:py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; } - .xl\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .xl\:py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; } - .xl\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .xl\:py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; } - .xl\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .xl\:py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; } - .xl\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .xl\:py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; } - .xl\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .xl\:py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; } - .xl\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .xl\:py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; } - .xl\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .xl\:py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; } - .xl\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .xl\:py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; } - .xl\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .xl\:py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; } - .xl\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .xl\:py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; } - .xl\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .xl\:py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; } - .xl\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .xl\:pt-0 { + padding-top: 0px !important; } - .xl\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .xl\:pt-1 { + padding-top: 0.25rem !important; } - .xl\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .xl\:pt-2 { + padding-top: 0.5rem !important; } - .xl\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .xl\:pt-3 { + padding-top: 0.75rem !important; } - .xl\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .xl\:pt-4 { + padding-top: 1rem !important; } - .xl\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .xl\:pt-5 { + padding-top: 1.25rem !important; } - .xl\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .xl\:pt-6 { + padding-top: 1.5rem !important; } - .xl\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .xl\:pt-7 { + padding-top: 1.75rem !important; } - .xl\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .xl\:pt-8 { + padding-top: 2rem !important; } - .xl\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .xl\:pt-9 { + padding-top: 2.25rem !important; } - .xl\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .xl\:pt-10 { + padding-top: 2.5rem !important; } - .xl\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .xl\:pt-11 { + padding-top: 2.75rem !important; } - .xl\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .xl\:pt-12 { + padding-top: 3rem !important; } - .xl\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .xl\:pt-14 { + padding-top: 3.5rem !important; } - .xl\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .xl\:pt-16 { + padding-top: 4rem !important; } - .xl\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .xl\:pt-20 { + padding-top: 5rem !important; } - .xl\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .xl\:pt-24 { + padding-top: 6rem !important; } - .xl\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .xl\:pt-28 { + padding-top: 7rem !important; } - .xl\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .xl\:pt-32 { + padding-top: 8rem !important; } - .xl\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .xl\:pt-36 { + padding-top: 9rem !important; } - .xl\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .xl\:pt-40 { + padding-top: 10rem !important; } - .xl\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .xl\:pt-44 { + padding-top: 11rem !important; } - .xl\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .xl\:pt-48 { + padding-top: 12rem !important; } - .xl\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .xl\:pt-52 { + padding-top: 13rem !important; } - .xl\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .xl\:pt-56 { + padding-top: 14rem !important; } - .xl\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .xl\:pt-60 { + padding-top: 15rem !important; } - .xl\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .xl\:pt-64 { + padding-top: 16rem !important; } - .xl\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .xl\:pt-72 { + padding-top: 18rem !important; } - .xl\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .xl\:pt-80 { + padding-top: 20rem !important; } - .xl\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .xl\:pt-96 { + padding-top: 24rem !important; } - .xl\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .xl\:pt-px { + padding-top: 1px !important; } - .xl\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .xl\:pt-0\.5 { + padding-top: 0.125rem !important; } - .xl\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .xl\:pt-1\.5 { + padding-top: 0.375rem !important; } - .xl\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .xl\:pt-2\.5 { + padding-top: 0.625rem !important; } - .xl\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .xl\:pt-3\.5 { + padding-top: 0.875rem !important; } - .xl\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .xl\:pr-0 { + padding-right: 0px !important; } - .xl\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .xl\:pr-1 { + padding-right: 0.25rem !important; } - .xl\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .xl\:pr-2 { + padding-right: 0.5rem !important; } - .xl\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .xl\:pr-3 { + padding-right: 0.75rem !important; } - .xl\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .xl\:pr-4 { + padding-right: 1rem !important; } - .xl\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .xl\:pr-5 { + padding-right: 1.25rem !important; } - .xl\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .xl\:pr-6 { + padding-right: 1.5rem !important; } - .xl\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .xl\:pr-7 { + padding-right: 1.75rem !important; } - .xl\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .xl\:pr-8 { + padding-right: 2rem !important; } - .xl\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .xl\:pr-9 { + padding-right: 2.25rem !important; } - .xl\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .xl\:pr-10 { + padding-right: 2.5rem !important; } - .xl\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .xl\:pr-11 { + padding-right: 2.75rem !important; } - .xl\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .xl\:pr-12 { + padding-right: 3rem !important; } - .xl\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .xl\:pr-14 { + padding-right: 3.5rem !important; } - .xl\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .xl\:pr-16 { + padding-right: 4rem !important; } - .xl\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .xl\:pr-20 { + padding-right: 5rem !important; } - .xl\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .xl\:pr-24 { + padding-right: 6rem !important; } - .xl\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .xl\:pr-28 { + padding-right: 7rem !important; } - .xl\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .xl\:pr-32 { + padding-right: 8rem !important; } - .xl\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .xl\:pr-36 { + padding-right: 9rem !important; } - .xl\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .xl\:pr-40 { + padding-right: 10rem !important; } - .xl\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .xl\:pr-44 { + padding-right: 11rem !important; } - .xl\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .xl\:pr-48 { + padding-right: 12rem !important; } - .xl\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .xl\:pr-52 { + padding-right: 13rem !important; } - .xl\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .xl\:pr-56 { + padding-right: 14rem !important; } - .xl\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .xl\:pr-60 { + padding-right: 15rem !important; } - .xl\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .xl\:pr-64 { + padding-right: 16rem !important; } - .xl\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .xl\:pr-72 { + padding-right: 18rem !important; } - .xl\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .xl\:pr-80 { + padding-right: 20rem !important; } - .xl\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .xl\:pr-96 { + padding-right: 24rem !important; } - .xl\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .xl\:pr-px { + padding-right: 1px !important; } - .xl\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .xl\:pr-0\.5 { + padding-right: 0.125rem !important; } - .xl\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .xl\:pr-1\.5 { + padding-right: 0.375rem !important; } - .xl\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .xl\:pr-2\.5 { + padding-right: 0.625rem !important; } - .xl\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .xl\:pr-3\.5 { + padding-right: 0.875rem !important; } - .xl\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .xl\:pb-0 { + padding-bottom: 0px !important; } - .xl\:focus\:ring-transparent:focus { - --tw-ring-color: transparent !important; + .xl\:pb-1 { + padding-bottom: 0.25rem !important; } - .xl\:focus\:ring-current:focus { - --tw-ring-color: currentColor !important; + .xl\:pb-2 { + padding-bottom: 0.5rem !important; } - .xl\:focus\:ring-black:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .xl\:pb-3 { + padding-bottom: 0.75rem !important; } - .xl\:focus\:ring-white:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .xl\:pb-4 { + padding-bottom: 1rem !important; } - .xl\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .xl\:pb-5 { + padding-bottom: 1.25rem !important; } - .xl\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .xl\:pb-6 { + padding-bottom: 1.5rem !important; } - .xl\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .xl\:pb-7 { + padding-bottom: 1.75rem !important; } - .xl\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .xl\:pb-8 { + padding-bottom: 2rem !important; } - .xl\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .xl\:pb-9 { + padding-bottom: 2.25rem !important; } - .xl\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .xl\:pb-10 { + padding-bottom: 2.5rem !important; } - .xl\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .xl\:pb-11 { + padding-bottom: 2.75rem !important; } - .xl\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .xl\:pb-12 { + padding-bottom: 3rem !important; } - .xl\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .xl\:pb-14 { + padding-bottom: 3.5rem !important; } - .xl\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .xl\:pb-16 { + padding-bottom: 4rem !important; } - .xl\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .xl\:pb-20 { + padding-bottom: 5rem !important; } - .xl\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .xl\:pb-24 { + padding-bottom: 6rem !important; } - .xl\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .xl\:pb-28 { + padding-bottom: 7rem !important; } - .xl\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .xl\:pb-32 { + padding-bottom: 8rem !important; } - .xl\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .xl\:pb-36 { + padding-bottom: 9rem !important; } - .xl\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .xl\:pb-40 { + padding-bottom: 10rem !important; } - .xl\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .xl\:pb-44 { + padding-bottom: 11rem !important; } - .xl\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .xl\:pb-48 { + padding-bottom: 12rem !important; } - .xl\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .xl\:pb-52 { + padding-bottom: 13rem !important; } - .xl\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .xl\:pb-56 { + padding-bottom: 14rem !important; } - .xl\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .xl\:pb-60 { + padding-bottom: 15rem !important; } - .xl\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .xl\:pb-64 { + padding-bottom: 16rem !important; } - .xl\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .xl\:pb-72 { + padding-bottom: 18rem !important; } - .xl\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .xl\:pb-80 { + padding-bottom: 20rem !important; } - .xl\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .xl\:pb-96 { + padding-bottom: 24rem !important; } - .xl\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .xl\:pb-px { + padding-bottom: 1px !important; } - .xl\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .xl\:pb-0\.5 { + padding-bottom: 0.125rem !important; } - .xl\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .xl\:pb-1\.5 { + padding-bottom: 0.375rem !important; } - .xl\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .xl\:pb-2\.5 { + padding-bottom: 0.625rem !important; } - .xl\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .xl\:pb-3\.5 { + padding-bottom: 0.875rem !important; } - .xl\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .xl\:pl-0 { + padding-left: 0px !important; } - .xl\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .xl\:pl-1 { + padding-left: 0.25rem !important; } - .xl\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .xl\:pl-2 { + padding-left: 0.5rem !important; } - .xl\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .xl\:pl-3 { + padding-left: 0.75rem !important; } - .xl\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .xl\:pl-4 { + padding-left: 1rem !important; } - .xl\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .xl\:pl-5 { + padding-left: 1.25rem !important; } - .xl\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .xl\:pl-6 { + padding-left: 1.5rem !important; } - .xl\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .xl\:pl-7 { + padding-left: 1.75rem !important; } - .xl\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .xl\:pl-8 { + padding-left: 2rem !important; } - .xl\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .xl\:pl-9 { + padding-left: 2.25rem !important; } - .xl\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .xl\:pl-10 { + padding-left: 2.5rem !important; } - .xl\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .xl\:pl-11 { + padding-left: 2.75rem !important; } - .xl\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .xl\:pl-12 { + padding-left: 3rem !important; } - .xl\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .xl\:pl-14 { + padding-left: 3.5rem !important; } - .xl\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .xl\:pl-16 { + padding-left: 4rem !important; } - .xl\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .xl\:pl-20 { + padding-left: 5rem !important; } - .xl\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .xl\:pl-24 { + padding-left: 6rem !important; } - .xl\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .xl\:pl-28 { + padding-left: 7rem !important; } - .xl\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .xl\:pl-32 { + padding-left: 8rem !important; } - .xl\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .xl\:pl-36 { + padding-left: 9rem !important; } - .xl\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .xl\:pl-40 { + padding-left: 10rem !important; } - .xl\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .xl\:pl-44 { + padding-left: 11rem !important; } - .xl\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .xl\:pl-48 { + padding-left: 12rem !important; } - .xl\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .xl\:pl-52 { + padding-left: 13rem !important; } - .xl\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .xl\:pl-56 { + padding-left: 14rem !important; } - .xl\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .xl\:pl-60 { + padding-left: 15rem !important; } - .xl\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .xl\:pl-64 { + padding-left: 16rem !important; } - .xl\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .xl\:pl-72 { + padding-left: 18rem !important; } - .xl\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .xl\:pl-80 { + padding-left: 20rem !important; } - .xl\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .xl\:pl-96 { + padding-left: 24rem !important; } - .xl\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .xl\:pl-px { + padding-left: 1px !important; } - .xl\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .xl\:pl-0\.5 { + padding-left: 0.125rem !important; } - .xl\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .xl\:pl-1\.5 { + padding-left: 0.375rem !important; } - .xl\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .xl\:pl-2\.5 { + padding-left: 0.625rem !important; } - .xl\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .xl\:pl-3\.5 { + padding-left: 0.875rem !important; } - .xl\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .xl\:text-left { + text-align: left !important; } - .xl\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .xl\:text-center { + text-align: center !important; } - .xl\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .xl\:text-right { + text-align: right !important; } - .xl\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .xl\:text-justify { + text-align: justify !important; } - .xl\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .xl\:align-baseline { + vertical-align: baseline !important; } - .xl\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .xl\:align-top { + vertical-align: top !important; } - .xl\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .xl\:align-middle { + vertical-align: middle !important; } - .xl\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .xl\:align-bottom { + vertical-align: bottom !important; } - .xl\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .xl\:align-text-top { + vertical-align: text-top !important; } - .xl\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .xl\:align-text-bottom { + vertical-align: text-bottom !important; } - .xl\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .xl\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; } - .xl\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; } - .xl\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; } - .xl\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .xl\:text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; } - .xl\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .xl\:text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; } - .xl\:ring-opacity-0 { - --tw-ring-opacity: 0 !important; + .xl\:text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; } - .xl\:ring-opacity-5 { - --tw-ring-opacity: 0.05 !important; + .xl\:text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; } - .xl\:ring-opacity-10 { - --tw-ring-opacity: 0.1 !important; + .xl\:text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; } - .xl\:ring-opacity-20 { - --tw-ring-opacity: 0.2 !important; + .xl\:text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; } - .xl\:ring-opacity-25 { - --tw-ring-opacity: 0.25 !important; + .xl\:text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; } - .xl\:ring-opacity-30 { - --tw-ring-opacity: 0.3 !important; + .xl\:text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; } - .xl\:ring-opacity-40 { - --tw-ring-opacity: 0.4 !important; + .xl\:text-5xl { + font-size: 3rem !important; + line-height: 1 !important; } - .xl\:ring-opacity-50 { - --tw-ring-opacity: 0.5 !important; + .xl\:text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; } - .xl\:ring-opacity-60 { - --tw-ring-opacity: 0.6 !important; + .xl\:text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; } - .xl\:ring-opacity-70 { - --tw-ring-opacity: 0.7 !important; + .xl\:text-8xl { + font-size: 6rem !important; + line-height: 1 !important; } - .xl\:ring-opacity-75 { - --tw-ring-opacity: 0.75 !important; + .xl\:text-9xl { + font-size: 8rem !important; + line-height: 1 !important; } - .xl\:ring-opacity-80 { - --tw-ring-opacity: 0.8 !important; + .xl\:font-thin { + font-weight: 100 !important; } - .xl\:ring-opacity-90 { - --tw-ring-opacity: 0.9 !important; + .xl\:font-extralight { + font-weight: 200 !important; } - .xl\:ring-opacity-95 { - --tw-ring-opacity: 0.95 !important; + .xl\:font-light { + font-weight: 300 !important; } - .xl\:ring-opacity-100 { - --tw-ring-opacity: 1 !important; + .xl\:font-normal { + font-weight: 400 !important; } - .xl\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0 !important; + .xl\:font-medium { + font-weight: 500 !important; } - .xl\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05 !important; + .xl\:font-semibold { + font-weight: 600 !important; } - .xl\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1 !important; + .xl\:font-bold { + font-weight: 700 !important; } - .xl\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2 !important; + .xl\:font-extrabold { + font-weight: 800 !important; } - .xl\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25 !important; + .xl\:font-black { + font-weight: 900 !important; } - .xl\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3 !important; + .xl\:uppercase { + text-transform: uppercase !important; } - .xl\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4 !important; + .xl\:lowercase { + text-transform: lowercase !important; } - .xl\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5 !important; + .xl\:capitalize { + text-transform: capitalize !important; } - .xl\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6 !important; + .xl\:normal-case { + text-transform: none !important; } - .xl\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7 !important; + .xl\:italic { + font-style: italic !important; } - .xl\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75 !important; + .xl\:not-italic { + font-style: normal !important; } - .xl\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8 !important; + .xl\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; } - .xl\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9 !important; + .xl\:normal-nums { + font-variant-numeric: normal !important; } - .xl\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95 !important; + .xl\:ordinal { + --tw-ordinal: ordinal !important; } - .xl\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1 !important; + .xl\:slashed-zero { + --tw-slashed-zero: slashed-zero !important; } - .xl\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0 !important; + .xl\:lining-nums { + --tw-numeric-figure: lining-nums !important; } - .xl\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05 !important; + .xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; } - .xl\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1 !important; + .xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums !important; } - .xl\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2 !important; + .xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums !important; } - .xl\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25 !important; + .xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; } - .xl\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3 !important; + .xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; } - .xl\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4 !important; + .xl\:leading-3 { + line-height: .75rem !important; } - .xl\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5 !important; + .xl\:leading-4 { + line-height: 1rem !important; } - .xl\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6 !important; + .xl\:leading-5 { + line-height: 1.25rem !important; } - .xl\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7 !important; + .xl\:leading-6 { + line-height: 1.5rem !important; } - .xl\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75 !important; + .xl\:leading-7 { + line-height: 1.75rem !important; } - .xl\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8 !important; + .xl\:leading-8 { + line-height: 2rem !important; } - .xl\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9 !important; + .xl\:leading-9 { + line-height: 2.25rem !important; } - .xl\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95 !important; + .xl\:leading-10 { + line-height: 2.5rem !important; } - .xl\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1 !important; + .xl\:leading-none { + line-height: 1 !important; } - .xl\:fill-current { - fill: currentColor !important; + .xl\:leading-tight { + line-height: 1.25 !important; } - .xl\:stroke-current { - stroke: currentColor !important; + .xl\:leading-snug { + line-height: 1.375 !important; } - .xl\:stroke-0 { - stroke-width: 0 !important; + .xl\:leading-normal { + line-height: 1.5 !important; } - .xl\:stroke-1 { - stroke-width: 1 !important; + .xl\:leading-relaxed { + line-height: 1.625 !important; } - .xl\:stroke-2 { - stroke-width: 2 !important; + .xl\:leading-loose { + line-height: 2 !important; } - .xl\:table-auto { - table-layout: auto !important; + .xl\:tracking-tighter { + letter-spacing: -0.05em !important; } - .xl\:table-fixed { - table-layout: fixed !important; + .xl\:tracking-tight { + letter-spacing: -0.025em !important; } - .xl\:text-left { - text-align: left !important; + .xl\:tracking-normal { + letter-spacing: 0em !important; } - .xl\:text-center { - text-align: center !important; + .xl\:tracking-wide { + letter-spacing: 0.025em !important; } - .xl\:text-right { - text-align: right !important; + .xl\:tracking-wider { + letter-spacing: 0.05em !important; } - .xl\:text-justify { - text-align: justify !important; + .xl\:tracking-widest { + letter-spacing: 0.1em !important; } .xl\:text-transparent { @@ -141238,44 +141427,6 @@ video { --tw-text-opacity: 1 !important; } - .xl\:truncate { - overflow: hidden !important; - text-overflow: ellipsis !important; - white-space: nowrap !important; - } - - .xl\:overflow-ellipsis { - text-overflow: ellipsis !important; - } - - .xl\:overflow-clip { - text-overflow: clip !important; - } - - .xl\:italic { - font-style: italic !important; - } - - .xl\:not-italic { - font-style: normal !important; - } - - .xl\:uppercase { - text-transform: uppercase !important; - } - - .xl\:lowercase { - text-transform: lowercase !important; - } - - .xl\:capitalize { - text-transform: capitalize !important; - } - - .xl\:normal-case { - text-transform: none !important; - } - .xl\:underline { text-decoration: underline !important; } @@ -141346,4258 +141497,4669 @@ video { -moz-osx-font-smoothing: auto !important; } - .xl\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; - } - - .xl\:normal-nums { - font-variant-numeric: normal !important; - } - - .xl\:ordinal { - --tw-ordinal: ordinal !important; - } - - .xl\:slashed-zero { - --tw-slashed-zero: slashed-zero !important; - } - - .xl\:lining-nums { - --tw-numeric-figure: lining-nums !important; - } - - .xl\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums !important; - } - - .xl\:proportional-nums { - --tw-numeric-spacing: proportional-nums !important; - } - - .xl\:tabular-nums { - --tw-numeric-spacing: tabular-nums !important; - } - - .xl\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions !important; - } - - .xl\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions !important; - } - - .xl\:tracking-tighter { - letter-spacing: -0.05em !important; - } - - .xl\:tracking-tight { - letter-spacing: -0.025em !important; - } - - .xl\:tracking-normal { - letter-spacing: 0em !important; - } - - .xl\:tracking-wide { - letter-spacing: 0.025em !important; + .xl\:placeholder-transparent::placeholder { + color: transparent !important; } - .xl\:tracking-wider { - letter-spacing: 0.05em !important; + .xl\:placeholder-current::placeholder { + color: currentColor !important; } - .xl\:tracking-widest { - letter-spacing: 0.1em !important; + .xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } - .xl\:select-none { - user-select: none !important; + .xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } - .xl\:select-text { - user-select: text !important; + .xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } - .xl\:select-all { - user-select: all !important; + .xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } - .xl\:select-auto { - user-select: auto !important; + .xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } - .xl\:align-baseline { - vertical-align: baseline !important; + .xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } - .xl\:align-top { - vertical-align: top !important; + .xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } - .xl\:align-middle { - vertical-align: middle !important; + .xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } - .xl\:align-bottom { - vertical-align: bottom !important; + .xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } - .xl\:align-text-top { - vertical-align: text-top !important; + .xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } - .xl\:align-text-bottom { - vertical-align: text-bottom !important; + .xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } - .xl\:visible { - visibility: visible !important; + .xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } - .xl\:invisible { - visibility: hidden !important; + .xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } - .xl\:whitespace-normal { - white-space: normal !important; + .xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } - .xl\:whitespace-nowrap { - white-space: nowrap !important; + .xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } - .xl\:whitespace-pre { - white-space: pre !important; + .xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } - .xl\:whitespace-pre-line { - white-space: pre-line !important; + .xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } - .xl\:whitespace-pre-wrap { - white-space: pre-wrap !important; + .xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } - .xl\:break-normal { - overflow-wrap: normal !important; - word-break: normal !important; + .xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } - .xl\:break-words { - overflow-wrap: break-word !important; + .xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } - .xl\:break-all { - word-break: break-all !important; + .xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } - .xl\:w-0 { - width: 0px !important; + .xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } - .xl\:w-1 { - width: 0.25rem !important; + .xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } - .xl\:w-2 { - width: 0.5rem !important; + .xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } - .xl\:w-3 { - width: 0.75rem !important; + .xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } - .xl\:w-4 { - width: 1rem !important; + .xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } - .xl\:w-5 { - width: 1.25rem !important; + .xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } - .xl\:w-6 { - width: 1.5rem !important; + .xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } - .xl\:w-7 { - width: 1.75rem !important; + .xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } - .xl\:w-8 { - width: 2rem !important; + .xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } - .xl\:w-9 { - width: 2.25rem !important; + .xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } - .xl\:w-10 { - width: 2.5rem !important; + .xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } - .xl\:w-11 { - width: 2.75rem !important; + .xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } - .xl\:w-12 { - width: 3rem !important; + .xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } - .xl\:w-14 { - width: 3.5rem !important; + .xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } - .xl\:w-16 { - width: 4rem !important; + .xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } - .xl\:w-20 { - width: 5rem !important; + .xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } - .xl\:w-24 { - width: 6rem !important; + .xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } - .xl\:w-28 { - width: 7rem !important; + .xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } - .xl\:w-32 { - width: 8rem !important; + .xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } - .xl\:w-36 { - width: 9rem !important; + .xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } - .xl\:w-40 { - width: 10rem !important; + .xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } - .xl\:w-44 { - width: 11rem !important; + .xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } - .xl\:w-48 { - width: 12rem !important; + .xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } - .xl\:w-52 { - width: 13rem !important; + .xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } - .xl\:w-56 { - width: 14rem !important; + .xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } - .xl\:w-60 { - width: 15rem !important; + .xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } - .xl\:w-64 { - width: 16rem !important; + .xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } - .xl\:w-72 { - width: 18rem !important; + .xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } - .xl\:w-80 { - width: 20rem !important; + .xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } - .xl\:w-96 { - width: 24rem !important; + .xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } - .xl\:w-auto { - width: auto !important; + .xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } - .xl\:w-px { - width: 1px !important; + .xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } - .xl\:w-0\.5 { - width: 0.125rem !important; + .xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } - .xl\:w-1\.5 { - width: 0.375rem !important; + .xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } - .xl\:w-2\.5 { - width: 0.625rem !important; + .xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } - .xl\:w-3\.5 { - width: 0.875rem !important; + .xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } - .xl\:w-1\/2 { - width: 50% !important; + .xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } - .xl\:w-1\/3 { - width: 33.333333% !important; + .xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } - .xl\:w-2\/3 { - width: 66.666667% !important; + .xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } - .xl\:w-1\/4 { - width: 25% !important; + .xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } - .xl\:w-2\/4 { - width: 50% !important; + .xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } - .xl\:w-3\/4 { - width: 75% !important; + .xl\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } - .xl\:w-1\/5 { - width: 20% !important; + .xl\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } - .xl\:w-2\/5 { - width: 40% !important; + .xl\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } - .xl\:w-3\/5 { - width: 60% !important; + .xl\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } - .xl\:w-4\/5 { - width: 80% !important; + .xl\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } - .xl\:w-1\/6 { - width: 16.666667% !important; + .xl\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } - .xl\:w-2\/6 { - width: 33.333333% !important; + .xl\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } - .xl\:w-3\/6 { - width: 50% !important; + .xl\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } - .xl\:w-4\/6 { - width: 66.666667% !important; + .xl\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } - .xl\:w-5\/6 { - width: 83.333333% !important; + .xl\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } - .xl\:w-1\/12 { - width: 8.333333% !important; + .xl\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } - .xl\:w-2\/12 { - width: 16.666667% !important; + .xl\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } - .xl\:w-3\/12 { - width: 25% !important; + .xl\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } - .xl\:w-4\/12 { - width: 33.333333% !important; + .xl\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } - .xl\:w-5\/12 { - width: 41.666667% !important; + .xl\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } - .xl\:w-6\/12 { - width: 50% !important; + .xl\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } - .xl\:w-7\/12 { - width: 58.333333% !important; + .xl\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } - .xl\:w-8\/12 { - width: 66.666667% !important; + .xl\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } - .xl\:w-9\/12 { - width: 75% !important; + .xl\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } - .xl\:w-10\/12 { - width: 83.333333% !important; + .xl\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } - .xl\:w-11\/12 { - width: 91.666667% !important; + .xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; } - .xl\:w-full { - width: 100% !important; + .xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor !important; } - .xl\:w-screen { - width: 100vw !important; + .xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } - .xl\:w-min { - width: min-content !important; + .xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } - .xl\:w-max { - width: max-content !important; + .xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } - .xl\:z-0 { - z-index: 0 !important; + .xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } - .xl\:z-10 { - z-index: 10 !important; + .xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } - .xl\:z-20 { - z-index: 20 !important; + .xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } - .xl\:z-30 { - z-index: 30 !important; + .xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } - .xl\:z-40 { - z-index: 40 !important; + .xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } - .xl\:z-50 { - z-index: 50 !important; + .xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } - .xl\:z-auto { - z-index: auto !important; + .xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } - .xl\:focus-within\:z-0:focus-within { - z-index: 0 !important; + .xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } - .xl\:focus-within\:z-10:focus-within { - z-index: 10 !important; + .xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } - .xl\:focus-within\:z-20:focus-within { - z-index: 20 !important; + .xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } - .xl\:focus-within\:z-30:focus-within { - z-index: 30 !important; + .xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } - .xl\:focus-within\:z-40:focus-within { - z-index: 40 !important; + .xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } - .xl\:focus-within\:z-50:focus-within { - z-index: 50 !important; + .xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } - .xl\:focus-within\:z-auto:focus-within { - z-index: auto !important; + .xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } - .xl\:focus\:z-0:focus { - z-index: 0 !important; + .xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } - .xl\:focus\:z-10:focus { - z-index: 10 !important; + .xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } - .xl\:focus\:z-20:focus { - z-index: 20 !important; + .xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } - .xl\:focus\:z-30:focus { - z-index: 30 !important; + .xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } - .xl\:focus\:z-40:focus { - z-index: 40 !important; + .xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } - .xl\:focus\:z-50:focus { - z-index: 50 !important; + .xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } - .xl\:focus\:z-auto:focus { - z-index: auto !important; + .xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } - .xl\:isolate { - isolation: isolate !important; + .xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } - .xl\:isolation-auto { - isolation: auto !important; + .xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-0 { - gap: 0px !important; + .xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-1 { - gap: 0.25rem !important; + .xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-2 { - gap: 0.5rem !important; + .xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-3 { - gap: 0.75rem !important; + .xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-4 { - gap: 1rem !important; + .xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-5 { - gap: 1.25rem !important; + .xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-6 { - gap: 1.5rem !important; + .xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-7 { - gap: 1.75rem !important; + .xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-8 { - gap: 2rem !important; + .xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-9 { - gap: 2.25rem !important; + .xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-10 { - gap: 2.5rem !important; + .xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-11 { - gap: 2.75rem !important; + .xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-12 { - gap: 3rem !important; + .xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-14 { - gap: 3.5rem !important; + .xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-16 { - gap: 4rem !important; + .xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-20 { - gap: 5rem !important; + .xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-24 { - gap: 6rem !important; + .xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-28 { - gap: 7rem !important; + .xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-32 { - gap: 8rem !important; + .xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-36 { - gap: 9rem !important; + .xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-40 { - gap: 10rem !important; + .xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-44 { - gap: 11rem !important; + .xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-48 { - gap: 12rem !important; + .xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-52 { - gap: 13rem !important; + .xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-56 { - gap: 14rem !important; + .xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-60 { - gap: 15rem !important; + .xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-64 { - gap: 16rem !important; + .xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-72 { - gap: 18rem !important; + .xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-80 { - gap: 20rem !important; + .xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-96 { - gap: 24rem !important; + .xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-px { - gap: 1px !important; + .xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-0\.5 { - gap: 0.125rem !important; + .xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-1\.5 { - gap: 0.375rem !important; + .xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-2\.5 { - gap: 0.625rem !important; + .xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-3\.5 { - gap: 0.875rem !important; + .xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-0 { - column-gap: 0px !important; + .xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-1 { - column-gap: 0.25rem !important; + .xl\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-2 { - column-gap: 0.5rem !important; + .xl\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-3 { - column-gap: 0.75rem !important; + .xl\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-4 { - column-gap: 1rem !important; + .xl\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-5 { - column-gap: 1.25rem !important; + .xl\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-6 { - column-gap: 1.5rem !important; + .xl\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-7 { - column-gap: 1.75rem !important; + .xl\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-8 { - column-gap: 2rem !important; + .xl\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-9 { - column-gap: 2.25rem !important; + .xl\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-10 { - column-gap: 2.5rem !important; + .xl\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-11 { - column-gap: 2.75rem !important; + .xl\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-12 { - column-gap: 3rem !important; + .xl\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-14 { - column-gap: 3.5rem !important; + .xl\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-16 { - column-gap: 4rem !important; + .xl\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-20 { - column-gap: 5rem !important; + .xl\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-24 { - column-gap: 6rem !important; + .xl\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-28 { - column-gap: 7rem !important; + .xl\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-32 { - column-gap: 8rem !important; + .xl\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-36 { - column-gap: 9rem !important; + .xl\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-40 { - column-gap: 10rem !important; + .xl\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } - .xl\:gap-x-44 { - column-gap: 11rem !important; + .xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; } - .xl\:gap-x-48 { - column-gap: 12rem !important; + .xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; } - .xl\:gap-x-52 { - column-gap: 13rem !important; + .xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; } - .xl\:gap-x-56 { - column-gap: 14rem !important; + .xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; } - .xl\:gap-x-60 { - column-gap: 15rem !important; + .xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; } - .xl\:gap-x-64 { - column-gap: 16rem !important; + .xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; } - .xl\:gap-x-72 { - column-gap: 18rem !important; + .xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; } - .xl\:gap-x-80 { - column-gap: 20rem !important; + .xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; } - .xl\:gap-x-96 { - column-gap: 24rem !important; + .xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; } - .xl\:gap-x-px { - column-gap: 1px !important; + .xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; } - .xl\:gap-x-0\.5 { - column-gap: 0.125rem !important; + .xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; } - .xl\:gap-x-1\.5 { - column-gap: 0.375rem !important; + .xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; } - .xl\:gap-x-2\.5 { - column-gap: 0.625rem !important; + .xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; } - .xl\:gap-x-3\.5 { - column-gap: 0.875rem !important; + .xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; } - .xl\:gap-y-0 { - row-gap: 0px !important; + .xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; } - .xl\:gap-y-1 { - row-gap: 0.25rem !important; + .xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; } - .xl\:gap-y-2 { - row-gap: 0.5rem !important; + .xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; } - .xl\:gap-y-3 { - row-gap: 0.75rem !important; + .xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; } - .xl\:gap-y-4 { - row-gap: 1rem !important; + .xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; } - .xl\:gap-y-5 { - row-gap: 1.25rem !important; + .xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; } - .xl\:gap-y-6 { - row-gap: 1.5rem !important; + .xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; } - .xl\:gap-y-7 { - row-gap: 1.75rem !important; + .xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; } - .xl\:gap-y-8 { - row-gap: 2rem !important; + .xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; } - .xl\:gap-y-9 { - row-gap: 2.25rem !important; + .xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; } - .xl\:gap-y-10 { - row-gap: 2.5rem !important; + .xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; } - .xl\:gap-y-11 { - row-gap: 2.75rem !important; + .xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; } - .xl\:gap-y-12 { - row-gap: 3rem !important; + .xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; } - .xl\:gap-y-14 { - row-gap: 3.5rem !important; + .xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; } - .xl\:gap-y-16 { - row-gap: 4rem !important; + .xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; } - .xl\:gap-y-20 { - row-gap: 5rem !important; + .xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; } - .xl\:gap-y-24 { - row-gap: 6rem !important; + .xl\:opacity-0 { + opacity: 0 !important; } - .xl\:gap-y-28 { - row-gap: 7rem !important; + .xl\:opacity-5 { + opacity: 0.05 !important; } - .xl\:gap-y-32 { - row-gap: 8rem !important; + .xl\:opacity-10 { + opacity: 0.1 !important; } - .xl\:gap-y-36 { - row-gap: 9rem !important; + .xl\:opacity-20 { + opacity: 0.2 !important; } - .xl\:gap-y-40 { - row-gap: 10rem !important; + .xl\:opacity-25 { + opacity: 0.25 !important; } - .xl\:gap-y-44 { - row-gap: 11rem !important; + .xl\:opacity-30 { + opacity: 0.3 !important; } - .xl\:gap-y-48 { - row-gap: 12rem !important; + .xl\:opacity-40 { + opacity: 0.4 !important; } - .xl\:gap-y-52 { - row-gap: 13rem !important; + .xl\:opacity-50 { + opacity: 0.5 !important; } - .xl\:gap-y-56 { - row-gap: 14rem !important; + .xl\:opacity-60 { + opacity: 0.6 !important; } - .xl\:gap-y-60 { - row-gap: 15rem !important; + .xl\:opacity-70 { + opacity: 0.7 !important; } - .xl\:gap-y-64 { - row-gap: 16rem !important; + .xl\:opacity-75 { + opacity: 0.75 !important; } - .xl\:gap-y-72 { - row-gap: 18rem !important; + .xl\:opacity-80 { + opacity: 0.8 !important; } - .xl\:gap-y-80 { - row-gap: 20rem !important; + .xl\:opacity-90 { + opacity: 0.9 !important; } - .xl\:gap-y-96 { - row-gap: 24rem !important; + .xl\:opacity-95 { + opacity: 0.95 !important; } - .xl\:gap-y-px { - row-gap: 1px !important; + .xl\:opacity-100 { + opacity: 1 !important; } - .xl\:gap-y-0\.5 { - row-gap: 0.125rem !important; + .group:hover .xl\:group-hover\:opacity-0 { + opacity: 0 !important; } - .xl\:gap-y-1\.5 { - row-gap: 0.375rem !important; + .group:hover .xl\:group-hover\:opacity-5 { + opacity: 0.05 !important; } - .xl\:gap-y-2\.5 { - row-gap: 0.625rem !important; + .group:hover .xl\:group-hover\:opacity-10 { + opacity: 0.1 !important; } - .xl\:gap-y-3\.5 { - row-gap: 0.875rem !important; + .group:hover .xl\:group-hover\:opacity-20 { + opacity: 0.2 !important; } - .xl\:grid-flow-row { - grid-auto-flow: row !important; + .group:hover .xl\:group-hover\:opacity-25 { + opacity: 0.25 !important; } - .xl\:grid-flow-col { - grid-auto-flow: column !important; + .group:hover .xl\:group-hover\:opacity-30 { + opacity: 0.3 !important; } - .xl\:grid-flow-row-dense { - grid-auto-flow: row dense !important; + .group:hover .xl\:group-hover\:opacity-40 { + opacity: 0.4 !important; } - .xl\:grid-flow-col-dense { - grid-auto-flow: column dense !important; + .group:hover .xl\:group-hover\:opacity-50 { + opacity: 0.5 !important; } - .xl\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)) !important; + .group:hover .xl\:group-hover\:opacity-60 { + opacity: 0.6 !important; } - .xl\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)) !important; + .group:hover .xl\:group-hover\:opacity-70 { + opacity: 0.7 !important; } - .xl\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)) !important; + .group:hover .xl\:group-hover\:opacity-75 { + opacity: 0.75 !important; } - .xl\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)) !important; + .group:hover .xl\:group-hover\:opacity-80 { + opacity: 0.8 !important; } - .xl\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)) !important; + .group:hover .xl\:group-hover\:opacity-90 { + opacity: 0.9 !important; } - .xl\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)) !important; + .group:hover .xl\:group-hover\:opacity-95 { + opacity: 0.95 !important; } - .xl\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)) !important; + .group:hover .xl\:group-hover\:opacity-100 { + opacity: 1 !important; } - .xl\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)) !important; + .xl\:focus-within\:opacity-0:focus-within { + opacity: 0 !important; } - .xl\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)) !important; + .xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; } - .xl\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)) !important; + .xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; } - .xl\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)) !important; + .xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; } - .xl\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)) !important; + .xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; } - .xl\:grid-cols-none { - grid-template-columns: none !important; + .xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; } - .xl\:auto-cols-auto { - grid-auto-columns: auto !important; + .xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; } - .xl\:auto-cols-min { - grid-auto-columns: min-content !important; + .xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; } - .xl\:auto-cols-max { - grid-auto-columns: max-content !important; + .xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; } - .xl\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr) !important; + .xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; } - .xl\:col-auto { - grid-column: auto !important; + .xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; } - .xl\:col-span-1 { - grid-column: span 1 / span 1 !important; + .xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; } - .xl\:col-span-2 { - grid-column: span 2 / span 2 !important; + .xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; } - .xl\:col-span-3 { - grid-column: span 3 / span 3 !important; + .xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; } - .xl\:col-span-4 { - grid-column: span 4 / span 4 !important; + .xl\:focus-within\:opacity-100:focus-within { + opacity: 1 !important; } - .xl\:col-span-5 { - grid-column: span 5 / span 5 !important; + .xl\:hover\:opacity-0:hover { + opacity: 0 !important; } - .xl\:col-span-6 { - grid-column: span 6 / span 6 !important; + .xl\:hover\:opacity-5:hover { + opacity: 0.05 !important; } - .xl\:col-span-7 { - grid-column: span 7 / span 7 !important; + .xl\:hover\:opacity-10:hover { + opacity: 0.1 !important; } - .xl\:col-span-8 { - grid-column: span 8 / span 8 !important; + .xl\:hover\:opacity-20:hover { + opacity: 0.2 !important; } - .xl\:col-span-9 { - grid-column: span 9 / span 9 !important; + .xl\:hover\:opacity-25:hover { + opacity: 0.25 !important; } - .xl\:col-span-10 { - grid-column: span 10 / span 10 !important; + .xl\:hover\:opacity-30:hover { + opacity: 0.3 !important; } - .xl\:col-span-11 { - grid-column: span 11 / span 11 !important; + .xl\:hover\:opacity-40:hover { + opacity: 0.4 !important; } - .xl\:col-span-12 { - grid-column: span 12 / span 12 !important; + .xl\:hover\:opacity-50:hover { + opacity: 0.5 !important; } - .xl\:col-span-full { - grid-column: 1 / -1 !important; + .xl\:hover\:opacity-60:hover { + opacity: 0.6 !important; } - .xl\:col-start-1 { - grid-column-start: 1 !important; + .xl\:hover\:opacity-70:hover { + opacity: 0.7 !important; } - .xl\:col-start-2 { - grid-column-start: 2 !important; + .xl\:hover\:opacity-75:hover { + opacity: 0.75 !important; } - .xl\:col-start-3 { - grid-column-start: 3 !important; + .xl\:hover\:opacity-80:hover { + opacity: 0.8 !important; } - .xl\:col-start-4 { - grid-column-start: 4 !important; + .xl\:hover\:opacity-90:hover { + opacity: 0.9 !important; } - .xl\:col-start-5 { - grid-column-start: 5 !important; + .xl\:hover\:opacity-95:hover { + opacity: 0.95 !important; } - .xl\:col-start-6 { - grid-column-start: 6 !important; + .xl\:hover\:opacity-100:hover { + opacity: 1 !important; } - .xl\:col-start-7 { - grid-column-start: 7 !important; + .xl\:focus\:opacity-0:focus { + opacity: 0 !important; } - .xl\:col-start-8 { - grid-column-start: 8 !important; + .xl\:focus\:opacity-5:focus { + opacity: 0.05 !important; } - .xl\:col-start-9 { - grid-column-start: 9 !important; + .xl\:focus\:opacity-10:focus { + opacity: 0.1 !important; } - .xl\:col-start-10 { - grid-column-start: 10 !important; + .xl\:focus\:opacity-20:focus { + opacity: 0.2 !important; } - .xl\:col-start-11 { - grid-column-start: 11 !important; + .xl\:focus\:opacity-25:focus { + opacity: 0.25 !important; } - .xl\:col-start-12 { - grid-column-start: 12 !important; + .xl\:focus\:opacity-30:focus { + opacity: 0.3 !important; } - .xl\:col-start-13 { - grid-column-start: 13 !important; + .xl\:focus\:opacity-40:focus { + opacity: 0.4 !important; } - .xl\:col-start-auto { - grid-column-start: auto !important; + .xl\:focus\:opacity-50:focus { + opacity: 0.5 !important; } - .xl\:col-end-1 { - grid-column-end: 1 !important; + .xl\:focus\:opacity-60:focus { + opacity: 0.6 !important; } - .xl\:col-end-2 { - grid-column-end: 2 !important; + .xl\:focus\:opacity-70:focus { + opacity: 0.7 !important; } - .xl\:col-end-3 { - grid-column-end: 3 !important; + .xl\:focus\:opacity-75:focus { + opacity: 0.75 !important; } - .xl\:col-end-4 { - grid-column-end: 4 !important; + .xl\:focus\:opacity-80:focus { + opacity: 0.8 !important; } - .xl\:col-end-5 { - grid-column-end: 5 !important; + .xl\:focus\:opacity-90:focus { + opacity: 0.9 !important; } - .xl\:col-end-6 { - grid-column-end: 6 !important; + .xl\:focus\:opacity-95:focus { + opacity: 0.95 !important; } - .xl\:col-end-7 { - grid-column-end: 7 !important; + .xl\:focus\:opacity-100:focus { + opacity: 1 !important; } - .xl\:col-end-8 { - grid-column-end: 8 !important; + .xl\:bg-blend-normal { + background-blend-mode: normal !important; } - .xl\:col-end-9 { - grid-column-end: 9 !important; + .xl\:bg-blend-multiply { + background-blend-mode: multiply !important; } - .xl\:col-end-10 { - grid-column-end: 10 !important; + .xl\:bg-blend-screen { + background-blend-mode: screen !important; } - .xl\:col-end-11 { - grid-column-end: 11 !important; + .xl\:bg-blend-overlay { + background-blend-mode: overlay !important; } - .xl\:col-end-12 { - grid-column-end: 12 !important; + .xl\:bg-blend-darken { + background-blend-mode: darken !important; } - .xl\:col-end-13 { - grid-column-end: 13 !important; + .xl\:bg-blend-lighten { + background-blend-mode: lighten !important; } - .xl\:col-end-auto { - grid-column-end: auto !important; + .xl\:bg-blend-color-dodge { + background-blend-mode: color-dodge !important; } - .xl\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)) !important; + .xl\:bg-blend-color-burn { + background-blend-mode: color-burn !important; } - .xl\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)) !important; + .xl\:bg-blend-hard-light { + background-blend-mode: hard-light !important; } - .xl\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)) !important; + .xl\:bg-blend-soft-light { + background-blend-mode: soft-light !important; } - .xl\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)) !important; + .xl\:bg-blend-difference { + background-blend-mode: difference !important; } - .xl\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)) !important; + .xl\:bg-blend-exclusion { + background-blend-mode: exclusion !important; } - .xl\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)) !important; + .xl\:bg-blend-hue { + background-blend-mode: hue !important; } - .xl\:grid-rows-none { - grid-template-rows: none !important; + .xl\:bg-blend-saturation { + background-blend-mode: saturation !important; } - .xl\:auto-rows-auto { - grid-auto-rows: auto !important; + .xl\:bg-blend-color { + background-blend-mode: color !important; } - .xl\:auto-rows-min { - grid-auto-rows: min-content !important; + .xl\:bg-blend-luminosity { + background-blend-mode: luminosity !important; } - .xl\:auto-rows-max { - grid-auto-rows: max-content !important; + .xl\:mix-blend-normal { + mix-blend-mode: normal !important; } - .xl\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr) !important; + .xl\:mix-blend-multiply { + mix-blend-mode: multiply !important; } - .xl\:row-auto { - grid-row: auto !important; + .xl\:mix-blend-screen { + mix-blend-mode: screen !important; } - .xl\:row-span-1 { - grid-row: span 1 / span 1 !important; + .xl\:mix-blend-overlay { + mix-blend-mode: overlay !important; } - .xl\:row-span-2 { - grid-row: span 2 / span 2 !important; + .xl\:mix-blend-darken { + mix-blend-mode: darken !important; } - .xl\:row-span-3 { - grid-row: span 3 / span 3 !important; + .xl\:mix-blend-lighten { + mix-blend-mode: lighten !important; } - .xl\:row-span-4 { - grid-row: span 4 / span 4 !important; + .xl\:mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; } - .xl\:row-span-5 { - grid-row: span 5 / span 5 !important; + .xl\:mix-blend-color-burn { + mix-blend-mode: color-burn !important; } - .xl\:row-span-6 { - grid-row: span 6 / span 6 !important; + .xl\:mix-blend-hard-light { + mix-blend-mode: hard-light !important; } - .xl\:row-span-full { - grid-row: 1 / -1 !important; + .xl\:mix-blend-soft-light { + mix-blend-mode: soft-light !important; } - .xl\:row-start-1 { - grid-row-start: 1 !important; + .xl\:mix-blend-difference { + mix-blend-mode: difference !important; } - .xl\:row-start-2 { - grid-row-start: 2 !important; + .xl\:mix-blend-exclusion { + mix-blend-mode: exclusion !important; } - .xl\:row-start-3 { - grid-row-start: 3 !important; + .xl\:mix-blend-hue { + mix-blend-mode: hue !important; } - .xl\:row-start-4 { - grid-row-start: 4 !important; + .xl\:mix-blend-saturation { + mix-blend-mode: saturation !important; } - .xl\:row-start-5 { - grid-row-start: 5 !important; + .xl\:mix-blend-color { + mix-blend-mode: color !important; } - .xl\:row-start-6 { - grid-row-start: 6 !important; + .xl\:mix-blend-luminosity { + mix-blend-mode: luminosity !important; } - .xl\:row-start-7 { - grid-row-start: 7 !important; + .xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:row-start-auto { - grid-row-start: auto !important; + .xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:row-end-1 { - grid-row-end: 1 !important; + .xl\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:row-end-2 { - grid-row-end: 2 !important; + .xl\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:row-end-3 { - grid-row-end: 3 !important; + .xl\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:row-end-4 { - grid-row-end: 4 !important; + .xl\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:row-end-5 { - grid-row-end: 5 !important; + .xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:row-end-6 { - grid-row-end: 6 !important; + .xl\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:row-end-7 { - grid-row-end: 7 !important; + .group:hover .xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:row-end-auto { - grid-row-end: auto !important; + .group:hover .xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:transform { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + .group:hover .xl\:group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:transform-gpu { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + .group:hover .xl\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:transform-none { - transform: none !important; + .group:hover .xl\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:origin-center { - transform-origin: center !important; + .group:hover .xl\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:origin-top { - transform-origin: top !important; + .group:hover .xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:origin-top-right { - transform-origin: top right !important; + .group:hover .xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:origin-right { - transform-origin: right !important; + .xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:origin-bottom-right { - transform-origin: bottom right !important; + .xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:origin-bottom { - transform-origin: bottom !important; + .xl\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:origin-bottom-left { - transform-origin: bottom left !important; + .xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:origin-left { - transform-origin: left !important; + .xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:origin-top-left { - transform-origin: top left !important; + .xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-0 { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-50 { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-75 { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-90 { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-95 { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; + .xl\:hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-100 { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .xl\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-105 { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .xl\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-110 { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-125 { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-150 { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-x-0 { - --tw-scale-x: 0 !important; + .xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-x-50 { - --tw-scale-x: .5 !important; + .xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-x-75 { - --tw-scale-x: .75 !important; + .xl\:focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-x-90 { - --tw-scale-x: .9 !important; + .xl\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-x-95 { - --tw-scale-x: .95 !important; + .xl\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-x-100 { - --tw-scale-x: 1 !important; + .xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-x-105 { - --tw-scale-x: 1.05 !important; + .xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-x-110 { - --tw-scale-x: 1.1 !important; + .xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .xl\:scale-x-125 { - --tw-scale-x: 1.25 !important; + .xl\:outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .xl\:scale-x-150 { - --tw-scale-x: 1.5 !important; + .xl\:outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .xl\:scale-y-0 { - --tw-scale-y: 0 !important; + .xl\:outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .xl\:scale-y-50 { - --tw-scale-y: .5 !important; + .xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .xl\:scale-y-75 { - --tw-scale-y: .75 !important; + .xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .xl\:scale-y-90 { - --tw-scale-y: .9 !important; + .xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .xl\:scale-y-95 { - --tw-scale-y: .95 !important; + .xl\:focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .xl\:scale-y-100 { - --tw-scale-y: 1 !important; + .xl\:focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .xl\:scale-y-105 { - --tw-scale-y: 1.05 !important; + .xl\:focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .xl\:scale-y-110 { - --tw-scale-y: 1.1 !important; + .xl\:ring-0 { + --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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:scale-y-125 { - --tw-scale-y: 1.25 !important; + .xl\:ring-1 { + --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:scale-y-150 { - --tw-scale-y: 1.5 !important; + .xl\:ring-2 { + --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-0:hover { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .xl\:ring-4 { + --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-50:hover { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .xl\:ring-8 { + --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-75:hover { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .xl\:ring { + --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-90:hover { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .xl\:ring-inset { + --tw-ring-inset: inset !important; } - .xl\:hover\:scale-95:hover { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-100:hover { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-105:hover { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-110:hover { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-125:hover { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-150:hover { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-x-0:hover { - --tw-scale-x: 0 !important; + .xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; } - .xl\:hover\:scale-x-50:hover { - --tw-scale-x: .5 !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-x-75:hover { - --tw-scale-x: .75 !important; + .xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-x-90:hover { - --tw-scale-x: .9 !important; + .xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-x-95:hover { - --tw-scale-x: .95 !important; + .xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-x-100:hover { - --tw-scale-x: 1 !important; + .xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05 !important; + .xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1 !important; + .xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset !important; } - .xl\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25 !important; + .xl\:ring-transparent { + --tw-ring-color: transparent !important; } - .xl\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5 !important; + .xl\:ring-current { + --tw-ring-color: currentColor !important; } - .xl\:hover\:scale-y-0:hover { - --tw-scale-y: 0 !important; + .xl\:ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .xl\:hover\:scale-y-50:hover { - --tw-scale-y: .5 !important; + .xl\:ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .xl\:hover\:scale-y-75:hover { - --tw-scale-y: .75 !important; + .xl\:ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .xl\:hover\:scale-y-90:hover { - --tw-scale-y: .9 !important; + .xl\:ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .xl\:hover\:scale-y-95:hover { - --tw-scale-y: .95 !important; + .xl\:ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .xl\:hover\:scale-y-100:hover { - --tw-scale-y: 1 !important; + .xl\:ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .xl\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05 !important; + .xl\:ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .xl\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1 !important; + .xl\:ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .xl\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25 !important; + .xl\:ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .xl\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5 !important; + .xl\:ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .xl\:ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .xl\:ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .xl\:ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .xl\:ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; + .xl\:ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .xl\:ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .xl\:ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .xl\:ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .xl\:ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .xl\:ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-x-0:focus { - --tw-scale-x: 0 !important; + .xl\:ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-x-50:focus { - --tw-scale-x: .5 !important; + .xl\:ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-x-75:focus { - --tw-scale-x: .75 !important; + .xl\:ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-x-90:focus { - --tw-scale-x: .9 !important; + .xl\:ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-x-95:focus { - --tw-scale-x: .95 !important; + .xl\:ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-x-100:focus { - --tw-scale-x: 1 !important; + .xl\:ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05 !important; + .xl\:ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1 !important; + .xl\:ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25 !important; + .xl\:ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5 !important; + .xl\:ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-y-0:focus { - --tw-scale-y: 0 !important; + .xl\:ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-y-50:focus { - --tw-scale-y: .5 !important; + .xl\:ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-y-75:focus { - --tw-scale-y: .75 !important; + .xl\:ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-y-90:focus { - --tw-scale-y: .9 !important; + .xl\:ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-y-95:focus { - --tw-scale-y: .95 !important; + .xl\:ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-y-100:focus { - --tw-scale-y: 1 !important; + .xl\:ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05 !important; + .xl\:ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1 !important; + .xl\:ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25 !important; + .xl\:ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .xl\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5 !important; + .xl\:ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .xl\:rotate-0 { - --tw-rotate: 0deg !important; + .xl\:ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .xl\:rotate-1 { - --tw-rotate: 1deg !important; + .xl\:ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .xl\:rotate-2 { - --tw-rotate: 2deg !important; + .xl\:ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .xl\:rotate-3 { - --tw-rotate: 3deg !important; + .xl\:ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .xl\:rotate-6 { - --tw-rotate: 6deg !important; + .xl\:ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .xl\:rotate-12 { - --tw-rotate: 12deg !important; + .xl\:ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .xl\:rotate-45 { - --tw-rotate: 45deg !important; + .xl\:ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .xl\:rotate-90 { - --tw-rotate: 90deg !important; + .xl\:ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .xl\:rotate-180 { - --tw-rotate: 180deg !important; + .xl\:ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .xl\:-rotate-180 { - --tw-rotate: -180deg !important; + .xl\:ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .xl\:-rotate-90 { - --tw-rotate: -90deg !important; + .xl\:ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .xl\:-rotate-45 { - --tw-rotate: -45deg !important; + .xl\:ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .xl\:-rotate-12 { - --tw-rotate: -12deg !important; + .xl\:ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .xl\:-rotate-6 { - --tw-rotate: -6deg !important; + .xl\:ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .xl\:-rotate-3 { - --tw-rotate: -3deg !important; + .xl\:ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .xl\:-rotate-2 { - --tw-rotate: -2deg !important; + .xl\:ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .xl\:-rotate-1 { - --tw-rotate: -1deg !important; + .xl\:ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .xl\:hover\:rotate-0:hover { - --tw-rotate: 0deg !important; + .xl\:ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .xl\:hover\:rotate-1:hover { - --tw-rotate: 1deg !important; + .xl\:ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .xl\:hover\:rotate-2:hover { - --tw-rotate: 2deg !important; + .xl\:ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .xl\:hover\:rotate-3:hover { - --tw-rotate: 3deg !important; + .xl\:ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .xl\:hover\:rotate-6:hover { - --tw-rotate: 6deg !important; + .xl\:ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .xl\:hover\:rotate-12:hover { - --tw-rotate: 12deg !important; + .xl\:ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .xl\:hover\:rotate-45:hover { - --tw-rotate: 45deg !important; + .xl\:ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .xl\:hover\:rotate-90:hover { - --tw-rotate: 90deg !important; + .xl\:ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .xl\:hover\:rotate-180:hover { - --tw-rotate: 180deg !important; + .xl\:ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .xl\:hover\:-rotate-180:hover { - --tw-rotate: -180deg !important; + .xl\:ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .xl\:hover\:-rotate-90:hover { - --tw-rotate: -90deg !important; + .xl\:ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .xl\:hover\:-rotate-45:hover { - --tw-rotate: -45deg !important; + .xl\:ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .xl\:hover\:-rotate-12:hover { - --tw-rotate: -12deg !important; + .xl\:ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .xl\:hover\:-rotate-6:hover { - --tw-rotate: -6deg !important; + .xl\:ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .xl\:hover\:-rotate-3:hover { - --tw-rotate: -3deg !important; + .xl\:ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .xl\:hover\:-rotate-2:hover { - --tw-rotate: -2deg !important; + .xl\:ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .xl\:hover\:-rotate-1:hover { - --tw-rotate: -1deg !important; + .xl\:ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .xl\:focus\:rotate-0:focus { - --tw-rotate: 0deg !important; + .xl\:ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .xl\:focus\:rotate-1:focus { - --tw-rotate: 1deg !important; + .xl\:ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .xl\:focus\:rotate-2:focus { - --tw-rotate: 2deg !important; + .xl\:ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .xl\:focus\:rotate-3:focus { - --tw-rotate: 3deg !important; + .xl\:ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .xl\:focus\:rotate-6:focus { - --tw-rotate: 6deg !important; + .xl\:ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .xl\:focus\:rotate-12:focus { - --tw-rotate: 12deg !important; + .xl\:ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .xl\:focus\:rotate-45:focus { - --tw-rotate: 45deg !important; + .xl\:ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .xl\:focus\:rotate-90:focus { - --tw-rotate: 90deg !important; + .xl\:ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .xl\:focus\:rotate-180:focus { - --tw-rotate: 180deg !important; + .xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; } - .xl\:focus\:-rotate-180:focus { - --tw-rotate: -180deg !important; + .xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; } - .xl\:focus\:-rotate-90:focus { - --tw-rotate: -90deg !important; + .xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .xl\:focus\:-rotate-45:focus { - --tw-rotate: -45deg !important; + .xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .xl\:focus\:-rotate-12:focus { - --tw-rotate: -12deg !important; + .xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .xl\:focus\:-rotate-6:focus { - --tw-rotate: -6deg !important; + .xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .xl\:focus\:-rotate-3:focus { - --tw-rotate: -3deg !important; + .xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .xl\:focus\:-rotate-2:focus { - --tw-rotate: -2deg !important; + .xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .xl\:focus\:-rotate-1:focus { - --tw-rotate: -1deg !important; + .xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-0 { - --tw-translate-x: 0px !important; + .xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-1 { - --tw-translate-x: 0.25rem !important; + .xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-2 { - --tw-translate-x: 0.5rem !important; + .xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-3 { - --tw-translate-x: 0.75rem !important; + .xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-4 { - --tw-translate-x: 1rem !important; + .xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-5 { - --tw-translate-x: 1.25rem !important; + .xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-6 { - --tw-translate-x: 1.5rem !important; + .xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-7 { - --tw-translate-x: 1.75rem !important; + .xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-8 { - --tw-translate-x: 2rem !important; + .xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-9 { - --tw-translate-x: 2.25rem !important; + .xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-10 { - --tw-translate-x: 2.5rem !important; + .xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-11 { - --tw-translate-x: 2.75rem !important; + .xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-12 { - --tw-translate-x: 3rem !important; + .xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-14 { - --tw-translate-x: 3.5rem !important; + .xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-16 { - --tw-translate-x: 4rem !important; + .xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-20 { - --tw-translate-x: 5rem !important; + .xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-24 { - --tw-translate-x: 6rem !important; + .xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-28 { - --tw-translate-x: 7rem !important; + .xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-32 { - --tw-translate-x: 8rem !important; + .xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-36 { - --tw-translate-x: 9rem !important; + .xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-40 { - --tw-translate-x: 10rem !important; + .xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-44 { - --tw-translate-x: 11rem !important; + .xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-48 { - --tw-translate-x: 12rem !important; + .xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-52 { - --tw-translate-x: 13rem !important; + .xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-56 { - --tw-translate-x: 14rem !important; + .xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-60 { - --tw-translate-x: 15rem !important; + .xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-64 { - --tw-translate-x: 16rem !important; + .xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-72 { - --tw-translate-x: 18rem !important; + .xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-80 { - --tw-translate-x: 20rem !important; + .xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-96 { - --tw-translate-x: 24rem !important; + .xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-px { - --tw-translate-x: 1px !important; + .xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-0\.5 { - --tw-translate-x: 0.125rem !important; + .xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-1\.5 { - --tw-translate-x: 0.375rem !important; + .xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-2\.5 { - --tw-translate-x: 0.625rem !important; + .xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-3\.5 { - --tw-translate-x: 0.875rem !important; + .xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-0 { - --tw-translate-x: 0px !important; + .xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-1 { - --tw-translate-x: -0.25rem !important; + .xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-2 { - --tw-translate-x: -0.5rem !important; + .xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-3 { - --tw-translate-x: -0.75rem !important; + .xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-4 { - --tw-translate-x: -1rem !important; + .xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-5 { - --tw-translate-x: -1.25rem !important; + .xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-6 { - --tw-translate-x: -1.5rem !important; + .xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-7 { - --tw-translate-x: -1.75rem !important; + .xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-8 { - --tw-translate-x: -2rem !important; + .xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-9 { - --tw-translate-x: -2.25rem !important; + .xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-10 { - --tw-translate-x: -2.5rem !important; + .xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-11 { - --tw-translate-x: -2.75rem !important; + .xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-12 { - --tw-translate-x: -3rem !important; + .xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-14 { - --tw-translate-x: -3.5rem !important; + .xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-16 { - --tw-translate-x: -4rem !important; + .xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-20 { - --tw-translate-x: -5rem !important; + .xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-24 { - --tw-translate-x: -6rem !important; + .xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-28 { - --tw-translate-x: -7rem !important; + .xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-32 { - --tw-translate-x: -8rem !important; + .xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-36 { - --tw-translate-x: -9rem !important; + .xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-40 { - --tw-translate-x: -10rem !important; + .xl\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-44 { - --tw-translate-x: -11rem !important; + .xl\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-48 { - --tw-translate-x: -12rem !important; + .xl\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-52 { - --tw-translate-x: -13rem !important; + .xl\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-56 { - --tw-translate-x: -14rem !important; + .xl\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-60 { - --tw-translate-x: -15rem !important; + .xl\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-64 { - --tw-translate-x: -16rem !important; + .xl\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-72 { - --tw-translate-x: -18rem !important; + .xl\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-80 { - --tw-translate-x: -20rem !important; + .xl\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-96 { - --tw-translate-x: -24rem !important; + .xl\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-px { - --tw-translate-x: -1px !important; + .xl\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem !important; + .xl\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem !important; + .xl\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem !important; + .xl\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem !important; + .xl\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-1\/2 { - --tw-translate-x: 50% !important; + .xl\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-1\/3 { - --tw-translate-x: 33.333333% !important; + .xl\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-2\/3 { - --tw-translate-x: 66.666667% !important; + .xl\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-1\/4 { - --tw-translate-x: 25% !important; + .xl\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-2\/4 { - --tw-translate-x: 50% !important; + .xl\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .xl\:translate-x-3\/4 { - --tw-translate-x: 75% !important; + .xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; } - .xl\:translate-x-full { - --tw-translate-x: 100% !important; + .xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor !important; } - .xl\:-translate-x-1\/2 { - --tw-translate-x: -50% !important; + .xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-1\/3 { - --tw-translate-x: -33.333333% !important; + .xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-2\/3 { - --tw-translate-x: -66.666667% !important; + .xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-1\/4 { - --tw-translate-x: -25% !important; + .xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-2\/4 { - --tw-translate-x: -50% !important; + .xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-3\/4 { - --tw-translate-x: -75% !important; + .xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .xl\:-translate-x-full { - --tw-translate-x: -100% !important; + .xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-0 { - --tw-translate-y: 0px !important; + .xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-1 { - --tw-translate-y: 0.25rem !important; + .xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-2 { - --tw-translate-y: 0.5rem !important; + .xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-3 { - --tw-translate-y: 0.75rem !important; + .xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-4 { - --tw-translate-y: 1rem !important; + .xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-5 { - --tw-translate-y: 1.25rem !important; + .xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-6 { - --tw-translate-y: 1.5rem !important; + .xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-7 { - --tw-translate-y: 1.75rem !important; + .xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-8 { - --tw-translate-y: 2rem !important; + .xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-9 { - --tw-translate-y: 2.25rem !important; + .xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-10 { - --tw-translate-y: 2.5rem !important; + .xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-11 { - --tw-translate-y: 2.75rem !important; + .xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-12 { - --tw-translate-y: 3rem !important; + .xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-14 { - --tw-translate-y: 3.5rem !important; + .xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-16 { - --tw-translate-y: 4rem !important; + .xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-20 { - --tw-translate-y: 5rem !important; + .xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-24 { - --tw-translate-y: 6rem !important; + .xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-28 { - --tw-translate-y: 7rem !important; + .xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-32 { - --tw-translate-y: 8rem !important; + .xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-36 { - --tw-translate-y: 9rem !important; + .xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-40 { - --tw-translate-y: 10rem !important; + .xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-44 { - --tw-translate-y: 11rem !important; + .xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-48 { - --tw-translate-y: 12rem !important; + .xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-52 { - --tw-translate-y: 13rem !important; + .xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-56 { - --tw-translate-y: 14rem !important; + .xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-60 { - --tw-translate-y: 15rem !important; + .xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-64 { - --tw-translate-y: 16rem !important; + .xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-72 { - --tw-translate-y: 18rem !important; + .xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-80 { - --tw-translate-y: 20rem !important; + .xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-96 { - --tw-translate-y: 24rem !important; + .xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-px { - --tw-translate-y: 1px !important; + .xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-0\.5 { - --tw-translate-y: 0.125rem !important; + .xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-1\.5 { - --tw-translate-y: 0.375rem !important; + .xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-2\.5 { - --tw-translate-y: 0.625rem !important; + .xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-3\.5 { - --tw-translate-y: 0.875rem !important; + .xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-0 { - --tw-translate-y: 0px !important; + .xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-1 { - --tw-translate-y: -0.25rem !important; + .xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-2 { - --tw-translate-y: -0.5rem !important; + .xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-3 { - --tw-translate-y: -0.75rem !important; + .xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-4 { - --tw-translate-y: -1rem !important; + .xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-5 { - --tw-translate-y: -1.25rem !important; + .xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-6 { - --tw-translate-y: -1.5rem !important; + .xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-7 { - --tw-translate-y: -1.75rem !important; + .xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-8 { - --tw-translate-y: -2rem !important; + .xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-9 { - --tw-translate-y: -2.25rem !important; + .xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-10 { - --tw-translate-y: -2.5rem !important; + .xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-11 { - --tw-translate-y: -2.75rem !important; + .xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-12 { - --tw-translate-y: -3rem !important; + .xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-14 { - --tw-translate-y: -3.5rem !important; + .xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-16 { - --tw-translate-y: -4rem !important; + .xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-20 { - --tw-translate-y: -5rem !important; + .xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-24 { - --tw-translate-y: -6rem !important; + .xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-28 { - --tw-translate-y: -7rem !important; + .xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-32 { - --tw-translate-y: -8rem !important; + .xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-36 { - --tw-translate-y: -9rem !important; + .xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-40 { - --tw-translate-y: -10rem !important; + .xl\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-44 { - --tw-translate-y: -11rem !important; + .xl\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-48 { - --tw-translate-y: -12rem !important; + .xl\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-52 { - --tw-translate-y: -13rem !important; + .xl\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-56 { - --tw-translate-y: -14rem !important; + .xl\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-60 { - --tw-translate-y: -15rem !important; + .xl\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-64 { - --tw-translate-y: -16rem !important; + .xl\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-72 { - --tw-translate-y: -18rem !important; + .xl\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-80 { - --tw-translate-y: -20rem !important; + .xl\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-96 { - --tw-translate-y: -24rem !important; + .xl\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-px { - --tw-translate-y: -1px !important; + .xl\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem !important; + .xl\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem !important; + .xl\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem !important; + .xl\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .xl\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem !important; + .xl\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-1\/2 { - --tw-translate-y: 50% !important; + .xl\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-1\/3 { - --tw-translate-y: 33.333333% !important; + .xl\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-2\/3 { - --tw-translate-y: 66.666667% !important; + .xl\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-1\/4 { - --tw-translate-y: 25% !important; + .xl\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-2\/4 { - --tw-translate-y: 50% !important; + .xl\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .xl\:translate-y-3\/4 { - --tw-translate-y: 75% !important; + .xl\:ring-opacity-0 { + --tw-ring-opacity: 0 !important; } - .xl\:translate-y-full { - --tw-translate-y: 100% !important; + .xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; } - .xl\:-translate-y-1\/2 { - --tw-translate-y: -50% !important; + .xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; } - .xl\:-translate-y-1\/3 { - --tw-translate-y: -33.333333% !important; + .xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; } - .xl\:-translate-y-2\/3 { - --tw-translate-y: -66.666667% !important; + .xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; } - .xl\:-translate-y-1\/4 { - --tw-translate-y: -25% !important; + .xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; } - .xl\:-translate-y-2\/4 { - --tw-translate-y: -50% !important; + .xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; } - .xl\:-translate-y-3\/4 { - --tw-translate-y: -75% !important; + .xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; } - .xl\:-translate-y-full { - --tw-translate-y: -100% !important; + .xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; } - .xl\:hover\:translate-x-0:hover { - --tw-translate-x: 0px !important; + .xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; } - .xl\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem !important; + .xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; } - .xl\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem !important; + .xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; } - .xl\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem !important; + .xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; } - .xl\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem !important; + .xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; } - .xl\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem !important; + .xl\:ring-opacity-100 { + --tw-ring-opacity: 1 !important; } - .xl\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem !important; + .xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; } - .xl\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem !important; + .xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; } - .xl\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem !important; + .xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; } - .xl\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem !important; + .xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; } - .xl\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem !important; + .xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; } - .xl\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem !important; + .xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; } - .xl\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem !important; + .xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; } - .xl\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem !important; + .xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; } - .xl\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem !important; + .xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; } - .xl\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem !important; + .xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; } - .xl\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem !important; + .xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; } - .xl\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem !important; + .xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; } - .xl\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem !important; + .xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; } - .xl\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem !important; + .xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; } - .xl\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem !important; + .xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; } - .xl\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem !important; + .xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; } - .xl\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem !important; + .xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; } - .xl\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem !important; + .xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; } - .xl\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem !important; + .xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; } - .xl\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem !important; + .xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; } - .xl\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem !important; + .xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; } - .xl\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem !important; + .xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; } - .xl\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem !important; + .xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; } - .xl\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem !important; + .xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; } - .xl\:hover\:translate-x-px:hover { - --tw-translate-x: 1px !important; + .xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; } - .xl\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem !important; + .xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; } - .xl\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem !important; + .xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; } - .xl\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem !important; + .xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; } - .xl\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem !important; + .xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; } - .xl\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px !important; + .xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; } - .xl\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem !important; + .xl\:ring-offset-0 { + --tw-ring-offset-width: 0px !important; } - .xl\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem !important; + .xl\:ring-offset-1 { + --tw-ring-offset-width: 1px !important; } - .xl\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem !important; + .xl\:ring-offset-2 { + --tw-ring-offset-width: 2px !important; } - .xl\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem !important; + .xl\:ring-offset-4 { + --tw-ring-offset-width: 4px !important; } - .xl\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem !important; + .xl\:ring-offset-8 { + --tw-ring-offset-width: 8px !important; } - .xl\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem !important; + .xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; } - .xl\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem !important; + .xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; } - .xl\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem !important; + .xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; } - .xl\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem !important; + .xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; } - .xl\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem !important; + .xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; } - .xl\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem !important; + .xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; } - .xl\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem !important; + .xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; } - .xl\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem !important; + .xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; } - .xl\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem !important; + .xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; } - .xl\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem !important; + .xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; } - .xl\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem !important; + .xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent !important; } - .xl\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem !important; + .xl\:ring-offset-current { + --tw-ring-offset-color: currentColor !important; } - .xl\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem !important; + .xl\:ring-offset-black { + --tw-ring-offset-color: #000 !important; } - .xl\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem !important; + .xl\:ring-offset-white { + --tw-ring-offset-color: #fff !important; } - .xl\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem !important; + .xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; } - .xl\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem !important; + .xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; } - .xl\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem !important; + .xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; } - .xl\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem !important; + .xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; } - .xl\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem !important; + .xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; } - .xl\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem !important; + .xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; } - .xl\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem !important; + .xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; } - .xl\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem !important; + .xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; } - .xl\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem !important; + .xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; } - .xl\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem !important; + .xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; } - .xl\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px !important; + .xl\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; } - .xl\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem !important; + .xl\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; } - .xl\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem !important; + .xl\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; } - .xl\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem !important; + .xl\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; } - .xl\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem !important; + .xl\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; } - .xl\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50% !important; + .xl\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; } - .xl\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333% !important; + .xl\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; } - .xl\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667% !important; + .xl\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; } - .xl\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25% !important; + .xl\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; } - .xl\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50% !important; + .xl\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; } - .xl\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75% !important; + .xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; } - .xl\:hover\:translate-x-full:hover { - --tw-translate-x: 100% !important; + .xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; } - .xl\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50% !important; + .xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; } - .xl\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333% !important; + .xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; } - .xl\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667% !important; + .xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; } - .xl\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25% !important; + .xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; } - .xl\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50% !important; + .xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; } - .xl\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75% !important; + .xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; } - .xl\:hover\:-translate-x-full:hover { - --tw-translate-x: -100% !important; + .xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; } - .xl\:hover\:translate-y-0:hover { - --tw-translate-y: 0px !important; + .xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; } - .xl\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem !important; + .xl\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; } - .xl\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem !important; + .xl\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; } - .xl\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem !important; + .xl\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; } - .xl\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem !important; + .xl\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; } - .xl\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem !important; + .xl\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; } - .xl\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem !important; + .xl\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; } - .xl\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem !important; + .xl\:ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; } - .xl\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem !important; + .xl\:ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; } - .xl\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem !important; + .xl\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; } - .xl\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem !important; + .xl\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; } - .xl\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem !important; + .xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; } - .xl\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem !important; + .xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; } - .xl\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem !important; + .xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; } - .xl\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem !important; + .xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; } - .xl\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem !important; + .xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; } - .xl\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem !important; + .xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; } - .xl\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem !important; + .xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; } - .xl\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem !important; + .xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; } - .xl\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem !important; + .xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; } - .xl\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem !important; + .xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; } - .xl\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem !important; + .xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; } - .xl\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem !important; + .xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; } - .xl\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem !important; + .xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; } - .xl\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem !important; + .xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; } - .xl\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem !important; + .xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; } - .xl\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem !important; + .xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; } - .xl\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem !important; + .xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; } - .xl\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem !important; + .xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; } - .xl\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem !important; + .xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; } - .xl\:hover\:translate-y-px:hover { - --tw-translate-y: 1px !important; + .xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; } - .xl\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem !important; + .xl\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; } - .xl\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem !important; + .xl\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; } - .xl\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem !important; + .xl\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; } - .xl\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem !important; + .xl\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; } - .xl\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px !important; + .xl\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; } - .xl\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem !important; + .xl\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; } - .xl\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem !important; + .xl\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; } - .xl\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem !important; + .xl\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; } - .xl\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem !important; + .xl\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; } - .xl\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem !important; + .xl\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; } - .xl\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem !important; + .xl\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; } - .xl\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem !important; + .xl\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; } - .xl\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem !important; + .xl\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; } - .xl\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem !important; + .xl\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; } - .xl\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem !important; + .xl\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; } - .xl\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem !important; + .xl\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; } - .xl\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem !important; + .xl\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; } - .xl\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem !important; + .xl\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; } - .xl\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem !important; + .xl\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; } - .xl\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem !important; + .xl\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; } - .xl\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem !important; + .xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; } - .xl\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem !important; + .xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; } - .xl\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem !important; + .xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; } - .xl\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem !important; + .xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; } - .xl\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem !important; + .xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; } - .xl\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem !important; + .xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; } - .xl\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem !important; + .xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; } - .xl\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem !important; + .xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; } - .xl\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem !important; + .xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; } - .xl\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem !important; + .xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; } - .xl\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem !important; + .xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; } - .xl\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem !important; + .xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; } - .xl\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem !important; + .xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; } - .xl\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem !important; + .xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; } - .xl\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px !important; + .xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; } - .xl\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem !important; + .xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; } - .xl\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem !important; + .xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; } - .xl\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem !important; + .xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; } - .xl\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem !important; + .xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; } - .xl\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50% !important; + .xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; } - .xl\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333% !important; + .xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; } - .xl\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667% !important; + .xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; } - .xl\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25% !important; + .xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; } - .xl\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50% !important; + .xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; } - .xl\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75% !important; + .xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; } - .xl\:hover\:translate-y-full:hover { - --tw-translate-y: 100% !important; + .xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; } - .xl\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50% !important; + .xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; } - .xl\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333% !important; + .xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; } - .xl\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667% !important; + .xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; } - .xl\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25% !important; + .xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; } - .xl\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50% !important; + .xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; } - .xl\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75% !important; + .xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; } - .xl\:hover\:-translate-y-full:hover { - --tw-translate-y: -100% !important; + .xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; } - .xl\:focus\:translate-x-0:focus { - --tw-translate-x: 0px !important; + .xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; } - .xl\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem !important; + .xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; } - - .xl\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem !important; + + .xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; } - .xl\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem !important; + .xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; } - .xl\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem !important; + .xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; } - .xl\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem !important; + .xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; } - .xl\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem !important; + .xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; } - .xl\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem !important; + .xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; } - .xl\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem !important; + .xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; } - .xl\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem !important; + .xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; } - .xl\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem !important; + .xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; } - .xl\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem !important; + .xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; } - .xl\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem !important; + .xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; } - .xl\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem !important; + .xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; } - .xl\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem !important; + .xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; } - .xl\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem !important; + .xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; } - .xl\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem !important; + .xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; } - .xl\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem !important; + .xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; } - .xl\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem !important; + .xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; } - .xl\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem !important; + .xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; } - .xl\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem !important; + .xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; } - .xl\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem !important; + .xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; } - .xl\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem !important; + .xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; } - .xl\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem !important; + .xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; } - .xl\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem !important; + .xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; } - .xl\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem !important; + .xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; } - .xl\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem !important; + .xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; } - .xl\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem !important; + .xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; } - .xl\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem !important; + .xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; } - .xl\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem !important; + .xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; } - .xl\:focus\:translate-x-px:focus { - --tw-translate-x: 1px !important; + .xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; } - .xl\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem !important; + .xl\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; } - .xl\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem !important; + .xl\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; } - .xl\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem !important; + .xl\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; } - .xl\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem !important; + .xl\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; } - .xl\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px !important; + .xl\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; } - .xl\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem !important; + .xl\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; } - .xl\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem !important; + .xl\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; } - .xl\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem !important; + .xl\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; } - .xl\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem !important; + .xl\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; } - .xl\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem !important; + .xl\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; } - .xl\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem !important; + .xl\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; } - .xl\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem !important; + .xl\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; } - .xl\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem !important; + .xl\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; } - .xl\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem !important; + .xl\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; } - .xl\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem !important; + .xl\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; } - .xl\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem !important; + .xl\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; } - .xl\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem !important; + .xl\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; } - .xl\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem !important; + .xl\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; } - .xl\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem !important; + .xl\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; } - .xl\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem !important; + .xl\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; } - .xl\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem !important; + .xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; } - .xl\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem !important; + .xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; } - .xl\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem !important; + .xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; } - .xl\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem !important; + .xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; } - .xl\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem !important; + .xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; } - .xl\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem !important; + .xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; } - .xl\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem !important; + .xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; } - .xl\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem !important; + .xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; } - .xl\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem !important; + .xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; } - .xl\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem !important; + .xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; } - .xl\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem !important; + .xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; } - .xl\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem !important; + .xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; } - .xl\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem !important; + .xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; } - .xl\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem !important; + .xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; } - .xl\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px !important; + .xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; } - .xl\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem !important; + .xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; } - .xl\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem !important; + .xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; } - .xl\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem !important; + .xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; } - .xl\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem !important; + .xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; } - .xl\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50% !important; + .xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; } - .xl\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333% !important; + .xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; } - .xl\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667% !important; + .xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; } - .xl\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25% !important; + .xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; } - .xl\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50% !important; + .xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; } - .xl\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75% !important; + .xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; } - .xl\:focus\:translate-x-full:focus { - --tw-translate-x: 100% !important; + .xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; } - .xl\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50% !important; + .xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; } - .xl\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333% !important; + .xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; } - .xl\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667% !important; + .xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; } - .xl\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25% !important; + .xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; } - .xl\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50% !important; + .xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; } - .xl\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75% !important; + .xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; } - .xl\:focus\:-translate-x-full:focus { - --tw-translate-x: -100% !important; + .xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; } - .xl\:focus\:translate-y-0:focus { - --tw-translate-y: 0px !important; + .xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; } - .xl\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem !important; + .xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; } - .xl\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem !important; + .xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; } - .xl\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem !important; + .xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; } - .xl\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem !important; + .xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; } - .xl\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem !important; + .xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; } - .xl\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem !important; + .xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; } - .xl\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem !important; + .xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; } - .xl\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem !important; + .xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; } - .xl\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem !important; + .xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; } - .xl\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem !important; + .xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; } - .xl\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem !important; + .xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; } - .xl\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem !important; + .xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; } - .xl\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem !important; + .xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; } - .xl\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem !important; + .xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; } - .xl\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem !important; + .xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; } - .xl\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem !important; + .xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; } - .xl\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem !important; + .xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; } - .xl\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem !important; + .xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; } - .xl\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem !important; + .xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; } - .xl\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem !important; + .xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; } - .xl\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem !important; + .xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; } - .xl\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem !important; + .xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; } - .xl\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem !important; + .xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; } - .xl\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem !important; + .xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; } - .xl\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem !important; + .xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; } - .xl\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem !important; + .xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; } - .xl\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem !important; + .xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; } - .xl\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem !important; + .xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; } - .xl\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem !important; + .xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; } - .xl\:focus\:translate-y-px:focus { - --tw-translate-y: 1px !important; + .xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; } - .xl\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem !important; + .xl\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; } - .xl\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem !important; + .xl\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; } - .xl\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem !important; + .xl\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; } - .xl\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem !important; + .xl\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; } - .xl\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px !important; + .xl\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; } - .xl\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem !important; + .xl\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; } - .xl\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem !important; + .xl\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; } - .xl\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem !important; + .xl\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; } - .xl\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem !important; + .xl\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; } - .xl\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem !important; + .xl\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; } - .xl\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem !important; + .xl\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; } - .xl\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem !important; + .xl\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; } - .xl\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem !important; + .xl\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; } - .xl\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem !important; + .xl\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; } - .xl\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem !important; + .xl\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; } - .xl\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem !important; + .xl\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; } - .xl\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem !important; + .xl\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; } - .xl\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem !important; + .xl\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; } - .xl\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem !important; + .xl\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; } - .xl\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem !important; + .xl\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; } - .xl\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem !important; + .xl\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important; } - .xl\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem !important; + .xl\:filter-none { + filter: none !important; } - .xl\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem !important; + .xl\:blur-0 { + --tw-blur: blur(0) !important; } - .xl\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem !important; + .xl\:blur-sm { + --tw-blur: blur(4px) !important; } - .xl\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem !important; + .xl\:blur { + --tw-blur: blur(8px) !important; } - .xl\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem !important; + .xl\:blur-md { + --tw-blur: blur(12px) !important; } - .xl\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem !important; + .xl\:blur-lg { + --tw-blur: blur(16px) !important; } - .xl\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem !important; + .xl\:blur-xl { + --tw-blur: blur(24px) !important; } - .xl\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem !important; + .xl\:blur-2xl { + --tw-blur: blur(40px) !important; } - .xl\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem !important; + .xl\:blur-3xl { + --tw-blur: blur(64px) !important; } - .xl\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem !important; + .xl\:brightness-0 { + --tw-brightness: brightness(0) !important; } - .xl\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem !important; + .xl\:brightness-50 { + --tw-brightness: brightness(.5) !important; } - .xl\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem !important; + .xl\:brightness-75 { + --tw-brightness: brightness(.75) !important; } - .xl\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem !important; + .xl\:brightness-90 { + --tw-brightness: brightness(.9) !important; } - .xl\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px !important; + .xl\:brightness-95 { + --tw-brightness: brightness(.95) !important; } - .xl\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem !important; + .xl\:brightness-100 { + --tw-brightness: brightness(1) !important; } - .xl\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem !important; + .xl\:brightness-105 { + --tw-brightness: brightness(1.05) !important; } - .xl\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem !important; + .xl\:brightness-110 { + --tw-brightness: brightness(1.1) !important; } - .xl\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem !important; + .xl\:brightness-125 { + --tw-brightness: brightness(1.25) !important; } - .xl\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50% !important; + .xl\:brightness-150 { + --tw-brightness: brightness(1.5) !important; } - .xl\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333% !important; + .xl\:brightness-200 { + --tw-brightness: brightness(2) !important; } - .xl\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667% !important; + .xl\:contrast-0 { + --tw-contrast: contrast(0) !important; } - .xl\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25% !important; + .xl\:contrast-50 { + --tw-contrast: contrast(.5) !important; } - .xl\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50% !important; + .xl\:contrast-75 { + --tw-contrast: contrast(.75) !important; } - .xl\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75% !important; + .xl\:contrast-100 { + --tw-contrast: contrast(1) !important; } - .xl\:focus\:translate-y-full:focus { - --tw-translate-y: 100% !important; + .xl\:contrast-125 { + --tw-contrast: contrast(1.25) !important; } - .xl\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50% !important; + .xl\:contrast-150 { + --tw-contrast: contrast(1.5) !important; } - .xl\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333% !important; + .xl\:contrast-200 { + --tw-contrast: contrast(2) !important; } - .xl\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667% !important; + .xl\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; } - .xl\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25% !important; + .xl\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; } - .xl\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50% !important; + .xl\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; } - .xl\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75% !important; + .xl\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; } - .xl\:focus\:-translate-y-full:focus { - --tw-translate-y: -100% !important; + .xl\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; } - .xl\:skew-x-0 { - --tw-skew-x: 0deg !important; + .xl\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; } - .xl\:skew-x-1 { - --tw-skew-x: 1deg !important; + .xl\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000) !important; } - .xl\:skew-x-2 { - --tw-skew-x: 2deg !important; + .xl\:grayscale-0 { + --tw-grayscale: grayscale(0) !important; } - .xl\:skew-x-3 { - --tw-skew-x: 3deg !important; + .xl\:grayscale { + --tw-grayscale: grayscale(100%) !important; } - .xl\:skew-x-6 { - --tw-skew-x: 6deg !important; + .xl\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg) !important; } - .xl\:skew-x-12 { - --tw-skew-x: 12deg !important; + .xl\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg) !important; } - .xl\:-skew-x-12 { - --tw-skew-x: -12deg !important; + .xl\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg) !important; } - .xl\:-skew-x-6 { - --tw-skew-x: -6deg !important; + .xl\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg) !important; } - .xl\:-skew-x-3 { - --tw-skew-x: -3deg !important; + .xl\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg) !important; } - .xl\:-skew-x-2 { - --tw-skew-x: -2deg !important; + .xl\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg) !important; } - .xl\:-skew-x-1 { - --tw-skew-x: -1deg !important; + .xl\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg) !important; } - .xl\:skew-y-0 { - --tw-skew-y: 0deg !important; + .xl\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg) !important; } - .xl\:skew-y-1 { - --tw-skew-y: 1deg !important; + .xl\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg) !important; } - .xl\:skew-y-2 { - --tw-skew-y: 2deg !important; + .xl\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg) !important; } - .xl\:skew-y-3 { - --tw-skew-y: 3deg !important; + .xl\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg) !important; } - .xl\:skew-y-6 { - --tw-skew-y: 6deg !important; + .xl\:invert-0 { + --tw-invert: invert(0) !important; } - .xl\:skew-y-12 { - --tw-skew-y: 12deg !important; + .xl\:invert { + --tw-invert: invert(100%) !important; } - .xl\:-skew-y-12 { - --tw-skew-y: -12deg !important; + .xl\:saturate-0 { + --tw-saturate: saturate(0) !important; } - .xl\:-skew-y-6 { - --tw-skew-y: -6deg !important; + .xl\:saturate-50 { + --tw-saturate: saturate(.5) !important; } - .xl\:-skew-y-3 { - --tw-skew-y: -3deg !important; + .xl\:saturate-100 { + --tw-saturate: saturate(1) !important; } - .xl\:-skew-y-2 { - --tw-skew-y: -2deg !important; + .xl\:saturate-150 { + --tw-saturate: saturate(1.5) !important; } - .xl\:-skew-y-1 { - --tw-skew-y: -1deg !important; + .xl\:saturate-200 { + --tw-saturate: saturate(2) !important; } - .xl\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg !important; + .xl\:sepia-0 { + --tw-sepia: sepia(0) !important; } - .xl\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg !important; + .xl\:sepia { + --tw-sepia: sepia(100%) !important; } - .xl\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg !important; + .xl\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important; } - .xl\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg !important; + .xl\:backdrop-filter-none { + backdrop-filter: none !important; } - .xl\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg !important; + .xl\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0) !important; } - .xl\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg !important; + .xl\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5) !important; } - .xl\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg !important; + .xl\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75) !important; } - .xl\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg !important; + .xl\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9) !important; } - .xl\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg !important; + .xl\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95) !important; } - .xl\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg !important; + .xl\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1) !important; } - .xl\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg !important; + .xl\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05) !important; } - .xl\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg !important; + .xl\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1) !important; } - .xl\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg !important; + .xl\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25) !important; } - .xl\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg !important; + .xl\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5) !important; } - .xl\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg !important; + .xl\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2) !important; } - .xl\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg !important; + .xl\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0) !important; } - .xl\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg !important; + .xl\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5) !important; } - .xl\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg !important; + .xl\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75) !important; } - .xl\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg !important; + .xl\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1) !important; } - .xl\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg !important; + .xl\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25) !important; } - .xl\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg !important; + .xl\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5) !important; } - .xl\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg !important; + .xl\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2) !important; } - .xl\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg !important; + .xl\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0) !important; } - .xl\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg !important; + .xl\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%) !important; } - .xl\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg !important; + .xl\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; } - .xl\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg !important; + .xl\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; } - .xl\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg !important; + .xl\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; } - .xl\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg !important; + .xl\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; } - .xl\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg !important; + .xl\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; } - .xl\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg !important; + .xl\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; } - .xl\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg !important; + .xl\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; } - .xl\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg !important; + .xl\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; } - .xl\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg !important; + .xl\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; } - .xl\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg !important; + .xl\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; } - .xl\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg !important; + .xl\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; } - .xl\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg !important; + .xl\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0) !important; } - .xl\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg !important; + .xl\:backdrop-invert { + --tw-backdrop-invert: invert(100%) !important; } - .xl\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg !important; + .xl\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0) !important; } - .xl\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg !important; + .xl\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5) !important; } - .xl\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg !important; + .xl\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1) !important; } - .xl\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg !important; + .xl\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5) !important; } - .xl\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg !important; + .xl\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2) !important; } - .xl\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg !important; + .xl\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0) !important; } - .xl\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg !important; + .xl\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%) !important; } .xl\:transition-none { @@ -145640,6 +146202,70 @@ video { transition-duration: 150ms !important; } + .xl\:delay-75 { + transition-delay: 75ms !important; + } + + .xl\:delay-100 { + transition-delay: 100ms !important; + } + + .xl\:delay-150 { + transition-delay: 150ms !important; + } + + .xl\:delay-200 { + transition-delay: 200ms !important; + } + + .xl\:delay-300 { + transition-delay: 300ms !important; + } + + .xl\:delay-500 { + transition-delay: 500ms !important; + } + + .xl\:delay-700 { + transition-delay: 700ms !important; + } + + .xl\:delay-1000 { + transition-delay: 1000ms !important; + } + + .xl\:duration-75 { + transition-duration: 75ms !important; + } + + .xl\:duration-100 { + transition-duration: 100ms !important; + } + + .xl\:duration-150 { + transition-duration: 150ms !important; + } + + .xl\:duration-200 { + transition-duration: 200ms !important; + } + + .xl\:duration-300 { + transition-duration: 300ms !important; + } + + .xl\:duration-500 { + transition-duration: 500ms !important; + } + + .xl\:duration-700 { + transition-duration: 700ms !important; + } + + .xl\:duration-1000 { + transition-duration: 1000ms !important; + } + .xl\:ease-linear { transition-timing-function: linear !important; } @@ -145656,22319 +146282,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; } - .xl\:duration-75 { - transition-duration: 75ms !important; + .xl\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 1536px) { + .\32xl\:container { + width: 100%; + } + + @media (min-width: 640px) { + .\32xl\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .\32xl\:container { + max-width: 768px; + } } - .xl\:duration-100 { - transition-duration: 100ms !important; + @media (min-width: 1024px) { + .\32xl\:container { + max-width: 1024px; + } } - .xl\:duration-150 { - transition-duration: 150ms !important; + @media (min-width: 1280px) { + .\32xl\:container { + max-width: 1280px; + } } - .xl\:duration-200 { - transition-duration: 200ms !important; + @media (min-width: 1536px) { + .\32xl\:container { + max-width: 1536px; + } } - .xl\:duration-300 { - transition-duration: 300ms !important; + .\32xl\:sr-only { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .xl\:duration-500 { - transition-duration: 500ms !important; + .\32xl\:not-sr-only { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .xl\:duration-700 { - transition-duration: 700ms !important; + .\32xl\:focus-within\:sr-only:focus-within { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .xl\:duration-1000 { - transition-duration: 1000ms !important; + .\32xl\:focus-within\:not-sr-only:focus-within { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .xl\:delay-75 { - transition-delay: 75ms !important; + .\32xl\:focus\:sr-only:focus { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border-width: 0 !important; } - .xl\:delay-100 { - transition-delay: 100ms !important; + .\32xl\:focus\:not-sr-only:focus { + position: static !important; + width: auto !important; + height: auto !important; + padding: 0 !important; + margin: 0 !important; + overflow: visible !important; + clip: auto !important; + white-space: normal !important; } - .xl\:delay-150 { - transition-delay: 150ms !important; + .\32xl\:pointer-events-none { + pointer-events: none !important; } - .xl\:delay-200 { - transition-delay: 200ms !important; + .\32xl\:pointer-events-auto { + pointer-events: auto !important; } - .xl\:delay-300 { - transition-delay: 300ms !important; + .\32xl\:visible { + visibility: visible !important; } - .xl\:delay-500 { - transition-delay: 500ms !important; + .\32xl\:invisible { + visibility: hidden !important; } - .xl\:delay-700 { - transition-delay: 700ms !important; + .\32xl\:static { + position: static !important; } - .xl\:delay-1000 { - transition-delay: 1000ms !important; + .\32xl\:fixed { + position: fixed !important; } - .xl\:animate-none { - animation: none !important; + .\32xl\:absolute { + position: absolute !important; } - .xl\:animate-spin { - animation: spin 1s linear infinite !important; + .\32xl\:relative { + position: relative !important; } - .xl\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + .\32xl\:sticky { + position: sticky !important; } - .xl\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + .\32xl\:inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; } - .xl\:animate-bounce { - animation: bounce 1s infinite !important; + .\32xl\:inset-1 { + top: 0.25rem !important; + right: 0.25rem !important; + bottom: 0.25rem !important; + left: 0.25rem !important; } - .xl\:mix-blend-normal { - mix-blend-mode: normal !important; + .\32xl\:inset-2 { + top: 0.5rem !important; + right: 0.5rem !important; + bottom: 0.5rem !important; + left: 0.5rem !important; } - .xl\:mix-blend-multiply { - mix-blend-mode: multiply !important; + .\32xl\:inset-3 { + top: 0.75rem !important; + right: 0.75rem !important; + bottom: 0.75rem !important; + left: 0.75rem !important; } - .xl\:mix-blend-screen { - mix-blend-mode: screen !important; + .\32xl\:inset-4 { + top: 1rem !important; + right: 1rem !important; + bottom: 1rem !important; + left: 1rem !important; } - .xl\:mix-blend-overlay { - mix-blend-mode: overlay !important; + .\32xl\:inset-5 { + top: 1.25rem !important; + right: 1.25rem !important; + bottom: 1.25rem !important; + left: 1.25rem !important; } - .xl\:mix-blend-darken { - mix-blend-mode: darken !important; + .\32xl\:inset-6 { + top: 1.5rem !important; + right: 1.5rem !important; + bottom: 1.5rem !important; + left: 1.5rem !important; } - .xl\:mix-blend-lighten { - mix-blend-mode: lighten !important; + .\32xl\:inset-7 { + top: 1.75rem !important; + right: 1.75rem !important; + bottom: 1.75rem !important; + left: 1.75rem !important; } - .xl\:mix-blend-color-dodge { - mix-blend-mode: color-dodge !important; + .\32xl\:inset-8 { + top: 2rem !important; + right: 2rem !important; + bottom: 2rem !important; + left: 2rem !important; } - .xl\:mix-blend-color-burn { - mix-blend-mode: color-burn !important; + .\32xl\:inset-9 { + top: 2.25rem !important; + right: 2.25rem !important; + bottom: 2.25rem !important; + left: 2.25rem !important; } - .xl\:mix-blend-hard-light { - mix-blend-mode: hard-light !important; + .\32xl\:inset-10 { + top: 2.5rem !important; + right: 2.5rem !important; + bottom: 2.5rem !important; + left: 2.5rem !important; } - .xl\:mix-blend-soft-light { - mix-blend-mode: soft-light !important; + .\32xl\:inset-11 { + top: 2.75rem !important; + right: 2.75rem !important; + bottom: 2.75rem !important; + left: 2.75rem !important; } - .xl\:mix-blend-difference { - mix-blend-mode: difference !important; + .\32xl\:inset-12 { + top: 3rem !important; + right: 3rem !important; + bottom: 3rem !important; + left: 3rem !important; } - .xl\:mix-blend-exclusion { - mix-blend-mode: exclusion !important; + .\32xl\:inset-14 { + top: 3.5rem !important; + right: 3.5rem !important; + bottom: 3.5rem !important; + left: 3.5rem !important; } - .xl\:mix-blend-hue { - mix-blend-mode: hue !important; + .\32xl\:inset-16 { + top: 4rem !important; + right: 4rem !important; + bottom: 4rem !important; + left: 4rem !important; } - .xl\:mix-blend-saturation { - mix-blend-mode: saturation !important; + .\32xl\:inset-20 { + top: 5rem !important; + right: 5rem !important; + bottom: 5rem !important; + left: 5rem !important; } - .xl\:mix-blend-color { - mix-blend-mode: color !important; + .\32xl\:inset-24 { + top: 6rem !important; + right: 6rem !important; + bottom: 6rem !important; + left: 6rem !important; } - .xl\:mix-blend-luminosity { - mix-blend-mode: luminosity !important; + .\32xl\:inset-28 { + top: 7rem !important; + right: 7rem !important; + bottom: 7rem !important; + left: 7rem !important; } - .xl\:bg-blend-normal { - background-blend-mode: normal !important; + .\32xl\:inset-32 { + top: 8rem !important; + right: 8rem !important; + bottom: 8rem !important; + left: 8rem !important; } - .xl\:bg-blend-multiply { - background-blend-mode: multiply !important; + .\32xl\:inset-36 { + top: 9rem !important; + right: 9rem !important; + bottom: 9rem !important; + left: 9rem !important; } - .xl\:bg-blend-screen { - background-blend-mode: screen !important; + .\32xl\:inset-40 { + top: 10rem !important; + right: 10rem !important; + bottom: 10rem !important; + left: 10rem !important; } - .xl\:bg-blend-overlay { - background-blend-mode: overlay !important; + .\32xl\:inset-44 { + top: 11rem !important; + right: 11rem !important; + bottom: 11rem !important; + left: 11rem !important; } - .xl\:bg-blend-darken { - background-blend-mode: darken !important; + .\32xl\:inset-48 { + top: 12rem !important; + right: 12rem !important; + bottom: 12rem !important; + left: 12rem !important; } - .xl\:bg-blend-lighten { - background-blend-mode: lighten !important; + .\32xl\:inset-52 { + top: 13rem !important; + right: 13rem !important; + bottom: 13rem !important; + left: 13rem !important; } - .xl\:bg-blend-color-dodge { - background-blend-mode: color-dodge !important; + .\32xl\:inset-56 { + top: 14rem !important; + right: 14rem !important; + bottom: 14rem !important; + left: 14rem !important; } - .xl\:bg-blend-color-burn { - background-blend-mode: color-burn !important; + .\32xl\:inset-60 { + top: 15rem !important; + right: 15rem !important; + bottom: 15rem !important; + left: 15rem !important; } - .xl\:bg-blend-hard-light { - background-blend-mode: hard-light !important; + .\32xl\:inset-64 { + top: 16rem !important; + right: 16rem !important; + bottom: 16rem !important; + left: 16rem !important; } - .xl\:bg-blend-soft-light { - background-blend-mode: soft-light !important; + .\32xl\:inset-72 { + top: 18rem !important; + right: 18rem !important; + bottom: 18rem !important; + left: 18rem !important; } - .xl\:bg-blend-difference { - background-blend-mode: difference !important; + .\32xl\:inset-80 { + top: 20rem !important; + right: 20rem !important; + bottom: 20rem !important; + left: 20rem !important; } - .xl\:bg-blend-exclusion { - background-blend-mode: exclusion !important; + .\32xl\:inset-96 { + top: 24rem !important; + right: 24rem !important; + bottom: 24rem !important; + left: 24rem !important; } - .xl\:bg-blend-hue { - background-blend-mode: hue !important; + .\32xl\:inset-auto { + top: auto !important; + right: auto !important; + bottom: auto !important; + left: auto !important; } - .xl\:bg-blend-saturation { - background-blend-mode: saturation !important; + .\32xl\:inset-px { + top: 1px !important; + right: 1px !important; + bottom: 1px !important; + left: 1px !important; } - .xl\:bg-blend-color { - background-blend-mode: color !important; + .\32xl\:inset-0\.5 { + top: 0.125rem !important; + right: 0.125rem !important; + bottom: 0.125rem !important; + left: 0.125rem !important; } - .xl\:bg-blend-luminosity { - background-blend-mode: luminosity !important; + .\32xl\:inset-1\.5 { + top: 0.375rem !important; + right: 0.375rem !important; + bottom: 0.375rem !important; + left: 0.375rem !important; } - .xl\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-brightness: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-contrast: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-invert: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-saturate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-sepia: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/) !important; - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important; + .\32xl\:inset-2\.5 { + top: 0.625rem !important; + right: 0.625rem !important; + bottom: 0.625rem !important; + left: 0.625rem !important; } - .xl\:filter-none { - filter: none !important; + .\32xl\:inset-3\.5 { + top: 0.875rem !important; + right: 0.875rem !important; + bottom: 0.875rem !important; + left: 0.875rem !important; } - .xl\:blur-0 { - --tw-blur: blur(0) !important; + .\32xl\:-inset-0 { + top: 0px !important; + right: 0px !important; + bottom: 0px !important; + left: 0px !important; } - .xl\:blur-sm { - --tw-blur: blur(4px) !important; + .\32xl\:-inset-1 { + top: -0.25rem !important; + right: -0.25rem !important; + bottom: -0.25rem !important; + left: -0.25rem !important; } - .xl\:blur { - --tw-blur: blur(8px) !important; + .\32xl\:-inset-2 { + top: -0.5rem !important; + right: -0.5rem !important; + bottom: -0.5rem !important; + left: -0.5rem !important; } - .xl\:blur-md { - --tw-blur: blur(12px) !important; + .\32xl\:-inset-3 { + top: -0.75rem !important; + right: -0.75rem !important; + bottom: -0.75rem !important; + left: -0.75rem !important; } - .xl\:blur-lg { - --tw-blur: blur(16px) !important; + .\32xl\:-inset-4 { + top: -1rem !important; + right: -1rem !important; + bottom: -1rem !important; + left: -1rem !important; } - .xl\:blur-xl { - --tw-blur: blur(24px) !important; + .\32xl\:-inset-5 { + top: -1.25rem !important; + right: -1.25rem !important; + bottom: -1.25rem !important; + left: -1.25rem !important; } - .xl\:blur-2xl { - --tw-blur: blur(40px) !important; + .\32xl\:-inset-6 { + top: -1.5rem !important; + right: -1.5rem !important; + bottom: -1.5rem !important; + left: -1.5rem !important; } - .xl\:blur-3xl { - --tw-blur: blur(64px) !important; + .\32xl\:-inset-7 { + top: -1.75rem !important; + right: -1.75rem !important; + bottom: -1.75rem !important; + left: -1.75rem !important; } - .xl\:brightness-0 { - --tw-brightness: brightness(0) !important; + .\32xl\:-inset-8 { + top: -2rem !important; + right: -2rem !important; + bottom: -2rem !important; + left: -2rem !important; } - .xl\:brightness-50 { - --tw-brightness: brightness(.5) !important; + .\32xl\:-inset-9 { + top: -2.25rem !important; + right: -2.25rem !important; + bottom: -2.25rem !important; + left: -2.25rem !important; } - .xl\:brightness-75 { - --tw-brightness: brightness(.75) !important; + .\32xl\:-inset-10 { + top: -2.5rem !important; + right: -2.5rem !important; + bottom: -2.5rem !important; + left: -2.5rem !important; } - .xl\:brightness-90 { - --tw-brightness: brightness(.9) !important; + .\32xl\:-inset-11 { + top: -2.75rem !important; + right: -2.75rem !important; + bottom: -2.75rem !important; + left: -2.75rem !important; } - .xl\:brightness-95 { - --tw-brightness: brightness(.95) !important; + .\32xl\:-inset-12 { + top: -3rem !important; + right: -3rem !important; + bottom: -3rem !important; + left: -3rem !important; } - .xl\:brightness-100 { - --tw-brightness: brightness(1) !important; + .\32xl\:-inset-14 { + top: -3.5rem !important; + right: -3.5rem !important; + bottom: -3.5rem !important; + left: -3.5rem !important; } - .xl\:brightness-105 { - --tw-brightness: brightness(1.05) !important; + .\32xl\:-inset-16 { + top: -4rem !important; + right: -4rem !important; + bottom: -4rem !important; + left: -4rem !important; } - .xl\:brightness-110 { - --tw-brightness: brightness(1.1) !important; + .\32xl\:-inset-20 { + top: -5rem !important; + right: -5rem !important; + bottom: -5rem !important; + left: -5rem !important; } - .xl\:brightness-125 { - --tw-brightness: brightness(1.25) !important; + .\32xl\:-inset-24 { + top: -6rem !important; + right: -6rem !important; + bottom: -6rem !important; + left: -6rem !important; } - .xl\:brightness-150 { - --tw-brightness: brightness(1.5) !important; + .\32xl\:-inset-28 { + top: -7rem !important; + right: -7rem !important; + bottom: -7rem !important; + left: -7rem !important; } - .xl\:brightness-200 { - --tw-brightness: brightness(2) !important; + .\32xl\:-inset-32 { + top: -8rem !important; + right: -8rem !important; + bottom: -8rem !important; + left: -8rem !important; } - .xl\:contrast-0 { - --tw-contrast: contrast(0) !important; + .\32xl\:-inset-36 { + top: -9rem !important; + right: -9rem !important; + bottom: -9rem !important; + left: -9rem !important; } - .xl\:contrast-50 { - --tw-contrast: contrast(.5) !important; + .\32xl\:-inset-40 { + top: -10rem !important; + right: -10rem !important; + bottom: -10rem !important; + left: -10rem !important; } - .xl\:contrast-75 { - --tw-contrast: contrast(.75) !important; + .\32xl\:-inset-44 { + top: -11rem !important; + right: -11rem !important; + bottom: -11rem !important; + left: -11rem !important; } - .xl\:contrast-100 { - --tw-contrast: contrast(1) !important; + .\32xl\:-inset-48 { + top: -12rem !important; + right: -12rem !important; + bottom: -12rem !important; + left: -12rem !important; } - .xl\:contrast-125 { - --tw-contrast: contrast(1.25) !important; + .\32xl\:-inset-52 { + top: -13rem !important; + right: -13rem !important; + bottom: -13rem !important; + left: -13rem !important; } - .xl\:contrast-150 { - --tw-contrast: contrast(1.5) !important; + .\32xl\:-inset-56 { + top: -14rem !important; + right: -14rem !important; + bottom: -14rem !important; + left: -14rem !important; } - .xl\:contrast-200 { - --tw-contrast: contrast(2) !important; + .\32xl\:-inset-60 { + top: -15rem !important; + right: -15rem !important; + bottom: -15rem !important; + left: -15rem !important; } - .xl\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)) !important; + .\32xl\:-inset-64 { + top: -16rem !important; + right: -16rem !important; + bottom: -16rem !important; + left: -16rem !important; } - .xl\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)) !important; + .\32xl\:-inset-72 { + top: -18rem !important; + right: -18rem !important; + bottom: -18rem !important; + left: -18rem !important; } - .xl\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)) !important; + .\32xl\:-inset-80 { + top: -20rem !important; + right: -20rem !important; + bottom: -20rem !important; + left: -20rem !important; } - .xl\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)) !important; + .\32xl\:-inset-96 { + top: -24rem !important; + right: -24rem !important; + bottom: -24rem !important; + left: -24rem !important; } - .xl\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)) !important; + .\32xl\:-inset-px { + top: -1px !important; + right: -1px !important; + bottom: -1px !important; + left: -1px !important; } - .xl\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)) !important; + .\32xl\:-inset-0\.5 { + top: -0.125rem !important; + right: -0.125rem !important; + bottom: -0.125rem !important; + left: -0.125rem !important; } - .xl\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000) !important; + .\32xl\:-inset-1\.5 { + top: -0.375rem !important; + right: -0.375rem !important; + bottom: -0.375rem !important; + left: -0.375rem !important; } - .xl\:grayscale-0 { - --tw-grayscale: grayscale(0) !important; + .\32xl\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; } - .xl\:grayscale { - --tw-grayscale: grayscale(100%) !important; + .\32xl\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; } - .xl\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg) !important; + .\32xl\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; } - .xl\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg) !important; + .\32xl\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; } - .xl\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg) !important; + .\32xl\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; } - .xl\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg) !important; + .\32xl\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; } - .xl\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg) !important; + .\32xl\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; } - .xl\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg) !important; + .\32xl\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; } - .xl\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg) !important; + .\32xl\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; } - .xl\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg) !important; + .\32xl\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; } - .xl\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg) !important; + .\32xl\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; } - .xl\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg) !important; + .\32xl\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; } - .xl\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg) !important; + .\32xl\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; } - .xl\:invert-0 { - --tw-invert: invert(0) !important; + .\32xl\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; } - .xl\:invert { - --tw-invert: invert(100%) !important; + .\32xl\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; } - .xl\:saturate-0 { - --tw-saturate: saturate(0) !important; + .\32xl\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; } - .xl\:saturate-50 { - --tw-saturate: saturate(.5) !important; + .\32xl\:inset-y-0 { + top: 0px !important; + bottom: 0px !important; } - .xl\:saturate-100 { - --tw-saturate: saturate(1) !important; + .\32xl\:inset-x-0 { + right: 0px !important; + left: 0px !important; } - .xl\:saturate-150 { - --tw-saturate: saturate(1.5) !important; + .\32xl\:inset-y-1 { + top: 0.25rem !important; + bottom: 0.25rem !important; } - .xl\:saturate-200 { - --tw-saturate: saturate(2) !important; + .\32xl\:inset-x-1 { + right: 0.25rem !important; + left: 0.25rem !important; } - .xl\:sepia-0 { - --tw-sepia: sepia(0) !important; + .\32xl\:inset-y-2 { + top: 0.5rem !important; + bottom: 0.5rem !important; } - .xl\:sepia { - --tw-sepia: sepia(100%) !important; + .\32xl\:inset-x-2 { + right: 0.5rem !important; + left: 0.5rem !important; } - .xl\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/) !important; - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia) !important; + .\32xl\:inset-y-3 { + top: 0.75rem !important; + bottom: 0.75rem !important; } - .xl\:backdrop-filter-none { - backdrop-filter: none !important; + .\32xl\:inset-x-3 { + right: 0.75rem !important; + left: 0.75rem !important; } - .xl\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0) !important; + .\32xl\:inset-y-4 { + top: 1rem !important; + bottom: 1rem !important; } - .xl\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5) !important; + .\32xl\:inset-x-4 { + right: 1rem !important; + left: 1rem !important; } - .xl\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75) !important; + .\32xl\:inset-y-5 { + top: 1.25rem !important; + bottom: 1.25rem !important; } - .xl\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9) !important; + .\32xl\:inset-x-5 { + right: 1.25rem !important; + left: 1.25rem !important; } - .xl\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95) !important; + .\32xl\:inset-y-6 { + top: 1.5rem !important; + bottom: 1.5rem !important; } - .xl\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1) !important; + .\32xl\:inset-x-6 { + right: 1.5rem !important; + left: 1.5rem !important; } - .xl\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05) !important; + .\32xl\:inset-y-7 { + top: 1.75rem !important; + bottom: 1.75rem !important; } - .xl\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1) !important; + .\32xl\:inset-x-7 { + right: 1.75rem !important; + left: 1.75rem !important; } - .xl\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25) !important; + .\32xl\:inset-y-8 { + top: 2rem !important; + bottom: 2rem !important; } - .xl\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5) !important; + .\32xl\:inset-x-8 { + right: 2rem !important; + left: 2rem !important; } - .xl\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2) !important; + .\32xl\:inset-y-9 { + top: 2.25rem !important; + bottom: 2.25rem !important; } - .xl\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0) !important; + .\32xl\:inset-x-9 { + right: 2.25rem !important; + left: 2.25rem !important; } - .xl\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5) !important; + .\32xl\:inset-y-10 { + top: 2.5rem !important; + bottom: 2.5rem !important; } - .xl\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75) !important; + .\32xl\:inset-x-10 { + right: 2.5rem !important; + left: 2.5rem !important; } - .xl\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1) !important; + .\32xl\:inset-y-11 { + top: 2.75rem !important; + bottom: 2.75rem !important; } - .xl\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25) !important; + .\32xl\:inset-x-11 { + right: 2.75rem !important; + left: 2.75rem !important; } - .xl\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5) !important; + .\32xl\:inset-y-12 { + top: 3rem !important; + bottom: 3rem !important; } - .xl\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2) !important; + .\32xl\:inset-x-12 { + right: 3rem !important; + left: 3rem !important; } - .xl\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0) !important; + .\32xl\:inset-y-14 { + top: 3.5rem !important; + bottom: 3.5rem !important; } - .xl\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%) !important; + .\32xl\:inset-x-14 { + right: 3.5rem !important; + left: 3.5rem !important; } - .xl\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg) !important; + .\32xl\:inset-y-16 { + top: 4rem !important; + bottom: 4rem !important; } - .xl\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg) !important; + .\32xl\:inset-x-16 { + right: 4rem !important; + left: 4rem !important; } - .xl\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg) !important; + .\32xl\:inset-y-20 { + top: 5rem !important; + bottom: 5rem !important; } - .xl\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg) !important; + .\32xl\:inset-x-20 { + right: 5rem !important; + left: 5rem !important; } - .xl\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg) !important; + .\32xl\:inset-y-24 { + top: 6rem !important; + bottom: 6rem !important; } - .xl\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg) !important; + .\32xl\:inset-x-24 { + right: 6rem !important; + left: 6rem !important; } - .xl\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg) !important; + .\32xl\:inset-y-28 { + top: 7rem !important; + bottom: 7rem !important; } - .xl\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg) !important; + .\32xl\:inset-x-28 { + right: 7rem !important; + left: 7rem !important; } - .xl\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg) !important; + .\32xl\:inset-y-32 { + top: 8rem !important; + bottom: 8rem !important; } - .xl\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg) !important; + .\32xl\:inset-x-32 { + right: 8rem !important; + left: 8rem !important; } - .xl\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg) !important; + .\32xl\:inset-y-36 { + top: 9rem !important; + bottom: 9rem !important; } - .xl\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0) !important; + .\32xl\:inset-x-36 { + right: 9rem !important; + left: 9rem !important; } - .xl\:backdrop-invert { - --tw-backdrop-invert: invert(100%) !important; + .\32xl\:inset-y-40 { + top: 10rem !important; + bottom: 10rem !important; } - .xl\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0) !important; + .\32xl\:inset-x-40 { + right: 10rem !important; + left: 10rem !important; } - .xl\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5) !important; + .\32xl\:inset-y-44 { + top: 11rem !important; + bottom: 11rem !important; } - .xl\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1) !important; + .\32xl\:inset-x-44 { + right: 11rem !important; + left: 11rem !important; } - .xl\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5) !important; + .\32xl\:inset-y-48 { + top: 12rem !important; + bottom: 12rem !important; } - .xl\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2) !important; + .\32xl\:inset-x-48 { + right: 12rem !important; + left: 12rem !important; } - .xl\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0) !important; + .\32xl\:inset-y-52 { + top: 13rem !important; + bottom: 13rem !important; } - .xl\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%) !important; + .\32xl\:inset-x-52 { + right: 13rem !important; + left: 13rem !important; } - .xl\:example { - font-weight: 700; - color: #ef4444; + .\32xl\:inset-y-56 { + top: 14rem !important; + bottom: 14rem !important; } -} -@media (min-width: 1536px) { - .\32xl\:container { - width: 100%; + .\32xl\:inset-x-56 { + right: 14rem !important; + left: 14rem !important; } - @media (min-width: 640px) { - .\32xl\:container { - max-width: 640px; - } + .\32xl\:inset-y-60 { + top: 15rem !important; + bottom: 15rem !important; } - @media (min-width: 768px) { - .\32xl\:container { - max-width: 768px; - } + .\32xl\:inset-x-60 { + right: 15rem !important; + left: 15rem !important; } - @media (min-width: 1024px) { - .\32xl\:container { - max-width: 1024px; - } + .\32xl\:inset-y-64 { + top: 16rem !important; + bottom: 16rem !important; } - @media (min-width: 1280px) { - .\32xl\:container { - max-width: 1280px; - } + .\32xl\:inset-x-64 { + right: 16rem !important; + left: 16rem !important; } - @media (min-width: 1536px) { - .\32xl\:container { - max-width: 1536px; - } + .\32xl\:inset-y-72 { + top: 18rem !important; + bottom: 18rem !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\:inset-x-72 { + right: 18rem !important; + left: 18rem !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\:inset-y-80 { + top: 20rem !important; + bottom: 20rem !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\:inset-x-80 { + right: 20rem !important; + left: 20rem !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\:inset-y-96 { + top: 24rem !important; + bottom: 24rem !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\:inset-x-96 { + right: 24rem !important; + left: 24rem !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\:inset-y-auto { + top: auto !important; + bottom: auto !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\:inset-x-auto { + right: auto !important; + left: auto !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\:inset-y-px { + top: 1px !important; + bottom: 1px !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\:inset-x-px { + right: 1px !important; + left: 1px !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\:inset-y-0\.5 { + top: 0.125rem !important; + bottom: 0.125rem !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\:inset-x-0\.5 { + right: 0.125rem !important; + left: 0.125rem !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\:inset-y-1\.5 { + top: 0.375rem !important; + bottom: 0.375rem !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\:inset-x-1\.5 { + right: 0.375rem !important; + left: 0.375rem !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\:inset-y-2\.5 { + top: 0.625rem !important; + bottom: 0.625rem !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\:inset-x-2\.5 { + right: 0.625rem !important; + left: 0.625rem !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\:inset-y-3\.5 { + top: 0.875rem !important; + bottom: 0.875rem !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\:inset-x-3\.5 { + right: 0.875rem !important; + left: 0.875rem !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\:-inset-y-0 { + top: 0px !important; + bottom: 0px !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\:-inset-x-0 { + right: 0px !important; + left: 0px !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\:-inset-y-1 { + top: -0.25rem !important; + bottom: -0.25rem !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\:-inset-x-1 { + right: -0.25rem !important; + left: -0.25rem !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\:-inset-y-2 { + top: -0.5rem !important; + bottom: -0.5rem !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\:-inset-x-2 { + right: -0.5rem !important; + left: -0.5rem !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\:-inset-y-3 { + top: -0.75rem !important; + bottom: -0.75rem !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\:-inset-x-3 { + right: -0.75rem !important; + left: -0.75rem !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\:-inset-y-4 { + top: -1rem !important; + bottom: -1rem !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\:-inset-x-4 { + right: -1rem !important; + left: -1rem !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\:-inset-y-5 { + top: -1.25rem !important; + bottom: -1.25rem !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\:-inset-x-5 { + right: -1.25rem !important; + left: -1.25rem !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\:-inset-y-6 { + top: -1.5rem !important; + bottom: -1.5rem !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\:-inset-x-6 { + right: -1.5rem !important; + left: -1.5rem !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\:-inset-y-7 { + top: -1.75rem !important; + bottom: -1.75rem !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\:-inset-x-7 { + right: -1.75rem !important; + left: -1.75rem !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\:-inset-y-8 { + top: -2rem !important; + bottom: -2rem !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\:-inset-x-8 { + right: -2rem !important; + left: -2rem !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\:-inset-y-9 { + top: -2.25rem !important; + bottom: -2.25rem !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\:-inset-x-9 { + right: -2.25rem !important; + left: -2.25rem !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\:-inset-y-10 { + top: -2.5rem !important; + bottom: -2.5rem !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\:-inset-x-10 { + right: -2.5rem !important; + left: -2.5rem !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\:-inset-y-11 { + top: -2.75rem !important; + bottom: -2.75rem !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\:-inset-x-11 { + right: -2.75rem !important; + left: -2.75rem !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\:-inset-y-12 { + top: -3rem !important; + bottom: -3rem !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\:-inset-x-12 { + right: -3rem !important; + left: -3rem !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\:-inset-y-14 { + top: -3.5rem !important; + bottom: -3.5rem !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\:-inset-x-14 { + right: -3.5rem !important; + left: -3.5rem !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\:-inset-y-16 { + top: -4rem !important; + bottom: -4rem !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\:-inset-x-16 { + right: -4rem !important; + left: -4rem !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\:-inset-y-20 { + top: -5rem !important; + bottom: -5rem !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\:-inset-x-20 { + right: -5rem !important; + left: -5rem !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\:-inset-y-24 { + top: -6rem !important; + bottom: -6rem !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\:-inset-x-24 { + right: -6rem !important; + left: -6rem !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\:-inset-y-28 { + top: -7rem !important; + bottom: -7rem !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\:-inset-x-28 { + right: -7rem !important; + left: -7rem !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\:-inset-y-32 { + top: -8rem !important; + bottom: -8rem !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\:-inset-x-32 { + right: -8rem !important; + left: -8rem !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\:-inset-y-36 { + top: -9rem !important; + bottom: -9rem !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\:-inset-x-36 { + right: -9rem !important; + left: -9rem !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\:-inset-y-40 { + top: -10rem !important; + bottom: -10rem !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\:-inset-x-40 { + right: -10rem !important; + left: -10rem !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\:-inset-y-44 { + top: -11rem !important; + bottom: -11rem !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\:-inset-x-44 { + right: -11rem !important; + left: -11rem !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\:-inset-y-48 { + top: -12rem !important; + bottom: -12rem !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\:-inset-x-48 { + right: -12rem !important; + left: -12rem !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\:-inset-y-52 { + top: -13rem !important; + bottom: -13rem !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\:-inset-x-52 { + right: -13rem !important; + left: -13rem !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\:-inset-y-56 { + top: -14rem !important; + bottom: -14rem !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\:-inset-x-56 { + right: -14rem !important; + left: -14rem !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\:-inset-y-60 { + top: -15rem !important; + bottom: -15rem !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\:-inset-x-60 { + right: -15rem !important; + left: -15rem !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\:-inset-y-64 { + top: -16rem !important; + bottom: -16rem !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\:-inset-x-64 { + right: -16rem !important; + left: -16rem !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\:-inset-y-72 { + top: -18rem !important; + bottom: -18rem !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\:-inset-x-72 { + right: -18rem !important; + left: -18rem !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\:-inset-y-80 { + top: -20rem !important; + bottom: -20rem !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\:-inset-x-80 { + right: -20rem !important; + left: -20rem !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\:-inset-y-96 { + top: -24rem !important; + bottom: -24rem !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\:-inset-x-96 { + right: -24rem !important; + left: -24rem !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\:-inset-y-px { + top: -1px !important; + bottom: -1px !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\:-inset-x-px { + right: -1px !important; + left: -1px !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\:-inset-y-0\.5 { + top: -0.125rem !important; + bottom: -0.125rem !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\:-inset-x-0\.5 { + right: -0.125rem !important; + left: -0.125rem !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\:-inset-y-1\.5 { + top: -0.375rem !important; + bottom: -0.375rem !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\:-inset-x-1\.5 { + right: -0.375rem !important; + left: -0.375rem !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\:-inset-y-2\.5 { + top: -0.625rem !important; + bottom: -0.625rem !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\:-inset-x-2\.5 { + right: -0.625rem !important; + left: -0.625rem !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\:-inset-y-3\.5 { + top: -0.875rem !important; + bottom: -0.875rem !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\:-inset-x-3\.5 { + right: -0.875rem !important; + left: -0.875rem !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\:inset-y-1\/2 { + top: 50% !important; + bottom: 50% !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\:inset-x-1\/2 { + right: 50% !important; + left: 50% !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\:inset-y-1\/3 { + top: 33.333333% !important; + bottom: 33.333333% !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\:inset-x-1\/3 { + right: 33.333333% !important; + left: 33.333333% !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\:inset-y-2\/3 { + top: 66.666667% !important; + bottom: 66.666667% !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\:inset-x-2\/3 { + right: 66.666667% !important; + left: 66.666667% !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\:inset-y-1\/4 { + top: 25% !important; + bottom: 25% !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\:inset-x-1\/4 { + right: 25% !important; + left: 25% !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\:inset-y-2\/4 { + top: 50% !important; + bottom: 50% !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\:inset-x-2\/4 { + right: 50% !important; + left: 50% !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\:inset-y-3\/4 { + top: 75% !important; + bottom: 75% !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\:inset-x-3\/4 { + right: 75% !important; + left: 75% !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\:inset-y-full { + top: 100% !important; + bottom: 100% !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\:inset-x-full { + right: 100% !important; + left: 100% !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\:-inset-y-1\/2 { + top: -50% !important; + bottom: -50% !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\:-inset-x-1\/2 { + right: -50% !important; + left: -50% !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\:-inset-y-1\/3 { + top: -33.333333% !important; + bottom: -33.333333% !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\:-inset-x-1\/3 { + right: -33.333333% !important; + left: -33.333333% !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\:-inset-y-2\/3 { + top: -66.666667% !important; + bottom: -66.666667% !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\:-inset-x-2\/3 { + right: -66.666667% !important; + left: -66.666667% !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\:-inset-y-1\/4 { + top: -25% !important; + bottom: -25% !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\:-inset-x-1\/4 { + right: -25% !important; + left: -25% !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\:-inset-y-2\/4 { + top: -50% !important; + bottom: -50% !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\:-inset-x-2\/4 { + right: -50% !important; + left: -50% !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\:-inset-y-3\/4 { + top: -75% !important; + bottom: -75% !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\:-inset-x-3\/4 { + right: -75% !important; + left: -75% !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\:-inset-y-full { + top: -100% !important; + bottom: -100% !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\:-inset-x-full { + right: -100% !important; + left: -100% !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\:top-0 { + top: 0px !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\:right-0 { + right: 0px !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\:bottom-0 { + bottom: 0px !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\:left-0 { + left: 0px !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\:top-1 { + top: 0.25rem !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\:right-1 { + right: 0.25rem !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\:bottom-1 { + bottom: 0.25rem !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\:left-1 { + left: 0.25rem !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\:top-2 { + top: 0.5rem !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\:right-2 { + right: 0.5rem !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\:bottom-2 { + bottom: 0.5rem !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\:left-2 { + left: 0.5rem !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\:top-3 { + top: 0.75rem !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\:right-3 { + right: 0.75rem !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\:bottom-3 { + bottom: 0.75rem !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\:left-3 { + left: 0.75rem !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\:top-4 { + top: 1rem !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\:right-4 { + right: 1rem !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\:bottom-4 { + bottom: 1rem !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\:left-4 { + left: 1rem !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\:top-5 { + top: 1.25rem !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\:right-5 { + right: 1.25rem !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\:bottom-5 { + bottom: 1.25rem !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\:left-5 { + left: 1.25rem !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\:top-6 { + top: 1.5rem !important; } - .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1 !important; + .\32xl\:right-6 { + right: 1.5rem !important; } - .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1 !important; + .\32xl\:bottom-6 { + bottom: 1.5rem !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\:left-6 { + left: 1.5rem !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\:top-7 { + top: 1.75rem !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\:right-7 { + right: 1.75rem !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\:bottom-7 { + bottom: 1.75rem !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\:left-7 { + left: 1.75rem !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\:top-8 { + top: 2rem !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\:right-8 { + right: 2rem !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\:bottom-8 { + bottom: 2rem !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\:left-8 { + left: 2rem !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\:top-9 { + top: 2.25rem !important; } - .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1 !important; + .\32xl\:right-9 { + right: 2.25rem !important; } - .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1 !important; + .\32xl\:bottom-9 { + bottom: 2.25rem !important; } - .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent !important; + .\32xl\:left-9 { + left: 2.25rem !important; } - .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor !important; + .\32xl\:top-10 { + top: 2.5rem !important; } - .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; + .\32xl\:right-10 { + right: 2.5rem !important; } - .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-10 { + bottom: 2.5rem !important; } - .\32xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; + .\32xl\:left-10 { + left: 2.5rem !important; } - .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; + .\32xl\:top-11 { + top: 2.75rem !important; } - .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; + .\32xl\:right-11 { + right: 2.75rem !important; } - .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-11 { + bottom: 2.75rem !important; } - .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; + .\32xl\:left-11 { + left: 2.75rem !important; } - .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; + .\32xl\:top-12 { + top: 3rem !important; } - .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; + .\32xl\:right-12 { + right: 3rem !important; } - .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-12 { + bottom: 3rem !important; } - .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; + .\32xl\:left-12 { + left: 3rem !important; } - .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; + .\32xl\:top-14 { + top: 3.5rem !important; } - .\32xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; + .\32xl\:right-14 { + right: 3.5rem !important; } - .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-14 { + bottom: 3.5rem !important; } - .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; + .\32xl\:left-14 { + left: 3.5rem !important; } - .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; + .\32xl\:top-16 { + top: 4rem !important; } - .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; + .\32xl\:right-16 { + right: 4rem !important; } - .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-16 { + bottom: 4rem !important; } - .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; + .\32xl\:left-16 { + left: 4rem !important; } - .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; + .\32xl\:top-20 { + top: 5rem !important; } - .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; + .\32xl\:right-20 { + right: 5rem !important; } - .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-20 { + bottom: 5rem !important; } - .\32xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; + .\32xl\:left-20 { + left: 5rem !important; } - .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; + .\32xl\:top-24 { + top: 6rem !important; } - .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; + .\32xl\:right-24 { + right: 6rem !important; } - .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-24 { + bottom: 6rem !important; } - .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; + .\32xl\:left-24 { + left: 6rem !important; } - .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; + .\32xl\:top-28 { + top: 7rem !important; } - .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; + .\32xl\:right-28 { + right: 7rem !important; } - .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-28 { + bottom: 7rem !important; } - .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; + .\32xl\:left-28 { + left: 7rem !important; } - .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; + .\32xl\:top-32 { + top: 8rem !important; } - .\32xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; + .\32xl\:right-32 { + right: 8rem !important; } - .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-32 { + bottom: 8rem !important; } - .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; + .\32xl\:left-32 { + left: 8rem !important; } - .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; + .\32xl\:top-36 { + top: 9rem !important; } - .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; + .\32xl\:right-36 { + right: 9rem !important; } - .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-36 { + bottom: 9rem !important; } - .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; + .\32xl\:left-36 { + left: 9rem !important; } - .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; + .\32xl\:top-40 { + top: 10rem !important; } - .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; + .\32xl\:right-40 { + right: 10rem !important; } - .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-40 { + bottom: 10rem !important; } - .\32xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; + .\32xl\:left-40 { + left: 10rem !important; } - .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; + .\32xl\:top-44 { + top: 11rem !important; } - .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; + .\32xl\:right-44 { + right: 11rem !important; } - .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-44 { + bottom: 11rem !important; } - .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; + .\32xl\:left-44 { + left: 11rem !important; } - .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; + .\32xl\:top-48 { + top: 12rem !important; } - .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; + .\32xl\:right-48 { + right: 12rem !important; } - .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-48 { + bottom: 12rem !important; } - .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; + .\32xl\:left-48 { + left: 12rem !important; } - .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; + .\32xl\:top-52 { + top: 13rem !important; } - .\32xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; + .\32xl\:right-52 { + right: 13rem !important; } - .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-52 { + bottom: 13rem !important; } - .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; + .\32xl\:left-52 { + left: 13rem !important; } - .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; + .\32xl\:top-56 { + top: 14rem !important; } - .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; + .\32xl\:right-56 { + right: 14rem !important; } - .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-56 { + bottom: 14rem !important; } - .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; + .\32xl\:left-56 { + left: 14rem !important; } - .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; + .\32xl\:top-60 { + top: 15rem !important; } - .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; + .\32xl\:right-60 { + right: 15rem !important; } - .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-60 { + bottom: 15rem !important; } - .\32xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; + .\32xl\:left-60 { + left: 15rem !important; } - .\32xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; + .\32xl\:top-64 { + top: 16rem !important; } - .\32xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; + .\32xl\:right-64 { + right: 16rem !important; } - .\32xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-64 { + bottom: 16rem !important; } - .\32xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; + .\32xl\:left-64 { + left: 16rem !important; } - .\32xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; + .\32xl\:top-72 { + top: 18rem !important; } - .\32xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; + .\32xl\:right-72 { + right: 18rem !important; } - .\32xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-72 { + bottom: 18rem !important; } - .\32xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; + .\32xl\:left-72 { + left: 18rem !important; } - .\32xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; + .\32xl\:top-80 { + top: 20rem !important; } - .\32xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; + .\32xl\:right-80 { + right: 20rem !important; } - .\32xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-80 { + bottom: 20rem !important; } - .\32xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; + .\32xl\:left-80 { + left: 20rem !important; } - .\32xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; + .\32xl\:top-96 { + top: 24rem !important; } - .\32xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; + .\32xl\:right-96 { + right: 24rem !important; } - .\32xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-96 { + bottom: 24rem !important; } - .\32xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; + .\32xl\:left-96 { + left: 24rem !important; } - .\32xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; + .\32xl\:top-auto { + top: auto !important; } - .\32xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; + .\32xl\:right-auto { + right: auto !important; } - .\32xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; + .\32xl\:bottom-auto { + bottom: auto !important; } - .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid !important; + .\32xl\:left-auto { + left: auto !important; } - .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed !important; + .\32xl\:top-px { + top: 1px !important; } - .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted !important; + .\32xl\:right-px { + right: 1px !important; } - .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double !important; + .\32xl\:bottom-px { + bottom: 1px !important; } - .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none !important; + .\32xl\:left-px { + left: 1px !important; } - .\32xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0 !important; + .\32xl\:top-0\.5 { + top: 0.125rem !important; } - .\32xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05 !important; + .\32xl\:right-0\.5 { + right: 0.125rem !important; } - .\32xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1 !important; + .\32xl\:bottom-0\.5 { + bottom: 0.125rem !important; } - .\32xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2 !important; + .\32xl\:left-0\.5 { + left: 0.125rem !important; } - .\32xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25 !important; + .\32xl\:top-1\.5 { + top: 0.375rem !important; } - .\32xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3 !important; + .\32xl\:right-1\.5 { + right: 0.375rem !important; } - .\32xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4 !important; + .\32xl\:bottom-1\.5 { + bottom: 0.375rem !important; } - .\32xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5 !important; + .\32xl\:left-1\.5 { + left: 0.375rem !important; } - .\32xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6 !important; + .\32xl\:top-2\.5 { + top: 0.625rem !important; } - .\32xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7 !important; + .\32xl\:right-2\.5 { + right: 0.625rem !important; } - .\32xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75 !important; + .\32xl\:bottom-2\.5 { + bottom: 0.625rem !important; } - .\32xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8 !important; + .\32xl\:left-2\.5 { + left: 0.625rem !important; } - .\32xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9 !important; + .\32xl\:top-3\.5 { + top: 0.875rem !important; } - .\32xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95 !important; + .\32xl\:right-3\.5 { + right: 0.875rem !important; } - .\32xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1 !important; + .\32xl\:bottom-3\.5 { + bottom: 0.875rem !important; } - .\32xl\:sr-only { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .\32xl\:left-3\.5 { + left: 0.875rem !important; } - .\32xl\:not-sr-only { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .\32xl\:-top-0 { + top: 0px !important; } - .\32xl\:focus-within\:sr-only:focus-within { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .\32xl\:-right-0 { + right: 0px !important; } - .\32xl\:focus-within\:not-sr-only:focus-within { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .\32xl\:-bottom-0 { + bottom: 0px !important; } - .\32xl\:focus\:sr-only:focus { - position: absolute !important; - width: 1px !important; - height: 1px !important; - padding: 0 !important; - margin: -1px !important; - overflow: hidden !important; - clip: rect(0, 0, 0, 0) !important; - white-space: nowrap !important; - border-width: 0 !important; + .\32xl\:-left-0 { + left: 0px !important; } - .\32xl\:focus\:not-sr-only:focus { - position: static !important; - width: auto !important; - height: auto !important; - padding: 0 !important; - margin: 0 !important; - overflow: visible !important; - clip: auto !important; - white-space: normal !important; + .\32xl\:-top-1 { + top: -0.25rem !important; } - .\32xl\:appearance-none { - appearance: none !important; + .\32xl\:-right-1 { + right: -0.25rem !important; } - .\32xl\:bg-fixed { - background-attachment: fixed !important; + .\32xl\:-bottom-1 { + bottom: -0.25rem !important; } - .\32xl\:bg-local { - background-attachment: local !important; + .\32xl\:-left-1 { + left: -0.25rem !important; } - .\32xl\:bg-scroll { - background-attachment: scroll !important; + .\32xl\:-top-2 { + top: -0.5rem !important; } - .\32xl\:bg-clip-border { - background-clip: border-box !important; + .\32xl\:-right-2 { + right: -0.5rem !important; } - .\32xl\:bg-clip-padding { - background-clip: padding-box !important; + .\32xl\:-bottom-2 { + bottom: -0.5rem !important; } - .\32xl\:bg-clip-content { - background-clip: content-box !important; + .\32xl\:-left-2 { + left: -0.5rem !important; } - .\32xl\:bg-clip-text { - background-clip: text !important; + .\32xl\:-top-3 { + top: -0.75rem !important; } - .\32xl\:bg-transparent { - background-color: transparent !important; + .\32xl\:-right-3 { + right: -0.75rem !important; } - .\32xl\:bg-current { - background-color: currentColor !important; + .\32xl\:-bottom-3 { + bottom: -0.75rem !important; } - .\32xl\:bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .\32xl\:-left-3 { + left: -0.75rem !important; } - .\32xl\:bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .\32xl\:-top-4 { + top: -1rem !important; } - .\32xl\:bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .\32xl\:-right-4 { + right: -1rem !important; } - .\32xl\:bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-4 { + bottom: -1rem !important; } - .\32xl\:bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .\32xl\:-left-4 { + left: -1rem !important; } - .\32xl\:bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .\32xl\:-top-5 { + top: -1.25rem !important; } - .\32xl\:bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .\32xl\:-right-5 { + right: -1.25rem !important; } - .\32xl\:bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-5 { + bottom: -1.25rem !important; } - .\32xl\:bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .\32xl\:-left-5 { + left: -1.25rem !important; } - .\32xl\:bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .\32xl\:-top-6 { + top: -1.5rem !important; } - .\32xl\:bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .\32xl\:-right-6 { + right: -1.5rem !important; } - .\32xl\:bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-6 { + bottom: -1.5rem !important; } - .\32xl\:bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .\32xl\:-left-6 { + left: -1.5rem !important; } - .\32xl\:bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .\32xl\:-top-7 { + top: -1.75rem !important; } - .\32xl\:bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .\32xl\:-right-7 { + right: -1.75rem !important; } - .\32xl\:bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-7 { + bottom: -1.75rem !important; } - .\32xl\:bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .\32xl\:-left-7 { + left: -1.75rem !important; } - .\32xl\:bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .\32xl\:-top-8 { + top: -2rem !important; } - .\32xl\:bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .\32xl\:-right-8 { + right: -2rem !important; } - .\32xl\:bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-8 { + bottom: -2rem !important; } - .\32xl\:bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .\32xl\:-left-8 { + left: -2rem !important; } - .\32xl\:bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .\32xl\:-top-9 { + top: -2.25rem !important; } - .\32xl\:bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .\32xl\:-right-9 { + right: -2.25rem !important; } - .\32xl\:bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-9 { + bottom: -2.25rem !important; } - .\32xl\:bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .\32xl\:-left-9 { + left: -2.25rem !important; } - .\32xl\:bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .\32xl\:-top-10 { + top: -2.5rem !important; } - .\32xl\:bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .\32xl\:-right-10 { + right: -2.5rem !important; } - .\32xl\:bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-10 { + bottom: -2.5rem !important; } - .\32xl\:bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .\32xl\:-left-10 { + left: -2.5rem !important; } - .\32xl\:bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .\32xl\:-top-11 { + top: -2.75rem !important; } - .\32xl\:bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .\32xl\:-right-11 { + right: -2.75rem !important; } - .\32xl\:bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-11 { + bottom: -2.75rem !important; } - .\32xl\:bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .\32xl\:-left-11 { + left: -2.75rem !important; } - .\32xl\:bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .\32xl\:-top-12 { + top: -3rem !important; } - .\32xl\:bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .\32xl\:-right-12 { + right: -3rem !important; } - .\32xl\:bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-12 { + bottom: -3rem !important; } - .\32xl\:bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .\32xl\:-left-12 { + left: -3rem !important; } - .\32xl\:bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .\32xl\:-top-14 { + top: -3.5rem !important; } - .\32xl\:bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .\32xl\:-right-14 { + right: -3.5rem !important; } - .\32xl\:bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-14 { + bottom: -3.5rem !important; } - .\32xl\:bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .\32xl\:-left-14 { + left: -3.5rem !important; } - .\32xl\:bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .\32xl\:-top-16 { + top: -4rem !important; } - .\32xl\:bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .\32xl\:-right-16 { + right: -4rem !important; } - .\32xl\:bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-16 { + bottom: -4rem !important; } - .\32xl\:bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .\32xl\:-left-16 { + left: -4rem !important; } - .\32xl\:bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .\32xl\:-top-20 { + top: -5rem !important; } - .\32xl\:bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .\32xl\:-right-20 { + right: -5rem !important; } - .\32xl\:bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-20 { + bottom: -5rem !important; } - .\32xl\:bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .\32xl\:-left-20 { + left: -5rem !important; } - .\32xl\:bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .\32xl\:-top-24 { + top: -6rem !important; } - .\32xl\:bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .\32xl\:-right-24 { + right: -6rem !important; } - .\32xl\:bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-24 { + bottom: -6rem !important; } - .\32xl\:bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .\32xl\:-left-24 { + left: -6rem !important; } - .\32xl\:bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .\32xl\:-top-28 { + top: -7rem !important; } - .\32xl\:bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .\32xl\:-right-28 { + right: -7rem !important; } - .\32xl\:bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-28 { + bottom: -7rem !important; } - .\32xl\:bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .\32xl\:-left-28 { + left: -7rem !important; } - .\32xl\:bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .\32xl\:-top-32 { + top: -8rem !important; } - .\32xl\:bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .\32xl\:-right-32 { + right: -8rem !important; } - .\32xl\:bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-32 { + bottom: -8rem !important; } - .\32xl\:bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .\32xl\:-left-32 { + left: -8rem !important; } - .\32xl\:bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .\32xl\:-top-36 { + top: -9rem !important; } - .\32xl\:bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .\32xl\:-right-36 { + right: -9rem !important; } - .\32xl\:bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-36 { + bottom: -9rem !important; } - .\32xl\:bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .\32xl\:-left-36 { + left: -9rem !important; } - .\32xl\:bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .\32xl\:-top-40 { + top: -10rem !important; } - .\32xl\:bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .\32xl\:-right-40 { + right: -10rem !important; } - .\32xl\:bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-40 { + bottom: -10rem !important; } - .\32xl\:bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .\32xl\:-left-40 { + left: -10rem !important; } - .\32xl\:bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .\32xl\:-top-44 { + top: -11rem !important; } - .\32xl\:bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .\32xl\:-right-44 { + right: -11rem !important; } - .\32xl\:bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-44 { + bottom: -11rem !important; } - .\32xl\:bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .\32xl\:-left-44 { + left: -11rem !important; } - .\32xl\:bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .\32xl\:-top-48 { + top: -12rem !important; } - .\32xl\:bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .\32xl\:-right-48 { + right: -12rem !important; } - .\32xl\:bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-48 { + bottom: -12rem !important; } - .\32xl\:bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .\32xl\:-left-48 { + left: -12rem !important; } - .\32xl\:bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .\32xl\:-top-52 { + top: -13rem !important; } - .\32xl\:bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .\32xl\:-right-52 { + right: -13rem !important; } - .\32xl\:bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-52 { + bottom: -13rem !important; + } + + .\32xl\:-left-52 { + left: -13rem !important; } - .\32xl\:bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .\32xl\:-top-56 { + top: -14rem !important; } - .\32xl\:bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .\32xl\:-right-56 { + right: -14rem !important; } - .group:hover .\32xl\:group-hover\:bg-transparent { - background-color: transparent !important; + .\32xl\:-bottom-56 { + bottom: -14rem !important; } - .group:hover .\32xl\:group-hover\:bg-current { - background-color: currentColor !important; + .\32xl\:-left-56 { + left: -14rem !important; } - .group:hover .\32xl\:group-hover\:bg-black { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .\32xl\:-top-60 { + top: -15rem !important; } - .group:hover .\32xl\:group-hover\:bg-white { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .\32xl\:-right-60 { + right: -15rem !important; } - .group:hover .\32xl\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-60 { + bottom: -15rem !important; } - .group:hover .\32xl\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .\32xl\:-left-60 { + left: -15rem !important; } - .group:hover .\32xl\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .\32xl\:-top-64 { + top: -16rem !important; } - .group:hover .\32xl\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .\32xl\:-right-64 { + right: -16rem !important; } - .group:hover .\32xl\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-64 { + bottom: -16rem !important; } - .group:hover .\32xl\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .\32xl\:-left-64 { + left: -16rem !important; } - .group:hover .\32xl\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .\32xl\:-top-72 { + top: -18rem !important; } - .group:hover .\32xl\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .\32xl\:-right-72 { + right: -18rem !important; } - .group:hover .\32xl\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-72 { + bottom: -18rem !important; } - .group:hover .\32xl\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .\32xl\:-left-72 { + left: -18rem !important; } - .group:hover .\32xl\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .\32xl\:-top-80 { + top: -20rem !important; } - .group:hover .\32xl\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .\32xl\:-right-80 { + right: -20rem !important; } - .group:hover .\32xl\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-80 { + bottom: -20rem !important; } - .group:hover .\32xl\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .\32xl\:-left-80 { + left: -20rem !important; } - .group:hover .\32xl\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .\32xl\:-top-96 { + top: -24rem !important; } - .group:hover .\32xl\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .\32xl\:-right-96 { + right: -24rem !important; } - .group:hover .\32xl\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-96 { + bottom: -24rem !important; } - .group:hover .\32xl\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .\32xl\:-left-96 { + left: -24rem !important; } - .group:hover .\32xl\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .\32xl\:-top-px { + top: -1px !important; } - .group:hover .\32xl\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .\32xl\:-right-px { + right: -1px !important; } - .group:hover .\32xl\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-px { + bottom: -1px !important; } - .group:hover .\32xl\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .\32xl\:-left-px { + left: -1px !important; } - .group:hover .\32xl\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .\32xl\:-top-0\.5 { + top: -0.125rem !important; } - .group:hover .\32xl\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .\32xl\:-right-0\.5 { + right: -0.125rem !important; } - .group:hover .\32xl\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-0\.5 { + bottom: -0.125rem !important; } - .group:hover .\32xl\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .\32xl\:-left-0\.5 { + left: -0.125rem !important; } - .group:hover .\32xl\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .\32xl\:-top-1\.5 { + top: -0.375rem !important; } - .group:hover .\32xl\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .\32xl\:-right-1\.5 { + right: -0.375rem !important; } - .group:hover .\32xl\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-1\.5 { + bottom: -0.375rem !important; } - .group:hover .\32xl\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .\32xl\:-left-1\.5 { + left: -0.375rem !important; } - .group:hover .\32xl\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .\32xl\:-top-2\.5 { + top: -0.625rem !important; } - .group:hover .\32xl\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .\32xl\:-right-2\.5 { + right: -0.625rem !important; } - .group:hover .\32xl\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-2\.5 { + bottom: -0.625rem !important; } - .group:hover .\32xl\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .\32xl\:-left-2\.5 { + left: -0.625rem !important; } - .group:hover .\32xl\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .\32xl\:-top-3\.5 { + top: -0.875rem !important; } - .group:hover .\32xl\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .\32xl\:-right-3\.5 { + right: -0.875rem !important; } - .group:hover .\32xl\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-3\.5 { + bottom: -0.875rem !important; } - .group:hover .\32xl\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .\32xl\:-left-3\.5 { + left: -0.875rem !important; } - .group:hover .\32xl\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .\32xl\:top-1\/2 { + top: 50% !important; } - .group:hover .\32xl\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .\32xl\:right-1\/2 { + right: 50% !important; } - .group:hover .\32xl\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .\32xl\:bottom-1\/2 { + bottom: 50% !important; } - .group:hover .\32xl\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .\32xl\:left-1\/2 { + left: 50% !important; } - .group:hover .\32xl\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .\32xl\:top-1\/3 { + top: 33.333333% !important; } - .group:hover .\32xl\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .\32xl\:right-1\/3 { + right: 33.333333% !important; } - .group:hover .\32xl\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .\32xl\:bottom-1\/3 { + bottom: 33.333333% !important; } - .group:hover .\32xl\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .\32xl\:left-1\/3 { + left: 33.333333% !important; } - .group:hover .\32xl\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .\32xl\:top-2\/3 { + top: 66.666667% !important; } - .group:hover .\32xl\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .\32xl\:right-2\/3 { + right: 66.666667% !important; } - .group:hover .\32xl\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .\32xl\:bottom-2\/3 { + bottom: 66.666667% !important; } - .group:hover .\32xl\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .\32xl\:left-2\/3 { + left: 66.666667% !important; } - .group:hover .\32xl\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .\32xl\:top-1\/4 { + top: 25% !important; } - .group:hover .\32xl\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .\32xl\:right-1\/4 { + right: 25% !important; } - .group:hover .\32xl\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .\32xl\:bottom-1\/4 { + bottom: 25% !important; } - .group:hover .\32xl\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .\32xl\:left-1\/4 { + left: 25% !important; } - .group:hover .\32xl\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .\32xl\:top-2\/4 { + top: 50% !important; } - .group:hover .\32xl\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .\32xl\:right-2\/4 { + right: 50% !important; } - .group:hover .\32xl\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .\32xl\:bottom-2\/4 { + bottom: 50% !important; } - .group:hover .\32xl\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .\32xl\:left-2\/4 { + left: 50% !important; } - .group:hover .\32xl\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .\32xl\:top-3\/4 { + top: 75% !important; } - .group:hover .\32xl\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .\32xl\:right-3\/4 { + right: 75% !important; } - .group:hover .\32xl\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .\32xl\:bottom-3\/4 { + bottom: 75% !important; } - .group:hover .\32xl\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .\32xl\:left-3\/4 { + left: 75% !important; } - .group:hover .\32xl\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .\32xl\:top-full { + top: 100% !important; } - .group:hover .\32xl\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .\32xl\:right-full { + right: 100% !important; } - .group:hover .\32xl\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .\32xl\:bottom-full { + bottom: 100% !important; } - .group:hover .\32xl\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .\32xl\:left-full { + left: 100% !important; } - .group:hover .\32xl\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .\32xl\:-top-1\/2 { + top: -50% !important; } - .group:hover .\32xl\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .\32xl\:-right-1\/2 { + right: -50% !important; } - .group:hover .\32xl\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-1\/2 { + bottom: -50% !important; } - .group:hover .\32xl\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .\32xl\:-left-1\/2 { + left: -50% !important; } - .group:hover .\32xl\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .\32xl\:-top-1\/3 { + top: -33.333333% !important; } - .group:hover .\32xl\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .\32xl\:-right-1\/3 { + right: -33.333333% !important; } - .group:hover .\32xl\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-1\/3 { + bottom: -33.333333% !important; } - .group:hover .\32xl\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .\32xl\:-left-1\/3 { + left: -33.333333% !important; } - .group:hover .\32xl\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .\32xl\:-top-2\/3 { + top: -66.666667% !important; } - .group:hover .\32xl\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .\32xl\:-right-2\/3 { + right: -66.666667% !important; } - .group:hover .\32xl\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-2\/3 { + bottom: -66.666667% !important; } - .group:hover .\32xl\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .\32xl\:-left-2\/3 { + left: -66.666667% !important; } - .group:hover .\32xl\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .\32xl\:-top-1\/4 { + top: -25% !important; } - .group:hover .\32xl\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .\32xl\:-right-1\/4 { + right: -25% !important; } - .\32xl\:focus-within\:bg-transparent:focus-within { - background-color: transparent !important; + .\32xl\:-bottom-1\/4 { + bottom: -25% !important; } - .\32xl\:focus-within\:bg-current:focus-within { - background-color: currentColor !important; + .\32xl\:-left-1\/4 { + left: -25% !important; } - .\32xl\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .\32xl\:-top-2\/4 { + top: -50% !important; } - .\32xl\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .\32xl\:-right-2\/4 { + right: -50% !important; } - .\32xl\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-2\/4 { + bottom: -50% !important; } - .\32xl\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .\32xl\:-left-2\/4 { + left: -50% !important; } - .\32xl\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .\32xl\:-top-3\/4 { + top: -75% !important; } - .\32xl\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .\32xl\:-right-3\/4 { + right: -75% !important; } - .\32xl\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-3\/4 { + bottom: -75% !important; } - .\32xl\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .\32xl\:-left-3\/4 { + left: -75% !important; } - .\32xl\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .\32xl\:-top-full { + top: -100% !important; } - .\32xl\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .\32xl\:-right-full { + right: -100% !important; } - .\32xl\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .\32xl\:-bottom-full { + bottom: -100% !important; } - .\32xl\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .\32xl\:-left-full { + left: -100% !important; } - .\32xl\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .\32xl\:isolate { + isolation: isolate !important; } - .\32xl\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .\32xl\:isolation-auto { + isolation: auto !important; } - .\32xl\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .\32xl\:z-0 { + z-index: 0 !important; } - .\32xl\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .\32xl\:z-10 { + z-index: 10 !important; } - .\32xl\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .\32xl\:z-20 { + z-index: 20 !important; } - .\32xl\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .\32xl\:z-30 { + z-index: 30 !important; } - .\32xl\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .\32xl\:z-40 { + z-index: 40 !important; } - .\32xl\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .\32xl\:z-50 { + z-index: 50 !important; } - .\32xl\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .\32xl\:z-auto { + z-index: auto !important; } - .\32xl\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .\32xl\:focus-within\:z-0:focus-within { + z-index: 0 !important; } - .\32xl\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .\32xl\:focus-within\:z-10:focus-within { + z-index: 10 !important; } - .\32xl\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .\32xl\:focus-within\:z-20:focus-within { + z-index: 20 !important; } - .\32xl\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .\32xl\:focus-within\:z-30:focus-within { + z-index: 30 !important; } - .\32xl\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .\32xl\:focus-within\:z-40:focus-within { + z-index: 40 !important; } - .\32xl\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .\32xl\:focus-within\:z-50:focus-within { + z-index: 50 !important; } - .\32xl\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .\32xl\:focus-within\:z-auto:focus-within { + z-index: auto !important; } - .\32xl\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .\32xl\:focus\:z-0:focus { + z-index: 0 !important; } - .\32xl\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .\32xl\:focus\:z-10:focus { + z-index: 10 !important; } - .\32xl\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .\32xl\:focus\:z-20:focus { + z-index: 20 !important; } - .\32xl\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .\32xl\:focus\:z-30:focus { + z-index: 30 !important; } - .\32xl\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .\32xl\:focus\:z-40:focus { + z-index: 40 !important; } - .\32xl\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .\32xl\:focus\:z-50:focus { + z-index: 50 !important; } - .\32xl\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .\32xl\:focus\:z-auto:focus { + z-index: auto !important; } - .\32xl\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .\32xl\:order-1 { + order: 1 !important; } - .\32xl\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .\32xl\:order-2 { + order: 2 !important; } - .\32xl\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .\32xl\:order-3 { + order: 3 !important; } - .\32xl\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .\32xl\:order-4 { + order: 4 !important; } - .\32xl\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .\32xl\:order-5 { + order: 5 !important; } - .\32xl\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .\32xl\:order-6 { + order: 6 !important; } - .\32xl\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .\32xl\:order-7 { + order: 7 !important; } - .\32xl\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .\32xl\:order-8 { + order: 8 !important; } - .\32xl\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .\32xl\:order-9 { + order: 9 !important; } - .\32xl\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .\32xl\:order-10 { + order: 10 !important; } - .\32xl\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .\32xl\:order-11 { + order: 11 !important; } - .\32xl\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .\32xl\:order-12 { + order: 12 !important; } - .\32xl\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .\32xl\:order-first { + order: -9999 !important; } - .\32xl\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .\32xl\:order-last { + order: 9999 !important; } - .\32xl\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .\32xl\:order-none { + order: 0 !important; } - .\32xl\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .\32xl\:col-auto { + grid-column: auto !important; } - .\32xl\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-1 { + grid-column: span 1 / span 1 !important; } - .\32xl\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-2 { + grid-column: span 2 / span 2 !important; } - .\32xl\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-3 { + grid-column: span 3 / span 3 !important; } - .\32xl\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-4 { + grid-column: span 4 / span 4 !important; } - .\32xl\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-5 { + grid-column: span 5 / span 5 !important; } - .\32xl\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-6 { + grid-column: span 6 / span 6 !important; } - .\32xl\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-7 { + grid-column: span 7 / span 7 !important; } - .\32xl\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-8 { + grid-column: span 8 / span 8 !important; } - .\32xl\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-9 { + grid-column: span 9 / span 9 !important; } - .\32xl\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-10 { + grid-column: span 10 / span 10 !important; } - .\32xl\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-11 { + grid-column: span 11 / span 11 !important; } - .\32xl\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-12 { + grid-column: span 12 / span 12 !important; } - .\32xl\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .\32xl\:col-span-full { + grid-column: 1 / -1 !important; } - .\32xl\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-1 { + grid-column-start: 1 !important; } - .\32xl\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-2 { + grid-column-start: 2 !important; } - .\32xl\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-3 { + grid-column-start: 3 !important; } - .\32xl\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-4 { + grid-column-start: 4 !important; } - .\32xl\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-5 { + grid-column-start: 5 !important; } - .\32xl\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-6 { + grid-column-start: 6 !important; } - .\32xl\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-7 { + grid-column-start: 7 !important; } - .\32xl\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-8 { + grid-column-start: 8 !important; } - .\32xl\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-9 { + grid-column-start: 9 !important; } - .\32xl\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-10 { + grid-column-start: 10 !important; } - .\32xl\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-11 { + grid-column-start: 11 !important; } - .\32xl\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-12 { + grid-column-start: 12 !important; } - .\32xl\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-13 { + grid-column-start: 13 !important; } - .\32xl\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .\32xl\:col-start-auto { + grid-column-start: auto !important; } - .\32xl\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-1 { + grid-column-end: 1 !important; } - .\32xl\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-2 { + grid-column-end: 2 !important; } - .\32xl\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-3 { + grid-column-end: 3 !important; } - .\32xl\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-4 { + grid-column-end: 4 !important; } - .\32xl\:hover\:bg-transparent:hover { - background-color: transparent !important; + .\32xl\:col-end-5 { + grid-column-end: 5 !important; } - .\32xl\:hover\:bg-current:hover { - background-color: currentColor !important; + .\32xl\:col-end-6 { + grid-column-end: 6 !important; } - .\32xl\:hover\:bg-black:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-7 { + grid-column-end: 7 !important; } - .\32xl\:hover\:bg-white:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-8 { + grid-column-end: 8 !important; } - .\32xl\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-9 { + grid-column-end: 9 !important; } - .\32xl\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-10 { + grid-column-end: 10 !important; } - .\32xl\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-11 { + grid-column-end: 11 !important; } - .\32xl\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-12 { + grid-column-end: 12 !important; } - .\32xl\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-13 { + grid-column-end: 13 !important; } - .\32xl\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .\32xl\:col-end-auto { + grid-column-end: auto !important; } - .\32xl\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .\32xl\:row-auto { + grid-row: auto !important; } - .\32xl\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .\32xl\:row-span-1 { + grid-row: span 1 / span 1 !important; } - .\32xl\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .\32xl\:row-span-2 { + grid-row: span 2 / span 2 !important; } - .\32xl\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .\32xl\:row-span-3 { + grid-row: span 3 / span 3 !important; } - .\32xl\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .\32xl\:row-span-4 { + grid-row: span 4 / span 4 !important; } - .\32xl\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .\32xl\:row-span-5 { + grid-row: span 5 / span 5 !important; } - .\32xl\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .\32xl\:row-span-6 { + grid-row: span 6 / span 6 !important; } - .\32xl\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .\32xl\:row-span-full { + grid-row: 1 / -1 !important; } - .\32xl\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .\32xl\:row-start-1 { + grid-row-start: 1 !important; } - .\32xl\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .\32xl\:row-start-2 { + grid-row-start: 2 !important; } - .\32xl\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .\32xl\:row-start-3 { + grid-row-start: 3 !important; } - .\32xl\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .\32xl\:row-start-4 { + grid-row-start: 4 !important; } - .\32xl\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .\32xl\:row-start-5 { + grid-row-start: 5 !important; } - .\32xl\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .\32xl\:row-start-6 { + grid-row-start: 6 !important; } - .\32xl\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .\32xl\:row-start-7 { + grid-row-start: 7 !important; } - .\32xl\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .\32xl\:row-start-auto { + grid-row-start: auto !important; } - .\32xl\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .\32xl\:row-end-1 { + grid-row-end: 1 !important; } - .\32xl\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .\32xl\:row-end-2 { + grid-row-end: 2 !important; } - .\32xl\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .\32xl\:row-end-3 { + grid-row-end: 3 !important; } - .\32xl\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .\32xl\:row-end-4 { + grid-row-end: 4 !important; } - .\32xl\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .\32xl\:row-end-5 { + grid-row-end: 5 !important; } - .\32xl\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .\32xl\:row-end-6 { + grid-row-end: 6 !important; } - .\32xl\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .\32xl\:row-end-7 { + grid-row-end: 7 !important; } - .\32xl\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .\32xl\:row-end-auto { + grid-row-end: auto !important; } - .\32xl\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .\32xl\:float-right { + float: right !important; } - .\32xl\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .\32xl\:float-left { + float: left !important; } - .\32xl\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .\32xl\:float-none { + float: none !important; } - .\32xl\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .\32xl\:clear-left { + clear: left !important; } - .\32xl\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .\32xl\:clear-right { + clear: right !important; } - .\32xl\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .\32xl\:clear-both { + clear: both !important; } - .\32xl\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .\32xl\:clear-none { + clear: none !important; } - .\32xl\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .\32xl\:m-0 { + margin: 0px !important; } - .\32xl\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .\32xl\:m-1 { + margin: 0.25rem !important; } - .\32xl\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .\32xl\:m-2 { + margin: 0.5rem !important; } - .\32xl\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .\32xl\:m-3 { + margin: 0.75rem !important; } - .\32xl\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .\32xl\:m-4 { + margin: 1rem !important; } - .\32xl\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .\32xl\:m-5 { + margin: 1.25rem !important; } - .\32xl\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .\32xl\:m-6 { + margin: 1.5rem !important; } - .\32xl\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .\32xl\:m-7 { + margin: 1.75rem !important; } - .\32xl\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .\32xl\:m-8 { + margin: 2rem !important; } - .\32xl\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .\32xl\:m-9 { + margin: 2.25rem !important; } - .\32xl\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .\32xl\:m-10 { + margin: 2.5rem !important; } - .\32xl\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .\32xl\:m-11 { + margin: 2.75rem !important; } - .\32xl\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .\32xl\:m-12 { + margin: 3rem !important; } - .\32xl\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .\32xl\:m-14 { + margin: 3.5rem !important; } - .\32xl\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .\32xl\:m-16 { + margin: 4rem !important; } - .\32xl\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .\32xl\:m-20 { + margin: 5rem !important; } - .\32xl\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .\32xl\:m-24 { + margin: 6rem !important; } - .\32xl\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .\32xl\:m-28 { + margin: 7rem !important; } - .\32xl\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .\32xl\:m-32 { + margin: 8rem !important; } - .\32xl\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .\32xl\:m-36 { + margin: 9rem !important; } - .\32xl\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .\32xl\:m-40 { + margin: 10rem !important; } - .\32xl\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .\32xl\:m-44 { + margin: 11rem !important; } - .\32xl\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .\32xl\:m-48 { + margin: 12rem !important; } - .\32xl\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .\32xl\:m-52 { + margin: 13rem !important; } - .\32xl\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .\32xl\:m-56 { + margin: 14rem !important; } - .\32xl\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .\32xl\:m-60 { + margin: 15rem !important; } - .\32xl\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .\32xl\:m-64 { + margin: 16rem !important; } - .\32xl\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .\32xl\:m-72 { + margin: 18rem !important; } - .\32xl\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .\32xl\:m-80 { + margin: 20rem !important; } - .\32xl\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .\32xl\:m-96 { + margin: 24rem !important; } - .\32xl\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .\32xl\:m-auto { + margin: auto !important; } - .\32xl\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .\32xl\:m-px { + margin: 1px !important; } - .\32xl\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .\32xl\:m-0\.5 { + margin: 0.125rem !important; } - .\32xl\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .\32xl\:m-1\.5 { + margin: 0.375rem !important; } - .\32xl\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .\32xl\:m-2\.5 { + margin: 0.625rem !important; } - .\32xl\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .\32xl\:m-3\.5 { + margin: 0.875rem !important; } - .\32xl\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .\32xl\:-m-0 { + margin: 0px !important; } - .\32xl\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .\32xl\:-m-1 { + margin: -0.25rem !important; } - .\32xl\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .\32xl\:-m-2 { + margin: -0.5rem !important; } - .\32xl\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .\32xl\:-m-3 { + margin: -0.75rem !important; } - .\32xl\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .\32xl\:-m-4 { + margin: -1rem !important; } - .\32xl\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .\32xl\:-m-5 { + margin: -1.25rem !important; } - .\32xl\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .\32xl\:-m-6 { + margin: -1.5rem !important; } - .\32xl\:focus\:bg-transparent:focus { - background-color: transparent !important; + .\32xl\:-m-7 { + margin: -1.75rem !important; } - .\32xl\:focus\:bg-current:focus { - background-color: currentColor !important; + .\32xl\:-m-8 { + margin: -2rem !important; } - .\32xl\:focus\:bg-black:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; + .\32xl\:-m-9 { + margin: -2.25rem !important; } - .\32xl\:focus\:bg-white:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; + .\32xl\:-m-10 { + margin: -2.5rem !important; } - .\32xl\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; + .\32xl\:-m-11 { + margin: -2.75rem !important; } - .\32xl\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; + .\32xl\:-m-12 { + margin: -3rem !important; } - .\32xl\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; + .\32xl\:-m-14 { + margin: -3.5rem !important; } - .\32xl\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; + .\32xl\:-m-16 { + margin: -4rem !important; } - .\32xl\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; + .\32xl\:-m-20 { + margin: -5rem !important; } - .\32xl\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; + .\32xl\:-m-24 { + margin: -6rem !important; } - .\32xl\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; + .\32xl\:-m-28 { + margin: -7rem !important; } - .\32xl\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; + .\32xl\:-m-32 { + margin: -8rem !important; } - .\32xl\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; + .\32xl\:-m-36 { + margin: -9rem !important; } - .\32xl\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; + .\32xl\:-m-40 { + margin: -10rem !important; } - .\32xl\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; + .\32xl\:-m-44 { + margin: -11rem !important; } - .\32xl\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; + .\32xl\:-m-48 { + margin: -12rem !important; } - .\32xl\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; + .\32xl\:-m-52 { + margin: -13rem !important; } - .\32xl\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; + .\32xl\:-m-56 { + margin: -14rem !important; } - .\32xl\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; + .\32xl\:-m-60 { + margin: -15rem !important; } - .\32xl\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; + .\32xl\:-m-64 { + margin: -16rem !important; } - .\32xl\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; + .\32xl\:-m-72 { + margin: -18rem !important; } - .\32xl\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; + .\32xl\:-m-80 { + margin: -20rem !important; } - .\32xl\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; + .\32xl\:-m-96 { + margin: -24rem !important; } - .\32xl\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; + .\32xl\:-m-px { + margin: -1px !important; } - .\32xl\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; + .\32xl\:-m-0\.5 { + margin: -0.125rem !important; } - .\32xl\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; + .\32xl\:-m-1\.5 { + margin: -0.375rem !important; } - .\32xl\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; + .\32xl\:-m-2\.5 { + margin: -0.625rem !important; } - .\32xl\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; + .\32xl\:-m-3\.5 { + margin: -0.875rem !important; } - .\32xl\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; + .\32xl\:mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } - .\32xl\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; + .\32xl\:mx-1 { + margin-left: 0.25rem !important; + margin-right: 0.25rem !important; } - .\32xl\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; + .\32xl\:mx-2 { + margin-left: 0.5rem !important; + margin-right: 0.5rem !important; } - .\32xl\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; + .\32xl\:mx-3 { + margin-left: 0.75rem !important; + margin-right: 0.75rem !important; } - .\32xl\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; + .\32xl\:mx-4 { + margin-left: 1rem !important; + margin-right: 1rem !important; } - .\32xl\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; + .\32xl\:mx-5 { + margin-left: 1.25rem !important; + margin-right: 1.25rem !important; } - .\32xl\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; + .\32xl\:mx-6 { + margin-left: 1.5rem !important; + margin-right: 1.5rem !important; } - .\32xl\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; + .\32xl\:mx-7 { + margin-left: 1.75rem !important; + margin-right: 1.75rem !important; } - .\32xl\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; + .\32xl\:mx-8 { + margin-left: 2rem !important; + margin-right: 2rem !important; } - .\32xl\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; + .\32xl\:mx-9 { + margin-left: 2.25rem !important; + margin-right: 2.25rem !important; } - .\32xl\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; + .\32xl\:mx-10 { + margin-left: 2.5rem !important; + margin-right: 2.5rem !important; } - .\32xl\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; + .\32xl\:mx-11 { + margin-left: 2.75rem !important; + margin-right: 2.75rem !important; } - .\32xl\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; + .\32xl\:mx-12 { + margin-left: 3rem !important; + margin-right: 3rem !important; } - .\32xl\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; + .\32xl\:mx-14 { + margin-left: 3.5rem !important; + margin-right: 3.5rem !important; } - .\32xl\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; + .\32xl\:mx-16 { + margin-left: 4rem !important; + margin-right: 4rem !important; } - .\32xl\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; + .\32xl\:mx-20 { + margin-left: 5rem !important; + margin-right: 5rem !important; } - .\32xl\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; + .\32xl\:mx-24 { + margin-left: 6rem !important; + margin-right: 6rem !important; } - .\32xl\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; + .\32xl\:mx-28 { + margin-left: 7rem !important; + margin-right: 7rem !important; } - .\32xl\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; + .\32xl\:mx-32 { + margin-left: 8rem !important; + margin-right: 8rem !important; } - .\32xl\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; + .\32xl\:mx-36 { + margin-left: 9rem !important; + margin-right: 9rem !important; } - .\32xl\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; + .\32xl\:mx-40 { + margin-left: 10rem !important; + margin-right: 10rem !important; } - .\32xl\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; + .\32xl\:mx-44 { + margin-left: 11rem !important; + margin-right: 11rem !important; } - .\32xl\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; + .\32xl\:mx-48 { + margin-left: 12rem !important; + margin-right: 12rem !important; } - .\32xl\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; + .\32xl\:mx-52 { + margin-left: 13rem !important; + margin-right: 13rem !important; } - .\32xl\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; + .\32xl\:mx-56 { + margin-left: 14rem !important; + margin-right: 14rem !important; } - .\32xl\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; + .\32xl\:mx-60 { + margin-left: 15rem !important; + margin-right: 15rem !important; } - .\32xl\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; + .\32xl\:mx-64 { + margin-left: 16rem !important; + margin-right: 16rem !important; } - .\32xl\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; + .\32xl\:mx-72 { + margin-left: 18rem !important; + margin-right: 18rem !important; } - .\32xl\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; + .\32xl\:mx-80 { + margin-left: 20rem !important; + margin-right: 20rem !important; } - .\32xl\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; + .\32xl\:mx-96 { + margin-left: 24rem !important; + margin-right: 24rem !important; } - .\32xl\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; + .\32xl\:mx-auto { + margin-left: auto !important; + margin-right: auto !important; } - .\32xl\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; + .\32xl\:mx-px { + margin-left: 1px !important; + margin-right: 1px !important; } - .\32xl\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; + .\32xl\:mx-0\.5 { + margin-left: 0.125rem !important; + margin-right: 0.125rem !important; } - .\32xl\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; + .\32xl\:mx-1\.5 { + margin-left: 0.375rem !important; + margin-right: 0.375rem !important; } - .\32xl\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; + .\32xl\:mx-2\.5 { + margin-left: 0.625rem !important; + margin-right: 0.625rem !important; } - .\32xl\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; + .\32xl\:mx-3\.5 { + margin-left: 0.875rem !important; + margin-right: 0.875rem !important; } - .\32xl\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-0 { + margin-left: 0px !important; + margin-right: 0px !important; } - .\32xl\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-1 { + margin-left: -0.25rem !important; + margin-right: -0.25rem !important; } - .\32xl\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-2 { + margin-left: -0.5rem !important; + margin-right: -0.5rem !important; } - .\32xl\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-3 { + margin-left: -0.75rem !important; + margin-right: -0.75rem !important; } - .\32xl\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-4 { + margin-left: -1rem !important; + margin-right: -1rem !important; } - .\32xl\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-5 { + margin-left: -1.25rem !important; + margin-right: -1.25rem !important; } - .\32xl\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-6 { + margin-left: -1.5rem !important; + margin-right: -1.5rem !important; } - .\32xl\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-7 { + margin-left: -1.75rem !important; + margin-right: -1.75rem !important; } - .\32xl\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-8 { + margin-left: -2rem !important; + margin-right: -2rem !important; } - .\32xl\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-9 { + margin-left: -2.25rem !important; + margin-right: -2.25rem !important; } - .\32xl\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-10 { + margin-left: -2.5rem !important; + margin-right: -2.5rem !important; } - .\32xl\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-11 { + margin-left: -2.75rem !important; + margin-right: -2.75rem !important; } - .\32xl\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-12 { + margin-left: -3rem !important; + margin-right: -3rem !important; } - .\32xl\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-14 { + margin-left: -3.5rem !important; + margin-right: -3.5rem !important; } - .\32xl\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-16 { + margin-left: -4rem !important; + margin-right: -4rem !important; } - .\32xl\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-20 { + margin-left: -5rem !important; + margin-right: -5rem !important; } - .\32xl\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-24 { + margin-left: -6rem !important; + margin-right: -6rem !important; } - .\32xl\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-28 { + margin-left: -7rem !important; + margin-right: -7rem !important; } - .\32xl\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-32 { + margin-left: -8rem !important; + margin-right: -8rem !important; } - .\32xl\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1 !important; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; + .\32xl\:-mx-36 { + margin-left: -9rem !important; + margin-right: -9rem !important; } - .\32xl\:bg-none { - background-image: none !important; + .\32xl\:-mx-40 { + margin-left: -10rem !important; + margin-right: -10rem !important; } - .\32xl\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; + .\32xl\:-mx-44 { + margin-left: -11rem !important; + margin-right: -11rem !important; } - .\32xl\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; + .\32xl\:-mx-48 { + margin-left: -12rem !important; + margin-right: -12rem !important; } - .\32xl\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; + .\32xl\:-mx-52 { + margin-left: -13rem !important; + margin-right: -13rem !important; } - .\32xl\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; + .\32xl\:-mx-56 { + margin-left: -14rem !important; + margin-right: -14rem !important; } - .\32xl\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; + .\32xl\:-mx-60 { + margin-left: -15rem !important; + margin-right: -15rem !important; } - .\32xl\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; + .\32xl\:-mx-64 { + margin-left: -16rem !important; + margin-right: -16rem !important; } - .\32xl\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; + .\32xl\:-mx-72 { + margin-left: -18rem !important; + margin-right: -18rem !important; } - .\32xl\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; + .\32xl\:-mx-80 { + margin-left: -20rem !important; + margin-right: -20rem !important; } - .\32xl\:from-transparent { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .\32xl\:-mx-96 { + margin-left: -24rem !important; + margin-right: -24rem !important; } - .\32xl\:from-current { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .\32xl\:-mx-px { + margin-left: -1px !important; + margin-right: -1px !important; } - .\32xl\:from-black { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .\32xl\:-mx-0\.5 { + margin-left: -0.125rem !important; + margin-right: -0.125rem !important; } - .\32xl\:from-white { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .\32xl\:-mx-1\.5 { + margin-left: -0.375rem !important; + margin-right: -0.375rem !important; } - .\32xl\:from-gray-50 { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .\32xl\:-mx-2\.5 { + margin-left: -0.625rem !important; + margin-right: -0.625rem !important; } - .\32xl\:from-gray-100 { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .\32xl\:-mx-3\.5 { + margin-left: -0.875rem !important; + margin-right: -0.875rem !important; } - .\32xl\:from-gray-200 { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .\32xl\:my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .\32xl\:from-gray-300 { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .\32xl\:my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; } - .\32xl\:from-gray-400 { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .\32xl\:my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; } - .\32xl\:from-gray-500 { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .\32xl\:my-3 { + margin-top: 0.75rem !important; + margin-bottom: 0.75rem !important; } - .\32xl\:from-gray-600 { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .\32xl\:my-4 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; } - .\32xl\:from-gray-700 { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .\32xl\:my-5 { + margin-top: 1.25rem !important; + margin-bottom: 1.25rem !important; } - .\32xl\:from-gray-800 { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .\32xl\:my-6 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; } - .\32xl\:from-gray-900 { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .\32xl\:my-7 { + margin-top: 1.75rem !important; + margin-bottom: 1.75rem !important; } - .\32xl\:from-red-50 { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .\32xl\:my-8 { + margin-top: 2rem !important; + margin-bottom: 2rem !important; } - .\32xl\:from-red-100 { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .\32xl\:my-9 { + margin-top: 2.25rem !important; + margin-bottom: 2.25rem !important; } - .\32xl\:from-red-200 { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .\32xl\:my-10 { + margin-top: 2.5rem !important; + margin-bottom: 2.5rem !important; } - .\32xl\:from-red-300 { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .\32xl\:my-11 { + margin-top: 2.75rem !important; + margin-bottom: 2.75rem !important; } - .\32xl\:from-red-400 { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .\32xl\:my-12 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; } - .\32xl\:from-red-500 { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .\32xl\:my-14 { + margin-top: 3.5rem !important; + margin-bottom: 3.5rem !important; } - .\32xl\:from-red-600 { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .\32xl\:my-16 { + margin-top: 4rem !important; + margin-bottom: 4rem !important; } - .\32xl\:from-red-700 { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .\32xl\:my-20 { + margin-top: 5rem !important; + margin-bottom: 5rem !important; } - .\32xl\:from-red-800 { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .\32xl\:my-24 { + margin-top: 6rem !important; + margin-bottom: 6rem !important; } - .\32xl\:from-red-900 { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .\32xl\:my-28 { + margin-top: 7rem !important; + margin-bottom: 7rem !important; } - .\32xl\:from-yellow-50 { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .\32xl\:my-32 { + margin-top: 8rem !important; + margin-bottom: 8rem !important; } - .\32xl\:from-yellow-100 { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .\32xl\:my-36 { + margin-top: 9rem !important; + margin-bottom: 9rem !important; } - .\32xl\:from-yellow-200 { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .\32xl\:my-40 { + margin-top: 10rem !important; + margin-bottom: 10rem !important; } - .\32xl\:from-yellow-300 { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .\32xl\:my-44 { + margin-top: 11rem !important; + margin-bottom: 11rem !important; } - .\32xl\:from-yellow-400 { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .\32xl\:my-48 { + margin-top: 12rem !important; + margin-bottom: 12rem !important; } - .\32xl\:from-yellow-500 { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .\32xl\:my-52 { + margin-top: 13rem !important; + margin-bottom: 13rem !important; } - .\32xl\:from-yellow-600 { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .\32xl\:my-56 { + margin-top: 14rem !important; + margin-bottom: 14rem !important; } - .\32xl\:from-yellow-700 { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .\32xl\:my-60 { + margin-top: 15rem !important; + margin-bottom: 15rem !important; } - .\32xl\:from-yellow-800 { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .\32xl\:my-64 { + margin-top: 16rem !important; + margin-bottom: 16rem !important; } - .\32xl\:from-yellow-900 { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .\32xl\:my-72 { + margin-top: 18rem !important; + margin-bottom: 18rem !important; } - .\32xl\:from-green-50 { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .\32xl\:my-80 { + margin-top: 20rem !important; + margin-bottom: 20rem !important; } - .\32xl\:from-green-100 { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .\32xl\:my-96 { + margin-top: 24rem !important; + margin-bottom: 24rem !important; } - .\32xl\:from-green-200 { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .\32xl\:my-auto { + margin-top: auto !important; + margin-bottom: auto !important; } - .\32xl\:from-green-300 { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .\32xl\:my-px { + margin-top: 1px !important; + margin-bottom: 1px !important; } - .\32xl\:from-green-400 { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .\32xl\:my-0\.5 { + margin-top: 0.125rem !important; + margin-bottom: 0.125rem !important; } - .\32xl\:from-green-500 { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .\32xl\:my-1\.5 { + margin-top: 0.375rem !important; + margin-bottom: 0.375rem !important; } - .\32xl\:from-green-600 { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .\32xl\:my-2\.5 { + margin-top: 0.625rem !important; + margin-bottom: 0.625rem !important; } - .\32xl\:from-green-700 { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .\32xl\:my-3\.5 { + margin-top: 0.875rem !important; + margin-bottom: 0.875rem !important; } - .\32xl\:from-green-800 { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .\32xl\:-my-0 { + margin-top: 0px !important; + margin-bottom: 0px !important; } - .\32xl\:from-green-900 { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .\32xl\:-my-1 { + margin-top: -0.25rem !important; + margin-bottom: -0.25rem !important; } - .\32xl\:from-blue-50 { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .\32xl\:-my-2 { + margin-top: -0.5rem !important; + margin-bottom: -0.5rem !important; } - .\32xl\:from-blue-100 { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .\32xl\:-my-3 { + margin-top: -0.75rem !important; + margin-bottom: -0.75rem !important; } - .\32xl\:from-blue-200 { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .\32xl\:-my-4 { + margin-top: -1rem !important; + margin-bottom: -1rem !important; } - .\32xl\:from-blue-300 { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .\32xl\:-my-5 { + margin-top: -1.25rem !important; + margin-bottom: -1.25rem !important; } - .\32xl\:from-blue-400 { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .\32xl\:-my-6 { + margin-top: -1.5rem !important; + margin-bottom: -1.5rem !important; } - .\32xl\:from-blue-500 { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .\32xl\:-my-7 { + margin-top: -1.75rem !important; + margin-bottom: -1.75rem !important; } - .\32xl\:from-blue-600 { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .\32xl\:-my-8 { + margin-top: -2rem !important; + margin-bottom: -2rem !important; } - .\32xl\:from-blue-700 { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .\32xl\:-my-9 { + margin-top: -2.25rem !important; + margin-bottom: -2.25rem !important; } - .\32xl\:from-blue-800 { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .\32xl\:-my-10 { + margin-top: -2.5rem !important; + margin-bottom: -2.5rem !important; } - .\32xl\:from-blue-900 { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .\32xl\:-my-11 { + margin-top: -2.75rem !important; + margin-bottom: -2.75rem !important; } - .\32xl\:from-indigo-50 { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .\32xl\:-my-12 { + margin-top: -3rem !important; + margin-bottom: -3rem !important; } - .\32xl\:from-indigo-100 { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .\32xl\:-my-14 { + margin-top: -3.5rem !important; + margin-bottom: -3.5rem !important; } - .\32xl\:from-indigo-200 { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .\32xl\:-my-16 { + margin-top: -4rem !important; + margin-bottom: -4rem !important; } - .\32xl\:from-indigo-300 { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .\32xl\:-my-20 { + margin-top: -5rem !important; + margin-bottom: -5rem !important; } - .\32xl\:from-indigo-400 { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .\32xl\:-my-24 { + margin-top: -6rem !important; + margin-bottom: -6rem !important; } - .\32xl\:from-indigo-500 { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .\32xl\:-my-28 { + margin-top: -7rem !important; + margin-bottom: -7rem !important; } - .\32xl\:from-indigo-600 { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .\32xl\:-my-32 { + margin-top: -8rem !important; + margin-bottom: -8rem !important; } - .\32xl\:from-indigo-700 { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .\32xl\:-my-36 { + margin-top: -9rem !important; + margin-bottom: -9rem !important; } - .\32xl\:from-indigo-800 { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .\32xl\:-my-40 { + margin-top: -10rem !important; + margin-bottom: -10rem !important; } - .\32xl\:from-indigo-900 { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .\32xl\:-my-44 { + margin-top: -11rem !important; + margin-bottom: -11rem !important; } - .\32xl\:from-purple-50 { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .\32xl\:-my-48 { + margin-top: -12rem !important; + margin-bottom: -12rem !important; } - .\32xl\:from-purple-100 { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .\32xl\:-my-52 { + margin-top: -13rem !important; + margin-bottom: -13rem !important; } - .\32xl\:from-purple-200 { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .\32xl\:-my-56 { + margin-top: -14rem !important; + margin-bottom: -14rem !important; } - .\32xl\:from-purple-300 { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .\32xl\:-my-60 { + margin-top: -15rem !important; + margin-bottom: -15rem !important; } - .\32xl\:from-purple-400 { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .\32xl\:-my-64 { + margin-top: -16rem !important; + margin-bottom: -16rem !important; } - .\32xl\:from-purple-500 { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .\32xl\:-my-72 { + margin-top: -18rem !important; + margin-bottom: -18rem !important; } - .\32xl\:from-purple-600 { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .\32xl\:-my-80 { + margin-top: -20rem !important; + margin-bottom: -20rem !important; } - .\32xl\:from-purple-700 { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .\32xl\:-my-96 { + margin-top: -24rem !important; + margin-bottom: -24rem !important; } - .\32xl\:from-purple-800 { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .\32xl\:-my-px { + margin-top: -1px !important; + margin-bottom: -1px !important; } - .\32xl\:from-purple-900 { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .\32xl\:-my-0\.5 { + margin-top: -0.125rem !important; + margin-bottom: -0.125rem !important; } - .\32xl\:from-pink-50 { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .\32xl\:-my-1\.5 { + margin-top: -0.375rem !important; + margin-bottom: -0.375rem !important; } - .\32xl\:from-pink-100 { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .\32xl\:-my-2\.5 { + margin-top: -0.625rem !important; + margin-bottom: -0.625rem !important; } - .\32xl\:from-pink-200 { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .\32xl\:-my-3\.5 { + margin-top: -0.875rem !important; + margin-bottom: -0.875rem !important; } - .\32xl\:from-pink-300 { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .\32xl\:mt-0 { + margin-top: 0px !important; } - .\32xl\:from-pink-400 { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .\32xl\:mt-1 { + margin-top: 0.25rem !important; } - .\32xl\:from-pink-500 { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .\32xl\:mt-2 { + margin-top: 0.5rem !important; } - .\32xl\:from-pink-600 { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .\32xl\:mt-3 { + margin-top: 0.75rem !important; } - .\32xl\:from-pink-700 { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .\32xl\:mt-4 { + margin-top: 1rem !important; } - .\32xl\:from-pink-800 { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .\32xl\:mt-5 { + margin-top: 1.25rem !important; } - .\32xl\:from-pink-900 { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .\32xl\:mt-6 { + margin-top: 1.5rem !important; } - .\32xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .\32xl\:mt-7 { + margin-top: 1.75rem !important; } - .\32xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .\32xl\:mt-8 { + margin-top: 2rem !important; } - .\32xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .\32xl\:mt-9 { + margin-top: 2.25rem !important; } - .\32xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .\32xl\:mt-10 { + margin-top: 2.5rem !important; } - .\32xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .\32xl\:mt-11 { + margin-top: 2.75rem !important; } - .\32xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .\32xl\:mt-12 { + margin-top: 3rem !important; } - .\32xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .\32xl\:mt-14 { + margin-top: 3.5rem !important; } - .\32xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .\32xl\:mt-16 { + margin-top: 4rem !important; } - .\32xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .\32xl\:mt-20 { + margin-top: 5rem !important; } - .\32xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .\32xl\:mt-24 { + margin-top: 6rem !important; } - .\32xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .\32xl\:mt-28 { + margin-top: 7rem !important; } - .\32xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .\32xl\:mt-32 { + margin-top: 8rem !important; } - .\32xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .\32xl\:mt-36 { + margin-top: 9rem !important; } - .\32xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .\32xl\:mt-40 { + margin-top: 10rem !important; } - .\32xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .\32xl\:mt-44 { + margin-top: 11rem !important; } - .\32xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .\32xl\:mt-48 { + margin-top: 12rem !important; } - .\32xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .\32xl\:mt-52 { + margin-top: 13rem !important; } - .\32xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .\32xl\:mt-56 { + margin-top: 14rem !important; } - .\32xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .\32xl\:mt-60 { + margin-top: 15rem !important; } - .\32xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .\32xl\:mt-64 { + margin-top: 16rem !important; } - .\32xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .\32xl\:mt-72 { + margin-top: 18rem !important; } - .\32xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .\32xl\:mt-80 { + margin-top: 20rem !important; } - .\32xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .\32xl\:mt-96 { + margin-top: 24rem !important; } - .\32xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .\32xl\:mt-auto { + margin-top: auto !important; } - .\32xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .\32xl\:mt-px { + margin-top: 1px !important; } - .\32xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .\32xl\:mt-0\.5 { + margin-top: 0.125rem !important; } - .\32xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .\32xl\:mt-1\.5 { + margin-top: 0.375rem !important; } - .\32xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .\32xl\:mt-2\.5 { + margin-top: 0.625rem !important; } - .\32xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .\32xl\:mt-3\.5 { + margin-top: 0.875rem !important; } - .\32xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .\32xl\:-mt-0 { + margin-top: 0px !important; } - .\32xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .\32xl\:-mt-1 { + margin-top: -0.25rem !important; } - .\32xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .\32xl\:-mt-2 { + margin-top: -0.5rem !important; } - .\32xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .\32xl\:-mt-3 { + margin-top: -0.75rem !important; } - .\32xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .\32xl\:-mt-4 { + margin-top: -1rem !important; } - .\32xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .\32xl\:-mt-5 { + margin-top: -1.25rem !important; } - .\32xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .\32xl\:-mt-6 { + margin-top: -1.5rem !important; } - .\32xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .\32xl\:-mt-7 { + margin-top: -1.75rem !important; } - .\32xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .\32xl\:-mt-8 { + margin-top: -2rem !important; } - .\32xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .\32xl\:-mt-9 { + margin-top: -2.25rem !important; } - .\32xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .\32xl\:-mt-10 { + margin-top: -2.5rem !important; } - .\32xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .\32xl\:-mt-11 { + margin-top: -2.75rem !important; } - .\32xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .\32xl\:-mt-12 { + margin-top: -3rem !important; } - .\32xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .\32xl\:-mt-14 { + margin-top: -3.5rem !important; } - .\32xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .\32xl\:-mt-16 { + margin-top: -4rem !important; } - .\32xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .\32xl\:-mt-20 { + margin-top: -5rem !important; } - .\32xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .\32xl\:-mt-24 { + margin-top: -6rem !important; } - .\32xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .\32xl\:-mt-28 { + margin-top: -7rem !important; } - .\32xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .\32xl\:-mt-32 { + margin-top: -8rem !important; } - .\32xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .\32xl\:-mt-36 { + margin-top: -9rem !important; } - .\32xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .\32xl\:-mt-40 { + margin-top: -10rem !important; } - .\32xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .\32xl\:-mt-44 { + margin-top: -11rem !important; } - .\32xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .\32xl\:-mt-48 { + margin-top: -12rem !important; } - .\32xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .\32xl\:-mt-52 { + margin-top: -13rem !important; } - .\32xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .\32xl\:-mt-56 { + margin-top: -14rem !important; } - .\32xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .\32xl\:-mt-60 { + margin-top: -15rem !important; } - .\32xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .\32xl\:-mt-64 { + margin-top: -16rem !important; } - .\32xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .\32xl\:-mt-72 { + margin-top: -18rem !important; } - .\32xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .\32xl\:-mt-80 { + margin-top: -20rem !important; } - .\32xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .\32xl\:-mt-96 { + margin-top: -24rem !important; } - .\32xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .\32xl\:-mt-px { + margin-top: -1px !important; } - .\32xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .\32xl\:-mt-0\.5 { + margin-top: -0.125rem !important; } - .\32xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .\32xl\:-mt-1\.5 { + margin-top: -0.375rem !important; } - .\32xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .\32xl\:-mt-2\.5 { + margin-top: -0.625rem !important; } - .\32xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .\32xl\:-mt-3\.5 { + margin-top: -0.875rem !important; } - .\32xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .\32xl\:mr-0 { + margin-right: 0px !important; } - .\32xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .\32xl\:mr-1 { + margin-right: 0.25rem !important; } - .\32xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .\32xl\:mr-2 { + margin-right: 0.5rem !important; } - .\32xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .\32xl\:mr-3 { + margin-right: 0.75rem !important; } - .\32xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .\32xl\:mr-4 { + margin-right: 1rem !important; } - .\32xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .\32xl\:mr-5 { + margin-right: 1.25rem !important; } - .\32xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .\32xl\:mr-6 { + margin-right: 1.5rem !important; } - .\32xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .\32xl\:mr-7 { + margin-right: 1.75rem !important; } - .\32xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .\32xl\:mr-8 { + margin-right: 2rem !important; } - .\32xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .\32xl\:mr-9 { + margin-right: 2.25rem !important; } - .\32xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .\32xl\:mr-10 { + margin-right: 2.5rem !important; } - .\32xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .\32xl\:mr-11 { + margin-right: 2.75rem !important; } - .\32xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .\32xl\:mr-12 { + margin-right: 3rem !important; } - .\32xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .\32xl\:mr-14 { + margin-right: 3.5rem !important; } - .\32xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .\32xl\:mr-16 { + margin-right: 4rem !important; } - .\32xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .\32xl\:mr-20 { + margin-right: 5rem !important; } - .\32xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .\32xl\:mr-24 { + margin-right: 6rem !important; } - .\32xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .\32xl\:mr-28 { + margin-right: 7rem !important; } - .\32xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .\32xl\:mr-32 { + margin-right: 8rem !important; } - .\32xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .\32xl\:mr-36 { + margin-right: 9rem !important; } - .\32xl\:to-transparent { - --tw-gradient-to: transparent !important; + .\32xl\:mr-40 { + margin-right: 10rem !important; } - .\32xl\:to-current { - --tw-gradient-to: currentColor !important; + .\32xl\:mr-44 { + margin-right: 11rem !important; } - .\32xl\:to-black { - --tw-gradient-to: #000 !important; + .\32xl\:mr-48 { + margin-right: 12rem !important; } - .\32xl\:to-white { - --tw-gradient-to: #fff !important; + .\32xl\:mr-52 { + margin-right: 13rem !important; } - .\32xl\:to-gray-50 { - --tw-gradient-to: #f9fafb !important; + .\32xl\:mr-56 { + margin-right: 14rem !important; } - .\32xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; + .\32xl\:mr-60 { + margin-right: 15rem !important; } - .\32xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb !important; + .\32xl\:mr-64 { + margin-right: 16rem !important; } - .\32xl\:to-gray-300 { - --tw-gradient-to: #d1d5db !important; + .\32xl\:mr-72 { + margin-right: 18rem !important; } - .\32xl\:to-gray-400 { - --tw-gradient-to: #9ca3af !important; + .\32xl\:mr-80 { + margin-right: 20rem !important; } - .\32xl\:to-gray-500 { - --tw-gradient-to: #6b7280 !important; + .\32xl\:mr-96 { + margin-right: 24rem !important; } - .\32xl\:to-gray-600 { - --tw-gradient-to: #4b5563 !important; + .\32xl\:mr-auto { + margin-right: auto !important; } - .\32xl\:to-gray-700 { - --tw-gradient-to: #374151 !important; + .\32xl\:mr-px { + margin-right: 1px !important; } - .\32xl\:to-gray-800 { - --tw-gradient-to: #1f2937 !important; + .\32xl\:mr-0\.5 { + margin-right: 0.125rem !important; } - .\32xl\:to-gray-900 { - --tw-gradient-to: #111827 !important; + .\32xl\:mr-1\.5 { + margin-right: 0.375rem !important; } - .\32xl\:to-red-50 { - --tw-gradient-to: #fef2f2 !important; + .\32xl\:mr-2\.5 { + margin-right: 0.625rem !important; } - .\32xl\:to-red-100 { - --tw-gradient-to: #fee2e2 !important; + .\32xl\:mr-3\.5 { + margin-right: 0.875rem !important; } - .\32xl\:to-red-200 { - --tw-gradient-to: #fecaca !important; + .\32xl\:-mr-0 { + margin-right: 0px !important; } - .\32xl\:to-red-300 { - --tw-gradient-to: #fca5a5 !important; + .\32xl\:-mr-1 { + margin-right: -0.25rem !important; } - .\32xl\:to-red-400 { - --tw-gradient-to: #f87171 !important; + .\32xl\:-mr-2 { + margin-right: -0.5rem !important; } - .\32xl\:to-red-500 { - --tw-gradient-to: #ef4444 !important; + .\32xl\:-mr-3 { + margin-right: -0.75rem !important; } - .\32xl\:to-red-600 { - --tw-gradient-to: #dc2626 !important; + .\32xl\:-mr-4 { + margin-right: -1rem !important; } - .\32xl\:to-red-700 { - --tw-gradient-to: #b91c1c !important; + .\32xl\:-mr-5 { + margin-right: -1.25rem !important; } - .\32xl\:to-red-800 { - --tw-gradient-to: #991b1b !important; + .\32xl\:-mr-6 { + margin-right: -1.5rem !important; } - .\32xl\:to-red-900 { - --tw-gradient-to: #7f1d1d !important; + .\32xl\:-mr-7 { + margin-right: -1.75rem !important; } - .\32xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb !important; + .\32xl\:-mr-8 { + margin-right: -2rem !important; } - .\32xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; + .\32xl\:-mr-9 { + margin-right: -2.25rem !important; } - .\32xl\:to-yellow-200 { - --tw-gradient-to: #fde68a !important; + .\32xl\:-mr-10 { + margin-right: -2.5rem !important; } - .\32xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d !important; + .\32xl\:-mr-11 { + margin-right: -2.75rem !important; } - .\32xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; + .\32xl\:-mr-12 { + margin-right: -3rem !important; } - .\32xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b !important; + .\32xl\:-mr-14 { + margin-right: -3.5rem !important; } - .\32xl\:to-yellow-600 { - --tw-gradient-to: #d97706 !important; + .\32xl\:-mr-16 { + margin-right: -4rem !important; } - .\32xl\:to-yellow-700 { - --tw-gradient-to: #b45309 !important; + .\32xl\:-mr-20 { + margin-right: -5rem !important; } - .\32xl\:to-yellow-800 { - --tw-gradient-to: #92400e !important; + .\32xl\:-mr-24 { + margin-right: -6rem !important; } - .\32xl\:to-yellow-900 { - --tw-gradient-to: #78350f !important; + .\32xl\:-mr-28 { + margin-right: -7rem !important; } - .\32xl\:to-green-50 { - --tw-gradient-to: #ecfdf5 !important; + .\32xl\:-mr-32 { + margin-right: -8rem !important; } - .\32xl\:to-green-100 { - --tw-gradient-to: #d1fae5 !important; + .\32xl\:-mr-36 { + margin-right: -9rem !important; } - .\32xl\:to-green-200 { - --tw-gradient-to: #a7f3d0 !important; + .\32xl\:-mr-40 { + margin-right: -10rem !important; } - .\32xl\:to-green-300 { - --tw-gradient-to: #6ee7b7 !important; + .\32xl\:-mr-44 { + margin-right: -11rem !important; } - .\32xl\:to-green-400 { - --tw-gradient-to: #34d399 !important; + .\32xl\:-mr-48 { + margin-right: -12rem !important; } - .\32xl\:to-green-500 { - --tw-gradient-to: #10b981 !important; + .\32xl\:-mr-52 { + margin-right: -13rem !important; } - .\32xl\:to-green-600 { - --tw-gradient-to: #059669 !important; + .\32xl\:-mr-56 { + margin-right: -14rem !important; } - .\32xl\:to-green-700 { - --tw-gradient-to: #047857 !important; + .\32xl\:-mr-60 { + margin-right: -15rem !important; } - .\32xl\:to-green-800 { - --tw-gradient-to: #065f46 !important; + .\32xl\:-mr-64 { + margin-right: -16rem !important; } - .\32xl\:to-green-900 { - --tw-gradient-to: #064e3b !important; + .\32xl\:-mr-72 { + margin-right: -18rem !important; } - .\32xl\:to-blue-50 { - --tw-gradient-to: #eff6ff !important; + .\32xl\:-mr-80 { + margin-right: -20rem !important; } - .\32xl\:to-blue-100 { - --tw-gradient-to: #dbeafe !important; + .\32xl\:-mr-96 { + margin-right: -24rem !important; } - .\32xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe !important; + .\32xl\:-mr-px { + margin-right: -1px !important; } - .\32xl\:to-blue-300 { - --tw-gradient-to: #93c5fd !important; + .\32xl\:-mr-0\.5 { + margin-right: -0.125rem !important; } - .\32xl\:to-blue-400 { - --tw-gradient-to: #60a5fa !important; + .\32xl\:-mr-1\.5 { + margin-right: -0.375rem !important; } - .\32xl\:to-blue-500 { - --tw-gradient-to: #3b82f6 !important; + .\32xl\:-mr-2\.5 { + margin-right: -0.625rem !important; } - .\32xl\:to-blue-600 { - --tw-gradient-to: #2563eb !important; + .\32xl\:-mr-3\.5 { + margin-right: -0.875rem !important; } - .\32xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; + .\32xl\:mb-0 { + margin-bottom: 0px !important; } - .\32xl\:to-blue-800 { - --tw-gradient-to: #1e40af !important; + .\32xl\:mb-1 { + margin-bottom: 0.25rem !important; } - .\32xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a !important; + .\32xl\:mb-2 { + margin-bottom: 0.5rem !important; } - .\32xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff !important; + .\32xl\:mb-3 { + margin-bottom: 0.75rem !important; } - .\32xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; + .\32xl\:mb-4 { + margin-bottom: 1rem !important; } - .\32xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; + .\32xl\:mb-5 { + margin-bottom: 1.25rem !important; } - .\32xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; + .\32xl\:mb-6 { + margin-bottom: 1.5rem !important; } - .\32xl\:to-indigo-400 { - --tw-gradient-to: #818cf8 !important; + .\32xl\:mb-7 { + margin-bottom: 1.75rem !important; } - .\32xl\:to-indigo-500 { - --tw-gradient-to: #6366f1 !important; + .\32xl\:mb-8 { + margin-bottom: 2rem !important; } - .\32xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; + .\32xl\:mb-9 { + margin-bottom: 2.25rem !important; } - .\32xl\:to-indigo-700 { - --tw-gradient-to: #4338ca !important; + .\32xl\:mb-10 { + margin-bottom: 2.5rem !important; } - .\32xl\:to-indigo-800 { - --tw-gradient-to: #3730a3 !important; + .\32xl\:mb-11 { + margin-bottom: 2.75rem !important; } - .\32xl\:to-indigo-900 { - --tw-gradient-to: #312e81 !important; + .\32xl\:mb-12 { + margin-bottom: 3rem !important; } - .\32xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff !important; + .\32xl\:mb-14 { + margin-bottom: 3.5rem !important; } - .\32xl\:to-purple-100 { - --tw-gradient-to: #ede9fe !important; + .\32xl\:mb-16 { + margin-bottom: 4rem !important; } - .\32xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe !important; + .\32xl\:mb-20 { + margin-bottom: 5rem !important; } - .\32xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd !important; + .\32xl\:mb-24 { + margin-bottom: 6rem !important; } - .\32xl\:to-purple-400 { - --tw-gradient-to: #a78bfa !important; + .\32xl\:mb-28 { + margin-bottom: 7rem !important; } - .\32xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; + .\32xl\:mb-32 { + margin-bottom: 8rem !important; } - .\32xl\:to-purple-600 { - --tw-gradient-to: #7c3aed !important; + .\32xl\:mb-36 { + margin-bottom: 9rem !important; } - .\32xl\:to-purple-700 { - --tw-gradient-to: #6d28d9 !important; + .\32xl\:mb-40 { + margin-bottom: 10rem !important; } - .\32xl\:to-purple-800 { - --tw-gradient-to: #5b21b6 !important; + .\32xl\:mb-44 { + margin-bottom: 11rem !important; } - .\32xl\:to-purple-900 { - --tw-gradient-to: #4c1d95 !important; + .\32xl\:mb-48 { + margin-bottom: 12rem !important; } - .\32xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; + .\32xl\:mb-52 { + margin-bottom: 13rem !important; } - .\32xl\:to-pink-100 { - --tw-gradient-to: #fce7f3 !important; + .\32xl\:mb-56 { + margin-bottom: 14rem !important; } - .\32xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; + .\32xl\:mb-60 { + margin-bottom: 15rem !important; } - .\32xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; + .\32xl\:mb-64 { + margin-bottom: 16rem !important; } - .\32xl\:to-pink-400 { - --tw-gradient-to: #f472b6 !important; + .\32xl\:mb-72 { + margin-bottom: 18rem !important; } - .\32xl\:to-pink-500 { - --tw-gradient-to: #ec4899 !important; + .\32xl\:mb-80 { + margin-bottom: 20rem !important; } - .\32xl\:to-pink-600 { - --tw-gradient-to: #db2777 !important; + .\32xl\:mb-96 { + margin-bottom: 24rem !important; } - .\32xl\:to-pink-700 { - --tw-gradient-to: #be185d !important; + .\32xl\:mb-auto { + margin-bottom: auto !important; } - .\32xl\:to-pink-800 { - --tw-gradient-to: #9d174d !important; + .\32xl\:mb-px { + margin-bottom: 1px !important; } - .\32xl\:to-pink-900 { - --tw-gradient-to: #831843 !important; + .\32xl\:mb-0\.5 { + margin-bottom: 0.125rem !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\:mb-1\.5 { + margin-bottom: 0.375rem !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\:mb-2\.5 { + margin-bottom: 0.625rem !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\:mb-3\.5 { + margin-bottom: 0.875rem !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\:-mb-0 { + margin-bottom: 0px !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\:-mb-1 { + margin-bottom: -0.25rem !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\:-mb-2 { + margin-bottom: -0.5rem !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\:-mb-3 { + margin-bottom: -0.75rem !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\:-mb-4 { + margin-bottom: -1rem !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\:-mb-5 { + margin-bottom: -1.25rem !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\:-mb-6 { + margin-bottom: -1.5rem !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\:-mb-7 { + margin-bottom: -1.75rem !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\:-mb-8 { + margin-bottom: -2rem !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\:-mb-9 { + margin-bottom: -2.25rem !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\:-mb-10 { + margin-bottom: -2.5rem !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\:-mb-11 { + margin-bottom: -2.75rem !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\:-mb-12 { + margin-bottom: -3rem !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\:-mb-14 { + margin-bottom: -3.5rem !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\:-mb-16 { + margin-bottom: -4rem !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\:-mb-20 { + margin-bottom: -5rem !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\:-mb-24 { + margin-bottom: -6rem !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\:-mb-28 { + margin-bottom: -7rem !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\:-mb-32 { + margin-bottom: -8rem !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\:-mb-36 { + margin-bottom: -9rem !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\:-mb-40 { + margin-bottom: -10rem !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\:-mb-44 { + margin-bottom: -11rem !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\:-mb-48 { + margin-bottom: -12rem !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\:-mb-52 { + margin-bottom: -13rem !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\:-mb-56 { + margin-bottom: -14rem !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\:-mb-60 { + margin-bottom: -15rem !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\:-mb-64 { + margin-bottom: -16rem !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\:-mb-72 { + margin-bottom: -18rem !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\:-mb-80 { + margin-bottom: -20rem !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\:-mb-96 { + margin-bottom: -24rem !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\:-mb-px { + margin-bottom: -1px !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\:-mb-0\.5 { + margin-bottom: -0.125rem !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\:-mb-1\.5 { + margin-bottom: -0.375rem !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\:-mb-2\.5 { + margin-bottom: -0.625rem !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\:-mb-3\.5 { + margin-bottom: -0.875rem !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\:ml-0 { + margin-left: 0px !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\:ml-1 { + margin-left: 0.25rem !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\:ml-2 { + margin-left: 0.5rem !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\:ml-3 { + margin-left: 0.75rem !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\:ml-4 { + margin-left: 1rem !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\:ml-5 { + margin-left: 1.25rem !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\:ml-6 { + margin-left: 1.5rem !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\:ml-7 { + margin-left: 1.75rem !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\:ml-8 { + margin-left: 2rem !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\:ml-9 { + margin-left: 2.25rem !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\:ml-10 { + margin-left: 2.5rem !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\:ml-11 { + margin-left: 2.75rem !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\:ml-12 { + margin-left: 3rem !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\:ml-14 { + margin-left: 3.5rem !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\:ml-16 { + margin-left: 4rem !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\:ml-20 { + margin-left: 5rem !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\:ml-24 { + margin-left: 6rem !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\:ml-28 { + margin-left: 7rem !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\:ml-32 { + margin-left: 8rem !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\:ml-36 { + margin-left: 9rem !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\:ml-40 { + margin-left: 10rem !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\:ml-44 { + margin-left: 11rem !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\:ml-48 { + margin-left: 12rem !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\:ml-52 { + margin-left: 13rem !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\:ml-56 { + margin-left: 14rem !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\:ml-60 { + margin-left: 15rem !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\:ml-64 { + margin-left: 16rem !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\:ml-72 { + margin-left: 18rem !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\:ml-80 { + margin-left: 20rem !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\:ml-96 { + margin-left: 24rem !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\:ml-auto { + margin-left: auto !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\:ml-px { + margin-left: 1px !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\:ml-0\.5 { + margin-left: 0.125rem !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\:ml-1\.5 { + margin-left: 0.375rem !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\:ml-2\.5 { + margin-left: 0.625rem !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\:ml-3\.5 { + margin-left: 0.875rem !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\:-ml-0 { + margin-left: 0px !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\:-ml-1 { + margin-left: -0.25rem !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\:-ml-2 { + margin-left: -0.5rem !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\:-ml-3 { + margin-left: -0.75rem !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\:-ml-4 { + margin-left: -1rem !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\:-ml-5 { + margin-left: -1.25rem !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\:-ml-6 { + margin-left: -1.5rem !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\:-ml-7 { + margin-left: -1.75rem !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\:-ml-8 { + margin-left: -2rem !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\:-ml-9 { + margin-left: -2.25rem !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\:-ml-10 { + margin-left: -2.5rem !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\:-ml-11 { + margin-left: -2.75rem !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\:-ml-12 { + margin-left: -3rem !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\:-ml-14 { + margin-left: -3.5rem !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\:-ml-16 { + margin-left: -4rem !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\:-ml-20 { + margin-left: -5rem !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\:-ml-24 { + margin-left: -6rem !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\:-ml-28 { + margin-left: -7rem !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\:-ml-32 { + margin-left: -8rem !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\:-ml-36 { + margin-left: -9rem !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\:-ml-40 { + margin-left: -10rem !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\:-ml-44 { + margin-left: -11rem !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\:-ml-48 { + margin-left: -12rem !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\:-ml-52 { + margin-left: -13rem !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\:-ml-56 { + margin-left: -14rem !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\:-ml-60 { + margin-left: -15rem !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\:-ml-64 { + margin-left: -16rem !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\:-ml-72 { + margin-left: -18rem !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\:-ml-80 { + margin-left: -20rem !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\:-ml-96 { + margin-left: -24rem !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\:-ml-px { + margin-left: -1px !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\:-ml-0\.5 { + margin-left: -0.125rem !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\:-ml-1\.5 { + margin-left: -0.375rem !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\:-ml-2\.5 { + margin-left: -0.625rem !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\:-ml-3\.5 { + margin-left: -0.875rem !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\:box-border { + box-sizing: border-box !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\:box-content { + box-sizing: content-box !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\:block { + display: block !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\:inline-block { + display: inline-block !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\:inline { + display: inline !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\:flex { + display: flex !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\:inline-flex { + display: inline-flex !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\:table { + display: table !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\:inline-table { + display: inline-table !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\:table-caption { + display: table-caption !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\:table-cell { + display: table-cell !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\:table-column { + display: table-column !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\:table-column-group { + display: table-column-group !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\:table-footer-group { + display: table-footer-group !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\:table-header-group { + display: table-header-group !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\:table-row-group { + display: table-row-group !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\:table-row { + display: table-row !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\:flow-root { + display: flow-root !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\:grid { + display: grid !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\:inline-grid { + display: inline-grid !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\:contents { + display: contents !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\:list-item { + display: list-item !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\:hidden { + display: none !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\:h-0 { + height: 0px !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\:h-1 { + height: 0.25rem !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\:h-2 { + height: 0.5rem !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\:h-3 { + height: 0.75rem !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\:h-4 { + height: 1rem !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\:h-5 { + height: 1.25rem !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\:h-6 { + height: 1.5rem !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\:h-7 { + height: 1.75rem !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\:h-8 { + height: 2rem !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\:h-9 { + height: 2.25rem !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\:h-10 { + height: 2.5rem !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\:h-11 { + height: 2.75rem !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\:h-12 { + height: 3rem !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\:h-14 { + height: 3.5rem !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\:h-16 { + height: 4rem !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\:h-20 { + height: 5rem !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\:h-24 { + height: 6rem !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\:h-28 { + height: 7rem !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\:h-32 { + height: 8rem !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\:h-36 { + height: 9rem !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\:h-40 { + height: 10rem !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\:h-44 { + height: 11rem !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\:h-48 { + height: 12rem !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\:h-52 { + height: 13rem !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\:h-56 { + height: 14rem !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\:h-60 { + height: 15rem !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\:h-64 { + height: 16rem !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\:h-72 { + height: 18rem !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\:h-80 { + height: 20rem !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\:h-96 { + height: 24rem !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\:h-auto { + height: auto !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\:h-px { + height: 1px !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\:h-0\.5 { + height: 0.125rem !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\:h-1\.5 { + height: 0.375rem !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\:h-2\.5 { + height: 0.625rem !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\:h-3\.5 { + height: 0.875rem !important; } - .\32xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; + .\32xl\:h-1\/2 { + height: 50% !important; } - .\32xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor !important; + .\32xl\:h-1\/3 { + height: 33.333333% !important; } - .\32xl\:hover\:to-black:hover { - --tw-gradient-to: #000 !important; + .\32xl\:h-2\/3 { + height: 66.666667% !important; } - .\32xl\:hover\:to-white:hover { - --tw-gradient-to: #fff !important; + .\32xl\:h-1\/4 { + height: 25% !important; } - .\32xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; + .\32xl\:h-2\/4 { + height: 50% !important; } - .\32xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; + .\32xl\:h-3\/4 { + height: 75% !important; } - .\32xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; + .\32xl\:h-1\/5 { + height: 20% !important; } - .\32xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; + .\32xl\:h-2\/5 { + height: 40% !important; } - .\32xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; + .\32xl\:h-3\/5 { + height: 60% !important; } - .\32xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; + .\32xl\:h-4\/5 { + height: 80% !important; } - .\32xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; + .\32xl\:h-1\/6 { + height: 16.666667% !important; } - .\32xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; + .\32xl\:h-2\/6 { + height: 33.333333% !important; } - .\32xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; + .\32xl\:h-3\/6 { + height: 50% !important; } - .\32xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; + .\32xl\:h-4\/6 { + height: 66.666667% !important; } - .\32xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; + .\32xl\:h-5\/6 { + height: 83.333333% !important; } - .\32xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; + .\32xl\:h-full { + height: 100% !important; } - .\32xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; + .\32xl\:h-screen { + height: 100vh !important; } - .\32xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; + .\32xl\:max-h-0 { + max-height: 0px !important; } - .\32xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; + .\32xl\:max-h-1 { + max-height: 0.25rem !important; } - .\32xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; + .\32xl\:max-h-2 { + max-height: 0.5rem !important; } - .\32xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; + .\32xl\:max-h-3 { + max-height: 0.75rem !important; } - .\32xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; + .\32xl\:max-h-4 { + max-height: 1rem !important; } - .\32xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; + .\32xl\:max-h-5 { + max-height: 1.25rem !important; } - .\32xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; + .\32xl\:max-h-6 { + max-height: 1.5rem !important; } - .\32xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; + .\32xl\:max-h-7 { + max-height: 1.75rem !important; } - .\32xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; + .\32xl\:max-h-8 { + max-height: 2rem !important; } - .\32xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; + .\32xl\:max-h-9 { + max-height: 2.25rem !important; } - .\32xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; + .\32xl\:max-h-10 { + max-height: 2.5rem !important; } - .\32xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; + .\32xl\:max-h-11 { + max-height: 2.75rem !important; } - .\32xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; + .\32xl\:max-h-12 { + max-height: 3rem !important; } - .\32xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; + .\32xl\:max-h-14 { + max-height: 3.5rem !important; } - .\32xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; + .\32xl\:max-h-16 { + max-height: 4rem !important; } - .\32xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; + .\32xl\:max-h-20 { + max-height: 5rem !important; } - .\32xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; + .\32xl\:max-h-24 { + max-height: 6rem !important; } - .\32xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; + .\32xl\:max-h-28 { + max-height: 7rem !important; } - .\32xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; + .\32xl\:max-h-32 { + max-height: 8rem !important; } - .\32xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; + .\32xl\:max-h-36 { + max-height: 9rem !important; } - .\32xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; + .\32xl\:max-h-40 { + max-height: 10rem !important; } - .\32xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; + .\32xl\:max-h-44 { + max-height: 11rem !important; } - .\32xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; + .\32xl\:max-h-48 { + max-height: 12rem !important; } - .\32xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; + .\32xl\:max-h-52 { + max-height: 13rem !important; } - .\32xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; + .\32xl\:max-h-56 { + max-height: 14rem !important; } - .\32xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; + .\32xl\:max-h-60 { + max-height: 15rem !important; } - .\32xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; + .\32xl\:max-h-64 { + max-height: 16rem !important; } - .\32xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; + .\32xl\:max-h-72 { + max-height: 18rem !important; } - .\32xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; + .\32xl\:max-h-80 { + max-height: 20rem !important; } - .\32xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; + .\32xl\:max-h-96 { + max-height: 24rem !important; } - .\32xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; + .\32xl\:max-h-px { + max-height: 1px !important; } - .\32xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; + .\32xl\:max-h-0\.5 { + max-height: 0.125rem !important; } - .\32xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; + .\32xl\:max-h-1\.5 { + max-height: 0.375rem !important; } - .\32xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; + .\32xl\:max-h-2\.5 { + max-height: 0.625rem !important; } - .\32xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; + .\32xl\:max-h-3\.5 { + max-height: 0.875rem !important; } - .\32xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; + .\32xl\:max-h-full { + max-height: 100% !important; } - .\32xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; + .\32xl\:max-h-screen { + max-height: 100vh !important; } - .\32xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; + .\32xl\:min-h-0 { + min-height: 0px !important; } - .\32xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; + .\32xl\:min-h-full { + min-height: 100% !important; } - .\32xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; + .\32xl\:min-h-screen { + min-height: 100vh !important; } - .\32xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; + .\32xl\:w-0 { + width: 0px !important; } - .\32xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; + .\32xl\:w-1 { + width: 0.25rem !important; } - .\32xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; + .\32xl\:w-2 { + width: 0.5rem !important; } - .\32xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; + .\32xl\:w-3 { + width: 0.75rem !important; } - .\32xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; + .\32xl\:w-4 { + width: 1rem !important; } - .\32xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; + .\32xl\:w-5 { + width: 1.25rem !important; } - .\32xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; + .\32xl\:w-6 { + width: 1.5rem !important; } - .\32xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; + .\32xl\:w-7 { + width: 1.75rem !important; } - .\32xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; + .\32xl\:w-8 { + width: 2rem !important; } - .\32xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; + .\32xl\:w-9 { + width: 2.25rem !important; } - .\32xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; + .\32xl\:w-10 { + width: 2.5rem !important; } - .\32xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; + .\32xl\:w-11 { + width: 2.75rem !important; } - .\32xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; + .\32xl\:w-12 { + width: 3rem !important; } - .\32xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; + .\32xl\:w-14 { + width: 3.5rem !important; } - .\32xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; + .\32xl\:w-16 { + width: 4rem !important; } - .\32xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; + .\32xl\:w-20 { + width: 5rem !important; } - .\32xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; + .\32xl\:w-24 { + width: 6rem !important; } - .\32xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; + .\32xl\:w-28 { + width: 7rem !important; } - .\32xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; + .\32xl\:w-32 { + width: 8rem !important; } - .\32xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; + .\32xl\:w-36 { + width: 9rem !important; } - .\32xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; + .\32xl\:w-40 { + width: 10rem !important; } - .\32xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; + .\32xl\:w-44 { + width: 11rem !important; } - .\32xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; + .\32xl\:w-48 { + width: 12rem !important; } - .\32xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; + .\32xl\:w-52 { + width: 13rem !important; } - .\32xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; + .\32xl\:w-56 { + width: 14rem !important; } - .\32xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; + .\32xl\:w-60 { + width: 15rem !important; } - .\32xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; + .\32xl\:w-64 { + width: 16rem !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\:w-72 { + width: 18rem !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\:w-80 { + width: 20rem !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\:w-96 { + width: 24rem !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\:w-auto { + width: auto !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\:w-px { + width: 1px !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\:w-0\.5 { + width: 0.125rem !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\:w-1\.5 { + width: 0.375rem !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\:w-2\.5 { + width: 0.625rem !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\:w-3\.5 { + width: 0.875rem !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\:w-1\/2 { + width: 50% !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\:w-1\/3 { + width: 33.333333% !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\:w-2\/3 { + width: 66.666667% !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\:w-1\/4 { + width: 25% !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\:w-2\/4 { + width: 50% !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\:w-3\/4 { + width: 75% !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\:w-1\/5 { + width: 20% !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\:w-2\/5 { + width: 40% !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\:w-3\/5 { + width: 60% !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\:w-4\/5 { + width: 80% !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\:w-1\/6 { + width: 16.666667% !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\:w-2\/6 { + width: 33.333333% !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\:w-3\/6 { + width: 50% !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\:w-4\/6 { + width: 66.666667% !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\:w-5\/6 { + width: 83.333333% !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\:w-1\/12 { + width: 8.333333% !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\:w-2\/12 { + width: 16.666667% !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\:w-3\/12 { + width: 25% !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\:w-4\/12 { + width: 33.333333% !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\:w-5\/12 { + width: 41.666667% !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\:w-6\/12 { + width: 50% !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\:w-7\/12 { + width: 58.333333% !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\:w-8\/12 { + width: 66.666667% !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\:w-9\/12 { + width: 75% !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\:w-10\/12 { + width: 83.333333% !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\:w-11\/12 { + width: 91.666667% !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\:w-full { + width: 100% !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\:w-screen { + width: 100vw !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\:w-min { + width: min-content !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\:w-max { + width: max-content !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\:min-w-0 { + min-width: 0px !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\:min-w-full { + min-width: 100% !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\:min-w-min { + min-width: min-content !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\:min-w-max { + min-width: max-content !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\:max-w-0 { + max-width: 0rem !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\:max-w-none { + max-width: none !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\:max-w-xs { + max-width: 20rem !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\:max-w-sm { + max-width: 24rem !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\:max-w-md { + max-width: 28rem !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\:max-w-lg { + max-width: 32rem !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\:max-w-xl { + max-width: 36rem !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\:max-w-2xl { + max-width: 42rem !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\:max-w-3xl { + max-width: 48rem !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\:max-w-4xl { + max-width: 56rem !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\:max-w-5xl { + max-width: 64rem !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\:max-w-6xl { + max-width: 72rem !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\:max-w-7xl { + max-width: 80rem !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\:max-w-full { + max-width: 100% !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\:max-w-min { + max-width: min-content !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\:max-w-max { + max-width: max-content !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\:max-w-prose { + max-width: 65ch !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\:max-w-screen-sm { + max-width: 640px !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\:max-w-screen-md { + max-width: 768px !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\:max-w-screen-lg { + max-width: 1024px !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\:max-w-screen-xl { + max-width: 1280px !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\:max-w-screen-2xl { + max-width: 1536px !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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto !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\:flex-initial { + flex: 0 1 auto !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\:flex-none { + flex: none !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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1 !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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1 !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\:table-auto { + table-layout: auto !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\:table-fixed { + table-layout: fixed !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\:border-collapse { + border-collapse: collapse !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\:border-separate { + border-collapse: separate !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\:transform { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !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\:transform-gpu { + --tw-translate-x: 0 !important; + --tw-translate-y: 0 !important; + --tw-rotate: 0 !important; + --tw-skew-x: 0 !important; + --tw-skew-y: 0 !important; + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !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\:transform-none { + transform: none !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\:origin-center { + transform-origin: center !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\:origin-top { + transform-origin: top !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\:origin-top-right { + transform-origin: top right !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\:origin-right { + transform-origin: right !important; } - .\32xl\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .\32xl\:origin-bottom-right { + transform-origin: bottom right !important; } - .\32xl\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .\32xl\:origin-bottom { + transform-origin: bottom !important; } - .\32xl\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .\32xl\:origin-bottom-left { + transform-origin: bottom left !important; } - .\32xl\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .\32xl\:origin-left { + transform-origin: left !important; } - .\32xl\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .\32xl\:origin-top-left { + transform-origin: top left !important; } - .\32xl\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .\32xl\:translate-x-0 { + --tw-translate-x: 0px !important; } - .\32xl\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .\32xl\:translate-x-1 { + --tw-translate-x: 0.25rem !important; } - .\32xl\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .\32xl\:translate-x-2 { + --tw-translate-x: 0.5rem !important; } - .\32xl\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .\32xl\:translate-x-3 { + --tw-translate-x: 0.75rem !important; } - .\32xl\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .\32xl\:translate-x-4 { + --tw-translate-x: 1rem !important; } - .\32xl\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .\32xl\:translate-x-5 { + --tw-translate-x: 1.25rem !important; } - .\32xl\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .\32xl\:translate-x-6 { + --tw-translate-x: 1.5rem !important; } - .\32xl\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .\32xl\:translate-x-7 { + --tw-translate-x: 1.75rem !important; } - .\32xl\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .\32xl\:translate-x-8 { + --tw-translate-x: 2rem !important; } - .\32xl\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .\32xl\:translate-x-9 { + --tw-translate-x: 2.25rem !important; } - .\32xl\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .\32xl\:translate-x-10 { + --tw-translate-x: 2.5rem !important; } - .\32xl\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .\32xl\:translate-x-11 { + --tw-translate-x: 2.75rem !important; } - .\32xl\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .\32xl\:translate-x-12 { + --tw-translate-x: 3rem !important; } - .\32xl\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .\32xl\:translate-x-14 { + --tw-translate-x: 3.5rem !important; } - .\32xl\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .\32xl\:translate-x-16 { + --tw-translate-x: 4rem !important; } - .\32xl\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .\32xl\:translate-x-20 { + --tw-translate-x: 5rem !important; } - .\32xl\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .\32xl\:translate-x-24 { + --tw-translate-x: 6rem !important; } - .\32xl\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .\32xl\:translate-x-28 { + --tw-translate-x: 7rem !important; } - .\32xl\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .\32xl\:translate-x-32 { + --tw-translate-x: 8rem !important; } - .\32xl\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .\32xl\:translate-x-36 { + --tw-translate-x: 9rem !important; } - .\32xl\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .\32xl\:translate-x-40 { + --tw-translate-x: 10rem !important; } - .\32xl\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .\32xl\:translate-x-44 { + --tw-translate-x: 11rem !important; } - .\32xl\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .\32xl\:translate-x-48 { + --tw-translate-x: 12rem !important; } - .\32xl\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .\32xl\:translate-x-52 { + --tw-translate-x: 13rem !important; } - .\32xl\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .\32xl\:translate-x-56 { + --tw-translate-x: 14rem !important; } - .\32xl\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .\32xl\:translate-x-60 { + --tw-translate-x: 15rem !important; } - .\32xl\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .\32xl\:translate-x-64 { + --tw-translate-x: 16rem !important; } - .\32xl\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .\32xl\:translate-x-72 { + --tw-translate-x: 18rem !important; } - .\32xl\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .\32xl\:translate-x-80 { + --tw-translate-x: 20rem !important; } - .\32xl\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .\32xl\:translate-x-96 { + --tw-translate-x: 24rem !important; } - .\32xl\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .\32xl\:translate-x-px { + --tw-translate-x: 1px !important; } - .\32xl\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .\32xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem !important; } - .\32xl\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .\32xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem !important; } - .\32xl\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .\32xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem !important; } - .\32xl\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .\32xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem !important; } - .\32xl\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .\32xl\:-translate-x-0 { + --tw-translate-x: 0px !important; } - .\32xl\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .\32xl\:-translate-x-1 { + --tw-translate-x: -0.25rem !important; } - .\32xl\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .\32xl\:-translate-x-2 { + --tw-translate-x: -0.5rem !important; } - .\32xl\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .\32xl\:-translate-x-3 { + --tw-translate-x: -0.75rem !important; } - .\32xl\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .\32xl\:-translate-x-4 { + --tw-translate-x: -1rem !important; } - .\32xl\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .\32xl\:-translate-x-5 { + --tw-translate-x: -1.25rem !important; } - .\32xl\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .\32xl\:-translate-x-6 { + --tw-translate-x: -1.5rem !important; } - .\32xl\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .\32xl\:-translate-x-7 { + --tw-translate-x: -1.75rem !important; } - .\32xl\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .\32xl\:-translate-x-8 { + --tw-translate-x: -2rem !important; } - .\32xl\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .\32xl\:-translate-x-9 { + --tw-translate-x: -2.25rem !important; } - .\32xl\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .\32xl\:-translate-x-10 { + --tw-translate-x: -2.5rem !important; } - .\32xl\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .\32xl\:-translate-x-11 { + --tw-translate-x: -2.75rem !important; } - .\32xl\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .\32xl\:-translate-x-12 { + --tw-translate-x: -3rem !important; } - .\32xl\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .\32xl\:-translate-x-14 { + --tw-translate-x: -3.5rem !important; } - .\32xl\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .\32xl\:-translate-x-16 { + --tw-translate-x: -4rem !important; } - .\32xl\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .\32xl\:-translate-x-20 { + --tw-translate-x: -5rem !important; } - .\32xl\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .\32xl\:-translate-x-24 { + --tw-translate-x: -6rem !important; } - .\32xl\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .\32xl\:-translate-x-28 { + --tw-translate-x: -7rem !important; } - .\32xl\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .\32xl\:-translate-x-32 { + --tw-translate-x: -8rem !important; } - .\32xl\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .\32xl\:-translate-x-36 { + --tw-translate-x: -9rem !important; } - .\32xl\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .\32xl\:-translate-x-40 { + --tw-translate-x: -10rem !important; } - .\32xl\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .\32xl\:-translate-x-44 { + --tw-translate-x: -11rem !important; } - .\32xl\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .\32xl\:-translate-x-48 { + --tw-translate-x: -12rem !important; } - .\32xl\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .\32xl\:-translate-x-52 { + --tw-translate-x: -13rem !important; } - .\32xl\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .\32xl\:-translate-x-56 { + --tw-translate-x: -14rem !important; } - .\32xl\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .\32xl\:-translate-x-60 { + --tw-translate-x: -15rem !important; } - .\32xl\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .\32xl\:-translate-x-64 { + --tw-translate-x: -16rem !important; } - .\32xl\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .\32xl\:-translate-x-72 { + --tw-translate-x: -18rem !important; } - .\32xl\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .\32xl\:-translate-x-80 { + --tw-translate-x: -20rem !important; } - .\32xl\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .\32xl\:-translate-x-96 { + --tw-translate-x: -24rem !important; } - .\32xl\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .\32xl\:-translate-x-px { + --tw-translate-x: -1px !important; } - .\32xl\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .\32xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem !important; } - .\32xl\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .\32xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem !important; } - .\32xl\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .\32xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem !important; } - .\32xl\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .\32xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem !important; } - .\32xl\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .\32xl\:translate-x-1\/2 { + --tw-translate-x: 50% !important; } - .\32xl\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .\32xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333% !important; } - .\32xl\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .\32xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667% !important; } - .\32xl\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .\32xl\:translate-x-1\/4 { + --tw-translate-x: 25% !important; } - .\32xl\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .\32xl\:translate-x-2\/4 { + --tw-translate-x: 50% !important; } - .\32xl\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .\32xl\:translate-x-3\/4 { + --tw-translate-x: 75% !important; } - .\32xl\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .\32xl\:translate-x-full { + --tw-translate-x: 100% !important; } - .\32xl\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .\32xl\:-translate-x-1\/2 { + --tw-translate-x: -50% !important; } - .\32xl\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .\32xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333% !important; } - .\32xl\:focus\:to-transparent:focus { - --tw-gradient-to: transparent !important; + .\32xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667% !important; } - .\32xl\:focus\:to-current:focus { - --tw-gradient-to: currentColor !important; + .\32xl\:-translate-x-1\/4 { + --tw-translate-x: -25% !important; } - .\32xl\:focus\:to-black:focus { - --tw-gradient-to: #000 !important; + .\32xl\:-translate-x-2\/4 { + --tw-translate-x: -50% !important; } - .\32xl\:focus\:to-white:focus { - --tw-gradient-to: #fff !important; + .\32xl\:-translate-x-3\/4 { + --tw-translate-x: -75% !important; } - .\32xl\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb !important; + .\32xl\:-translate-x-full { + --tw-translate-x: -100% !important; } - .\32xl\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6 !important; + .\32xl\:translate-y-0 { + --tw-translate-y: 0px !important; } - .\32xl\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb !important; + .\32xl\:translate-y-1 { + --tw-translate-y: 0.25rem !important; } - .\32xl\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db !important; + .\32xl\:translate-y-2 { + --tw-translate-y: 0.5rem !important; } - .\32xl\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af !important; + .\32xl\:translate-y-3 { + --tw-translate-y: 0.75rem !important; } - .\32xl\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280 !important; + .\32xl\:translate-y-4 { + --tw-translate-y: 1rem !important; } - .\32xl\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563 !important; + .\32xl\:translate-y-5 { + --tw-translate-y: 1.25rem !important; } - .\32xl\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151 !important; + .\32xl\:translate-y-6 { + --tw-translate-y: 1.5rem !important; } - .\32xl\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937 !important; + .\32xl\:translate-y-7 { + --tw-translate-y: 1.75rem !important; } - .\32xl\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827 !important; + .\32xl\:translate-y-8 { + --tw-translate-y: 2rem !important; } - .\32xl\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2 !important; + .\32xl\:translate-y-9 { + --tw-translate-y: 2.25rem !important; } - .\32xl\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2 !important; + .\32xl\:translate-y-10 { + --tw-translate-y: 2.5rem !important; } - .\32xl\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca !important; + .\32xl\:translate-y-11 { + --tw-translate-y: 2.75rem !important; } - .\32xl\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5 !important; + .\32xl\:translate-y-12 { + --tw-translate-y: 3rem !important; } - .\32xl\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171 !important; + .\32xl\:translate-y-14 { + --tw-translate-y: 3.5rem !important; } - .\32xl\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444 !important; + .\32xl\:translate-y-16 { + --tw-translate-y: 4rem !important; } - .\32xl\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626 !important; + .\32xl\:translate-y-20 { + --tw-translate-y: 5rem !important; } - .\32xl\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c !important; + .\32xl\:translate-y-24 { + --tw-translate-y: 6rem !important; } - .\32xl\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b !important; + .\32xl\:translate-y-28 { + --tw-translate-y: 7rem !important; } - .\32xl\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d !important; + .\32xl\:translate-y-32 { + --tw-translate-y: 8rem !important; } - .\32xl\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb !important; + .\32xl\:translate-y-36 { + --tw-translate-y: 9rem !important; } - .\32xl\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7 !important; + .\32xl\:translate-y-40 { + --tw-translate-y: 10rem !important; } - .\32xl\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a !important; + .\32xl\:translate-y-44 { + --tw-translate-y: 11rem !important; } - .\32xl\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d !important; + .\32xl\:translate-y-48 { + --tw-translate-y: 12rem !important; } - .\32xl\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24 !important; + .\32xl\:translate-y-52 { + --tw-translate-y: 13rem !important; } - .\32xl\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b !important; + .\32xl\:translate-y-56 { + --tw-translate-y: 14rem !important; } - .\32xl\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706 !important; + .\32xl\:translate-y-60 { + --tw-translate-y: 15rem !important; } - .\32xl\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309 !important; + .\32xl\:translate-y-64 { + --tw-translate-y: 16rem !important; } - .\32xl\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e !important; + .\32xl\:translate-y-72 { + --tw-translate-y: 18rem !important; } - .\32xl\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f !important; + .\32xl\:translate-y-80 { + --tw-translate-y: 20rem !important; } - .\32xl\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5 !important; + .\32xl\:translate-y-96 { + --tw-translate-y: 24rem !important; } - .\32xl\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5 !important; + .\32xl\:translate-y-px { + --tw-translate-y: 1px !important; } - .\32xl\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0 !important; + .\32xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem !important; } - .\32xl\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7 !important; + .\32xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem !important; } - .\32xl\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399 !important; + .\32xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem !important; } - .\32xl\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981 !important; + .\32xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem !important; } - .\32xl\:focus\:to-green-600:focus { - --tw-gradient-to: #059669 !important; + .\32xl\:-translate-y-0 { + --tw-translate-y: 0px !important; } - .\32xl\:focus\:to-green-700:focus { - --tw-gradient-to: #047857 !important; + .\32xl\:-translate-y-1 { + --tw-translate-y: -0.25rem !important; } - .\32xl\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46 !important; + .\32xl\:-translate-y-2 { + --tw-translate-y: -0.5rem !important; } - .\32xl\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b !important; + .\32xl\:-translate-y-3 { + --tw-translate-y: -0.75rem !important; } - .\32xl\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff !important; + .\32xl\:-translate-y-4 { + --tw-translate-y: -1rem !important; } - .\32xl\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe !important; + .\32xl\:-translate-y-5 { + --tw-translate-y: -1.25rem !important; } - .\32xl\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe !important; + .\32xl\:-translate-y-6 { + --tw-translate-y: -1.5rem !important; } - .\32xl\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd !important; + .\32xl\:-translate-y-7 { + --tw-translate-y: -1.75rem !important; } - .\32xl\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa !important; + .\32xl\:-translate-y-8 { + --tw-translate-y: -2rem !important; } - .\32xl\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6 !important; + .\32xl\:-translate-y-9 { + --tw-translate-y: -2.25rem !important; } - .\32xl\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb !important; + .\32xl\:-translate-y-10 { + --tw-translate-y: -2.5rem !important; } - .\32xl\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8 !important; + .\32xl\:-translate-y-11 { + --tw-translate-y: -2.75rem !important; } - .\32xl\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af !important; + .\32xl\:-translate-y-12 { + --tw-translate-y: -3rem !important; } - .\32xl\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a !important; + .\32xl\:-translate-y-14 { + --tw-translate-y: -3.5rem !important; } - .\32xl\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff !important; + .\32xl\:-translate-y-16 { + --tw-translate-y: -4rem !important; } - .\32xl\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff !important; + .\32xl\:-translate-y-20 { + --tw-translate-y: -5rem !important; } - .\32xl\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe !important; + .\32xl\:-translate-y-24 { + --tw-translate-y: -6rem !important; } - .\32xl\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc !important; + .\32xl\:-translate-y-28 { + --tw-translate-y: -7rem !important; } - .\32xl\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8 !important; + .\32xl\:-translate-y-32 { + --tw-translate-y: -8rem !important; } - .\32xl\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1 !important; + .\32xl\:-translate-y-36 { + --tw-translate-y: -9rem !important; } - .\32xl\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5 !important; + .\32xl\:-translate-y-40 { + --tw-translate-y: -10rem !important; } - .\32xl\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca !important; + .\32xl\:-translate-y-44 { + --tw-translate-y: -11rem !important; } - .\32xl\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3 !important; + .\32xl\:-translate-y-48 { + --tw-translate-y: -12rem !important; } - .\32xl\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81 !important; + .\32xl\:-translate-y-52 { + --tw-translate-y: -13rem !important; } - .\32xl\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff !important; + .\32xl\:-translate-y-56 { + --tw-translate-y: -14rem !important; } - .\32xl\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe !important; + .\32xl\:-translate-y-60 { + --tw-translate-y: -15rem !important; } - .\32xl\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe !important; + .\32xl\:-translate-y-64 { + --tw-translate-y: -16rem !important; } - .\32xl\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd !important; + .\32xl\:-translate-y-72 { + --tw-translate-y: -18rem !important; } - .\32xl\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa !important; + .\32xl\:-translate-y-80 { + --tw-translate-y: -20rem !important; } - .\32xl\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6 !important; + .\32xl\:-translate-y-96 { + --tw-translate-y: -24rem !important; } - .\32xl\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed !important; + .\32xl\:-translate-y-px { + --tw-translate-y: -1px !important; } - .\32xl\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9 !important; + .\32xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem !important; } - .\32xl\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6 !important; + .\32xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem !important; } - .\32xl\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95 !important; + .\32xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem !important; } - .\32xl\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8 !important; + .\32xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem !important; } - .\32xl\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3 !important; + .\32xl\:translate-y-1\/2 { + --tw-translate-y: 50% !important; } - .\32xl\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8 !important; + .\32xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333% !important; } - .\32xl\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4 !important; + .\32xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667% !important; } - .\32xl\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6 !important; + .\32xl\:translate-y-1\/4 { + --tw-translate-y: 25% !important; } - .\32xl\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899 !important; + .\32xl\:translate-y-2\/4 { + --tw-translate-y: 50% !important; } - .\32xl\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777 !important; + .\32xl\:translate-y-3\/4 { + --tw-translate-y: 75% !important; } - .\32xl\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d !important; + .\32xl\:translate-y-full { + --tw-translate-y: 100% !important; } - .\32xl\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d !important; + .\32xl\:-translate-y-1\/2 { + --tw-translate-y: -50% !important; } - .\32xl\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843 !important; + .\32xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333% !important; } - .\32xl\:bg-opacity-0 { - --tw-bg-opacity: 0 !important; + .\32xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667% !important; } - .\32xl\:bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; + .\32xl\:-translate-y-1\/4 { + --tw-translate-y: -25% !important; } - .\32xl\:bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; + .\32xl\:-translate-y-2\/4 { + --tw-translate-y: -50% !important; } - .\32xl\:bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; + .\32xl\:-translate-y-3\/4 { + --tw-translate-y: -75% !important; } - .\32xl\:bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; + .\32xl\:-translate-y-full { + --tw-translate-y: -100% !important; } - .\32xl\:bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; + .\32xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px !important; } - .\32xl\:bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; + .\32xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem !important; } - .\32xl\:bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; + .\32xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem !important; } - .\32xl\:bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; + .\32xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem !important; } - .\32xl\:bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; + .\32xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem !important; } - .\32xl\:bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; + .\32xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem !important; } - .\32xl\:bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; + .\32xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem !important; } - .\32xl\:bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; + .\32xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem !important; } - .\32xl\:bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; + .\32xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem !important; } - .\32xl\:bg-opacity-100 { - --tw-bg-opacity: 1 !important; + .\32xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0 !important; + .\32xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05 !important; + .\32xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1 !important; + .\32xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2 !important; + .\32xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25 !important; + .\32xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3 !important; + .\32xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4 !important; + .\32xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5 !important; + .\32xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6 !important; + .\32xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7 !important; + .\32xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75 !important; + .\32xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8 !important; + .\32xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9 !important; + .\32xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95 !important; + .\32xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem !important; } - .group:hover .\32xl\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1 !important; + .\32xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem !important; } - .\32xl\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0 !important; + .\32xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem !important; } - .\32xl\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05 !important; + .\32xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem !important; } - .\32xl\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1 !important; + .\32xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem !important; } - .\32xl\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2 !important; + .\32xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem !important; } - .\32xl\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25 !important; + .\32xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem !important; } - .\32xl\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3 !important; + .\32xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px !important; } - .\32xl\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4 !important; + .\32xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem !important; } - .\32xl\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5 !important; + .\32xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem !important; } - .\32xl\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6 !important; + .\32xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem !important; } - .\32xl\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7 !important; + .\32xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem !important; } - .\32xl\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75 !important; + .\32xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px !important; } - .\32xl\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8 !important; + .\32xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem !important; } - .\32xl\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9 !important; + .\32xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem !important; } - .\32xl\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95 !important; + .\32xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem !important; } - .\32xl\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1 !important; + .\32xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem !important; } - .\32xl\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0 !important; + .\32xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem !important; } - .\32xl\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05 !important; + .\32xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem !important; } - .\32xl\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1 !important; + .\32xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem !important; } - .\32xl\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2 !important; + .\32xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem !important; } - .\32xl\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25 !important; + .\32xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem !important; } - .\32xl\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3 !important; + .\32xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem !important; } - .\32xl\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4 !important; + .\32xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem !important; } - .\32xl\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5 !important; + .\32xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem !important; } - .\32xl\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6 !important; + .\32xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem !important; } - .\32xl\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7 !important; + .\32xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem !important; } - .\32xl\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75 !important; + .\32xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem !important; } - .\32xl\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8 !important; + .\32xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem !important; } - .\32xl\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9 !important; + .\32xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem !important; } - .\32xl\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95 !important; + .\32xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem !important; } - .\32xl\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1 !important; + .\32xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem !important; } - .\32xl\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0 !important; + .\32xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem !important; } - .\32xl\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05 !important; + .\32xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem !important; } - .\32xl\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1 !important; + .\32xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem !important; } - .\32xl\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2 !important; + .\32xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem !important; } - .\32xl\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25 !important; + .\32xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem !important; } - .\32xl\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3 !important; + .\32xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem !important; } - .\32xl\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4 !important; + .\32xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem !important; } - .\32xl\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5 !important; + .\32xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem !important; } - .\32xl\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6 !important; + .\32xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem !important; } - .\32xl\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7 !important; + .\32xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem !important; } - .\32xl\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75 !important; + .\32xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px !important; } - .\32xl\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8 !important; + .\32xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem !important; } - .\32xl\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9 !important; + .\32xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem !important; } - .\32xl\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95 !important; + .\32xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem !important; } - .\32xl\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1 !important; + .\32xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem !important; } - .\32xl\:bg-bottom { - background-position: bottom !important; + .\32xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50% !important; } - .\32xl\:bg-center { - background-position: center !important; + .\32xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333% !important; } - .\32xl\:bg-left { - background-position: left !important; + .\32xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667% !important; } - .\32xl\:bg-left-bottom { - background-position: left bottom !important; + .\32xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25% !important; } - .\32xl\:bg-left-top { - background-position: left top !important; + .\32xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50% !important; } - .\32xl\:bg-right { - background-position: right !important; + .\32xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75% !important; } - .\32xl\:bg-right-bottom { - background-position: right bottom !important; + .\32xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100% !important; } - .\32xl\:bg-right-top { - background-position: right top !important; + .\32xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50% !important; } - .\32xl\:bg-top { - background-position: top !important; + .\32xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333% !important; } - .\32xl\:bg-repeat { - background-repeat: repeat !important; + .\32xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667% !important; } - .\32xl\:bg-no-repeat { - background-repeat: no-repeat !important; + .\32xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25% !important; } - .\32xl\:bg-repeat-x { - background-repeat: repeat-x !important; + .\32xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50% !important; } - .\32xl\:bg-repeat-y { - background-repeat: repeat-y !important; + .\32xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75% !important; } - .\32xl\:bg-repeat-round { - background-repeat: round !important; + .\32xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100% !important; } - .\32xl\:bg-repeat-space { - background-repeat: space !important; + .\32xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px !important; } - .\32xl\:bg-auto { - background-size: auto !important; + .\32xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem !important; } - .\32xl\:bg-cover { - background-size: cover !important; + .\32xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem !important; } - .\32xl\:bg-contain { - background-size: contain !important; + .\32xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem !important; } - .\32xl\:bg-origin-border { - background-origin: border-box !important; + .\32xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem !important; } - .\32xl\:bg-origin-padding { - background-origin: padding-box !important; + .\32xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem !important; } - .\32xl\:bg-origin-content { - background-origin: content-box !important; + .\32xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem !important; } - .\32xl\:border-collapse { - border-collapse: collapse !important; + .\32xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem !important; } - .\32xl\:border-separate { - border-collapse: separate !important; + .\32xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem !important; } - .\32xl\:border-transparent { - border-color: transparent !important; + .\32xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem !important; } - .\32xl\:border-current { - border-color: currentColor !important; + .\32xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem !important; } - .\32xl\:border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem !important; } - .\32xl\:border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem !important; } - .\32xl\:border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem !important; } - .\32xl\:border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem !important; } - .\32xl\:border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem !important; } - .\32xl\:border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem !important; } - .\32xl\:border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem !important; } - .\32xl\:border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem !important; } - .\32xl\:border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem !important; } - .\32xl\:border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem !important; } - .\32xl\:border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem !important; } - .\32xl\:border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem !important; } - .\32xl\:border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem !important; } - .\32xl\:border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem !important; } - .\32xl\:border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem !important; } - .\32xl\:border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem !important; } - .\32xl\:border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem !important; } - .\32xl\:border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem !important; } - .\32xl\:border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem !important; } - .\32xl\:border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px !important; } - .\32xl\:border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem !important; } - .\32xl\:border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem !important; } - .\32xl\:border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem !important; } - .\32xl\:border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem !important; } - .\32xl\:border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px !important; } - .\32xl\:border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem !important; } - .\32xl\:border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem !important; } - .\32xl\:border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem !important; } - .\32xl\:border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem !important; } - .\32xl\:border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem !important; } - .\32xl\:border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem !important; } - .\32xl\:border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem !important; } - .\32xl\:border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem !important; } - .\32xl\:border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem !important; } - .\32xl\:border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem !important; } - .\32xl\:border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem !important; } - .\32xl\:border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem !important; } - .\32xl\:border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem !important; } - .\32xl\:border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem !important; } - .\32xl\:border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem !important; } - .\32xl\:border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem !important; } - .\32xl\:border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem !important; } - .\32xl\:border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem !important; } - .\32xl\:border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem !important; } - .\32xl\:border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem !important; } - .\32xl\:border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem !important; } - .\32xl\:border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem !important; } - .\32xl\:border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem !important; } - .\32xl\:border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem !important; } - .\32xl\:border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem !important; } - .\32xl\:border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem !important; } - .\32xl\:border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem !important; } - .\32xl\:border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem !important; } - .\32xl\:border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem !important; } - .\32xl\:border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px !important; } - .\32xl\:border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem !important; } - .\32xl\:border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem !important; } - .\32xl\:border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem !important; } - .\32xl\:border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem !important; } - .\32xl\:border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50% !important; } - .\32xl\:border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333% !important; } - .\32xl\:border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667% !important; } - .\32xl\:border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25% !important; } - .\32xl\:border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50% !important; } - .\32xl\:border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75% !important; } - .\32xl\:border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .\32xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100% !important; } - .\32xl\:border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50% !important; } - .\32xl\:border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333% !important; } - .\32xl\:border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667% !important; } - .\32xl\:border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25% !important; } - .\32xl\:border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50% !important; } - .\32xl\:border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75% !important; } - .\32xl\:border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100% !important; } - .\32xl\:border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px !important; } - .\32xl\:border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem !important; } - .\32xl\:border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem !important; } - .\32xl\:border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem !important; } - .\32xl\:border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem !important; } - .\32xl\:border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem !important; } - .\32xl\:border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem !important; } - .\32xl\:border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem !important; } - .\32xl\:border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem !important; } - .group:hover .\32xl\:group-hover\:border-transparent { - border-color: transparent !important; + .\32xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem !important; } - .group:hover .\32xl\:group-hover\:border-current { - border-color: currentColor !important; + .\32xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem !important; } - .group:hover .\32xl\:group-hover\:border-black { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem !important; } - .group:hover .\32xl\:group-hover\:border-white { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem !important; } - .group:hover .\32xl\:group-hover\:border-gray-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem !important; } - .group:hover .\32xl\:group-hover\:border-gray-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem !important; } - .group:hover .\32xl\:group-hover\:border-gray-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem !important; } - .group:hover .\32xl\:group-hover\:border-gray-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem !important; } - .group:hover .\32xl\:group-hover\:border-gray-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem !important; } - .group:hover .\32xl\:group-hover\:border-gray-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem !important; } - .group:hover .\32xl\:group-hover\:border-gray-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem !important; } - .group:hover .\32xl\:group-hover\:border-gray-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem !important; } - .group:hover .\32xl\:group-hover\:border-gray-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem !important; } - .group:hover .\32xl\:group-hover\:border-gray-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem !important; } - .group:hover .\32xl\:group-hover\:border-red-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem !important; } - .group:hover .\32xl\:group-hover\:border-red-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem !important; } - .group:hover .\32xl\:group-hover\:border-red-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem !important; } - .group:hover .\32xl\:group-hover\:border-red-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem !important; } - .group:hover .\32xl\:group-hover\:border-red-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem !important; } - .group:hover .\32xl\:group-hover\:border-red-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem !important; } - .group:hover .\32xl\:group-hover\:border-red-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem !important; } - .group:hover .\32xl\:group-hover\:border-red-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px !important; } - .group:hover .\32xl\:group-hover\:border-red-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem !important; } - .group:hover .\32xl\:group-hover\:border-red-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem !important; } - .group:hover .\32xl\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem !important; } - .group:hover .\32xl\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem !important; } - .group:hover .\32xl\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px !important; } - .group:hover .\32xl\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem !important; } - .group:hover .\32xl\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem !important; } - .group:hover .\32xl\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem !important; } - .group:hover .\32xl\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem !important; } - .group:hover .\32xl\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem !important; } - .group:hover .\32xl\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem !important; } - .group:hover .\32xl\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem !important; } - .group:hover .\32xl\:group-hover\:border-green-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem !important; } - .group:hover .\32xl\:group-hover\:border-green-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem !important; } - - .group:hover .\32xl\:group-hover\:border-green-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + + .\32xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem !important; } - .group:hover .\32xl\:group-hover\:border-green-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem !important; } - .group:hover .\32xl\:group-hover\:border-green-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem !important; } - .group:hover .\32xl\:group-hover\:border-green-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem !important; } - .group:hover .\32xl\:group-hover\:border-green-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem !important; } - .group:hover .\32xl\:group-hover\:border-green-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem !important; } - .group:hover .\32xl\:group-hover\:border-green-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem !important; } - .group:hover .\32xl\:group-hover\:border-green-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem !important; } - .group:hover .\32xl\:group-hover\:border-blue-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem !important; } - .group:hover .\32xl\:group-hover\:border-blue-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem !important; } - .group:hover .\32xl\:group-hover\:border-blue-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem !important; } - .group:hover .\32xl\:group-hover\:border-blue-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem !important; } - .group:hover .\32xl\:group-hover\:border-blue-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem !important; } - .group:hover .\32xl\:group-hover\:border-blue-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem !important; } - .group:hover .\32xl\:group-hover\:border-blue-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem !important; } - .group:hover .\32xl\:group-hover\:border-blue-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem !important; } - .group:hover .\32xl\:group-hover\:border-blue-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem !important; } - .group:hover .\32xl\:group-hover\:border-blue-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem !important; } - .group:hover .\32xl\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem !important; } - .group:hover .\32xl\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem !important; } - .group:hover .\32xl\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px !important; } - .group:hover .\32xl\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem !important; } - .group:hover .\32xl\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem !important; } - .group:hover .\32xl\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem !important; } - .group:hover .\32xl\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem !important; } - .group:hover .\32xl\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50% !important; } - .group:hover .\32xl\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333% !important; } - .group:hover .\32xl\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667% !important; } - .group:hover .\32xl\:group-hover\:border-purple-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25% !important; } - .group:hover .\32xl\:group-hover\:border-purple-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50% !important; } - .group:hover .\32xl\:group-hover\:border-purple-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75% !important; } - .group:hover .\32xl\:group-hover\:border-purple-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100% !important; } - .group:hover .\32xl\:group-hover\:border-purple-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50% !important; } - .group:hover .\32xl\:group-hover\:border-purple-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333% !important; } - .group:hover .\32xl\:group-hover\:border-purple-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667% !important; } - .group:hover .\32xl\:group-hover\:border-purple-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25% !important; } - .group:hover .\32xl\:group-hover\:border-purple-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50% !important; } - .group:hover .\32xl\:group-hover\:border-purple-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75% !important; } - .group:hover .\32xl\:group-hover\:border-pink-50 { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100% !important; } - .group:hover .\32xl\:group-hover\:border-pink-100 { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px !important; } - .group:hover .\32xl\:group-hover\:border-pink-200 { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem !important; } - .group:hover .\32xl\:group-hover\:border-pink-300 { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem !important; } - .group:hover .\32xl\:group-hover\:border-pink-400 { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem !important; } - .group:hover .\32xl\:group-hover\:border-pink-500 { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem !important; } - .group:hover .\32xl\:group-hover\:border-pink-600 { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem !important; } - .group:hover .\32xl\:group-hover\:border-pink-700 { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem !important; } - .group:hover .\32xl\:group-hover\:border-pink-800 { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem !important; } - .group:hover .\32xl\:group-hover\:border-pink-900 { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem !important; } - .\32xl\:focus-within\:border-transparent:focus-within { - border-color: transparent !important; + .\32xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem !important; } - .\32xl\:focus-within\:border-current:focus-within { - border-color: currentColor !important; + .\32xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem !important; } - .\32xl\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem !important; } - .\32xl\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem !important; } - .\32xl\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem !important; } - .\32xl\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem !important; } - .\32xl\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem !important; } - .\32xl\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem !important; } - .\32xl\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem !important; } - .\32xl\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem !important; } - .\32xl\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem !important; } - .\32xl\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem !important; } - .\32xl\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem !important; } - .\32xl\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem !important; } - .\32xl\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem !important; } - .\32xl\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem !important; } - .\32xl\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem !important; } - .\32xl\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem !important; } - .\32xl\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem !important; } - .\32xl\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem !important; } - .\32xl\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem !important; } - .\32xl\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px !important; } - .\32xl\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem !important; } - .\32xl\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem !important; } - .\32xl\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem !important; } - .\32xl\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem !important; } - .\32xl\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px !important; } - .\32xl\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem !important; } - .\32xl\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem !important; } - .\32xl\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem !important; } - .\32xl\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem !important; } - .\32xl\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem !important; } - .\32xl\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem !important; } - .\32xl\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem !important; } - .\32xl\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem !important; } - .\32xl\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem !important; } - .\32xl\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem !important; } - .\32xl\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem !important; } - .\32xl\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem !important; } - .\32xl\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem !important; } - .\32xl\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem !important; } - .\32xl\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem !important; } - .\32xl\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem !important; } - .\32xl\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem !important; } - .\32xl\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem !important; } - .\32xl\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem !important; } - .\32xl\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem !important; } - .\32xl\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem !important; } - .\32xl\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem !important; } - .\32xl\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem !important; } - .\32xl\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem !important; } - .\32xl\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem !important; } - .\32xl\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem !important; } - .\32xl\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem !important; } - .\32xl\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem !important; } - .\32xl\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem !important; } - .\32xl\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px !important; } - .\32xl\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem !important; } - .\32xl\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem !important; } - .\32xl\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem !important; } - .\32xl\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem !important; } - .\32xl\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50% !important; } - .\32xl\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333% !important; } - .\32xl\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667% !important; } - .\32xl\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25% !important; } - .\32xl\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50% !important; } - .\32xl\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75% !important; } - .\32xl\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .\32xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100% !important; } - .\32xl\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50% !important; } - .\32xl\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333% !important; } - .\32xl\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667% !important; } - .\32xl\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25% !important; } - .\32xl\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50% !important; } - .\32xl\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75% !important; } - .\32xl\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100% !important; } - .\32xl\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .\32xl\:rotate-0 { + --tw-rotate: 0deg !important; } - .\32xl\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .\32xl\:rotate-1 { + --tw-rotate: 1deg !important; } - .\32xl\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .\32xl\:rotate-2 { + --tw-rotate: 2deg !important; } - .\32xl\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .\32xl\:rotate-3 { + --tw-rotate: 3deg !important; } - .\32xl\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .\32xl\:rotate-6 { + --tw-rotate: 6deg !important; } - .\32xl\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .\32xl\:rotate-12 { + --tw-rotate: 12deg !important; } - .\32xl\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .\32xl\:rotate-45 { + --tw-rotate: 45deg !important; } - .\32xl\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .\32xl\:rotate-90 { + --tw-rotate: 90deg !important; } - .\32xl\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .\32xl\:rotate-180 { + --tw-rotate: 180deg !important; } - .\32xl\:hover\:border-transparent:hover { - border-color: transparent !important; + .\32xl\:-rotate-180 { + --tw-rotate: -180deg !important; } - .\32xl\:hover\:border-current:hover { - border-color: currentColor !important; + .\32xl\:-rotate-90 { + --tw-rotate: -90deg !important; } - .\32xl\:hover\:border-black:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .\32xl\:-rotate-45 { + --tw-rotate: -45deg !important; } - .\32xl\:hover\:border-white:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .\32xl\:-rotate-12 { + --tw-rotate: -12deg !important; } - .\32xl\:hover\:border-gray-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .\32xl\:-rotate-6 { + --tw-rotate: -6deg !important; } - .\32xl\:hover\:border-gray-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .\32xl\:-rotate-3 { + --tw-rotate: -3deg !important; } - .\32xl\:hover\:border-gray-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .\32xl\:-rotate-2 { + --tw-rotate: -2deg !important; } - .\32xl\:hover\:border-gray-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .\32xl\:-rotate-1 { + --tw-rotate: -1deg !important; } - .\32xl\:hover\:border-gray-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .\32xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg !important; } - .\32xl\:hover\:border-gray-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .\32xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg !important; } - .\32xl\:hover\:border-gray-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .\32xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg !important; } - .\32xl\:hover\:border-gray-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .\32xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg !important; } - .\32xl\:hover\:border-gray-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .\32xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg !important; } - .\32xl\:hover\:border-gray-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .\32xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg !important; } - .\32xl\:hover\:border-red-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .\32xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg !important; } - .\32xl\:hover\:border-red-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .\32xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg !important; } - .\32xl\:hover\:border-red-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .\32xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg !important; } - .\32xl\:hover\:border-red-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg !important; } - .\32xl\:hover\:border-red-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg !important; } - .\32xl\:hover\:border-red-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg !important; } - .\32xl\:hover\:border-red-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg !important; } - .\32xl\:hover\:border-red-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg !important; } - .\32xl\:hover\:border-red-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg !important; } - .\32xl\:hover\:border-red-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg !important; } - .\32xl\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg !important; } - .\32xl\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .\32xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg !important; } - .\32xl\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .\32xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg !important; } - .\32xl\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .\32xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg !important; } - .\32xl\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .\32xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg !important; } - .\32xl\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .\32xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg !important; } - .\32xl\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .\32xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg !important; } - .\32xl\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .\32xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg !important; } - .\32xl\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .\32xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg !important; } - .\32xl\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .\32xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg !important; } - .\32xl\:hover\:border-green-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg !important; } - .\32xl\:hover\:border-green-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg !important; } - .\32xl\:hover\:border-green-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg !important; } - .\32xl\:hover\:border-green-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg !important; } - .\32xl\:hover\:border-green-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg !important; } - .\32xl\:hover\:border-green-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg !important; } - .\32xl\:hover\:border-green-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg !important; } - .\32xl\:hover\:border-green-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg !important; } - .\32xl\:hover\:border-green-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .\32xl\:skew-x-0 { + --tw-skew-x: 0deg !important; } - .\32xl\:hover\:border-green-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .\32xl\:skew-x-1 { + --tw-skew-x: 1deg !important; } - .\32xl\:hover\:border-blue-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .\32xl\:skew-x-2 { + --tw-skew-x: 2deg !important; } - .\32xl\:hover\:border-blue-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .\32xl\:skew-x-3 { + --tw-skew-x: 3deg !important; } - .\32xl\:hover\:border-blue-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .\32xl\:skew-x-6 { + --tw-skew-x: 6deg !important; } - .\32xl\:hover\:border-blue-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .\32xl\:skew-x-12 { + --tw-skew-x: 12deg !important; } - .\32xl\:hover\:border-blue-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .\32xl\:-skew-x-12 { + --tw-skew-x: -12deg !important; } - .\32xl\:hover\:border-blue-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .\32xl\:-skew-x-6 { + --tw-skew-x: -6deg !important; } - .\32xl\:hover\:border-blue-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .\32xl\:-skew-x-3 { + --tw-skew-x: -3deg !important; } - .\32xl\:hover\:border-blue-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .\32xl\:-skew-x-2 { + --tw-skew-x: -2deg !important; } - .\32xl\:hover\:border-blue-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .\32xl\:-skew-x-1 { + --tw-skew-x: -1deg !important; } - .\32xl\:hover\:border-blue-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .\32xl\:skew-y-0 { + --tw-skew-y: 0deg !important; } - .\32xl\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .\32xl\:skew-y-1 { + --tw-skew-y: 1deg !important; } - .\32xl\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .\32xl\:skew-y-2 { + --tw-skew-y: 2deg !important; } - .\32xl\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .\32xl\:skew-y-3 { + --tw-skew-y: 3deg !important; } - .\32xl\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .\32xl\:skew-y-6 { + --tw-skew-y: 6deg !important; } - .\32xl\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .\32xl\:skew-y-12 { + --tw-skew-y: 12deg !important; } - .\32xl\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .\32xl\:-skew-y-12 { + --tw-skew-y: -12deg !important; } - .\32xl\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .\32xl\:-skew-y-6 { + --tw-skew-y: -6deg !important; } - .\32xl\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .\32xl\:-skew-y-3 { + --tw-skew-y: -3deg !important; } - .\32xl\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .\32xl\:-skew-y-2 { + --tw-skew-y: -2deg !important; } - .\32xl\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .\32xl\:-skew-y-1 { + --tw-skew-y: -1deg !important; } - .\32xl\:hover\:border-purple-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg !important; } - .\32xl\:hover\:border-purple-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg !important; } - .\32xl\:hover\:border-purple-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg !important; } - .\32xl\:hover\:border-purple-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg !important; } - .\32xl\:hover\:border-purple-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg !important; } - .\32xl\:hover\:border-purple-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg !important; } - .\32xl\:hover\:border-purple-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg !important; } - .\32xl\:hover\:border-purple-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg !important; } - .\32xl\:hover\:border-purple-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg !important; } - .\32xl\:hover\:border-purple-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg !important; } - .\32xl\:hover\:border-pink-50:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg !important; } - .\32xl\:hover\:border-pink-100:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg !important; } - .\32xl\:hover\:border-pink-200:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg !important; } - .\32xl\:hover\:border-pink-300:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg !important; } - .\32xl\:hover\:border-pink-400:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg !important; } - .\32xl\:hover\:border-pink-500:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg !important; } - .\32xl\:hover\:border-pink-600:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .\32xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg !important; } - .\32xl\:hover\:border-pink-700:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg !important; } - .\32xl\:hover\:border-pink-800:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg !important; } - .\32xl\:hover\:border-pink-900:hover { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .\32xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg !important; } - .\32xl\:focus\:border-transparent:focus { - border-color: transparent !important; + .\32xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg !important; } - .\32xl\:focus\:border-current:focus { - border-color: currentColor !important; + .\32xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg !important; } - .\32xl\:focus\:border-black:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg !important; } - .\32xl\:focus\:border-white:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg !important; } - .\32xl\:focus\:border-gray-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg !important; } - .\32xl\:focus\:border-gray-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg !important; } - .\32xl\:focus\:border-gray-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg !important; } - .\32xl\:focus\:border-gray-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg !important; } - .\32xl\:focus\:border-gray-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg !important; } - .\32xl\:focus\:border-gray-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg !important; } - .\32xl\:focus\:border-gray-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg !important; } - .\32xl\:focus\:border-gray-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg !important; } - .\32xl\:focus\:border-gray-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg !important; } - .\32xl\:focus\:border-gray-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg !important; } - .\32xl\:focus\:border-red-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg !important; } - .\32xl\:focus\:border-red-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg !important; } - .\32xl\:focus\:border-red-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg !important; } - .\32xl\:focus\:border-red-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg !important; } - .\32xl\:focus\:border-red-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; + .\32xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg !important; } - .\32xl\:focus\:border-red-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg !important; } - .\32xl\:focus\:border-red-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg !important; } - .\32xl\:focus\:border-red-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg !important; } - .\32xl\:focus\:border-red-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg !important; } - .\32xl\:focus\:border-red-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; + .\32xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg !important; } - .\32xl\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; + .\32xl\:scale-0 { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .\32xl\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; + .\32xl\:scale-50 { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .\32xl\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; + .\32xl\:scale-75 { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .\32xl\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; + .\32xl\:scale-90 { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .\32xl\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; + .\32xl\:scale-95 { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .\32xl\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; + .\32xl\:scale-100 { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .\32xl\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; + .\32xl\:scale-105 { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .\32xl\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; + .\32xl\:scale-110 { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .\32xl\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; + .\32xl\:scale-125 { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .\32xl\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; + .\32xl\:scale-150 { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .\32xl\:focus\:border-green-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; + .\32xl\:scale-x-0 { + --tw-scale-x: 0 !important; } - .\32xl\:focus\:border-green-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; + .\32xl\:scale-x-50 { + --tw-scale-x: .5 !important; } - .\32xl\:focus\:border-green-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; + .\32xl\:scale-x-75 { + --tw-scale-x: .75 !important; } - .\32xl\:focus\:border-green-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; + .\32xl\:scale-x-90 { + --tw-scale-x: .9 !important; } - .\32xl\:focus\:border-green-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; + .\32xl\:scale-x-95 { + --tw-scale-x: .95 !important; } - .\32xl\:focus\:border-green-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; + .\32xl\:scale-x-100 { + --tw-scale-x: 1 !important; } - .\32xl\:focus\:border-green-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; + .\32xl\:scale-x-105 { + --tw-scale-x: 1.05 !important; } - .\32xl\:focus\:border-green-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; + .\32xl\:scale-x-110 { + --tw-scale-x: 1.1 !important; } - .\32xl\:focus\:border-green-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; + .\32xl\:scale-x-125 { + --tw-scale-x: 1.25 !important; } - .\32xl\:focus\:border-green-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; + .\32xl\:scale-x-150 { + --tw-scale-x: 1.5 !important; } - .\32xl\:focus\:border-blue-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; + .\32xl\:scale-y-0 { + --tw-scale-y: 0 !important; } - .\32xl\:focus\:border-blue-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; + .\32xl\:scale-y-50 { + --tw-scale-y: .5 !important; } - .\32xl\:focus\:border-blue-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; + .\32xl\:scale-y-75 { + --tw-scale-y: .75 !important; } - .\32xl\:focus\:border-blue-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; + .\32xl\:scale-y-90 { + --tw-scale-y: .9 !important; } - .\32xl\:focus\:border-blue-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; + .\32xl\:scale-y-95 { + --tw-scale-y: .95 !important; } - .\32xl\:focus\:border-blue-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; + .\32xl\:scale-y-100 { + --tw-scale-y: 1 !important; } - .\32xl\:focus\:border-blue-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; + .\32xl\:scale-y-105 { + --tw-scale-y: 1.05 !important; } - .\32xl\:focus\:border-blue-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; + .\32xl\:scale-y-110 { + --tw-scale-y: 1.1 !important; } - .\32xl\:focus\:border-blue-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; + .\32xl\:scale-y-125 { + --tw-scale-y: 1.25 !important; } - .\32xl\:focus\:border-blue-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; + .\32xl\:scale-y-150 { + --tw-scale-y: 1.5 !important; } - .\32xl\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-0:hover { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .\32xl\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-50:hover { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .\32xl\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-75:hover { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .\32xl\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-90:hover { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .\32xl\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-95:hover { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .\32xl\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-100:hover { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .\32xl\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .\32xl\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .\32xl\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .\32xl\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .\32xl\:focus\:border-purple-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0 !important; } - .\32xl\:focus\:border-purple-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5 !important; } - .\32xl\:focus\:border-purple-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75 !important; } - .\32xl\:focus\:border-purple-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9 !important; } - .\32xl\:focus\:border-purple-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95 !important; } - .\32xl\:focus\:border-purple-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1 !important; } - .\32xl\:focus\:border-purple-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05 !important; } - .\32xl\:focus\:border-purple-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1 !important; } - .\32xl\:focus\:border-purple-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25 !important; } - .\32xl\:focus\:border-purple-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5 !important; } - .\32xl\:focus\:border-pink-50:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0 !important; } - .\32xl\:focus\:border-pink-100:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5 !important; } - .\32xl\:focus\:border-pink-200:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75 !important; } - .\32xl\:focus\:border-pink-300:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9 !important; } - .\32xl\:focus\:border-pink-400:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95 !important; } - .\32xl\:focus\:border-pink-500:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1 !important; } - .\32xl\:focus\:border-pink-600:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05 !important; } - .\32xl\:focus\:border-pink-700:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1 !important; } - .\32xl\:focus\:border-pink-800:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25 !important; } - .\32xl\:focus\:border-pink-900:focus { - --tw-border-opacity: 1 !important; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; + .\32xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5 !important; } - .\32xl\:border-opacity-0 { - --tw-border-opacity: 0 !important; + .\32xl\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .\32xl\:border-opacity-5 { - --tw-border-opacity: 0.05 !important; + .\32xl\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .\32xl\:border-opacity-10 { - --tw-border-opacity: 0.1 !important; + .\32xl\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .\32xl\:border-opacity-20 { - --tw-border-opacity: 0.2 !important; + .\32xl\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .\32xl\:border-opacity-25 { - --tw-border-opacity: 0.25 !important; + .\32xl\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .\32xl\:border-opacity-30 { - --tw-border-opacity: 0.3 !important; + .\32xl\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .\32xl\:border-opacity-40 { - --tw-border-opacity: 0.4 !important; + .\32xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .\32xl\:border-opacity-50 { - --tw-border-opacity: 0.5 !important; + .\32xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .\32xl\:border-opacity-60 { - --tw-border-opacity: 0.6 !important; + .\32xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .\32xl\:border-opacity-70 { - --tw-border-opacity: 0.7 !important; + .\32xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .\32xl\:border-opacity-75 { - --tw-border-opacity: 0.75 !important; + .\32xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0 !important; } - .\32xl\:border-opacity-80 { - --tw-border-opacity: 0.8 !important; + .\32xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5 !important; } - .\32xl\:border-opacity-90 { - --tw-border-opacity: 0.9 !important; + .\32xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75 !important; } - .\32xl\:border-opacity-95 { - --tw-border-opacity: 0.95 !important; + .\32xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9 !important; } - .\32xl\:border-opacity-100 { - --tw-border-opacity: 1 !important; + .\32xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0 !important; + .\32xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05 !important; + .\32xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1 !important; + .\32xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2 !important; + .\32xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25 !important; + .\32xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3 !important; + .\32xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4 !important; + .\32xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5 !important; + .\32xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6 !important; + .\32xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7 !important; + .\32xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75 !important; + .\32xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8 !important; + .\32xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9 !important; + .\32xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95 !important; + .\32xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25 !important; } - .group:hover .\32xl\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1 !important; + .\32xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5 !important; } - .\32xl\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0 !important; + .\32xl\:animate-none { + animation: none !important; } - .\32xl\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05 !important; + .\32xl\:animate-spin { + animation: spin 1s linear infinite !important; } - .\32xl\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1 !important; + .\32xl\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; } - .\32xl\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2 !important; + .\32xl\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; } - .\32xl\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25 !important; + .\32xl\:animate-bounce { + animation: bounce 1s infinite !important; } - .\32xl\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3 !important; + .\32xl\:cursor-auto { + cursor: auto !important; } - .\32xl\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4 !important; + .\32xl\:cursor-default { + cursor: default !important; } - .\32xl\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5 !important; + .\32xl\:cursor-pointer { + cursor: pointer !important; } - .\32xl\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6 !important; + .\32xl\:cursor-wait { + cursor: wait !important; } - .\32xl\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7 !important; + .\32xl\:cursor-text { + cursor: text !important; } - .\32xl\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75 !important; + .\32xl\:cursor-move { + cursor: move !important; } - .\32xl\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8 !important; + .\32xl\:cursor-help { + cursor: help !important; } - .\32xl\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9 !important; + .\32xl\:cursor-not-allowed { + cursor: not-allowed !important; } - .\32xl\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95 !important; + .\32xl\:select-none { + user-select: none !important; } - .\32xl\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1 !important; + .\32xl\:select-text { + user-select: text !important; } - .\32xl\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0 !important; + .\32xl\:select-all { + user-select: all !important; } - .\32xl\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05 !important; + .\32xl\:select-auto { + user-select: auto !important; } - .\32xl\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1 !important; + .\32xl\:resize-none { + resize: none !important; } - .\32xl\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2 !important; + .\32xl\:resize-y { + resize: vertical !important; } - .\32xl\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25 !important; + .\32xl\:resize-x { + resize: horizontal !important; } - .\32xl\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3 !important; + .\32xl\:resize { + resize: both !important; } - .\32xl\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4 !important; + .\32xl\:list-inside { + list-style-position: inside !important; } - .\32xl\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5 !important; + .\32xl\:list-outside { + list-style-position: outside !important; } - .\32xl\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6 !important; + .\32xl\:list-none { + list-style-type: none !important; } - .\32xl\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7 !important; + .\32xl\:list-disc { + list-style-type: disc !important; } - .\32xl\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75 !important; + .\32xl\:list-decimal { + list-style-type: decimal !important; } - .\32xl\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8 !important; + .\32xl\:appearance-none { + appearance: none !important; } - .\32xl\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9 !important; + .\32xl\:auto-cols-auto { + grid-auto-columns: auto !important; } - .\32xl\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95 !important; + .\32xl\:auto-cols-min { + grid-auto-columns: min-content !important; } - .\32xl\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1 !important; + .\32xl\:auto-cols-max { + grid-auto-columns: max-content !important; } - .\32xl\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0 !important; + .\32xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr) !important; } - .\32xl\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05 !important; + .\32xl\:grid-flow-row { + grid-auto-flow: row !important; } - .\32xl\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1 !important; + .\32xl\:grid-flow-col { + grid-auto-flow: column !important; } - .\32xl\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2 !important; + .\32xl\:grid-flow-row-dense { + grid-auto-flow: row dense !important; } - .\32xl\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25 !important; + .\32xl\:grid-flow-col-dense { + grid-auto-flow: column dense !important; } - .\32xl\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3 !important; + .\32xl\:auto-rows-auto { + grid-auto-rows: auto !important; } - .\32xl\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4 !important; + .\32xl\:auto-rows-min { + grid-auto-rows: min-content !important; } - .\32xl\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5 !important; + .\32xl\:auto-rows-max { + grid-auto-rows: max-content !important; } - .\32xl\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6 !important; + .\32xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr) !important; } - .\32xl\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7 !important; + .\32xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } - .\32xl\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75 !important; + .\32xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } - .\32xl\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8 !important; + .\32xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } - .\32xl\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9 !important; + .\32xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } - .\32xl\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95 !important; + .\32xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } - .\32xl\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1 !important; + .\32xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } - .\32xl\:rounded-none { - border-radius: 0px !important; + .\32xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } - .\32xl\:rounded-sm { - border-radius: 0.125rem !important; + .\32xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } - .\32xl\:rounded { - border-radius: 0.25rem !important; + .\32xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } - .\32xl\:rounded-md { - border-radius: 0.375rem !important; + .\32xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } - .\32xl\:rounded-lg { - border-radius: 0.5rem !important; + .\32xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } - .\32xl\:rounded-xl { - border-radius: 0.75rem !important; + .\32xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } - .\32xl\:rounded-2xl { - border-radius: 1rem !important; + .\32xl\:grid-cols-none { + grid-template-columns: none !important; } - .\32xl\:rounded-3xl { - border-radius: 1.5rem !important; + .\32xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)) !important; } - .\32xl\:rounded-full { - border-radius: 9999px !important; + .\32xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)) !important; } - .\32xl\:rounded-t-none { - border-top-left-radius: 0px !important; - border-top-right-radius: 0px !important; + .\32xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)) !important; } - .\32xl\:rounded-r-none { - border-top-right-radius: 0px !important; - border-bottom-right-radius: 0px !important; + .\32xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)) !important; } - .\32xl\:rounded-b-none { - border-bottom-right-radius: 0px !important; - border-bottom-left-radius: 0px !important; + .\32xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)) !important; } - .\32xl\:rounded-l-none { - border-top-left-radius: 0px !important; - border-bottom-left-radius: 0px !important; + .\32xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)) !important; } - .\32xl\:rounded-t-sm { - border-top-left-radius: 0.125rem !important; - border-top-right-radius: 0.125rem !important; + .\32xl\:grid-rows-none { + grid-template-rows: none !important; } - .\32xl\:rounded-r-sm { - border-top-right-radius: 0.125rem !important; - border-bottom-right-radius: 0.125rem !important; + .\32xl\:flex-row { + flex-direction: row !important; } - .\32xl\:rounded-b-sm { - border-bottom-right-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; + .\32xl\:flex-row-reverse { + flex-direction: row-reverse !important; } - .\32xl\:rounded-l-sm { - border-top-left-radius: 0.125rem !important; - border-bottom-left-radius: 0.125rem !important; + .\32xl\:flex-col { + flex-direction: column !important; } - .\32xl\:rounded-t { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; + .\32xl\:flex-col-reverse { + flex-direction: column-reverse !important; } - .\32xl\:rounded-r { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; + .\32xl\:flex-wrap { + flex-wrap: wrap !important; } - .\32xl\:rounded-b { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; + .\32xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse !important; } - .\32xl\:rounded-l { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; + .\32xl\:flex-nowrap { + flex-wrap: nowrap !important; } - .\32xl\:rounded-t-md { - border-top-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem !important; + .\32xl\:place-content-center { + place-content: center !important; } - .\32xl\:rounded-r-md { - border-top-right-radius: 0.375rem !important; - border-bottom-right-radius: 0.375rem !important; + .\32xl\:place-content-start { + place-content: start !important; } - .\32xl\:rounded-b-md { - border-bottom-right-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; + .\32xl\:place-content-end { + place-content: end !important; } - .\32xl\:rounded-l-md { - border-top-left-radius: 0.375rem !important; - border-bottom-left-radius: 0.375rem !important; + .\32xl\:place-content-between { + place-content: space-between !important; } - .\32xl\:rounded-t-lg { - border-top-left-radius: 0.5rem !important; - border-top-right-radius: 0.5rem !important; + .\32xl\:place-content-around { + place-content: space-around !important; } - .\32xl\:rounded-r-lg { - border-top-right-radius: 0.5rem !important; - border-bottom-right-radius: 0.5rem !important; + .\32xl\:place-content-evenly { + place-content: space-evenly !important; } - .\32xl\:rounded-b-lg { - border-bottom-right-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; + .\32xl\:place-content-stretch { + place-content: stretch !important; } - .\32xl\:rounded-l-lg { - border-top-left-radius: 0.5rem !important; - border-bottom-left-radius: 0.5rem !important; + .\32xl\:place-items-start { + place-items: start !important; } - .\32xl\:rounded-t-xl { - border-top-left-radius: 0.75rem !important; - border-top-right-radius: 0.75rem !important; + .\32xl\:place-items-end { + place-items: end !important; } - .\32xl\:rounded-r-xl { - border-top-right-radius: 0.75rem !important; - border-bottom-right-radius: 0.75rem !important; + .\32xl\:place-items-center { + place-items: center !important; } - .\32xl\:rounded-b-xl { - border-bottom-right-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; + .\32xl\:place-items-stretch { + place-items: stretch !important; } - .\32xl\:rounded-l-xl { - border-top-left-radius: 0.75rem !important; - border-bottom-left-radius: 0.75rem !important; + .\32xl\:content-center { + align-content: center !important; } - .\32xl\:rounded-t-2xl { - border-top-left-radius: 1rem !important; - border-top-right-radius: 1rem !important; + .\32xl\:content-start { + align-content: flex-start !important; } - .\32xl\:rounded-r-2xl { - border-top-right-radius: 1rem !important; - border-bottom-right-radius: 1rem !important; + .\32xl\:content-end { + align-content: flex-end !important; } - .\32xl\:rounded-b-2xl { - border-bottom-right-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; + .\32xl\:content-between { + align-content: space-between !important; } - .\32xl\:rounded-l-2xl { - border-top-left-radius: 1rem !important; - border-bottom-left-radius: 1rem !important; + .\32xl\:content-around { + align-content: space-around !important; } - .\32xl\:rounded-t-3xl { - border-top-left-radius: 1.5rem !important; - border-top-right-radius: 1.5rem !important; + .\32xl\:content-evenly { + align-content: space-evenly !important; } - .\32xl\:rounded-r-3xl { - border-top-right-radius: 1.5rem !important; - border-bottom-right-radius: 1.5rem !important; + .\32xl\:items-start { + align-items: flex-start !important; } - .\32xl\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; + .\32xl\:items-end { + align-items: flex-end !important; } - .\32xl\:rounded-l-3xl { - border-top-left-radius: 1.5rem !important; - border-bottom-left-radius: 1.5rem !important; + .\32xl\:items-center { + align-items: center !important; } - .\32xl\:rounded-t-full { - border-top-left-radius: 9999px !important; - border-top-right-radius: 9999px !important; + .\32xl\:items-baseline { + align-items: baseline !important; } - .\32xl\:rounded-r-full { - border-top-right-radius: 9999px !important; - border-bottom-right-radius: 9999px !important; + .\32xl\:items-stretch { + align-items: stretch !important; } - .\32xl\:rounded-b-full { - border-bottom-right-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; + .\32xl\:justify-start { + justify-content: flex-start !important; } - .\32xl\:rounded-l-full { - border-top-left-radius: 9999px !important; - border-bottom-left-radius: 9999px !important; + .\32xl\:justify-end { + justify-content: flex-end !important; } - .\32xl\:rounded-tl-none { - border-top-left-radius: 0px !important; + .\32xl\:justify-center { + justify-content: center !important; } - .\32xl\:rounded-tr-none { - border-top-right-radius: 0px !important; + .\32xl\:justify-between { + justify-content: space-between !important; + } + + .\32xl\:justify-around { + justify-content: space-around !important; } - .\32xl\:rounded-br-none { - border-bottom-right-radius: 0px !important; + .\32xl\:justify-evenly { + justify-content: space-evenly !important; } - .\32xl\:rounded-bl-none { - border-bottom-left-radius: 0px !important; + .\32xl\:justify-items-start { + justify-items: start !important; } - .\32xl\:rounded-tl-sm { - border-top-left-radius: 0.125rem !important; + .\32xl\:justify-items-end { + justify-items: end !important; } - .\32xl\:rounded-tr-sm { - border-top-right-radius: 0.125rem !important; + .\32xl\:justify-items-center { + justify-items: center !important; } - .\32xl\:rounded-br-sm { - border-bottom-right-radius: 0.125rem !important; + .\32xl\:justify-items-stretch { + justify-items: stretch !important; } - .\32xl\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem !important; + .\32xl\:gap-0 { + gap: 0px !important; } - .\32xl\:rounded-tl { - border-top-left-radius: 0.25rem !important; + .\32xl\:gap-1 { + gap: 0.25rem !important; } - .\32xl\:rounded-tr { - border-top-right-radius: 0.25rem !important; + .\32xl\:gap-2 { + gap: 0.5rem !important; } - .\32xl\:rounded-br { - border-bottom-right-radius: 0.25rem !important; + .\32xl\:gap-3 { + gap: 0.75rem !important; } - .\32xl\:rounded-bl { - border-bottom-left-radius: 0.25rem !important; + .\32xl\:gap-4 { + gap: 1rem !important; } - .\32xl\:rounded-tl-md { - border-top-left-radius: 0.375rem !important; + .\32xl\:gap-5 { + gap: 1.25rem !important; } - .\32xl\:rounded-tr-md { - border-top-right-radius: 0.375rem !important; + .\32xl\:gap-6 { + gap: 1.5rem !important; } - .\32xl\:rounded-br-md { - border-bottom-right-radius: 0.375rem !important; + .\32xl\:gap-7 { + gap: 1.75rem !important; } - .\32xl\:rounded-bl-md { - border-bottom-left-radius: 0.375rem !important; + .\32xl\:gap-8 { + gap: 2rem !important; } - .\32xl\:rounded-tl-lg { - border-top-left-radius: 0.5rem !important; + .\32xl\:gap-9 { + gap: 2.25rem !important; } - .\32xl\:rounded-tr-lg { - border-top-right-radius: 0.5rem !important; + .\32xl\:gap-10 { + gap: 2.5rem !important; } - .\32xl\:rounded-br-lg { - border-bottom-right-radius: 0.5rem !important; + .\32xl\:gap-11 { + gap: 2.75rem !important; } - .\32xl\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem !important; + .\32xl\:gap-12 { + gap: 3rem !important; } - .\32xl\:rounded-tl-xl { - border-top-left-radius: 0.75rem !important; + .\32xl\:gap-14 { + gap: 3.5rem !important; } - .\32xl\:rounded-tr-xl { - border-top-right-radius: 0.75rem !important; + .\32xl\:gap-16 { + gap: 4rem !important; } - .\32xl\:rounded-br-xl { - border-bottom-right-radius: 0.75rem !important; + .\32xl\:gap-20 { + gap: 5rem !important; } - .\32xl\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem !important; + .\32xl\:gap-24 { + gap: 6rem !important; } - .\32xl\:rounded-tl-2xl { - border-top-left-radius: 1rem !important; + .\32xl\:gap-28 { + gap: 7rem !important; } - .\32xl\:rounded-tr-2xl { - border-top-right-radius: 1rem !important; + .\32xl\:gap-32 { + gap: 8rem !important; } - .\32xl\:rounded-br-2xl { - border-bottom-right-radius: 1rem !important; + .\32xl\:gap-36 { + gap: 9rem !important; } - .\32xl\:rounded-bl-2xl { - border-bottom-left-radius: 1rem !important; + .\32xl\:gap-40 { + gap: 10rem !important; } - .\32xl\:rounded-tl-3xl { - border-top-left-radius: 1.5rem !important; + .\32xl\:gap-44 { + gap: 11rem !important; } - .\32xl\:rounded-tr-3xl { - border-top-right-radius: 1.5rem !important; + .\32xl\:gap-48 { + gap: 12rem !important; } - .\32xl\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem !important; + .\32xl\:gap-52 { + gap: 13rem !important; } - .\32xl\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem !important; + .\32xl\:gap-56 { + gap: 14rem !important; } - .\32xl\:rounded-tl-full { - border-top-left-radius: 9999px !important; + .\32xl\:gap-60 { + gap: 15rem !important; } - .\32xl\:rounded-tr-full { - border-top-right-radius: 9999px !important; + .\32xl\:gap-64 { + gap: 16rem !important; } - .\32xl\:rounded-br-full { - border-bottom-right-radius: 9999px !important; + .\32xl\:gap-72 { + gap: 18rem !important; } - .\32xl\:rounded-bl-full { - border-bottom-left-radius: 9999px !important; + .\32xl\:gap-80 { + gap: 20rem !important; } - .\32xl\:border-solid { - border-style: solid !important; + .\32xl\:gap-96 { + gap: 24rem !important; } - .\32xl\:border-dashed { - border-style: dashed !important; + .\32xl\:gap-px { + gap: 1px !important; } - .\32xl\:border-dotted { - border-style: dotted !important; + .\32xl\:gap-0\.5 { + gap: 0.125rem !important; } - .\32xl\:border-double { - border-style: double !important; + .\32xl\:gap-1\.5 { + gap: 0.375rem !important; } - .\32xl\:border-none { - border-style: none !important; + .\32xl\:gap-2\.5 { + gap: 0.625rem !important; } - .\32xl\:border-0 { - border-width: 0px !important; + .\32xl\:gap-3\.5 { + gap: 0.875rem !important; } - .\32xl\:border-2 { - border-width: 2px !important; + .\32xl\:gap-x-0 { + column-gap: 0px !important; } - .\32xl\:border-4 { - border-width: 4px !important; + .\32xl\:gap-x-1 { + column-gap: 0.25rem !important; } - .\32xl\:border-8 { - border-width: 8px !important; + .\32xl\:gap-x-2 { + column-gap: 0.5rem !important; } - .\32xl\:border { - border-width: 1px !important; + .\32xl\:gap-x-3 { + column-gap: 0.75rem !important; } - .\32xl\:border-t-0 { - border-top-width: 0px !important; + .\32xl\:gap-x-4 { + column-gap: 1rem !important; } - .\32xl\:border-r-0 { - border-right-width: 0px !important; + .\32xl\:gap-x-5 { + column-gap: 1.25rem !important; } - .\32xl\:border-b-0 { - border-bottom-width: 0px !important; + .\32xl\:gap-x-6 { + column-gap: 1.5rem !important; } - .\32xl\:border-l-0 { - border-left-width: 0px !important; + .\32xl\:gap-x-7 { + column-gap: 1.75rem !important; } - .\32xl\:border-t-2 { - border-top-width: 2px !important; + .\32xl\:gap-x-8 { + column-gap: 2rem !important; } - .\32xl\:border-r-2 { - border-right-width: 2px !important; + .\32xl\:gap-x-9 { + column-gap: 2.25rem !important; } - .\32xl\:border-b-2 { - border-bottom-width: 2px !important; + .\32xl\:gap-x-10 { + column-gap: 2.5rem !important; } - .\32xl\:border-l-2 { - border-left-width: 2px !important; + .\32xl\:gap-x-11 { + column-gap: 2.75rem !important; } - .\32xl\:border-t-4 { - border-top-width: 4px !important; + .\32xl\:gap-x-12 { + column-gap: 3rem !important; } - .\32xl\:border-r-4 { - border-right-width: 4px !important; + .\32xl\:gap-x-14 { + column-gap: 3.5rem !important; } - .\32xl\:border-b-4 { - border-bottom-width: 4px !important; + .\32xl\:gap-x-16 { + column-gap: 4rem !important; } - .\32xl\:border-l-4 { - border-left-width: 4px !important; + .\32xl\:gap-x-20 { + column-gap: 5rem !important; } - .\32xl\:border-t-8 { - border-top-width: 8px !important; + .\32xl\:gap-x-24 { + column-gap: 6rem !important; } - .\32xl\:border-r-8 { - border-right-width: 8px !important; + .\32xl\:gap-x-28 { + column-gap: 7rem !important; } - .\32xl\:border-b-8 { - border-bottom-width: 8px !important; + .\32xl\:gap-x-32 { + column-gap: 8rem !important; } - .\32xl\:border-l-8 { - border-left-width: 8px !important; + .\32xl\:gap-x-36 { + column-gap: 9rem !important; } - .\32xl\:border-t { - border-top-width: 1px !important; + .\32xl\:gap-x-40 { + column-gap: 10rem !important; } - .\32xl\:border-r { - border-right-width: 1px !important; + .\32xl\:gap-x-44 { + column-gap: 11rem !important; } - .\32xl\:border-b { - border-bottom-width: 1px !important; + .\32xl\:gap-x-48 { + column-gap: 12rem !important; } - .\32xl\:border-l { - border-left-width: 1px !important; + .\32xl\:gap-x-52 { + column-gap: 13rem !important; } - .\32xl\:decoration-slice { - box-decoration-break: slice !important; + .\32xl\:gap-x-56 { + column-gap: 14rem !important; } - .\32xl\:decoration-clone { - box-decoration-break: clone !important; + .\32xl\:gap-x-60 { + column-gap: 15rem !important; } - .\32xl\:box-border { - box-sizing: border-box !important; + .\32xl\:gap-x-64 { + column-gap: 16rem !important; } - .\32xl\:box-content { - box-sizing: content-box !important; + .\32xl\:gap-x-72 { + column-gap: 18rem !important; } - .\32xl\:cursor-auto { - cursor: auto !important; + .\32xl\:gap-x-80 { + column-gap: 20rem !important; } - .\32xl\:cursor-default { - cursor: default !important; + .\32xl\:gap-x-96 { + column-gap: 24rem !important; } - .\32xl\:cursor-pointer { - cursor: pointer !important; + .\32xl\:gap-x-px { + column-gap: 1px !important; } - .\32xl\:cursor-wait { - cursor: wait !important; + .\32xl\:gap-x-0\.5 { + column-gap: 0.125rem !important; } - .\32xl\:cursor-text { - cursor: text !important; + .\32xl\:gap-x-1\.5 { + column-gap: 0.375rem !important; } - .\32xl\:cursor-move { - cursor: move !important; + .\32xl\:gap-x-2\.5 { + column-gap: 0.625rem !important; } - .\32xl\:cursor-help { - cursor: help !important; + .\32xl\:gap-x-3\.5 { + column-gap: 0.875rem !important; } - .\32xl\:cursor-not-allowed { - cursor: not-allowed !important; + .\32xl\:gap-y-0 { + row-gap: 0px !important; } - .\32xl\:block { - display: block !important; + .\32xl\:gap-y-1 { + row-gap: 0.25rem !important; } - .\32xl\:inline-block { - display: inline-block !important; + .\32xl\:gap-y-2 { + row-gap: 0.5rem !important; } - .\32xl\:inline { - display: inline !important; + .\32xl\:gap-y-3 { + row-gap: 0.75rem !important; } - .\32xl\:flex { - display: flex !important; + .\32xl\:gap-y-4 { + row-gap: 1rem !important; } - .\32xl\:inline-flex { - display: inline-flex !important; + .\32xl\:gap-y-5 { + row-gap: 1.25rem !important; } - .\32xl\:table { - display: table !important; + .\32xl\:gap-y-6 { + row-gap: 1.5rem !important; } - .\32xl\:inline-table { - display: inline-table !important; + .\32xl\:gap-y-7 { + row-gap: 1.75rem !important; } - .\32xl\:table-caption { - display: table-caption !important; + .\32xl\:gap-y-8 { + row-gap: 2rem !important; } - .\32xl\:table-cell { - display: table-cell !important; + .\32xl\:gap-y-9 { + row-gap: 2.25rem !important; } - .\32xl\:table-column { - display: table-column !important; + .\32xl\:gap-y-10 { + row-gap: 2.5rem !important; } - .\32xl\:table-column-group { - display: table-column-group !important; + .\32xl\:gap-y-11 { + row-gap: 2.75rem !important; } - .\32xl\:table-footer-group { - display: table-footer-group !important; + .\32xl\:gap-y-12 { + row-gap: 3rem !important; } - .\32xl\:table-header-group { - display: table-header-group !important; + .\32xl\:gap-y-14 { + row-gap: 3.5rem !important; } - .\32xl\:table-row-group { - display: table-row-group !important; + .\32xl\:gap-y-16 { + row-gap: 4rem !important; } - .\32xl\:table-row { - display: table-row !important; + .\32xl\:gap-y-20 { + row-gap: 5rem !important; } - .\32xl\:flow-root { - display: flow-root !important; + .\32xl\:gap-y-24 { + row-gap: 6rem !important; } - .\32xl\:grid { - display: grid !important; + .\32xl\:gap-y-28 { + row-gap: 7rem !important; } - .\32xl\:inline-grid { - display: inline-grid !important; + .\32xl\:gap-y-32 { + row-gap: 8rem !important; } - .\32xl\:contents { - display: contents !important; + .\32xl\:gap-y-36 { + row-gap: 9rem !important; } - .\32xl\:list-item { - display: list-item !important; + .\32xl\:gap-y-40 { + row-gap: 10rem !important; } - .\32xl\:hidden { - display: none !important; + .\32xl\:gap-y-44 { + row-gap: 11rem !important; } - .\32xl\:flex-row { - flex-direction: row !important; + .\32xl\:gap-y-48 { + row-gap: 12rem !important; } - .\32xl\:flex-row-reverse { - flex-direction: row-reverse !important; + .\32xl\:gap-y-52 { + row-gap: 13rem !important; } - .\32xl\:flex-col { - flex-direction: column !important; + .\32xl\:gap-y-56 { + row-gap: 14rem !important; } - .\32xl\:flex-col-reverse { - flex-direction: column-reverse !important; + .\32xl\:gap-y-60 { + row-gap: 15rem !important; } - .\32xl\:flex-wrap { - flex-wrap: wrap !important; + .\32xl\:gap-y-64 { + row-gap: 16rem !important; } - .\32xl\:flex-wrap-reverse { - flex-wrap: wrap-reverse !important; + .\32xl\:gap-y-72 { + row-gap: 18rem !important; } - .\32xl\:flex-nowrap { - flex-wrap: nowrap !important; + .\32xl\:gap-y-80 { + row-gap: 20rem !important; } - .\32xl\:place-items-start { - place-items: start !important; + .\32xl\:gap-y-96 { + row-gap: 24rem !important; } - .\32xl\:place-items-end { - place-items: end !important; + .\32xl\:gap-y-px { + row-gap: 1px !important; } - .\32xl\:place-items-center { - place-items: center !important; + .\32xl\:gap-y-0\.5 { + row-gap: 0.125rem !important; } - .\32xl\:place-items-stretch { - place-items: stretch !important; + .\32xl\:gap-y-1\.5 { + row-gap: 0.375rem !important; } - .\32xl\:place-content-center { - place-content: center !important; + .\32xl\:gap-y-2\.5 { + row-gap: 0.625rem !important; } - .\32xl\:place-content-start { - place-content: start !important; + .\32xl\:gap-y-3\.5 { + row-gap: 0.875rem !important; } - .\32xl\:place-content-end { - place-content: end !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\:place-content-between { - place-content: space-between !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\:place-content-around { - place-content: space-around !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\:place-content-evenly { - place-content: space-evenly !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\:place-content-stretch { - place-content: stretch !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\:place-self-auto { - place-self: auto !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\:place-self-start { - place-self: start !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\:place-self-end { - place-self: end !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\:place-self-center { - place-self: center !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\:place-self-stretch { - place-self: stretch !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\:items-start { - align-items: flex-start !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\:items-end { - align-items: flex-end !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\:items-center { - align-items: center !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\:items-baseline { - align-items: baseline !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\:items-stretch { - align-items: stretch !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\:content-center { - align-content: center !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\:content-start { - align-content: flex-start !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\:content-end { - align-content: flex-end !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\:content-between { - align-content: space-between !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\:content-around { - align-content: space-around !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\:content-evenly { - align-content: space-evenly !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\:self-auto { - align-self: auto !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\:self-start { - align-self: flex-start !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\:self-end { - align-self: flex-end !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\:self-center { - align-self: center !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\:self-stretch { - align-self: stretch !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\:justify-items-start { - justify-items: start !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\:justify-items-end { - justify-items: end !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\:justify-items-center { - justify-items: center !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\:justify-items-stretch { - justify-items: stretch !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\:justify-start { - justify-content: flex-start !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\:justify-end { - justify-content: flex-end !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\:justify-center { - justify-content: center !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\:justify-between { - justify-content: space-between !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\:justify-around { - justify-content: space-around !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\:justify-evenly { - justify-content: space-evenly !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\:justify-self-auto { - justify-self: auto !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\:justify-self-start { - justify-self: start !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\:justify-self-end { - justify-self: end !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\:justify-self-center { - justify-self: center !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\:justify-self-stretch { - justify-self: stretch !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\:flex-1 { - flex: 1 1 0% !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\:flex-auto { - flex: 1 1 auto !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\:flex-initial { - flex: 0 1 auto !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\:flex-none { - flex: none !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\:flex-grow-0 { - flex-grow: 0 !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\:flex-grow { - flex-grow: 1 !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\:flex-shrink-0 { - flex-shrink: 0 !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\:flex-shrink { - flex-shrink: 1 !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\:order-1 { - order: 1 !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\:order-2 { - order: 2 !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\:order-3 { - order: 3 !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\:order-4 { - order: 4 !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\:order-5 { - order: 5 !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\:order-6 { - order: 6 !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\:order-7 { - order: 7 !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\:order-8 { - order: 8 !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\:order-9 { - order: 9 !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\:order-10 { - order: 10 !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\:order-11 { - order: 11 !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\:order-12 { - order: 12 !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\:order-first { - order: -9999 !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\:order-last { - order: 9999 !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\:order-none { - order: 0 !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\:float-right { - float: right !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\:float-left { - float: left !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\:float-none { - float: none !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\:clear-left { - clear: left !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\:clear-right { - clear: right !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\:clear-both { - clear: both !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\:clear-none { - clear: none !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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !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\:font-thin { - font-weight: 100 !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\:font-extralight { - font-weight: 200 !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\:font-light { - font-weight: 300 !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\:font-normal { - font-weight: 400 !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\:font-medium { - font-weight: 500 !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\:font-semibold { - font-weight: 600 !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\:font-bold { - font-weight: 700 !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\:font-extrabold { - font-weight: 800 !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\:font-black { - font-weight: 900 !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\:h-0 { - height: 0px !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\:h-1 { - height: 0.25rem !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\:h-2 { - height: 0.5rem !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\:h-3 { - height: 0.75rem !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\:h-4 { - height: 1rem !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\:h-5 { - height: 1.25rem !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\:h-6 { - height: 1.5rem !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\:h-7 { - height: 1.75rem !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\:h-8 { - height: 2rem !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\:h-9 { - height: 2.25rem !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\:h-10 { - height: 2.5rem !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\:h-11 { - height: 2.75rem !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\:h-12 { - height: 3rem !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\:h-14 { - height: 3.5rem !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\:h-16 { - height: 4rem !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\:h-20 { - height: 5rem !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\:h-24 { - height: 6rem !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\:h-28 { - height: 7rem !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\:h-32 { - height: 8rem !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\:h-36 { - height: 9rem !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\:h-40 { - height: 10rem !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\:h-44 { - height: 11rem !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\:h-48 { - height: 12rem !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\:h-52 { - height: 13rem !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\:h-56 { - height: 14rem !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\:h-60 { - height: 15rem !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\:h-64 { - height: 16rem !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\:h-72 { - height: 18rem !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\:h-80 { - height: 20rem !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\:h-96 { - height: 24rem !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\:h-auto { - height: auto !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\:h-px { - height: 1px !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\:h-0\.5 { - height: 0.125rem !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\:h-1\.5 { - height: 0.375rem !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\:h-2\.5 { - height: 0.625rem !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\:h-3\.5 { - height: 0.875rem !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\:h-1\/2 { - height: 50% !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\:h-1\/3 { - height: 33.333333% !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\:h-2\/3 { - height: 66.666667% !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\:h-1\/4 { - height: 25% !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\:h-2\/4 { - height: 50% !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\:h-3\/4 { - height: 75% !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\:h-1\/5 { - height: 20% !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\:h-2\/5 { - height: 40% !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\:h-3\/5 { - height: 60% !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\:h-4\/5 { - height: 80% !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\:h-1\/6 { - height: 16.666667% !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\:h-2\/6 { - height: 33.333333% !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\:h-3\/6 { - height: 50% !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\:h-4\/6 { - height: 66.666667% !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\:h-5\/6 { - height: 83.333333% !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\:h-full { - height: 100% !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\:h-screen { - height: 100vh !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\:text-xs { - font-size: 0.75rem !important; - line-height: 1rem !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\:text-sm { - font-size: 0.875rem !important; - line-height: 1.25rem !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\:text-base { - font-size: 1rem !important; - line-height: 1.5rem !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\:text-lg { - font-size: 1.125rem !important; - line-height: 1.75rem !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\:text-xl { - font-size: 1.25rem !important; - line-height: 1.75rem !important; + .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1 !important; } - .\32xl\:text-2xl { - font-size: 1.5rem !important; - line-height: 2rem !important; + .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1 !important; } - .\32xl\:text-3xl { - font-size: 1.875rem !important; - line-height: 2.25rem !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\:text-4xl { - font-size: 2.25rem !important; - line-height: 2.5rem !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\:text-5xl { - font-size: 3rem !important; - line-height: 1 !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\:text-6xl { - font-size: 3.75rem !important; - line-height: 1 !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\:text-7xl { - font-size: 4.5rem !important; - line-height: 1 !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\:text-8xl { - font-size: 6rem !important; - line-height: 1 !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\:text-9xl { - font-size: 8rem !important; - line-height: 1 !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\:leading-3 { - line-height: .75rem !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\:leading-4 { - line-height: 1rem !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\:leading-5 { - line-height: 1.25rem !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\:leading-6 { - line-height: 1.5rem !important; + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1 !important; } - .\32xl\:leading-7 { - line-height: 1.75rem !important; + .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1 !important; } - .\32xl\:leading-8 { - line-height: 2rem !important; + .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid !important; } - .\32xl\:leading-9 { - line-height: 2.25rem !important; + .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed !important; } - .\32xl\:leading-10 { - line-height: 2.5rem !important; + .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted !important; } - .\32xl\:leading-none { - line-height: 1 !important; + .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double !important; } - .\32xl\:leading-tight { - line-height: 1.25 !important; + .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none !important; } - .\32xl\:leading-snug { - line-height: 1.375 !important; + .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent !important; } - .\32xl\:leading-normal { - line-height: 1.5 !important; + .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor !important; } - .\32xl\:leading-relaxed { - line-height: 1.625 !important; + .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important; } - .\32xl\:leading-loose { - line-height: 2 !important; + .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important; } - .\32xl\:list-inside { - list-style-position: inside !important; + .\32xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)) !important; } - .\32xl\:list-outside { - list-style-position: outside !important; + .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)) !important; } - .\32xl\:list-none { - list-style-type: none !important; + .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)) !important; } - .\32xl\:list-disc { - list-style-type: disc !important; + .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)) !important; } - .\32xl\:list-decimal { - list-style-type: decimal !important; + .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)) !important; } - .\32xl\:m-0 { - margin: 0px !important; + .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)) !important; } - .\32xl\:m-1 { - margin: 0.25rem !important; + .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)) !important; } - .\32xl\:m-2 { - margin: 0.5rem !important; + .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)) !important; } - .\32xl\:m-3 { - margin: 0.75rem !important; + .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)) !important; } - .\32xl\:m-4 { - margin: 1rem !important; + .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)) !important; } - .\32xl\:m-5 { - margin: 1.25rem !important; + .\32xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)) !important; } - .\32xl\:m-6 { - margin: 1.5rem !important; + .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)) !important; } - .\32xl\:m-7 { - margin: 1.75rem !important; + .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)) !important; } - .\32xl\:m-8 { - margin: 2rem !important; + .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)) !important; } - .\32xl\:m-9 { - margin: 2.25rem !important; + .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)) !important; } - .\32xl\:m-10 { - margin: 2.5rem !important; + .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)) !important; } - .\32xl\:m-11 { - margin: 2.75rem !important; + .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)) !important; } - .\32xl\:m-12 { - margin: 3rem !important; + .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)) !important; } - .\32xl\:m-14 { - margin: 3.5rem !important; + .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)) !important; } - .\32xl\:m-16 { - margin: 4rem !important; + .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)) !important; } - .\32xl\:m-20 { - margin: 5rem !important; + .\32xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)) !important; } - .\32xl\:m-24 { - margin: 6rem !important; + .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)) !important; } - .\32xl\:m-28 { - margin: 7rem !important; + .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)) !important; } - .\32xl\:m-32 { - margin: 8rem !important; + .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)) !important; } - .\32xl\:m-36 { - margin: 9rem !important; + .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)) !important; } - .\32xl\:m-40 { - margin: 10rem !important; + .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)) !important; } - .\32xl\:m-44 { - margin: 11rem !important; + .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)) !important; } - .\32xl\:m-48 { - margin: 12rem !important; + .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)) !important; } - .\32xl\:m-52 { - margin: 13rem !important; + .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)) !important; } - .\32xl\:m-56 { - margin: 14rem !important; + .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)) !important; } - .\32xl\:m-60 { - margin: 15rem !important; + .\32xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)) !important; } - .\32xl\:m-64 { - margin: 16rem !important; + .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)) !important; } - .\32xl\:m-72 { - margin: 18rem !important; + .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)) !important; } - .\32xl\:m-80 { - margin: 20rem !important; + .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)) !important; } - .\32xl\:m-96 { - margin: 24rem !important; + .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)) !important; } - .\32xl\:m-auto { - margin: auto !important; + .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)) !important; } - .\32xl\:m-px { - margin: 1px !important; + .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)) !important; } - .\32xl\:m-0\.5 { - margin: 0.125rem !important; + .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)) !important; } - .\32xl\:m-1\.5 { - margin: 0.375rem !important; + .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)) !important; } - .\32xl\:m-2\.5 { - margin: 0.625rem !important; + .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)) !important; } - .\32xl\:m-3\.5 { - margin: 0.875rem !important; + .\32xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-0 { - margin: 0px !important; + .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-1 { - margin: -0.25rem !important; + .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-2 { - margin: -0.5rem !important; + .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-3 { - margin: -0.75rem !important; + .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-4 { - margin: -1rem !important; + .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-5 { - margin: -1.25rem !important; + .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-6 { - margin: -1.5rem !important; + .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-7 { - margin: -1.75rem !important; + .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-8 { - margin: -2rem !important; + .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-9 { - margin: -2.25rem !important; + .\32xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-10 { - margin: -2.5rem !important; + .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-11 { - margin: -2.75rem !important; + .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-12 { - margin: -3rem !important; + .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-14 { - margin: -3.5rem !important; + .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-16 { - margin: -4rem !important; + .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-20 { - margin: -5rem !important; + .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-24 { - margin: -6rem !important; + .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-28 { - margin: -7rem !important; + .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-32 { - margin: -8rem !important; + .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-36 { - margin: -9rem !important; + .\32xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-40 { - margin: -10rem !important; + .\32xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-44 { - margin: -11rem !important; + .\32xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-48 { - margin: -12rem !important; + .\32xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-52 { - margin: -13rem !important; + .\32xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-56 { - margin: -14rem !important; + .\32xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-60 { - margin: -15rem !important; + .\32xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-64 { - margin: -16rem !important; + .\32xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-72 { - margin: -18rem !important; + .\32xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-80 { - margin: -20rem !important; + .\32xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-96 { - margin: -24rem !important; + .\32xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-px { - margin: -1px !important; + .\32xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-0\.5 { - margin: -0.125rem !important; + .\32xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-1\.5 { - margin: -0.375rem !important; + .\32xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-2\.5 { - margin: -0.625rem !important; + .\32xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)) !important; } - .\32xl\:-m-3\.5 { - margin: -0.875rem !important; + .\32xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)) !important; } - .\32xl\:my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; + .\32xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)) !important; } - .\32xl\:mx-0 { - margin-left: 0px !important; - margin-right: 0px !important; + .\32xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)) !important; } - .\32xl\:my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; + .\32xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)) !important; } - .\32xl\:mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; + .\32xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)) !important; } - .\32xl\:my-2 { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; + .\32xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0 !important; } - .\32xl\:mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; + .\32xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05 !important; } - .\32xl\:my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; + .\32xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1 !important; } - .\32xl\:mx-3 { - margin-left: 0.75rem !important; - margin-right: 0.75rem !important; + .\32xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2 !important; } - .\32xl\:my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; + .\32xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25 !important; } - .\32xl\:mx-4 { - margin-left: 1rem !important; - margin-right: 1rem !important; + .\32xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3 !important; } - .\32xl\:my-5 { - margin-top: 1.25rem !important; - margin-bottom: 1.25rem !important; + .\32xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4 !important; } - .\32xl\:mx-5 { - margin-left: 1.25rem !important; - margin-right: 1.25rem !important; + .\32xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5 !important; } - .\32xl\:my-6 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; + .\32xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6 !important; } - .\32xl\:mx-6 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; + .\32xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7 !important; } - .\32xl\:my-7 { - margin-top: 1.75rem !important; - margin-bottom: 1.75rem !important; + .\32xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75 !important; } - .\32xl\:mx-7 { - margin-left: 1.75rem !important; - margin-right: 1.75rem !important; + .\32xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8 !important; } - .\32xl\:my-8 { - margin-top: 2rem !important; - margin-bottom: 2rem !important; + .\32xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9 !important; } - .\32xl\:mx-8 { - margin-left: 2rem !important; - margin-right: 2rem !important; + .\32xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95 !important; } - .\32xl\:my-9 { - margin-top: 2.25rem !important; - margin-bottom: 2.25rem !important; + .\32xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1 !important; } - .\32xl\:mx-9 { - margin-left: 2.25rem !important; - margin-right: 2.25rem !important; + .\32xl\:place-self-auto { + place-self: auto !important; } - .\32xl\:my-10 { - margin-top: 2.5rem !important; - margin-bottom: 2.5rem !important; + .\32xl\:place-self-start { + place-self: start !important; } - .\32xl\:mx-10 { - margin-left: 2.5rem !important; - margin-right: 2.5rem !important; + .\32xl\:place-self-end { + place-self: end !important; } - .\32xl\:my-11 { - margin-top: 2.75rem !important; - margin-bottom: 2.75rem !important; + .\32xl\:place-self-center { + place-self: center !important; } - .\32xl\:mx-11 { - margin-left: 2.75rem !important; - margin-right: 2.75rem !important; + .\32xl\:place-self-stretch { + place-self: stretch !important; } - .\32xl\:my-12 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; + .\32xl\:self-auto { + align-self: auto !important; } - .\32xl\:mx-12 { - margin-left: 3rem !important; - margin-right: 3rem !important; + .\32xl\:self-start { + align-self: flex-start !important; } - .\32xl\:my-14 { - margin-top: 3.5rem !important; - margin-bottom: 3.5rem !important; + .\32xl\:self-end { + align-self: flex-end !important; } - .\32xl\:mx-14 { - margin-left: 3.5rem !important; - margin-right: 3.5rem !important; + .\32xl\:self-center { + align-self: center !important; } - .\32xl\:my-16 { - margin-top: 4rem !important; - margin-bottom: 4rem !important; + .\32xl\:self-stretch { + align-self: stretch !important; } - .\32xl\:mx-16 { - margin-left: 4rem !important; - margin-right: 4rem !important; + .\32xl\:justify-self-auto { + justify-self: auto !important; } - .\32xl\:my-20 { - margin-top: 5rem !important; - margin-bottom: 5rem !important; + .\32xl\:justify-self-start { + justify-self: start !important; } - .\32xl\:mx-20 { - margin-left: 5rem !important; - margin-right: 5rem !important; + .\32xl\:justify-self-end { + justify-self: end !important; } - .\32xl\:my-24 { - margin-top: 6rem !important; - margin-bottom: 6rem !important; + .\32xl\:justify-self-center { + justify-self: center !important; } - .\32xl\:mx-24 { - margin-left: 6rem !important; - margin-right: 6rem !important; + .\32xl\:justify-self-stretch { + justify-self: stretch !important; } - .\32xl\:my-28 { - margin-top: 7rem !important; - margin-bottom: 7rem !important; + .\32xl\:overflow-auto { + overflow: auto !important; } - .\32xl\:mx-28 { - margin-left: 7rem !important; - margin-right: 7rem !important; + .\32xl\:overflow-hidden { + overflow: hidden !important; } - .\32xl\:my-32 { - margin-top: 8rem !important; - margin-bottom: 8rem !important; + .\32xl\:overflow-visible { + overflow: visible !important; } - .\32xl\:mx-32 { - margin-left: 8rem !important; - margin-right: 8rem !important; + .\32xl\:overflow-scroll { + overflow: scroll !important; } - .\32xl\:my-36 { - margin-top: 9rem !important; - margin-bottom: 9rem !important; + .\32xl\:overflow-x-auto { + overflow-x: auto !important; } - .\32xl\:mx-36 { - margin-left: 9rem !important; - margin-right: 9rem !important; + .\32xl\:overflow-y-auto { + overflow-y: auto !important; } - .\32xl\:my-40 { - margin-top: 10rem !important; - margin-bottom: 10rem !important; + .\32xl\:overflow-x-hidden { + overflow-x: hidden !important; } - .\32xl\:mx-40 { - margin-left: 10rem !important; - margin-right: 10rem !important; + .\32xl\:overflow-y-hidden { + overflow-y: hidden !important; } - .\32xl\:my-44 { - margin-top: 11rem !important; - margin-bottom: 11rem !important; + .\32xl\:overflow-x-visible { + overflow-x: visible !important; } - .\32xl\:mx-44 { - margin-left: 11rem !important; - margin-right: 11rem !important; + .\32xl\:overflow-y-visible { + overflow-y: visible !important; } - .\32xl\:my-48 { - margin-top: 12rem !important; - margin-bottom: 12rem !important; + .\32xl\:overflow-x-scroll { + overflow-x: scroll !important; } - .\32xl\:mx-48 { - margin-left: 12rem !important; - margin-right: 12rem !important; + .\32xl\:overflow-y-scroll { + overflow-y: scroll !important; } - .\32xl\:my-52 { - margin-top: 13rem !important; - margin-bottom: 13rem !important; + .\32xl\:overscroll-auto { + overscroll-behavior: auto !important; } - .\32xl\:mx-52 { - margin-left: 13rem !important; - margin-right: 13rem !important; + .\32xl\:overscroll-contain { + overscroll-behavior: contain !important; } - .\32xl\:my-56 { - margin-top: 14rem !important; - margin-bottom: 14rem !important; + .\32xl\:overscroll-none { + overscroll-behavior: none !important; } - .\32xl\:mx-56 { - margin-left: 14rem !important; - margin-right: 14rem !important; + .\32xl\:overscroll-y-auto { + overscroll-behavior-y: auto !important; } - .\32xl\:my-60 { - margin-top: 15rem !important; - margin-bottom: 15rem !important; + .\32xl\:overscroll-y-contain { + overscroll-behavior-y: contain !important; } - .\32xl\:mx-60 { - margin-left: 15rem !important; - margin-right: 15rem !important; + .\32xl\:overscroll-y-none { + overscroll-behavior-y: none !important; } - .\32xl\:my-64 { - margin-top: 16rem !important; - margin-bottom: 16rem !important; + .\32xl\:overscroll-x-auto { + overscroll-behavior-x: auto !important; } - .\32xl\:mx-64 { - margin-left: 16rem !important; - margin-right: 16rem !important; + .\32xl\:overscroll-x-contain { + overscroll-behavior-x: contain !important; } - .\32xl\:my-72 { - margin-top: 18rem !important; - margin-bottom: 18rem !important; + .\32xl\:overscroll-x-none { + overscroll-behavior-x: none !important; } - .\32xl\:mx-72 { - margin-left: 18rem !important; - margin-right: 18rem !important; + .\32xl\:truncate { + overflow: hidden !important; + text-overflow: ellipsis !important; + white-space: nowrap !important; } - .\32xl\:my-80 { - margin-top: 20rem !important; - margin-bottom: 20rem !important; + .\32xl\:overflow-ellipsis { + text-overflow: ellipsis !important; } - .\32xl\:mx-80 { - margin-left: 20rem !important; - margin-right: 20rem !important; + .\32xl\:overflow-clip { + text-overflow: clip !important; } - .\32xl\:my-96 { - margin-top: 24rem !important; - margin-bottom: 24rem !important; + .\32xl\:whitespace-normal { + white-space: normal !important; } - .\32xl\:mx-96 { - margin-left: 24rem !important; - margin-right: 24rem !important; + .\32xl\:whitespace-nowrap { + white-space: nowrap !important; } - .\32xl\:my-auto { - margin-top: auto !important; - margin-bottom: auto !important; + .\32xl\:whitespace-pre { + white-space: pre !important; } - .\32xl\:mx-auto { - margin-left: auto !important; - margin-right: auto !important; + .\32xl\:whitespace-pre-line { + white-space: pre-line !important; } - .\32xl\:my-px { - margin-top: 1px !important; - margin-bottom: 1px !important; + .\32xl\:whitespace-pre-wrap { + white-space: pre-wrap !important; } - .\32xl\:mx-px { - margin-left: 1px !important; - margin-right: 1px !important; + .\32xl\:break-normal { + overflow-wrap: normal !important; + word-break: normal !important; } - .\32xl\:my-0\.5 { - margin-top: 0.125rem !important; - margin-bottom: 0.125rem !important; + .\32xl\:break-words { + overflow-wrap: break-word !important; } - .\32xl\:mx-0\.5 { - margin-left: 0.125rem !important; - margin-right: 0.125rem !important; + .\32xl\:break-all { + word-break: break-all !important; } - .\32xl\:my-1\.5 { - margin-top: 0.375rem !important; - margin-bottom: 0.375rem !important; + .\32xl\:rounded-none { + border-radius: 0px !important; } - .\32xl\:mx-1\.5 { - margin-left: 0.375rem !important; - margin-right: 0.375rem !important; + .\32xl\:rounded-sm { + border-radius: 0.125rem !important; } - .\32xl\:my-2\.5 { - margin-top: 0.625rem !important; - margin-bottom: 0.625rem !important; + .\32xl\:rounded { + border-radius: 0.25rem !important; } - .\32xl\:mx-2\.5 { - margin-left: 0.625rem !important; - margin-right: 0.625rem !important; + .\32xl\:rounded-md { + border-radius: 0.375rem !important; } - .\32xl\:my-3\.5 { - margin-top: 0.875rem !important; - margin-bottom: 0.875rem !important; + .\32xl\:rounded-lg { + border-radius: 0.5rem !important; } - .\32xl\:mx-3\.5 { - margin-left: 0.875rem !important; - margin-right: 0.875rem !important; + .\32xl\:rounded-xl { + border-radius: 0.75rem !important; } - .\32xl\:-my-0 { - margin-top: 0px !important; - margin-bottom: 0px !important; + .\32xl\:rounded-2xl { + border-radius: 1rem !important; } - .\32xl\:-mx-0 { - margin-left: 0px !important; - margin-right: 0px !important; + .\32xl\:rounded-3xl { + border-radius: 1.5rem !important; } - .\32xl\:-my-1 { - margin-top: -0.25rem !important; - margin-bottom: -0.25rem !important; + .\32xl\:rounded-full { + border-radius: 9999px !important; } - .\32xl\:-mx-1 { - margin-left: -0.25rem !important; - margin-right: -0.25rem !important; + .\32xl\:rounded-t-none { + border-top-left-radius: 0px !important; + border-top-right-radius: 0px !important; } - .\32xl\:-my-2 { - margin-top: -0.5rem !important; - margin-bottom: -0.5rem !important; + .\32xl\:rounded-t-sm { + border-top-left-radius: 0.125rem !important; + border-top-right-radius: 0.125rem !important; } - .\32xl\:-mx-2 { - margin-left: -0.5rem !important; - margin-right: -0.5rem !important; + .\32xl\:rounded-t { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; } - .\32xl\:-my-3 { - margin-top: -0.75rem !important; - margin-bottom: -0.75rem !important; + .\32xl\:rounded-t-md { + border-top-left-radius: 0.375rem !important; + border-top-right-radius: 0.375rem !important; } - .\32xl\:-mx-3 { - margin-left: -0.75rem !important; - margin-right: -0.75rem !important; + .\32xl\:rounded-t-lg { + border-top-left-radius: 0.5rem !important; + border-top-right-radius: 0.5rem !important; } - .\32xl\:-my-4 { - margin-top: -1rem !important; - margin-bottom: -1rem !important; + .\32xl\:rounded-t-xl { + border-top-left-radius: 0.75rem !important; + border-top-right-radius: 0.75rem !important; } - .\32xl\:-mx-4 { - margin-left: -1rem !important; - margin-right: -1rem !important; + .\32xl\:rounded-t-2xl { + border-top-left-radius: 1rem !important; + border-top-right-radius: 1rem !important; } - .\32xl\:-my-5 { - margin-top: -1.25rem !important; - margin-bottom: -1.25rem !important; + .\32xl\:rounded-t-3xl { + border-top-left-radius: 1.5rem !important; + border-top-right-radius: 1.5rem !important; } - .\32xl\:-mx-5 { - margin-left: -1.25rem !important; - margin-right: -1.25rem !important; + .\32xl\:rounded-t-full { + border-top-left-radius: 9999px !important; + border-top-right-radius: 9999px !important; } - .\32xl\:-my-6 { - margin-top: -1.5rem !important; - margin-bottom: -1.5rem !important; + .\32xl\:rounded-r-none { + border-top-right-radius: 0px !important; + border-bottom-right-radius: 0px !important; } - .\32xl\:-mx-6 { - margin-left: -1.5rem !important; - margin-right: -1.5rem !important; + .\32xl\:rounded-r-sm { + border-top-right-radius: 0.125rem !important; + border-bottom-right-radius: 0.125rem !important; } - .\32xl\:-my-7 { - margin-top: -1.75rem !important; - margin-bottom: -1.75rem !important; + .\32xl\:rounded-r { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; } - .\32xl\:-mx-7 { - margin-left: -1.75rem !important; - margin-right: -1.75rem !important; + .\32xl\:rounded-r-md { + border-top-right-radius: 0.375rem !important; + border-bottom-right-radius: 0.375rem !important; } - .\32xl\:-my-8 { - margin-top: -2rem !important; - margin-bottom: -2rem !important; + .\32xl\:rounded-r-lg { + border-top-right-radius: 0.5rem !important; + border-bottom-right-radius: 0.5rem !important; } - .\32xl\:-mx-8 { - margin-left: -2rem !important; - margin-right: -2rem !important; + .\32xl\:rounded-r-xl { + border-top-right-radius: 0.75rem !important; + border-bottom-right-radius: 0.75rem !important; } - .\32xl\:-my-9 { - margin-top: -2.25rem !important; - margin-bottom: -2.25rem !important; + .\32xl\:rounded-r-2xl { + border-top-right-radius: 1rem !important; + border-bottom-right-radius: 1rem !important; } - .\32xl\:-mx-9 { - margin-left: -2.25rem !important; - margin-right: -2.25rem !important; + .\32xl\:rounded-r-3xl { + border-top-right-radius: 1.5rem !important; + border-bottom-right-radius: 1.5rem !important; } - .\32xl\:-my-10 { - margin-top: -2.5rem !important; - margin-bottom: -2.5rem !important; + .\32xl\:rounded-r-full { + border-top-right-radius: 9999px !important; + border-bottom-right-radius: 9999px !important; } - .\32xl\:-mx-10 { - margin-left: -2.5rem !important; - margin-right: -2.5rem !important; + .\32xl\:rounded-b-none { + border-bottom-right-radius: 0px !important; + border-bottom-left-radius: 0px !important; } - .\32xl\:-my-11 { - margin-top: -2.75rem !important; - margin-bottom: -2.75rem !important; + .\32xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } - .\32xl\:-mx-11 { - margin-left: -2.75rem !important; - margin-right: -2.75rem !important; + .\32xl\:rounded-b { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } - .\32xl\:-my-12 { - margin-top: -3rem !important; - margin-bottom: -3rem !important; + .\32xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } - .\32xl\:-mx-12 { - margin-left: -3rem !important; - margin-right: -3rem !important; + .\32xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } - .\32xl\:-my-14 { - margin-top: -3.5rem !important; - margin-bottom: -3.5rem !important; + .\32xl\:rounded-b-xl { + border-bottom-right-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } - .\32xl\:-mx-14 { - margin-left: -3.5rem !important; - margin-right: -3.5rem !important; + .\32xl\:rounded-b-2xl { + border-bottom-right-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } - .\32xl\:-my-16 { - margin-top: -4rem !important; - margin-bottom: -4rem !important; + .\32xl\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } - .\32xl\:-mx-16 { - margin-left: -4rem !important; - margin-right: -4rem !important; + .\32xl\:rounded-b-full { + border-bottom-right-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } - .\32xl\:-my-20 { - margin-top: -5rem !important; - margin-bottom: -5rem !important; + .\32xl\:rounded-l-none { + border-top-left-radius: 0px !important; + border-bottom-left-radius: 0px !important; } - .\32xl\:-mx-20 { - margin-left: -5rem !important; - margin-right: -5rem !important; + .\32xl\:rounded-l-sm { + border-top-left-radius: 0.125rem !important; + border-bottom-left-radius: 0.125rem !important; } - .\32xl\:-my-24 { - margin-top: -6rem !important; - margin-bottom: -6rem !important; + .\32xl\:rounded-l { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } - .\32xl\:-mx-24 { - margin-left: -6rem !important; - margin-right: -6rem !important; + .\32xl\:rounded-l-md { + border-top-left-radius: 0.375rem !important; + border-bottom-left-radius: 0.375rem !important; } - .\32xl\:-my-28 { - margin-top: -7rem !important; - margin-bottom: -7rem !important; + .\32xl\:rounded-l-lg { + border-top-left-radius: 0.5rem !important; + border-bottom-left-radius: 0.5rem !important; } - .\32xl\:-mx-28 { - margin-left: -7rem !important; - margin-right: -7rem !important; + .\32xl\:rounded-l-xl { + border-top-left-radius: 0.75rem !important; + border-bottom-left-radius: 0.75rem !important; } - .\32xl\:-my-32 { - margin-top: -8rem !important; - margin-bottom: -8rem !important; + .\32xl\:rounded-l-2xl { + border-top-left-radius: 1rem !important; + border-bottom-left-radius: 1rem !important; } - .\32xl\:-mx-32 { - margin-left: -8rem !important; - margin-right: -8rem !important; + .\32xl\:rounded-l-3xl { + border-top-left-radius: 1.5rem !important; + border-bottom-left-radius: 1.5rem !important; } - .\32xl\:-my-36 { - margin-top: -9rem !important; - margin-bottom: -9rem !important; + .\32xl\:rounded-l-full { + border-top-left-radius: 9999px !important; + border-bottom-left-radius: 9999px !important; } - .\32xl\:-mx-36 { - margin-left: -9rem !important; - margin-right: -9rem !important; + .\32xl\:rounded-tl-none { + border-top-left-radius: 0px !important; } - .\32xl\:-my-40 { - margin-top: -10rem !important; - margin-bottom: -10rem !important; + .\32xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem !important; } - .\32xl\:-mx-40 { - margin-left: -10rem !important; - margin-right: -10rem !important; + .\32xl\:rounded-tl { + border-top-left-radius: 0.25rem !important; } - .\32xl\:-my-44 { - margin-top: -11rem !important; - margin-bottom: -11rem !important; + .\32xl\:rounded-tl-md { + border-top-left-radius: 0.375rem !important; } - .\32xl\:-mx-44 { - margin-left: -11rem !important; - margin-right: -11rem !important; + .\32xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem !important; } - .\32xl\:-my-48 { - margin-top: -12rem !important; - margin-bottom: -12rem !important; + .\32xl\:rounded-tl-xl { + border-top-left-radius: 0.75rem !important; } - .\32xl\:-mx-48 { - margin-left: -12rem !important; - margin-right: -12rem !important; + .\32xl\:rounded-tl-2xl { + border-top-left-radius: 1rem !important; } - .\32xl\:-my-52 { - margin-top: -13rem !important; - margin-bottom: -13rem !important; + .\32xl\:rounded-tl-3xl { + border-top-left-radius: 1.5rem !important; } - .\32xl\:-mx-52 { - margin-left: -13rem !important; - margin-right: -13rem !important; + .\32xl\:rounded-tl-full { + border-top-left-radius: 9999px !important; } - .\32xl\:-my-56 { - margin-top: -14rem !important; - margin-bottom: -14rem !important; + .\32xl\:rounded-tr-none { + border-top-right-radius: 0px !important; } - .\32xl\:-mx-56 { - margin-left: -14rem !important; - margin-right: -14rem !important; + .\32xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem !important; } - .\32xl\:-my-60 { - margin-top: -15rem !important; - margin-bottom: -15rem !important; + .\32xl\:rounded-tr { + border-top-right-radius: 0.25rem !important; } - .\32xl\:-mx-60 { - margin-left: -15rem !important; - margin-right: -15rem !important; + .\32xl\:rounded-tr-md { + border-top-right-radius: 0.375rem !important; } - .\32xl\:-my-64 { - margin-top: -16rem !important; - margin-bottom: -16rem !important; + .\32xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem !important; } - .\32xl\:-mx-64 { - margin-left: -16rem !important; - margin-right: -16rem !important; + .\32xl\:rounded-tr-xl { + border-top-right-radius: 0.75rem !important; } - .\32xl\:-my-72 { - margin-top: -18rem !important; - margin-bottom: -18rem !important; + .\32xl\:rounded-tr-2xl { + border-top-right-radius: 1rem !important; } - .\32xl\:-mx-72 { - margin-left: -18rem !important; - margin-right: -18rem !important; + .\32xl\:rounded-tr-3xl { + border-top-right-radius: 1.5rem !important; } - .\32xl\:-my-80 { - margin-top: -20rem !important; - margin-bottom: -20rem !important; + .\32xl\:rounded-tr-full { + border-top-right-radius: 9999px !important; } - .\32xl\:-mx-80 { - margin-left: -20rem !important; - margin-right: -20rem !important; + .\32xl\:rounded-br-none { + border-bottom-right-radius: 0px !important; } - .\32xl\:-my-96 { - margin-top: -24rem !important; - margin-bottom: -24rem !important; + .\32xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem !important; } - .\32xl\:-mx-96 { - margin-left: -24rem !important; - margin-right: -24rem !important; + .\32xl\:rounded-br { + border-bottom-right-radius: 0.25rem !important; } - .\32xl\:-my-px { - margin-top: -1px !important; - margin-bottom: -1px !important; + .\32xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem !important; } - .\32xl\:-mx-px { - margin-left: -1px !important; - margin-right: -1px !important; + .\32xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem !important; } - .\32xl\:-my-0\.5 { - margin-top: -0.125rem !important; - margin-bottom: -0.125rem !important; + .\32xl\:rounded-br-xl { + border-bottom-right-radius: 0.75rem !important; } - .\32xl\:-mx-0\.5 { - margin-left: -0.125rem !important; - margin-right: -0.125rem !important; + .\32xl\:rounded-br-2xl { + border-bottom-right-radius: 1rem !important; } - .\32xl\:-my-1\.5 { - margin-top: -0.375rem !important; - margin-bottom: -0.375rem !important; + .\32xl\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem !important; } - .\32xl\:-mx-1\.5 { - margin-left: -0.375rem !important; - margin-right: -0.375rem !important; + .\32xl\:rounded-br-full { + border-bottom-right-radius: 9999px !important; } - .\32xl\:-my-2\.5 { - margin-top: -0.625rem !important; - margin-bottom: -0.625rem !important; + .\32xl\:rounded-bl-none { + border-bottom-left-radius: 0px !important; } - .\32xl\:-mx-2\.5 { - margin-left: -0.625rem !important; - margin-right: -0.625rem !important; + .\32xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem !important; } - .\32xl\:-my-3\.5 { - margin-top: -0.875rem !important; - margin-bottom: -0.875rem !important; + .\32xl\:rounded-bl { + border-bottom-left-radius: 0.25rem !important; } - .\32xl\:-mx-3\.5 { - margin-left: -0.875rem !important; - margin-right: -0.875rem !important; + .\32xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem !important; } - .\32xl\:mt-0 { - margin-top: 0px !important; + .\32xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem !important; } - .\32xl\:mr-0 { - margin-right: 0px !important; + .\32xl\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem !important; } - .\32xl\:mb-0 { - margin-bottom: 0px !important; + .\32xl\:rounded-bl-2xl { + border-bottom-left-radius: 1rem !important; } - .\32xl\:ml-0 { - margin-left: 0px !important; + .\32xl\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem !important; } - .\32xl\:mt-1 { - margin-top: 0.25rem !important; + .\32xl\:rounded-bl-full { + border-bottom-left-radius: 9999px !important; } - .\32xl\:mr-1 { - margin-right: 0.25rem !important; + .\32xl\:border-0 { + border-width: 0px !important; } - .\32xl\:mb-1 { - margin-bottom: 0.25rem !important; + .\32xl\:border-2 { + border-width: 2px !important; } - .\32xl\:ml-1 { - margin-left: 0.25rem !important; + .\32xl\:border-4 { + border-width: 4px !important; } - .\32xl\:mt-2 { - margin-top: 0.5rem !important; + .\32xl\:border-8 { + border-width: 8px !important; } - .\32xl\:mr-2 { - margin-right: 0.5rem !important; + .\32xl\:border { + border-width: 1px !important; } - .\32xl\:mb-2 { - margin-bottom: 0.5rem !important; + .\32xl\:border-t-0 { + border-top-width: 0px !important; } - .\32xl\:ml-2 { - margin-left: 0.5rem !important; + .\32xl\:border-t-2 { + border-top-width: 2px !important; } - .\32xl\:mt-3 { - margin-top: 0.75rem !important; + .\32xl\:border-t-4 { + border-top-width: 4px !important; } - .\32xl\:mr-3 { - margin-right: 0.75rem !important; + .\32xl\:border-t-8 { + border-top-width: 8px !important; } - .\32xl\:mb-3 { - margin-bottom: 0.75rem !important; + .\32xl\:border-t { + border-top-width: 1px !important; } - .\32xl\:ml-3 { - margin-left: 0.75rem !important; + .\32xl\:border-r-0 { + border-right-width: 0px !important; } - .\32xl\:mt-4 { - margin-top: 1rem !important; + .\32xl\:border-r-2 { + border-right-width: 2px !important; } - .\32xl\:mr-4 { - margin-right: 1rem !important; + .\32xl\:border-r-4 { + border-right-width: 4px !important; } - .\32xl\:mb-4 { - margin-bottom: 1rem !important; + .\32xl\:border-r-8 { + border-right-width: 8px !important; } - .\32xl\:ml-4 { - margin-left: 1rem !important; + .\32xl\:border-r { + border-right-width: 1px !important; } - .\32xl\:mt-5 { - margin-top: 1.25rem !important; + .\32xl\:border-b-0 { + border-bottom-width: 0px !important; } - .\32xl\:mr-5 { - margin-right: 1.25rem !important; + .\32xl\:border-b-2 { + border-bottom-width: 2px !important; } - .\32xl\:mb-5 { - margin-bottom: 1.25rem !important; + .\32xl\:border-b-4 { + border-bottom-width: 4px !important; } - .\32xl\:ml-5 { - margin-left: 1.25rem !important; + .\32xl\:border-b-8 { + border-bottom-width: 8px !important; } - .\32xl\:mt-6 { - margin-top: 1.5rem !important; + .\32xl\:border-b { + border-bottom-width: 1px !important; } - .\32xl\:mr-6 { - margin-right: 1.5rem !important; + .\32xl\:border-l-0 { + border-left-width: 0px !important; } - .\32xl\:mb-6 { - margin-bottom: 1.5rem !important; + .\32xl\:border-l-2 { + border-left-width: 2px !important; } - .\32xl\:ml-6 { - margin-left: 1.5rem !important; + .\32xl\:border-l-4 { + border-left-width: 4px !important; } - .\32xl\:mt-7 { - margin-top: 1.75rem !important; + .\32xl\:border-l-8 { + border-left-width: 8px !important; } - .\32xl\:mr-7 { - margin-right: 1.75rem !important; + .\32xl\:border-l { + border-left-width: 1px !important; } - .\32xl\:mb-7 { - margin-bottom: 1.75rem !important; + .\32xl\:border-solid { + border-style: solid !important; } - .\32xl\:ml-7 { - margin-left: 1.75rem !important; + .\32xl\:border-dashed { + border-style: dashed !important; } - .\32xl\:mt-8 { - margin-top: 2rem !important; + .\32xl\:border-dotted { + border-style: dotted !important; } - .\32xl\:mr-8 { - margin-right: 2rem !important; + .\32xl\:border-double { + border-style: double !important; } - .\32xl\:mb-8 { - margin-bottom: 2rem !important; + .\32xl\:border-none { + border-style: none !important; } - .\32xl\:ml-8 { - margin-left: 2rem !important; + .\32xl\:border-transparent { + border-color: transparent !important; } - .\32xl\:mt-9 { - margin-top: 2.25rem !important; + .\32xl\:border-current { + border-color: currentColor !important; } - .\32xl\:mr-9 { - margin-right: 2.25rem !important; + .\32xl\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .\32xl\:mb-9 { - margin-bottom: 2.25rem !important; + .\32xl\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .\32xl\:ml-9 { - margin-left: 2.25rem !important; + .\32xl\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .\32xl\:mt-10 { - margin-top: 2.5rem !important; + .\32xl\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .\32xl\:mr-10 { - margin-right: 2.5rem !important; + .\32xl\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .\32xl\:mb-10 { - margin-bottom: 2.5rem !important; + .\32xl\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .\32xl\:ml-10 { - margin-left: 2.5rem !important; + .\32xl\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .\32xl\:mt-11 { - margin-top: 2.75rem !important; + .\32xl\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .\32xl\:mr-11 { - margin-right: 2.75rem !important; + .\32xl\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .\32xl\:mb-11 { - margin-bottom: 2.75rem !important; + .\32xl\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .\32xl\:ml-11 { - margin-left: 2.75rem !important; + .\32xl\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .\32xl\:mt-12 { - margin-top: 3rem !important; + .\32xl\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .\32xl\:mr-12 { - margin-right: 3rem !important; + .\32xl\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .\32xl\:mb-12 { - margin-bottom: 3rem !important; + .\32xl\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .\32xl\:ml-12 { - margin-left: 3rem !important; + .\32xl\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .\32xl\:mt-14 { - margin-top: 3.5rem !important; + .\32xl\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .\32xl\:mr-14 { - margin-right: 3.5rem !important; + .\32xl\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .\32xl\:mb-14 { - margin-bottom: 3.5rem !important; + .\32xl\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .\32xl\:ml-14 { - margin-left: 3.5rem !important; + .\32xl\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .\32xl\:mt-16 { - margin-top: 4rem !important; + .\32xl\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .\32xl\:mr-16 { - margin-right: 4rem !important; + .\32xl\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .\32xl\:mb-16 { - margin-bottom: 4rem !important; + .\32xl\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .\32xl\:ml-16 { - margin-left: 4rem !important; + .\32xl\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .\32xl\:mt-20 { - margin-top: 5rem !important; + .\32xl\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .\32xl\:mr-20 { - margin-right: 5rem !important; + .\32xl\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .\32xl\:mb-20 { - margin-bottom: 5rem !important; + .\32xl\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .\32xl\:ml-20 { - margin-left: 5rem !important; + .\32xl\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .\32xl\:mt-24 { - margin-top: 6rem !important; + .\32xl\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .\32xl\:mr-24 { - margin-right: 6rem !important; + .\32xl\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .\32xl\:mb-24 { - margin-bottom: 6rem !important; + .\32xl\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .\32xl\:ml-24 { - margin-left: 6rem !important; + .\32xl\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .\32xl\:mt-28 { - margin-top: 7rem !important; + .\32xl\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .\32xl\:mr-28 { - margin-right: 7rem !important; + .\32xl\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .\32xl\:mb-28 { - margin-bottom: 7rem !important; + .\32xl\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .\32xl\:ml-28 { - margin-left: 7rem !important; + .\32xl\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .\32xl\:mt-32 { - margin-top: 8rem !important; + .\32xl\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .\32xl\:mr-32 { - margin-right: 8rem !important; + .\32xl\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .\32xl\:mb-32 { - margin-bottom: 8rem !important; + .\32xl\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .\32xl\:ml-32 { - margin-left: 8rem !important; + .\32xl\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .\32xl\:mt-36 { - margin-top: 9rem !important; + .\32xl\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .\32xl\:mr-36 { - margin-right: 9rem !important; + .\32xl\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .\32xl\:mb-36 { - margin-bottom: 9rem !important; + .\32xl\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .\32xl\:ml-36 { - margin-left: 9rem !important; + .\32xl\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .\32xl\:mt-40 { - margin-top: 10rem !important; + .\32xl\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .\32xl\:mr-40 { - margin-right: 10rem !important; + .\32xl\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .\32xl\:mb-40 { - margin-bottom: 10rem !important; + .\32xl\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .\32xl\:ml-40 { - margin-left: 10rem !important; + .\32xl\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .\32xl\:mt-44 { - margin-top: 11rem !important; + .\32xl\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .\32xl\:mr-44 { - margin-right: 11rem !important; + .\32xl\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .\32xl\:mb-44 { - margin-bottom: 11rem !important; + .\32xl\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .\32xl\:ml-44 { - margin-left: 11rem !important; + .\32xl\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .\32xl\:mt-48 { - margin-top: 12rem !important; + .\32xl\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .\32xl\:mr-48 { - margin-right: 12rem !important; + .\32xl\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .\32xl\:mb-48 { - margin-bottom: 12rem !important; + .\32xl\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .\32xl\:ml-48 { - margin-left: 12rem !important; + .\32xl\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .\32xl\:mt-52 { - margin-top: 13rem !important; + .\32xl\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .\32xl\:mr-52 { - margin-right: 13rem !important; + .\32xl\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .\32xl\:mb-52 { - margin-bottom: 13rem !important; + .\32xl\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .\32xl\:ml-52 { - margin-left: 13rem !important; + .\32xl\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .\32xl\:mt-56 { - margin-top: 14rem !important; + .\32xl\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .\32xl\:mr-56 { - margin-right: 14rem !important; + .\32xl\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .\32xl\:mb-56 { - margin-bottom: 14rem !important; + .\32xl\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .\32xl\:ml-56 { - margin-left: 14rem !important; + .\32xl\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .\32xl\:mt-60 { - margin-top: 15rem !important; + .\32xl\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .\32xl\:mr-60 { - margin-right: 15rem !important; + .\32xl\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .\32xl\:mb-60 { - margin-bottom: 15rem !important; + .\32xl\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .\32xl\:ml-60 { - margin-left: 15rem !important; + .\32xl\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .\32xl\:mt-64 { - margin-top: 16rem !important; + .\32xl\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .\32xl\:mr-64 { - margin-right: 16rem !important; + .\32xl\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .\32xl\:mb-64 { - margin-bottom: 16rem !important; + .\32xl\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .\32xl\:ml-64 { - margin-left: 16rem !important; + .\32xl\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .\32xl\:mt-72 { - margin-top: 18rem !important; + .\32xl\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .\32xl\:mr-72 { - margin-right: 18rem !important; + .\32xl\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .\32xl\:mb-72 { - margin-bottom: 18rem !important; + .\32xl\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .\32xl\:ml-72 { - margin-left: 18rem !important; + .\32xl\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .\32xl\:mt-80 { - margin-top: 20rem !important; + .\32xl\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; + } + + .\32xl\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .\32xl\:mr-80 { - margin-right: 20rem !important; + .\32xl\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .\32xl\:mb-80 { - margin-bottom: 20rem !important; + .\32xl\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .\32xl\:ml-80 { - margin-left: 20rem !important; + .\32xl\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .\32xl\:mt-96 { - margin-top: 24rem !important; + .\32xl\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .\32xl\:mr-96 { - margin-right: 24rem !important; + .\32xl\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .\32xl\:mb-96 { - margin-bottom: 24rem !important; + .group:hover .\32xl\:group-hover\:border-transparent { + border-color: transparent !important; } - .\32xl\:ml-96 { - margin-left: 24rem !important; + .group:hover .\32xl\:group-hover\:border-current { + border-color: currentColor !important; } - .\32xl\:mt-auto { - margin-top: auto !important; + .group:hover .\32xl\:group-hover\:border-black { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .\32xl\:mr-auto { - margin-right: auto !important; + .group:hover .\32xl\:group-hover\:border-white { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .\32xl\:mb-auto { - margin-bottom: auto !important; + .group:hover .\32xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .\32xl\:ml-auto { - margin-left: auto !important; + .group:hover .\32xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .\32xl\:mt-px { - margin-top: 1px !important; + .group:hover .\32xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .\32xl\:mr-px { - margin-right: 1px !important; + .group:hover .\32xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .\32xl\:mb-px { - margin-bottom: 1px !important; + .group:hover .\32xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .\32xl\:ml-px { - margin-left: 1px !important; + .group:hover .\32xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .\32xl\:mt-0\.5 { - margin-top: 0.125rem !important; + .group:hover .\32xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .\32xl\:mr-0\.5 { - margin-right: 0.125rem !important; + .group:hover .\32xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .\32xl\:mb-0\.5 { - margin-bottom: 0.125rem !important; + .group:hover .\32xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .\32xl\:ml-0\.5 { - margin-left: 0.125rem !important; + .group:hover .\32xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .\32xl\:mt-1\.5 { - margin-top: 0.375rem !important; + .group:hover .\32xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .\32xl\:mr-1\.5 { - margin-right: 0.375rem !important; + .group:hover .\32xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .\32xl\:mb-1\.5 { - margin-bottom: 0.375rem !important; + .group:hover .\32xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .\32xl\:ml-1\.5 { - margin-left: 0.375rem !important; + .group:hover .\32xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .\32xl\:mt-2\.5 { - margin-top: 0.625rem !important; + .group:hover .\32xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .\32xl\:mr-2\.5 { - margin-right: 0.625rem !important; + .group:hover .\32xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .\32xl\:mb-2\.5 { - margin-bottom: 0.625rem !important; + .group:hover .\32xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .\32xl\:ml-2\.5 { - margin-left: 0.625rem !important; + .group:hover .\32xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .\32xl\:mt-3\.5 { - margin-top: 0.875rem !important; + .group:hover .\32xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .\32xl\:mr-3\.5 { - margin-right: 0.875rem !important; + .group:hover .\32xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .\32xl\:mb-3\.5 { - margin-bottom: 0.875rem !important; + .group:hover .\32xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .\32xl\:ml-3\.5 { - margin-left: 0.875rem !important; + .group:hover .\32xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-0 { - margin-top: 0px !important; + .group:hover .\32xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-0 { - margin-right: 0px !important; + .group:hover .\32xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-0 { - margin-bottom: 0px !important; + .group:hover .\32xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-0 { - margin-left: 0px !important; + .group:hover .\32xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-1 { - margin-top: -0.25rem !important; + .group:hover .\32xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-1 { - margin-right: -0.25rem !important; + .group:hover .\32xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-1 { - margin-bottom: -0.25rem !important; + .group:hover .\32xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-1 { - margin-left: -0.25rem !important; + .group:hover .\32xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-2 { - margin-top: -0.5rem !important; + .group:hover .\32xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-2 { - margin-right: -0.5rem !important; + .group:hover .\32xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-2 { - margin-bottom: -0.5rem !important; + .group:hover .\32xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-2 { - margin-left: -0.5rem !important; + .group:hover .\32xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-3 { - margin-top: -0.75rem !important; + .group:hover .\32xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-3 { - margin-right: -0.75rem !important; + .group:hover .\32xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-3 { - margin-bottom: -0.75rem !important; + .group:hover .\32xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-3 { - margin-left: -0.75rem !important; + .group:hover .\32xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-4 { - margin-top: -1rem !important; + .group:hover .\32xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-4 { - margin-right: -1rem !important; + .group:hover .\32xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-4 { - margin-bottom: -1rem !important; + .group:hover .\32xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-4 { - margin-left: -1rem !important; + .group:hover .\32xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-5 { - margin-top: -1.25rem !important; + .group:hover .\32xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-5 { - margin-right: -1.25rem !important; + .group:hover .\32xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-5 { - margin-bottom: -1.25rem !important; + .group:hover .\32xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-5 { - margin-left: -1.25rem !important; + .group:hover .\32xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-6 { - margin-top: -1.5rem !important; + .group:hover .\32xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-6 { - margin-right: -1.5rem !important; + .group:hover .\32xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-6 { - margin-bottom: -1.5rem !important; + .group:hover .\32xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-6 { - margin-left: -1.5rem !important; + .group:hover .\32xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-7 { - margin-top: -1.75rem !important; + .group:hover .\32xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-7 { - margin-right: -1.75rem !important; + .group:hover .\32xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-7 { - margin-bottom: -1.75rem !important; + .group:hover .\32xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-7 { - margin-left: -1.75rem !important; + .group:hover .\32xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-8 { - margin-top: -2rem !important; + .group:hover .\32xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-8 { - margin-right: -2rem !important; + .group:hover .\32xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-8 { - margin-bottom: -2rem !important; + .group:hover .\32xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-8 { - margin-left: -2rem !important; + .group:hover .\32xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-9 { - margin-top: -2.25rem !important; + .group:hover .\32xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-9 { - margin-right: -2.25rem !important; + .group:hover .\32xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-9 { - margin-bottom: -2.25rem !important; + .group:hover .\32xl\:group-hover\:border-purple-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-9 { - margin-left: -2.25rem !important; + .group:hover .\32xl\:group-hover\:border-purple-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-10 { - margin-top: -2.5rem !important; + .group:hover .\32xl\:group-hover\:border-purple-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-10 { - margin-right: -2.5rem !important; + .group:hover .\32xl\:group-hover\:border-purple-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-10 { - margin-bottom: -2.5rem !important; + .group:hover .\32xl\:group-hover\:border-purple-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-10 { - margin-left: -2.5rem !important; + .group:hover .\32xl\:group-hover\:border-purple-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-11 { - margin-top: -2.75rem !important; + .group:hover .\32xl\:group-hover\:border-purple-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-11 { - margin-right: -2.75rem !important; + .group:hover .\32xl\:group-hover\:border-purple-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-11 { - margin-bottom: -2.75rem !important; + .group:hover .\32xl\:group-hover\:border-purple-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-11 { - margin-left: -2.75rem !important; + .group:hover .\32xl\:group-hover\:border-purple-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-12 { - margin-top: -3rem !important; + .group:hover .\32xl\:group-hover\:border-pink-50 { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-12 { - margin-right: -3rem !important; + .group:hover .\32xl\:group-hover\:border-pink-100 { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-12 { - margin-bottom: -3rem !important; + .group:hover .\32xl\:group-hover\:border-pink-200 { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-12 { - margin-left: -3rem !important; + .group:hover .\32xl\:group-hover\:border-pink-300 { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-14 { - margin-top: -3.5rem !important; + .group:hover .\32xl\:group-hover\:border-pink-400 { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-14 { - margin-right: -3.5rem !important; + .group:hover .\32xl\:group-hover\:border-pink-500 { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-14 { - margin-bottom: -3.5rem !important; + .group:hover .\32xl\:group-hover\:border-pink-600 { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-14 { - margin-left: -3.5rem !important; + .group:hover .\32xl\:group-hover\:border-pink-700 { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-16 { - margin-top: -4rem !important; + .group:hover .\32xl\:group-hover\:border-pink-800 { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-16 { - margin-right: -4rem !important; + .group:hover .\32xl\:group-hover\:border-pink-900 { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-16 { - margin-bottom: -4rem !important; + .\32xl\:focus-within\:border-transparent:focus-within { + border-color: transparent !important; } - .\32xl\:-ml-16 { - margin-left: -4rem !important; + .\32xl\:focus-within\:border-current:focus-within { + border-color: currentColor !important; } - .\32xl\:-mt-20 { - margin-top: -5rem !important; + .\32xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-20 { - margin-right: -5rem !important; + .\32xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-20 { - margin-bottom: -5rem !important; + .\32xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-20 { - margin-left: -5rem !important; + .\32xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-24 { - margin-top: -6rem !important; + .\32xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-24 { - margin-right: -6rem !important; + .\32xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-24 { - margin-bottom: -6rem !important; + .\32xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-24 { - margin-left: -6rem !important; + .\32xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-28 { - margin-top: -7rem !important; + .\32xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-28 { - margin-right: -7rem !important; + .\32xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-28 { - margin-bottom: -7rem !important; + .\32xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-28 { - margin-left: -7rem !important; + .\32xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-32 { - margin-top: -8rem !important; + .\32xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-32 { - margin-right: -8rem !important; + .\32xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-32 { - margin-bottom: -8rem !important; + .\32xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-32 { - margin-left: -8rem !important; + .\32xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-36 { - margin-top: -9rem !important; + .\32xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-36 { - margin-right: -9rem !important; + .\32xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-36 { - margin-bottom: -9rem !important; + .\32xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-36 { - margin-left: -9rem !important; + .\32xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-40 { - margin-top: -10rem !important; + .\32xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-40 { - margin-right: -10rem !important; + .\32xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-40 { - margin-bottom: -10rem !important; + .\32xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-40 { - margin-left: -10rem !important; + .\32xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-44 { - margin-top: -11rem !important; + .\32xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-44 { - margin-right: -11rem !important; + .\32xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-44 { - margin-bottom: -11rem !important; + .\32xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-44 { - margin-left: -11rem !important; + .\32xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-48 { - margin-top: -12rem !important; + .\32xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-48 { - margin-right: -12rem !important; + .\32xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-48 { - margin-bottom: -12rem !important; + .\32xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-48 { - margin-left: -12rem !important; + .\32xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-52 { - margin-top: -13rem !important; + .\32xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-52 { - margin-right: -13rem !important; + .\32xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-52 { - margin-bottom: -13rem !important; + .\32xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-52 { - margin-left: -13rem !important; + .\32xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-56 { - margin-top: -14rem !important; + .\32xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-56 { - margin-right: -14rem !important; + .\32xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-56 { - margin-bottom: -14rem !important; + .\32xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-56 { - margin-left: -14rem !important; + .\32xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-60 { - margin-top: -15rem !important; + .\32xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-60 { - margin-right: -15rem !important; + .\32xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-60 { - margin-bottom: -15rem !important; + .\32xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-60 { - margin-left: -15rem !important; + .\32xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-64 { - margin-top: -16rem !important; + .\32xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-64 { - margin-right: -16rem !important; + .\32xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-64 { - margin-bottom: -16rem !important; + .\32xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-64 { - margin-left: -16rem !important; + .\32xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-72 { - margin-top: -18rem !important; + .\32xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-72 { - margin-right: -18rem !important; + .\32xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-72 { - margin-bottom: -18rem !important; + .\32xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-72 { - margin-left: -18rem !important; + .\32xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-80 { - margin-top: -20rem !important; + .\32xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-80 { - margin-right: -20rem !important; + .\32xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-80 { - margin-bottom: -20rem !important; + .\32xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-80 { - margin-left: -20rem !important; + .\32xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-96 { - margin-top: -24rem !important; + .\32xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-96 { - margin-right: -24rem !important; + .\32xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-96 { - margin-bottom: -24rem !important; + .\32xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-96 { - margin-left: -24rem !important; + .\32xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-px { - margin-top: -1px !important; + .\32xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-px { - margin-right: -1px !important; + .\32xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-px { - margin-bottom: -1px !important; + .\32xl\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-px { - margin-left: -1px !important; + .\32xl\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-0\.5 { - margin-top: -0.125rem !important; + .\32xl\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-0\.5 { - margin-right: -0.125rem !important; + .\32xl\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-0\.5 { - margin-bottom: -0.125rem !important; + .\32xl\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-0\.5 { - margin-left: -0.125rem !important; + .\32xl\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-1\.5 { - margin-top: -0.375rem !important; + .\32xl\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-1\.5 { - margin-right: -0.375rem !important; + .\32xl\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-1\.5 { - margin-bottom: -0.375rem !important; + .\32xl\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-1\.5 { - margin-left: -0.375rem !important; + .\32xl\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-2\.5 { - margin-top: -0.625rem !important; + .\32xl\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-2\.5 { - margin-right: -0.625rem !important; + .\32xl\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-2\.5 { - margin-bottom: -0.625rem !important; + .\32xl\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-2\.5 { - margin-left: -0.625rem !important; + .\32xl\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .\32xl\:-mt-3\.5 { - margin-top: -0.875rem !important; + .\32xl\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .\32xl\:-mr-3\.5 { - margin-right: -0.875rem !important; + .\32xl\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .\32xl\:-mb-3\.5 { - margin-bottom: -0.875rem !important; + .\32xl\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .\32xl\:-ml-3\.5 { - margin-left: -0.875rem !important; + .\32xl\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-0 { - max-height: 0px !important; + .\32xl\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-1 { - max-height: 0.25rem !important; + .\32xl\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-2 { - max-height: 0.5rem !important; + .\32xl\:hover\:border-transparent:hover { + border-color: transparent !important; } - .\32xl\:max-h-3 { - max-height: 0.75rem !important; + .\32xl\:hover\:border-current:hover { + border-color: currentColor !important; } - .\32xl\:max-h-4 { - max-height: 1rem !important; + .\32xl\:hover\:border-black:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-5 { - max-height: 1.25rem !important; + .\32xl\:hover\:border-white:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-6 { - max-height: 1.5rem !important; + .\32xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-7 { - max-height: 1.75rem !important; + .\32xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-8 { - max-height: 2rem !important; + .\32xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-9 { - max-height: 2.25rem !important; + .\32xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-10 { - max-height: 2.5rem !important; + .\32xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-11 { - max-height: 2.75rem !important; + .\32xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-12 { - max-height: 3rem !important; + .\32xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-14 { - max-height: 3.5rem !important; + .\32xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-16 { - max-height: 4rem !important; + .\32xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-20 { - max-height: 5rem !important; + .\32xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-24 { - max-height: 6rem !important; + .\32xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-28 { - max-height: 7rem !important; + .\32xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-32 { - max-height: 8rem !important; + .\32xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-36 { - max-height: 9rem !important; + .\32xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-40 { - max-height: 10rem !important; + .\32xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-44 { - max-height: 11rem !important; + .\32xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-48 { - max-height: 12rem !important; + .\32xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-52 { - max-height: 13rem !important; + .\32xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-56 { - max-height: 14rem !important; + .\32xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-60 { - max-height: 15rem !important; + .\32xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-64 { - max-height: 16rem !important; + .\32xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-72 { - max-height: 18rem !important; + .\32xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-80 { - max-height: 20rem !important; + .\32xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-96 { - max-height: 24rem !important; + .\32xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-px { - max-height: 1px !important; + .\32xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-0\.5 { - max-height: 0.125rem !important; + .\32xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-1\.5 { - max-height: 0.375rem !important; + .\32xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-2\.5 { - max-height: 0.625rem !important; + .\32xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-3\.5 { - max-height: 0.875rem !important; + .\32xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-full { - max-height: 100% !important; + .\32xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .\32xl\:max-h-screen { - max-height: 100vh !important; + .\32xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-0 { - max-width: 0rem !important; + .\32xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-none { - max-width: none !important; + .\32xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-xs { - max-width: 20rem !important; + .\32xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-sm { - max-width: 24rem !important; + .\32xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-md { - max-width: 28rem !important; + .\32xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-lg { - max-width: 32rem !important; + .\32xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-xl { - max-width: 36rem !important; + .\32xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-2xl { - max-width: 42rem !important; + .\32xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-3xl { - max-width: 48rem !important; + .\32xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-4xl { - max-width: 56rem !important; + .\32xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-5xl { - max-width: 64rem !important; + .\32xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-6xl { - max-width: 72rem !important; + .\32xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-7xl { - max-width: 80rem !important; + .\32xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-full { - max-width: 100% !important; + .\32xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-min { - max-width: min-content !important; + .\32xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-max { - max-width: max-content !important; + .\32xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-prose { - max-width: 65ch !important; + .\32xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-screen-sm { - max-width: 640px !important; + .\32xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-screen-md { - max-width: 768px !important; + .\32xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-screen-lg { - max-width: 1024px !important; + .\32xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-screen-xl { - max-width: 1280px !important; + .\32xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .\32xl\:max-w-screen-2xl { - max-width: 1536px !important; + .\32xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .\32xl\:min-h-0 { - min-height: 0px !important; + .\32xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .\32xl\:min-h-full { - min-height: 100% !important; + .\32xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .\32xl\:min-h-screen { - min-height: 100vh !important; + .\32xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .\32xl\:min-w-0 { - min-width: 0px !important; + .\32xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .\32xl\:min-w-full { - min-width: 100% !important; + .\32xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .\32xl\:min-w-min { - min-width: min-content !important; + .\32xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .\32xl\:min-w-max { - min-width: max-content !important; + .\32xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .\32xl\:object-contain { - object-fit: contain !important; + .\32xl\:hover\:border-purple-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .\32xl\:object-cover { - object-fit: cover !important; + .\32xl\:hover\:border-purple-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .\32xl\:object-fill { - object-fit: fill !important; + .\32xl\:hover\:border-purple-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .\32xl\:object-none { - object-fit: none !important; + .\32xl\:hover\:border-purple-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .\32xl\:object-scale-down { - object-fit: scale-down !important; + .\32xl\:hover\:border-purple-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .\32xl\:object-bottom { - object-position: bottom !important; + .\32xl\:hover\:border-purple-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .\32xl\:object-center { - object-position: center !important; + .\32xl\:hover\:border-purple-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .\32xl\:object-left { - object-position: left !important; + .\32xl\:hover\:border-purple-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .\32xl\:object-left-bottom { - object-position: left bottom !important; + .\32xl\:hover\:border-purple-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .\32xl\:object-left-top { - object-position: left top !important; + .\32xl\:hover\:border-purple-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .\32xl\:object-right { - object-position: right !important; + .\32xl\:hover\:border-pink-50:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .\32xl\:object-right-bottom { - object-position: right bottom !important; + .\32xl\:hover\:border-pink-100:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .\32xl\:object-right-top { - object-position: right top !important; + .\32xl\:hover\:border-pink-200:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .\32xl\:object-top { - object-position: top !important; + .\32xl\:hover\:border-pink-300:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-0 { - opacity: 0 !important; + .\32xl\:hover\:border-pink-400:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-5 { - opacity: 0.05 !important; + .\32xl\:hover\:border-pink-500:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-10 { - opacity: 0.1 !important; + .\32xl\:hover\:border-pink-600:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-20 { - opacity: 0.2 !important; + .\32xl\:hover\:border-pink-700:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-25 { - opacity: 0.25 !important; + .\32xl\:hover\:border-pink-800:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-30 { - opacity: 0.3 !important; + .\32xl\:hover\:border-pink-900:hover { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-40 { - opacity: 0.4 !important; + .\32xl\:focus\:border-transparent:focus { + border-color: transparent !important; } - .\32xl\:opacity-50 { - opacity: 0.5 !important; + .\32xl\:focus\:border-current:focus { + border-color: currentColor !important; } - .\32xl\:opacity-60 { - opacity: 0.6 !important; + .\32xl\:focus\:border-black:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-70 { - opacity: 0.7 !important; + .\32xl\:focus\:border-white:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-75 { - opacity: 0.75 !important; + .\32xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-80 { - opacity: 0.8 !important; + .\32xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-90 { - opacity: 0.9 !important; + .\32xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-95 { - opacity: 0.95 !important; + .\32xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)) !important; } - .\32xl\:opacity-100 { - opacity: 1 !important; + .\32xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-0 { - opacity: 0 !important; + .\32xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-5 { - opacity: 0.05 !important; + .\32xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-10 { - opacity: 0.1 !important; + .\32xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-20 { - opacity: 0.2 !important; + .\32xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-25 { - opacity: 0.25 !important; + .\32xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-30 { - opacity: 0.3 !important; + .\32xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-40 { - opacity: 0.4 !important; + .\32xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-50 { - opacity: 0.5 !important; + .\32xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-60 { - opacity: 0.6 !important; + .\32xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-70 { - opacity: 0.7 !important; + .\32xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-75 { - opacity: 0.75 !important; + .\32xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-80 { - opacity: 0.8 !important; + .\32xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-90 { - opacity: 0.9 !important; + .\32xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-95 { - opacity: 0.95 !important; + .\32xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)) !important; } - .group:hover .\32xl\:group-hover\:opacity-100 { - opacity: 1 !important; + .\32xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-0:focus-within { - opacity: 0 !important; + .\32xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-5:focus-within { - opacity: 0.05 !important; + .\32xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-10:focus-within { - opacity: 0.1 !important; + .\32xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-20:focus-within { - opacity: 0.2 !important; + .\32xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-25:focus-within { - opacity: 0.25 !important; + .\32xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-30:focus-within { - opacity: 0.3 !important; + .\32xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-40:focus-within { - opacity: 0.4 !important; + .\32xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-50:focus-within { - opacity: 0.5 !important; + .\32xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-60:focus-within { - opacity: 0.6 !important; + .\32xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-70:focus-within { - opacity: 0.7 !important; + .\32xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-75:focus-within { - opacity: 0.75 !important; + .\32xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-80:focus-within { - opacity: 0.8 !important; + .\32xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-90:focus-within { - opacity: 0.9 !important; + .\32xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-95:focus-within { - opacity: 0.95 !important; + .\32xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:opacity-100:focus-within { - opacity: 1 !important; + .\32xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-0:hover { - opacity: 0 !important; + .\32xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-5:hover { - opacity: 0.05 !important; + .\32xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-10:hover { - opacity: 0.1 !important; + .\32xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-20:hover { - opacity: 0.2 !important; + .\32xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-25:hover { - opacity: 0.25 !important; + .\32xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-30:hover { - opacity: 0.3 !important; + .\32xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-40:hover { - opacity: 0.4 !important; + .\32xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-50:hover { - opacity: 0.5 !important; + .\32xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-60:hover { - opacity: 0.6 !important; + .\32xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-70:hover { - opacity: 0.7 !important; + .\32xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-75:hover { - opacity: 0.75 !important; + .\32xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-80:hover { - opacity: 0.8 !important; + .\32xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-90:hover { - opacity: 0.9 !important; + .\32xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-95:hover { - opacity: 0.95 !important; + .\32xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)) !important; } - .\32xl\:hover\:opacity-100:hover { - opacity: 1 !important; + .\32xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-0:focus { - opacity: 0 !important; + .\32xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-5:focus { - opacity: 0.05 !important; + .\32xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-10:focus { - opacity: 0.1 !important; + .\32xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-20:focus { - opacity: 0.2 !important; + .\32xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-25:focus { - opacity: 0.25 !important; + .\32xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-30:focus { - opacity: 0.3 !important; + .\32xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-40:focus { - opacity: 0.4 !important; + .\32xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-50:focus { - opacity: 0.5 !important; + .\32xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-60:focus { - opacity: 0.6 !important; + .\32xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-70:focus { - opacity: 0.7 !important; + .\32xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-75:focus { - opacity: 0.75 !important; + .\32xl\:focus\:border-purple-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-80:focus { - opacity: 0.8 !important; + .\32xl\:focus\:border-purple-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-90:focus { - opacity: 0.9 !important; + .\32xl\:focus\:border-purple-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-95:focus { - opacity: 0.95 !important; + .\32xl\:focus\:border-purple-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:opacity-100:focus { - opacity: 1 !important; + .\32xl\:focus\:border-purple-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)) !important; } - .\32xl\:outline-none { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .\32xl\:focus\:border-purple-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)) !important; } - .\32xl\:outline-white { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .\32xl\:focus\:border-purple-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)) !important; } - .\32xl\:outline-black { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .\32xl\:focus\:border-purple-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .\32xl\:focus\:border-purple-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:outline-white:focus-within { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .\32xl\:focus\:border-purple-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)) !important; } - .\32xl\:focus-within\:outline-black:focus-within { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .\32xl\:focus\:border-pink-50:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:outline-none:focus { - outline: 2px solid transparent !important; - outline-offset: 2px !important; + .\32xl\:focus\:border-pink-100:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:outline-white:focus { - outline: 2px dotted white !important; - outline-offset: 2px !important; + .\32xl\:focus\:border-pink-200:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)) !important; } - .\32xl\:focus\:outline-black:focus { - outline: 2px dotted black !important; - outline-offset: 2px !important; + .\32xl\:focus\:border-pink-300:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)) !important; } - .\32xl\:overflow-auto { - overflow: auto !important; + .\32xl\:focus\:border-pink-400:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)) !important; } - .\32xl\:overflow-hidden { - overflow: hidden !important; + .\32xl\:focus\:border-pink-500:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)) !important; } - .\32xl\:overflow-visible { - overflow: visible !important; + .\32xl\:focus\:border-pink-600:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)) !important; } - .\32xl\:overflow-scroll { - overflow: scroll !important; + .\32xl\:focus\:border-pink-700:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)) !important; } - .\32xl\:overflow-x-auto { - overflow-x: auto !important; + .\32xl\:focus\:border-pink-800:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)) !important; } - .\32xl\:overflow-y-auto { - overflow-y: auto !important; + .\32xl\:focus\:border-pink-900:focus { + --tw-border-opacity: 1 !important; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)) !important; } - .\32xl\:overflow-x-hidden { - overflow-x: hidden !important; + .\32xl\:border-opacity-0 { + --tw-border-opacity: 0 !important; } - .\32xl\:overflow-y-hidden { - overflow-y: hidden !important; + .\32xl\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; } - .\32xl\:overflow-x-visible { - overflow-x: visible !important; + .\32xl\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; } - .\32xl\:overflow-y-visible { - overflow-y: visible !important; + .\32xl\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; } - .\32xl\:overflow-x-scroll { - overflow-x: scroll !important; + .\32xl\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; } - .\32xl\:overflow-y-scroll { - overflow-y: scroll !important; + .\32xl\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; } - .\32xl\:overscroll-auto { - overscroll-behavior: auto !important; + .\32xl\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; } - .\32xl\:overscroll-contain { - overscroll-behavior: contain !important; + .\32xl\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; } - .\32xl\:overscroll-none { - overscroll-behavior: none !important; + .\32xl\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; } - .\32xl\:overscroll-y-auto { - overscroll-behavior-y: auto !important; + .\32xl\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; } - .\32xl\:overscroll-y-contain { - overscroll-behavior-y: contain !important; + .\32xl\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; } - .\32xl\:overscroll-y-none { - overscroll-behavior-y: none !important; + .\32xl\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; } - .\32xl\:overscroll-x-auto { - overscroll-behavior-x: auto !important; + .\32xl\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; } - .\32xl\:overscroll-x-contain { - overscroll-behavior-x: contain !important; + .\32xl\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; } - .\32xl\:overscroll-x-none { - overscroll-behavior-x: none !important; + .\32xl\:border-opacity-100 { + --tw-border-opacity: 1 !important; } - .\32xl\:p-0 { - padding: 0px !important; + .group:hover .\32xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0 !important; } - .\32xl\:p-1 { - padding: 0.25rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05 !important; } - .\32xl\:p-2 { - padding: 0.5rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1 !important; } - .\32xl\:p-3 { - padding: 0.75rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2 !important; } - .\32xl\:p-4 { - padding: 1rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25 !important; } - .\32xl\:p-5 { - padding: 1.25rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3 !important; } - .\32xl\:p-6 { - padding: 1.5rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4 !important; } - .\32xl\:p-7 { - padding: 1.75rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5 !important; } - .\32xl\:p-8 { - padding: 2rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6 !important; } - .\32xl\:p-9 { - padding: 2.25rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7 !important; } - .\32xl\:p-10 { - padding: 2.5rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75 !important; } - .\32xl\:p-11 { - padding: 2.75rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8 !important; } - .\32xl\:p-12 { - padding: 3rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9 !important; } - .\32xl\:p-14 { - padding: 3.5rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95 !important; } - .\32xl\:p-16 { - padding: 4rem !important; + .group:hover .\32xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1 !important; } - .\32xl\:p-20 { - padding: 5rem !important; + .\32xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0 !important; } - .\32xl\:p-24 { - padding: 6rem !important; + .\32xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05 !important; } - .\32xl\:p-28 { - padding: 7rem !important; + .\32xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1 !important; } - .\32xl\:p-32 { - padding: 8rem !important; + .\32xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2 !important; } - .\32xl\:p-36 { - padding: 9rem !important; + .\32xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25 !important; } - .\32xl\:p-40 { - padding: 10rem !important; + .\32xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3 !important; } - .\32xl\:p-44 { - padding: 11rem !important; + .\32xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4 !important; } - .\32xl\:p-48 { - padding: 12rem !important; + .\32xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5 !important; } - .\32xl\:p-52 { - padding: 13rem !important; + .\32xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6 !important; } - .\32xl\:p-56 { - padding: 14rem !important; + .\32xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7 !important; } - .\32xl\:p-60 { - padding: 15rem !important; + .\32xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75 !important; } - .\32xl\:p-64 { - padding: 16rem !important; + .\32xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8 !important; } - .\32xl\:p-72 { - padding: 18rem !important; + .\32xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9 !important; } - .\32xl\:p-80 { - padding: 20rem !important; + .\32xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95 !important; } - .\32xl\:p-96 { - padding: 24rem !important; + .\32xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1 !important; } - .\32xl\:p-px { - padding: 1px !important; + .\32xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0 !important; } - .\32xl\:p-0\.5 { - padding: 0.125rem !important; + .\32xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05 !important; } - .\32xl\:p-1\.5 { - padding: 0.375rem !important; + .\32xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1 !important; } - .\32xl\:p-2\.5 { - padding: 0.625rem !important; + .\32xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2 !important; } - .\32xl\:p-3\.5 { - padding: 0.875rem !important; + .\32xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25 !important; } - .\32xl\:py-0 { - padding-top: 0px !important; - padding-bottom: 0px !important; + .\32xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3 !important; } - .\32xl\:px-0 { - padding-left: 0px !important; - padding-right: 0px !important; + .\32xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4 !important; } - .\32xl\:py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; + .\32xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5 !important; } - .\32xl\:px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; + .\32xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6 !important; } - .\32xl\:py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; + .\32xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7 !important; } - .\32xl\:px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; + .\32xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75 !important; } - .\32xl\:py-3 { - padding-top: 0.75rem !important; - padding-bottom: 0.75rem !important; + .\32xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8 !important; } - .\32xl\:px-3 { - padding-left: 0.75rem !important; - padding-right: 0.75rem !important; + .\32xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9 !important; } - .\32xl\:py-4 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; + .\32xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95 !important; } - .\32xl\:px-4 { - padding-left: 1rem !important; - padding-right: 1rem !important; + .\32xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1 !important; } - .\32xl\:py-5 { - padding-top: 1.25rem !important; - padding-bottom: 1.25rem !important; + .\32xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0 !important; } - .\32xl\:px-5 { - padding-left: 1.25rem !important; - padding-right: 1.25rem !important; + .\32xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05 !important; } - .\32xl\:py-6 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; + .\32xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1 !important; } - .\32xl\:px-6 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; + .\32xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2 !important; } - .\32xl\:py-7 { - padding-top: 1.75rem !important; - padding-bottom: 1.75rem !important; + .\32xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25 !important; } - .\32xl\:px-7 { - padding-left: 1.75rem !important; - padding-right: 1.75rem !important; + .\32xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3 !important; } - .\32xl\:py-8 { - padding-top: 2rem !important; - padding-bottom: 2rem !important; + .\32xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4 !important; } - .\32xl\:px-8 { - padding-left: 2rem !important; - padding-right: 2rem !important; + .\32xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5 !important; } - .\32xl\:py-9 { - padding-top: 2.25rem !important; - padding-bottom: 2.25rem !important; + .\32xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6 !important; } - .\32xl\:px-9 { - padding-left: 2.25rem !important; - padding-right: 2.25rem !important; + .\32xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7 !important; } - .\32xl\:py-10 { - padding-top: 2.5rem !important; - padding-bottom: 2.5rem !important; + .\32xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75 !important; } - .\32xl\:px-10 { - padding-left: 2.5rem !important; - padding-right: 2.5rem !important; + .\32xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8 !important; } - .\32xl\:py-11 { - padding-top: 2.75rem !important; - padding-bottom: 2.75rem !important; + .\32xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9 !important; } - .\32xl\:px-11 { - padding-left: 2.75rem !important; - padding-right: 2.75rem !important; + .\32xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95 !important; } - .\32xl\:py-12 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; + .\32xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1 !important; } - .\32xl\:px-12 { - padding-left: 3rem !important; - padding-right: 3rem !important; + .\32xl\:bg-transparent { + background-color: transparent !important; } - .\32xl\:py-14 { - padding-top: 3.5rem !important; - padding-bottom: 3.5rem !important; + .\32xl\:bg-current { + background-color: currentColor !important; } - .\32xl\:px-14 { - padding-left: 3.5rem !important; - padding-right: 3.5rem !important; + .\32xl\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .\32xl\:py-16 { - padding-top: 4rem !important; - padding-bottom: 4rem !important; + .\32xl\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:px-16 { - padding-left: 4rem !important; - padding-right: 4rem !important; + .\32xl\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .\32xl\:py-20 { - padding-top: 5rem !important; - padding-bottom: 5rem !important; + .\32xl\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:px-20 { - padding-left: 5rem !important; - padding-right: 5rem !important; + .\32xl\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:py-24 { - padding-top: 6rem !important; - padding-bottom: 6rem !important; + .\32xl\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .\32xl\:px-24 { - padding-left: 6rem !important; - padding-right: 6rem !important; + .\32xl\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .\32xl\:py-28 { - padding-top: 7rem !important; - padding-bottom: 7rem !important; + .\32xl\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .\32xl\:px-28 { - padding-left: 7rem !important; - padding-right: 7rem !important; + .\32xl\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .\32xl\:py-32 { - padding-top: 8rem !important; - padding-bottom: 8rem !important; + .\32xl\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .\32xl\:px-32 { - padding-left: 8rem !important; - padding-right: 8rem !important; + .\32xl\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .\32xl\:py-36 { - padding-top: 9rem !important; - padding-bottom: 9rem !important; + .\32xl\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .\32xl\:px-36 { - padding-left: 9rem !important; - padding-right: 9rem !important; + .\32xl\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .\32xl\:py-40 { - padding-top: 10rem !important; - padding-bottom: 10rem !important; + .\32xl\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .\32xl\:px-40 { - padding-left: 10rem !important; - padding-right: 10rem !important; + .\32xl\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .\32xl\:py-44 { - padding-top: 11rem !important; - padding-bottom: 11rem !important; + .\32xl\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .\32xl\:px-44 { - padding-left: 11rem !important; - padding-right: 11rem !important; + .\32xl\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .\32xl\:py-48 { - padding-top: 12rem !important; - padding-bottom: 12rem !important; + .\32xl\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .\32xl\:px-48 { - padding-left: 12rem !important; - padding-right: 12rem !important; + .\32xl\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .\32xl\:py-52 { - padding-top: 13rem !important; - padding-bottom: 13rem !important; + .\32xl\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .\32xl\:px-52 { - padding-left: 13rem !important; - padding-right: 13rem !important; + .\32xl\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .\32xl\:py-56 { - padding-top: 14rem !important; - padding-bottom: 14rem !important; + .\32xl\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .\32xl\:px-56 { - padding-left: 14rem !important; - padding-right: 14rem !important; + .\32xl\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:py-60 { - padding-top: 15rem !important; - padding-bottom: 15rem !important; + .\32xl\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .\32xl\:px-60 { - padding-left: 15rem !important; - padding-right: 15rem !important; + .\32xl\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .\32xl\:py-64 { - padding-top: 16rem !important; - padding-bottom: 16rem !important; + .\32xl\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .\32xl\:px-64 { - padding-left: 16rem !important; - padding-right: 16rem !important; + .\32xl\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .\32xl\:py-72 { - padding-top: 18rem !important; - padding-bottom: 18rem !important; + .\32xl\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .\32xl\:px-72 { - padding-left: 18rem !important; - padding-right: 18rem !important; + .\32xl\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .\32xl\:py-80 { - padding-top: 20rem !important; - padding-bottom: 20rem !important; + .\32xl\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .\32xl\:px-80 { - padding-left: 20rem !important; - padding-right: 20rem !important; + .\32xl\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .\32xl\:py-96 { - padding-top: 24rem !important; - padding-bottom: 24rem !important; + .\32xl\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .\32xl\:px-96 { - padding-left: 24rem !important; - padding-right: 24rem !important; + .\32xl\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .\32xl\:py-px { - padding-top: 1px !important; - padding-bottom: 1px !important; + .\32xl\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .\32xl\:px-px { - padding-left: 1px !important; - padding-right: 1px !important; + .\32xl\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .\32xl\:py-0\.5 { - padding-top: 0.125rem !important; - padding-bottom: 0.125rem !important; + .\32xl\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .\32xl\:px-0\.5 { - padding-left: 0.125rem !important; - padding-right: 0.125rem !important; + .\32xl\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .\32xl\:py-1\.5 { - padding-top: 0.375rem !important; - padding-bottom: 0.375rem !important; + .\32xl\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .\32xl\:px-1\.5 { - padding-left: 0.375rem !important; - padding-right: 0.375rem !important; + .\32xl\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .\32xl\:py-2\.5 { - padding-top: 0.625rem !important; - padding-bottom: 0.625rem !important; + .\32xl\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .\32xl\:px-2\.5 { - padding-left: 0.625rem !important; - padding-right: 0.625rem !important; + .\32xl\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .\32xl\:py-3\.5 { - padding-top: 0.875rem !important; - padding-bottom: 0.875rem !important; + .\32xl\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .\32xl\:px-3\.5 { - padding-left: 0.875rem !important; - padding-right: 0.875rem !important; + .\32xl\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-0 { - padding-top: 0px !important; + .\32xl\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-0 { - padding-right: 0px !important; + .\32xl\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-0 { - padding-bottom: 0px !important; + .\32xl\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-0 { - padding-left: 0px !important; + .\32xl\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-1 { - padding-top: 0.25rem !important; + .\32xl\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-1 { - padding-right: 0.25rem !important; + .\32xl\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-1 { - padding-bottom: 0.25rem !important; + .\32xl\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-1 { - padding-left: 0.25rem !important; + .\32xl\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-2 { - padding-top: 0.5rem !important; + .\32xl\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-2 { - padding-right: 0.5rem !important; + .\32xl\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-2 { - padding-bottom: 0.5rem !important; + .\32xl\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-2 { - padding-left: 0.5rem !important; + .\32xl\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-3 { - padding-top: 0.75rem !important; + .\32xl\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-3 { - padding-right: 0.75rem !important; + .\32xl\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-3 { - padding-bottom: 0.75rem !important; + .\32xl\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-3 { - padding-left: 0.75rem !important; + .\32xl\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-4 { - padding-top: 1rem !important; + .\32xl\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-4 { - padding-right: 1rem !important; + .\32xl\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-4 { - padding-bottom: 1rem !important; + .\32xl\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-4 { - padding-left: 1rem !important; + .\32xl\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-5 { - padding-top: 1.25rem !important; + .\32xl\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-5 { - padding-right: 1.25rem !important; + .\32xl\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-5 { - padding-bottom: 1.25rem !important; + .\32xl\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-5 { - padding-left: 1.25rem !important; + .\32xl\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-6 { - padding-top: 1.5rem !important; + .\32xl\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-6 { - padding-right: 1.5rem !important; + .\32xl\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-6 { - padding-bottom: 1.5rem !important; + .\32xl\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-6 { - padding-left: 1.5rem !important; + .\32xl\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-7 { - padding-top: 1.75rem !important; + .\32xl\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-7 { - padding-right: 1.75rem !important; + .\32xl\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-7 { - padding-bottom: 1.75rem !important; + .\32xl\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-7 { - padding-left: 1.75rem !important; + .\32xl\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-8 { - padding-top: 2rem !important; + .\32xl\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-8 { - padding-right: 2rem !important; + .\32xl\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-8 { - padding-bottom: 2rem !important; + .\32xl\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-8 { - padding-left: 2rem !important; + .\32xl\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-9 { - padding-top: 2.25rem !important; + .\32xl\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-9 { - padding-right: 2.25rem !important; + .\32xl\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-9 { - padding-bottom: 2.25rem !important; + .\32xl\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-9 { - padding-left: 2.25rem !important; + .group:hover .\32xl\:group-hover\:bg-transparent { + background-color: transparent !important; } - .\32xl\:pt-10 { - padding-top: 2.5rem !important; + .group:hover .\32xl\:group-hover\:bg-current { + background-color: currentColor !important; } - .\32xl\:pr-10 { - padding-right: 2.5rem !important; + .group:hover .\32xl\:group-hover\:bg-black { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-10 { - padding-bottom: 2.5rem !important; + .group:hover .\32xl\:group-hover\:bg-white { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-10 { - padding-left: 2.5rem !important; + .group:hover .\32xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-11 { - padding-top: 2.75rem !important; + .group:hover .\32xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-11 { - padding-right: 2.75rem !important; + .group:hover .\32xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-11 { - padding-bottom: 2.75rem !important; + .group:hover .\32xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-11 { - padding-left: 2.75rem !important; + .group:hover .\32xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-12 { - padding-top: 3rem !important; + .group:hover .\32xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-12 { - padding-right: 3rem !important; + .group:hover .\32xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-12 { - padding-bottom: 3rem !important; + .group:hover .\32xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-12 { - padding-left: 3rem !important; + .group:hover .\32xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-14 { - padding-top: 3.5rem !important; + .group:hover .\32xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-14 { - padding-right: 3.5rem !important; + .group:hover .\32xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-14 { - padding-bottom: 3.5rem !important; + .group:hover .\32xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-14 { - padding-left: 3.5rem !important; + .group:hover .\32xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-16 { - padding-top: 4rem !important; + .group:hover .\32xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-16 { - padding-right: 4rem !important; + .group:hover .\32xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-16 { - padding-bottom: 4rem !important; + .group:hover .\32xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-16 { - padding-left: 4rem !important; + .group:hover .\32xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-20 { - padding-top: 5rem !important; + .group:hover .\32xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-20 { - padding-right: 5rem !important; + .group:hover .\32xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-20 { - padding-bottom: 5rem !important; + .group:hover .\32xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-20 { - padding-left: 5rem !important; + .group:hover .\32xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-24 { - padding-top: 6rem !important; + .group:hover .\32xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-24 { - padding-right: 6rem !important; + .group:hover .\32xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-24 { - padding-bottom: 6rem !important; + .group:hover .\32xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-24 { - padding-left: 6rem !important; + .group:hover .\32xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-28 { - padding-top: 7rem !important; + .group:hover .\32xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-28 { - padding-right: 7rem !important; + .group:hover .\32xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-28 { - padding-bottom: 7rem !important; + .group:hover .\32xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-28 { - padding-left: 7rem !important; + .group:hover .\32xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-32 { - padding-top: 8rem !important; + .group:hover .\32xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-32 { - padding-right: 8rem !important; + .group:hover .\32xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-32 { - padding-bottom: 8rem !important; + .group:hover .\32xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-32 { - padding-left: 8rem !important; + .group:hover .\32xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-36 { - padding-top: 9rem !important; + .group:hover .\32xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-36 { - padding-right: 9rem !important; + .group:hover .\32xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-36 { - padding-bottom: 9rem !important; + .group:hover .\32xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-36 { - padding-left: 9rem !important; + .group:hover .\32xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-40 { - padding-top: 10rem !important; + .group:hover .\32xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-40 { - padding-right: 10rem !important; + .group:hover .\32xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-40 { - padding-bottom: 10rem !important; + .group:hover .\32xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-40 { - padding-left: 10rem !important; + .group:hover .\32xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-44 { - padding-top: 11rem !important; + .group:hover .\32xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-44 { - padding-right: 11rem !important; + .group:hover .\32xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-44 { - padding-bottom: 11rem !important; + .group:hover .\32xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-44 { - padding-left: 11rem !important; + .group:hover .\32xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-48 { - padding-top: 12rem !important; + .group:hover .\32xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-48 { - padding-right: 12rem !important; + .group:hover .\32xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-48 { - padding-bottom: 12rem !important; + .group:hover .\32xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-48 { - padding-left: 12rem !important; + .group:hover .\32xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-52 { - padding-top: 13rem !important; + .group:hover .\32xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-52 { - padding-right: 13rem !important; + .group:hover .\32xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-52 { - padding-bottom: 13rem !important; + .group:hover .\32xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-52 { - padding-left: 13rem !important; + .group:hover .\32xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-56 { - padding-top: 14rem !important; + .group:hover .\32xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-56 { - padding-right: 14rem !important; + .group:hover .\32xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-56 { - padding-bottom: 14rem !important; + .group:hover .\32xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-56 { - padding-left: 14rem !important; + .group:hover .\32xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-60 { - padding-top: 15rem !important; + .group:hover .\32xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-60 { - padding-right: 15rem !important; + .group:hover .\32xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-60 { - padding-bottom: 15rem !important; + .group:hover .\32xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-60 { - padding-left: 15rem !important; + .group:hover .\32xl\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-64 { - padding-top: 16rem !important; + .group:hover .\32xl\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-64 { - padding-right: 16rem !important; + .group:hover .\32xl\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-64 { - padding-bottom: 16rem !important; + .group:hover .\32xl\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-64 { - padding-left: 16rem !important; + .group:hover .\32xl\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-72 { - padding-top: 18rem !important; + .group:hover .\32xl\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-72 { - padding-right: 18rem !important; + .group:hover .\32xl\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-72 { - padding-bottom: 18rem !important; + .group:hover .\32xl\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-72 { - padding-left: 18rem !important; + .group:hover .\32xl\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-80 { - padding-top: 20rem !important; + .group:hover .\32xl\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-80 { - padding-right: 20rem !important; + .group:hover .\32xl\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-80 { - padding-bottom: 20rem !important; + .group:hover .\32xl\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-80 { - padding-left: 20rem !important; + .group:hover .\32xl\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-96 { - padding-top: 24rem !important; + .group:hover .\32xl\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-96 { - padding-right: 24rem !important; + .group:hover .\32xl\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-96 { - padding-bottom: 24rem !important; + .group:hover .\32xl\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-96 { - padding-left: 24rem !important; + .group:hover .\32xl\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-px { - padding-top: 1px !important; + .group:hover .\32xl\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-px { - padding-right: 1px !important; + .group:hover .\32xl\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-px { - padding-bottom: 1px !important; + .group:hover .\32xl\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-px { - padding-left: 1px !important; + .\32xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent !important; } - .\32xl\:pt-0\.5 { - padding-top: 0.125rem !important; + .\32xl\:focus-within\:bg-current:focus-within { + background-color: currentColor !important; } - .\32xl\:pr-0\.5 { - padding-right: 0.125rem !important; + .\32xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-0\.5 { - padding-bottom: 0.125rem !important; + .\32xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-0\.5 { - padding-left: 0.125rem !important; + .\32xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-1\.5 { - padding-top: 0.375rem !important; + .\32xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-1\.5 { - padding-right: 0.375rem !important; + .\32xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-1\.5 { - padding-bottom: 0.375rem !important; + .\32xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-1\.5 { - padding-left: 0.375rem !important; + .\32xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-2\.5 { - padding-top: 0.625rem !important; + .\32xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-2\.5 { - padding-right: 0.625rem !important; + .\32xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-2\.5 { - padding-bottom: 0.625rem !important; + .\32xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-2\.5 { - padding-left: 0.625rem !important; + .\32xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .\32xl\:pt-3\.5 { - padding-top: 0.875rem !important; + .\32xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .\32xl\:pr-3\.5 { - padding-right: 0.875rem !important; + .\32xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .\32xl\:pb-3\.5 { - padding-bottom: 0.875rem !important; + .\32xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .\32xl\:pl-3\.5 { - padding-left: 0.875rem !important; + .\32xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-transparent::placeholder { - color: transparent !important; + .\32xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-current::placeholder { - color: currentColor !important; + .\32xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-transparent:hover { + background-color: transparent !important; } - .\32xl\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-current:hover { + background-color: currentColor !important; } - .\32xl\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-transparent:focus::placeholder { - color: transparent !important; + .\32xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-current:focus::placeholder { - color: currentColor !important; + .\32xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; + .\32xl\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-transparent:focus { + background-color: transparent !important; } - .\32xl\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-current:focus { + background-color: currentColor !important; } - .\32xl\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; + .\32xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0 !important; + .\32xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05 !important; + .\32xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1 !important; + .\32xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2 !important; + .\32xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25 !important; + .\32xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3 !important; + .\32xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4 !important; + .\32xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5 !important; + .\32xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6 !important; + .\32xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7 !important; + .\32xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75 !important; + .\32xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8 !important; + .\32xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9 !important; + .\32xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95 !important; + .\32xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)) !important; } - .\32xl\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1 !important; + .\32xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0 !important; + .\32xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05 !important; + .\32xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1 !important; + .\32xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2 !important; + .\32xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25 !important; + .\32xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3 !important; + .\32xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4 !important; + .\32xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5 !important; + .\32xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6 !important; + .\32xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7 !important; + .\32xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75 !important; + .\32xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8 !important; + .\32xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9 !important; + .\32xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95 !important; + .\32xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1 !important; + .\32xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:pointer-events-none { - pointer-events: none !important; + .\32xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)) !important; } - .\32xl\:pointer-events-auto { - pointer-events: auto !important; + .\32xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)) !important; } - .\32xl\:static { - position: static !important; + .\32xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:fixed { - position: fixed !important; + .\32xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)) !important; } - .\32xl\:absolute { - position: absolute !important; + .\32xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)) !important; } - .\32xl\:relative { - position: relative !important; + .\32xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)) !important; } - .\32xl\:sticky { - position: sticky !important; + .\32xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; + .\32xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-1 { - top: 0.25rem !important; - right: 0.25rem !important; - bottom: 0.25rem !important; - left: 0.25rem !important; + .\32xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-2 { - top: 0.5rem !important; - right: 0.5rem !important; - bottom: 0.5rem !important; - left: 0.5rem !important; + .\32xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-3 { - top: 0.75rem !important; - right: 0.75rem !important; - bottom: 0.75rem !important; - left: 0.75rem !important; + .\32xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-4 { - top: 1rem !important; - right: 1rem !important; - bottom: 1rem !important; - left: 1rem !important; + .\32xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-5 { - top: 1.25rem !important; - right: 1.25rem !important; - bottom: 1.25rem !important; - left: 1.25rem !important; + .\32xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-6 { - top: 1.5rem !important; - right: 1.5rem !important; - bottom: 1.5rem !important; - left: 1.5rem !important; + .\32xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-7 { - top: 1.75rem !important; - right: 1.75rem !important; - bottom: 1.75rem !important; - left: 1.75rem !important; + .\32xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-8 { - top: 2rem !important; - right: 2rem !important; - bottom: 2rem !important; - left: 2rem !important; + .\32xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-9 { - top: 2.25rem !important; - right: 2.25rem !important; - bottom: 2.25rem !important; - left: 2.25rem !important; + .\32xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-10 { - top: 2.5rem !important; - right: 2.5rem !important; - bottom: 2.5rem !important; - left: 2.5rem !important; + .\32xl\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-11 { - top: 2.75rem !important; - right: 2.75rem !important; - bottom: 2.75rem !important; - left: 2.75rem !important; + .\32xl\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-12 { - top: 3rem !important; - right: 3rem !important; - bottom: 3rem !important; - left: 3rem !important; + .\32xl\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-14 { - top: 3.5rem !important; - right: 3.5rem !important; - bottom: 3.5rem !important; - left: 3.5rem !important; + .\32xl\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-16 { - top: 4rem !important; - right: 4rem !important; - bottom: 4rem !important; - left: 4rem !important; + .\32xl\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-20 { - top: 5rem !important; - right: 5rem !important; - bottom: 5rem !important; - left: 5rem !important; + .\32xl\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-24 { - top: 6rem !important; - right: 6rem !important; - bottom: 6rem !important; - left: 6rem !important; + .\32xl\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-28 { - top: 7rem !important; - right: 7rem !important; - bottom: 7rem !important; - left: 7rem !important; + .\32xl\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-32 { - top: 8rem !important; - right: 8rem !important; - bottom: 8rem !important; - left: 8rem !important; + .\32xl\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-36 { - top: 9rem !important; - right: 9rem !important; - bottom: 9rem !important; - left: 9rem !important; + .\32xl\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-40 { - top: 10rem !important; - right: 10rem !important; - bottom: 10rem !important; - left: 10rem !important; + .\32xl\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-44 { - top: 11rem !important; - right: 11rem !important; - bottom: 11rem !important; - left: 11rem !important; + .\32xl\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-48 { - top: 12rem !important; - right: 12rem !important; - bottom: 12rem !important; - left: 12rem !important; + .\32xl\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-52 { - top: 13rem !important; - right: 13rem !important; - bottom: 13rem !important; - left: 13rem !important; + .\32xl\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-56 { - top: 14rem !important; - right: 14rem !important; - bottom: 14rem !important; - left: 14rem !important; + .\32xl\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-60 { - top: 15rem !important; - right: 15rem !important; - bottom: 15rem !important; - left: 15rem !important; + .\32xl\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-64 { - top: 16rem !important; - right: 16rem !important; - bottom: 16rem !important; - left: 16rem !important; + .\32xl\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-72 { - top: 18rem !important; - right: 18rem !important; - bottom: 18rem !important; - left: 18rem !important; + .\32xl\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-80 { - top: 20rem !important; - right: 20rem !important; - bottom: 20rem !important; - left: 20rem !important; + .\32xl\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-96 { - top: 24rem !important; - right: 24rem !important; - bottom: 24rem !important; - left: 24rem !important; + .\32xl\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1 !important; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)) !important; } - .\32xl\:inset-auto { - top: auto !important; - right: auto !important; - bottom: auto !important; - left: auto !important; + .\32xl\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; } - .\32xl\:inset-px { - top: 1px !important; - right: 1px !important; - bottom: 1px !important; - left: 1px !important; + .\32xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } - .\32xl\:inset-0\.5 { - top: 0.125rem !important; - right: 0.125rem !important; - bottom: 0.125rem !important; - left: 0.125rem !important; + .\32xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } - .\32xl\:inset-1\.5 { - top: 0.375rem !important; - right: 0.375rem !important; - bottom: 0.375rem !important; - left: 0.375rem !important; + .\32xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } - .\32xl\:inset-2\.5 { - top: 0.625rem !important; - right: 0.625rem !important; - bottom: 0.625rem !important; - left: 0.625rem !important; + .\32xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } - .\32xl\:inset-3\.5 { - top: 0.875rem !important; - right: 0.875rem !important; - bottom: 0.875rem !important; - left: 0.875rem !important; + .\32xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } - .\32xl\:-inset-0 { - top: 0px !important; - right: 0px !important; - bottom: 0px !important; - left: 0px !important; + .\32xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } - .\32xl\:-inset-1 { - top: -0.25rem !important; - right: -0.25rem !important; - bottom: -0.25rem !important; - left: -0.25rem !important; + .\32xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } - .\32xl\:-inset-2 { - top: -0.5rem !important; - right: -0.5rem !important; - bottom: -0.5rem !important; - left: -0.5rem !important; + .\32xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } - .\32xl\:-inset-3 { - top: -0.75rem !important; - right: -0.75rem !important; - bottom: -0.75rem !important; - left: -0.75rem !important; + .\32xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } - .\32xl\:-inset-4 { - top: -1rem !important; - right: -1rem !important; - bottom: -1rem !important; - left: -1rem !important; + .\32xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } - .\32xl\:-inset-5 { - top: -1.25rem !important; - right: -1.25rem !important; - bottom: -1.25rem !important; - left: -1.25rem !important; + .\32xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } - .\32xl\:-inset-6 { - top: -1.5rem !important; - right: -1.5rem !important; - bottom: -1.5rem !important; - left: -1.5rem !important; + .\32xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } - .\32xl\:-inset-7 { - top: -1.75rem !important; - right: -1.75rem !important; - bottom: -1.75rem !important; - left: -1.75rem !important; + .\32xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } - .\32xl\:-inset-8 { - top: -2rem !important; - right: -2rem !important; - bottom: -2rem !important; - left: -2rem !important; + .\32xl\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; } - .\32xl\:-inset-9 { - top: -2.25rem !important; - right: -2.25rem !important; - bottom: -2.25rem !important; - left: -2.25rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0 !important; } - .\32xl\:-inset-10 { - top: -2.5rem !important; - right: -2.5rem !important; - bottom: -2.5rem !important; - left: -2.5rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05 !important; } - .\32xl\:-inset-11 { - top: -2.75rem !important; - right: -2.75rem !important; - bottom: -2.75rem !important; - left: -2.75rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1 !important; } - .\32xl\:-inset-12 { - top: -3rem !important; - right: -3rem !important; - bottom: -3rem !important; - left: -3rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2 !important; } - .\32xl\:-inset-14 { - top: -3.5rem !important; - right: -3.5rem !important; - bottom: -3.5rem !important; - left: -3.5rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25 !important; } - .\32xl\:-inset-16 { - top: -4rem !important; - right: -4rem !important; - bottom: -4rem !important; - left: -4rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3 !important; } - .\32xl\:-inset-20 { - top: -5rem !important; - right: -5rem !important; - bottom: -5rem !important; - left: -5rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4 !important; } - .\32xl\:-inset-24 { - top: -6rem !important; - right: -6rem !important; - bottom: -6rem !important; - left: -6rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5 !important; } - .\32xl\:-inset-28 { - top: -7rem !important; - right: -7rem !important; - bottom: -7rem !important; - left: -7rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6 !important; } - .\32xl\:-inset-32 { - top: -8rem !important; - right: -8rem !important; - bottom: -8rem !important; - left: -8rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7 !important; } - .\32xl\:-inset-36 { - top: -9rem !important; - right: -9rem !important; - bottom: -9rem !important; - left: -9rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75 !important; } - .\32xl\:-inset-40 { - top: -10rem !important; - right: -10rem !important; - bottom: -10rem !important; - left: -10rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8 !important; } - .\32xl\:-inset-44 { - top: -11rem !important; - right: -11rem !important; - bottom: -11rem !important; - left: -11rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9 !important; } - .\32xl\:-inset-48 { - top: -12rem !important; - right: -12rem !important; - bottom: -12rem !important; - left: -12rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95 !important; } - .\32xl\:-inset-52 { - top: -13rem !important; - right: -13rem !important; - bottom: -13rem !important; - left: -13rem !important; + .group:hover .\32xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1 !important; } - .\32xl\:-inset-56 { - top: -14rem !important; - right: -14rem !important; - bottom: -14rem !important; - left: -14rem !important; + .\32xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0 !important; } - .\32xl\:-inset-60 { - top: -15rem !important; - right: -15rem !important; - bottom: -15rem !important; - left: -15rem !important; + .\32xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05 !important; } - .\32xl\:-inset-64 { - top: -16rem !important; - right: -16rem !important; - bottom: -16rem !important; - left: -16rem !important; + .\32xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1 !important; } - .\32xl\:-inset-72 { - top: -18rem !important; - right: -18rem !important; - bottom: -18rem !important; - left: -18rem !important; + .\32xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2 !important; } - .\32xl\:-inset-80 { - top: -20rem !important; - right: -20rem !important; - bottom: -20rem !important; - left: -20rem !important; + .\32xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25 !important; } - .\32xl\:-inset-96 { - top: -24rem !important; - right: -24rem !important; - bottom: -24rem !important; - left: -24rem !important; + .\32xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3 !important; } - .\32xl\:-inset-px { - top: -1px !important; - right: -1px !important; - bottom: -1px !important; - left: -1px !important; + .\32xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4 !important; } - .\32xl\:-inset-0\.5 { - top: -0.125rem !important; - right: -0.125rem !important; - bottom: -0.125rem !important; - left: -0.125rem !important; + .\32xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5 !important; } - .\32xl\:-inset-1\.5 { - top: -0.375rem !important; - right: -0.375rem !important; - bottom: -0.375rem !important; - left: -0.375rem !important; + .\32xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6 !important; } - .\32xl\:-inset-2\.5 { - top: -0.625rem !important; - right: -0.625rem !important; - bottom: -0.625rem !important; - left: -0.625rem !important; + .\32xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7 !important; } - .\32xl\:-inset-3\.5 { - top: -0.875rem !important; - right: -0.875rem !important; - bottom: -0.875rem !important; - left: -0.875rem !important; + .\32xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75 !important; } - .\32xl\:inset-1\/2 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; + .\32xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8 !important; } - .\32xl\:inset-1\/3 { - top: 33.333333% !important; - right: 33.333333% !important; - bottom: 33.333333% !important; - left: 33.333333% !important; + .\32xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9 !important; } - .\32xl\:inset-2\/3 { - top: 66.666667% !important; - right: 66.666667% !important; - bottom: 66.666667% !important; - left: 66.666667% !important; + .\32xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95 !important; } - .\32xl\:inset-1\/4 { - top: 25% !important; - right: 25% !important; - bottom: 25% !important; - left: 25% !important; + .\32xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1 !important; } - .\32xl\:inset-2\/4 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; - left: 50% !important; + .\32xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0 !important; } - .\32xl\:inset-3\/4 { - top: 75% !important; - right: 75% !important; - bottom: 75% !important; - left: 75% !important; + .\32xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05 !important; } - .\32xl\:inset-full { - top: 100% !important; - right: 100% !important; - bottom: 100% !important; - left: 100% !important; + .\32xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1 !important; } - .\32xl\:-inset-1\/2 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; + .\32xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2 !important; } - .\32xl\:-inset-1\/3 { - top: -33.333333% !important; - right: -33.333333% !important; - bottom: -33.333333% !important; - left: -33.333333% !important; + .\32xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25 !important; } - .\32xl\:-inset-2\/3 { - top: -66.666667% !important; - right: -66.666667% !important; - bottom: -66.666667% !important; - left: -66.666667% !important; + .\32xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3 !important; } - .\32xl\:-inset-1\/4 { - top: -25% !important; - right: -25% !important; - bottom: -25% !important; - left: -25% !important; + .\32xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4 !important; } - .\32xl\:-inset-2\/4 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; - left: -50% !important; + .\32xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5 !important; } - .\32xl\:-inset-3\/4 { - top: -75% !important; - right: -75% !important; - bottom: -75% !important; - left: -75% !important; + .\32xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6 !important; } - .\32xl\:-inset-full { - top: -100% !important; - right: -100% !important; - bottom: -100% !important; - left: -100% !important; + .\32xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7 !important; } - .\32xl\:inset-y-0 { - top: 0px !important; - bottom: 0px !important; + .\32xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75 !important; } - .\32xl\:inset-x-0 { - right: 0px !important; - left: 0px !important; + .\32xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8 !important; } - .\32xl\:inset-y-1 { - top: 0.25rem !important; - bottom: 0.25rem !important; + .\32xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9 !important; } - .\32xl\:inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; + .\32xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95 !important; } - .\32xl\:inset-y-2 { - top: 0.5rem !important; - bottom: 0.5rem !important; + .\32xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1 !important; } - .\32xl\:inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; + .\32xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0 !important; } - .\32xl\:inset-y-3 { - top: 0.75rem !important; - bottom: 0.75rem !important; + .\32xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05 !important; } - .\32xl\:inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; + .\32xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1 !important; } - .\32xl\:inset-y-4 { - top: 1rem !important; - bottom: 1rem !important; + .\32xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2 !important; } - .\32xl\:inset-x-4 { - right: 1rem !important; - left: 1rem !important; + .\32xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25 !important; } - .\32xl\:inset-y-5 { - top: 1.25rem !important; - bottom: 1.25rem !important; + .\32xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3 !important; } - .\32xl\:inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; + .\32xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4 !important; } - .\32xl\:inset-y-6 { - top: 1.5rem !important; - bottom: 1.5rem !important; + .\32xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5 !important; } - .\32xl\:inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; + .\32xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6 !important; } - .\32xl\:inset-y-7 { - top: 1.75rem !important; - bottom: 1.75rem !important; + .\32xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7 !important; } - .\32xl\:inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; + .\32xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75 !important; } - .\32xl\:inset-y-8 { - top: 2rem !important; - bottom: 2rem !important; + .\32xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8 !important; } - .\32xl\:inset-x-8 { - right: 2rem !important; - left: 2rem !important; + .\32xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9 !important; } - .\32xl\:inset-y-9 { - top: 2.25rem !important; - bottom: 2.25rem !important; + .\32xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95 !important; } - .\32xl\:inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; + .\32xl\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1 !important; } - .\32xl\:inset-y-10 { - top: 2.5rem !important; - bottom: 2.5rem !important; + .\32xl\:bg-none { + background-image: none !important; } - .\32xl\:inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; + .\32xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; } - .\32xl\:inset-y-11 { - top: 2.75rem !important; - bottom: 2.75rem !important; + .\32xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; } - .\32xl\:inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; + .\32xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; } - .\32xl\:inset-y-12 { - top: 3rem !important; - bottom: 3rem !important; + .\32xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; } - .\32xl\:inset-x-12 { - right: 3rem !important; - left: 3rem !important; + .\32xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; } - .\32xl\:inset-y-14 { - top: 3.5rem !important; - bottom: 3.5rem !important; + .\32xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; } - .\32xl\:inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; + .\32xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; } - .\32xl\:inset-y-16 { - top: 4rem !important; - bottom: 4rem !important; + .\32xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; } - .\32xl\:inset-x-16 { - right: 4rem !important; - left: 4rem !important; + .\32xl\:from-transparent { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:inset-y-20 { - top: 5rem !important; - bottom: 5rem !important; + .\32xl\:from-current { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:inset-x-20 { - right: 5rem !important; - left: 5rem !important; + .\32xl\:from-black { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:inset-y-24 { - top: 6rem !important; - bottom: 6rem !important; + .\32xl\:from-white { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:inset-x-24 { - right: 6rem !important; - left: 6rem !important; + .\32xl\:from-gray-50 { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .\32xl\:inset-y-28 { - top: 7rem !important; - bottom: 7rem !important; + .\32xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .\32xl\:inset-x-28 { - right: 7rem !important; - left: 7rem !important; + .\32xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .\32xl\:inset-y-32 { - top: 8rem !important; - bottom: 8rem !important; + .\32xl\:from-gray-300 { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .\32xl\:inset-x-32 { - right: 8rem !important; - left: 8rem !important; + .\32xl\:from-gray-400 { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .\32xl\:inset-y-36 { - top: 9rem !important; - bottom: 9rem !important; + .\32xl\:from-gray-500 { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .\32xl\:inset-x-36 { - right: 9rem !important; - left: 9rem !important; + .\32xl\:from-gray-600 { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .\32xl\:inset-y-40 { - top: 10rem !important; - bottom: 10rem !important; + .\32xl\:from-gray-700 { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .\32xl\:inset-x-40 { - right: 10rem !important; - left: 10rem !important; + .\32xl\:from-gray-800 { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .\32xl\:inset-y-44 { - top: 11rem !important; - bottom: 11rem !important; + .\32xl\:from-gray-900 { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .\32xl\:inset-x-44 { - right: 11rem !important; - left: 11rem !important; + .\32xl\:from-red-50 { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .\32xl\:inset-y-48 { - top: 12rem !important; - bottom: 12rem !important; + .\32xl\:from-red-100 { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .\32xl\:inset-x-48 { - right: 12rem !important; - left: 12rem !important; + .\32xl\:from-red-200 { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .\32xl\:inset-y-52 { - top: 13rem !important; - bottom: 13rem !important; + .\32xl\:from-red-300 { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .\32xl\:inset-x-52 { - right: 13rem !important; - left: 13rem !important; + .\32xl\:from-red-400 { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .\32xl\:inset-y-56 { - top: 14rem !important; - bottom: 14rem !important; + .\32xl\:from-red-500 { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .\32xl\:inset-x-56 { - right: 14rem !important; - left: 14rem !important; + .\32xl\:from-red-600 { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .\32xl\:inset-y-60 { - top: 15rem !important; - bottom: 15rem !important; + .\32xl\:from-red-700 { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .\32xl\:inset-x-60 { - right: 15rem !important; - left: 15rem !important; + .\32xl\:from-red-800 { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .\32xl\:inset-y-64 { - top: 16rem !important; - bottom: 16rem !important; + .\32xl\:from-red-900 { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .\32xl\:inset-x-64 { - right: 16rem !important; - left: 16rem !important; + .\32xl\:from-yellow-50 { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .\32xl\:inset-y-72 { - top: 18rem !important; - bottom: 18rem !important; + .\32xl\:from-yellow-100 { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .\32xl\:inset-x-72 { - right: 18rem !important; - left: 18rem !important; + .\32xl\:from-yellow-200 { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .\32xl\:inset-y-80 { - top: 20rem !important; - bottom: 20rem !important; + .\32xl\:from-yellow-300 { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .\32xl\:inset-x-80 { - right: 20rem !important; - left: 20rem !important; + .\32xl\:from-yellow-400 { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .\32xl\:inset-y-96 { - top: 24rem !important; - bottom: 24rem !important; + .\32xl\:from-yellow-500 { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .\32xl\:inset-x-96 { - right: 24rem !important; - left: 24rem !important; + .\32xl\:from-yellow-600 { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .\32xl\:inset-y-auto { - top: auto !important; - bottom: auto !important; + .\32xl\:from-yellow-700 { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .\32xl\:inset-x-auto { - right: auto !important; - left: auto !important; + .\32xl\:from-yellow-800 { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .\32xl\:inset-y-px { - top: 1px !important; - bottom: 1px !important; + .\32xl\:from-yellow-900 { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .\32xl\:inset-x-px { - right: 1px !important; - left: 1px !important; + .\32xl\:from-green-50 { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .\32xl\:inset-y-0\.5 { - top: 0.125rem !important; - bottom: 0.125rem !important; + .\32xl\:from-green-100 { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .\32xl\:inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; + .\32xl\:from-green-200 { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .\32xl\:inset-y-1\.5 { - top: 0.375rem !important; - bottom: 0.375rem !important; + .\32xl\:from-green-300 { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .\32xl\:inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; + .\32xl\:from-green-400 { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .\32xl\:inset-y-2\.5 { - top: 0.625rem !important; - bottom: 0.625rem !important; + .\32xl\:from-green-500 { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .\32xl\:inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; + .\32xl\:from-green-600 { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .\32xl\:inset-y-3\.5 { - top: 0.875rem !important; - bottom: 0.875rem !important; + .\32xl\:from-green-700 { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .\32xl\:inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; + .\32xl\:from-green-800 { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .\32xl\:-inset-y-0 { - top: 0px !important; - bottom: 0px !important; + .\32xl\:from-green-900 { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .\32xl\:-inset-x-0 { - right: 0px !important; - left: 0px !important; + .\32xl\:from-blue-50 { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .\32xl\:-inset-y-1 { - top: -0.25rem !important; - bottom: -0.25rem !important; + .\32xl\:from-blue-100 { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .\32xl\:-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; + .\32xl\:from-blue-200 { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .\32xl\:-inset-y-2 { - top: -0.5rem !important; - bottom: -0.5rem !important; + .\32xl\:from-blue-300 { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .\32xl\:-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; + .\32xl\:from-blue-400 { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .\32xl\:-inset-y-3 { - top: -0.75rem !important; - bottom: -0.75rem !important; + .\32xl\:from-blue-500 { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .\32xl\:-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; + .\32xl\:from-blue-600 { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .\32xl\:-inset-y-4 { - top: -1rem !important; - bottom: -1rem !important; + .\32xl\:from-blue-700 { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .\32xl\:-inset-x-4 { - right: -1rem !important; - left: -1rem !important; + .\32xl\:from-blue-800 { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .\32xl\:-inset-y-5 { - top: -1.25rem !important; - bottom: -1.25rem !important; + .\32xl\:from-blue-900 { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .\32xl\:-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; + .\32xl\:from-indigo-50 { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .\32xl\:-inset-y-6 { - top: -1.5rem !important; - bottom: -1.5rem !important; + .\32xl\:from-indigo-100 { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .\32xl\:-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; + .\32xl\:from-indigo-200 { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .\32xl\:-inset-y-7 { - top: -1.75rem !important; - bottom: -1.75rem !important; + .\32xl\:from-indigo-300 { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .\32xl\:-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; + .\32xl\:from-indigo-400 { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .\32xl\:-inset-y-8 { - top: -2rem !important; - bottom: -2rem !important; + .\32xl\:from-indigo-500 { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .\32xl\:-inset-x-8 { - right: -2rem !important; - left: -2rem !important; + .\32xl\:from-indigo-600 { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .\32xl\:-inset-y-9 { - top: -2.25rem !important; - bottom: -2.25rem !important; + .\32xl\:from-indigo-700 { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .\32xl\:-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; + .\32xl\:from-indigo-800 { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .\32xl\:-inset-y-10 { - top: -2.5rem !important; - bottom: -2.5rem !important; + .\32xl\:from-indigo-900 { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .\32xl\:-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; + .\32xl\:from-purple-50 { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .\32xl\:-inset-y-11 { - top: -2.75rem !important; - bottom: -2.75rem !important; + .\32xl\:from-purple-100 { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .\32xl\:-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; + .\32xl\:from-purple-200 { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .\32xl\:-inset-y-12 { - top: -3rem !important; - bottom: -3rem !important; + .\32xl\:from-purple-300 { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .\32xl\:-inset-x-12 { - right: -3rem !important; - left: -3rem !important; + .\32xl\:from-purple-400 { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .\32xl\:-inset-y-14 { - top: -3.5rem !important; - bottom: -3.5rem !important; + .\32xl\:from-purple-500 { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .\32xl\:-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; + .\32xl\:from-purple-600 { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .\32xl\:-inset-y-16 { - top: -4rem !important; - bottom: -4rem !important; + .\32xl\:from-purple-700 { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .\32xl\:-inset-x-16 { - right: -4rem !important; - left: -4rem !important; + .\32xl\:from-purple-800 { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .\32xl\:-inset-y-20 { - top: -5rem !important; - bottom: -5rem !important; + .\32xl\:from-purple-900 { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .\32xl\:-inset-x-20 { - right: -5rem !important; - left: -5rem !important; + .\32xl\:from-pink-50 { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .\32xl\:-inset-y-24 { - top: -6rem !important; - bottom: -6rem !important; + .\32xl\:from-pink-100 { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .\32xl\:-inset-x-24 { - right: -6rem !important; - left: -6rem !important; + .\32xl\:from-pink-200 { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .\32xl\:-inset-y-28 { - top: -7rem !important; - bottom: -7rem !important; + .\32xl\:from-pink-300 { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .\32xl\:-inset-x-28 { - right: -7rem !important; - left: -7rem !important; + .\32xl\:from-pink-400 { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .\32xl\:-inset-y-32 { - top: -8rem !important; - bottom: -8rem !important; + .\32xl\:from-pink-500 { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .\32xl\:-inset-x-32 { - right: -8rem !important; - left: -8rem !important; + .\32xl\:from-pink-600 { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .\32xl\:-inset-y-36 { - top: -9rem !important; - bottom: -9rem !important; + .\32xl\:from-pink-700 { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .\32xl\:-inset-x-36 { - right: -9rem !important; - left: -9rem !important; + .\32xl\:from-pink-800 { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .\32xl\:-inset-y-40 { - top: -10rem !important; - bottom: -10rem !important; + .\32xl\:from-pink-900 { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .\32xl\:-inset-x-40 { - right: -10rem !important; - left: -10rem !important; + .\32xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:-inset-y-44 { - top: -11rem !important; - bottom: -11rem !important; + .\32xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:-inset-x-44 { - right: -11rem !important; - left: -11rem !important; + .\32xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:-inset-y-48 { - top: -12rem !important; - bottom: -12rem !important; + .\32xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:-inset-x-48 { - right: -12rem !important; - left: -12rem !important; + .\32xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .\32xl\:-inset-y-52 { - top: -13rem !important; - bottom: -13rem !important; + .\32xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .\32xl\:-inset-x-52 { - right: -13rem !important; - left: -13rem !important; + .\32xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .\32xl\:-inset-y-56 { - top: -14rem !important; - bottom: -14rem !important; + .\32xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .\32xl\:-inset-x-56 { - right: -14rem !important; - left: -14rem !important; + .\32xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .\32xl\:-inset-y-60 { - top: -15rem !important; - bottom: -15rem !important; + .\32xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .\32xl\:-inset-x-60 { - right: -15rem !important; - left: -15rem !important; + .\32xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .\32xl\:-inset-y-64 { - top: -16rem !important; - bottom: -16rem !important; + .\32xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .\32xl\:-inset-x-64 { - right: -16rem !important; - left: -16rem !important; + .\32xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .\32xl\:-inset-y-72 { - top: -18rem !important; - bottom: -18rem !important; + .\32xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .\32xl\:-inset-x-72 { - right: -18rem !important; - left: -18rem !important; + .\32xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .\32xl\:-inset-y-80 { - top: -20rem !important; - bottom: -20rem !important; + .\32xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .\32xl\:-inset-x-80 { - right: -20rem !important; - left: -20rem !important; + .\32xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .\32xl\:-inset-y-96 { - top: -24rem !important; - bottom: -24rem !important; + .\32xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .\32xl\:-inset-x-96 { - right: -24rem !important; - left: -24rem !important; + .\32xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .\32xl\:-inset-y-px { - top: -1px !important; - bottom: -1px !important; + .\32xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .\32xl\:-inset-x-px { - right: -1px !important; - left: -1px !important; + .\32xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .\32xl\:-inset-y-0\.5 { - top: -0.125rem !important; - bottom: -0.125rem !important; + .\32xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .\32xl\:-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; + .\32xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .\32xl\:-inset-y-1\.5 { - top: -0.375rem !important; - bottom: -0.375rem !important; + .\32xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .\32xl\:-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; + .\32xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .\32xl\:-inset-y-2\.5 { - top: -0.625rem !important; - bottom: -0.625rem !important; + .\32xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .\32xl\:-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; + .\32xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .\32xl\:-inset-y-3\.5 { - top: -0.875rem !important; - bottom: -0.875rem !important; + .\32xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .\32xl\:-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; + .\32xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .\32xl\:inset-y-1\/2 { - top: 50% !important; - bottom: 50% !important; + .\32xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .\32xl\:inset-x-1\/2 { - right: 50% !important; - left: 50% !important; + .\32xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .\32xl\:inset-y-1\/3 { - top: 33.333333% !important; - bottom: 33.333333% !important; + .\32xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .\32xl\:inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; + .\32xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .\32xl\:inset-y-2\/3 { - top: 66.666667% !important; - bottom: 66.666667% !important; + .\32xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .\32xl\:inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; + .\32xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .\32xl\:inset-y-1\/4 { - top: 25% !important; - bottom: 25% !important; + .\32xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .\32xl\:inset-x-1\/4 { - right: 25% !important; - left: 25% !important; + .\32xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .\32xl\:inset-y-2\/4 { - top: 50% !important; - bottom: 50% !important; + .\32xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .\32xl\:inset-x-2\/4 { - right: 50% !important; - left: 50% !important; + .\32xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .\32xl\:inset-y-3\/4 { - top: 75% !important; - bottom: 75% !important; + .\32xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .\32xl\:inset-x-3\/4 { - right: 75% !important; - left: 75% !important; + .\32xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .\32xl\:inset-y-full { - top: 100% !important; - bottom: 100% !important; + .\32xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .\32xl\:inset-x-full { - right: 100% !important; - left: 100% !important; + .\32xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .\32xl\:-inset-y-1\/2 { - top: -50% !important; - bottom: -50% !important; + .\32xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .\32xl\:-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; + .\32xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .\32xl\:-inset-y-1\/3 { - top: -33.333333% !important; - bottom: -33.333333% !important; + .\32xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .\32xl\:-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; + .\32xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .\32xl\:-inset-y-2\/3 { - top: -66.666667% !important; - bottom: -66.666667% !important; + .\32xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .\32xl\:-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; + .\32xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .\32xl\:-inset-y-1\/4 { - top: -25% !important; - bottom: -25% !important; + .\32xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .\32xl\:-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; + .\32xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .\32xl\:-inset-y-2\/4 { - top: -50% !important; - bottom: -50% !important; + .\32xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .\32xl\:-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; + .\32xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .\32xl\:-inset-y-3\/4 { - top: -75% !important; - bottom: -75% !important; + .\32xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .\32xl\:-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; + .\32xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .\32xl\:-inset-y-full { - top: -100% !important; - bottom: -100% !important; + .\32xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .\32xl\:-inset-x-full { - right: -100% !important; - left: -100% !important; + .\32xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .\32xl\:top-0 { - top: 0px !important; + .\32xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .\32xl\:right-0 { - right: 0px !important; + .\32xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .\32xl\:bottom-0 { - bottom: 0px !important; + .\32xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .\32xl\:left-0 { - left: 0px !important; + .\32xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .\32xl\:top-1 { - top: 0.25rem !important; + .\32xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .\32xl\:right-1 { - right: 0.25rem !important; + .\32xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .\32xl\:bottom-1 { - bottom: 0.25rem !important; + .\32xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .\32xl\:left-1 { - left: 0.25rem !important; + .\32xl\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .\32xl\:top-2 { - top: 0.5rem !important; + .\32xl\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .\32xl\:right-2 { - right: 0.5rem !important; + .\32xl\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .\32xl\:bottom-2 { - bottom: 0.5rem !important; + .\32xl\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .\32xl\:left-2 { - left: 0.5rem !important; + .\32xl\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .\32xl\:top-3 { - top: 0.75rem !important; + .\32xl\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .\32xl\:right-3 { - right: 0.75rem !important; + .\32xl\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .\32xl\:bottom-3 { - bottom: 0.75rem !important; + .\32xl\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .\32xl\:left-3 { - left: 0.75rem !important; + .\32xl\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .\32xl\:top-4 { - top: 1rem !important; + .\32xl\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .\32xl\:right-4 { - right: 1rem !important; + .\32xl\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .\32xl\:bottom-4 { - bottom: 1rem !important; + .\32xl\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .\32xl\:left-4 { - left: 1rem !important; + .\32xl\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .\32xl\:top-5 { - top: 1.25rem !important; + .\32xl\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .\32xl\:right-5 { - right: 1.25rem !important; + .\32xl\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .\32xl\:bottom-5 { - bottom: 1.25rem !important; + .\32xl\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .\32xl\:left-5 { - left: 1.25rem !important; + .\32xl\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .\32xl\:top-6 { - top: 1.5rem !important; + .\32xl\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .\32xl\:right-6 { - right: 1.5rem !important; + .\32xl\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .\32xl\:bottom-6 { - bottom: 1.5rem !important; + .\32xl\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .\32xl\:left-6 { - left: 1.5rem !important; + .\32xl\:to-transparent { + --tw-gradient-to: transparent !important; } - .\32xl\:top-7 { - top: 1.75rem !important; + .\32xl\:to-current { + --tw-gradient-to: currentColor !important; } - .\32xl\:right-7 { - right: 1.75rem !important; + .\32xl\:to-black { + --tw-gradient-to: #000 !important; } - .\32xl\:bottom-7 { - bottom: 1.75rem !important; + .\32xl\:to-white { + --tw-gradient-to: #fff !important; } - .\32xl\:left-7 { - left: 1.75rem !important; + .\32xl\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; } - .\32xl\:top-8 { - top: 2rem !important; + .\32xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; } - .\32xl\:right-8 { - right: 2rem !important; + .\32xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; } - .\32xl\:bottom-8 { - bottom: 2rem !important; + .\32xl\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; } - .\32xl\:left-8 { - left: 2rem !important; + .\32xl\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; } - .\32xl\:top-9 { - top: 2.25rem !important; + .\32xl\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; } - .\32xl\:right-9 { - right: 2.25rem !important; + .\32xl\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; } - .\32xl\:bottom-9 { - bottom: 2.25rem !important; + .\32xl\:to-gray-700 { + --tw-gradient-to: #374151 !important; } - .\32xl\:left-9 { - left: 2.25rem !important; + .\32xl\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; } - .\32xl\:top-10 { - top: 2.5rem !important; + .\32xl\:to-gray-900 { + --tw-gradient-to: #111827 !important; } - .\32xl\:right-10 { - right: 2.5rem !important; + .\32xl\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; } - .\32xl\:bottom-10 { - bottom: 2.5rem !important; + .\32xl\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; } - .\32xl\:left-10 { - left: 2.5rem !important; + .\32xl\:to-red-200 { + --tw-gradient-to: #fecaca !important; } - .\32xl\:top-11 { - top: 2.75rem !important; + .\32xl\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; } - .\32xl\:right-11 { - right: 2.75rem !important; + .\32xl\:to-red-400 { + --tw-gradient-to: #f87171 !important; } - .\32xl\:bottom-11 { - bottom: 2.75rem !important; + .\32xl\:to-red-500 { + --tw-gradient-to: #ef4444 !important; } - .\32xl\:left-11 { - left: 2.75rem !important; + .\32xl\:to-red-600 { + --tw-gradient-to: #dc2626 !important; } - .\32xl\:top-12 { - top: 3rem !important; + .\32xl\:to-red-700 { + --tw-gradient-to: #b91c1c !important; } - .\32xl\:right-12 { - right: 3rem !important; + .\32xl\:to-red-800 { + --tw-gradient-to: #991b1b !important; } - .\32xl\:bottom-12 { - bottom: 3rem !important; + .\32xl\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; } - .\32xl\:left-12 { - left: 3rem !important; + .\32xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; } - .\32xl\:top-14 { - top: 3.5rem !important; + .\32xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; } - .\32xl\:right-14 { - right: 3.5rem !important; + .\32xl\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; } - .\32xl\:bottom-14 { - bottom: 3.5rem !important; + .\32xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; } - .\32xl\:left-14 { - left: 3.5rem !important; + .\32xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; } - .\32xl\:top-16 { - top: 4rem !important; + .\32xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; } - .\32xl\:right-16 { - right: 4rem !important; + .\32xl\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; } - .\32xl\:bottom-16 { - bottom: 4rem !important; + .\32xl\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; } - .\32xl\:left-16 { - left: 4rem !important; + .\32xl\:to-yellow-800 { + --tw-gradient-to: #92400e !important; } - .\32xl\:top-20 { - top: 5rem !important; + .\32xl\:to-yellow-900 { + --tw-gradient-to: #78350f !important; } - .\32xl\:right-20 { - right: 5rem !important; + .\32xl\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; } - .\32xl\:bottom-20 { - bottom: 5rem !important; + .\32xl\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; } - .\32xl\:left-20 { - left: 5rem !important; + .\32xl\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; } - .\32xl\:top-24 { - top: 6rem !important; + .\32xl\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; } - .\32xl\:right-24 { - right: 6rem !important; + .\32xl\:to-green-400 { + --tw-gradient-to: #34d399 !important; } - .\32xl\:bottom-24 { - bottom: 6rem !important; + .\32xl\:to-green-500 { + --tw-gradient-to: #10b981 !important; } - .\32xl\:left-24 { - left: 6rem !important; + .\32xl\:to-green-600 { + --tw-gradient-to: #059669 !important; } - .\32xl\:top-28 { - top: 7rem !important; + .\32xl\:to-green-700 { + --tw-gradient-to: #047857 !important; } - .\32xl\:right-28 { - right: 7rem !important; + .\32xl\:to-green-800 { + --tw-gradient-to: #065f46 !important; } - .\32xl\:bottom-28 { - bottom: 7rem !important; + .\32xl\:to-green-900 { + --tw-gradient-to: #064e3b !important; } - .\32xl\:left-28 { - left: 7rem !important; + .\32xl\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; } - .\32xl\:top-32 { - top: 8rem !important; + .\32xl\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; } - .\32xl\:right-32 { - right: 8rem !important; + .\32xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; } - .\32xl\:bottom-32 { - bottom: 8rem !important; + .\32xl\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; } - .\32xl\:left-32 { - left: 8rem !important; + .\32xl\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; } - .\32xl\:top-36 { - top: 9rem !important; + .\32xl\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; } - .\32xl\:right-36 { - right: 9rem !important; + .\32xl\:to-blue-600 { + --tw-gradient-to: #2563eb !important; } - .\32xl\:bottom-36 { - bottom: 9rem !important; + .\32xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; } - .\32xl\:left-36 { - left: 9rem !important; + .\32xl\:to-blue-800 { + --tw-gradient-to: #1e40af !important; } - .\32xl\:top-40 { - top: 10rem !important; + .\32xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; } - .\32xl\:right-40 { - right: 10rem !important; + .\32xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; } - .\32xl\:bottom-40 { - bottom: 10rem !important; + .\32xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; } - .\32xl\:left-40 { - left: 10rem !important; + .\32xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; } - .\32xl\:top-44 { - top: 11rem !important; + .\32xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; } - .\32xl\:right-44 { - right: 11rem !important; + .\32xl\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; } - .\32xl\:bottom-44 { - bottom: 11rem !important; + .\32xl\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; } - .\32xl\:left-44 { - left: 11rem !important; + .\32xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; } - .\32xl\:top-48 { - top: 12rem !important; + .\32xl\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; } - .\32xl\:right-48 { - right: 12rem !important; + .\32xl\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; } - .\32xl\:bottom-48 { - bottom: 12rem !important; + .\32xl\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; } - .\32xl\:left-48 { - left: 12rem !important; + .\32xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; } - .\32xl\:top-52 { - top: 13rem !important; + .\32xl\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; } - .\32xl\:right-52 { - right: 13rem !important; + .\32xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; } - .\32xl\:bottom-52 { - bottom: 13rem !important; + .\32xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; } - .\32xl\:left-52 { - left: 13rem !important; + .\32xl\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; } - .\32xl\:top-56 { - top: 14rem !important; + .\32xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; } - .\32xl\:right-56 { - right: 14rem !important; + .\32xl\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; } - .\32xl\:bottom-56 { - bottom: 14rem !important; + .\32xl\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; } - .\32xl\:left-56 { - left: 14rem !important; + .\32xl\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; } - .\32xl\:top-60 { - top: 15rem !important; + .\32xl\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; } - .\32xl\:right-60 { - right: 15rem !important; + .\32xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; } - .\32xl\:bottom-60 { - bottom: 15rem !important; + .\32xl\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; } - .\32xl\:left-60 { - left: 15rem !important; + .\32xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; } - .\32xl\:top-64 { - top: 16rem !important; + .\32xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; } - .\32xl\:right-64 { - right: 16rem !important; + .\32xl\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; } - .\32xl\:bottom-64 { - bottom: 16rem !important; + .\32xl\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; } - .\32xl\:left-64 { - left: 16rem !important; + .\32xl\:to-pink-600 { + --tw-gradient-to: #db2777 !important; } - .\32xl\:top-72 { - top: 18rem !important; + .\32xl\:to-pink-700 { + --tw-gradient-to: #be185d !important; } - .\32xl\:right-72 { - right: 18rem !important; + .\32xl\:to-pink-800 { + --tw-gradient-to: #9d174d !important; } - .\32xl\:bottom-72 { - bottom: 18rem !important; + .\32xl\:to-pink-900 { + --tw-gradient-to: #831843 !important; } - .\32xl\:left-72 { - left: 18rem !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\:top-80 { - top: 20rem !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\:right-80 { - right: 20rem !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\:bottom-80 { - bottom: 20rem !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\:left-80 { - left: 20rem !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\:top-96 { - top: 24rem !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\:right-96 { - right: 24rem !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\:bottom-96 { - bottom: 24rem !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\:left-96 { - left: 24rem !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\:top-auto { - top: auto !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\:right-auto { - right: auto !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\:bottom-auto { - bottom: auto !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\:left-auto { - left: auto !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\:top-px { - top: 1px !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\:right-px { - right: 1px !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\:bottom-px { - bottom: 1px !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\:left-px { - left: 1px !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\:top-0\.5 { - top: 0.125rem !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\:right-0\.5 { - right: 0.125rem !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\:bottom-0\.5 { - bottom: 0.125rem !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\:left-0\.5 { - left: 0.125rem !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\:top-1\.5 { - top: 0.375rem !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\:right-1\.5 { - right: 0.375rem !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\:bottom-1\.5 { - bottom: 0.375rem !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\:left-1\.5 { - left: 0.375rem !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\:top-2\.5 { - top: 0.625rem !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\:right-2\.5 { - right: 0.625rem !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\:bottom-2\.5 { - bottom: 0.625rem !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\:left-2\.5 { - left: 0.625rem !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\:top-3\.5 { - top: 0.875rem !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\:right-3\.5 { - right: 0.875rem !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\:bottom-3\.5 { - bottom: 0.875rem !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\:left-3\.5 { - left: 0.875rem !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\:-top-0 { - top: 0px !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\:-right-0 { - right: 0px !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\:-bottom-0 { - bottom: 0px !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\:-left-0 { - left: 0px !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\:-top-1 { - top: -0.25rem !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\:-right-1 { - right: -0.25rem !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\:-bottom-1 { - bottom: -0.25rem !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\:-left-1 { - left: -0.25rem !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\:-top-2 { - top: -0.5rem !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\:-right-2 { - right: -0.5rem !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\:-bottom-2 { - bottom: -0.5rem !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\:-left-2 { - left: -0.5rem !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\:-top-3 { - top: -0.75rem !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\:-right-3 { - right: -0.75rem !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\:-bottom-3 { - bottom: -0.75rem !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\:-left-3 { - left: -0.75rem !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\:-top-4 { - top: -1rem !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\:-right-4 { - right: -1rem !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\:-bottom-4 { - bottom: -1rem !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\:-left-4 { - left: -1rem !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\:-top-5 { - top: -1.25rem !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\:-right-5 { - right: -1.25rem !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\:-bottom-5 { - bottom: -1.25rem !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\:-left-5 { - left: -1.25rem !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\:-top-6 { - top: -1.5rem !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\:-right-6 { - right: -1.5rem !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\:-bottom-6 { - bottom: -1.5rem !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\:-left-6 { - left: -1.5rem !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\:-top-7 { - top: -1.75rem !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\:-right-7 { - right: -1.75rem !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\:-bottom-7 { - bottom: -1.75rem !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\:-left-7 { - left: -1.75rem !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\:-top-8 { - top: -2rem !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\:-right-8 { - right: -2rem !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\:-bottom-8 { - bottom: -2rem !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\:-left-8 { - left: -2rem !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\:-top-9 { - top: -2.25rem !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\:-right-9 { - right: -2.25rem !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\:-bottom-9 { - bottom: -2.25rem !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\:-left-9 { - left: -2.25rem !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\:-top-10 { - top: -2.5rem !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\:-right-10 { - right: -2.5rem !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\:-bottom-10 { - bottom: -2.5rem !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\:-left-10 { - left: -2.5rem !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\:-top-11 { - top: -2.75rem !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\:-right-11 { - right: -2.75rem !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\:-bottom-11 { - bottom: -2.75rem !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\:-left-11 { - left: -2.75rem !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\:-top-12 { - top: -3rem !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\:-right-12 { - right: -3rem !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\:-bottom-12 { - bottom: -3rem !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\:-left-12 { - left: -3rem !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\:-top-14 { - top: -3.5rem !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\:-right-14 { - right: -3.5rem !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\:-bottom-14 { - bottom: -3.5rem !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\:-left-14 { - left: -3.5rem !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\:-top-16 { - top: -4rem !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\:-right-16 { - right: -4rem !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\:-bottom-16 { - bottom: -4rem !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\:-left-16 { - left: -4rem !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\:-top-20 { - top: -5rem !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\:-right-20 { - right: -5rem !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\:-bottom-20 { - bottom: -5rem !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\:-left-20 { - left: -5rem !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\:-top-24 { - top: -6rem !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\:-right-24 { - right: -6rem !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\:-bottom-24 { - bottom: -6rem !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\:-left-24 { - left: -6rem !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\:-top-28 { - top: -7rem !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\:-right-28 { - right: -7rem !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\:-bottom-28 { - bottom: -7rem !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\:-left-28 { - left: -7rem !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\:-top-32 { - top: -8rem !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\:-right-32 { - right: -8rem !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\:-bottom-32 { - bottom: -8rem !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\:-left-32 { - left: -8rem !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\:-top-36 { - top: -9rem !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\:-right-36 { - right: -9rem !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\:-bottom-36 { - bottom: -9rem !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\:-left-36 { - left: -9rem !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\:-top-40 { - top: -10rem !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\:-right-40 { - right: -10rem !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\:-bottom-40 { - bottom: -10rem !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\:-left-40 { - left: -10rem !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\:-top-44 { - top: -11rem !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\:-right-44 { - right: -11rem !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\:-bottom-44 { - bottom: -11rem !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\:-left-44 { - left: -11rem !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\:-top-48 { - top: -12rem !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\:-right-48 { - right: -12rem !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\:-bottom-48 { - bottom: -12rem !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\:-left-48 { - left: -12rem !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\:-top-52 { - top: -13rem !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\:-right-52 { - right: -13rem !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\:-bottom-52 { - bottom: -13rem !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\:-left-52 { - left: -13rem !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\:-top-56 { - top: -14rem !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\:-right-56 { - right: -14rem !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\:-bottom-56 { - bottom: -14rem !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\:-left-56 { - left: -14rem !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\:-top-60 { - top: -15rem !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\:-right-60 { - right: -15rem !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\:-bottom-60 { - bottom: -15rem !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\:-left-60 { - left: -15rem !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\:-top-64 { - top: -16rem !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\:-right-64 { - right: -16rem !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\:-bottom-64 { - bottom: -16rem !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\:-left-64 { - left: -16rem !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\:-top-72 { - top: -18rem !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\:-right-72 { - right: -18rem !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\:-bottom-72 { - bottom: -18rem !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\:-left-72 { - left: -18rem !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\:-top-80 { - top: -20rem !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\:-right-80 { - right: -20rem !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\:-bottom-80 { - bottom: -20rem !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\:-left-80 { - left: -20rem !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\:-top-96 { - top: -24rem !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\:-right-96 { - right: -24rem !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\:-bottom-96 { - bottom: -24rem !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\:-left-96 { - left: -24rem !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\:-top-px { - top: -1px !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\:-right-px { - right: -1px !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\:-bottom-px { - bottom: -1px !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\:-left-px { - left: -1px !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\:-top-0\.5 { - top: -0.125rem !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\:-right-0\.5 { - right: -0.125rem !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\:-bottom-0\.5 { - bottom: -0.125rem !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\:-left-0\.5 { - left: -0.125rem !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\:-top-1\.5 { - top: -0.375rem !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\:-right-1\.5 { - right: -0.375rem !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\:-bottom-1\.5 { - bottom: -0.375rem !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\:-left-1\.5 { - left: -0.375rem !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\:-top-2\.5 { - top: -0.625rem !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\:-right-2\.5 { - right: -0.625rem !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\:-bottom-2\.5 { - bottom: -0.625rem !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\:-left-2\.5 { - left: -0.625rem !important; + .\32xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; } - .\32xl\:-top-3\.5 { - top: -0.875rem !important; + .\32xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; } - .\32xl\:-right-3\.5 { - right: -0.875rem !important; + .\32xl\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; } - .\32xl\:-bottom-3\.5 { - bottom: -0.875rem !important; + .\32xl\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; } - .\32xl\:-left-3\.5 { - left: -0.875rem !important; + .\32xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; } - .\32xl\:top-1\/2 { - top: 50% !important; + .\32xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; } - .\32xl\:right-1\/2 { - right: 50% !important; + .\32xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; } - .\32xl\:bottom-1\/2 { - bottom: 50% !important; + .\32xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; } - .\32xl\:left-1\/2 { - left: 50% !important; + .\32xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; } - .\32xl\:top-1\/3 { - top: 33.333333% !important; + .\32xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; } - .\32xl\:right-1\/3 { - right: 33.333333% !important; + .\32xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; } - .\32xl\:bottom-1\/3 { - bottom: 33.333333% !important; + .\32xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; } - .\32xl\:left-1\/3 { - left: 33.333333% !important; + .\32xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; } - .\32xl\:top-2\/3 { - top: 66.666667% !important; + .\32xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; } - .\32xl\:right-2\/3 { - right: 66.666667% !important; + .\32xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; } - .\32xl\:bottom-2\/3 { - bottom: 66.666667% !important; + .\32xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; } - .\32xl\:left-2\/3 { - left: 66.666667% !important; + .\32xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; } - .\32xl\:top-1\/4 { - top: 25% !important; + .\32xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; } - .\32xl\:right-1\/4 { - right: 25% !important; + .\32xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; } - .\32xl\:bottom-1\/4 { - bottom: 25% !important; + .\32xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; } - .\32xl\:left-1\/4 { - left: 25% !important; + .\32xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; } - .\32xl\:top-2\/4 { - top: 50% !important; + .\32xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; } - .\32xl\:right-2\/4 { - right: 50% !important; + .\32xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; } - .\32xl\:bottom-2\/4 { - bottom: 50% !important; + .\32xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; } - .\32xl\:left-2\/4 { - left: 50% !important; + .\32xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; } - .\32xl\:top-3\/4 { - top: 75% !important; + .\32xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; } - .\32xl\:right-3\/4 { - right: 75% !important; + .\32xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; } - .\32xl\:bottom-3\/4 { - bottom: 75% !important; + .\32xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; } - .\32xl\:left-3\/4 { - left: 75% !important; + .\32xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; } - .\32xl\:top-full { - top: 100% !important; + .\32xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; } - .\32xl\:right-full { - right: 100% !important; + .\32xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; } - .\32xl\:bottom-full { - bottom: 100% !important; + .\32xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; } - .\32xl\:left-full { - left: 100% !important; + .\32xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; } - .\32xl\:-top-1\/2 { - top: -50% !important; + .\32xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; } - .\32xl\:-right-1\/2 { - right: -50% !important; + .\32xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; } - .\32xl\:-bottom-1\/2 { - bottom: -50% !important; + .\32xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; } - .\32xl\:-left-1\/2 { - left: -50% !important; + .\32xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; } - .\32xl\:-top-1\/3 { - top: -33.333333% !important; + .\32xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; } - .\32xl\:-right-1\/3 { - right: -33.333333% !important; + .\32xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; } - .\32xl\:-bottom-1\/3 { - bottom: -33.333333% !important; + .\32xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; } - .\32xl\:-left-1\/3 { - left: -33.333333% !important; + .\32xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; } - .\32xl\:-top-2\/3 { - top: -66.666667% !important; + .\32xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; } - .\32xl\:-right-2\/3 { - right: -66.666667% !important; + .\32xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; } - .\32xl\:-bottom-2\/3 { - bottom: -66.666667% !important; + .\32xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; } - .\32xl\:-left-2\/3 { - left: -66.666667% !important; + .\32xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; } - .\32xl\:-top-1\/4 { - top: -25% !important; + .\32xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; } - .\32xl\:-right-1\/4 { - right: -25% !important; + .\32xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; } - .\32xl\:-bottom-1\/4 { - bottom: -25% !important; + .\32xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; } - .\32xl\:-left-1\/4 { - left: -25% !important; + .\32xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; } - .\32xl\:-top-2\/4 { - top: -50% !important; + .\32xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; } - .\32xl\:-right-2\/4 { - right: -50% !important; + .\32xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; } - .\32xl\:-bottom-2\/4 { - bottom: -50% !important; + .\32xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; } - .\32xl\:-left-2\/4 { - left: -50% !important; + .\32xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; } - .\32xl\:-top-3\/4 { - top: -75% !important; + .\32xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; } - .\32xl\:-right-3\/4 { - right: -75% !important; + .\32xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; } - .\32xl\:-bottom-3\/4 { - bottom: -75% !important; + .\32xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; } - .\32xl\:-left-3\/4 { - left: -75% !important; + .\32xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; } - .\32xl\:-top-full { - top: -100% !important; + .\32xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; } - .\32xl\:-right-full { - right: -100% !important; + .\32xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; } - .\32xl\:-bottom-full { - bottom: -100% !important; + .\32xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; } - .\32xl\:-left-full { - left: -100% !important; + .\32xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; } - .\32xl\:resize-none { - resize: none !important; + .\32xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; } - .\32xl\:resize-y { - resize: vertical !important; + .\32xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; } - .\32xl\:resize-x { - resize: horizontal !important; + .\32xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; } - .\32xl\:resize { - resize: both !important; + .\32xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; } - .\32xl\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; } - .\32xl\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; } - .\32xl\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; } - .\32xl\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; } - .\32xl\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; } - .\32xl\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; } - .\32xl\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; } - .\32xl\:shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; } - .group:hover .\32xl\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; } - .group:hover .\32xl\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; } - .group:hover .\32xl\:group-hover\:shadow-md { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; } - .group:hover .\32xl\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; } - .group:hover .\32xl\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; } - .group:hover .\32xl\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; } - .group:hover .\32xl\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; } - .group:hover .\32xl\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; } - .\32xl\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; } - .\32xl\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; } - .\32xl\:focus-within\:shadow-md:focus-within { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; + .\32xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; } - .\32xl\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-md:hover { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:shadow-none:hover { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-md:focus { - --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000 !important; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !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\:ring-0 { - --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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-1 { - --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-2 { - --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-4 { - --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-8 { - --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring { - --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:ring-inset { - --tw-ring-inset: inset !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\: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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset !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\: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; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring: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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !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\:focus\:ring-inset:focus { - --tw-ring-inset: inset !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\:ring-offset-transparent { - --tw-ring-offset-color: transparent !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\:ring-offset-current { - --tw-ring-offset-color: currentColor !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\:ring-offset-black { - --tw-ring-offset-color: #000 !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\:ring-offset-white { - --tw-ring-offset-color: #fff !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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb !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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6 !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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb !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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db !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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af !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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280 !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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563 !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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151 !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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937 !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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827 !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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2 !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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2 !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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca !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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5 !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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171 !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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444 !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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626 !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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c !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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b !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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d !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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb !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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7 !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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a !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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d !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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24 !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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b !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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706 !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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309 !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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e !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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f !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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5 !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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5 !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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0 !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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7 !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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399 !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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981 !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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669 !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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857 !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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46 !important; + .\32xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b !important; + .\32xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff !important; + .\32xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe !important; + .\32xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe !important; + .\32xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .\32xl\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd !important; + .\32xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .\32xl\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa !important; + .\32xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .\32xl\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6 !important; + .\32xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .\32xl\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb !important; + .\32xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .\32xl\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8 !important; + .\32xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .\32xl\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af !important; + .\32xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .\32xl\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a !important; + .\32xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .\32xl\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff !important; + .\32xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .\32xl\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff !important; + .\32xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .\32xl\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe !important; + .\32xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .\32xl\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc !important; + .\32xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .\32xl\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8 !important; + .\32xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .\32xl\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1 !important; + .\32xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .\32xl\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5 !important; + .\32xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .\32xl\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca !important; + .\32xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .\32xl\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3 !important; + .\32xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .\32xl\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81 !important; + .\32xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .\32xl\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff !important; + .\32xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .\32xl\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe !important; + .\32xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .\32xl\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe !important; + .\32xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .\32xl\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd !important; + .\32xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .\32xl\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa !important; + .\32xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .\32xl\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6 !important; + .\32xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .\32xl\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed !important; + .\32xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .\32xl\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9 !important; + .\32xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .\32xl\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6 !important; + .\32xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .\32xl\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95 !important; + .\32xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .\32xl\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8 !important; + .\32xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .\32xl\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3 !important; + .\32xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .\32xl\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8 !important; + .\32xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .\32xl\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4 !important; + .\32xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .\32xl\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6 !important; + .\32xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .\32xl\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899 !important; + .\32xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .\32xl\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777 !important; + .\32xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .\32xl\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d !important; + .\32xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .\32xl\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d !important; + .\32xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .\32xl\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843 !important; + .\32xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .\32xl\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent !important; + .\32xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .\32xl\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor !important; + .\32xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .\32xl\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000 !important; + .\32xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .\32xl\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff !important; + .\32xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .\32xl\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb !important; + .\32xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .\32xl\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6 !important; + .\32xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .\32xl\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb !important; + .\32xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .\32xl\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db !important; + .\32xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .\32xl\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af !important; + .\32xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .\32xl\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280 !important; + .\32xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .\32xl\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563 !important; + .\32xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .\32xl\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151 !important; + .\32xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .\32xl\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937 !important; + .\32xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .\32xl\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827 !important; + .\32xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .\32xl\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2 !important; + .\32xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .\32xl\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2 !important; + .\32xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .\32xl\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca !important; + .\32xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .\32xl\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5 !important; + .\32xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .\32xl\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171 !important; + .\32xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .\32xl\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444 !important; + .\32xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .\32xl\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626 !important; + .\32xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .\32xl\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c !important; + .\32xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .\32xl\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b !important; + .\32xl\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .\32xl\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d !important; + .\32xl\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .\32xl\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb !important; + .\32xl\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .\32xl\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7 !important; + .\32xl\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .\32xl\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a !important; + .\32xl\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .\32xl\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d !important; + .\32xl\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .\32xl\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24 !important; + .\32xl\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .\32xl\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b !important; + .\32xl\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .\32xl\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706 !important; + .\32xl\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .\32xl\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309 !important; + .\32xl\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .\32xl\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e !important; + .\32xl\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .\32xl\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f !important; + .\32xl\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .\32xl\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5 !important; + .\32xl\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .\32xl\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5 !important; + .\32xl\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .\32xl\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0 !important; + .\32xl\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .\32xl\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7 !important; + .\32xl\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .\32xl\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399 !important; + .\32xl\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .\32xl\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981 !important; + .\32xl\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .\32xl\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669 !important; + .\32xl\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .\32xl\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857 !important; + .\32xl\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .\32xl\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46 !important; + .\32xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent !important; } - .\32xl\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b !important; + .\32xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor !important; } - .\32xl\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff !important; + .\32xl\:focus\:to-black:focus { + --tw-gradient-to: #000 !important; } - .\32xl\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe !important; + .\32xl\:focus\:to-white:focus { + --tw-gradient-to: #fff !important; } - .\32xl\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe !important; + .\32xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb !important; } - .\32xl\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd !important; + .\32xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6 !important; } - .\32xl\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa !important; + .\32xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb !important; } - .\32xl\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6 !important; + .\32xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db !important; } - .\32xl\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb !important; + .\32xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af !important; } - .\32xl\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8 !important; + .\32xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280 !important; } - .\32xl\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af !important; + .\32xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563 !important; } - .\32xl\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a !important; + .\32xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151 !important; } - .\32xl\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff !important; + .\32xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937 !important; } - .\32xl\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff !important; + .\32xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827 !important; } - .\32xl\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe !important; + .\32xl\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2 !important; } - .\32xl\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc !important; + .\32xl\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2 !important; } - .\32xl\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8 !important; + .\32xl\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca !important; } - .\32xl\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1 !important; + .\32xl\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5 !important; } - .\32xl\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5 !important; + .\32xl\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171 !important; } - .\32xl\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca !important; + .\32xl\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444 !important; } - .\32xl\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3 !important; + .\32xl\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626 !important; } - .\32xl\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81 !important; + .\32xl\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c !important; } - .\32xl\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff !important; + .\32xl\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b !important; } - .\32xl\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe !important; + .\32xl\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d !important; } - .\32xl\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe !important; + .\32xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb !important; } - .\32xl\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd !important; + .\32xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7 !important; } - .\32xl\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa !important; + .\32xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a !important; } - .\32xl\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6 !important; + .\32xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d !important; } - .\32xl\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed !important; + .\32xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24 !important; } - .\32xl\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9 !important; + .\32xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b !important; } - .\32xl\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6 !important; + .\32xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706 !important; } - .\32xl\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95 !important; + .\32xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309 !important; } - .\32xl\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8 !important; + .\32xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e !important; } - .\32xl\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3 !important; + .\32xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f !important; } - .\32xl\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8 !important; + .\32xl\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5 !important; } - .\32xl\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4 !important; + .\32xl\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5 !important; } - .\32xl\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6 !important; + .\32xl\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0 !important; } - .\32xl\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899 !important; + .\32xl\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7 !important; } - .\32xl\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777 !important; + .\32xl\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399 !important; } - .\32xl\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d !important; + .\32xl\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981 !important; } - .\32xl\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d !important; + .\32xl\:focus\:to-green-600:focus { + --tw-gradient-to: #059669 !important; } - .\32xl\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843 !important; + .\32xl\:focus\:to-green-700:focus { + --tw-gradient-to: #047857 !important; } - .\32xl\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent !important; + .\32xl\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46 !important; } - .\32xl\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor !important; + .\32xl\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b !important; } - .\32xl\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000 !important; + .\32xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff !important; } - .\32xl\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff !important; + .\32xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe !important; } - .\32xl\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb !important; + .\32xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe !important; } - .\32xl\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6 !important; + .\32xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd !important; } - .\32xl\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb !important; + .\32xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa !important; } - .\32xl\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db !important; + .\32xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6 !important; } - .\32xl\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af !important; + .\32xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb !important; } - .\32xl\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280 !important; + .\32xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8 !important; } - .\32xl\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563 !important; + .\32xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af !important; } - .\32xl\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151 !important; + .\32xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a !important; } - .\32xl\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937 !important; + .\32xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff !important; } - .\32xl\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827 !important; + .\32xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff !important; } - .\32xl\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2 !important; + .\32xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe !important; } - .\32xl\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2 !important; + .\32xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc !important; } - .\32xl\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca !important; + .\32xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8 !important; } - .\32xl\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5 !important; + .\32xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1 !important; } - .\32xl\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171 !important; + .\32xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5 !important; } - .\32xl\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444 !important; + .\32xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca !important; } - .\32xl\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626 !important; + .\32xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3 !important; } - .\32xl\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c !important; + .\32xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81 !important; } - .\32xl\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b !important; + .\32xl\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff !important; } - .\32xl\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d !important; + .\32xl\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe !important; } - .\32xl\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb !important; + .\32xl\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe !important; } - .\32xl\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7 !important; + .\32xl\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd !important; } - .\32xl\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a !important; + .\32xl\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa !important; } - .\32xl\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d !important; + .\32xl\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6 !important; } - .\32xl\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24 !important; + .\32xl\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed !important; } - .\32xl\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b !important; + .\32xl\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9 !important; } - .\32xl\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706 !important; + .\32xl\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6 !important; } - .\32xl\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309 !important; + .\32xl\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95 !important; } - .\32xl\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e !important; + .\32xl\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8 !important; } - .\32xl\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f !important; + .\32xl\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3 !important; } - .\32xl\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5 !important; + .\32xl\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8 !important; } - .\32xl\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5 !important; + .\32xl\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4 !important; } - .\32xl\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0 !important; + .\32xl\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6 !important; } - .\32xl\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7 !important; + .\32xl\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899 !important; } - .\32xl\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399 !important; + .\32xl\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777 !important; } - .\32xl\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981 !important; + .\32xl\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d !important; } - .\32xl\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669 !important; + .\32xl\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d !important; } - .\32xl\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857 !important; + .\32xl\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843 !important; } - .\32xl\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46 !important; + .\32xl\:decoration-slice { + box-decoration-break: slice !important; } - .\32xl\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b !important; + .\32xl\:decoration-clone { + box-decoration-break: clone !important; } - .\32xl\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff !important; + .\32xl\:bg-auto { + background-size: auto !important; } - .\32xl\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe !important; + .\32xl\:bg-cover { + background-size: cover !important; } - .\32xl\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe !important; + .\32xl\:bg-contain { + background-size: contain !important; } - .\32xl\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd !important; + .\32xl\:bg-fixed { + background-attachment: fixed !important; } - .\32xl\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa !important; + .\32xl\:bg-local { + background-attachment: local !important; } - .\32xl\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6 !important; + .\32xl\:bg-scroll { + background-attachment: scroll !important; } - .\32xl\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb !important; + .\32xl\:bg-clip-border { + background-clip: border-box !important; } - .\32xl\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8 !important; + .\32xl\:bg-clip-padding { + background-clip: padding-box !important; } - .\32xl\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af !important; + .\32xl\:bg-clip-content { + background-clip: content-box !important; } - .\32xl\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a !important; + .\32xl\:bg-clip-text { + background-clip: text !important; } - .\32xl\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff !important; + .\32xl\:bg-bottom { + background-position: bottom !important; } - .\32xl\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff !important; + .\32xl\:bg-center { + background-position: center !important; } - .\32xl\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe !important; + .\32xl\:bg-left { + background-position: left !important; } - .\32xl\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc !important; + .\32xl\:bg-left-bottom { + background-position: left bottom !important; } - .\32xl\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8 !important; + .\32xl\:bg-left-top { + background-position: left top !important; } - .\32xl\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1 !important; + .\32xl\:bg-right { + background-position: right !important; } - .\32xl\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5 !important; + .\32xl\:bg-right-bottom { + background-position: right bottom !important; } - .\32xl\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca !important; + .\32xl\:bg-right-top { + background-position: right top !important; } - .\32xl\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3 !important; + .\32xl\:bg-top { + background-position: top !important; } - .\32xl\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81 !important; + .\32xl\:bg-repeat { + background-repeat: repeat !important; } - .\32xl\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff !important; + .\32xl\:bg-no-repeat { + background-repeat: no-repeat !important; } - .\32xl\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe !important; + .\32xl\:bg-repeat-x { + background-repeat: repeat-x !important; } - .\32xl\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe !important; + .\32xl\:bg-repeat-y { + background-repeat: repeat-y !important; } - .\32xl\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd !important; + .\32xl\:bg-repeat-round { + background-repeat: round !important; } - .\32xl\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa !important; + .\32xl\:bg-repeat-space { + background-repeat: space !important; } - .\32xl\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6 !important; + .\32xl\:bg-origin-border { + background-origin: border-box !important; } - .\32xl\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed !important; + .\32xl\:bg-origin-padding { + background-origin: padding-box !important; } - .\32xl\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9 !important; + .\32xl\:bg-origin-content { + background-origin: content-box !important; } - .\32xl\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6 !important; + .\32xl\:fill-current { + fill: currentColor !important; } - .\32xl\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95 !important; + .\32xl\:stroke-current { + stroke: currentColor !important; } - .\32xl\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8 !important; + .\32xl\:stroke-0 { + stroke-width: 0 !important; } - .\32xl\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3 !important; + .\32xl\:stroke-1 { + stroke-width: 1 !important; } - .\32xl\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8 !important; + .\32xl\:stroke-2 { + stroke-width: 2 !important; } - .\32xl\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4 !important; + .\32xl\:object-contain { + object-fit: contain !important; } - .\32xl\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6 !important; + .\32xl\:object-cover { + object-fit: cover !important; } - .\32xl\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899 !important; + .\32xl\:object-fill { + object-fit: fill !important; } - .\32xl\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777 !important; + .\32xl\:object-none { + object-fit: none !important; } - .\32xl\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d !important; + .\32xl\:object-scale-down { + object-fit: scale-down !important; } - .\32xl\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d !important; + .\32xl\:object-bottom { + object-position: bottom !important; } - .\32xl\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843 !important; + .\32xl\:object-center { + object-position: center !important; } - .\32xl\:ring-offset-0 { - --tw-ring-offset-width: 0px !important; + .\32xl\:object-left { + object-position: left !important; } - .\32xl\:ring-offset-1 { - --tw-ring-offset-width: 1px !important; + .\32xl\:object-left-bottom { + object-position: left bottom !important; } - .\32xl\:ring-offset-2 { - --tw-ring-offset-width: 2px !important; + .\32xl\:object-left-top { + object-position: left top !important; } - .\32xl\:ring-offset-4 { - --tw-ring-offset-width: 4px !important; + .\32xl\:object-right { + object-position: right !important; } - .\32xl\:ring-offset-8 { - --tw-ring-offset-width: 8px !important; + .\32xl\:object-right-bottom { + object-position: right bottom !important; } - .\32xl\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px !important; + .\32xl\:object-right-top { + object-position: right top !important; } - .\32xl\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px !important; + .\32xl\:object-top { + object-position: top !important; } - .\32xl\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px !important; + .\32xl\:p-0 { + padding: 0px !important; } - .\32xl\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px !important; + .\32xl\:p-1 { + padding: 0.25rem !important; } - .\32xl\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px !important; + .\32xl\:p-2 { + padding: 0.5rem !important; } - .\32xl\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px !important; + .\32xl\:p-3 { + padding: 0.75rem !important; } - .\32xl\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px !important; + .\32xl\:p-4 { + padding: 1rem !important; } - .\32xl\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px !important; + .\32xl\:p-5 { + padding: 1.25rem !important; } - .\32xl\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px !important; + .\32xl\:p-6 { + padding: 1.5rem !important; } - .\32xl\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px !important; + .\32xl\:p-7 { + padding: 1.75rem !important; } - .\32xl\:ring-transparent { - --tw-ring-color: transparent !important; + .\32xl\:p-8 { + padding: 2rem !important; } - .\32xl\:ring-current { - --tw-ring-color: currentColor !important; + .\32xl\:p-9 { + padding: 2.25rem !important; } - .\32xl\:ring-black { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .\32xl\:p-10 { + padding: 2.5rem !important; } - .\32xl\:ring-white { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .\32xl\:p-11 { + padding: 2.75rem !important; } - .\32xl\:ring-gray-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .\32xl\:p-12 { + padding: 3rem !important; } - .\32xl\:ring-gray-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .\32xl\:p-14 { + padding: 3.5rem !important; } - .\32xl\:ring-gray-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .\32xl\:p-16 { + padding: 4rem !important; } - .\32xl\:ring-gray-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .\32xl\:p-20 { + padding: 5rem !important; } - .\32xl\:ring-gray-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .\32xl\:p-24 { + padding: 6rem !important; } - .\32xl\:ring-gray-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .\32xl\:p-28 { + padding: 7rem !important; } - .\32xl\:ring-gray-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .\32xl\:p-32 { + padding: 8rem !important; } - .\32xl\:ring-gray-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .\32xl\:p-36 { + padding: 9rem !important; } - .\32xl\:ring-gray-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .\32xl\:p-40 { + padding: 10rem !important; } - .\32xl\:ring-gray-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .\32xl\:p-44 { + padding: 11rem !important; } - .\32xl\:ring-red-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .\32xl\:p-48 { + padding: 12rem !important; } - .\32xl\:ring-red-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .\32xl\:p-52 { + padding: 13rem !important; } - .\32xl\:ring-red-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .\32xl\:p-56 { + padding: 14rem !important; } - .\32xl\:ring-red-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .\32xl\:p-60 { + padding: 15rem !important; } - .\32xl\:ring-red-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .\32xl\:p-64 { + padding: 16rem !important; } - .\32xl\:ring-red-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .\32xl\:p-72 { + padding: 18rem !important; } - .\32xl\:ring-red-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .\32xl\:p-80 { + padding: 20rem !important; } - .\32xl\:ring-red-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .\32xl\:p-96 { + padding: 24rem !important; } - .\32xl\:ring-red-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .\32xl\:p-px { + padding: 1px !important; } - .\32xl\:ring-red-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .\32xl\:p-0\.5 { + padding: 0.125rem !important; } - .\32xl\:ring-yellow-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .\32xl\:p-1\.5 { + padding: 0.375rem !important; } - .\32xl\:ring-yellow-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .\32xl\:p-2\.5 { + padding: 0.625rem !important; } - .\32xl\:ring-yellow-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .\32xl\:p-3\.5 { + padding: 0.875rem !important; } - .\32xl\:ring-yellow-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .\32xl\:px-0 { + padding-left: 0px !important; + padding-right: 0px !important; } - .\32xl\:ring-yellow-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .\32xl\:px-1 { + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; } - .\32xl\:ring-yellow-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .\32xl\:px-2 { + padding-left: 0.5rem !important; + padding-right: 0.5rem !important; } - .\32xl\:ring-yellow-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .\32xl\:px-3 { + padding-left: 0.75rem !important; + padding-right: 0.75rem !important; } - .\32xl\:ring-yellow-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .\32xl\:px-4 { + padding-left: 1rem !important; + padding-right: 1rem !important; } - .\32xl\:ring-yellow-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .\32xl\:px-5 { + padding-left: 1.25rem !important; + padding-right: 1.25rem !important; } - .\32xl\:ring-yellow-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .\32xl\:px-6 { + padding-left: 1.5rem !important; + padding-right: 1.5rem !important; } - .\32xl\:ring-green-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .\32xl\:px-7 { + padding-left: 1.75rem !important; + padding-right: 1.75rem !important; } - .\32xl\:ring-green-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .\32xl\:px-8 { + padding-left: 2rem !important; + padding-right: 2rem !important; } - .\32xl\:ring-green-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .\32xl\:px-9 { + padding-left: 2.25rem !important; + padding-right: 2.25rem !important; } - .\32xl\:ring-green-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .\32xl\:px-10 { + padding-left: 2.5rem !important; + padding-right: 2.5rem !important; } - .\32xl\:ring-green-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .\32xl\:px-11 { + padding-left: 2.75rem !important; + padding-right: 2.75rem !important; } - .\32xl\:ring-green-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .\32xl\:px-12 { + padding-left: 3rem !important; + padding-right: 3rem !important; } - .\32xl\:ring-green-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .\32xl\:px-14 { + padding-left: 3.5rem !important; + padding-right: 3.5rem !important; } - .\32xl\:ring-green-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .\32xl\:px-16 { + padding-left: 4rem !important; + padding-right: 4rem !important; } - .\32xl\:ring-green-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .\32xl\:px-20 { + padding-left: 5rem !important; + padding-right: 5rem !important; } - .\32xl\:ring-green-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .\32xl\:px-24 { + padding-left: 6rem !important; + padding-right: 6rem !important; } - .\32xl\:ring-blue-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .\32xl\:px-28 { + padding-left: 7rem !important; + padding-right: 7rem !important; } - .\32xl\:ring-blue-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .\32xl\:px-32 { + padding-left: 8rem !important; + padding-right: 8rem !important; } - .\32xl\:ring-blue-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .\32xl\:px-36 { + padding-left: 9rem !important; + padding-right: 9rem !important; } - .\32xl\:ring-blue-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .\32xl\:px-40 { + padding-left: 10rem !important; + padding-right: 10rem !important; } - .\32xl\:ring-blue-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .\32xl\:px-44 { + padding-left: 11rem !important; + padding-right: 11rem !important; } - .\32xl\:ring-blue-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .\32xl\:px-48 { + padding-left: 12rem !important; + padding-right: 12rem !important; } - .\32xl\:ring-blue-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .\32xl\:px-52 { + padding-left: 13rem !important; + padding-right: 13rem !important; } - .\32xl\:ring-blue-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .\32xl\:px-56 { + padding-left: 14rem !important; + padding-right: 14rem !important; } - .\32xl\:ring-blue-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .\32xl\:px-60 { + padding-left: 15rem !important; + padding-right: 15rem !important; } - .\32xl\:ring-blue-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .\32xl\:px-64 { + padding-left: 16rem !important; + padding-right: 16rem !important; } - .\32xl\:ring-indigo-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .\32xl\:px-72 { + padding-left: 18rem !important; + padding-right: 18rem !important; } - .\32xl\:ring-indigo-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .\32xl\:px-80 { + padding-left: 20rem !important; + padding-right: 20rem !important; } - .\32xl\:ring-indigo-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .\32xl\:px-96 { + padding-left: 24rem !important; + padding-right: 24rem !important; } - .\32xl\:ring-indigo-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .\32xl\:px-px { + padding-left: 1px !important; + padding-right: 1px !important; } - .\32xl\:ring-indigo-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .\32xl\:px-0\.5 { + padding-left: 0.125rem !important; + padding-right: 0.125rem !important; } - .\32xl\:ring-indigo-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .\32xl\:px-1\.5 { + padding-left: 0.375rem !important; + padding-right: 0.375rem !important; } - .\32xl\:ring-indigo-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .\32xl\:px-2\.5 { + padding-left: 0.625rem !important; + padding-right: 0.625rem !important; } - .\32xl\:ring-indigo-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .\32xl\:px-3\.5 { + padding-left: 0.875rem !important; + padding-right: 0.875rem !important; } - .\32xl\:ring-indigo-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .\32xl\:py-0 { + padding-top: 0px !important; + padding-bottom: 0px !important; } - .\32xl\:ring-indigo-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .\32xl\:py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; } - .\32xl\:ring-purple-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .\32xl\:py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; } - .\32xl\:ring-purple-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .\32xl\:py-3 { + padding-top: 0.75rem !important; + padding-bottom: 0.75rem !important; } - .\32xl\:ring-purple-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .\32xl\:py-4 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; } - .\32xl\:ring-purple-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .\32xl\:py-5 { + padding-top: 1.25rem !important; + padding-bottom: 1.25rem !important; } - .\32xl\:ring-purple-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .\32xl\:py-6 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; } - .\32xl\:ring-purple-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .\32xl\:py-7 { + padding-top: 1.75rem !important; + padding-bottom: 1.75rem !important; } - .\32xl\:ring-purple-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .\32xl\:py-8 { + padding-top: 2rem !important; + padding-bottom: 2rem !important; } - .\32xl\:ring-purple-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .\32xl\:py-9 { + padding-top: 2.25rem !important; + padding-bottom: 2.25rem !important; } - .\32xl\:ring-purple-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .\32xl\:py-10 { + padding-top: 2.5rem !important; + padding-bottom: 2.5rem !important; } - .\32xl\:ring-purple-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .\32xl\:py-11 { + padding-top: 2.75rem !important; + padding-bottom: 2.75rem !important; } - .\32xl\:ring-pink-50 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .\32xl\:py-12 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; } - .\32xl\:ring-pink-100 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .\32xl\:py-14 { + padding-top: 3.5rem !important; + padding-bottom: 3.5rem !important; } - .\32xl\:ring-pink-200 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .\32xl\:py-16 { + padding-top: 4rem !important; + padding-bottom: 4rem !important; } - .\32xl\:ring-pink-300 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .\32xl\:py-20 { + padding-top: 5rem !important; + padding-bottom: 5rem !important; } - .\32xl\:ring-pink-400 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .\32xl\:py-24 { + padding-top: 6rem !important; + padding-bottom: 6rem !important; } - .\32xl\:ring-pink-500 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .\32xl\:py-28 { + padding-top: 7rem !important; + padding-bottom: 7rem !important; } - .\32xl\:ring-pink-600 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .\32xl\:py-32 { + padding-top: 8rem !important; + padding-bottom: 8rem !important; } - .\32xl\:ring-pink-700 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .\32xl\:py-36 { + padding-top: 9rem !important; + padding-bottom: 9rem !important; } - .\32xl\:ring-pink-800 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .\32xl\:py-40 { + padding-top: 10rem !important; + padding-bottom: 10rem !important; } - .\32xl\:ring-pink-900 { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .\32xl\:py-44 { + padding-top: 11rem !important; + padding-bottom: 11rem !important; } - .\32xl\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent !important; + .\32xl\:py-48 { + padding-top: 12rem !important; + padding-bottom: 12rem !important; } - .\32xl\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor !important; + .\32xl\:py-52 { + padding-top: 13rem !important; + padding-bottom: 13rem !important; } - .\32xl\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .\32xl\:py-56 { + padding-top: 14rem !important; + padding-bottom: 14rem !important; } - .\32xl\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .\32xl\:py-60 { + padding-top: 15rem !important; + padding-bottom: 15rem !important; } - .\32xl\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .\32xl\:py-64 { + padding-top: 16rem !important; + padding-bottom: 16rem !important; } - .\32xl\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .\32xl\:py-72 { + padding-top: 18rem !important; + padding-bottom: 18rem !important; } - .\32xl\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .\32xl\:py-80 { + padding-top: 20rem !important; + padding-bottom: 20rem !important; } - .\32xl\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .\32xl\:py-96 { + padding-top: 24rem !important; + padding-bottom: 24rem !important; } - .\32xl\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .\32xl\:py-px { + padding-top: 1px !important; + padding-bottom: 1px !important; } - .\32xl\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .\32xl\:py-0\.5 { + padding-top: 0.125rem !important; + padding-bottom: 0.125rem !important; } - .\32xl\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .\32xl\:py-1\.5 { + padding-top: 0.375rem !important; + padding-bottom: 0.375rem !important; } - .\32xl\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .\32xl\:py-2\.5 { + padding-top: 0.625rem !important; + padding-bottom: 0.625rem !important; } - .\32xl\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .\32xl\:py-3\.5 { + padding-top: 0.875rem !important; + padding-bottom: 0.875rem !important; } - .\32xl\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .\32xl\:pt-0 { + padding-top: 0px !important; } - .\32xl\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .\32xl\:pt-1 { + padding-top: 0.25rem !important; } - .\32xl\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .\32xl\:pt-2 { + padding-top: 0.5rem !important; } - .\32xl\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .\32xl\:pt-3 { + padding-top: 0.75rem !important; } - .\32xl\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .\32xl\:pt-4 { + padding-top: 1rem !important; } - .\32xl\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .\32xl\:pt-5 { + padding-top: 1.25rem !important; } - .\32xl\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .\32xl\:pt-6 { + padding-top: 1.5rem !important; } - .\32xl\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .\32xl\:pt-7 { + padding-top: 1.75rem !important; } - .\32xl\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .\32xl\:pt-8 { + padding-top: 2rem !important; } - .\32xl\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .\32xl\:pt-9 { + padding-top: 2.25rem !important; } - .\32xl\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .\32xl\:pt-10 { + padding-top: 2.5rem !important; } - .\32xl\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .\32xl\:pt-11 { + padding-top: 2.75rem !important; } - .\32xl\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .\32xl\:pt-12 { + padding-top: 3rem !important; } - .\32xl\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .\32xl\:pt-14 { + padding-top: 3.5rem !important; } - .\32xl\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .\32xl\:pt-16 { + padding-top: 4rem !important; } - .\32xl\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .\32xl\:pt-20 { + padding-top: 5rem !important; } - .\32xl\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .\32xl\:pt-24 { + padding-top: 6rem !important; } - .\32xl\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .\32xl\:pt-28 { + padding-top: 7rem !important; } - .\32xl\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .\32xl\:pt-32 { + padding-top: 8rem !important; } - .\32xl\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .\32xl\:pt-36 { + padding-top: 9rem !important; } - .\32xl\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .\32xl\:pt-40 { + padding-top: 10rem !important; } - .\32xl\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .\32xl\:pt-44 { + padding-top: 11rem !important; } - .\32xl\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .\32xl\:pt-48 { + padding-top: 12rem !important; } - .\32xl\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .\32xl\:pt-52 { + padding-top: 13rem !important; } - .\32xl\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .\32xl\:pt-56 { + padding-top: 14rem !important; } - .\32xl\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .\32xl\:pt-60 { + padding-top: 15rem !important; } - .\32xl\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .\32xl\:pt-64 { + padding-top: 16rem !important; } - .\32xl\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .\32xl\:pt-72 { + padding-top: 18rem !important; } - .\32xl\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .\32xl\:pt-80 { + padding-top: 20rem !important; } - .\32xl\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .\32xl\:pt-96 { + padding-top: 24rem !important; } - .\32xl\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .\32xl\:pt-px { + padding-top: 1px !important; } - .\32xl\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .\32xl\:pt-0\.5 { + padding-top: 0.125rem !important; } - .\32xl\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .\32xl\:pt-1\.5 { + padding-top: 0.375rem !important; } - .\32xl\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .\32xl\:pt-2\.5 { + padding-top: 0.625rem !important; } - .\32xl\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .\32xl\:pt-3\.5 { + padding-top: 0.875rem !important; } - .\32xl\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .\32xl\:pr-0 { + padding-right: 0px !important; } - .\32xl\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .\32xl\:pr-1 { + padding-right: 0.25rem !important; } - .\32xl\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .\32xl\:pr-2 { + padding-right: 0.5rem !important; } - .\32xl\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .\32xl\:pr-3 { + padding-right: 0.75rem !important; } - .\32xl\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .\32xl\:pr-4 { + padding-right: 1rem !important; } - .\32xl\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .\32xl\:pr-5 { + padding-right: 1.25rem !important; } - .\32xl\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .\32xl\:pr-6 { + padding-right: 1.5rem !important; } - .\32xl\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .\32xl\:pr-7 { + padding-right: 1.75rem !important; } - .\32xl\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .\32xl\:pr-8 { + padding-right: 2rem !important; } - .\32xl\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .\32xl\:pr-9 { + padding-right: 2.25rem !important; } - .\32xl\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .\32xl\:pr-10 { + padding-right: 2.5rem !important; } - .\32xl\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .\32xl\:pr-11 { + padding-right: 2.75rem !important; } - .\32xl\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .\32xl\:pr-12 { + padding-right: 3rem !important; } - .\32xl\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .\32xl\:pr-14 { + padding-right: 3.5rem !important; } - .\32xl\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .\32xl\:pr-16 { + padding-right: 4rem !important; } - .\32xl\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .\32xl\:pr-20 { + padding-right: 5rem !important; } - .\32xl\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .\32xl\:pr-24 { + padding-right: 6rem !important; } - .\32xl\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .\32xl\:pr-28 { + padding-right: 7rem !important; } - .\32xl\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .\32xl\:pr-32 { + padding-right: 8rem !important; } - .\32xl\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .\32xl\:pr-36 { + padding-right: 9rem !important; } - .\32xl\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .\32xl\:pr-40 { + padding-right: 10rem !important; } - .\32xl\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .\32xl\:pr-44 { + padding-right: 11rem !important; } - .\32xl\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .\32xl\:pr-48 { + padding-right: 12rem !important; } - .\32xl\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .\32xl\:pr-52 { + padding-right: 13rem !important; } - .\32xl\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .\32xl\:pr-56 { + padding-right: 14rem !important; } - .\32xl\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .\32xl\:pr-60 { + padding-right: 15rem !important; } - .\32xl\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .\32xl\:pr-64 { + padding-right: 16rem !important; } - .\32xl\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .\32xl\:pr-72 { + padding-right: 18rem !important; } - .\32xl\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .\32xl\:pr-80 { + padding-right: 20rem !important; } - .\32xl\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .\32xl\:pr-96 { + padding-right: 24rem !important; } - .\32xl\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .\32xl\:pr-px { + padding-right: 1px !important; } - .\32xl\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .\32xl\:pr-0\.5 { + padding-right: 0.125rem !important; } - .\32xl\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .\32xl\:pr-1\.5 { + padding-right: 0.375rem !important; } - .\32xl\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .\32xl\:pr-2\.5 { + padding-right: 0.625rem !important; } - .\32xl\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .\32xl\:pr-3\.5 { + padding-right: 0.875rem !important; } - .\32xl\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .\32xl\:pb-0 { + padding-bottom: 0px !important; } - .\32xl\:focus\:ring-transparent:focus { - --tw-ring-color: transparent !important; + .\32xl\:pb-1 { + padding-bottom: 0.25rem !important; } - .\32xl\:focus\:ring-current:focus { - --tw-ring-color: currentColor !important; + .\32xl\:pb-2 { + padding-bottom: 0.5rem !important; } - .\32xl\:focus\:ring-black:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; + .\32xl\:pb-3 { + padding-bottom: 0.75rem !important; } - .\32xl\:focus\:ring-white:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; + .\32xl\:pb-4 { + padding-bottom: 1rem !important; } - .\32xl\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; + .\32xl\:pb-5 { + padding-bottom: 1.25rem !important; } - .\32xl\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; + .\32xl\:pb-6 { + padding-bottom: 1.5rem !important; } - .\32xl\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; + .\32xl\:pb-7 { + padding-bottom: 1.75rem !important; } - .\32xl\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; + .\32xl\:pb-8 { + padding-bottom: 2rem !important; } - .\32xl\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; + .\32xl\:pb-9 { + padding-bottom: 2.25rem !important; } - .\32xl\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; + .\32xl\:pb-10 { + padding-bottom: 2.5rem !important; } - .\32xl\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; + .\32xl\:pb-11 { + padding-bottom: 2.75rem !important; } - .\32xl\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; + .\32xl\:pb-12 { + padding-bottom: 3rem !important; } - .\32xl\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; + .\32xl\:pb-14 { + padding-bottom: 3.5rem !important; } - .\32xl\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; + .\32xl\:pb-16 { + padding-bottom: 4rem !important; } - .\32xl\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; + .\32xl\:pb-20 { + padding-bottom: 5rem !important; } - .\32xl\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; + .\32xl\:pb-24 { + padding-bottom: 6rem !important; } - .\32xl\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; + .\32xl\:pb-28 { + padding-bottom: 7rem !important; } - .\32xl\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; + .\32xl\:pb-32 { + padding-bottom: 8rem !important; } - .\32xl\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; + .\32xl\:pb-36 { + padding-bottom: 9rem !important; } - .\32xl\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; + .\32xl\:pb-40 { + padding-bottom: 10rem !important; } - .\32xl\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; + .\32xl\:pb-44 { + padding-bottom: 11rem !important; } - .\32xl\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; + .\32xl\:pb-48 { + padding-bottom: 12rem !important; } - .\32xl\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; + .\32xl\:pb-52 { + padding-bottom: 13rem !important; } - .\32xl\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; + .\32xl\:pb-56 { + padding-bottom: 14rem !important; } - .\32xl\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; + .\32xl\:pb-60 { + padding-bottom: 15rem !important; } - .\32xl\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; + .\32xl\:pb-64 { + padding-bottom: 16rem !important; } - .\32xl\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; + .\32xl\:pb-72 { + padding-bottom: 18rem !important; } - .\32xl\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; + .\32xl\:pb-80 { + padding-bottom: 20rem !important; } - .\32xl\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; + .\32xl\:pb-96 { + padding-bottom: 24rem !important; } - .\32xl\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; + .\32xl\:pb-px { + padding-bottom: 1px !important; } - .\32xl\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; + .\32xl\:pb-0\.5 { + padding-bottom: 0.125rem !important; } - .\32xl\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; + .\32xl\:pb-1\.5 { + padding-bottom: 0.375rem !important; } - .\32xl\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; + .\32xl\:pb-2\.5 { + padding-bottom: 0.625rem !important; } - .\32xl\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; + .\32xl\:pb-3\.5 { + padding-bottom: 0.875rem !important; } - .\32xl\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; + .\32xl\:pl-0 { + padding-left: 0px !important; } - .\32xl\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; + .\32xl\:pl-1 { + padding-left: 0.25rem !important; } - .\32xl\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; + .\32xl\:pl-2 { + padding-left: 0.5rem !important; } - .\32xl\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; + .\32xl\:pl-3 { + padding-left: 0.75rem !important; } - .\32xl\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; + .\32xl\:pl-4 { + padding-left: 1rem !important; } - .\32xl\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; + .\32xl\:pl-5 { + padding-left: 1.25rem !important; } - .\32xl\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; + .\32xl\:pl-6 { + padding-left: 1.5rem !important; } - .\32xl\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; + .\32xl\:pl-7 { + padding-left: 1.75rem !important; } - .\32xl\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; + .\32xl\:pl-8 { + padding-left: 2rem !important; } - .\32xl\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; + .\32xl\:pl-9 { + padding-left: 2.25rem !important; } - .\32xl\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; + .\32xl\:pl-10 { + padding-left: 2.5rem !important; } - .\32xl\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; + .\32xl\:pl-11 { + padding-left: 2.75rem !important; } - .\32xl\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; + .\32xl\:pl-12 { + padding-left: 3rem !important; } - .\32xl\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; + .\32xl\:pl-14 { + padding-left: 3.5rem !important; } - .\32xl\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; + .\32xl\:pl-16 { + padding-left: 4rem !important; } - .\32xl\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; + .\32xl\:pl-20 { + padding-left: 5rem !important; } - .\32xl\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; + .\32xl\:pl-24 { + padding-left: 6rem !important; } - .\32xl\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; + .\32xl\:pl-28 { + padding-left: 7rem !important; } - .\32xl\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; + .\32xl\:pl-32 { + padding-left: 8rem !important; } - .\32xl\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; + .\32xl\:pl-36 { + padding-left: 9rem !important; } - .\32xl\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; + .\32xl\:pl-40 { + padding-left: 10rem !important; } - .\32xl\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; + .\32xl\:pl-44 { + padding-left: 11rem !important; } - .\32xl\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; + .\32xl\:pl-48 { + padding-left: 12rem !important; } - .\32xl\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; + .\32xl\:pl-52 { + padding-left: 13rem !important; } - .\32xl\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; + .\32xl\:pl-56 { + padding-left: 14rem !important; } - .\32xl\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; + .\32xl\:pl-60 { + padding-left: 15rem !important; } - .\32xl\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; + .\32xl\:pl-64 { + padding-left: 16rem !important; } - .\32xl\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; + .\32xl\:pl-72 { + padding-left: 18rem !important; } - .\32xl\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; + .\32xl\:pl-80 { + padding-left: 20rem !important; } - .\32xl\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; + .\32xl\:pl-96 { + padding-left: 24rem !important; } - .\32xl\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; + .\32xl\:pl-px { + padding-left: 1px !important; } - .\32xl\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; + .\32xl\:pl-0\.5 { + padding-left: 0.125rem !important; } - .\32xl\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; + .\32xl\:pl-1\.5 { + padding-left: 0.375rem !important; } - .\32xl\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; + .\32xl\:pl-2\.5 { + padding-left: 0.625rem !important; } - .\32xl\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; + .\32xl\:pl-3\.5 { + padding-left: 0.875rem !important; } - .\32xl\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; + .\32xl\:text-left { + text-align: left !important; } - .\32xl\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; + .\32xl\:text-center { + text-align: center !important; } - .\32xl\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; + .\32xl\:text-right { + text-align: right !important; } - .\32xl\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; + .\32xl\:text-justify { + text-align: justify !important; } - .\32xl\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; + .\32xl\:align-baseline { + vertical-align: baseline !important; } - .\32xl\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; + .\32xl\:align-top { + vertical-align: top !important; } - .\32xl\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; + .\32xl\:align-middle { + vertical-align: middle !important; } - .\32xl\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; + .\32xl\:align-bottom { + vertical-align: bottom !important; } - .\32xl\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; + .\32xl\:align-text-top { + vertical-align: text-top !important; } - .\32xl\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; + .\32xl\:align-text-bottom { + vertical-align: text-bottom !important; } - .\32xl\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; + .\32xl\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; } - .\32xl\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; + .\32xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important; } - .\32xl\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; + .\32xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; } - .\32xl\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; + .\32xl\:text-xs { + font-size: 0.75rem !important; + line-height: 1rem !important; } - .\32xl\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1 !important; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; + .\32xl\:text-sm { + font-size: 0.875rem !important; + line-height: 1.25rem !important; } - .\32xl\:ring-opacity-0 { - --tw-ring-opacity: 0 !important; + .\32xl\:text-base { + font-size: 1rem !important; + line-height: 1.5rem !important; } - .\32xl\:ring-opacity-5 { - --tw-ring-opacity: 0.05 !important; + .\32xl\:text-lg { + font-size: 1.125rem !important; + line-height: 1.75rem !important; } - .\32xl\:ring-opacity-10 { - --tw-ring-opacity: 0.1 !important; + .\32xl\:text-xl { + font-size: 1.25rem !important; + line-height: 1.75rem !important; } - .\32xl\:ring-opacity-20 { - --tw-ring-opacity: 0.2 !important; + .\32xl\:text-2xl { + font-size: 1.5rem !important; + line-height: 2rem !important; } - .\32xl\:ring-opacity-25 { - --tw-ring-opacity: 0.25 !important; + .\32xl\:text-3xl { + font-size: 1.875rem !important; + line-height: 2.25rem !important; } - .\32xl\:ring-opacity-30 { - --tw-ring-opacity: 0.3 !important; + .\32xl\:text-4xl { + font-size: 2.25rem !important; + line-height: 2.5rem !important; } - .\32xl\:ring-opacity-40 { - --tw-ring-opacity: 0.4 !important; + .\32xl\:text-5xl { + font-size: 3rem !important; + line-height: 1 !important; } - .\32xl\:ring-opacity-50 { - --tw-ring-opacity: 0.5 !important; + .\32xl\:text-6xl { + font-size: 3.75rem !important; + line-height: 1 !important; } - .\32xl\:ring-opacity-60 { - --tw-ring-opacity: 0.6 !important; + .\32xl\:text-7xl { + font-size: 4.5rem !important; + line-height: 1 !important; } - .\32xl\:ring-opacity-70 { - --tw-ring-opacity: 0.7 !important; + .\32xl\:text-8xl { + font-size: 6rem !important; + line-height: 1 !important; } - .\32xl\:ring-opacity-75 { - --tw-ring-opacity: 0.75 !important; + .\32xl\:text-9xl { + font-size: 8rem !important; + line-height: 1 !important; } - .\32xl\:ring-opacity-80 { - --tw-ring-opacity: 0.8 !important; + .\32xl\:font-thin { + font-weight: 100 !important; } - .\32xl\:ring-opacity-90 { - --tw-ring-opacity: 0.9 !important; + .\32xl\:font-extralight { + font-weight: 200 !important; } - .\32xl\:ring-opacity-95 { - --tw-ring-opacity: 0.95 !important; + .\32xl\:font-light { + font-weight: 300 !important; } - .\32xl\:ring-opacity-100 { - --tw-ring-opacity: 1 !important; + .\32xl\:font-normal { + font-weight: 400 !important; } - .\32xl\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0 !important; + .\32xl\:font-medium { + font-weight: 500 !important; } - .\32xl\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05 !important; + .\32xl\:font-semibold { + font-weight: 600 !important; } - .\32xl\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1 !important; + .\32xl\:font-bold { + font-weight: 700 !important; } - .\32xl\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2 !important; + .\32xl\:font-extrabold { + font-weight: 800 !important; } - .\32xl\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25 !important; + .\32xl\:font-black { + font-weight: 900 !important; } - .\32xl\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3 !important; + .\32xl\:uppercase { + text-transform: uppercase !important; } - .\32xl\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4 !important; + .\32xl\:lowercase { + text-transform: lowercase !important; } - .\32xl\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5 !important; + .\32xl\:capitalize { + text-transform: capitalize !important; } - .\32xl\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6 !important; + .\32xl\:normal-case { + text-transform: none !important; } - .\32xl\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7 !important; + .\32xl\:italic { + font-style: italic !important; } - .\32xl\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75 !important; + .\32xl\:not-italic { + font-style: normal !important; } - .\32xl\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8 !important; + .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; } - .\32xl\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9 !important; + .\32xl\:normal-nums { + font-variant-numeric: normal !important; } - .\32xl\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95 !important; + .\32xl\:ordinal { + --tw-ordinal: ordinal !important; } - .\32xl\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1 !important; + .\32xl\:slashed-zero { + --tw-slashed-zero: slashed-zero !important; } - .\32xl\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0 !important; + .\32xl\:lining-nums { + --tw-numeric-figure: lining-nums !important; } - .\32xl\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05 !important; + .\32xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums !important; } - .\32xl\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1 !important; + .\32xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums !important; } - .\32xl\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2 !important; + .\32xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums !important; } - .\32xl\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25 !important; + .\32xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions !important; } - .\32xl\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3 !important; + .\32xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions !important; } - .\32xl\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4 !important; + .\32xl\:leading-3 { + line-height: .75rem !important; } - .\32xl\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5 !important; + .\32xl\:leading-4 { + line-height: 1rem !important; } - .\32xl\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6 !important; + .\32xl\:leading-5 { + line-height: 1.25rem !important; } - .\32xl\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7 !important; + .\32xl\:leading-6 { + line-height: 1.5rem !important; } - .\32xl\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75 !important; + .\32xl\:leading-7 { + line-height: 1.75rem !important; } - .\32xl\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8 !important; + .\32xl\:leading-8 { + line-height: 2rem !important; } - .\32xl\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9 !important; + .\32xl\:leading-9 { + line-height: 2.25rem !important; } - .\32xl\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95 !important; + .\32xl\:leading-10 { + line-height: 2.5rem !important; } - .\32xl\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1 !important; + .\32xl\:leading-none { + line-height: 1 !important; } - .\32xl\:fill-current { - fill: currentColor !important; + .\32xl\:leading-tight { + line-height: 1.25 !important; } - .\32xl\:stroke-current { - stroke: currentColor !important; + .\32xl\:leading-snug { + line-height: 1.375 !important; } - .\32xl\:stroke-0 { - stroke-width: 0 !important; + .\32xl\:leading-normal { + line-height: 1.5 !important; } - .\32xl\:stroke-1 { - stroke-width: 1 !important; + .\32xl\:leading-relaxed { + line-height: 1.625 !important; } - .\32xl\:stroke-2 { - stroke-width: 2 !important; + .\32xl\:leading-loose { + line-height: 2 !important; } - .\32xl\:table-auto { - table-layout: auto !important; + .\32xl\:tracking-tighter { + letter-spacing: -0.05em !important; } - .\32xl\:table-fixed { - table-layout: fixed !important; + .\32xl\:tracking-tight { + letter-spacing: -0.025em !important; } - .\32xl\:text-left { - text-align: left !important; + .\32xl\:tracking-normal { + letter-spacing: 0em !important; } - .\32xl\:text-center { - text-align: center !important; + .\32xl\:tracking-wide { + letter-spacing: 0.025em !important; } - .\32xl\:text-right { - text-align: right !important; + .\32xl\:tracking-wider { + letter-spacing: 0.05em !important; } - .\32xl\:text-justify { - text-align: justify !important; + .\32xl\:tracking-widest { + letter-spacing: 0.1em !important; } .\32xl\:text-transparent { @@ -169737,5258 +169926,4949 @@ video { } .\32xl\:focus\:text-red-500:focus { - --tw-text-opacity: 1 !important; - color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-red-600:focus { - --tw-text-opacity: 1 !important; - color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-red-700:focus { - --tw-text-opacity: 1 !important; - color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-red-800:focus { - --tw-text-opacity: 1 !important; - color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-red-900:focus { - --tw-text-opacity: 1 !important; - color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-yellow-50:focus { - --tw-text-opacity: 1 !important; - color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-yellow-100:focus { - --tw-text-opacity: 1 !important; - color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-yellow-200:focus { - --tw-text-opacity: 1 !important; - color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-yellow-300:focus { - --tw-text-opacity: 1 !important; - color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-yellow-400:focus { - --tw-text-opacity: 1 !important; - color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-yellow-500:focus { - --tw-text-opacity: 1 !important; - color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-yellow-600:focus { - --tw-text-opacity: 1 !important; - color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-yellow-700:focus { - --tw-text-opacity: 1 !important; - color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-yellow-800:focus { - --tw-text-opacity: 1 !important; - color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-yellow-900:focus { - --tw-text-opacity: 1 !important; - color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-green-50:focus { - --tw-text-opacity: 1 !important; - color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-green-100:focus { - --tw-text-opacity: 1 !important; - color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-green-200:focus { - --tw-text-opacity: 1 !important; - color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-green-300:focus { - --tw-text-opacity: 1 !important; - color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-green-400:focus { - --tw-text-opacity: 1 !important; - color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-green-500:focus { - --tw-text-opacity: 1 !important; - color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-green-600:focus { - --tw-text-opacity: 1 !important; - color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-green-700:focus { - --tw-text-opacity: 1 !important; - color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-green-800:focus { - --tw-text-opacity: 1 !important; - color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-green-900:focus { - --tw-text-opacity: 1 !important; - color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-blue-50:focus { - --tw-text-opacity: 1 !important; - color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-blue-100:focus { - --tw-text-opacity: 1 !important; - color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-blue-200:focus { - --tw-text-opacity: 1 !important; - color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-blue-300:focus { - --tw-text-opacity: 1 !important; - color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-blue-400:focus { - --tw-text-opacity: 1 !important; - color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-blue-500:focus { - --tw-text-opacity: 1 !important; - color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-blue-600:focus { - --tw-text-opacity: 1 !important; - color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-blue-700:focus { - --tw-text-opacity: 1 !important; - color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-blue-800:focus { - --tw-text-opacity: 1 !important; - color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-blue-900:focus { - --tw-text-opacity: 1 !important; - color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-indigo-50:focus { - --tw-text-opacity: 1 !important; - color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-indigo-100:focus { - --tw-text-opacity: 1 !important; - color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-indigo-200:focus { - --tw-text-opacity: 1 !important; - color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-indigo-300:focus { - --tw-text-opacity: 1 !important; - color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-indigo-400:focus { - --tw-text-opacity: 1 !important; - color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-indigo-500:focus { - --tw-text-opacity: 1 !important; - color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-indigo-600:focus { - --tw-text-opacity: 1 !important; - color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-indigo-700:focus { - --tw-text-opacity: 1 !important; - color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-indigo-800:focus { - --tw-text-opacity: 1 !important; - color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-indigo-900:focus { - --tw-text-opacity: 1 !important; - color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-purple-50:focus { - --tw-text-opacity: 1 !important; - color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-purple-100:focus { - --tw-text-opacity: 1 !important; - color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-purple-200:focus { - --tw-text-opacity: 1 !important; - color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-purple-300:focus { - --tw-text-opacity: 1 !important; - color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-purple-400:focus { - --tw-text-opacity: 1 !important; - color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-purple-500:focus { - --tw-text-opacity: 1 !important; - color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-purple-600:focus { - --tw-text-opacity: 1 !important; - color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-purple-700:focus { - --tw-text-opacity: 1 !important; - color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-purple-800:focus { - --tw-text-opacity: 1 !important; - color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-purple-900:focus { - --tw-text-opacity: 1 !important; - color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-pink-50:focus { - --tw-text-opacity: 1 !important; - color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-pink-100:focus { - --tw-text-opacity: 1 !important; - color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-pink-200:focus { - --tw-text-opacity: 1 !important; - color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-pink-300:focus { - --tw-text-opacity: 1 !important; - color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-pink-400:focus { - --tw-text-opacity: 1 !important; - color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-pink-500:focus { - --tw-text-opacity: 1 !important; - color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-pink-600:focus { - --tw-text-opacity: 1 !important; - color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-pink-700:focus { - --tw-text-opacity: 1 !important; - color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-pink-800:focus { - --tw-text-opacity: 1 !important; - color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; - } - - .\32xl\:focus\:text-pink-900:focus { - --tw-text-opacity: 1 !important; - color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; - } - - .\32xl\:text-opacity-0 { - --tw-text-opacity: 0 !important; - } - - .\32xl\:text-opacity-5 { - --tw-text-opacity: 0.05 !important; - } - - .\32xl\:text-opacity-10 { - --tw-text-opacity: 0.1 !important; - } - - .\32xl\:text-opacity-20 { - --tw-text-opacity: 0.2 !important; - } - - .\32xl\:text-opacity-25 { - --tw-text-opacity: 0.25 !important; - } - - .\32xl\:text-opacity-30 { - --tw-text-opacity: 0.3 !important; - } - - .\32xl\:text-opacity-40 { - --tw-text-opacity: 0.4 !important; - } - - .\32xl\:text-opacity-50 { - --tw-text-opacity: 0.5 !important; - } - - .\32xl\:text-opacity-60 { - --tw-text-opacity: 0.6 !important; - } - - .\32xl\:text-opacity-70 { - --tw-text-opacity: 0.7 !important; - } - - .\32xl\:text-opacity-75 { - --tw-text-opacity: 0.75 !important; - } - - .\32xl\:text-opacity-80 { - --tw-text-opacity: 0.8 !important; - } - - .\32xl\:text-opacity-90 { - --tw-text-opacity: 0.9 !important; - } - - .\32xl\:text-opacity-95 { - --tw-text-opacity: 0.95 !important; - } - - .\32xl\:text-opacity-100 { - --tw-text-opacity: 1 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-0 { - --tw-text-opacity: 0 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-5 { - --tw-text-opacity: 0.05 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-10 { - --tw-text-opacity: 0.1 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-20 { - --tw-text-opacity: 0.2 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-25 { - --tw-text-opacity: 0.25 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-30 { - --tw-text-opacity: 0.3 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-40 { - --tw-text-opacity: 0.4 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-50 { - --tw-text-opacity: 0.5 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-60 { - --tw-text-opacity: 0.6 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-70 { - --tw-text-opacity: 0.7 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-75 { - --tw-text-opacity: 0.75 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-80 { - --tw-text-opacity: 0.8 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-90 { - --tw-text-opacity: 0.9 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-95 { - --tw-text-opacity: 0.95 !important; - } - - .group:hover .\32xl\:group-hover\:text-opacity-100 { - --tw-text-opacity: 1 !important; - } - - .\32xl\:focus-within\:text-opacity-0:focus-within { - --tw-text-opacity: 0 !important; - } - - .\32xl\:focus-within\:text-opacity-5:focus-within { - --tw-text-opacity: 0.05 !important; - } - - .\32xl\:focus-within\:text-opacity-10:focus-within { - --tw-text-opacity: 0.1 !important; - } - - .\32xl\:focus-within\:text-opacity-20:focus-within { - --tw-text-opacity: 0.2 !important; - } - - .\32xl\:focus-within\:text-opacity-25:focus-within { - --tw-text-opacity: 0.25 !important; - } - - .\32xl\:focus-within\:text-opacity-30:focus-within { - --tw-text-opacity: 0.3 !important; - } - - .\32xl\:focus-within\:text-opacity-40:focus-within { - --tw-text-opacity: 0.4 !important; - } - - .\32xl\:focus-within\:text-opacity-50:focus-within { - --tw-text-opacity: 0.5 !important; - } - - .\32xl\:focus-within\:text-opacity-60:focus-within { - --tw-text-opacity: 0.6 !important; - } - - .\32xl\:focus-within\:text-opacity-70:focus-within { - --tw-text-opacity: 0.7 !important; - } - - .\32xl\:focus-within\:text-opacity-75:focus-within { - --tw-text-opacity: 0.75 !important; - } - - .\32xl\:focus-within\:text-opacity-80:focus-within { - --tw-text-opacity: 0.8 !important; - } - - .\32xl\:focus-within\:text-opacity-90:focus-within { - --tw-text-opacity: 0.9 !important; - } - - .\32xl\:focus-within\:text-opacity-95:focus-within { - --tw-text-opacity: 0.95 !important; - } - - .\32xl\:focus-within\:text-opacity-100:focus-within { - --tw-text-opacity: 1 !important; - } - - .\32xl\:hover\:text-opacity-0:hover { - --tw-text-opacity: 0 !important; - } - - .\32xl\:hover\:text-opacity-5:hover { - --tw-text-opacity: 0.05 !important; - } - - .\32xl\:hover\:text-opacity-10:hover { - --tw-text-opacity: 0.1 !important; - } - - .\32xl\:hover\:text-opacity-20:hover { - --tw-text-opacity: 0.2 !important; - } - - .\32xl\:hover\:text-opacity-25:hover { - --tw-text-opacity: 0.25 !important; - } - - .\32xl\:hover\:text-opacity-30:hover { - --tw-text-opacity: 0.3 !important; - } - - .\32xl\:hover\:text-opacity-40:hover { - --tw-text-opacity: 0.4 !important; - } - - .\32xl\:hover\:text-opacity-50:hover { - --tw-text-opacity: 0.5 !important; - } - - .\32xl\:hover\:text-opacity-60:hover { - --tw-text-opacity: 0.6 !important; - } - - .\32xl\:hover\:text-opacity-70:hover { - --tw-text-opacity: 0.7 !important; - } - - .\32xl\:hover\:text-opacity-75:hover { - --tw-text-opacity: 0.75 !important; - } - - .\32xl\:hover\:text-opacity-80:hover { - --tw-text-opacity: 0.8 !important; - } - - .\32xl\:hover\:text-opacity-90:hover { - --tw-text-opacity: 0.9 !important; - } - - .\32xl\:hover\:text-opacity-95:hover { - --tw-text-opacity: 0.95 !important; - } - - .\32xl\:hover\:text-opacity-100:hover { - --tw-text-opacity: 1 !important; - } - - .\32xl\:focus\:text-opacity-0:focus { - --tw-text-opacity: 0 !important; - } - - .\32xl\:focus\:text-opacity-5:focus { - --tw-text-opacity: 0.05 !important; - } - - .\32xl\:focus\:text-opacity-10:focus { - --tw-text-opacity: 0.1 !important; - } - - .\32xl\:focus\:text-opacity-20:focus { - --tw-text-opacity: 0.2 !important; - } - - .\32xl\:focus\:text-opacity-25:focus { - --tw-text-opacity: 0.25 !important; - } - - .\32xl\:focus\:text-opacity-30:focus { - --tw-text-opacity: 0.3 !important; - } - - .\32xl\:focus\:text-opacity-40:focus { - --tw-text-opacity: 0.4 !important; - } - - .\32xl\:focus\:text-opacity-50:focus { - --tw-text-opacity: 0.5 !important; - } - - .\32xl\:focus\:text-opacity-60:focus { - --tw-text-opacity: 0.6 !important; - } - - .\32xl\:focus\:text-opacity-70:focus { - --tw-text-opacity: 0.7 !important; - } - - .\32xl\:focus\:text-opacity-75:focus { - --tw-text-opacity: 0.75 !important; - } - - .\32xl\:focus\:text-opacity-80:focus { - --tw-text-opacity: 0.8 !important; - } - - .\32xl\:focus\:text-opacity-90:focus { - --tw-text-opacity: 0.9 !important; - } - - .\32xl\:focus\:text-opacity-95:focus { - --tw-text-opacity: 0.95 !important; - } - - .\32xl\:focus\:text-opacity-100:focus { - --tw-text-opacity: 1 !important; - } - - .\32xl\:truncate { - overflow: hidden !important; - text-overflow: ellipsis !important; - white-space: nowrap !important; - } - - .\32xl\:overflow-ellipsis { - text-overflow: ellipsis !important; - } - - .\32xl\:overflow-clip { - text-overflow: clip !important; - } - - .\32xl\:italic { - font-style: italic !important; - } - - .\32xl\:not-italic { - font-style: normal !important; - } - - .\32xl\:uppercase { - text-transform: uppercase !important; - } - - .\32xl\:lowercase { - text-transform: lowercase !important; - } - - .\32xl\:capitalize { - text-transform: capitalize !important; - } - - .\32xl\:normal-case { - text-transform: none !important; - } - - .\32xl\:underline { - text-decoration: underline !important; - } - - .\32xl\:line-through { - text-decoration: line-through !important; - } - - .\32xl\:no-underline { - text-decoration: none !important; - } - - .group:hover .\32xl\:group-hover\:underline { - text-decoration: underline !important; - } - - .group:hover .\32xl\:group-hover\:line-through { - text-decoration: line-through !important; - } - - .group:hover .\32xl\:group-hover\:no-underline { - text-decoration: none !important; - } - - .\32xl\:focus-within\:underline:focus-within { - text-decoration: underline !important; - } - - .\32xl\:focus-within\:line-through:focus-within { - text-decoration: line-through !important; - } - - .\32xl\:focus-within\:no-underline:focus-within { - text-decoration: none !important; - } - - .\32xl\:hover\:underline:hover { - text-decoration: underline !important; - } - - .\32xl\:hover\:line-through:hover { - text-decoration: line-through !important; - } - - .\32xl\:hover\:no-underline:hover { - text-decoration: none !important; - } - - .\32xl\:focus\:underline:focus { - text-decoration: underline !important; - } - - .\32xl\:focus\:line-through:focus { - text-decoration: line-through !important; - } - - .\32xl\:focus\:no-underline:focus { - text-decoration: none !important; - } - - .\32xl\:antialiased { - -webkit-font-smoothing: antialiased !important; - -moz-osx-font-smoothing: grayscale !important; - } - - .\32xl\:subpixel-antialiased { - -webkit-font-smoothing: auto !important; - -moz-osx-font-smoothing: auto !important; - } - - .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important; - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important; - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important; - } - - .\32xl\:normal-nums { - font-variant-numeric: normal !important; - } - - .\32xl\:ordinal { - --tw-ordinal: ordinal !important; - } - - .\32xl\:slashed-zero { - --tw-slashed-zero: slashed-zero !important; - } - - .\32xl\:lining-nums { - --tw-numeric-figure: lining-nums !important; - } - - .\32xl\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums !important; - } - - .\32xl\:proportional-nums { - --tw-numeric-spacing: proportional-nums !important; - } - - .\32xl\:tabular-nums { - --tw-numeric-spacing: tabular-nums !important; - } - - .\32xl\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions !important; - } - - .\32xl\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions !important; - } - - .\32xl\:tracking-tighter { - letter-spacing: -0.05em !important; - } - - .\32xl\:tracking-tight { - letter-spacing: -0.025em !important; - } - - .\32xl\:tracking-normal { - letter-spacing: 0em !important; - } - - .\32xl\:tracking-wide { - letter-spacing: 0.025em !important; - } - - .\32xl\:tracking-wider { - letter-spacing: 0.05em !important; - } - - .\32xl\:tracking-widest { - letter-spacing: 0.1em !important; - } - - .\32xl\:select-none { - user-select: none !important; - } - - .\32xl\:select-text { - user-select: text !important; - } - - .\32xl\:select-all { - user-select: all !important; - } - - .\32xl\:select-auto { - user-select: auto !important; + --tw-text-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-text-opacity)) !important; } - .\32xl\:align-baseline { - vertical-align: baseline !important; + .\32xl\:focus\:text-red-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-text-opacity)) !important; } - .\32xl\:align-top { - vertical-align: top !important; + .\32xl\:focus\:text-red-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-text-opacity)) !important; } - .\32xl\:align-middle { - vertical-align: middle !important; + .\32xl\:focus\:text-red-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-text-opacity)) !important; } - .\32xl\:align-bottom { - vertical-align: bottom !important; + .\32xl\:focus\:text-red-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-text-opacity)) !important; } - .\32xl\:align-text-top { - vertical-align: text-top !important; + .\32xl\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-text-opacity)) !important; } - .\32xl\:align-text-bottom { - vertical-align: text-bottom !important; + .\32xl\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-text-opacity)) !important; } - .\32xl\:visible { - visibility: visible !important; + .\32xl\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-text-opacity)) !important; } - .\32xl\:invisible { - visibility: hidden !important; + .\32xl\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-text-opacity)) !important; } - .\32xl\:whitespace-normal { - white-space: normal !important; + .\32xl\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-text-opacity)) !important; } - .\32xl\:whitespace-nowrap { - white-space: nowrap !important; + .\32xl\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-text-opacity)) !important; } - .\32xl\:whitespace-pre { - white-space: pre !important; + .\32xl\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-text-opacity)) !important; } - .\32xl\:whitespace-pre-line { - white-space: pre-line !important; + .\32xl\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-text-opacity)) !important; } - .\32xl\:whitespace-pre-wrap { - white-space: pre-wrap !important; + .\32xl\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-text-opacity)) !important; } - .\32xl\:break-normal { - overflow-wrap: normal !important; - word-break: normal !important; + .\32xl\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-text-opacity)) !important; } - .\32xl\:break-words { - overflow-wrap: break-word !important; + .\32xl\:focus\:text-green-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-text-opacity)) !important; } - .\32xl\:break-all { - word-break: break-all !important; + .\32xl\:focus\:text-green-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-text-opacity)) !important; } - .\32xl\:w-0 { - width: 0px !important; + .\32xl\:focus\:text-green-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-text-opacity)) !important; } - .\32xl\:w-1 { - width: 0.25rem !important; + .\32xl\:focus\:text-green-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-text-opacity)) !important; } - .\32xl\:w-2 { - width: 0.5rem !important; + .\32xl\:focus\:text-green-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-text-opacity)) !important; } - .\32xl\:w-3 { - width: 0.75rem !important; + .\32xl\:focus\:text-green-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-text-opacity)) !important; } - .\32xl\:w-4 { - width: 1rem !important; + .\32xl\:focus\:text-green-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-text-opacity)) !important; } - .\32xl\:w-5 { - width: 1.25rem !important; + .\32xl\:focus\:text-green-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-text-opacity)) !important; } - .\32xl\:w-6 { - width: 1.5rem !important; + .\32xl\:focus\:text-green-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-text-opacity)) !important; } - .\32xl\:w-7 { - width: 1.75rem !important; + .\32xl\:focus\:text-green-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-text-opacity)) !important; } - .\32xl\:w-8 { - width: 2rem !important; + .\32xl\:focus\:text-blue-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-text-opacity)) !important; } - .\32xl\:w-9 { - width: 2.25rem !important; + .\32xl\:focus\:text-blue-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-text-opacity)) !important; } - .\32xl\:w-10 { - width: 2.5rem !important; + .\32xl\:focus\:text-blue-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-text-opacity)) !important; } - .\32xl\:w-11 { - width: 2.75rem !important; + .\32xl\:focus\:text-blue-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-text-opacity)) !important; } - .\32xl\:w-12 { - width: 3rem !important; + .\32xl\:focus\:text-blue-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-text-opacity)) !important; } - .\32xl\:w-14 { - width: 3.5rem !important; + .\32xl\:focus\:text-blue-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-text-opacity)) !important; } - .\32xl\:w-16 { - width: 4rem !important; + .\32xl\:focus\:text-blue-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-text-opacity)) !important; } - .\32xl\:w-20 { - width: 5rem !important; + .\32xl\:focus\:text-blue-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-text-opacity)) !important; } - .\32xl\:w-24 { - width: 6rem !important; + .\32xl\:focus\:text-blue-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-text-opacity)) !important; } - .\32xl\:w-28 { - width: 7rem !important; + .\32xl\:focus\:text-blue-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-text-opacity)) !important; } - .\32xl\:w-32 { - width: 8rem !important; + .\32xl\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-text-opacity)) !important; } - .\32xl\:w-36 { - width: 9rem !important; + .\32xl\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-text-opacity)) !important; } - .\32xl\:w-40 { - width: 10rem !important; + .\32xl\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-text-opacity)) !important; } - .\32xl\:w-44 { - width: 11rem !important; + .\32xl\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-text-opacity)) !important; } - .\32xl\:w-48 { - width: 12rem !important; + .\32xl\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-text-opacity)) !important; } - .\32xl\:w-52 { - width: 13rem !important; + .\32xl\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-text-opacity)) !important; } - .\32xl\:w-56 { - width: 14rem !important; + .\32xl\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-text-opacity)) !important; } - .\32xl\:w-60 { - width: 15rem !important; + .\32xl\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-text-opacity)) !important; } - .\32xl\:w-64 { - width: 16rem !important; + .\32xl\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-text-opacity)) !important; } - .\32xl\:w-72 { - width: 18rem !important; + .\32xl\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-text-opacity)) !important; } - .\32xl\:w-80 { - width: 20rem !important; + .\32xl\:focus\:text-purple-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-text-opacity)) !important; } - .\32xl\:w-96 { - width: 24rem !important; + .\32xl\:focus\:text-purple-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-text-opacity)) !important; } - .\32xl\:w-auto { - width: auto !important; + .\32xl\:focus\:text-purple-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-text-opacity)) !important; } - .\32xl\:w-px { - width: 1px !important; + .\32xl\:focus\:text-purple-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-text-opacity)) !important; } - .\32xl\:w-0\.5 { - width: 0.125rem !important; + .\32xl\:focus\:text-purple-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-text-opacity)) !important; } - .\32xl\:w-1\.5 { - width: 0.375rem !important; + .\32xl\:focus\:text-purple-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-text-opacity)) !important; } - .\32xl\:w-2\.5 { - width: 0.625rem !important; + .\32xl\:focus\:text-purple-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-text-opacity)) !important; } - .\32xl\:w-3\.5 { - width: 0.875rem !important; + .\32xl\:focus\:text-purple-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-text-opacity)) !important; } - .\32xl\:w-1\/2 { - width: 50% !important; + .\32xl\:focus\:text-purple-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-text-opacity)) !important; } - .\32xl\:w-1\/3 { - width: 33.333333% !important; + .\32xl\:focus\:text-purple-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-text-opacity)) !important; } - .\32xl\:w-2\/3 { - width: 66.666667% !important; + .\32xl\:focus\:text-pink-50:focus { + --tw-text-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-text-opacity)) !important; } - .\32xl\:w-1\/4 { - width: 25% !important; + .\32xl\:focus\:text-pink-100:focus { + --tw-text-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-text-opacity)) !important; } - .\32xl\:w-2\/4 { - width: 50% !important; + .\32xl\:focus\:text-pink-200:focus { + --tw-text-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-text-opacity)) !important; } - .\32xl\:w-3\/4 { - width: 75% !important; + .\32xl\:focus\:text-pink-300:focus { + --tw-text-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-text-opacity)) !important; } - .\32xl\:w-1\/5 { - width: 20% !important; + .\32xl\:focus\:text-pink-400:focus { + --tw-text-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-text-opacity)) !important; } - .\32xl\:w-2\/5 { - width: 40% !important; + .\32xl\:focus\:text-pink-500:focus { + --tw-text-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-text-opacity)) !important; } - .\32xl\:w-3\/5 { - width: 60% !important; + .\32xl\:focus\:text-pink-600:focus { + --tw-text-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-text-opacity)) !important; } - .\32xl\:w-4\/5 { - width: 80% !important; + .\32xl\:focus\:text-pink-700:focus { + --tw-text-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-text-opacity)) !important; } - .\32xl\:w-1\/6 { - width: 16.666667% !important; + .\32xl\:focus\:text-pink-800:focus { + --tw-text-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-text-opacity)) !important; } - .\32xl\:w-2\/6 { - width: 33.333333% !important; + .\32xl\:focus\:text-pink-900:focus { + --tw-text-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-text-opacity)) !important; } - .\32xl\:w-3\/6 { - width: 50% !important; + .\32xl\:text-opacity-0 { + --tw-text-opacity: 0 !important; } - .\32xl\:w-4\/6 { - width: 66.666667% !important; + .\32xl\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; } - .\32xl\:w-5\/6 { - width: 83.333333% !important; + .\32xl\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; } - .\32xl\:w-1\/12 { - width: 8.333333% !important; + .\32xl\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; } - .\32xl\:w-2\/12 { - width: 16.666667% !important; + .\32xl\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; } - .\32xl\:w-3\/12 { - width: 25% !important; + .\32xl\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; } - .\32xl\:w-4\/12 { - width: 33.333333% !important; + .\32xl\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; } - .\32xl\:w-5\/12 { - width: 41.666667% !important; + .\32xl\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; } - .\32xl\:w-6\/12 { - width: 50% !important; + .\32xl\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; } - .\32xl\:w-7\/12 { - width: 58.333333% !important; + .\32xl\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; } - .\32xl\:w-8\/12 { - width: 66.666667% !important; + .\32xl\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; } - .\32xl\:w-9\/12 { - width: 75% !important; + .\32xl\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; } - .\32xl\:w-10\/12 { - width: 83.333333% !important; + .\32xl\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; } - .\32xl\:w-11\/12 { - width: 91.666667% !important; + .\32xl\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; } - .\32xl\:w-full { - width: 100% !important; + .\32xl\:text-opacity-100 { + --tw-text-opacity: 1 !important; } - .\32xl\:w-screen { - width: 100vw !important; + .group:hover .\32xl\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0 !important; } - .\32xl\:w-min { - width: min-content !important; + .group:hover .\32xl\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05 !important; } - .\32xl\:w-max { - width: max-content !important; + .group:hover .\32xl\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1 !important; } - .\32xl\:z-0 { - z-index: 0 !important; + .group:hover .\32xl\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2 !important; } - .\32xl\:z-10 { - z-index: 10 !important; + .group:hover .\32xl\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25 !important; } - .\32xl\:z-20 { - z-index: 20 !important; + .group:hover .\32xl\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3 !important; } - .\32xl\:z-30 { - z-index: 30 !important; + .group:hover .\32xl\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4 !important; } - .\32xl\:z-40 { - z-index: 40 !important; + .group:hover .\32xl\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5 !important; } - .\32xl\:z-50 { - z-index: 50 !important; + .group:hover .\32xl\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6 !important; } - .\32xl\:z-auto { - z-index: auto !important; + .group:hover .\32xl\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7 !important; } - .\32xl\:focus-within\:z-0:focus-within { - z-index: 0 !important; + .group:hover .\32xl\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75 !important; } - .\32xl\:focus-within\:z-10:focus-within { - z-index: 10 !important; + .group:hover .\32xl\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8 !important; } - .\32xl\:focus-within\:z-20:focus-within { - z-index: 20 !important; + .group:hover .\32xl\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9 !important; } - .\32xl\:focus-within\:z-30:focus-within { - z-index: 30 !important; + .group:hover .\32xl\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95 !important; } - .\32xl\:focus-within\:z-40:focus-within { - z-index: 40 !important; + .group:hover .\32xl\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1 !important; } - .\32xl\:focus-within\:z-50:focus-within { - z-index: 50 !important; + .\32xl\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0 !important; } - .\32xl\:focus-within\:z-auto:focus-within { - z-index: auto !important; + .\32xl\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05 !important; } - .\32xl\:focus\:z-0:focus { - z-index: 0 !important; + .\32xl\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1 !important; } - .\32xl\:focus\:z-10:focus { - z-index: 10 !important; + .\32xl\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2 !important; } - .\32xl\:focus\:z-20:focus { - z-index: 20 !important; + .\32xl\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25 !important; } - .\32xl\:focus\:z-30:focus { - z-index: 30 !important; + .\32xl\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3 !important; } - .\32xl\:focus\:z-40:focus { - z-index: 40 !important; + .\32xl\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4 !important; } - .\32xl\:focus\:z-50:focus { - z-index: 50 !important; + .\32xl\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5 !important; } - .\32xl\:focus\:z-auto:focus { - z-index: auto !important; + .\32xl\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6 !important; } - .\32xl\:isolate { - isolation: isolate !important; + .\32xl\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7 !important; } - .\32xl\:isolation-auto { - isolation: auto !important; + .\32xl\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75 !important; } - .\32xl\:gap-0 { - gap: 0px !important; + .\32xl\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8 !important; } - .\32xl\:gap-1 { - gap: 0.25rem !important; + .\32xl\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9 !important; } - .\32xl\:gap-2 { - gap: 0.5rem !important; + .\32xl\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95 !important; } - .\32xl\:gap-3 { - gap: 0.75rem !important; + .\32xl\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1 !important; } - .\32xl\:gap-4 { - gap: 1rem !important; + .\32xl\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0 !important; } - .\32xl\:gap-5 { - gap: 1.25rem !important; + .\32xl\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05 !important; } - .\32xl\:gap-6 { - gap: 1.5rem !important; + .\32xl\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1 !important; } - .\32xl\:gap-7 { - gap: 1.75rem !important; + .\32xl\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2 !important; } - .\32xl\:gap-8 { - gap: 2rem !important; + .\32xl\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25 !important; } - .\32xl\:gap-9 { - gap: 2.25rem !important; + .\32xl\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3 !important; } - .\32xl\:gap-10 { - gap: 2.5rem !important; + .\32xl\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4 !important; } - .\32xl\:gap-11 { - gap: 2.75rem !important; + .\32xl\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5 !important; } - .\32xl\:gap-12 { - gap: 3rem !important; + .\32xl\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6 !important; } - .\32xl\:gap-14 { - gap: 3.5rem !important; + .\32xl\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7 !important; } - .\32xl\:gap-16 { - gap: 4rem !important; + .\32xl\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75 !important; } - .\32xl\:gap-20 { - gap: 5rem !important; + .\32xl\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8 !important; } - .\32xl\:gap-24 { - gap: 6rem !important; + .\32xl\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9 !important; } - .\32xl\:gap-28 { - gap: 7rem !important; + .\32xl\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95 !important; } - .\32xl\:gap-32 { - gap: 8rem !important; + .\32xl\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1 !important; } - .\32xl\:gap-36 { - gap: 9rem !important; + .\32xl\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0 !important; } - .\32xl\:gap-40 { - gap: 10rem !important; + .\32xl\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05 !important; } - .\32xl\:gap-44 { - gap: 11rem !important; + .\32xl\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1 !important; } - .\32xl\:gap-48 { - gap: 12rem !important; + .\32xl\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2 !important; } - .\32xl\:gap-52 { - gap: 13rem !important; + .\32xl\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25 !important; } - .\32xl\:gap-56 { - gap: 14rem !important; + .\32xl\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3 !important; } - .\32xl\:gap-60 { - gap: 15rem !important; + .\32xl\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4 !important; } - .\32xl\:gap-64 { - gap: 16rem !important; + .\32xl\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5 !important; } - .\32xl\:gap-72 { - gap: 18rem !important; + .\32xl\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6 !important; } - .\32xl\:gap-80 { - gap: 20rem !important; + .\32xl\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7 !important; } - .\32xl\:gap-96 { - gap: 24rem !important; + .\32xl\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75 !important; } - .\32xl\:gap-px { - gap: 1px !important; + .\32xl\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8 !important; } - .\32xl\:gap-0\.5 { - gap: 0.125rem !important; + .\32xl\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9 !important; } - .\32xl\:gap-1\.5 { - gap: 0.375rem !important; + .\32xl\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95 !important; } - .\32xl\:gap-2\.5 { - gap: 0.625rem !important; + .\32xl\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1 !important; } - .\32xl\:gap-3\.5 { - gap: 0.875rem !important; + .\32xl\:underline { + text-decoration: underline !important; } - .\32xl\:gap-x-0 { - column-gap: 0px !important; + .\32xl\:line-through { + text-decoration: line-through !important; } - .\32xl\:gap-x-1 { - column-gap: 0.25rem !important; + .\32xl\:no-underline { + text-decoration: none !important; } - .\32xl\:gap-x-2 { - column-gap: 0.5rem !important; + .group:hover .\32xl\:group-hover\:underline { + text-decoration: underline !important; } - .\32xl\:gap-x-3 { - column-gap: 0.75rem !important; + .group:hover .\32xl\:group-hover\:line-through { + text-decoration: line-through !important; } - .\32xl\:gap-x-4 { - column-gap: 1rem !important; + .group:hover .\32xl\:group-hover\:no-underline { + text-decoration: none !important; } - .\32xl\:gap-x-5 { - column-gap: 1.25rem !important; + .\32xl\:focus-within\:underline:focus-within { + text-decoration: underline !important; } - .\32xl\:gap-x-6 { - column-gap: 1.5rem !important; + .\32xl\:focus-within\:line-through:focus-within { + text-decoration: line-through !important; } - .\32xl\:gap-x-7 { - column-gap: 1.75rem !important; + .\32xl\:focus-within\:no-underline:focus-within { + text-decoration: none !important; } - .\32xl\:gap-x-8 { - column-gap: 2rem !important; + .\32xl\:hover\:underline:hover { + text-decoration: underline !important; } - .\32xl\:gap-x-9 { - column-gap: 2.25rem !important; + .\32xl\:hover\:line-through:hover { + text-decoration: line-through !important; } - .\32xl\:gap-x-10 { - column-gap: 2.5rem !important; + .\32xl\:hover\:no-underline:hover { + text-decoration: none !important; } - .\32xl\:gap-x-11 { - column-gap: 2.75rem !important; + .\32xl\:focus\:underline:focus { + text-decoration: underline !important; } - .\32xl\:gap-x-12 { - column-gap: 3rem !important; + .\32xl\:focus\:line-through:focus { + text-decoration: line-through !important; } - .\32xl\:gap-x-14 { - column-gap: 3.5rem !important; + .\32xl\:focus\:no-underline:focus { + text-decoration: none !important; } - .\32xl\:gap-x-16 { - column-gap: 4rem !important; + .\32xl\:antialiased { + -webkit-font-smoothing: antialiased !important; + -moz-osx-font-smoothing: grayscale !important; } - .\32xl\:gap-x-20 { - column-gap: 5rem !important; + .\32xl\:subpixel-antialiased { + -webkit-font-smoothing: auto !important; + -moz-osx-font-smoothing: auto !important; } - .\32xl\:gap-x-24 { - column-gap: 6rem !important; + .\32xl\:placeholder-transparent::placeholder { + color: transparent !important; } - .\32xl\:gap-x-28 { - column-gap: 7rem !important; + .\32xl\:placeholder-current::placeholder { + color: currentColor !important; } - .\32xl\:gap-x-32 { - column-gap: 8rem !important; + .\32xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-36 { - column-gap: 9rem !important; + .\32xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-40 { - column-gap: 10rem !important; + .\32xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-44 { - column-gap: 11rem !important; + .\32xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-48 { - column-gap: 12rem !important; + .\32xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-52 { - column-gap: 13rem !important; + .\32xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-56 { - column-gap: 14rem !important; + .\32xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-60 { - column-gap: 15rem !important; + .\32xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-64 { - column-gap: 16rem !important; + .\32xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-72 { - column-gap: 18rem !important; + .\32xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-80 { - column-gap: 20rem !important; + .\32xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-96 { - column-gap: 24rem !important; + .\32xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-px { - column-gap: 1px !important; + .\32xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-0\.5 { - column-gap: 0.125rem !important; + .\32xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-1\.5 { - column-gap: 0.375rem !important; + .\32xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-2\.5 { - column-gap: 0.625rem !important; + .\32xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-x-3\.5 { - column-gap: 0.875rem !important; + .\32xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-0 { - row-gap: 0px !important; + .\32xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-1 { - row-gap: 0.25rem !important; + .\32xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-2 { - row-gap: 0.5rem !important; + .\32xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-3 { - row-gap: 0.75rem !important; + .\32xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-4 { - row-gap: 1rem !important; + .\32xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-5 { - row-gap: 1.25rem !important; + .\32xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-6 { - row-gap: 1.5rem !important; + .\32xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-7 { - row-gap: 1.75rem !important; + .\32xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-8 { - row-gap: 2rem !important; + .\32xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-9 { - row-gap: 2.25rem !important; + .\32xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-10 { - row-gap: 2.5rem !important; + .\32xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-11 { - row-gap: 2.75rem !important; + .\32xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-12 { - row-gap: 3rem !important; + .\32xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-14 { - row-gap: 3.5rem !important; + .\32xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-16 { - row-gap: 4rem !important; + .\32xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-20 { - row-gap: 5rem !important; + .\32xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-24 { - row-gap: 6rem !important; + .\32xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-28 { - row-gap: 7rem !important; + .\32xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-32 { - row-gap: 8rem !important; + .\32xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-36 { - row-gap: 9rem !important; + .\32xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-40 { - row-gap: 10rem !important; + .\32xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-44 { - row-gap: 11rem !important; + .\32xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-48 { - row-gap: 12rem !important; + .\32xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-52 { - row-gap: 13rem !important; + .\32xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-56 { - row-gap: 14rem !important; + .\32xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-60 { - row-gap: 15rem !important; + .\32xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-64 { - row-gap: 16rem !important; + .\32xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-72 { - row-gap: 18rem !important; + .\32xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-80 { - row-gap: 20rem !important; + .\32xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-96 { - row-gap: 24rem !important; + .\32xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-px { - row-gap: 1px !important; + .\32xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-0\.5 { - row-gap: 0.125rem !important; + .\32xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-1\.5 { - row-gap: 0.375rem !important; + .\32xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-2\.5 { - row-gap: 0.625rem !important; + .\32xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } - .\32xl\:gap-y-3\.5 { - row-gap: 0.875rem !important; + .\32xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-flow-row { - grid-auto-flow: row !important; + .\32xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-flow-col { - grid-auto-flow: column !important; + .\32xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-flow-row-dense { - grid-auto-flow: row dense !important; + .\32xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-flow-col-dense { - grid-auto-flow: column dense !important; + .\32xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)) !important; + .\32xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)) !important; + .\32xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)) !important; + .\32xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)) !important; + .\32xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)) !important; + .\32xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)) !important; + .\32xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)) !important; + .\32xl\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)) !important; + .\32xl\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)) !important; + .\32xl\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)) !important; + .\32xl\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)) !important; + .\32xl\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)) !important; + .\32xl\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-cols-none { - grid-template-columns: none !important; + .\32xl\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } - .\32xl\:auto-cols-auto { - grid-auto-columns: auto !important; + .\32xl\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } - .\32xl\:auto-cols-min { - grid-auto-columns: min-content !important; + .\32xl\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } - .\32xl\:auto-cols-max { - grid-auto-columns: max-content !important; + .\32xl\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } - .\32xl\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr) !important; + .\32xl\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-auto { - grid-column: auto !important; + .\32xl\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-span-1 { - grid-column: span 1 / span 1 !important; + .\32xl\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-span-2 { - grid-column: span 2 / span 2 !important; + .\32xl\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-span-3 { - grid-column: span 3 / span 3 !important; + .\32xl\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-span-4 { - grid-column: span 4 / span 4 !important; + .\32xl\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-span-5 { - grid-column: span 5 / span 5 !important; + .\32xl\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-span-6 { - grid-column: span 6 / span 6 !important; + .\32xl\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-span-7 { - grid-column: span 7 / span 7 !important; + .\32xl\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-span-8 { - grid-column: span 8 / span 8 !important; + .\32xl\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-span-9 { - grid-column: span 9 / span 9 !important; + .\32xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent !important; } - .\32xl\:col-span-10 { - grid-column: span 10 / span 10 !important; + .\32xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor !important; } - .\32xl\:col-span-11 { - grid-column: span 11 / span 11 !important; + .\32xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-span-12 { - grid-column: span 12 / span 12 !important; + .\32xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-span-full { - grid-column: 1 / -1 !important; + .\32xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-1 { - grid-column-start: 1 !important; + .\32xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-2 { - grid-column-start: 2 !important; + .\32xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-3 { - grid-column-start: 3 !important; + .\32xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-4 { - grid-column-start: 4 !important; + .\32xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-5 { - grid-column-start: 5 !important; + .\32xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-6 { - grid-column-start: 6 !important; + .\32xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-7 { - grid-column-start: 7 !important; + .\32xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-8 { - grid-column-start: 8 !important; + .\32xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-9 { - grid-column-start: 9 !important; + .\32xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-10 { - grid-column-start: 10 !important; + .\32xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-11 { - grid-column-start: 11 !important; + .\32xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-12 { - grid-column-start: 12 !important; + .\32xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-13 { - grid-column-start: 13 !important; + .\32xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-start-auto { - grid-column-start: auto !important; + .\32xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-1 { - grid-column-end: 1 !important; + .\32xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-2 { - grid-column-end: 2 !important; + .\32xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-3 { - grid-column-end: 3 !important; + .\32xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-4 { - grid-column-end: 4 !important; + .\32xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-5 { - grid-column-end: 5 !important; + .\32xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-6 { - grid-column-end: 6 !important; + .\32xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-7 { - grid-column-end: 7 !important; + .\32xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-8 { - grid-column-end: 8 !important; + .\32xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-9 { - grid-column-end: 9 !important; + .\32xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-10 { - grid-column-end: 10 !important; + .\32xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-11 { - grid-column-end: 11 !important; + .\32xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-12 { - grid-column-end: 12 !important; + .\32xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-13 { - grid-column-end: 13 !important; + .\32xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)) !important; } - .\32xl\:col-end-auto { - grid-column-end: auto !important; + .\32xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)) !important; + .\32xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)) !important; + .\32xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)) !important; + .\32xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)) !important; + .\32xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)) !important; + .\32xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)) !important; + .\32xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)) !important; } - .\32xl\:grid-rows-none { - grid-template-rows: none !important; + .\32xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)) !important; } - .\32xl\:auto-rows-auto { - grid-auto-rows: auto !important; + .\32xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)) !important; } - .\32xl\:auto-rows-min { - grid-auto-rows: min-content !important; + .\32xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)) !important; } - .\32xl\:auto-rows-max { - grid-auto-rows: max-content !important; + .\32xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)) !important; } - .\32xl\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr) !important; + .\32xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-auto { - grid-row: auto !important; + .\32xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-span-1 { - grid-row: span 1 / span 1 !important; + .\32xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-span-2 { - grid-row: span 2 / span 2 !important; + .\32xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-span-3 { - grid-row: span 3 / span 3 !important; + .\32xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-span-4 { - grid-row: span 4 / span 4 !important; + .\32xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-span-5 { - grid-row: span 5 / span 5 !important; + .\32xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-span-6 { - grid-row: span 6 / span 6 !important; + .\32xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-span-full { - grid-row: 1 / -1 !important; + .\32xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-start-1 { - grid-row-start: 1 !important; + .\32xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-start-2 { - grid-row-start: 2 !important; + .\32xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-start-3 { - grid-row-start: 3 !important; + .\32xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-start-4 { - grid-row-start: 4 !important; + .\32xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-start-5 { - grid-row-start: 5 !important; + .\32xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-start-6 { - grid-row-start: 6 !important; + .\32xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-start-7 { - grid-row-start: 7 !important; + .\32xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-start-auto { - grid-row-start: auto !important; + .\32xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-end-1 { - grid-row-end: 1 !important; + .\32xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-end-2 { - grid-row-end: 2 !important; + .\32xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-end-3 { - grid-row-end: 3 !important; + .\32xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-end-4 { - grid-row-end: 4 !important; + .\32xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-end-5 { - grid-row-end: 5 !important; + .\32xl\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-end-6 { - grid-row-end: 6 !important; + .\32xl\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-end-7 { - grid-row-end: 7 !important; + .\32xl\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)) !important; } - .\32xl\:row-end-auto { - grid-row-end: auto !important; + .\32xl\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)) !important; } - .\32xl\:transform { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + .\32xl\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)) !important; } - .\32xl\:transform-gpu { - --tw-translate-x: 0 !important; - --tw-translate-y: 0 !important; - --tw-rotate: 0 !important; - --tw-skew-x: 0 !important; - --tw-skew-y: 0 !important; - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important; + .\32xl\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)) !important; } - .\32xl\:transform-none { - transform: none !important; + .\32xl\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)) !important; } - .\32xl\:origin-center { - transform-origin: center !important; + .\32xl\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)) !important; } - .\32xl\:origin-top { - transform-origin: top !important; + .\32xl\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)) !important; } - .\32xl\:origin-top-right { - transform-origin: top right !important; + .\32xl\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)) !important; } - .\32xl\:origin-right { - transform-origin: right !important; + .\32xl\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)) !important; } - .\32xl\:origin-bottom-right { - transform-origin: bottom right !important; + .\32xl\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)) !important; } - .\32xl\:origin-bottom { - transform-origin: bottom !important; + .\32xl\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)) !important; } - .\32xl\:origin-bottom-left { - transform-origin: bottom left !important; + .\32xl\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)) !important; } - .\32xl\:origin-left { - transform-origin: left !important; + .\32xl\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)) !important; } - .\32xl\:origin-top-left { - transform-origin: top left !important; + .\32xl\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)) !important; } - .\32xl\:scale-0 { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .\32xl\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)) !important; } - .\32xl\:scale-50 { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .\32xl\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)) !important; } - .\32xl\:scale-75 { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .\32xl\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)) !important; } - .\32xl\:scale-90 { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .\32xl\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1 !important; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)) !important; } - .\32xl\:scale-95 { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; + .\32xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0 !important; } - .\32xl\:scale-100 { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .\32xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05 !important; } - .\32xl\:scale-105 { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .\32xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1 !important; } - .\32xl\:scale-110 { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .\32xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2 !important; } - .\32xl\:scale-125 { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .\32xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25 !important; } - .\32xl\:scale-150 { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .\32xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3 !important; } - .\32xl\:scale-x-0 { - --tw-scale-x: 0 !important; + .\32xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4 !important; } - .\32xl\:scale-x-50 { - --tw-scale-x: .5 !important; + .\32xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5 !important; } - .\32xl\:scale-x-75 { - --tw-scale-x: .75 !important; + .\32xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6 !important; } - .\32xl\:scale-x-90 { - --tw-scale-x: .9 !important; + .\32xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7 !important; } - .\32xl\:scale-x-95 { - --tw-scale-x: .95 !important; + .\32xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75 !important; } - .\32xl\:scale-x-100 { - --tw-scale-x: 1 !important; + .\32xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8 !important; } - .\32xl\:scale-x-105 { - --tw-scale-x: 1.05 !important; + .\32xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9 !important; } - .\32xl\:scale-x-110 { - --tw-scale-x: 1.1 !important; + .\32xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95 !important; } - .\32xl\:scale-x-125 { - --tw-scale-x: 1.25 !important; + .\32xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1 !important; } - .\32xl\:scale-x-150 { - --tw-scale-x: 1.5 !important; + .\32xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0 !important; } - .\32xl\:scale-y-0 { - --tw-scale-y: 0 !important; + .\32xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05 !important; } - .\32xl\:scale-y-50 { - --tw-scale-y: .5 !important; + .\32xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1 !important; } - .\32xl\:scale-y-75 { - --tw-scale-y: .75 !important; + .\32xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2 !important; } - .\32xl\:scale-y-90 { - --tw-scale-y: .9 !important; + .\32xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25 !important; } - .\32xl\:scale-y-95 { - --tw-scale-y: .95 !important; + .\32xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3 !important; } - .\32xl\:scale-y-100 { - --tw-scale-y: 1 !important; + .\32xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4 !important; } - .\32xl\:scale-y-105 { - --tw-scale-y: 1.05 !important; + .\32xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5 !important; } - .\32xl\:scale-y-110 { - --tw-scale-y: 1.1 !important; + .\32xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6 !important; } - .\32xl\:scale-y-125 { - --tw-scale-y: 1.25 !important; + .\32xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7 !important; } - .\32xl\:scale-y-150 { - --tw-scale-y: 1.5 !important; + .\32xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75 !important; } - .\32xl\:hover\:scale-0:hover { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .\32xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8 !important; } - .\32xl\:hover\:scale-50:hover { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .\32xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9 !important; } - .\32xl\:hover\:scale-75:hover { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .\32xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95 !important; } - .\32xl\:hover\:scale-90:hover { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .\32xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1 !important; } - .\32xl\:hover\:scale-95:hover { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; + .\32xl\:opacity-0 { + opacity: 0 !important; } - .\32xl\:hover\:scale-100:hover { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .\32xl\:opacity-5 { + opacity: 0.05 !important; } - .\32xl\:hover\:scale-105:hover { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .\32xl\:opacity-10 { + opacity: 0.1 !important; } - .\32xl\:hover\:scale-110:hover { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .\32xl\:opacity-20 { + opacity: 0.2 !important; } - .\32xl\:hover\:scale-125:hover { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .\32xl\:opacity-25 { + opacity: 0.25 !important; } - .\32xl\:hover\:scale-150:hover { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .\32xl\:opacity-30 { + opacity: 0.3 !important; } - .\32xl\:hover\:scale-x-0:hover { - --tw-scale-x: 0 !important; + .\32xl\:opacity-40 { + opacity: 0.4 !important; } - .\32xl\:hover\:scale-x-50:hover { - --tw-scale-x: .5 !important; + .\32xl\:opacity-50 { + opacity: 0.5 !important; } - .\32xl\:hover\:scale-x-75:hover { - --tw-scale-x: .75 !important; + .\32xl\:opacity-60 { + opacity: 0.6 !important; } - .\32xl\:hover\:scale-x-90:hover { - --tw-scale-x: .9 !important; + .\32xl\:opacity-70 { + opacity: 0.7 !important; } - .\32xl\:hover\:scale-x-95:hover { - --tw-scale-x: .95 !important; + .\32xl\:opacity-75 { + opacity: 0.75 !important; } - .\32xl\:hover\:scale-x-100:hover { - --tw-scale-x: 1 !important; + .\32xl\:opacity-80 { + opacity: 0.8 !important; } - .\32xl\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05 !important; + .\32xl\:opacity-90 { + opacity: 0.9 !important; } - .\32xl\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1 !important; + .\32xl\:opacity-95 { + opacity: 0.95 !important; } - .\32xl\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25 !important; + .\32xl\:opacity-100 { + opacity: 1 !important; } - .\32xl\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5 !important; + .group:hover .\32xl\:group-hover\:opacity-0 { + opacity: 0 !important; } - .\32xl\:hover\:scale-y-0:hover { - --tw-scale-y: 0 !important; + .group:hover .\32xl\:group-hover\:opacity-5 { + opacity: 0.05 !important; } - .\32xl\:hover\:scale-y-50:hover { - --tw-scale-y: .5 !important; + .group:hover .\32xl\:group-hover\:opacity-10 { + opacity: 0.1 !important; } - .\32xl\:hover\:scale-y-75:hover { - --tw-scale-y: .75 !important; + .group:hover .\32xl\:group-hover\:opacity-20 { + opacity: 0.2 !important; } - .\32xl\:hover\:scale-y-90:hover { - --tw-scale-y: .9 !important; + .group:hover .\32xl\:group-hover\:opacity-25 { + opacity: 0.25 !important; } - .\32xl\:hover\:scale-y-95:hover { - --tw-scale-y: .95 !important; + .group:hover .\32xl\:group-hover\:opacity-30 { + opacity: 0.3 !important; } - .\32xl\:hover\:scale-y-100:hover { - --tw-scale-y: 1 !important; + .group:hover .\32xl\:group-hover\:opacity-40 { + opacity: 0.4 !important; } - .\32xl\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05 !important; + .group:hover .\32xl\:group-hover\:opacity-50 { + opacity: 0.5 !important; } - .\32xl\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1 !important; + .group:hover .\32xl\:group-hover\:opacity-60 { + opacity: 0.6 !important; } - .\32xl\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25 !important; + .group:hover .\32xl\:group-hover\:opacity-70 { + opacity: 0.7 !important; } - .\32xl\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5 !important; + .group:hover .\32xl\:group-hover\:opacity-75 { + opacity: 0.75 !important; } - .\32xl\:focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; + .group:hover .\32xl\:group-hover\:opacity-80 { + opacity: 0.8 !important; } - .\32xl\:focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; + .group:hover .\32xl\:group-hover\:opacity-90 { + opacity: 0.9 !important; } - .\32xl\:focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; + .group:hover .\32xl\:group-hover\:opacity-95 { + opacity: 0.95 !important; } - .\32xl\:focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; + .group:hover .\32xl\:group-hover\:opacity-100 { + opacity: 1 !important; } - .\32xl\:focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; + .\32xl\:focus-within\:opacity-0:focus-within { + opacity: 0 !important; } - .\32xl\:focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; + .\32xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05 !important; } - .\32xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; + .\32xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1 !important; } - .\32xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; + .\32xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2 !important; } - .\32xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; + .\32xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25 !important; } - .\32xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; + .\32xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3 !important; } - .\32xl\:focus\:scale-x-0:focus { - --tw-scale-x: 0 !important; + .\32xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4 !important; } - .\32xl\:focus\:scale-x-50:focus { - --tw-scale-x: .5 !important; + .\32xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5 !important; } - .\32xl\:focus\:scale-x-75:focus { - --tw-scale-x: .75 !important; + .\32xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6 !important; } - .\32xl\:focus\:scale-x-90:focus { - --tw-scale-x: .9 !important; + .\32xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7 !important; } - .\32xl\:focus\:scale-x-95:focus { - --tw-scale-x: .95 !important; + .\32xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75 !important; } - .\32xl\:focus\:scale-x-100:focus { - --tw-scale-x: 1 !important; + .\32xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8 !important; } - .\32xl\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05 !important; + .\32xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9 !important; } - .\32xl\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1 !important; + .\32xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95 !important; } - .\32xl\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25 !important; + .\32xl\:focus-within\:opacity-100:focus-within { + opacity: 1 !important; } - .\32xl\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5 !important; + .\32xl\:hover\:opacity-0:hover { + opacity: 0 !important; } - .\32xl\:focus\:scale-y-0:focus { - --tw-scale-y: 0 !important; + .\32xl\:hover\:opacity-5:hover { + opacity: 0.05 !important; } - .\32xl\:focus\:scale-y-50:focus { - --tw-scale-y: .5 !important; + .\32xl\:hover\:opacity-10:hover { + opacity: 0.1 !important; } - .\32xl\:focus\:scale-y-75:focus { - --tw-scale-y: .75 !important; + .\32xl\:hover\:opacity-20:hover { + opacity: 0.2 !important; } - .\32xl\:focus\:scale-y-90:focus { - --tw-scale-y: .9 !important; + .\32xl\:hover\:opacity-25:hover { + opacity: 0.25 !important; } - .\32xl\:focus\:scale-y-95:focus { - --tw-scale-y: .95 !important; + .\32xl\:hover\:opacity-30:hover { + opacity: 0.3 !important; } - .\32xl\:focus\:scale-y-100:focus { - --tw-scale-y: 1 !important; + .\32xl\:hover\:opacity-40:hover { + opacity: 0.4 !important; } - .\32xl\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05 !important; + .\32xl\:hover\:opacity-50:hover { + opacity: 0.5 !important; } - .\32xl\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1 !important; + .\32xl\:hover\:opacity-60:hover { + opacity: 0.6 !important; } - .\32xl\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25 !important; + .\32xl\:hover\:opacity-70:hover { + opacity: 0.7 !important; } - .\32xl\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5 !important; + .\32xl\:hover\:opacity-75:hover { + opacity: 0.75 !important; } - .\32xl\:rotate-0 { - --tw-rotate: 0deg !important; + .\32xl\:hover\:opacity-80:hover { + opacity: 0.8 !important; } - .\32xl\:rotate-1 { - --tw-rotate: 1deg !important; + .\32xl\:hover\:opacity-90:hover { + opacity: 0.9 !important; } - .\32xl\:rotate-2 { - --tw-rotate: 2deg !important; + .\32xl\:hover\:opacity-95:hover { + opacity: 0.95 !important; } - .\32xl\:rotate-3 { - --tw-rotate: 3deg !important; + .\32xl\:hover\:opacity-100:hover { + opacity: 1 !important; } - .\32xl\:rotate-6 { - --tw-rotate: 6deg !important; + .\32xl\:focus\:opacity-0:focus { + opacity: 0 !important; } - .\32xl\:rotate-12 { - --tw-rotate: 12deg !important; + .\32xl\:focus\:opacity-5:focus { + opacity: 0.05 !important; } - .\32xl\:rotate-45 { - --tw-rotate: 45deg !important; + .\32xl\:focus\:opacity-10:focus { + opacity: 0.1 !important; } - .\32xl\:rotate-90 { - --tw-rotate: 90deg !important; + .\32xl\:focus\:opacity-20:focus { + opacity: 0.2 !important; } - .\32xl\:rotate-180 { - --tw-rotate: 180deg !important; + .\32xl\:focus\:opacity-25:focus { + opacity: 0.25 !important; } - .\32xl\:-rotate-180 { - --tw-rotate: -180deg !important; + .\32xl\:focus\:opacity-30:focus { + opacity: 0.3 !important; } - .\32xl\:-rotate-90 { - --tw-rotate: -90deg !important; + .\32xl\:focus\:opacity-40:focus { + opacity: 0.4 !important; } - .\32xl\:-rotate-45 { - --tw-rotate: -45deg !important; + .\32xl\:focus\:opacity-50:focus { + opacity: 0.5 !important; } - .\32xl\:-rotate-12 { - --tw-rotate: -12deg !important; + .\32xl\:focus\:opacity-60:focus { + opacity: 0.6 !important; } - .\32xl\:-rotate-6 { - --tw-rotate: -6deg !important; + .\32xl\:focus\:opacity-70:focus { + opacity: 0.7 !important; } - .\32xl\:-rotate-3 { - --tw-rotate: -3deg !important; + .\32xl\:focus\:opacity-75:focus { + opacity: 0.75 !important; } - .\32xl\:-rotate-2 { - --tw-rotate: -2deg !important; + .\32xl\:focus\:opacity-80:focus { + opacity: 0.8 !important; } - .\32xl\:-rotate-1 { - --tw-rotate: -1deg !important; + .\32xl\:focus\:opacity-90:focus { + opacity: 0.9 !important; } - .\32xl\:hover\:rotate-0:hover { - --tw-rotate: 0deg !important; + .\32xl\:focus\:opacity-95:focus { + opacity: 0.95 !important; } - .\32xl\:hover\:rotate-1:hover { - --tw-rotate: 1deg !important; + .\32xl\:focus\:opacity-100:focus { + opacity: 1 !important; } - .\32xl\:hover\:rotate-2:hover { - --tw-rotate: 2deg !important; + .\32xl\:bg-blend-normal { + background-blend-mode: normal !important; } - .\32xl\:hover\:rotate-3:hover { - --tw-rotate: 3deg !important; + .\32xl\:bg-blend-multiply { + background-blend-mode: multiply !important; } - .\32xl\:hover\:rotate-6:hover { - --tw-rotate: 6deg !important; + .\32xl\:bg-blend-screen { + background-blend-mode: screen !important; } - .\32xl\:hover\:rotate-12:hover { - --tw-rotate: 12deg !important; + .\32xl\:bg-blend-overlay { + background-blend-mode: overlay !important; } - .\32xl\:hover\:rotate-45:hover { - --tw-rotate: 45deg !important; + .\32xl\:bg-blend-darken { + background-blend-mode: darken !important; } - .\32xl\:hover\:rotate-90:hover { - --tw-rotate: 90deg !important; + .\32xl\:bg-blend-lighten { + background-blend-mode: lighten !important; } - .\32xl\:hover\:rotate-180:hover { - --tw-rotate: 180deg !important; + .\32xl\:bg-blend-color-dodge { + background-blend-mode: color-dodge !important; } - .\32xl\:hover\:-rotate-180:hover { - --tw-rotate: -180deg !important; + .\32xl\:bg-blend-color-burn { + background-blend-mode: color-burn !important; } - .\32xl\:hover\:-rotate-90:hover { - --tw-rotate: -90deg !important; + .\32xl\:bg-blend-hard-light { + background-blend-mode: hard-light !important; } - .\32xl\:hover\:-rotate-45:hover { - --tw-rotate: -45deg !important; + .\32xl\:bg-blend-soft-light { + background-blend-mode: soft-light !important; } - .\32xl\:hover\:-rotate-12:hover { - --tw-rotate: -12deg !important; + .\32xl\:bg-blend-difference { + background-blend-mode: difference !important; } - .\32xl\:hover\:-rotate-6:hover { - --tw-rotate: -6deg !important; + .\32xl\:bg-blend-exclusion { + background-blend-mode: exclusion !important; } - .\32xl\:hover\:-rotate-3:hover { - --tw-rotate: -3deg !important; + .\32xl\:bg-blend-hue { + background-blend-mode: hue !important; } - .\32xl\:hover\:-rotate-2:hover { - --tw-rotate: -2deg !important; + .\32xl\:bg-blend-saturation { + background-blend-mode: saturation !important; } - .\32xl\:hover\:-rotate-1:hover { - --tw-rotate: -1deg !important; + .\32xl\:bg-blend-color { + background-blend-mode: color !important; } - .\32xl\:focus\:rotate-0:focus { - --tw-rotate: 0deg !important; + .\32xl\:bg-blend-luminosity { + background-blend-mode: luminosity !important; } - .\32xl\:focus\:rotate-1:focus { - --tw-rotate: 1deg !important; + .\32xl\:mix-blend-normal { + mix-blend-mode: normal !important; } - .\32xl\:focus\:rotate-2:focus { - --tw-rotate: 2deg !important; + .\32xl\:mix-blend-multiply { + mix-blend-mode: multiply !important; } - .\32xl\:focus\:rotate-3:focus { - --tw-rotate: 3deg !important; + .\32xl\:mix-blend-screen { + mix-blend-mode: screen !important; } - .\32xl\:focus\:rotate-6:focus { - --tw-rotate: 6deg !important; + .\32xl\:mix-blend-overlay { + mix-blend-mode: overlay !important; } - .\32xl\:focus\:rotate-12:focus { - --tw-rotate: 12deg !important; + .\32xl\:mix-blend-darken { + mix-blend-mode: darken !important; } - .\32xl\:focus\:rotate-45:focus { - --tw-rotate: 45deg !important; + .\32xl\:mix-blend-lighten { + mix-blend-mode: lighten !important; } - .\32xl\:focus\:rotate-90:focus { - --tw-rotate: 90deg !important; + .\32xl\:mix-blend-color-dodge { + mix-blend-mode: color-dodge !important; } - .\32xl\:focus\:rotate-180:focus { - --tw-rotate: 180deg !important; + .\32xl\:mix-blend-color-burn { + mix-blend-mode: color-burn !important; } - .\32xl\:focus\:-rotate-180:focus { - --tw-rotate: -180deg !important; + .\32xl\:mix-blend-hard-light { + mix-blend-mode: hard-light !important; } - .\32xl\:focus\:-rotate-90:focus { - --tw-rotate: -90deg !important; + .\32xl\:mix-blend-soft-light { + mix-blend-mode: soft-light !important; } - .\32xl\:focus\:-rotate-45:focus { - --tw-rotate: -45deg !important; + .\32xl\:mix-blend-difference { + mix-blend-mode: difference !important; } - .\32xl\:focus\:-rotate-12:focus { - --tw-rotate: -12deg !important; + .\32xl\:mix-blend-exclusion { + mix-blend-mode: exclusion !important; } - .\32xl\:focus\:-rotate-6:focus { - --tw-rotate: -6deg !important; + .\32xl\:mix-blend-hue { + mix-blend-mode: hue !important; } - .\32xl\:focus\:-rotate-3:focus { - --tw-rotate: -3deg !important; + .\32xl\:mix-blend-saturation { + mix-blend-mode: saturation !important; } - .\32xl\:focus\:-rotate-2:focus { - --tw-rotate: -2deg !important; + .\32xl\:mix-blend-color { + mix-blend-mode: color !important; } - .\32xl\:focus\:-rotate-1:focus { - --tw-rotate: -1deg !important; + .\32xl\:mix-blend-luminosity { + mix-blend-mode: luminosity !important; } - .\32xl\:translate-x-0 { - --tw-translate-x: 0px !important; + .\32xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-1 { - --tw-translate-x: 0.25rem !important; + .\32xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-2 { - --tw-translate-x: 0.5rem !important; + .\32xl\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-3 { - --tw-translate-x: 0.75rem !important; + .\32xl\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-4 { - --tw-translate-x: 1rem !important; + .\32xl\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-5 { - --tw-translate-x: 1.25rem !important; + .\32xl\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-6 { - --tw-translate-x: 1.5rem !important; + .\32xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-7 { - --tw-translate-x: 1.75rem !important; + .\32xl\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-8 { - --tw-translate-x: 2rem !important; + .group:hover .\32xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-9 { - --tw-translate-x: 2.25rem !important; + .group:hover .\32xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-10 { - --tw-translate-x: 2.5rem !important; + .group:hover .\32xl\:group-hover\:shadow-md { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-11 { - --tw-translate-x: 2.75rem !important; + .group:hover .\32xl\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-12 { - --tw-translate-x: 3rem !important; + .group:hover .\32xl\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-14 { - --tw-translate-x: 3.5rem !important; + .group:hover .\32xl\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-16 { - --tw-translate-x: 4rem !important; + .group:hover .\32xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-20 { - --tw-translate-x: 5rem !important; + .group:hover .\32xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-24 { - --tw-translate-x: 6rem !important; + .\32xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-28 { - --tw-translate-x: 7rem !important; + .\32xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-32 { - --tw-translate-x: 8rem !important; + .\32xl\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-36 { - --tw-translate-x: 9rem !important; + .\32xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-40 { - --tw-translate-x: 10rem !important; + .\32xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-44 { - --tw-translate-x: 11rem !important; + .\32xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-48 { - --tw-translate-x: 12rem !important; + .\32xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-52 { - --tw-translate-x: 13rem !important; + .\32xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-56 { - --tw-translate-x: 14rem !important; + .\32xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-60 { - --tw-translate-x: 15rem !important; + .\32xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-64 { - --tw-translate-x: 16rem !important; + .\32xl\:hover\:shadow-md:hover { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-72 { - --tw-translate-x: 18rem !important; + .\32xl\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-80 { - --tw-translate-x: 20rem !important; + .\32xl\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-96 { - --tw-translate-x: 24rem !important; + .\32xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-px { - --tw-translate-x: 1px !important; + .\32xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-0\.5 { - --tw-translate-x: 0.125rem !important; + .\32xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-1\.5 { - --tw-translate-x: 0.375rem !important; + .\32xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-2\.5 { - --tw-translate-x: 0.625rem !important; + .\32xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:translate-x-3\.5 { - --tw-translate-x: 0.875rem !important; + .\32xl\:focus\:shadow-md:focus { + --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:-translate-x-0 { - --tw-translate-x: 0px !important; + .\32xl\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:-translate-x-1 { - --tw-translate-x: -0.25rem !important; + .\32xl\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:-translate-x-2 { - --tw-translate-x: -0.5rem !important; + .\32xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:-translate-x-3 { - --tw-translate-x: -0.75rem !important; + .\32xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:-translate-x-4 { - --tw-translate-x: -1rem !important; + .\32xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000 !important; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important; } - .\32xl\:-translate-x-5 { - --tw-translate-x: -1.25rem !important; + .\32xl\:outline-none { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .\32xl\:-translate-x-6 { - --tw-translate-x: -1.5rem !important; + .\32xl\:outline-white { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .\32xl\:-translate-x-7 { - --tw-translate-x: -1.75rem !important; + .\32xl\:outline-black { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .\32xl\:-translate-x-8 { - --tw-translate-x: -2rem !important; + .\32xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .\32xl\:-translate-x-9 { - --tw-translate-x: -2.25rem !important; + .\32xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .\32xl\:-translate-x-10 { - --tw-translate-x: -2.5rem !important; + .\32xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .\32xl\:-translate-x-11 { - --tw-translate-x: -2.75rem !important; + .\32xl\:focus\:outline-none:focus { + outline: 2px solid transparent !important; + outline-offset: 2px !important; } - .\32xl\:-translate-x-12 { - --tw-translate-x: -3rem !important; + .\32xl\:focus\:outline-white:focus { + outline: 2px dotted white !important; + outline-offset: 2px !important; } - .\32xl\:-translate-x-14 { - --tw-translate-x: -3.5rem !important; + .\32xl\:focus\:outline-black:focus { + outline: 2px dotted black !important; + outline-offset: 2px !important; } - .\32xl\:-translate-x-16 { - --tw-translate-x: -4rem !important; + .\32xl\:ring-0 { + --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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-20 { - --tw-translate-x: -5rem !important; + .\32xl\:ring-1 { + --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(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-24 { - --tw-translate-x: -6rem !important; + .\32xl\:ring-2 { + --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(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-28 { - --tw-translate-x: -7rem !important; + .\32xl\:ring-4 { + --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-32 { - --tw-translate-x: -8rem !important; + .\32xl\:ring-8 { + --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-36 { - --tw-translate-x: -9rem !important; + .\32xl\:ring { + --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(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-40 { - --tw-translate-x: -10rem !important; + .\32xl\:ring-inset { + --tw-ring-inset: inset !important; } - .\32xl\:-translate-x-44 { - --tw-translate-x: -11rem !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-48 { - --tw-translate-x: -12rem !important; + .\32xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-52 { - --tw-translate-x: -13rem !important; + .\32xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-56 { - --tw-translate-x: -14rem !important; + .\32xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-60 { - --tw-translate-x: -15rem !important; + .\32xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-64 { - --tw-translate-x: -16rem !important; + .\32xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-72 { - --tw-translate-x: -18rem !important; + .\32xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; } - .\32xl\:-translate-x-80 { - --tw-translate-x: -20rem !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; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-96 { - --tw-translate-x: -24rem !important; + .\32xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-px { - --tw-translate-x: -1px !important; + .\32xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem !important; + .\32xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem !important; + .\32xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem !important; + .\32xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem !important; + .\32xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset !important; } - .\32xl\:translate-x-1\/2 { - --tw-translate-x: 50% !important; + .\32xl\:ring-transparent { + --tw-ring-color: transparent !important; } - .\32xl\:translate-x-1\/3 { - --tw-translate-x: 33.333333% !important; + .\32xl\:ring-current { + --tw-ring-color: currentColor !important; } - .\32xl\:translate-x-2\/3 { - --tw-translate-x: 66.666667% !important; + .\32xl\:ring-black { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-x-1\/4 { - --tw-translate-x: 25% !important; + .\32xl\:ring-white { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-x-2\/4 { - --tw-translate-x: 50% !important; + .\32xl\:ring-gray-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-x-3\/4 { - --tw-translate-x: 75% !important; + .\32xl\:ring-gray-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-x-full { - --tw-translate-x: 100% !important; + .\32xl\:ring-gray-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-x-1\/2 { - --tw-translate-x: -50% !important; + .\32xl\:ring-gray-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-x-1\/3 { - --tw-translate-x: -33.333333% !important; + .\32xl\:ring-gray-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-x-2\/3 { - --tw-translate-x: -66.666667% !important; + .\32xl\:ring-gray-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-x-1\/4 { - --tw-translate-x: -25% !important; + .\32xl\:ring-gray-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-x-2\/4 { - --tw-translate-x: -50% !important; + .\32xl\:ring-gray-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-x-3\/4 { - --tw-translate-x: -75% !important; + .\32xl\:ring-gray-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-x-full { - --tw-translate-x: -100% !important; + .\32xl\:ring-gray-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-0 { - --tw-translate-y: 0px !important; + .\32xl\:ring-red-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-1 { - --tw-translate-y: 0.25rem !important; + .\32xl\:ring-red-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-2 { - --tw-translate-y: 0.5rem !important; + .\32xl\:ring-red-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-3 { - --tw-translate-y: 0.75rem !important; + .\32xl\:ring-red-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-4 { - --tw-translate-y: 1rem !important; + .\32xl\:ring-red-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-5 { - --tw-translate-y: 1.25rem !important; + .\32xl\:ring-red-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-6 { - --tw-translate-y: 1.5rem !important; + .\32xl\:ring-red-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-7 { - --tw-translate-y: 1.75rem !important; + .\32xl\:ring-red-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-8 { - --tw-translate-y: 2rem !important; + .\32xl\:ring-red-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-9 { - --tw-translate-y: 2.25rem !important; + .\32xl\:ring-red-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-10 { - --tw-translate-y: 2.5rem !important; + .\32xl\:ring-yellow-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-11 { - --tw-translate-y: 2.75rem !important; + .\32xl\:ring-yellow-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-12 { - --tw-translate-y: 3rem !important; + .\32xl\:ring-yellow-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-14 { - --tw-translate-y: 3.5rem !important; + .\32xl\:ring-yellow-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-16 { - --tw-translate-y: 4rem !important; + .\32xl\:ring-yellow-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-20 { - --tw-translate-y: 5rem !important; + .\32xl\:ring-yellow-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-24 { - --tw-translate-y: 6rem !important; + .\32xl\:ring-yellow-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-28 { - --tw-translate-y: 7rem !important; + .\32xl\:ring-yellow-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-32 { - --tw-translate-y: 8rem !important; + .\32xl\:ring-yellow-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-36 { - --tw-translate-y: 9rem !important; + .\32xl\:ring-yellow-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-40 { - --tw-translate-y: 10rem !important; + .\32xl\:ring-green-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-44 { - --tw-translate-y: 11rem !important; + .\32xl\:ring-green-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-48 { - --tw-translate-y: 12rem !important; + .\32xl\:ring-green-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-52 { - --tw-translate-y: 13rem !important; + .\32xl\:ring-green-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-56 { - --tw-translate-y: 14rem !important; + .\32xl\:ring-green-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-60 { - --tw-translate-y: 15rem !important; + .\32xl\:ring-green-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-64 { - --tw-translate-y: 16rem !important; + .\32xl\:ring-green-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-72 { - --tw-translate-y: 18rem !important; + .\32xl\:ring-green-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-80 { - --tw-translate-y: 20rem !important; + .\32xl\:ring-green-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-96 { - --tw-translate-y: 24rem !important; + .\32xl\:ring-green-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-px { - --tw-translate-y: 1px !important; + .\32xl\:ring-blue-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-0\.5 { - --tw-translate-y: 0.125rem !important; + .\32xl\:ring-blue-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-1\.5 { - --tw-translate-y: 0.375rem !important; + .\32xl\:ring-blue-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-2\.5 { - --tw-translate-y: 0.625rem !important; + .\32xl\:ring-blue-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-3\.5 { - --tw-translate-y: 0.875rem !important; + .\32xl\:ring-blue-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-0 { - --tw-translate-y: 0px !important; + .\32xl\:ring-blue-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-1 { - --tw-translate-y: -0.25rem !important; + .\32xl\:ring-blue-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-2 { - --tw-translate-y: -0.5rem !important; + .\32xl\:ring-blue-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-3 { - --tw-translate-y: -0.75rem !important; + .\32xl\:ring-blue-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-4 { - --tw-translate-y: -1rem !important; + .\32xl\:ring-blue-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-5 { - --tw-translate-y: -1.25rem !important; + .\32xl\:ring-indigo-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-6 { - --tw-translate-y: -1.5rem !important; + .\32xl\:ring-indigo-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-7 { - --tw-translate-y: -1.75rem !important; + .\32xl\:ring-indigo-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-8 { - --tw-translate-y: -2rem !important; + .\32xl\:ring-indigo-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-9 { - --tw-translate-y: -2.25rem !important; + .\32xl\:ring-indigo-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-10 { - --tw-translate-y: -2.5rem !important; + .\32xl\:ring-indigo-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-11 { - --tw-translate-y: -2.75rem !important; + .\32xl\:ring-indigo-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-12 { - --tw-translate-y: -3rem !important; + .\32xl\:ring-indigo-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-14 { - --tw-translate-y: -3.5rem !important; + .\32xl\:ring-indigo-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-16 { - --tw-translate-y: -4rem !important; + .\32xl\:ring-indigo-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-20 { - --tw-translate-y: -5rem !important; + .\32xl\:ring-purple-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-24 { - --tw-translate-y: -6rem !important; + .\32xl\:ring-purple-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-28 { - --tw-translate-y: -7rem !important; + .\32xl\:ring-purple-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-32 { - --tw-translate-y: -8rem !important; + .\32xl\:ring-purple-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-36 { - --tw-translate-y: -9rem !important; + .\32xl\:ring-purple-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-40 { - --tw-translate-y: -10rem !important; + .\32xl\:ring-purple-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-44 { - --tw-translate-y: -11rem !important; + .\32xl\:ring-purple-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-48 { - --tw-translate-y: -12rem !important; + .\32xl\:ring-purple-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-52 { - --tw-translate-y: -13rem !important; + .\32xl\:ring-purple-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-56 { - --tw-translate-y: -14rem !important; + .\32xl\:ring-purple-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-60 { - --tw-translate-y: -15rem !important; + .\32xl\:ring-pink-50 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-64 { - --tw-translate-y: -16rem !important; + .\32xl\:ring-pink-100 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-72 { - --tw-translate-y: -18rem !important; + .\32xl\:ring-pink-200 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-80 { - --tw-translate-y: -20rem !important; + .\32xl\:ring-pink-300 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-96 { - --tw-translate-y: -24rem !important; + .\32xl\:ring-pink-400 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-px { - --tw-translate-y: -1px !important; + .\32xl\:ring-pink-500 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem !important; + .\32xl\:ring-pink-600 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem !important; + .\32xl\:ring-pink-700 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem !important; + .\32xl\:ring-pink-800 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem !important; + .\32xl\:ring-pink-900 { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-1\/2 { - --tw-translate-y: 50% !important; + .\32xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent !important; } - .\32xl\:translate-y-1\/3 { - --tw-translate-y: 33.333333% !important; + .\32xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor !important; } - .\32xl\:translate-y-2\/3 { - --tw-translate-y: 66.666667% !important; + .\32xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-1\/4 { - --tw-translate-y: 25% !important; + .\32xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-2\/4 { - --tw-translate-y: 50% !important; + .\32xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-3\/4 { - --tw-translate-y: 75% !important; + .\32xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .\32xl\:translate-y-full { - --tw-translate-y: 100% !important; + .\32xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-1\/2 { - --tw-translate-y: -50% !important; + .\32xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-1\/3 { - --tw-translate-y: -33.333333% !important; + .\32xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-2\/3 { - --tw-translate-y: -66.666667% !important; + .\32xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-1\/4 { - --tw-translate-y: -25% !important; + .\32xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-2\/4 { - --tw-translate-y: -50% !important; + .\32xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-3\/4 { - --tw-translate-y: -75% !important; + .\32xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .\32xl\:-translate-y-full { - --tw-translate-y: -100% !important; + .\32xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-0:hover { - --tw-translate-x: 0px !important; + .\32xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem !important; + .\32xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem !important; + .\32xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem !important; + .\32xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem !important; + .\32xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem !important; + .\32xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem !important; + .\32xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem !important; + .\32xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem !important; + .\32xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem !important; + .\32xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem !important; + .\32xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem !important; + .\32xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem !important; + .\32xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem !important; + .\32xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem !important; + .\32xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem !important; + .\32xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem !important; + .\32xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem !important; + .\32xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem !important; + .\32xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem !important; + .\32xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem !important; + .\32xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem !important; + .\32xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem !important; + .\32xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem !important; + .\32xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem !important; + .\32xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem !important; + .\32xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem !important; + .\32xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem !important; + .\32xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem !important; + .\32xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem !important; + .\32xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-px:hover { - --tw-translate-x: 1px !important; + .\32xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem !important; + .\32xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem !important; + .\32xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem !important; + .\32xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem !important; + .\32xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px !important; + .\32xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem !important; + .\32xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem !important; + .\32xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem !important; + .\32xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem !important; + .\32xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem !important; + .\32xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem !important; + .\32xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem !important; + .\32xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem !important; + .\32xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem !important; + .\32xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem !important; + .\32xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem !important; + .\32xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem !important; + .\32xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem !important; + .\32xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem !important; + .\32xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem !important; + .\32xl\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem !important; + .\32xl\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem !important; + .\32xl\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem !important; + .\32xl\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem !important; + .\32xl\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem !important; + .\32xl\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem !important; + .\32xl\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem !important; + .\32xl\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem !important; + .\32xl\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem !important; + .\32xl\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem !important; + .\32xl\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem !important; + .\32xl\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem !important; + .\32xl\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem !important; + .\32xl\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem !important; + .\32xl\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px !important; + .\32xl\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem !important; + .\32xl\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem !important; + .\32xl\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem !important; + .\32xl\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem !important; + .\32xl\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50% !important; + .\32xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent !important; } - .\32xl\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333% !important; + .\32xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor !important; } - .\32xl\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667% !important; + .\32xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25% !important; + .\32xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50% !important; + .\32xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75% !important; + .\32xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-x-full:hover { - --tw-translate-x: 100% !important; + .\32xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50% !important; + .\32xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333% !important; + .\32xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667% !important; + .\32xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25% !important; + .\32xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50% !important; + .\32xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75% !important; + .\32xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-x-full:hover { - --tw-translate-x: -100% !important; + .\32xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-0:hover { - --tw-translate-y: 0px !important; + .\32xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem !important; + .\32xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem !important; + .\32xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem !important; + .\32xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem !important; + .\32xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem !important; + .\32xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem !important; + .\32xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem !important; + .\32xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem !important; + .\32xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem !important; + .\32xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem !important; + .\32xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem !important; + .\32xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem !important; + .\32xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem !important; + .\32xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem !important; + .\32xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem !important; + .\32xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem !important; + .\32xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem !important; + .\32xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem !important; + .\32xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem !important; + .\32xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem !important; + .\32xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem !important; + .\32xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem !important; + .\32xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem !important; + .\32xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem !important; + .\32xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem !important; + .\32xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem !important; + .\32xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem !important; + .\32xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem !important; + .\32xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem !important; + .\32xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-px:hover { - --tw-translate-y: 1px !important; + .\32xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem !important; + .\32xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem !important; + .\32xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem !important; + .\32xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem !important; + .\32xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px !important; + .\32xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem !important; + .\32xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem !important; + .\32xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem !important; + .\32xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem !important; + .\32xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem !important; + .\32xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem !important; + .\32xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem !important; + .\32xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem !important; + .\32xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem !important; + .\32xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem !important; + .\32xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem !important; + .\32xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem !important; + .\32xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem !important; + .\32xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem !important; + .\32xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem !important; + .\32xl\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem !important; + .\32xl\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem !important; + .\32xl\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem !important; + .\32xl\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem !important; + .\32xl\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem !important; + .\32xl\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem !important; + .\32xl\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem !important; + .\32xl\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem !important; + .\32xl\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem !important; + .\32xl\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem !important; + .\32xl\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem !important; + .\32xl\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem !important; + .\32xl\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem !important; + .\32xl\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem !important; + .\32xl\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px !important; + .\32xl\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem !important; + .\32xl\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem !important; + .\32xl\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem !important; + .\32xl\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem !important; + .\32xl\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1 !important; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)) !important; } - .\32xl\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50% !important; + .\32xl\:ring-opacity-0 { + --tw-ring-opacity: 0 !important; } - .\32xl\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333% !important; + .\32xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05 !important; } - .\32xl\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667% !important; + .\32xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1 !important; } - .\32xl\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25% !important; + .\32xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2 !important; } - .\32xl\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50% !important; + .\32xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25 !important; } - .\32xl\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75% !important; + .\32xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3 !important; } - .\32xl\:hover\:translate-y-full:hover { - --tw-translate-y: 100% !important; + .\32xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4 !important; } - .\32xl\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50% !important; + .\32xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5 !important; } - .\32xl\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333% !important; + .\32xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6 !important; } - .\32xl\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667% !important; + .\32xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7 !important; } - .\32xl\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25% !important; + .\32xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75 !important; } - .\32xl\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50% !important; + .\32xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8 !important; } - .\32xl\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75% !important; + .\32xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9 !important; } - .\32xl\:hover\:-translate-y-full:hover { - --tw-translate-y: -100% !important; + .\32xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95 !important; } - .\32xl\:focus\:translate-x-0:focus { - --tw-translate-x: 0px !important; + .\32xl\:ring-opacity-100 { + --tw-ring-opacity: 1 !important; } - .\32xl\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem !important; + .\32xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0 !important; } - .\32xl\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem !important; + .\32xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05 !important; } - .\32xl\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem !important; + .\32xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1 !important; } - .\32xl\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem !important; + .\32xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2 !important; } - .\32xl\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem !important; + .\32xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25 !important; } - .\32xl\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem !important; + .\32xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3 !important; } - .\32xl\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem !important; + .\32xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4 !important; } - .\32xl\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem !important; + .\32xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5 !important; } - .\32xl\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem !important; + .\32xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6 !important; } - .\32xl\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem !important; + .\32xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7 !important; } - .\32xl\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem !important; + .\32xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75 !important; } - .\32xl\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem !important; + .\32xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8 !important; } - .\32xl\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem !important; + .\32xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9 !important; } - .\32xl\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem !important; + .\32xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95 !important; } - .\32xl\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem !important; + .\32xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1 !important; } - .\32xl\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem !important; + .\32xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0 !important; } - .\32xl\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem !important; + .\32xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05 !important; } - .\32xl\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem !important; + .\32xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1 !important; } - .\32xl\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem !important; + .\32xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2 !important; } - .\32xl\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem !important; + .\32xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25 !important; } - .\32xl\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem !important; + .\32xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3 !important; } - .\32xl\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem !important; + .\32xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4 !important; } - .\32xl\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem !important; + .\32xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5 !important; } - .\32xl\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem !important; + .\32xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6 !important; } - .\32xl\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem !important; + .\32xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7 !important; } - .\32xl\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem !important; + .\32xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75 !important; } - .\32xl\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem !important; + .\32xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8 !important; } - .\32xl\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem !important; + .\32xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9 !important; } - .\32xl\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem !important; + .\32xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95 !important; } - .\32xl\:focus\:translate-x-px:focus { - --tw-translate-x: 1px !important; + .\32xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1 !important; } - .\32xl\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem !important; + .\32xl\:ring-offset-0 { + --tw-ring-offset-width: 0px !important; } - .\32xl\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem !important; + .\32xl\:ring-offset-1 { + --tw-ring-offset-width: 1px !important; } - .\32xl\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem !important; + .\32xl\:ring-offset-2 { + --tw-ring-offset-width: 2px !important; } - .\32xl\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem !important; + .\32xl\:ring-offset-4 { + --tw-ring-offset-width: 4px !important; } - .\32xl\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px !important; + .\32xl\:ring-offset-8 { + --tw-ring-offset-width: 8px !important; } - .\32xl\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem !important; + .\32xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px !important; } - .\32xl\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem !important; + .\32xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px !important; } - .\32xl\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem !important; + .\32xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px !important; } - .\32xl\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem !important; + .\32xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px !important; } - .\32xl\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem !important; + .\32xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px !important; } - .\32xl\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem !important; + .\32xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px !important; } - .\32xl\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem !important; + .\32xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px !important; } - .\32xl\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem !important; + .\32xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px !important; } - .\32xl\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem !important; + .\32xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px !important; } - .\32xl\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem !important; + .\32xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px !important; } - .\32xl\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem !important; + .\32xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent !important; } - .\32xl\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem !important; + .\32xl\:ring-offset-current { + --tw-ring-offset-color: currentColor !important; } - .\32xl\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem !important; + .\32xl\:ring-offset-black { + --tw-ring-offset-color: #000 !important; } - .\32xl\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem !important; + .\32xl\:ring-offset-white { + --tw-ring-offset-color: #fff !important; } - .\32xl\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem !important; + .\32xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb !important; } - .\32xl\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem !important; + .\32xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6 !important; } - .\32xl\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem !important; + .\32xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb !important; } - .\32xl\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem !important; + .\32xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db !important; } - .\32xl\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem !important; + .\32xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af !important; } - .\32xl\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem !important; + .\32xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280 !important; } - .\32xl\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem !important; + .\32xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563 !important; } - .\32xl\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem !important; + .\32xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151 !important; } - .\32xl\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem !important; + .\32xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937 !important; } - .\32xl\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem !important; + .\32xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827 !important; } - .\32xl\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem !important; + .\32xl\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2 !important; } - .\32xl\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem !important; + .\32xl\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2 !important; } - .\32xl\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem !important; + .\32xl\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca !important; } - .\32xl\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem !important; + .\32xl\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5 !important; } - .\32xl\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem !important; + .\32xl\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171 !important; } - .\32xl\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px !important; + .\32xl\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444 !important; } - .\32xl\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem !important; + .\32xl\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626 !important; } - .\32xl\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem !important; + .\32xl\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c !important; } - .\32xl\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem !important; + .\32xl\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b !important; } - .\32xl\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem !important; + .\32xl\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d !important; } - .\32xl\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50% !important; + .\32xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb !important; } - .\32xl\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333% !important; + .\32xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7 !important; } - .\32xl\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667% !important; + .\32xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a !important; } - .\32xl\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25% !important; + .\32xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d !important; } - .\32xl\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50% !important; + .\32xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24 !important; } - .\32xl\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75% !important; + .\32xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b !important; } - .\32xl\:focus\:translate-x-full:focus { - --tw-translate-x: 100% !important; + .\32xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706 !important; } - .\32xl\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50% !important; + .\32xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309 !important; } - .\32xl\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333% !important; + .\32xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e !important; } - .\32xl\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667% !important; + .\32xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f !important; } - .\32xl\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25% !important; + .\32xl\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5 !important; } - .\32xl\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50% !important; + .\32xl\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5 !important; } - .\32xl\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75% !important; + .\32xl\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0 !important; } - .\32xl\:focus\:-translate-x-full:focus { - --tw-translate-x: -100% !important; + .\32xl\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7 !important; } - .\32xl\:focus\:translate-y-0:focus { - --tw-translate-y: 0px !important; + .\32xl\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399 !important; } - .\32xl\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem !important; + .\32xl\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981 !important; } - .\32xl\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem !important; + .\32xl\:ring-offset-green-600 { + --tw-ring-offset-color: #059669 !important; } - .\32xl\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem !important; + .\32xl\:ring-offset-green-700 { + --tw-ring-offset-color: #047857 !important; } - .\32xl\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem !important; + .\32xl\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46 !important; } - .\32xl\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem !important; + .\32xl\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b !important; } - .\32xl\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem !important; + .\32xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff !important; } - .\32xl\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem !important; + .\32xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe !important; } - .\32xl\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem !important; + .\32xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe !important; } - .\32xl\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem !important; + .\32xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd !important; } - .\32xl\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem !important; + .\32xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa !important; } - .\32xl\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem !important; + .\32xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6 !important; } - .\32xl\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem !important; + .\32xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb !important; } - .\32xl\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem !important; + .\32xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8 !important; } - .\32xl\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem !important; + .\32xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af !important; } - .\32xl\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem !important; + .\32xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a !important; } - .\32xl\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem !important; + .\32xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff !important; } - .\32xl\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem !important; + .\32xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff !important; } - .\32xl\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem !important; + .\32xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe !important; } - .\32xl\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem !important; + .\32xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc !important; } - .\32xl\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem !important; + .\32xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8 !important; } - .\32xl\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem !important; + .\32xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1 !important; } - .\32xl\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem !important; + .\32xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5 !important; } - .\32xl\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem !important; + .\32xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca !important; } - .\32xl\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem !important; + .\32xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3 !important; } - .\32xl\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem !important; + .\32xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81 !important; } - .\32xl\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem !important; + .\32xl\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff !important; } - .\32xl\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem !important; + .\32xl\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe !important; } - .\32xl\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem !important; + .\32xl\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe !important; } - .\32xl\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem !important; + .\32xl\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd !important; } - .\32xl\:focus\:translate-y-px:focus { - --tw-translate-y: 1px !important; + .\32xl\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa !important; } - .\32xl\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem !important; + .\32xl\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6 !important; } - .\32xl\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem !important; + .\32xl\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed !important; } - .\32xl\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem !important; + .\32xl\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9 !important; } - .\32xl\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem !important; + .\32xl\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6 !important; } - .\32xl\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px !important; + .\32xl\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95 !important; } - .\32xl\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem !important; + .\32xl\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8 !important; } - .\32xl\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem !important; + .\32xl\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3 !important; } - .\32xl\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem !important; + .\32xl\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8 !important; } - .\32xl\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem !important; + .\32xl\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4 !important; } - .\32xl\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem !important; + .\32xl\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6 !important; } - .\32xl\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem !important; + .\32xl\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899 !important; } - .\32xl\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem !important; + .\32xl\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777 !important; } - .\32xl\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem !important; + .\32xl\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d !important; } - .\32xl\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem !important; + .\32xl\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d !important; } - .\32xl\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem !important; + .\32xl\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843 !important; } - .\32xl\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem !important; + .\32xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent !important; } - .\32xl\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem !important; + .\32xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor !important; } - .\32xl\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem !important; + .\32xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000 !important; } - .\32xl\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem !important; + .\32xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff !important; } - .\32xl\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem !important; + .\32xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb !important; } - .\32xl\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem !important; + .\32xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6 !important; } - .\32xl\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem !important; + .\32xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb !important; } - .\32xl\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem !important; + .\32xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db !important; } - .\32xl\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem !important; + .\32xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af !important; } - .\32xl\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem !important; + .\32xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280 !important; } - .\32xl\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem !important; + .\32xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563 !important; } - .\32xl\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem !important; + .\32xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151 !important; } - .\32xl\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem !important; + .\32xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937 !important; } - .\32xl\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem !important; + .\32xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827 !important; } - .\32xl\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem !important; + .\32xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2 !important; } - .\32xl\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem !important; + .\32xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2 !important; } - .\32xl\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem !important; + .\32xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca !important; } - .\32xl\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem !important; + .\32xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5 !important; } - .\32xl\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem !important; + .\32xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171 !important; } - .\32xl\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px !important; + .\32xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444 !important; } - .\32xl\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem !important; + .\32xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626 !important; } - .\32xl\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem !important; + .\32xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c !important; } - .\32xl\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem !important; + .\32xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b !important; } - .\32xl\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem !important; + .\32xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d !important; } - .\32xl\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50% !important; + .\32xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb !important; } - .\32xl\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333% !important; + .\32xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7 !important; } - .\32xl\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667% !important; + .\32xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a !important; } - .\32xl\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25% !important; + .\32xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d !important; } - .\32xl\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50% !important; + .\32xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24 !important; } - .\32xl\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75% !important; + .\32xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b !important; } - .\32xl\:focus\:translate-y-full:focus { - --tw-translate-y: 100% !important; + .\32xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706 !important; } - .\32xl\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50% !important; + .\32xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309 !important; } - .\32xl\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333% !important; + .\32xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e !important; } - .\32xl\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667% !important; + .\32xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f !important; } - .\32xl\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25% !important; + .\32xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5 !important; } - .\32xl\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50% !important; + .\32xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5 !important; } - .\32xl\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75% !important; + .\32xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0 !important; } - .\32xl\:focus\:-translate-y-full:focus { - --tw-translate-y: -100% !important; + .\32xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7 !important; } - .\32xl\:skew-x-0 { - --tw-skew-x: 0deg !important; + .\32xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399 !important; } - .\32xl\:skew-x-1 { - --tw-skew-x: 1deg !important; + .\32xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981 !important; } - .\32xl\:skew-x-2 { - --tw-skew-x: 2deg !important; + .\32xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669 !important; } - .\32xl\:skew-x-3 { - --tw-skew-x: 3deg !important; + .\32xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857 !important; } - .\32xl\:skew-x-6 { - --tw-skew-x: 6deg !important; + .\32xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46 !important; } - .\32xl\:skew-x-12 { - --tw-skew-x: 12deg !important; + .\32xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b !important; } - .\32xl\:-skew-x-12 { - --tw-skew-x: -12deg !important; + .\32xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff !important; } - .\32xl\:-skew-x-6 { - --tw-skew-x: -6deg !important; + .\32xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe !important; } - .\32xl\:-skew-x-3 { - --tw-skew-x: -3deg !important; + .\32xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe !important; } - .\32xl\:-skew-x-2 { - --tw-skew-x: -2deg !important; + .\32xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd !important; } - .\32xl\:-skew-x-1 { - --tw-skew-x: -1deg !important; + .\32xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa !important; } - .\32xl\:skew-y-0 { - --tw-skew-y: 0deg !important; + .\32xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6 !important; } - .\32xl\:skew-y-1 { - --tw-skew-y: 1deg !important; + .\32xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb !important; } - .\32xl\:skew-y-2 { - --tw-skew-y: 2deg !important; + .\32xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8 !important; } - .\32xl\:skew-y-3 { - --tw-skew-y: 3deg !important; + .\32xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af !important; } - .\32xl\:skew-y-6 { - --tw-skew-y: 6deg !important; + .\32xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a !important; } - .\32xl\:skew-y-12 { - --tw-skew-y: 12deg !important; + .\32xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff !important; } - .\32xl\:-skew-y-12 { - --tw-skew-y: -12deg !important; + .\32xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff !important; } - .\32xl\:-skew-y-6 { - --tw-skew-y: -6deg !important; + .\32xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe !important; } - .\32xl\:-skew-y-3 { - --tw-skew-y: -3deg !important; + .\32xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc !important; } - .\32xl\:-skew-y-2 { - --tw-skew-y: -2deg !important; + .\32xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8 !important; } - .\32xl\:-skew-y-1 { - --tw-skew-y: -1deg !important; + .\32xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1 !important; } - .\32xl\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg !important; + .\32xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5 !important; } - .\32xl\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg !important; + .\32xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca !important; } - .\32xl\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg !important; + .\32xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3 !important; } - .\32xl\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg !important; + .\32xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81 !important; } - .\32xl\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg !important; + .\32xl\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff !important; } - .\32xl\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg !important; + .\32xl\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe !important; } - .\32xl\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg !important; + .\32xl\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe !important; } - .\32xl\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg !important; + .\32xl\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd !important; } - .\32xl\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg !important; + .\32xl\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa !important; } - .\32xl\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg !important; + .\32xl\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6 !important; } - .\32xl\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg !important; + .\32xl\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed !important; } - .\32xl\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg !important; + .\32xl\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9 !important; } - .\32xl\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg !important; + .\32xl\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6 !important; } - .\32xl\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg !important; + .\32xl\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95 !important; } - .\32xl\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg !important; + .\32xl\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8 !important; } - .\32xl\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg !important; + .\32xl\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3 !important; } - .\32xl\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg !important; + .\32xl\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8 !important; } - .\32xl\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg !important; + .\32xl\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4 !important; } - .\32xl\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg !important; + .\32xl\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6 !important; } - .\32xl\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg !important; + .\32xl\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899 !important; } - .\32xl\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg !important; + .\32xl\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777 !important; } - .\32xl\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg !important; + .\32xl\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d !important; } - .\32xl\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg !important; + .\32xl\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d !important; } - .\32xl\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg !important; + .\32xl\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843 !important; } - .\32xl\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg !important; + .\32xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent !important; } - .\32xl\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg !important; + .\32xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor !important; } - .\32xl\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg !important; + .\32xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000 !important; } - .\32xl\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg !important; + .\32xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff !important; } - .\32xl\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg !important; + .\32xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb !important; } - .\32xl\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg !important; + .\32xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6 !important; } - .\32xl\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg !important; + .\32xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb !important; } - .\32xl\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg !important; + .\32xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db !important; } - .\32xl\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg !important; + .\32xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af !important; } - .\32xl\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg !important; + .\32xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280 !important; } - .\32xl\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg !important; + .\32xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563 !important; } - .\32xl\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg !important; + .\32xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151 !important; } - .\32xl\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg !important; + .\32xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937 !important; } - .\32xl\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg !important; + .\32xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827 !important; } - .\32xl\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg !important; + .\32xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2 !important; } - .\32xl\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg !important; + .\32xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2 !important; } - .\32xl\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg !important; + .\32xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca !important; } - .\32xl\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg !important; + .\32xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5 !important; } - .\32xl\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg !important; + .\32xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171 !important; } - .\32xl\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg !important; + .\32xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444 !important; } - .\32xl\:transition-none { - transition-property: none !important; + .\32xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626 !important; } - .\32xl\:transition-all { - transition-property: all !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; + .\32xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c !important; } - .\32xl\:transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; + .\32xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b !important; } - .\32xl\:transition-colors { - transition-property: background-color, border-color, color, fill, stroke !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; + .\32xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d !important; } - .\32xl\:transition-opacity { - transition-property: opacity !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; + .\32xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb !important; } - .\32xl\:transition-shadow { - transition-property: box-shadow !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; + .\32xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7 !important; } - .\32xl\:transition-transform { - transition-property: transform !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; + .\32xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a !important; } - .\32xl\:ease-linear { - transition-timing-function: linear !important; + .\32xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d !important; } - .\32xl\:ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; + .\32xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24 !important; } - .\32xl\:ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; + .\32xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b !important; } - .\32xl\:ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + .\32xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706 !important; } - .\32xl\:duration-75 { - transition-duration: 75ms !important; + .\32xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309 !important; } - .\32xl\:duration-100 { - transition-duration: 100ms !important; + .\32xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e !important; } - .\32xl\:duration-150 { - transition-duration: 150ms !important; + .\32xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f !important; } - .\32xl\:duration-200 { - transition-duration: 200ms !important; + .\32xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5 !important; } - .\32xl\:duration-300 { - transition-duration: 300ms !important; + .\32xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5 !important; } - .\32xl\:duration-500 { - transition-duration: 500ms !important; + .\32xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0 !important; } - .\32xl\:duration-700 { - transition-duration: 700ms !important; + .\32xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7 !important; } - .\32xl\:duration-1000 { - transition-duration: 1000ms !important; + .\32xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399 !important; } - .\32xl\:delay-75 { - transition-delay: 75ms !important; + .\32xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981 !important; } - .\32xl\:delay-100 { - transition-delay: 100ms !important; + .\32xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669 !important; } - .\32xl\:delay-150 { - transition-delay: 150ms !important; + .\32xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857 !important; } - .\32xl\:delay-200 { - transition-delay: 200ms !important; + .\32xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46 !important; } - .\32xl\:delay-300 { - transition-delay: 300ms !important; + .\32xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b !important; } - .\32xl\:delay-500 { - transition-delay: 500ms !important; + .\32xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff !important; } - .\32xl\:delay-700 { - transition-delay: 700ms !important; + .\32xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe !important; } - .\32xl\:delay-1000 { - transition-delay: 1000ms !important; + .\32xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe !important; } - .\32xl\:animate-none { - animation: none !important; + .\32xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd !important; } - .\32xl\:animate-spin { - animation: spin 1s linear infinite !important; + .\32xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa !important; } - .\32xl\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; + .\32xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6 !important; } - .\32xl\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; + .\32xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb !important; } - .\32xl\:animate-bounce { - animation: bounce 1s infinite !important; + .\32xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8 !important; } - .\32xl\:mix-blend-normal { - mix-blend-mode: normal !important; + .\32xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af !important; } - .\32xl\:mix-blend-multiply { - mix-blend-mode: multiply !important; + .\32xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a !important; } - .\32xl\:mix-blend-screen { - mix-blend-mode: screen !important; + .\32xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff !important; } - .\32xl\:mix-blend-overlay { - mix-blend-mode: overlay !important; + .\32xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff !important; } - .\32xl\:mix-blend-darken { - mix-blend-mode: darken !important; + .\32xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe !important; } - .\32xl\:mix-blend-lighten { - mix-blend-mode: lighten !important; + .\32xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc !important; } - .\32xl\:mix-blend-color-dodge { - mix-blend-mode: color-dodge !important; + .\32xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8 !important; } - .\32xl\:mix-blend-color-burn { - mix-blend-mode: color-burn !important; + .\32xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1 !important; } - .\32xl\:mix-blend-hard-light { - mix-blend-mode: hard-light !important; + .\32xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5 !important; } - .\32xl\:mix-blend-soft-light { - mix-blend-mode: soft-light !important; + .\32xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca !important; } - .\32xl\:mix-blend-difference { - mix-blend-mode: difference !important; + .\32xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3 !important; } - .\32xl\:mix-blend-exclusion { - mix-blend-mode: exclusion !important; + .\32xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81 !important; } - .\32xl\:mix-blend-hue { - mix-blend-mode: hue !important; + .\32xl\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff !important; } - .\32xl\:mix-blend-saturation { - mix-blend-mode: saturation !important; + .\32xl\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe !important; } - .\32xl\:mix-blend-color { - mix-blend-mode: color !important; + .\32xl\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe !important; } - .\32xl\:mix-blend-luminosity { - mix-blend-mode: luminosity !important; + .\32xl\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd !important; } - .\32xl\:bg-blend-normal { - background-blend-mode: normal !important; + .\32xl\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa !important; } - .\32xl\:bg-blend-multiply { - background-blend-mode: multiply !important; + .\32xl\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6 !important; } - .\32xl\:bg-blend-screen { - background-blend-mode: screen !important; + .\32xl\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed !important; } - .\32xl\:bg-blend-overlay { - background-blend-mode: overlay !important; + .\32xl\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9 !important; } - .\32xl\:bg-blend-darken { - background-blend-mode: darken !important; + .\32xl\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6 !important; } - .\32xl\:bg-blend-lighten { - background-blend-mode: lighten !important; + .\32xl\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95 !important; } - .\32xl\:bg-blend-color-dodge { - background-blend-mode: color-dodge !important; + .\32xl\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8 !important; } - .\32xl\:bg-blend-color-burn { - background-blend-mode: color-burn !important; + .\32xl\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3 !important; } - .\32xl\:bg-blend-hard-light { - background-blend-mode: hard-light !important; + .\32xl\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8 !important; } - .\32xl\:bg-blend-soft-light { - background-blend-mode: soft-light !important; + .\32xl\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4 !important; } - .\32xl\:bg-blend-difference { - background-blend-mode: difference !important; + .\32xl\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6 !important; } - .\32xl\:bg-blend-exclusion { - background-blend-mode: exclusion !important; + .\32xl\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899 !important; } - .\32xl\:bg-blend-hue { - background-blend-mode: hue !important; + .\32xl\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777 !important; } - .\32xl\:bg-blend-saturation { - background-blend-mode: saturation !important; + .\32xl\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d !important; } - .\32xl\:bg-blend-color { - background-blend-mode: color !important; + .\32xl\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d !important; } - .\32xl\:bg-blend-luminosity { - background-blend-mode: luminosity !important; + .\32xl\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843 !important; } .\32xl\:filter { @@ -175405,6 +175285,126 @@ video { --tw-backdrop-sepia: sepia(100%) !important; } + .\32xl\:transition-none { + transition-property: none !important; + } + + .\32xl\:transition-all { + transition-property: all !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:transition-opacity { + transition-property: opacity !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:transition-shadow { + transition-property: box-shadow !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:transition-transform { + transition-property: transform !important; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + transition-duration: 150ms !important; + } + + .\32xl\:delay-75 { + transition-delay: 75ms !important; + } + + .\32xl\:delay-100 { + transition-delay: 100ms !important; + } + + .\32xl\:delay-150 { + transition-delay: 150ms !important; + } + + .\32xl\:delay-200 { + transition-delay: 200ms !important; + } + + .\32xl\:delay-300 { + transition-delay: 300ms !important; + } + + .\32xl\:delay-500 { + transition-delay: 500ms !important; + } + + .\32xl\:delay-700 { + transition-delay: 700ms !important; + } + + .\32xl\:delay-1000 { + transition-delay: 1000ms !important; + } + + .\32xl\:duration-75 { + transition-duration: 75ms !important; + } + + .\32xl\:duration-100 { + transition-duration: 100ms !important; + } + + .\32xl\:duration-150 { + transition-duration: 150ms !important; + } + + .\32xl\:duration-200 { + transition-duration: 200ms !important; + } + + .\32xl\:duration-300 { + transition-duration: 300ms !important; + } + + .\32xl\:duration-500 { + transition-duration: 500ms !important; + } + + .\32xl\:duration-700 { + transition-duration: 700ms !important; + } + + .\32xl\:duration-1000 { + transition-duration: 1000ms !important; + } + + .\32xl\:ease-linear { + transition-timing-function: linear !important; + } + + .\32xl\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; + } + + .\32xl\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; + } + + .\32xl\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; + } + .\32xl\:example { font-weight: 700; color: #ef4444; diff --git a/__tests__/fixtures/tailwind-output-no-color-opacity.css b/tests/fixtures/tailwind-output-no-color-opacity.css similarity index 100% rename from __tests__/fixtures/tailwind-output-no-color-opacity.css rename to tests/fixtures/tailwind-output-no-color-opacity.css index 445fdd057bbb..f51fc44b442f 100644 --- a/__tests__/fixtures/tailwind-output-no-color-opacity.css +++ b/tests/fixtures/tailwind-output-no-color-opacity.css @@ -573,20176 +573,20667 @@ video { } } -.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)); +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } -.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))); +.not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } -.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)); +.focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } -.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))); +.focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } -.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)); +.focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } -.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))); +.focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } -.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)); +.pointer-events-none { + pointer-events: none; } -.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))); +.pointer-events-auto { + pointer-events: auto; } -.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)); +.visible { + visibility: visible; } -.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))); +.invisible { + visibility: hidden; } -.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)); +.static { + position: static; } -.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))); +.fixed { + position: fixed; } -.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)); +.absolute { + position: absolute; } -.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))); +.relative { + position: relative; } -.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)); +.sticky { + position: sticky; } -.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))); +.inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } -.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)); +.inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } -.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))); +.inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } -.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)); +.inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } -.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))); +.inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } -.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)); +.inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } -.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))); +.inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } -.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)); +.inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } -.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))); +.inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } -.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)); +.inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } -.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))); +.inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } -.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)); +.inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } -.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))); +.inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } -.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)); +.inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } -.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))); +.inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } -.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)); +.inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } -.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))); +.inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } -.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)); +.inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } -.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))); +.inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } -.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)); +.inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } -.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))); +.inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } -.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)); +.inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } -.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))); +.inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } -.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)); +.inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } -.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))); +.inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } -.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)); +.inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } -.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))); +.inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } -.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)); +.inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } -.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))); +.inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } -.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)); +.inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } -.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))); +.inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } -.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)); +.inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } -.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))); +.inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } -.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)); +.inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } -.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))); +.inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } -.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)); +.inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } -.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))); +.-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } -.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)); +.-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } -.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))); +.-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } -.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)); +.-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } -.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))); +.-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } -.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)); +.-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } -.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))); +.-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } -.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)); +.-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } -.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))); +.-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } -.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)); +.-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } -.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))); +.-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } -.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)); +.-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } -.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))); +.-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } -.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)); +.-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } -.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))); +.-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } -.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)); +.-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } -.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))); +.-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } -.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)); +.-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } -.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))); +.-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } -.-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)); +.-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } -.-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))); +.-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } -.-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)); +.-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } -.-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))); +.-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } -.-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)); +.-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } -.-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))); +.-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } -.-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)); +.-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } -.-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))); +.-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } -.-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)); +.-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } -.-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))); +.-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } -.-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)); +.-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } -.-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))); +.-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } -.-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)); +.-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } -.-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))); +.-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } -.-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)); +.-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } -.-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))); +.-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } -.-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)); +.inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } -.-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))); +.inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } -.-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)); +.inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } -.-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))); +.inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } -.-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)); +.inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } -.-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))); +.inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } -.-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)); +.inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } -.-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))); +.-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } -.-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)); +.-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } -.-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))); +.-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } -.-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)); +.-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } -.-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))); +.-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } -.-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)); +.-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } -.-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))); +.-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } -.-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)); +.inset-y-0 { + top: 0px; + bottom: 0px; } -.-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))); +.inset-x-0 { + right: 0px; + left: 0px; } -.-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)); +.inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } -.-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))); +.inset-x-1 { + right: 0.25rem; + left: 0.25rem; } -.-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)); +.inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } -.-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))); +.inset-x-2 { + right: 0.5rem; + left: 0.5rem; } -.-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)); +.inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } -.-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))); +.inset-x-3 { + right: 0.75rem; + left: 0.75rem; } -.-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)); +.inset-y-4 { + top: 1rem; + bottom: 1rem; } -.-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))); +.inset-x-4 { + right: 1rem; + left: 1rem; } -.-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)); +.inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } -.-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))); +.inset-x-5 { + right: 1.25rem; + left: 1.25rem; } -.-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)); +.inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } -.-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))); +.inset-x-6 { + right: 1.5rem; + left: 1.5rem; } -.-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)); +.inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } -.-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))); +.inset-x-7 { + right: 1.75rem; + left: 1.75rem; } -.-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)); +.inset-y-8 { + top: 2rem; + bottom: 2rem; } -.-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)); +.inset-x-8 { + right: 2rem; + left: 2rem; } -.-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))); +.inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } -.-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)); +.inset-x-9 { + right: 2.25rem; + left: 2.25rem; } -.-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))); +.inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } -.-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)); +.inset-x-10 { + right: 2.5rem; + left: 2.5rem; } -.-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))); +.inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } -.-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)); +.inset-x-11 { + right: 2.75rem; + left: 2.75rem; } -.-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))); +.inset-y-12 { + top: 3rem; + bottom: 3rem; } -.-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)); +.inset-x-12 { + right: 3rem; + left: 3rem; } -.-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))); +.inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } -.-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)); +.inset-x-14 { + right: 3.5rem; + left: 3.5rem; } -.-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))); +.inset-y-16 { + top: 4rem; + bottom: 4rem; } -.-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)); +.inset-x-16 { + right: 4rem; + left: 4rem; } -.-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))); +.inset-y-20 { + top: 5rem; + bottom: 5rem; } -.-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)); +.inset-x-20 { + right: 5rem; + left: 5rem; } -.-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))); +.inset-y-24 { + top: 6rem; + bottom: 6rem; } -.-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)); +.inset-x-24 { + right: 6rem; + left: 6rem; } -.-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))); +.inset-y-28 { + top: 7rem; + bottom: 7rem; } -.-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)); +.inset-x-28 { + right: 7rem; + left: 7rem; } -.-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))); +.inset-y-32 { + top: 8rem; + bottom: 8rem; } -.-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)); +.inset-x-32 { + right: 8rem; + left: 8rem; } -.-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))); +.inset-y-36 { + top: 9rem; + bottom: 9rem; } -.space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; +.inset-x-36 { + right: 9rem; + left: 9rem; } -.space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; +.inset-y-40 { + top: 10rem; + bottom: 10rem; } -.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)); +.inset-x-40 { + right: 10rem; + left: 10rem; } -.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))); +.inset-y-44 { + top: 11rem; + bottom: 11rem; } -.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)); +.inset-x-44 { + right: 11rem; + left: 11rem; } -.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))); +.inset-y-48 { + top: 12rem; + bottom: 12rem; } -.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)); +.inset-x-48 { + right: 12rem; + left: 12rem; } -.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))); +.inset-y-52 { + top: 13rem; + bottom: 13rem; } -.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)); +.inset-x-52 { + right: 13rem; + left: 13rem; } -.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))); +.inset-y-56 { + top: 14rem; + bottom: 14rem; } -.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)); +.inset-x-56 { + right: 14rem; + left: 14rem; } -.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))); +.inset-y-60 { + top: 15rem; + bottom: 15rem; } -.divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; +.inset-x-60 { + right: 15rem; + left: 15rem; } -.divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; +.inset-y-64 { + top: 16rem; + bottom: 16rem; } -.divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; +.inset-x-64 { + right: 16rem; + left: 16rem; } -.divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; +.inset-y-72 { + top: 18rem; + bottom: 18rem; } -.divide-black > :not([hidden]) ~ :not([hidden]) { - border-color: #000; +.inset-x-72 { + right: 18rem; + left: 18rem; } -.divide-white > :not([hidden]) ~ :not([hidden]) { - border-color: #fff; +.inset-y-80 { + top: 20rem; + bottom: 20rem; } -.divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9fafb; +.inset-x-80 { + right: 20rem; + left: 20rem; } -.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #f3f4f6; +.inset-y-96 { + top: 24rem; + bottom: 24rem; } -.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #e5e7eb; +.inset-x-96 { + right: 24rem; + left: 24rem; } -.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1d5db; +.inset-y-auto { + top: auto; + bottom: auto; } -.divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #9ca3af; +.inset-x-auto { + right: auto; + left: auto; } -.divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6b7280; +.inset-y-px { + top: 1px; + bottom: 1px; } -.divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4b5563; +.inset-x-px { + right: 1px; + left: 1px; } -.divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #374151; +.inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } -.divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1f2937; +.inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } -.divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #111827; +.inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } -.divide-red-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef2f2; +.inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } -.divide-red-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fee2e2; +.inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } -.divide-red-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fecaca; +.inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } -.divide-red-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fca5a5; +.inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } -.divide-red-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f87171; +.inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } -.divide-red-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ef4444; +.-inset-y-0 { + top: 0px; + bottom: 0px; } -.divide-red-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #dc2626; +.-inset-x-0 { + right: 0px; + left: 0px; } -.divide-red-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b91c1c; +.-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } -.divide-red-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #991b1b; +.-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } -.divide-red-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #7f1d1d; +.-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } -.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fffbeb; +.-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } -.divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef3c7; +.-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } -.divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fde68a; +.-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } -.divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fcd34d; +.-inset-y-4 { + top: -1rem; + bottom: -1rem; } -.divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbbf24; +.-inset-x-4 { + right: -1rem; + left: -1rem; } -.divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #f59e0b; +.-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } -.divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #d97706; +.-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } -.divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b45309; +.-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } -.divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #92400e; +.-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } -.divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #78350f; +.-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } -.divide-green-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #ecfdf5; +.-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } -.divide-green-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1fae5; +.-inset-y-8 { + top: -2rem; + bottom: -2rem; } -.divide-green-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #a7f3d0; +.-inset-x-8 { + right: -2rem; + left: -2rem; } -.divide-green-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #6ee7b7; +.-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } -.divide-green-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #34d399; +.-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } -.divide-green-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #10b981; +.-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } -.divide-green-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #059669; +.-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } -.divide-green-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #047857; +.-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } -.divide-green-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #065f46; +.-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } -.divide-green-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #064e3b; +.-inset-y-12 { + top: -3rem; + bottom: -3rem; } -.divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eff6ff; +.-inset-x-12 { + right: -3rem; + left: -3rem; } -.divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #dbeafe; +.-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } -.divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #bfdbfe; +.-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } -.divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #93c5fd; +.-inset-y-16 { + top: -4rem; + bottom: -4rem; } -.divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #60a5fa; +.-inset-x-16 { + right: -4rem; + left: -4rem; } -.divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #3b82f6; +.-inset-y-20 { + top: -5rem; + bottom: -5rem; } -.divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #2563eb; +.-inset-x-20 { + right: -5rem; + left: -5rem; } -.divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #1d4ed8; +.-inset-y-24 { + top: -6rem; + bottom: -6rem; } -.divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e40af; +.-inset-x-24 { + right: -6rem; + left: -6rem; } -.divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e3a8a; +.-inset-y-28 { + top: -7rem; + bottom: -7rem; } -.divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eef2ff; +.-inset-x-28 { + right: -7rem; + left: -7rem; } -.divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #e0e7ff; +.-inset-y-32 { + top: -8rem; + bottom: -8rem; } -.divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #c7d2fe; +.-inset-x-32 { + right: -8rem; + left: -8rem; } -.divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #a5b4fc; +.-inset-y-36 { + top: -9rem; + bottom: -9rem; } -.divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #818cf8; +.-inset-x-36 { + right: -9rem; + left: -9rem; } -.divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6366f1; +.-inset-y-40 { + top: -10rem; + bottom: -10rem; } -.divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4f46e5; +.-inset-x-40 { + right: -10rem; + left: -10rem; } -.divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #4338ca; +.-inset-y-44 { + top: -11rem; + bottom: -11rem; } -.divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #3730a3; +.-inset-x-44 { + right: -11rem; + left: -11rem; } -.divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #312e81; +.-inset-y-48 { + top: -12rem; + bottom: -12rem; } -.divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f5f3ff; +.-inset-x-48 { + right: -12rem; + left: -12rem; } -.divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #ede9fe; +.-inset-y-52 { + top: -13rem; + bottom: -13rem; } -.divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #ddd6fe; +.-inset-x-52 { + right: -13rem; + left: -13rem; } -.divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #c4b5fd; +.-inset-y-56 { + top: -14rem; + bottom: -14rem; } -.divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #a78bfa; +.-inset-x-56 { + right: -14rem; + left: -14rem; } -.divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #8b5cf6; +.-inset-y-60 { + top: -15rem; + bottom: -15rem; } -.divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #7c3aed; +.-inset-x-60 { + right: -15rem; + left: -15rem; } -.divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #6d28d9; +.-inset-y-64 { + top: -16rem; + bottom: -16rem; } -.divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #5b21b6; +.-inset-x-64 { + right: -16rem; + left: -16rem; } -.divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #4c1d95; +.-inset-y-72 { + top: -18rem; + bottom: -18rem; } -.divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fdf2f8; +.-inset-x-72 { + right: -18rem; + left: -18rem; } -.divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fce7f3; +.-inset-y-80 { + top: -20rem; + bottom: -20rem; } -.divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbcfe8; +.-inset-x-80 { + right: -20rem; + left: -20rem; } -.divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9a8d4; +.-inset-y-96 { + top: -24rem; + bottom: -24rem; } -.divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f472b6; +.-inset-x-96 { + right: -24rem; + left: -24rem; } -.divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ec4899; +.-inset-y-px { + top: -1px; + bottom: -1px; } -.divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #db2777; +.-inset-x-px { + right: -1px; + left: -1px; } -.divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #be185d; +.-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } -.divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #9d174d; +.-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } -.divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #831843; +.-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } -.divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; +.-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } -.divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; +.-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } -.divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; +.-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } -.divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; +.-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } -.divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; +.-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; +.inset-y-1\/2 { + top: 50%; + bottom: 50%; } -.not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; +.inset-x-1\/2 { + right: 50%; + left: 50%; } -.focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; +.inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } -.focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; +.inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } -.focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; +.inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } -.focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; +.inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } -.appearance-none { - appearance: none; +.inset-y-1\/4 { + top: 25%; + bottom: 25%; } -.bg-fixed { - background-attachment: fixed; +.inset-x-1\/4 { + right: 25%; + left: 25%; } -.bg-local { - background-attachment: local; +.inset-y-2\/4 { + top: 50%; + bottom: 50%; } -.bg-scroll { - background-attachment: scroll; +.inset-x-2\/4 { + right: 50%; + left: 50%; } -.bg-clip-border { - background-clip: border-box; +.inset-y-3\/4 { + top: 75%; + bottom: 75%; } -.bg-clip-padding { - background-clip: padding-box; +.inset-x-3\/4 { + right: 75%; + left: 75%; } -.bg-clip-content { - background-clip: content-box; +.inset-y-full { + top: 100%; + bottom: 100%; } -.bg-clip-text { - background-clip: text; +.inset-x-full { + right: 100%; + left: 100%; } -.bg-transparent { - background-color: transparent; +.-inset-y-1\/2 { + top: -50%; + bottom: -50%; } -.bg-current { - background-color: currentColor; +.-inset-x-1\/2 { + right: -50%; + left: -50%; } -.bg-black { - background-color: #000; +.-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } -.bg-white { - background-color: #fff; +.-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } -.bg-gray-50 { - background-color: #f9fafb; +.-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } -.bg-gray-100 { - background-color: #f3f4f6; +.-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } -.bg-gray-200 { - background-color: #e5e7eb; +.-inset-y-1\/4 { + top: -25%; + bottom: -25%; } -.bg-gray-300 { - background-color: #d1d5db; +.-inset-x-1\/4 { + right: -25%; + left: -25%; } -.bg-gray-400 { - background-color: #9ca3af; +.-inset-y-2\/4 { + top: -50%; + bottom: -50%; } -.bg-gray-500 { - background-color: #6b7280; +.-inset-x-2\/4 { + right: -50%; + left: -50%; } -.bg-gray-600 { - background-color: #4b5563; +.-inset-y-3\/4 { + top: -75%; + bottom: -75%; } -.bg-gray-700 { - background-color: #374151; +.-inset-x-3\/4 { + right: -75%; + left: -75%; } -.bg-gray-800 { - background-color: #1f2937; +.-inset-y-full { + top: -100%; + bottom: -100%; } -.bg-gray-900 { - background-color: #111827; +.-inset-x-full { + right: -100%; + left: -100%; } -.bg-red-50 { - background-color: #fef2f2; +.top-0 { + top: 0px; } -.bg-red-100 { - background-color: #fee2e2; +.right-0 { + right: 0px; } -.bg-red-200 { - background-color: #fecaca; +.bottom-0 { + bottom: 0px; } -.bg-red-300 { - background-color: #fca5a5; +.left-0 { + left: 0px; } -.bg-red-400 { - background-color: #f87171; +.top-1 { + top: 0.25rem; } -.bg-red-500 { - background-color: #ef4444; +.right-1 { + right: 0.25rem; } -.bg-red-600 { - background-color: #dc2626; +.bottom-1 { + bottom: 0.25rem; } -.bg-red-700 { - background-color: #b91c1c; +.left-1 { + left: 0.25rem; } -.bg-red-800 { - background-color: #991b1b; +.top-2 { + top: 0.5rem; } -.bg-red-900 { - background-color: #7f1d1d; +.right-2 { + right: 0.5rem; } -.bg-yellow-50 { - background-color: #fffbeb; +.bottom-2 { + bottom: 0.5rem; } -.bg-yellow-100 { - background-color: #fef3c7; +.left-2 { + left: 0.5rem; } -.bg-yellow-200 { - background-color: #fde68a; +.top-3 { + top: 0.75rem; } -.bg-yellow-300 { - background-color: #fcd34d; +.right-3 { + right: 0.75rem; } -.bg-yellow-400 { - background-color: #fbbf24; +.bottom-3 { + bottom: 0.75rem; } -.bg-yellow-500 { - background-color: #f59e0b; +.left-3 { + left: 0.75rem; } -.bg-yellow-600 { - background-color: #d97706; +.top-4 { + top: 1rem; } -.bg-yellow-700 { - background-color: #b45309; +.right-4 { + right: 1rem; } -.bg-yellow-800 { - background-color: #92400e; +.bottom-4 { + bottom: 1rem; } -.bg-yellow-900 { - background-color: #78350f; +.left-4 { + left: 1rem; } -.bg-green-50 { - background-color: #ecfdf5; +.top-5 { + top: 1.25rem; } -.bg-green-100 { - background-color: #d1fae5; +.right-5 { + right: 1.25rem; } -.bg-green-200 { - background-color: #a7f3d0; +.bottom-5 { + bottom: 1.25rem; } -.bg-green-300 { - background-color: #6ee7b7; +.left-5 { + left: 1.25rem; } -.bg-green-400 { - background-color: #34d399; +.top-6 { + top: 1.5rem; } -.bg-green-500 { - background-color: #10b981; +.right-6 { + right: 1.5rem; } -.bg-green-600 { - background-color: #059669; +.bottom-6 { + bottom: 1.5rem; } -.bg-green-700 { - background-color: #047857; +.left-6 { + left: 1.5rem; } -.bg-green-800 { - background-color: #065f46; +.top-7 { + top: 1.75rem; } -.bg-green-900 { - background-color: #064e3b; +.right-7 { + right: 1.75rem; } -.bg-blue-50 { - background-color: #eff6ff; +.bottom-7 { + bottom: 1.75rem; } -.bg-blue-100 { - background-color: #dbeafe; +.left-7 { + left: 1.75rem; } -.bg-blue-200 { - background-color: #bfdbfe; +.top-8 { + top: 2rem; } -.bg-blue-300 { - background-color: #93c5fd; +.right-8 { + right: 2rem; } -.bg-blue-400 { - background-color: #60a5fa; +.bottom-8 { + bottom: 2rem; } -.bg-blue-500 { - background-color: #3b82f6; +.left-8 { + left: 2rem; } -.bg-blue-600 { - background-color: #2563eb; +.top-9 { + top: 2.25rem; } -.bg-blue-700 { - background-color: #1d4ed8; +.right-9 { + right: 2.25rem; } -.bg-blue-800 { - background-color: #1e40af; +.bottom-9 { + bottom: 2.25rem; } -.bg-blue-900 { - background-color: #1e3a8a; +.left-9 { + left: 2.25rem; } -.bg-indigo-50 { - background-color: #eef2ff; +.top-10 { + top: 2.5rem; } -.bg-indigo-100 { - background-color: #e0e7ff; +.right-10 { + right: 2.5rem; } -.bg-indigo-200 { - background-color: #c7d2fe; +.bottom-10 { + bottom: 2.5rem; } -.bg-indigo-300 { - background-color: #a5b4fc; +.left-10 { + left: 2.5rem; } -.bg-indigo-400 { - background-color: #818cf8; +.top-11 { + top: 2.75rem; } -.bg-indigo-500 { - background-color: #6366f1; +.right-11 { + right: 2.75rem; } -.bg-indigo-600 { - background-color: #4f46e5; +.bottom-11 { + bottom: 2.75rem; } -.bg-indigo-700 { - background-color: #4338ca; +.left-11 { + left: 2.75rem; } -.bg-indigo-800 { - background-color: #3730a3; +.top-12 { + top: 3rem; } -.bg-indigo-900 { - background-color: #312e81; +.right-12 { + right: 3rem; } -.bg-purple-50 { - background-color: #f5f3ff; +.bottom-12 { + bottom: 3rem; } -.bg-purple-100 { - background-color: #ede9fe; +.left-12 { + left: 3rem; } -.bg-purple-200 { - background-color: #ddd6fe; +.top-14 { + top: 3.5rem; } -.bg-purple-300 { - background-color: #c4b5fd; +.right-14 { + right: 3.5rem; } -.bg-purple-400 { - background-color: #a78bfa; +.bottom-14 { + bottom: 3.5rem; } -.bg-purple-500 { - background-color: #8b5cf6; +.left-14 { + left: 3.5rem; } -.bg-purple-600 { - background-color: #7c3aed; +.top-16 { + top: 4rem; } -.bg-purple-700 { - background-color: #6d28d9; +.right-16 { + right: 4rem; } -.bg-purple-800 { - background-color: #5b21b6; +.bottom-16 { + bottom: 4rem; } -.bg-purple-900 { - background-color: #4c1d95; +.left-16 { + left: 4rem; } -.bg-pink-50 { - background-color: #fdf2f8; +.top-20 { + top: 5rem; } -.bg-pink-100 { - background-color: #fce7f3; +.right-20 { + right: 5rem; } -.bg-pink-200 { - background-color: #fbcfe8; +.bottom-20 { + bottom: 5rem; } -.bg-pink-300 { - background-color: #f9a8d4; +.left-20 { + left: 5rem; } -.bg-pink-400 { - background-color: #f472b6; +.top-24 { + top: 6rem; } -.bg-pink-500 { - background-color: #ec4899; +.right-24 { + right: 6rem; } -.bg-pink-600 { - background-color: #db2777; +.bottom-24 { + bottom: 6rem; } -.bg-pink-700 { - background-color: #be185d; +.left-24 { + left: 6rem; } -.bg-pink-800 { - background-color: #9d174d; +.top-28 { + top: 7rem; } -.bg-pink-900 { - background-color: #831843; +.right-28 { + right: 7rem; } -.group:hover .group-hover\:bg-transparent { - background-color: transparent; +.bottom-28 { + bottom: 7rem; } -.group:hover .group-hover\:bg-current { - background-color: currentColor; +.left-28 { + left: 7rem; } -.group:hover .group-hover\:bg-black { - background-color: #000; +.top-32 { + top: 8rem; } -.group:hover .group-hover\:bg-white { - background-color: #fff; +.right-32 { + right: 8rem; } -.group:hover .group-hover\:bg-gray-50 { - background-color: #f9fafb; +.bottom-32 { + bottom: 8rem; } -.group:hover .group-hover\:bg-gray-100 { - background-color: #f3f4f6; +.left-32 { + left: 8rem; } -.group:hover .group-hover\:bg-gray-200 { - background-color: #e5e7eb; +.top-36 { + top: 9rem; } -.group:hover .group-hover\:bg-gray-300 { - background-color: #d1d5db; +.right-36 { + right: 9rem; } -.group:hover .group-hover\:bg-gray-400 { - background-color: #9ca3af; +.bottom-36 { + bottom: 9rem; } -.group:hover .group-hover\:bg-gray-500 { - background-color: #6b7280; +.left-36 { + left: 9rem; } -.group:hover .group-hover\:bg-gray-600 { - background-color: #4b5563; +.top-40 { + top: 10rem; } -.group:hover .group-hover\:bg-gray-700 { - background-color: #374151; +.right-40 { + right: 10rem; } -.group:hover .group-hover\:bg-gray-800 { - background-color: #1f2937; +.bottom-40 { + bottom: 10rem; } -.group:hover .group-hover\:bg-gray-900 { - background-color: #111827; +.left-40 { + left: 10rem; } -.group:hover .group-hover\:bg-red-50 { - background-color: #fef2f2; +.top-44 { + top: 11rem; } -.group:hover .group-hover\:bg-red-100 { - background-color: #fee2e2; +.right-44 { + right: 11rem; } -.group:hover .group-hover\:bg-red-200 { - background-color: #fecaca; +.bottom-44 { + bottom: 11rem; } -.group:hover .group-hover\:bg-red-300 { - background-color: #fca5a5; +.left-44 { + left: 11rem; } -.group:hover .group-hover\:bg-red-400 { - background-color: #f87171; +.top-48 { + top: 12rem; } -.group:hover .group-hover\:bg-red-500 { - background-color: #ef4444; +.right-48 { + right: 12rem; } -.group:hover .group-hover\:bg-red-600 { - background-color: #dc2626; +.bottom-48 { + bottom: 12rem; } -.group:hover .group-hover\:bg-red-700 { - background-color: #b91c1c; +.left-48 { + left: 12rem; } -.group:hover .group-hover\:bg-red-800 { - background-color: #991b1b; +.top-52 { + top: 13rem; } -.group:hover .group-hover\:bg-red-900 { - background-color: #7f1d1d; +.right-52 { + right: 13rem; } -.group:hover .group-hover\:bg-yellow-50 { - background-color: #fffbeb; +.bottom-52 { + bottom: 13rem; } -.group:hover .group-hover\:bg-yellow-100 { - background-color: #fef3c7; +.left-52 { + left: 13rem; } -.group:hover .group-hover\:bg-yellow-200 { - background-color: #fde68a; +.top-56 { + top: 14rem; } -.group:hover .group-hover\:bg-yellow-300 { - background-color: #fcd34d; +.right-56 { + right: 14rem; } -.group:hover .group-hover\:bg-yellow-400 { - background-color: #fbbf24; +.bottom-56 { + bottom: 14rem; } -.group:hover .group-hover\:bg-yellow-500 { - background-color: #f59e0b; +.left-56 { + left: 14rem; } -.group:hover .group-hover\:bg-yellow-600 { - background-color: #d97706; +.top-60 { + top: 15rem; } -.group:hover .group-hover\:bg-yellow-700 { - background-color: #b45309; +.right-60 { + right: 15rem; } -.group:hover .group-hover\:bg-yellow-800 { - background-color: #92400e; +.bottom-60 { + bottom: 15rem; } -.group:hover .group-hover\:bg-yellow-900 { - background-color: #78350f; +.left-60 { + left: 15rem; } -.group:hover .group-hover\:bg-green-50 { - background-color: #ecfdf5; +.top-64 { + top: 16rem; } -.group:hover .group-hover\:bg-green-100 { - background-color: #d1fae5; +.right-64 { + right: 16rem; } -.group:hover .group-hover\:bg-green-200 { - background-color: #a7f3d0; +.bottom-64 { + bottom: 16rem; } -.group:hover .group-hover\:bg-green-300 { - background-color: #6ee7b7; +.left-64 { + left: 16rem; } -.group:hover .group-hover\:bg-green-400 { - background-color: #34d399; +.top-72 { + top: 18rem; } -.group:hover .group-hover\:bg-green-500 { - background-color: #10b981; +.right-72 { + right: 18rem; } -.group:hover .group-hover\:bg-green-600 { - background-color: #059669; +.bottom-72 { + bottom: 18rem; } -.group:hover .group-hover\:bg-green-700 { - background-color: #047857; +.left-72 { + left: 18rem; } -.group:hover .group-hover\:bg-green-800 { - background-color: #065f46; +.top-80 { + top: 20rem; } -.group:hover .group-hover\:bg-green-900 { - background-color: #064e3b; +.right-80 { + right: 20rem; } -.group:hover .group-hover\:bg-blue-50 { - background-color: #eff6ff; +.bottom-80 { + bottom: 20rem; } -.group:hover .group-hover\:bg-blue-100 { - background-color: #dbeafe; +.left-80 { + left: 20rem; } -.group:hover .group-hover\:bg-blue-200 { - background-color: #bfdbfe; +.top-96 { + top: 24rem; } -.group:hover .group-hover\:bg-blue-300 { - background-color: #93c5fd; +.right-96 { + right: 24rem; } -.group:hover .group-hover\:bg-blue-400 { - background-color: #60a5fa; +.bottom-96 { + bottom: 24rem; } -.group:hover .group-hover\:bg-blue-500 { - background-color: #3b82f6; +.left-96 { + left: 24rem; } -.group:hover .group-hover\:bg-blue-600 { - background-color: #2563eb; +.top-auto { + top: auto; } -.group:hover .group-hover\:bg-blue-700 { - background-color: #1d4ed8; +.right-auto { + right: auto; } -.group:hover .group-hover\:bg-blue-800 { - background-color: #1e40af; +.bottom-auto { + bottom: auto; } -.group:hover .group-hover\:bg-blue-900 { - background-color: #1e3a8a; +.left-auto { + left: auto; } -.group:hover .group-hover\:bg-indigo-50 { - background-color: #eef2ff; +.top-px { + top: 1px; } -.group:hover .group-hover\:bg-indigo-100 { - background-color: #e0e7ff; +.right-px { + right: 1px; } -.group:hover .group-hover\:bg-indigo-200 { - background-color: #c7d2fe; +.bottom-px { + bottom: 1px; } -.group:hover .group-hover\:bg-indigo-300 { - background-color: #a5b4fc; +.left-px { + left: 1px; } -.group:hover .group-hover\:bg-indigo-400 { - background-color: #818cf8; +.top-0\.5 { + top: 0.125rem; } -.group:hover .group-hover\:bg-indigo-500 { - background-color: #6366f1; +.right-0\.5 { + right: 0.125rem; } -.group:hover .group-hover\:bg-indigo-600 { - background-color: #4f46e5; +.bottom-0\.5 { + bottom: 0.125rem; } -.group:hover .group-hover\:bg-indigo-700 { - background-color: #4338ca; +.left-0\.5 { + left: 0.125rem; } -.group:hover .group-hover\:bg-indigo-800 { - background-color: #3730a3; +.top-1\.5 { + top: 0.375rem; } -.group:hover .group-hover\:bg-indigo-900 { - background-color: #312e81; +.right-1\.5 { + right: 0.375rem; } -.group:hover .group-hover\:bg-purple-50 { - background-color: #f5f3ff; +.bottom-1\.5 { + bottom: 0.375rem; } -.group:hover .group-hover\:bg-purple-100 { - background-color: #ede9fe; +.left-1\.5 { + left: 0.375rem; } -.group:hover .group-hover\:bg-purple-200 { - background-color: #ddd6fe; +.top-2\.5 { + top: 0.625rem; } -.group:hover .group-hover\:bg-purple-300 { - background-color: #c4b5fd; +.right-2\.5 { + right: 0.625rem; } -.group:hover .group-hover\:bg-purple-400 { - background-color: #a78bfa; +.bottom-2\.5 { + bottom: 0.625rem; } -.group:hover .group-hover\:bg-purple-500 { - background-color: #8b5cf6; +.left-2\.5 { + left: 0.625rem; } -.group:hover .group-hover\:bg-purple-600 { - background-color: #7c3aed; +.top-3\.5 { + top: 0.875rem; } -.group:hover .group-hover\:bg-purple-700 { - background-color: #6d28d9; +.right-3\.5 { + right: 0.875rem; } -.group:hover .group-hover\:bg-purple-800 { - background-color: #5b21b6; +.bottom-3\.5 { + bottom: 0.875rem; } -.group:hover .group-hover\:bg-purple-900 { - background-color: #4c1d95; +.left-3\.5 { + left: 0.875rem; } -.group:hover .group-hover\:bg-pink-50 { - background-color: #fdf2f8; +.-top-0 { + top: 0px; } -.group:hover .group-hover\:bg-pink-100 { - background-color: #fce7f3; +.-right-0 { + right: 0px; } -.group:hover .group-hover\:bg-pink-200 { - background-color: #fbcfe8; +.-bottom-0 { + bottom: 0px; } -.group:hover .group-hover\:bg-pink-300 { - background-color: #f9a8d4; +.-left-0 { + left: 0px; } -.group:hover .group-hover\:bg-pink-400 { - background-color: #f472b6; +.-top-1 { + top: -0.25rem; } -.group:hover .group-hover\:bg-pink-500 { - background-color: #ec4899; +.-right-1 { + right: -0.25rem; } -.group:hover .group-hover\:bg-pink-600 { - background-color: #db2777; +.-bottom-1 { + bottom: -0.25rem; } -.group:hover .group-hover\:bg-pink-700 { - background-color: #be185d; +.-left-1 { + left: -0.25rem; } -.group:hover .group-hover\:bg-pink-800 { - background-color: #9d174d; +.-top-2 { + top: -0.5rem; } -.group:hover .group-hover\:bg-pink-900 { - background-color: #831843; +.-right-2 { + right: -0.5rem; } -.focus-within\:bg-transparent:focus-within { - background-color: transparent; +.-bottom-2 { + bottom: -0.5rem; } -.focus-within\:bg-current:focus-within { - background-color: currentColor; +.-left-2 { + left: -0.5rem; } -.focus-within\:bg-black:focus-within { - background-color: #000; +.-top-3 { + top: -0.75rem; } -.focus-within\:bg-white:focus-within { - background-color: #fff; +.-right-3 { + right: -0.75rem; } -.focus-within\:bg-gray-50:focus-within { - background-color: #f9fafb; +.-bottom-3 { + bottom: -0.75rem; } -.focus-within\:bg-gray-100:focus-within { - background-color: #f3f4f6; +.-left-3 { + left: -0.75rem; } -.focus-within\:bg-gray-200:focus-within { - background-color: #e5e7eb; +.-top-4 { + top: -1rem; } -.focus-within\:bg-gray-300:focus-within { - background-color: #d1d5db; +.-right-4 { + right: -1rem; } -.focus-within\:bg-gray-400:focus-within { - background-color: #9ca3af; +.-bottom-4 { + bottom: -1rem; } -.focus-within\:bg-gray-500:focus-within { - background-color: #6b7280; +.-left-4 { + left: -1rem; } -.focus-within\:bg-gray-600:focus-within { - background-color: #4b5563; +.-top-5 { + top: -1.25rem; } -.focus-within\:bg-gray-700:focus-within { - background-color: #374151; +.-right-5 { + right: -1.25rem; } -.focus-within\:bg-gray-800:focus-within { - background-color: #1f2937; +.-bottom-5 { + bottom: -1.25rem; } -.focus-within\:bg-gray-900:focus-within { - background-color: #111827; +.-left-5 { + left: -1.25rem; } -.focus-within\:bg-red-50:focus-within { - background-color: #fef2f2; +.-top-6 { + top: -1.5rem; } -.focus-within\:bg-red-100:focus-within { - background-color: #fee2e2; +.-right-6 { + right: -1.5rem; } -.focus-within\:bg-red-200:focus-within { - background-color: #fecaca; +.-bottom-6 { + bottom: -1.5rem; } -.focus-within\:bg-red-300:focus-within { - background-color: #fca5a5; +.-left-6 { + left: -1.5rem; } -.focus-within\:bg-red-400:focus-within { - background-color: #f87171; +.-top-7 { + top: -1.75rem; } -.focus-within\:bg-red-500:focus-within { - background-color: #ef4444; +.-right-7 { + right: -1.75rem; } -.focus-within\:bg-red-600:focus-within { - background-color: #dc2626; +.-bottom-7 { + bottom: -1.75rem; } -.focus-within\:bg-red-700:focus-within { - background-color: #b91c1c; +.-left-7 { + left: -1.75rem; } -.focus-within\:bg-red-800:focus-within { - background-color: #991b1b; +.-top-8 { + top: -2rem; } -.focus-within\:bg-red-900:focus-within { - background-color: #7f1d1d; +.-right-8 { + right: -2rem; } -.focus-within\:bg-yellow-50:focus-within { - background-color: #fffbeb; +.-bottom-8 { + bottom: -2rem; } -.focus-within\:bg-yellow-100:focus-within { - background-color: #fef3c7; +.-left-8 { + left: -2rem; } -.focus-within\:bg-yellow-200:focus-within { - background-color: #fde68a; +.-top-9 { + top: -2.25rem; } -.focus-within\:bg-yellow-300:focus-within { - background-color: #fcd34d; +.-right-9 { + right: -2.25rem; } -.focus-within\:bg-yellow-400:focus-within { - background-color: #fbbf24; +.-bottom-9 { + bottom: -2.25rem; } -.focus-within\:bg-yellow-500:focus-within { - background-color: #f59e0b; +.-left-9 { + left: -2.25rem; } -.focus-within\:bg-yellow-600:focus-within { - background-color: #d97706; +.-top-10 { + top: -2.5rem; } -.focus-within\:bg-yellow-700:focus-within { - background-color: #b45309; +.-right-10 { + right: -2.5rem; } -.focus-within\:bg-yellow-800:focus-within { - background-color: #92400e; +.-bottom-10 { + bottom: -2.5rem; } -.focus-within\:bg-yellow-900:focus-within { - background-color: #78350f; +.-left-10 { + left: -2.5rem; } -.focus-within\:bg-green-50:focus-within { - background-color: #ecfdf5; +.-top-11 { + top: -2.75rem; } -.focus-within\:bg-green-100:focus-within { - background-color: #d1fae5; +.-right-11 { + right: -2.75rem; } -.focus-within\:bg-green-200:focus-within { - background-color: #a7f3d0; +.-bottom-11 { + bottom: -2.75rem; } -.focus-within\:bg-green-300:focus-within { - background-color: #6ee7b7; +.-left-11 { + left: -2.75rem; } -.focus-within\:bg-green-400:focus-within { - background-color: #34d399; +.-top-12 { + top: -3rem; } -.focus-within\:bg-green-500:focus-within { - background-color: #10b981; +.-right-12 { + right: -3rem; } -.focus-within\:bg-green-600:focus-within { - background-color: #059669; +.-bottom-12 { + bottom: -3rem; } -.focus-within\:bg-green-700:focus-within { - background-color: #047857; +.-left-12 { + left: -3rem; } -.focus-within\:bg-green-800:focus-within { - background-color: #065f46; +.-top-14 { + top: -3.5rem; } -.focus-within\:bg-green-900:focus-within { - background-color: #064e3b; +.-right-14 { + right: -3.5rem; } -.focus-within\:bg-blue-50:focus-within { - background-color: #eff6ff; +.-bottom-14 { + bottom: -3.5rem; } -.focus-within\:bg-blue-100:focus-within { - background-color: #dbeafe; +.-left-14 { + left: -3.5rem; } -.focus-within\:bg-blue-200:focus-within { - background-color: #bfdbfe; +.-top-16 { + top: -4rem; } -.focus-within\:bg-blue-300:focus-within { - background-color: #93c5fd; +.-right-16 { + right: -4rem; } -.focus-within\:bg-blue-400:focus-within { - background-color: #60a5fa; +.-bottom-16 { + bottom: -4rem; } -.focus-within\:bg-blue-500:focus-within { - background-color: #3b82f6; +.-left-16 { + left: -4rem; } -.focus-within\:bg-blue-600:focus-within { - background-color: #2563eb; +.-top-20 { + top: -5rem; } -.focus-within\:bg-blue-700:focus-within { - background-color: #1d4ed8; +.-right-20 { + right: -5rem; } -.focus-within\:bg-blue-800:focus-within { - background-color: #1e40af; +.-bottom-20 { + bottom: -5rem; } -.focus-within\:bg-blue-900:focus-within { - background-color: #1e3a8a; +.-left-20 { + left: -5rem; } -.focus-within\:bg-indigo-50:focus-within { - background-color: #eef2ff; +.-top-24 { + top: -6rem; } -.focus-within\:bg-indigo-100:focus-within { - background-color: #e0e7ff; +.-right-24 { + right: -6rem; } -.focus-within\:bg-indigo-200:focus-within { - background-color: #c7d2fe; +.-bottom-24 { + bottom: -6rem; } -.focus-within\:bg-indigo-300:focus-within { - background-color: #a5b4fc; +.-left-24 { + left: -6rem; } -.focus-within\:bg-indigo-400:focus-within { - background-color: #818cf8; +.-top-28 { + top: -7rem; } -.focus-within\:bg-indigo-500:focus-within { - background-color: #6366f1; +.-right-28 { + right: -7rem; } -.focus-within\:bg-indigo-600:focus-within { - background-color: #4f46e5; +.-bottom-28 { + bottom: -7rem; } -.focus-within\:bg-indigo-700:focus-within { - background-color: #4338ca; +.-left-28 { + left: -7rem; } -.focus-within\:bg-indigo-800:focus-within { - background-color: #3730a3; +.-top-32 { + top: -8rem; } -.focus-within\:bg-indigo-900:focus-within { - background-color: #312e81; +.-right-32 { + right: -8rem; } -.focus-within\:bg-purple-50:focus-within { - background-color: #f5f3ff; +.-bottom-32 { + bottom: -8rem; } -.focus-within\:bg-purple-100:focus-within { - background-color: #ede9fe; +.-left-32 { + left: -8rem; } -.focus-within\:bg-purple-200:focus-within { - background-color: #ddd6fe; +.-top-36 { + top: -9rem; } -.focus-within\:bg-purple-300:focus-within { - background-color: #c4b5fd; +.-right-36 { + right: -9rem; } -.focus-within\:bg-purple-400:focus-within { - background-color: #a78bfa; +.-bottom-36 { + bottom: -9rem; } -.focus-within\:bg-purple-500:focus-within { - background-color: #8b5cf6; +.-left-36 { + left: -9rem; } -.focus-within\:bg-purple-600:focus-within { - background-color: #7c3aed; +.-top-40 { + top: -10rem; } -.focus-within\:bg-purple-700:focus-within { - background-color: #6d28d9; +.-right-40 { + right: -10rem; } -.focus-within\:bg-purple-800:focus-within { - background-color: #5b21b6; +.-bottom-40 { + bottom: -10rem; } -.focus-within\:bg-purple-900:focus-within { - background-color: #4c1d95; +.-left-40 { + left: -10rem; } -.focus-within\:bg-pink-50:focus-within { - background-color: #fdf2f8; +.-top-44 { + top: -11rem; } -.focus-within\:bg-pink-100:focus-within { - background-color: #fce7f3; +.-right-44 { + right: -11rem; } -.focus-within\:bg-pink-200:focus-within { - background-color: #fbcfe8; +.-bottom-44 { + bottom: -11rem; } -.focus-within\:bg-pink-300:focus-within { - background-color: #f9a8d4; +.-left-44 { + left: -11rem; } -.focus-within\:bg-pink-400:focus-within { - background-color: #f472b6; +.-top-48 { + top: -12rem; } -.focus-within\:bg-pink-500:focus-within { - background-color: #ec4899; +.-right-48 { + right: -12rem; } -.focus-within\:bg-pink-600:focus-within { - background-color: #db2777; +.-bottom-48 { + bottom: -12rem; } -.focus-within\:bg-pink-700:focus-within { - background-color: #be185d; +.-left-48 { + left: -12rem; } -.focus-within\:bg-pink-800:focus-within { - background-color: #9d174d; +.-top-52 { + top: -13rem; } -.focus-within\:bg-pink-900:focus-within { - background-color: #831843; +.-right-52 { + right: -13rem; } -.hover\:bg-transparent:hover { - background-color: transparent; +.-bottom-52 { + bottom: -13rem; } -.hover\:bg-current:hover { - background-color: currentColor; +.-left-52 { + left: -13rem; } -.hover\:bg-black:hover { - background-color: #000; +.-top-56 { + top: -14rem; } -.hover\:bg-white:hover { - background-color: #fff; +.-right-56 { + right: -14rem; } -.hover\:bg-gray-50:hover { - background-color: #f9fafb; +.-bottom-56 { + bottom: -14rem; } -.hover\:bg-gray-100:hover { - background-color: #f3f4f6; +.-left-56 { + left: -14rem; } -.hover\:bg-gray-200:hover { - background-color: #e5e7eb; +.-top-60 { + top: -15rem; } -.hover\:bg-gray-300:hover { - background-color: #d1d5db; +.-right-60 { + right: -15rem; } -.hover\:bg-gray-400:hover { - background-color: #9ca3af; +.-bottom-60 { + bottom: -15rem; } -.hover\:bg-gray-500:hover { - background-color: #6b7280; +.-left-60 { + left: -15rem; } -.hover\:bg-gray-600:hover { - background-color: #4b5563; +.-top-64 { + top: -16rem; } -.hover\:bg-gray-700:hover { - background-color: #374151; +.-right-64 { + right: -16rem; } -.hover\:bg-gray-800:hover { - background-color: #1f2937; +.-bottom-64 { + bottom: -16rem; } -.hover\:bg-gray-900:hover { - background-color: #111827; +.-left-64 { + left: -16rem; } -.hover\:bg-red-50:hover { - background-color: #fef2f2; +.-top-72 { + top: -18rem; } -.hover\:bg-red-100:hover { - background-color: #fee2e2; +.-right-72 { + right: -18rem; } -.hover\:bg-red-200:hover { - background-color: #fecaca; +.-bottom-72 { + bottom: -18rem; } -.hover\:bg-red-300:hover { - background-color: #fca5a5; +.-left-72 { + left: -18rem; } -.hover\:bg-red-400:hover { - background-color: #f87171; +.-top-80 { + top: -20rem; } -.hover\:bg-red-500:hover { - background-color: #ef4444; +.-right-80 { + right: -20rem; } -.hover\:bg-red-600:hover { - background-color: #dc2626; +.-bottom-80 { + bottom: -20rem; } -.hover\:bg-red-700:hover { - background-color: #b91c1c; +.-left-80 { + left: -20rem; } -.hover\:bg-red-800:hover { - background-color: #991b1b; +.-top-96 { + top: -24rem; } -.hover\:bg-red-900:hover { - background-color: #7f1d1d; +.-right-96 { + right: -24rem; } -.hover\:bg-yellow-50:hover { - background-color: #fffbeb; +.-bottom-96 { + bottom: -24rem; } -.hover\:bg-yellow-100:hover { - background-color: #fef3c7; +.-left-96 { + left: -24rem; } -.hover\:bg-yellow-200:hover { - background-color: #fde68a; +.-top-px { + top: -1px; } -.hover\:bg-yellow-300:hover { - background-color: #fcd34d; +.-right-px { + right: -1px; } -.hover\:bg-yellow-400:hover { - background-color: #fbbf24; +.-bottom-px { + bottom: -1px; } -.hover\:bg-yellow-500:hover { - background-color: #f59e0b; +.-left-px { + left: -1px; } -.hover\:bg-yellow-600:hover { - background-color: #d97706; +.-top-0\.5 { + top: -0.125rem; } -.hover\:bg-yellow-700:hover { - background-color: #b45309; +.-right-0\.5 { + right: -0.125rem; } -.hover\:bg-yellow-800:hover { - background-color: #92400e; +.-bottom-0\.5 { + bottom: -0.125rem; } -.hover\:bg-yellow-900:hover { - background-color: #78350f; +.-left-0\.5 { + left: -0.125rem; } -.hover\:bg-green-50:hover { - background-color: #ecfdf5; +.-top-1\.5 { + top: -0.375rem; } -.hover\:bg-green-100:hover { - background-color: #d1fae5; +.-right-1\.5 { + right: -0.375rem; } -.hover\:bg-green-200:hover { - background-color: #a7f3d0; +.-bottom-1\.5 { + bottom: -0.375rem; } -.hover\:bg-green-300:hover { - background-color: #6ee7b7; +.-left-1\.5 { + left: -0.375rem; } -.hover\:bg-green-400:hover { - background-color: #34d399; +.-top-2\.5 { + top: -0.625rem; } -.hover\:bg-green-500:hover { - background-color: #10b981; +.-right-2\.5 { + right: -0.625rem; } -.hover\:bg-green-600:hover { - background-color: #059669; +.-bottom-2\.5 { + bottom: -0.625rem; } -.hover\:bg-green-700:hover { - background-color: #047857; +.-left-2\.5 { + left: -0.625rem; } -.hover\:bg-green-800:hover { - background-color: #065f46; +.-top-3\.5 { + top: -0.875rem; } -.hover\:bg-green-900:hover { - background-color: #064e3b; +.-right-3\.5 { + right: -0.875rem; } -.hover\:bg-blue-50:hover { - background-color: #eff6ff; +.-bottom-3\.5 { + bottom: -0.875rem; } -.hover\:bg-blue-100:hover { - background-color: #dbeafe; +.-left-3\.5 { + left: -0.875rem; } -.hover\:bg-blue-200:hover { - background-color: #bfdbfe; +.top-1\/2 { + top: 50%; } -.hover\:bg-blue-300:hover { - background-color: #93c5fd; +.right-1\/2 { + right: 50%; } -.hover\:bg-blue-400:hover { - background-color: #60a5fa; +.bottom-1\/2 { + bottom: 50%; } -.hover\:bg-blue-500:hover { - background-color: #3b82f6; +.left-1\/2 { + left: 50%; } -.hover\:bg-blue-600:hover { - background-color: #2563eb; +.top-1\/3 { + top: 33.333333%; } -.hover\:bg-blue-700:hover { - background-color: #1d4ed8; +.right-1\/3 { + right: 33.333333%; } -.hover\:bg-blue-800:hover { - background-color: #1e40af; +.bottom-1\/3 { + bottom: 33.333333%; } -.hover\:bg-blue-900:hover { - background-color: #1e3a8a; +.left-1\/3 { + left: 33.333333%; } -.hover\:bg-indigo-50:hover { - background-color: #eef2ff; +.top-2\/3 { + top: 66.666667%; } -.hover\:bg-indigo-100:hover { - background-color: #e0e7ff; +.right-2\/3 { + right: 66.666667%; } -.hover\:bg-indigo-200:hover { - background-color: #c7d2fe; +.bottom-2\/3 { + bottom: 66.666667%; } -.hover\:bg-indigo-300:hover { - background-color: #a5b4fc; +.left-2\/3 { + left: 66.666667%; } -.hover\:bg-indigo-400:hover { - background-color: #818cf8; +.top-1\/4 { + top: 25%; } -.hover\:bg-indigo-500:hover { - background-color: #6366f1; +.right-1\/4 { + right: 25%; } -.hover\:bg-indigo-600:hover { - background-color: #4f46e5; +.bottom-1\/4 { + bottom: 25%; } -.hover\:bg-indigo-700:hover { - background-color: #4338ca; +.left-1\/4 { + left: 25%; } -.hover\:bg-indigo-800:hover { - background-color: #3730a3; +.top-2\/4 { + top: 50%; } -.hover\:bg-indigo-900:hover { - background-color: #312e81; +.right-2\/4 { + right: 50%; } -.hover\:bg-purple-50:hover { - background-color: #f5f3ff; +.bottom-2\/4 { + bottom: 50%; } -.hover\:bg-purple-100:hover { - background-color: #ede9fe; +.left-2\/4 { + left: 50%; } -.hover\:bg-purple-200:hover { - background-color: #ddd6fe; +.top-3\/4 { + top: 75%; } -.hover\:bg-purple-300:hover { - background-color: #c4b5fd; +.right-3\/4 { + right: 75%; } -.hover\:bg-purple-400:hover { - background-color: #a78bfa; +.bottom-3\/4 { + bottom: 75%; } -.hover\:bg-purple-500:hover { - background-color: #8b5cf6; +.left-3\/4 { + left: 75%; } -.hover\:bg-purple-600:hover { - background-color: #7c3aed; +.top-full { + top: 100%; } -.hover\:bg-purple-700:hover { - background-color: #6d28d9; +.right-full { + right: 100%; } -.hover\:bg-purple-800:hover { - background-color: #5b21b6; +.bottom-full { + bottom: 100%; } -.hover\:bg-purple-900:hover { - background-color: #4c1d95; +.left-full { + left: 100%; } -.hover\:bg-pink-50:hover { - background-color: #fdf2f8; +.-top-1\/2 { + top: -50%; } -.hover\:bg-pink-100:hover { - background-color: #fce7f3; +.-right-1\/2 { + right: -50%; } -.hover\:bg-pink-200:hover { - background-color: #fbcfe8; +.-bottom-1\/2 { + bottom: -50%; } -.hover\:bg-pink-300:hover { - background-color: #f9a8d4; +.-left-1\/2 { + left: -50%; } -.hover\:bg-pink-400:hover { - background-color: #f472b6; +.-top-1\/3 { + top: -33.333333%; } -.hover\:bg-pink-500:hover { - background-color: #ec4899; +.-right-1\/3 { + right: -33.333333%; } -.hover\:bg-pink-600:hover { - background-color: #db2777; +.-bottom-1\/3 { + bottom: -33.333333%; } -.hover\:bg-pink-700:hover { - background-color: #be185d; +.-left-1\/3 { + left: -33.333333%; } -.hover\:bg-pink-800:hover { - background-color: #9d174d; +.-top-2\/3 { + top: -66.666667%; } -.hover\:bg-pink-900:hover { - background-color: #831843; +.-right-2\/3 { + right: -66.666667%; } -.focus\:bg-transparent:focus { - background-color: transparent; +.-bottom-2\/3 { + bottom: -66.666667%; } -.focus\:bg-current:focus { - background-color: currentColor; +.-left-2\/3 { + left: -66.666667%; } -.focus\:bg-black:focus { - background-color: #000; +.-top-1\/4 { + top: -25%; } -.focus\:bg-white:focus { - background-color: #fff; +.-right-1\/4 { + right: -25%; } -.focus\:bg-gray-50:focus { - background-color: #f9fafb; +.-bottom-1\/4 { + bottom: -25%; } -.focus\:bg-gray-100:focus { - background-color: #f3f4f6; +.-left-1\/4 { + left: -25%; } -.focus\:bg-gray-200:focus { - background-color: #e5e7eb; +.-top-2\/4 { + top: -50%; } -.focus\:bg-gray-300:focus { - background-color: #d1d5db; +.-right-2\/4 { + right: -50%; } -.focus\:bg-gray-400:focus { - background-color: #9ca3af; +.-bottom-2\/4 { + bottom: -50%; } -.focus\:bg-gray-500:focus { - background-color: #6b7280; +.-left-2\/4 { + left: -50%; } -.focus\:bg-gray-600:focus { - background-color: #4b5563; +.-top-3\/4 { + top: -75%; } -.focus\:bg-gray-700:focus { - background-color: #374151; +.-right-3\/4 { + right: -75%; } -.focus\:bg-gray-800:focus { - background-color: #1f2937; +.-bottom-3\/4 { + bottom: -75%; } -.focus\:bg-gray-900:focus { - background-color: #111827; +.-left-3\/4 { + left: -75%; } -.focus\:bg-red-50:focus { - background-color: #fef2f2; +.-top-full { + top: -100%; } -.focus\:bg-red-100:focus { - background-color: #fee2e2; +.-right-full { + right: -100%; } -.focus\:bg-red-200:focus { - background-color: #fecaca; +.-bottom-full { + bottom: -100%; } -.focus\:bg-red-300:focus { - background-color: #fca5a5; +.-left-full { + left: -100%; } -.focus\:bg-red-400:focus { - background-color: #f87171; +.isolate { + isolation: isolate; } -.focus\:bg-red-500:focus { - background-color: #ef4444; +.isolation-auto { + isolation: auto; } -.focus\:bg-red-600:focus { - background-color: #dc2626; +.z-0 { + z-index: 0; } -.focus\:bg-red-700:focus { - background-color: #b91c1c; +.z-10 { + z-index: 10; } -.focus\:bg-red-800:focus { - background-color: #991b1b; +.z-20 { + z-index: 20; } -.focus\:bg-red-900:focus { - background-color: #7f1d1d; +.z-30 { + z-index: 30; } -.focus\:bg-yellow-50:focus { - background-color: #fffbeb; +.z-40 { + z-index: 40; } -.focus\:bg-yellow-100:focus { - background-color: #fef3c7; +.z-50 { + z-index: 50; } -.focus\:bg-yellow-200:focus { - background-color: #fde68a; +.z-auto { + z-index: auto; } -.focus\:bg-yellow-300:focus { - background-color: #fcd34d; +.focus-within\:z-0:focus-within { + z-index: 0; } -.focus\:bg-yellow-400:focus { - background-color: #fbbf24; +.focus-within\:z-10:focus-within { + z-index: 10; } -.focus\:bg-yellow-500:focus { - background-color: #f59e0b; +.focus-within\:z-20:focus-within { + z-index: 20; } -.focus\:bg-yellow-600:focus { - background-color: #d97706; +.focus-within\:z-30:focus-within { + z-index: 30; } -.focus\:bg-yellow-700:focus { - background-color: #b45309; +.focus-within\:z-40:focus-within { + z-index: 40; } -.focus\:bg-yellow-800:focus { - background-color: #92400e; +.focus-within\:z-50:focus-within { + z-index: 50; } -.focus\:bg-yellow-900:focus { - background-color: #78350f; +.focus-within\:z-auto:focus-within { + z-index: auto; } -.focus\:bg-green-50:focus { - background-color: #ecfdf5; +.focus\:z-0:focus { + z-index: 0; } -.focus\:bg-green-100:focus { - background-color: #d1fae5; +.focus\:z-10:focus { + z-index: 10; } -.focus\:bg-green-200:focus { - background-color: #a7f3d0; +.focus\:z-20:focus { + z-index: 20; } -.focus\:bg-green-300:focus { - background-color: #6ee7b7; +.focus\:z-30:focus { + z-index: 30; } -.focus\:bg-green-400:focus { - background-color: #34d399; +.focus\:z-40:focus { + z-index: 40; } -.focus\:bg-green-500:focus { - background-color: #10b981; +.focus\:z-50:focus { + z-index: 50; } -.focus\:bg-green-600:focus { - background-color: #059669; +.focus\:z-auto:focus { + z-index: auto; } -.focus\:bg-green-700:focus { - background-color: #047857; +.order-1 { + order: 1; } -.focus\:bg-green-800:focus { - background-color: #065f46; +.order-2 { + order: 2; } -.focus\:bg-green-900:focus { - background-color: #064e3b; +.order-3 { + order: 3; } -.focus\:bg-blue-50:focus { - background-color: #eff6ff; +.order-4 { + order: 4; } -.focus\:bg-blue-100:focus { - background-color: #dbeafe; +.order-5 { + order: 5; } -.focus\:bg-blue-200:focus { - background-color: #bfdbfe; +.order-6 { + order: 6; } -.focus\:bg-blue-300:focus { - background-color: #93c5fd; +.order-7 { + order: 7; } -.focus\:bg-blue-400:focus { - background-color: #60a5fa; +.order-8 { + order: 8; } -.focus\:bg-blue-500:focus { - background-color: #3b82f6; +.order-9 { + order: 9; } -.focus\:bg-blue-600:focus { - background-color: #2563eb; +.order-10 { + order: 10; } -.focus\:bg-blue-700:focus { - background-color: #1d4ed8; +.order-11 { + order: 11; } -.focus\:bg-blue-800:focus { - background-color: #1e40af; +.order-12 { + order: 12; } -.focus\:bg-blue-900:focus { - background-color: #1e3a8a; +.order-first { + order: -9999; } -.focus\:bg-indigo-50:focus { - background-color: #eef2ff; +.order-last { + order: 9999; } -.focus\:bg-indigo-100:focus { - background-color: #e0e7ff; +.order-none { + order: 0; } -.focus\:bg-indigo-200:focus { - background-color: #c7d2fe; +.col-auto { + grid-column: auto; } -.focus\:bg-indigo-300:focus { - background-color: #a5b4fc; +.col-span-1 { + grid-column: span 1 / span 1; } -.focus\:bg-indigo-400:focus { - background-color: #818cf8; +.col-span-2 { + grid-column: span 2 / span 2; } -.focus\:bg-indigo-500:focus { - background-color: #6366f1; +.col-span-3 { + grid-column: span 3 / span 3; } -.focus\:bg-indigo-600:focus { - background-color: #4f46e5; +.col-span-4 { + grid-column: span 4 / span 4; } -.focus\:bg-indigo-700:focus { - background-color: #4338ca; +.col-span-5 { + grid-column: span 5 / span 5; } -.focus\:bg-indigo-800:focus { - background-color: #3730a3; +.col-span-6 { + grid-column: span 6 / span 6; } -.focus\:bg-indigo-900:focus { - background-color: #312e81; +.col-span-7 { + grid-column: span 7 / span 7; } -.focus\:bg-purple-50:focus { - background-color: #f5f3ff; +.col-span-8 { + grid-column: span 8 / span 8; } -.focus\:bg-purple-100:focus { - background-color: #ede9fe; +.col-span-9 { + grid-column: span 9 / span 9; } -.focus\:bg-purple-200:focus { - background-color: #ddd6fe; +.col-span-10 { + grid-column: span 10 / span 10; } -.focus\:bg-purple-300:focus { - background-color: #c4b5fd; +.col-span-11 { + grid-column: span 11 / span 11; } -.focus\:bg-purple-400:focus { - background-color: #a78bfa; +.col-span-12 { + grid-column: span 12 / span 12; } -.focus\:bg-purple-500:focus { - background-color: #8b5cf6; +.col-span-full { + grid-column: 1 / -1; } -.focus\:bg-purple-600:focus { - background-color: #7c3aed; +.col-start-1 { + grid-column-start: 1; } -.focus\:bg-purple-700:focus { - background-color: #6d28d9; +.col-start-2 { + grid-column-start: 2; } -.focus\:bg-purple-800:focus { - background-color: #5b21b6; +.col-start-3 { + grid-column-start: 3; } -.focus\:bg-purple-900:focus { - background-color: #4c1d95; +.col-start-4 { + grid-column-start: 4; } -.focus\:bg-pink-50:focus { - background-color: #fdf2f8; +.col-start-5 { + grid-column-start: 5; } -.focus\:bg-pink-100:focus { - background-color: #fce7f3; +.col-start-6 { + grid-column-start: 6; } -.focus\:bg-pink-200:focus { - background-color: #fbcfe8; +.col-start-7 { + grid-column-start: 7; } -.focus\:bg-pink-300:focus { - background-color: #f9a8d4; +.col-start-8 { + grid-column-start: 8; } -.focus\:bg-pink-400:focus { - background-color: #f472b6; +.col-start-9 { + grid-column-start: 9; } -.focus\:bg-pink-500:focus { - background-color: #ec4899; +.col-start-10 { + grid-column-start: 10; } -.focus\:bg-pink-600:focus { - background-color: #db2777; +.col-start-11 { + grid-column-start: 11; } -.focus\:bg-pink-700:focus { - background-color: #be185d; +.col-start-12 { + grid-column-start: 12; } -.focus\:bg-pink-800:focus { - background-color: #9d174d; +.col-start-13 { + grid-column-start: 13; } -.focus\:bg-pink-900:focus { - background-color: #831843; +.col-start-auto { + grid-column-start: auto; } -.bg-none { - background-image: none; +.col-end-1 { + grid-column-end: 1; } -.bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); +.col-end-2 { + grid-column-end: 2; } -.bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); +.col-end-3 { + grid-column-end: 3; } -.bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); +.col-end-4 { + grid-column-end: 4; } -.bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); +.col-end-5 { + grid-column-end: 5; } -.bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); +.col-end-6 { + grid-column-end: 6; } -.bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); +.col-end-7 { + grid-column-end: 7; } -.bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); +.col-end-8 { + grid-column-end: 8; } -.bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); +.col-end-9 { + grid-column-end: 9; } -.from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.col-end-10 { + grid-column-end: 10; } -.from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.col-end-11 { + grid-column-end: 11; } -.from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.col-end-12 { + grid-column-end: 12; } -.from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.col-end-13 { + grid-column-end: 13; } -.from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.col-end-auto { + grid-column-end: auto; } -.from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.row-auto { + grid-row: auto; } -.from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.row-span-1 { + grid-row: span 1 / span 1; } -.from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.row-span-2 { + grid-row: span 2 / span 2; } -.from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.row-span-3 { + grid-row: span 3 / span 3; } -.from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.row-span-4 { + grid-row: span 4 / span 4; } -.from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.row-span-5 { + grid-row: span 5 / span 5; } -.from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.row-span-6 { + grid-row: span 6 / span 6; } -.from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.row-span-full { + grid-row: 1 / -1; } -.from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.row-start-1 { + grid-row-start: 1; } -.from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.row-start-2 { + grid-row-start: 2; } -.from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.row-start-3 { + grid-row-start: 3; } -.from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.row-start-4 { + grid-row-start: 4; } -.from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.row-start-5 { + grid-row-start: 5; } -.from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.row-start-6 { + grid-row-start: 6; } -.from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.row-start-7 { + grid-row-start: 7; } -.from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.row-start-auto { + grid-row-start: auto; } -.from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.row-end-1 { + grid-row-end: 1; } -.from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.row-end-2 { + grid-row-end: 2; } -.from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.row-end-3 { + grid-row-end: 3; } -.from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.row-end-4 { + grid-row-end: 4; } -.from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.row-end-5 { + grid-row-end: 5; } -.from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.row-end-6 { + grid-row-end: 6; } -.from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.row-end-7 { + grid-row-end: 7; } -.from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.row-end-auto { + grid-row-end: auto; } -.from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.float-right { + float: right; } -.from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.float-left { + float: left; } -.from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.float-none { + float: none; } -.from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.clear-left { + clear: left; } -.from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.clear-right { + clear: right; } -.from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.clear-both { + clear: both; } -.from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.clear-none { + clear: none; } -.from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.m-0 { + margin: 0px; } -.from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.m-1 { + margin: 0.25rem; } -.from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.m-2 { + margin: 0.5rem; } -.from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.m-3 { + margin: 0.75rem; } -.from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.m-4 { + margin: 1rem; } -.from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.m-5 { + margin: 1.25rem; } -.from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.m-6 { + margin: 1.5rem; } -.from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.m-7 { + margin: 1.75rem; } -.from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.m-8 { + margin: 2rem; } -.from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.m-9 { + margin: 2.25rem; } -.from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.m-10 { + margin: 2.5rem; } -.from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.m-11 { + margin: 2.75rem; } -.from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.m-12 { + margin: 3rem; } -.from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.m-14 { + margin: 3.5rem; } -.from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.m-16 { + margin: 4rem; } -.from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.m-20 { + margin: 5rem; } -.from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.m-24 { + margin: 6rem; } -.from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.m-28 { + margin: 7rem; } -.from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.m-32 { + margin: 8rem; } -.from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.m-36 { + margin: 9rem; } -.from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.m-40 { + margin: 10rem; } -.from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.m-44 { + margin: 11rem; } -.from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.m-48 { + margin: 12rem; } -.from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.m-52 { + margin: 13rem; } -.from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.m-56 { + margin: 14rem; } -.from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.m-60 { + margin: 15rem; } -.from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.m-64 { + margin: 16rem; } -.from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.m-72 { + margin: 18rem; } -.from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.m-80 { + margin: 20rem; } -.from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.m-96 { + margin: 24rem; } -.from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.m-auto { + margin: auto; } -.from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.m-px { + margin: 1px; } -.from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.m-0\.5 { + margin: 0.125rem; } -.from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.m-1\.5 { + margin: 0.375rem; } -.from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.m-2\.5 { + margin: 0.625rem; } -.from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.m-3\.5 { + margin: 0.875rem; } -.from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.-m-0 { + margin: 0px; } -.from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.-m-1 { + margin: -0.25rem; } -.from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.-m-2 { + margin: -0.5rem; } -.from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.-m-3 { + margin: -0.75rem; } -.from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.-m-4 { + margin: -1rem; } -.from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.-m-5 { + margin: -1.25rem; } -.from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.-m-6 { + margin: -1.5rem; } -.from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.-m-7 { + margin: -1.75rem; } -.from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.-m-8 { + margin: -2rem; } -.from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.-m-9 { + margin: -2.25rem; } -.from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.-m-10 { + margin: -2.5rem; } -.from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.-m-11 { + margin: -2.75rem; } -.via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-m-12 { + margin: -3rem; } -.via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-m-14 { + margin: -3.5rem; } -.via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-m-16 { + margin: -4rem; } -.via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-m-20 { + margin: -5rem; } -.via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.-m-24 { + margin: -6rem; } -.via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.-m-28 { + margin: -7rem; } -.via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.-m-32 { + margin: -8rem; } -.via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.-m-36 { + margin: -9rem; } -.via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.-m-40 { + margin: -10rem; } -.via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.-m-44 { + margin: -11rem; } -.via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.-m-48 { + margin: -12rem; } -.via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.-m-52 { + margin: -13rem; } -.via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.-m-56 { + margin: -14rem; } -.via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.-m-60 { + margin: -15rem; } -.via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.-m-64 { + margin: -16rem; } -.via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.-m-72 { + margin: -18rem; } -.via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.-m-80 { + margin: -20rem; } -.via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.-m-96 { + margin: -24rem; } -.via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.-m-px { + margin: -1px; } -.via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.-m-0\.5 { + margin: -0.125rem; } -.via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.-m-1\.5 { + margin: -0.375rem; } -.via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.-m-2\.5 { + margin: -0.625rem; } -.via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.-m-3\.5 { + margin: -0.875rem; } -.via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.mx-0 { + margin-left: 0px; + margin-right: 0px; } -.via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } -.via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } -.via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } -.via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.mx-4 { + margin-left: 1rem; + margin-right: 1rem; } -.via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } -.via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } -.via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } -.via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.mx-8 { + margin-left: 2rem; + margin-right: 2rem; } -.via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } -.via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } -.via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } -.via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.mx-12 { + margin-left: 3rem; + margin-right: 3rem; } -.via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } -.via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.mx-16 { + margin-left: 4rem; + margin-right: 4rem; } -.via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.mx-20 { + margin-left: 5rem; + margin-right: 5rem; } -.via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.mx-24 { + margin-left: 6rem; + margin-right: 6rem; } -.via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.mx-28 { + margin-left: 7rem; + margin-right: 7rem; } -.via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.mx-32 { + margin-left: 8rem; + margin-right: 8rem; } -.via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.mx-36 { + margin-left: 9rem; + margin-right: 9rem; } -.via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.mx-40 { + margin-left: 10rem; + margin-right: 10rem; } -.via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.mx-44 { + margin-left: 11rem; + margin-right: 11rem; } -.via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.mx-48 { + margin-left: 12rem; + margin-right: 12rem; } -.via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.mx-52 { + margin-left: 13rem; + margin-right: 13rem; } -.via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.mx-56 { + margin-left: 14rem; + margin-right: 14rem; } -.via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.mx-60 { + margin-left: 15rem; + margin-right: 15rem; } -.via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.mx-64 { + margin-left: 16rem; + margin-right: 16rem; } -.via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.mx-72 { + margin-left: 18rem; + margin-right: 18rem; } -.via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.mx-80 { + margin-left: 20rem; + margin-right: 20rem; } -.via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.mx-96 { + margin-left: 24rem; + margin-right: 24rem; } -.via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.mx-auto { + margin-left: auto; + margin-right: auto; } -.via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.mx-px { + margin-left: 1px; + margin-right: 1px; } -.via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } -.via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } -.via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } -.via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } -.via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.-mx-0 { + margin-left: 0px; + margin-right: 0px; } -.via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } -.via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } -.via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } -.via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } -.via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } -.via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } -.via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } -.via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } -.via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } -.via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } -.via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } -.via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } -.via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } -.via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } -.via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } -.via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } -.via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } -.via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } -.via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } -.via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } -.via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } -.via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } -.via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } -.via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } -.to-transparent { - --tw-gradient-to: transparent; +.-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } -.to-current { - --tw-gradient-to: currentColor; +.-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } -.to-black { - --tw-gradient-to: #000; +.-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } -.to-white { - --tw-gradient-to: #fff; +.-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } -.to-gray-50 { - --tw-gradient-to: #f9fafb; +.-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } -.to-gray-100 { - --tw-gradient-to: #f3f4f6; +.-mx-px { + margin-left: -1px; + margin-right: -1px; } -.to-gray-200 { - --tw-gradient-to: #e5e7eb; +.-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } -.to-gray-300 { - --tw-gradient-to: #d1d5db; +.-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } -.to-gray-400 { - --tw-gradient-to: #9ca3af; +.-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } -.to-gray-500 { - --tw-gradient-to: #6b7280; +.-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } -.to-gray-600 { - --tw-gradient-to: #4b5563; +.my-0 { + margin-top: 0px; + margin-bottom: 0px; } -.to-gray-700 { - --tw-gradient-to: #374151; +.my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } -.to-gray-800 { - --tw-gradient-to: #1f2937; +.my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } -.to-gray-900 { - --tw-gradient-to: #111827; +.my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } -.to-red-50 { - --tw-gradient-to: #fef2f2; +.my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } -.to-red-100 { - --tw-gradient-to: #fee2e2; +.my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } -.to-red-200 { - --tw-gradient-to: #fecaca; +.my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } -.to-red-300 { - --tw-gradient-to: #fca5a5; +.my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } -.to-red-400 { - --tw-gradient-to: #f87171; +.my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } -.to-red-500 { - --tw-gradient-to: #ef4444; +.my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } -.to-red-600 { - --tw-gradient-to: #dc2626; +.my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } -.to-red-700 { - --tw-gradient-to: #b91c1c; +.my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } -.to-red-800 { - --tw-gradient-to: #991b1b; +.my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } -.to-red-900 { - --tw-gradient-to: #7f1d1d; +.my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } -.to-yellow-50 { - --tw-gradient-to: #fffbeb; +.my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } -.to-yellow-100 { - --tw-gradient-to: #fef3c7; +.my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } -.to-yellow-200 { - --tw-gradient-to: #fde68a; +.my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } -.to-yellow-300 { - --tw-gradient-to: #fcd34d; +.my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } -.to-yellow-400 { - --tw-gradient-to: #fbbf24; +.my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } -.to-yellow-500 { - --tw-gradient-to: #f59e0b; +.my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } -.to-yellow-600 { - --tw-gradient-to: #d97706; +.my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } -.to-yellow-700 { - --tw-gradient-to: #b45309; +.my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } -.to-yellow-800 { - --tw-gradient-to: #92400e; +.my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } -.to-yellow-900 { - --tw-gradient-to: #78350f; +.my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } -.to-green-50 { - --tw-gradient-to: #ecfdf5; +.my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } -.to-green-100 { - --tw-gradient-to: #d1fae5; +.my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } -.to-green-200 { - --tw-gradient-to: #a7f3d0; +.my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } -.to-green-300 { - --tw-gradient-to: #6ee7b7; +.my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } -.to-green-400 { - --tw-gradient-to: #34d399; +.my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } -.to-green-500 { - --tw-gradient-to: #10b981; +.my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } -.to-green-600 { - --tw-gradient-to: #059669; +.my-auto { + margin-top: auto; + margin-bottom: auto; } -.to-green-700 { - --tw-gradient-to: #047857; +.my-px { + margin-top: 1px; + margin-bottom: 1px; } -.to-green-800 { - --tw-gradient-to: #065f46; +.my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } -.to-green-900 { - --tw-gradient-to: #064e3b; +.my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } -.to-blue-50 { - --tw-gradient-to: #eff6ff; +.my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } -.to-blue-100 { - --tw-gradient-to: #dbeafe; +.my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } -.to-blue-200 { - --tw-gradient-to: #bfdbfe; +.-my-0 { + margin-top: 0px; + margin-bottom: 0px; } -.to-blue-300 { - --tw-gradient-to: #93c5fd; +.-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } -.to-blue-400 { - --tw-gradient-to: #60a5fa; +.-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } -.to-blue-500 { - --tw-gradient-to: #3b82f6; +.-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } -.to-blue-600 { - --tw-gradient-to: #2563eb; +.-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } -.to-blue-700 { - --tw-gradient-to: #1d4ed8; +.-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } -.to-blue-800 { - --tw-gradient-to: #1e40af; +.-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } -.to-blue-900 { - --tw-gradient-to: #1e3a8a; +.-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } -.to-indigo-50 { - --tw-gradient-to: #eef2ff; +.-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } -.to-indigo-100 { - --tw-gradient-to: #e0e7ff; +.-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } -.to-indigo-200 { - --tw-gradient-to: #c7d2fe; +.-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } -.to-indigo-300 { - --tw-gradient-to: #a5b4fc; +.-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } -.to-indigo-400 { - --tw-gradient-to: #818cf8; +.-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } -.to-indigo-500 { - --tw-gradient-to: #6366f1; +.-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } -.to-indigo-600 { - --tw-gradient-to: #4f46e5; +.-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } -.to-indigo-700 { - --tw-gradient-to: #4338ca; +.-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } -.to-indigo-800 { - --tw-gradient-to: #3730a3; +.-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } -.to-indigo-900 { - --tw-gradient-to: #312e81; +.-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } -.to-purple-50 { - --tw-gradient-to: #f5f3ff; +.-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } -.to-purple-100 { - --tw-gradient-to: #ede9fe; +.-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } -.to-purple-200 { - --tw-gradient-to: #ddd6fe; +.-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } -.to-purple-300 { - --tw-gradient-to: #c4b5fd; +.-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } -.to-purple-400 { - --tw-gradient-to: #a78bfa; +.-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } -.to-purple-500 { - --tw-gradient-to: #8b5cf6; +.-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } -.to-purple-600 { - --tw-gradient-to: #7c3aed; +.-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } -.to-purple-700 { - --tw-gradient-to: #6d28d9; +.-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } -.to-purple-800 { - --tw-gradient-to: #5b21b6; +.-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } -.to-purple-900 { - --tw-gradient-to: #4c1d95; +.-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } -.to-pink-50 { - --tw-gradient-to: #fdf2f8; +.-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } -.to-pink-100 { - --tw-gradient-to: #fce7f3; +.-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } -.to-pink-200 { - --tw-gradient-to: #fbcfe8; +.-my-px { + margin-top: -1px; + margin-bottom: -1px; } -.to-pink-300 { - --tw-gradient-to: #f9a8d4; +.-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } -.to-pink-400 { - --tw-gradient-to: #f472b6; +.-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } -.to-pink-500 { - --tw-gradient-to: #ec4899; +.-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } -.to-pink-600 { - --tw-gradient-to: #db2777; +.-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } -.to-pink-700 { - --tw-gradient-to: #be185d; +.mt-0 { + margin-top: 0px; } -.to-pink-800 { - --tw-gradient-to: #9d174d; +.mt-1 { + margin-top: 0.25rem; } -.to-pink-900 { - --tw-gradient-to: #831843; +.mt-2 { + margin-top: 0.5rem; } -.hover\:from-transparent:hover { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mt-3 { + margin-top: 0.75rem; } -.hover\:from-current:hover { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mt-4 { + margin-top: 1rem; } -.hover\:from-black:hover { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mt-5 { + margin-top: 1.25rem; } -.hover\:from-white:hover { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mt-6 { + margin-top: 1.5rem; } -.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)); +.mt-7 { + margin-top: 1.75rem; } -.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)); +.mt-8 { + margin-top: 2rem; } -.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)); +.mt-9 { + margin-top: 2.25rem; } -.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)); +.mt-10 { + margin-top: 2.5rem; } -.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)); +.mt-11 { + margin-top: 2.75rem; } -.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)); +.mt-12 { + margin-top: 3rem; } -.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)); +.mt-14 { + margin-top: 3.5rem; } -.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)); +.mt-16 { + margin-top: 4rem; } -.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)); +.mt-20 { + margin-top: 5rem; } -.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)); +.mt-24 { + margin-top: 6rem; } -.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)); +.mt-28 { + margin-top: 7rem; } -.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)); +.mt-32 { + margin-top: 8rem; } -.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)); +.mt-36 { + margin-top: 9rem; } -.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)); +.mt-40 { + margin-top: 10rem; } -.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)); +.mt-44 { + margin-top: 11rem; } -.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)); +.mt-48 { + margin-top: 12rem; } -.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)); +.mt-52 { + margin-top: 13rem; } -.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)); +.mt-56 { + margin-top: 14rem; } -.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)); +.mt-60 { + margin-top: 15rem; } -.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)); +.mt-64 { + margin-top: 16rem; } -.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)); +.mt-72 { + margin-top: 18rem; } -.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)); +.mt-80 { + margin-top: 20rem; } -.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)); +.mt-96 { + margin-top: 24rem; } -.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)); +.mt-auto { + margin-top: auto; } -.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)); +.mt-px { + margin-top: 1px; } -.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)); +.mt-0\.5 { + margin-top: 0.125rem; } -.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)); +.mt-1\.5 { + margin-top: 0.375rem; } -.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)); +.mt-2\.5 { + margin-top: 0.625rem; } -.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)); +.mt-3\.5 { + margin-top: 0.875rem; } -.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)); +.-mt-0 { + margin-top: 0px; } -.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)); +.-mt-1 { + margin-top: -0.25rem; } -.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)); +.-mt-2 { + margin-top: -0.5rem; } -.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)); +.-mt-3 { + margin-top: -0.75rem; } -.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)); +.-mt-4 { + margin-top: -1rem; } -.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)); +.-mt-5 { + margin-top: -1.25rem; } -.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)); +.-mt-6 { + margin-top: -1.5rem; } -.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)); +.-mt-7 { + margin-top: -1.75rem; } -.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)); +.-mt-8 { + margin-top: -2rem; } -.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)); +.-mt-9 { + margin-top: -2.25rem; } -.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)); +.-mt-10 { + margin-top: -2.5rem; } -.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)); +.-mt-11 { + margin-top: -2.75rem; } -.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)); +.-mt-12 { + margin-top: -3rem; } -.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)); +.-mt-14 { + margin-top: -3.5rem; } -.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)); +.-mt-16 { + margin-top: -4rem; } -.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)); +.-mt-20 { + margin-top: -5rem; } -.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)); +.-mt-24 { + margin-top: -6rem; } -.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)); +.-mt-28 { + margin-top: -7rem; } -.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)); +.-mt-32 { + margin-top: -8rem; } -.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)); +.-mt-36 { + margin-top: -9rem; } -.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)); +.-mt-40 { + margin-top: -10rem; } -.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)); +.-mt-44 { + margin-top: -11rem; } -.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)); +.-mt-48 { + margin-top: -12rem; } -.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)); +.-mt-52 { + margin-top: -13rem; } -.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)); +.-mt-56 { + margin-top: -14rem; } -.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)); +.-mt-60 { + margin-top: -15rem; } -.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)); +.-mt-64 { + margin-top: -16rem; } -.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)); +.-mt-72 { + margin-top: -18rem; } -.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)); +.-mt-80 { + margin-top: -20rem; } -.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)); +.-mt-96 { + margin-top: -24rem; } -.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)); +.-mt-px { + margin-top: -1px; } -.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)); +.-mt-0\.5 { + margin-top: -0.125rem; } -.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)); +.-mt-1\.5 { + margin-top: -0.375rem; } -.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)); +.-mt-2\.5 { + margin-top: -0.625rem; } -.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)); +.-mt-3\.5 { + margin-top: -0.875rem; } -.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)); +.mr-0 { + margin-right: 0px; } -.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)); +.mr-1 { + margin-right: 0.25rem; } -.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)); +.mr-2 { + margin-right: 0.5rem; } -.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)); +.mr-3 { + margin-right: 0.75rem; } -.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)); +.mr-4 { + margin-right: 1rem; } -.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)); +.mr-5 { + margin-right: 1.25rem; } -.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)); +.mr-6 { + margin-right: 1.5rem; } -.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)); +.mr-7 { + margin-right: 1.75rem; } -.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)); +.mr-8 { + margin-right: 2rem; } -.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)); +.mr-9 { + margin-right: 2.25rem; } -.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)); +.mr-10 { + margin-right: 2.5rem; } -.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)); +.mr-11 { + margin-right: 2.75rem; } -.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)); +.mr-12 { + margin-right: 3rem; } -.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)); +.mr-14 { + margin-right: 3.5rem; } -.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)); +.mr-16 { + margin-right: 4rem; } -.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)); +.mr-20 { + margin-right: 5rem; } -.hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mr-24 { + margin-right: 6rem; } -.hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mr-28 { + margin-right: 7rem; } -.hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mr-32 { + margin-right: 8rem; } -.hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mr-36 { + margin-right: 9rem; } -.hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.mr-40 { + margin-right: 10rem; } -.hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.mr-44 { + margin-right: 11rem; } -.hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.mr-48 { + margin-right: 12rem; } -.hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.mr-52 { + margin-right: 13rem; } -.hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.mr-56 { + margin-right: 14rem; } -.hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.mr-60 { + margin-right: 15rem; } -.hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.mr-64 { + margin-right: 16rem; } -.hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.mr-72 { + margin-right: 18rem; } -.hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.mr-80 { + margin-right: 20rem; } -.hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.mr-96 { + margin-right: 24rem; } -.hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.mr-auto { + margin-right: auto; } -.hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.mr-px { + margin-right: 1px; } -.hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.mr-0\.5 { + margin-right: 0.125rem; } -.hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.mr-1\.5 { + margin-right: 0.375rem; } -.hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.mr-2\.5 { + margin-right: 0.625rem; } -.hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.mr-3\.5 { + margin-right: 0.875rem; } -.hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.-mr-0 { + margin-right: 0px; } -.hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.-mr-1 { + margin-right: -0.25rem; } -.hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.-mr-2 { + margin-right: -0.5rem; } -.hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.-mr-3 { + margin-right: -0.75rem; } -.hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.-mr-4 { + margin-right: -1rem; } -.hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.-mr-5 { + margin-right: -1.25rem; } -.hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.-mr-6 { + margin-right: -1.5rem; } -.hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.-mr-7 { + margin-right: -1.75rem; } -.hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.-mr-8 { + margin-right: -2rem; } -.hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.-mr-9 { + margin-right: -2.25rem; } -.hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.-mr-10 { + margin-right: -2.5rem; } -.hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.-mr-11 { + margin-right: -2.75rem; } -.hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.-mr-12 { + margin-right: -3rem; } -.hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.-mr-14 { + margin-right: -3.5rem; } -.hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.-mr-16 { + margin-right: -4rem; } -.hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.-mr-20 { + margin-right: -5rem; } -.hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.-mr-24 { + margin-right: -6rem; } -.hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.-mr-28 { + margin-right: -7rem; } -.hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.-mr-32 { + margin-right: -8rem; } -.hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.-mr-36 { + margin-right: -9rem; } -.hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.-mr-40 { + margin-right: -10rem; } -.hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.-mr-44 { + margin-right: -11rem; } -.hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.-mr-48 { + margin-right: -12rem; } -.hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.-mr-52 { + margin-right: -13rem; } -.hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.-mr-56 { + margin-right: -14rem; } -.hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.-mr-60 { + margin-right: -15rem; } -.hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.-mr-64 { + margin-right: -16rem; } -.hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.-mr-72 { + margin-right: -18rem; } -.hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.-mr-80 { + margin-right: -20rem; } -.hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.-mr-96 { + margin-right: -24rem; } -.hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.-mr-px { + margin-right: -1px; } -.hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.-mr-0\.5 { + margin-right: -0.125rem; } -.hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.-mr-1\.5 { + margin-right: -0.375rem; } -.hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.-mr-2\.5 { + margin-right: -0.625rem; } -.hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.-mr-3\.5 { + margin-right: -0.875rem; } -.hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.mb-0 { + margin-bottom: 0px; } -.hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.mb-1 { + margin-bottom: 0.25rem; } -.hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.mb-2 { + margin-bottom: 0.5rem; } -.hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.mb-3 { + margin-bottom: 0.75rem; } -.hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.mb-4 { + margin-bottom: 1rem; } -.hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.mb-5 { + margin-bottom: 1.25rem; } -.hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.mb-6 { + margin-bottom: 1.5rem; } -.hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.mb-7 { + margin-bottom: 1.75rem; } -.hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.mb-8 { + margin-bottom: 2rem; } -.hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.mb-9 { + margin-bottom: 2.25rem; } -.hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.mb-10 { + margin-bottom: 2.5rem; } -.hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.mb-11 { + margin-bottom: 2.75rem; } -.hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.mb-12 { + margin-bottom: 3rem; } -.hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.mb-14 { + margin-bottom: 3.5rem; } -.hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.mb-16 { + margin-bottom: 4rem; } -.hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.mb-20 { + margin-bottom: 5rem; } -.hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.mb-24 { + margin-bottom: 6rem; } -.hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.mb-28 { + margin-bottom: 7rem; } -.hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.mb-32 { + margin-bottom: 8rem; } -.hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.mb-36 { + margin-bottom: 9rem; } -.hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.mb-40 { + margin-bottom: 10rem; } -.hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.mb-44 { + margin-bottom: 11rem; } -.hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.mb-48 { + margin-bottom: 12rem; } -.hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.mb-52 { + margin-bottom: 13rem; } -.hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.mb-56 { + margin-bottom: 14rem; } -.hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.mb-60 { + margin-bottom: 15rem; } -.hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.mb-64 { + margin-bottom: 16rem; } -.hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.mb-72 { + margin-bottom: 18rem; } -.hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.mb-80 { + margin-bottom: 20rem; } -.hover\:to-transparent:hover { - --tw-gradient-to: transparent; +.mb-96 { + margin-bottom: 24rem; } -.hover\:to-current:hover { - --tw-gradient-to: currentColor; +.mb-auto { + margin-bottom: auto; } -.hover\:to-black:hover { - --tw-gradient-to: #000; +.mb-px { + margin-bottom: 1px; } -.hover\:to-white:hover { - --tw-gradient-to: #fff; +.mb-0\.5 { + margin-bottom: 0.125rem; } -.hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; +.mb-1\.5 { + margin-bottom: 0.375rem; } -.hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; +.mb-2\.5 { + margin-bottom: 0.625rem; } -.hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; +.mb-3\.5 { + margin-bottom: 0.875rem; } -.hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; +.-mb-0 { + margin-bottom: 0px; } -.hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; +.-mb-1 { + margin-bottom: -0.25rem; } -.hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; +.-mb-2 { + margin-bottom: -0.5rem; } -.hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; +.-mb-3 { + margin-bottom: -0.75rem; } -.hover\:to-gray-700:hover { - --tw-gradient-to: #374151; +.-mb-4 { + margin-bottom: -1rem; } -.hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; +.-mb-5 { + margin-bottom: -1.25rem; } -.hover\:to-gray-900:hover { - --tw-gradient-to: #111827; +.-mb-6 { + margin-bottom: -1.5rem; } -.hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; +.-mb-7 { + margin-bottom: -1.75rem; } -.hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; +.-mb-8 { + margin-bottom: -2rem; } -.hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; +.-mb-9 { + margin-bottom: -2.25rem; } -.hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; +.-mb-10 { + margin-bottom: -2.5rem; } -.hover\:to-red-400:hover { - --tw-gradient-to: #f87171; +.-mb-11 { + margin-bottom: -2.75rem; } -.hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; +.-mb-12 { + margin-bottom: -3rem; } -.hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; +.-mb-14 { + margin-bottom: -3.5rem; } -.hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; +.-mb-16 { + margin-bottom: -4rem; } -.hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; +.-mb-20 { + margin-bottom: -5rem; } -.hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; +.-mb-24 { + margin-bottom: -6rem; } -.hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; +.-mb-28 { + margin-bottom: -7rem; } -.hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; +.-mb-32 { + margin-bottom: -8rem; } -.hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; +.-mb-36 { + margin-bottom: -9rem; } -.hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; +.-mb-40 { + margin-bottom: -10rem; } -.hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; +.-mb-44 { + margin-bottom: -11rem; } -.hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; +.-mb-48 { + margin-bottom: -12rem; } -.hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; +.-mb-52 { + margin-bottom: -13rem; } -.hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; +.-mb-56 { + margin-bottom: -14rem; } -.hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; +.-mb-60 { + margin-bottom: -15rem; } -.hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; +.-mb-64 { + margin-bottom: -16rem; } -.hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; +.-mb-72 { + margin-bottom: -18rem; } -.hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; +.-mb-80 { + margin-bottom: -20rem; } -.hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; +.-mb-96 { + margin-bottom: -24rem; } -.hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; +.-mb-px { + margin-bottom: -1px; } -.hover\:to-green-400:hover { - --tw-gradient-to: #34d399; +.-mb-0\.5 { + margin-bottom: -0.125rem; } -.hover\:to-green-500:hover { - --tw-gradient-to: #10b981; +.-mb-1\.5 { + margin-bottom: -0.375rem; } -.hover\:to-green-600:hover { - --tw-gradient-to: #059669; +.-mb-2\.5 { + margin-bottom: -0.625rem; } -.hover\:to-green-700:hover { - --tw-gradient-to: #047857; +.-mb-3\.5 { + margin-bottom: -0.875rem; } -.hover\:to-green-800:hover { - --tw-gradient-to: #065f46; +.ml-0 { + margin-left: 0px; } -.hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; +.ml-1 { + margin-left: 0.25rem; } -.hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; +.ml-2 { + margin-left: 0.5rem; } -.hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; +.ml-3 { + margin-left: 0.75rem; } -.hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; +.ml-4 { + margin-left: 1rem; } -.hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; +.ml-5 { + margin-left: 1.25rem; } -.hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; +.ml-6 { + margin-left: 1.5rem; } -.hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; +.ml-7 { + margin-left: 1.75rem; } -.hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; +.ml-8 { + margin-left: 2rem; } -.hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; +.ml-9 { + margin-left: 2.25rem; } -.hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; +.ml-10 { + margin-left: 2.5rem; } -.hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; +.ml-11 { + margin-left: 2.75rem; } -.hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; +.ml-12 { + margin-left: 3rem; } -.hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; +.ml-14 { + margin-left: 3.5rem; } -.hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; +.ml-16 { + margin-left: 4rem; } -.hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; +.ml-20 { + margin-left: 5rem; } -.hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; +.ml-24 { + margin-left: 6rem; } -.hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; +.ml-28 { + margin-left: 7rem; } -.hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; +.ml-32 { + margin-left: 8rem; } -.hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; +.ml-36 { + margin-left: 9rem; } -.hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; +.ml-40 { + margin-left: 10rem; } -.hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; +.ml-44 { + margin-left: 11rem; } -.hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; +.ml-48 { + margin-left: 12rem; } -.hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; +.ml-52 { + margin-left: 13rem; } -.hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; +.ml-56 { + margin-left: 14rem; } -.hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; +.ml-60 { + margin-left: 15rem; } -.hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; +.ml-64 { + margin-left: 16rem; } -.hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; +.ml-72 { + margin-left: 18rem; } -.hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; +.ml-80 { + margin-left: 20rem; } -.hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; +.ml-96 { + margin-left: 24rem; } -.hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; +.ml-auto { + margin-left: auto; } -.hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; +.ml-px { + margin-left: 1px; } -.hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; +.ml-0\.5 { + margin-left: 0.125rem; } -.hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; +.ml-1\.5 { + margin-left: 0.375rem; } -.hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; +.ml-2\.5 { + margin-left: 0.625rem; } -.hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; +.ml-3\.5 { + margin-left: 0.875rem; } -.hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; +.-ml-0 { + margin-left: 0px; } -.hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; +.-ml-1 { + margin-left: -0.25rem; } -.hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; +.-ml-2 { + margin-left: -0.5rem; } -.hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; +.-ml-3 { + margin-left: -0.75rem; } -.hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; +.-ml-4 { + margin-left: -1rem; } -.hover\:to-pink-900:hover { - --tw-gradient-to: #831843; +.-ml-5 { + margin-left: -1.25rem; } -.focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-ml-6 { + margin-left: -1.5rem; } -.focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-ml-7 { + margin-left: -1.75rem; } -.focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-ml-8 { + margin-left: -2rem; } -.focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-ml-9 { + margin-left: -2.25rem; } -.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)); +.-ml-10 { + margin-left: -2.5rem; } -.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)); +.-ml-11 { + margin-left: -2.75rem; } -.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)); +.-ml-12 { + margin-left: -3rem; } -.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)); +.-ml-14 { + margin-left: -3.5rem; } -.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)); +.-ml-16 { + margin-left: -4rem; } -.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)); +.-ml-20 { + margin-left: -5rem; } -.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)); +.-ml-24 { + margin-left: -6rem; } -.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)); +.-ml-28 { + margin-left: -7rem; } -.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)); +.-ml-32 { + margin-left: -8rem; } -.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)); +.-ml-36 { + margin-left: -9rem; } -.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)); +.-ml-40 { + margin-left: -10rem; } -.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)); +.-ml-44 { + margin-left: -11rem; } -.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)); +.-ml-48 { + margin-left: -12rem; } -.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)); +.-ml-52 { + margin-left: -13rem; } -.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)); +.-ml-56 { + margin-left: -14rem; } -.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)); +.-ml-60 { + margin-left: -15rem; } -.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)); +.-ml-64 { + margin-left: -16rem; } -.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)); +.-ml-72 { + margin-left: -18rem; } -.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)); +.-ml-80 { + margin-left: -20rem; } -.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)); +.-ml-96 { + margin-left: -24rem; } -.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)); +.-ml-px { + margin-left: -1px; } -.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)); +.-ml-0\.5 { + margin-left: -0.125rem; } -.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)); +.-ml-1\.5 { + margin-left: -0.375rem; } -.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)); +.-ml-2\.5 { + margin-left: -0.625rem; } -.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)); +.-ml-3\.5 { + margin-left: -0.875rem; } -.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)); +.box-border { + box-sizing: border-box; } -.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)); +.box-content { + box-sizing: content-box; } -.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)); +.block { + display: block; } -.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)); +.inline-block { + display: inline-block; } -.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)); +.inline { + display: inline; } -.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)); +.flex { + display: flex; } -.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)); +.inline-flex { + display: inline-flex; } -.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)); +.table { + display: table; } -.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)); +.inline-table { + display: inline-table; } -.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)); +.table-caption { + display: table-caption; } -.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)); +.table-cell { + display: table-cell; } -.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)); +.table-column { + display: table-column; } -.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)); +.table-column-group { + display: table-column-group; } -.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)); +.table-footer-group { + display: table-footer-group; } -.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)); +.table-header-group { + display: table-header-group; } -.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)); +.table-row-group { + display: table-row-group; } -.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)); +.table-row { + display: table-row; } -.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)); +.flow-root { + display: flow-root; } -.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)); +.grid { + display: grid; } -.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)); +.inline-grid { + display: inline-grid; } -.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)); +.contents { + display: contents; } -.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)); +.list-item { + display: list-item; } -.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)); -} - -.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)); +.hidden { + display: none; } -.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)); +.h-0 { + height: 0px; } -.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)); +.h-1 { + height: 0.25rem; } -.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)); +.h-2 { + height: 0.5rem; } -.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)); +.h-3 { + height: 0.75rem; } -.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)); +.h-4 { + height: 1rem; } -.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)); +.h-5 { + height: 1.25rem; } -.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)); +.h-6 { + height: 1.5rem; } -.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)); +.h-7 { + height: 1.75rem; } -.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)); +.h-8 { + height: 2rem; } -.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)); +.h-9 { + height: 2.25rem; } -.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)); +.h-10 { + height: 2.5rem; } -.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)); +.h-11 { + height: 2.75rem; } -.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)); +.h-12 { + height: 3rem; } -.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)); +.h-14 { + height: 3.5rem; } -.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)); +.h-16 { + height: 4rem; } -.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)); +.h-20 { + height: 5rem; } -.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)); +.h-24 { + height: 6rem; } -.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)); +.h-28 { + height: 7rem; } -.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)); +.h-32 { + height: 8rem; } -.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)); +.h-36 { + height: 9rem; } -.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)); +.h-40 { + height: 10rem; } -.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)); +.h-44 { + height: 11rem; } -.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)); +.h-48 { + height: 12rem; } -.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)); +.h-52 { + height: 13rem; } -.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)); +.h-56 { + height: 14rem; } -.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)); +.h-60 { + height: 15rem; } -.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)); +.h-64 { + height: 16rem; } -.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)); +.h-72 { + height: 18rem; } -.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)); +.h-80 { + height: 20rem; } -.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)); +.h-96 { + height: 24rem; } -.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)); +.h-auto { + height: auto; } -.focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.h-px { + height: 1px; } -.focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.h-0\.5 { + height: 0.125rem; } -.focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.h-1\.5 { + height: 0.375rem; } -.focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.h-2\.5 { + height: 0.625rem; } -.focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.h-3\.5 { + height: 0.875rem; } -.focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.h-1\/2 { + height: 50%; } -.focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.h-1\/3 { + height: 33.333333%; } -.focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.h-2\/3 { + height: 66.666667%; } -.focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.h-1\/4 { + height: 25%; } -.focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.h-2\/4 { + height: 50%; } -.focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.h-3\/4 { + height: 75%; } -.focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.h-1\/5 { + height: 20%; } -.focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.h-2\/5 { + height: 40%; } -.focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.h-3\/5 { + height: 60%; } -.focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.h-4\/5 { + height: 80%; } -.focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.h-1\/6 { + height: 16.666667%; } -.focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.h-2\/6 { + height: 33.333333%; } -.focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.h-3\/6 { + height: 50%; } -.focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.h-4\/6 { + height: 66.666667%; } -.focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.h-5\/6 { + height: 83.333333%; } -.focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.h-full { + height: 100%; } -.focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.h-screen { + height: 100vh; } -.focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.max-h-0 { + max-height: 0px; } -.focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.max-h-1 { + max-height: 0.25rem; } -.focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.max-h-2 { + max-height: 0.5rem; } -.focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.max-h-3 { + max-height: 0.75rem; } -.focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.max-h-4 { + max-height: 1rem; } -.focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.max-h-5 { + max-height: 1.25rem; } -.focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.max-h-6 { + max-height: 1.5rem; } -.focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.max-h-7 { + max-height: 1.75rem; } -.focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.max-h-8 { + max-height: 2rem; } -.focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.max-h-9 { + max-height: 2.25rem; } -.focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.max-h-10 { + max-height: 2.5rem; } -.focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.max-h-11 { + max-height: 2.75rem; } -.focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.max-h-12 { + max-height: 3rem; } -.focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.max-h-14 { + max-height: 3.5rem; } -.focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.max-h-16 { + max-height: 4rem; } -.focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.max-h-20 { + max-height: 5rem; } -.focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.max-h-24 { + max-height: 6rem; } -.focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.max-h-28 { + max-height: 7rem; } -.focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.max-h-32 { + max-height: 8rem; } -.focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.max-h-36 { + max-height: 9rem; } -.focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.max-h-40 { + max-height: 10rem; } -.focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.max-h-44 { + max-height: 11rem; } -.focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.max-h-48 { + max-height: 12rem; } -.focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.max-h-52 { + max-height: 13rem; } -.focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.max-h-56 { + max-height: 14rem; } -.focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.max-h-60 { + max-height: 15rem; } -.focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.max-h-64 { + max-height: 16rem; } -.focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.max-h-72 { + max-height: 18rem; } -.focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.max-h-80 { + max-height: 20rem; } -.focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.max-h-96 { + max-height: 24rem; } -.focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.max-h-px { + max-height: 1px; } -.focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.max-h-0\.5 { + max-height: 0.125rem; } -.focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.max-h-1\.5 { + max-height: 0.375rem; } -.focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.max-h-2\.5 { + max-height: 0.625rem; } -.focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.max-h-3\.5 { + max-height: 0.875rem; } -.focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.max-h-full { + max-height: 100%; } -.focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.max-h-screen { + max-height: 100vh; } -.focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.min-h-0 { + min-height: 0px; } -.focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.min-h-full { + min-height: 100%; } -.focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.min-h-screen { + min-height: 100vh; } -.focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.w-0 { + width: 0px; } -.focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.w-1 { + width: 0.25rem; } -.focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.w-2 { + width: 0.5rem; } -.focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.w-3 { + width: 0.75rem; } -.focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.w-4 { + width: 1rem; } -.focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.w-5 { + width: 1.25rem; } -.focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.w-6 { + width: 1.5rem; } -.focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.w-7 { + width: 1.75rem; } -.focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.w-8 { + width: 2rem; } -.focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.w-9 { + width: 2.25rem; } -.focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.w-10 { + width: 2.5rem; } -.focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.w-11 { + width: 2.75rem; } -.focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.w-12 { + width: 3rem; } -.focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.w-14 { + width: 3.5rem; } -.focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.w-16 { + width: 4rem; } -.focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.w-20 { + width: 5rem; } -.focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.w-24 { + width: 6rem; } -.focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.w-28 { + width: 7rem; } -.focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.w-32 { + width: 8rem; } -.focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.w-36 { + width: 9rem; } -.focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.w-40 { + width: 10rem; } -.focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.w-44 { + width: 11rem; } -.focus\:to-transparent:focus { - --tw-gradient-to: transparent; +.w-48 { + width: 12rem; } -.focus\:to-current:focus { - --tw-gradient-to: currentColor; +.w-52 { + width: 13rem; } -.focus\:to-black:focus { - --tw-gradient-to: #000; +.w-56 { + width: 14rem; } -.focus\:to-white:focus { - --tw-gradient-to: #fff; +.w-60 { + width: 15rem; } -.focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; +.w-64 { + width: 16rem; } -.focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; +.w-72 { + width: 18rem; } -.focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; +.w-80 { + width: 20rem; } -.focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; +.w-96 { + width: 24rem; } -.focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; +.w-auto { + width: auto; } -.focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; +.w-px { + width: 1px; } -.focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; +.w-0\.5 { + width: 0.125rem; } -.focus\:to-gray-700:focus { - --tw-gradient-to: #374151; +.w-1\.5 { + width: 0.375rem; } -.focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; +.w-2\.5 { + width: 0.625rem; } -.focus\:to-gray-900:focus { - --tw-gradient-to: #111827; +.w-3\.5 { + width: 0.875rem; } -.focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; +.w-1\/2 { + width: 50%; } -.focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; +.w-1\/3 { + width: 33.333333%; } -.focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; +.w-2\/3 { + width: 66.666667%; } -.focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; +.w-1\/4 { + width: 25%; } -.focus\:to-red-400:focus { - --tw-gradient-to: #f87171; +.w-2\/4 { + width: 50%; } -.focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; +.w-3\/4 { + width: 75%; } -.focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; +.w-1\/5 { + width: 20%; } -.focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; +.w-2\/5 { + width: 40%; } -.focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; +.w-3\/5 { + width: 60%; } -.focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; +.w-4\/5 { + width: 80%; } -.focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; +.w-1\/6 { + width: 16.666667%; } -.focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; +.w-2\/6 { + width: 33.333333%; } -.focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; +.w-3\/6 { + width: 50%; } -.focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; +.w-4\/6 { + width: 66.666667%; } -.focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; +.w-5\/6 { + width: 83.333333%; } -.focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; +.w-1\/12 { + width: 8.333333%; } -.focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; +.w-2\/12 { + width: 16.666667%; } -.focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; +.w-3\/12 { + width: 25%; } -.focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; +.w-4\/12 { + width: 33.333333%; } -.focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; +.w-5\/12 { + width: 41.666667%; } -.focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; +.w-6\/12 { + width: 50%; } -.focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; +.w-7\/12 { + width: 58.333333%; } -.focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; +.w-8\/12 { + width: 66.666667%; } -.focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; +.w-9\/12 { + width: 75%; } -.focus\:to-green-400:focus { - --tw-gradient-to: #34d399; +.w-10\/12 { + width: 83.333333%; } -.focus\:to-green-500:focus { - --tw-gradient-to: #10b981; +.w-11\/12 { + width: 91.666667%; } -.focus\:to-green-600:focus { - --tw-gradient-to: #059669; +.w-full { + width: 100%; } -.focus\:to-green-700:focus { - --tw-gradient-to: #047857; +.w-screen { + width: 100vw; } -.focus\:to-green-800:focus { - --tw-gradient-to: #065f46; +.w-min { + width: min-content; } -.focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; +.w-max { + width: max-content; } -.focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; +.min-w-0 { + min-width: 0px; } -.focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; +.min-w-full { + min-width: 100%; } -.focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; +.min-w-min { + min-width: min-content; } -.focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; +.min-w-max { + min-width: max-content; } -.focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; +.max-w-0 { + max-width: 0rem; } -.focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; +.max-w-none { + max-width: none; } -.focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; +.max-w-xs { + max-width: 20rem; } -.focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; +.max-w-sm { + max-width: 24rem; } -.focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; +.max-w-md { + max-width: 28rem; } -.focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; +.max-w-lg { + max-width: 32rem; } -.focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; +.max-w-xl { + max-width: 36rem; } -.focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; +.max-w-2xl { + max-width: 42rem; } -.focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; +.max-w-3xl { + max-width: 48rem; } -.focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; +.max-w-4xl { + max-width: 56rem; } -.focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; +.max-w-5xl { + max-width: 64rem; } -.focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; +.max-w-6xl { + max-width: 72rem; } -.focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; +.max-w-7xl { + max-width: 80rem; } -.focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; +.max-w-full { + max-width: 100%; } -.focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; +.max-w-min { + max-width: min-content; } -.focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; +.max-w-max { + max-width: max-content; } -.focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; +.max-w-prose { + max-width: 65ch; } -.focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; +.max-w-screen-sm { + max-width: 640px; } -.focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; +.max-w-screen-md { + max-width: 768px; } -.focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; +.max-w-screen-lg { + max-width: 1024px; } -.focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; +.max-w-screen-xl { + max-width: 1280px; } -.focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; +.max-w-screen-2xl { + max-width: 1536px; } -.focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; +.flex-1 { + flex: 1 1 0%; } -.focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; +.flex-auto { + flex: 1 1 auto; } -.focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; +.flex-initial { + flex: 0 1 auto; } -.focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; +.flex-none { + flex: none; } -.focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; +.flex-shrink-0 { + flex-shrink: 0; } -.focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; +.flex-shrink { + flex-shrink: 1; } -.focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; +.flex-grow-0 { + flex-grow: 0; } -.focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; +.flex-grow { + flex-grow: 1; } -.focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; +.table-auto { + table-layout: auto; } -.focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; +.table-fixed { + table-layout: fixed; } -.focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; +.border-collapse { + border-collapse: collapse; } -.focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; +.border-separate { + border-collapse: separate; } -.focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; +.transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } -.focus\:to-pink-900:focus { - --tw-gradient-to: #831843; +.transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } -.bg-bottom { - background-position: bottom; +.transform-none { + transform: none; } -.bg-center { - background-position: center; +.origin-center { + transform-origin: center; } -.bg-left { - background-position: left; +.origin-top { + transform-origin: top; } -.bg-left-bottom { - background-position: left bottom; +.origin-top-right { + transform-origin: top right; } -.bg-left-top { - background-position: left top; +.origin-right { + transform-origin: right; } -.bg-right { - background-position: right; +.origin-bottom-right { + transform-origin: bottom right; } -.bg-right-bottom { - background-position: right bottom; +.origin-bottom { + transform-origin: bottom; } -.bg-right-top { - background-position: right top; +.origin-bottom-left { + transform-origin: bottom left; } -.bg-top { - background-position: top; +.origin-left { + transform-origin: left; } -.bg-repeat { - background-repeat: repeat; +.origin-top-left { + transform-origin: top left; } -.bg-no-repeat { - background-repeat: no-repeat; +.translate-x-0 { + --tw-translate-x: 0px; } -.bg-repeat-x { - background-repeat: repeat-x; +.translate-x-1 { + --tw-translate-x: 0.25rem; } -.bg-repeat-y { - background-repeat: repeat-y; +.translate-x-2 { + --tw-translate-x: 0.5rem; } -.bg-repeat-round { - background-repeat: round; +.translate-x-3 { + --tw-translate-x: 0.75rem; } -.bg-repeat-space { - background-repeat: space; +.translate-x-4 { + --tw-translate-x: 1rem; } -.bg-auto { - background-size: auto; +.translate-x-5 { + --tw-translate-x: 1.25rem; } -.bg-cover { - background-size: cover; +.translate-x-6 { + --tw-translate-x: 1.5rem; } -.bg-contain { - background-size: contain; +.translate-x-7 { + --tw-translate-x: 1.75rem; } -.bg-origin-border { - background-origin: border-box; +.translate-x-8 { + --tw-translate-x: 2rem; } -.bg-origin-padding { - background-origin: padding-box; +.translate-x-9 { + --tw-translate-x: 2.25rem; } -.bg-origin-content { - background-origin: content-box; +.translate-x-10 { + --tw-translate-x: 2.5rem; } -.border-collapse { - border-collapse: collapse; +.translate-x-11 { + --tw-translate-x: 2.75rem; } -.border-separate { - border-collapse: separate; +.translate-x-12 { + --tw-translate-x: 3rem; } -.border-transparent { - border-color: transparent; +.translate-x-14 { + --tw-translate-x: 3.5rem; } -.border-current { - border-color: currentColor; +.translate-x-16 { + --tw-translate-x: 4rem; } -.border-black { - border-color: #000; +.translate-x-20 { + --tw-translate-x: 5rem; } -.border-white { - border-color: #fff; +.translate-x-24 { + --tw-translate-x: 6rem; } -.border-gray-50 { - border-color: #f9fafb; +.translate-x-28 { + --tw-translate-x: 7rem; } -.border-gray-100 { - border-color: #f3f4f6; +.translate-x-32 { + --tw-translate-x: 8rem; } -.border-gray-200 { - border-color: #e5e7eb; +.translate-x-36 { + --tw-translate-x: 9rem; } -.border-gray-300 { - border-color: #d1d5db; +.translate-x-40 { + --tw-translate-x: 10rem; } -.border-gray-400 { - border-color: #9ca3af; +.translate-x-44 { + --tw-translate-x: 11rem; } -.border-gray-500 { - border-color: #6b7280; +.translate-x-48 { + --tw-translate-x: 12rem; } -.border-gray-600 { - border-color: #4b5563; +.translate-x-52 { + --tw-translate-x: 13rem; } -.border-gray-700 { - border-color: #374151; +.translate-x-56 { + --tw-translate-x: 14rem; } -.border-gray-800 { - border-color: #1f2937; +.translate-x-60 { + --tw-translate-x: 15rem; } -.border-gray-900 { - border-color: #111827; +.translate-x-64 { + --tw-translate-x: 16rem; } -.border-red-50 { - border-color: #fef2f2; +.translate-x-72 { + --tw-translate-x: 18rem; } -.border-red-100 { - border-color: #fee2e2; +.translate-x-80 { + --tw-translate-x: 20rem; } -.border-red-200 { - border-color: #fecaca; +.translate-x-96 { + --tw-translate-x: 24rem; } -.border-red-300 { - border-color: #fca5a5; +.translate-x-px { + --tw-translate-x: 1px; } -.border-red-400 { - border-color: #f87171; +.translate-x-0\.5 { + --tw-translate-x: 0.125rem; } -.border-red-500 { - border-color: #ef4444; +.translate-x-1\.5 { + --tw-translate-x: 0.375rem; } -.border-red-600 { - border-color: #dc2626; +.translate-x-2\.5 { + --tw-translate-x: 0.625rem; } -.border-red-700 { - border-color: #b91c1c; +.translate-x-3\.5 { + --tw-translate-x: 0.875rem; } -.border-red-800 { - border-color: #991b1b; +.-translate-x-0 { + --tw-translate-x: 0px; } -.border-red-900 { - border-color: #7f1d1d; +.-translate-x-1 { + --tw-translate-x: -0.25rem; } -.border-yellow-50 { - border-color: #fffbeb; +.-translate-x-2 { + --tw-translate-x: -0.5rem; } -.border-yellow-100 { - border-color: #fef3c7; +.-translate-x-3 { + --tw-translate-x: -0.75rem; } -.border-yellow-200 { - border-color: #fde68a; +.-translate-x-4 { + --tw-translate-x: -1rem; } -.border-yellow-300 { - border-color: #fcd34d; +.-translate-x-5 { + --tw-translate-x: -1.25rem; } -.border-yellow-400 { - border-color: #fbbf24; +.-translate-x-6 { + --tw-translate-x: -1.5rem; } -.border-yellow-500 { - border-color: #f59e0b; +.-translate-x-7 { + --tw-translate-x: -1.75rem; } -.border-yellow-600 { - border-color: #d97706; +.-translate-x-8 { + --tw-translate-x: -2rem; } -.border-yellow-700 { - border-color: #b45309; +.-translate-x-9 { + --tw-translate-x: -2.25rem; } -.border-yellow-800 { - border-color: #92400e; +.-translate-x-10 { + --tw-translate-x: -2.5rem; } -.border-yellow-900 { - border-color: #78350f; +.-translate-x-11 { + --tw-translate-x: -2.75rem; } -.border-green-50 { - border-color: #ecfdf5; +.-translate-x-12 { + --tw-translate-x: -3rem; } -.border-green-100 { - border-color: #d1fae5; +.-translate-x-14 { + --tw-translate-x: -3.5rem; } -.border-green-200 { - border-color: #a7f3d0; +.-translate-x-16 { + --tw-translate-x: -4rem; } -.border-green-300 { - border-color: #6ee7b7; +.-translate-x-20 { + --tw-translate-x: -5rem; } -.border-green-400 { - border-color: #34d399; +.-translate-x-24 { + --tw-translate-x: -6rem; } -.border-green-500 { - border-color: #10b981; +.-translate-x-28 { + --tw-translate-x: -7rem; } -.border-green-600 { - border-color: #059669; +.-translate-x-32 { + --tw-translate-x: -8rem; } -.border-green-700 { - border-color: #047857; +.-translate-x-36 { + --tw-translate-x: -9rem; } -.border-green-800 { - border-color: #065f46; +.-translate-x-40 { + --tw-translate-x: -10rem; } -.border-green-900 { - border-color: #064e3b; +.-translate-x-44 { + --tw-translate-x: -11rem; } -.border-blue-50 { - border-color: #eff6ff; +.-translate-x-48 { + --tw-translate-x: -12rem; } -.border-blue-100 { - border-color: #dbeafe; +.-translate-x-52 { + --tw-translate-x: -13rem; } -.border-blue-200 { - border-color: #bfdbfe; +.-translate-x-56 { + --tw-translate-x: -14rem; } -.border-blue-300 { - border-color: #93c5fd; +.-translate-x-60 { + --tw-translate-x: -15rem; } -.border-blue-400 { - border-color: #60a5fa; +.-translate-x-64 { + --tw-translate-x: -16rem; } -.border-blue-500 { - border-color: #3b82f6; +.-translate-x-72 { + --tw-translate-x: -18rem; } -.border-blue-600 { - border-color: #2563eb; +.-translate-x-80 { + --tw-translate-x: -20rem; } -.border-blue-700 { - border-color: #1d4ed8; +.-translate-x-96 { + --tw-translate-x: -24rem; } -.border-blue-800 { - border-color: #1e40af; +.-translate-x-px { + --tw-translate-x: -1px; } -.border-blue-900 { - border-color: #1e3a8a; +.-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } -.border-indigo-50 { - border-color: #eef2ff; +.-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } -.border-indigo-100 { - border-color: #e0e7ff; +.-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } -.border-indigo-200 { - border-color: #c7d2fe; +.-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } -.border-indigo-300 { - border-color: #a5b4fc; +.translate-x-1\/2 { + --tw-translate-x: 50%; } -.border-indigo-400 { - border-color: #818cf8; +.translate-x-1\/3 { + --tw-translate-x: 33.333333%; } -.border-indigo-500 { - border-color: #6366f1; +.translate-x-2\/3 { + --tw-translate-x: 66.666667%; } -.border-indigo-600 { - border-color: #4f46e5; +.translate-x-1\/4 { + --tw-translate-x: 25%; } -.border-indigo-700 { - border-color: #4338ca; +.translate-x-2\/4 { + --tw-translate-x: 50%; } -.border-indigo-800 { - border-color: #3730a3; +.translate-x-3\/4 { + --tw-translate-x: 75%; } -.border-indigo-900 { - border-color: #312e81; +.translate-x-full { + --tw-translate-x: 100%; } -.border-purple-50 { - border-color: #f5f3ff; +.-translate-x-1\/2 { + --tw-translate-x: -50%; } -.border-purple-100 { - border-color: #ede9fe; +.-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } -.border-purple-200 { - border-color: #ddd6fe; +.-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } -.border-purple-300 { - border-color: #c4b5fd; +.-translate-x-1\/4 { + --tw-translate-x: -25%; } -.border-purple-400 { - border-color: #a78bfa; +.-translate-x-2\/4 { + --tw-translate-x: -50%; } -.border-purple-500 { - border-color: #8b5cf6; +.-translate-x-3\/4 { + --tw-translate-x: -75%; } -.border-purple-600 { - border-color: #7c3aed; +.-translate-x-full { + --tw-translate-x: -100%; } -.border-purple-700 { - border-color: #6d28d9; +.translate-y-0 { + --tw-translate-y: 0px; } -.border-purple-800 { - border-color: #5b21b6; +.translate-y-1 { + --tw-translate-y: 0.25rem; } -.border-purple-900 { - border-color: #4c1d95; +.translate-y-2 { + --tw-translate-y: 0.5rem; } -.border-pink-50 { - border-color: #fdf2f8; +.translate-y-3 { + --tw-translate-y: 0.75rem; } -.border-pink-100 { - border-color: #fce7f3; +.translate-y-4 { + --tw-translate-y: 1rem; } -.border-pink-200 { - border-color: #fbcfe8; +.translate-y-5 { + --tw-translate-y: 1.25rem; } -.border-pink-300 { - border-color: #f9a8d4; +.translate-y-6 { + --tw-translate-y: 1.5rem; } -.border-pink-400 { - border-color: #f472b6; +.translate-y-7 { + --tw-translate-y: 1.75rem; } -.border-pink-500 { - border-color: #ec4899; +.translate-y-8 { + --tw-translate-y: 2rem; } -.border-pink-600 { - border-color: #db2777; +.translate-y-9 { + --tw-translate-y: 2.25rem; } -.border-pink-700 { - border-color: #be185d; +.translate-y-10 { + --tw-translate-y: 2.5rem; } -.border-pink-800 { - border-color: #9d174d; +.translate-y-11 { + --tw-translate-y: 2.75rem; } -.border-pink-900 { - border-color: #831843; +.translate-y-12 { + --tw-translate-y: 3rem; } -.group:hover .group-hover\:border-transparent { - border-color: transparent; +.translate-y-14 { + --tw-translate-y: 3.5rem; } -.group:hover .group-hover\:border-current { - border-color: currentColor; +.translate-y-16 { + --tw-translate-y: 4rem; } -.group:hover .group-hover\:border-black { - border-color: #000; +.translate-y-20 { + --tw-translate-y: 5rem; } -.group:hover .group-hover\:border-white { - border-color: #fff; +.translate-y-24 { + --tw-translate-y: 6rem; } -.group:hover .group-hover\:border-gray-50 { - border-color: #f9fafb; +.translate-y-28 { + --tw-translate-y: 7rem; } -.group:hover .group-hover\:border-gray-100 { - border-color: #f3f4f6; +.translate-y-32 { + --tw-translate-y: 8rem; } -.group:hover .group-hover\:border-gray-200 { - border-color: #e5e7eb; +.translate-y-36 { + --tw-translate-y: 9rem; } -.group:hover .group-hover\:border-gray-300 { - border-color: #d1d5db; +.translate-y-40 { + --tw-translate-y: 10rem; } -.group:hover .group-hover\:border-gray-400 { - border-color: #9ca3af; +.translate-y-44 { + --tw-translate-y: 11rem; } -.group:hover .group-hover\:border-gray-500 { - border-color: #6b7280; +.translate-y-48 { + --tw-translate-y: 12rem; } -.group:hover .group-hover\:border-gray-600 { - border-color: #4b5563; +.translate-y-52 { + --tw-translate-y: 13rem; } -.group:hover .group-hover\:border-gray-700 { - border-color: #374151; +.translate-y-56 { + --tw-translate-y: 14rem; } -.group:hover .group-hover\:border-gray-800 { - border-color: #1f2937; +.translate-y-60 { + --tw-translate-y: 15rem; } -.group:hover .group-hover\:border-gray-900 { - border-color: #111827; +.translate-y-64 { + --tw-translate-y: 16rem; } -.group:hover .group-hover\:border-red-50 { - border-color: #fef2f2; +.translate-y-72 { + --tw-translate-y: 18rem; } -.group:hover .group-hover\:border-red-100 { - border-color: #fee2e2; +.translate-y-80 { + --tw-translate-y: 20rem; } -.group:hover .group-hover\:border-red-200 { - border-color: #fecaca; +.translate-y-96 { + --tw-translate-y: 24rem; } -.group:hover .group-hover\:border-red-300 { - border-color: #fca5a5; +.translate-y-px { + --tw-translate-y: 1px; } -.group:hover .group-hover\:border-red-400 { - border-color: #f87171; +.translate-y-0\.5 { + --tw-translate-y: 0.125rem; } -.group:hover .group-hover\:border-red-500 { - border-color: #ef4444; +.translate-y-1\.5 { + --tw-translate-y: 0.375rem; } -.group:hover .group-hover\:border-red-600 { - border-color: #dc2626; +.translate-y-2\.5 { + --tw-translate-y: 0.625rem; } -.group:hover .group-hover\:border-red-700 { - border-color: #b91c1c; +.translate-y-3\.5 { + --tw-translate-y: 0.875rem; } -.group:hover .group-hover\:border-red-800 { - border-color: #991b1b; +.-translate-y-0 { + --tw-translate-y: 0px; } -.group:hover .group-hover\:border-red-900 { - border-color: #7f1d1d; +.-translate-y-1 { + --tw-translate-y: -0.25rem; } -.group:hover .group-hover\:border-yellow-50 { - border-color: #fffbeb; +.-translate-y-2 { + --tw-translate-y: -0.5rem; } -.group:hover .group-hover\:border-yellow-100 { - border-color: #fef3c7; +.-translate-y-3 { + --tw-translate-y: -0.75rem; } -.group:hover .group-hover\:border-yellow-200 { - border-color: #fde68a; +.-translate-y-4 { + --tw-translate-y: -1rem; } -.group:hover .group-hover\:border-yellow-300 { - border-color: #fcd34d; +.-translate-y-5 { + --tw-translate-y: -1.25rem; } -.group:hover .group-hover\:border-yellow-400 { - border-color: #fbbf24; +.-translate-y-6 { + --tw-translate-y: -1.5rem; } -.group:hover .group-hover\:border-yellow-500 { - border-color: #f59e0b; +.-translate-y-7 { + --tw-translate-y: -1.75rem; } -.group:hover .group-hover\:border-yellow-600 { - border-color: #d97706; +.-translate-y-8 { + --tw-translate-y: -2rem; } -.group:hover .group-hover\:border-yellow-700 { - border-color: #b45309; +.-translate-y-9 { + --tw-translate-y: -2.25rem; } -.group:hover .group-hover\:border-yellow-800 { - border-color: #92400e; +.-translate-y-10 { + --tw-translate-y: -2.5rem; } -.group:hover .group-hover\:border-yellow-900 { - border-color: #78350f; +.-translate-y-11 { + --tw-translate-y: -2.75rem; } -.group:hover .group-hover\:border-green-50 { - border-color: #ecfdf5; +.-translate-y-12 { + --tw-translate-y: -3rem; } -.group:hover .group-hover\:border-green-100 { - border-color: #d1fae5; +.-translate-y-14 { + --tw-translate-y: -3.5rem; } -.group:hover .group-hover\:border-green-200 { - border-color: #a7f3d0; +.-translate-y-16 { + --tw-translate-y: -4rem; } -.group:hover .group-hover\:border-green-300 { - border-color: #6ee7b7; +.-translate-y-20 { + --tw-translate-y: -5rem; } -.group:hover .group-hover\:border-green-400 { - border-color: #34d399; +.-translate-y-24 { + --tw-translate-y: -6rem; } -.group:hover .group-hover\:border-green-500 { - border-color: #10b981; +.-translate-y-28 { + --tw-translate-y: -7rem; } -.group:hover .group-hover\:border-green-600 { - border-color: #059669; +.-translate-y-32 { + --tw-translate-y: -8rem; } -.group:hover .group-hover\:border-green-700 { - border-color: #047857; +.-translate-y-36 { + --tw-translate-y: -9rem; } -.group:hover .group-hover\:border-green-800 { - border-color: #065f46; +.-translate-y-40 { + --tw-translate-y: -10rem; } -.group:hover .group-hover\:border-green-900 { - border-color: #064e3b; +.-translate-y-44 { + --tw-translate-y: -11rem; } -.group:hover .group-hover\:border-blue-50 { - border-color: #eff6ff; +.-translate-y-48 { + --tw-translate-y: -12rem; } -.group:hover .group-hover\:border-blue-100 { - border-color: #dbeafe; +.-translate-y-52 { + --tw-translate-y: -13rem; } -.group:hover .group-hover\:border-blue-200 { - border-color: #bfdbfe; +.-translate-y-56 { + --tw-translate-y: -14rem; } -.group:hover .group-hover\:border-blue-300 { - border-color: #93c5fd; +.-translate-y-60 { + --tw-translate-y: -15rem; } -.group:hover .group-hover\:border-blue-400 { - border-color: #60a5fa; +.-translate-y-64 { + --tw-translate-y: -16rem; } -.group:hover .group-hover\:border-blue-500 { - border-color: #3b82f6; +.-translate-y-72 { + --tw-translate-y: -18rem; } -.group:hover .group-hover\:border-blue-600 { - border-color: #2563eb; +.-translate-y-80 { + --tw-translate-y: -20rem; } -.group:hover .group-hover\:border-blue-700 { - border-color: #1d4ed8; +.-translate-y-96 { + --tw-translate-y: -24rem; } -.group:hover .group-hover\:border-blue-800 { - border-color: #1e40af; +.-translate-y-px { + --tw-translate-y: -1px; } -.group:hover .group-hover\:border-blue-900 { - border-color: #1e3a8a; +.-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } -.group:hover .group-hover\:border-indigo-50 { - border-color: #eef2ff; +.-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } -.group:hover .group-hover\:border-indigo-100 { - border-color: #e0e7ff; +.-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } -.group:hover .group-hover\:border-indigo-200 { - border-color: #c7d2fe; +.-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } -.group:hover .group-hover\:border-indigo-300 { - border-color: #a5b4fc; +.translate-y-1\/2 { + --tw-translate-y: 50%; } -.group:hover .group-hover\:border-indigo-400 { - border-color: #818cf8; +.translate-y-1\/3 { + --tw-translate-y: 33.333333%; } -.group:hover .group-hover\:border-indigo-500 { - border-color: #6366f1; +.translate-y-2\/3 { + --tw-translate-y: 66.666667%; } -.group:hover .group-hover\:border-indigo-600 { - border-color: #4f46e5; +.translate-y-1\/4 { + --tw-translate-y: 25%; } -.group:hover .group-hover\:border-indigo-700 { - border-color: #4338ca; +.translate-y-2\/4 { + --tw-translate-y: 50%; } -.group:hover .group-hover\:border-indigo-800 { - border-color: #3730a3; +.translate-y-3\/4 { + --tw-translate-y: 75%; } -.group:hover .group-hover\:border-indigo-900 { - border-color: #312e81; +.translate-y-full { + --tw-translate-y: 100%; } -.group:hover .group-hover\:border-purple-50 { - border-color: #f5f3ff; +.-translate-y-1\/2 { + --tw-translate-y: -50%; } -.group:hover .group-hover\:border-purple-100 { - border-color: #ede9fe; +.-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } -.group:hover .group-hover\:border-purple-200 { - border-color: #ddd6fe; +.-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } -.group:hover .group-hover\:border-purple-300 { - border-color: #c4b5fd; +.-translate-y-1\/4 { + --tw-translate-y: -25%; } -.group:hover .group-hover\:border-purple-400 { - border-color: #a78bfa; +.-translate-y-2\/4 { + --tw-translate-y: -50%; } -.group:hover .group-hover\:border-purple-500 { - border-color: #8b5cf6; +.-translate-y-3\/4 { + --tw-translate-y: -75%; } -.group:hover .group-hover\:border-purple-600 { - border-color: #7c3aed; +.-translate-y-full { + --tw-translate-y: -100%; } -.group:hover .group-hover\:border-purple-700 { - border-color: #6d28d9; +.hover\:translate-x-0:hover { + --tw-translate-x: 0px; } -.group:hover .group-hover\:border-purple-800 { - border-color: #5b21b6; +.hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } -.group:hover .group-hover\:border-purple-900 { - border-color: #4c1d95; +.hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } -.group:hover .group-hover\:border-pink-50 { - border-color: #fdf2f8; +.hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } -.group:hover .group-hover\:border-pink-100 { - border-color: #fce7f3; +.hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } -.group:hover .group-hover\:border-pink-200 { - border-color: #fbcfe8; +.hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } -.group:hover .group-hover\:border-pink-300 { - border-color: #f9a8d4; +.hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } -.group:hover .group-hover\:border-pink-400 { - border-color: #f472b6; +.hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } -.group:hover .group-hover\:border-pink-500 { - border-color: #ec4899; +.hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } -.group:hover .group-hover\:border-pink-600 { - border-color: #db2777; +.hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } -.group:hover .group-hover\:border-pink-700 { - border-color: #be185d; +.hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } -.group:hover .group-hover\:border-pink-800 { - border-color: #9d174d; +.hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } -.group:hover .group-hover\:border-pink-900 { - border-color: #831843; +.hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } -.focus-within\:border-transparent:focus-within { - border-color: transparent; +.hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } -.focus-within\:border-current:focus-within { - border-color: currentColor; +.hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } -.focus-within\:border-black:focus-within { - border-color: #000; +.hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } -.focus-within\:border-white:focus-within { - border-color: #fff; +.hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } -.focus-within\:border-gray-50:focus-within { - border-color: #f9fafb; +.hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } -.focus-within\:border-gray-100:focus-within { - border-color: #f3f4f6; +.hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } -.focus-within\:border-gray-200:focus-within { - border-color: #e5e7eb; +.hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } -.focus-within\:border-gray-300:focus-within { - border-color: #d1d5db; +.hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } -.focus-within\:border-gray-400:focus-within { - border-color: #9ca3af; +.hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } -.focus-within\:border-gray-500:focus-within { - border-color: #6b7280; +.hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } -.focus-within\:border-gray-600:focus-within { - border-color: #4b5563; +.hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } -.focus-within\:border-gray-700:focus-within { - border-color: #374151; +.hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } -.focus-within\:border-gray-800:focus-within { - border-color: #1f2937; +.hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } -.focus-within\:border-gray-900:focus-within { - border-color: #111827; +.hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } -.focus-within\:border-red-50:focus-within { - border-color: #fef2f2; +.hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } -.focus-within\:border-red-100:focus-within { - border-color: #fee2e2; +.hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } -.focus-within\:border-red-200:focus-within { - border-color: #fecaca; +.hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } -.focus-within\:border-red-300:focus-within { - border-color: #fca5a5; +.hover\:translate-x-px:hover { + --tw-translate-x: 1px; } -.focus-within\:border-red-400:focus-within { - border-color: #f87171; +.hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } -.focus-within\:border-red-500:focus-within { - border-color: #ef4444; +.hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } -.focus-within\:border-red-600:focus-within { - border-color: #dc2626; +.hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } -.focus-within\:border-red-700:focus-within { - border-color: #b91c1c; +.hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } -.focus-within\:border-red-800:focus-within { - border-color: #991b1b; +.hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } -.focus-within\:border-red-900:focus-within { - border-color: #7f1d1d; +.hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } -.focus-within\:border-yellow-50:focus-within { - border-color: #fffbeb; +.hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } -.focus-within\:border-yellow-100:focus-within { - border-color: #fef3c7; +.hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } -.focus-within\:border-yellow-200:focus-within { - border-color: #fde68a; +.hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } -.focus-within\:border-yellow-300:focus-within { - border-color: #fcd34d; +.hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } -.focus-within\:border-yellow-400:focus-within { - border-color: #fbbf24; +.hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } -.focus-within\:border-yellow-500:focus-within { - border-color: #f59e0b; +.hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } -.focus-within\:border-yellow-600:focus-within { - border-color: #d97706; +.hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } -.focus-within\:border-yellow-700:focus-within { - border-color: #b45309; +.hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } -.focus-within\:border-yellow-800:focus-within { - border-color: #92400e; +.hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } -.focus-within\:border-yellow-900:focus-within { - border-color: #78350f; +.hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } -.focus-within\:border-green-50:focus-within { - border-color: #ecfdf5; +.hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } -.focus-within\:border-green-100:focus-within { - border-color: #d1fae5; +.hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } -.focus-within\:border-green-200:focus-within { - border-color: #a7f3d0; +.hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } -.focus-within\:border-green-300:focus-within { - border-color: #6ee7b7; +.hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } -.focus-within\:border-green-400:focus-within { - border-color: #34d399; +.hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } -.focus-within\:border-green-500:focus-within { - border-color: #10b981; +.hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } -.focus-within\:border-green-600:focus-within { - border-color: #059669; +.hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } -.focus-within\:border-green-700:focus-within { - border-color: #047857; +.hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } -.focus-within\:border-green-800:focus-within { - border-color: #065f46; +.hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } -.focus-within\:border-green-900:focus-within { - border-color: #064e3b; +.hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } -.focus-within\:border-blue-50:focus-within { - border-color: #eff6ff; +.hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } -.focus-within\:border-blue-100:focus-within { - border-color: #dbeafe; +.hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } -.focus-within\:border-blue-200:focus-within { - border-color: #bfdbfe; +.hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } -.focus-within\:border-blue-300:focus-within { - border-color: #93c5fd; +.hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } -.focus-within\:border-blue-400:focus-within { - border-color: #60a5fa; +.hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } -.focus-within\:border-blue-500:focus-within { - border-color: #3b82f6; +.hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } -.focus-within\:border-blue-600:focus-within { - border-color: #2563eb; +.hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } -.focus-within\:border-blue-700:focus-within { - border-color: #1d4ed8; +.hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } -.focus-within\:border-blue-800:focus-within { - border-color: #1e40af; +.hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } -.focus-within\:border-blue-900:focus-within { - border-color: #1e3a8a; +.hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } -.focus-within\:border-indigo-50:focus-within { - border-color: #eef2ff; +.hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } -.focus-within\:border-indigo-100:focus-within { - border-color: #e0e7ff; +.hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } -.focus-within\:border-indigo-200:focus-within { - border-color: #c7d2fe; +.hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } -.focus-within\:border-indigo-300:focus-within { - border-color: #a5b4fc; +.hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } -.focus-within\:border-indigo-400:focus-within { - border-color: #818cf8; +.hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } -.focus-within\:border-indigo-500:focus-within { - border-color: #6366f1; +.hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } -.focus-within\:border-indigo-600:focus-within { - border-color: #4f46e5; +.hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } -.focus-within\:border-indigo-700:focus-within { - border-color: #4338ca; +.hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } -.focus-within\:border-indigo-800:focus-within { - border-color: #3730a3; +.hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } -.focus-within\:border-indigo-900:focus-within { - border-color: #312e81; +.hover\:translate-x-full:hover { + --tw-translate-x: 100%; } -.focus-within\:border-purple-50:focus-within { - border-color: #f5f3ff; +.hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } -.focus-within\:border-purple-100:focus-within { - border-color: #ede9fe; +.hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } -.focus-within\:border-purple-200:focus-within { - border-color: #ddd6fe; +.hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } -.focus-within\:border-purple-300:focus-within { - border-color: #c4b5fd; +.hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } -.focus-within\:border-purple-400:focus-within { - border-color: #a78bfa; +.hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } -.focus-within\:border-purple-500:focus-within { - border-color: #8b5cf6; +.hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } -.focus-within\:border-purple-600:focus-within { - border-color: #7c3aed; +.hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } -.focus-within\:border-purple-700:focus-within { - border-color: #6d28d9; +.hover\:translate-y-0:hover { + --tw-translate-y: 0px; } -.focus-within\:border-purple-800:focus-within { - border-color: #5b21b6; +.hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } -.focus-within\:border-purple-900:focus-within { - border-color: #4c1d95; +.hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } -.focus-within\:border-pink-50:focus-within { - border-color: #fdf2f8; +.hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } -.focus-within\:border-pink-100:focus-within { - border-color: #fce7f3; +.hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } -.focus-within\:border-pink-200:focus-within { - border-color: #fbcfe8; +.hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } -.focus-within\:border-pink-300:focus-within { - border-color: #f9a8d4; +.hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } -.focus-within\:border-pink-400:focus-within { - border-color: #f472b6; +.hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } -.focus-within\:border-pink-500:focus-within { - border-color: #ec4899; +.hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } -.focus-within\:border-pink-600:focus-within { - border-color: #db2777; +.hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } -.focus-within\:border-pink-700:focus-within { - border-color: #be185d; +.hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } -.focus-within\:border-pink-800:focus-within { - border-color: #9d174d; +.hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } -.focus-within\:border-pink-900:focus-within { - border-color: #831843; +.hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } -.hover\:border-transparent:hover { - border-color: transparent; +.hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } -.hover\:border-current:hover { - border-color: currentColor; +.hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } -.hover\:border-black:hover { - border-color: #000; +.hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } -.hover\:border-white:hover { - border-color: #fff; +.hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } -.hover\:border-gray-50:hover { - border-color: #f9fafb; +.hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } -.hover\:border-gray-100:hover { - border-color: #f3f4f6; +.hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } -.hover\:border-gray-200:hover { - border-color: #e5e7eb; +.hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } -.hover\:border-gray-300:hover { - border-color: #d1d5db; +.hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } -.hover\:border-gray-400:hover { - border-color: #9ca3af; +.hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } -.hover\:border-gray-500:hover { - border-color: #6b7280; +.hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } -.hover\:border-gray-600:hover { - border-color: #4b5563; +.hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } -.hover\:border-gray-700:hover { - border-color: #374151; +.hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } -.hover\:border-gray-800:hover { - border-color: #1f2937; +.hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } -.hover\:border-gray-900:hover { - border-color: #111827; +.hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } -.hover\:border-red-50:hover { - border-color: #fef2f2; +.hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } -.hover\:border-red-100:hover { - border-color: #fee2e2; +.hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } -.hover\:border-red-200:hover { - border-color: #fecaca; +.hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } -.hover\:border-red-300:hover { - border-color: #fca5a5; +.hover\:translate-y-px:hover { + --tw-translate-y: 1px; } -.hover\:border-red-400:hover { - border-color: #f87171; +.hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } -.hover\:border-red-500:hover { - border-color: #ef4444; +.hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } -.hover\:border-red-600:hover { - border-color: #dc2626; +.hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } -.hover\:border-red-700:hover { - border-color: #b91c1c; +.hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } -.hover\:border-red-800:hover { - border-color: #991b1b; +.hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } -.hover\:border-red-900:hover { - border-color: #7f1d1d; +.hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } -.hover\:border-yellow-50:hover { - border-color: #fffbeb; +.hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } -.hover\:border-yellow-100:hover { - border-color: #fef3c7; +.hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } -.hover\:border-yellow-200:hover { - border-color: #fde68a; +.hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } -.hover\:border-yellow-300:hover { - border-color: #fcd34d; +.hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } -.hover\:border-yellow-400:hover { - border-color: #fbbf24; +.hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } -.hover\:border-yellow-500:hover { - border-color: #f59e0b; +.hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } -.hover\:border-yellow-600:hover { - border-color: #d97706; +.hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } -.hover\:border-yellow-700:hover { - border-color: #b45309; +.hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } -.hover\:border-yellow-800:hover { - border-color: #92400e; +.hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } -.hover\:border-yellow-900:hover { - border-color: #78350f; +.hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } -.hover\:border-green-50:hover { - border-color: #ecfdf5; +.hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } -.hover\:border-green-100:hover { - border-color: #d1fae5; +.hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } -.hover\:border-green-200:hover { - border-color: #a7f3d0; +.hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } -.hover\:border-green-300:hover { - border-color: #6ee7b7; +.hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } -.hover\:border-green-400:hover { - border-color: #34d399; +.hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } -.hover\:border-green-500:hover { - border-color: #10b981; +.hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } -.hover\:border-green-600:hover { - border-color: #059669; +.hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } -.hover\:border-green-700:hover { - border-color: #047857; +.hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } -.hover\:border-green-800:hover { - border-color: #065f46; +.hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } -.hover\:border-green-900:hover { - border-color: #064e3b; +.hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } -.hover\:border-blue-50:hover { - border-color: #eff6ff; +.hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } -.hover\:border-blue-100:hover { - border-color: #dbeafe; +.hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } -.hover\:border-blue-200:hover { - border-color: #bfdbfe; +.hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } -.hover\:border-blue-300:hover { - border-color: #93c5fd; +.hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } -.hover\:border-blue-400:hover { - border-color: #60a5fa; +.hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } -.hover\:border-blue-500:hover { - border-color: #3b82f6; +.hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } -.hover\:border-blue-600:hover { - border-color: #2563eb; +.hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } -.hover\:border-blue-700:hover { - border-color: #1d4ed8; +.hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } -.hover\:border-blue-800:hover { - border-color: #1e40af; +.hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } -.hover\:border-blue-900:hover { - border-color: #1e3a8a; +.hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } -.hover\:border-indigo-50:hover { - border-color: #eef2ff; +.hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } -.hover\:border-indigo-100:hover { - border-color: #e0e7ff; +.hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } -.hover\:border-indigo-200:hover { - border-color: #c7d2fe; +.hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } -.hover\:border-indigo-300:hover { - border-color: #a5b4fc; +.hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } -.hover\:border-indigo-400:hover { - border-color: #818cf8; +.hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } -.hover\:border-indigo-500:hover { - border-color: #6366f1; +.hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } -.hover\:border-indigo-600:hover { - border-color: #4f46e5; +.hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } -.hover\:border-indigo-700:hover { - border-color: #4338ca; +.hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } -.hover\:border-indigo-800:hover { - border-color: #3730a3; +.hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } -.hover\:border-indigo-900:hover { - border-color: #312e81; +.hover\:translate-y-full:hover { + --tw-translate-y: 100%; } -.hover\:border-purple-50:hover { - border-color: #f5f3ff; +.hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } -.hover\:border-purple-100:hover { - border-color: #ede9fe; +.hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } -.hover\:border-purple-200:hover { - border-color: #ddd6fe; +.hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } -.hover\:border-purple-300:hover { - border-color: #c4b5fd; +.hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } -.hover\:border-purple-400:hover { - border-color: #a78bfa; +.hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } -.hover\:border-purple-500:hover { - border-color: #8b5cf6; +.hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } -.hover\:border-purple-600:hover { - border-color: #7c3aed; +.hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } -.hover\:border-purple-700:hover { - border-color: #6d28d9; +.focus\:translate-x-0:focus { + --tw-translate-x: 0px; } -.hover\:border-purple-800:hover { - border-color: #5b21b6; +.focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } -.hover\:border-purple-900:hover { - border-color: #4c1d95; +.focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } -.hover\:border-pink-50:hover { - border-color: #fdf2f8; +.focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } -.hover\:border-pink-100:hover { - border-color: #fce7f3; +.focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } -.hover\:border-pink-200:hover { - border-color: #fbcfe8; +.focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } -.hover\:border-pink-300:hover { - border-color: #f9a8d4; +.focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } -.hover\:border-pink-400:hover { - border-color: #f472b6; +.focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } -.hover\:border-pink-500:hover { - border-color: #ec4899; +.focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } -.hover\:border-pink-600:hover { - border-color: #db2777; +.focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } -.hover\:border-pink-700:hover { - border-color: #be185d; +.focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } -.hover\:border-pink-800:hover { - border-color: #9d174d; +.focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } -.hover\:border-pink-900:hover { - border-color: #831843; +.focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } -.focus\:border-transparent:focus { - border-color: transparent; +.focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } -.focus\:border-current:focus { - border-color: currentColor; +.focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } -.focus\:border-black:focus { - border-color: #000; +.focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } -.focus\:border-white:focus { - border-color: #fff; +.focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } -.focus\:border-gray-50:focus { - border-color: #f9fafb; +.focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } -.focus\:border-gray-100:focus { - border-color: #f3f4f6; +.focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } -.focus\:border-gray-200:focus { - border-color: #e5e7eb; +.focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } -.focus\:border-gray-300:focus { - border-color: #d1d5db; +.focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } -.focus\:border-gray-400:focus { - border-color: #9ca3af; +.focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } -.focus\:border-gray-500:focus { - border-color: #6b7280; +.focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } -.focus\:border-gray-600:focus { - border-color: #4b5563; +.focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } -.focus\:border-gray-700:focus { - border-color: #374151; +.focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } -.focus\:border-gray-800:focus { - border-color: #1f2937; +.focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } -.focus\:border-gray-900:focus { - border-color: #111827; +.focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } -.focus\:border-red-50:focus { - border-color: #fef2f2; +.focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } -.focus\:border-red-100:focus { - border-color: #fee2e2; +.focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } -.focus\:border-red-200:focus { - border-color: #fecaca; +.focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } -.focus\:border-red-300:focus { - border-color: #fca5a5; +.focus\:translate-x-px:focus { + --tw-translate-x: 1px; } -.focus\:border-red-400:focus { - border-color: #f87171; +.focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } -.focus\:border-red-500:focus { - border-color: #ef4444; +.focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } -.focus\:border-red-600:focus { - border-color: #dc2626; +.focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } -.focus\:border-red-700:focus { - border-color: #b91c1c; +.focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } -.focus\:border-red-800:focus { - border-color: #991b1b; +.focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } -.focus\:border-red-900:focus { - border-color: #7f1d1d; +.focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } -.focus\:border-yellow-50:focus { - border-color: #fffbeb; +.focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } -.focus\:border-yellow-100:focus { - border-color: #fef3c7; +.focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } -.focus\:border-yellow-200:focus { - border-color: #fde68a; +.focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } -.focus\:border-yellow-300:focus { - border-color: #fcd34d; +.focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } -.focus\:border-yellow-400:focus { - border-color: #fbbf24; +.focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } -.focus\:border-yellow-500:focus { - border-color: #f59e0b; +.focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } -.focus\:border-yellow-600:focus { - border-color: #d97706; +.focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } -.focus\:border-yellow-700:focus { - border-color: #b45309; +.focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } -.focus\:border-yellow-800:focus { - border-color: #92400e; +.focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } -.focus\:border-yellow-900:focus { - border-color: #78350f; +.focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } -.focus\:border-green-50:focus { - border-color: #ecfdf5; +.focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } -.focus\:border-green-100:focus { - border-color: #d1fae5; +.focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } -.focus\:border-green-200:focus { - border-color: #a7f3d0; +.focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } -.focus\:border-green-300:focus { - border-color: #6ee7b7; +.focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } -.focus\:border-green-400:focus { - border-color: #34d399; +.focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } -.focus\:border-green-500:focus { - border-color: #10b981; +.focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } -.focus\:border-green-600:focus { - border-color: #059669; +.focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } -.focus\:border-green-700:focus { - border-color: #047857; +.focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } -.focus\:border-green-800:focus { - border-color: #065f46; +.focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } -.focus\:border-green-900:focus { - border-color: #064e3b; +.focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } -.focus\:border-blue-50:focus { - border-color: #eff6ff; +.focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } -.focus\:border-blue-100:focus { - border-color: #dbeafe; +.focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } -.focus\:border-blue-200:focus { - border-color: #bfdbfe; +.focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } -.focus\:border-blue-300:focus { - border-color: #93c5fd; +.focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } -.focus\:border-blue-400:focus { - border-color: #60a5fa; +.focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } -.focus\:border-blue-500:focus { - border-color: #3b82f6; +.focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } -.focus\:border-blue-600:focus { - border-color: #2563eb; +.focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } -.focus\:border-blue-700:focus { - border-color: #1d4ed8; +.focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } -.focus\:border-blue-800:focus { - border-color: #1e40af; +.focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } -.focus\:border-blue-900:focus { - border-color: #1e3a8a; +.focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } -.focus\:border-indigo-50:focus { - border-color: #eef2ff; +.focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } -.focus\:border-indigo-100:focus { - border-color: #e0e7ff; +.focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } -.focus\:border-indigo-200:focus { - border-color: #c7d2fe; +.focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } -.focus\:border-indigo-300:focus { - border-color: #a5b4fc; +.focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } -.focus\:border-indigo-400:focus { - border-color: #818cf8; +.focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } -.focus\:border-indigo-500:focus { - border-color: #6366f1; +.focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } -.focus\:border-indigo-600:focus { - border-color: #4f46e5; +.focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } -.focus\:border-indigo-700:focus { - border-color: #4338ca; +.focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } -.focus\:border-indigo-800:focus { - border-color: #3730a3; +.focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } -.focus\:border-indigo-900:focus { - border-color: #312e81; +.focus\:translate-x-full:focus { + --tw-translate-x: 100%; } -.focus\:border-purple-50:focus { - border-color: #f5f3ff; +.focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } -.focus\:border-purple-100:focus { - border-color: #ede9fe; +.focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } -.focus\:border-purple-200:focus { - border-color: #ddd6fe; +.focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } -.focus\:border-purple-300:focus { - border-color: #c4b5fd; +.focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } -.focus\:border-purple-400:focus { - border-color: #a78bfa; +.focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } -.focus\:border-purple-500:focus { - border-color: #8b5cf6; +.focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } -.focus\:border-purple-600:focus { - border-color: #7c3aed; +.focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } -.focus\:border-purple-700:focus { - border-color: #6d28d9; +.focus\:translate-y-0:focus { + --tw-translate-y: 0px; } -.focus\:border-purple-800:focus { - border-color: #5b21b6; +.focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } -.focus\:border-purple-900:focus { - border-color: #4c1d95; +.focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } -.focus\:border-pink-50:focus { - border-color: #fdf2f8; +.focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } -.focus\:border-pink-100:focus { - border-color: #fce7f3; +.focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } -.focus\:border-pink-200:focus { - border-color: #fbcfe8; +.focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } -.focus\:border-pink-300:focus { - border-color: #f9a8d4; +.focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } -.focus\:border-pink-400:focus { - border-color: #f472b6; +.focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } -.focus\:border-pink-500:focus { - border-color: #ec4899; +.focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } -.focus\:border-pink-600:focus { - border-color: #db2777; +.focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } -.focus\:border-pink-700:focus { - border-color: #be185d; +.focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } -.focus\:border-pink-800:focus { - border-color: #9d174d; +.focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } -.focus\:border-pink-900:focus { - border-color: #831843; +.focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } -.rounded-none { - border-radius: 0px; +.focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } -.rounded-sm { - border-radius: 0.125rem; +.focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } -.rounded { - border-radius: 0.25rem; +.focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } -.rounded-md { - border-radius: 0.375rem; +.focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } -.rounded-lg { - border-radius: 0.5rem; +.focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } -.rounded-xl { - border-radius: 0.75rem; +.focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } -.rounded-2xl { - border-radius: 1rem; +.focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } -.rounded-3xl { - border-radius: 1.5rem; +.focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } -.rounded-full { - border-radius: 9999px; +.focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } -.rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; +.focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } -.rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; +.focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } -.rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; +.focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } -.rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; +.focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } -.rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; +.focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } -.rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; +.focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } -.rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; +.focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } -.rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; +.focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } -.rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; +.focus\:translate-y-px:focus { + --tw-translate-y: 1px; } -.rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; +.focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } -.rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; +.focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } -.rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; +.focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } -.rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; +.focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } -.rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; +.focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } -.rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; +.focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } -.rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; +.focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } -.rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; +.focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } -.rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; +.focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } -.rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; +.focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } -.rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; +.focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } -.rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; +.focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } -.rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; +.focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } -.rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; +.focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } -.rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; +.focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } -.rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; +.focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } -.rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; +.focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } -.rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; +.focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } -.rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; +.focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } -.rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; +.focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } -.rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; +.focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } -.rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; +.focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } -.rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; +.focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } -.rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; +.focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } -.rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; +.focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } -.rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; +.focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } -.rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; +.focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } -.rounded-tl-none { - border-top-left-radius: 0px; +.focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } -.rounded-tr-none { - border-top-right-radius: 0px; +.focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } -.rounded-br-none { - border-bottom-right-radius: 0px; +.focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } -.rounded-bl-none { - border-bottom-left-radius: 0px; +.focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } -.rounded-tl-sm { - border-top-left-radius: 0.125rem; +.focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } -.rounded-tr-sm { - border-top-right-radius: 0.125rem; +.focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } -.rounded-br-sm { - border-bottom-right-radius: 0.125rem; +.focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } -.rounded-bl-sm { - border-bottom-left-radius: 0.125rem; +.focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } -.rounded-tl { - border-top-left-radius: 0.25rem; +.focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } -.rounded-tr { - border-top-right-radius: 0.25rem; +.focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } -.rounded-br { - border-bottom-right-radius: 0.25rem; +.focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } -.rounded-bl { - border-bottom-left-radius: 0.25rem; +.focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } -.rounded-tl-md { - border-top-left-radius: 0.375rem; +.focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } -.rounded-tr-md { - border-top-right-radius: 0.375rem; +.focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } -.rounded-br-md { - border-bottom-right-radius: 0.375rem; +.focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } -.rounded-bl-md { - border-bottom-left-radius: 0.375rem; +.focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } -.rounded-tl-lg { - border-top-left-radius: 0.5rem; +.focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } -.rounded-tr-lg { - border-top-right-radius: 0.5rem; +.focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } -.rounded-br-lg { - border-bottom-right-radius: 0.5rem; +.focus\:translate-y-full:focus { + --tw-translate-y: 100%; } -.rounded-bl-lg { - border-bottom-left-radius: 0.5rem; +.focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } -.rounded-tl-xl { - border-top-left-radius: 0.75rem; +.focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } -.rounded-tr-xl { - border-top-right-radius: 0.75rem; +.focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } -.rounded-br-xl { - border-bottom-right-radius: 0.75rem; +.focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } -.rounded-bl-xl { - border-bottom-left-radius: 0.75rem; +.focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } -.rounded-tl-2xl { - border-top-left-radius: 1rem; +.focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } -.rounded-tr-2xl { - border-top-right-radius: 1rem; +.focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } -.rounded-br-2xl { - border-bottom-right-radius: 1rem; +.rotate-0 { + --tw-rotate: 0deg; } -.rounded-bl-2xl { - border-bottom-left-radius: 1rem; +.rotate-1 { + --tw-rotate: 1deg; } -.rounded-tl-3xl { - border-top-left-radius: 1.5rem; +.rotate-2 { + --tw-rotate: 2deg; } -.rounded-tr-3xl { - border-top-right-radius: 1.5rem; +.rotate-3 { + --tw-rotate: 3deg; } -.rounded-br-3xl { - border-bottom-right-radius: 1.5rem; +.rotate-6 { + --tw-rotate: 6deg; } -.rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; +.rotate-12 { + --tw-rotate: 12deg; } -.rounded-tl-full { - border-top-left-radius: 9999px; +.rotate-45 { + --tw-rotate: 45deg; } -.rounded-tr-full { - border-top-right-radius: 9999px; +.rotate-90 { + --tw-rotate: 90deg; } -.rounded-br-full { - border-bottom-right-radius: 9999px; +.rotate-180 { + --tw-rotate: 180deg; } -.rounded-bl-full { - border-bottom-left-radius: 9999px; +.-rotate-180 { + --tw-rotate: -180deg; } -.border-solid { - border-style: solid; +.-rotate-90 { + --tw-rotate: -90deg; } -.border-dashed { - border-style: dashed; +.-rotate-45 { + --tw-rotate: -45deg; } -.border-dotted { - border-style: dotted; +.-rotate-12 { + --tw-rotate: -12deg; } -.border-double { - border-style: double; +.-rotate-6 { + --tw-rotate: -6deg; } -.border-none { - border-style: none; +.-rotate-3 { + --tw-rotate: -3deg; } -.border-0 { - border-width: 0px; +.-rotate-2 { + --tw-rotate: -2deg; } -.border-2 { - border-width: 2px; +.-rotate-1 { + --tw-rotate: -1deg; } -.border-4 { - border-width: 4px; +.hover\:rotate-0:hover { + --tw-rotate: 0deg; } -.border-8 { - border-width: 8px; +.hover\:rotate-1:hover { + --tw-rotate: 1deg; } -.border { - border-width: 1px; +.hover\:rotate-2:hover { + --tw-rotate: 2deg; } -.border-t-0 { - border-top-width: 0px; +.hover\:rotate-3:hover { + --tw-rotate: 3deg; } -.border-r-0 { - border-right-width: 0px; +.hover\:rotate-6:hover { + --tw-rotate: 6deg; } -.border-b-0 { - border-bottom-width: 0px; +.hover\:rotate-12:hover { + --tw-rotate: 12deg; } -.border-l-0 { - border-left-width: 0px; +.hover\:rotate-45:hover { + --tw-rotate: 45deg; } -.border-t-2 { - border-top-width: 2px; +.hover\:rotate-90:hover { + --tw-rotate: 90deg; } -.border-r-2 { - border-right-width: 2px; +.hover\:rotate-180:hover { + --tw-rotate: 180deg; } -.border-b-2 { - border-bottom-width: 2px; +.hover\:-rotate-180:hover { + --tw-rotate: -180deg; } -.border-l-2 { - border-left-width: 2px; +.hover\:-rotate-90:hover { + --tw-rotate: -90deg; } -.border-t-4 { - border-top-width: 4px; +.hover\:-rotate-45:hover { + --tw-rotate: -45deg; } -.border-r-4 { - border-right-width: 4px; +.hover\:-rotate-12:hover { + --tw-rotate: -12deg; } -.border-b-4 { - border-bottom-width: 4px; +.hover\:-rotate-6:hover { + --tw-rotate: -6deg; } -.border-l-4 { - border-left-width: 4px; +.hover\:-rotate-3:hover { + --tw-rotate: -3deg; } -.border-t-8 { - border-top-width: 8px; +.hover\:-rotate-2:hover { + --tw-rotate: -2deg; } -.border-r-8 { - border-right-width: 8px; +.hover\:-rotate-1:hover { + --tw-rotate: -1deg; } -.border-b-8 { - border-bottom-width: 8px; +.focus\:rotate-0:focus { + --tw-rotate: 0deg; } -.border-l-8 { - border-left-width: 8px; +.focus\:rotate-1:focus { + --tw-rotate: 1deg; } -.border-t { - border-top-width: 1px; +.focus\:rotate-2:focus { + --tw-rotate: 2deg; } -.border-r { - border-right-width: 1px; +.focus\:rotate-3:focus { + --tw-rotate: 3deg; } -.border-b { - border-bottom-width: 1px; +.focus\:rotate-6:focus { + --tw-rotate: 6deg; } -.border-l { - border-left-width: 1px; +.focus\:rotate-12:focus { + --tw-rotate: 12deg; } -.decoration-slice { - box-decoration-break: slice; +.focus\:rotate-45:focus { + --tw-rotate: 45deg; } -.decoration-clone { - box-decoration-break: clone; +.focus\:rotate-90:focus { + --tw-rotate: 90deg; } -.box-border { - box-sizing: border-box; +.focus\:rotate-180:focus { + --tw-rotate: 180deg; } -.box-content { - box-sizing: content-box; +.focus\:-rotate-180:focus { + --tw-rotate: -180deg; } -.cursor-auto { - cursor: auto; +.focus\:-rotate-90:focus { + --tw-rotate: -90deg; } -.cursor-default { - cursor: default; +.focus\:-rotate-45:focus { + --tw-rotate: -45deg; } -.cursor-pointer { - cursor: pointer; +.focus\:-rotate-12:focus { + --tw-rotate: -12deg; } -.cursor-wait { - cursor: wait; +.focus\:-rotate-6:focus { + --tw-rotate: -6deg; } -.cursor-text { - cursor: text; +.focus\:-rotate-3:focus { + --tw-rotate: -3deg; } -.cursor-move { - cursor: move; +.focus\:-rotate-2:focus { + --tw-rotate: -2deg; } -.cursor-help { - cursor: help; +.focus\:-rotate-1:focus { + --tw-rotate: -1deg; } -.cursor-not-allowed { - cursor: not-allowed; +.skew-x-0 { + --tw-skew-x: 0deg; } -.block { - display: block; +.skew-x-1 { + --tw-skew-x: 1deg; } -.inline-block { - display: inline-block; +.skew-x-2 { + --tw-skew-x: 2deg; } -.inline { - display: inline; +.skew-x-3 { + --tw-skew-x: 3deg; } -.flex { - display: flex; +.skew-x-6 { + --tw-skew-x: 6deg; } -.inline-flex { - display: inline-flex; +.skew-x-12 { + --tw-skew-x: 12deg; } -.table { - display: table; +.-skew-x-12 { + --tw-skew-x: -12deg; } -.inline-table { - display: inline-table; +.-skew-x-6 { + --tw-skew-x: -6deg; } -.table-caption { - display: table-caption; +.-skew-x-3 { + --tw-skew-x: -3deg; } -.table-cell { - display: table-cell; +.-skew-x-2 { + --tw-skew-x: -2deg; } -.table-column { - display: table-column; +.-skew-x-1 { + --tw-skew-x: -1deg; } -.table-column-group { - display: table-column-group; +.skew-y-0 { + --tw-skew-y: 0deg; } -.table-footer-group { - display: table-footer-group; +.skew-y-1 { + --tw-skew-y: 1deg; } -.table-header-group { - display: table-header-group; +.skew-y-2 { + --tw-skew-y: 2deg; } -.table-row-group { - display: table-row-group; +.skew-y-3 { + --tw-skew-y: 3deg; } -.table-row { - display: table-row; +.skew-y-6 { + --tw-skew-y: 6deg; } -.flow-root { - display: flow-root; +.skew-y-12 { + --tw-skew-y: 12deg; } -.grid { - display: grid; +.-skew-y-12 { + --tw-skew-y: -12deg; } -.inline-grid { - display: inline-grid; +.-skew-y-6 { + --tw-skew-y: -6deg; } -.contents { - display: contents; +.-skew-y-3 { + --tw-skew-y: -3deg; } -.list-item { - display: list-item; +.-skew-y-2 { + --tw-skew-y: -2deg; } -.hidden { - display: none; +.-skew-y-1 { + --tw-skew-y: -1deg; } -.flex-row { - flex-direction: row; +.hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } -.flex-row-reverse { - flex-direction: row-reverse; +.hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } -.flex-col { - flex-direction: column; +.hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } -.flex-col-reverse { - flex-direction: column-reverse; +.hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } -.flex-wrap { - flex-wrap: wrap; +.hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } -.flex-wrap-reverse { - flex-wrap: wrap-reverse; +.hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } -.flex-nowrap { - flex-wrap: nowrap; +.hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } -.place-items-start { - place-items: start; +.hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } -.place-items-end { - place-items: end; +.hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } -.place-items-center { - place-items: center; +.hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } -.place-items-stretch { - place-items: stretch; +.hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } -.place-content-center { - place-content: center; +.hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } -.place-content-start { - place-content: start; +.hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } -.place-content-end { - place-content: end; +.hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } -.place-content-between { - place-content: space-between; +.hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } -.place-content-around { - place-content: space-around; +.hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } -.place-content-evenly { - place-content: space-evenly; +.hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } -.place-content-stretch { - place-content: stretch; +.hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } -.place-self-auto { - place-self: auto; +.hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } -.place-self-start { - place-self: start; +.hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } -.place-self-end { - place-self: end; +.hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } -.place-self-center { - place-self: center; +.hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } -.place-self-stretch { - place-self: stretch; +.focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } -.items-start { - align-items: flex-start; +.focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } -.items-end { - align-items: flex-end; +.focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } -.items-center { - align-items: center; +.focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } -.items-baseline { - align-items: baseline; +.focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } -.items-stretch { - align-items: stretch; +.focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } -.content-center { - align-content: center; +.focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } -.content-start { - align-content: flex-start; +.focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } -.content-end { - align-content: flex-end; +.focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } -.content-between { - align-content: space-between; +.focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } -.content-around { - align-content: space-around; +.focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } -.content-evenly { - align-content: space-evenly; +.focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } -.self-auto { - align-self: auto; +.focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } -.self-start { - align-self: flex-start; +.focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } -.self-end { - align-self: flex-end; +.focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } -.self-center { - align-self: center; +.focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } -.self-stretch { - align-self: stretch; +.focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } -.justify-items-start { - justify-items: start; +.focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } -.justify-items-end { - justify-items: end; +.focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } -.justify-items-center { - justify-items: center; +.focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } -.justify-items-stretch { - justify-items: stretch; +.focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } -.justify-start { - justify-content: flex-start; +.focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } -.justify-end { - justify-content: flex-end; +.scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } -.justify-center { - justify-content: center; +.scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } -.justify-between { - justify-content: space-between; +.scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } -.justify-around { - justify-content: space-around; +.scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } -.justify-evenly { - justify-content: space-evenly; +.scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } -.justify-self-auto { - justify-self: auto; +.scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } -.justify-self-start { - justify-self: start; +.scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.justify-self-end { - justify-self: end; +.scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.justify-self-center { - justify-self: center; +.scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.justify-self-stretch { - justify-self: stretch; +.scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.flex-1 { - flex: 1 1 0%; +.scale-x-0 { + --tw-scale-x: 0; } -.flex-auto { - flex: 1 1 auto; +.scale-x-50 { + --tw-scale-x: .5; } -.flex-initial { - flex: 0 1 auto; +.scale-x-75 { + --tw-scale-x: .75; } -.flex-none { - flex: none; +.scale-x-90 { + --tw-scale-x: .9; } -.flex-grow-0 { - flex-grow: 0; +.scale-x-95 { + --tw-scale-x: .95; } -.flex-grow { - flex-grow: 1; +.scale-x-100 { + --tw-scale-x: 1; } -.flex-shrink-0 { - flex-shrink: 0; +.scale-x-105 { + --tw-scale-x: 1.05; } -.flex-shrink { - flex-shrink: 1; +.scale-x-110 { + --tw-scale-x: 1.1; } -.order-1 { - order: 1; +.scale-x-125 { + --tw-scale-x: 1.25; } -.order-2 { - order: 2; +.scale-x-150 { + --tw-scale-x: 1.5; } -.order-3 { - order: 3; +.scale-y-0 { + --tw-scale-y: 0; } -.order-4 { - order: 4; +.scale-y-50 { + --tw-scale-y: .5; } -.order-5 { - order: 5; +.scale-y-75 { + --tw-scale-y: .75; } -.order-6 { - order: 6; +.scale-y-90 { + --tw-scale-y: .9; } -.order-7 { - order: 7; +.scale-y-95 { + --tw-scale-y: .95; } -.order-8 { - order: 8; +.scale-y-100 { + --tw-scale-y: 1; } -.order-9 { - order: 9; +.scale-y-105 { + --tw-scale-y: 1.05; } -.order-10 { - order: 10; +.scale-y-110 { + --tw-scale-y: 1.1; } -.order-11 { - order: 11; +.scale-y-125 { + --tw-scale-y: 1.25; } -.order-12 { - order: 12; +.scale-y-150 { + --tw-scale-y: 1.5; } -.order-first { - order: -9999; +.hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } -.order-last { - order: 9999; +.hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } -.order-none { - order: 0; +.hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } -.float-right { - float: right; +.hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } -.float-left { - float: left; +.hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } -.float-none { - float: none; +.hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } -.clear-left { - clear: left; +.hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.clear-right { - clear: right; +.hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.clear-both { - clear: both; +.hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.clear-none { - clear: none; +.hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +.hover\:scale-x-0:hover { + --tw-scale-x: 0; } -.font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; +.hover\:scale-x-50:hover { + --tw-scale-x: .5; } -.font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +.hover\:scale-x-75:hover { + --tw-scale-x: .75; } -.font-thin { - font-weight: 100; +.hover\:scale-x-90:hover { + --tw-scale-x: .9; } -.font-extralight { - font-weight: 200; +.hover\:scale-x-95:hover { + --tw-scale-x: .95; } -.font-light { - font-weight: 300; +.hover\:scale-x-100:hover { + --tw-scale-x: 1; } -.font-normal { - font-weight: 400; +.hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } -.font-medium { - font-weight: 500; +.hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } -.font-semibold { - font-weight: 600; +.hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } -.font-bold { - font-weight: 700; +.hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } -.font-extrabold { - font-weight: 800; +.hover\:scale-y-0:hover { + --tw-scale-y: 0; } -.font-black { - font-weight: 900; +.hover\:scale-y-50:hover { + --tw-scale-y: .5; } -.h-0 { - height: 0px; +.hover\:scale-y-75:hover { + --tw-scale-y: .75; } -.h-1 { - height: 0.25rem; +.hover\:scale-y-90:hover { + --tw-scale-y: .9; } -.h-2 { - height: 0.5rem; +.hover\:scale-y-95:hover { + --tw-scale-y: .95; } -.h-3 { - height: 0.75rem; +.hover\:scale-y-100:hover { + --tw-scale-y: 1; } -.h-4 { - height: 1rem; +.hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } -.h-5 { - height: 1.25rem; +.hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } -.h-6 { - height: 1.5rem; +.hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } -.h-7 { - height: 1.75rem; +.hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } -.h-8 { - height: 2rem; +.focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } -.h-9 { - height: 2.25rem; +.focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } -.h-10 { - height: 2.5rem; +.focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } -.h-11 { - height: 2.75rem; +.focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } -.h-12 { - height: 3rem; +.focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } -.h-14 { - height: 3.5rem; +.focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } -.h-16 { - height: 4rem; +.focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.h-20 { - height: 5rem; +.focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.h-24 { - height: 6rem; +.focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.h-28 { - height: 7rem; +.focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.h-32 { - height: 8rem; +.focus\:scale-x-0:focus { + --tw-scale-x: 0; } -.h-36 { - height: 9rem; +.focus\:scale-x-50:focus { + --tw-scale-x: .5; } -.h-40 { - height: 10rem; +.focus\:scale-x-75:focus { + --tw-scale-x: .75; } -.h-44 { - height: 11rem; +.focus\:scale-x-90:focus { + --tw-scale-x: .9; } -.h-48 { - height: 12rem; +.focus\:scale-x-95:focus { + --tw-scale-x: .95; } -.h-52 { - height: 13rem; +.focus\:scale-x-100:focus { + --tw-scale-x: 1; } -.h-56 { - height: 14rem; +.focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } -.h-60 { - height: 15rem; +.focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } -.h-64 { - height: 16rem; +.focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } -.h-72 { - height: 18rem; +.focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } -.h-80 { - height: 20rem; +.focus\:scale-y-0:focus { + --tw-scale-y: 0; } -.h-96 { - height: 24rem; +.focus\:scale-y-50:focus { + --tw-scale-y: .5; } -.h-auto { - height: auto; +.focus\:scale-y-75:focus { + --tw-scale-y: .75; } -.h-px { - height: 1px; +.focus\:scale-y-90:focus { + --tw-scale-y: .9; } -.h-0\.5 { - height: 0.125rem; +.focus\:scale-y-95:focus { + --tw-scale-y: .95; } -.h-1\.5 { - height: 0.375rem; +.focus\:scale-y-100:focus { + --tw-scale-y: 1; } -.h-2\.5 { - height: 0.625rem; +.focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } -.h-3\.5 { - height: 0.875rem; +.focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } -.h-1\/2 { - height: 50%; +.focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } -.h-1\/3 { - height: 33.333333%; +.focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } -.h-2\/3 { - height: 66.666667%; +@keyframes spin { + to { + transform: rotate(360deg); + } } -.h-1\/4 { - height: 25%; +@keyframes ping { + 75%, 100% { + transform: scale(2); + opacity: 0; + } } -.h-2\/4 { - height: 50%; +@keyframes pulse { + 50% { + opacity: .5; + } } -.h-3\/4 { - height: 75%; -} +@keyframes bounce { + 0%, 100% { + transform: translateY(-25%); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } -.h-1\/5 { - height: 20%; + 50% { + transform: none; + animation-timing-function: cubic-bezier(0,0,0.2,1); + } } -.h-2\/5 { - height: 40%; +.animate-none { + animation: none; } -.h-3\/5 { - height: 60%; +.animate-spin { + animation: spin 1s linear infinite; } -.h-4\/5 { - height: 80%; +.animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } -.h-1\/6 { - height: 16.666667%; +.animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } -.h-2\/6 { - height: 33.333333%; +.animate-bounce { + animation: bounce 1s infinite; } -.h-3\/6 { - height: 50%; +.cursor-auto { + cursor: auto; } -.h-4\/6 { - height: 66.666667%; +.cursor-default { + cursor: default; } -.h-5\/6 { - height: 83.333333%; +.cursor-pointer { + cursor: pointer; } -.h-full { - height: 100%; +.cursor-wait { + cursor: wait; } -.h-screen { - height: 100vh; +.cursor-text { + cursor: text; } -.text-xs { - font-size: 0.75rem; - line-height: 1rem; +.cursor-move { + cursor: move; } -.text-sm { - font-size: 0.875rem; - line-height: 1.25rem; +.cursor-help { + cursor: help; } -.text-base { - font-size: 1rem; - line-height: 1.5rem; +.cursor-not-allowed { + cursor: not-allowed; } -.text-lg { - font-size: 1.125rem; - line-height: 1.75rem; +.select-none { + user-select: none; } -.text-xl { - font-size: 1.25rem; - line-height: 1.75rem; +.select-text { + user-select: text; } -.text-2xl { - font-size: 1.5rem; - line-height: 2rem; +.select-all { + user-select: all; } -.text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; +.select-auto { + user-select: auto; } -.text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; +.resize-none { + resize: none; } -.text-5xl { - font-size: 3rem; - line-height: 1; +.resize-y { + resize: vertical; } -.text-6xl { - font-size: 3.75rem; - line-height: 1; +.resize-x { + resize: horizontal; } -.text-7xl { - font-size: 4.5rem; - line-height: 1; +.resize { + resize: both; } -.text-8xl { - font-size: 6rem; - line-height: 1; +.list-inside { + list-style-position: inside; } -.text-9xl { - font-size: 8rem; - line-height: 1; +.list-outside { + list-style-position: outside; } -.leading-3 { - line-height: .75rem; +.list-none { + list-style-type: none; } -.leading-4 { - line-height: 1rem; +.list-disc { + list-style-type: disc; } -.leading-5 { - line-height: 1.25rem; +.list-decimal { + list-style-type: decimal; } -.leading-6 { - line-height: 1.5rem; +.appearance-none { + appearance: none; } -.leading-7 { - line-height: 1.75rem; +.auto-cols-auto { + grid-auto-columns: auto; } -.leading-8 { - line-height: 2rem; +.auto-cols-min { + grid-auto-columns: min-content; } -.leading-9 { - line-height: 2.25rem; +.auto-cols-max { + grid-auto-columns: max-content; } -.leading-10 { - line-height: 2.5rem; +.auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } -.leading-none { - line-height: 1; +.grid-flow-row { + grid-auto-flow: row; } -.leading-tight { - line-height: 1.25; +.grid-flow-col { + grid-auto-flow: column; } -.leading-snug { - line-height: 1.375; +.grid-flow-row-dense { + grid-auto-flow: row dense; } -.leading-normal { - line-height: 1.5; +.grid-flow-col-dense { + grid-auto-flow: column dense; } -.leading-relaxed { - line-height: 1.625; +.auto-rows-auto { + grid-auto-rows: auto; } -.leading-loose { - line-height: 2; +.auto-rows-min { + grid-auto-rows: min-content; } -.list-inside { - list-style-position: inside; +.auto-rows-max { + grid-auto-rows: max-content; } -.list-outside { - list-style-position: outside; +.auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } -.list-none { - list-style-type: none; +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } -.list-disc { - list-style-type: disc; +.grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } -.list-decimal { - list-style-type: decimal; +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } -.m-0 { - margin: 0px; +.grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } -.m-1 { - margin: 0.25rem; +.grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } -.m-2 { - margin: 0.5rem; +.grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } -.m-3 { - margin: 0.75rem; +.grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } -.m-4 { - margin: 1rem; +.grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } -.m-5 { - margin: 1.25rem; +.grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } -.m-6 { - margin: 1.5rem; +.grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } -.m-7 { - margin: 1.75rem; +.grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } -.m-8 { - margin: 2rem; +.grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } -.m-9 { - margin: 2.25rem; +.grid-cols-none { + grid-template-columns: none; } -.m-10 { - margin: 2.5rem; +.grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } -.m-11 { - margin: 2.75rem; +.grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } -.m-12 { - margin: 3rem; +.grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } -.m-14 { - margin: 3.5rem; +.grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } -.m-16 { - margin: 4rem; +.grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } -.m-20 { - margin: 5rem; +.grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } -.m-24 { - margin: 6rem; +.grid-rows-none { + grid-template-rows: none; } -.m-28 { - margin: 7rem; +.flex-row { + flex-direction: row; } -.m-32 { - margin: 8rem; +.flex-row-reverse { + flex-direction: row-reverse; } -.m-36 { - margin: 9rem; +.flex-col { + flex-direction: column; } -.m-40 { - margin: 10rem; +.flex-col-reverse { + flex-direction: column-reverse; } -.m-44 { - margin: 11rem; -} - -.m-48 { - margin: 12rem; +.flex-wrap { + flex-wrap: wrap; } -.m-52 { - margin: 13rem; +.flex-wrap-reverse { + flex-wrap: wrap-reverse; } -.m-56 { - margin: 14rem; +.flex-nowrap { + flex-wrap: nowrap; } -.m-60 { - margin: 15rem; +.place-content-center { + place-content: center; } -.m-64 { - margin: 16rem; +.place-content-start { + place-content: start; } -.m-72 { - margin: 18rem; +.place-content-end { + place-content: end; } -.m-80 { - margin: 20rem; +.place-content-between { + place-content: space-between; } -.m-96 { - margin: 24rem; +.place-content-around { + place-content: space-around; } -.m-auto { - margin: auto; +.place-content-evenly { + place-content: space-evenly; } -.m-px { - margin: 1px; +.place-content-stretch { + place-content: stretch; } -.m-0\.5 { - margin: 0.125rem; +.place-items-start { + place-items: start; } -.m-1\.5 { - margin: 0.375rem; +.place-items-end { + place-items: end; } -.m-2\.5 { - margin: 0.625rem; +.place-items-center { + place-items: center; } -.m-3\.5 { - margin: 0.875rem; +.place-items-stretch { + place-items: stretch; } -.-m-0 { - margin: 0px; +.content-center { + align-content: center; } -.-m-1 { - margin: -0.25rem; +.content-start { + align-content: flex-start; } -.-m-2 { - margin: -0.5rem; +.content-end { + align-content: flex-end; } -.-m-3 { - margin: -0.75rem; +.content-between { + align-content: space-between; } -.-m-4 { - margin: -1rem; +.content-around { + align-content: space-around; } -.-m-5 { - margin: -1.25rem; +.content-evenly { + align-content: space-evenly; } -.-m-6 { - margin: -1.5rem; +.items-start { + align-items: flex-start; } -.-m-7 { - margin: -1.75rem; +.items-end { + align-items: flex-end; } -.-m-8 { - margin: -2rem; +.items-center { + align-items: center; } -.-m-9 { - margin: -2.25rem; +.items-baseline { + align-items: baseline; } -.-m-10 { - margin: -2.5rem; +.items-stretch { + align-items: stretch; } -.-m-11 { - margin: -2.75rem; +.justify-start { + justify-content: flex-start; } -.-m-12 { - margin: -3rem; +.justify-end { + justify-content: flex-end; } -.-m-14 { - margin: -3.5rem; +.justify-center { + justify-content: center; } -.-m-16 { - margin: -4rem; +.justify-between { + justify-content: space-between; } -.-m-20 { - margin: -5rem; +.justify-around { + justify-content: space-around; } -.-m-24 { - margin: -6rem; +.justify-evenly { + justify-content: space-evenly; } -.-m-28 { - margin: -7rem; +.justify-items-start { + justify-items: start; } -.-m-32 { - margin: -8rem; +.justify-items-end { + justify-items: end; } -.-m-36 { - margin: -9rem; +.justify-items-center { + justify-items: center; } -.-m-40 { - margin: -10rem; +.justify-items-stretch { + justify-items: stretch; } -.-m-44 { - margin: -11rem; +.gap-0 { + gap: 0px; } -.-m-48 { - margin: -12rem; +.gap-1 { + gap: 0.25rem; } -.-m-52 { - margin: -13rem; +.gap-2 { + gap: 0.5rem; } -.-m-56 { - margin: -14rem; +.gap-3 { + gap: 0.75rem; } -.-m-60 { - margin: -15rem; +.gap-4 { + gap: 1rem; } -.-m-64 { - margin: -16rem; +.gap-5 { + gap: 1.25rem; } -.-m-72 { - margin: -18rem; +.gap-6 { + gap: 1.5rem; } -.-m-80 { - margin: -20rem; +.gap-7 { + gap: 1.75rem; } -.-m-96 { - margin: -24rem; +.gap-8 { + gap: 2rem; } -.-m-px { - margin: -1px; +.gap-9 { + gap: 2.25rem; } -.-m-0\.5 { - margin: -0.125rem; +.gap-10 { + gap: 2.5rem; } -.-m-1\.5 { - margin: -0.375rem; +.gap-11 { + gap: 2.75rem; } -.-m-2\.5 { - margin: -0.625rem; +.gap-12 { + gap: 3rem; } -.-m-3\.5 { - margin: -0.875rem; +.gap-14 { + gap: 3.5rem; } -.my-0 { - margin-top: 0px; - margin-bottom: 0px; +.gap-16 { + gap: 4rem; } -.mx-0 { - margin-left: 0px; - margin-right: 0px; +.gap-20 { + gap: 5rem; } -.my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; +.gap-24 { + gap: 6rem; } -.mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; +.gap-28 { + gap: 7rem; } -.my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; +.gap-32 { + gap: 8rem; } -.mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; +.gap-36 { + gap: 9rem; } -.my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; +.gap-40 { + gap: 10rem; } -.mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; +.gap-44 { + gap: 11rem; } -.my-4 { - margin-top: 1rem; - margin-bottom: 1rem; +.gap-48 { + gap: 12rem; } -.mx-4 { - margin-left: 1rem; - margin-right: 1rem; +.gap-52 { + gap: 13rem; } -.my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; +.gap-56 { + gap: 14rem; } -.mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; +.gap-60 { + gap: 15rem; } -.my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; +.gap-64 { + gap: 16rem; } -.mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; +.gap-72 { + gap: 18rem; } -.my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; +.gap-80 { + gap: 20rem; } -.mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; +.gap-96 { + gap: 24rem; } -.my-8 { - margin-top: 2rem; - margin-bottom: 2rem; +.gap-px { + gap: 1px; } -.mx-8 { - margin-left: 2rem; - margin-right: 2rem; +.gap-0\.5 { + gap: 0.125rem; } -.my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; +.gap-1\.5 { + gap: 0.375rem; } -.mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; +.gap-2\.5 { + gap: 0.625rem; } -.my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; +.gap-3\.5 { + gap: 0.875rem; } -.mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; +.gap-x-0 { + column-gap: 0px; } -.my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; +.gap-x-1 { + column-gap: 0.25rem; } -.mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; +.gap-x-2 { + column-gap: 0.5rem; } -.my-12 { - margin-top: 3rem; - margin-bottom: 3rem; +.gap-x-3 { + column-gap: 0.75rem; } -.mx-12 { - margin-left: 3rem; - margin-right: 3rem; +.gap-x-4 { + column-gap: 1rem; } -.my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; +.gap-x-5 { + column-gap: 1.25rem; } -.mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; +.gap-x-6 { + column-gap: 1.5rem; } -.my-16 { - margin-top: 4rem; - margin-bottom: 4rem; +.gap-x-7 { + column-gap: 1.75rem; } -.mx-16 { - margin-left: 4rem; - margin-right: 4rem; +.gap-x-8 { + column-gap: 2rem; } -.my-20 { - margin-top: 5rem; - margin-bottom: 5rem; +.gap-x-9 { + column-gap: 2.25rem; } -.mx-20 { - margin-left: 5rem; - margin-right: 5rem; +.gap-x-10 { + column-gap: 2.5rem; } -.my-24 { - margin-top: 6rem; - margin-bottom: 6rem; +.gap-x-11 { + column-gap: 2.75rem; } -.mx-24 { - margin-left: 6rem; - margin-right: 6rem; +.gap-x-12 { + column-gap: 3rem; } -.my-28 { - margin-top: 7rem; - margin-bottom: 7rem; +.gap-x-14 { + column-gap: 3.5rem; } -.mx-28 { - margin-left: 7rem; - margin-right: 7rem; +.gap-x-16 { + column-gap: 4rem; } -.my-32 { - margin-top: 8rem; - margin-bottom: 8rem; +.gap-x-20 { + column-gap: 5rem; } -.mx-32 { - margin-left: 8rem; - margin-right: 8rem; +.gap-x-24 { + column-gap: 6rem; } -.my-36 { - margin-top: 9rem; - margin-bottom: 9rem; +.gap-x-28 { + column-gap: 7rem; } -.mx-36 { - margin-left: 9rem; - margin-right: 9rem; +.gap-x-32 { + column-gap: 8rem; } -.my-40 { - margin-top: 10rem; - margin-bottom: 10rem; +.gap-x-36 { + column-gap: 9rem; } -.mx-40 { - margin-left: 10rem; - margin-right: 10rem; +.gap-x-40 { + column-gap: 10rem; } -.my-44 { - margin-top: 11rem; - margin-bottom: 11rem; +.gap-x-44 { + column-gap: 11rem; } -.mx-44 { - margin-left: 11rem; - margin-right: 11rem; +.gap-x-48 { + column-gap: 12rem; } -.my-48 { - margin-top: 12rem; - margin-bottom: 12rem; +.gap-x-52 { + column-gap: 13rem; } -.mx-48 { - margin-left: 12rem; - margin-right: 12rem; +.gap-x-56 { + column-gap: 14rem; } -.my-52 { - margin-top: 13rem; - margin-bottom: 13rem; +.gap-x-60 { + column-gap: 15rem; } -.mx-52 { - margin-left: 13rem; - margin-right: 13rem; +.gap-x-64 { + column-gap: 16rem; } -.my-56 { - margin-top: 14rem; - margin-bottom: 14rem; +.gap-x-72 { + column-gap: 18rem; } -.mx-56 { - margin-left: 14rem; - margin-right: 14rem; +.gap-x-80 { + column-gap: 20rem; } -.my-60 { - margin-top: 15rem; - margin-bottom: 15rem; +.gap-x-96 { + column-gap: 24rem; } -.mx-60 { - margin-left: 15rem; - margin-right: 15rem; +.gap-x-px { + column-gap: 1px; } -.my-64 { - margin-top: 16rem; - margin-bottom: 16rem; +.gap-x-0\.5 { + column-gap: 0.125rem; } -.mx-64 { - margin-left: 16rem; - margin-right: 16rem; +.gap-x-1\.5 { + column-gap: 0.375rem; } -.my-72 { - margin-top: 18rem; - margin-bottom: 18rem; +.gap-x-2\.5 { + column-gap: 0.625rem; } -.mx-72 { - margin-left: 18rem; - margin-right: 18rem; +.gap-x-3\.5 { + column-gap: 0.875rem; } -.my-80 { - margin-top: 20rem; - margin-bottom: 20rem; +.gap-y-0 { + row-gap: 0px; } -.mx-80 { - margin-left: 20rem; - margin-right: 20rem; +.gap-y-1 { + row-gap: 0.25rem; } -.my-96 { - margin-top: 24rem; - margin-bottom: 24rem; +.gap-y-2 { + row-gap: 0.5rem; } -.mx-96 { - margin-left: 24rem; - margin-right: 24rem; +.gap-y-3 { + row-gap: 0.75rem; } -.my-auto { - margin-top: auto; - margin-bottom: auto; +.gap-y-4 { + row-gap: 1rem; } -.mx-auto { - margin-left: auto; - margin-right: auto; +.gap-y-5 { + row-gap: 1.25rem; } -.my-px { - margin-top: 1px; - margin-bottom: 1px; +.gap-y-6 { + row-gap: 1.5rem; } -.mx-px { - margin-left: 1px; - margin-right: 1px; +.gap-y-7 { + row-gap: 1.75rem; } -.my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; +.gap-y-8 { + row-gap: 2rem; } -.mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; +.gap-y-9 { + row-gap: 2.25rem; } -.my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; +.gap-y-10 { + row-gap: 2.5rem; } -.mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; +.gap-y-11 { + row-gap: 2.75rem; } -.my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; +.gap-y-12 { + row-gap: 3rem; } -.mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; +.gap-y-14 { + row-gap: 3.5rem; } -.my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; +.gap-y-16 { + row-gap: 4rem; } -.mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; +.gap-y-20 { + row-gap: 5rem; } -.-my-0 { - margin-top: 0px; - margin-bottom: 0px; +.gap-y-24 { + row-gap: 6rem; } -.-mx-0 { - margin-left: 0px; - margin-right: 0px; +.gap-y-28 { + row-gap: 7rem; } -.-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; +.gap-y-32 { + row-gap: 8rem; } -.-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; +.gap-y-36 { + row-gap: 9rem; } -.-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; +.gap-y-40 { + row-gap: 10rem; } -.-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; +.gap-y-44 { + row-gap: 11rem; } -.-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; +.gap-y-48 { + row-gap: 12rem; } -.-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; +.gap-y-52 { + row-gap: 13rem; } -.-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; +.gap-y-56 { + row-gap: 14rem; } -.-mx-4 { - margin-left: -1rem; - margin-right: -1rem; +.gap-y-60 { + row-gap: 15rem; } -.-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; +.gap-y-64 { + row-gap: 16rem; } -.-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; +.gap-y-72 { + row-gap: 18rem; } -.-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; +.gap-y-80 { + row-gap: 20rem; } -.-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; +.gap-y-96 { + row-gap: 24rem; } -.-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; +.gap-y-px { + row-gap: 1px; } -.-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; +.gap-y-0\.5 { + row-gap: 0.125rem; } -.-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; +.gap-y-1\.5 { + row-gap: 0.375rem; } -.-mx-8 { - margin-left: -2rem; - margin-right: -2rem; +.gap-y-2\.5 { + row-gap: 0.625rem; } -.-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; +.gap-y-3\.5 { + row-gap: 0.875rem; } -.-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; +.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)); } -.-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; +.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))); } -.-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; +.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)); } -.-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; +.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))); } -.-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; +.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)); } -.-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; +.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))); } -.-mx-12 { - margin-left: -3rem; - margin-right: -3rem; +.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)); } -.-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; +.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))); } -.-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; +.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)); } -.-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; +.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))); } -.-mx-16 { - margin-left: -4rem; - margin-right: -4rem; +.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)); } -.-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; +.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))); } -.-mx-20 { - margin-left: -5rem; - margin-right: -5rem; +.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)); } -.-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; +.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))); } -.-mx-24 { - margin-left: -6rem; - margin-right: -6rem; +.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)); } -.-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; +.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))); } -.-mx-28 { - margin-left: -7rem; - margin-right: -7rem; +.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)); } -.-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; +.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))); } -.-mx-32 { - margin-left: -8rem; - margin-right: -8rem; +.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)); } -.-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; +.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))); } -.-mx-36 { - margin-left: -9rem; - margin-right: -9rem; +.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)); } -.-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; +.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))); } -.-mx-40 { - margin-left: -10rem; - margin-right: -10rem; +.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)); } -.-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; +.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))); } -.-mx-44 { - margin-left: -11rem; - margin-right: -11rem; +.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)); } -.-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; +.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))); } -.-mx-48 { - margin-left: -12rem; - margin-right: -12rem; +.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)); } -.-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; +.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))); } -.-mx-52 { - margin-left: -13rem; - margin-right: -13rem; +.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)); } -.-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; +.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))); } -.-mx-56 { - margin-left: -14rem; - margin-right: -14rem; +.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)); } -.-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; +.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))); } -.-mx-60 { - margin-left: -15rem; - margin-right: -15rem; +.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)); } -.-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; +.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))); } -.-mx-64 { - margin-left: -16rem; - margin-right: -16rem; +.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)); } -.-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; +.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))); } -.-mx-72 { - margin-left: -18rem; - margin-right: -18rem; +.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)); } -.-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; +.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))); } -.-mx-80 { - margin-left: -20rem; - margin-right: -20rem; +.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)); } -.-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; +.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))); } -.-mx-96 { - margin-left: -24rem; - margin-right: -24rem; +.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)); } -.-my-px { - margin-top: -1px; - margin-bottom: -1px; +.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))); } -.-mx-px { - margin-left: -1px; - margin-right: -1px; +.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)); } -.-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; +.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))); } -.-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; +.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)); } -.-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; +.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))); } -.-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; +.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)); } -.-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; +.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))); } -.-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; +.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)); } -.-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; +.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))); } -.-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; +.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)); } -.mt-0 { - margin-top: 0px; +.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))); } -.mr-0 { - margin-right: 0px; +.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)); } -.mb-0 { - margin-bottom: 0px; +.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))); } -.ml-0 { - margin-left: 0px; +.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)); } -.mt-1 { - margin-top: 0.25rem; +.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))); } -.mr-1 { - margin-right: 0.25rem; +.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)); } -.mb-1 { - margin-bottom: 0.25rem; +.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))); } -.ml-1 { - margin-left: 0.25rem; +.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)); } -.mt-2 { - margin-top: 0.5rem; +.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))); } -.mr-2 { - margin-right: 0.5rem; +.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)); } -.mb-2 { - margin-bottom: 0.5rem; +.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))); } -.ml-2 { - margin-left: 0.5rem; +.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)); } -.mt-3 { - margin-top: 0.75rem; +.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))); } -.mr-3 { - margin-right: 0.75rem; +.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)); } -.mb-3 { - margin-bottom: 0.75rem; +.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))); } -.ml-3 { - margin-left: 0.75rem; +.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)); } -.mt-4 { - margin-top: 1rem; +.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))); } -.mr-4 { - margin-right: 1rem; +.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)); } -.mb-4 { - margin-bottom: 1rem; +.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))); } -.ml-4 { - margin-left: 1rem; +.-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)); } -.mt-5 { - margin-top: 1.25rem; +.-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))); } -.mr-5 { - margin-right: 1.25rem; +.-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)); } -.mb-5 { - margin-bottom: 1.25rem; +.-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))); } -.ml-5 { - margin-left: 1.25rem; +.-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)); } -.mt-6 { - margin-top: 1.5rem; +.-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))); } -.mr-6 { - margin-right: 1.5rem; +.-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)); } -.mb-6 { - margin-bottom: 1.5rem; +.-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))); } -.ml-6 { - margin-left: 1.5rem; +.-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)); } -.mt-7 { - margin-top: 1.75rem; +.-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))); } -.mr-7 { - margin-right: 1.75rem; +.-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)); } -.mb-7 { - margin-bottom: 1.75rem; +.-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))); } -.ml-7 { - margin-left: 1.75rem; +.-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)); } -.mt-8 { - margin-top: 2rem; +.-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))); } -.mr-8 { - margin-right: 2rem; +.-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)); } -.mb-8 { - margin-bottom: 2rem; +.-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))); } -.ml-8 { - margin-left: 2rem; +.-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)); } -.mt-9 { - margin-top: 2.25rem; +.-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))); } -.mr-9 { - margin-right: 2.25rem; +.-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)); } -.mb-9 { - margin-bottom: 2.25rem; +.-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))); } -.ml-9 { - margin-left: 2.25rem; +.-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)); } -.mt-10 { - margin-top: 2.5rem; +.-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))); } -.mr-10 { - margin-right: 2.5rem; +.-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)); } -.mb-10 { - margin-bottom: 2.5rem; +.-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))); } -.ml-10 { - margin-left: 2.5rem; +.-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)); } -.mt-11 { - margin-top: 2.75rem; +.-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))); } -.mr-11 { - margin-right: 2.75rem; +.-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)); } -.mb-11 { - margin-bottom: 2.75rem; +.-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))); } -.ml-11 { - margin-left: 2.75rem; +.-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)); } -.mt-12 { - margin-top: 3rem; +.-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))); } -.mr-12 { - margin-right: 3rem; +.-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)); } -.mb-12 { - margin-bottom: 3rem; +.-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))); } -.ml-12 { - margin-left: 3rem; +.-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)); } -.mt-14 { - margin-top: 3.5rem; +.-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))); } -.mr-14 { - margin-right: 3.5rem; +.-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)); } -.mb-14 { - margin-bottom: 3.5rem; +.-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))); } -.ml-14 { - margin-left: 3.5rem; +.-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)); } -.mt-16 { - margin-top: 4rem; +.-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))); } -.mr-16 { - margin-right: 4rem; +.-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)); } -.mb-16 { - margin-bottom: 4rem; +.-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))); } -.ml-16 { - margin-left: 4rem; +.-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)); } -.mt-20 { - margin-top: 5rem; +.-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))); } -.mr-20 { - margin-right: 5rem; +.-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)); } -.mb-20 { - margin-bottom: 5rem; +.-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))); } -.ml-20 { - margin-left: 5rem; +.-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)); } -.mt-24 { - margin-top: 6rem; +.-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))); } -.mr-24 { - margin-right: 6rem; +.-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)); } -.mb-24 { - margin-bottom: 6rem; +.-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))); } -.ml-24 { - margin-left: 6rem; +.-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)); } -.mt-28 { - margin-top: 7rem; +.-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))); } -.mr-28 { - margin-right: 7rem; +.-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)); } -.mb-28 { - margin-bottom: 7rem; +.-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))); } -.ml-28 { - margin-left: 7rem; +.-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)); } -.mt-32 { - margin-top: 8rem; +.-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))); } -.mr-32 { - margin-right: 8rem; +.-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)); } -.mb-32 { - margin-bottom: 8rem; +.-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))); } -.ml-32 { - margin-left: 8rem; +.-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)); } -.mt-36 { - margin-top: 9rem; +.-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))); } -.mr-36 { - margin-right: 9rem; +.-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)); } -.mb-36 { - margin-bottom: 9rem; +.-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))); } -.ml-36 { - margin-left: 9rem; +.-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)); } -.mt-40 { - margin-top: 10rem; +.-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))); } -.mr-40 { - margin-right: 10rem; +.-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)); } -.mb-40 { - margin-bottom: 10rem; +.-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))); } -.ml-40 { - margin-left: 10rem; +.-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)); } -.mt-44 { - margin-top: 11rem; +.-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))); } -.mr-44 { - margin-right: 11rem; +.-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)); } -.mb-44 { - margin-bottom: 11rem; +.-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))); } -.ml-44 { - margin-left: 11rem; +.-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)); } -.mt-48 { - margin-top: 12rem; +.-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))); } -.mr-48 { - margin-right: 12rem; +.space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } -.mb-48 { - margin-bottom: 12rem; +.space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } -.ml-48 { - margin-left: 12rem; +.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)); } -.mt-52 { - margin-top: 13rem; +.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))); } -.mr-52 { - margin-right: 13rem; +.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)); } -.mb-52 { - margin-bottom: 13rem; +.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))); } -.ml-52 { - margin-left: 13rem; +.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)); } -.mt-56 { - margin-top: 14rem; +.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))); } -.mr-56 { - margin-right: 14rem; +.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)); } -.mb-56 { - margin-bottom: 14rem; +.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))); } -.ml-56 { - margin-left: 14rem; +.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)); } -.mt-60 { - margin-top: 15rem; +.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))); } -.mr-60 { - margin-right: 15rem; +.divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } -.mb-60 { - margin-bottom: 15rem; +.divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } -.ml-60 { - margin-left: 15rem; +.divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } -.mt-64 { - margin-top: 16rem; +.divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } -.mr-64 { - margin-right: 16rem; +.divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } -.mb-64 { - margin-bottom: 16rem; +.divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } -.ml-64 { - margin-left: 16rem; +.divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } -.mt-72 { - margin-top: 18rem; +.divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } -.mr-72 { - margin-right: 18rem; +.divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } -.mb-72 { - margin-bottom: 18rem; +.divide-black > :not([hidden]) ~ :not([hidden]) { + border-color: #000; } -.ml-72 { - margin-left: 18rem; +.divide-white > :not([hidden]) ~ :not([hidden]) { + border-color: #fff; } -.mt-80 { - margin-top: 20rem; +.divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9fafb; } -.mr-80 { - margin-right: 20rem; +.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #f3f4f6; } -.mb-80 { - margin-bottom: 20rem; +.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #e5e7eb; } -.ml-80 { - margin-left: 20rem; +.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1d5db; } -.mt-96 { - margin-top: 24rem; +.divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #9ca3af; } -.mr-96 { - margin-right: 24rem; +.divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6b7280; } -.mb-96 { - margin-bottom: 24rem; +.divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4b5563; } -.ml-96 { - margin-left: 24rem; +.divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #374151; } -.mt-auto { - margin-top: auto; +.divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1f2937; } -.mr-auto { - margin-right: auto; +.divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #111827; } -.mb-auto { - margin-bottom: auto; +.divide-red-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef2f2; } -.ml-auto { - margin-left: auto; +.divide-red-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fee2e2; } -.mt-px { - margin-top: 1px; +.divide-red-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fecaca; } -.mr-px { - margin-right: 1px; +.divide-red-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fca5a5; } -.mb-px { - margin-bottom: 1px; +.divide-red-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f87171; } -.ml-px { - margin-left: 1px; +.divide-red-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ef4444; } -.mt-0\.5 { - margin-top: 0.125rem; +.divide-red-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #dc2626; } -.mr-0\.5 { - margin-right: 0.125rem; +.divide-red-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b91c1c; } -.mb-0\.5 { - margin-bottom: 0.125rem; +.divide-red-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #991b1b; } -.ml-0\.5 { - margin-left: 0.125rem; +.divide-red-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #7f1d1d; } -.mt-1\.5 { - margin-top: 0.375rem; +.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fffbeb; } -.mr-1\.5 { - margin-right: 0.375rem; +.divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef3c7; } -.mb-1\.5 { - margin-bottom: 0.375rem; +.divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fde68a; } -.ml-1\.5 { - margin-left: 0.375rem; +.divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fcd34d; } -.mt-2\.5 { - margin-top: 0.625rem; +.divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbbf24; } -.mr-2\.5 { - margin-right: 0.625rem; +.divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #f59e0b; } -.mb-2\.5 { - margin-bottom: 0.625rem; +.divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #d97706; } -.ml-2\.5 { - margin-left: 0.625rem; +.divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b45309; } -.mt-3\.5 { - margin-top: 0.875rem; +.divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #92400e; } -.mr-3\.5 { - margin-right: 0.875rem; +.divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #78350f; } -.mb-3\.5 { - margin-bottom: 0.875rem; +.divide-green-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #ecfdf5; } -.ml-3\.5 { - margin-left: 0.875rem; +.divide-green-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1fae5; } -.-mt-0 { - margin-top: 0px; +.divide-green-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #a7f3d0; } -.-mr-0 { - margin-right: 0px; +.divide-green-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #6ee7b7; } -.-mb-0 { - margin-bottom: 0px; +.divide-green-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #34d399; } -.-ml-0 { - margin-left: 0px; +.divide-green-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #10b981; } -.-mt-1 { - margin-top: -0.25rem; +.divide-green-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #059669; } -.-mr-1 { - margin-right: -0.25rem; +.divide-green-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #047857; } -.-mb-1 { - margin-bottom: -0.25rem; +.divide-green-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #065f46; } -.-ml-1 { - margin-left: -0.25rem; +.divide-green-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #064e3b; } -.-mt-2 { - margin-top: -0.5rem; +.divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eff6ff; } -.-mr-2 { - margin-right: -0.5rem; +.divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #dbeafe; } -.-mb-2 { - margin-bottom: -0.5rem; +.divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #bfdbfe; } -.-ml-2 { - margin-left: -0.5rem; +.divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #93c5fd; } -.-mt-3 { - margin-top: -0.75rem; +.divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #60a5fa; } -.-mr-3 { - margin-right: -0.75rem; +.divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #3b82f6; } -.-mb-3 { - margin-bottom: -0.75rem; +.divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #2563eb; } -.-ml-3 { - margin-left: -0.75rem; +.divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #1d4ed8; } -.-mt-4 { - margin-top: -1rem; +.divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e40af; } -.-mr-4 { - margin-right: -1rem; +.divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e3a8a; } -.-mb-4 { - margin-bottom: -1rem; +.divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eef2ff; } -.-ml-4 { - margin-left: -1rem; +.divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #e0e7ff; } -.-mt-5 { - margin-top: -1.25rem; +.divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #c7d2fe; } -.-mr-5 { - margin-right: -1.25rem; +.divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #a5b4fc; } -.-mb-5 { - margin-bottom: -1.25rem; +.divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #818cf8; } -.-ml-5 { - margin-left: -1.25rem; +.divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6366f1; } -.-mt-6 { - margin-top: -1.5rem; +.divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4f46e5; } -.-mr-6 { - margin-right: -1.5rem; +.divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #4338ca; } -.-mb-6 { - margin-bottom: -1.5rem; +.divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #3730a3; } -.-ml-6 { - margin-left: -1.5rem; +.divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #312e81; } -.-mt-7 { - margin-top: -1.75rem; +.divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f5f3ff; } -.-mr-7 { - margin-right: -1.75rem; +.divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #ede9fe; } -.-mb-7 { - margin-bottom: -1.75rem; +.divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #ddd6fe; } -.-ml-7 { - margin-left: -1.75rem; +.divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #c4b5fd; } -.-mt-8 { - margin-top: -2rem; +.divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #a78bfa; } -.-mr-8 { - margin-right: -2rem; +.divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #8b5cf6; } -.-mb-8 { - margin-bottom: -2rem; +.divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #7c3aed; } -.-ml-8 { - margin-left: -2rem; +.divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #6d28d9; } -.-mt-9 { - margin-top: -2.25rem; +.divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #5b21b6; } -.-mr-9 { - margin-right: -2.25rem; +.divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #4c1d95; } -.-mb-9 { - margin-bottom: -2.25rem; +.divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fdf2f8; } -.-ml-9 { - margin-left: -2.25rem; +.divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fce7f3; } -.-mt-10 { - margin-top: -2.5rem; +.divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbcfe8; } -.-mr-10 { - margin-right: -2.5rem; +.divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9a8d4; } -.-mb-10 { - margin-bottom: -2.5rem; +.divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f472b6; } -.-ml-10 { - margin-left: -2.5rem; +.divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ec4899; } -.-mt-11 { - margin-top: -2.75rem; +.divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #db2777; } -.-mr-11 { - margin-right: -2.75rem; +.divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #be185d; } -.-mb-11 { - margin-bottom: -2.75rem; +.divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #9d174d; } -.-ml-11 { - margin-left: -2.75rem; +.divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #831843; } -.-mt-12 { - margin-top: -3rem; +.place-self-auto { + place-self: auto; } -.-mr-12 { - margin-right: -3rem; +.place-self-start { + place-self: start; } -.-mb-12 { - margin-bottom: -3rem; +.place-self-end { + place-self: end; } -.-ml-12 { - margin-left: -3rem; +.place-self-center { + place-self: center; } -.-mt-14 { - margin-top: -3.5rem; +.place-self-stretch { + place-self: stretch; } -.-mr-14 { - margin-right: -3.5rem; +.self-auto { + align-self: auto; } -.-mb-14 { - margin-bottom: -3.5rem; +.self-start { + align-self: flex-start; } -.-ml-14 { - margin-left: -3.5rem; +.self-end { + align-self: flex-end; } -.-mt-16 { - margin-top: -4rem; +.self-center { + align-self: center; } -.-mr-16 { - margin-right: -4rem; +.self-stretch { + align-self: stretch; } -.-mb-16 { - margin-bottom: -4rem; +.justify-self-auto { + justify-self: auto; } -.-ml-16 { - margin-left: -4rem; +.justify-self-start { + justify-self: start; } -.-mt-20 { - margin-top: -5rem; +.justify-self-end { + justify-self: end; } -.-mr-20 { - margin-right: -5rem; +.justify-self-center { + justify-self: center; } -.-mb-20 { - margin-bottom: -5rem; +.justify-self-stretch { + justify-self: stretch; } -.-ml-20 { - margin-left: -5rem; +.overflow-auto { + overflow: auto; } -.-mt-24 { - margin-top: -6rem; +.overflow-hidden { + overflow: hidden; } -.-mr-24 { - margin-right: -6rem; -} +.overflow-visible { + overflow: visible; +} -.-mb-24 { - margin-bottom: -6rem; +.overflow-scroll { + overflow: scroll; } -.-ml-24 { - margin-left: -6rem; +.overflow-x-auto { + overflow-x: auto; } -.-mt-28 { - margin-top: -7rem; +.overflow-y-auto { + overflow-y: auto; } -.-mr-28 { - margin-right: -7rem; +.overflow-x-hidden { + overflow-x: hidden; } -.-mb-28 { - margin-bottom: -7rem; +.overflow-y-hidden { + overflow-y: hidden; } -.-ml-28 { - margin-left: -7rem; +.overflow-x-visible { + overflow-x: visible; } -.-mt-32 { - margin-top: -8rem; +.overflow-y-visible { + overflow-y: visible; } -.-mr-32 { - margin-right: -8rem; +.overflow-x-scroll { + overflow-x: scroll; } -.-mb-32 { - margin-bottom: -8rem; +.overflow-y-scroll { + overflow-y: scroll; } -.-ml-32 { - margin-left: -8rem; +.overscroll-auto { + overscroll-behavior: auto; } -.-mt-36 { - margin-top: -9rem; +.overscroll-contain { + overscroll-behavior: contain; } -.-mr-36 { - margin-right: -9rem; +.overscroll-none { + overscroll-behavior: none; } -.-mb-36 { - margin-bottom: -9rem; +.overscroll-y-auto { + overscroll-behavior-y: auto; } -.-ml-36 { - margin-left: -9rem; +.overscroll-y-contain { + overscroll-behavior-y: contain; } -.-mt-40 { - margin-top: -10rem; +.overscroll-y-none { + overscroll-behavior-y: none; } -.-mr-40 { - margin-right: -10rem; +.overscroll-x-auto { + overscroll-behavior-x: auto; } -.-mb-40 { - margin-bottom: -10rem; +.overscroll-x-contain { + overscroll-behavior-x: contain; } -.-ml-40 { - margin-left: -10rem; +.overscroll-x-none { + overscroll-behavior-x: none; } -.-mt-44 { - margin-top: -11rem; +.truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } -.-mr-44 { - margin-right: -11rem; +.overflow-ellipsis { + text-overflow: ellipsis; } -.-mb-44 { - margin-bottom: -11rem; +.overflow-clip { + text-overflow: clip; } -.-ml-44 { - margin-left: -11rem; +.whitespace-normal { + white-space: normal; } -.-mt-48 { - margin-top: -12rem; +.whitespace-nowrap { + white-space: nowrap; } -.-mr-48 { - margin-right: -12rem; +.whitespace-pre { + white-space: pre; } -.-mb-48 { - margin-bottom: -12rem; +.whitespace-pre-line { + white-space: pre-line; } -.-ml-48 { - margin-left: -12rem; +.whitespace-pre-wrap { + white-space: pre-wrap; } -.-mt-52 { - margin-top: -13rem; +.break-normal { + overflow-wrap: normal; + word-break: normal; } -.-mr-52 { - margin-right: -13rem; +.break-words { + overflow-wrap: break-word; } -.-mb-52 { - margin-bottom: -13rem; +.break-all { + word-break: break-all; } -.-ml-52 { - margin-left: -13rem; +.rounded-none { + border-radius: 0px; } -.-mt-56 { - margin-top: -14rem; +.rounded-sm { + border-radius: 0.125rem; } -.-mr-56 { - margin-right: -14rem; +.rounded { + border-radius: 0.25rem; } -.-mb-56 { - margin-bottom: -14rem; +.rounded-md { + border-radius: 0.375rem; } -.-ml-56 { - margin-left: -14rem; +.rounded-lg { + border-radius: 0.5rem; } -.-mt-60 { - margin-top: -15rem; +.rounded-xl { + border-radius: 0.75rem; } -.-mr-60 { - margin-right: -15rem; +.rounded-2xl { + border-radius: 1rem; } -.-mb-60 { - margin-bottom: -15rem; +.rounded-3xl { + border-radius: 1.5rem; } -.-ml-60 { - margin-left: -15rem; +.rounded-full { + border-radius: 9999px; } -.-mt-64 { - margin-top: -16rem; +.rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } -.-mr-64 { - margin-right: -16rem; +.rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } -.-mb-64 { - margin-bottom: -16rem; +.rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } -.-ml-64 { - margin-left: -16rem; +.rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } -.-mt-72 { - margin-top: -18rem; +.rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } -.-mr-72 { - margin-right: -18rem; +.rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } -.-mb-72 { - margin-bottom: -18rem; +.rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } -.-ml-72 { - margin-left: -18rem; +.rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } -.-mt-80 { - margin-top: -20rem; +.rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } -.-mr-80 { - margin-right: -20rem; +.rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } -.-mb-80 { - margin-bottom: -20rem; +.rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } -.-ml-80 { - margin-left: -20rem; +.rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } -.-mt-96 { - margin-top: -24rem; +.rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } -.-mr-96 { - margin-right: -24rem; +.rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } -.-mb-96 { - margin-bottom: -24rem; +.rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } -.-ml-96 { - margin-left: -24rem; +.rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } -.-mt-px { - margin-top: -1px; +.rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } -.-mr-px { - margin-right: -1px; +.rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } -.-mb-px { - margin-bottom: -1px; +.rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } -.-ml-px { - margin-left: -1px; +.rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } -.-mt-0\.5 { - margin-top: -0.125rem; +.rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } -.-mr-0\.5 { - margin-right: -0.125rem; +.rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } -.-mb-0\.5 { - margin-bottom: -0.125rem; +.rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } -.-ml-0\.5 { - margin-left: -0.125rem; +.rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } -.-mt-1\.5 { - margin-top: -0.375rem; +.rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } -.-mr-1\.5 { - margin-right: -0.375rem; +.rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } -.-mb-1\.5 { - margin-bottom: -0.375rem; +.rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } -.-ml-1\.5 { - margin-left: -0.375rem; +.rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } -.-mt-2\.5 { - margin-top: -0.625rem; +.rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } -.-mr-2\.5 { - margin-right: -0.625rem; +.rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } -.-mb-2\.5 { - margin-bottom: -0.625rem; +.rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } -.-ml-2\.5 { - margin-left: -0.625rem; +.rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } -.-mt-3\.5 { - margin-top: -0.875rem; +.rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } -.-mr-3\.5 { - margin-right: -0.875rem; +.rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } -.-mb-3\.5 { - margin-bottom: -0.875rem; +.rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } -.-ml-3\.5 { - margin-left: -0.875rem; +.rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } -.max-h-0 { - max-height: 0px; +.rounded-tl-none { + border-top-left-radius: 0px; } -.max-h-1 { - max-height: 0.25rem; +.rounded-tl-sm { + border-top-left-radius: 0.125rem; } -.max-h-2 { - max-height: 0.5rem; +.rounded-tl { + border-top-left-radius: 0.25rem; } -.max-h-3 { - max-height: 0.75rem; +.rounded-tl-md { + border-top-left-radius: 0.375rem; } -.max-h-4 { - max-height: 1rem; +.rounded-tl-lg { + border-top-left-radius: 0.5rem; } -.max-h-5 { - max-height: 1.25rem; +.rounded-tl-xl { + border-top-left-radius: 0.75rem; } -.max-h-6 { - max-height: 1.5rem; +.rounded-tl-2xl { + border-top-left-radius: 1rem; } -.max-h-7 { - max-height: 1.75rem; +.rounded-tl-3xl { + border-top-left-radius: 1.5rem; } -.max-h-8 { - max-height: 2rem; +.rounded-tl-full { + border-top-left-radius: 9999px; } -.max-h-9 { - max-height: 2.25rem; +.rounded-tr-none { + border-top-right-radius: 0px; } -.max-h-10 { - max-height: 2.5rem; +.rounded-tr-sm { + border-top-right-radius: 0.125rem; } -.max-h-11 { - max-height: 2.75rem; +.rounded-tr { + border-top-right-radius: 0.25rem; } -.max-h-12 { - max-height: 3rem; +.rounded-tr-md { + border-top-right-radius: 0.375rem; } -.max-h-14 { - max-height: 3.5rem; +.rounded-tr-lg { + border-top-right-radius: 0.5rem; } -.max-h-16 { - max-height: 4rem; +.rounded-tr-xl { + border-top-right-radius: 0.75rem; } -.max-h-20 { - max-height: 5rem; +.rounded-tr-2xl { + border-top-right-radius: 1rem; } -.max-h-24 { - max-height: 6rem; +.rounded-tr-3xl { + border-top-right-radius: 1.5rem; } -.max-h-28 { - max-height: 7rem; +.rounded-tr-full { + border-top-right-radius: 9999px; } -.max-h-32 { - max-height: 8rem; +.rounded-br-none { + border-bottom-right-radius: 0px; } -.max-h-36 { - max-height: 9rem; +.rounded-br-sm { + border-bottom-right-radius: 0.125rem; } -.max-h-40 { - max-height: 10rem; +.rounded-br { + border-bottom-right-radius: 0.25rem; } -.max-h-44 { - max-height: 11rem; +.rounded-br-md { + border-bottom-right-radius: 0.375rem; } -.max-h-48 { - max-height: 12rem; +.rounded-br-lg { + border-bottom-right-radius: 0.5rem; } -.max-h-52 { - max-height: 13rem; +.rounded-br-xl { + border-bottom-right-radius: 0.75rem; } -.max-h-56 { - max-height: 14rem; +.rounded-br-2xl { + border-bottom-right-radius: 1rem; } -.max-h-60 { - max-height: 15rem; +.rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } -.max-h-64 { - max-height: 16rem; +.rounded-br-full { + border-bottom-right-radius: 9999px; } -.max-h-72 { - max-height: 18rem; +.rounded-bl-none { + border-bottom-left-radius: 0px; } -.max-h-80 { - max-height: 20rem; +.rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } -.max-h-96 { - max-height: 24rem; +.rounded-bl { + border-bottom-left-radius: 0.25rem; } -.max-h-px { - max-height: 1px; +.rounded-bl-md { + border-bottom-left-radius: 0.375rem; } -.max-h-0\.5 { - max-height: 0.125rem; +.rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } -.max-h-1\.5 { - max-height: 0.375rem; +.rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } -.max-h-2\.5 { - max-height: 0.625rem; +.rounded-bl-2xl { + border-bottom-left-radius: 1rem; } -.max-h-3\.5 { - max-height: 0.875rem; +.rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } -.max-h-full { - max-height: 100%; +.rounded-bl-full { + border-bottom-left-radius: 9999px; } -.max-h-screen { - max-height: 100vh; +.border-0 { + border-width: 0px; } -.max-w-0 { - max-width: 0rem; +.border-2 { + border-width: 2px; } -.max-w-none { - max-width: none; +.border-4 { + border-width: 4px; } -.max-w-xs { - max-width: 20rem; +.border-8 { + border-width: 8px; } -.max-w-sm { - max-width: 24rem; +.border { + border-width: 1px; } -.max-w-md { - max-width: 28rem; +.border-t-0 { + border-top-width: 0px; } -.max-w-lg { - max-width: 32rem; +.border-t-2 { + border-top-width: 2px; } -.max-w-xl { - max-width: 36rem; +.border-t-4 { + border-top-width: 4px; } -.max-w-2xl { - max-width: 42rem; +.border-t-8 { + border-top-width: 8px; } -.max-w-3xl { - max-width: 48rem; +.border-t { + border-top-width: 1px; } -.max-w-4xl { - max-width: 56rem; +.border-r-0 { + border-right-width: 0px; } -.max-w-5xl { - max-width: 64rem; +.border-r-2 { + border-right-width: 2px; } -.max-w-6xl { - max-width: 72rem; +.border-r-4 { + border-right-width: 4px; } -.max-w-7xl { - max-width: 80rem; +.border-r-8 { + border-right-width: 8px; } -.max-w-full { - max-width: 100%; +.border-r { + border-right-width: 1px; } -.max-w-min { - max-width: min-content; +.border-b-0 { + border-bottom-width: 0px; } -.max-w-max { - max-width: max-content; +.border-b-2 { + border-bottom-width: 2px; } -.max-w-prose { - max-width: 65ch; +.border-b-4 { + border-bottom-width: 4px; } -.max-w-screen-sm { - max-width: 640px; +.border-b-8 { + border-bottom-width: 8px; } -.max-w-screen-md { - max-width: 768px; +.border-b { + border-bottom-width: 1px; } -.max-w-screen-lg { - max-width: 1024px; +.border-l-0 { + border-left-width: 0px; } -.max-w-screen-xl { - max-width: 1280px; +.border-l-2 { + border-left-width: 2px; } -.max-w-screen-2xl { - max-width: 1536px; +.border-l-4 { + border-left-width: 4px; } -.min-h-0 { - min-height: 0px; +.border-l-8 { + border-left-width: 8px; } -.min-h-full { - min-height: 100%; +.border-l { + border-left-width: 1px; } -.min-h-screen { - min-height: 100vh; +.border-solid { + border-style: solid; } -.min-w-0 { - min-width: 0px; +.border-dashed { + border-style: dashed; } -.min-w-full { - min-width: 100%; +.border-dotted { + border-style: dotted; } -.min-w-min { - min-width: min-content; +.border-double { + border-style: double; } -.min-w-max { - min-width: max-content; +.border-none { + border-style: none; } -.object-contain { - object-fit: contain; +.border-transparent { + border-color: transparent; } -.object-cover { - object-fit: cover; +.border-current { + border-color: currentColor; } -.object-fill { - object-fit: fill; +.border-black { + border-color: #000; } -.object-none { - object-fit: none; +.border-white { + border-color: #fff; } -.object-scale-down { - object-fit: scale-down; +.border-gray-50 { + border-color: #f9fafb; } -.object-bottom { - object-position: bottom; +.border-gray-100 { + border-color: #f3f4f6; } -.object-center { - object-position: center; +.border-gray-200 { + border-color: #e5e7eb; } -.object-left { - object-position: left; +.border-gray-300 { + border-color: #d1d5db; } -.object-left-bottom { - object-position: left bottom; +.border-gray-400 { + border-color: #9ca3af; } -.object-left-top { - object-position: left top; +.border-gray-500 { + border-color: #6b7280; } -.object-right { - object-position: right; +.border-gray-600 { + border-color: #4b5563; } -.object-right-bottom { - object-position: right bottom; +.border-gray-700 { + border-color: #374151; } -.object-right-top { - object-position: right top; +.border-gray-800 { + border-color: #1f2937; } -.object-top { - object-position: top; +.border-gray-900 { + border-color: #111827; } -.opacity-0 { - opacity: 0; +.border-red-50 { + border-color: #fef2f2; } -.opacity-5 { - opacity: 0.05; +.border-red-100 { + border-color: #fee2e2; } -.opacity-10 { - opacity: 0.1; +.border-red-200 { + border-color: #fecaca; } -.opacity-20 { - opacity: 0.2; +.border-red-300 { + border-color: #fca5a5; } -.opacity-25 { - opacity: 0.25; +.border-red-400 { + border-color: #f87171; } -.opacity-30 { - opacity: 0.3; +.border-red-500 { + border-color: #ef4444; } -.opacity-40 { - opacity: 0.4; +.border-red-600 { + border-color: #dc2626; } -.opacity-50 { - opacity: 0.5; +.border-red-700 { + border-color: #b91c1c; } -.opacity-60 { - opacity: 0.6; +.border-red-800 { + border-color: #991b1b; } -.opacity-70 { - opacity: 0.7; +.border-red-900 { + border-color: #7f1d1d; } -.opacity-75 { - opacity: 0.75; +.border-yellow-50 { + border-color: #fffbeb; } -.opacity-80 { - opacity: 0.8; +.border-yellow-100 { + border-color: #fef3c7; } -.opacity-90 { - opacity: 0.9; +.border-yellow-200 { + border-color: #fde68a; } -.opacity-95 { - opacity: 0.95; +.border-yellow-300 { + border-color: #fcd34d; } -.opacity-100 { - opacity: 1; +.border-yellow-400 { + border-color: #fbbf24; } -.group:hover .group-hover\:opacity-0 { - opacity: 0; +.border-yellow-500 { + border-color: #f59e0b; } -.group:hover .group-hover\:opacity-5 { - opacity: 0.05; +.border-yellow-600 { + border-color: #d97706; } -.group:hover .group-hover\:opacity-10 { - opacity: 0.1; +.border-yellow-700 { + border-color: #b45309; } -.group:hover .group-hover\:opacity-20 { - opacity: 0.2; +.border-yellow-800 { + border-color: #92400e; } -.group:hover .group-hover\:opacity-25 { - opacity: 0.25; +.border-yellow-900 { + border-color: #78350f; } -.group:hover .group-hover\:opacity-30 { - opacity: 0.3; +.border-green-50 { + border-color: #ecfdf5; } -.group:hover .group-hover\:opacity-40 { - opacity: 0.4; +.border-green-100 { + border-color: #d1fae5; } -.group:hover .group-hover\:opacity-50 { - opacity: 0.5; +.border-green-200 { + border-color: #a7f3d0; } -.group:hover .group-hover\:opacity-60 { - opacity: 0.6; +.border-green-300 { + border-color: #6ee7b7; } -.group:hover .group-hover\:opacity-70 { - opacity: 0.7; +.border-green-400 { + border-color: #34d399; } -.group:hover .group-hover\:opacity-75 { - opacity: 0.75; +.border-green-500 { + border-color: #10b981; } -.group:hover .group-hover\:opacity-80 { - opacity: 0.8; +.border-green-600 { + border-color: #059669; } -.group:hover .group-hover\:opacity-90 { - opacity: 0.9; +.border-green-700 { + border-color: #047857; } -.group:hover .group-hover\:opacity-95 { - opacity: 0.95; +.border-green-800 { + border-color: #065f46; } -.group:hover .group-hover\:opacity-100 { - opacity: 1; +.border-green-900 { + border-color: #064e3b; } -.focus-within\:opacity-0:focus-within { - opacity: 0; +.border-blue-50 { + border-color: #eff6ff; } -.focus-within\:opacity-5:focus-within { - opacity: 0.05; +.border-blue-100 { + border-color: #dbeafe; } -.focus-within\:opacity-10:focus-within { - opacity: 0.1; +.border-blue-200 { + border-color: #bfdbfe; } -.focus-within\:opacity-20:focus-within { - opacity: 0.2; +.border-blue-300 { + border-color: #93c5fd; } -.focus-within\:opacity-25:focus-within { - opacity: 0.25; +.border-blue-400 { + border-color: #60a5fa; } -.focus-within\:opacity-30:focus-within { - opacity: 0.3; +.border-blue-500 { + border-color: #3b82f6; } -.focus-within\:opacity-40:focus-within { - opacity: 0.4; +.border-blue-600 { + border-color: #2563eb; } -.focus-within\:opacity-50:focus-within { - opacity: 0.5; +.border-blue-700 { + border-color: #1d4ed8; } -.focus-within\:opacity-60:focus-within { - opacity: 0.6; +.border-blue-800 { + border-color: #1e40af; } -.focus-within\:opacity-70:focus-within { - opacity: 0.7; +.border-blue-900 { + border-color: #1e3a8a; } -.focus-within\:opacity-75:focus-within { - opacity: 0.75; +.border-indigo-50 { + border-color: #eef2ff; } -.focus-within\:opacity-80:focus-within { - opacity: 0.8; +.border-indigo-100 { + border-color: #e0e7ff; } -.focus-within\:opacity-90:focus-within { - opacity: 0.9; +.border-indigo-200 { + border-color: #c7d2fe; } -.focus-within\:opacity-95:focus-within { - opacity: 0.95; +.border-indigo-300 { + border-color: #a5b4fc; } -.focus-within\:opacity-100:focus-within { - opacity: 1; +.border-indigo-400 { + border-color: #818cf8; } -.hover\:opacity-0:hover { - opacity: 0; +.border-indigo-500 { + border-color: #6366f1; } -.hover\:opacity-5:hover { - opacity: 0.05; +.border-indigo-600 { + border-color: #4f46e5; } -.hover\:opacity-10:hover { - opacity: 0.1; +.border-indigo-700 { + border-color: #4338ca; } -.hover\:opacity-20:hover { - opacity: 0.2; +.border-indigo-800 { + border-color: #3730a3; } -.hover\:opacity-25:hover { - opacity: 0.25; +.border-indigo-900 { + border-color: #312e81; } -.hover\:opacity-30:hover { - opacity: 0.3; +.border-purple-50 { + border-color: #f5f3ff; } -.hover\:opacity-40:hover { - opacity: 0.4; +.border-purple-100 { + border-color: #ede9fe; } -.hover\:opacity-50:hover { - opacity: 0.5; +.border-purple-200 { + border-color: #ddd6fe; } -.hover\:opacity-60:hover { - opacity: 0.6; +.border-purple-300 { + border-color: #c4b5fd; } -.hover\:opacity-70:hover { - opacity: 0.7; +.border-purple-400 { + border-color: #a78bfa; } -.hover\:opacity-75:hover { - opacity: 0.75; +.border-purple-500 { + border-color: #8b5cf6; } -.hover\:opacity-80:hover { - opacity: 0.8; +.border-purple-600 { + border-color: #7c3aed; } -.hover\:opacity-90:hover { - opacity: 0.9; +.border-purple-700 { + border-color: #6d28d9; } -.hover\:opacity-95:hover { - opacity: 0.95; +.border-purple-800 { + border-color: #5b21b6; } -.hover\:opacity-100:hover { - opacity: 1; +.border-purple-900 { + border-color: #4c1d95; } -.focus\:opacity-0:focus { - opacity: 0; +.border-pink-50 { + border-color: #fdf2f8; } -.focus\:opacity-5:focus { - opacity: 0.05; +.border-pink-100 { + border-color: #fce7f3; } -.focus\:opacity-10:focus { - opacity: 0.1; +.border-pink-200 { + border-color: #fbcfe8; } -.focus\:opacity-20:focus { - opacity: 0.2; +.border-pink-300 { + border-color: #f9a8d4; } -.focus\:opacity-25:focus { - opacity: 0.25; +.border-pink-400 { + border-color: #f472b6; } -.focus\:opacity-30:focus { - opacity: 0.3; +.border-pink-500 { + border-color: #ec4899; } -.focus\:opacity-40:focus { - opacity: 0.4; +.border-pink-600 { + border-color: #db2777; } -.focus\:opacity-50:focus { - opacity: 0.5; +.border-pink-700 { + border-color: #be185d; } -.focus\:opacity-60:focus { - opacity: 0.6; +.border-pink-800 { + border-color: #9d174d; } -.focus\:opacity-70:focus { - opacity: 0.7; +.border-pink-900 { + border-color: #831843; } -.focus\:opacity-75:focus { - opacity: 0.75; +.group:hover .group-hover\:border-transparent { + border-color: transparent; } -.focus\:opacity-80:focus { - opacity: 0.8; +.group:hover .group-hover\:border-current { + border-color: currentColor; } -.focus\:opacity-90:focus { - opacity: 0.9; +.group:hover .group-hover\:border-black { + border-color: #000; } -.focus\:opacity-95:focus { - opacity: 0.95; +.group:hover .group-hover\:border-white { + border-color: #fff; } -.focus\:opacity-100:focus { - opacity: 1; +.group:hover .group-hover\:border-gray-50 { + border-color: #f9fafb; } -.outline-none { - outline: 2px solid transparent; - outline-offset: 2px; +.group:hover .group-hover\:border-gray-100 { + border-color: #f3f4f6; } -.outline-white { - outline: 2px dotted white; - outline-offset: 2px; +.group:hover .group-hover\:border-gray-200 { + border-color: #e5e7eb; } -.outline-black { - outline: 2px dotted black; - outline-offset: 2px; +.group:hover .group-hover\:border-gray-300 { + border-color: #d1d5db; } -.focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; +.group:hover .group-hover\:border-gray-400 { + border-color: #9ca3af; } -.focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; +.group:hover .group-hover\:border-gray-500 { + border-color: #6b7280; } -.focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; +.group:hover .group-hover\:border-gray-600 { + border-color: #4b5563; } -.focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; +.group:hover .group-hover\:border-gray-700 { + border-color: #374151; } -.focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; +.group:hover .group-hover\:border-gray-800 { + border-color: #1f2937; } -.focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; +.group:hover .group-hover\:border-gray-900 { + border-color: #111827; } -.overflow-auto { - overflow: auto; +.group:hover .group-hover\:border-red-50 { + border-color: #fef2f2; } -.overflow-hidden { - overflow: hidden; +.group:hover .group-hover\:border-red-100 { + border-color: #fee2e2; } -.overflow-visible { - overflow: visible; +.group:hover .group-hover\:border-red-200 { + border-color: #fecaca; } -.overflow-scroll { - overflow: scroll; +.group:hover .group-hover\:border-red-300 { + border-color: #fca5a5; } -.overflow-x-auto { - overflow-x: auto; +.group:hover .group-hover\:border-red-400 { + border-color: #f87171; } -.overflow-y-auto { - overflow-y: auto; +.group:hover .group-hover\:border-red-500 { + border-color: #ef4444; } -.overflow-x-hidden { - overflow-x: hidden; +.group:hover .group-hover\:border-red-600 { + border-color: #dc2626; } -.overflow-y-hidden { - overflow-y: hidden; +.group:hover .group-hover\:border-red-700 { + border-color: #b91c1c; } -.overflow-x-visible { - overflow-x: visible; +.group:hover .group-hover\:border-red-800 { + border-color: #991b1b; } -.overflow-y-visible { - overflow-y: visible; +.group:hover .group-hover\:border-red-900 { + border-color: #7f1d1d; } -.overflow-x-scroll { - overflow-x: scroll; +.group:hover .group-hover\:border-yellow-50 { + border-color: #fffbeb; } -.overflow-y-scroll { - overflow-y: scroll; +.group:hover .group-hover\:border-yellow-100 { + border-color: #fef3c7; } -.overscroll-auto { - overscroll-behavior: auto; +.group:hover .group-hover\:border-yellow-200 { + border-color: #fde68a; } -.overscroll-contain { - overscroll-behavior: contain; +.group:hover .group-hover\:border-yellow-300 { + border-color: #fcd34d; } -.overscroll-none { - overscroll-behavior: none; +.group:hover .group-hover\:border-yellow-400 { + border-color: #fbbf24; } -.overscroll-y-auto { - overscroll-behavior-y: auto; +.group:hover .group-hover\:border-yellow-500 { + border-color: #f59e0b; } -.overscroll-y-contain { - overscroll-behavior-y: contain; +.group:hover .group-hover\:border-yellow-600 { + border-color: #d97706; } -.overscroll-y-none { - overscroll-behavior-y: none; +.group:hover .group-hover\:border-yellow-700 { + border-color: #b45309; } -.overscroll-x-auto { - overscroll-behavior-x: auto; +.group:hover .group-hover\:border-yellow-800 { + border-color: #92400e; } -.overscroll-x-contain { - overscroll-behavior-x: contain; +.group:hover .group-hover\:border-yellow-900 { + border-color: #78350f; } -.overscroll-x-none { - overscroll-behavior-x: none; +.group:hover .group-hover\:border-green-50 { + border-color: #ecfdf5; } -.p-0 { - padding: 0px; +.group:hover .group-hover\:border-green-100 { + border-color: #d1fae5; } -.p-1 { - padding: 0.25rem; +.group:hover .group-hover\:border-green-200 { + border-color: #a7f3d0; } -.p-2 { - padding: 0.5rem; +.group:hover .group-hover\:border-green-300 { + border-color: #6ee7b7; } -.p-3 { - padding: 0.75rem; +.group:hover .group-hover\:border-green-400 { + border-color: #34d399; } -.p-4 { - padding: 1rem; +.group:hover .group-hover\:border-green-500 { + border-color: #10b981; } -.p-5 { - padding: 1.25rem; +.group:hover .group-hover\:border-green-600 { + border-color: #059669; } -.p-6 { - padding: 1.5rem; +.group:hover .group-hover\:border-green-700 { + border-color: #047857; } -.p-7 { - padding: 1.75rem; +.group:hover .group-hover\:border-green-800 { + border-color: #065f46; } -.p-8 { - padding: 2rem; +.group:hover .group-hover\:border-green-900 { + border-color: #064e3b; } -.p-9 { - padding: 2.25rem; +.group:hover .group-hover\:border-blue-50 { + border-color: #eff6ff; } -.p-10 { - padding: 2.5rem; +.group:hover .group-hover\:border-blue-100 { + border-color: #dbeafe; } -.p-11 { - padding: 2.75rem; +.group:hover .group-hover\:border-blue-200 { + border-color: #bfdbfe; } -.p-12 { - padding: 3rem; +.group:hover .group-hover\:border-blue-300 { + border-color: #93c5fd; } -.p-14 { - padding: 3.5rem; +.group:hover .group-hover\:border-blue-400 { + border-color: #60a5fa; } -.p-16 { - padding: 4rem; +.group:hover .group-hover\:border-blue-500 { + border-color: #3b82f6; } -.p-20 { - padding: 5rem; +.group:hover .group-hover\:border-blue-600 { + border-color: #2563eb; } -.p-24 { - padding: 6rem; +.group:hover .group-hover\:border-blue-700 { + border-color: #1d4ed8; } -.p-28 { - padding: 7rem; +.group:hover .group-hover\:border-blue-800 { + border-color: #1e40af; } -.p-32 { - padding: 8rem; +.group:hover .group-hover\:border-blue-900 { + border-color: #1e3a8a; } -.p-36 { - padding: 9rem; +.group:hover .group-hover\:border-indigo-50 { + border-color: #eef2ff; } -.p-40 { - padding: 10rem; +.group:hover .group-hover\:border-indigo-100 { + border-color: #e0e7ff; } -.p-44 { - padding: 11rem; +.group:hover .group-hover\:border-indigo-200 { + border-color: #c7d2fe; } -.p-48 { - padding: 12rem; +.group:hover .group-hover\:border-indigo-300 { + border-color: #a5b4fc; } -.p-52 { - padding: 13rem; +.group:hover .group-hover\:border-indigo-400 { + border-color: #818cf8; } -.p-56 { - padding: 14rem; +.group:hover .group-hover\:border-indigo-500 { + border-color: #6366f1; } -.p-60 { - padding: 15rem; +.group:hover .group-hover\:border-indigo-600 { + border-color: #4f46e5; } -.p-64 { - padding: 16rem; +.group:hover .group-hover\:border-indigo-700 { + border-color: #4338ca; } -.p-72 { - padding: 18rem; +.group:hover .group-hover\:border-indigo-800 { + border-color: #3730a3; } -.p-80 { - padding: 20rem; +.group:hover .group-hover\:border-indigo-900 { + border-color: #312e81; } -.p-96 { - padding: 24rem; +.group:hover .group-hover\:border-purple-50 { + border-color: #f5f3ff; } -.p-px { - padding: 1px; +.group:hover .group-hover\:border-purple-100 { + border-color: #ede9fe; } -.p-0\.5 { - padding: 0.125rem; +.group:hover .group-hover\:border-purple-200 { + border-color: #ddd6fe; } -.p-1\.5 { - padding: 0.375rem; +.group:hover .group-hover\:border-purple-300 { + border-color: #c4b5fd; } -.p-2\.5 { - padding: 0.625rem; +.group:hover .group-hover\:border-purple-400 { + border-color: #a78bfa; } -.p-3\.5 { - padding: 0.875rem; +.group:hover .group-hover\:border-purple-500 { + border-color: #8b5cf6; } -.py-0 { - padding-top: 0px; - padding-bottom: 0px; +.group:hover .group-hover\:border-purple-600 { + border-color: #7c3aed; } -.px-0 { - padding-left: 0px; - padding-right: 0px; +.group:hover .group-hover\:border-purple-700 { + border-color: #6d28d9; } -.py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; +.group:hover .group-hover\:border-purple-800 { + border-color: #5b21b6; } -.px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; +.group:hover .group-hover\:border-purple-900 { + border-color: #4c1d95; } -.py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; +.group:hover .group-hover\:border-pink-50 { + border-color: #fdf2f8; } -.px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; +.group:hover .group-hover\:border-pink-100 { + border-color: #fce7f3; } -.py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; +.group:hover .group-hover\:border-pink-200 { + border-color: #fbcfe8; } -.px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; +.group:hover .group-hover\:border-pink-300 { + border-color: #f9a8d4; } -.py-4 { - padding-top: 1rem; - padding-bottom: 1rem; +.group:hover .group-hover\:border-pink-400 { + border-color: #f472b6; } -.px-4 { - padding-left: 1rem; - padding-right: 1rem; +.group:hover .group-hover\:border-pink-500 { + border-color: #ec4899; } -.py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; +.group:hover .group-hover\:border-pink-600 { + border-color: #db2777; } -.px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; +.group:hover .group-hover\:border-pink-700 { + border-color: #be185d; } -.py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; +.group:hover .group-hover\:border-pink-800 { + border-color: #9d174d; } -.px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; +.group:hover .group-hover\:border-pink-900 { + border-color: #831843; } -.py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; +.focus-within\:border-transparent:focus-within { + border-color: transparent; } -.px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; +.focus-within\:border-current:focus-within { + border-color: currentColor; } -.py-8 { - padding-top: 2rem; - padding-bottom: 2rem; +.focus-within\:border-black:focus-within { + border-color: #000; } -.px-8 { - padding-left: 2rem; - padding-right: 2rem; +.focus-within\:border-white:focus-within { + border-color: #fff; } -.py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; +.focus-within\:border-gray-50:focus-within { + border-color: #f9fafb; } -.px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; +.focus-within\:border-gray-100:focus-within { + border-color: #f3f4f6; } -.py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; +.focus-within\:border-gray-200:focus-within { + border-color: #e5e7eb; } -.px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; +.focus-within\:border-gray-300:focus-within { + border-color: #d1d5db; } -.py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; +.focus-within\:border-gray-400:focus-within { + border-color: #9ca3af; } -.px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; +.focus-within\:border-gray-500:focus-within { + border-color: #6b7280; } -.py-12 { - padding-top: 3rem; - padding-bottom: 3rem; +.focus-within\:border-gray-600:focus-within { + border-color: #4b5563; } -.px-12 { - padding-left: 3rem; - padding-right: 3rem; +.focus-within\:border-gray-700:focus-within { + border-color: #374151; } -.py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; +.focus-within\:border-gray-800:focus-within { + border-color: #1f2937; } -.px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; +.focus-within\:border-gray-900:focus-within { + border-color: #111827; } -.py-16 { - padding-top: 4rem; - padding-bottom: 4rem; +.focus-within\:border-red-50:focus-within { + border-color: #fef2f2; } -.px-16 { - padding-left: 4rem; - padding-right: 4rem; +.focus-within\:border-red-100:focus-within { + border-color: #fee2e2; } -.py-20 { - padding-top: 5rem; - padding-bottom: 5rem; +.focus-within\:border-red-200:focus-within { + border-color: #fecaca; } -.px-20 { - padding-left: 5rem; - padding-right: 5rem; +.focus-within\:border-red-300:focus-within { + border-color: #fca5a5; } -.py-24 { - padding-top: 6rem; - padding-bottom: 6rem; +.focus-within\:border-red-400:focus-within { + border-color: #f87171; } -.px-24 { - padding-left: 6rem; - padding-right: 6rem; +.focus-within\:border-red-500:focus-within { + border-color: #ef4444; } -.py-28 { - padding-top: 7rem; - padding-bottom: 7rem; +.focus-within\:border-red-600:focus-within { + border-color: #dc2626; } -.px-28 { - padding-left: 7rem; - padding-right: 7rem; +.focus-within\:border-red-700:focus-within { + border-color: #b91c1c; } -.py-32 { - padding-top: 8rem; - padding-bottom: 8rem; +.focus-within\:border-red-800:focus-within { + border-color: #991b1b; } -.px-32 { - padding-left: 8rem; - padding-right: 8rem; +.focus-within\:border-red-900:focus-within { + border-color: #7f1d1d; } -.py-36 { - padding-top: 9rem; - padding-bottom: 9rem; +.focus-within\:border-yellow-50:focus-within { + border-color: #fffbeb; } -.px-36 { - padding-left: 9rem; - padding-right: 9rem; +.focus-within\:border-yellow-100:focus-within { + border-color: #fef3c7; } -.py-40 { - padding-top: 10rem; - padding-bottom: 10rem; +.focus-within\:border-yellow-200:focus-within { + border-color: #fde68a; } -.px-40 { - padding-left: 10rem; - padding-right: 10rem; +.focus-within\:border-yellow-300:focus-within { + border-color: #fcd34d; } -.py-44 { - padding-top: 11rem; - padding-bottom: 11rem; +.focus-within\:border-yellow-400:focus-within { + border-color: #fbbf24; } -.px-44 { - padding-left: 11rem; - padding-right: 11rem; +.focus-within\:border-yellow-500:focus-within { + border-color: #f59e0b; } -.py-48 { - padding-top: 12rem; - padding-bottom: 12rem; +.focus-within\:border-yellow-600:focus-within { + border-color: #d97706; } -.px-48 { - padding-left: 12rem; - padding-right: 12rem; +.focus-within\:border-yellow-700:focus-within { + border-color: #b45309; } -.py-52 { - padding-top: 13rem; - padding-bottom: 13rem; +.focus-within\:border-yellow-800:focus-within { + border-color: #92400e; } -.px-52 { - padding-left: 13rem; - padding-right: 13rem; +.focus-within\:border-yellow-900:focus-within { + border-color: #78350f; } -.py-56 { - padding-top: 14rem; - padding-bottom: 14rem; +.focus-within\:border-green-50:focus-within { + border-color: #ecfdf5; } -.px-56 { - padding-left: 14rem; - padding-right: 14rem; +.focus-within\:border-green-100:focus-within { + border-color: #d1fae5; } -.py-60 { - padding-top: 15rem; - padding-bottom: 15rem; +.focus-within\:border-green-200:focus-within { + border-color: #a7f3d0; } -.px-60 { - padding-left: 15rem; - padding-right: 15rem; +.focus-within\:border-green-300:focus-within { + border-color: #6ee7b7; } -.py-64 { - padding-top: 16rem; - padding-bottom: 16rem; +.focus-within\:border-green-400:focus-within { + border-color: #34d399; } -.px-64 { - padding-left: 16rem; - padding-right: 16rem; +.focus-within\:border-green-500:focus-within { + border-color: #10b981; } -.py-72 { - padding-top: 18rem; - padding-bottom: 18rem; +.focus-within\:border-green-600:focus-within { + border-color: #059669; } -.px-72 { - padding-left: 18rem; - padding-right: 18rem; +.focus-within\:border-green-700:focus-within { + border-color: #047857; } -.py-80 { - padding-top: 20rem; - padding-bottom: 20rem; +.focus-within\:border-green-800:focus-within { + border-color: #065f46; } -.px-80 { - padding-left: 20rem; - padding-right: 20rem; +.focus-within\:border-green-900:focus-within { + border-color: #064e3b; } -.py-96 { - padding-top: 24rem; - padding-bottom: 24rem; +.focus-within\:border-blue-50:focus-within { + border-color: #eff6ff; } -.px-96 { - padding-left: 24rem; - padding-right: 24rem; +.focus-within\:border-blue-100:focus-within { + border-color: #dbeafe; } -.py-px { - padding-top: 1px; - padding-bottom: 1px; +.focus-within\:border-blue-200:focus-within { + border-color: #bfdbfe; } -.px-px { - padding-left: 1px; - padding-right: 1px; +.focus-within\:border-blue-300:focus-within { + border-color: #93c5fd; } -.py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; +.focus-within\:border-blue-400:focus-within { + border-color: #60a5fa; } -.px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; +.focus-within\:border-blue-500:focus-within { + border-color: #3b82f6; } -.py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; +.focus-within\:border-blue-600:focus-within { + border-color: #2563eb; } -.px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; +.focus-within\:border-blue-700:focus-within { + border-color: #1d4ed8; } -.py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; +.focus-within\:border-blue-800:focus-within { + border-color: #1e40af; } -.px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; +.focus-within\:border-blue-900:focus-within { + border-color: #1e3a8a; } -.py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; +.focus-within\:border-indigo-50:focus-within { + border-color: #eef2ff; } -.px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; +.focus-within\:border-indigo-100:focus-within { + border-color: #e0e7ff; } -.pt-0 { - padding-top: 0px; +.focus-within\:border-indigo-200:focus-within { + border-color: #c7d2fe; } -.pr-0 { - padding-right: 0px; +.focus-within\:border-indigo-300:focus-within { + border-color: #a5b4fc; } -.pb-0 { - padding-bottom: 0px; +.focus-within\:border-indigo-400:focus-within { + border-color: #818cf8; } -.pl-0 { - padding-left: 0px; +.focus-within\:border-indigo-500:focus-within { + border-color: #6366f1; } -.pt-1 { - padding-top: 0.25rem; +.focus-within\:border-indigo-600:focus-within { + border-color: #4f46e5; } -.pr-1 { - padding-right: 0.25rem; +.focus-within\:border-indigo-700:focus-within { + border-color: #4338ca; } -.pb-1 { - padding-bottom: 0.25rem; +.focus-within\:border-indigo-800:focus-within { + border-color: #3730a3; } -.pl-1 { - padding-left: 0.25rem; +.focus-within\:border-indigo-900:focus-within { + border-color: #312e81; } -.pt-2 { - padding-top: 0.5rem; +.focus-within\:border-purple-50:focus-within { + border-color: #f5f3ff; } -.pr-2 { - padding-right: 0.5rem; +.focus-within\:border-purple-100:focus-within { + border-color: #ede9fe; } -.pb-2 { - padding-bottom: 0.5rem; +.focus-within\:border-purple-200:focus-within { + border-color: #ddd6fe; } -.pl-2 { - padding-left: 0.5rem; +.focus-within\:border-purple-300:focus-within { + border-color: #c4b5fd; } -.pt-3 { - padding-top: 0.75rem; +.focus-within\:border-purple-400:focus-within { + border-color: #a78bfa; } -.pr-3 { - padding-right: 0.75rem; +.focus-within\:border-purple-500:focus-within { + border-color: #8b5cf6; } -.pb-3 { - padding-bottom: 0.75rem; +.focus-within\:border-purple-600:focus-within { + border-color: #7c3aed; } -.pl-3 { - padding-left: 0.75rem; +.focus-within\:border-purple-700:focus-within { + border-color: #6d28d9; } -.pt-4 { - padding-top: 1rem; +.focus-within\:border-purple-800:focus-within { + border-color: #5b21b6; } -.pr-4 { - padding-right: 1rem; +.focus-within\:border-purple-900:focus-within { + border-color: #4c1d95; } -.pb-4 { - padding-bottom: 1rem; +.focus-within\:border-pink-50:focus-within { + border-color: #fdf2f8; } -.pl-4 { - padding-left: 1rem; +.focus-within\:border-pink-100:focus-within { + border-color: #fce7f3; } -.pt-5 { - padding-top: 1.25rem; +.focus-within\:border-pink-200:focus-within { + border-color: #fbcfe8; } -.pr-5 { - padding-right: 1.25rem; +.focus-within\:border-pink-300:focus-within { + border-color: #f9a8d4; } -.pb-5 { - padding-bottom: 1.25rem; +.focus-within\:border-pink-400:focus-within { + border-color: #f472b6; } -.pl-5 { - padding-left: 1.25rem; +.focus-within\:border-pink-500:focus-within { + border-color: #ec4899; } -.pt-6 { - padding-top: 1.5rem; +.focus-within\:border-pink-600:focus-within { + border-color: #db2777; } -.pr-6 { - padding-right: 1.5rem; +.focus-within\:border-pink-700:focus-within { + border-color: #be185d; } -.pb-6 { - padding-bottom: 1.5rem; +.focus-within\:border-pink-800:focus-within { + border-color: #9d174d; } -.pl-6 { - padding-left: 1.5rem; +.focus-within\:border-pink-900:focus-within { + border-color: #831843; } -.pt-7 { - padding-top: 1.75rem; +.hover\:border-transparent:hover { + border-color: transparent; } -.pr-7 { - padding-right: 1.75rem; +.hover\:border-current:hover { + border-color: currentColor; } -.pb-7 { - padding-bottom: 1.75rem; +.hover\:border-black:hover { + border-color: #000; } -.pl-7 { - padding-left: 1.75rem; +.hover\:border-white:hover { + border-color: #fff; } -.pt-8 { - padding-top: 2rem; +.hover\:border-gray-50:hover { + border-color: #f9fafb; } -.pr-8 { - padding-right: 2rem; +.hover\:border-gray-100:hover { + border-color: #f3f4f6; } -.pb-8 { - padding-bottom: 2rem; +.hover\:border-gray-200:hover { + border-color: #e5e7eb; } -.pl-8 { - padding-left: 2rem; +.hover\:border-gray-300:hover { + border-color: #d1d5db; } -.pt-9 { - padding-top: 2.25rem; +.hover\:border-gray-400:hover { + border-color: #9ca3af; } -.pr-9 { - padding-right: 2.25rem; +.hover\:border-gray-500:hover { + border-color: #6b7280; } -.pb-9 { - padding-bottom: 2.25rem; +.hover\:border-gray-600:hover { + border-color: #4b5563; } -.pl-9 { - padding-left: 2.25rem; +.hover\:border-gray-700:hover { + border-color: #374151; } -.pt-10 { - padding-top: 2.5rem; +.hover\:border-gray-800:hover { + border-color: #1f2937; } -.pr-10 { - padding-right: 2.5rem; +.hover\:border-gray-900:hover { + border-color: #111827; } -.pb-10 { - padding-bottom: 2.5rem; +.hover\:border-red-50:hover { + border-color: #fef2f2; } -.pl-10 { - padding-left: 2.5rem; +.hover\:border-red-100:hover { + border-color: #fee2e2; } -.pt-11 { - padding-top: 2.75rem; +.hover\:border-red-200:hover { + border-color: #fecaca; } -.pr-11 { - padding-right: 2.75rem; +.hover\:border-red-300:hover { + border-color: #fca5a5; } -.pb-11 { - padding-bottom: 2.75rem; +.hover\:border-red-400:hover { + border-color: #f87171; } -.pl-11 { - padding-left: 2.75rem; +.hover\:border-red-500:hover { + border-color: #ef4444; } -.pt-12 { - padding-top: 3rem; +.hover\:border-red-600:hover { + border-color: #dc2626; } -.pr-12 { - padding-right: 3rem; +.hover\:border-red-700:hover { + border-color: #b91c1c; } -.pb-12 { - padding-bottom: 3rem; +.hover\:border-red-800:hover { + border-color: #991b1b; } -.pl-12 { - padding-left: 3rem; +.hover\:border-red-900:hover { + border-color: #7f1d1d; } -.pt-14 { - padding-top: 3.5rem; +.hover\:border-yellow-50:hover { + border-color: #fffbeb; } -.pr-14 { - padding-right: 3.5rem; +.hover\:border-yellow-100:hover { + border-color: #fef3c7; } -.pb-14 { - padding-bottom: 3.5rem; +.hover\:border-yellow-200:hover { + border-color: #fde68a; } -.pl-14 { - padding-left: 3.5rem; +.hover\:border-yellow-300:hover { + border-color: #fcd34d; } -.pt-16 { - padding-top: 4rem; +.hover\:border-yellow-400:hover { + border-color: #fbbf24; } -.pr-16 { - padding-right: 4rem; +.hover\:border-yellow-500:hover { + border-color: #f59e0b; } -.pb-16 { - padding-bottom: 4rem; +.hover\:border-yellow-600:hover { + border-color: #d97706; } -.pl-16 { - padding-left: 4rem; +.hover\:border-yellow-700:hover { + border-color: #b45309; } -.pt-20 { - padding-top: 5rem; +.hover\:border-yellow-800:hover { + border-color: #92400e; } -.pr-20 { - padding-right: 5rem; +.hover\:border-yellow-900:hover { + border-color: #78350f; } -.pb-20 { - padding-bottom: 5rem; +.hover\:border-green-50:hover { + border-color: #ecfdf5; } -.pl-20 { - padding-left: 5rem; +.hover\:border-green-100:hover { + border-color: #d1fae5; } -.pt-24 { - padding-top: 6rem; +.hover\:border-green-200:hover { + border-color: #a7f3d0; } -.pr-24 { - padding-right: 6rem; +.hover\:border-green-300:hover { + border-color: #6ee7b7; } -.pb-24 { - padding-bottom: 6rem; +.hover\:border-green-400:hover { + border-color: #34d399; } -.pl-24 { - padding-left: 6rem; +.hover\:border-green-500:hover { + border-color: #10b981; } -.pt-28 { - padding-top: 7rem; +.hover\:border-green-600:hover { + border-color: #059669; } -.pr-28 { - padding-right: 7rem; +.hover\:border-green-700:hover { + border-color: #047857; } -.pb-28 { - padding-bottom: 7rem; +.hover\:border-green-800:hover { + border-color: #065f46; } -.pl-28 { - padding-left: 7rem; +.hover\:border-green-900:hover { + border-color: #064e3b; } -.pt-32 { - padding-top: 8rem; +.hover\:border-blue-50:hover { + border-color: #eff6ff; } -.pr-32 { - padding-right: 8rem; +.hover\:border-blue-100:hover { + border-color: #dbeafe; } -.pb-32 { - padding-bottom: 8rem; +.hover\:border-blue-200:hover { + border-color: #bfdbfe; } -.pl-32 { - padding-left: 8rem; +.hover\:border-blue-300:hover { + border-color: #93c5fd; } -.pt-36 { - padding-top: 9rem; +.hover\:border-blue-400:hover { + border-color: #60a5fa; } -.pr-36 { - padding-right: 9rem; +.hover\:border-blue-500:hover { + border-color: #3b82f6; } -.pb-36 { - padding-bottom: 9rem; +.hover\:border-blue-600:hover { + border-color: #2563eb; } -.pl-36 { - padding-left: 9rem; +.hover\:border-blue-700:hover { + border-color: #1d4ed8; } -.pt-40 { - padding-top: 10rem; +.hover\:border-blue-800:hover { + border-color: #1e40af; } -.pr-40 { - padding-right: 10rem; +.hover\:border-blue-900:hover { + border-color: #1e3a8a; } -.pb-40 { - padding-bottom: 10rem; +.hover\:border-indigo-50:hover { + border-color: #eef2ff; } -.pl-40 { - padding-left: 10rem; +.hover\:border-indigo-100:hover { + border-color: #e0e7ff; } -.pt-44 { - padding-top: 11rem; +.hover\:border-indigo-200:hover { + border-color: #c7d2fe; } -.pr-44 { - padding-right: 11rem; +.hover\:border-indigo-300:hover { + border-color: #a5b4fc; } -.pb-44 { - padding-bottom: 11rem; +.hover\:border-indigo-400:hover { + border-color: #818cf8; } -.pl-44 { - padding-left: 11rem; +.hover\:border-indigo-500:hover { + border-color: #6366f1; } -.pt-48 { - padding-top: 12rem; +.hover\:border-indigo-600:hover { + border-color: #4f46e5; } -.pr-48 { - padding-right: 12rem; +.hover\:border-indigo-700:hover { + border-color: #4338ca; } -.pb-48 { - padding-bottom: 12rem; +.hover\:border-indigo-800:hover { + border-color: #3730a3; } -.pl-48 { - padding-left: 12rem; +.hover\:border-indigo-900:hover { + border-color: #312e81; } -.pt-52 { - padding-top: 13rem; +.hover\:border-purple-50:hover { + border-color: #f5f3ff; } -.pr-52 { - padding-right: 13rem; +.hover\:border-purple-100:hover { + border-color: #ede9fe; } -.pb-52 { - padding-bottom: 13rem; +.hover\:border-purple-200:hover { + border-color: #ddd6fe; } -.pl-52 { - padding-left: 13rem; +.hover\:border-purple-300:hover { + border-color: #c4b5fd; } -.pt-56 { - padding-top: 14rem; +.hover\:border-purple-400:hover { + border-color: #a78bfa; } -.pr-56 { - padding-right: 14rem; +.hover\:border-purple-500:hover { + border-color: #8b5cf6; } -.pb-56 { - padding-bottom: 14rem; +.hover\:border-purple-600:hover { + border-color: #7c3aed; } -.pl-56 { - padding-left: 14rem; +.hover\:border-purple-700:hover { + border-color: #6d28d9; } -.pt-60 { - padding-top: 15rem; +.hover\:border-purple-800:hover { + border-color: #5b21b6; } -.pr-60 { - padding-right: 15rem; +.hover\:border-purple-900:hover { + border-color: #4c1d95; } -.pb-60 { - padding-bottom: 15rem; +.hover\:border-pink-50:hover { + border-color: #fdf2f8; } -.pl-60 { - padding-left: 15rem; +.hover\:border-pink-100:hover { + border-color: #fce7f3; } -.pt-64 { - padding-top: 16rem; +.hover\:border-pink-200:hover { + border-color: #fbcfe8; } -.pr-64 { - padding-right: 16rem; +.hover\:border-pink-300:hover { + border-color: #f9a8d4; } -.pb-64 { - padding-bottom: 16rem; +.hover\:border-pink-400:hover { + border-color: #f472b6; } -.pl-64 { - padding-left: 16rem; +.hover\:border-pink-500:hover { + border-color: #ec4899; } -.pt-72 { - padding-top: 18rem; +.hover\:border-pink-600:hover { + border-color: #db2777; } -.pr-72 { - padding-right: 18rem; +.hover\:border-pink-700:hover { + border-color: #be185d; } -.pb-72 { - padding-bottom: 18rem; +.hover\:border-pink-800:hover { + border-color: #9d174d; } -.pl-72 { - padding-left: 18rem; +.hover\:border-pink-900:hover { + border-color: #831843; } -.pt-80 { - padding-top: 20rem; +.focus\:border-transparent:focus { + border-color: transparent; } -.pr-80 { - padding-right: 20rem; +.focus\:border-current:focus { + border-color: currentColor; } -.pb-80 { - padding-bottom: 20rem; +.focus\:border-black:focus { + border-color: #000; } -.pl-80 { - padding-left: 20rem; +.focus\:border-white:focus { + border-color: #fff; } -.pt-96 { - padding-top: 24rem; +.focus\:border-gray-50:focus { + border-color: #f9fafb; } -.pr-96 { - padding-right: 24rem; -} +.focus\:border-gray-100:focus { + border-color: #f3f4f6; +} -.pb-96 { - padding-bottom: 24rem; +.focus\:border-gray-200:focus { + border-color: #e5e7eb; } -.pl-96 { - padding-left: 24rem; +.focus\:border-gray-300:focus { + border-color: #d1d5db; } -.pt-px { - padding-top: 1px; +.focus\:border-gray-400:focus { + border-color: #9ca3af; } -.pr-px { - padding-right: 1px; +.focus\:border-gray-500:focus { + border-color: #6b7280; } -.pb-px { - padding-bottom: 1px; +.focus\:border-gray-600:focus { + border-color: #4b5563; } -.pl-px { - padding-left: 1px; +.focus\:border-gray-700:focus { + border-color: #374151; } -.pt-0\.5 { - padding-top: 0.125rem; +.focus\:border-gray-800:focus { + border-color: #1f2937; } -.pr-0\.5 { - padding-right: 0.125rem; +.focus\:border-gray-900:focus { + border-color: #111827; } -.pb-0\.5 { - padding-bottom: 0.125rem; +.focus\:border-red-50:focus { + border-color: #fef2f2; } -.pl-0\.5 { - padding-left: 0.125rem; +.focus\:border-red-100:focus { + border-color: #fee2e2; } -.pt-1\.5 { - padding-top: 0.375rem; +.focus\:border-red-200:focus { + border-color: #fecaca; } -.pr-1\.5 { - padding-right: 0.375rem; +.focus\:border-red-300:focus { + border-color: #fca5a5; } -.pb-1\.5 { - padding-bottom: 0.375rem; +.focus\:border-red-400:focus { + border-color: #f87171; } -.pl-1\.5 { - padding-left: 0.375rem; +.focus\:border-red-500:focus { + border-color: #ef4444; } -.pt-2\.5 { - padding-top: 0.625rem; +.focus\:border-red-600:focus { + border-color: #dc2626; } -.pr-2\.5 { - padding-right: 0.625rem; +.focus\:border-red-700:focus { + border-color: #b91c1c; } -.pb-2\.5 { - padding-bottom: 0.625rem; +.focus\:border-red-800:focus { + border-color: #991b1b; } -.pl-2\.5 { - padding-left: 0.625rem; +.focus\:border-red-900:focus { + border-color: #7f1d1d; } -.pt-3\.5 { - padding-top: 0.875rem; +.focus\:border-yellow-50:focus { + border-color: #fffbeb; } -.pr-3\.5 { - padding-right: 0.875rem; +.focus\:border-yellow-100:focus { + border-color: #fef3c7; } -.pb-3\.5 { - padding-bottom: 0.875rem; +.focus\:border-yellow-200:focus { + border-color: #fde68a; } -.pl-3\.5 { - padding-left: 0.875rem; +.focus\:border-yellow-300:focus { + border-color: #fcd34d; } -.placeholder-transparent::placeholder { - color: transparent; +.focus\:border-yellow-400:focus { + border-color: #fbbf24; } -.placeholder-current::placeholder { - color: currentColor; +.focus\:border-yellow-500:focus { + border-color: #f59e0b; } -.placeholder-black::placeholder { - color: #000; +.focus\:border-yellow-600:focus { + border-color: #d97706; } -.placeholder-white::placeholder { - color: #fff; +.focus\:border-yellow-700:focus { + border-color: #b45309; } -.placeholder-gray-50::placeholder { - color: #f9fafb; +.focus\:border-yellow-800:focus { + border-color: #92400e; } -.placeholder-gray-100::placeholder { - color: #f3f4f6; +.focus\:border-yellow-900:focus { + border-color: #78350f; } -.placeholder-gray-200::placeholder { - color: #e5e7eb; +.focus\:border-green-50:focus { + border-color: #ecfdf5; } -.placeholder-gray-300::placeholder { - color: #d1d5db; +.focus\:border-green-100:focus { + border-color: #d1fae5; } -.placeholder-gray-400::placeholder { - color: #9ca3af; +.focus\:border-green-200:focus { + border-color: #a7f3d0; } -.placeholder-gray-500::placeholder { - color: #6b7280; +.focus\:border-green-300:focus { + border-color: #6ee7b7; } -.placeholder-gray-600::placeholder { - color: #4b5563; +.focus\:border-green-400:focus { + border-color: #34d399; } -.placeholder-gray-700::placeholder { - color: #374151; +.focus\:border-green-500:focus { + border-color: #10b981; } -.placeholder-gray-800::placeholder { - color: #1f2937; +.focus\:border-green-600:focus { + border-color: #059669; } -.placeholder-gray-900::placeholder { - color: #111827; +.focus\:border-green-700:focus { + border-color: #047857; } -.placeholder-red-50::placeholder { - color: #fef2f2; +.focus\:border-green-800:focus { + border-color: #065f46; } -.placeholder-red-100::placeholder { - color: #fee2e2; +.focus\:border-green-900:focus { + border-color: #064e3b; } -.placeholder-red-200::placeholder { - color: #fecaca; +.focus\:border-blue-50:focus { + border-color: #eff6ff; } -.placeholder-red-300::placeholder { - color: #fca5a5; +.focus\:border-blue-100:focus { + border-color: #dbeafe; } -.placeholder-red-400::placeholder { - color: #f87171; +.focus\:border-blue-200:focus { + border-color: #bfdbfe; } -.placeholder-red-500::placeholder { - color: #ef4444; +.focus\:border-blue-300:focus { + border-color: #93c5fd; } -.placeholder-red-600::placeholder { - color: #dc2626; +.focus\:border-blue-400:focus { + border-color: #60a5fa; } -.placeholder-red-700::placeholder { - color: #b91c1c; +.focus\:border-blue-500:focus { + border-color: #3b82f6; } -.placeholder-red-800::placeholder { - color: #991b1b; +.focus\:border-blue-600:focus { + border-color: #2563eb; } -.placeholder-red-900::placeholder { - color: #7f1d1d; +.focus\:border-blue-700:focus { + border-color: #1d4ed8; } -.placeholder-yellow-50::placeholder { - color: #fffbeb; +.focus\:border-blue-800:focus { + border-color: #1e40af; } -.placeholder-yellow-100::placeholder { - color: #fef3c7; +.focus\:border-blue-900:focus { + border-color: #1e3a8a; } -.placeholder-yellow-200::placeholder { - color: #fde68a; +.focus\:border-indigo-50:focus { + border-color: #eef2ff; } -.placeholder-yellow-300::placeholder { - color: #fcd34d; +.focus\:border-indigo-100:focus { + border-color: #e0e7ff; } -.placeholder-yellow-400::placeholder { - color: #fbbf24; +.focus\:border-indigo-200:focus { + border-color: #c7d2fe; } -.placeholder-yellow-500::placeholder { - color: #f59e0b; +.focus\:border-indigo-300:focus { + border-color: #a5b4fc; } -.placeholder-yellow-600::placeholder { - color: #d97706; +.focus\:border-indigo-400:focus { + border-color: #818cf8; } -.placeholder-yellow-700::placeholder { - color: #b45309; +.focus\:border-indigo-500:focus { + border-color: #6366f1; } -.placeholder-yellow-800::placeholder { - color: #92400e; +.focus\:border-indigo-600:focus { + border-color: #4f46e5; } -.placeholder-yellow-900::placeholder { - color: #78350f; +.focus\:border-indigo-700:focus { + border-color: #4338ca; } -.placeholder-green-50::placeholder { - color: #ecfdf5; +.focus\:border-indigo-800:focus { + border-color: #3730a3; } -.placeholder-green-100::placeholder { - color: #d1fae5; +.focus\:border-indigo-900:focus { + border-color: #312e81; } -.placeholder-green-200::placeholder { - color: #a7f3d0; +.focus\:border-purple-50:focus { + border-color: #f5f3ff; } -.placeholder-green-300::placeholder { - color: #6ee7b7; +.focus\:border-purple-100:focus { + border-color: #ede9fe; } -.placeholder-green-400::placeholder { - color: #34d399; +.focus\:border-purple-200:focus { + border-color: #ddd6fe; } -.placeholder-green-500::placeholder { - color: #10b981; +.focus\:border-purple-300:focus { + border-color: #c4b5fd; } -.placeholder-green-600::placeholder { - color: #059669; +.focus\:border-purple-400:focus { + border-color: #a78bfa; } -.placeholder-green-700::placeholder { - color: #047857; +.focus\:border-purple-500:focus { + border-color: #8b5cf6; } -.placeholder-green-800::placeholder { - color: #065f46; +.focus\:border-purple-600:focus { + border-color: #7c3aed; } -.placeholder-green-900::placeholder { - color: #064e3b; +.focus\:border-purple-700:focus { + border-color: #6d28d9; } -.placeholder-blue-50::placeholder { - color: #eff6ff; +.focus\:border-purple-800:focus { + border-color: #5b21b6; } -.placeholder-blue-100::placeholder { - color: #dbeafe; +.focus\:border-purple-900:focus { + border-color: #4c1d95; } -.placeholder-blue-200::placeholder { - color: #bfdbfe; +.focus\:border-pink-50:focus { + border-color: #fdf2f8; } -.placeholder-blue-300::placeholder { - color: #93c5fd; +.focus\:border-pink-100:focus { + border-color: #fce7f3; } -.placeholder-blue-400::placeholder { - color: #60a5fa; +.focus\:border-pink-200:focus { + border-color: #fbcfe8; } -.placeholder-blue-500::placeholder { - color: #3b82f6; +.focus\:border-pink-300:focus { + border-color: #f9a8d4; } -.placeholder-blue-600::placeholder { - color: #2563eb; +.focus\:border-pink-400:focus { + border-color: #f472b6; } -.placeholder-blue-700::placeholder { - color: #1d4ed8; +.focus\:border-pink-500:focus { + border-color: #ec4899; } -.placeholder-blue-800::placeholder { - color: #1e40af; +.focus\:border-pink-600:focus { + border-color: #db2777; } -.placeholder-blue-900::placeholder { - color: #1e3a8a; +.focus\:border-pink-700:focus { + border-color: #be185d; } -.placeholder-indigo-50::placeholder { - color: #eef2ff; +.focus\:border-pink-800:focus { + border-color: #9d174d; } -.placeholder-indigo-100::placeholder { - color: #e0e7ff; +.focus\:border-pink-900:focus { + border-color: #831843; } -.placeholder-indigo-200::placeholder { - color: #c7d2fe; +.bg-transparent { + background-color: transparent; } -.placeholder-indigo-300::placeholder { - color: #a5b4fc; +.bg-current { + background-color: currentColor; } -.placeholder-indigo-400::placeholder { - color: #818cf8; +.bg-black { + background-color: #000; } -.placeholder-indigo-500::placeholder { - color: #6366f1; +.bg-white { + background-color: #fff; } -.placeholder-indigo-600::placeholder { - color: #4f46e5; +.bg-gray-50 { + background-color: #f9fafb; } -.placeholder-indigo-700::placeholder { - color: #4338ca; +.bg-gray-100 { + background-color: #f3f4f6; } -.placeholder-indigo-800::placeholder { - color: #3730a3; +.bg-gray-200 { + background-color: #e5e7eb; } -.placeholder-indigo-900::placeholder { - color: #312e81; +.bg-gray-300 { + background-color: #d1d5db; } -.placeholder-purple-50::placeholder { - color: #f5f3ff; +.bg-gray-400 { + background-color: #9ca3af; } -.placeholder-purple-100::placeholder { - color: #ede9fe; +.bg-gray-500 { + background-color: #6b7280; } -.placeholder-purple-200::placeholder { - color: #ddd6fe; +.bg-gray-600 { + background-color: #4b5563; } -.placeholder-purple-300::placeholder { - color: #c4b5fd; +.bg-gray-700 { + background-color: #374151; } -.placeholder-purple-400::placeholder { - color: #a78bfa; +.bg-gray-800 { + background-color: #1f2937; } -.placeholder-purple-500::placeholder { - color: #8b5cf6; +.bg-gray-900 { + background-color: #111827; } -.placeholder-purple-600::placeholder { - color: #7c3aed; +.bg-red-50 { + background-color: #fef2f2; } -.placeholder-purple-700::placeholder { - color: #6d28d9; +.bg-red-100 { + background-color: #fee2e2; } -.placeholder-purple-800::placeholder { - color: #5b21b6; +.bg-red-200 { + background-color: #fecaca; } -.placeholder-purple-900::placeholder { - color: #4c1d95; +.bg-red-300 { + background-color: #fca5a5; } -.placeholder-pink-50::placeholder { - color: #fdf2f8; +.bg-red-400 { + background-color: #f87171; } -.placeholder-pink-100::placeholder { - color: #fce7f3; +.bg-red-500 { + background-color: #ef4444; } -.placeholder-pink-200::placeholder { - color: #fbcfe8; +.bg-red-600 { + background-color: #dc2626; } -.placeholder-pink-300::placeholder { - color: #f9a8d4; +.bg-red-700 { + background-color: #b91c1c; } -.placeholder-pink-400::placeholder { - color: #f472b6; +.bg-red-800 { + background-color: #991b1b; } -.placeholder-pink-500::placeholder { - color: #ec4899; +.bg-red-900 { + background-color: #7f1d1d; } -.placeholder-pink-600::placeholder { - color: #db2777; +.bg-yellow-50 { + background-color: #fffbeb; } -.placeholder-pink-700::placeholder { - color: #be185d; +.bg-yellow-100 { + background-color: #fef3c7; } -.placeholder-pink-800::placeholder { - color: #9d174d; +.bg-yellow-200 { + background-color: #fde68a; } -.placeholder-pink-900::placeholder { - color: #831843; +.bg-yellow-300 { + background-color: #fcd34d; } -.focus\:placeholder-transparent:focus::placeholder { - color: transparent; +.bg-yellow-400 { + background-color: #fbbf24; } -.focus\:placeholder-current:focus::placeholder { - color: currentColor; +.bg-yellow-500 { + background-color: #f59e0b; } -.focus\:placeholder-black:focus::placeholder { - color: #000; +.bg-yellow-600 { + background-color: #d97706; } -.focus\:placeholder-white:focus::placeholder { - color: #fff; +.bg-yellow-700 { + background-color: #b45309; } -.focus\:placeholder-gray-50:focus::placeholder { - color: #f9fafb; +.bg-yellow-800 { + background-color: #92400e; } -.focus\:placeholder-gray-100:focus::placeholder { - color: #f3f4f6; +.bg-yellow-900 { + background-color: #78350f; } -.focus\:placeholder-gray-200:focus::placeholder { - color: #e5e7eb; +.bg-green-50 { + background-color: #ecfdf5; } -.focus\:placeholder-gray-300:focus::placeholder { - color: #d1d5db; +.bg-green-100 { + background-color: #d1fae5; } -.focus\:placeholder-gray-400:focus::placeholder { - color: #9ca3af; +.bg-green-200 { + background-color: #a7f3d0; } -.focus\:placeholder-gray-500:focus::placeholder { - color: #6b7280; +.bg-green-300 { + background-color: #6ee7b7; } -.focus\:placeholder-gray-600:focus::placeholder { - color: #4b5563; +.bg-green-400 { + background-color: #34d399; } -.focus\:placeholder-gray-700:focus::placeholder { - color: #374151; +.bg-green-500 { + background-color: #10b981; } -.focus\:placeholder-gray-800:focus::placeholder { - color: #1f2937; +.bg-green-600 { + background-color: #059669; } -.focus\:placeholder-gray-900:focus::placeholder { - color: #111827; +.bg-green-700 { + background-color: #047857; } -.focus\:placeholder-red-50:focus::placeholder { - color: #fef2f2; +.bg-green-800 { + background-color: #065f46; } -.focus\:placeholder-red-100:focus::placeholder { - color: #fee2e2; +.bg-green-900 { + background-color: #064e3b; } -.focus\:placeholder-red-200:focus::placeholder { - color: #fecaca; +.bg-blue-50 { + background-color: #eff6ff; } -.focus\:placeholder-red-300:focus::placeholder { - color: #fca5a5; +.bg-blue-100 { + background-color: #dbeafe; } -.focus\:placeholder-red-400:focus::placeholder { - color: #f87171; +.bg-blue-200 { + background-color: #bfdbfe; } -.focus\:placeholder-red-500:focus::placeholder { - color: #ef4444; +.bg-blue-300 { + background-color: #93c5fd; } -.focus\:placeholder-red-600:focus::placeholder { - color: #dc2626; +.bg-blue-400 { + background-color: #60a5fa; } -.focus\:placeholder-red-700:focus::placeholder { - color: #b91c1c; +.bg-blue-500 { + background-color: #3b82f6; } -.focus\:placeholder-red-800:focus::placeholder { - color: #991b1b; +.bg-blue-600 { + background-color: #2563eb; } -.focus\:placeholder-red-900:focus::placeholder { - color: #7f1d1d; +.bg-blue-700 { + background-color: #1d4ed8; } -.focus\:placeholder-yellow-50:focus::placeholder { - color: #fffbeb; +.bg-blue-800 { + background-color: #1e40af; } -.focus\:placeholder-yellow-100:focus::placeholder { - color: #fef3c7; +.bg-blue-900 { + background-color: #1e3a8a; } -.focus\:placeholder-yellow-200:focus::placeholder { - color: #fde68a; +.bg-indigo-50 { + background-color: #eef2ff; } -.focus\:placeholder-yellow-300:focus::placeholder { - color: #fcd34d; +.bg-indigo-100 { + background-color: #e0e7ff; } -.focus\:placeholder-yellow-400:focus::placeholder { - color: #fbbf24; +.bg-indigo-200 { + background-color: #c7d2fe; } -.focus\:placeholder-yellow-500:focus::placeholder { - color: #f59e0b; +.bg-indigo-300 { + background-color: #a5b4fc; } -.focus\:placeholder-yellow-600:focus::placeholder { - color: #d97706; +.bg-indigo-400 { + background-color: #818cf8; } -.focus\:placeholder-yellow-700:focus::placeholder { - color: #b45309; +.bg-indigo-500 { + background-color: #6366f1; } -.focus\:placeholder-yellow-800:focus::placeholder { - color: #92400e; +.bg-indigo-600 { + background-color: #4f46e5; } -.focus\:placeholder-yellow-900:focus::placeholder { - color: #78350f; +.bg-indigo-700 { + background-color: #4338ca; } -.focus\:placeholder-green-50:focus::placeholder { - color: #ecfdf5; +.bg-indigo-800 { + background-color: #3730a3; } -.focus\:placeholder-green-100:focus::placeholder { - color: #d1fae5; +.bg-indigo-900 { + background-color: #312e81; } -.focus\:placeholder-green-200:focus::placeholder { - color: #a7f3d0; +.bg-purple-50 { + background-color: #f5f3ff; } -.focus\:placeholder-green-300:focus::placeholder { - color: #6ee7b7; +.bg-purple-100 { + background-color: #ede9fe; } -.focus\:placeholder-green-400:focus::placeholder { - color: #34d399; +.bg-purple-200 { + background-color: #ddd6fe; } -.focus\:placeholder-green-500:focus::placeholder { - color: #10b981; +.bg-purple-300 { + background-color: #c4b5fd; } -.focus\:placeholder-green-600:focus::placeholder { - color: #059669; +.bg-purple-400 { + background-color: #a78bfa; } -.focus\:placeholder-green-700:focus::placeholder { - color: #047857; +.bg-purple-500 { + background-color: #8b5cf6; } -.focus\:placeholder-green-800:focus::placeholder { - color: #065f46; +.bg-purple-600 { + background-color: #7c3aed; } -.focus\:placeholder-green-900:focus::placeholder { - color: #064e3b; +.bg-purple-700 { + background-color: #6d28d9; } -.focus\:placeholder-blue-50:focus::placeholder { - color: #eff6ff; +.bg-purple-800 { + background-color: #5b21b6; } -.focus\:placeholder-blue-100:focus::placeholder { - color: #dbeafe; +.bg-purple-900 { + background-color: #4c1d95; } -.focus\:placeholder-blue-200:focus::placeholder { - color: #bfdbfe; +.bg-pink-50 { + background-color: #fdf2f8; } -.focus\:placeholder-blue-300:focus::placeholder { - color: #93c5fd; +.bg-pink-100 { + background-color: #fce7f3; } -.focus\:placeholder-blue-400:focus::placeholder { - color: #60a5fa; +.bg-pink-200 { + background-color: #fbcfe8; } -.focus\:placeholder-blue-500:focus::placeholder { - color: #3b82f6; +.bg-pink-300 { + background-color: #f9a8d4; } -.focus\:placeholder-blue-600:focus::placeholder { - color: #2563eb; +.bg-pink-400 { + background-color: #f472b6; } -.focus\:placeholder-blue-700:focus::placeholder { - color: #1d4ed8; +.bg-pink-500 { + background-color: #ec4899; } -.focus\:placeholder-blue-800:focus::placeholder { - color: #1e40af; +.bg-pink-600 { + background-color: #db2777; } -.focus\:placeholder-blue-900:focus::placeholder { - color: #1e3a8a; +.bg-pink-700 { + background-color: #be185d; } -.focus\:placeholder-indigo-50:focus::placeholder { - color: #eef2ff; +.bg-pink-800 { + background-color: #9d174d; } -.focus\:placeholder-indigo-100:focus::placeholder { - color: #e0e7ff; +.bg-pink-900 { + background-color: #831843; } -.focus\:placeholder-indigo-200:focus::placeholder { - color: #c7d2fe; +.group:hover .group-hover\:bg-transparent { + background-color: transparent; } -.focus\:placeholder-indigo-300:focus::placeholder { - color: #a5b4fc; +.group:hover .group-hover\:bg-current { + background-color: currentColor; } -.focus\:placeholder-indigo-400:focus::placeholder { - color: #818cf8; +.group:hover .group-hover\:bg-black { + background-color: #000; } -.focus\:placeholder-indigo-500:focus::placeholder { - color: #6366f1; +.group:hover .group-hover\:bg-white { + background-color: #fff; } -.focus\:placeholder-indigo-600:focus::placeholder { - color: #4f46e5; +.group:hover .group-hover\:bg-gray-50 { + background-color: #f9fafb; } -.focus\:placeholder-indigo-700:focus::placeholder { - color: #4338ca; +.group:hover .group-hover\:bg-gray-100 { + background-color: #f3f4f6; } -.focus\:placeholder-indigo-800:focus::placeholder { - color: #3730a3; +.group:hover .group-hover\:bg-gray-200 { + background-color: #e5e7eb; } -.focus\:placeholder-indigo-900:focus::placeholder { - color: #312e81; +.group:hover .group-hover\:bg-gray-300 { + background-color: #d1d5db; } -.focus\:placeholder-purple-50:focus::placeholder { - color: #f5f3ff; +.group:hover .group-hover\:bg-gray-400 { + background-color: #9ca3af; } -.focus\:placeholder-purple-100:focus::placeholder { - color: #ede9fe; +.group:hover .group-hover\:bg-gray-500 { + background-color: #6b7280; } -.focus\:placeholder-purple-200:focus::placeholder { - color: #ddd6fe; +.group:hover .group-hover\:bg-gray-600 { + background-color: #4b5563; } -.focus\:placeholder-purple-300:focus::placeholder { - color: #c4b5fd; +.group:hover .group-hover\:bg-gray-700 { + background-color: #374151; } -.focus\:placeholder-purple-400:focus::placeholder { - color: #a78bfa; +.group:hover .group-hover\:bg-gray-800 { + background-color: #1f2937; } -.focus\:placeholder-purple-500:focus::placeholder { - color: #8b5cf6; +.group:hover .group-hover\:bg-gray-900 { + background-color: #111827; } -.focus\:placeholder-purple-600:focus::placeholder { - color: #7c3aed; +.group:hover .group-hover\:bg-red-50 { + background-color: #fef2f2; } -.focus\:placeholder-purple-700:focus::placeholder { - color: #6d28d9; +.group:hover .group-hover\:bg-red-100 { + background-color: #fee2e2; } -.focus\:placeholder-purple-800:focus::placeholder { - color: #5b21b6; +.group:hover .group-hover\:bg-red-200 { + background-color: #fecaca; } -.focus\:placeholder-purple-900:focus::placeholder { - color: #4c1d95; +.group:hover .group-hover\:bg-red-300 { + background-color: #fca5a5; } -.focus\:placeholder-pink-50:focus::placeholder { - color: #fdf2f8; +.group:hover .group-hover\:bg-red-400 { + background-color: #f87171; } -.focus\:placeholder-pink-100:focus::placeholder { - color: #fce7f3; +.group:hover .group-hover\:bg-red-500 { + background-color: #ef4444; } -.focus\:placeholder-pink-200:focus::placeholder { - color: #fbcfe8; +.group:hover .group-hover\:bg-red-600 { + background-color: #dc2626; } -.focus\:placeholder-pink-300:focus::placeholder { - color: #f9a8d4; +.group:hover .group-hover\:bg-red-700 { + background-color: #b91c1c; } -.focus\:placeholder-pink-400:focus::placeholder { - color: #f472b6; +.group:hover .group-hover\:bg-red-800 { + background-color: #991b1b; } -.focus\:placeholder-pink-500:focus::placeholder { - color: #ec4899; +.group:hover .group-hover\:bg-red-900 { + background-color: #7f1d1d; } -.focus\:placeholder-pink-600:focus::placeholder { - color: #db2777; +.group:hover .group-hover\:bg-yellow-50 { + background-color: #fffbeb; } -.focus\:placeholder-pink-700:focus::placeholder { - color: #be185d; +.group:hover .group-hover\:bg-yellow-100 { + background-color: #fef3c7; } -.focus\:placeholder-pink-800:focus::placeholder { - color: #9d174d; +.group:hover .group-hover\:bg-yellow-200 { + background-color: #fde68a; } -.focus\:placeholder-pink-900:focus::placeholder { - color: #831843; +.group:hover .group-hover\:bg-yellow-300 { + background-color: #fcd34d; } -.pointer-events-none { - pointer-events: none; +.group:hover .group-hover\:bg-yellow-400 { + background-color: #fbbf24; } -.pointer-events-auto { - pointer-events: auto; +.group:hover .group-hover\:bg-yellow-500 { + background-color: #f59e0b; } -.static { - position: static; +.group:hover .group-hover\:bg-yellow-600 { + background-color: #d97706; } -.fixed { - position: fixed; +.group:hover .group-hover\:bg-yellow-700 { + background-color: #b45309; } -.absolute { - position: absolute; +.group:hover .group-hover\:bg-yellow-800 { + background-color: #92400e; } -.relative { - position: relative; +.group:hover .group-hover\:bg-yellow-900 { + background-color: #78350f; } -.sticky { - position: sticky; +.group:hover .group-hover\:bg-green-50 { + background-color: #ecfdf5; } -.inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; +.group:hover .group-hover\:bg-green-100 { + background-color: #d1fae5; } -.inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; +.group:hover .group-hover\:bg-green-200 { + background-color: #a7f3d0; } -.inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; +.group:hover .group-hover\:bg-green-300 { + background-color: #6ee7b7; } -.inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; +.group:hover .group-hover\:bg-green-400 { + background-color: #34d399; } -.inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; +.group:hover .group-hover\:bg-green-500 { + background-color: #10b981; } -.inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; +.group:hover .group-hover\:bg-green-600 { + background-color: #059669; } -.inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; +.group:hover .group-hover\:bg-green-700 { + background-color: #047857; } -.inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; +.group:hover .group-hover\:bg-green-800 { + background-color: #065f46; } -.inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; +.group:hover .group-hover\:bg-green-900 { + background-color: #064e3b; } -.inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; +.group:hover .group-hover\:bg-blue-50 { + background-color: #eff6ff; } -.inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; +.group:hover .group-hover\:bg-blue-100 { + background-color: #dbeafe; } -.inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; +.group:hover .group-hover\:bg-blue-200 { + background-color: #bfdbfe; } -.inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; +.group:hover .group-hover\:bg-blue-300 { + background-color: #93c5fd; } -.inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; +.group:hover .group-hover\:bg-blue-400 { + background-color: #60a5fa; } -.inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; +.group:hover .group-hover\:bg-blue-500 { + background-color: #3b82f6; } -.inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; +.group:hover .group-hover\:bg-blue-600 { + background-color: #2563eb; } -.inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; +.group:hover .group-hover\:bg-blue-700 { + background-color: #1d4ed8; } -.inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; +.group:hover .group-hover\:bg-blue-800 { + background-color: #1e40af; } -.inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; +.group:hover .group-hover\:bg-blue-900 { + background-color: #1e3a8a; } -.inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; +.group:hover .group-hover\:bg-indigo-50 { + background-color: #eef2ff; } -.inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; +.group:hover .group-hover\:bg-indigo-100 { + background-color: #e0e7ff; } -.inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; +.group:hover .group-hover\:bg-indigo-200 { + background-color: #c7d2fe; } -.inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; +.group:hover .group-hover\:bg-indigo-300 { + background-color: #a5b4fc; } -.inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; +.group:hover .group-hover\:bg-indigo-400 { + background-color: #818cf8; } -.inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; +.group:hover .group-hover\:bg-indigo-500 { + background-color: #6366f1; } -.inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; +.group:hover .group-hover\:bg-indigo-600 { + background-color: #4f46e5; } -.inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; +.group:hover .group-hover\:bg-indigo-700 { + background-color: #4338ca; } -.inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; +.group:hover .group-hover\:bg-indigo-800 { + background-color: #3730a3; } -.inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; +.group:hover .group-hover\:bg-indigo-900 { + background-color: #312e81; } -.inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; +.group:hover .group-hover\:bg-purple-50 { + background-color: #f5f3ff; } -.inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; +.group:hover .group-hover\:bg-purple-100 { + background-color: #ede9fe; } -.inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; +.group:hover .group-hover\:bg-purple-200 { + background-color: #ddd6fe; } -.inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; +.group:hover .group-hover\:bg-purple-300 { + background-color: #c4b5fd; } -.inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; +.group:hover .group-hover\:bg-purple-400 { + background-color: #a78bfa; } -.inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; +.group:hover .group-hover\:bg-purple-500 { + background-color: #8b5cf6; } -.inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; +.group:hover .group-hover\:bg-purple-600 { + background-color: #7c3aed; } -.-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; +.group:hover .group-hover\:bg-purple-700 { + background-color: #6d28d9; } -.-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; +.group:hover .group-hover\:bg-purple-800 { + background-color: #5b21b6; } -.-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; +.group:hover .group-hover\:bg-purple-900 { + background-color: #4c1d95; } -.-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; +.group:hover .group-hover\:bg-pink-50 { + background-color: #fdf2f8; } -.-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; +.group:hover .group-hover\:bg-pink-100 { + background-color: #fce7f3; } -.-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; +.group:hover .group-hover\:bg-pink-200 { + background-color: #fbcfe8; } -.-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; +.group:hover .group-hover\:bg-pink-300 { + background-color: #f9a8d4; } -.-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; +.group:hover .group-hover\:bg-pink-400 { + background-color: #f472b6; } -.-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; +.group:hover .group-hover\:bg-pink-500 { + background-color: #ec4899; } -.-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; +.group:hover .group-hover\:bg-pink-600 { + background-color: #db2777; } -.-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; +.group:hover .group-hover\:bg-pink-700 { + background-color: #be185d; } -.-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; +.group:hover .group-hover\:bg-pink-800 { + background-color: #9d174d; } -.-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; +.group:hover .group-hover\:bg-pink-900 { + background-color: #831843; } -.-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; +.focus-within\:bg-transparent:focus-within { + background-color: transparent; } -.-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; +.focus-within\:bg-current:focus-within { + background-color: currentColor; } -.-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; +.focus-within\:bg-black:focus-within { + background-color: #000; } -.-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; +.focus-within\:bg-white:focus-within { + background-color: #fff; } -.-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; +.focus-within\:bg-gray-50:focus-within { + background-color: #f9fafb; } -.-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; +.focus-within\:bg-gray-100:focus-within { + background-color: #f3f4f6; } -.-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; +.focus-within\:bg-gray-200:focus-within { + background-color: #e5e7eb; } -.-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; +.focus-within\:bg-gray-300:focus-within { + background-color: #d1d5db; } -.-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; +.focus-within\:bg-gray-400:focus-within { + background-color: #9ca3af; } -.-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; +.focus-within\:bg-gray-500:focus-within { + background-color: #6b7280; } -.-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; +.focus-within\:bg-gray-600:focus-within { + background-color: #4b5563; } -.-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; +.focus-within\:bg-gray-700:focus-within { + background-color: #374151; } -.-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; +.focus-within\:bg-gray-800:focus-within { + background-color: #1f2937; } -.-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; +.focus-within\:bg-gray-900:focus-within { + background-color: #111827; } -.-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; +.focus-within\:bg-red-50:focus-within { + background-color: #fef2f2; } -.-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; +.focus-within\:bg-red-100:focus-within { + background-color: #fee2e2; } -.-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; +.focus-within\:bg-red-200:focus-within { + background-color: #fecaca; } -.-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; +.focus-within\:bg-red-300:focus-within { + background-color: #fca5a5; } -.-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; +.focus-within\:bg-red-400:focus-within { + background-color: #f87171; } -.-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; +.focus-within\:bg-red-500:focus-within { + background-color: #ef4444; } -.-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; +.focus-within\:bg-red-600:focus-within { + background-color: #dc2626; } -.-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; +.focus-within\:bg-red-700:focus-within { + background-color: #b91c1c; } -.inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; +.focus-within\:bg-red-800:focus-within { + background-color: #991b1b; } -.inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; +.focus-within\:bg-red-900:focus-within { + background-color: #7f1d1d; } -.inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; +.focus-within\:bg-yellow-50:focus-within { + background-color: #fffbeb; } -.inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; +.focus-within\:bg-yellow-100:focus-within { + background-color: #fef3c7; } -.inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; +.focus-within\:bg-yellow-200:focus-within { + background-color: #fde68a; } -.inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; +.focus-within\:bg-yellow-300:focus-within { + background-color: #fcd34d; } -.inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; +.focus-within\:bg-yellow-400:focus-within { + background-color: #fbbf24; } -.-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; +.focus-within\:bg-yellow-500:focus-within { + background-color: #f59e0b; } -.-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; +.focus-within\:bg-yellow-600:focus-within { + background-color: #d97706; } -.-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; +.focus-within\:bg-yellow-700:focus-within { + background-color: #b45309; } -.-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; +.focus-within\:bg-yellow-800:focus-within { + background-color: #92400e; } -.-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; +.focus-within\:bg-yellow-900:focus-within { + background-color: #78350f; } -.-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; +.focus-within\:bg-green-50:focus-within { + background-color: #ecfdf5; } -.-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; +.focus-within\:bg-green-100:focus-within { + background-color: #d1fae5; } -.inset-y-0 { - top: 0px; - bottom: 0px; +.focus-within\:bg-green-200:focus-within { + background-color: #a7f3d0; } -.inset-x-0 { - right: 0px; - left: 0px; +.focus-within\:bg-green-300:focus-within { + background-color: #6ee7b7; } -.inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; +.focus-within\:bg-green-400:focus-within { + background-color: #34d399; } -.inset-x-1 { - right: 0.25rem; - left: 0.25rem; +.focus-within\:bg-green-500:focus-within { + background-color: #10b981; } -.inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; +.focus-within\:bg-green-600:focus-within { + background-color: #059669; } -.inset-x-2 { - right: 0.5rem; - left: 0.5rem; +.focus-within\:bg-green-700:focus-within { + background-color: #047857; } -.inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; +.focus-within\:bg-green-800:focus-within { + background-color: #065f46; } -.inset-x-3 { - right: 0.75rem; - left: 0.75rem; +.focus-within\:bg-green-900:focus-within { + background-color: #064e3b; } -.inset-y-4 { - top: 1rem; - bottom: 1rem; +.focus-within\:bg-blue-50:focus-within { + background-color: #eff6ff; } -.inset-x-4 { - right: 1rem; - left: 1rem; +.focus-within\:bg-blue-100:focus-within { + background-color: #dbeafe; } -.inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; +.focus-within\:bg-blue-200:focus-within { + background-color: #bfdbfe; } -.inset-x-5 { - right: 1.25rem; - left: 1.25rem; +.focus-within\:bg-blue-300:focus-within { + background-color: #93c5fd; } -.inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; +.focus-within\:bg-blue-400:focus-within { + background-color: #60a5fa; } -.inset-x-6 { - right: 1.5rem; - left: 1.5rem; +.focus-within\:bg-blue-500:focus-within { + background-color: #3b82f6; } -.inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; +.focus-within\:bg-blue-600:focus-within { + background-color: #2563eb; } -.inset-x-7 { - right: 1.75rem; - left: 1.75rem; +.focus-within\:bg-blue-700:focus-within { + background-color: #1d4ed8; } -.inset-y-8 { - top: 2rem; - bottom: 2rem; +.focus-within\:bg-blue-800:focus-within { + background-color: #1e40af; } -.inset-x-8 { - right: 2rem; - left: 2rem; +.focus-within\:bg-blue-900:focus-within { + background-color: #1e3a8a; } -.inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; +.focus-within\:bg-indigo-50:focus-within { + background-color: #eef2ff; } -.inset-x-9 { - right: 2.25rem; - left: 2.25rem; +.focus-within\:bg-indigo-100:focus-within { + background-color: #e0e7ff; } -.inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; +.focus-within\:bg-indigo-200:focus-within { + background-color: #c7d2fe; } -.inset-x-10 { - right: 2.5rem; - left: 2.5rem; +.focus-within\:bg-indigo-300:focus-within { + background-color: #a5b4fc; } -.inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; +.focus-within\:bg-indigo-400:focus-within { + background-color: #818cf8; } -.inset-x-11 { - right: 2.75rem; - left: 2.75rem; +.focus-within\:bg-indigo-500:focus-within { + background-color: #6366f1; } -.inset-y-12 { - top: 3rem; - bottom: 3rem; +.focus-within\:bg-indigo-600:focus-within { + background-color: #4f46e5; } -.inset-x-12 { - right: 3rem; - left: 3rem; +.focus-within\:bg-indigo-700:focus-within { + background-color: #4338ca; } -.inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; +.focus-within\:bg-indigo-800:focus-within { + background-color: #3730a3; } -.inset-x-14 { - right: 3.5rem; - left: 3.5rem; +.focus-within\:bg-indigo-900:focus-within { + background-color: #312e81; } -.inset-y-16 { - top: 4rem; - bottom: 4rem; +.focus-within\:bg-purple-50:focus-within { + background-color: #f5f3ff; } -.inset-x-16 { - right: 4rem; - left: 4rem; +.focus-within\:bg-purple-100:focus-within { + background-color: #ede9fe; } -.inset-y-20 { - top: 5rem; - bottom: 5rem; +.focus-within\:bg-purple-200:focus-within { + background-color: #ddd6fe; } -.inset-x-20 { - right: 5rem; - left: 5rem; +.focus-within\:bg-purple-300:focus-within { + background-color: #c4b5fd; } -.inset-y-24 { - top: 6rem; - bottom: 6rem; +.focus-within\:bg-purple-400:focus-within { + background-color: #a78bfa; } -.inset-x-24 { - right: 6rem; - left: 6rem; +.focus-within\:bg-purple-500:focus-within { + background-color: #8b5cf6; } -.inset-y-28 { - top: 7rem; - bottom: 7rem; +.focus-within\:bg-purple-600:focus-within { + background-color: #7c3aed; } -.inset-x-28 { - right: 7rem; - left: 7rem; +.focus-within\:bg-purple-700:focus-within { + background-color: #6d28d9; } -.inset-y-32 { - top: 8rem; - bottom: 8rem; +.focus-within\:bg-purple-800:focus-within { + background-color: #5b21b6; } -.inset-x-32 { - right: 8rem; - left: 8rem; +.focus-within\:bg-purple-900:focus-within { + background-color: #4c1d95; } -.inset-y-36 { - top: 9rem; - bottom: 9rem; +.focus-within\:bg-pink-50:focus-within { + background-color: #fdf2f8; } -.inset-x-36 { - right: 9rem; - left: 9rem; +.focus-within\:bg-pink-100:focus-within { + background-color: #fce7f3; } -.inset-y-40 { - top: 10rem; - bottom: 10rem; +.focus-within\:bg-pink-200:focus-within { + background-color: #fbcfe8; } -.inset-x-40 { - right: 10rem; - left: 10rem; +.focus-within\:bg-pink-300:focus-within { + background-color: #f9a8d4; } -.inset-y-44 { - top: 11rem; - bottom: 11rem; +.focus-within\:bg-pink-400:focus-within { + background-color: #f472b6; } -.inset-x-44 { - right: 11rem; - left: 11rem; +.focus-within\:bg-pink-500:focus-within { + background-color: #ec4899; } -.inset-y-48 { - top: 12rem; - bottom: 12rem; +.focus-within\:bg-pink-600:focus-within { + background-color: #db2777; } -.inset-x-48 { - right: 12rem; - left: 12rem; +.focus-within\:bg-pink-700:focus-within { + background-color: #be185d; } -.inset-y-52 { - top: 13rem; - bottom: 13rem; +.focus-within\:bg-pink-800:focus-within { + background-color: #9d174d; } -.inset-x-52 { - right: 13rem; - left: 13rem; +.focus-within\:bg-pink-900:focus-within { + background-color: #831843; } -.inset-y-56 { - top: 14rem; - bottom: 14rem; +.hover\:bg-transparent:hover { + background-color: transparent; } -.inset-x-56 { - right: 14rem; - left: 14rem; +.hover\:bg-current:hover { + background-color: currentColor; } -.inset-y-60 { - top: 15rem; - bottom: 15rem; +.hover\:bg-black:hover { + background-color: #000; } -.inset-x-60 { - right: 15rem; - left: 15rem; +.hover\:bg-white:hover { + background-color: #fff; } -.inset-y-64 { - top: 16rem; - bottom: 16rem; +.hover\:bg-gray-50:hover { + background-color: #f9fafb; } -.inset-x-64 { - right: 16rem; - left: 16rem; +.hover\:bg-gray-100:hover { + background-color: #f3f4f6; } -.inset-y-72 { - top: 18rem; - bottom: 18rem; +.hover\:bg-gray-200:hover { + background-color: #e5e7eb; } -.inset-x-72 { - right: 18rem; - left: 18rem; +.hover\:bg-gray-300:hover { + background-color: #d1d5db; } -.inset-y-80 { - top: 20rem; - bottom: 20rem; +.hover\:bg-gray-400:hover { + background-color: #9ca3af; } -.inset-x-80 { - right: 20rem; - left: 20rem; +.hover\:bg-gray-500:hover { + background-color: #6b7280; } -.inset-y-96 { - top: 24rem; - bottom: 24rem; +.hover\:bg-gray-600:hover { + background-color: #4b5563; } -.inset-x-96 { - right: 24rem; - left: 24rem; +.hover\:bg-gray-700:hover { + background-color: #374151; } -.inset-y-auto { - top: auto; - bottom: auto; +.hover\:bg-gray-800:hover { + background-color: #1f2937; } -.inset-x-auto { - right: auto; - left: auto; +.hover\:bg-gray-900:hover { + background-color: #111827; } -.inset-y-px { - top: 1px; - bottom: 1px; +.hover\:bg-red-50:hover { + background-color: #fef2f2; } -.inset-x-px { - right: 1px; - left: 1px; +.hover\:bg-red-100:hover { + background-color: #fee2e2; } -.inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; +.hover\:bg-red-200:hover { + background-color: #fecaca; } -.inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; +.hover\:bg-red-300:hover { + background-color: #fca5a5; } -.inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; +.hover\:bg-red-400:hover { + background-color: #f87171; } -.inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; +.hover\:bg-red-500:hover { + background-color: #ef4444; } -.inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; +.hover\:bg-red-600:hover { + background-color: #dc2626; } -.inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; +.hover\:bg-red-700:hover { + background-color: #b91c1c; } -.inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; +.hover\:bg-red-800:hover { + background-color: #991b1b; } -.inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; +.hover\:bg-red-900:hover { + background-color: #7f1d1d; } -.-inset-y-0 { - top: 0px; - bottom: 0px; +.hover\:bg-yellow-50:hover { + background-color: #fffbeb; } -.-inset-x-0 { - right: 0px; - left: 0px; +.hover\:bg-yellow-100:hover { + background-color: #fef3c7; } -.-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; +.hover\:bg-yellow-200:hover { + background-color: #fde68a; } -.-inset-x-1 { - right: -0.25rem; - left: -0.25rem; +.hover\:bg-yellow-300:hover { + background-color: #fcd34d; } -.-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; +.hover\:bg-yellow-400:hover { + background-color: #fbbf24; } -.-inset-x-2 { - right: -0.5rem; - left: -0.5rem; +.hover\:bg-yellow-500:hover { + background-color: #f59e0b; } -.-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; +.hover\:bg-yellow-600:hover { + background-color: #d97706; } -.-inset-x-3 { - right: -0.75rem; - left: -0.75rem; +.hover\:bg-yellow-700:hover { + background-color: #b45309; } -.-inset-y-4 { - top: -1rem; - bottom: -1rem; +.hover\:bg-yellow-800:hover { + background-color: #92400e; } -.-inset-x-4 { - right: -1rem; - left: -1rem; +.hover\:bg-yellow-900:hover { + background-color: #78350f; } -.-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; +.hover\:bg-green-50:hover { + background-color: #ecfdf5; } -.-inset-x-5 { - right: -1.25rem; - left: -1.25rem; +.hover\:bg-green-100:hover { + background-color: #d1fae5; } -.-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; +.hover\:bg-green-200:hover { + background-color: #a7f3d0; } -.-inset-x-6 { - right: -1.5rem; - left: -1.5rem; +.hover\:bg-green-300:hover { + background-color: #6ee7b7; } -.-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; +.hover\:bg-green-400:hover { + background-color: #34d399; } -.-inset-x-7 { - right: -1.75rem; - left: -1.75rem; +.hover\:bg-green-500:hover { + background-color: #10b981; } -.-inset-y-8 { - top: -2rem; - bottom: -2rem; +.hover\:bg-green-600:hover { + background-color: #059669; } -.-inset-x-8 { - right: -2rem; - left: -2rem; +.hover\:bg-green-700:hover { + background-color: #047857; } -.-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; +.hover\:bg-green-800:hover { + background-color: #065f46; } -.-inset-x-9 { - right: -2.25rem; - left: -2.25rem; +.hover\:bg-green-900:hover { + background-color: #064e3b; } -.-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; +.hover\:bg-blue-50:hover { + background-color: #eff6ff; } -.-inset-x-10 { - right: -2.5rem; - left: -2.5rem; +.hover\:bg-blue-100:hover { + background-color: #dbeafe; } -.-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; +.hover\:bg-blue-200:hover { + background-color: #bfdbfe; } -.-inset-x-11 { - right: -2.75rem; - left: -2.75rem; +.hover\:bg-blue-300:hover { + background-color: #93c5fd; } -.-inset-y-12 { - top: -3rem; - bottom: -3rem; +.hover\:bg-blue-400:hover { + background-color: #60a5fa; } -.-inset-x-12 { - right: -3rem; - left: -3rem; +.hover\:bg-blue-500:hover { + background-color: #3b82f6; } -.-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; +.hover\:bg-blue-600:hover { + background-color: #2563eb; } -.-inset-x-14 { - right: -3.5rem; - left: -3.5rem; +.hover\:bg-blue-700:hover { + background-color: #1d4ed8; } -.-inset-y-16 { - top: -4rem; - bottom: -4rem; +.hover\:bg-blue-800:hover { + background-color: #1e40af; } -.-inset-x-16 { - right: -4rem; - left: -4rem; +.hover\:bg-blue-900:hover { + background-color: #1e3a8a; } -.-inset-y-20 { - top: -5rem; - bottom: -5rem; +.hover\:bg-indigo-50:hover { + background-color: #eef2ff; } -.-inset-x-20 { - right: -5rem; - left: -5rem; +.hover\:bg-indigo-100:hover { + background-color: #e0e7ff; } -.-inset-y-24 { - top: -6rem; - bottom: -6rem; +.hover\:bg-indigo-200:hover { + background-color: #c7d2fe; } -.-inset-x-24 { - right: -6rem; - left: -6rem; +.hover\:bg-indigo-300:hover { + background-color: #a5b4fc; } -.-inset-y-28 { - top: -7rem; - bottom: -7rem; +.hover\:bg-indigo-400:hover { + background-color: #818cf8; } -.-inset-x-28 { - right: -7rem; - left: -7rem; +.hover\:bg-indigo-500:hover { + background-color: #6366f1; } -.-inset-y-32 { - top: -8rem; - bottom: -8rem; +.hover\:bg-indigo-600:hover { + background-color: #4f46e5; } -.-inset-x-32 { - right: -8rem; - left: -8rem; +.hover\:bg-indigo-700:hover { + background-color: #4338ca; } -.-inset-y-36 { - top: -9rem; - bottom: -9rem; +.hover\:bg-indigo-800:hover { + background-color: #3730a3; } -.-inset-x-36 { - right: -9rem; - left: -9rem; +.hover\:bg-indigo-900:hover { + background-color: #312e81; } -.-inset-y-40 { - top: -10rem; - bottom: -10rem; +.hover\:bg-purple-50:hover { + background-color: #f5f3ff; } -.-inset-x-40 { - right: -10rem; - left: -10rem; +.hover\:bg-purple-100:hover { + background-color: #ede9fe; } -.-inset-y-44 { - top: -11rem; - bottom: -11rem; +.hover\:bg-purple-200:hover { + background-color: #ddd6fe; } -.-inset-x-44 { - right: -11rem; - left: -11rem; +.hover\:bg-purple-300:hover { + background-color: #c4b5fd; } -.-inset-y-48 { - top: -12rem; - bottom: -12rem; +.hover\:bg-purple-400:hover { + background-color: #a78bfa; } -.-inset-x-48 { - right: -12rem; - left: -12rem; +.hover\:bg-purple-500:hover { + background-color: #8b5cf6; } -.-inset-y-52 { - top: -13rem; - bottom: -13rem; +.hover\:bg-purple-600:hover { + background-color: #7c3aed; } -.-inset-x-52 { - right: -13rem; - left: -13rem; +.hover\:bg-purple-700:hover { + background-color: #6d28d9; } -.-inset-y-56 { - top: -14rem; - bottom: -14rem; +.hover\:bg-purple-800:hover { + background-color: #5b21b6; } -.-inset-x-56 { - right: -14rem; - left: -14rem; +.hover\:bg-purple-900:hover { + background-color: #4c1d95; } -.-inset-y-60 { - top: -15rem; - bottom: -15rem; +.hover\:bg-pink-50:hover { + background-color: #fdf2f8; } -.-inset-x-60 { - right: -15rem; - left: -15rem; +.hover\:bg-pink-100:hover { + background-color: #fce7f3; } -.-inset-y-64 { - top: -16rem; - bottom: -16rem; +.hover\:bg-pink-200:hover { + background-color: #fbcfe8; } -.-inset-x-64 { - right: -16rem; - left: -16rem; +.hover\:bg-pink-300:hover { + background-color: #f9a8d4; } -.-inset-y-72 { - top: -18rem; - bottom: -18rem; +.hover\:bg-pink-400:hover { + background-color: #f472b6; } -.-inset-x-72 { - right: -18rem; - left: -18rem; +.hover\:bg-pink-500:hover { + background-color: #ec4899; } -.-inset-y-80 { - top: -20rem; - bottom: -20rem; +.hover\:bg-pink-600:hover { + background-color: #db2777; } -.-inset-x-80 { - right: -20rem; - left: -20rem; +.hover\:bg-pink-700:hover { + background-color: #be185d; } -.-inset-y-96 { - top: -24rem; - bottom: -24rem; +.hover\:bg-pink-800:hover { + background-color: #9d174d; } -.-inset-x-96 { - right: -24rem; - left: -24rem; +.hover\:bg-pink-900:hover { + background-color: #831843; } -.-inset-y-px { - top: -1px; - bottom: -1px; +.focus\:bg-transparent:focus { + background-color: transparent; } -.-inset-x-px { - right: -1px; - left: -1px; +.focus\:bg-current:focus { + background-color: currentColor; } -.-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; +.focus\:bg-black:focus { + background-color: #000; } -.-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; +.focus\:bg-white:focus { + background-color: #fff; } -.-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; +.focus\:bg-gray-50:focus { + background-color: #f9fafb; } -.-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; +.focus\:bg-gray-100:focus { + background-color: #f3f4f6; } -.-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; +.focus\:bg-gray-200:focus { + background-color: #e5e7eb; } -.-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; +.focus\:bg-gray-300:focus { + background-color: #d1d5db; } -.-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; +.focus\:bg-gray-400:focus { + background-color: #9ca3af; } -.-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; +.focus\:bg-gray-500:focus { + background-color: #6b7280; } -.inset-y-1\/2 { - top: 50%; - bottom: 50%; +.focus\:bg-gray-600:focus { + background-color: #4b5563; } -.inset-x-1\/2 { - right: 50%; - left: 50%; +.focus\:bg-gray-700:focus { + background-color: #374151; } -.inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; +.focus\:bg-gray-800:focus { + background-color: #1f2937; } -.inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; +.focus\:bg-gray-900:focus { + background-color: #111827; } -.inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; +.focus\:bg-red-50:focus { + background-color: #fef2f2; } -.inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; +.focus\:bg-red-100:focus { + background-color: #fee2e2; } -.inset-y-1\/4 { - top: 25%; - bottom: 25%; +.focus\:bg-red-200:focus { + background-color: #fecaca; } -.inset-x-1\/4 { - right: 25%; - left: 25%; +.focus\:bg-red-300:focus { + background-color: #fca5a5; } -.inset-y-2\/4 { - top: 50%; - bottom: 50%; +.focus\:bg-red-400:focus { + background-color: #f87171; } -.inset-x-2\/4 { - right: 50%; - left: 50%; +.focus\:bg-red-500:focus { + background-color: #ef4444; } -.inset-y-3\/4 { - top: 75%; - bottom: 75%; +.focus\:bg-red-600:focus { + background-color: #dc2626; } -.inset-x-3\/4 { - right: 75%; - left: 75%; +.focus\:bg-red-700:focus { + background-color: #b91c1c; } -.inset-y-full { - top: 100%; - bottom: 100%; +.focus\:bg-red-800:focus { + background-color: #991b1b; } -.inset-x-full { - right: 100%; - left: 100%; +.focus\:bg-red-900:focus { + background-color: #7f1d1d; } -.-inset-y-1\/2 { - top: -50%; - bottom: -50%; +.focus\:bg-yellow-50:focus { + background-color: #fffbeb; } -.-inset-x-1\/2 { - right: -50%; - left: -50%; +.focus\:bg-yellow-100:focus { + background-color: #fef3c7; } -.-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; +.focus\:bg-yellow-200:focus { + background-color: #fde68a; } -.-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; +.focus\:bg-yellow-300:focus { + background-color: #fcd34d; } -.-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; +.focus\:bg-yellow-400:focus { + background-color: #fbbf24; } -.-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; +.focus\:bg-yellow-500:focus { + background-color: #f59e0b; } -.-inset-y-1\/4 { - top: -25%; - bottom: -25%; +.focus\:bg-yellow-600:focus { + background-color: #d97706; } -.-inset-x-1\/4 { - right: -25%; - left: -25%; +.focus\:bg-yellow-700:focus { + background-color: #b45309; } -.-inset-y-2\/4 { - top: -50%; - bottom: -50%; +.focus\:bg-yellow-800:focus { + background-color: #92400e; } -.-inset-x-2\/4 { - right: -50%; - left: -50%; +.focus\:bg-yellow-900:focus { + background-color: #78350f; } -.-inset-y-3\/4 { - top: -75%; - bottom: -75%; +.focus\:bg-green-50:focus { + background-color: #ecfdf5; } -.-inset-x-3\/4 { - right: -75%; - left: -75%; +.focus\:bg-green-100:focus { + background-color: #d1fae5; } -.-inset-y-full { - top: -100%; - bottom: -100%; +.focus\:bg-green-200:focus { + background-color: #a7f3d0; } -.-inset-x-full { - right: -100%; - left: -100%; +.focus\:bg-green-300:focus { + background-color: #6ee7b7; } -.top-0 { - top: 0px; +.focus\:bg-green-400:focus { + background-color: #34d399; } -.right-0 { - right: 0px; +.focus\:bg-green-500:focus { + background-color: #10b981; } -.bottom-0 { - bottom: 0px; +.focus\:bg-green-600:focus { + background-color: #059669; } -.left-0 { - left: 0px; +.focus\:bg-green-700:focus { + background-color: #047857; } -.top-1 { - top: 0.25rem; +.focus\:bg-green-800:focus { + background-color: #065f46; } -.right-1 { - right: 0.25rem; +.focus\:bg-green-900:focus { + background-color: #064e3b; } -.bottom-1 { - bottom: 0.25rem; +.focus\:bg-blue-50:focus { + background-color: #eff6ff; } -.left-1 { - left: 0.25rem; +.focus\:bg-blue-100:focus { + background-color: #dbeafe; } -.top-2 { - top: 0.5rem; +.focus\:bg-blue-200:focus { + background-color: #bfdbfe; } -.right-2 { - right: 0.5rem; +.focus\:bg-blue-300:focus { + background-color: #93c5fd; } -.bottom-2 { - bottom: 0.5rem; +.focus\:bg-blue-400:focus { + background-color: #60a5fa; } -.left-2 { - left: 0.5rem; +.focus\:bg-blue-500:focus { + background-color: #3b82f6; } -.top-3 { - top: 0.75rem; +.focus\:bg-blue-600:focus { + background-color: #2563eb; } -.right-3 { - right: 0.75rem; +.focus\:bg-blue-700:focus { + background-color: #1d4ed8; } -.bottom-3 { - bottom: 0.75rem; +.focus\:bg-blue-800:focus { + background-color: #1e40af; } -.left-3 { - left: 0.75rem; +.focus\:bg-blue-900:focus { + background-color: #1e3a8a; } -.top-4 { - top: 1rem; +.focus\:bg-indigo-50:focus { + background-color: #eef2ff; } -.right-4 { - right: 1rem; +.focus\:bg-indigo-100:focus { + background-color: #e0e7ff; } -.bottom-4 { - bottom: 1rem; +.focus\:bg-indigo-200:focus { + background-color: #c7d2fe; } -.left-4 { - left: 1rem; +.focus\:bg-indigo-300:focus { + background-color: #a5b4fc; } -.top-5 { - top: 1.25rem; +.focus\:bg-indigo-400:focus { + background-color: #818cf8; } -.right-5 { - right: 1.25rem; +.focus\:bg-indigo-500:focus { + background-color: #6366f1; } -.bottom-5 { - bottom: 1.25rem; +.focus\:bg-indigo-600:focus { + background-color: #4f46e5; } -.left-5 { - left: 1.25rem; +.focus\:bg-indigo-700:focus { + background-color: #4338ca; } -.top-6 { - top: 1.5rem; +.focus\:bg-indigo-800:focus { + background-color: #3730a3; } -.right-6 { - right: 1.5rem; +.focus\:bg-indigo-900:focus { + background-color: #312e81; } -.bottom-6 { - bottom: 1.5rem; +.focus\:bg-purple-50:focus { + background-color: #f5f3ff; } -.left-6 { - left: 1.5rem; +.focus\:bg-purple-100:focus { + background-color: #ede9fe; } -.top-7 { - top: 1.75rem; +.focus\:bg-purple-200:focus { + background-color: #ddd6fe; } -.right-7 { - right: 1.75rem; +.focus\:bg-purple-300:focus { + background-color: #c4b5fd; } -.bottom-7 { - bottom: 1.75rem; +.focus\:bg-purple-400:focus { + background-color: #a78bfa; } -.left-7 { - left: 1.75rem; +.focus\:bg-purple-500:focus { + background-color: #8b5cf6; } -.top-8 { - top: 2rem; +.focus\:bg-purple-600:focus { + background-color: #7c3aed; } -.right-8 { - right: 2rem; +.focus\:bg-purple-700:focus { + background-color: #6d28d9; } -.bottom-8 { - bottom: 2rem; +.focus\:bg-purple-800:focus { + background-color: #5b21b6; } -.left-8 { - left: 2rem; +.focus\:bg-purple-900:focus { + background-color: #4c1d95; } -.top-9 { - top: 2.25rem; +.focus\:bg-pink-50:focus { + background-color: #fdf2f8; } -.right-9 { - right: 2.25rem; +.focus\:bg-pink-100:focus { + background-color: #fce7f3; } -.bottom-9 { - bottom: 2.25rem; +.focus\:bg-pink-200:focus { + background-color: #fbcfe8; } -.left-9 { - left: 2.25rem; +.focus\:bg-pink-300:focus { + background-color: #f9a8d4; } -.top-10 { - top: 2.5rem; +.focus\:bg-pink-400:focus { + background-color: #f472b6; } -.right-10 { - right: 2.5rem; +.focus\:bg-pink-500:focus { + background-color: #ec4899; } -.bottom-10 { - bottom: 2.5rem; +.focus\:bg-pink-600:focus { + background-color: #db2777; } -.left-10 { - left: 2.5rem; +.focus\:bg-pink-700:focus { + background-color: #be185d; } -.top-11 { - top: 2.75rem; +.focus\:bg-pink-800:focus { + background-color: #9d174d; } -.right-11 { - right: 2.75rem; +.focus\:bg-pink-900:focus { + background-color: #831843; } -.bottom-11 { - bottom: 2.75rem; +.bg-none { + background-image: none; } -.left-11 { - left: 2.75rem; +.bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } -.top-12 { - top: 3rem; +.bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } -.right-12 { - right: 3rem; +.bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } -.bottom-12 { - bottom: 3rem; +.bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } -.left-12 { - left: 3rem; +.bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } -.top-14 { - top: 3.5rem; +.bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } -.right-14 { - right: 3.5rem; +.bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } -.bottom-14 { - bottom: 3.5rem; +.bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } -.left-14 { - left: 3.5rem; +.from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.top-16 { - top: 4rem; +.from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.right-16 { - right: 4rem; +.from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.bottom-16 { - bottom: 4rem; +.from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.left-16 { - left: 4rem; +.from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.top-20 { - top: 5rem; +.from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.right-20 { - right: 5rem; +.from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.bottom-20 { - bottom: 5rem; +.from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.left-20 { - left: 5rem; +.from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.top-24 { - top: 6rem; +.from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.right-24 { - right: 6rem; +.from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.bottom-24 { - bottom: 6rem; +.from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.left-24 { - left: 6rem; +.from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.top-28 { - top: 7rem; +.from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.right-28 { - right: 7rem; +.from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.bottom-28 { - bottom: 7rem; +.from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.left-28 { - left: 7rem; +.from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.top-32 { - top: 8rem; +.from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.right-32 { - right: 8rem; +.from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.bottom-32 { - bottom: 8rem; +.from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.left-32 { - left: 8rem; +.from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.top-36 { - top: 9rem; +.from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.right-36 { - right: 9rem; +.from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.bottom-36 { - bottom: 9rem; +.from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.left-36 { - left: 9rem; +.from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.top-40 { - top: 10rem; +.from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.right-40 { - right: 10rem; +.from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.bottom-40 { - bottom: 10rem; +.from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.left-40 { - left: 10rem; +.from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.top-44 { - top: 11rem; +.from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.right-44 { - right: 11rem; +.from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.bottom-44 { - bottom: 11rem; +.from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.left-44 { - left: 11rem; +.from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.top-48 { - top: 12rem; +.from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.right-48 { - right: 12rem; +.from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.bottom-48 { - bottom: 12rem; +.from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.left-48 { - left: 12rem; +.from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.top-52 { - top: 13rem; +.from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.right-52 { - right: 13rem; +.from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.bottom-52 { - bottom: 13rem; +.from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.left-52 { - left: 13rem; +.from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.top-56 { - top: 14rem; +.from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.right-56 { - right: 14rem; +.from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.bottom-56 { - bottom: 14rem; +.from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.left-56 { - left: 14rem; +.from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.top-60 { - top: 15rem; +.from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.right-60 { - right: 15rem; +.from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.bottom-60 { - bottom: 15rem; +.from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.left-60 { - left: 15rem; +.from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.top-64 { - top: 16rem; +.from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.right-64 { - right: 16rem; +.from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.bottom-64 { - bottom: 16rem; +.from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.left-64 { - left: 16rem; +.from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.top-72 { - top: 18rem; +.from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.right-72 { - right: 18rem; +.from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.bottom-72 { - bottom: 18rem; +.from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.left-72 { - left: 18rem; +.from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.top-80 { - top: 20rem; +.from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.right-80 { - right: 20rem; +.from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.bottom-80 { - bottom: 20rem; +.from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.left-80 { - left: 20rem; +.from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.top-96 { - top: 24rem; +.from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.right-96 { - right: 24rem; +.from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.bottom-96 { - bottom: 24rem; +.from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.left-96 { - left: 24rem; +.from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.top-auto { - top: auto; +.from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.right-auto { - right: auto; +.from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.bottom-auto { - bottom: auto; +.from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.left-auto { - left: auto; +.from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.top-px { - top: 1px; +.from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.right-px { - right: 1px; +.from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.bottom-px { - bottom: 1px; +.from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.left-px { - left: 1px; +.from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.top-0\.5 { - top: 0.125rem; +.from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.right-0\.5 { - right: 0.125rem; +.from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.bottom-0\.5 { - bottom: 0.125rem; +.from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.left-0\.5 { - left: 0.125rem; +.from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.top-1\.5 { - top: 0.375rem; +.from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.right-1\.5 { - right: 0.375rem; +.from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.bottom-1\.5 { - bottom: 0.375rem; +.from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.left-1\.5 { - left: 0.375rem; +.from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.top-2\.5 { - top: 0.625rem; +.from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.right-2\.5 { - right: 0.625rem; +.from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.bottom-2\.5 { - bottom: 0.625rem; +.from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.left-2\.5 { - left: 0.625rem; +.via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.top-3\.5 { - top: 0.875rem; +.via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.right-3\.5 { - right: 0.875rem; +.via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.bottom-3\.5 { - bottom: 0.875rem; +.via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.left-3\.5 { - left: 0.875rem; +.via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.-top-0 { - top: 0px; +.via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.-right-0 { - right: 0px; +.via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.-bottom-0 { - bottom: 0px; +.via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.-left-0 { - left: 0px; +.via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.-top-1 { - top: -0.25rem; +.via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.-right-1 { - right: -0.25rem; +.via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.-bottom-1 { - bottom: -0.25rem; +.via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.-left-1 { - left: -0.25rem; +.via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.-top-2 { - top: -0.5rem; +.via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.-right-2 { - right: -0.5rem; +.via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.-bottom-2 { - bottom: -0.5rem; +.via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.-left-2 { - left: -0.5rem; +.via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.-top-3 { - top: -0.75rem; +.via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.-right-3 { - right: -0.75rem; +.via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.-bottom-3 { - bottom: -0.75rem; +.via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.-left-3 { - left: -0.75rem; +.via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.-top-4 { - top: -1rem; +.via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.-right-4 { - right: -1rem; +.via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.-bottom-4 { - bottom: -1rem; +.via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.-left-4 { - left: -1rem; +.via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.-top-5 { - top: -1.25rem; +.via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.-right-5 { - right: -1.25rem; +.via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.-bottom-5 { - bottom: -1.25rem; +.via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.-left-5 { - left: -1.25rem; +.via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.-top-6 { - top: -1.5rem; +.via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.-right-6 { - right: -1.5rem; +.via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.-bottom-6 { - bottom: -1.5rem; +.via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.-left-6 { - left: -1.5rem; +.via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.-top-7 { - top: -1.75rem; +.via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.-right-7 { - right: -1.75rem; +.via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.-bottom-7 { - bottom: -1.75rem; +.via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.-left-7 { - left: -1.75rem; +.via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.-top-8 { - top: -2rem; +.via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.-right-8 { - right: -2rem; +.via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.-bottom-8 { - bottom: -2rem; +.via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.-left-8 { - left: -2rem; +.via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.-top-9 { - top: -2.25rem; +.via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.-right-9 { - right: -2.25rem; +.via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.-bottom-9 { - bottom: -2.25rem; +.via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.-left-9 { - left: -2.25rem; +.via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.-top-10 { - top: -2.5rem; +.via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.-right-10 { - right: -2.5rem; +.via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.-bottom-10 { - bottom: -2.5rem; +.via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.-left-10 { - left: -2.5rem; +.via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.-top-11 { - top: -2.75rem; +.via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.-right-11 { - right: -2.75rem; +.via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.-bottom-11 { - bottom: -2.75rem; +.via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.-left-11 { - left: -2.75rem; +.via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.-top-12 { - top: -3rem; +.via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.-right-12 { - right: -3rem; +.via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.-bottom-12 { - bottom: -3rem; +.via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.-left-12 { - left: -3rem; +.via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.-top-14 { - top: -3.5rem; +.via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.-right-14 { - right: -3.5rem; +.via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.-bottom-14 { - bottom: -3.5rem; +.via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.-left-14 { - left: -3.5rem; +.via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.-top-16 { - top: -4rem; +.via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.-right-16 { - right: -4rem; +.via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.-bottom-16 { - bottom: -4rem; +.via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.-left-16 { - left: -4rem; +.via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.-top-20 { - top: -5rem; +.via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.-right-20 { - right: -5rem; +.via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.-bottom-20 { - bottom: -5rem; +.via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.-left-20 { - left: -5rem; +.via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.-top-24 { - top: -6rem; +.via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.-right-24 { - right: -6rem; +.via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.-bottom-24 { - bottom: -6rem; +.via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.-left-24 { - left: -6rem; +.via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.-top-28 { - top: -7rem; +.via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.-right-28 { - right: -7rem; +.via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.-bottom-28 { - bottom: -7rem; +.via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.-left-28 { - left: -7rem; +.via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.-top-32 { - top: -8rem; +.via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.-right-32 { - right: -8rem; +.via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.-bottom-32 { - bottom: -8rem; +.via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.-left-32 { - left: -8rem; +.via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.-top-36 { - top: -9rem; +.via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.-right-36 { - right: -9rem; +.via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.-bottom-36 { - bottom: -9rem; +.via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.-left-36 { - left: -9rem; +.to-transparent { + --tw-gradient-to: transparent; } -.-top-40 { - top: -10rem; +.to-current { + --tw-gradient-to: currentColor; } -.-right-40 { - right: -10rem; +.to-black { + --tw-gradient-to: #000; } -.-bottom-40 { - bottom: -10rem; +.to-white { + --tw-gradient-to: #fff; } -.-left-40 { - left: -10rem; +.to-gray-50 { + --tw-gradient-to: #f9fafb; } -.-top-44 { - top: -11rem; +.to-gray-100 { + --tw-gradient-to: #f3f4f6; } -.-right-44 { - right: -11rem; +.to-gray-200 { + --tw-gradient-to: #e5e7eb; } -.-bottom-44 { - bottom: -11rem; +.to-gray-300 { + --tw-gradient-to: #d1d5db; } -.-left-44 { - left: -11rem; +.to-gray-400 { + --tw-gradient-to: #9ca3af; } -.-top-48 { - top: -12rem; +.to-gray-500 { + --tw-gradient-to: #6b7280; } -.-right-48 { - right: -12rem; +.to-gray-600 { + --tw-gradient-to: #4b5563; } -.-bottom-48 { - bottom: -12rem; +.to-gray-700 { + --tw-gradient-to: #374151; } -.-left-48 { - left: -12rem; +.to-gray-800 { + --tw-gradient-to: #1f2937; } -.-top-52 { - top: -13rem; +.to-gray-900 { + --tw-gradient-to: #111827; } -.-right-52 { - right: -13rem; +.to-red-50 { + --tw-gradient-to: #fef2f2; } -.-bottom-52 { - bottom: -13rem; +.to-red-100 { + --tw-gradient-to: #fee2e2; } -.-left-52 { - left: -13rem; +.to-red-200 { + --tw-gradient-to: #fecaca; } -.-top-56 { - top: -14rem; +.to-red-300 { + --tw-gradient-to: #fca5a5; } -.-right-56 { - right: -14rem; +.to-red-400 { + --tw-gradient-to: #f87171; } -.-bottom-56 { - bottom: -14rem; +.to-red-500 { + --tw-gradient-to: #ef4444; } -.-left-56 { - left: -14rem; +.to-red-600 { + --tw-gradient-to: #dc2626; } -.-top-60 { - top: -15rem; +.to-red-700 { + --tw-gradient-to: #b91c1c; } -.-right-60 { - right: -15rem; +.to-red-800 { + --tw-gradient-to: #991b1b; } -.-bottom-60 { - bottom: -15rem; +.to-red-900 { + --tw-gradient-to: #7f1d1d; } -.-left-60 { - left: -15rem; +.to-yellow-50 { + --tw-gradient-to: #fffbeb; } -.-top-64 { - top: -16rem; +.to-yellow-100 { + --tw-gradient-to: #fef3c7; } -.-right-64 { - right: -16rem; +.to-yellow-200 { + --tw-gradient-to: #fde68a; } -.-bottom-64 { - bottom: -16rem; +.to-yellow-300 { + --tw-gradient-to: #fcd34d; } -.-left-64 { - left: -16rem; +.to-yellow-400 { + --tw-gradient-to: #fbbf24; } -.-top-72 { - top: -18rem; +.to-yellow-500 { + --tw-gradient-to: #f59e0b; } -.-right-72 { - right: -18rem; +.to-yellow-600 { + --tw-gradient-to: #d97706; } -.-bottom-72 { - bottom: -18rem; +.to-yellow-700 { + --tw-gradient-to: #b45309; } -.-left-72 { - left: -18rem; +.to-yellow-800 { + --tw-gradient-to: #92400e; } -.-top-80 { - top: -20rem; +.to-yellow-900 { + --tw-gradient-to: #78350f; } -.-right-80 { - right: -20rem; +.to-green-50 { + --tw-gradient-to: #ecfdf5; } -.-bottom-80 { - bottom: -20rem; +.to-green-100 { + --tw-gradient-to: #d1fae5; } -.-left-80 { - left: -20rem; +.to-green-200 { + --tw-gradient-to: #a7f3d0; } -.-top-96 { - top: -24rem; +.to-green-300 { + --tw-gradient-to: #6ee7b7; } -.-right-96 { - right: -24rem; +.to-green-400 { + --tw-gradient-to: #34d399; } -.-bottom-96 { - bottom: -24rem; +.to-green-500 { + --tw-gradient-to: #10b981; } -.-left-96 { - left: -24rem; +.to-green-600 { + --tw-gradient-to: #059669; } -.-top-px { - top: -1px; +.to-green-700 { + --tw-gradient-to: #047857; } -.-right-px { - right: -1px; +.to-green-800 { + --tw-gradient-to: #065f46; } -.-bottom-px { - bottom: -1px; +.to-green-900 { + --tw-gradient-to: #064e3b; } -.-left-px { - left: -1px; +.to-blue-50 { + --tw-gradient-to: #eff6ff; } -.-top-0\.5 { - top: -0.125rem; +.to-blue-100 { + --tw-gradient-to: #dbeafe; } -.-right-0\.5 { - right: -0.125rem; +.to-blue-200 { + --tw-gradient-to: #bfdbfe; } -.-bottom-0\.5 { - bottom: -0.125rem; +.to-blue-300 { + --tw-gradient-to: #93c5fd; } -.-left-0\.5 { - left: -0.125rem; +.to-blue-400 { + --tw-gradient-to: #60a5fa; } -.-top-1\.5 { - top: -0.375rem; +.to-blue-500 { + --tw-gradient-to: #3b82f6; } -.-right-1\.5 { - right: -0.375rem; +.to-blue-600 { + --tw-gradient-to: #2563eb; } -.-bottom-1\.5 { - bottom: -0.375rem; +.to-blue-700 { + --tw-gradient-to: #1d4ed8; } -.-left-1\.5 { - left: -0.375rem; +.to-blue-800 { + --tw-gradient-to: #1e40af; } -.-top-2\.5 { - top: -0.625rem; +.to-blue-900 { + --tw-gradient-to: #1e3a8a; } -.-right-2\.5 { - right: -0.625rem; +.to-indigo-50 { + --tw-gradient-to: #eef2ff; } -.-bottom-2\.5 { - bottom: -0.625rem; +.to-indigo-100 { + --tw-gradient-to: #e0e7ff; } -.-left-2\.5 { - left: -0.625rem; +.to-indigo-200 { + --tw-gradient-to: #c7d2fe; } -.-top-3\.5 { - top: -0.875rem; +.to-indigo-300 { + --tw-gradient-to: #a5b4fc; } -.-right-3\.5 { - right: -0.875rem; +.to-indigo-400 { + --tw-gradient-to: #818cf8; } -.-bottom-3\.5 { - bottom: -0.875rem; +.to-indigo-500 { + --tw-gradient-to: #6366f1; } -.-left-3\.5 { - left: -0.875rem; +.to-indigo-600 { + --tw-gradient-to: #4f46e5; } -.top-1\/2 { - top: 50%; +.to-indigo-700 { + --tw-gradient-to: #4338ca; } -.right-1\/2 { - right: 50%; +.to-indigo-800 { + --tw-gradient-to: #3730a3; } -.bottom-1\/2 { - bottom: 50%; +.to-indigo-900 { + --tw-gradient-to: #312e81; } -.left-1\/2 { - left: 50%; +.to-purple-50 { + --tw-gradient-to: #f5f3ff; } -.top-1\/3 { - top: 33.333333%; +.to-purple-100 { + --tw-gradient-to: #ede9fe; } -.right-1\/3 { - right: 33.333333%; +.to-purple-200 { + --tw-gradient-to: #ddd6fe; } -.bottom-1\/3 { - bottom: 33.333333%; +.to-purple-300 { + --tw-gradient-to: #c4b5fd; } -.left-1\/3 { - left: 33.333333%; +.to-purple-400 { + --tw-gradient-to: #a78bfa; } -.top-2\/3 { - top: 66.666667%; +.to-purple-500 { + --tw-gradient-to: #8b5cf6; } -.right-2\/3 { - right: 66.666667%; +.to-purple-600 { + --tw-gradient-to: #7c3aed; } -.bottom-2\/3 { - bottom: 66.666667%; +.to-purple-700 { + --tw-gradient-to: #6d28d9; } -.left-2\/3 { - left: 66.666667%; +.to-purple-800 { + --tw-gradient-to: #5b21b6; } -.top-1\/4 { - top: 25%; +.to-purple-900 { + --tw-gradient-to: #4c1d95; } -.right-1\/4 { - right: 25%; +.to-pink-50 { + --tw-gradient-to: #fdf2f8; } -.bottom-1\/4 { - bottom: 25%; +.to-pink-100 { + --tw-gradient-to: #fce7f3; } -.left-1\/4 { - left: 25%; +.to-pink-200 { + --tw-gradient-to: #fbcfe8; } -.top-2\/4 { - top: 50%; +.to-pink-300 { + --tw-gradient-to: #f9a8d4; } -.right-2\/4 { - right: 50%; +.to-pink-400 { + --tw-gradient-to: #f472b6; } -.bottom-2\/4 { - bottom: 50%; +.to-pink-500 { + --tw-gradient-to: #ec4899; } -.left-2\/4 { - left: 50%; +.to-pink-600 { + --tw-gradient-to: #db2777; } -.top-3\/4 { - top: 75%; +.to-pink-700 { + --tw-gradient-to: #be185d; } -.right-3\/4 { - right: 75%; +.to-pink-800 { + --tw-gradient-to: #9d174d; } -.bottom-3\/4 { - bottom: 75%; +.to-pink-900 { + --tw-gradient-to: #831843; } -.left-3\/4 { - left: 75%; +.hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.top-full { - top: 100%; +.hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.right-full { - right: 100%; +.hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.bottom-full { - bottom: 100%; +.hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.left-full { - left: 100%; +.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)); } -.-top-1\/2 { - top: -50%; +.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)); } -.-right-1\/2 { - right: -50%; +.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)); } -.-bottom-1\/2 { - bottom: -50%; +.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)); } -.-left-1\/2 { - left: -50%; +.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)); } -.-top-1\/3 { - top: -33.333333%; +.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)); } -.-right-1\/3 { - right: -33.333333%; +.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)); } -.-bottom-1\/3 { - bottom: -33.333333%; +.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)); } -.-left-1\/3 { - left: -33.333333%; +.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)); } -.-top-2\/3 { - top: -66.666667%; +.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)); } -.-right-2\/3 { - right: -66.666667%; +.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)); } -.-bottom-2\/3 { - bottom: -66.666667%; +.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)); } -.-left-2\/3 { - left: -66.666667%; +.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)); } -.-top-1\/4 { - top: -25%; +.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)); } -.-right-1\/4 { - right: -25%; +.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)); } -.-bottom-1\/4 { - bottom: -25%; +.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)); } -.-left-1\/4 { - left: -25%; +.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)); } -.-top-2\/4 { - top: -50%; +.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)); } -.-right-2\/4 { - right: -50%; +.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)); } -.-bottom-2\/4 { - bottom: -50%; +.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)); } -.-left-2\/4 { - left: -50%; +.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)); } -.-top-3\/4 { - top: -75%; +.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)); } -.-right-3\/4 { - right: -75%; +.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)); } -.-bottom-3\/4 { - bottom: -75%; +.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)); } -.-left-3\/4 { - left: -75%; +.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)); } -.-top-full { - top: -100%; +.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)); } -.-right-full { - right: -100%; +.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)); } -.-bottom-full { - bottom: -100%; +.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)); } -.-left-full { - left: -100%; +.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)); } -.resize-none { - resize: none; +.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)); } -.resize-y { - resize: vertical; +.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)); } -.resize-x { - resize: horizontal; +.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)); } -.resize { - resize: both; +.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)); } -* { - --tw-shadow: 0 0 #0000; +.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)); } -.shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.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); +.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)); } -.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); +.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)); } -.shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.group:hover .group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.group:hover .group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.group:hover .group-hover\: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); +.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)); } -.group:hover .group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.group:hover .group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.group:hover .group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.group:hover .group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.group:hover .group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus-within\:shadow-md:focus-within { - --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); +.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)); } -.focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.hover\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.hover\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.hover\:shadow-md:hover { - --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); +.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)); } -.hover\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.hover\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.hover\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.hover\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.hover\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus\:shadow-md:focus { - --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); +.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)); } -.focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -.focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.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)); } -* { - --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgba(59, 130, 246, 0.5); - --tw-ring-offset-shadow: 0 0 #0000; - --tw-ring-shadow: 0 0 #0000; +.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)); } -.ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.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)); } -.ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.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)); } -.ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.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)); } -.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); +.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)); } -.ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.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)); } -.ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.ring-inset { - --tw-ring-inset: inset; +.hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; +.hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); -} - -.focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.focus\:ring-inset:focus { - --tw-ring-inset: inset; +.hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.ring-offset-transparent { - --tw-ring-offset-color: transparent; +.hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.ring-offset-current { - --tw-ring-offset-color: currentColor; +.hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.ring-offset-black { - --tw-ring-offset-color: #000; +.hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.ring-offset-white { - --tw-ring-offset-color: #fff; +.hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; +.hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; +.hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; +.hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; +.hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; +.hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; +.hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; +.hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.ring-offset-gray-700 { - --tw-ring-offset-color: #374151; +.hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; +.hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.ring-offset-gray-900 { - --tw-ring-offset-color: #111827; +.hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; +.hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; +.hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; +.hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; +.hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.ring-offset-red-400 { - --tw-ring-offset-color: #f87171; +.hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; +.hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; +.hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; +.hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; +.hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; +.hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; +.hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; +.hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; +.hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; +.hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; +.hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; +.hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; +.hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; +.hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; +.hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; +.hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; +.hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; +.hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; +.hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; +.hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.ring-offset-green-400 { - --tw-ring-offset-color: #34d399; +.hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.ring-offset-green-500 { - --tw-ring-offset-color: #10b981; +.hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.ring-offset-green-600 { - --tw-ring-offset-color: #059669; +.hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.ring-offset-green-700 { - --tw-ring-offset-color: #047857; +.hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.ring-offset-green-800 { - --tw-ring-offset-color: #065f46; +.hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; +.hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; +.hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; +.hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; +.hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; +.hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; +.hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; +.hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; +.hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; +.hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; +.hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; +.hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; +.hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; +.hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; +.hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; +.hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; +.hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; +.hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; +.hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; +.hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; +.hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; +.hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; +.hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; +.hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; +.hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; +.hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; +.hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; +.hover\:to-transparent:hover { + --tw-gradient-to: transparent; } -.ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; +.hover\:to-current:hover { + --tw-gradient-to: currentColor; } -.ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; +.hover\:to-black:hover { + --tw-gradient-to: #000; } -.ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; +.hover\:to-white:hover { + --tw-gradient-to: #fff; } -.ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; +.hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } -.ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; +.hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } -.ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; +.hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } -.ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; +.hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } -.ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; +.hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } -.ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; +.hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } -.ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; +.hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } -.ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; +.hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } -.ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; +.hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } -.ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; +.hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } -.ring-offset-pink-900 { - --tw-ring-offset-color: #831843; +.hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } -.focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; +.hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } -.focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; +.hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } -.focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; +.hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } -.focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; +.hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } -.focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; +.hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } -.focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; +.hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } -.focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; +.hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } -.focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; +.hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } -.focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; +.hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } -.focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; +.hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } -.focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; +.hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } -.focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; +.hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } -.focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; +.hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } -.focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; +.hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } -.focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; +.hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } -.focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; +.hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } -.focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; +.hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } -.focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; +.hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } -.focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; +.hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } -.focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; +.hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } -.focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; +.hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } -.focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; +.hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } -.focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; +.hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } -.focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; +.hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } -.focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; +.hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } -.focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; +.hover\:to-green-600:hover { + --tw-gradient-to: #059669; } -.focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; +.hover\:to-green-700:hover { + --tw-gradient-to: #047857; } -.focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; +.hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } -.focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; +.hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } -.focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; +.hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } -.focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; +.hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } -.focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; +.hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } -.focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; +.hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } -.focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; +.hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } -.focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; +.hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } -.focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; +.hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } -.focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; +.hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } -.focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; +.hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } -.focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; +.hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } -.focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; +.hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } -.focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; +.hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } -.focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; +.hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } -.focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; +.hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } -.focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; +.hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } -.focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; +.hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } -.focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; +.hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } -.focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; +.hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } -.focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; +.hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } -.focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; +.hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } -.focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; +.hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } -.focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; +.hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } -.focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; +.hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } -.focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; +.hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } -.focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; +.hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } -.focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; +.hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } -.focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; +.hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } -.focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; +.hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } -.focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; +.hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } -.focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; +.hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } -.focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; +.hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } -.focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; +.hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } -.focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; +.hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } -.focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; +.hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } -.focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; +.hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } -.focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; +.hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } -.focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; +.hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } -.focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; +.hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } -.focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; +.hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } -.focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; +.hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } -.focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; +.focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; +.focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; +.focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; +.focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; +.focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; +.focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; +.focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; +.focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; +.focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; +.focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; +.focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; +.focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; +.focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; +.focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; +.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)); } -.focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; +.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)); } -.focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; +.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)); } -.focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; +.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)); } -.focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; +.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)); } -.focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; +.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)); } -.focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; +.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)); } -.focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; +.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)); } -.focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; +.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)); } -.focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; +.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)); } -.focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; +.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)); } -.focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; +.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)); } -.focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; +.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)); } -.focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; +.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)); } -.focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; +.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)); } -.focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; +.focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; +.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)); } -.focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; +.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)); } -.focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; +.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)); } -.focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; +.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)); } -.focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; +.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)); } -.focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; +.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)); } -.focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; +.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)); } -.focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; +.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)); } -.focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; +.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)); } -.focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; +.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)); } -.focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; +.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)); } -.focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; +.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)); } -.focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; +.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)); } -.focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; +.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)); } -.focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; +.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)); } -.focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; +.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)); } -.focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; +.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)); } -.focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; +.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)); } -.focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; +.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)); } -.focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; +.focus\:from-blue-500:focus { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; +.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)); } -.focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; +.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)); } -.focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; +.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)); } -.focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; +.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)); } -.focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; +.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)); } -.focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; +.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)); } -.focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; +.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)); } -.focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; +.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)); } -.focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; +.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)); } -.focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; +.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)); } -.focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; +.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)); } -.focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; +.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)); } -.focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; +.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)); } -.focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; +.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)); } -.focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; +.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)); } -.focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; +.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)); } -.focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; +.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)); } -.focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; +.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)); } -.focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; +.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)); } -.focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; +.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)); } -.focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; +.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)); } -.focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; +.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)); } -.focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; +.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)); } -.focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; +.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)); } -.focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; +.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)); } -.focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; +.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)); } -.focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; +.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)); } -.focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; +.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)); } -.focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; +.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)); } -.focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; +.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)); } -.focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; +.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)); } -.focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; +.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)); } -.focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; +.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)); } -.focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; +.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)); } -.focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; +.focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; +.focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; +.focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; +.focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; +.focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; +.focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; +.focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; +.focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; +.focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; +.focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; +.focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; +.focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; +.focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; +.focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; +.focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.ring-offset-0 { - --tw-ring-offset-width: 0px; +.focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.ring-offset-1 { - --tw-ring-offset-width: 1px; +.focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.ring-offset-2 { - --tw-ring-offset-width: 2px; +.focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.ring-offset-4 { - --tw-ring-offset-width: 4px; +.focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.ring-offset-8 { - --tw-ring-offset-width: 8px; +.focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; +.focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; +.focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; +.focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; +.focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; +.focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; +.focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; +.focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; +.focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; +.focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; +.focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.ring-transparent { - --tw-ring-color: transparent; +.focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.ring-current { - --tw-ring-color: currentColor; +.focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +.focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +.focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +.focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +.focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +.focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +.focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +.focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +.focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +.focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +.focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +.focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +.focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); +.focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); +.focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); +.focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); +.focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); +.focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); +.focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); +.focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); +.focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); +.focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); +.focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); +.focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); +.focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); +.focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); +.focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); +.focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +.focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); +.focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); +.focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); +.focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); +.focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); +.focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); +.focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); +.focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); +.focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); +.focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); +.focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); +.focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); +.focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); +.focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); +.focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); +.focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); +.focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); +.focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); +.focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); +.focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +.focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); +.focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); +.focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); +.focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); +.focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); +.focus\:to-transparent:focus { + --tw-gradient-to: transparent; } -.ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); +.focus\:to-current:focus { + --tw-gradient-to: currentColor; } -.ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); +.focus\:to-black:focus { + --tw-gradient-to: #000; } -.ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); +.focus\:to-white:focus { + --tw-gradient-to: #fff; } -.ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); +.focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } -.ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); +.focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } -.ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); +.focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } -.ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); +.focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } -.ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); +.focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } -.ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); +.focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } -.ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); +.focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } -.ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); +.focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } -.ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); +.focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } -.ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); +.focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } -.ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); +.focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } -.ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); +.focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } -.ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); +.focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } -.ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); +.focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } -.ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); +.focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } -.ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); +.focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } -.ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); +.focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } -.ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); +.focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } -.ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); +.focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } -.ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); +.focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } -.ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); +.focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } -.ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); +.focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } -.ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); +.focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } -.ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); +.focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } -.ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); +.focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } -.ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); +.focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } -.focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; +.focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } -.focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; +.focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } -.focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +.focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } -.focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +.focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } -.focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +.focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } -.focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +.focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } -.focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +.focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } -.focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +.focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } -.focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +.focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } -.focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +.focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } -.focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +.focus\:to-green-600:focus { + --tw-gradient-to: #059669; } -.focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +.focus\:to-green-700:focus { + --tw-gradient-to: #047857; } -.focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +.focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } -.focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +.focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } -.focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); +.focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } -.focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); +.focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } -.focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); +.focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } -.focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); +.focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } -.focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); +.focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } -.focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); +.focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } -.focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); +.focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } -.focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); +.focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } -.focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); +.focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } -.focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); +.focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } -.focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); +.focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } -.focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); +.focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } -.focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); +.focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } -.focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); +.focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } -.focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); +.focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } -.focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +.focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } -.focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); +.focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } -.focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); +.focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } -.focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); +.focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } -.focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); +.focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } -.focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); +.focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } -.focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); +.focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } -.focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); +.focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } -.focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); +.focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } -.focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); +.focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } -.focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); +.focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } -.focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); +.focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } -.focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); +.focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } -.focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); +.focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } -.focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); +.focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } -.focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); +.focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } -.focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); +.focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } -.focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); +.focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } -.focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); +.focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } -.focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); +.focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } -.focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +.focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } -.focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); +.focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } -.focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); +.focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } -.focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); +.focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } -.focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); +.focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } -.focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); +.decoration-slice { + box-decoration-break: slice; } -.focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); +.decoration-clone { + box-decoration-break: clone; } -.focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); +.bg-auto { + background-size: auto; } -.focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); +.bg-cover { + background-size: cover; } -.focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); +.bg-contain { + background-size: contain; } -.focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); +.bg-fixed { + background-attachment: fixed; } -.focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); +.bg-local { + background-attachment: local; } -.focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); +.bg-scroll { + background-attachment: scroll; } -.focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); +.bg-clip-border { + background-clip: border-box; } -.focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); +.bg-clip-padding { + background-clip: padding-box; } -.focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); +.bg-clip-content { + background-clip: content-box; } -.focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); +.bg-clip-text { + background-clip: text; } -.focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); +.bg-bottom { + background-position: bottom; } -.focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); +.bg-center { + background-position: center; } -.focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); +.bg-left { + background-position: left; } -.focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); +.bg-left-bottom { + background-position: left bottom; } -.focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); +.bg-left-top { + background-position: left top; } -.focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); +.bg-right { + background-position: right; } -.focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); +.bg-right-bottom { + background-position: right bottom; } -.focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); +.bg-right-top { + background-position: right top; } -.focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); +.bg-top { + background-position: top; } -.focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); +.bg-repeat { + background-repeat: repeat; } -.focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); +.bg-no-repeat { + background-repeat: no-repeat; } -.focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); +.bg-repeat-x { + background-repeat: repeat-x; } -.focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); +.bg-repeat-y { + background-repeat: repeat-y; } -.focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); +.bg-repeat-round { + background-repeat: round; } -.focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); +.bg-repeat-space { + background-repeat: space; } -.focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); +.bg-origin-border { + background-origin: border-box; } -.focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); +.bg-origin-padding { + background-origin: padding-box; } -.focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); +.bg-origin-content { + background-origin: content-box; } -.focus\:ring-transparent:focus { - --tw-ring-color: transparent; +.fill-current { + fill: currentColor; } -.focus\:ring-current:focus { - --tw-ring-color: currentColor; +.stroke-current { + stroke: currentColor; } -.focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +.stroke-0 { + stroke-width: 0; } -.focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +.stroke-1 { + stroke-width: 1; } -.focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +.stroke-2 { + stroke-width: 2; } -.focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +.object-contain { + object-fit: contain; } -.focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +.object-cover { + object-fit: cover; } -.focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +.object-fill { + object-fit: fill; } -.focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +.object-none { + object-fit: none; } -.focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +.object-scale-down { + object-fit: scale-down; } -.focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +.object-bottom { + object-position: bottom; } -.focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +.object-center { + object-position: center; } -.focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +.object-left { + object-position: left; } -.focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +.object-left-bottom { + object-position: left bottom; } -.focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); +.object-left-top { + object-position: left top; } -.focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); +.object-right { + object-position: right; } -.focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); +.object-right-bottom { + object-position: right bottom; } -.focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); +.object-right-top { + object-position: right top; } -.focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); +.object-top { + object-position: top; } -.focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); +.p-0 { + padding: 0px; } -.focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); +.p-1 { + padding: 0.25rem; } -.focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); +.p-2 { + padding: 0.5rem; } -.focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); +.p-3 { + padding: 0.75rem; } -.focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); +.p-4 { + padding: 1rem; } -.focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); +.p-5 { + padding: 1.25rem; } -.focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); +.p-6 { + padding: 1.5rem; } -.focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); +.p-7 { + padding: 1.75rem; } -.focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); +.p-8 { + padding: 2rem; } -.focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); +.p-9 { + padding: 2.25rem; } -.focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +.p-10 { + padding: 2.5rem; } -.focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); +.p-11 { + padding: 2.75rem; } -.focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); +.p-12 { + padding: 3rem; } -.focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); +.p-14 { + padding: 3.5rem; } -.focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); +.p-16 { + padding: 4rem; } -.focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); +.p-20 { + padding: 5rem; } -.focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); +.p-24 { + padding: 6rem; } -.focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); +.p-28 { + padding: 7rem; } -.focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); +.p-32 { + padding: 8rem; } -.focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); +.p-36 { + padding: 9rem; } -.focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); +.p-40 { + padding: 10rem; } -.focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); +.p-44 { + padding: 11rem; } -.focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); +.p-48 { + padding: 12rem; } -.focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); +.p-52 { + padding: 13rem; } -.focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); +.p-56 { + padding: 14rem; } -.focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); +.p-60 { + padding: 15rem; } -.focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); +.p-64 { + padding: 16rem; } -.focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); +.p-72 { + padding: 18rem; } -.focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); +.p-80 { + padding: 20rem; } -.focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); +.p-96 { + padding: 24rem; } -.focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +.p-px { + padding: 1px; } -.focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); +.p-0\.5 { + padding: 0.125rem; } -.focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); +.p-1\.5 { + padding: 0.375rem; } -.focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); +.p-2\.5 { + padding: 0.625rem; } -.focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); +.p-3\.5 { + padding: 0.875rem; } -.focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); +.px-0 { + padding-left: 0px; + padding-right: 0px; } -.focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); +.px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } -.focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); +.px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } -.focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); +.px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } -.focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); +.px-4 { + padding-left: 1rem; + padding-right: 1rem; } -.focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); +.px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } -.focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); +.px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } -.focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); +.px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } -.focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); +.px-8 { + padding-left: 2rem; + padding-right: 2rem; } -.focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); +.px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } -.focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); +.px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } -.focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); +.px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } -.focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); +.px-12 { + padding-left: 3rem; + padding-right: 3rem; } -.focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); +.px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } -.focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); +.px-16 { + padding-left: 4rem; + padding-right: 4rem; } -.focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); +.px-20 { + padding-left: 5rem; + padding-right: 5rem; } -.focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); +.px-24 { + padding-left: 6rem; + padding-right: 6rem; } -.focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); +.px-28 { + padding-left: 7rem; + padding-right: 7rem; } -.focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); +.px-32 { + padding-left: 8rem; + padding-right: 8rem; } -.focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); +.px-36 { + padding-left: 9rem; + padding-right: 9rem; } -.focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); +.px-40 { + padding-left: 10rem; + padding-right: 10rem; } -.focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); +.px-44 { + padding-left: 11rem; + padding-right: 11rem; } -.focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); +.px-48 { + padding-left: 12rem; + padding-right: 12rem; } -.focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); +.px-52 { + padding-left: 13rem; + padding-right: 13rem; } -.focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); +.px-56 { + padding-left: 14rem; + padding-right: 14rem; } -.focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); +.px-60 { + padding-left: 15rem; + padding-right: 15rem; } -.focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); +.px-64 { + padding-left: 16rem; + padding-right: 16rem; } -.focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); +.px-72 { + padding-left: 18rem; + padding-right: 18rem; } -.focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); +.px-80 { + padding-left: 20rem; + padding-right: 20rem; } -.focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); +.px-96 { + padding-left: 24rem; + padding-right: 24rem; } -.ring-opacity-0 { - --tw-ring-opacity: 0; +.px-px { + padding-left: 1px; + padding-right: 1px; } -.ring-opacity-5 { - --tw-ring-opacity: 0.05; +.px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } -.ring-opacity-10 { - --tw-ring-opacity: 0.1; +.px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } -.ring-opacity-20 { - --tw-ring-opacity: 0.2; +.px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } -.ring-opacity-25 { - --tw-ring-opacity: 0.25; +.px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } -.ring-opacity-30 { - --tw-ring-opacity: 0.3; +.py-0 { + padding-top: 0px; + padding-bottom: 0px; } -.ring-opacity-40 { - --tw-ring-opacity: 0.4; +.py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } -.ring-opacity-50 { - --tw-ring-opacity: 0.5; +.py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } -.ring-opacity-60 { - --tw-ring-opacity: 0.6; +.py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } -.ring-opacity-70 { - --tw-ring-opacity: 0.7; +.py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } -.ring-opacity-75 { - --tw-ring-opacity: 0.75; +.py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } -.ring-opacity-80 { - --tw-ring-opacity: 0.8; +.py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } -.ring-opacity-90 { - --tw-ring-opacity: 0.9; +.py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } -.ring-opacity-95 { - --tw-ring-opacity: 0.95; +.py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } -.ring-opacity-100 { - --tw-ring-opacity: 1; +.py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } -.focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; +.py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } -.focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; +.py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } -.focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; +.py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } -.focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; +.py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } -.focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; +.py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } -.focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; +.py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } -.focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; +.py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } -.focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; +.py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } -.focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; +.py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } -.focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; +.py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } -.focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; +.py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } -.focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; +.py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } -.focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; +.py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } -.focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; +.py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } -.focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; +.py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } -.focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; +.py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } -.focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; +.py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } -.focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; +.py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } -.focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; +.py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } -.focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; +.py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } -.focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; +.py-px { + padding-top: 1px; + padding-bottom: 1px; } -.focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; +.py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } -.focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; +.py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } -.focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; +.py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } -.focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; +.py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } -.focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; +.pt-0 { + padding-top: 0px; } -.focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; +.pt-1 { + padding-top: 0.25rem; } -.focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; +.pt-2 { + padding-top: 0.5rem; } -.focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; +.pt-3 { + padding-top: 0.75rem; } -.focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; +.pt-4 { + padding-top: 1rem; } -.fill-current { - fill: currentColor; +.pt-5 { + padding-top: 1.25rem; } -.stroke-current { - stroke: currentColor; +.pt-6 { + padding-top: 1.5rem; } -.stroke-0 { - stroke-width: 0; +.pt-7 { + padding-top: 1.75rem; } -.stroke-1 { - stroke-width: 1; +.pt-8 { + padding-top: 2rem; } -.stroke-2 { - stroke-width: 2; +.pt-9 { + padding-top: 2.25rem; } -.table-auto { - table-layout: auto; +.pt-10 { + padding-top: 2.5rem; } -.table-fixed { - table-layout: fixed; +.pt-11 { + padding-top: 2.75rem; } -.text-left { - text-align: left; +.pt-12 { + padding-top: 3rem; } -.text-center { - text-align: center; +.pt-14 { + padding-top: 3.5rem; } -.text-right { - text-align: right; +.pt-16 { + padding-top: 4rem; } -.text-justify { - text-align: justify; +.pt-20 { + padding-top: 5rem; } -.text-transparent { - color: transparent; +.pt-24 { + padding-top: 6rem; } -.text-current { - color: currentColor; +.pt-28 { + padding-top: 7rem; } -.text-black { - color: #000; +.pt-32 { + padding-top: 8rem; } -.text-white { - color: #fff; +.pt-36 { + padding-top: 9rem; } -.text-gray-50 { - color: #f9fafb; +.pt-40 { + padding-top: 10rem; } -.text-gray-100 { - color: #f3f4f6; +.pt-44 { + padding-top: 11rem; } -.text-gray-200 { - color: #e5e7eb; +.pt-48 { + padding-top: 12rem; } -.text-gray-300 { - color: #d1d5db; +.pt-52 { + padding-top: 13rem; } -.text-gray-400 { - color: #9ca3af; +.pt-56 { + padding-top: 14rem; } -.text-gray-500 { - color: #6b7280; +.pt-60 { + padding-top: 15rem; } -.text-gray-600 { - color: #4b5563; +.pt-64 { + padding-top: 16rem; } -.text-gray-700 { - color: #374151; +.pt-72 { + padding-top: 18rem; } -.text-gray-800 { - color: #1f2937; +.pt-80 { + padding-top: 20rem; } -.text-gray-900 { - color: #111827; +.pt-96 { + padding-top: 24rem; } -.text-red-50 { - color: #fef2f2; +.pt-px { + padding-top: 1px; } -.text-red-100 { - color: #fee2e2; +.pt-0\.5 { + padding-top: 0.125rem; } -.text-red-200 { - color: #fecaca; +.pt-1\.5 { + padding-top: 0.375rem; } -.text-red-300 { - color: #fca5a5; +.pt-2\.5 { + padding-top: 0.625rem; } -.text-red-400 { - color: #f87171; +.pt-3\.5 { + padding-top: 0.875rem; } -.text-red-500 { - color: #ef4444; +.pr-0 { + padding-right: 0px; } -.text-red-600 { - color: #dc2626; +.pr-1 { + padding-right: 0.25rem; } -.text-red-700 { - color: #b91c1c; +.pr-2 { + padding-right: 0.5rem; } -.text-red-800 { - color: #991b1b; +.pr-3 { + padding-right: 0.75rem; } -.text-red-900 { - color: #7f1d1d; +.pr-4 { + padding-right: 1rem; } -.text-yellow-50 { - color: #fffbeb; +.pr-5 { + padding-right: 1.25rem; } -.text-yellow-100 { - color: #fef3c7; +.pr-6 { + padding-right: 1.5rem; } -.text-yellow-200 { - color: #fde68a; +.pr-7 { + padding-right: 1.75rem; } -.text-yellow-300 { - color: #fcd34d; +.pr-8 { + padding-right: 2rem; } -.text-yellow-400 { - color: #fbbf24; +.pr-9 { + padding-right: 2.25rem; } -.text-yellow-500 { - color: #f59e0b; +.pr-10 { + padding-right: 2.5rem; } -.text-yellow-600 { - color: #d97706; +.pr-11 { + padding-right: 2.75rem; } -.text-yellow-700 { - color: #b45309; +.pr-12 { + padding-right: 3rem; } -.text-yellow-800 { - color: #92400e; +.pr-14 { + padding-right: 3.5rem; } -.text-yellow-900 { - color: #78350f; +.pr-16 { + padding-right: 4rem; } -.text-green-50 { - color: #ecfdf5; +.pr-20 { + padding-right: 5rem; } -.text-green-100 { - color: #d1fae5; +.pr-24 { + padding-right: 6rem; } -.text-green-200 { - color: #a7f3d0; +.pr-28 { + padding-right: 7rem; } -.text-green-300 { - color: #6ee7b7; +.pr-32 { + padding-right: 8rem; } -.text-green-400 { - color: #34d399; +.pr-36 { + padding-right: 9rem; } -.text-green-500 { - color: #10b981; +.pr-40 { + padding-right: 10rem; } -.text-green-600 { - color: #059669; +.pr-44 { + padding-right: 11rem; } -.text-green-700 { - color: #047857; +.pr-48 { + padding-right: 12rem; } -.text-green-800 { - color: #065f46; +.pr-52 { + padding-right: 13rem; } -.text-green-900 { - color: #064e3b; +.pr-56 { + padding-right: 14rem; } -.text-blue-50 { - color: #eff6ff; +.pr-60 { + padding-right: 15rem; } -.text-blue-100 { - color: #dbeafe; +.pr-64 { + padding-right: 16rem; } -.text-blue-200 { - color: #bfdbfe; +.pr-72 { + padding-right: 18rem; } -.text-blue-300 { - color: #93c5fd; +.pr-80 { + padding-right: 20rem; } -.text-blue-400 { - color: #60a5fa; +.pr-96 { + padding-right: 24rem; } -.text-blue-500 { - color: #3b82f6; +.pr-px { + padding-right: 1px; } -.text-blue-600 { - color: #2563eb; +.pr-0\.5 { + padding-right: 0.125rem; } -.text-blue-700 { - color: #1d4ed8; +.pr-1\.5 { + padding-right: 0.375rem; } -.text-blue-800 { - color: #1e40af; +.pr-2\.5 { + padding-right: 0.625rem; } -.text-blue-900 { - color: #1e3a8a; +.pr-3\.5 { + padding-right: 0.875rem; } -.text-indigo-50 { - color: #eef2ff; +.pb-0 { + padding-bottom: 0px; } -.text-indigo-100 { - color: #e0e7ff; +.pb-1 { + padding-bottom: 0.25rem; } -.text-indigo-200 { - color: #c7d2fe; +.pb-2 { + padding-bottom: 0.5rem; } -.text-indigo-300 { - color: #a5b4fc; +.pb-3 { + padding-bottom: 0.75rem; } -.text-indigo-400 { - color: #818cf8; +.pb-4 { + padding-bottom: 1rem; } -.text-indigo-500 { - color: #6366f1; +.pb-5 { + padding-bottom: 1.25rem; } -.text-indigo-600 { - color: #4f46e5; +.pb-6 { + padding-bottom: 1.5rem; } -.text-indigo-700 { - color: #4338ca; +.pb-7 { + padding-bottom: 1.75rem; } -.text-indigo-800 { - color: #3730a3; +.pb-8 { + padding-bottom: 2rem; } -.text-indigo-900 { - color: #312e81; +.pb-9 { + padding-bottom: 2.25rem; } -.text-purple-50 { - color: #f5f3ff; +.pb-10 { + padding-bottom: 2.5rem; } -.text-purple-100 { - color: #ede9fe; +.pb-11 { + padding-bottom: 2.75rem; } -.text-purple-200 { - color: #ddd6fe; +.pb-12 { + padding-bottom: 3rem; } -.text-purple-300 { - color: #c4b5fd; +.pb-14 { + padding-bottom: 3.5rem; } -.text-purple-400 { - color: #a78bfa; +.pb-16 { + padding-bottom: 4rem; } -.text-purple-500 { - color: #8b5cf6; +.pb-20 { + padding-bottom: 5rem; } -.text-purple-600 { - color: #7c3aed; +.pb-24 { + padding-bottom: 6rem; } -.text-purple-700 { - color: #6d28d9; +.pb-28 { + padding-bottom: 7rem; } -.text-purple-800 { - color: #5b21b6; +.pb-32 { + padding-bottom: 8rem; } -.text-purple-900 { - color: #4c1d95; +.pb-36 { + padding-bottom: 9rem; } -.text-pink-50 { - color: #fdf2f8; +.pb-40 { + padding-bottom: 10rem; } -.text-pink-100 { - color: #fce7f3; +.pb-44 { + padding-bottom: 11rem; } -.text-pink-200 { - color: #fbcfe8; +.pb-48 { + padding-bottom: 12rem; } -.text-pink-300 { - color: #f9a8d4; +.pb-52 { + padding-bottom: 13rem; } -.text-pink-400 { - color: #f472b6; +.pb-56 { + padding-bottom: 14rem; } -.text-pink-500 { - color: #ec4899; +.pb-60 { + padding-bottom: 15rem; } -.text-pink-600 { - color: #db2777; +.pb-64 { + padding-bottom: 16rem; } -.text-pink-700 { - color: #be185d; +.pb-72 { + padding-bottom: 18rem; } -.text-pink-800 { - color: #9d174d; +.pb-80 { + padding-bottom: 20rem; } -.text-pink-900 { - color: #831843; +.pb-96 { + padding-bottom: 24rem; } -.group:hover .group-hover\:text-transparent { - color: transparent; +.pb-px { + padding-bottom: 1px; } -.group:hover .group-hover\:text-current { - color: currentColor; +.pb-0\.5 { + padding-bottom: 0.125rem; } -.group:hover .group-hover\:text-black { - color: #000; +.pb-1\.5 { + padding-bottom: 0.375rem; } -.group:hover .group-hover\:text-white { - color: #fff; +.pb-2\.5 { + padding-bottom: 0.625rem; } -.group:hover .group-hover\:text-gray-50 { - color: #f9fafb; -} +.pb-3\.5 { + padding-bottom: 0.875rem; +} + +.pl-0 { + padding-left: 0px; +} + +.pl-1 { + padding-left: 0.25rem; +} + +.pl-2 { + padding-left: 0.5rem; +} + +.pl-3 { + padding-left: 0.75rem; +} + +.pl-4 { + padding-left: 1rem; +} + +.pl-5 { + padding-left: 1.25rem; +} + +.pl-6 { + padding-left: 1.5rem; +} + +.pl-7 { + padding-left: 1.75rem; +} + +.pl-8 { + padding-left: 2rem; +} + +.pl-9 { + padding-left: 2.25rem; +} + +.pl-10 { + padding-left: 2.5rem; +} + +.pl-11 { + padding-left: 2.75rem; +} + +.pl-12 { + padding-left: 3rem; +} + +.pl-14 { + padding-left: 3.5rem; +} + +.pl-16 { + padding-left: 4rem; +} + +.pl-20 { + padding-left: 5rem; +} + +.pl-24 { + padding-left: 6rem; +} + +.pl-28 { + padding-left: 7rem; +} + +.pl-32 { + padding-left: 8rem; +} + +.pl-36 { + padding-left: 9rem; +} + +.pl-40 { + padding-left: 10rem; +} + +.pl-44 { + padding-left: 11rem; +} + +.pl-48 { + padding-left: 12rem; +} + +.pl-52 { + padding-left: 13rem; +} + +.pl-56 { + padding-left: 14rem; +} + +.pl-60 { + padding-left: 15rem; +} + +.pl-64 { + padding-left: 16rem; +} + +.pl-72 { + padding-left: 18rem; +} + +.pl-80 { + padding-left: 20rem; +} + +.pl-96 { + padding-left: 24rem; +} + +.pl-px { + padding-left: 1px; +} + +.pl-0\.5 { + padding-left: 0.125rem; +} + +.pl-1\.5 { + padding-left: 0.375rem; +} + +.pl-2\.5 { + padding-left: 0.625rem; +} + +.pl-3\.5 { + padding-left: 0.875rem; +} + +.text-left { + text-align: left; +} + +.text-center { + text-align: center; +} + +.text-right { + text-align: right; +} + +.text-justify { + text-align: justify; +} + +.align-baseline { + vertical-align: baseline; +} + +.align-top { + vertical-align: top; +} + +.align-middle { + vertical-align: middle; +} + +.align-bottom { + vertical-align: bottom; +} + +.align-text-top { + vertical-align: text-top; +} + +.align-text-bottom { + vertical-align: text-bottom; +} + +.font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} + +.font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; +} + +.font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +.text-xs { + font-size: 0.75rem; + line-height: 1rem; +} + +.text-sm { + font-size: 0.875rem; + line-height: 1.25rem; +} + +.text-base { + font-size: 1rem; + line-height: 1.5rem; +} + +.text-lg { + font-size: 1.125rem; + line-height: 1.75rem; +} + +.text-xl { + font-size: 1.25rem; + line-height: 1.75rem; +} + +.text-2xl { + font-size: 1.5rem; + line-height: 2rem; +} + +.text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; +} + +.text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; +} + +.text-5xl { + font-size: 3rem; + line-height: 1; +} + +.text-6xl { + font-size: 3.75rem; + line-height: 1; +} + +.text-7xl { + font-size: 4.5rem; + line-height: 1; +} + +.text-8xl { + font-size: 6rem; + line-height: 1; +} + +.text-9xl { + font-size: 8rem; + line-height: 1; +} + +.font-thin { + font-weight: 100; +} + +.font-extralight { + font-weight: 200; +} + +.font-light { + font-weight: 300; +} + +.font-normal { + font-weight: 400; +} + +.font-medium { + font-weight: 500; +} + +.font-semibold { + font-weight: 600; +} + +.font-bold { + font-weight: 700; +} + +.font-extrabold { + font-weight: 800; +} + +.font-black { + font-weight: 900; +} + +.uppercase { + text-transform: uppercase; +} + +.lowercase { + text-transform: lowercase; +} + +.capitalize { + text-transform: capitalize; +} + +.normal-case { + text-transform: none; +} + +.italic { + font-style: italic; +} + +.not-italic { + font-style: normal; +} + +.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); +} + +.normal-nums { + font-variant-numeric: normal; +} + +.ordinal { + --tw-ordinal: ordinal; +} + +.slashed-zero { + --tw-slashed-zero: slashed-zero; +} + +.lining-nums { + --tw-numeric-figure: lining-nums; +} + +.oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; +} + +.proportional-nums { + --tw-numeric-spacing: proportional-nums; +} + +.tabular-nums { + --tw-numeric-spacing: tabular-nums; +} + +.diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; +} + +.stacked-fractions { + --tw-numeric-fraction: stacked-fractions; +} + +.leading-3 { + line-height: .75rem; +} + +.leading-4 { + line-height: 1rem; +} + +.leading-5 { + line-height: 1.25rem; +} + +.leading-6 { + line-height: 1.5rem; +} + +.leading-7 { + line-height: 1.75rem; +} + +.leading-8 { + line-height: 2rem; +} + +.leading-9 { + line-height: 2.25rem; +} + +.leading-10 { + line-height: 2.5rem; +} + +.leading-none { + line-height: 1; +} + +.leading-tight { + line-height: 1.25; +} + +.leading-snug { + line-height: 1.375; +} + +.leading-normal { + line-height: 1.5; +} + +.leading-relaxed { + line-height: 1.625; +} + +.leading-loose { + line-height: 2; +} + +.tracking-tighter { + letter-spacing: -0.05em; +} + +.tracking-tight { + letter-spacing: -0.025em; +} + +.tracking-normal { + letter-spacing: 0em; +} + +.tracking-wide { + letter-spacing: 0.025em; +} + +.tracking-wider { + letter-spacing: 0.05em; +} + +.tracking-widest { + letter-spacing: 0.1em; +} + +.text-transparent { + color: transparent; +} + +.text-current { + color: currentColor; +} + +.text-black { + color: #000; +} + +.text-white { + color: #fff; +} + +.text-gray-50 { + color: #f9fafb; +} + +.text-gray-100 { + color: #f3f4f6; +} + +.text-gray-200 { + color: #e5e7eb; +} + +.text-gray-300 { + color: #d1d5db; +} + +.text-gray-400 { + color: #9ca3af; +} + +.text-gray-500 { + color: #6b7280; +} + +.text-gray-600 { + color: #4b5563; +} + +.text-gray-700 { + color: #374151; +} + +.text-gray-800 { + color: #1f2937; +} + +.text-gray-900 { + color: #111827; +} + +.text-red-50 { + color: #fef2f2; +} + +.text-red-100 { + color: #fee2e2; +} + +.text-red-200 { + color: #fecaca; +} + +.text-red-300 { + color: #fca5a5; +} + +.text-red-400 { + color: #f87171; +} + +.text-red-500 { + color: #ef4444; +} + +.text-red-600 { + color: #dc2626; +} + +.text-red-700 { + color: #b91c1c; +} + +.text-red-800 { + color: #991b1b; +} + +.text-red-900 { + color: #7f1d1d; +} + +.text-yellow-50 { + color: #fffbeb; +} + +.text-yellow-100 { + color: #fef3c7; +} + +.text-yellow-200 { + color: #fde68a; +} + +.text-yellow-300 { + color: #fcd34d; +} + +.text-yellow-400 { + color: #fbbf24; +} + +.text-yellow-500 { + color: #f59e0b; +} + +.text-yellow-600 { + color: #d97706; +} + +.text-yellow-700 { + color: #b45309; +} + +.text-yellow-800 { + color: #92400e; +} + +.text-yellow-900 { + color: #78350f; +} + +.text-green-50 { + color: #ecfdf5; +} + +.text-green-100 { + color: #d1fae5; +} + +.text-green-200 { + color: #a7f3d0; +} + +.text-green-300 { + color: #6ee7b7; +} + +.text-green-400 { + color: #34d399; +} + +.text-green-500 { + color: #10b981; +} + +.text-green-600 { + color: #059669; +} + +.text-green-700 { + color: #047857; +} + +.text-green-800 { + color: #065f46; +} + +.text-green-900 { + color: #064e3b; +} + +.text-blue-50 { + color: #eff6ff; +} + +.text-blue-100 { + color: #dbeafe; +} + +.text-blue-200 { + color: #bfdbfe; +} + +.text-blue-300 { + color: #93c5fd; +} + +.text-blue-400 { + color: #60a5fa; +} + +.text-blue-500 { + color: #3b82f6; +} + +.text-blue-600 { + color: #2563eb; +} + +.text-blue-700 { + color: #1d4ed8; +} + +.text-blue-800 { + color: #1e40af; +} + +.text-blue-900 { + color: #1e3a8a; +} + +.text-indigo-50 { + color: #eef2ff; +} + +.text-indigo-100 { + color: #e0e7ff; +} + +.text-indigo-200 { + color: #c7d2fe; +} + +.text-indigo-300 { + color: #a5b4fc; +} + +.text-indigo-400 { + color: #818cf8; +} + +.text-indigo-500 { + color: #6366f1; +} + +.text-indigo-600 { + color: #4f46e5; +} + +.text-indigo-700 { + color: #4338ca; +} + +.text-indigo-800 { + color: #3730a3; +} + +.text-indigo-900 { + color: #312e81; +} + +.text-purple-50 { + color: #f5f3ff; +} + +.text-purple-100 { + color: #ede9fe; +} + +.text-purple-200 { + color: #ddd6fe; +} + +.text-purple-300 { + color: #c4b5fd; +} + +.text-purple-400 { + color: #a78bfa; +} + +.text-purple-500 { + color: #8b5cf6; +} + +.text-purple-600 { + color: #7c3aed; +} + +.text-purple-700 { + color: #6d28d9; +} + +.text-purple-800 { + color: #5b21b6; +} + +.text-purple-900 { + color: #4c1d95; +} + +.text-pink-50 { + color: #fdf2f8; +} + +.text-pink-100 { + color: #fce7f3; +} + +.text-pink-200 { + color: #fbcfe8; +} + +.text-pink-300 { + color: #f9a8d4; +} + +.text-pink-400 { + color: #f472b6; +} + +.text-pink-500 { + color: #ec4899; +} + +.text-pink-600 { + color: #db2777; +} + +.text-pink-700 { + color: #be185d; +} + +.text-pink-800 { + color: #9d174d; +} + +.text-pink-900 { + color: #831843; +} + +.group:hover .group-hover\:text-transparent { + color: transparent; +} + +.group:hover .group-hover\:text-current { + color: currentColor; +} + +.group:hover .group-hover\:text-black { + color: #000; +} + +.group:hover .group-hover\:text-white { + color: #fff; +} + +.group:hover .group-hover\:text-gray-50 { + color: #f9fafb; +} .group:hover .group-hover\:text-gray-100 { color: #f3f4f6; @@ -22068,44 +22559,6 @@ video { color: #831843; } -.truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.overflow-ellipsis { - text-overflow: ellipsis; -} - -.overflow-clip { - text-overflow: clip; -} - -.italic { - font-style: italic; -} - -.not-italic { - font-style: normal; -} - -.uppercase { - text-transform: uppercase; -} - -.lowercase { - text-transform: lowercase; -} - -.capitalize { - text-transform: capitalize; -} - -.normal-case { - text-transform: none; -} - .underline { text-decoration: underline; } @@ -22176,4794 +22629,4221 @@ video { -moz-osx-font-smoothing: auto; } -.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); +.placeholder-transparent::placeholder { + color: transparent; } -.normal-nums { - font-variant-numeric: normal; +.placeholder-current::placeholder { + color: currentColor; } -.ordinal { - --tw-ordinal: ordinal; +.placeholder-black::placeholder { + color: #000; } -.slashed-zero { - --tw-slashed-zero: slashed-zero; +.placeholder-white::placeholder { + color: #fff; } -.lining-nums { - --tw-numeric-figure: lining-nums; +.placeholder-gray-50::placeholder { + color: #f9fafb; } -.oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; +.placeholder-gray-100::placeholder { + color: #f3f4f6; } -.proportional-nums { - --tw-numeric-spacing: proportional-nums; +.placeholder-gray-200::placeholder { + color: #e5e7eb; } -.tabular-nums { - --tw-numeric-spacing: tabular-nums; +.placeholder-gray-300::placeholder { + color: #d1d5db; } -.diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; +.placeholder-gray-400::placeholder { + color: #9ca3af; } -.stacked-fractions { - --tw-numeric-fraction: stacked-fractions; +.placeholder-gray-500::placeholder { + color: #6b7280; } -.tracking-tighter { - letter-spacing: -0.05em; +.placeholder-gray-600::placeholder { + color: #4b5563; } -.tracking-tight { - letter-spacing: -0.025em; +.placeholder-gray-700::placeholder { + color: #374151; } -.tracking-normal { - letter-spacing: 0em; +.placeholder-gray-800::placeholder { + color: #1f2937; } -.tracking-wide { - letter-spacing: 0.025em; +.placeholder-gray-900::placeholder { + color: #111827; } -.tracking-wider { - letter-spacing: 0.05em; +.placeholder-red-50::placeholder { + color: #fef2f2; } -.tracking-widest { - letter-spacing: 0.1em; +.placeholder-red-100::placeholder { + color: #fee2e2; } -.select-none { - user-select: none; +.placeholder-red-200::placeholder { + color: #fecaca; } -.select-text { - user-select: text; +.placeholder-red-300::placeholder { + color: #fca5a5; } -.select-all { - user-select: all; +.placeholder-red-400::placeholder { + color: #f87171; } -.select-auto { - user-select: auto; +.placeholder-red-500::placeholder { + color: #ef4444; } -.align-baseline { - vertical-align: baseline; +.placeholder-red-600::placeholder { + color: #dc2626; } -.align-top { - vertical-align: top; +.placeholder-red-700::placeholder { + color: #b91c1c; } -.align-middle { - vertical-align: middle; +.placeholder-red-800::placeholder { + color: #991b1b; } -.align-bottom { - vertical-align: bottom; +.placeholder-red-900::placeholder { + color: #7f1d1d; } -.align-text-top { - vertical-align: text-top; +.placeholder-yellow-50::placeholder { + color: #fffbeb; } -.align-text-bottom { - vertical-align: text-bottom; +.placeholder-yellow-100::placeholder { + color: #fef3c7; } -.visible { - visibility: visible; +.placeholder-yellow-200::placeholder { + color: #fde68a; } -.invisible { - visibility: hidden; +.placeholder-yellow-300::placeholder { + color: #fcd34d; } -.whitespace-normal { - white-space: normal; +.placeholder-yellow-400::placeholder { + color: #fbbf24; } -.whitespace-nowrap { - white-space: nowrap; +.placeholder-yellow-500::placeholder { + color: #f59e0b; } -.whitespace-pre { - white-space: pre; +.placeholder-yellow-600::placeholder { + color: #d97706; } -.whitespace-pre-line { - white-space: pre-line; +.placeholder-yellow-700::placeholder { + color: #b45309; } -.whitespace-pre-wrap { - white-space: pre-wrap; +.placeholder-yellow-800::placeholder { + color: #92400e; } -.break-normal { - overflow-wrap: normal; - word-break: normal; +.placeholder-yellow-900::placeholder { + color: #78350f; } -.break-words { - overflow-wrap: break-word; +.placeholder-green-50::placeholder { + color: #ecfdf5; } -.break-all { - word-break: break-all; +.placeholder-green-100::placeholder { + color: #d1fae5; } -.w-0 { - width: 0px; +.placeholder-green-200::placeholder { + color: #a7f3d0; } -.w-1 { - width: 0.25rem; +.placeholder-green-300::placeholder { + color: #6ee7b7; } -.w-2 { - width: 0.5rem; +.placeholder-green-400::placeholder { + color: #34d399; } -.w-3 { - width: 0.75rem; +.placeholder-green-500::placeholder { + color: #10b981; } -.w-4 { - width: 1rem; +.placeholder-green-600::placeholder { + color: #059669; } -.w-5 { - width: 1.25rem; +.placeholder-green-700::placeholder { + color: #047857; } -.w-6 { - width: 1.5rem; +.placeholder-green-800::placeholder { + color: #065f46; } -.w-7 { - width: 1.75rem; +.placeholder-green-900::placeholder { + color: #064e3b; } -.w-8 { - width: 2rem; -} - -.w-9 { - width: 2.25rem; +.placeholder-blue-50::placeholder { + color: #eff6ff; } -.w-10 { - width: 2.5rem; +.placeholder-blue-100::placeholder { + color: #dbeafe; } -.w-11 { - width: 2.75rem; +.placeholder-blue-200::placeholder { + color: #bfdbfe; } -.w-12 { - width: 3rem; +.placeholder-blue-300::placeholder { + color: #93c5fd; } -.w-14 { - width: 3.5rem; +.placeholder-blue-400::placeholder { + color: #60a5fa; } -.w-16 { - width: 4rem; +.placeholder-blue-500::placeholder { + color: #3b82f6; } -.w-20 { - width: 5rem; +.placeholder-blue-600::placeholder { + color: #2563eb; } -.w-24 { - width: 6rem; +.placeholder-blue-700::placeholder { + color: #1d4ed8; } -.w-28 { - width: 7rem; +.placeholder-blue-800::placeholder { + color: #1e40af; } -.w-32 { - width: 8rem; +.placeholder-blue-900::placeholder { + color: #1e3a8a; } -.w-36 { - width: 9rem; +.placeholder-indigo-50::placeholder { + color: #eef2ff; } -.w-40 { - width: 10rem; +.placeholder-indigo-100::placeholder { + color: #e0e7ff; } -.w-44 { - width: 11rem; +.placeholder-indigo-200::placeholder { + color: #c7d2fe; } -.w-48 { - width: 12rem; +.placeholder-indigo-300::placeholder { + color: #a5b4fc; } -.w-52 { - width: 13rem; +.placeholder-indigo-400::placeholder { + color: #818cf8; } -.w-56 { - width: 14rem; +.placeholder-indigo-500::placeholder { + color: #6366f1; } -.w-60 { - width: 15rem; +.placeholder-indigo-600::placeholder { + color: #4f46e5; } -.w-64 { - width: 16rem; +.placeholder-indigo-700::placeholder { + color: #4338ca; } -.w-72 { - width: 18rem; +.placeholder-indigo-800::placeholder { + color: #3730a3; } -.w-80 { - width: 20rem; +.placeholder-indigo-900::placeholder { + color: #312e81; } -.w-96 { - width: 24rem; +.placeholder-purple-50::placeholder { + color: #f5f3ff; } -.w-auto { - width: auto; +.placeholder-purple-100::placeholder { + color: #ede9fe; } -.w-px { - width: 1px; +.placeholder-purple-200::placeholder { + color: #ddd6fe; } -.w-0\.5 { - width: 0.125rem; +.placeholder-purple-300::placeholder { + color: #c4b5fd; } -.w-1\.5 { - width: 0.375rem; +.placeholder-purple-400::placeholder { + color: #a78bfa; } -.w-2\.5 { - width: 0.625rem; +.placeholder-purple-500::placeholder { + color: #8b5cf6; } -.w-3\.5 { - width: 0.875rem; +.placeholder-purple-600::placeholder { + color: #7c3aed; } -.w-1\/2 { - width: 50%; +.placeholder-purple-700::placeholder { + color: #6d28d9; } -.w-1\/3 { - width: 33.333333%; +.placeholder-purple-800::placeholder { + color: #5b21b6; } -.w-2\/3 { - width: 66.666667%; +.placeholder-purple-900::placeholder { + color: #4c1d95; } -.w-1\/4 { - width: 25%; +.placeholder-pink-50::placeholder { + color: #fdf2f8; } -.w-2\/4 { - width: 50%; +.placeholder-pink-100::placeholder { + color: #fce7f3; } -.w-3\/4 { - width: 75%; +.placeholder-pink-200::placeholder { + color: #fbcfe8; } -.w-1\/5 { - width: 20%; +.placeholder-pink-300::placeholder { + color: #f9a8d4; } -.w-2\/5 { - width: 40%; +.placeholder-pink-400::placeholder { + color: #f472b6; } -.w-3\/5 { - width: 60%; +.placeholder-pink-500::placeholder { + color: #ec4899; } -.w-4\/5 { - width: 80%; +.placeholder-pink-600::placeholder { + color: #db2777; } -.w-1\/6 { - width: 16.666667%; +.placeholder-pink-700::placeholder { + color: #be185d; } -.w-2\/6 { - width: 33.333333%; +.placeholder-pink-800::placeholder { + color: #9d174d; } -.w-3\/6 { - width: 50%; +.placeholder-pink-900::placeholder { + color: #831843; } -.w-4\/6 { - width: 66.666667%; +.focus\:placeholder-transparent:focus::placeholder { + color: transparent; } -.w-5\/6 { - width: 83.333333%; +.focus\:placeholder-current:focus::placeholder { + color: currentColor; } -.w-1\/12 { - width: 8.333333%; +.focus\:placeholder-black:focus::placeholder { + color: #000; } -.w-2\/12 { - width: 16.666667%; +.focus\:placeholder-white:focus::placeholder { + color: #fff; } -.w-3\/12 { - width: 25%; +.focus\:placeholder-gray-50:focus::placeholder { + color: #f9fafb; } -.w-4\/12 { - width: 33.333333%; +.focus\:placeholder-gray-100:focus::placeholder { + color: #f3f4f6; } -.w-5\/12 { - width: 41.666667%; +.focus\:placeholder-gray-200:focus::placeholder { + color: #e5e7eb; } -.w-6\/12 { - width: 50%; +.focus\:placeholder-gray-300:focus::placeholder { + color: #d1d5db; } -.w-7\/12 { - width: 58.333333%; +.focus\:placeholder-gray-400:focus::placeholder { + color: #9ca3af; } -.w-8\/12 { - width: 66.666667%; +.focus\:placeholder-gray-500:focus::placeholder { + color: #6b7280; } -.w-9\/12 { - width: 75%; +.focus\:placeholder-gray-600:focus::placeholder { + color: #4b5563; } -.w-10\/12 { - width: 83.333333%; +.focus\:placeholder-gray-700:focus::placeholder { + color: #374151; } -.w-11\/12 { - width: 91.666667%; +.focus\:placeholder-gray-800:focus::placeholder { + color: #1f2937; } -.w-full { - width: 100%; +.focus\:placeholder-gray-900:focus::placeholder { + color: #111827; } -.w-screen { - width: 100vw; +.focus\:placeholder-red-50:focus::placeholder { + color: #fef2f2; } -.w-min { - width: min-content; +.focus\:placeholder-red-100:focus::placeholder { + color: #fee2e2; } -.w-max { - width: max-content; +.focus\:placeholder-red-200:focus::placeholder { + color: #fecaca; } -.z-0 { - z-index: 0; +.focus\:placeholder-red-300:focus::placeholder { + color: #fca5a5; } -.z-10 { - z-index: 10; +.focus\:placeholder-red-400:focus::placeholder { + color: #f87171; } -.z-20 { - z-index: 20; +.focus\:placeholder-red-500:focus::placeholder { + color: #ef4444; } -.z-30 { - z-index: 30; +.focus\:placeholder-red-600:focus::placeholder { + color: #dc2626; } -.z-40 { - z-index: 40; +.focus\:placeholder-red-700:focus::placeholder { + color: #b91c1c; } -.z-50 { - z-index: 50; +.focus\:placeholder-red-800:focus::placeholder { + color: #991b1b; } -.z-auto { - z-index: auto; +.focus\:placeholder-red-900:focus::placeholder { + color: #7f1d1d; } -.focus-within\:z-0:focus-within { - z-index: 0; +.focus\:placeholder-yellow-50:focus::placeholder { + color: #fffbeb; } -.focus-within\:z-10:focus-within { - z-index: 10; +.focus\:placeholder-yellow-100:focus::placeholder { + color: #fef3c7; } -.focus-within\:z-20:focus-within { - z-index: 20; +.focus\:placeholder-yellow-200:focus::placeholder { + color: #fde68a; } -.focus-within\:z-30:focus-within { - z-index: 30; +.focus\:placeholder-yellow-300:focus::placeholder { + color: #fcd34d; } -.focus-within\:z-40:focus-within { - z-index: 40; +.focus\:placeholder-yellow-400:focus::placeholder { + color: #fbbf24; } -.focus-within\:z-50:focus-within { - z-index: 50; +.focus\:placeholder-yellow-500:focus::placeholder { + color: #f59e0b; } -.focus-within\:z-auto:focus-within { - z-index: auto; +.focus\:placeholder-yellow-600:focus::placeholder { + color: #d97706; } -.focus\:z-0:focus { - z-index: 0; +.focus\:placeholder-yellow-700:focus::placeholder { + color: #b45309; } -.focus\:z-10:focus { - z-index: 10; +.focus\:placeholder-yellow-800:focus::placeholder { + color: #92400e; } -.focus\:z-20:focus { - z-index: 20; +.focus\:placeholder-yellow-900:focus::placeholder { + color: #78350f; } -.focus\:z-30:focus { - z-index: 30; +.focus\:placeholder-green-50:focus::placeholder { + color: #ecfdf5; } -.focus\:z-40:focus { - z-index: 40; +.focus\:placeholder-green-100:focus::placeholder { + color: #d1fae5; } -.focus\:z-50:focus { - z-index: 50; +.focus\:placeholder-green-200:focus::placeholder { + color: #a7f3d0; } -.focus\:z-auto:focus { - z-index: auto; +.focus\:placeholder-green-300:focus::placeholder { + color: #6ee7b7; } -.isolate { - isolation: isolate; +.focus\:placeholder-green-400:focus::placeholder { + color: #34d399; } -.isolation-auto { - isolation: auto; +.focus\:placeholder-green-500:focus::placeholder { + color: #10b981; } -.gap-0 { - gap: 0px; +.focus\:placeholder-green-600:focus::placeholder { + color: #059669; } -.gap-1 { - gap: 0.25rem; +.focus\:placeholder-green-700:focus::placeholder { + color: #047857; } -.gap-2 { - gap: 0.5rem; +.focus\:placeholder-green-800:focus::placeholder { + color: #065f46; } -.gap-3 { - gap: 0.75rem; +.focus\:placeholder-green-900:focus::placeholder { + color: #064e3b; } -.gap-4 { - gap: 1rem; +.focus\:placeholder-blue-50:focus::placeholder { + color: #eff6ff; } -.gap-5 { - gap: 1.25rem; +.focus\:placeholder-blue-100:focus::placeholder { + color: #dbeafe; } -.gap-6 { - gap: 1.5rem; +.focus\:placeholder-blue-200:focus::placeholder { + color: #bfdbfe; } -.gap-7 { - gap: 1.75rem; +.focus\:placeholder-blue-300:focus::placeholder { + color: #93c5fd; } -.gap-8 { - gap: 2rem; +.focus\:placeholder-blue-400:focus::placeholder { + color: #60a5fa; } -.gap-9 { - gap: 2.25rem; +.focus\:placeholder-blue-500:focus::placeholder { + color: #3b82f6; } -.gap-10 { - gap: 2.5rem; +.focus\:placeholder-blue-600:focus::placeholder { + color: #2563eb; } -.gap-11 { - gap: 2.75rem; +.focus\:placeholder-blue-700:focus::placeholder { + color: #1d4ed8; } -.gap-12 { - gap: 3rem; +.focus\:placeholder-blue-800:focus::placeholder { + color: #1e40af; } -.gap-14 { - gap: 3.5rem; +.focus\:placeholder-blue-900:focus::placeholder { + color: #1e3a8a; } -.gap-16 { - gap: 4rem; +.focus\:placeholder-indigo-50:focus::placeholder { + color: #eef2ff; } -.gap-20 { - gap: 5rem; +.focus\:placeholder-indigo-100:focus::placeholder { + color: #e0e7ff; } -.gap-24 { - gap: 6rem; +.focus\:placeholder-indigo-200:focus::placeholder { + color: #c7d2fe; } -.gap-28 { - gap: 7rem; +.focus\:placeholder-indigo-300:focus::placeholder { + color: #a5b4fc; } -.gap-32 { - gap: 8rem; +.focus\:placeholder-indigo-400:focus::placeholder { + color: #818cf8; } -.gap-36 { - gap: 9rem; +.focus\:placeholder-indigo-500:focus::placeholder { + color: #6366f1; } -.gap-40 { - gap: 10rem; +.focus\:placeholder-indigo-600:focus::placeholder { + color: #4f46e5; } -.gap-44 { - gap: 11rem; +.focus\:placeholder-indigo-700:focus::placeholder { + color: #4338ca; } -.gap-48 { - gap: 12rem; +.focus\:placeholder-indigo-800:focus::placeholder { + color: #3730a3; } -.gap-52 { - gap: 13rem; +.focus\:placeholder-indigo-900:focus::placeholder { + color: #312e81; } -.gap-56 { - gap: 14rem; +.focus\:placeholder-purple-50:focus::placeholder { + color: #f5f3ff; } -.gap-60 { - gap: 15rem; +.focus\:placeholder-purple-100:focus::placeholder { + color: #ede9fe; } -.gap-64 { - gap: 16rem; +.focus\:placeholder-purple-200:focus::placeholder { + color: #ddd6fe; } -.gap-72 { - gap: 18rem; +.focus\:placeholder-purple-300:focus::placeholder { + color: #c4b5fd; } -.gap-80 { - gap: 20rem; +.focus\:placeholder-purple-400:focus::placeholder { + color: #a78bfa; } -.gap-96 { - gap: 24rem; +.focus\:placeholder-purple-500:focus::placeholder { + color: #8b5cf6; } -.gap-px { - gap: 1px; +.focus\:placeholder-purple-600:focus::placeholder { + color: #7c3aed; } -.gap-0\.5 { - gap: 0.125rem; +.focus\:placeholder-purple-700:focus::placeholder { + color: #6d28d9; } -.gap-1\.5 { - gap: 0.375rem; +.focus\:placeholder-purple-800:focus::placeholder { + color: #5b21b6; } -.gap-2\.5 { - gap: 0.625rem; +.focus\:placeholder-purple-900:focus::placeholder { + color: #4c1d95; } -.gap-3\.5 { - gap: 0.875rem; +.focus\:placeholder-pink-50:focus::placeholder { + color: #fdf2f8; } -.gap-x-0 { - column-gap: 0px; +.focus\:placeholder-pink-100:focus::placeholder { + color: #fce7f3; } -.gap-x-1 { - column-gap: 0.25rem; +.focus\:placeholder-pink-200:focus::placeholder { + color: #fbcfe8; } -.gap-x-2 { - column-gap: 0.5rem; +.focus\:placeholder-pink-300:focus::placeholder { + color: #f9a8d4; } -.gap-x-3 { - column-gap: 0.75rem; +.focus\:placeholder-pink-400:focus::placeholder { + color: #f472b6; } -.gap-x-4 { - column-gap: 1rem; +.focus\:placeholder-pink-500:focus::placeholder { + color: #ec4899; } -.gap-x-5 { - column-gap: 1.25rem; +.focus\:placeholder-pink-600:focus::placeholder { + color: #db2777; } -.gap-x-6 { - column-gap: 1.5rem; +.focus\:placeholder-pink-700:focus::placeholder { + color: #be185d; } -.gap-x-7 { - column-gap: 1.75rem; +.focus\:placeholder-pink-800:focus::placeholder { + color: #9d174d; } -.gap-x-8 { - column-gap: 2rem; +.focus\:placeholder-pink-900:focus::placeholder { + color: #831843; } -.gap-x-9 { - column-gap: 2.25rem; +.opacity-0 { + opacity: 0; } -.gap-x-10 { - column-gap: 2.5rem; +.opacity-5 { + opacity: 0.05; } -.gap-x-11 { - column-gap: 2.75rem; +.opacity-10 { + opacity: 0.1; } -.gap-x-12 { - column-gap: 3rem; +.opacity-20 { + opacity: 0.2; } -.gap-x-14 { - column-gap: 3.5rem; +.opacity-25 { + opacity: 0.25; } -.gap-x-16 { - column-gap: 4rem; +.opacity-30 { + opacity: 0.3; } -.gap-x-20 { - column-gap: 5rem; +.opacity-40 { + opacity: 0.4; } -.gap-x-24 { - column-gap: 6rem; +.opacity-50 { + opacity: 0.5; } -.gap-x-28 { - column-gap: 7rem; +.opacity-60 { + opacity: 0.6; } -.gap-x-32 { - column-gap: 8rem; +.opacity-70 { + opacity: 0.7; } -.gap-x-36 { - column-gap: 9rem; +.opacity-75 { + opacity: 0.75; } -.gap-x-40 { - column-gap: 10rem; +.opacity-80 { + opacity: 0.8; } -.gap-x-44 { - column-gap: 11rem; +.opacity-90 { + opacity: 0.9; } -.gap-x-48 { - column-gap: 12rem; +.opacity-95 { + opacity: 0.95; } -.gap-x-52 { - column-gap: 13rem; +.opacity-100 { + opacity: 1; } -.gap-x-56 { - column-gap: 14rem; +.group:hover .group-hover\:opacity-0 { + opacity: 0; } -.gap-x-60 { - column-gap: 15rem; +.group:hover .group-hover\:opacity-5 { + opacity: 0.05; } -.gap-x-64 { - column-gap: 16rem; +.group:hover .group-hover\:opacity-10 { + opacity: 0.1; } -.gap-x-72 { - column-gap: 18rem; +.group:hover .group-hover\:opacity-20 { + opacity: 0.2; } -.gap-x-80 { - column-gap: 20rem; +.group:hover .group-hover\:opacity-25 { + opacity: 0.25; } -.gap-x-96 { - column-gap: 24rem; +.group:hover .group-hover\:opacity-30 { + opacity: 0.3; } -.gap-x-px { - column-gap: 1px; +.group:hover .group-hover\:opacity-40 { + opacity: 0.4; } -.gap-x-0\.5 { - column-gap: 0.125rem; +.group:hover .group-hover\:opacity-50 { + opacity: 0.5; } -.gap-x-1\.5 { - column-gap: 0.375rem; +.group:hover .group-hover\:opacity-60 { + opacity: 0.6; } -.gap-x-2\.5 { - column-gap: 0.625rem; +.group:hover .group-hover\:opacity-70 { + opacity: 0.7; } -.gap-x-3\.5 { - column-gap: 0.875rem; +.group:hover .group-hover\:opacity-75 { + opacity: 0.75; } -.gap-y-0 { - row-gap: 0px; +.group:hover .group-hover\:opacity-80 { + opacity: 0.8; } -.gap-y-1 { - row-gap: 0.25rem; +.group:hover .group-hover\:opacity-90 { + opacity: 0.9; } -.gap-y-2 { - row-gap: 0.5rem; +.group:hover .group-hover\:opacity-95 { + opacity: 0.95; } -.gap-y-3 { - row-gap: 0.75rem; +.group:hover .group-hover\:opacity-100 { + opacity: 1; } -.gap-y-4 { - row-gap: 1rem; +.focus-within\:opacity-0:focus-within { + opacity: 0; } -.gap-y-5 { - row-gap: 1.25rem; +.focus-within\:opacity-5:focus-within { + opacity: 0.05; } -.gap-y-6 { - row-gap: 1.5rem; +.focus-within\:opacity-10:focus-within { + opacity: 0.1; } -.gap-y-7 { - row-gap: 1.75rem; +.focus-within\:opacity-20:focus-within { + opacity: 0.2; } -.gap-y-8 { - row-gap: 2rem; +.focus-within\:opacity-25:focus-within { + opacity: 0.25; } -.gap-y-9 { - row-gap: 2.25rem; +.focus-within\:opacity-30:focus-within { + opacity: 0.3; } -.gap-y-10 { - row-gap: 2.5rem; +.focus-within\:opacity-40:focus-within { + opacity: 0.4; } -.gap-y-11 { - row-gap: 2.75rem; +.focus-within\:opacity-50:focus-within { + opacity: 0.5; } -.gap-y-12 { - row-gap: 3rem; +.focus-within\:opacity-60:focus-within { + opacity: 0.6; } -.gap-y-14 { - row-gap: 3.5rem; +.focus-within\:opacity-70:focus-within { + opacity: 0.7; } -.gap-y-16 { - row-gap: 4rem; +.focus-within\:opacity-75:focus-within { + opacity: 0.75; } -.gap-y-20 { - row-gap: 5rem; +.focus-within\:opacity-80:focus-within { + opacity: 0.8; } -.gap-y-24 { - row-gap: 6rem; +.focus-within\:opacity-90:focus-within { + opacity: 0.9; } -.gap-y-28 { - row-gap: 7rem; +.focus-within\:opacity-95:focus-within { + opacity: 0.95; } -.gap-y-32 { - row-gap: 8rem; +.focus-within\:opacity-100:focus-within { + opacity: 1; } -.gap-y-36 { - row-gap: 9rem; +.hover\:opacity-0:hover { + opacity: 0; } -.gap-y-40 { - row-gap: 10rem; +.hover\:opacity-5:hover { + opacity: 0.05; } -.gap-y-44 { - row-gap: 11rem; +.hover\:opacity-10:hover { + opacity: 0.1; } -.gap-y-48 { - row-gap: 12rem; +.hover\:opacity-20:hover { + opacity: 0.2; } -.gap-y-52 { - row-gap: 13rem; +.hover\:opacity-25:hover { + opacity: 0.25; } -.gap-y-56 { - row-gap: 14rem; +.hover\:opacity-30:hover { + opacity: 0.3; } -.gap-y-60 { - row-gap: 15rem; +.hover\:opacity-40:hover { + opacity: 0.4; } -.gap-y-64 { - row-gap: 16rem; +.hover\:opacity-50:hover { + opacity: 0.5; } -.gap-y-72 { - row-gap: 18rem; +.hover\:opacity-60:hover { + opacity: 0.6; } -.gap-y-80 { - row-gap: 20rem; +.hover\:opacity-70:hover { + opacity: 0.7; } -.gap-y-96 { - row-gap: 24rem; +.hover\:opacity-75:hover { + opacity: 0.75; } -.gap-y-px { - row-gap: 1px; +.hover\:opacity-80:hover { + opacity: 0.8; } -.gap-y-0\.5 { - row-gap: 0.125rem; +.hover\:opacity-90:hover { + opacity: 0.9; } -.gap-y-1\.5 { - row-gap: 0.375rem; +.hover\:opacity-95:hover { + opacity: 0.95; } -.gap-y-2\.5 { - row-gap: 0.625rem; +.hover\:opacity-100:hover { + opacity: 1; } -.gap-y-3\.5 { - row-gap: 0.875rem; +.focus\:opacity-0:focus { + opacity: 0; } -.grid-flow-row { - grid-auto-flow: row; +.focus\:opacity-5:focus { + opacity: 0.05; } -.grid-flow-col { - grid-auto-flow: column; +.focus\:opacity-10:focus { + opacity: 0.1; } -.grid-flow-row-dense { - grid-auto-flow: row dense; +.focus\:opacity-20:focus { + opacity: 0.2; } -.grid-flow-col-dense { - grid-auto-flow: column dense; +.focus\:opacity-25:focus { + opacity: 0.25; } -.grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); +.focus\:opacity-30:focus { + opacity: 0.3; } -.grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); +.focus\:opacity-40:focus { + opacity: 0.4; } -.grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); +.focus\:opacity-50:focus { + opacity: 0.5; } -.grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); +.focus\:opacity-60:focus { + opacity: 0.6; } -.grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); +.focus\:opacity-70:focus { + opacity: 0.7; } -.grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); +.focus\:opacity-75:focus { + opacity: 0.75; } -.grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); +.focus\:opacity-80:focus { + opacity: 0.8; } -.grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); +.focus\:opacity-90:focus { + opacity: 0.9; } -.grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); +.focus\:opacity-95:focus { + opacity: 0.95; } -.grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); +.focus\:opacity-100:focus { + opacity: 1; } -.grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); +.bg-blend-normal { + background-blend-mode: normal; } -.grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); +.bg-blend-multiply { + background-blend-mode: multiply; } -.grid-cols-none { - grid-template-columns: none; +.bg-blend-screen { + background-blend-mode: screen; } -.auto-cols-auto { - grid-auto-columns: auto; +.bg-blend-overlay { + background-blend-mode: overlay; } -.auto-cols-min { - grid-auto-columns: min-content; +.bg-blend-darken { + background-blend-mode: darken; } -.auto-cols-max { - grid-auto-columns: max-content; +.bg-blend-lighten { + background-blend-mode: lighten; } -.auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); +.bg-blend-color-dodge { + background-blend-mode: color-dodge; } -.col-auto { - grid-column: auto; +.bg-blend-color-burn { + background-blend-mode: color-burn; } -.col-span-1 { - grid-column: span 1 / span 1; +.bg-blend-hard-light { + background-blend-mode: hard-light; } -.col-span-2 { - grid-column: span 2 / span 2; +.bg-blend-soft-light { + background-blend-mode: soft-light; } -.col-span-3 { - grid-column: span 3 / span 3; +.bg-blend-difference { + background-blend-mode: difference; } -.col-span-4 { - grid-column: span 4 / span 4; +.bg-blend-exclusion { + background-blend-mode: exclusion; } -.col-span-5 { - grid-column: span 5 / span 5; +.bg-blend-hue { + background-blend-mode: hue; } -.col-span-6 { - grid-column: span 6 / span 6; +.bg-blend-saturation { + background-blend-mode: saturation; } -.col-span-7 { - grid-column: span 7 / span 7; +.bg-blend-color { + background-blend-mode: color; } -.col-span-8 { - grid-column: span 8 / span 8; +.bg-blend-luminosity { + background-blend-mode: luminosity; } -.col-span-9 { - grid-column: span 9 / span 9; +.mix-blend-normal { + mix-blend-mode: normal; } -.col-span-10 { - grid-column: span 10 / span 10; +.mix-blend-multiply { + mix-blend-mode: multiply; } -.col-span-11 { - grid-column: span 11 / span 11; +.mix-blend-screen { + mix-blend-mode: screen; } -.col-span-12 { - grid-column: span 12 / span 12; +.mix-blend-overlay { + mix-blend-mode: overlay; } -.col-span-full { - grid-column: 1 / -1; +.mix-blend-darken { + mix-blend-mode: darken; } -.col-start-1 { - grid-column-start: 1; +.mix-blend-lighten { + mix-blend-mode: lighten; } -.col-start-2 { - grid-column-start: 2; +.mix-blend-color-dodge { + mix-blend-mode: color-dodge; } -.col-start-3 { - grid-column-start: 3; +.mix-blend-color-burn { + mix-blend-mode: color-burn; } -.col-start-4 { - grid-column-start: 4; +.mix-blend-hard-light { + mix-blend-mode: hard-light; } -.col-start-5 { - grid-column-start: 5; +.mix-blend-soft-light { + mix-blend-mode: soft-light; } -.col-start-6 { - grid-column-start: 6; +.mix-blend-difference { + mix-blend-mode: difference; } -.col-start-7 { - grid-column-start: 7; +.mix-blend-exclusion { + mix-blend-mode: exclusion; } -.col-start-8 { - grid-column-start: 8; +.mix-blend-hue { + mix-blend-mode: hue; } -.col-start-9 { - grid-column-start: 9; +.mix-blend-saturation { + mix-blend-mode: saturation; } -.col-start-10 { - grid-column-start: 10; +.mix-blend-color { + mix-blend-mode: color; } -.col-start-11 { - grid-column-start: 11; +.mix-blend-luminosity { + mix-blend-mode: luminosity; } -.col-start-12 { - grid-column-start: 12; +* { + --tw-shadow: 0 0 #0000; } -.col-start-13 { - grid-column-start: 13; +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-start-auto { - grid-column-start: auto; +.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); } -.col-end-1 { - grid-column-end: 1; +.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); } -.col-end-2 { - grid-column-end: 2; +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-end-3 { - grid-column-end: 3; +.shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-end-4 { - grid-column-end: 4; +.shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-end-5 { - grid-column-end: 5; +.shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-end-6 { - grid-column-end: 6; +.shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-end-7 { - grid-column-end: 7; +.group:hover .group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-end-8 { - grid-column-end: 8; +.group:hover .group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-end-9 { - grid-column-end: 9; +.group:hover .group-hover\: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); } -.col-end-10 { - grid-column-end: 10; +.group:hover .group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-end-11 { - grid-column-end: 11; +.group:hover .group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-end-12 { - grid-column-end: 12; +.group:hover .group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-end-13 { - grid-column-end: 13; +.group:hover .group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.col-end-auto { - grid-column-end: auto; +.group:hover .group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); +.focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); +.focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); +.focus-within\:shadow-md:focus-within { + --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); } -.grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); +.focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); +.focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); +.focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.grid-rows-none { - grid-template-rows: none; +.focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.auto-rows-auto { - grid-auto-rows: auto; +.focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.auto-rows-min { - grid-auto-rows: min-content; +.hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.auto-rows-max { - grid-auto-rows: max-content; +.hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); +.hover\:shadow-md:hover { + --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); } -.row-auto { - grid-row: auto; +.hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-1 { - grid-row: span 1 / span 1; +.hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-2 { - grid-row: span 2 / span 2; +.hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-3 { - grid-row: span 3 / span 3; +.hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-4 { - grid-row: span 4 / span 4; +.hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-5 { - grid-row: span 5 / span 5; +.focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-6 { - grid-row: span 6 / span 6; +.focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-full { - grid-row: 1 / -1; +.focus\:shadow-md:focus { + --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); } -.row-start-1 { - grid-row-start: 1; +.focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-2 { - grid-row-start: 2; +.focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-3 { - grid-row-start: 3; +.focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-4 { - grid-row-start: 4; +.focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-5 { - grid-row-start: 5; +.focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-6 { - grid-row-start: 6; +.outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } -.row-start-7 { - grid-row-start: 7; +.outline-white { + outline: 2px dotted white; + outline-offset: 2px; } -.row-start-auto { - grid-row-start: auto; +.outline-black { + outline: 2px dotted black; + outline-offset: 2px; } -.row-end-1 { - grid-row-end: 1; +.focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } -.row-end-2 { - grid-row-end: 2; +.focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } -.row-end-3 { - grid-row-end: 3; +.focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } -.row-end-4 { - grid-row-end: 4; +.focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } -.row-end-5 { - grid-row-end: 5; +.focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } -.row-end-6 { - grid-row-end: 6; +.focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } -.row-end-7 { - grid-row-end: 7; +* { + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgba(59, 130, 246, 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; } -.row-end-auto { - grid-row-end: auto; +.ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +.ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +.ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.transform-none { - transform: none; +.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); } -.origin-center { - transform-origin: center; +.ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.origin-top { - transform-origin: top; +.ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.origin-top-right { - transform-origin: top right; +.ring-inset { + --tw-ring-inset: inset; } -.origin-right { - transform-origin: right; +.focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.origin-bottom-right { - transform-origin: bottom right; +.focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.origin-bottom { - transform-origin: bottom; +.focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.origin-bottom-left { - transform-origin: bottom left; +.focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.origin-left { - transform-origin: left; +.focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.origin-top-left { - transform-origin: top left; +.focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; +.focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } -.scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; +.focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; +.focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; +.focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; +.focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; +.focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; +.focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; +.focus\:ring-inset:focus { + --tw-ring-inset: inset; } -.scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; +.ring-transparent { + --tw-ring-color: transparent; } -.scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; +.ring-current { + --tw-ring-color: currentColor; } -.scale-x-0 { - --tw-scale-x: 0; +.ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } -.scale-x-50 { - --tw-scale-x: .5; +.ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } -.scale-x-75 { - --tw-scale-x: .75; +.ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } -.scale-x-90 { - --tw-scale-x: .9; +.ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } -.scale-x-95 { - --tw-scale-x: .95; +.ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } -.scale-x-100 { - --tw-scale-x: 1; +.ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } -.scale-x-105 { - --tw-scale-x: 1.05; +.ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } -.scale-x-110 { - --tw-scale-x: 1.1; +.ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } -.scale-x-125 { - --tw-scale-x: 1.25; +.ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } -.scale-x-150 { - --tw-scale-x: 1.5; +.ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } -.scale-y-0 { - --tw-scale-y: 0; +.ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } -.scale-y-50 { - --tw-scale-y: .5; +.ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } -.scale-y-75 { - --tw-scale-y: .75; +.ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } -.scale-y-90 { - --tw-scale-y: .9; +.ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } -.scale-y-95 { - --tw-scale-y: .95; +.ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } -.scale-y-100 { - --tw-scale-y: 1; +.ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } -.scale-y-105 { - --tw-scale-y: 1.05; +.ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } -.scale-y-110 { - --tw-scale-y: 1.1; +.ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } -.scale-y-125 { - --tw-scale-y: 1.25; +.ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } -.scale-y-150 { - --tw-scale-y: 1.5; +.ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } -.hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; +.ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } -.hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; +.ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } -.hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; +.ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } -.hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; +.ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } -.hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; +.ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } -.hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; +.ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } -.hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; +.ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } -.hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; +.ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } -.hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; +.ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } -.hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; +.ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } -.hover\:scale-x-0:hover { - --tw-scale-x: 0; +.ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } -.hover\:scale-x-50:hover { - --tw-scale-x: .5; +.ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } -.hover\:scale-x-75:hover { - --tw-scale-x: .75; +.ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } -.hover\:scale-x-90:hover { - --tw-scale-x: .9; +.ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } -.hover\:scale-x-95:hover { - --tw-scale-x: .95; +.ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } -.hover\:scale-x-100:hover { - --tw-scale-x: 1; +.ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } -.hover\:scale-x-105:hover { - --tw-scale-x: 1.05; +.ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } -.hover\:scale-x-110:hover { - --tw-scale-x: 1.1; +.ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } -.hover\:scale-x-125:hover { - --tw-scale-x: 1.25; +.ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } -.hover\:scale-x-150:hover { - --tw-scale-x: 1.5; +.ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } -.hover\:scale-y-0:hover { - --tw-scale-y: 0; +.ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } -.hover\:scale-y-50:hover { - --tw-scale-y: .5; +.ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } -.hover\:scale-y-75:hover { - --tw-scale-y: .75; +.ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } -.hover\:scale-y-90:hover { - --tw-scale-y: .9; +.ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } -.hover\:scale-y-95:hover { - --tw-scale-y: .95; +.ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } -.hover\:scale-y-100:hover { - --tw-scale-y: 1; +.ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } -.hover\:scale-y-105:hover { - --tw-scale-y: 1.05; +.ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } -.hover\:scale-y-110:hover { - --tw-scale-y: 1.1; +.ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } -.hover\:scale-y-125:hover { - --tw-scale-y: 1.25; +.ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } -.hover\:scale-y-150:hover { - --tw-scale-y: 1.5; +.ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } -.focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; +.ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } -.focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; +.ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } -.focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; +.ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } -.focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; +.ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } -.focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; +.ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } -.focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; +.ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } -.focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; +.ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } -.focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; +.ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } -.focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; +.ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } -.focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; +.ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } -.focus\:scale-x-0:focus { - --tw-scale-x: 0; +.ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } -.focus\:scale-x-50:focus { - --tw-scale-x: .5; +.ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } -.focus\:scale-x-75:focus { - --tw-scale-x: .75; +.ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } -.focus\:scale-x-90:focus { - --tw-scale-x: .9; +.ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } -.focus\:scale-x-95:focus { - --tw-scale-x: .95; +.ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } -.focus\:scale-x-100:focus { - --tw-scale-x: 1; +.ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } -.focus\:scale-x-105:focus { - --tw-scale-x: 1.05; +.ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } -.focus\:scale-x-110:focus { - --tw-scale-x: 1.1; +.ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } -.focus\:scale-x-125:focus { - --tw-scale-x: 1.25; +.ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } -.focus\:scale-x-150:focus { - --tw-scale-x: 1.5; +.ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } -.focus\:scale-y-0:focus { - --tw-scale-y: 0; +.ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } -.focus\:scale-y-50:focus { - --tw-scale-y: .5; +.ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } -.focus\:scale-y-75:focus { - --tw-scale-y: .75; +.ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } -.focus\:scale-y-90:focus { - --tw-scale-y: .9; +.ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } -.focus\:scale-y-95:focus { - --tw-scale-y: .95; +.ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } -.focus\:scale-y-100:focus { - --tw-scale-y: 1; +.ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } -.focus\:scale-y-105:focus { - --tw-scale-y: 1.05; +.ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } -.focus\:scale-y-110:focus { - --tw-scale-y: 1.1; +.ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } -.focus\:scale-y-125:focus { - --tw-scale-y: 1.25; +.ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } -.focus\:scale-y-150:focus { - --tw-scale-y: 1.5; +.ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } -.rotate-0 { - --tw-rotate: 0deg; +.ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } -.rotate-1 { - --tw-rotate: 1deg; +.ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } -.rotate-2 { - --tw-rotate: 2deg; +.focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } -.rotate-3 { - --tw-rotate: 3deg; +.focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } -.rotate-6 { - --tw-rotate: 6deg; +.focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } -.rotate-12 { - --tw-rotate: 12deg; +.focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } -.rotate-45 { - --tw-rotate: 45deg; +.focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } -.rotate-90 { - --tw-rotate: 90deg; +.focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } -.rotate-180 { - --tw-rotate: 180deg; +.focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } -.-rotate-180 { - --tw-rotate: -180deg; +.focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } -.-rotate-90 { - --tw-rotate: -90deg; +.focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } -.-rotate-45 { - --tw-rotate: -45deg; +.focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } -.-rotate-12 { - --tw-rotate: -12deg; +.focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } -.-rotate-6 { - --tw-rotate: -6deg; +.focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } -.-rotate-3 { - --tw-rotate: -3deg; +.focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } -.-rotate-2 { - --tw-rotate: -2deg; +.focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } -.-rotate-1 { - --tw-rotate: -1deg; +.focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } -.hover\:rotate-0:hover { - --tw-rotate: 0deg; +.focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } -.hover\:rotate-1:hover { - --tw-rotate: 1deg; +.focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } -.hover\:rotate-2:hover { - --tw-rotate: 2deg; +.focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } -.hover\:rotate-3:hover { - --tw-rotate: 3deg; +.focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } -.hover\:rotate-6:hover { - --tw-rotate: 6deg; +.focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } -.hover\:rotate-12:hover { - --tw-rotate: 12deg; +.focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } -.hover\:rotate-45:hover { - --tw-rotate: 45deg; +.focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } -.hover\:rotate-90:hover { - --tw-rotate: 90deg; +.focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } -.hover\:rotate-180:hover { - --tw-rotate: 180deg; +.focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } -.hover\:-rotate-180:hover { - --tw-rotate: -180deg; +.focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } -.hover\:-rotate-90:hover { - --tw-rotate: -90deg; +.focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } -.hover\:-rotate-45:hover { - --tw-rotate: -45deg; +.focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } -.hover\:-rotate-12:hover { - --tw-rotate: -12deg; +.focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } -.hover\:-rotate-6:hover { - --tw-rotate: -6deg; +.focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } -.hover\:-rotate-3:hover { - --tw-rotate: -3deg; +.focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } -.hover\:-rotate-2:hover { - --tw-rotate: -2deg; +.focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } -.hover\:-rotate-1:hover { - --tw-rotate: -1deg; +.focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } -.focus\:rotate-0:focus { - --tw-rotate: 0deg; +.focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } -.focus\:rotate-1:focus { - --tw-rotate: 1deg; +.focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } -.focus\:rotate-2:focus { - --tw-rotate: 2deg; +.focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } -.focus\:rotate-3:focus { - --tw-rotate: 3deg; +.focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } -.focus\:rotate-6:focus { - --tw-rotate: 6deg; +.focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } -.focus\:rotate-12:focus { - --tw-rotate: 12deg; +.focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } -.focus\:rotate-45:focus { - --tw-rotate: 45deg; +.focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } -.focus\:rotate-90:focus { - --tw-rotate: 90deg; +.focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } -.focus\:rotate-180:focus { - --tw-rotate: 180deg; +.focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } -.focus\:-rotate-180:focus { - --tw-rotate: -180deg; +.focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } -.focus\:-rotate-90:focus { - --tw-rotate: -90deg; +.focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } -.focus\:-rotate-45:focus { - --tw-rotate: -45deg; +.focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } -.focus\:-rotate-12:focus { - --tw-rotate: -12deg; +.focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } -.focus\:-rotate-6:focus { - --tw-rotate: -6deg; +.focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } -.focus\:-rotate-3:focus { - --tw-rotate: -3deg; +.focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } -.focus\:-rotate-2:focus { - --tw-rotate: -2deg; +.focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } -.focus\:-rotate-1:focus { - --tw-rotate: -1deg; +.focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } -.translate-x-0 { - --tw-translate-x: 0px; +.focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } -.translate-x-1 { - --tw-translate-x: 0.25rem; +.focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } -.translate-x-2 { - --tw-translate-x: 0.5rem; +.focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } -.translate-x-3 { - --tw-translate-x: 0.75rem; +.focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } -.translate-x-4 { - --tw-translate-x: 1rem; +.focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } -.translate-x-5 { - --tw-translate-x: 1.25rem; +.focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } -.translate-x-6 { - --tw-translate-x: 1.5rem; +.focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } -.translate-x-7 { - --tw-translate-x: 1.75rem; +.focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } -.translate-x-8 { - --tw-translate-x: 2rem; +.focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } -.translate-x-9 { - --tw-translate-x: 2.25rem; +.focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } -.translate-x-10 { - --tw-translate-x: 2.5rem; +.focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } -.translate-x-11 { - --tw-translate-x: 2.75rem; +.focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } -.translate-x-12 { - --tw-translate-x: 3rem; +.focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } -.translate-x-14 { - --tw-translate-x: 3.5rem; +.focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } -.translate-x-16 { - --tw-translate-x: 4rem; +.focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } -.translate-x-20 { - --tw-translate-x: 5rem; +.focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } -.translate-x-24 { - --tw-translate-x: 6rem; +.focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } -.translate-x-28 { - --tw-translate-x: 7rem; +.focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } -.translate-x-32 { - --tw-translate-x: 8rem; +.focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } -.translate-x-36 { - --tw-translate-x: 9rem; +.focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } -.translate-x-40 { - --tw-translate-x: 10rem; +.focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } -.translate-x-44 { - --tw-translate-x: 11rem; +.focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } -.translate-x-48 { - --tw-translate-x: 12rem; +.focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } -.translate-x-52 { - --tw-translate-x: 13rem; +.focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } -.translate-x-56 { - --tw-translate-x: 14rem; +.focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } -.translate-x-60 { - --tw-translate-x: 15rem; +.focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } -.translate-x-64 { - --tw-translate-x: 16rem; +.focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } -.translate-x-72 { - --tw-translate-x: 18rem; +.focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } -.translate-x-80 { - --tw-translate-x: 20rem; +.focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } -.translate-x-96 { - --tw-translate-x: 24rem; +.focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } -.translate-x-px { - --tw-translate-x: 1px; +.focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } -.translate-x-0\.5 { - --tw-translate-x: 0.125rem; +.focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } -.translate-x-1\.5 { - --tw-translate-x: 0.375rem; +.focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } -.translate-x-2\.5 { - --tw-translate-x: 0.625rem; +.focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } -.translate-x-3\.5 { - --tw-translate-x: 0.875rem; +.focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } -.-translate-x-0 { - --tw-translate-x: 0px; +.focus\:ring-transparent:focus { + --tw-ring-color: transparent; } -.-translate-x-1 { - --tw-translate-x: -0.25rem; +.focus\:ring-current:focus { + --tw-ring-color: currentColor; } -.-translate-x-2 { - --tw-translate-x: -0.5rem; +.focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } -.-translate-x-3 { - --tw-translate-x: -0.75rem; +.focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } -.-translate-x-4 { - --tw-translate-x: -1rem; +.focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } -.-translate-x-5 { - --tw-translate-x: -1.25rem; +.focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } -.-translate-x-6 { - --tw-translate-x: -1.5rem; +.focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } -.-translate-x-7 { - --tw-translate-x: -1.75rem; +.focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } -.-translate-x-8 { - --tw-translate-x: -2rem; +.focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } -.-translate-x-9 { - --tw-translate-x: -2.25rem; +.focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } -.-translate-x-10 { - --tw-translate-x: -2.5rem; +.focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } -.-translate-x-11 { - --tw-translate-x: -2.75rem; +.focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } -.-translate-x-12 { - --tw-translate-x: -3rem; +.focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } -.-translate-x-14 { - --tw-translate-x: -3.5rem; +.focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } -.-translate-x-16 { - --tw-translate-x: -4rem; +.focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } -.-translate-x-20 { - --tw-translate-x: -5rem; +.focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } -.-translate-x-24 { - --tw-translate-x: -6rem; +.focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } -.-translate-x-28 { - --tw-translate-x: -7rem; +.focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } -.-translate-x-32 { - --tw-translate-x: -8rem; +.focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } -.-translate-x-36 { - --tw-translate-x: -9rem; +.focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } -.-translate-x-40 { - --tw-translate-x: -10rem; +.focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } -.-translate-x-44 { - --tw-translate-x: -11rem; +.focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } -.-translate-x-48 { - --tw-translate-x: -12rem; +.focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } -.-translate-x-52 { - --tw-translate-x: -13rem; +.focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } -.-translate-x-56 { - --tw-translate-x: -14rem; +.focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } -.-translate-x-60 { - --tw-translate-x: -15rem; +.focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } -.-translate-x-64 { - --tw-translate-x: -16rem; +.focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } -.-translate-x-72 { - --tw-translate-x: -18rem; +.focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } -.-translate-x-80 { - --tw-translate-x: -20rem; +.focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } -.-translate-x-96 { - --tw-translate-x: -24rem; +.focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } -.-translate-x-px { - --tw-translate-x: -1px; +.focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } -.-translate-x-0\.5 { - --tw-translate-x: -0.125rem; +.focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } -.-translate-x-1\.5 { - --tw-translate-x: -0.375rem; +.focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } -.-translate-x-2\.5 { - --tw-translate-x: -0.625rem; +.focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } -.-translate-x-3\.5 { - --tw-translate-x: -0.875rem; +.focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } -.translate-x-1\/2 { - --tw-translate-x: 50%; +.focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } -.translate-x-1\/3 { - --tw-translate-x: 33.333333%; +.focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } -.translate-x-2\/3 { - --tw-translate-x: 66.666667%; +.focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } -.translate-x-1\/4 { - --tw-translate-x: 25%; +.focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } -.translate-x-2\/4 { - --tw-translate-x: 50%; +.focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } -.translate-x-3\/4 { - --tw-translate-x: 75%; +.focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } -.translate-x-full { - --tw-translate-x: 100%; +.focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } -.-translate-x-1\/2 { - --tw-translate-x: -50%; +.focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } -.-translate-x-1\/3 { - --tw-translate-x: -33.333333%; +.focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } -.-translate-x-2\/3 { - --tw-translate-x: -66.666667%; +.focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } -.-translate-x-1\/4 { - --tw-translate-x: -25%; +.focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } -.-translate-x-2\/4 { - --tw-translate-x: -50%; +.focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } -.-translate-x-3\/4 { - --tw-translate-x: -75%; +.focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } -.-translate-x-full { - --tw-translate-x: -100%; +.focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } -.translate-y-0 { - --tw-translate-y: 0px; +.focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } -.translate-y-1 { - --tw-translate-y: 0.25rem; +.focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } -.translate-y-2 { - --tw-translate-y: 0.5rem; +.focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } -.translate-y-3 { - --tw-translate-y: 0.75rem; +.focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } -.translate-y-4 { - --tw-translate-y: 1rem; +.focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } -.translate-y-5 { - --tw-translate-y: 1.25rem; +.focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } -.translate-y-6 { - --tw-translate-y: 1.5rem; +.focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } -.translate-y-7 { - --tw-translate-y: 1.75rem; +.focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } -.translate-y-8 { - --tw-translate-y: 2rem; +.focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } -.translate-y-9 { - --tw-translate-y: 2.25rem; +.focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } -.translate-y-10 { - --tw-translate-y: 2.5rem; +.focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } -.translate-y-11 { - --tw-translate-y: 2.75rem; +.focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } -.translate-y-12 { - --tw-translate-y: 3rem; +.focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } -.translate-y-14 { - --tw-translate-y: 3.5rem; +.focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } -.translate-y-16 { - --tw-translate-y: 4rem; +.focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } -.translate-y-20 { - --tw-translate-y: 5rem; +.focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } -.translate-y-24 { - --tw-translate-y: 6rem; +.focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } -.translate-y-28 { - --tw-translate-y: 7rem; +.focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } -.translate-y-32 { - --tw-translate-y: 8rem; +.focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } -.translate-y-36 { - --tw-translate-y: 9rem; +.focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } -.translate-y-40 { - --tw-translate-y: 10rem; +.focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } -.translate-y-44 { - --tw-translate-y: 11rem; +.focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } -.translate-y-48 { - --tw-translate-y: 12rem; +.focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } -.translate-y-52 { - --tw-translate-y: 13rem; +.focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } -.translate-y-56 { - --tw-translate-y: 14rem; +.focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } -.translate-y-60 { - --tw-translate-y: 15rem; +.focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } -.translate-y-64 { - --tw-translate-y: 16rem; +.focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } -.translate-y-72 { - --tw-translate-y: 18rem; +.focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } -.translate-y-80 { - --tw-translate-y: 20rem; +.focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } -.translate-y-96 { - --tw-translate-y: 24rem; +.focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } -.translate-y-px { - --tw-translate-y: 1px; +.focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } -.translate-y-0\.5 { - --tw-translate-y: 0.125rem; +.focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } -.translate-y-1\.5 { - --tw-translate-y: 0.375rem; +.focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } -.translate-y-2\.5 { - --tw-translate-y: 0.625rem; +.focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } -.translate-y-3\.5 { - --tw-translate-y: 0.875rem; +.focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } -.-translate-y-0 { - --tw-translate-y: 0px; +.ring-opacity-0 { + --tw-ring-opacity: 0; } -.-translate-y-1 { - --tw-translate-y: -0.25rem; +.ring-opacity-5 { + --tw-ring-opacity: 0.05; } -.-translate-y-2 { - --tw-translate-y: -0.5rem; +.ring-opacity-10 { + --tw-ring-opacity: 0.1; } -.-translate-y-3 { - --tw-translate-y: -0.75rem; +.ring-opacity-20 { + --tw-ring-opacity: 0.2; } -.-translate-y-4 { - --tw-translate-y: -1rem; +.ring-opacity-25 { + --tw-ring-opacity: 0.25; } -.-translate-y-5 { - --tw-translate-y: -1.25rem; +.ring-opacity-30 { + --tw-ring-opacity: 0.3; } -.-translate-y-6 { - --tw-translate-y: -1.5rem; +.ring-opacity-40 { + --tw-ring-opacity: 0.4; } -.-translate-y-7 { - --tw-translate-y: -1.75rem; +.ring-opacity-50 { + --tw-ring-opacity: 0.5; } -.-translate-y-8 { - --tw-translate-y: -2rem; +.ring-opacity-60 { + --tw-ring-opacity: 0.6; } -.-translate-y-9 { - --tw-translate-y: -2.25rem; +.ring-opacity-70 { + --tw-ring-opacity: 0.7; } -.-translate-y-10 { - --tw-translate-y: -2.5rem; +.ring-opacity-75 { + --tw-ring-opacity: 0.75; } -.-translate-y-11 { - --tw-translate-y: -2.75rem; +.ring-opacity-80 { + --tw-ring-opacity: 0.8; } -.-translate-y-12 { - --tw-translate-y: -3rem; +.ring-opacity-90 { + --tw-ring-opacity: 0.9; } -.-translate-y-14 { - --tw-translate-y: -3.5rem; +.ring-opacity-95 { + --tw-ring-opacity: 0.95; } -.-translate-y-16 { - --tw-translate-y: -4rem; +.ring-opacity-100 { + --tw-ring-opacity: 1; } -.-translate-y-20 { - --tw-translate-y: -5rem; +.focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } -.-translate-y-24 { - --tw-translate-y: -6rem; +.focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } -.-translate-y-28 { - --tw-translate-y: -7rem; +.focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } -.-translate-y-32 { - --tw-translate-y: -8rem; +.focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } -.-translate-y-36 { - --tw-translate-y: -9rem; +.focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } -.-translate-y-40 { - --tw-translate-y: -10rem; +.focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } -.-translate-y-44 { - --tw-translate-y: -11rem; +.focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } -.-translate-y-48 { - --tw-translate-y: -12rem; +.focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } -.-translate-y-52 { - --tw-translate-y: -13rem; +.focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } -.-translate-y-56 { - --tw-translate-y: -14rem; +.focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } -.-translate-y-60 { - --tw-translate-y: -15rem; +.focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } -.-translate-y-64 { - --tw-translate-y: -16rem; +.focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } -.-translate-y-72 { - --tw-translate-y: -18rem; +.focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } -.-translate-y-80 { - --tw-translate-y: -20rem; +.focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } -.-translate-y-96 { - --tw-translate-y: -24rem; +.focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } -.-translate-y-px { - --tw-translate-y: -1px; +.focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } -.-translate-y-0\.5 { - --tw-translate-y: -0.125rem; +.focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } -.-translate-y-1\.5 { - --tw-translate-y: -0.375rem; +.focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } -.-translate-y-2\.5 { - --tw-translate-y: -0.625rem; +.focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } -.-translate-y-3\.5 { - --tw-translate-y: -0.875rem; +.focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } -.translate-y-1\/2 { - --tw-translate-y: 50%; +.focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } -.translate-y-1\/3 { - --tw-translate-y: 33.333333%; +.focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } -.translate-y-2\/3 { - --tw-translate-y: 66.666667%; +.focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } -.translate-y-1\/4 { - --tw-translate-y: 25%; +.focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } -.translate-y-2\/4 { - --tw-translate-y: 50%; +.focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } -.translate-y-3\/4 { - --tw-translate-y: 75%; +.focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } -.translate-y-full { - --tw-translate-y: 100%; +.focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } -.-translate-y-1\/2 { - --tw-translate-y: -50%; +.focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } -.-translate-y-1\/3 { - --tw-translate-y: -33.333333%; +.focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } -.-translate-y-2\/3 { - --tw-translate-y: -66.666667%; +.focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } -.-translate-y-1\/4 { - --tw-translate-y: -25%; +.ring-offset-0 { + --tw-ring-offset-width: 0px; } -.-translate-y-2\/4 { - --tw-translate-y: -50%; +.ring-offset-1 { + --tw-ring-offset-width: 1px; } -.-translate-y-3\/4 { - --tw-translate-y: -75%; +.ring-offset-2 { + --tw-ring-offset-width: 2px; } -.-translate-y-full { - --tw-translate-y: -100%; +.ring-offset-4 { + --tw-ring-offset-width: 4px; } -.hover\:translate-x-0:hover { - --tw-translate-x: 0px; +.ring-offset-8 { + --tw-ring-offset-width: 8px; } -.hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; +.focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } -.hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; +.focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } -.hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; +.focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } -.hover\:translate-x-4:hover { - --tw-translate-x: 1rem; +.focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } -.hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; +.focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } -.hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; +.focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } -.hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; +.focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } -.hover\:translate-x-8:hover { - --tw-translate-x: 2rem; +.focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } -.hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; +.focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } -.hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; +.focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } -.hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; +.ring-offset-transparent { + --tw-ring-offset-color: transparent; } -.hover\:translate-x-12:hover { - --tw-translate-x: 3rem; +.ring-offset-current { + --tw-ring-offset-color: currentColor; } -.hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; +.ring-offset-black { + --tw-ring-offset-color: #000; } -.hover\:translate-x-16:hover { - --tw-translate-x: 4rem; +.ring-offset-white { + --tw-ring-offset-color: #fff; } -.hover\:translate-x-20:hover { - --tw-translate-x: 5rem; +.ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } -.hover\:translate-x-24:hover { - --tw-translate-x: 6rem; +.ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } -.hover\:translate-x-28:hover { - --tw-translate-x: 7rem; +.ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } -.hover\:translate-x-32:hover { - --tw-translate-x: 8rem; +.ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } -.hover\:translate-x-36:hover { - --tw-translate-x: 9rem; +.ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } -.hover\:translate-x-40:hover { - --tw-translate-x: 10rem; +.ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } -.hover\:translate-x-44:hover { - --tw-translate-x: 11rem; +.ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } -.hover\:translate-x-48:hover { - --tw-translate-x: 12rem; +.ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } -.hover\:translate-x-52:hover { - --tw-translate-x: 13rem; +.ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } -.hover\:translate-x-56:hover { - --tw-translate-x: 14rem; +.ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } -.hover\:translate-x-60:hover { - --tw-translate-x: 15rem; +.ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } -.hover\:translate-x-64:hover { - --tw-translate-x: 16rem; +.ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } -.hover\:translate-x-72:hover { - --tw-translate-x: 18rem; +.ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } -.hover\:translate-x-80:hover { - --tw-translate-x: 20rem; +.ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } -.hover\:translate-x-96:hover { - --tw-translate-x: 24rem; +.ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } -.hover\:translate-x-px:hover { - --tw-translate-x: 1px; +.ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } -.hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; +.ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } -.hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; +.ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } -.hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; +.ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } -.hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; +.ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } -.hover\:-translate-x-0:hover { - --tw-translate-x: 0px; +.ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } -.hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; +.ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } -.hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; +.ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } -.hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; +.ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } -.hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; +.ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } -.hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; +.ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } -.hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; +.ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } -.hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; +.ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } -.hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; +.ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } -.hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; +.ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } -.hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; +.ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } -.hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; +.ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } -.hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; +.ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } -.hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; +.ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } -.hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; +.ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } -.hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; +.ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } -.hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; +.ring-offset-green-600 { + --tw-ring-offset-color: #059669; } -.hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; +.ring-offset-green-700 { + --tw-ring-offset-color: #047857; } -.hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; +.ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } -.hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; +.ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } -.hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; +.ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } -.hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; +.ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } -.hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; +.ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } -.hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; +.ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } -.hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; +.ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } -.hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; +.ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } -.hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; +.ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } -.hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; +.ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } -.hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; +.ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } -.hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; +.ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } -.hover\:-translate-x-px:hover { - --tw-translate-x: -1px; +.ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } -.hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; +.ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } -.hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; +.ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } -.hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; -} - -.hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; -} - -.hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; +.ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } -.hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; +.ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } -.hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; +.ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } -.hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; +.ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } -.hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; +.ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } -.hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; +.ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } -.hover\:translate-x-full:hover { - --tw-translate-x: 100%; +.ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } -.hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; +.ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } -.hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; +.ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } -.hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; +.ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } -.hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; +.ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } -.hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; +.ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } -.hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; +.ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } -.hover\:-translate-x-full:hover { - --tw-translate-x: -100%; +.ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } -.hover\:translate-y-0:hover { - --tw-translate-y: 0px; +.ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } -.hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; +.ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } -.hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; +.ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } -.hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; +.ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } -.hover\:translate-y-4:hover { - --tw-translate-y: 1rem; +.ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } -.hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; +.ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } -.hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; +.ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } -.hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; +.ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } -.hover\:translate-y-8:hover { - --tw-translate-y: 2rem; +.ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } -.hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; +.ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } -.hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; +.ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } -.hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; +.ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } -.hover\:translate-y-12:hover { - --tw-translate-y: 3rem; +.ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } -.hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; +.focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } -.hover\:translate-y-16:hover { - --tw-translate-y: 4rem; +.focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } -.hover\:translate-y-20:hover { - --tw-translate-y: 5rem; +.focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } -.hover\:translate-y-24:hover { - --tw-translate-y: 6rem; +.focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } -.hover\:translate-y-28:hover { - --tw-translate-y: 7rem; +.focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } -.hover\:translate-y-32:hover { - --tw-translate-y: 8rem; +.focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } -.hover\:translate-y-36:hover { - --tw-translate-y: 9rem; +.focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } -.hover\:translate-y-40:hover { - --tw-translate-y: 10rem; +.focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } -.hover\:translate-y-44:hover { - --tw-translate-y: 11rem; +.focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } -.hover\:translate-y-48:hover { - --tw-translate-y: 12rem; +.focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } -.hover\:translate-y-52:hover { - --tw-translate-y: 13rem; +.focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } -.hover\:translate-y-56:hover { - --tw-translate-y: 14rem; +.focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } -.hover\:translate-y-60:hover { - --tw-translate-y: 15rem; +.focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } -.hover\:translate-y-64:hover { - --tw-translate-y: 16rem; +.focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } -.hover\:translate-y-72:hover { - --tw-translate-y: 18rem; +.focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } -.hover\:translate-y-80:hover { - --tw-translate-y: 20rem; +.focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } -.hover\:translate-y-96:hover { - --tw-translate-y: 24rem; +.focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } -.hover\:translate-y-px:hover { - --tw-translate-y: 1px; +.focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } -.hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; +.focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } -.hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; +.focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } -.hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; +.focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } -.hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; +.focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } -.hover\:-translate-y-0:hover { - --tw-translate-y: 0px; +.focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } -.hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; +.focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } -.hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; +.focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } -.hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; +.focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } -.hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; +.focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } -.hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; +.focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } -.hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; +.focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } -.hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; +.focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } -.hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; +.focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } -.hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; +.focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } -.hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; +.focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } -.hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; +.focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } -.hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; +.focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } -.hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; +.focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } -.hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; +.focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } -.hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; +.focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } -.hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; +.focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } -.hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; +.focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } -.hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; +.focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } -.hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; +.focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } -.hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; +.focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } -.hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; +.focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } -.hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; +.focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } -.hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; +.focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } -.hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; +.focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } -.hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; +.focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } -.hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; +.focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } -.hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; +.focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } -.hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; +.focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } -.hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; +.focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } -.hover\:-translate-y-px:hover { - --tw-translate-y: -1px; +.focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } -.hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; +.focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } -.hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; +.focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } -.hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; +.focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } -.hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; +.focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } -.hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; +.focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } -.hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; +.focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } -.hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; +.focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } -.hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; +.focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } -.hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; +.focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } -.hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; +.focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } -.hover\:translate-y-full:hover { - --tw-translate-y: 100%; +.focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } -.hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; +.focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } -.hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; +.focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } -.hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; +.focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } -.hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; +.focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } -.hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; +.focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } -.hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; +.focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } -.hover\:-translate-y-full:hover { - --tw-translate-y: -100%; +.focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } -.focus\:translate-x-0:focus { - --tw-translate-x: 0px; +.focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } -.focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; +.focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } -.focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; +.focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } -.focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; +.focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } -.focus\:translate-x-4:focus { - --tw-translate-x: 1rem; +.focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } -.focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; +.focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } -.focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; +.focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } -.focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; +.focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } -.focus\:translate-x-8:focus { - --tw-translate-x: 2rem; +.focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } -.focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; +.focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } -.focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; +.focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } -.focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; +.focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } -.focus\:translate-x-12:focus { - --tw-translate-x: 3rem; +.focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } -.focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; +.focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } -.focus\:translate-x-16:focus { - --tw-translate-x: 4rem; +.focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } -.focus\:translate-x-20:focus { - --tw-translate-x: 5rem; +.focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } -.focus\:translate-x-24:focus { - --tw-translate-x: 6rem; +.focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } -.focus\:translate-x-28:focus { - --tw-translate-x: 7rem; +.focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } -.focus\:translate-x-32:focus { - --tw-translate-x: 8rem; +.focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } -.focus\:translate-x-36:focus { - --tw-translate-x: 9rem; +.focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } -.focus\:translate-x-40:focus { - --tw-translate-x: 10rem; +.focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } -.focus\:translate-x-44:focus { - --tw-translate-x: 11rem; +.focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } -.focus\:translate-x-48:focus { - --tw-translate-x: 12rem; +.focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } -.focus\:translate-x-52:focus { - --tw-translate-x: 13rem; +.focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } -.focus\:translate-x-56:focus { - --tw-translate-x: 14rem; +.focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } -.focus\:translate-x-60:focus { - --tw-translate-x: 15rem; +.focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } -.focus\:translate-x-64:focus { - --tw-translate-x: 16rem; +.focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } -.focus\:translate-x-72:focus { - --tw-translate-x: 18rem; +.focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } -.focus\:translate-x-80:focus { - --tw-translate-x: 20rem; +.focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } -.focus\:translate-x-96:focus { - --tw-translate-x: 24rem; +.focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } -.focus\:translate-x-px:focus { - --tw-translate-x: 1px; +.focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } -.focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; +.focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } -.focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; +.focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } -.focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; +.focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } -.focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; +.focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } -.focus\:-translate-x-0:focus { - --tw-translate-x: 0px; +.focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } -.focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; +.focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } -.focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; +.focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } -.focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; +.focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } -.focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; +.focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } -.focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; +.focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } -.focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; +.focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } -.focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; +.focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } -.focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; +.focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } -.focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; +.focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } -.focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; +.focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } -.focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; +.focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } -.focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; +.focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } -.focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; +.focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } -.focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; +.focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } -.focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; +.focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } -.focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; +.focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } -.focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; +.focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } -.focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; +.focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } -.focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; +.focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } -.focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; +.focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } -.focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; +.focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } -.focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; +.focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } -.focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; +.focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } -.focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; +.focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } -.focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; +.focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } -.focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; +.focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } -.focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; +.focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } -.focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; +.focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } -.focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; +.focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } -.focus\:-translate-x-px:focus { - --tw-translate-x: -1px; +.focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } -.focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; +.focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } -.focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; +.focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } -.focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; +.focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } -.focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; +.focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } -.focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; +.focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } -.focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; +.focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } -.focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; +.focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } -.focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; +.focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } -.focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; +.focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } -.focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; +.focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } -.focus\:translate-x-full:focus { - --tw-translate-x: 100%; +.focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } -.focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; +.focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } -.focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; +.focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } -.focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; +.focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } -.focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; +.focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } -.focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; +.focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } -.focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; +.focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } -.focus\:-translate-x-full:focus { - --tw-translate-x: -100%; +.focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } -.focus\:translate-y-0:focus { - --tw-translate-y: 0px; +.focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } -.focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; +.focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } -.focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; +.focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } -.focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; +.focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } -.focus\:translate-y-4:focus { - --tw-translate-y: 1rem; +.focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } -.focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; +.focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } -.focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; +.focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } -.focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; +.focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } -.focus\:translate-y-8:focus { - --tw-translate-y: 2rem; +.focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } -.focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; +.focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } -.focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; +.focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } -.focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; +.focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } -.focus\:translate-y-12:focus { - --tw-translate-y: 3rem; +.focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } -.focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; +.filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } -.focus\:translate-y-16:focus { - --tw-translate-y: 4rem; +.filter-none { + filter: none; } -.focus\:translate-y-20:focus { - --tw-translate-y: 5rem; +.blur-0 { + --tw-blur: blur(0); } -.focus\:translate-y-24:focus { - --tw-translate-y: 6rem; +.blur-sm { + --tw-blur: blur(4px); } -.focus\:translate-y-28:focus { - --tw-translate-y: 7rem; +.blur { + --tw-blur: blur(8px); } -.focus\:translate-y-32:focus { - --tw-translate-y: 8rem; +.blur-md { + --tw-blur: blur(12px); } -.focus\:translate-y-36:focus { - --tw-translate-y: 9rem; +.blur-lg { + --tw-blur: blur(16px); } -.focus\:translate-y-40:focus { - --tw-translate-y: 10rem; +.blur-xl { + --tw-blur: blur(24px); } -.focus\:translate-y-44:focus { - --tw-translate-y: 11rem; +.blur-2xl { + --tw-blur: blur(40px); } -.focus\:translate-y-48:focus { - --tw-translate-y: 12rem; +.blur-3xl { + --tw-blur: blur(64px); } -.focus\:translate-y-52:focus { - --tw-translate-y: 13rem; +.brightness-0 { + --tw-brightness: brightness(0); } -.focus\:translate-y-56:focus { - --tw-translate-y: 14rem; +.brightness-50 { + --tw-brightness: brightness(.5); } -.focus\:translate-y-60:focus { - --tw-translate-y: 15rem; +.brightness-75 { + --tw-brightness: brightness(.75); } -.focus\:translate-y-64:focus { - --tw-translate-y: 16rem; +.brightness-90 { + --tw-brightness: brightness(.9); } -.focus\:translate-y-72:focus { - --tw-translate-y: 18rem; +.brightness-95 { + --tw-brightness: brightness(.95); } -.focus\:translate-y-80:focus { - --tw-translate-y: 20rem; +.brightness-100 { + --tw-brightness: brightness(1); } -.focus\:translate-y-96:focus { - --tw-translate-y: 24rem; +.brightness-105 { + --tw-brightness: brightness(1.05); } -.focus\:translate-y-px:focus { - --tw-translate-y: 1px; +.brightness-110 { + --tw-brightness: brightness(1.1); } -.focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; +.brightness-125 { + --tw-brightness: brightness(1.25); } -.focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; +.brightness-150 { + --tw-brightness: brightness(1.5); } -.focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; +.brightness-200 { + --tw-brightness: brightness(2); } -.focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; +.contrast-0 { + --tw-contrast: contrast(0); } -.focus\:-translate-y-0:focus { - --tw-translate-y: 0px; +.contrast-50 { + --tw-contrast: contrast(.5); } -.focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; +.contrast-75 { + --tw-contrast: contrast(.75); } -.focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; +.contrast-100 { + --tw-contrast: contrast(1); } -.focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; +.contrast-125 { + --tw-contrast: contrast(1.25); } -.focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; +.contrast-150 { + --tw-contrast: contrast(1.5); } -.focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; +.contrast-200 { + --tw-contrast: contrast(2); } -.focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; +.drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } -.focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; +.drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } -.focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; +.drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } -.focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; +.drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } -.focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; +.drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } -.focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; +.drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } -.focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; +.drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } -.focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; +.grayscale-0 { + --tw-grayscale: grayscale(0); } -.focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; +.grayscale { + --tw-grayscale: grayscale(100%); } -.focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; +.hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } -.focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; +.hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } -.focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; +.hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } -.focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; +.hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } -.focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; +.hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } -.focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; +.hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } -.focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; +.-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } -.focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; +.-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } -.focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; +.-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } -.focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; +.-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } -.focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; +.-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } -.focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; +.invert-0 { + --tw-invert: invert(0); } -.focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; +.invert { + --tw-invert: invert(100%); } -.focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; +.saturate-0 { + --tw-saturate: saturate(0); } -.focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; +.saturate-50 { + --tw-saturate: saturate(.5); } -.focus\:-translate-y-px:focus { - --tw-translate-y: -1px; +.saturate-100 { + --tw-saturate: saturate(1); } -.focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; +.saturate-150 { + --tw-saturate: saturate(1.5); } -.focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; +.saturate-200 { + --tw-saturate: saturate(2); } -.focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; +.sepia-0 { + --tw-sepia: sepia(0); } -.focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; -} - -.focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; -} - -.focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; -} - -.focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; -} - -.focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; -} - -.focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; -} - -.focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; -} - -.focus\:translate-y-full:focus { - --tw-translate-y: 100%; -} - -.focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; -} - -.focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; -} - -.focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; -} - -.focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; -} - -.focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; -} - -.focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; -} - -.focus\:-translate-y-full:focus { - --tw-translate-y: -100%; -} - -.skew-x-0 { - --tw-skew-x: 0deg; -} - -.skew-x-1 { - --tw-skew-x: 1deg; -} - -.skew-x-2 { - --tw-skew-x: 2deg; -} - -.skew-x-3 { - --tw-skew-x: 3deg; -} - -.skew-x-6 { - --tw-skew-x: 6deg; -} - -.skew-x-12 { - --tw-skew-x: 12deg; -} - -.-skew-x-12 { - --tw-skew-x: -12deg; -} - -.-skew-x-6 { - --tw-skew-x: -6deg; -} - -.-skew-x-3 { - --tw-skew-x: -3deg; -} - -.-skew-x-2 { - --tw-skew-x: -2deg; -} - -.-skew-x-1 { - --tw-skew-x: -1deg; -} - -.skew-y-0 { - --tw-skew-y: 0deg; -} - -.skew-y-1 { - --tw-skew-y: 1deg; -} - -.skew-y-2 { - --tw-skew-y: 2deg; -} - -.skew-y-3 { - --tw-skew-y: 3deg; -} - -.skew-y-6 { - --tw-skew-y: 6deg; -} - -.skew-y-12 { - --tw-skew-y: 12deg; -} - -.-skew-y-12 { - --tw-skew-y: -12deg; -} - -.-skew-y-6 { - --tw-skew-y: -6deg; -} - -.-skew-y-3 { - --tw-skew-y: -3deg; -} - -.-skew-y-2 { - --tw-skew-y: -2deg; -} - -.-skew-y-1 { - --tw-skew-y: -1deg; -} - -.hover\:skew-x-0:hover { - --tw-skew-x: 0deg; -} - -.hover\:skew-x-1:hover { - --tw-skew-x: 1deg; -} - -.hover\:skew-x-2:hover { - --tw-skew-x: 2deg; -} - -.hover\:skew-x-3:hover { - --tw-skew-x: 3deg; -} - -.hover\:skew-x-6:hover { - --tw-skew-x: 6deg; -} - -.hover\:skew-x-12:hover { - --tw-skew-x: 12deg; -} - -.hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; -} - -.hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; -} - -.hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; -} - -.hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; -} - -.hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; -} - -.hover\:skew-y-0:hover { - --tw-skew-y: 0deg; -} - -.hover\:skew-y-1:hover { - --tw-skew-y: 1deg; -} - -.hover\:skew-y-2:hover { - --tw-skew-y: 2deg; -} - -.hover\:skew-y-3:hover { - --tw-skew-y: 3deg; -} - -.hover\:skew-y-6:hover { - --tw-skew-y: 6deg; -} - -.hover\:skew-y-12:hover { - --tw-skew-y: 12deg; -} - -.hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; -} - -.hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; -} - -.hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; -} - -.hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; -} - -.hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; -} - -.focus\:skew-x-0:focus { - --tw-skew-x: 0deg; -} - -.focus\:skew-x-1:focus { - --tw-skew-x: 1deg; -} - -.focus\:skew-x-2:focus { - --tw-skew-x: 2deg; -} - -.focus\:skew-x-3:focus { - --tw-skew-x: 3deg; -} - -.focus\:skew-x-6:focus { - --tw-skew-x: 6deg; -} - -.focus\:skew-x-12:focus { - --tw-skew-x: 12deg; -} - -.focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; -} - -.focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; -} - -.focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; -} - -.focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; -} - -.focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; -} - -.focus\:skew-y-0:focus { - --tw-skew-y: 0deg; -} - -.focus\:skew-y-1:focus { - --tw-skew-y: 1deg; -} - -.focus\:skew-y-2:focus { - --tw-skew-y: 2deg; -} - -.focus\:skew-y-3:focus { - --tw-skew-y: 3deg; -} - -.focus\:skew-y-6:focus { - --tw-skew-y: 6deg; -} - -.focus\:skew-y-12:focus { - --tw-skew-y: 12deg; -} - -.focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; -} - -.focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; -} - -.focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; -} - -.focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; -} - -.focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; -} - -.transition-none { - transition-property: none; -} - -.transition-all { - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.transition-colors { - transition-property: background-color, border-color, color, fill, stroke; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.transition-opacity { - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.transition-shadow { - transition-property: box-shadow; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.transition-transform { - transition-property: transform; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.ease-linear { - transition-timing-function: linear; -} - -.ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); -} - -.ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); -} - -.ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -} - -.duration-75 { - transition-duration: 75ms; -} - -.duration-100 { - transition-duration: 100ms; -} - -.duration-150 { - transition-duration: 150ms; -} - -.duration-200 { - transition-duration: 200ms; -} - -.duration-300 { - transition-duration: 300ms; -} - -.duration-500 { - transition-duration: 500ms; -} - -.duration-700 { - transition-duration: 700ms; -} - -.duration-1000 { - transition-duration: 1000ms; -} - -.delay-75 { - transition-delay: 75ms; -} - -.delay-100 { - transition-delay: 100ms; -} - -.delay-150 { - transition-delay: 150ms; -} - -.delay-200 { - transition-delay: 200ms; -} - -.delay-300 { - transition-delay: 300ms; -} - -.delay-500 { - transition-delay: 500ms; -} - -.delay-700 { - transition-delay: 700ms; -} - -.delay-1000 { - transition-delay: 1000ms; -} - -@keyframes spin { - to { - transform: rotate(360deg); - } -} - -@keyframes ping { - 75%, 100% { - transform: scale(2); - opacity: 0; - } -} - -@keyframes pulse { - 50% { - opacity: .5; - } -} - -@keyframes bounce { - 0%, 100% { - transform: translateY(-25%); - animation-timing-function: cubic-bezier(0.8,0,1,1); - } - - 50% { - transform: none; - animation-timing-function: cubic-bezier(0,0,0.2,1); - } -} - -.animate-none { - animation: none; -} - -.animate-spin { - animation: spin 1s linear infinite; -} - -.animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; -} - -.animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; -} - -.animate-bounce { - animation: bounce 1s infinite; -} - -.mix-blend-normal { - mix-blend-mode: normal; -} - -.mix-blend-multiply { - mix-blend-mode: multiply; -} - -.mix-blend-screen { - mix-blend-mode: screen; -} - -.mix-blend-overlay { - mix-blend-mode: overlay; -} - -.mix-blend-darken { - mix-blend-mode: darken; -} - -.mix-blend-lighten { - mix-blend-mode: lighten; -} - -.mix-blend-color-dodge { - mix-blend-mode: color-dodge; -} - -.mix-blend-color-burn { - mix-blend-mode: color-burn; -} - -.mix-blend-hard-light { - mix-blend-mode: hard-light; -} - -.mix-blend-soft-light { - mix-blend-mode: soft-light; -} - -.mix-blend-difference { - mix-blend-mode: difference; -} - -.mix-blend-exclusion { - mix-blend-mode: exclusion; -} - -.mix-blend-hue { - mix-blend-mode: hue; -} - -.mix-blend-saturation { - mix-blend-mode: saturation; -} - -.mix-blend-color { - mix-blend-mode: color; -} - -.mix-blend-luminosity { - mix-blend-mode: luminosity; -} - -.bg-blend-normal { - background-blend-mode: normal; -} - -.bg-blend-multiply { - background-blend-mode: multiply; -} - -.bg-blend-screen { - background-blend-mode: screen; -} - -.bg-blend-overlay { - background-blend-mode: overlay; -} - -.bg-blend-darken { - background-blend-mode: darken; -} - -.bg-blend-lighten { - background-blend-mode: lighten; -} - -.bg-blend-color-dodge { - background-blend-mode: color-dodge; -} - -.bg-blend-color-burn { - background-blend-mode: color-burn; -} - -.bg-blend-hard-light { - background-blend-mode: hard-light; -} - -.bg-blend-soft-light { - background-blend-mode: soft-light; -} - -.bg-blend-difference { - background-blend-mode: difference; -} - -.bg-blend-exclusion { - background-blend-mode: exclusion; -} - -.bg-blend-hue { - background-blend-mode: hue; -} - -.bg-blend-saturation { - background-blend-mode: saturation; -} - -.bg-blend-color { - background-blend-mode: color; -} - -.bg-blend-luminosity { - background-blend-mode: luminosity; -} - -.filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); -} - -.filter-none { - filter: none; -} - -.blur-0 { - --tw-blur: blur(0); -} - -.blur-sm { - --tw-blur: blur(4px); -} - -.blur { - --tw-blur: blur(8px); -} - -.blur-md { - --tw-blur: blur(12px); -} - -.blur-lg { - --tw-blur: blur(16px); -} - -.blur-xl { - --tw-blur: blur(24px); -} - -.blur-2xl { - --tw-blur: blur(40px); -} - -.blur-3xl { - --tw-blur: blur(64px); -} - -.brightness-0 { - --tw-brightness: brightness(0); -} - -.brightness-50 { - --tw-brightness: brightness(.5); -} - -.brightness-75 { - --tw-brightness: brightness(.75); -} - -.brightness-90 { - --tw-brightness: brightness(.9); -} - -.brightness-95 { - --tw-brightness: brightness(.95); -} - -.brightness-100 { - --tw-brightness: brightness(1); -} - -.brightness-105 { - --tw-brightness: brightness(1.05); -} - -.brightness-110 { - --tw-brightness: brightness(1.1); -} - -.brightness-125 { - --tw-brightness: brightness(1.25); -} - -.brightness-150 { - --tw-brightness: brightness(1.5); -} - -.brightness-200 { - --tw-brightness: brightness(2); -} - -.contrast-0 { - --tw-contrast: contrast(0); -} - -.contrast-50 { - --tw-contrast: contrast(.5); -} - -.contrast-75 { - --tw-contrast: contrast(.75); -} - -.contrast-100 { - --tw-contrast: contrast(1); -} - -.contrast-125 { - --tw-contrast: contrast(1.25); -} - -.contrast-150 { - --tw-contrast: contrast(1.5); -} - -.contrast-200 { - --tw-contrast: contrast(2); -} - -.drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); -} - -.drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); -} - -.drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); -} - -.drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); -} - -.drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); -} - -.drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); -} - -.drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); -} - -.grayscale-0 { - --tw-grayscale: grayscale(0); -} - -.grayscale { - --tw-grayscale: grayscale(100%); -} - -.hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); -} - -.hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); -} - -.hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); -} - -.hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); -} - -.hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); -} - -.hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); -} - -.-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); -} - -.-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); -} - -.-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); -} - -.-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); -} - -.-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); -} - -.invert-0 { - --tw-invert: invert(0); -} - -.invert { - --tw-invert: invert(100%); -} - -.saturate-0 { - --tw-saturate: saturate(0); -} - -.saturate-50 { - --tw-saturate: saturate(.5); -} - -.saturate-100 { - --tw-saturate: saturate(1); -} - -.saturate-150 { - --tw-saturate: saturate(1.5); -} - -.saturate-200 { - --tw-saturate: saturate(2); -} - -.sepia-0 { - --tw-sepia: sepia(0); -} - -.sepia { - --tw-sepia: sepia(100%); +.sepia { + --tw-sepia: sepia(100%); } .backdrop-filter { @@ -27235,6 +27115,126 @@ video { --tw-backdrop-sepia: sepia(100%); } +.transition-none { + transition-property: none; +} + +.transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.delay-75 { + transition-delay: 75ms; +} + +.delay-100 { + transition-delay: 100ms; +} + +.delay-150 { + transition-delay: 150ms; +} + +.delay-200 { + transition-delay: 200ms; +} + +.delay-300 { + transition-delay: 300ms; +} + +.delay-500 { + transition-delay: 500ms; +} + +.delay-700 { + transition-delay: 700ms; +} + +.delay-1000 { + transition-delay: 1000ms; +} + +.duration-75 { + transition-duration: 75ms; +} + +.duration-100 { + transition-duration: 100ms; +} + +.duration-150 { + transition-duration: 150ms; +} + +.duration-200 { + transition-duration: 200ms; +} + +.duration-300 { + transition-duration: 300ms; +} + +.duration-500 { + transition-duration: 500ms; +} + +.duration-700 { + transition-duration: 700ms; +} + +.duration-1000 { + transition-duration: 1000ms; +} + +.ease-linear { + transition-timing-function: linear; +} + +.ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +} + +.ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +} + +.ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} + .example { font-weight: 700; color: #ef4444; @@ -27275,8753 +27275,9540 @@ video { } } - .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\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\: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\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .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\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\: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\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .sm\: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\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\: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\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .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\:pointer-events-none { + pointer-events: none; } - .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\:pointer-events-auto { + pointer-events: auto; } - .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\:visible { + visibility: visible; } - .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\:invisible { + visibility: hidden; } - .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\:static { + position: static; } - .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\:fixed { + position: fixed; } - .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\:absolute { + position: absolute; } - .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\:relative { + position: relative; } - .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\:sticky { + position: sticky; } - .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\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .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\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .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\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .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\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .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\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .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\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .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\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .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\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .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\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .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\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .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\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .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\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .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\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; + } + + .sm\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .sm\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; + } + + .sm\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; + } + + .sm\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; + } + + .sm\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; + } + + .sm\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; + } + + .sm\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; + } + + .sm\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; + } + + .sm\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; + } + + .sm\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; + } + + .sm\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; + } + + .sm\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; + } + + .sm\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; + } + + .sm\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; + } + + .sm\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; + } + + .sm\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; + } + + .sm\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; + } + + .sm\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .sm\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; + } + + .sm\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .sm\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .sm\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .sm\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .sm\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .sm\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .sm\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .sm\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; + } + + .sm\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; + } + + .sm\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; + } + + .sm\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; + } + + .sm\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; + } + + .sm\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; + } + + .sm\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; + } + + .sm\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; + } + + .sm\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; + } + + .sm\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; + } + + .sm\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .sm\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; + } + + .sm\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; + } + + .sm\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; + } + + .sm\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; + } + + .sm\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; + } + + .sm\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; + } + + .sm\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; + } + + .sm\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; + } + + .sm\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; + } + + .sm\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; + } + + .sm\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; + } + + .sm\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; + } + + .sm\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; + } + + .sm\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; + } + + .sm\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; + } + + .sm\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; + } + + .sm\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .sm\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .sm\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .sm\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .sm\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .sm\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .sm\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .sm\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .sm\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .sm\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .sm\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .sm\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .sm\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .sm\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .sm\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .sm\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .sm\:inset-x-0 { + right: 0px; + left: 0px; + } + + .sm\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .sm\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .sm\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .sm\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .sm\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .sm\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; + } + + .sm\:inset-y-4 { + top: 1rem; + bottom: 1rem; + } + + .sm\:inset-x-4 { + right: 1rem; + left: 1rem; + } + + .sm\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; + } + + .sm\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; + } + + .sm\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; + } + + .sm\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; + } + + .sm\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; + } + + .sm\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; + } + + .sm\:inset-y-8 { + top: 2rem; + bottom: 2rem; + } + + .sm\:inset-x-8 { + right: 2rem; + left: 2rem; + } + + .sm\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; + } + + .sm\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; + } + + .sm\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; + } + + .sm\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; + } + + .sm\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; + } + + .sm\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; + } + + .sm\:inset-y-12 { + top: 3rem; + bottom: 3rem; + } + + .sm\:inset-x-12 { + right: 3rem; + left: 3rem; + } + + .sm\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .sm\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .sm\:inset-y-16 { + top: 4rem; + bottom: 4rem; + } + + .sm\:inset-x-16 { + right: 4rem; + left: 4rem; + } + + .sm\:inset-y-20 { + top: 5rem; + bottom: 5rem; + } + + .sm\:inset-x-20 { + right: 5rem; + left: 5rem; + } + + .sm\:inset-y-24 { + top: 6rem; + bottom: 6rem; + } + + .sm\:inset-x-24 { + right: 6rem; + left: 6rem; + } + + .sm\:inset-y-28 { + top: 7rem; + bottom: 7rem; + } + + .sm\:inset-x-28 { + right: 7rem; + left: 7rem; + } + + .sm\:inset-y-32 { + top: 8rem; + bottom: 8rem; + } + + .sm\:inset-x-32 { + right: 8rem; + left: 8rem; + } + + .sm\:inset-y-36 { + top: 9rem; + bottom: 9rem; + } + + .sm\:inset-x-36 { + right: 9rem; + left: 9rem; + } + + .sm\:inset-y-40 { + top: 10rem; + bottom: 10rem; + } + + .sm\:inset-x-40 { + right: 10rem; + left: 10rem; + } + + .sm\:inset-y-44 { + top: 11rem; + bottom: 11rem; + } + + .sm\:inset-x-44 { + right: 11rem; + left: 11rem; + } + + .sm\:inset-y-48 { + top: 12rem; + bottom: 12rem; + } + + .sm\:inset-x-48 { + right: 12rem; + left: 12rem; + } + + .sm\:inset-y-52 { + top: 13rem; + bottom: 13rem; + } + + .sm\:inset-x-52 { + right: 13rem; + left: 13rem; + } + + .sm\:inset-y-56 { + top: 14rem; + bottom: 14rem; + } + + .sm\:inset-x-56 { + right: 14rem; + left: 14rem; + } + + .sm\:inset-y-60 { + top: 15rem; + bottom: 15rem; + } + + .sm\:inset-x-60 { + right: 15rem; + left: 15rem; + } + + .sm\:inset-y-64 { + top: 16rem; + bottom: 16rem; + } + + .sm\:inset-x-64 { + right: 16rem; + left: 16rem; + } + + .sm\:inset-y-72 { + top: 18rem; + bottom: 18rem; + } + + .sm\:inset-x-72 { + right: 18rem; + left: 18rem; + } + + .sm\:inset-y-80 { + top: 20rem; + bottom: 20rem; + } + + .sm\:inset-x-80 { + right: 20rem; + left: 20rem; + } + + .sm\:inset-y-96 { + top: 24rem; + bottom: 24rem; + } + + .sm\:inset-x-96 { + right: 24rem; + left: 24rem; + } + + .sm\:inset-y-auto { + top: auto; + bottom: auto; + } + + .sm\:inset-x-auto { + right: auto; + left: auto; + } + + .sm\:inset-y-px { + top: 1px; + bottom: 1px; + } + + .sm\:inset-x-px { + right: 1px; + left: 1px; + } + + .sm\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; + } + + .sm\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; + } + + .sm\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; + } + + .sm\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; + } + + .sm\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; + } + + .sm\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; + } + + .sm\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; + } + + .sm\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; + } + + .sm\:-inset-y-0 { + top: 0px; + bottom: 0px; + } + + .sm\:-inset-x-0 { + right: 0px; + left: 0px; + } + + .sm\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; + } + + .sm\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; + } + + .sm\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; + } + + .sm\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; + } + + .sm\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; + } + + .sm\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; + } + + .sm\:-inset-y-4 { + top: -1rem; + bottom: -1rem; + } + + .sm\:-inset-x-4 { + right: -1rem; + left: -1rem; + } + + .sm\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; + } + + .sm\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; + } + + .sm\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; + } + + .sm\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; + } + + .sm\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; + } + + .sm\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; + } + + .sm\:-inset-y-8 { + top: -2rem; + bottom: -2rem; + } + + .sm\:-inset-x-8 { + right: -2rem; + left: -2rem; + } + + .sm\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; + } + + .sm\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; + } + + .sm\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; + } + + .sm\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; + } + + .sm\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; + } + + .sm\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; + } + + .sm\:-inset-y-12 { + top: -3rem; + bottom: -3rem; + } + + .sm\:-inset-x-12 { + right: -3rem; + left: -3rem; + } + + .sm\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; + } + + .sm\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; + } + + .sm\:-inset-y-16 { + top: -4rem; + bottom: -4rem; + } + + .sm\:-inset-x-16 { + right: -4rem; + left: -4rem; + } + + .sm\:-inset-y-20 { + top: -5rem; + bottom: -5rem; + } + + .sm\:-inset-x-20 { + right: -5rem; + left: -5rem; + } + + .sm\:-inset-y-24 { + top: -6rem; + bottom: -6rem; + } + + .sm\:-inset-x-24 { + right: -6rem; + left: -6rem; + } + + .sm\:-inset-y-28 { + top: -7rem; + bottom: -7rem; + } + + .sm\:-inset-x-28 { + right: -7rem; + left: -7rem; + } + + .sm\:-inset-y-32 { + top: -8rem; + bottom: -8rem; + } + + .sm\:-inset-x-32 { + right: -8rem; + left: -8rem; + } + + .sm\:-inset-y-36 { + top: -9rem; + bottom: -9rem; + } + + .sm\:-inset-x-36 { + right: -9rem; + left: -9rem; + } + + .sm\:-inset-y-40 { + top: -10rem; + bottom: -10rem; + } + + .sm\:-inset-x-40 { + right: -10rem; + left: -10rem; + } + + .sm\:-inset-y-44 { + top: -11rem; + bottom: -11rem; + } + + .sm\:-inset-x-44 { + right: -11rem; + left: -11rem; + } + + .sm\:-inset-y-48 { + top: -12rem; + bottom: -12rem; + } + + .sm\:-inset-x-48 { + right: -12rem; + left: -12rem; + } + + .sm\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .sm\: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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .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\:right-6 { + right: 1.5rem; } - .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\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .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\:right-9 { + right: 2.25rem; } - .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\:bottom-9 { + bottom: 2.25rem; } - .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\:left-9 { + left: 2.25rem; } - .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\:top-10 { + top: 2.5rem; } - .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\:right-10 { + right: 2.5rem; } - .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\:bottom-10 { + bottom: 2.5rem; } - .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\:left-10 { + left: 2.5rem; } - .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\:top-11 { + top: 2.75rem; } - .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\:right-11 { + right: 2.75rem; } - .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\:bottom-11 { + bottom: 2.75rem; } - .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\:left-11 { + left: 2.75rem; } - .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\:top-12 { + top: 3rem; } - .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\:right-12 { + right: 3rem; } - .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\:bottom-12 { + bottom: 3rem; } - .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\:left-12 { + left: 3rem; } - .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\:top-14 { + top: 3.5rem; } - .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\:right-14 { + right: 3.5rem; } - .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\:bottom-14 { + bottom: 3.5rem; } - .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\:left-14 { + left: 3.5rem; } - .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\:top-16 { + top: 4rem; } - .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\:right-16 { + right: 4rem; } - .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\:bottom-16 { + bottom: 4rem; } - .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\:left-16 { + left: 4rem; } - .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .sm\:top-20 { + top: 5rem; } - .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .sm\:right-20 { + right: 5rem; } - .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\:bottom-20 { + bottom: 5rem; } - .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\:left-20 { + left: 5rem; } - .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\:top-24 { + top: 6rem; } - .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\:right-24 { + right: 6rem; } - .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\:bottom-24 { + bottom: 6rem; } - .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\:left-24 { + left: 6rem; } - .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\:top-28 { + top: 7rem; } - .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\:right-28 { + right: 7rem; } - .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\:bottom-28 { + bottom: 7rem; } - .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\:left-28 { + left: 7rem; } - .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .sm\:top-32 { + top: 8rem; } - .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .sm\:right-32 { + right: 8rem; } - .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .sm\:bottom-32 { + bottom: 8rem; } - .sm\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .sm\:left-32 { + left: 8rem; } - .sm\:divide-black > :not([hidden]) ~ :not([hidden]) { - border-color: #000; + .sm\:top-36 { + top: 9rem; } - .sm\:divide-white > :not([hidden]) ~ :not([hidden]) { - border-color: #fff; + .sm\:right-36 { + right: 9rem; } - .sm\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9fafb; + .sm\:bottom-36 { + bottom: 9rem; } - .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #f3f4f6; + .sm\:left-36 { + left: 9rem; } - .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #e5e7eb; + .sm\:top-40 { + top: 10rem; } - .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1d5db; + .sm\:right-40 { + right: 10rem; } - .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #9ca3af; + .sm\:bottom-40 { + bottom: 10rem; } - .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6b7280; + .sm\:left-40 { + left: 10rem; } - .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4b5563; + .sm\:top-44 { + top: 11rem; } - .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #374151; + .sm\:right-44 { + right: 11rem; } - .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1f2937; + .sm\:bottom-44 { + bottom: 11rem; } - .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #111827; + .sm\:left-44 { + left: 11rem; } - .sm\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef2f2; + .sm\:top-48 { + top: 12rem; } - .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fee2e2; + .sm\:right-48 { + right: 12rem; } - .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fecaca; + .sm\:bottom-48 { + bottom: 12rem; } - .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fca5a5; + .sm\:left-48 { + left: 12rem; } - .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f87171; + .sm\:top-52 { + top: 13rem; } - .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ef4444; + .sm\:right-52 { + right: 13rem; } - .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #dc2626; + .sm\:bottom-52 { + bottom: 13rem; } - .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b91c1c; + .sm\:left-52 { + left: 13rem; } - .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #991b1b; + .sm\:top-56 { + top: 14rem; } - .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #7f1d1d; + .sm\:right-56 { + right: 14rem; } - .sm\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fffbeb; + .sm\:bottom-56 { + bottom: 14rem; } - .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef3c7; + .sm\:left-56 { + left: 14rem; } - .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fde68a; + .sm\:top-60 { + top: 15rem; } - .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fcd34d; + .sm\:right-60 { + right: 15rem; } - .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbbf24; + .sm\:bottom-60 { + bottom: 15rem; } - .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #f59e0b; + .sm\:left-60 { + left: 15rem; } - .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #d97706; + .sm\:top-64 { + top: 16rem; } - .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b45309; + .sm\:right-64 { + right: 16rem; } - .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #92400e; + .sm\:bottom-64 { + bottom: 16rem; } - .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #78350f; + .sm\:left-64 { + left: 16rem; } - .sm\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #ecfdf5; + .sm\:top-72 { + top: 18rem; } - .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1fae5; + .sm\:right-72 { + right: 18rem; } - .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #a7f3d0; + .sm\:bottom-72 { + bottom: 18rem; } - .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #6ee7b7; + .sm\:left-72 { + left: 18rem; } - .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #34d399; + .sm\:top-80 { + top: 20rem; } - .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #10b981; + .sm\:right-80 { + right: 20rem; } - .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #059669; + .sm\:bottom-80 { + bottom: 20rem; } - .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #047857; + .sm\:left-80 { + left: 20rem; } - .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #065f46; + .sm\:top-96 { + top: 24rem; } - .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #064e3b; + .sm\:right-96 { + right: 24rem; } - .sm\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eff6ff; + .sm\:bottom-96 { + bottom: 24rem; } - .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #dbeafe; + .sm\:left-96 { + left: 24rem; } - .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #bfdbfe; + .sm\:top-auto { + top: auto; } - .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #93c5fd; + .sm\:right-auto { + right: auto; } - .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #60a5fa; + .sm\:bottom-auto { + bottom: auto; } - .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #3b82f6; + .sm\:left-auto { + left: auto; } - .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #2563eb; + .sm\:top-px { + top: 1px; } - .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #1d4ed8; + .sm\:right-px { + right: 1px; } - .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e40af; + .sm\:bottom-px { + bottom: 1px; } - .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e3a8a; + .sm\:left-px { + left: 1px; } - .sm\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eef2ff; + .sm\:top-0\.5 { + top: 0.125rem; } - .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #e0e7ff; + .sm\:right-0\.5 { + right: 0.125rem; } - .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #c7d2fe; + .sm\:bottom-0\.5 { + bottom: 0.125rem; + } + + .sm\:left-0\.5 { + left: 0.125rem; } - .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #a5b4fc; + .sm\:top-1\.5 { + top: 0.375rem; } - .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #818cf8; + .sm\:right-1\.5 { + right: 0.375rem; } - .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6366f1; + .sm\:bottom-1\.5 { + bottom: 0.375rem; } - .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4f46e5; + .sm\:left-1\.5 { + left: 0.375rem; } - .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #4338ca; + .sm\:top-2\.5 { + top: 0.625rem; } - .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #3730a3; + .sm\:right-2\.5 { + right: 0.625rem; } - .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #312e81; + .sm\:bottom-2\.5 { + bottom: 0.625rem; } - .sm\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f5f3ff; + .sm\:left-2\.5 { + left: 0.625rem; } - .sm\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #ede9fe; + .sm\:top-3\.5 { + top: 0.875rem; } - .sm\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #ddd6fe; + .sm\:right-3\.5 { + right: 0.875rem; } - .sm\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #c4b5fd; + .sm\:bottom-3\.5 { + bottom: 0.875rem; } - .sm\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #a78bfa; + .sm\:left-3\.5 { + left: 0.875rem; } - .sm\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #8b5cf6; + .sm\:-top-0 { + top: 0px; } - .sm\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #7c3aed; + .sm\:-right-0 { + right: 0px; } - .sm\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #6d28d9; + .sm\:-bottom-0 { + bottom: 0px; } - .sm\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #5b21b6; + .sm\:-left-0 { + left: 0px; } - .sm\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #4c1d95; + .sm\:-top-1 { + top: -0.25rem; } - .sm\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fdf2f8; + .sm\:-right-1 { + right: -0.25rem; } - .sm\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fce7f3; + .sm\:-bottom-1 { + bottom: -0.25rem; } - .sm\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbcfe8; + .sm\:-left-1 { + left: -0.25rem; } - .sm\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9a8d4; + .sm\:-top-2 { + top: -0.5rem; } - .sm\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f472b6; + .sm\:-right-2 { + right: -0.5rem; } - .sm\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ec4899; + .sm\:-bottom-2 { + bottom: -0.5rem; } - .sm\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #db2777; + .sm\:-left-2 { + left: -0.5rem; } - .sm\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #be185d; + .sm\:-top-3 { + top: -0.75rem; } - .sm\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #9d174d; + .sm\:-right-3 { + right: -0.75rem; } - .sm\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #831843; + .sm\:-bottom-3 { + bottom: -0.75rem; } - .sm\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .sm\:-left-3 { + left: -0.75rem; } - .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .sm\:-top-4 { + top: -1rem; } - .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .sm\:-right-4 { + right: -1rem; } - .sm\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .sm\:-bottom-4 { + bottom: -1rem; } - .sm\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .sm\:-left-4 { + left: -1rem; } - .sm\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .sm\:-top-5 { + top: -1.25rem; } - .sm\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .sm\:-right-5 { + right: -1.25rem; } - .sm\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .sm\:-bottom-5 { + bottom: -1.25rem; } - .sm\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .sm\:-left-5 { + left: -1.25rem; } - .sm\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .sm\:-top-6 { + top: -1.5rem; } - .sm\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .sm\:-right-6 { + right: -1.5rem; } - .sm\:appearance-none { - appearance: none; + .sm\:-bottom-6 { + bottom: -1.5rem; } - .sm\:bg-fixed { - background-attachment: fixed; + .sm\:-left-6 { + left: -1.5rem; } - .sm\:bg-local { - background-attachment: local; + .sm\:-top-7 { + top: -1.75rem; } - .sm\:bg-scroll { - background-attachment: scroll; + .sm\:-right-7 { + right: -1.75rem; } - .sm\:bg-clip-border { - background-clip: border-box; + .sm\:-bottom-7 { + bottom: -1.75rem; } - .sm\:bg-clip-padding { - background-clip: padding-box; + .sm\:-left-7 { + left: -1.75rem; } - .sm\:bg-clip-content { - background-clip: content-box; + .sm\:-top-8 { + top: -2rem; } - .sm\:bg-clip-text { - background-clip: text; + .sm\:-right-8 { + right: -2rem; } - .sm\:bg-transparent { - background-color: transparent; + .sm\:-bottom-8 { + bottom: -2rem; } - .sm\:bg-current { - background-color: currentColor; + .sm\:-left-8 { + left: -2rem; } - .sm\:bg-black { - background-color: #000; + .sm\:-top-9 { + top: -2.25rem; } - .sm\:bg-white { - background-color: #fff; + .sm\:-right-9 { + right: -2.25rem; } - .sm\:bg-gray-50 { - background-color: #f9fafb; + .sm\:-bottom-9 { + bottom: -2.25rem; } - .sm\:bg-gray-100 { - background-color: #f3f4f6; + .sm\:-left-9 { + left: -2.25rem; } - .sm\:bg-gray-200 { - background-color: #e5e7eb; + .sm\:-top-10 { + top: -2.5rem; } - .sm\:bg-gray-300 { - background-color: #d1d5db; + .sm\:-right-10 { + right: -2.5rem; } - .sm\:bg-gray-400 { - background-color: #9ca3af; + .sm\:-bottom-10 { + bottom: -2.5rem; } - .sm\:bg-gray-500 { - background-color: #6b7280; + .sm\:-left-10 { + left: -2.5rem; } - .sm\:bg-gray-600 { - background-color: #4b5563; + .sm\:-top-11 { + top: -2.75rem; } - .sm\:bg-gray-700 { - background-color: #374151; + .sm\:-right-11 { + right: -2.75rem; } - .sm\:bg-gray-800 { - background-color: #1f2937; + .sm\:-bottom-11 { + bottom: -2.75rem; } - .sm\:bg-gray-900 { - background-color: #111827; + .sm\:-left-11 { + left: -2.75rem; } - .sm\:bg-red-50 { - background-color: #fef2f2; + .sm\:-top-12 { + top: -3rem; } - .sm\:bg-red-100 { - background-color: #fee2e2; + .sm\:-right-12 { + right: -3rem; } - .sm\:bg-red-200 { - background-color: #fecaca; + .sm\:-bottom-12 { + bottom: -3rem; } - .sm\:bg-red-300 { - background-color: #fca5a5; + .sm\:-left-12 { + left: -3rem; } - .sm\:bg-red-400 { - background-color: #f87171; + .sm\:-top-14 { + top: -3.5rem; } - .sm\:bg-red-500 { - background-color: #ef4444; + .sm\:-right-14 { + right: -3.5rem; } - .sm\:bg-red-600 { - background-color: #dc2626; + .sm\:-bottom-14 { + bottom: -3.5rem; } - .sm\:bg-red-700 { - background-color: #b91c1c; + .sm\:-left-14 { + left: -3.5rem; } - .sm\:bg-red-800 { - background-color: #991b1b; + .sm\:-top-16 { + top: -4rem; } - .sm\:bg-red-900 { - background-color: #7f1d1d; + .sm\:-right-16 { + right: -4rem; } - .sm\:bg-yellow-50 { - background-color: #fffbeb; + .sm\:-bottom-16 { + bottom: -4rem; } - .sm\:bg-yellow-100 { - background-color: #fef3c7; + .sm\:-left-16 { + left: -4rem; } - .sm\:bg-yellow-200 { - background-color: #fde68a; + .sm\:-top-20 { + top: -5rem; } - .sm\:bg-yellow-300 { - background-color: #fcd34d; + .sm\:-right-20 { + right: -5rem; } - .sm\:bg-yellow-400 { - background-color: #fbbf24; + .sm\:-bottom-20 { + bottom: -5rem; } - .sm\:bg-yellow-500 { - background-color: #f59e0b; + .sm\:-left-20 { + left: -5rem; } - .sm\:bg-yellow-600 { - background-color: #d97706; + .sm\:-top-24 { + top: -6rem; } - .sm\:bg-yellow-700 { - background-color: #b45309; + .sm\:-right-24 { + right: -6rem; } - .sm\:bg-yellow-800 { - background-color: #92400e; + .sm\:-bottom-24 { + bottom: -6rem; } - .sm\:bg-yellow-900 { - background-color: #78350f; + .sm\:-left-24 { + left: -6rem; } - .sm\:bg-green-50 { - background-color: #ecfdf5; + .sm\:-top-28 { + top: -7rem; } - .sm\:bg-green-100 { - background-color: #d1fae5; + .sm\:-right-28 { + right: -7rem; } - .sm\:bg-green-200 { - background-color: #a7f3d0; + .sm\:-bottom-28 { + bottom: -7rem; } - .sm\:bg-green-300 { - background-color: #6ee7b7; + .sm\:-left-28 { + left: -7rem; } - .sm\:bg-green-400 { - background-color: #34d399; + .sm\:-top-32 { + top: -8rem; } - .sm\:bg-green-500 { - background-color: #10b981; + .sm\:-right-32 { + right: -8rem; } - .sm\:bg-green-600 { - background-color: #059669; + .sm\:-bottom-32 { + bottom: -8rem; } - .sm\:bg-green-700 { - background-color: #047857; + .sm\:-left-32 { + left: -8rem; } - .sm\:bg-green-800 { - background-color: #065f46; + .sm\:-top-36 { + top: -9rem; } - .sm\:bg-green-900 { - background-color: #064e3b; + .sm\:-right-36 { + right: -9rem; } - .sm\:bg-blue-50 { - background-color: #eff6ff; + .sm\:-bottom-36 { + bottom: -9rem; } - .sm\:bg-blue-100 { - background-color: #dbeafe; + .sm\:-left-36 { + left: -9rem; } - .sm\:bg-blue-200 { - background-color: #bfdbfe; + .sm\:-top-40 { + top: -10rem; } - .sm\:bg-blue-300 { - background-color: #93c5fd; + .sm\:-right-40 { + right: -10rem; } - .sm\:bg-blue-400 { - background-color: #60a5fa; + .sm\:-bottom-40 { + bottom: -10rem; } - .sm\:bg-blue-500 { - background-color: #3b82f6; + .sm\:-left-40 { + left: -10rem; } - .sm\:bg-blue-600 { - background-color: #2563eb; + .sm\:-top-44 { + top: -11rem; } - .sm\:bg-blue-700 { - background-color: #1d4ed8; + .sm\:-right-44 { + right: -11rem; } - .sm\:bg-blue-800 { - background-color: #1e40af; + .sm\:-bottom-44 { + bottom: -11rem; } - .sm\:bg-blue-900 { - background-color: #1e3a8a; + .sm\:-left-44 { + left: -11rem; } - .sm\:bg-indigo-50 { - background-color: #eef2ff; + .sm\:-top-48 { + top: -12rem; } - .sm\:bg-indigo-100 { - background-color: #e0e7ff; + .sm\:-right-48 { + right: -12rem; } - .sm\:bg-indigo-200 { - background-color: #c7d2fe; + .sm\:-bottom-48 { + bottom: -12rem; } - .sm\:bg-indigo-300 { - background-color: #a5b4fc; + .sm\:-left-48 { + left: -12rem; } - .sm\:bg-indigo-400 { - background-color: #818cf8; + .sm\:-top-52 { + top: -13rem; } - .sm\:bg-indigo-500 { - background-color: #6366f1; + .sm\:-right-52 { + right: -13rem; } - .sm\:bg-indigo-600 { - background-color: #4f46e5; + .sm\:-bottom-52 { + bottom: -13rem; } - .sm\:bg-indigo-700 { - background-color: #4338ca; + .sm\:-left-52 { + left: -13rem; } - .sm\:bg-indigo-800 { - background-color: #3730a3; + .sm\:-top-56 { + top: -14rem; } - .sm\:bg-indigo-900 { - background-color: #312e81; + .sm\:-right-56 { + right: -14rem; } - .sm\:bg-purple-50 { - background-color: #f5f3ff; + .sm\:-bottom-56 { + bottom: -14rem; } - .sm\:bg-purple-100 { - background-color: #ede9fe; + .sm\:-left-56 { + left: -14rem; } - .sm\:bg-purple-200 { - background-color: #ddd6fe; + .sm\:-top-60 { + top: -15rem; } - .sm\:bg-purple-300 { - background-color: #c4b5fd; + .sm\:-right-60 { + right: -15rem; } - .sm\:bg-purple-400 { - background-color: #a78bfa; + .sm\:-bottom-60 { + bottom: -15rem; } - .sm\:bg-purple-500 { - background-color: #8b5cf6; + .sm\:-left-60 { + left: -15rem; } - .sm\:bg-purple-600 { - background-color: #7c3aed; + .sm\:-top-64 { + top: -16rem; } - .sm\:bg-purple-700 { - background-color: #6d28d9; + .sm\:-right-64 { + right: -16rem; } - .sm\:bg-purple-800 { - background-color: #5b21b6; + .sm\:-bottom-64 { + bottom: -16rem; } - .sm\:bg-purple-900 { - background-color: #4c1d95; + .sm\:-left-64 { + left: -16rem; } - .sm\:bg-pink-50 { - background-color: #fdf2f8; + .sm\:-top-72 { + top: -18rem; } - .sm\:bg-pink-100 { - background-color: #fce7f3; + .sm\:-right-72 { + right: -18rem; } - .sm\:bg-pink-200 { - background-color: #fbcfe8; + .sm\:-bottom-72 { + bottom: -18rem; } - .sm\:bg-pink-300 { - background-color: #f9a8d4; + .sm\:-left-72 { + left: -18rem; } - .sm\:bg-pink-400 { - background-color: #f472b6; + .sm\:-top-80 { + top: -20rem; } - .sm\:bg-pink-500 { - background-color: #ec4899; + .sm\:-right-80 { + right: -20rem; } - .sm\:bg-pink-600 { - background-color: #db2777; + .sm\:-bottom-80 { + bottom: -20rem; } - .sm\:bg-pink-700 { - background-color: #be185d; + .sm\:-left-80 { + left: -20rem; } - .sm\:bg-pink-800 { - background-color: #9d174d; + .sm\:-top-96 { + top: -24rem; } - .sm\:bg-pink-900 { - background-color: #831843; + .sm\:-right-96 { + right: -24rem; } - .group:hover .sm\:group-hover\:bg-transparent { - background-color: transparent; + .sm\:-bottom-96 { + bottom: -24rem; } - .group:hover .sm\:group-hover\:bg-current { - background-color: currentColor; + .sm\:-left-96 { + left: -24rem; } - .group:hover .sm\:group-hover\:bg-black { - background-color: #000; + .sm\:-top-px { + top: -1px; } - .group:hover .sm\:group-hover\:bg-white { - background-color: #fff; + .sm\:-right-px { + right: -1px; } - .group:hover .sm\:group-hover\:bg-gray-50 { - background-color: #f9fafb; + .sm\:-bottom-px { + bottom: -1px; } - .group:hover .sm\:group-hover\:bg-gray-100 { - background-color: #f3f4f6; + .sm\:-left-px { + left: -1px; } - .group:hover .sm\:group-hover\:bg-gray-200 { - background-color: #e5e7eb; + .sm\:-top-0\.5 { + top: -0.125rem; } - .group:hover .sm\:group-hover\:bg-gray-300 { - background-color: #d1d5db; + .sm\:-right-0\.5 { + right: -0.125rem; } - .group:hover .sm\:group-hover\:bg-gray-400 { - background-color: #9ca3af; + .sm\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .sm\:group-hover\:bg-gray-500 { - background-color: #6b7280; + .sm\:-left-0\.5 { + left: -0.125rem; } - .group:hover .sm\:group-hover\:bg-gray-600 { - background-color: #4b5563; + .sm\:-top-1\.5 { + top: -0.375rem; } - .group:hover .sm\:group-hover\:bg-gray-700 { - background-color: #374151; + .sm\:-right-1\.5 { + right: -0.375rem; } - .group:hover .sm\:group-hover\:bg-gray-800 { - background-color: #1f2937; + .sm\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .sm\:group-hover\:bg-gray-900 { - background-color: #111827; + .sm\:-left-1\.5 { + left: -0.375rem; } - .group:hover .sm\:group-hover\:bg-red-50 { - background-color: #fef2f2; + .sm\:-top-2\.5 { + top: -0.625rem; } - .group:hover .sm\:group-hover\:bg-red-100 { - background-color: #fee2e2; + .sm\:-right-2\.5 { + right: -0.625rem; } - .group:hover .sm\:group-hover\:bg-red-200 { - background-color: #fecaca; + .sm\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .sm\:group-hover\:bg-red-300 { - background-color: #fca5a5; + .sm\:-left-2\.5 { + left: -0.625rem; } - .group:hover .sm\:group-hover\:bg-red-400 { - background-color: #f87171; + .sm\:-top-3\.5 { + top: -0.875rem; } - .group:hover .sm\:group-hover\:bg-red-500 { - background-color: #ef4444; + .sm\:-right-3\.5 { + right: -0.875rem; } - .group:hover .sm\:group-hover\:bg-red-600 { - background-color: #dc2626; + .sm\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .sm\:group-hover\:bg-red-700 { - background-color: #b91c1c; + .sm\:-left-3\.5 { + left: -0.875rem; } - .group:hover .sm\:group-hover\:bg-red-800 { - background-color: #991b1b; + .sm\:top-1\/2 { + top: 50%; } - .group:hover .sm\:group-hover\:bg-red-900 { - background-color: #7f1d1d; + .sm\:right-1\/2 { + right: 50%; } - .group:hover .sm\:group-hover\:bg-yellow-50 { - background-color: #fffbeb; + .sm\:bottom-1\/2 { + bottom: 50%; } - .group:hover .sm\:group-hover\:bg-yellow-100 { - background-color: #fef3c7; + .sm\:left-1\/2 { + left: 50%; } - .group:hover .sm\:group-hover\:bg-yellow-200 { - background-color: #fde68a; + .sm\:top-1\/3 { + top: 33.333333%; } - .group:hover .sm\:group-hover\:bg-yellow-300 { - background-color: #fcd34d; + .sm\:right-1\/3 { + right: 33.333333%; } - .group:hover .sm\:group-hover\:bg-yellow-400 { - background-color: #fbbf24; + .sm\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .sm\:group-hover\:bg-yellow-500 { - background-color: #f59e0b; + .sm\:left-1\/3 { + left: 33.333333%; } - .group:hover .sm\:group-hover\:bg-yellow-600 { - background-color: #d97706; + .sm\:top-2\/3 { + top: 66.666667%; } - .group:hover .sm\:group-hover\:bg-yellow-700 { - background-color: #b45309; + .sm\:right-2\/3 { + right: 66.666667%; } - .group:hover .sm\:group-hover\:bg-yellow-800 { - background-color: #92400e; + .sm\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .sm\:group-hover\:bg-yellow-900 { - background-color: #78350f; + .sm\:left-2\/3 { + left: 66.666667%; } - .group:hover .sm\:group-hover\:bg-green-50 { - background-color: #ecfdf5; + .sm\:top-1\/4 { + top: 25%; } - .group:hover .sm\:group-hover\:bg-green-100 { - background-color: #d1fae5; + .sm\:right-1\/4 { + right: 25%; } - .group:hover .sm\:group-hover\:bg-green-200 { - background-color: #a7f3d0; + .sm\:bottom-1\/4 { + bottom: 25%; } - .group:hover .sm\:group-hover\:bg-green-300 { - background-color: #6ee7b7; + .sm\:left-1\/4 { + left: 25%; } - .group:hover .sm\:group-hover\:bg-green-400 { - background-color: #34d399; + .sm\:top-2\/4 { + top: 50%; } - .group:hover .sm\:group-hover\:bg-green-500 { - background-color: #10b981; + .sm\:right-2\/4 { + right: 50%; } - .group:hover .sm\:group-hover\:bg-green-600 { - background-color: #059669; + .sm\:bottom-2\/4 { + bottom: 50%; } - .group:hover .sm\:group-hover\:bg-green-700 { - background-color: #047857; + .sm\:left-2\/4 { + left: 50%; } - .group:hover .sm\:group-hover\:bg-green-800 { - background-color: #065f46; + .sm\:top-3\/4 { + top: 75%; } - .group:hover .sm\:group-hover\:bg-green-900 { - background-color: #064e3b; + .sm\:right-3\/4 { + right: 75%; } - .group:hover .sm\:group-hover\:bg-blue-50 { - background-color: #eff6ff; + .sm\:bottom-3\/4 { + bottom: 75%; } - .group:hover .sm\:group-hover\:bg-blue-100 { - background-color: #dbeafe; + .sm\:left-3\/4 { + left: 75%; } - .group:hover .sm\:group-hover\:bg-blue-200 { - background-color: #bfdbfe; + .sm\:top-full { + top: 100%; } - .group:hover .sm\:group-hover\:bg-blue-300 { - background-color: #93c5fd; + .sm\:right-full { + right: 100%; } - .group:hover .sm\:group-hover\:bg-blue-400 { - background-color: #60a5fa; + .sm\:bottom-full { + bottom: 100%; } - .group:hover .sm\:group-hover\:bg-blue-500 { - background-color: #3b82f6; + .sm\:left-full { + left: 100%; } - .group:hover .sm\:group-hover\:bg-blue-600 { - background-color: #2563eb; + .sm\:-top-1\/2 { + top: -50%; } - .group:hover .sm\:group-hover\:bg-blue-700 { - background-color: #1d4ed8; + .sm\:-right-1\/2 { + right: -50%; } - .group:hover .sm\:group-hover\:bg-blue-800 { - background-color: #1e40af; + .sm\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .sm\:group-hover\:bg-blue-900 { - background-color: #1e3a8a; + .sm\:-left-1\/2 { + left: -50%; } - .group:hover .sm\:group-hover\:bg-indigo-50 { - background-color: #eef2ff; + .sm\:-top-1\/3 { + top: -33.333333%; } - .group:hover .sm\:group-hover\:bg-indigo-100 { - background-color: #e0e7ff; + .sm\:-right-1\/3 { + right: -33.333333%; } - .group:hover .sm\:group-hover\:bg-indigo-200 { - background-color: #c7d2fe; + .sm\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .sm\:group-hover\:bg-indigo-300 { - background-color: #a5b4fc; + .sm\:-left-1\/3 { + left: -33.333333%; } - .group:hover .sm\:group-hover\:bg-indigo-400 { - background-color: #818cf8; + .sm\:-top-2\/3 { + top: -66.666667%; } - .group:hover .sm\:group-hover\:bg-indigo-500 { - background-color: #6366f1; + .sm\:-right-2\/3 { + right: -66.666667%; } - .group:hover .sm\:group-hover\:bg-indigo-600 { - background-color: #4f46e5; + .sm\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .sm\:group-hover\:bg-indigo-700 { - background-color: #4338ca; + .sm\:-left-2\/3 { + left: -66.666667%; } - .group:hover .sm\:group-hover\:bg-indigo-800 { - background-color: #3730a3; + .sm\:-top-1\/4 { + top: -25%; } - .group:hover .sm\:group-hover\:bg-indigo-900 { - background-color: #312e81; + .sm\:-right-1\/4 { + right: -25%; } - .group:hover .sm\:group-hover\:bg-purple-50 { - background-color: #f5f3ff; + .sm\:-bottom-1\/4 { + bottom: -25%; } - .group:hover .sm\:group-hover\:bg-purple-100 { - background-color: #ede9fe; + .sm\:-left-1\/4 { + left: -25%; } - .group:hover .sm\:group-hover\:bg-purple-200 { - background-color: #ddd6fe; + .sm\:-top-2\/4 { + top: -50%; } - .group:hover .sm\:group-hover\:bg-purple-300 { - background-color: #c4b5fd; + .sm\:-right-2\/4 { + right: -50%; } - .group:hover .sm\:group-hover\:bg-purple-400 { - background-color: #a78bfa; + .sm\:-bottom-2\/4 { + bottom: -50%; } - .group:hover .sm\:group-hover\:bg-purple-500 { - background-color: #8b5cf6; + .sm\:-left-2\/4 { + left: -50%; } - .group:hover .sm\:group-hover\:bg-purple-600 { - background-color: #7c3aed; + .sm\:-top-3\/4 { + top: -75%; } - .group:hover .sm\:group-hover\:bg-purple-700 { - background-color: #6d28d9; + .sm\:-right-3\/4 { + right: -75%; } - .group:hover .sm\:group-hover\:bg-purple-800 { - background-color: #5b21b6; + .sm\:-bottom-3\/4 { + bottom: -75%; } - .group:hover .sm\:group-hover\:bg-purple-900 { - background-color: #4c1d95; + .sm\:-left-3\/4 { + left: -75%; } - .group:hover .sm\:group-hover\:bg-pink-50 { - background-color: #fdf2f8; + .sm\:-top-full { + top: -100%; } - .group:hover .sm\:group-hover\:bg-pink-100 { - background-color: #fce7f3; + .sm\:-right-full { + right: -100%; } - .group:hover .sm\:group-hover\:bg-pink-200 { - background-color: #fbcfe8; + .sm\:-bottom-full { + bottom: -100%; } - .group:hover .sm\:group-hover\:bg-pink-300 { - background-color: #f9a8d4; + .sm\:-left-full { + left: -100%; } - .group:hover .sm\:group-hover\:bg-pink-400 { - background-color: #f472b6; + .sm\:isolate { + isolation: isolate; } - .group:hover .sm\:group-hover\:bg-pink-500 { - background-color: #ec4899; + .sm\:isolation-auto { + isolation: auto; } - .group:hover .sm\:group-hover\:bg-pink-600 { - background-color: #db2777; + .sm\:z-0 { + z-index: 0; } - .group:hover .sm\:group-hover\:bg-pink-700 { - background-color: #be185d; + .sm\:z-10 { + z-index: 10; } - .group:hover .sm\:group-hover\:bg-pink-800 { - background-color: #9d174d; + .sm\:z-20 { + z-index: 20; } - .group:hover .sm\:group-hover\:bg-pink-900 { - background-color: #831843; + .sm\:z-30 { + z-index: 30; } - .sm\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .sm\:z-40 { + z-index: 40; } - .sm\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .sm\:z-50 { + z-index: 50; } - .sm\:focus-within\:bg-black:focus-within { - background-color: #000; + .sm\:z-auto { + z-index: auto; } - .sm\:focus-within\:bg-white:focus-within { - background-color: #fff; + .sm\:focus-within\:z-0:focus-within { + z-index: 0; } - .sm\:focus-within\:bg-gray-50:focus-within { - background-color: #f9fafb; + .sm\:focus-within\:z-10:focus-within { + z-index: 10; } - .sm\:focus-within\:bg-gray-100:focus-within { - background-color: #f3f4f6; + .sm\:focus-within\:z-20:focus-within { + z-index: 20; } - .sm\:focus-within\:bg-gray-200:focus-within { - background-color: #e5e7eb; + .sm\:focus-within\:z-30:focus-within { + z-index: 30; } - .sm\:focus-within\:bg-gray-300:focus-within { - background-color: #d1d5db; + .sm\:focus-within\:z-40:focus-within { + z-index: 40; } - .sm\:focus-within\:bg-gray-400:focus-within { - background-color: #9ca3af; + .sm\:focus-within\:z-50:focus-within { + z-index: 50; } - .sm\:focus-within\:bg-gray-500:focus-within { - background-color: #6b7280; + .sm\:focus-within\:z-auto:focus-within { + z-index: auto; } - .sm\:focus-within\:bg-gray-600:focus-within { - background-color: #4b5563; + .sm\:focus\:z-0:focus { + z-index: 0; } - .sm\:focus-within\:bg-gray-700:focus-within { - background-color: #374151; + .sm\:focus\:z-10:focus { + z-index: 10; } - .sm\:focus-within\:bg-gray-800:focus-within { - background-color: #1f2937; + .sm\:focus\:z-20:focus { + z-index: 20; } - .sm\:focus-within\:bg-gray-900:focus-within { - background-color: #111827; + .sm\:focus\:z-30:focus { + z-index: 30; } - .sm\:focus-within\:bg-red-50:focus-within { - background-color: #fef2f2; + .sm\:focus\:z-40:focus { + z-index: 40; } - .sm\:focus-within\:bg-red-100:focus-within { - background-color: #fee2e2; + .sm\:focus\:z-50:focus { + z-index: 50; } - .sm\:focus-within\:bg-red-200:focus-within { - background-color: #fecaca; + .sm\:focus\:z-auto:focus { + z-index: auto; } - .sm\:focus-within\:bg-red-300:focus-within { - background-color: #fca5a5; + .sm\:order-1 { + order: 1; } - .sm\:focus-within\:bg-red-400:focus-within { - background-color: #f87171; + .sm\:order-2 { + order: 2; } - .sm\:focus-within\:bg-red-500:focus-within { - background-color: #ef4444; + .sm\:order-3 { + order: 3; } - .sm\:focus-within\:bg-red-600:focus-within { - background-color: #dc2626; + .sm\:order-4 { + order: 4; } - .sm\:focus-within\:bg-red-700:focus-within { - background-color: #b91c1c; + .sm\:order-5 { + order: 5; } - .sm\:focus-within\:bg-red-800:focus-within { - background-color: #991b1b; + .sm\:order-6 { + order: 6; } - .sm\:focus-within\:bg-red-900:focus-within { - background-color: #7f1d1d; + .sm\:order-7 { + order: 7; } - .sm\:focus-within\:bg-yellow-50:focus-within { - background-color: #fffbeb; + .sm\:order-8 { + order: 8; } - .sm\:focus-within\:bg-yellow-100:focus-within { - background-color: #fef3c7; + .sm\:order-9 { + order: 9; } - .sm\:focus-within\:bg-yellow-200:focus-within { - background-color: #fde68a; + .sm\:order-10 { + order: 10; } - .sm\:focus-within\:bg-yellow-300:focus-within { - background-color: #fcd34d; + .sm\:order-11 { + order: 11; } - .sm\:focus-within\:bg-yellow-400:focus-within { - background-color: #fbbf24; + .sm\:order-12 { + order: 12; } - .sm\:focus-within\:bg-yellow-500:focus-within { - background-color: #f59e0b; + .sm\:order-first { + order: -9999; } - .sm\:focus-within\:bg-yellow-600:focus-within { - background-color: #d97706; + .sm\:order-last { + order: 9999; } - .sm\:focus-within\:bg-yellow-700:focus-within { - background-color: #b45309; + .sm\:order-none { + order: 0; } - .sm\:focus-within\:bg-yellow-800:focus-within { - background-color: #92400e; + .sm\:col-auto { + grid-column: auto; } - .sm\:focus-within\:bg-yellow-900:focus-within { - background-color: #78350f; + .sm\:col-span-1 { + grid-column: span 1 / span 1; } - .sm\:focus-within\:bg-green-50:focus-within { - background-color: #ecfdf5; + .sm\:col-span-2 { + grid-column: span 2 / span 2; } - .sm\:focus-within\:bg-green-100:focus-within { - background-color: #d1fae5; + .sm\:col-span-3 { + grid-column: span 3 / span 3; } - .sm\:focus-within\:bg-green-200:focus-within { - background-color: #a7f3d0; + .sm\:col-span-4 { + grid-column: span 4 / span 4; } - .sm\:focus-within\:bg-green-300:focus-within { - background-color: #6ee7b7; + .sm\:col-span-5 { + grid-column: span 5 / span 5; } - .sm\:focus-within\:bg-green-400:focus-within { - background-color: #34d399; + .sm\:col-span-6 { + grid-column: span 6 / span 6; } - .sm\:focus-within\:bg-green-500:focus-within { - background-color: #10b981; + .sm\:col-span-7 { + grid-column: span 7 / span 7; } - .sm\:focus-within\:bg-green-600:focus-within { - background-color: #059669; + .sm\:col-span-8 { + grid-column: span 8 / span 8; } - .sm\:focus-within\:bg-green-700:focus-within { - background-color: #047857; + .sm\:col-span-9 { + grid-column: span 9 / span 9; } - .sm\:focus-within\:bg-green-800:focus-within { - background-color: #065f46; + .sm\:col-span-10 { + grid-column: span 10 / span 10; } - .sm\:focus-within\:bg-green-900:focus-within { - background-color: #064e3b; + .sm\:col-span-11 { + grid-column: span 11 / span 11; } - .sm\:focus-within\:bg-blue-50:focus-within { - background-color: #eff6ff; + .sm\:col-span-12 { + grid-column: span 12 / span 12; } - .sm\:focus-within\:bg-blue-100:focus-within { - background-color: #dbeafe; + .sm\:col-span-full { + grid-column: 1 / -1; } - .sm\:focus-within\:bg-blue-200:focus-within { - background-color: #bfdbfe; + .sm\:col-start-1 { + grid-column-start: 1; } - .sm\:focus-within\:bg-blue-300:focus-within { - background-color: #93c5fd; + .sm\:col-start-2 { + grid-column-start: 2; } - .sm\:focus-within\:bg-blue-400:focus-within { - background-color: #60a5fa; + .sm\:col-start-3 { + grid-column-start: 3; } - .sm\:focus-within\:bg-blue-500:focus-within { - background-color: #3b82f6; + .sm\:col-start-4 { + grid-column-start: 4; } - .sm\:focus-within\:bg-blue-600:focus-within { - background-color: #2563eb; + .sm\:col-start-5 { + grid-column-start: 5; } - .sm\:focus-within\:bg-blue-700:focus-within { - background-color: #1d4ed8; + .sm\:col-start-6 { + grid-column-start: 6; } - .sm\:focus-within\:bg-blue-800:focus-within { - background-color: #1e40af; + .sm\:col-start-7 { + grid-column-start: 7; } - .sm\:focus-within\:bg-blue-900:focus-within { - background-color: #1e3a8a; + .sm\:col-start-8 { + grid-column-start: 8; } - .sm\:focus-within\:bg-indigo-50:focus-within { - background-color: #eef2ff; + .sm\:col-start-9 { + grid-column-start: 9; } - .sm\:focus-within\:bg-indigo-100:focus-within { - background-color: #e0e7ff; + .sm\:col-start-10 { + grid-column-start: 10; } - .sm\:focus-within\:bg-indigo-200:focus-within { - background-color: #c7d2fe; + .sm\:col-start-11 { + grid-column-start: 11; } - .sm\:focus-within\:bg-indigo-300:focus-within { - background-color: #a5b4fc; + .sm\:col-start-12 { + grid-column-start: 12; } - .sm\:focus-within\:bg-indigo-400:focus-within { - background-color: #818cf8; + .sm\:col-start-13 { + grid-column-start: 13; } - .sm\:focus-within\:bg-indigo-500:focus-within { - background-color: #6366f1; + .sm\:col-start-auto { + grid-column-start: auto; } - .sm\:focus-within\:bg-indigo-600:focus-within { - background-color: #4f46e5; + .sm\:col-end-1 { + grid-column-end: 1; } - .sm\:focus-within\:bg-indigo-700:focus-within { - background-color: #4338ca; + .sm\:col-end-2 { + grid-column-end: 2; } - .sm\:focus-within\:bg-indigo-800:focus-within { - background-color: #3730a3; + .sm\:col-end-3 { + grid-column-end: 3; } - .sm\:focus-within\:bg-indigo-900:focus-within { - background-color: #312e81; + .sm\:col-end-4 { + grid-column-end: 4; } - .sm\:focus-within\:bg-purple-50:focus-within { - background-color: #f5f3ff; + .sm\:col-end-5 { + grid-column-end: 5; } - .sm\:focus-within\:bg-purple-100:focus-within { - background-color: #ede9fe; + .sm\:col-end-6 { + grid-column-end: 6; } - .sm\:focus-within\:bg-purple-200:focus-within { - background-color: #ddd6fe; + .sm\:col-end-7 { + grid-column-end: 7; } - .sm\:focus-within\:bg-purple-300:focus-within { - background-color: #c4b5fd; + .sm\:col-end-8 { + grid-column-end: 8; } - .sm\:focus-within\:bg-purple-400:focus-within { - background-color: #a78bfa; + .sm\:col-end-9 { + grid-column-end: 9; } - .sm\:focus-within\:bg-purple-500:focus-within { - background-color: #8b5cf6; + .sm\:col-end-10 { + grid-column-end: 10; } - .sm\:focus-within\:bg-purple-600:focus-within { - background-color: #7c3aed; + .sm\:col-end-11 { + grid-column-end: 11; } - .sm\:focus-within\:bg-purple-700:focus-within { - background-color: #6d28d9; + .sm\:col-end-12 { + grid-column-end: 12; } - .sm\:focus-within\:bg-purple-800:focus-within { - background-color: #5b21b6; + .sm\:col-end-13 { + grid-column-end: 13; } - .sm\:focus-within\:bg-purple-900:focus-within { - background-color: #4c1d95; + .sm\:col-end-auto { + grid-column-end: auto; } - .sm\:focus-within\:bg-pink-50:focus-within { - background-color: #fdf2f8; + .sm\:row-auto { + grid-row: auto; } - .sm\:focus-within\:bg-pink-100:focus-within { - background-color: #fce7f3; + .sm\:row-span-1 { + grid-row: span 1 / span 1; } - .sm\:focus-within\:bg-pink-200:focus-within { - background-color: #fbcfe8; + .sm\:row-span-2 { + grid-row: span 2 / span 2; } - .sm\:focus-within\:bg-pink-300:focus-within { - background-color: #f9a8d4; + .sm\:row-span-3 { + grid-row: span 3 / span 3; } - .sm\:focus-within\:bg-pink-400:focus-within { - background-color: #f472b6; + .sm\:row-span-4 { + grid-row: span 4 / span 4; } - .sm\:focus-within\:bg-pink-500:focus-within { - background-color: #ec4899; + .sm\:row-span-5 { + grid-row: span 5 / span 5; } - .sm\:focus-within\:bg-pink-600:focus-within { - background-color: #db2777; + .sm\:row-span-6 { + grid-row: span 6 / span 6; } - .sm\:focus-within\:bg-pink-700:focus-within { - background-color: #be185d; + .sm\:row-span-full { + grid-row: 1 / -1; } - .sm\:focus-within\:bg-pink-800:focus-within { - background-color: #9d174d; + .sm\:row-start-1 { + grid-row-start: 1; } - .sm\:focus-within\:bg-pink-900:focus-within { - background-color: #831843; + .sm\:row-start-2 { + grid-row-start: 2; } - .sm\:hover\:bg-transparent:hover { - background-color: transparent; + .sm\:row-start-3 { + grid-row-start: 3; } - .sm\:hover\:bg-current:hover { - background-color: currentColor; + .sm\:row-start-4 { + grid-row-start: 4; } - .sm\:hover\:bg-black:hover { - background-color: #000; + .sm\:row-start-5 { + grid-row-start: 5; } - .sm\:hover\:bg-white:hover { - background-color: #fff; + .sm\:row-start-6 { + grid-row-start: 6; } - .sm\:hover\:bg-gray-50:hover { - background-color: #f9fafb; + .sm\:row-start-7 { + grid-row-start: 7; } - .sm\:hover\:bg-gray-100:hover { - background-color: #f3f4f6; + .sm\:row-start-auto { + grid-row-start: auto; } - .sm\:hover\:bg-gray-200:hover { - background-color: #e5e7eb; + .sm\:row-end-1 { + grid-row-end: 1; } - .sm\:hover\:bg-gray-300:hover { - background-color: #d1d5db; + .sm\:row-end-2 { + grid-row-end: 2; } - .sm\:hover\:bg-gray-400:hover { - background-color: #9ca3af; + .sm\:row-end-3 { + grid-row-end: 3; } - .sm\:hover\:bg-gray-500:hover { - background-color: #6b7280; + .sm\:row-end-4 { + grid-row-end: 4; } - .sm\:hover\:bg-gray-600:hover { - background-color: #4b5563; + .sm\:row-end-5 { + grid-row-end: 5; } - .sm\:hover\:bg-gray-700:hover { - background-color: #374151; + .sm\:row-end-6 { + grid-row-end: 6; } - .sm\:hover\:bg-gray-800:hover { - background-color: #1f2937; + .sm\:row-end-7 { + grid-row-end: 7; } - .sm\:hover\:bg-gray-900:hover { - background-color: #111827; + .sm\:row-end-auto { + grid-row-end: auto; } - .sm\:hover\:bg-red-50:hover { - background-color: #fef2f2; + .sm\:float-right { + float: right; } - .sm\:hover\:bg-red-100:hover { - background-color: #fee2e2; + .sm\:float-left { + float: left; } - .sm\:hover\:bg-red-200:hover { - background-color: #fecaca; + .sm\:float-none { + float: none; } - .sm\:hover\:bg-red-300:hover { - background-color: #fca5a5; + .sm\:clear-left { + clear: left; } - .sm\:hover\:bg-red-400:hover { - background-color: #f87171; + .sm\:clear-right { + clear: right; } - .sm\:hover\:bg-red-500:hover { - background-color: #ef4444; + .sm\:clear-both { + clear: both; } - .sm\:hover\:bg-red-600:hover { - background-color: #dc2626; + .sm\:clear-none { + clear: none; } - .sm\:hover\:bg-red-700:hover { - background-color: #b91c1c; + .sm\:m-0 { + margin: 0px; } - .sm\:hover\:bg-red-800:hover { - background-color: #991b1b; + .sm\:m-1 { + margin: 0.25rem; } - .sm\:hover\:bg-red-900:hover { - background-color: #7f1d1d; + .sm\:m-2 { + margin: 0.5rem; } - .sm\:hover\:bg-yellow-50:hover { - background-color: #fffbeb; + .sm\:m-3 { + margin: 0.75rem; } - .sm\:hover\:bg-yellow-100:hover { - background-color: #fef3c7; + .sm\:m-4 { + margin: 1rem; } - .sm\:hover\:bg-yellow-200:hover { - background-color: #fde68a; + .sm\:m-5 { + margin: 1.25rem; } - .sm\:hover\:bg-yellow-300:hover { - background-color: #fcd34d; + .sm\:m-6 { + margin: 1.5rem; } - .sm\:hover\:bg-yellow-400:hover { - background-color: #fbbf24; + .sm\:m-7 { + margin: 1.75rem; } - .sm\:hover\:bg-yellow-500:hover { - background-color: #f59e0b; + .sm\:m-8 { + margin: 2rem; } - .sm\:hover\:bg-yellow-600:hover { - background-color: #d97706; + .sm\:m-9 { + margin: 2.25rem; } - .sm\:hover\:bg-yellow-700:hover { - background-color: #b45309; + .sm\:m-10 { + margin: 2.5rem; } - .sm\:hover\:bg-yellow-800:hover { - background-color: #92400e; + .sm\:m-11 { + margin: 2.75rem; } - .sm\:hover\:bg-yellow-900:hover { - background-color: #78350f; + .sm\:m-12 { + margin: 3rem; } - .sm\:hover\:bg-green-50:hover { - background-color: #ecfdf5; + .sm\:m-14 { + margin: 3.5rem; } - .sm\:hover\:bg-green-100:hover { - background-color: #d1fae5; + .sm\:m-16 { + margin: 4rem; } - .sm\:hover\:bg-green-200:hover { - background-color: #a7f3d0; + .sm\:m-20 { + margin: 5rem; } - .sm\:hover\:bg-green-300:hover { - background-color: #6ee7b7; + .sm\:m-24 { + margin: 6rem; } - .sm\:hover\:bg-green-400:hover { - background-color: #34d399; + .sm\:m-28 { + margin: 7rem; } - .sm\:hover\:bg-green-500:hover { - background-color: #10b981; + .sm\:m-32 { + margin: 8rem; } - .sm\:hover\:bg-green-600:hover { - background-color: #059669; + .sm\:m-36 { + margin: 9rem; } - .sm\:hover\:bg-green-700:hover { - background-color: #047857; + .sm\:m-40 { + margin: 10rem; } - .sm\:hover\:bg-green-800:hover { - background-color: #065f46; + .sm\:m-44 { + margin: 11rem; } - .sm\:hover\:bg-green-900:hover { - background-color: #064e3b; + .sm\:m-48 { + margin: 12rem; } - .sm\:hover\:bg-blue-50:hover { - background-color: #eff6ff; + .sm\:m-52 { + margin: 13rem; } - .sm\:hover\:bg-blue-100:hover { - background-color: #dbeafe; + .sm\:m-56 { + margin: 14rem; } - .sm\:hover\:bg-blue-200:hover { - background-color: #bfdbfe; + .sm\:m-60 { + margin: 15rem; } - .sm\:hover\:bg-blue-300:hover { - background-color: #93c5fd; + .sm\:m-64 { + margin: 16rem; } - .sm\:hover\:bg-blue-400:hover { - background-color: #60a5fa; + .sm\:m-72 { + margin: 18rem; } - .sm\:hover\:bg-blue-500:hover { - background-color: #3b82f6; + .sm\:m-80 { + margin: 20rem; } - .sm\:hover\:bg-blue-600:hover { - background-color: #2563eb; + .sm\:m-96 { + margin: 24rem; } - .sm\:hover\:bg-blue-700:hover { - background-color: #1d4ed8; + .sm\:m-auto { + margin: auto; } - .sm\:hover\:bg-blue-800:hover { - background-color: #1e40af; + .sm\:m-px { + margin: 1px; } - .sm\:hover\:bg-blue-900:hover { - background-color: #1e3a8a; + .sm\:m-0\.5 { + margin: 0.125rem; } - .sm\:hover\:bg-indigo-50:hover { - background-color: #eef2ff; + .sm\:m-1\.5 { + margin: 0.375rem; } - .sm\:hover\:bg-indigo-100:hover { - background-color: #e0e7ff; + .sm\:m-2\.5 { + margin: 0.625rem; } - .sm\:hover\:bg-indigo-200:hover { - background-color: #c7d2fe; + .sm\:m-3\.5 { + margin: 0.875rem; } - .sm\:hover\:bg-indigo-300:hover { - background-color: #a5b4fc; + .sm\:-m-0 { + margin: 0px; } - .sm\:hover\:bg-indigo-400:hover { - background-color: #818cf8; + .sm\:-m-1 { + margin: -0.25rem; } - .sm\:hover\:bg-indigo-500:hover { - background-color: #6366f1; + .sm\:-m-2 { + margin: -0.5rem; } - .sm\:hover\:bg-indigo-600:hover { - background-color: #4f46e5; + .sm\:-m-3 { + margin: -0.75rem; } - .sm\:hover\:bg-indigo-700:hover { - background-color: #4338ca; + .sm\:-m-4 { + margin: -1rem; } - .sm\:hover\:bg-indigo-800:hover { - background-color: #3730a3; + .sm\:-m-5 { + margin: -1.25rem; } - .sm\:hover\:bg-indigo-900:hover { - background-color: #312e81; + .sm\:-m-6 { + margin: -1.5rem; } - .sm\:hover\:bg-purple-50:hover { - background-color: #f5f3ff; + .sm\:-m-7 { + margin: -1.75rem; } - .sm\:hover\:bg-purple-100:hover { - background-color: #ede9fe; + .sm\:-m-8 { + margin: -2rem; } - .sm\:hover\:bg-purple-200:hover { - background-color: #ddd6fe; + .sm\:-m-9 { + margin: -2.25rem; } - .sm\:hover\:bg-purple-300:hover { - background-color: #c4b5fd; + .sm\:-m-10 { + margin: -2.5rem; } - .sm\:hover\:bg-purple-400:hover { - background-color: #a78bfa; + .sm\:-m-11 { + margin: -2.75rem; } - .sm\:hover\:bg-purple-500:hover { - background-color: #8b5cf6; + .sm\:-m-12 { + margin: -3rem; } - .sm\:hover\:bg-purple-600:hover { - background-color: #7c3aed; + .sm\:-m-14 { + margin: -3.5rem; } - .sm\:hover\:bg-purple-700:hover { - background-color: #6d28d9; + .sm\:-m-16 { + margin: -4rem; } - .sm\:hover\:bg-purple-800:hover { - background-color: #5b21b6; + .sm\:-m-20 { + margin: -5rem; } - .sm\:hover\:bg-purple-900:hover { - background-color: #4c1d95; + .sm\:-m-24 { + margin: -6rem; } - .sm\:hover\:bg-pink-50:hover { - background-color: #fdf2f8; + .sm\:-m-28 { + margin: -7rem; } - .sm\:hover\:bg-pink-100:hover { - background-color: #fce7f3; + .sm\:-m-32 { + margin: -8rem; } - .sm\:hover\:bg-pink-200:hover { - background-color: #fbcfe8; + .sm\:-m-36 { + margin: -9rem; } - .sm\:hover\:bg-pink-300:hover { - background-color: #f9a8d4; + .sm\:-m-40 { + margin: -10rem; } - .sm\:hover\:bg-pink-400:hover { - background-color: #f472b6; + .sm\:-m-44 { + margin: -11rem; } - .sm\:hover\:bg-pink-500:hover { - background-color: #ec4899; + .sm\:-m-48 { + margin: -12rem; } - .sm\:hover\:bg-pink-600:hover { - background-color: #db2777; + .sm\:-m-52 { + margin: -13rem; } - .sm\:hover\:bg-pink-700:hover { - background-color: #be185d; + .sm\:-m-56 { + margin: -14rem; } - .sm\:hover\:bg-pink-800:hover { - background-color: #9d174d; + .sm\:-m-60 { + margin: -15rem; } - .sm\:hover\:bg-pink-900:hover { - background-color: #831843; + .sm\:-m-64 { + margin: -16rem; } - .sm\:focus\:bg-transparent:focus { - background-color: transparent; + .sm\:-m-72 { + margin: -18rem; } - .sm\:focus\:bg-current:focus { - background-color: currentColor; + .sm\:-m-80 { + margin: -20rem; } - .sm\:focus\:bg-black:focus { - background-color: #000; + .sm\:-m-96 { + margin: -24rem; } - .sm\:focus\:bg-white:focus { - background-color: #fff; + .sm\:-m-px { + margin: -1px; } - .sm\:focus\:bg-gray-50:focus { - background-color: #f9fafb; + .sm\:-m-0\.5 { + margin: -0.125rem; } - .sm\:focus\:bg-gray-100:focus { - background-color: #f3f4f6; + .sm\:-m-1\.5 { + margin: -0.375rem; } - .sm\:focus\:bg-gray-200:focus { - background-color: #e5e7eb; + .sm\:-m-2\.5 { + margin: -0.625rem; } - .sm\:focus\:bg-gray-300:focus { - background-color: #d1d5db; + .sm\:-m-3\.5 { + margin: -0.875rem; } - .sm\:focus\:bg-gray-400:focus { - background-color: #9ca3af; + .sm\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .sm\:focus\:bg-gray-500:focus { - background-color: #6b7280; + .sm\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .sm\:focus\:bg-gray-600:focus { - background-color: #4b5563; + .sm\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .sm\:focus\:bg-gray-700:focus { - background-color: #374151; + .sm\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .sm\:focus\:bg-gray-800:focus { - background-color: #1f2937; + .sm\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .sm\:focus\:bg-gray-900:focus { - background-color: #111827; + .sm\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .sm\:focus\:bg-red-50:focus { - background-color: #fef2f2; + .sm\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .sm\:focus\:bg-red-100:focus { - background-color: #fee2e2; + .sm\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .sm\:focus\:bg-red-200:focus { - background-color: #fecaca; + .sm\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .sm\:focus\:bg-red-300:focus { - background-color: #fca5a5; + .sm\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .sm\:focus\:bg-red-400:focus { - background-color: #f87171; + .sm\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .sm\:focus\:bg-red-500:focus { - background-color: #ef4444; + .sm\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .sm\:focus\:bg-red-600:focus { - background-color: #dc2626; + .sm\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .sm\:focus\:bg-red-700:focus { - background-color: #b91c1c; + .sm\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .sm\:focus\:bg-red-800:focus { - background-color: #991b1b; + .sm\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .sm\:focus\:bg-red-900:focus { - background-color: #7f1d1d; + .sm\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .sm\:focus\:bg-yellow-50:focus { - background-color: #fffbeb; + .sm\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .sm\:focus\:bg-yellow-100:focus { - background-color: #fef3c7; + .sm\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .sm\:focus\:bg-yellow-200:focus { - background-color: #fde68a; + .sm\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .sm\:focus\:bg-yellow-300:focus { - background-color: #fcd34d; + .sm\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .sm\:focus\:bg-yellow-400:focus { - background-color: #fbbf24; + .sm\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .sm\:focus\:bg-yellow-500:focus { - background-color: #f59e0b; + .sm\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .sm\:focus\:bg-yellow-600:focus { - background-color: #d97706; + .sm\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .sm\:focus\:bg-yellow-700:focus { - background-color: #b45309; + .sm\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .sm\:focus\:bg-yellow-800:focus { - background-color: #92400e; + .sm\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .sm\:focus\:bg-yellow-900:focus { - background-color: #78350f; + .sm\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .sm\:focus\:bg-green-50:focus { - background-color: #ecfdf5; + .sm\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .sm\:focus\:bg-green-100:focus { - background-color: #d1fae5; + .sm\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .sm\:focus\:bg-green-200:focus { - background-color: #a7f3d0; + .sm\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .sm\:focus\:bg-green-300:focus { - background-color: #6ee7b7; + .sm\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .sm\:focus\:bg-green-400:focus { - background-color: #34d399; + .sm\:mx-auto { + margin-left: auto; + margin-right: auto; } - .sm\:focus\:bg-green-500:focus { - background-color: #10b981; + .sm\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .sm\:focus\:bg-green-600:focus { - background-color: #059669; + .sm\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .sm\:focus\:bg-green-700:focus { - background-color: #047857; + .sm\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .sm\:focus\:bg-green-800:focus { - background-color: #065f46; + .sm\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .sm\:focus\:bg-green-900:focus { - background-color: #064e3b; + .sm\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .sm\:focus\:bg-blue-50:focus { - background-color: #eff6ff; + .sm\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .sm\:focus\:bg-blue-100:focus { - background-color: #dbeafe; + .sm\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .sm\:focus\:bg-blue-200:focus { - background-color: #bfdbfe; + .sm\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .sm\:focus\:bg-blue-300:focus { - background-color: #93c5fd; + .sm\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .sm\:focus\:bg-blue-400:focus { - background-color: #60a5fa; + .sm\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .sm\:focus\:bg-blue-500:focus { - background-color: #3b82f6; + .sm\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .sm\:focus\:bg-blue-600:focus { - background-color: #2563eb; + .sm\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .sm\:focus\:bg-blue-700:focus { - background-color: #1d4ed8; + .sm\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .sm\:focus\:bg-blue-800:focus { - background-color: #1e40af; + .sm\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .sm\:focus\:bg-blue-900:focus { - background-color: #1e3a8a; + .sm\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .sm\:focus\:bg-indigo-50:focus { - background-color: #eef2ff; + .sm\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .sm\:focus\:bg-indigo-100:focus { - background-color: #e0e7ff; + .sm\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .sm\:focus\:bg-indigo-200:focus { - background-color: #c7d2fe; + .sm\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .sm\:focus\:bg-indigo-300:focus { - background-color: #a5b4fc; + .sm\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .sm\:focus\:bg-indigo-400:focus { - background-color: #818cf8; + .sm\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .sm\:focus\:bg-indigo-500:focus { - background-color: #6366f1; + .sm\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .sm\:focus\:bg-indigo-600:focus { - background-color: #4f46e5; + .sm\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .sm\:focus\:bg-indigo-700:focus { - background-color: #4338ca; + .sm\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .sm\:focus\:bg-indigo-800:focus { - background-color: #3730a3; + .sm\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .sm\:focus\:bg-indigo-900:focus { - background-color: #312e81; + .sm\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .sm\:focus\:bg-purple-50:focus { - background-color: #f5f3ff; + .sm\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .sm\:focus\:bg-purple-100:focus { - background-color: #ede9fe; + .sm\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .sm\:focus\:bg-purple-200:focus { - background-color: #ddd6fe; + .sm\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .sm\:focus\:bg-purple-300:focus { - background-color: #c4b5fd; + .sm\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .sm\:focus\:bg-purple-400:focus { - background-color: #a78bfa; + .sm\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .sm\:focus\:bg-purple-500:focus { - background-color: #8b5cf6; + .sm\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .sm\:focus\:bg-purple-600:focus { - background-color: #7c3aed; + .sm\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .sm\:focus\:bg-purple-700:focus { - background-color: #6d28d9; + .sm\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .sm\:focus\:bg-purple-800:focus { - background-color: #5b21b6; + .sm\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .sm\:focus\:bg-purple-900:focus { - background-color: #4c1d95; + .sm\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .sm\:focus\:bg-pink-50:focus { - background-color: #fdf2f8; + .sm\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .sm\:focus\:bg-pink-100:focus { - background-color: #fce7f3; + .sm\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .sm\:focus\:bg-pink-200:focus { - background-color: #fbcfe8; + .sm\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .sm\:focus\:bg-pink-300:focus { - background-color: #f9a8d4; + .sm\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .sm\:focus\:bg-pink-400:focus { - background-color: #f472b6; + .sm\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .sm\:focus\:bg-pink-500:focus { - background-color: #ec4899; + .sm\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .sm\:focus\:bg-pink-600:focus { - background-color: #db2777; + .sm\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .sm\:focus\:bg-pink-700:focus { - background-color: #be185d; + .sm\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .sm\:focus\:bg-pink-800:focus { - background-color: #9d174d; + .sm\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .sm\:focus\:bg-pink-900:focus { - background-color: #831843; + .sm\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .sm\:bg-none { - background-image: none; + .sm\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .sm\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .sm\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .sm\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .sm\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .sm\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .sm\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .sm\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .sm\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .sm\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .sm\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .sm\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .sm\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .sm\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .sm\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .sm\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .sm\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .sm\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .sm\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .sm\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .sm\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .sm\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .sm\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .sm\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .sm\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .sm\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .sm\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .sm\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .sm\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .sm\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .sm\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .sm\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .sm\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .sm\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .sm\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .sm\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .sm\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .sm\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .sm\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .sm\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .sm\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .sm\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .sm\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .sm\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .sm\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .sm\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .sm\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .sm\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .sm\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .sm\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .sm\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .sm\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .sm\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .sm\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .sm\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .sm\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .sm\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .sm\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .sm\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .sm\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .sm\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .sm\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .sm\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .sm\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .sm\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .sm\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .sm\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .sm\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .sm\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .sm\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .sm\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .sm\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .sm\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .sm\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .sm\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:mt-0 { + margin-top: 0px; } - .sm\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:mt-1 { + margin-top: 0.25rem; } - .sm\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:mt-2 { + margin-top: 0.5rem; } - .sm\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:mt-3 { + margin-top: 0.75rem; } - .sm\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:mt-4 { + margin-top: 1rem; } - .sm\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:mt-5 { + margin-top: 1.25rem; } - .sm\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:mt-6 { + margin-top: 1.5rem; } - .sm\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:mt-7 { + margin-top: 1.75rem; } - .sm\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:mt-8 { + margin-top: 2rem; } - .sm\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:mt-9 { + margin-top: 2.25rem; } - .sm\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:mt-10 { + margin-top: 2.5rem; } - .sm\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:mt-11 { + margin-top: 2.75rem; } - .sm\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:mt-12 { + margin-top: 3rem; } - .sm\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:mt-14 { + margin-top: 3.5rem; } - .sm\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:mt-16 { + margin-top: 4rem; } - .sm\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:mt-20 { + margin-top: 5rem; } - .sm\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:mt-24 { + margin-top: 6rem; } - .sm\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:mt-28 { + margin-top: 7rem; } - .sm\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:mt-32 { + margin-top: 8rem; } - .sm\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:mt-36 { + margin-top: 9rem; } - .sm\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:mt-40 { + margin-top: 10rem; } - .sm\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:mt-44 { + margin-top: 11rem; } - .sm\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:mt-48 { + margin-top: 12rem; } - .sm\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:mt-52 { + margin-top: 13rem; } - .sm\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:mt-56 { + margin-top: 14rem; } - .sm\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:mt-60 { + margin-top: 15rem; } - .sm\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:mt-64 { + margin-top: 16rem; } - .sm\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:mt-72 { + margin-top: 18rem; } - .sm\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:mt-80 { + margin-top: 20rem; } - .sm\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:mt-96 { + margin-top: 24rem; } - .sm\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:mt-auto { + margin-top: auto; } - .sm\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:mt-px { + margin-top: 1px; } - .sm\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:mt-0\.5 { + margin-top: 0.125rem; } - .sm\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:mt-1\.5 { + margin-top: 0.375rem; } - .sm\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:mt-2\.5 { + margin-top: 0.625rem; } - .sm\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:mt-3\.5 { + margin-top: 0.875rem; } - .sm\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:-mt-0 { + margin-top: 0px; } - .sm\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:-mt-1 { + margin-top: -0.25rem; } - .sm\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:-mt-2 { + margin-top: -0.5rem; } - .sm\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:-mt-3 { + margin-top: -0.75rem; } - .sm\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:-mt-4 { + margin-top: -1rem; } - .sm\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:-mt-5 { + margin-top: -1.25rem; } - .sm\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:-mt-6 { + margin-top: -1.5rem; } - .sm\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:-mt-7 { + margin-top: -1.75rem; } - .sm\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:-mt-8 { + margin-top: -2rem; } - .sm\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:-mt-9 { + margin-top: -2.25rem; } - .sm\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:-mt-10 { + margin-top: -2.5rem; } - .sm\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:-mt-11 { + margin-top: -2.75rem; } - .sm\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:-mt-12 { + margin-top: -3rem; } - .sm\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:-mt-14 { + margin-top: -3.5rem; } - .sm\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:-mt-16 { + margin-top: -4rem; } - .sm\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:-mt-20 { + margin-top: -5rem; } - .sm\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:-mt-24 { + margin-top: -6rem; } - .sm\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:-mt-28 { + margin-top: -7rem; } - .sm\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:-mt-32 { + margin-top: -8rem; } - .sm\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:-mt-36 { + margin-top: -9rem; } - .sm\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:-mt-40 { + margin-top: -10rem; } - .sm\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:-mt-44 { + margin-top: -11rem; } - .sm\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:-mt-48 { + margin-top: -12rem; } - .sm\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:-mt-52 { + margin-top: -13rem; } - .sm\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:-mt-56 { + margin-top: -14rem; } - .sm\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:-mt-60 { + margin-top: -15rem; } - .sm\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:-mt-64 { + margin-top: -16rem; } - .sm\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:-mt-72 { + margin-top: -18rem; } - .sm\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:-mt-80 { + margin-top: -20rem; } - .sm\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:-mt-96 { + margin-top: -24rem; } - .sm\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:-mt-px { + margin-top: -1px; } - .sm\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:-mt-0\.5 { + margin-top: -0.125rem; } - .sm\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:-mt-1\.5 { + margin-top: -0.375rem; } - .sm\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:-mt-2\.5 { + margin-top: -0.625rem; } - .sm\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:-mt-3\.5 { + margin-top: -0.875rem; } - .sm\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:mr-0 { + margin-right: 0px; } - .sm\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:mr-1 { + margin-right: 0.25rem; } - .sm\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:mr-2 { + margin-right: 0.5rem; } - .sm\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:mr-3 { + margin-right: 0.75rem; } - .sm\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:mr-4 { + margin-right: 1rem; } - .sm\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:mr-5 { + margin-right: 1.25rem; } - .sm\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:mr-6 { + margin-right: 1.5rem; } - .sm\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:mr-7 { + margin-right: 1.75rem; } - .sm\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:mr-8 { + margin-right: 2rem; } - .sm\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:mr-9 { + margin-right: 2.25rem; } - .sm\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:mr-10 { + margin-right: 2.5rem; } - .sm\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:mr-11 { + margin-right: 2.75rem; } - .sm\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:mr-12 { + margin-right: 3rem; } - .sm\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:mr-14 { + margin-right: 3.5rem; } - .sm\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:mr-16 { + margin-right: 4rem; } - .sm\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:mr-20 { + margin-right: 5rem; } - .sm\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:mr-24 { + margin-right: 6rem; } - .sm\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:mr-28 { + margin-right: 7rem; } - .sm\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:mr-32 { + margin-right: 8rem; } - .sm\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:mr-36 { + margin-right: 9rem; } - .sm\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:mr-40 { + margin-right: 10rem; } - .sm\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:mr-44 { + margin-right: 11rem; } - .sm\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:mr-48 { + margin-right: 12rem; } - .sm\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:mr-52 { + margin-right: 13rem; } - .sm\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:mr-56 { + margin-right: 14rem; } - .sm\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:mr-60 { + margin-right: 15rem; } - .sm\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:mr-64 { + margin-right: 16rem; } - .sm\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:mr-72 { + margin-right: 18rem; } - .sm\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:mr-80 { + margin-right: 20rem; } - .sm\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:mr-96 { + margin-right: 24rem; } - .sm\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:mr-auto { + margin-right: auto; } - .sm\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:mr-px { + margin-right: 1px; } - .sm\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:mr-0\.5 { + margin-right: 0.125rem; } - .sm\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:mr-1\.5 { + margin-right: 0.375rem; } - .sm\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:mr-2\.5 { + margin-right: 0.625rem; } - .sm\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:mr-3\.5 { + margin-right: 0.875rem; } - .sm\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:-mr-0 { + margin-right: 0px; } - .sm\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:-mr-1 { + margin-right: -0.25rem; } - .sm\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:-mr-2 { + margin-right: -0.5rem; } - .sm\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:-mr-3 { + margin-right: -0.75rem; } - .sm\:to-transparent { - --tw-gradient-to: transparent; + .sm\:-mr-4 { + margin-right: -1rem; } - .sm\:to-current { - --tw-gradient-to: currentColor; + .sm\:-mr-5 { + margin-right: -1.25rem; } - .sm\:to-black { - --tw-gradient-to: #000; + .sm\:-mr-6 { + margin-right: -1.5rem; } - .sm\:to-white { - --tw-gradient-to: #fff; + .sm\:-mr-7 { + margin-right: -1.75rem; } - .sm\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .sm\:-mr-8 { + margin-right: -2rem; } - .sm\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .sm\:-mr-9 { + margin-right: -2.25rem; } - .sm\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .sm\:-mr-10 { + margin-right: -2.5rem; } - .sm\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .sm\:-mr-11 { + margin-right: -2.75rem; } - .sm\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .sm\:-mr-12 { + margin-right: -3rem; } - .sm\:to-gray-500 { - --tw-gradient-to: #6b7280; + .sm\:-mr-14 { + margin-right: -3.5rem; } - .sm\:to-gray-600 { - --tw-gradient-to: #4b5563; + .sm\:-mr-16 { + margin-right: -4rem; } - .sm\:to-gray-700 { - --tw-gradient-to: #374151; + .sm\:-mr-20 { + margin-right: -5rem; } - .sm\:to-gray-800 { - --tw-gradient-to: #1f2937; + .sm\:-mr-24 { + margin-right: -6rem; } - .sm\:to-gray-900 { - --tw-gradient-to: #111827; + .sm\:-mr-28 { + margin-right: -7rem; } - .sm\:to-red-50 { - --tw-gradient-to: #fef2f2; + .sm\:-mr-32 { + margin-right: -8rem; } - .sm\:to-red-100 { - --tw-gradient-to: #fee2e2; + .sm\:-mr-36 { + margin-right: -9rem; } - .sm\:to-red-200 { - --tw-gradient-to: #fecaca; + .sm\:-mr-40 { + margin-right: -10rem; } - .sm\:to-red-300 { - --tw-gradient-to: #fca5a5; + .sm\:-mr-44 { + margin-right: -11rem; } - .sm\:to-red-400 { - --tw-gradient-to: #f87171; + .sm\:-mr-48 { + margin-right: -12rem; } - .sm\:to-red-500 { - --tw-gradient-to: #ef4444; + .sm\:-mr-52 { + margin-right: -13rem; } - .sm\:to-red-600 { - --tw-gradient-to: #dc2626; + .sm\:-mr-56 { + margin-right: -14rem; } - .sm\:to-red-700 { - --tw-gradient-to: #b91c1c; + .sm\:-mr-60 { + margin-right: -15rem; } - .sm\:to-red-800 { - --tw-gradient-to: #991b1b; + .sm\:-mr-64 { + margin-right: -16rem; } - .sm\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .sm\:-mr-72 { + margin-right: -18rem; } - .sm\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .sm\:-mr-80 { + margin-right: -20rem; } - .sm\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .sm\:-mr-96 { + margin-right: -24rem; } - .sm\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .sm\:-mr-px { + margin-right: -1px; } - .sm\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .sm\:-mr-0\.5 { + margin-right: -0.125rem; } - .sm\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .sm\:-mr-1\.5 { + margin-right: -0.375rem; } - .sm\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .sm\:-mr-2\.5 { + margin-right: -0.625rem; } - .sm\:to-yellow-600 { - --tw-gradient-to: #d97706; + .sm\:-mr-3\.5 { + margin-right: -0.875rem; } - .sm\:to-yellow-700 { - --tw-gradient-to: #b45309; + .sm\:mb-0 { + margin-bottom: 0px; } - .sm\:to-yellow-800 { - --tw-gradient-to: #92400e; + .sm\:mb-1 { + margin-bottom: 0.25rem; } - .sm\:to-yellow-900 { - --tw-gradient-to: #78350f; + .sm\:mb-2 { + margin-bottom: 0.5rem; } - .sm\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .sm\:mb-3 { + margin-bottom: 0.75rem; } - .sm\:to-green-100 { - --tw-gradient-to: #d1fae5; + .sm\:mb-4 { + margin-bottom: 1rem; } - .sm\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .sm\:mb-5 { + margin-bottom: 1.25rem; } - .sm\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .sm\:mb-6 { + margin-bottom: 1.5rem; } - .sm\:to-green-400 { - --tw-gradient-to: #34d399; + .sm\:mb-7 { + margin-bottom: 1.75rem; } - .sm\:to-green-500 { - --tw-gradient-to: #10b981; + .sm\:mb-8 { + margin-bottom: 2rem; } - .sm\:to-green-600 { - --tw-gradient-to: #059669; + .sm\:mb-9 { + margin-bottom: 2.25rem; } - .sm\:to-green-700 { - --tw-gradient-to: #047857; + .sm\:mb-10 { + margin-bottom: 2.5rem; } - .sm\:to-green-800 { - --tw-gradient-to: #065f46; + .sm\:mb-11 { + margin-bottom: 2.75rem; } - .sm\:to-green-900 { - --tw-gradient-to: #064e3b; + .sm\:mb-12 { + margin-bottom: 3rem; } - .sm\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .sm\:mb-14 { + margin-bottom: 3.5rem; } - .sm\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .sm\:mb-16 { + margin-bottom: 4rem; } - .sm\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .sm\:mb-20 { + margin-bottom: 5rem; } - .sm\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .sm\:mb-24 { + margin-bottom: 6rem; } - .sm\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .sm\:mb-28 { + margin-bottom: 7rem; } - .sm\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .sm\:mb-32 { + margin-bottom: 8rem; } - .sm\:to-blue-600 { - --tw-gradient-to: #2563eb; + .sm\:mb-36 { + margin-bottom: 9rem; } - .sm\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .sm\:mb-40 { + margin-bottom: 10rem; } - .sm\:to-blue-800 { - --tw-gradient-to: #1e40af; + .sm\:mb-44 { + margin-bottom: 11rem; } - .sm\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .sm\:mb-48 { + margin-bottom: 12rem; } - .sm\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .sm\:mb-52 { + margin-bottom: 13rem; } - .sm\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .sm\:mb-56 { + margin-bottom: 14rem; } - .sm\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .sm\:mb-60 { + margin-bottom: 15rem; } - .sm\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .sm\:mb-64 { + margin-bottom: 16rem; } - .sm\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .sm\:mb-72 { + margin-bottom: 18rem; } - .sm\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .sm\:mb-80 { + margin-bottom: 20rem; } - .sm\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .sm\:mb-96 { + margin-bottom: 24rem; } - .sm\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .sm\:mb-auto { + margin-bottom: auto; } - .sm\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .sm\:mb-px { + margin-bottom: 1px; } - .sm\:to-indigo-900 { - --tw-gradient-to: #312e81; + .sm\:mb-0\.5 { + margin-bottom: 0.125rem; } - .sm\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .sm\:mb-1\.5 { + margin-bottom: 0.375rem; } - .sm\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .sm\:mb-2\.5 { + margin-bottom: 0.625rem; } - .sm\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .sm\:mb-3\.5 { + margin-bottom: 0.875rem; } - .sm\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .sm\:-mb-0 { + margin-bottom: 0px; } - .sm\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .sm\:-mb-1 { + margin-bottom: -0.25rem; } - .sm\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .sm\:-mb-2 { + margin-bottom: -0.5rem; } - .sm\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .sm\:-mb-3 { + margin-bottom: -0.75rem; } - .sm\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .sm\:-mb-4 { + margin-bottom: -1rem; } - .sm\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .sm\:-mb-5 { + margin-bottom: -1.25rem; } - .sm\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .sm\:-mb-6 { + margin-bottom: -1.5rem; } - .sm\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .sm\:-mb-7 { + margin-bottom: -1.75rem; } - .sm\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .sm\:-mb-8 { + margin-bottom: -2rem; } - .sm\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .sm\:-mb-9 { + margin-bottom: -2.25rem; } - .sm\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .sm\:-mb-10 { + margin-bottom: -2.5rem; } - .sm\:to-pink-400 { - --tw-gradient-to: #f472b6; + .sm\:-mb-11 { + margin-bottom: -2.75rem; } - .sm\:to-pink-500 { - --tw-gradient-to: #ec4899; + .sm\:-mb-12 { + margin-bottom: -3rem; } - .sm\:to-pink-600 { - --tw-gradient-to: #db2777; + .sm\:-mb-14 { + margin-bottom: -3.5rem; } - .sm\:to-pink-700 { - --tw-gradient-to: #be185d; + .sm\:-mb-16 { + margin-bottom: -4rem; } - .sm\:to-pink-800 { - --tw-gradient-to: #9d174d; + .sm\:-mb-20 { + margin-bottom: -5rem; } - .sm\:to-pink-900 { - --tw-gradient-to: #831843; + .sm\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .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\:-ml-10 { + margin-left: -2.5rem; } - .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\:-ml-11 { + margin-left: -2.75rem; } - .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\:-ml-12 { + margin-left: -3rem; } - .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\:-ml-14 { + margin-left: -3.5rem; } - .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\:-ml-16 { + margin-left: -4rem; } - .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\:-ml-20 { + margin-left: -5rem; } - .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\:-ml-24 { + margin-left: -6rem; } - .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\:-ml-28 { + margin-left: -7rem; } - .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\:-ml-32 { + margin-left: -8rem; } - .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\:-ml-36 { + margin-left: -9rem; } - .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\:-ml-40 { + margin-left: -10rem; } - .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\:-ml-44 { + margin-left: -11rem; } - .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\:-ml-48 { + margin-left: -12rem; } - .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\:-ml-52 { + margin-left: -13rem; } - .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\:-ml-56 { + margin-left: -14rem; } - .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\:-ml-60 { + margin-left: -15rem; } - .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\:-ml-64 { + margin-left: -16rem; } - .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\:-ml-72 { + margin-left: -18rem; } - .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\:-ml-80 { + margin-left: -20rem; } - .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\:-ml-96 { + margin-left: -24rem; } - .sm\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:-ml-px { + margin-left: -1px; } - .sm\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:-ml-0\.5 { + margin-left: -0.125rem; } - .sm\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:-ml-1\.5 { + margin-left: -0.375rem; } - .sm\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:-ml-2\.5 { + margin-left: -0.625rem; } - .sm\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:-ml-3\.5 { + margin-left: -0.875rem; } - .sm\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:box-border { + box-sizing: border-box; } - .sm\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:box-content { + box-sizing: content-box; } - .sm\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:block { + display: block; } - .sm\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:inline-block { + display: inline-block; } - .sm\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:inline { + display: inline; } - .sm\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:flex { + display: flex; } - .sm\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:inline-flex { + display: inline-flex; } - .sm\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:table { + display: table; } - .sm\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:inline-table { + display: inline-table; } - .sm\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:table-caption { + display: table-caption; } - .sm\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:table-cell { + display: table-cell; } - .sm\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:table-column { + display: table-column; } - .sm\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:table-column-group { + display: table-column-group; } - .sm\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:table-footer-group { + display: table-footer-group; } - .sm\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:table-header-group { + display: table-header-group; } - .sm\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:table-row-group { + display: table-row-group; } - .sm\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:table-row { + display: table-row; } - .sm\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:flow-root { + display: flow-root; } - .sm\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:grid { + display: grid; } - .sm\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:inline-grid { + display: inline-grid; } - .sm\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:contents { + display: contents; } - .sm\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:list-item { + display: list-item; } - .sm\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:hidden { + display: none; } - .sm\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:h-0 { + height: 0px; } - .sm\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:h-1 { + height: 0.25rem; } - .sm\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:h-2 { + height: 0.5rem; } - .sm\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:h-3 { + height: 0.75rem; } - .sm\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:h-4 { + height: 1rem; } - .sm\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:h-5 { + height: 1.25rem; } - .sm\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:h-6 { + height: 1.5rem; } - .sm\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:h-7 { + height: 1.75rem; } - .sm\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:h-8 { + height: 2rem; } - .sm\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:h-9 { + height: 2.25rem; } - .sm\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:h-10 { + height: 2.5rem; } - .sm\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:h-11 { + height: 2.75rem; } - .sm\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:h-12 { + height: 3rem; } - .sm\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:h-14 { + height: 3.5rem; } - .sm\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:h-16 { + height: 4rem; } - .sm\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:h-20 { + height: 5rem; } - .sm\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:h-24 { + height: 6rem; } - .sm\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:h-28 { + height: 7rem; } - .sm\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:h-32 { + height: 8rem; } - .sm\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:h-36 { + height: 9rem; } - .sm\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:h-40 { + height: 10rem; } - .sm\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:h-44 { + height: 11rem; } - .sm\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:h-48 { + height: 12rem; } - .sm\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:h-52 { + height: 13rem; } - .sm\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:h-56 { + height: 14rem; } - .sm\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:h-60 { + height: 15rem; } - .sm\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:h-64 { + height: 16rem; } - .sm\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:h-72 { + height: 18rem; } - .sm\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:h-80 { + height: 20rem; } - .sm\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:h-96 { + height: 24rem; } - .sm\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:h-auto { + height: auto; } - .sm\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:h-px { + height: 1px; } - .sm\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:h-0\.5 { + height: 0.125rem; } - .sm\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:h-1\.5 { + height: 0.375rem; } - .sm\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:h-2\.5 { + height: 0.625rem; } - .sm\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:h-3\.5 { + height: 0.875rem; } - .sm\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:h-1\/2 { + height: 50%; } - .sm\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:h-1\/3 { + height: 33.333333%; } - .sm\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:h-2\/3 { + height: 66.666667%; } - .sm\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:h-1\/4 { + height: 25%; } - .sm\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:h-2\/4 { + height: 50%; } - .sm\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:h-3\/4 { + height: 75%; } - .sm\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:h-1\/5 { + height: 20%; } - .sm\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:h-2\/5 { + height: 40%; } - .sm\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:h-3\/5 { + height: 60%; } - .sm\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:h-4\/5 { + height: 80%; } - .sm\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:h-1\/6 { + height: 16.666667%; } - .sm\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:h-2\/6 { + height: 33.333333%; } - .sm\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:h-3\/6 { + height: 50%; } - .sm\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:h-4\/6 { + height: 66.666667%; } - .sm\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:h-5\/6 { + height: 83.333333%; } - .sm\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:h-full { + height: 100%; } - .sm\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:h-screen { + height: 100vh; } - .sm\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:max-h-0 { + max-height: 0px; } - .sm\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:max-h-1 { + max-height: 0.25rem; } - .sm\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:max-h-2 { + max-height: 0.5rem; } - .sm\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .sm\:max-h-3 { + max-height: 0.75rem; } - .sm\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .sm\:max-h-4 { + max-height: 1rem; } - .sm\:hover\:to-black:hover { - --tw-gradient-to: #000; + .sm\:max-h-5 { + max-height: 1.25rem; } - .sm\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .sm\:max-h-6 { + max-height: 1.5rem; } - .sm\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .sm\:max-h-7 { + max-height: 1.75rem; } - .sm\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .sm\:max-h-8 { + max-height: 2rem; } - .sm\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .sm\:max-h-9 { + max-height: 2.25rem; } - .sm\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .sm\:max-h-10 { + max-height: 2.5rem; } - .sm\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .sm\:max-h-11 { + max-height: 2.75rem; } - .sm\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .sm\:max-h-12 { + max-height: 3rem; } - .sm\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .sm\:max-h-14 { + max-height: 3.5rem; } - .sm\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .sm\:max-h-16 { + max-height: 4rem; } - .sm\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .sm\:max-h-20 { + max-height: 5rem; } - .sm\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .sm\:max-h-24 { + max-height: 6rem; } - .sm\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .sm\:max-h-28 { + max-height: 7rem; } - .sm\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .sm\:max-h-32 { + max-height: 8rem; } - .sm\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .sm\:max-h-36 { + max-height: 9rem; } - .sm\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .sm\:max-h-40 { + max-height: 10rem; } - .sm\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .sm\:max-h-44 { + max-height: 11rem; } - .sm\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .sm\:max-h-48 { + max-height: 12rem; } - .sm\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .sm\:max-h-52 { + max-height: 13rem; } - .sm\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .sm\:max-h-56 { + max-height: 14rem; } - .sm\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .sm\:max-h-60 { + max-height: 15rem; } - .sm\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .sm\:max-h-64 { + max-height: 16rem; } - .sm\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .sm\:max-h-72 { + max-height: 18rem; } - .sm\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .sm\:max-h-80 { + max-height: 20rem; } - .sm\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .sm\:max-h-96 { + max-height: 24rem; } - .sm\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .sm\:max-h-px { + max-height: 1px; } - .sm\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .sm\:max-h-0\.5 { + max-height: 0.125rem; } - .sm\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .sm\:max-h-1\.5 { + max-height: 0.375rem; } - .sm\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .sm\:max-h-2\.5 { + max-height: 0.625rem; } - .sm\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .sm\:max-h-3\.5 { + max-height: 0.875rem; } - .sm\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .sm\:max-h-full { + max-height: 100%; } - .sm\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .sm\:max-h-screen { + max-height: 100vh; } - .sm\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .sm\:min-h-0 { + min-height: 0px; } - .sm\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .sm\:min-h-full { + min-height: 100%; } - .sm\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .sm\:min-h-screen { + min-height: 100vh; } - .sm\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .sm\:w-0 { + width: 0px; } - .sm\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .sm\:w-1 { + width: 0.25rem; } - .sm\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .sm\:w-2 { + width: 0.5rem; } - .sm\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .sm\:w-3 { + width: 0.75rem; } - .sm\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .sm\:w-4 { + width: 1rem; } - .sm\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .sm\:w-5 { + width: 1.25rem; } - .sm\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .sm\:w-6 { + width: 1.5rem; } - .sm\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .sm\:w-7 { + width: 1.75rem; } - .sm\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .sm\:w-8 { + width: 2rem; } - .sm\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .sm\:w-9 { + width: 2.25rem; } - .sm\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .sm\:w-10 { + width: 2.5rem; } - .sm\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .sm\:w-11 { + width: 2.75rem; } - .sm\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .sm\:w-12 { + width: 3rem; } - .sm\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .sm\:w-14 { + width: 3.5rem; } - .sm\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .sm\:w-16 { + width: 4rem; } - .sm\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .sm\:w-20 { + width: 5rem; } - .sm\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .sm\:w-24 { + width: 6rem; } - .sm\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .sm\:w-28 { + width: 7rem; } - .sm\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .sm\:w-32 { + width: 8rem; } - .sm\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .sm\:w-36 { + width: 9rem; } - .sm\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .sm\:w-40 { + width: 10rem; } - .sm\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .sm\:w-44 { + width: 11rem; } - .sm\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .sm\:w-48 { + width: 12rem; } - .sm\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .sm\:w-52 { + width: 13rem; } - .sm\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .sm\:w-56 { + width: 14rem; } - .sm\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .sm\:w-60 { + width: 15rem; } - .sm\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .sm\:w-64 { + width: 16rem; } - .sm\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .sm\:w-72 { + width: 18rem; } - .sm\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .sm\:w-80 { + width: 20rem; } - .sm\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .sm\:w-96 { + width: 24rem; } - .sm\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .sm\:w-auto { + width: auto; } - .sm\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .sm\:w-px { + width: 1px; } - .sm\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .sm\:w-0\.5 { + width: 0.125rem; } - .sm\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .sm\:w-1\.5 { + width: 0.375rem; } - .sm\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .sm\:w-2\.5 { + width: 0.625rem; } - .sm\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .sm\:w-3\.5 { + width: 0.875rem; } - .sm\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .sm\:w-1\/2 { + width: 50%; } - .sm\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .sm\:w-1\/3 { + width: 33.333333%; } - .sm\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .sm\:w-2\/3 { + width: 66.666667%; } - .sm\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .sm\:w-1\/4 { + width: 25%; } - .sm\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .sm\:w-2\/4 { + width: 50%; } - .sm\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .sm\:w-3\/4 { + width: 75%; } - .sm\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .sm\:w-1\/5 { + width: 20%; } - .sm\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .sm\:w-2\/5 { + width: 40%; } - .sm\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .sm\:w-3\/5 { + width: 60%; } - .sm\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .sm\:w-4\/5 { + width: 80%; } - .sm\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .sm\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .sm\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .sm\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .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\:origin-bottom-right { + transform-origin: bottom right; } - .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\:origin-bottom { + transform-origin: bottom; } - .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\:origin-bottom-left { + transform-origin: bottom left; } - .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\:origin-left { + transform-origin: left; } - .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\:origin-top-left { + transform-origin: top left; } - .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\:translate-x-0 { + --tw-translate-x: 0px; } - .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\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .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\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .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\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .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\:translate-x-4 { + --tw-translate-x: 1rem; } - .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\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .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\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .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\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .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\:translate-x-8 { + --tw-translate-x: 2rem; } - .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\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .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\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .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\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .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\:translate-x-12 { + --tw-translate-x: 3rem; } - .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\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .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\:translate-x-16 { + --tw-translate-x: 4rem; } - .sm\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:translate-x-20 { + --tw-translate-x: 5rem; } - .sm\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:translate-x-24 { + --tw-translate-x: 6rem; } - .sm\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:translate-x-28 { + --tw-translate-x: 7rem; } - .sm\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:translate-x-32 { + --tw-translate-x: 8rem; } - .sm\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:translate-x-36 { + --tw-translate-x: 9rem; } - .sm\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:translate-x-40 { + --tw-translate-x: 10rem; } - .sm\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:translate-x-44 { + --tw-translate-x: 11rem; } - .sm\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:translate-x-48 { + --tw-translate-x: 12rem; } - .sm\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:translate-x-52 { + --tw-translate-x: 13rem; } - .sm\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:translate-x-56 { + --tw-translate-x: 14rem; } - .sm\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:translate-x-60 { + --tw-translate-x: 15rem; } - .sm\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:translate-x-64 { + --tw-translate-x: 16rem; } - .sm\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:translate-x-72 { + --tw-translate-x: 18rem; } - .sm\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:translate-x-80 { + --tw-translate-x: 20rem; } - .sm\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:translate-x-96 { + --tw-translate-x: 24rem; } - .sm\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:translate-x-px { + --tw-translate-x: 1px; } - .sm\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .sm\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .sm\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .sm\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .sm\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:-translate-x-0 { + --tw-translate-x: 0px; } - .sm\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .sm\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .sm\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .sm\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:-translate-x-4 { + --tw-translate-x: -1rem; } - .sm\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .sm\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .sm\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .sm\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:-translate-x-8 { + --tw-translate-x: -2rem; } - .sm\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .sm\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .sm\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .sm\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:-translate-x-12 { + --tw-translate-x: -3rem; } - .sm\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .sm\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:-translate-x-16 { + --tw-translate-x: -4rem; } - .sm\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:-translate-x-20 { + --tw-translate-x: -5rem; } - .sm\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:-translate-x-24 { + --tw-translate-x: -6rem; } - .sm\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:-translate-x-28 { + --tw-translate-x: -7rem; } - .sm\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:-translate-x-32 { + --tw-translate-x: -8rem; } - .sm\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:-translate-x-36 { + --tw-translate-x: -9rem; } - .sm\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:-translate-x-40 { + --tw-translate-x: -10rem; } - .sm\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:-translate-x-44 { + --tw-translate-x: -11rem; } - .sm\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:-translate-x-48 { + --tw-translate-x: -12rem; } - .sm\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:-translate-x-52 { + --tw-translate-x: -13rem; } - .sm\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:-translate-x-56 { + --tw-translate-x: -14rem; } - .sm\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:-translate-x-60 { + --tw-translate-x: -15rem; } - .sm\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:-translate-x-64 { + --tw-translate-x: -16rem; } - .sm\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:-translate-x-72 { + --tw-translate-x: -18rem; } - .sm\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:-translate-x-80 { + --tw-translate-x: -20rem; } - .sm\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:-translate-x-96 { + --tw-translate-x: -24rem; } - .sm\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:-translate-x-px { + --tw-translate-x: -1px; } - .sm\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .sm\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .sm\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .sm\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .sm\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .sm\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .sm\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .sm\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .sm\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .sm\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .sm\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:translate-x-full { + --tw-translate-x: 100%; } - .sm\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .sm\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .sm\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .sm\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .sm\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .sm\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .sm\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:-translate-x-full { + --tw-translate-x: -100%; } - .sm\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:translate-y-0 { + --tw-translate-y: 0px; } - .sm\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .sm\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .sm\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .sm\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:translate-y-4 { + --tw-translate-y: 1rem; } - .sm\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .sm\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .sm\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .sm\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:translate-y-8 { + --tw-translate-y: 2rem; } - .sm\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .sm\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .sm\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .sm\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:translate-y-12 { + --tw-translate-y: 3rem; } - .sm\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .sm\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:translate-y-16 { + --tw-translate-y: 4rem; } - .sm\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .sm\:translate-y-20 { + --tw-translate-y: 5rem; } - .sm\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .sm\:translate-y-24 { + --tw-translate-y: 6rem; } - .sm\:focus\:to-black:focus { - --tw-gradient-to: #000; + .sm\:translate-y-28 { + --tw-translate-y: 7rem; } - .sm\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .sm\:translate-y-32 { + --tw-translate-y: 8rem; } - .sm\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .sm\:translate-y-36 { + --tw-translate-y: 9rem; } - .sm\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .sm\:translate-y-40 { + --tw-translate-y: 10rem; } - .sm\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .sm\:translate-y-44 { + --tw-translate-y: 11rem; } - .sm\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .sm\:translate-y-48 { + --tw-translate-y: 12rem; } - .sm\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .sm\:translate-y-52 { + --tw-translate-y: 13rem; } - .sm\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .sm\:translate-y-56 { + --tw-translate-y: 14rem; } - .sm\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .sm\:translate-y-60 { + --tw-translate-y: 15rem; } - .sm\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .sm\:translate-y-64 { + --tw-translate-y: 16rem; } - .sm\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .sm\:translate-y-72 { + --tw-translate-y: 18rem; } - .sm\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .sm\:translate-y-80 { + --tw-translate-y: 20rem; } - .sm\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .sm\:translate-y-96 { + --tw-translate-y: 24rem; } - .sm\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .sm\:translate-y-px { + --tw-translate-y: 1px; } - .sm\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .sm\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .sm\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .sm\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .sm\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .sm\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .sm\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .sm\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .sm\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .sm\:-translate-y-0 { + --tw-translate-y: 0px; } - .sm\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .sm\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .sm\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .sm\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .sm\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .sm\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .sm\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .sm\:-translate-y-4 { + --tw-translate-y: -1rem; } - .sm\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .sm\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .sm\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .sm\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .sm\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .sm\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .sm\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .sm\:-translate-y-8 { + --tw-translate-y: -2rem; } - .sm\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .sm\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .sm\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .sm\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .sm\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .sm\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .sm\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .sm\:-translate-y-12 { + --tw-translate-y: -3rem; } - .sm\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .sm\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .sm\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .sm\:-translate-y-16 { + --tw-translate-y: -4rem; } - .sm\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .sm\:-translate-y-20 { + --tw-translate-y: -5rem; } - .sm\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .sm\:-translate-y-24 { + --tw-translate-y: -6rem; } - .sm\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .sm\:-translate-y-28 { + --tw-translate-y: -7rem; } - .sm\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .sm\:-translate-y-32 { + --tw-translate-y: -8rem; } - .sm\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .sm\:-translate-y-36 { + --tw-translate-y: -9rem; } - .sm\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .sm\:-translate-y-40 { + --tw-translate-y: -10rem; } - .sm\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .sm\:-translate-y-44 { + --tw-translate-y: -11rem; } - .sm\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .sm\:-translate-y-48 { + --tw-translate-y: -12rem; } - .sm\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .sm\:-translate-y-52 { + --tw-translate-y: -13rem; } - .sm\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .sm\:-translate-y-56 { + --tw-translate-y: -14rem; } - .sm\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .sm\:-translate-y-60 { + --tw-translate-y: -15rem; } - .sm\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .sm\:-translate-y-64 { + --tw-translate-y: -16rem; } - .sm\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .sm\:-translate-y-72 { + --tw-translate-y: -18rem; } - .sm\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .sm\:-translate-y-80 { + --tw-translate-y: -20rem; } - .sm\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .sm\:-translate-y-96 { + --tw-translate-y: -24rem; } - .sm\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .sm\:-translate-y-px { + --tw-translate-y: -1px; } - .sm\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .sm\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .sm\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .sm\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .sm\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .sm\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .sm\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .sm\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .sm\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .sm\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .sm\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .sm\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .sm\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .sm\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .sm\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .sm\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .sm\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .sm\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .sm\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .sm\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .sm\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .sm\:translate-y-full { + --tw-translate-y: 100%; } - .sm\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .sm\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .sm\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .sm\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .sm\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .sm\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .sm\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .sm\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .sm\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .sm\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .sm\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .sm\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .sm\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .sm\:-translate-y-full { + --tw-translate-y: -100%; } - .sm\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .sm\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .sm\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .sm\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .sm\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .sm\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .sm\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .sm\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .sm\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .sm\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .sm\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .sm\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .sm\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .sm\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .sm\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .sm\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .sm\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .sm\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .sm\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .sm\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .sm\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .sm\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .sm\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .sm\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .sm\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .sm\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .sm\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .sm\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .sm\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .sm\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .sm\:bg-bottom { - background-position: bottom; + .sm\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .sm\:bg-center { - background-position: center; + .sm\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .sm\:bg-left { - background-position: left; + .sm\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .sm\:bg-left-bottom { - background-position: left bottom; + .sm\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .sm\:bg-left-top { - background-position: left top; + .sm\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .sm\:bg-right { - background-position: right; + .sm\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .sm\:bg-right-bottom { - background-position: right bottom; + .sm\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .sm\:bg-right-top { - background-position: right top; + .sm\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .sm\:bg-top { - background-position: top; + .sm\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .sm\:bg-repeat { - background-repeat: repeat; + .sm\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .sm\:bg-no-repeat { - background-repeat: no-repeat; + .sm\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .sm\:bg-repeat-x { - background-repeat: repeat-x; + .sm\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .sm\:bg-repeat-y { - background-repeat: repeat-y; + .sm\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .sm\:bg-repeat-round { - background-repeat: round; + .sm\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .sm\:bg-repeat-space { - background-repeat: space; + .sm\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .sm\:bg-auto { - background-size: auto; + .sm\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .sm\:bg-cover { - background-size: cover; + .sm\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .sm\:bg-contain { - background-size: contain; + .sm\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .sm\:bg-origin-border { - background-origin: border-box; + .sm\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .sm\:bg-origin-padding { - background-origin: padding-box; + .sm\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .sm\:bg-origin-content { - background-origin: content-box; + .sm\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .sm\:border-collapse { - border-collapse: collapse; + .sm\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .sm\:border-separate { - border-collapse: separate; + .sm\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .sm\:border-transparent { - border-color: transparent; + .sm\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .sm\:border-current { - border-color: currentColor; + .sm\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .sm\:border-black { - border-color: #000; + .sm\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .sm\:border-white { - border-color: #fff; + .sm\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .sm\:border-gray-50 { - border-color: #f9fafb; + .sm\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .sm\:border-gray-100 { - border-color: #f3f4f6; + .sm\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .sm\:border-gray-200 { - border-color: #e5e7eb; + .sm\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .sm\:border-gray-300 { - border-color: #d1d5db; + .sm\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .sm\:border-gray-400 { - border-color: #9ca3af; + .sm\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .sm\:border-gray-500 { - border-color: #6b7280; + .sm\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .sm\:border-gray-600 { - border-color: #4b5563; + .sm\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .sm\:border-gray-700 { - border-color: #374151; + .sm\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .sm\:border-gray-800 { - border-color: #1f2937; + .sm\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .sm\:border-gray-900 { - border-color: #111827; + .sm\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .sm\:border-red-50 { - border-color: #fef2f2; + .sm\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .sm\:border-red-100 { - border-color: #fee2e2; + .sm\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .sm\:border-red-200 { - border-color: #fecaca; + .sm\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .sm\:border-red-300 { - border-color: #fca5a5; + .sm\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .sm\:border-red-400 { - border-color: #f87171; + .sm\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .sm\:border-red-500 { - border-color: #ef4444; + .sm\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .sm\:border-red-600 { - border-color: #dc2626; + .sm\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .sm\:border-red-700 { - border-color: #b91c1c; + .sm\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .sm\:border-red-800 { - border-color: #991b1b; + .sm\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .sm\:border-red-900 { - border-color: #7f1d1d; + .sm\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .sm\:border-yellow-50 { - border-color: #fffbeb; + .sm\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .sm\:border-yellow-100 { - border-color: #fef3c7; + .sm\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .sm\:border-yellow-200 { - border-color: #fde68a; + .sm\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .sm\:border-yellow-300 { - border-color: #fcd34d; + .sm\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .sm\:border-yellow-400 { - border-color: #fbbf24; + .sm\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .sm\:border-yellow-500 { - border-color: #f59e0b; + .sm\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .sm\:border-yellow-600 { - border-color: #d97706; + .sm\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .sm\:border-yellow-700 { - border-color: #b45309; + .sm\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .sm\:border-yellow-800 { - border-color: #92400e; + .sm\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .sm\:border-yellow-900 { - border-color: #78350f; + .sm\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .sm\:border-green-50 { - border-color: #ecfdf5; + .sm\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .sm\:border-green-100 { - border-color: #d1fae5; + .sm\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .sm\:border-green-200 { - border-color: #a7f3d0; + .sm\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .sm\:border-green-300 { - border-color: #6ee7b7; + .sm\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .sm\:border-green-400 { - border-color: #34d399; + .sm\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .sm\:border-green-500 { - border-color: #10b981; + .sm\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .sm\:border-green-600 { - border-color: #059669; + .sm\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .sm\:border-green-700 { - border-color: #047857; + .sm\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .sm\:border-green-800 { - border-color: #065f46; + .sm\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .sm\:border-green-900 { - border-color: #064e3b; + .sm\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .sm\:border-blue-50 { - border-color: #eff6ff; + .sm\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .sm\:border-blue-100 { - border-color: #dbeafe; + .sm\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .sm\:border-blue-200 { - border-color: #bfdbfe; + .sm\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .sm\:border-blue-300 { - border-color: #93c5fd; + .sm\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .sm\:border-blue-400 { - border-color: #60a5fa; + .sm\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .sm\:border-blue-500 { - border-color: #3b82f6; + .sm\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .sm\:border-blue-600 { - border-color: #2563eb; + .sm\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .sm\:border-blue-700 { - border-color: #1d4ed8; + .sm\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .sm\:border-blue-800 { - border-color: #1e40af; + .sm\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .sm\:border-blue-900 { - border-color: #1e3a8a; + .sm\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .sm\:border-indigo-50 { - border-color: #eef2ff; + .sm\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .sm\:border-indigo-100 { - border-color: #e0e7ff; + .sm\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .sm\:border-indigo-200 { - border-color: #c7d2fe; + .sm\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .sm\:border-indigo-300 { - border-color: #a5b4fc; + .sm\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .sm\:border-indigo-400 { - border-color: #818cf8; + .sm\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .sm\:border-indigo-500 { - border-color: #6366f1; + .sm\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .sm\:border-indigo-600 { - border-color: #4f46e5; + .sm\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .sm\:border-indigo-700 { - border-color: #4338ca; + .sm\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .sm\:border-indigo-800 { - border-color: #3730a3; + .sm\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .sm\:border-indigo-900 { - border-color: #312e81; + .sm\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .sm\:border-purple-50 { - border-color: #f5f3ff; + .sm\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .sm\:border-purple-100 { - border-color: #ede9fe; + .sm\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .sm\:border-purple-200 { - border-color: #ddd6fe; + .sm\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .sm\:border-purple-300 { - border-color: #c4b5fd; + .sm\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .sm\:border-purple-400 { - border-color: #a78bfa; + .sm\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .sm\:border-purple-500 { - border-color: #8b5cf6; + .sm\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .sm\:border-purple-600 { - border-color: #7c3aed; + .sm\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .sm\:border-purple-700 { - border-color: #6d28d9; + .sm\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .sm\:border-purple-800 { - border-color: #5b21b6; + .sm\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .sm\:border-purple-900 { - border-color: #4c1d95; + .sm\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .sm\:border-pink-50 { - border-color: #fdf2f8; + .sm\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .sm\:border-pink-100 { - border-color: #fce7f3; + .sm\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .sm\:border-pink-200 { - border-color: #fbcfe8; + .sm\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .sm\:border-pink-300 { - border-color: #f9a8d4; + .sm\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .sm\:border-pink-400 { - border-color: #f472b6; + .sm\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .sm\:border-pink-500 { - border-color: #ec4899; + .sm\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .sm\:border-pink-600 { - border-color: #db2777; + .sm\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .sm\:border-pink-700 { - border-color: #be185d; + .sm\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .sm\:border-pink-800 { - border-color: #9d174d; + .sm\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .sm\:border-pink-900 { - border-color: #831843; + .sm\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .group:hover .sm\:group-hover\:border-transparent { - border-color: transparent; + .sm\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .group:hover .sm\:group-hover\:border-current { - border-color: currentColor; + .sm\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .group:hover .sm\:group-hover\:border-black { - border-color: #000; + .sm\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .group:hover .sm\:group-hover\:border-white { - border-color: #fff; + .sm\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .group:hover .sm\:group-hover\:border-gray-50 { - border-color: #f9fafb; + .sm\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .group:hover .sm\:group-hover\:border-gray-100 { - border-color: #f3f4f6; + .sm\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .group:hover .sm\:group-hover\:border-gray-200 { - border-color: #e5e7eb; + .sm\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .group:hover .sm\:group-hover\:border-gray-300 { - border-color: #d1d5db; + .sm\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .group:hover .sm\:group-hover\:border-gray-400 { - border-color: #9ca3af; + .sm\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .group:hover .sm\:group-hover\:border-gray-500 { - border-color: #6b7280; + .sm\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .group:hover .sm\:group-hover\:border-gray-600 { - border-color: #4b5563; + .sm\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .group:hover .sm\:group-hover\:border-gray-700 { - border-color: #374151; + .sm\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .group:hover .sm\:group-hover\:border-gray-800 { - border-color: #1f2937; + .sm\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .group:hover .sm\:group-hover\:border-gray-900 { - border-color: #111827; + .sm\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .group:hover .sm\:group-hover\:border-red-50 { - border-color: #fef2f2; + .sm\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .group:hover .sm\:group-hover\:border-red-100 { - border-color: #fee2e2; + .sm\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .group:hover .sm\:group-hover\:border-red-200 { - border-color: #fecaca; + .sm\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .group:hover .sm\:group-hover\:border-red-300 { - border-color: #fca5a5; + .sm\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .group:hover .sm\:group-hover\:border-red-400 { - border-color: #f87171; + .sm\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .group:hover .sm\:group-hover\:border-red-500 { - border-color: #ef4444; + .sm\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .group:hover .sm\:group-hover\:border-red-600 { - border-color: #dc2626; + .sm\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .group:hover .sm\:group-hover\:border-red-700 { - border-color: #b91c1c; + .sm\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .group:hover .sm\:group-hover\:border-red-800 { - border-color: #991b1b; + .sm\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .group:hover .sm\:group-hover\:border-red-900 { - border-color: #7f1d1d; + .sm\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .group:hover .sm\:group-hover\:border-yellow-50 { - border-color: #fffbeb; + .sm\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .group:hover .sm\:group-hover\:border-yellow-100 { - border-color: #fef3c7; + .sm\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .group:hover .sm\:group-hover\:border-yellow-200 { - border-color: #fde68a; + .sm\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .group:hover .sm\:group-hover\:border-yellow-300 { - border-color: #fcd34d; + .sm\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .group:hover .sm\:group-hover\:border-yellow-400 { - border-color: #fbbf24; + .sm\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .group:hover .sm\:group-hover\:border-yellow-500 { - border-color: #f59e0b; + .sm\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .group:hover .sm\:group-hover\:border-yellow-600 { - border-color: #d97706; + .sm\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .group:hover .sm\:group-hover\:border-yellow-700 { - border-color: #b45309; + .sm\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .group:hover .sm\:group-hover\:border-yellow-800 { - border-color: #92400e; + .sm\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .group:hover .sm\:group-hover\:border-yellow-900 { - border-color: #78350f; + .sm\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .group:hover .sm\:group-hover\:border-green-50 { - border-color: #ecfdf5; + .sm\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .group:hover .sm\:group-hover\:border-green-100 { - border-color: #d1fae5; + .sm\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .group:hover .sm\:group-hover\:border-green-200 { - border-color: #a7f3d0; + .sm\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .group:hover .sm\:group-hover\:border-green-300 { - border-color: #6ee7b7; + .sm\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .group:hover .sm\:group-hover\:border-green-400 { - border-color: #34d399; + .sm\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .group:hover .sm\:group-hover\:border-green-500 { - border-color: #10b981; + .sm\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .group:hover .sm\:group-hover\:border-green-600 { - border-color: #059669; + .sm\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .group:hover .sm\:group-hover\:border-green-700 { - border-color: #047857; + .sm\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .group:hover .sm\:group-hover\:border-green-800 { - border-color: #065f46; + .sm\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .group:hover .sm\:group-hover\:border-green-900 { - border-color: #064e3b; + .sm\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .group:hover .sm\:group-hover\:border-blue-50 { - border-color: #eff6ff; + .sm\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .group:hover .sm\:group-hover\:border-blue-100 { - border-color: #dbeafe; + .sm\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .group:hover .sm\:group-hover\:border-blue-200 { - border-color: #bfdbfe; + .sm\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .sm\:group-hover\:border-blue-300 { - border-color: #93c5fd; + .sm\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .group:hover .sm\:group-hover\:border-blue-400 { - border-color: #60a5fa; + .sm\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .group:hover .sm\:group-hover\:border-blue-500 { - border-color: #3b82f6; + .sm\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .group:hover .sm\:group-hover\:border-blue-600 { - border-color: #2563eb; + .sm\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .group:hover .sm\:group-hover\:border-blue-700 { - border-color: #1d4ed8; + .sm\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .group:hover .sm\:group-hover\:border-blue-800 { - border-color: #1e40af; + .sm\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .group:hover .sm\:group-hover\:border-blue-900 { - border-color: #1e3a8a; + .sm\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .group:hover .sm\:group-hover\:border-indigo-50 { - border-color: #eef2ff; + .sm\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .sm\:group-hover\:border-indigo-100 { - border-color: #e0e7ff; + .sm\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .sm\:group-hover\:border-indigo-200 { - border-color: #c7d2fe; + .sm\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .sm\:group-hover\:border-indigo-300 { - border-color: #a5b4fc; + .sm\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .sm\:group-hover\:border-indigo-400 { - border-color: #818cf8; + .sm\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .sm\:group-hover\:border-indigo-500 { - border-color: #6366f1; + .sm\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .sm\:group-hover\:border-indigo-600 { - border-color: #4f46e5; + .sm\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .sm\:group-hover\:border-indigo-700 { - border-color: #4338ca; + .sm\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .sm\:group-hover\:border-indigo-800 { - border-color: #3730a3; + .sm\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .sm\:group-hover\:border-indigo-900 { - border-color: #312e81; + .sm\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .sm\:group-hover\:border-purple-50 { - border-color: #f5f3ff; + .sm\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .sm\:group-hover\:border-purple-100 { - border-color: #ede9fe; + .sm\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .sm\:group-hover\:border-purple-200 { - border-color: #ddd6fe; + .sm\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .sm\:group-hover\:border-purple-300 { - border-color: #c4b5fd; + .sm\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .sm\:group-hover\:border-purple-400 { - border-color: #a78bfa; + .sm\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .sm\:group-hover\:border-purple-500 { - border-color: #8b5cf6; + .sm\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .sm\:group-hover\:border-purple-600 { - border-color: #7c3aed; + .sm\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .sm\:group-hover\:border-purple-700 { - border-color: #6d28d9; + .sm\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .sm\:group-hover\:border-purple-800 { - border-color: #5b21b6; + .sm\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .sm\:group-hover\:border-purple-900 { - border-color: #4c1d95; + .sm\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .sm\:group-hover\:border-pink-50 { - border-color: #fdf2f8; + .sm\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .sm\:group-hover\:border-pink-100 { - border-color: #fce7f3; + .sm\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .sm\:group-hover\:border-pink-200 { - border-color: #fbcfe8; + .sm\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .sm\:group-hover\:border-pink-300 { - border-color: #f9a8d4; + .sm\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .sm\:group-hover\:border-pink-400 { - border-color: #f472b6; + .sm\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .sm\:group-hover\:border-pink-500 { - border-color: #ec4899; + .sm\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .sm\:group-hover\:border-pink-600 { - border-color: #db2777; + .sm\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .sm\:group-hover\:border-pink-700 { - border-color: #be185d; + .sm\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .sm\:group-hover\:border-pink-800 { - border-color: #9d174d; + .sm\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .sm\:group-hover\:border-pink-900 { - border-color: #831843; + .sm\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .sm\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .sm\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .sm\:focus-within\:border-current:focus-within { - border-color: currentColor; + .sm\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .sm\:focus-within\:border-black:focus-within { - border-color: #000; + .sm\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .sm\:focus-within\:border-white:focus-within { - border-color: #fff; + .sm\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .sm\:focus-within\:border-gray-50:focus-within { - border-color: #f9fafb; + .sm\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .sm\:focus-within\:border-gray-100:focus-within { - border-color: #f3f4f6; + .sm\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .sm\:focus-within\:border-gray-200:focus-within { - border-color: #e5e7eb; + .sm\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - .sm\:focus-within\:border-gray-300:focus-within { - border-color: #d1d5db; + .sm\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .sm\:focus-within\:border-gray-400:focus-within { - border-color: #9ca3af; + .sm\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .sm\:focus-within\:border-gray-500:focus-within { - border-color: #6b7280; + .sm\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .sm\:focus-within\:border-gray-600:focus-within { - border-color: #4b5563; + .sm\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .sm\:focus-within\:border-gray-700:focus-within { - border-color: #374151; + .sm\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .sm\:focus-within\:border-gray-800:focus-within { - border-color: #1f2937; + .sm\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .sm\:focus-within\:border-gray-900:focus-within { - border-color: #111827; + .sm\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .sm\:focus-within\:border-red-50:focus-within { - border-color: #fef2f2; + .sm\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .sm\:focus-within\:border-red-100:focus-within { - border-color: #fee2e2; + .sm\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .sm\:focus-within\:border-red-200:focus-within { - border-color: #fecaca; + .sm\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .sm\:focus-within\:border-red-300:focus-within { - border-color: #fca5a5; + .sm\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .sm\:focus-within\:border-red-400:focus-within { - border-color: #f87171; + .sm\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .sm\:focus-within\:border-red-500:focus-within { - border-color: #ef4444; + .sm\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .sm\:focus-within\:border-red-600:focus-within { - border-color: #dc2626; + .sm\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .sm\:focus-within\:border-red-700:focus-within { - border-color: #b91c1c; + .sm\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .sm\:focus-within\:border-red-800:focus-within { - border-color: #991b1b; + .sm\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .sm\:focus-within\:border-red-900:focus-within { - border-color: #7f1d1d; + .sm\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .sm\:focus-within\:border-yellow-50:focus-within { - border-color: #fffbeb; + .sm\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .sm\:focus-within\:border-yellow-100:focus-within { - border-color: #fef3c7; + .sm\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .sm\:focus-within\:border-yellow-200:focus-within { - border-color: #fde68a; + .sm\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .sm\:focus-within\:border-yellow-300:focus-within { - border-color: #fcd34d; + .sm\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .sm\:focus-within\:border-yellow-400:focus-within { - border-color: #fbbf24; + .sm\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .sm\:focus-within\:border-yellow-500:focus-within { - border-color: #f59e0b; + .sm\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .sm\:focus-within\:border-yellow-600:focus-within { - border-color: #d97706; + .sm\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .sm\:focus-within\:border-yellow-700:focus-within { - border-color: #b45309; + .sm\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .sm\:focus-within\:border-yellow-800:focus-within { - border-color: #92400e; + .sm\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .sm\:focus-within\:border-yellow-900:focus-within { - border-color: #78350f; + .sm\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .sm\:focus-within\:border-green-50:focus-within { - border-color: #ecfdf5; + .sm\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .sm\:focus-within\:border-green-100:focus-within { - border-color: #d1fae5; + .sm\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .sm\:focus-within\:border-green-200:focus-within { - border-color: #a7f3d0; + .sm\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .sm\:focus-within\:border-green-300:focus-within { - border-color: #6ee7b7; + .sm\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .sm\:focus-within\:border-green-400:focus-within { - border-color: #34d399; + .sm\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .sm\:focus-within\:border-green-500:focus-within { - border-color: #10b981; + .sm\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .sm\:focus-within\:border-green-600:focus-within { - border-color: #059669; + .sm\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .sm\:focus-within\:border-green-700:focus-within { - border-color: #047857; + .sm\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .sm\:focus-within\:border-green-800:focus-within { - border-color: #065f46; + .sm\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .sm\:focus-within\:border-green-900:focus-within { - border-color: #064e3b; + .sm\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .sm\:focus-within\:border-blue-50:focus-within { - border-color: #eff6ff; + .sm\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .sm\:focus-within\:border-blue-100:focus-within { - border-color: #dbeafe; + .sm\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .sm\:focus-within\:border-blue-200:focus-within { - border-color: #bfdbfe; + .sm\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .sm\:focus-within\:border-blue-300:focus-within { - border-color: #93c5fd; + .sm\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .sm\:focus-within\:border-blue-400:focus-within { - border-color: #60a5fa; + .sm\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .sm\:focus-within\:border-blue-500:focus-within { - border-color: #3b82f6; + .sm\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .sm\:focus-within\:border-blue-600:focus-within { - border-color: #2563eb; + .sm\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .sm\:focus-within\:border-blue-700:focus-within { - border-color: #1d4ed8; + .sm\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .sm\:focus-within\:border-blue-800:focus-within { - border-color: #1e40af; + .sm\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .sm\:focus-within\:border-blue-900:focus-within { - border-color: #1e3a8a; + .sm\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .sm\:focus-within\:border-indigo-50:focus-within { - border-color: #eef2ff; + .sm\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .sm\:focus-within\:border-indigo-100:focus-within { - border-color: #e0e7ff; + .sm\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .sm\:focus-within\:border-indigo-200:focus-within { - border-color: #c7d2fe; + .sm\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .sm\:focus-within\:border-indigo-300:focus-within { - border-color: #a5b4fc; + .sm\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .sm\:focus-within\:border-indigo-400:focus-within { - border-color: #818cf8; + .sm\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .sm\:focus-within\:border-indigo-500:focus-within { - border-color: #6366f1; + .sm\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .sm\:focus-within\:border-indigo-600:focus-within { - border-color: #4f46e5; + .sm\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .sm\:focus-within\:border-indigo-700:focus-within { - border-color: #4338ca; + .sm\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .sm\:focus-within\:border-indigo-800:focus-within { - border-color: #3730a3; + .sm\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .sm\:focus-within\:border-indigo-900:focus-within { - border-color: #312e81; + .sm\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .sm\:focus-within\:border-purple-50:focus-within { - border-color: #f5f3ff; + .sm\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .sm\:focus-within\:border-purple-100:focus-within { - border-color: #ede9fe; + .sm\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .sm\:focus-within\:border-purple-200:focus-within { - border-color: #ddd6fe; + .sm\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .sm\:focus-within\:border-purple-300:focus-within { - border-color: #c4b5fd; + .sm\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .sm\:focus-within\:border-purple-400:focus-within { - border-color: #a78bfa; + .sm\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .sm\:focus-within\:border-purple-500:focus-within { - border-color: #8b5cf6; + .sm\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .sm\:focus-within\:border-purple-600:focus-within { - border-color: #7c3aed; + .sm\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .sm\:focus-within\:border-purple-700:focus-within { - border-color: #6d28d9; + .sm\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .sm\:focus-within\:border-purple-800:focus-within { - border-color: #5b21b6; + .sm\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .sm\:focus-within\:border-purple-900:focus-within { - border-color: #4c1d95; + .sm\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .sm\:focus-within\:border-pink-50:focus-within { - border-color: #fdf2f8; + .sm\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .sm\:focus-within\:border-pink-100:focus-within { - border-color: #fce7f3; + .sm\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .sm\:focus-within\:border-pink-200:focus-within { - border-color: #fbcfe8; + .sm\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .sm\:focus-within\:border-pink-300:focus-within { - border-color: #f9a8d4; + .sm\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .sm\:focus-within\:border-pink-400:focus-within { - border-color: #f472b6; + .sm\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .sm\:focus-within\:border-pink-500:focus-within { - border-color: #ec4899; + .sm\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .sm\:focus-within\:border-pink-600:focus-within { - border-color: #db2777; + .sm\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .sm\:focus-within\:border-pink-700:focus-within { - border-color: #be185d; + .sm\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .sm\:focus-within\:border-pink-800:focus-within { - border-color: #9d174d; + .sm\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .sm\:focus-within\:border-pink-900:focus-within { - border-color: #831843; + .sm\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .sm\:hover\:border-transparent:hover { - border-color: transparent; + .sm\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .sm\:hover\:border-current:hover { - border-color: currentColor; + .sm\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .sm\:hover\:border-black:hover { - border-color: #000; + .sm\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .sm\:hover\:border-white:hover { - border-color: #fff; + .sm\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .sm\:hover\:border-gray-50:hover { - border-color: #f9fafb; + .sm\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .sm\:hover\:border-gray-100:hover { - border-color: #f3f4f6; + .sm\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .sm\:hover\:border-gray-200:hover { - border-color: #e5e7eb; + .sm\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .sm\:hover\:border-gray-300:hover { - border-color: #d1d5db; + .sm\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .sm\:hover\:border-gray-400:hover { - border-color: #9ca3af; + .sm\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .sm\:hover\:border-gray-500:hover { - border-color: #6b7280; + .sm\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .sm\:hover\:border-gray-600:hover { - border-color: #4b5563; + .sm\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .sm\:hover\:border-gray-700:hover { - border-color: #374151; + .sm\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .sm\:hover\:border-gray-800:hover { - border-color: #1f2937; + .sm\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .sm\:hover\:border-gray-900:hover { - border-color: #111827; + .sm\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .sm\:hover\:border-red-50:hover { - border-color: #fef2f2; + .sm\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .sm\:hover\:border-red-100:hover { - border-color: #fee2e2; + .sm\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .sm\:hover\:border-red-200:hover { - border-color: #fecaca; + .sm\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .sm\:hover\:border-red-300:hover { - border-color: #fca5a5; + .sm\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .sm\:hover\:border-red-400:hover { - border-color: #f87171; + .sm\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .sm\:hover\:border-red-500:hover { - border-color: #ef4444; + .sm\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .sm\:hover\:border-red-600:hover { - border-color: #dc2626; + .sm\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .sm\:hover\:border-red-700:hover { - border-color: #b91c1c; + .sm\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .sm\:hover\:border-red-800:hover { - border-color: #991b1b; + .sm\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .sm\:hover\:border-red-900:hover { - border-color: #7f1d1d; + .sm\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .sm\:hover\:border-yellow-50:hover { - border-color: #fffbeb; + .sm\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .sm\:hover\:border-yellow-100:hover { - border-color: #fef3c7; + .sm\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .sm\:hover\:border-yellow-200:hover { - border-color: #fde68a; + .sm\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .sm\:hover\:border-yellow-300:hover { - border-color: #fcd34d; + .sm\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .sm\:hover\:border-yellow-400:hover { - border-color: #fbbf24; + .sm\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .sm\:hover\:border-yellow-500:hover { - border-color: #f59e0b; + .sm\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .sm\:hover\:border-yellow-600:hover { - border-color: #d97706; + .sm\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .sm\:hover\:border-yellow-700:hover { - border-color: #b45309; + .sm\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .sm\:hover\:border-yellow-800:hover { - border-color: #92400e; + .sm\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .sm\:hover\:border-yellow-900:hover { - border-color: #78350f; + .sm\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .sm\:hover\:border-green-50:hover { - border-color: #ecfdf5; + .sm\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .sm\:hover\:border-green-100:hover { - border-color: #d1fae5; + .sm\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .sm\:hover\:border-green-200:hover { - border-color: #a7f3d0; + .sm\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .sm\:hover\:border-green-300:hover { - border-color: #6ee7b7; + .sm\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .sm\:hover\:border-green-400:hover { - border-color: #34d399; + .sm\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .sm\:hover\:border-green-500:hover { - border-color: #10b981; + .sm\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .sm\:hover\:border-green-600:hover { - border-color: #059669; + .sm\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .sm\:hover\:border-green-700:hover { - border-color: #047857; + .sm\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .sm\:hover\:border-green-800:hover { - border-color: #065f46; + .sm\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .sm\:hover\:border-green-900:hover { - border-color: #064e3b; + .sm\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .sm\:hover\:border-blue-50:hover { - border-color: #eff6ff; + .sm\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .sm\:hover\:border-blue-100:hover { - border-color: #dbeafe; + .sm\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .sm\:hover\:border-blue-200:hover { - border-color: #bfdbfe; + .sm\:rotate-0 { + --tw-rotate: 0deg; } - .sm\:hover\:border-blue-300:hover { - border-color: #93c5fd; + .sm\:rotate-1 { + --tw-rotate: 1deg; } - .sm\:hover\:border-blue-400:hover { - border-color: #60a5fa; + .sm\:rotate-2 { + --tw-rotate: 2deg; } - .sm\:hover\:border-blue-500:hover { - border-color: #3b82f6; + .sm\:rotate-3 { + --tw-rotate: 3deg; } - .sm\:hover\:border-blue-600:hover { - border-color: #2563eb; + .sm\:rotate-6 { + --tw-rotate: 6deg; } - .sm\:hover\:border-blue-700:hover { - border-color: #1d4ed8; + .sm\:rotate-12 { + --tw-rotate: 12deg; } - .sm\:hover\:border-blue-800:hover { - border-color: #1e40af; + .sm\:rotate-45 { + --tw-rotate: 45deg; } - .sm\:hover\:border-blue-900:hover { - border-color: #1e3a8a; + .sm\:rotate-90 { + --tw-rotate: 90deg; } - .sm\:hover\:border-indigo-50:hover { - border-color: #eef2ff; + .sm\:rotate-180 { + --tw-rotate: 180deg; } - .sm\:hover\:border-indigo-100:hover { - border-color: #e0e7ff; + .sm\:-rotate-180 { + --tw-rotate: -180deg; } - .sm\:hover\:border-indigo-200:hover { - border-color: #c7d2fe; + .sm\:-rotate-90 { + --tw-rotate: -90deg; } - .sm\:hover\:border-indigo-300:hover { - border-color: #a5b4fc; + .sm\:-rotate-45 { + --tw-rotate: -45deg; } - .sm\:hover\:border-indigo-400:hover { - border-color: #818cf8; + .sm\:-rotate-12 { + --tw-rotate: -12deg; } - .sm\:hover\:border-indigo-500:hover { - border-color: #6366f1; + .sm\:-rotate-6 { + --tw-rotate: -6deg; } - .sm\:hover\:border-indigo-600:hover { - border-color: #4f46e5; + .sm\:-rotate-3 { + --tw-rotate: -3deg; } - .sm\:hover\:border-indigo-700:hover { - border-color: #4338ca; + .sm\:-rotate-2 { + --tw-rotate: -2deg; } - .sm\:hover\:border-indigo-800:hover { - border-color: #3730a3; + .sm\:-rotate-1 { + --tw-rotate: -1deg; } - .sm\:hover\:border-indigo-900:hover { - border-color: #312e81; + .sm\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .sm\:hover\:border-purple-50:hover { - border-color: #f5f3ff; + .sm\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .sm\:hover\:border-purple-100:hover { - border-color: #ede9fe; + .sm\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .sm\:hover\:border-purple-200:hover { - border-color: #ddd6fe; + .sm\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .sm\:hover\:border-purple-300:hover { - border-color: #c4b5fd; + .sm\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .sm\:hover\:border-purple-400:hover { - border-color: #a78bfa; + .sm\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .sm\:hover\:border-purple-500:hover { - border-color: #8b5cf6; + .sm\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .sm\:hover\:border-purple-600:hover { - border-color: #7c3aed; + .sm\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .sm\:hover\:border-purple-700:hover { - border-color: #6d28d9; + .sm\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .sm\:hover\:border-purple-800:hover { - border-color: #5b21b6; + .sm\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .sm\:hover\:border-purple-900:hover { - border-color: #4c1d95; + .sm\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .sm\:hover\:border-pink-50:hover { - border-color: #fdf2f8; + .sm\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .sm\:hover\:border-pink-100:hover { - border-color: #fce7f3; + .sm\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .sm\:hover\:border-pink-200:hover { - border-color: #fbcfe8; + .sm\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .sm\:hover\:border-pink-300:hover { - border-color: #f9a8d4; + .sm\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .sm\:hover\:border-pink-400:hover { - border-color: #f472b6; + .sm\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .sm\:hover\:border-pink-500:hover { - border-color: #ec4899; + .sm\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .sm\:hover\:border-pink-600:hover { - border-color: #db2777; + .sm\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .sm\:hover\:border-pink-700:hover { - border-color: #be185d; + .sm\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .sm\:hover\:border-pink-800:hover { - border-color: #9d174d; + .sm\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .sm\:hover\:border-pink-900:hover { - border-color: #831843; + .sm\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .sm\:focus\:border-transparent:focus { - border-color: transparent; + .sm\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .sm\:focus\:border-current:focus { - border-color: currentColor; + .sm\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .sm\:focus\:border-black:focus { - border-color: #000; + .sm\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .sm\:focus\:border-white:focus { - border-color: #fff; + .sm\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .sm\:focus\:border-gray-50:focus { - border-color: #f9fafb; + .sm\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .sm\:focus\:border-gray-100:focus { - border-color: #f3f4f6; + .sm\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .sm\:focus\:border-gray-200:focus { - border-color: #e5e7eb; + .sm\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .sm\:focus\:border-gray-300:focus { - border-color: #d1d5db; + .sm\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .sm\:focus\:border-gray-400:focus { - border-color: #9ca3af; + .sm\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .sm\:focus\:border-gray-500:focus { - border-color: #6b7280; + .sm\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .sm\:focus\:border-gray-600:focus { - border-color: #4b5563; + .sm\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .sm\:focus\:border-gray-700:focus { - border-color: #374151; + .sm\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .sm\:focus\:border-gray-800:focus { - border-color: #1f2937; + .sm\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .sm\:focus\:border-gray-900:focus { - border-color: #111827; + .sm\:skew-x-0 { + --tw-skew-x: 0deg; } - .sm\:focus\:border-red-50:focus { - border-color: #fef2f2; + .sm\:skew-x-1 { + --tw-skew-x: 1deg; } - .sm\:focus\:border-red-100:focus { - border-color: #fee2e2; + .sm\:skew-x-2 { + --tw-skew-x: 2deg; } - .sm\:focus\:border-red-200:focus { - border-color: #fecaca; + .sm\:skew-x-3 { + --tw-skew-x: 3deg; } - .sm\:focus\:border-red-300:focus { - border-color: #fca5a5; + .sm\:skew-x-6 { + --tw-skew-x: 6deg; } - .sm\:focus\:border-red-400:focus { - border-color: #f87171; + .sm\:skew-x-12 { + --tw-skew-x: 12deg; } - .sm\:focus\:border-red-500:focus { - border-color: #ef4444; + .sm\:-skew-x-12 { + --tw-skew-x: -12deg; } - .sm\:focus\:border-red-600:focus { - border-color: #dc2626; + .sm\:-skew-x-6 { + --tw-skew-x: -6deg; } - .sm\:focus\:border-red-700:focus { - border-color: #b91c1c; + .sm\:-skew-x-3 { + --tw-skew-x: -3deg; } - .sm\:focus\:border-red-800:focus { - border-color: #991b1b; + .sm\:-skew-x-2 { + --tw-skew-x: -2deg; } - .sm\:focus\:border-red-900:focus { - border-color: #7f1d1d; + .sm\:-skew-x-1 { + --tw-skew-x: -1deg; } - .sm\:focus\:border-yellow-50:focus { - border-color: #fffbeb; + .sm\:skew-y-0 { + --tw-skew-y: 0deg; } - .sm\:focus\:border-yellow-100:focus { - border-color: #fef3c7; + .sm\:skew-y-1 { + --tw-skew-y: 1deg; } - .sm\:focus\:border-yellow-200:focus { - border-color: #fde68a; + .sm\:skew-y-2 { + --tw-skew-y: 2deg; } - .sm\:focus\:border-yellow-300:focus { - border-color: #fcd34d; + .sm\:skew-y-3 { + --tw-skew-y: 3deg; } - .sm\:focus\:border-yellow-400:focus { - border-color: #fbbf24; + .sm\:skew-y-6 { + --tw-skew-y: 6deg; } - .sm\:focus\:border-yellow-500:focus { - border-color: #f59e0b; + .sm\:skew-y-12 { + --tw-skew-y: 12deg; } - .sm\:focus\:border-yellow-600:focus { - border-color: #d97706; + .sm\:-skew-y-12 { + --tw-skew-y: -12deg; } - .sm\:focus\:border-yellow-700:focus { - border-color: #b45309; + .sm\:-skew-y-6 { + --tw-skew-y: -6deg; } - .sm\:focus\:border-yellow-800:focus { - border-color: #92400e; + .sm\:-skew-y-3 { + --tw-skew-y: -3deg; } - .sm\:focus\:border-yellow-900:focus { - border-color: #78350f; + .sm\:-skew-y-2 { + --tw-skew-y: -2deg; } - .sm\:focus\:border-green-50:focus { - border-color: #ecfdf5; + .sm\:-skew-y-1 { + --tw-skew-y: -1deg; } - .sm\:focus\:border-green-100:focus { - border-color: #d1fae5; + .sm\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .sm\:focus\:border-green-200:focus { - border-color: #a7f3d0; + .sm\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .sm\:focus\:border-green-300:focus { - border-color: #6ee7b7; + .sm\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .sm\:focus\:border-green-400:focus { - border-color: #34d399; + .sm\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .sm\:focus\:border-green-500:focus { - border-color: #10b981; + .sm\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .sm\:focus\:border-green-600:focus { - border-color: #059669; + .sm\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .sm\:focus\:border-green-700:focus { - border-color: #047857; + .sm\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .sm\:focus\:border-green-800:focus { - border-color: #065f46; + .sm\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .sm\:focus\:border-green-900:focus { - border-color: #064e3b; + .sm\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .sm\:focus\:border-blue-50:focus { - border-color: #eff6ff; + .sm\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .sm\:focus\:border-blue-100:focus { - border-color: #dbeafe; + .sm\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .sm\:focus\:border-blue-200:focus { - border-color: #bfdbfe; + .sm\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .sm\:focus\:border-blue-300:focus { - border-color: #93c5fd; + .sm\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .sm\:focus\:border-blue-400:focus { - border-color: #60a5fa; + .sm\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .sm\:focus\:border-blue-500:focus { - border-color: #3b82f6; + .sm\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .sm\:focus\:border-blue-600:focus { - border-color: #2563eb; + .sm\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .sm\:focus\:border-blue-700:focus { - border-color: #1d4ed8; + .sm\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .sm\:focus\:border-blue-800:focus { - border-color: #1e40af; + .sm\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .sm\:focus\:border-blue-900:focus { - border-color: #1e3a8a; + .sm\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .sm\:focus\:border-indigo-50:focus { - border-color: #eef2ff; + .sm\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .sm\:focus\:border-indigo-100:focus { - border-color: #e0e7ff; + .sm\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .sm\:focus\:border-indigo-200:focus { - border-color: #c7d2fe; + .sm\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .sm\:focus\:border-indigo-300:focus { - border-color: #a5b4fc; + .sm\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .sm\:focus\:border-indigo-400:focus { - border-color: #818cf8; + .sm\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .sm\:focus\:border-indigo-500:focus { - border-color: #6366f1; + .sm\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .sm\:focus\:border-indigo-600:focus { - border-color: #4f46e5; + .sm\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .sm\:focus\:border-indigo-700:focus { - border-color: #4338ca; + .sm\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .sm\:focus\:border-indigo-800:focus { - border-color: #3730a3; + .sm\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .sm\:focus\:border-indigo-900:focus { - border-color: #312e81; + .sm\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .sm\:focus\:border-purple-50:focus { - border-color: #f5f3ff; + .sm\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .sm\:focus\:border-purple-100:focus { - border-color: #ede9fe; + .sm\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .sm\:focus\:border-purple-200:focus { - border-color: #ddd6fe; + .sm\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .sm\:focus\:border-purple-300:focus { - border-color: #c4b5fd; + .sm\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .sm\:focus\:border-purple-400:focus { - border-color: #a78bfa; + .sm\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .sm\:focus\:border-purple-500:focus { - border-color: #8b5cf6; + .sm\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .sm\:focus\:border-purple-600:focus { - border-color: #7c3aed; + .sm\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .sm\:focus\:border-purple-700:focus { - border-color: #6d28d9; + .sm\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .sm\:focus\:border-purple-800:focus { - border-color: #5b21b6; + .sm\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .sm\:focus\:border-purple-900:focus { - border-color: #4c1d95; + .sm\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .sm\:focus\:border-pink-50:focus { - border-color: #fdf2f8; + .sm\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .sm\:focus\:border-pink-100:focus { - border-color: #fce7f3; + .sm\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .sm\:focus\:border-pink-200:focus { - border-color: #fbcfe8; + .sm\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .sm\:focus\:border-pink-300:focus { - border-color: #f9a8d4; + .sm\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .sm\:focus\:border-pink-400:focus { - border-color: #f472b6; + .sm\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .sm\:focus\:border-pink-500:focus { - border-color: #ec4899; + .sm\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:focus\:border-pink-600:focus { - border-color: #db2777; + .sm\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:focus\:border-pink-700:focus { - border-color: #be185d; + .sm\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:focus\:border-pink-800:focus { - border-color: #9d174d; + .sm\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:focus\:border-pink-900:focus { - border-color: #831843; + .sm\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:rounded-none { - border-radius: 0px; + .sm\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:rounded-sm { - border-radius: 0.125rem; + .sm\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:rounded { - border-radius: 0.25rem; + .sm\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:rounded-md { - border-radius: 0.375rem; + .sm\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:rounded-lg { - border-radius: 0.5rem; + .sm\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:rounded-xl { - border-radius: 0.75rem; + .sm\:scale-x-0 { + --tw-scale-x: 0; } - .sm\:rounded-2xl { - border-radius: 1rem; + .sm\:scale-x-50 { + --tw-scale-x: .5; } - .sm\:rounded-3xl { - border-radius: 1.5rem; + .sm\:scale-x-75 { + --tw-scale-x: .75; } - .sm\:rounded-full { - border-radius: 9999px; + .sm\:scale-x-90 { + --tw-scale-x: .9; } - .sm\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .sm\:scale-x-95 { + --tw-scale-x: .95; } - .sm\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .sm\:scale-x-100 { + --tw-scale-x: 1; } - .sm\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .sm\:scale-x-105 { + --tw-scale-x: 1.05; } - .sm\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .sm\:scale-x-110 { + --tw-scale-x: 1.1; } - .sm\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .sm\:scale-x-125 { + --tw-scale-x: 1.25; } - .sm\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .sm\:scale-x-150 { + --tw-scale-x: 1.5; } - .sm\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .sm\:scale-y-0 { + --tw-scale-y: 0; } - .sm\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .sm\:scale-y-50 { + --tw-scale-y: .5; } - .sm\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .sm\:scale-y-75 { + --tw-scale-y: .75; } - .sm\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .sm\:scale-y-90 { + --tw-scale-y: .9; } - .sm\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .sm\:scale-y-95 { + --tw-scale-y: .95; } - .sm\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .sm\:scale-y-100 { + --tw-scale-y: 1; } - .sm\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .sm\:scale-y-105 { + --tw-scale-y: 1.05; } - .sm\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .sm\:scale-y-110 { + --tw-scale-y: 1.1; } - .sm\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .sm\:scale-y-125 { + --tw-scale-y: 1.25; } - .sm\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .sm\:scale-y-150 { + --tw-scale-y: 1.5; } - .sm\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .sm\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .sm\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .sm\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .sm\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .sm\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .sm\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .sm\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .sm\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .sm\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .sm\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .sm\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .sm\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .sm\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .sm\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .sm\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .sm\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .sm\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .sm\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .sm\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .sm\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .sm\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .sm\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .sm\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .sm\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .sm\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .sm\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .sm\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .sm\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .sm\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .sm\:rounded-tl-none { - border-top-left-radius: 0px; + .sm\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .sm\:rounded-tr-none { - border-top-right-radius: 0px; + .sm\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .sm\:rounded-br-none { - border-bottom-right-radius: 0px; + .sm\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .sm\:rounded-bl-none { - border-bottom-left-radius: 0px; + .sm\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .sm\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .sm\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .sm\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .sm\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .sm\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .sm\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .sm\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .sm\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .sm\:rounded-tl { - border-top-left-radius: 0.25rem; + .sm\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .sm\:rounded-tr { - border-top-right-radius: 0.25rem; + .sm\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .sm\:rounded-br { - border-bottom-right-radius: 0.25rem; + .sm\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .sm\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .sm\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .sm\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .sm\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .sm\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .sm\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .sm\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .sm\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .sm\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .sm\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .sm\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .sm\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .sm\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .sm\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .sm\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .sm\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .sm\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .sm\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .sm\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .sm\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .sm\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .sm\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .sm\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .sm\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .sm\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .sm\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .sm\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .sm\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .sm\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .sm\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .sm\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .sm\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .sm\:rounded-tl-full { - border-top-left-radius: 9999px; + .sm\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .sm\:rounded-tr-full { - border-top-right-radius: 9999px; + .sm\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .sm\:rounded-br-full { - border-bottom-right-radius: 9999px; + .sm\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .sm\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .sm\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .sm\:border-solid { - border-style: solid; + .sm\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .sm\:border-dashed { - border-style: dashed; + .sm\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .sm\:border-dotted { - border-style: dotted; + .sm\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .sm\:border-double { - border-style: double; + .sm\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .sm\:border-none { - border-style: none; + .sm\:animate-none { + animation: none; } - .sm\:border-0 { - border-width: 0px; + .sm\:animate-spin { + animation: spin 1s linear infinite; } - .sm\:border-2 { - border-width: 2px; + .sm\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .sm\:border-4 { - border-width: 4px; + .sm\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .sm\:border-8 { - border-width: 8px; + .sm\:animate-bounce { + animation: bounce 1s infinite; } - .sm\:border { - border-width: 1px; + .sm\:cursor-auto { + cursor: auto; } - .sm\:border-t-0 { - border-top-width: 0px; + .sm\:cursor-default { + cursor: default; } - .sm\:border-r-0 { - border-right-width: 0px; + .sm\:cursor-pointer { + cursor: pointer; } - .sm\:border-b-0 { - border-bottom-width: 0px; + .sm\:cursor-wait { + cursor: wait; } - .sm\:border-l-0 { - border-left-width: 0px; + .sm\:cursor-text { + cursor: text; } - .sm\:border-t-2 { - border-top-width: 2px; + .sm\:cursor-move { + cursor: move; } - .sm\:border-r-2 { - border-right-width: 2px; + .sm\:cursor-help { + cursor: help; } - .sm\:border-b-2 { - border-bottom-width: 2px; + .sm\:cursor-not-allowed { + cursor: not-allowed; } - .sm\:border-l-2 { - border-left-width: 2px; + .sm\:select-none { + user-select: none; } - .sm\:border-t-4 { - border-top-width: 4px; + .sm\:select-text { + user-select: text; } - .sm\:border-r-4 { - border-right-width: 4px; + .sm\:select-all { + user-select: all; } - .sm\:border-b-4 { - border-bottom-width: 4px; + .sm\:select-auto { + user-select: auto; } - .sm\:border-l-4 { - border-left-width: 4px; + .sm\:resize-none { + resize: none; } - .sm\:border-t-8 { - border-top-width: 8px; + .sm\:resize-y { + resize: vertical; } - .sm\:border-r-8 { - border-right-width: 8px; + .sm\:resize-x { + resize: horizontal; } - .sm\:border-b-8 { - border-bottom-width: 8px; + .sm\:resize { + resize: both; } - .sm\:border-l-8 { - border-left-width: 8px; + .sm\:list-inside { + list-style-position: inside; } - .sm\:border-t { - border-top-width: 1px; + .sm\:list-outside { + list-style-position: outside; } - .sm\:border-r { - border-right-width: 1px; + .sm\:list-none { + list-style-type: none; } - .sm\:border-b { - border-bottom-width: 1px; + .sm\:list-disc { + list-style-type: disc; } - .sm\:border-l { - border-left-width: 1px; + .sm\:list-decimal { + list-style-type: decimal; } - .sm\:decoration-slice { - box-decoration-break: slice; + .sm\:appearance-none { + appearance: none; } - .sm\:decoration-clone { - box-decoration-break: clone; + .sm\:auto-cols-auto { + grid-auto-columns: auto; } - .sm\:box-border { - box-sizing: border-box; + .sm\:auto-cols-min { + grid-auto-columns: min-content; } - .sm\:box-content { - box-sizing: content-box; + .sm\:auto-cols-max { + grid-auto-columns: max-content; } - .sm\:cursor-auto { - cursor: auto; + .sm\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .sm\:cursor-default { - cursor: default; + .sm\:grid-flow-row { + grid-auto-flow: row; } - .sm\:cursor-pointer { - cursor: pointer; + .sm\:grid-flow-col { + grid-auto-flow: column; } - .sm\:cursor-wait { - cursor: wait; + .sm\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .sm\:cursor-text { - cursor: text; + .sm\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .sm\:cursor-move { - cursor: move; + .sm\:auto-rows-auto { + grid-auto-rows: auto; } - .sm\:cursor-help { - cursor: help; + .sm\:auto-rows-min { + grid-auto-rows: min-content; } - .sm\:cursor-not-allowed { - cursor: not-allowed; + .sm\:auto-rows-max { + grid-auto-rows: max-content; } - .sm\:block { - display: block; + .sm\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .sm\:inline-block { - display: inline-block; + .sm\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .sm\:inline { - display: inline; + .sm\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .sm\:flex { - display: flex; + .sm\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .sm\:inline-flex { - display: inline-flex; + .sm\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .sm\:table { - display: table; + .sm\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .sm\:inline-table { - display: inline-table; + .sm\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .sm\:table-caption { - display: table-caption; + .sm\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .sm\:table-cell { - display: table-cell; + .sm\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .sm\:table-column { - display: table-column; + .sm\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .sm\:table-column-group { - display: table-column-group; + .sm\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .sm\:table-footer-group { - display: table-footer-group; + .sm\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .sm\:table-header-group { - display: table-header-group; + .sm\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .sm\:table-row-group { - display: table-row-group; + .sm\:grid-cols-none { + grid-template-columns: none; } - .sm\:table-row { - display: table-row; + .sm\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .sm\:flow-root { - display: flow-root; + .sm\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .sm\:grid { - display: grid; + .sm\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .sm\:inline-grid { - display: inline-grid; + .sm\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .sm\:contents { - display: contents; + .sm\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .sm\:list-item { - display: list-item; + .sm\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .sm\:hidden { - display: none; + .sm\:grid-rows-none { + grid-template-rows: none; } .sm\:flex-row { @@ -36052,22 +36839,6 @@ video { flex-wrap: nowrap; } - .sm\:place-items-start { - place-items: start; - } - - .sm\:place-items-end { - place-items: end; - } - - .sm\:place-items-center { - place-items: center; - } - - .sm\:place-items-stretch { - place-items: stretch; - } - .sm\:place-content-center { place-content: center; } @@ -36096,44 +36867,20 @@ video { place-content: stretch; } - .sm\:place-self-auto { - place-self: auto; - } - - .sm\:place-self-start { - place-self: start; - } - - .sm\:place-self-end { - place-self: end; - } - - .sm\:place-self-center { - place-self: center; - } - - .sm\:place-self-stretch { - place-self: stretch; - } - - .sm\:items-start { - align-items: flex-start; - } - - .sm\:items-end { - align-items: flex-end; + .sm\:place-items-start { + place-items: start; } - .sm\:items-center { - align-items: center; + .sm\:place-items-end { + place-items: end; } - .sm\:items-baseline { - align-items: baseline; + .sm\:place-items-center { + place-items: center; } - .sm\:items-stretch { - align-items: stretch; + .sm\:place-items-stretch { + place-items: stretch; } .sm\:content-center { @@ -36160,24 +36907,48 @@ video { align-content: space-evenly; } - .sm\:self-auto { - align-self: auto; + .sm\:items-start { + align-items: flex-start; } - .sm\:self-start { - align-self: flex-start; + .sm\:items-end { + align-items: flex-end; } - .sm\:self-end { - align-self: flex-end; + .sm\:items-center { + align-items: center; } - .sm\:self-center { - align-self: center; + .sm\:items-baseline { + align-items: baseline; } - .sm\:self-stretch { - align-self: stretch; + .sm\:items-stretch { + align-items: stretch; + } + + .sm\:justify-start { + justify-content: flex-start; + } + + .sm\:justify-end { + justify-content: flex-end; + } + + .sm\:justify-center { + justify-content: center; + } + + .sm\:justify-between { + justify-content: space-between; + } + + .sm\:justify-around { + justify-content: space-around; + } + + .sm\:justify-evenly { + justify-content: space-evenly; } .sm\:justify-items-start { @@ -36196,10885 +36967,10587 @@ video { justify-items: stretch; } - .sm\:justify-start { - justify-content: flex-start; + .sm\:gap-0 { + gap: 0px; } - .sm\:justify-end { - justify-content: flex-end; + .sm\:gap-1 { + gap: 0.25rem; } - .sm\:justify-center { - justify-content: center; + .sm\:gap-2 { + gap: 0.5rem; } - .sm\:justify-between { - justify-content: space-between; + .sm\:gap-3 { + gap: 0.75rem; } - .sm\:justify-around { - justify-content: space-around; + .sm\:gap-4 { + gap: 1rem; } - .sm\:justify-evenly { - justify-content: space-evenly; + .sm\:gap-5 { + gap: 1.25rem; } - .sm\:justify-self-auto { - justify-self: auto; + .sm\:gap-6 { + gap: 1.5rem; } - .sm\:justify-self-start { - justify-self: start; + .sm\:gap-7 { + gap: 1.75rem; } - .sm\:justify-self-end { - justify-self: end; + .sm\:gap-8 { + gap: 2rem; } - .sm\:justify-self-center { - justify-self: center; + .sm\:gap-9 { + gap: 2.25rem; } - .sm\:justify-self-stretch { - justify-self: stretch; + .sm\:gap-10 { + gap: 2.5rem; } - .sm\:flex-1 { - flex: 1 1 0%; + .sm\:gap-11 { + gap: 2.75rem; } - .sm\:flex-auto { - flex: 1 1 auto; + .sm\:gap-12 { + gap: 3rem; } - .sm\:flex-initial { - flex: 0 1 auto; + .sm\:gap-14 { + gap: 3.5rem; } - .sm\:flex-none { - flex: none; + .sm\:gap-16 { + gap: 4rem; } - .sm\:flex-grow-0 { - flex-grow: 0; + .sm\:gap-20 { + gap: 5rem; } - .sm\:flex-grow { - flex-grow: 1; + .sm\:gap-24 { + gap: 6rem; } - .sm\:flex-shrink-0 { - flex-shrink: 0; + .sm\:gap-28 { + gap: 7rem; } - .sm\:flex-shrink { - flex-shrink: 1; + .sm\:gap-32 { + gap: 8rem; } - .sm\:order-1 { - order: 1; + .sm\:gap-36 { + gap: 9rem; } - .sm\:order-2 { - order: 2; + .sm\:gap-40 { + gap: 10rem; } - .sm\:order-3 { - order: 3; + .sm\:gap-44 { + gap: 11rem; } - .sm\:order-4 { - order: 4; + .sm\:gap-48 { + gap: 12rem; } - .sm\:order-5 { - order: 5; + .sm\:gap-52 { + gap: 13rem; } - .sm\:order-6 { - order: 6; + .sm\:gap-56 { + gap: 14rem; } - .sm\:order-7 { - order: 7; + .sm\:gap-60 { + gap: 15rem; } - .sm\:order-8 { - order: 8; + .sm\:gap-64 { + gap: 16rem; } - .sm\:order-9 { - order: 9; + .sm\:gap-72 { + gap: 18rem; } - .sm\:order-10 { - order: 10; + .sm\:gap-80 { + gap: 20rem; } - .sm\:order-11 { - order: 11; + .sm\:gap-96 { + gap: 24rem; } - .sm\:order-12 { - order: 12; + .sm\:gap-px { + gap: 1px; } - .sm\:order-first { - order: -9999; + .sm\:gap-0\.5 { + gap: 0.125rem; } - .sm\:order-last { - order: 9999; + .sm\:gap-1\.5 { + gap: 0.375rem; } - .sm\:order-none { - order: 0; + .sm\:gap-2\.5 { + gap: 0.625rem; } - .sm\:float-right { - float: right; + .sm\:gap-3\.5 { + gap: 0.875rem; } - .sm\:float-left { - float: left; + .sm\:gap-x-0 { + column-gap: 0px; } - .sm\:float-none { - float: none; + .sm\:gap-x-1 { + column-gap: 0.25rem; } - .sm\:clear-left { - clear: left; + .sm\:gap-x-2 { + column-gap: 0.5rem; } - .sm\:clear-right { - clear: right; + .sm\:gap-x-3 { + column-gap: 0.75rem; } - .sm\:clear-both { - clear: both; + .sm\:gap-x-4 { + column-gap: 1rem; } - .sm\:clear-none { - clear: none; + .sm\:gap-x-5 { + column-gap: 1.25rem; } - .sm\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .sm\:gap-x-6 { + column-gap: 1.5rem; } - .sm\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .sm\:gap-x-7 { + column-gap: 1.75rem; } - .sm\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .sm\:gap-x-8 { + column-gap: 2rem; } - .sm\:font-thin { - font-weight: 100; + .sm\:gap-x-9 { + column-gap: 2.25rem; } - .sm\:font-extralight { - font-weight: 200; + .sm\:gap-x-10 { + column-gap: 2.5rem; } - .sm\:font-light { - font-weight: 300; + .sm\:gap-x-11 { + column-gap: 2.75rem; } - .sm\:font-normal { - font-weight: 400; + .sm\:gap-x-12 { + column-gap: 3rem; } - .sm\:font-medium { - font-weight: 500; + .sm\:gap-x-14 { + column-gap: 3.5rem; } - .sm\:font-semibold { - font-weight: 600; + .sm\:gap-x-16 { + column-gap: 4rem; } - .sm\:font-bold { - font-weight: 700; + .sm\:gap-x-20 { + column-gap: 5rem; } - .sm\:font-extrabold { - font-weight: 800; + .sm\:gap-x-24 { + column-gap: 6rem; } - .sm\:font-black { - font-weight: 900; + .sm\:gap-x-28 { + column-gap: 7rem; } - .sm\:h-0 { - height: 0px; + .sm\:gap-x-32 { + column-gap: 8rem; } - .sm\:h-1 { - height: 0.25rem; + .sm\:gap-x-36 { + column-gap: 9rem; } - .sm\:h-2 { - height: 0.5rem; + .sm\:gap-x-40 { + column-gap: 10rem; } - .sm\:h-3 { - height: 0.75rem; + .sm\:gap-x-44 { + column-gap: 11rem; } - .sm\:h-4 { - height: 1rem; + .sm\:gap-x-48 { + column-gap: 12rem; } - .sm\:h-5 { - height: 1.25rem; + .sm\:gap-x-52 { + column-gap: 13rem; } - .sm\:h-6 { - height: 1.5rem; + .sm\:gap-x-56 { + column-gap: 14rem; } - .sm\:h-7 { - height: 1.75rem; + .sm\:gap-x-60 { + column-gap: 15rem; } - .sm\:h-8 { - height: 2rem; + .sm\:gap-x-64 { + column-gap: 16rem; } - .sm\:h-9 { - height: 2.25rem; + .sm\:gap-x-72 { + column-gap: 18rem; } - .sm\:h-10 { - height: 2.5rem; + .sm\:gap-x-80 { + column-gap: 20rem; } - .sm\:h-11 { - height: 2.75rem; + .sm\:gap-x-96 { + column-gap: 24rem; } - .sm\:h-12 { - height: 3rem; + .sm\:gap-x-px { + column-gap: 1px; } - .sm\:h-14 { - height: 3.5rem; + .sm\:gap-x-0\.5 { + column-gap: 0.125rem; } - .sm\:h-16 { - height: 4rem; + .sm\:gap-x-1\.5 { + column-gap: 0.375rem; } - .sm\:h-20 { - height: 5rem; + .sm\:gap-x-2\.5 { + column-gap: 0.625rem; } - .sm\:h-24 { - height: 6rem; + .sm\:gap-x-3\.5 { + column-gap: 0.875rem; } - .sm\:h-28 { - height: 7rem; + .sm\:gap-y-0 { + row-gap: 0px; } - .sm\:h-32 { - height: 8rem; + .sm\:gap-y-1 { + row-gap: 0.25rem; } - .sm\:h-36 { - height: 9rem; + .sm\:gap-y-2 { + row-gap: 0.5rem; } - .sm\:h-40 { - height: 10rem; + .sm\:gap-y-3 { + row-gap: 0.75rem; + } + + .sm\:gap-y-4 { + row-gap: 1rem; } - .sm\:h-44 { - height: 11rem; + .sm\:gap-y-5 { + row-gap: 1.25rem; } - .sm\:h-48 { - height: 12rem; + .sm\:gap-y-6 { + row-gap: 1.5rem; } - .sm\:h-52 { - height: 13rem; + .sm\:gap-y-7 { + row-gap: 1.75rem; } - .sm\:h-56 { - height: 14rem; + .sm\:gap-y-8 { + row-gap: 2rem; } - .sm\:h-60 { - height: 15rem; + .sm\:gap-y-9 { + row-gap: 2.25rem; } - .sm\:h-64 { - height: 16rem; + .sm\:gap-y-10 { + row-gap: 2.5rem; } - .sm\:h-72 { - height: 18rem; + .sm\:gap-y-11 { + row-gap: 2.75rem; } - .sm\:h-80 { - height: 20rem; + .sm\:gap-y-12 { + row-gap: 3rem; } - .sm\:h-96 { - height: 24rem; + .sm\:gap-y-14 { + row-gap: 3.5rem; } - .sm\:h-auto { - height: auto; + .sm\:gap-y-16 { + row-gap: 4rem; } - .sm\:h-px { - height: 1px; + .sm\:gap-y-20 { + row-gap: 5rem; } - .sm\:h-0\.5 { - height: 0.125rem; + .sm\:gap-y-24 { + row-gap: 6rem; } - .sm\:h-1\.5 { - height: 0.375rem; + .sm\:gap-y-28 { + row-gap: 7rem; } - .sm\:h-2\.5 { - height: 0.625rem; + .sm\:gap-y-32 { + row-gap: 8rem; } - .sm\:h-3\.5 { - height: 0.875rem; + .sm\:gap-y-36 { + row-gap: 9rem; } - .sm\:h-1\/2 { - height: 50%; + .sm\:gap-y-40 { + row-gap: 10rem; } - .sm\:h-1\/3 { - height: 33.333333%; + .sm\:gap-y-44 { + row-gap: 11rem; } - .sm\:h-2\/3 { - height: 66.666667%; + .sm\:gap-y-48 { + row-gap: 12rem; } - .sm\:h-1\/4 { - height: 25%; + .sm\:gap-y-52 { + row-gap: 13rem; } - .sm\:h-2\/4 { - height: 50%; + .sm\:gap-y-56 { + row-gap: 14rem; } - .sm\:h-3\/4 { - height: 75%; + .sm\:gap-y-60 { + row-gap: 15rem; } - .sm\:h-1\/5 { - height: 20%; + .sm\:gap-y-64 { + row-gap: 16rem; } - .sm\:h-2\/5 { - height: 40%; + .sm\:gap-y-72 { + row-gap: 18rem; } - .sm\:h-3\/5 { - height: 60%; + .sm\:gap-y-80 { + row-gap: 20rem; } - .sm\:h-4\/5 { - height: 80%; + .sm\:gap-y-96 { + row-gap: 24rem; } - .sm\:h-1\/6 { - height: 16.666667%; + .sm\:gap-y-px { + row-gap: 1px; } - .sm\:h-2\/6 { - height: 33.333333%; + .sm\:gap-y-0\.5 { + row-gap: 0.125rem; } - .sm\:h-3\/6 { - height: 50%; + .sm\:gap-y-1\.5 { + row-gap: 0.375rem; } - .sm\:h-4\/6 { - height: 66.666667%; + .sm\:gap-y-2\.5 { + row-gap: 0.625rem; } - .sm\:h-5\/6 { - height: 83.333333%; + .sm\:gap-y-3\.5 { + row-gap: 0.875rem; } - .sm\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .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\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .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\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .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\:leading-7 { - line-height: 1.75rem; + .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\:leading-8 { - line-height: 2rem; + .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\:leading-9 { - line-height: 2.25rem; + .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\:leading-10 { - line-height: 2.5rem; + .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\:leading-none { - line-height: 1; + .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\:leading-tight { - line-height: 1.25; + .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\:leading-snug { - line-height: 1.375; + .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\:leading-normal { - line-height: 1.5; + .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\:leading-relaxed { - line-height: 1.625; + .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\:leading-loose { - line-height: 2; + .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\:list-inside { - list-style-position: inside; + .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\:list-outside { - list-style-position: outside; + .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\:list-none { - list-style-type: none; + .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\:list-disc { - list-style-type: disc; + .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\:list-decimal { - list-style-type: decimal; + .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\:m-0 { - margin: 0px; + .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\:m-1 { - margin: 0.25rem; + .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\:m-2 { - margin: 0.5rem; + .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\:m-3 { - margin: 0.75rem; + .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\:m-4 { - margin: 1rem; + .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\:m-5 { - margin: 1.25rem; + .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\:m-6 { - margin: 1.5rem; + .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\:m-7 { - margin: 1.75rem; + .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\:m-8 { - margin: 2rem; + .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\:m-9 { - margin: 2.25rem; + .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\:m-10 { - margin: 2.5rem; + .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\:m-11 { - margin: 2.75rem; + .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\:m-12 { - margin: 3rem; + .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\:m-14 { - margin: 3.5rem; + .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\:m-16 { - margin: 4rem; + .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\:m-20 { - margin: 5rem; + .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\:m-24 { - margin: 6rem; + .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\:m-28 { - margin: 7rem; + .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\:m-32 { - margin: 8rem; + .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\:m-36 { - margin: 9rem; + .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\:m-40 { - margin: 10rem; + .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\:m-44 { - margin: 11rem; + .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\:m-48 { - margin: 12rem; + .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\:m-52 { - margin: 13rem; + .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\:m-56 { - margin: 14rem; + .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\:m-60 { - margin: 15rem; + .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\:m-64 { - margin: 16rem; + .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\:m-72 { - margin: 18rem; + .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\:m-80 { - margin: 20rem; + .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\:m-96 { - margin: 24rem; + .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\:m-auto { - margin: auto; + .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\:m-px { - margin: 1px; + .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\:m-0\.5 { - margin: 0.125rem; + .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\:m-1\.5 { - margin: 0.375rem; + .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\:m-2\.5 { - margin: 0.625rem; + .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\:m-3\.5 { - margin: 0.875rem; + .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\:-m-0 { - margin: 0px; + .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\:-m-1 { - margin: -0.25rem; + .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\:-m-2 { - margin: -0.5rem; + .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\:-m-3 { - margin: -0.75rem; + .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\:-m-4 { - margin: -1rem; + .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\:-m-5 { - margin: -1.25rem; + .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\:-m-6 { - margin: -1.5rem; + .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\:-m-7 { - margin: -1.75rem; + .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\:-m-8 { - margin: -2rem; + .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\:-m-9 { - margin: -2.25rem; + .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\:-m-10 { - margin: -2.5rem; + .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\:-m-11 { - margin: -2.75rem; + .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\:-m-12 { - margin: -3rem; + .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\:-m-14 { - margin: -3.5rem; + .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\:-m-16 { - margin: -4rem; + .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\:-m-20 { - margin: -5rem; + .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\:-m-24 { - margin: -6rem; + .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\:-m-28 { - margin: -7rem; + .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\:-m-32 { - margin: -8rem; + .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\:-m-36 { - margin: -9rem; + .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\:-m-40 { - margin: -10rem; + .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\:-m-44 { - margin: -11rem; + .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\:-m-48 { - margin: -12rem; + .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\:-m-52 { - margin: -13rem; + .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\:-m-56 { - margin: -14rem; + .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\:-m-60 { - margin: -15rem; + .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\:-m-64 { - margin: -16rem; + .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\:-m-72 { - margin: -18rem; + .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\:-m-80 { - margin: -20rem; + .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\:-m-96 { - margin: -24rem; + .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\:-m-px { - margin: -1px; + .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\:-m-0\.5 { - margin: -0.125rem; + .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\:-m-1\.5 { - margin: -0.375rem; + .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\:-m-2\.5 { - margin: -0.625rem; + .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\:-m-3\.5 { - margin: -0.875rem; + .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\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .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\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .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\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .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\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .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\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .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\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .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\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .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\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .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\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .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\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .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\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .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\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .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\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .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\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .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\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .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\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .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\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .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\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .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\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .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\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .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\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .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\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .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\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .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\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .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\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .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\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .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\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .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\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .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\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .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\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .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\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .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\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .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\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .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\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .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\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .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\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .sm\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .sm\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .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\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .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\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .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\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .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\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .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\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .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\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .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\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .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\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .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\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .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\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .sm\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .sm\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .sm\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .sm\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .sm\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .sm\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .sm\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .sm\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .sm\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .sm\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .sm\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .sm\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .sm\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .sm\:divide-black > :not([hidden]) ~ :not([hidden]) { + border-color: #000; } - .sm\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .sm\:divide-white > :not([hidden]) ~ :not([hidden]) { + border-color: #fff; } - .sm\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .sm\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9fafb; } - .sm\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #f3f4f6; } - .sm\:my-auto { - margin-top: auto; - margin-bottom: auto; + .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #e5e7eb; } - .sm\:mx-auto { - margin-left: auto; - margin-right: auto; + .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1d5db; } - .sm\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #9ca3af; } - .sm\:mx-px { - margin-left: 1px; - margin-right: 1px; + .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6b7280; } - .sm\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4b5563; } - .sm\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #374151; } - .sm\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1f2937; } - .sm\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #111827; } - .sm\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .sm\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef2f2; } - .sm\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fee2e2; } - .sm\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fecaca; } - .sm\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fca5a5; } - .sm\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f87171; } - .sm\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ef4444; } - .sm\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #dc2626; } - .sm\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b91c1c; } - .sm\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #991b1b; } - .sm\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #7f1d1d; } - .sm\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .sm\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fffbeb; } - .sm\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef3c7; } - .sm\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fde68a; } - .sm\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fcd34d; } - .sm\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbbf24; } - .sm\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #f59e0b; } - .sm\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #d97706; } - .sm\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b45309; } - .sm\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #92400e; } - .sm\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #78350f; } - .sm\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .sm\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #ecfdf5; } - .sm\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1fae5; } - .sm\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #a7f3d0; } - .sm\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #6ee7b7; } - .sm\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #34d399; } - .sm\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #10b981; } - .sm\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #059669; } - .sm\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #047857; } - .sm\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #065f46; } - .sm\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #064e3b; } - .sm\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .sm\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eff6ff; } - .sm\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #dbeafe; } - .sm\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #bfdbfe; } - .sm\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #93c5fd; } - .sm\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #60a5fa; } - .sm\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #3b82f6; } - .sm\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #2563eb; } - .sm\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #1d4ed8; } - .sm\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e40af; } - .sm\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e3a8a; } - .sm\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .sm\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eef2ff; } - .sm\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #e0e7ff; } - .sm\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #c7d2fe; } - .sm\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #a5b4fc; } - .sm\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #818cf8; } - .sm\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6366f1; } - .sm\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4f46e5; } - .sm\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #4338ca; } - .sm\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #3730a3; } - .sm\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #312e81; } - .sm\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .sm\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f5f3ff; } - .sm\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .sm\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #ede9fe; } - .sm\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .sm\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #ddd6fe; } - .sm\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .sm\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #c4b5fd; } - .sm\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .sm\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #a78bfa; } - .sm\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .sm\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #8b5cf6; } - .sm\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .sm\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #7c3aed; } - .sm\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .sm\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #6d28d9; } - .sm\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .sm\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #5b21b6; } - .sm\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .sm\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #4c1d95; } - .sm\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .sm\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fdf2f8; } - .sm\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .sm\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fce7f3; } - .sm\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .sm\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbcfe8; } - .sm\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .sm\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9a8d4; } - .sm\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .sm\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f472b6; } - .sm\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .sm\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ec4899; } - .sm\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .sm\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #db2777; } - .sm\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .sm\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #be185d; } - .sm\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .sm\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #9d174d; } - .sm\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .sm\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #831843; } - .sm\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .sm\:place-self-auto { + place-self: auto; } - .sm\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .sm\:place-self-start { + place-self: start; } - .sm\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .sm\:place-self-end { + place-self: end; } - .sm\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .sm\:place-self-center { + place-self: center; } - .sm\:mt-0 { - margin-top: 0px; + .sm\:place-self-stretch { + place-self: stretch; } - .sm\:mr-0 { - margin-right: 0px; + .sm\:self-auto { + align-self: auto; } - .sm\:mb-0 { - margin-bottom: 0px; + .sm\:self-start { + align-self: flex-start; } - .sm\:ml-0 { - margin-left: 0px; + .sm\:self-end { + align-self: flex-end; } - .sm\:mt-1 { - margin-top: 0.25rem; + .sm\:self-center { + align-self: center; } - .sm\:mr-1 { - margin-right: 0.25rem; + .sm\:self-stretch { + align-self: stretch; } - .sm\:mb-1 { - margin-bottom: 0.25rem; + .sm\:justify-self-auto { + justify-self: auto; } - .sm\:ml-1 { - margin-left: 0.25rem; + .sm\:justify-self-start { + justify-self: start; } - .sm\:mt-2 { - margin-top: 0.5rem; + .sm\:justify-self-end { + justify-self: end; } - .sm\:mr-2 { - margin-right: 0.5rem; + .sm\:justify-self-center { + justify-self: center; } - .sm\:mb-2 { - margin-bottom: 0.5rem; + .sm\:justify-self-stretch { + justify-self: stretch; } - .sm\:ml-2 { - margin-left: 0.5rem; + .sm\:overflow-auto { + overflow: auto; } - .sm\:mt-3 { - margin-top: 0.75rem; + .sm\:overflow-hidden { + overflow: hidden; } - .sm\:mr-3 { - margin-right: 0.75rem; + .sm\:overflow-visible { + overflow: visible; } - .sm\:mb-3 { - margin-bottom: 0.75rem; + .sm\:overflow-scroll { + overflow: scroll; } - .sm\:ml-3 { - margin-left: 0.75rem; + .sm\:overflow-x-auto { + overflow-x: auto; } - .sm\:mt-4 { - margin-top: 1rem; + .sm\:overflow-y-auto { + overflow-y: auto; } - .sm\:mr-4 { - margin-right: 1rem; + .sm\:overflow-x-hidden { + overflow-x: hidden; } - .sm\:mb-4 { - margin-bottom: 1rem; + .sm\:overflow-y-hidden { + overflow-y: hidden; } - .sm\:ml-4 { - margin-left: 1rem; + .sm\:overflow-x-visible { + overflow-x: visible; } - .sm\:mt-5 { - margin-top: 1.25rem; + .sm\:overflow-y-visible { + overflow-y: visible; } - .sm\:mr-5 { - margin-right: 1.25rem; + .sm\:overflow-x-scroll { + overflow-x: scroll; } - .sm\:mb-5 { - margin-bottom: 1.25rem; + .sm\:overflow-y-scroll { + overflow-y: scroll; } - .sm\:ml-5 { - margin-left: 1.25rem; + .sm\:overscroll-auto { + overscroll-behavior: auto; } - .sm\:mt-6 { - margin-top: 1.5rem; + .sm\:overscroll-contain { + overscroll-behavior: contain; } - .sm\:mr-6 { - margin-right: 1.5rem; + .sm\:overscroll-none { + overscroll-behavior: none; } - .sm\:mb-6 { - margin-bottom: 1.5rem; + .sm\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .sm\:ml-6 { - margin-left: 1.5rem; + .sm\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .sm\:mt-7 { - margin-top: 1.75rem; + .sm\:overscroll-y-none { + overscroll-behavior-y: none; } - .sm\:mr-7 { - margin-right: 1.75rem; + .sm\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .sm\:mb-7 { - margin-bottom: 1.75rem; + .sm\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .sm\:ml-7 { - margin-left: 1.75rem; + .sm\:overscroll-x-none { + overscroll-behavior-x: none; } - .sm\:mt-8 { - margin-top: 2rem; + .sm\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .sm\:mr-8 { - margin-right: 2rem; + .sm\:overflow-ellipsis { + text-overflow: ellipsis; } - .sm\:mb-8 { - margin-bottom: 2rem; + .sm\:overflow-clip { + text-overflow: clip; } - .sm\:ml-8 { - margin-left: 2rem; + .sm\:whitespace-normal { + white-space: normal; } - .sm\:mt-9 { - margin-top: 2.25rem; + .sm\:whitespace-nowrap { + white-space: nowrap; } - .sm\:mr-9 { - margin-right: 2.25rem; + .sm\:whitespace-pre { + white-space: pre; } - .sm\:mb-9 { - margin-bottom: 2.25rem; + .sm\:whitespace-pre-line { + white-space: pre-line; } - .sm\:ml-9 { - margin-left: 2.25rem; + .sm\:whitespace-pre-wrap { + white-space: pre-wrap; } - .sm\:mt-10 { - margin-top: 2.5rem; + .sm\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .sm\:mr-10 { - margin-right: 2.5rem; + .sm\:break-words { + overflow-wrap: break-word; } - .sm\:mb-10 { - margin-bottom: 2.5rem; + .sm\:break-all { + word-break: break-all; } - .sm\:ml-10 { - margin-left: 2.5rem; + .sm\:rounded-none { + border-radius: 0px; } - .sm\:mt-11 { - margin-top: 2.75rem; + .sm\:rounded-sm { + border-radius: 0.125rem; } - .sm\:mr-11 { - margin-right: 2.75rem; + .sm\:rounded { + border-radius: 0.25rem; } - .sm\:mb-11 { - margin-bottom: 2.75rem; + .sm\:rounded-md { + border-radius: 0.375rem; } - .sm\:ml-11 { - margin-left: 2.75rem; + .sm\:rounded-lg { + border-radius: 0.5rem; } - .sm\:mt-12 { - margin-top: 3rem; + .sm\:rounded-xl { + border-radius: 0.75rem; } - .sm\:mr-12 { - margin-right: 3rem; + .sm\:rounded-2xl { + border-radius: 1rem; } - .sm\:mb-12 { - margin-bottom: 3rem; + .sm\:rounded-3xl { + border-radius: 1.5rem; } - .sm\:ml-12 { - margin-left: 3rem; + .sm\:rounded-full { + border-radius: 9999px; } - .sm\:mt-14 { - margin-top: 3.5rem; + .sm\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .sm\:mr-14 { - margin-right: 3.5rem; + .sm\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .sm\:mb-14 { - margin-bottom: 3.5rem; + .sm\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .sm\:ml-14 { - margin-left: 3.5rem; + .sm\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .sm\:mt-16 { - margin-top: 4rem; + .sm\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .sm\:mr-16 { - margin-right: 4rem; + .sm\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .sm\:mb-16 { - margin-bottom: 4rem; + .sm\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .sm\:ml-16 { - margin-left: 4rem; + .sm\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .sm\:mt-20 { - margin-top: 5rem; + .sm\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .sm\:mr-20 { - margin-right: 5rem; + .sm\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .sm\:mb-20 { - margin-bottom: 5rem; + .sm\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .sm\:ml-20 { - margin-left: 5rem; + .sm\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .sm\:mt-24 { - margin-top: 6rem; + .sm\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .sm\:mr-24 { - margin-right: 6rem; + .sm\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .sm\:mb-24 { - margin-bottom: 6rem; + .sm\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .sm\:ml-24 { - margin-left: 6rem; + .sm\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .sm\:mt-28 { - margin-top: 7rem; + .sm\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .sm\:mr-28 { - margin-right: 7rem; + .sm\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .sm\:mb-28 { - margin-bottom: 7rem; + .sm\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .sm\:ml-28 { - margin-left: 7rem; + .sm\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .sm\:mt-32 { - margin-top: 8rem; + .sm\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .sm\:mr-32 { - margin-right: 8rem; + .sm\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .sm\:mb-32 { - margin-bottom: 8rem; + .sm\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .sm\:ml-32 { - margin-left: 8rem; + .sm\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .sm\:mt-36 { - margin-top: 9rem; + .sm\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .sm\:mr-36 { - margin-right: 9rem; + .sm\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .sm\:mb-36 { - margin-bottom: 9rem; + .sm\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .sm\:ml-36 { - margin-left: 9rem; + .sm\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .sm\:mt-40 { - margin-top: 10rem; + .sm\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .sm\:mr-40 { - margin-right: 10rem; + .sm\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .sm\:mb-40 { - margin-bottom: 10rem; + .sm\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .sm\:ml-40 { - margin-left: 10rem; + .sm\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .sm\:mt-44 { - margin-top: 11rem; + .sm\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .sm\:mr-44 { - margin-right: 11rem; + .sm\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .sm\:mb-44 { - margin-bottom: 11rem; + .sm\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .sm\:ml-44 { - margin-left: 11rem; + .sm\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .sm\:mt-48 { - margin-top: 12rem; + .sm\:rounded-tl-none { + border-top-left-radius: 0px; } - .sm\:mr-48 { - margin-right: 12rem; + .sm\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .sm\:mb-48 { - margin-bottom: 12rem; + .sm\:rounded-tl { + border-top-left-radius: 0.25rem; } - .sm\:ml-48 { - margin-left: 12rem; + .sm\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .sm\:mt-52 { - margin-top: 13rem; + .sm\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .sm\:mr-52 { - margin-right: 13rem; + .sm\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .sm\:mb-52 { - margin-bottom: 13rem; + .sm\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .sm\:ml-52 { - margin-left: 13rem; + .sm\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .sm\:mt-56 { - margin-top: 14rem; + .sm\:rounded-tl-full { + border-top-left-radius: 9999px; } - .sm\:mr-56 { - margin-right: 14rem; + .sm\:rounded-tr-none { + border-top-right-radius: 0px; } - .sm\:mb-56 { - margin-bottom: 14rem; + .sm\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .sm\:ml-56 { - margin-left: 14rem; + .sm\:rounded-tr { + border-top-right-radius: 0.25rem; } - .sm\:mt-60 { - margin-top: 15rem; + .sm\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .sm\:mr-60 { - margin-right: 15rem; + .sm\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .sm\:mb-60 { - margin-bottom: 15rem; + .sm\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .sm\:ml-60 { - margin-left: 15rem; + .sm\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .sm\:mt-64 { - margin-top: 16rem; + .sm\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .sm\:mr-64 { - margin-right: 16rem; + .sm\:rounded-tr-full { + border-top-right-radius: 9999px; } - .sm\:mb-64 { - margin-bottom: 16rem; + .sm\:rounded-br-none { + border-bottom-right-radius: 0px; } - .sm\:ml-64 { - margin-left: 16rem; + .sm\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .sm\:mt-72 { - margin-top: 18rem; + .sm\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .sm\:mr-72 { - margin-right: 18rem; + .sm\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .sm\:mb-72 { - margin-bottom: 18rem; + .sm\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .sm\:ml-72 { - margin-left: 18rem; + .sm\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .sm\:mt-80 { - margin-top: 20rem; + .sm\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .sm\:mr-80 { - margin-right: 20rem; + .sm\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .sm\:mb-80 { - margin-bottom: 20rem; + .sm\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .sm\:ml-80 { - margin-left: 20rem; + .sm\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .sm\:mt-96 { - margin-top: 24rem; + .sm\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .sm\:mr-96 { - margin-right: 24rem; + .sm\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .sm\:mb-96 { - margin-bottom: 24rem; + .sm\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .sm\:ml-96 { - margin-left: 24rem; + .sm\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .sm\:mt-auto { - margin-top: auto; + .sm\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .sm\:mr-auto { - margin-right: auto; + .sm\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .sm\:mb-auto { - margin-bottom: auto; + .sm\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .sm\:ml-auto { - margin-left: auto; + .sm\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .sm\:mt-px { - margin-top: 1px; + .sm\:border-0 { + border-width: 0px; } - .sm\:mr-px { - margin-right: 1px; + .sm\:border-2 { + border-width: 2px; } - .sm\:mb-px { - margin-bottom: 1px; + .sm\:border-4 { + border-width: 4px; } - .sm\:ml-px { - margin-left: 1px; + .sm\:border-8 { + border-width: 8px; } - .sm\:mt-0\.5 { - margin-top: 0.125rem; + .sm\:border { + border-width: 1px; } - .sm\:mr-0\.5 { - margin-right: 0.125rem; + .sm\:border-t-0 { + border-top-width: 0px; } - .sm\:mb-0\.5 { - margin-bottom: 0.125rem; + .sm\:border-t-2 { + border-top-width: 2px; } - .sm\:ml-0\.5 { - margin-left: 0.125rem; + .sm\:border-t-4 { + border-top-width: 4px; } - .sm\:mt-1\.5 { - margin-top: 0.375rem; + .sm\:border-t-8 { + border-top-width: 8px; } - .sm\:mr-1\.5 { - margin-right: 0.375rem; + .sm\:border-t { + border-top-width: 1px; } - .sm\:mb-1\.5 { - margin-bottom: 0.375rem; + .sm\:border-r-0 { + border-right-width: 0px; } - .sm\:ml-1\.5 { - margin-left: 0.375rem; + .sm\:border-r-2 { + border-right-width: 2px; } - .sm\:mt-2\.5 { - margin-top: 0.625rem; + .sm\:border-r-4 { + border-right-width: 4px; } - .sm\:mr-2\.5 { - margin-right: 0.625rem; + .sm\:border-r-8 { + border-right-width: 8px; } - .sm\:mb-2\.5 { - margin-bottom: 0.625rem; + .sm\:border-r { + border-right-width: 1px; } - .sm\:ml-2\.5 { - margin-left: 0.625rem; + .sm\:border-b-0 { + border-bottom-width: 0px; } - .sm\:mt-3\.5 { - margin-top: 0.875rem; + .sm\:border-b-2 { + border-bottom-width: 2px; } - .sm\:mr-3\.5 { - margin-right: 0.875rem; + .sm\:border-b-4 { + border-bottom-width: 4px; } - .sm\:mb-3\.5 { - margin-bottom: 0.875rem; + .sm\:border-b-8 { + border-bottom-width: 8px; } - .sm\:ml-3\.5 { - margin-left: 0.875rem; + .sm\:border-b { + border-bottom-width: 1px; } - .sm\:-mt-0 { - margin-top: 0px; + .sm\:border-l-0 { + border-left-width: 0px; } - .sm\:-mr-0 { - margin-right: 0px; + .sm\:border-l-2 { + border-left-width: 2px; } - .sm\:-mb-0 { - margin-bottom: 0px; + .sm\:border-l-4 { + border-left-width: 4px; } - .sm\:-ml-0 { - margin-left: 0px; + .sm\:border-l-8 { + border-left-width: 8px; } - .sm\:-mt-1 { - margin-top: -0.25rem; + .sm\:border-l { + border-left-width: 1px; } - .sm\:-mr-1 { - margin-right: -0.25rem; + .sm\:border-solid { + border-style: solid; } - .sm\:-mb-1 { - margin-bottom: -0.25rem; + .sm\:border-dashed { + border-style: dashed; } - .sm\:-ml-1 { - margin-left: -0.25rem; + .sm\:border-dotted { + border-style: dotted; } - .sm\:-mt-2 { - margin-top: -0.5rem; + .sm\:border-double { + border-style: double; } - .sm\:-mr-2 { - margin-right: -0.5rem; + .sm\:border-none { + border-style: none; } - .sm\:-mb-2 { - margin-bottom: -0.5rem; + .sm\:border-transparent { + border-color: transparent; } - .sm\:-ml-2 { - margin-left: -0.5rem; + .sm\:border-current { + border-color: currentColor; } - .sm\:-mt-3 { - margin-top: -0.75rem; + .sm\:border-black { + border-color: #000; } - .sm\:-mr-3 { - margin-right: -0.75rem; + .sm\:border-white { + border-color: #fff; } - .sm\:-mb-3 { - margin-bottom: -0.75rem; + .sm\:border-gray-50 { + border-color: #f9fafb; } - .sm\:-ml-3 { - margin-left: -0.75rem; + .sm\:border-gray-100 { + border-color: #f3f4f6; } - .sm\:-mt-4 { - margin-top: -1rem; + .sm\:border-gray-200 { + border-color: #e5e7eb; } - .sm\:-mr-4 { - margin-right: -1rem; + .sm\:border-gray-300 { + border-color: #d1d5db; } - .sm\:-mb-4 { - margin-bottom: -1rem; + .sm\:border-gray-400 { + border-color: #9ca3af; } - .sm\:-ml-4 { - margin-left: -1rem; + .sm\:border-gray-500 { + border-color: #6b7280; } - .sm\:-mt-5 { - margin-top: -1.25rem; + .sm\:border-gray-600 { + border-color: #4b5563; } - .sm\:-mr-5 { - margin-right: -1.25rem; + .sm\:border-gray-700 { + border-color: #374151; } - .sm\:-mb-5 { - margin-bottom: -1.25rem; + .sm\:border-gray-800 { + border-color: #1f2937; } - .sm\:-ml-5 { - margin-left: -1.25rem; + .sm\:border-gray-900 { + border-color: #111827; } - .sm\:-mt-6 { - margin-top: -1.5rem; + .sm\:border-red-50 { + border-color: #fef2f2; } - .sm\:-mr-6 { - margin-right: -1.5rem; + .sm\:border-red-100 { + border-color: #fee2e2; } - .sm\:-mb-6 { - margin-bottom: -1.5rem; + .sm\:border-red-200 { + border-color: #fecaca; } - .sm\:-ml-6 { - margin-left: -1.5rem; + .sm\:border-red-300 { + border-color: #fca5a5; } - .sm\:-mt-7 { - margin-top: -1.75rem; + .sm\:border-red-400 { + border-color: #f87171; } - .sm\:-mr-7 { - margin-right: -1.75rem; + .sm\:border-red-500 { + border-color: #ef4444; } - .sm\:-mb-7 { - margin-bottom: -1.75rem; + .sm\:border-red-600 { + border-color: #dc2626; } - .sm\:-ml-7 { - margin-left: -1.75rem; + .sm\:border-red-700 { + border-color: #b91c1c; } - .sm\:-mt-8 { - margin-top: -2rem; + .sm\:border-red-800 { + border-color: #991b1b; } - .sm\:-mr-8 { - margin-right: -2rem; + .sm\:border-red-900 { + border-color: #7f1d1d; } - .sm\:-mb-8 { - margin-bottom: -2rem; + .sm\:border-yellow-50 { + border-color: #fffbeb; } - .sm\:-ml-8 { - margin-left: -2rem; + .sm\:border-yellow-100 { + border-color: #fef3c7; } - .sm\:-mt-9 { - margin-top: -2.25rem; + .sm\:border-yellow-200 { + border-color: #fde68a; } - .sm\:-mr-9 { - margin-right: -2.25rem; + .sm\:border-yellow-300 { + border-color: #fcd34d; } - .sm\:-mb-9 { - margin-bottom: -2.25rem; + .sm\:border-yellow-400 { + border-color: #fbbf24; } - .sm\:-ml-9 { - margin-left: -2.25rem; + .sm\:border-yellow-500 { + border-color: #f59e0b; } - .sm\:-mt-10 { - margin-top: -2.5rem; + .sm\:border-yellow-600 { + border-color: #d97706; } - .sm\:-mr-10 { - margin-right: -2.5rem; + .sm\:border-yellow-700 { + border-color: #b45309; } - .sm\:-mb-10 { - margin-bottom: -2.5rem; + .sm\:border-yellow-800 { + border-color: #92400e; } - .sm\:-ml-10 { - margin-left: -2.5rem; + .sm\:border-yellow-900 { + border-color: #78350f; } - .sm\:-mt-11 { - margin-top: -2.75rem; + .sm\:border-green-50 { + border-color: #ecfdf5; } - .sm\:-mr-11 { - margin-right: -2.75rem; + .sm\:border-green-100 { + border-color: #d1fae5; } - .sm\:-mb-11 { - margin-bottom: -2.75rem; + .sm\:border-green-200 { + border-color: #a7f3d0; } - .sm\:-ml-11 { - margin-left: -2.75rem; + .sm\:border-green-300 { + border-color: #6ee7b7; } - .sm\:-mt-12 { - margin-top: -3rem; + .sm\:border-green-400 { + border-color: #34d399; } - .sm\:-mr-12 { - margin-right: -3rem; + .sm\:border-green-500 { + border-color: #10b981; } - .sm\:-mb-12 { - margin-bottom: -3rem; + .sm\:border-green-600 { + border-color: #059669; } - .sm\:-ml-12 { - margin-left: -3rem; + .sm\:border-green-700 { + border-color: #047857; } - .sm\:-mt-14 { - margin-top: -3.5rem; + .sm\:border-green-800 { + border-color: #065f46; } - .sm\:-mr-14 { - margin-right: -3.5rem; + .sm\:border-green-900 { + border-color: #064e3b; } - .sm\:-mb-14 { - margin-bottom: -3.5rem; + .sm\:border-blue-50 { + border-color: #eff6ff; } - .sm\:-ml-14 { - margin-left: -3.5rem; + .sm\:border-blue-100 { + border-color: #dbeafe; } - .sm\:-mt-16 { - margin-top: -4rem; + .sm\:border-blue-200 { + border-color: #bfdbfe; } - .sm\:-mr-16 { - margin-right: -4rem; + .sm\:border-blue-300 { + border-color: #93c5fd; } - .sm\:-mb-16 { - margin-bottom: -4rem; + .sm\:border-blue-400 { + border-color: #60a5fa; } - .sm\:-ml-16 { - margin-left: -4rem; + .sm\:border-blue-500 { + border-color: #3b82f6; } - .sm\:-mt-20 { - margin-top: -5rem; + .sm\:border-blue-600 { + border-color: #2563eb; } - .sm\:-mr-20 { - margin-right: -5rem; + .sm\:border-blue-700 { + border-color: #1d4ed8; } - .sm\:-mb-20 { - margin-bottom: -5rem; + .sm\:border-blue-800 { + border-color: #1e40af; } - .sm\:-ml-20 { - margin-left: -5rem; + .sm\:border-blue-900 { + border-color: #1e3a8a; } - .sm\:-mt-24 { - margin-top: -6rem; + .sm\:border-indigo-50 { + border-color: #eef2ff; } - .sm\:-mr-24 { - margin-right: -6rem; + .sm\:border-indigo-100 { + border-color: #e0e7ff; } - .sm\:-mb-24 { - margin-bottom: -6rem; + .sm\:border-indigo-200 { + border-color: #c7d2fe; } - .sm\:-ml-24 { - margin-left: -6rem; + .sm\:border-indigo-300 { + border-color: #a5b4fc; } - .sm\:-mt-28 { - margin-top: -7rem; + .sm\:border-indigo-400 { + border-color: #818cf8; } - .sm\:-mr-28 { - margin-right: -7rem; + .sm\:border-indigo-500 { + border-color: #6366f1; } - .sm\:-mb-28 { - margin-bottom: -7rem; + .sm\:border-indigo-600 { + border-color: #4f46e5; } - .sm\:-ml-28 { - margin-left: -7rem; + .sm\:border-indigo-700 { + border-color: #4338ca; } - .sm\:-mt-32 { - margin-top: -8rem; + .sm\:border-indigo-800 { + border-color: #3730a3; } - .sm\:-mr-32 { - margin-right: -8rem; + .sm\:border-indigo-900 { + border-color: #312e81; } - .sm\:-mb-32 { - margin-bottom: -8rem; + .sm\:border-purple-50 { + border-color: #f5f3ff; } - .sm\:-ml-32 { - margin-left: -8rem; + .sm\:border-purple-100 { + border-color: #ede9fe; } - .sm\:-mt-36 { - margin-top: -9rem; + .sm\:border-purple-200 { + border-color: #ddd6fe; } - .sm\:-mr-36 { - margin-right: -9rem; + .sm\:border-purple-300 { + border-color: #c4b5fd; } - .sm\:-mb-36 { - margin-bottom: -9rem; + .sm\:border-purple-400 { + border-color: #a78bfa; } - .sm\:-ml-36 { - margin-left: -9rem; + .sm\:border-purple-500 { + border-color: #8b5cf6; } - .sm\:-mt-40 { - margin-top: -10rem; + .sm\:border-purple-600 { + border-color: #7c3aed; } - .sm\:-mr-40 { - margin-right: -10rem; + .sm\:border-purple-700 { + border-color: #6d28d9; } - .sm\:-mb-40 { - margin-bottom: -10rem; + .sm\:border-purple-800 { + border-color: #5b21b6; } - .sm\:-ml-40 { - margin-left: -10rem; + .sm\:border-purple-900 { + border-color: #4c1d95; } - .sm\:-mt-44 { - margin-top: -11rem; + .sm\:border-pink-50 { + border-color: #fdf2f8; } - .sm\:-mr-44 { - margin-right: -11rem; + .sm\:border-pink-100 { + border-color: #fce7f3; } - .sm\:-mb-44 { - margin-bottom: -11rem; + .sm\:border-pink-200 { + border-color: #fbcfe8; } - .sm\:-ml-44 { - margin-left: -11rem; + .sm\:border-pink-300 { + border-color: #f9a8d4; } - .sm\:-mt-48 { - margin-top: -12rem; + .sm\:border-pink-400 { + border-color: #f472b6; } - .sm\:-mr-48 { - margin-right: -12rem; + .sm\:border-pink-500 { + border-color: #ec4899; } - .sm\:-mb-48 { - margin-bottom: -12rem; + .sm\:border-pink-600 { + border-color: #db2777; } - .sm\:-ml-48 { - margin-left: -12rem; + .sm\:border-pink-700 { + border-color: #be185d; } - .sm\:-mt-52 { - margin-top: -13rem; + .sm\:border-pink-800 { + border-color: #9d174d; } - .sm\:-mr-52 { - margin-right: -13rem; + .sm\:border-pink-900 { + border-color: #831843; } - .sm\:-mb-52 { - margin-bottom: -13rem; + .group:hover .sm\:group-hover\:border-transparent { + border-color: transparent; } - .sm\:-ml-52 { - margin-left: -13rem; + .group:hover .sm\:group-hover\:border-current { + border-color: currentColor; } - .sm\:-mt-56 { - margin-top: -14rem; + .group:hover .sm\:group-hover\:border-black { + border-color: #000; } - .sm\:-mr-56 { - margin-right: -14rem; + .group:hover .sm\:group-hover\:border-white { + border-color: #fff; } - .sm\:-mb-56 { - margin-bottom: -14rem; + .group:hover .sm\:group-hover\:border-gray-50 { + border-color: #f9fafb; } - .sm\:-ml-56 { - margin-left: -14rem; + .group:hover .sm\:group-hover\:border-gray-100 { + border-color: #f3f4f6; } - .sm\:-mt-60 { - margin-top: -15rem; + .group:hover .sm\:group-hover\:border-gray-200 { + border-color: #e5e7eb; } - .sm\:-mr-60 { - margin-right: -15rem; + .group:hover .sm\:group-hover\:border-gray-300 { + border-color: #d1d5db; } - .sm\:-mb-60 { - margin-bottom: -15rem; + .group:hover .sm\:group-hover\:border-gray-400 { + border-color: #9ca3af; } - .sm\:-ml-60 { - margin-left: -15rem; + .group:hover .sm\:group-hover\:border-gray-500 { + border-color: #6b7280; } - .sm\:-mt-64 { - margin-top: -16rem; + .group:hover .sm\:group-hover\:border-gray-600 { + border-color: #4b5563; } - .sm\:-mr-64 { - margin-right: -16rem; + .group:hover .sm\:group-hover\:border-gray-700 { + border-color: #374151; } - .sm\:-mb-64 { - margin-bottom: -16rem; + .group:hover .sm\:group-hover\:border-gray-800 { + border-color: #1f2937; } - .sm\:-ml-64 { - margin-left: -16rem; + .group:hover .sm\:group-hover\:border-gray-900 { + border-color: #111827; } - .sm\:-mt-72 { - margin-top: -18rem; + .group:hover .sm\:group-hover\:border-red-50 { + border-color: #fef2f2; } - .sm\:-mr-72 { - margin-right: -18rem; + .group:hover .sm\:group-hover\:border-red-100 { + border-color: #fee2e2; } - .sm\:-mb-72 { - margin-bottom: -18rem; + .group:hover .sm\:group-hover\:border-red-200 { + border-color: #fecaca; } - .sm\:-ml-72 { - margin-left: -18rem; + .group:hover .sm\:group-hover\:border-red-300 { + border-color: #fca5a5; } - .sm\:-mt-80 { - margin-top: -20rem; + .group:hover .sm\:group-hover\:border-red-400 { + border-color: #f87171; } - .sm\:-mr-80 { - margin-right: -20rem; + .group:hover .sm\:group-hover\:border-red-500 { + border-color: #ef4444; } - .sm\:-mb-80 { - margin-bottom: -20rem; + .group:hover .sm\:group-hover\:border-red-600 { + border-color: #dc2626; } - .sm\:-ml-80 { - margin-left: -20rem; + .group:hover .sm\:group-hover\:border-red-700 { + border-color: #b91c1c; } - .sm\:-mt-96 { - margin-top: -24rem; + .group:hover .sm\:group-hover\:border-red-800 { + border-color: #991b1b; } - .sm\:-mr-96 { - margin-right: -24rem; + .group:hover .sm\:group-hover\:border-red-900 { + border-color: #7f1d1d; } - .sm\:-mb-96 { - margin-bottom: -24rem; + .group:hover .sm\:group-hover\:border-yellow-50 { + border-color: #fffbeb; } - .sm\:-ml-96 { - margin-left: -24rem; + .group:hover .sm\:group-hover\:border-yellow-100 { + border-color: #fef3c7; } - .sm\:-mt-px { - margin-top: -1px; + .group:hover .sm\:group-hover\:border-yellow-200 { + border-color: #fde68a; } - .sm\:-mr-px { - margin-right: -1px; + .group:hover .sm\:group-hover\:border-yellow-300 { + border-color: #fcd34d; } - .sm\:-mb-px { - margin-bottom: -1px; + .group:hover .sm\:group-hover\:border-yellow-400 { + border-color: #fbbf24; } - .sm\:-ml-px { - margin-left: -1px; + .group:hover .sm\:group-hover\:border-yellow-500 { + border-color: #f59e0b; } - .sm\:-mt-0\.5 { - margin-top: -0.125rem; + .group:hover .sm\:group-hover\:border-yellow-600 { + border-color: #d97706; } - .sm\:-mr-0\.5 { - margin-right: -0.125rem; + .group:hover .sm\:group-hover\:border-yellow-700 { + border-color: #b45309; } - .sm\:-mb-0\.5 { - margin-bottom: -0.125rem; + .group:hover .sm\:group-hover\:border-yellow-800 { + border-color: #92400e; } - .sm\:-ml-0\.5 { - margin-left: -0.125rem; + .group:hover .sm\:group-hover\:border-yellow-900 { + border-color: #78350f; } - .sm\:-mt-1\.5 { - margin-top: -0.375rem; + .group:hover .sm\:group-hover\:border-green-50 { + border-color: #ecfdf5; } - .sm\:-mr-1\.5 { - margin-right: -0.375rem; + .group:hover .sm\:group-hover\:border-green-100 { + border-color: #d1fae5; } - .sm\:-mb-1\.5 { - margin-bottom: -0.375rem; + .group:hover .sm\:group-hover\:border-green-200 { + border-color: #a7f3d0; } - .sm\:-ml-1\.5 { - margin-left: -0.375rem; + .group:hover .sm\:group-hover\:border-green-300 { + border-color: #6ee7b7; } - .sm\:-mt-2\.5 { - margin-top: -0.625rem; + .group:hover .sm\:group-hover\:border-green-400 { + border-color: #34d399; } - .sm\:-mr-2\.5 { - margin-right: -0.625rem; + .group:hover .sm\:group-hover\:border-green-500 { + border-color: #10b981; } - .sm\:-mb-2\.5 { - margin-bottom: -0.625rem; + .group:hover .sm\:group-hover\:border-green-600 { + border-color: #059669; } - .sm\:-ml-2\.5 { - margin-left: -0.625rem; + .group:hover .sm\:group-hover\:border-green-700 { + border-color: #047857; } - .sm\:-mt-3\.5 { - margin-top: -0.875rem; + .group:hover .sm\:group-hover\:border-green-800 { + border-color: #065f46; } - .sm\:-mr-3\.5 { - margin-right: -0.875rem; + .group:hover .sm\:group-hover\:border-green-900 { + border-color: #064e3b; } - .sm\:-mb-3\.5 { - margin-bottom: -0.875rem; + .group:hover .sm\:group-hover\:border-blue-50 { + border-color: #eff6ff; } - .sm\:-ml-3\.5 { - margin-left: -0.875rem; + .group:hover .sm\:group-hover\:border-blue-100 { + border-color: #dbeafe; } - .sm\:max-h-0 { - max-height: 0px; + .group:hover .sm\:group-hover\:border-blue-200 { + border-color: #bfdbfe; } - .sm\:max-h-1 { - max-height: 0.25rem; + .group:hover .sm\:group-hover\:border-blue-300 { + border-color: #93c5fd; } - .sm\:max-h-2 { - max-height: 0.5rem; + .group:hover .sm\:group-hover\:border-blue-400 { + border-color: #60a5fa; } - .sm\:max-h-3 { - max-height: 0.75rem; + .group:hover .sm\:group-hover\:border-blue-500 { + border-color: #3b82f6; } - .sm\:max-h-4 { - max-height: 1rem; + .group:hover .sm\:group-hover\:border-blue-600 { + border-color: #2563eb; } - .sm\:max-h-5 { - max-height: 1.25rem; + .group:hover .sm\:group-hover\:border-blue-700 { + border-color: #1d4ed8; } - .sm\:max-h-6 { - max-height: 1.5rem; + .group:hover .sm\:group-hover\:border-blue-800 { + border-color: #1e40af; } - .sm\:max-h-7 { - max-height: 1.75rem; + .group:hover .sm\:group-hover\:border-blue-900 { + border-color: #1e3a8a; } - .sm\:max-h-8 { - max-height: 2rem; + .group:hover .sm\:group-hover\:border-indigo-50 { + border-color: #eef2ff; } - .sm\:max-h-9 { - max-height: 2.25rem; + .group:hover .sm\:group-hover\:border-indigo-100 { + border-color: #e0e7ff; } - .sm\:max-h-10 { - max-height: 2.5rem; + .group:hover .sm\:group-hover\:border-indigo-200 { + border-color: #c7d2fe; } - .sm\:max-h-11 { - max-height: 2.75rem; + .group:hover .sm\:group-hover\:border-indigo-300 { + border-color: #a5b4fc; } - .sm\:max-h-12 { - max-height: 3rem; + .group:hover .sm\:group-hover\:border-indigo-400 { + border-color: #818cf8; } - .sm\:max-h-14 { - max-height: 3.5rem; + .group:hover .sm\:group-hover\:border-indigo-500 { + border-color: #6366f1; } - .sm\:max-h-16 { - max-height: 4rem; + .group:hover .sm\:group-hover\:border-indigo-600 { + border-color: #4f46e5; } - .sm\:max-h-20 { - max-height: 5rem; + .group:hover .sm\:group-hover\:border-indigo-700 { + border-color: #4338ca; } - .sm\:max-h-24 { - max-height: 6rem; + .group:hover .sm\:group-hover\:border-indigo-800 { + border-color: #3730a3; } - .sm\:max-h-28 { - max-height: 7rem; + .group:hover .sm\:group-hover\:border-indigo-900 { + border-color: #312e81; } - .sm\:max-h-32 { - max-height: 8rem; + .group:hover .sm\:group-hover\:border-purple-50 { + border-color: #f5f3ff; } - .sm\:max-h-36 { - max-height: 9rem; + .group:hover .sm\:group-hover\:border-purple-100 { + border-color: #ede9fe; } - .sm\:max-h-40 { - max-height: 10rem; + .group:hover .sm\:group-hover\:border-purple-200 { + border-color: #ddd6fe; } - .sm\:max-h-44 { - max-height: 11rem; + .group:hover .sm\:group-hover\:border-purple-300 { + border-color: #c4b5fd; } - .sm\:max-h-48 { - max-height: 12rem; + .group:hover .sm\:group-hover\:border-purple-400 { + border-color: #a78bfa; } - .sm\:max-h-52 { - max-height: 13rem; + .group:hover .sm\:group-hover\:border-purple-500 { + border-color: #8b5cf6; } - .sm\:max-h-56 { - max-height: 14rem; + .group:hover .sm\:group-hover\:border-purple-600 { + border-color: #7c3aed; } - .sm\:max-h-60 { - max-height: 15rem; + .group:hover .sm\:group-hover\:border-purple-700 { + border-color: #6d28d9; } - .sm\:max-h-64 { - max-height: 16rem; + .group:hover .sm\:group-hover\:border-purple-800 { + border-color: #5b21b6; } - .sm\:max-h-72 { - max-height: 18rem; + .group:hover .sm\:group-hover\:border-purple-900 { + border-color: #4c1d95; } - .sm\:max-h-80 { - max-height: 20rem; + .group:hover .sm\:group-hover\:border-pink-50 { + border-color: #fdf2f8; } - .sm\:max-h-96 { - max-height: 24rem; + .group:hover .sm\:group-hover\:border-pink-100 { + border-color: #fce7f3; } - .sm\:max-h-px { - max-height: 1px; + .group:hover .sm\:group-hover\:border-pink-200 { + border-color: #fbcfe8; } - .sm\:max-h-0\.5 { - max-height: 0.125rem; + .group:hover .sm\:group-hover\:border-pink-300 { + border-color: #f9a8d4; } - .sm\:max-h-1\.5 { - max-height: 0.375rem; + .group:hover .sm\:group-hover\:border-pink-400 { + border-color: #f472b6; } - .sm\:max-h-2\.5 { - max-height: 0.625rem; + .group:hover .sm\:group-hover\:border-pink-500 { + border-color: #ec4899; } - .sm\:max-h-3\.5 { - max-height: 0.875rem; + .group:hover .sm\:group-hover\:border-pink-600 { + border-color: #db2777; } - .sm\:max-h-full { - max-height: 100%; + .group:hover .sm\:group-hover\:border-pink-700 { + border-color: #be185d; } - .sm\:max-h-screen { - max-height: 100vh; + .group:hover .sm\:group-hover\:border-pink-800 { + border-color: #9d174d; } - .sm\:max-w-0 { - max-width: 0rem; + .group:hover .sm\:group-hover\:border-pink-900 { + border-color: #831843; } - .sm\:max-w-none { - max-width: none; + .sm\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .sm\:max-w-xs { - max-width: 20rem; + .sm\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .sm\:max-w-sm { - max-width: 24rem; + .sm\:focus-within\:border-black:focus-within { + border-color: #000; } - .sm\:max-w-md { - max-width: 28rem; + .sm\:focus-within\:border-white:focus-within { + border-color: #fff; } - .sm\:max-w-lg { - max-width: 32rem; + .sm\:focus-within\:border-gray-50:focus-within { + border-color: #f9fafb; } - .sm\:max-w-xl { - max-width: 36rem; + .sm\:focus-within\:border-gray-100:focus-within { + border-color: #f3f4f6; } - .sm\:max-w-2xl { - max-width: 42rem; + .sm\:focus-within\:border-gray-200:focus-within { + border-color: #e5e7eb; } - .sm\:max-w-3xl { - max-width: 48rem; + .sm\:focus-within\:border-gray-300:focus-within { + border-color: #d1d5db; } - .sm\:max-w-4xl { - max-width: 56rem; + .sm\:focus-within\:border-gray-400:focus-within { + border-color: #9ca3af; } - .sm\:max-w-5xl { - max-width: 64rem; + .sm\:focus-within\:border-gray-500:focus-within { + border-color: #6b7280; } - .sm\:max-w-6xl { - max-width: 72rem; + .sm\:focus-within\:border-gray-600:focus-within { + border-color: #4b5563; } - .sm\:max-w-7xl { - max-width: 80rem; + .sm\:focus-within\:border-gray-700:focus-within { + border-color: #374151; } - .sm\:max-w-full { - max-width: 100%; + .sm\:focus-within\:border-gray-800:focus-within { + border-color: #1f2937; } - .sm\:max-w-min { - max-width: min-content; + .sm\:focus-within\:border-gray-900:focus-within { + border-color: #111827; } - .sm\:max-w-max { - max-width: max-content; + .sm\:focus-within\:border-red-50:focus-within { + border-color: #fef2f2; } - .sm\:max-w-prose { - max-width: 65ch; + .sm\:focus-within\:border-red-100:focus-within { + border-color: #fee2e2; } - .sm\:max-w-screen-sm { - max-width: 640px; + .sm\:focus-within\:border-red-200:focus-within { + border-color: #fecaca; } - .sm\:max-w-screen-md { - max-width: 768px; + .sm\:focus-within\:border-red-300:focus-within { + border-color: #fca5a5; } - .sm\:max-w-screen-lg { - max-width: 1024px; + .sm\:focus-within\:border-red-400:focus-within { + border-color: #f87171; } - .sm\:max-w-screen-xl { - max-width: 1280px; + .sm\:focus-within\:border-red-500:focus-within { + border-color: #ef4444; } - .sm\:max-w-screen-2xl { - max-width: 1536px; + .sm\:focus-within\:border-red-600:focus-within { + border-color: #dc2626; } - .sm\:min-h-0 { - min-height: 0px; + .sm\:focus-within\:border-red-700:focus-within { + border-color: #b91c1c; } - .sm\:min-h-full { - min-height: 100%; + .sm\:focus-within\:border-red-800:focus-within { + border-color: #991b1b; } - .sm\:min-h-screen { - min-height: 100vh; + .sm\:focus-within\:border-red-900:focus-within { + border-color: #7f1d1d; } - .sm\:min-w-0 { - min-width: 0px; + .sm\:focus-within\:border-yellow-50:focus-within { + border-color: #fffbeb; } - .sm\:min-w-full { - min-width: 100%; + .sm\:focus-within\:border-yellow-100:focus-within { + border-color: #fef3c7; } - .sm\:min-w-min { - min-width: min-content; + .sm\:focus-within\:border-yellow-200:focus-within { + border-color: #fde68a; } - .sm\:min-w-max { - min-width: max-content; + .sm\:focus-within\:border-yellow-300:focus-within { + border-color: #fcd34d; } - .sm\:object-contain { - object-fit: contain; + .sm\:focus-within\:border-yellow-400:focus-within { + border-color: #fbbf24; } - .sm\:object-cover { - object-fit: cover; + .sm\:focus-within\:border-yellow-500:focus-within { + border-color: #f59e0b; } - .sm\:object-fill { - object-fit: fill; + .sm\:focus-within\:border-yellow-600:focus-within { + border-color: #d97706; } - .sm\:object-none { - object-fit: none; + .sm\:focus-within\:border-yellow-700:focus-within { + border-color: #b45309; } - .sm\:object-scale-down { - object-fit: scale-down; + .sm\:focus-within\:border-yellow-800:focus-within { + border-color: #92400e; } - .sm\:object-bottom { - object-position: bottom; + .sm\:focus-within\:border-yellow-900:focus-within { + border-color: #78350f; } - .sm\:object-center { - object-position: center; + .sm\:focus-within\:border-green-50:focus-within { + border-color: #ecfdf5; } - .sm\:object-left { - object-position: left; + .sm\:focus-within\:border-green-100:focus-within { + border-color: #d1fae5; } - .sm\:object-left-bottom { - object-position: left bottom; + .sm\:focus-within\:border-green-200:focus-within { + border-color: #a7f3d0; } - .sm\:object-left-top { - object-position: left top; + .sm\:focus-within\:border-green-300:focus-within { + border-color: #6ee7b7; } - .sm\:object-right { - object-position: right; + .sm\:focus-within\:border-green-400:focus-within { + border-color: #34d399; } - .sm\:object-right-bottom { - object-position: right bottom; + .sm\:focus-within\:border-green-500:focus-within { + border-color: #10b981; } - .sm\:object-right-top { - object-position: right top; + .sm\:focus-within\:border-green-600:focus-within { + border-color: #059669; } - .sm\:object-top { - object-position: top; + .sm\:focus-within\:border-green-700:focus-within { + border-color: #047857; } - .sm\:opacity-0 { - opacity: 0; + .sm\:focus-within\:border-green-800:focus-within { + border-color: #065f46; } - .sm\:opacity-5 { - opacity: 0.05; + .sm\:focus-within\:border-green-900:focus-within { + border-color: #064e3b; } - .sm\:opacity-10 { - opacity: 0.1; + .sm\:focus-within\:border-blue-50:focus-within { + border-color: #eff6ff; } - .sm\:opacity-20 { - opacity: 0.2; + .sm\:focus-within\:border-blue-100:focus-within { + border-color: #dbeafe; } - .sm\:opacity-25 { - opacity: 0.25; + .sm\:focus-within\:border-blue-200:focus-within { + border-color: #bfdbfe; } - .sm\:opacity-30 { - opacity: 0.3; + .sm\:focus-within\:border-blue-300:focus-within { + border-color: #93c5fd; } - .sm\:opacity-40 { - opacity: 0.4; + .sm\:focus-within\:border-blue-400:focus-within { + border-color: #60a5fa; } - .sm\:opacity-50 { - opacity: 0.5; + .sm\:focus-within\:border-blue-500:focus-within { + border-color: #3b82f6; } - .sm\:opacity-60 { - opacity: 0.6; + .sm\:focus-within\:border-blue-600:focus-within { + border-color: #2563eb; } - .sm\:opacity-70 { - opacity: 0.7; + .sm\:focus-within\:border-blue-700:focus-within { + border-color: #1d4ed8; } - .sm\:opacity-75 { - opacity: 0.75; + .sm\:focus-within\:border-blue-800:focus-within { + border-color: #1e40af; } - .sm\:opacity-80 { - opacity: 0.8; + .sm\:focus-within\:border-blue-900:focus-within { + border-color: #1e3a8a; } - .sm\:opacity-90 { - opacity: 0.9; + .sm\:focus-within\:border-indigo-50:focus-within { + border-color: #eef2ff; } - .sm\:opacity-95 { - opacity: 0.95; + .sm\:focus-within\:border-indigo-100:focus-within { + border-color: #e0e7ff; } - .sm\:opacity-100 { - opacity: 1; + .sm\:focus-within\:border-indigo-200:focus-within { + border-color: #c7d2fe; } - .group:hover .sm\:group-hover\:opacity-0 { - opacity: 0; + .sm\:focus-within\:border-indigo-300:focus-within { + border-color: #a5b4fc; } - .group:hover .sm\:group-hover\:opacity-5 { - opacity: 0.05; + .sm\:focus-within\:border-indigo-400:focus-within { + border-color: #818cf8; } - .group:hover .sm\:group-hover\:opacity-10 { - opacity: 0.1; + .sm\:focus-within\:border-indigo-500:focus-within { + border-color: #6366f1; } - .group:hover .sm\:group-hover\:opacity-20 { - opacity: 0.2; + .sm\:focus-within\:border-indigo-600:focus-within { + border-color: #4f46e5; } - .group:hover .sm\:group-hover\:opacity-25 { - opacity: 0.25; + .sm\:focus-within\:border-indigo-700:focus-within { + border-color: #4338ca; } - .group:hover .sm\:group-hover\:opacity-30 { - opacity: 0.3; + .sm\:focus-within\:border-indigo-800:focus-within { + border-color: #3730a3; } - .group:hover .sm\:group-hover\:opacity-40 { - opacity: 0.4; + .sm\:focus-within\:border-indigo-900:focus-within { + border-color: #312e81; } - .group:hover .sm\:group-hover\:opacity-50 { - opacity: 0.5; + .sm\:focus-within\:border-purple-50:focus-within { + border-color: #f5f3ff; } - .group:hover .sm\:group-hover\:opacity-60 { - opacity: 0.6; + .sm\:focus-within\:border-purple-100:focus-within { + border-color: #ede9fe; } - .group:hover .sm\:group-hover\:opacity-70 { - opacity: 0.7; + .sm\:focus-within\:border-purple-200:focus-within { + border-color: #ddd6fe; } - .group:hover .sm\:group-hover\:opacity-75 { - opacity: 0.75; + .sm\:focus-within\:border-purple-300:focus-within { + border-color: #c4b5fd; } - .group:hover .sm\:group-hover\:opacity-80 { - opacity: 0.8; + .sm\:focus-within\:border-purple-400:focus-within { + border-color: #a78bfa; } - .group:hover .sm\:group-hover\:opacity-90 { - opacity: 0.9; + .sm\:focus-within\:border-purple-500:focus-within { + border-color: #8b5cf6; } - .group:hover .sm\:group-hover\:opacity-95 { - opacity: 0.95; + .sm\:focus-within\:border-purple-600:focus-within { + border-color: #7c3aed; } - .group:hover .sm\:group-hover\:opacity-100 { - opacity: 1; + .sm\:focus-within\:border-purple-700:focus-within { + border-color: #6d28d9; } - .sm\:focus-within\:opacity-0:focus-within { - opacity: 0; + .sm\:focus-within\:border-purple-800:focus-within { + border-color: #5b21b6; } - .sm\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .sm\:focus-within\:border-purple-900:focus-within { + border-color: #4c1d95; } - .sm\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .sm\:focus-within\:border-pink-50:focus-within { + border-color: #fdf2f8; } - .sm\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .sm\:focus-within\:border-pink-100:focus-within { + border-color: #fce7f3; } - .sm\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .sm\:focus-within\:border-pink-200:focus-within { + border-color: #fbcfe8; } - .sm\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .sm\:focus-within\:border-pink-300:focus-within { + border-color: #f9a8d4; } - .sm\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .sm\:focus-within\:border-pink-400:focus-within { + border-color: #f472b6; } - .sm\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .sm\:focus-within\:border-pink-500:focus-within { + border-color: #ec4899; } - .sm\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .sm\:focus-within\:border-pink-600:focus-within { + border-color: #db2777; } - .sm\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .sm\:focus-within\:border-pink-700:focus-within { + border-color: #be185d; } - .sm\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .sm\:focus-within\:border-pink-800:focus-within { + border-color: #9d174d; } - .sm\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .sm\:focus-within\:border-pink-900:focus-within { + border-color: #831843; } - .sm\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .sm\:hover\:border-transparent:hover { + border-color: transparent; } - .sm\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .sm\:hover\:border-current:hover { + border-color: currentColor; } - .sm\:focus-within\:opacity-100:focus-within { - opacity: 1; + .sm\:hover\:border-black:hover { + border-color: #000; } - .sm\:hover\:opacity-0:hover { - opacity: 0; + .sm\:hover\:border-white:hover { + border-color: #fff; } - .sm\:hover\:opacity-5:hover { - opacity: 0.05; + .sm\:hover\:border-gray-50:hover { + border-color: #f9fafb; } - .sm\:hover\:opacity-10:hover { - opacity: 0.1; + .sm\:hover\:border-gray-100:hover { + border-color: #f3f4f6; } - .sm\:hover\:opacity-20:hover { - opacity: 0.2; + .sm\:hover\:border-gray-200:hover { + border-color: #e5e7eb; } - .sm\:hover\:opacity-25:hover { - opacity: 0.25; + .sm\:hover\:border-gray-300:hover { + border-color: #d1d5db; } - .sm\:hover\:opacity-30:hover { - opacity: 0.3; + .sm\:hover\:border-gray-400:hover { + border-color: #9ca3af; } - .sm\:hover\:opacity-40:hover { - opacity: 0.4; + .sm\:hover\:border-gray-500:hover { + border-color: #6b7280; } - .sm\:hover\:opacity-50:hover { - opacity: 0.5; + .sm\:hover\:border-gray-600:hover { + border-color: #4b5563; } - .sm\:hover\:opacity-60:hover { - opacity: 0.6; + .sm\:hover\:border-gray-700:hover { + border-color: #374151; } - .sm\:hover\:opacity-70:hover { - opacity: 0.7; + .sm\:hover\:border-gray-800:hover { + border-color: #1f2937; } - .sm\:hover\:opacity-75:hover { - opacity: 0.75; + .sm\:hover\:border-gray-900:hover { + border-color: #111827; } - .sm\:hover\:opacity-80:hover { - opacity: 0.8; + .sm\:hover\:border-red-50:hover { + border-color: #fef2f2; } - .sm\:hover\:opacity-90:hover { - opacity: 0.9; + .sm\:hover\:border-red-100:hover { + border-color: #fee2e2; } - .sm\:hover\:opacity-95:hover { - opacity: 0.95; + .sm\:hover\:border-red-200:hover { + border-color: #fecaca; } - .sm\:hover\:opacity-100:hover { - opacity: 1; + .sm\:hover\:border-red-300:hover { + border-color: #fca5a5; } - .sm\:focus\:opacity-0:focus { - opacity: 0; + .sm\:hover\:border-red-400:hover { + border-color: #f87171; } - .sm\:focus\:opacity-5:focus { - opacity: 0.05; + .sm\:hover\:border-red-500:hover { + border-color: #ef4444; } - .sm\:focus\:opacity-10:focus { - opacity: 0.1; + .sm\:hover\:border-red-600:hover { + border-color: #dc2626; } - .sm\:focus\:opacity-20:focus { - opacity: 0.2; + .sm\:hover\:border-red-700:hover { + border-color: #b91c1c; } - .sm\:focus\:opacity-25:focus { - opacity: 0.25; + .sm\:hover\:border-red-800:hover { + border-color: #991b1b; } - .sm\:focus\:opacity-30:focus { - opacity: 0.3; + .sm\:hover\:border-red-900:hover { + border-color: #7f1d1d; } - .sm\:focus\:opacity-40:focus { - opacity: 0.4; + .sm\:hover\:border-yellow-50:hover { + border-color: #fffbeb; } - .sm\:focus\:opacity-50:focus { - opacity: 0.5; + .sm\:hover\:border-yellow-100:hover { + border-color: #fef3c7; } - .sm\:focus\:opacity-60:focus { - opacity: 0.6; + .sm\:hover\:border-yellow-200:hover { + border-color: #fde68a; } - .sm\:focus\:opacity-70:focus { - opacity: 0.7; + .sm\:hover\:border-yellow-300:hover { + border-color: #fcd34d; } - .sm\:focus\:opacity-75:focus { - opacity: 0.75; + .sm\:hover\:border-yellow-400:hover { + border-color: #fbbf24; } - .sm\:focus\:opacity-80:focus { - opacity: 0.8; + .sm\:hover\:border-yellow-500:hover { + border-color: #f59e0b; } - .sm\:focus\:opacity-90:focus { - opacity: 0.9; + .sm\:hover\:border-yellow-600:hover { + border-color: #d97706; } - .sm\:focus\:opacity-95:focus { - opacity: 0.95; + .sm\:hover\:border-yellow-700:hover { + border-color: #b45309; } - .sm\:focus\:opacity-100:focus { - opacity: 1; + .sm\:hover\:border-yellow-800:hover { + border-color: #92400e; } - .sm\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .sm\:hover\:border-yellow-900:hover { + border-color: #78350f; } - .sm\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .sm\:hover\:border-green-50:hover { + border-color: #ecfdf5; } - .sm\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .sm\:hover\:border-green-100:hover { + border-color: #d1fae5; } - .sm\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .sm\:hover\:border-green-200:hover { + border-color: #a7f3d0; } - .sm\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .sm\:hover\:border-green-300:hover { + border-color: #6ee7b7; } - .sm\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .sm\:hover\:border-green-400:hover { + border-color: #34d399; } - .sm\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .sm\:hover\:border-green-500:hover { + border-color: #10b981; } - .sm\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .sm\:hover\:border-green-600:hover { + border-color: #059669; } - .sm\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .sm\:hover\:border-green-700:hover { + border-color: #047857; } - .sm\:overflow-auto { - overflow: auto; + .sm\:hover\:border-green-800:hover { + border-color: #065f46; } - .sm\:overflow-hidden { - overflow: hidden; + .sm\:hover\:border-green-900:hover { + border-color: #064e3b; } - .sm\:overflow-visible { - overflow: visible; + .sm\:hover\:border-blue-50:hover { + border-color: #eff6ff; } - .sm\:overflow-scroll { - overflow: scroll; + .sm\:hover\:border-blue-100:hover { + border-color: #dbeafe; } - .sm\:overflow-x-auto { - overflow-x: auto; + .sm\:hover\:border-blue-200:hover { + border-color: #bfdbfe; } - .sm\:overflow-y-auto { - overflow-y: auto; + .sm\:hover\:border-blue-300:hover { + border-color: #93c5fd; } - .sm\:overflow-x-hidden { - overflow-x: hidden; + .sm\:hover\:border-blue-400:hover { + border-color: #60a5fa; } - .sm\:overflow-y-hidden { - overflow-y: hidden; + .sm\:hover\:border-blue-500:hover { + border-color: #3b82f6; } - .sm\:overflow-x-visible { - overflow-x: visible; + .sm\:hover\:border-blue-600:hover { + border-color: #2563eb; } - .sm\:overflow-y-visible { - overflow-y: visible; + .sm\:hover\:border-blue-700:hover { + border-color: #1d4ed8; } - .sm\:overflow-x-scroll { - overflow-x: scroll; + .sm\:hover\:border-blue-800:hover { + border-color: #1e40af; } - .sm\:overflow-y-scroll { - overflow-y: scroll; + .sm\:hover\:border-blue-900:hover { + border-color: #1e3a8a; } - .sm\:overscroll-auto { - overscroll-behavior: auto; + .sm\:hover\:border-indigo-50:hover { + border-color: #eef2ff; } - .sm\:overscroll-contain { - overscroll-behavior: contain; + .sm\:hover\:border-indigo-100:hover { + border-color: #e0e7ff; } - .sm\:overscroll-none { - overscroll-behavior: none; + .sm\:hover\:border-indigo-200:hover { + border-color: #c7d2fe; } - .sm\:overscroll-y-auto { - overscroll-behavior-y: auto; + .sm\:hover\:border-indigo-300:hover { + border-color: #a5b4fc; } - .sm\:overscroll-y-contain { - overscroll-behavior-y: contain; + .sm\:hover\:border-indigo-400:hover { + border-color: #818cf8; } - .sm\:overscroll-y-none { - overscroll-behavior-y: none; + .sm\:hover\:border-indigo-500:hover { + border-color: #6366f1; } - .sm\:overscroll-x-auto { - overscroll-behavior-x: auto; + .sm\:hover\:border-indigo-600:hover { + border-color: #4f46e5; } - .sm\:overscroll-x-contain { - overscroll-behavior-x: contain; + .sm\:hover\:border-indigo-700:hover { + border-color: #4338ca; } - .sm\:overscroll-x-none { - overscroll-behavior-x: none; + .sm\:hover\:border-indigo-800:hover { + border-color: #3730a3; } - .sm\:p-0 { - padding: 0px; + .sm\:hover\:border-indigo-900:hover { + border-color: #312e81; } - .sm\:p-1 { - padding: 0.25rem; + .sm\:hover\:border-purple-50:hover { + border-color: #f5f3ff; } - .sm\:p-2 { - padding: 0.5rem; + .sm\:hover\:border-purple-100:hover { + border-color: #ede9fe; } - .sm\:p-3 { - padding: 0.75rem; + .sm\:hover\:border-purple-200:hover { + border-color: #ddd6fe; } - .sm\:p-4 { - padding: 1rem; + .sm\:hover\:border-purple-300:hover { + border-color: #c4b5fd; } - .sm\:p-5 { - padding: 1.25rem; + .sm\:hover\:border-purple-400:hover { + border-color: #a78bfa; } - .sm\:p-6 { - padding: 1.5rem; + .sm\:hover\:border-purple-500:hover { + border-color: #8b5cf6; } - .sm\:p-7 { - padding: 1.75rem; + .sm\:hover\:border-purple-600:hover { + border-color: #7c3aed; } - .sm\:p-8 { - padding: 2rem; + .sm\:hover\:border-purple-700:hover { + border-color: #6d28d9; } - .sm\:p-9 { - padding: 2.25rem; + .sm\:hover\:border-purple-800:hover { + border-color: #5b21b6; } - .sm\:p-10 { - padding: 2.5rem; + .sm\:hover\:border-purple-900:hover { + border-color: #4c1d95; } - .sm\:p-11 { - padding: 2.75rem; + .sm\:hover\:border-pink-50:hover { + border-color: #fdf2f8; } - .sm\:p-12 { - padding: 3rem; + .sm\:hover\:border-pink-100:hover { + border-color: #fce7f3; } - .sm\:p-14 { - padding: 3.5rem; + .sm\:hover\:border-pink-200:hover { + border-color: #fbcfe8; } - .sm\:p-16 { - padding: 4rem; + .sm\:hover\:border-pink-300:hover { + border-color: #f9a8d4; } - .sm\:p-20 { - padding: 5rem; + .sm\:hover\:border-pink-400:hover { + border-color: #f472b6; } - .sm\:p-24 { - padding: 6rem; + .sm\:hover\:border-pink-500:hover { + border-color: #ec4899; } - .sm\:p-28 { - padding: 7rem; + .sm\:hover\:border-pink-600:hover { + border-color: #db2777; } - .sm\:p-32 { - padding: 8rem; + .sm\:hover\:border-pink-700:hover { + border-color: #be185d; } - .sm\:p-36 { - padding: 9rem; + .sm\:hover\:border-pink-800:hover { + border-color: #9d174d; } - .sm\:p-40 { - padding: 10rem; + .sm\:hover\:border-pink-900:hover { + border-color: #831843; } - .sm\:p-44 { - padding: 11rem; + .sm\:focus\:border-transparent:focus { + border-color: transparent; } - .sm\:p-48 { - padding: 12rem; + .sm\:focus\:border-current:focus { + border-color: currentColor; } - .sm\:p-52 { - padding: 13rem; + .sm\:focus\:border-black:focus { + border-color: #000; } - .sm\:p-56 { - padding: 14rem; + .sm\:focus\:border-white:focus { + border-color: #fff; } - .sm\:p-60 { - padding: 15rem; + .sm\:focus\:border-gray-50:focus { + border-color: #f9fafb; } - .sm\:p-64 { - padding: 16rem; + .sm\:focus\:border-gray-100:focus { + border-color: #f3f4f6; } - .sm\:p-72 { - padding: 18rem; + .sm\:focus\:border-gray-200:focus { + border-color: #e5e7eb; } - .sm\:p-80 { - padding: 20rem; + .sm\:focus\:border-gray-300:focus { + border-color: #d1d5db; } - .sm\:p-96 { - padding: 24rem; + .sm\:focus\:border-gray-400:focus { + border-color: #9ca3af; } - .sm\:p-px { - padding: 1px; + .sm\:focus\:border-gray-500:focus { + border-color: #6b7280; } - .sm\:p-0\.5 { - padding: 0.125rem; + .sm\:focus\:border-gray-600:focus { + border-color: #4b5563; } - .sm\:p-1\.5 { - padding: 0.375rem; + .sm\:focus\:border-gray-700:focus { + border-color: #374151; } - .sm\:p-2\.5 { - padding: 0.625rem; + .sm\:focus\:border-gray-800:focus { + border-color: #1f2937; } - .sm\:p-3\.5 { - padding: 0.875rem; + .sm\:focus\:border-gray-900:focus { + border-color: #111827; } - .sm\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .sm\:focus\:border-red-50:focus { + border-color: #fef2f2; } - .sm\:px-0 { - padding-left: 0px; - padding-right: 0px; + .sm\:focus\:border-red-100:focus { + border-color: #fee2e2; } - .sm\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .sm\:focus\:border-red-200:focus { + border-color: #fecaca; } - .sm\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .sm\:focus\:border-red-300:focus { + border-color: #fca5a5; } - .sm\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .sm\:focus\:border-red-400:focus { + border-color: #f87171; } - .sm\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .sm\:focus\:border-red-500:focus { + border-color: #ef4444; } - .sm\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .sm\:focus\:border-red-600:focus { + border-color: #dc2626; } - .sm\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .sm\:focus\:border-red-700:focus { + border-color: #b91c1c; } - .sm\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .sm\:focus\:border-red-800:focus { + border-color: #991b1b; } - .sm\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .sm\:focus\:border-red-900:focus { + border-color: #7f1d1d; } - .sm\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .sm\:focus\:border-yellow-50:focus { + border-color: #fffbeb; } - .sm\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .sm\:focus\:border-yellow-100:focus { + border-color: #fef3c7; } - .sm\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .sm\:focus\:border-yellow-200:focus { + border-color: #fde68a; } - .sm\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .sm\:focus\:border-yellow-300:focus { + border-color: #fcd34d; } - .sm\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .sm\:focus\:border-yellow-400:focus { + border-color: #fbbf24; } - .sm\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .sm\:focus\:border-yellow-500:focus { + border-color: #f59e0b; } - .sm\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .sm\:focus\:border-yellow-600:focus { + border-color: #d97706; } - .sm\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .sm\:focus\:border-yellow-700:focus { + border-color: #b45309; } - .sm\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .sm\:focus\:border-yellow-800:focus { + border-color: #92400e; } - .sm\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .sm\:focus\:border-yellow-900:focus { + border-color: #78350f; } - .sm\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .sm\:focus\:border-green-50:focus { + border-color: #ecfdf5; } - .sm\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .sm\:focus\:border-green-100:focus { + border-color: #d1fae5; } - .sm\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .sm\:focus\:border-green-200:focus { + border-color: #a7f3d0; } - .sm\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .sm\:focus\:border-green-300:focus { + border-color: #6ee7b7; } - .sm\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .sm\:focus\:border-green-400:focus { + border-color: #34d399; } - .sm\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .sm\:focus\:border-green-500:focus { + border-color: #10b981; } - .sm\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .sm\:focus\:border-green-600:focus { + border-color: #059669; } - .sm\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .sm\:focus\:border-green-700:focus { + border-color: #047857; } - .sm\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .sm\:focus\:border-green-800:focus { + border-color: #065f46; } - .sm\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .sm\:focus\:border-green-900:focus { + border-color: #064e3b; } - .sm\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .sm\:focus\:border-blue-50:focus { + border-color: #eff6ff; } - .sm\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .sm\:focus\:border-blue-100:focus { + border-color: #dbeafe; } - .sm\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .sm\:focus\:border-blue-200:focus { + border-color: #bfdbfe; } - .sm\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .sm\:focus\:border-blue-300:focus { + border-color: #93c5fd; } - .sm\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .sm\:focus\:border-blue-400:focus { + border-color: #60a5fa; } - .sm\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .sm\:focus\:border-blue-500:focus { + border-color: #3b82f6; } - .sm\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .sm\:focus\:border-blue-600:focus { + border-color: #2563eb; } - .sm\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .sm\:focus\:border-blue-700:focus { + border-color: #1d4ed8; } - .sm\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .sm\:focus\:border-blue-800:focus { + border-color: #1e40af; } - .sm\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .sm\:focus\:border-blue-900:focus { + border-color: #1e3a8a; } - .sm\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .sm\:focus\:border-indigo-50:focus { + border-color: #eef2ff; } - .sm\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .sm\:focus\:border-indigo-100:focus { + border-color: #e0e7ff; } - .sm\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .sm\:focus\:border-indigo-200:focus { + border-color: #c7d2fe; } - .sm\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .sm\:focus\:border-indigo-300:focus { + border-color: #a5b4fc; } - .sm\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .sm\:focus\:border-indigo-400:focus { + border-color: #818cf8; } - .sm\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .sm\:focus\:border-indigo-500:focus { + border-color: #6366f1; } - .sm\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .sm\:focus\:border-indigo-600:focus { + border-color: #4f46e5; } - .sm\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .sm\:focus\:border-indigo-700:focus { + border-color: #4338ca; } - .sm\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .sm\:focus\:border-indigo-800:focus { + border-color: #3730a3; } - .sm\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .sm\:focus\:border-indigo-900:focus { + border-color: #312e81; } - .sm\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .sm\:focus\:border-purple-50:focus { + border-color: #f5f3ff; } - .sm\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .sm\:focus\:border-purple-100:focus { + border-color: #ede9fe; } - .sm\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .sm\:focus\:border-purple-200:focus { + border-color: #ddd6fe; } - .sm\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .sm\:focus\:border-purple-300:focus { + border-color: #c4b5fd; } - .sm\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .sm\:focus\:border-purple-400:focus { + border-color: #a78bfa; } - .sm\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .sm\:focus\:border-purple-500:focus { + border-color: #8b5cf6; } - .sm\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .sm\:focus\:border-purple-600:focus { + border-color: #7c3aed; } - .sm\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .sm\:focus\:border-purple-700:focus { + border-color: #6d28d9; } - .sm\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .sm\:focus\:border-purple-800:focus { + border-color: #5b21b6; } - .sm\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .sm\:focus\:border-purple-900:focus { + border-color: #4c1d95; } - .sm\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .sm\:focus\:border-pink-50:focus { + border-color: #fdf2f8; } - .sm\:px-px { - padding-left: 1px; - padding-right: 1px; + .sm\:focus\:border-pink-100:focus { + border-color: #fce7f3; } - .sm\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .sm\:focus\:border-pink-200:focus { + border-color: #fbcfe8; } - .sm\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .sm\:focus\:border-pink-300:focus { + border-color: #f9a8d4; } - .sm\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .sm\:focus\:border-pink-400:focus { + border-color: #f472b6; } - .sm\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .sm\:focus\:border-pink-500:focus { + border-color: #ec4899; } - .sm\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .sm\:focus\:border-pink-600:focus { + border-color: #db2777; } - .sm\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .sm\:focus\:border-pink-700:focus { + border-color: #be185d; } - .sm\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .sm\:focus\:border-pink-800:focus { + border-color: #9d174d; } - .sm\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .sm\:focus\:border-pink-900:focus { + border-color: #831843; } - .sm\:pt-0 { - padding-top: 0px; + .sm\:bg-transparent { + background-color: transparent; } - .sm\:pr-0 { - padding-right: 0px; + .sm\:bg-current { + background-color: currentColor; } - .sm\:pb-0 { - padding-bottom: 0px; + .sm\:bg-black { + background-color: #000; } - .sm\:pl-0 { - padding-left: 0px; + .sm\:bg-white { + background-color: #fff; } - .sm\:pt-1 { - padding-top: 0.25rem; + .sm\:bg-gray-50 { + background-color: #f9fafb; } - .sm\:pr-1 { - padding-right: 0.25rem; + .sm\:bg-gray-100 { + background-color: #f3f4f6; } - .sm\:pb-1 { - padding-bottom: 0.25rem; + .sm\:bg-gray-200 { + background-color: #e5e7eb; } - .sm\:pl-1 { - padding-left: 0.25rem; + .sm\:bg-gray-300 { + background-color: #d1d5db; } - .sm\:pt-2 { - padding-top: 0.5rem; + .sm\:bg-gray-400 { + background-color: #9ca3af; } - .sm\:pr-2 { - padding-right: 0.5rem; + .sm\:bg-gray-500 { + background-color: #6b7280; } - .sm\:pb-2 { - padding-bottom: 0.5rem; + .sm\:bg-gray-600 { + background-color: #4b5563; } - .sm\:pl-2 { - padding-left: 0.5rem; + .sm\:bg-gray-700 { + background-color: #374151; } - .sm\:pt-3 { - padding-top: 0.75rem; + .sm\:bg-gray-800 { + background-color: #1f2937; } - .sm\:pr-3 { - padding-right: 0.75rem; + .sm\:bg-gray-900 { + background-color: #111827; } - .sm\:pb-3 { - padding-bottom: 0.75rem; + .sm\:bg-red-50 { + background-color: #fef2f2; } - .sm\:pl-3 { - padding-left: 0.75rem; + .sm\:bg-red-100 { + background-color: #fee2e2; } - .sm\:pt-4 { - padding-top: 1rem; + .sm\:bg-red-200 { + background-color: #fecaca; } - .sm\:pr-4 { - padding-right: 1rem; + .sm\:bg-red-300 { + background-color: #fca5a5; } - .sm\:pb-4 { - padding-bottom: 1rem; + .sm\:bg-red-400 { + background-color: #f87171; } - .sm\:pl-4 { - padding-left: 1rem; + .sm\:bg-red-500 { + background-color: #ef4444; } - .sm\:pt-5 { - padding-top: 1.25rem; + .sm\:bg-red-600 { + background-color: #dc2626; } - .sm\:pr-5 { - padding-right: 1.25rem; + .sm\:bg-red-700 { + background-color: #b91c1c; } - .sm\:pb-5 { - padding-bottom: 1.25rem; + .sm\:bg-red-800 { + background-color: #991b1b; } - .sm\:pl-5 { - padding-left: 1.25rem; + .sm\:bg-red-900 { + background-color: #7f1d1d; } - .sm\:pt-6 { - padding-top: 1.5rem; + .sm\:bg-yellow-50 { + background-color: #fffbeb; } - .sm\:pr-6 { - padding-right: 1.5rem; + .sm\:bg-yellow-100 { + background-color: #fef3c7; } - .sm\:pb-6 { - padding-bottom: 1.5rem; + .sm\:bg-yellow-200 { + background-color: #fde68a; } - .sm\:pl-6 { - padding-left: 1.5rem; + .sm\:bg-yellow-300 { + background-color: #fcd34d; } - .sm\:pt-7 { - padding-top: 1.75rem; + .sm\:bg-yellow-400 { + background-color: #fbbf24; } - .sm\:pr-7 { - padding-right: 1.75rem; + .sm\:bg-yellow-500 { + background-color: #f59e0b; } - .sm\:pb-7 { - padding-bottom: 1.75rem; + .sm\:bg-yellow-600 { + background-color: #d97706; } - .sm\:pl-7 { - padding-left: 1.75rem; + .sm\:bg-yellow-700 { + background-color: #b45309; } - .sm\:pt-8 { - padding-top: 2rem; + .sm\:bg-yellow-800 { + background-color: #92400e; } - .sm\:pr-8 { - padding-right: 2rem; + .sm\:bg-yellow-900 { + background-color: #78350f; } - .sm\:pb-8 { - padding-bottom: 2rem; + .sm\:bg-green-50 { + background-color: #ecfdf5; } - .sm\:pl-8 { - padding-left: 2rem; + .sm\:bg-green-100 { + background-color: #d1fae5; } - .sm\:pt-9 { - padding-top: 2.25rem; + .sm\:bg-green-200 { + background-color: #a7f3d0; } - .sm\:pr-9 { - padding-right: 2.25rem; + .sm\:bg-green-300 { + background-color: #6ee7b7; } - .sm\:pb-9 { - padding-bottom: 2.25rem; + .sm\:bg-green-400 { + background-color: #34d399; } - .sm\:pl-9 { - padding-left: 2.25rem; + .sm\:bg-green-500 { + background-color: #10b981; } - .sm\:pt-10 { - padding-top: 2.5rem; + .sm\:bg-green-600 { + background-color: #059669; } - .sm\:pr-10 { - padding-right: 2.5rem; + .sm\:bg-green-700 { + background-color: #047857; } - .sm\:pb-10 { - padding-bottom: 2.5rem; + .sm\:bg-green-800 { + background-color: #065f46; } - .sm\:pl-10 { - padding-left: 2.5rem; + .sm\:bg-green-900 { + background-color: #064e3b; } - .sm\:pt-11 { - padding-top: 2.75rem; + .sm\:bg-blue-50 { + background-color: #eff6ff; } - .sm\:pr-11 { - padding-right: 2.75rem; + .sm\:bg-blue-100 { + background-color: #dbeafe; } - .sm\:pb-11 { - padding-bottom: 2.75rem; + .sm\:bg-blue-200 { + background-color: #bfdbfe; } - .sm\:pl-11 { - padding-left: 2.75rem; + .sm\:bg-blue-300 { + background-color: #93c5fd; } - .sm\:pt-12 { - padding-top: 3rem; + .sm\:bg-blue-400 { + background-color: #60a5fa; } - .sm\:pr-12 { - padding-right: 3rem; + .sm\:bg-blue-500 { + background-color: #3b82f6; } - .sm\:pb-12 { - padding-bottom: 3rem; + .sm\:bg-blue-600 { + background-color: #2563eb; } - .sm\:pl-12 { - padding-left: 3rem; + .sm\:bg-blue-700 { + background-color: #1d4ed8; } - .sm\:pt-14 { - padding-top: 3.5rem; + .sm\:bg-blue-800 { + background-color: #1e40af; } - .sm\:pr-14 { - padding-right: 3.5rem; + .sm\:bg-blue-900 { + background-color: #1e3a8a; } - .sm\:pb-14 { - padding-bottom: 3.5rem; + .sm\:bg-indigo-50 { + background-color: #eef2ff; } - .sm\:pl-14 { - padding-left: 3.5rem; + .sm\:bg-indigo-100 { + background-color: #e0e7ff; } - .sm\:pt-16 { - padding-top: 4rem; + .sm\:bg-indigo-200 { + background-color: #c7d2fe; } - .sm\:pr-16 { - padding-right: 4rem; + .sm\:bg-indigo-300 { + background-color: #a5b4fc; } - .sm\:pb-16 { - padding-bottom: 4rem; + .sm\:bg-indigo-400 { + background-color: #818cf8; } - .sm\:pl-16 { - padding-left: 4rem; + .sm\:bg-indigo-500 { + background-color: #6366f1; } - .sm\:pt-20 { - padding-top: 5rem; + .sm\:bg-indigo-600 { + background-color: #4f46e5; } - .sm\:pr-20 { - padding-right: 5rem; + .sm\:bg-indigo-700 { + background-color: #4338ca; } - .sm\:pb-20 { - padding-bottom: 5rem; + .sm\:bg-indigo-800 { + background-color: #3730a3; } - .sm\:pl-20 { - padding-left: 5rem; + .sm\:bg-indigo-900 { + background-color: #312e81; } - .sm\:pt-24 { - padding-top: 6rem; + .sm\:bg-purple-50 { + background-color: #f5f3ff; } - .sm\:pr-24 { - padding-right: 6rem; + .sm\:bg-purple-100 { + background-color: #ede9fe; } - .sm\:pb-24 { - padding-bottom: 6rem; + .sm\:bg-purple-200 { + background-color: #ddd6fe; } - .sm\:pl-24 { - padding-left: 6rem; + .sm\:bg-purple-300 { + background-color: #c4b5fd; } - .sm\:pt-28 { - padding-top: 7rem; + .sm\:bg-purple-400 { + background-color: #a78bfa; } - .sm\:pr-28 { - padding-right: 7rem; + .sm\:bg-purple-500 { + background-color: #8b5cf6; } - .sm\:pb-28 { - padding-bottom: 7rem; + .sm\:bg-purple-600 { + background-color: #7c3aed; } - .sm\:pl-28 { - padding-left: 7rem; + .sm\:bg-purple-700 { + background-color: #6d28d9; } - .sm\:pt-32 { - padding-top: 8rem; + .sm\:bg-purple-800 { + background-color: #5b21b6; } - .sm\:pr-32 { - padding-right: 8rem; + .sm\:bg-purple-900 { + background-color: #4c1d95; } - .sm\:pb-32 { - padding-bottom: 8rem; + .sm\:bg-pink-50 { + background-color: #fdf2f8; } - .sm\:pl-32 { - padding-left: 8rem; + .sm\:bg-pink-100 { + background-color: #fce7f3; } - .sm\:pt-36 { - padding-top: 9rem; + .sm\:bg-pink-200 { + background-color: #fbcfe8; } - .sm\:pr-36 { - padding-right: 9rem; + .sm\:bg-pink-300 { + background-color: #f9a8d4; } - .sm\:pb-36 { - padding-bottom: 9rem; + .sm\:bg-pink-400 { + background-color: #f472b6; } - .sm\:pl-36 { - padding-left: 9rem; + .sm\:bg-pink-500 { + background-color: #ec4899; } - .sm\:pt-40 { - padding-top: 10rem; + .sm\:bg-pink-600 { + background-color: #db2777; } - .sm\:pr-40 { - padding-right: 10rem; + .sm\:bg-pink-700 { + background-color: #be185d; } - .sm\:pb-40 { - padding-bottom: 10rem; + .sm\:bg-pink-800 { + background-color: #9d174d; } - .sm\:pl-40 { - padding-left: 10rem; + .sm\:bg-pink-900 { + background-color: #831843; } - .sm\:pt-44 { - padding-top: 11rem; + .group:hover .sm\:group-hover\:bg-transparent { + background-color: transparent; } - .sm\:pr-44 { - padding-right: 11rem; + .group:hover .sm\:group-hover\:bg-current { + background-color: currentColor; } - .sm\:pb-44 { - padding-bottom: 11rem; + .group:hover .sm\:group-hover\:bg-black { + background-color: #000; } - .sm\:pl-44 { - padding-left: 11rem; + .group:hover .sm\:group-hover\:bg-white { + background-color: #fff; } - .sm\:pt-48 { - padding-top: 12rem; + .group:hover .sm\:group-hover\:bg-gray-50 { + background-color: #f9fafb; } - .sm\:pr-48 { - padding-right: 12rem; + .group:hover .sm\:group-hover\:bg-gray-100 { + background-color: #f3f4f6; } - .sm\:pb-48 { - padding-bottom: 12rem; + .group:hover .sm\:group-hover\:bg-gray-200 { + background-color: #e5e7eb; } - .sm\:pl-48 { - padding-left: 12rem; + .group:hover .sm\:group-hover\:bg-gray-300 { + background-color: #d1d5db; } - .sm\:pt-52 { - padding-top: 13rem; + .group:hover .sm\:group-hover\:bg-gray-400 { + background-color: #9ca3af; } - .sm\:pr-52 { - padding-right: 13rem; + .group:hover .sm\:group-hover\:bg-gray-500 { + background-color: #6b7280; } - .sm\:pb-52 { - padding-bottom: 13rem; + .group:hover .sm\:group-hover\:bg-gray-600 { + background-color: #4b5563; } - .sm\:pl-52 { - padding-left: 13rem; + .group:hover .sm\:group-hover\:bg-gray-700 { + background-color: #374151; } - .sm\:pt-56 { - padding-top: 14rem; + .group:hover .sm\:group-hover\:bg-gray-800 { + background-color: #1f2937; } - .sm\:pr-56 { - padding-right: 14rem; + .group:hover .sm\:group-hover\:bg-gray-900 { + background-color: #111827; } - .sm\:pb-56 { - padding-bottom: 14rem; + .group:hover .sm\:group-hover\:bg-red-50 { + background-color: #fef2f2; } - .sm\:pl-56 { - padding-left: 14rem; + .group:hover .sm\:group-hover\:bg-red-100 { + background-color: #fee2e2; } - .sm\:pt-60 { - padding-top: 15rem; + .group:hover .sm\:group-hover\:bg-red-200 { + background-color: #fecaca; } - .sm\:pr-60 { - padding-right: 15rem; + .group:hover .sm\:group-hover\:bg-red-300 { + background-color: #fca5a5; } - .sm\:pb-60 { - padding-bottom: 15rem; + .group:hover .sm\:group-hover\:bg-red-400 { + background-color: #f87171; } - .sm\:pl-60 { - padding-left: 15rem; + .group:hover .sm\:group-hover\:bg-red-500 { + background-color: #ef4444; } - .sm\:pt-64 { - padding-top: 16rem; + .group:hover .sm\:group-hover\:bg-red-600 { + background-color: #dc2626; } - .sm\:pr-64 { - padding-right: 16rem; + .group:hover .sm\:group-hover\:bg-red-700 { + background-color: #b91c1c; } - .sm\:pb-64 { - padding-bottom: 16rem; + .group:hover .sm\:group-hover\:bg-red-800 { + background-color: #991b1b; } - .sm\:pl-64 { - padding-left: 16rem; + .group:hover .sm\:group-hover\:bg-red-900 { + background-color: #7f1d1d; } - .sm\:pt-72 { - padding-top: 18rem; + .group:hover .sm\:group-hover\:bg-yellow-50 { + background-color: #fffbeb; } - .sm\:pr-72 { - padding-right: 18rem; + .group:hover .sm\:group-hover\:bg-yellow-100 { + background-color: #fef3c7; } - .sm\:pb-72 { - padding-bottom: 18rem; + .group:hover .sm\:group-hover\:bg-yellow-200 { + background-color: #fde68a; } - .sm\:pl-72 { - padding-left: 18rem; + .group:hover .sm\:group-hover\:bg-yellow-300 { + background-color: #fcd34d; } - .sm\:pt-80 { - padding-top: 20rem; + .group:hover .sm\:group-hover\:bg-yellow-400 { + background-color: #fbbf24; } - .sm\:pr-80 { - padding-right: 20rem; + .group:hover .sm\:group-hover\:bg-yellow-500 { + background-color: #f59e0b; } - .sm\:pb-80 { - padding-bottom: 20rem; + .group:hover .sm\:group-hover\:bg-yellow-600 { + background-color: #d97706; } - .sm\:pl-80 { - padding-left: 20rem; + .group:hover .sm\:group-hover\:bg-yellow-700 { + background-color: #b45309; } - .sm\:pt-96 { - padding-top: 24rem; + .group:hover .sm\:group-hover\:bg-yellow-800 { + background-color: #92400e; } - .sm\:pr-96 { - padding-right: 24rem; + .group:hover .sm\:group-hover\:bg-yellow-900 { + background-color: #78350f; } - .sm\:pb-96 { - padding-bottom: 24rem; + .group:hover .sm\:group-hover\:bg-green-50 { + background-color: #ecfdf5; } - .sm\:pl-96 { - padding-left: 24rem; + .group:hover .sm\:group-hover\:bg-green-100 { + background-color: #d1fae5; } - .sm\:pt-px { - padding-top: 1px; + .group:hover .sm\:group-hover\:bg-green-200 { + background-color: #a7f3d0; } - .sm\:pr-px { - padding-right: 1px; + .group:hover .sm\:group-hover\:bg-green-300 { + background-color: #6ee7b7; } - .sm\:pb-px { - padding-bottom: 1px; + .group:hover .sm\:group-hover\:bg-green-400 { + background-color: #34d399; } - .sm\:pl-px { - padding-left: 1px; + .group:hover .sm\:group-hover\:bg-green-500 { + background-color: #10b981; } - .sm\:pt-0\.5 { - padding-top: 0.125rem; + .group:hover .sm\:group-hover\:bg-green-600 { + background-color: #059669; } - .sm\:pr-0\.5 { - padding-right: 0.125rem; + .group:hover .sm\:group-hover\:bg-green-700 { + background-color: #047857; } - .sm\:pb-0\.5 { - padding-bottom: 0.125rem; + .group:hover .sm\:group-hover\:bg-green-800 { + background-color: #065f46; } - .sm\:pl-0\.5 { - padding-left: 0.125rem; + .group:hover .sm\:group-hover\:bg-green-900 { + background-color: #064e3b; } - .sm\:pt-1\.5 { - padding-top: 0.375rem; + .group:hover .sm\:group-hover\:bg-blue-50 { + background-color: #eff6ff; } - .sm\:pr-1\.5 { - padding-right: 0.375rem; + .group:hover .sm\:group-hover\:bg-blue-100 { + background-color: #dbeafe; } - .sm\:pb-1\.5 { - padding-bottom: 0.375rem; + .group:hover .sm\:group-hover\:bg-blue-200 { + background-color: #bfdbfe; } - .sm\:pl-1\.5 { - padding-left: 0.375rem; + .group:hover .sm\:group-hover\:bg-blue-300 { + background-color: #93c5fd; } - .sm\:pt-2\.5 { - padding-top: 0.625rem; + .group:hover .sm\:group-hover\:bg-blue-400 { + background-color: #60a5fa; } - .sm\:pr-2\.5 { - padding-right: 0.625rem; + .group:hover .sm\:group-hover\:bg-blue-500 { + background-color: #3b82f6; } - .sm\:pb-2\.5 { - padding-bottom: 0.625rem; + .group:hover .sm\:group-hover\:bg-blue-600 { + background-color: #2563eb; } - .sm\:pl-2\.5 { - padding-left: 0.625rem; + .group:hover .sm\:group-hover\:bg-blue-700 { + background-color: #1d4ed8; } - .sm\:pt-3\.5 { - padding-top: 0.875rem; + .group:hover .sm\:group-hover\:bg-blue-800 { + background-color: #1e40af; } - .sm\:pr-3\.5 { - padding-right: 0.875rem; + .group:hover .sm\:group-hover\:bg-blue-900 { + background-color: #1e3a8a; } - .sm\:pb-3\.5 { - padding-bottom: 0.875rem; + .group:hover .sm\:group-hover\:bg-indigo-50 { + background-color: #eef2ff; } - .sm\:pl-3\.5 { - padding-left: 0.875rem; + .group:hover .sm\:group-hover\:bg-indigo-100 { + background-color: #e0e7ff; } - .sm\:placeholder-transparent::placeholder { - color: transparent; + .group:hover .sm\:group-hover\:bg-indigo-200 { + background-color: #c7d2fe; } - .sm\:placeholder-current::placeholder { - color: currentColor; + .group:hover .sm\:group-hover\:bg-indigo-300 { + background-color: #a5b4fc; } - .sm\:placeholder-black::placeholder { - color: #000; + .group:hover .sm\:group-hover\:bg-indigo-400 { + background-color: #818cf8; } - .sm\:placeholder-white::placeholder { - color: #fff; + .group:hover .sm\:group-hover\:bg-indigo-500 { + background-color: #6366f1; } - .sm\:placeholder-gray-50::placeholder { - color: #f9fafb; + .group:hover .sm\:group-hover\:bg-indigo-600 { + background-color: #4f46e5; } - .sm\:placeholder-gray-100::placeholder { - color: #f3f4f6; + .group:hover .sm\:group-hover\:bg-indigo-700 { + background-color: #4338ca; } - .sm\:placeholder-gray-200::placeholder { - color: #e5e7eb; + .group:hover .sm\:group-hover\:bg-indigo-800 { + background-color: #3730a3; } - .sm\:placeholder-gray-300::placeholder { - color: #d1d5db; + .group:hover .sm\:group-hover\:bg-indigo-900 { + background-color: #312e81; } - .sm\:placeholder-gray-400::placeholder { - color: #9ca3af; + .group:hover .sm\:group-hover\:bg-purple-50 { + background-color: #f5f3ff; } - .sm\:placeholder-gray-500::placeholder { - color: #6b7280; + .group:hover .sm\:group-hover\:bg-purple-100 { + background-color: #ede9fe; } - .sm\:placeholder-gray-600::placeholder { - color: #4b5563; + .group:hover .sm\:group-hover\:bg-purple-200 { + background-color: #ddd6fe; } - .sm\:placeholder-gray-700::placeholder { - color: #374151; + .group:hover .sm\:group-hover\:bg-purple-300 { + background-color: #c4b5fd; } - .sm\:placeholder-gray-800::placeholder { - color: #1f2937; + .group:hover .sm\:group-hover\:bg-purple-400 { + background-color: #a78bfa; } - .sm\:placeholder-gray-900::placeholder { - color: #111827; + .group:hover .sm\:group-hover\:bg-purple-500 { + background-color: #8b5cf6; } - .sm\:placeholder-red-50::placeholder { - color: #fef2f2; + .group:hover .sm\:group-hover\:bg-purple-600 { + background-color: #7c3aed; } - .sm\:placeholder-red-100::placeholder { - color: #fee2e2; + .group:hover .sm\:group-hover\:bg-purple-700 { + background-color: #6d28d9; } - .sm\:placeholder-red-200::placeholder { - color: #fecaca; + .group:hover .sm\:group-hover\:bg-purple-800 { + background-color: #5b21b6; } - .sm\:placeholder-red-300::placeholder { - color: #fca5a5; + .group:hover .sm\:group-hover\:bg-purple-900 { + background-color: #4c1d95; } - .sm\:placeholder-red-400::placeholder { - color: #f87171; + .group:hover .sm\:group-hover\:bg-pink-50 { + background-color: #fdf2f8; } - .sm\:placeholder-red-500::placeholder { - color: #ef4444; + .group:hover .sm\:group-hover\:bg-pink-100 { + background-color: #fce7f3; } - .sm\:placeholder-red-600::placeholder { - color: #dc2626; + .group:hover .sm\:group-hover\:bg-pink-200 { + background-color: #fbcfe8; } - .sm\:placeholder-red-700::placeholder { - color: #b91c1c; + .group:hover .sm\:group-hover\:bg-pink-300 { + background-color: #f9a8d4; } - .sm\:placeholder-red-800::placeholder { - color: #991b1b; + .group:hover .sm\:group-hover\:bg-pink-400 { + background-color: #f472b6; } - .sm\:placeholder-red-900::placeholder { - color: #7f1d1d; + .group:hover .sm\:group-hover\:bg-pink-500 { + background-color: #ec4899; } - .sm\:placeholder-yellow-50::placeholder { - color: #fffbeb; + .group:hover .sm\:group-hover\:bg-pink-600 { + background-color: #db2777; } - .sm\:placeholder-yellow-100::placeholder { - color: #fef3c7; + .group:hover .sm\:group-hover\:bg-pink-700 { + background-color: #be185d; } - .sm\:placeholder-yellow-200::placeholder { - color: #fde68a; + .group:hover .sm\:group-hover\:bg-pink-800 { + background-color: #9d174d; } - .sm\:placeholder-yellow-300::placeholder { - color: #fcd34d; + .group:hover .sm\:group-hover\:bg-pink-900 { + background-color: #831843; } - .sm\:placeholder-yellow-400::placeholder { - color: #fbbf24; + .sm\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .sm\:placeholder-yellow-500::placeholder { - color: #f59e0b; + .sm\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .sm\:placeholder-yellow-600::placeholder { - color: #d97706; + .sm\:focus-within\:bg-black:focus-within { + background-color: #000; } - .sm\:placeholder-yellow-700::placeholder { - color: #b45309; + .sm\:focus-within\:bg-white:focus-within { + background-color: #fff; } - .sm\:placeholder-yellow-800::placeholder { - color: #92400e; + .sm\:focus-within\:bg-gray-50:focus-within { + background-color: #f9fafb; } - .sm\:placeholder-yellow-900::placeholder { - color: #78350f; + .sm\:focus-within\:bg-gray-100:focus-within { + background-color: #f3f4f6; } - .sm\:placeholder-green-50::placeholder { - color: #ecfdf5; + .sm\:focus-within\:bg-gray-200:focus-within { + background-color: #e5e7eb; } - .sm\:placeholder-green-100::placeholder { - color: #d1fae5; + .sm\:focus-within\:bg-gray-300:focus-within { + background-color: #d1d5db; } - .sm\:placeholder-green-200::placeholder { - color: #a7f3d0; + .sm\:focus-within\:bg-gray-400:focus-within { + background-color: #9ca3af; } - .sm\:placeholder-green-300::placeholder { - color: #6ee7b7; + .sm\:focus-within\:bg-gray-500:focus-within { + background-color: #6b7280; } - .sm\:placeholder-green-400::placeholder { - color: #34d399; + .sm\:focus-within\:bg-gray-600:focus-within { + background-color: #4b5563; } - .sm\:placeholder-green-500::placeholder { - color: #10b981; + .sm\:focus-within\:bg-gray-700:focus-within { + background-color: #374151; } - .sm\:placeholder-green-600::placeholder { - color: #059669; + .sm\:focus-within\:bg-gray-800:focus-within { + background-color: #1f2937; } - .sm\:placeholder-green-700::placeholder { - color: #047857; + .sm\:focus-within\:bg-gray-900:focus-within { + background-color: #111827; } - .sm\:placeholder-green-800::placeholder { - color: #065f46; + .sm\:focus-within\:bg-red-50:focus-within { + background-color: #fef2f2; } - .sm\:placeholder-green-900::placeholder { - color: #064e3b; + .sm\:focus-within\:bg-red-100:focus-within { + background-color: #fee2e2; } - .sm\:placeholder-blue-50::placeholder { - color: #eff6ff; + .sm\:focus-within\:bg-red-200:focus-within { + background-color: #fecaca; } - .sm\:placeholder-blue-100::placeholder { - color: #dbeafe; + .sm\:focus-within\:bg-red-300:focus-within { + background-color: #fca5a5; } - .sm\:placeholder-blue-200::placeholder { - color: #bfdbfe; + .sm\:focus-within\:bg-red-400:focus-within { + background-color: #f87171; } - .sm\:placeholder-blue-300::placeholder { - color: #93c5fd; + .sm\:focus-within\:bg-red-500:focus-within { + background-color: #ef4444; } - .sm\:placeholder-blue-400::placeholder { - color: #60a5fa; + .sm\:focus-within\:bg-red-600:focus-within { + background-color: #dc2626; } - .sm\:placeholder-blue-500::placeholder { - color: #3b82f6; + .sm\:focus-within\:bg-red-700:focus-within { + background-color: #b91c1c; } - .sm\:placeholder-blue-600::placeholder { - color: #2563eb; + .sm\:focus-within\:bg-red-800:focus-within { + background-color: #991b1b; } - .sm\:placeholder-blue-700::placeholder { - color: #1d4ed8; + .sm\:focus-within\:bg-red-900:focus-within { + background-color: #7f1d1d; } - .sm\:placeholder-blue-800::placeholder { - color: #1e40af; + .sm\:focus-within\:bg-yellow-50:focus-within { + background-color: #fffbeb; } - .sm\:placeholder-blue-900::placeholder { - color: #1e3a8a; + .sm\:focus-within\:bg-yellow-100:focus-within { + background-color: #fef3c7; } - .sm\:placeholder-indigo-50::placeholder { - color: #eef2ff; + .sm\:focus-within\:bg-yellow-200:focus-within { + background-color: #fde68a; } - .sm\:placeholder-indigo-100::placeholder { - color: #e0e7ff; + .sm\:focus-within\:bg-yellow-300:focus-within { + background-color: #fcd34d; } - .sm\:placeholder-indigo-200::placeholder { - color: #c7d2fe; + .sm\:focus-within\:bg-yellow-400:focus-within { + background-color: #fbbf24; } - .sm\:placeholder-indigo-300::placeholder { - color: #a5b4fc; + .sm\:focus-within\:bg-yellow-500:focus-within { + background-color: #f59e0b; } - .sm\:placeholder-indigo-400::placeholder { - color: #818cf8; + .sm\:focus-within\:bg-yellow-600:focus-within { + background-color: #d97706; } - .sm\:placeholder-indigo-500::placeholder { - color: #6366f1; + .sm\:focus-within\:bg-yellow-700:focus-within { + background-color: #b45309; } - .sm\:placeholder-indigo-600::placeholder { - color: #4f46e5; + .sm\:focus-within\:bg-yellow-800:focus-within { + background-color: #92400e; } - .sm\:placeholder-indigo-700::placeholder { - color: #4338ca; + .sm\:focus-within\:bg-yellow-900:focus-within { + background-color: #78350f; } - .sm\:placeholder-indigo-800::placeholder { - color: #3730a3; + .sm\:focus-within\:bg-green-50:focus-within { + background-color: #ecfdf5; } - .sm\:placeholder-indigo-900::placeholder { - color: #312e81; + .sm\:focus-within\:bg-green-100:focus-within { + background-color: #d1fae5; } - .sm\:placeholder-purple-50::placeholder { - color: #f5f3ff; + .sm\:focus-within\:bg-green-200:focus-within { + background-color: #a7f3d0; } - .sm\:placeholder-purple-100::placeholder { - color: #ede9fe; + .sm\:focus-within\:bg-green-300:focus-within { + background-color: #6ee7b7; } - .sm\:placeholder-purple-200::placeholder { - color: #ddd6fe; + .sm\:focus-within\:bg-green-400:focus-within { + background-color: #34d399; } - .sm\:placeholder-purple-300::placeholder { - color: #c4b5fd; + .sm\:focus-within\:bg-green-500:focus-within { + background-color: #10b981; } - .sm\:placeholder-purple-400::placeholder { - color: #a78bfa; + .sm\:focus-within\:bg-green-600:focus-within { + background-color: #059669; } - .sm\:placeholder-purple-500::placeholder { - color: #8b5cf6; + .sm\:focus-within\:bg-green-700:focus-within { + background-color: #047857; } - .sm\:placeholder-purple-600::placeholder { - color: #7c3aed; + .sm\:focus-within\:bg-green-800:focus-within { + background-color: #065f46; } - .sm\:placeholder-purple-700::placeholder { - color: #6d28d9; + .sm\:focus-within\:bg-green-900:focus-within { + background-color: #064e3b; } - .sm\:placeholder-purple-800::placeholder { - color: #5b21b6; + .sm\:focus-within\:bg-blue-50:focus-within { + background-color: #eff6ff; } - .sm\:placeholder-purple-900::placeholder { - color: #4c1d95; + .sm\:focus-within\:bg-blue-100:focus-within { + background-color: #dbeafe; } - .sm\:placeholder-pink-50::placeholder { - color: #fdf2f8; + .sm\:focus-within\:bg-blue-200:focus-within { + background-color: #bfdbfe; } - .sm\:placeholder-pink-100::placeholder { - color: #fce7f3; + .sm\:focus-within\:bg-blue-300:focus-within { + background-color: #93c5fd; } - .sm\:placeholder-pink-200::placeholder { - color: #fbcfe8; + .sm\:focus-within\:bg-blue-400:focus-within { + background-color: #60a5fa; } - .sm\:placeholder-pink-300::placeholder { - color: #f9a8d4; + .sm\:focus-within\:bg-blue-500:focus-within { + background-color: #3b82f6; } - .sm\:placeholder-pink-400::placeholder { - color: #f472b6; + .sm\:focus-within\:bg-blue-600:focus-within { + background-color: #2563eb; } - .sm\:placeholder-pink-500::placeholder { - color: #ec4899; + .sm\:focus-within\:bg-blue-700:focus-within { + background-color: #1d4ed8; } - .sm\:placeholder-pink-600::placeholder { - color: #db2777; + .sm\:focus-within\:bg-blue-800:focus-within { + background-color: #1e40af; } - .sm\:placeholder-pink-700::placeholder { - color: #be185d; + .sm\:focus-within\:bg-blue-900:focus-within { + background-color: #1e3a8a; } - .sm\:placeholder-pink-800::placeholder { - color: #9d174d; + .sm\:focus-within\:bg-indigo-50:focus-within { + background-color: #eef2ff; } - .sm\:placeholder-pink-900::placeholder { - color: #831843; + .sm\:focus-within\:bg-indigo-100:focus-within { + background-color: #e0e7ff; } - .sm\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .sm\:focus-within\:bg-indigo-200:focus-within { + background-color: #c7d2fe; } - .sm\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .sm\:focus-within\:bg-indigo-300:focus-within { + background-color: #a5b4fc; } - .sm\:focus\:placeholder-black:focus::placeholder { - color: #000; + .sm\:focus-within\:bg-indigo-400:focus-within { + background-color: #818cf8; } - .sm\:focus\:placeholder-white:focus::placeholder { - color: #fff; + .sm\:focus-within\:bg-indigo-500:focus-within { + background-color: #6366f1; } - .sm\:focus\:placeholder-gray-50:focus::placeholder { - color: #f9fafb; + .sm\:focus-within\:bg-indigo-600:focus-within { + background-color: #4f46e5; } - .sm\:focus\:placeholder-gray-100:focus::placeholder { - color: #f3f4f6; + .sm\:focus-within\:bg-indigo-700:focus-within { + background-color: #4338ca; } - .sm\:focus\:placeholder-gray-200:focus::placeholder { - color: #e5e7eb; + .sm\:focus-within\:bg-indigo-800:focus-within { + background-color: #3730a3; } - .sm\:focus\:placeholder-gray-300:focus::placeholder { - color: #d1d5db; + .sm\:focus-within\:bg-indigo-900:focus-within { + background-color: #312e81; } - .sm\:focus\:placeholder-gray-400:focus::placeholder { - color: #9ca3af; + .sm\:focus-within\:bg-purple-50:focus-within { + background-color: #f5f3ff; } - .sm\:focus\:placeholder-gray-500:focus::placeholder { - color: #6b7280; + .sm\:focus-within\:bg-purple-100:focus-within { + background-color: #ede9fe; } - .sm\:focus\:placeholder-gray-600:focus::placeholder { - color: #4b5563; + .sm\:focus-within\:bg-purple-200:focus-within { + background-color: #ddd6fe; } - .sm\:focus\:placeholder-gray-700:focus::placeholder { - color: #374151; + .sm\:focus-within\:bg-purple-300:focus-within { + background-color: #c4b5fd; } - .sm\:focus\:placeholder-gray-800:focus::placeholder { - color: #1f2937; + .sm\:focus-within\:bg-purple-400:focus-within { + background-color: #a78bfa; } - .sm\:focus\:placeholder-gray-900:focus::placeholder { - color: #111827; + .sm\:focus-within\:bg-purple-500:focus-within { + background-color: #8b5cf6; } - .sm\:focus\:placeholder-red-50:focus::placeholder { - color: #fef2f2; + .sm\:focus-within\:bg-purple-600:focus-within { + background-color: #7c3aed; } - .sm\:focus\:placeholder-red-100:focus::placeholder { - color: #fee2e2; + .sm\:focus-within\:bg-purple-700:focus-within { + background-color: #6d28d9; } - .sm\:focus\:placeholder-red-200:focus::placeholder { - color: #fecaca; + .sm\:focus-within\:bg-purple-800:focus-within { + background-color: #5b21b6; } - .sm\:focus\:placeholder-red-300:focus::placeholder { - color: #fca5a5; + .sm\:focus-within\:bg-purple-900:focus-within { + background-color: #4c1d95; } - .sm\:focus\:placeholder-red-400:focus::placeholder { - color: #f87171; + .sm\:focus-within\:bg-pink-50:focus-within { + background-color: #fdf2f8; } - .sm\:focus\:placeholder-red-500:focus::placeholder { - color: #ef4444; + .sm\:focus-within\:bg-pink-100:focus-within { + background-color: #fce7f3; } - .sm\:focus\:placeholder-red-600:focus::placeholder { - color: #dc2626; + .sm\:focus-within\:bg-pink-200:focus-within { + background-color: #fbcfe8; } - .sm\:focus\:placeholder-red-700:focus::placeholder { - color: #b91c1c; + .sm\:focus-within\:bg-pink-300:focus-within { + background-color: #f9a8d4; } - .sm\:focus\:placeholder-red-800:focus::placeholder { - color: #991b1b; + .sm\:focus-within\:bg-pink-400:focus-within { + background-color: #f472b6; } - .sm\:focus\:placeholder-red-900:focus::placeholder { - color: #7f1d1d; + .sm\:focus-within\:bg-pink-500:focus-within { + background-color: #ec4899; } - .sm\:focus\:placeholder-yellow-50:focus::placeholder { - color: #fffbeb; + .sm\:focus-within\:bg-pink-600:focus-within { + background-color: #db2777; } - .sm\:focus\:placeholder-yellow-100:focus::placeholder { - color: #fef3c7; + .sm\:focus-within\:bg-pink-700:focus-within { + background-color: #be185d; } - .sm\:focus\:placeholder-yellow-200:focus::placeholder { - color: #fde68a; + .sm\:focus-within\:bg-pink-800:focus-within { + background-color: #9d174d; } - .sm\:focus\:placeholder-yellow-300:focus::placeholder { - color: #fcd34d; + .sm\:focus-within\:bg-pink-900:focus-within { + background-color: #831843; } - .sm\:focus\:placeholder-yellow-400:focus::placeholder { - color: #fbbf24; + .sm\:hover\:bg-transparent:hover { + background-color: transparent; } - .sm\:focus\:placeholder-yellow-500:focus::placeholder { - color: #f59e0b; + .sm\:hover\:bg-current:hover { + background-color: currentColor; } - .sm\:focus\:placeholder-yellow-600:focus::placeholder { - color: #d97706; + .sm\:hover\:bg-black:hover { + background-color: #000; } - .sm\:focus\:placeholder-yellow-700:focus::placeholder { - color: #b45309; + .sm\:hover\:bg-white:hover { + background-color: #fff; } - .sm\:focus\:placeholder-yellow-800:focus::placeholder { - color: #92400e; + .sm\:hover\:bg-gray-50:hover { + background-color: #f9fafb; } - .sm\:focus\:placeholder-yellow-900:focus::placeholder { - color: #78350f; + .sm\:hover\:bg-gray-100:hover { + background-color: #f3f4f6; } - .sm\:focus\:placeholder-green-50:focus::placeholder { - color: #ecfdf5; + .sm\:hover\:bg-gray-200:hover { + background-color: #e5e7eb; } - .sm\:focus\:placeholder-green-100:focus::placeholder { - color: #d1fae5; + .sm\:hover\:bg-gray-300:hover { + background-color: #d1d5db; } - .sm\:focus\:placeholder-green-200:focus::placeholder { - color: #a7f3d0; + .sm\:hover\:bg-gray-400:hover { + background-color: #9ca3af; } - .sm\:focus\:placeholder-green-300:focus::placeholder { - color: #6ee7b7; + .sm\:hover\:bg-gray-500:hover { + background-color: #6b7280; } - .sm\:focus\:placeholder-green-400:focus::placeholder { - color: #34d399; + .sm\:hover\:bg-gray-600:hover { + background-color: #4b5563; } - .sm\:focus\:placeholder-green-500:focus::placeholder { - color: #10b981; + .sm\:hover\:bg-gray-700:hover { + background-color: #374151; } - .sm\:focus\:placeholder-green-600:focus::placeholder { - color: #059669; + .sm\:hover\:bg-gray-800:hover { + background-color: #1f2937; } - .sm\:focus\:placeholder-green-700:focus::placeholder { - color: #047857; + .sm\:hover\:bg-gray-900:hover { + background-color: #111827; } - .sm\:focus\:placeholder-green-800:focus::placeholder { - color: #065f46; + .sm\:hover\:bg-red-50:hover { + background-color: #fef2f2; } - .sm\:focus\:placeholder-green-900:focus::placeholder { - color: #064e3b; + .sm\:hover\:bg-red-100:hover { + background-color: #fee2e2; } - .sm\:focus\:placeholder-blue-50:focus::placeholder { - color: #eff6ff; + .sm\:hover\:bg-red-200:hover { + background-color: #fecaca; } - .sm\:focus\:placeholder-blue-100:focus::placeholder { - color: #dbeafe; + .sm\:hover\:bg-red-300:hover { + background-color: #fca5a5; } - .sm\:focus\:placeholder-blue-200:focus::placeholder { - color: #bfdbfe; + .sm\:hover\:bg-red-400:hover { + background-color: #f87171; } - .sm\:focus\:placeholder-blue-300:focus::placeholder { - color: #93c5fd; + .sm\:hover\:bg-red-500:hover { + background-color: #ef4444; } - .sm\:focus\:placeholder-blue-400:focus::placeholder { - color: #60a5fa; + .sm\:hover\:bg-red-600:hover { + background-color: #dc2626; } - .sm\:focus\:placeholder-blue-500:focus::placeholder { - color: #3b82f6; + .sm\:hover\:bg-red-700:hover { + background-color: #b91c1c; } - .sm\:focus\:placeholder-blue-600:focus::placeholder { - color: #2563eb; + .sm\:hover\:bg-red-800:hover { + background-color: #991b1b; } - .sm\:focus\:placeholder-blue-700:focus::placeholder { - color: #1d4ed8; + .sm\:hover\:bg-red-900:hover { + background-color: #7f1d1d; } - .sm\:focus\:placeholder-blue-800:focus::placeholder { - color: #1e40af; + .sm\:hover\:bg-yellow-50:hover { + background-color: #fffbeb; } - .sm\:focus\:placeholder-blue-900:focus::placeholder { - color: #1e3a8a; + .sm\:hover\:bg-yellow-100:hover { + background-color: #fef3c7; } - .sm\:focus\:placeholder-indigo-50:focus::placeholder { - color: #eef2ff; + .sm\:hover\:bg-yellow-200:hover { + background-color: #fde68a; } - .sm\:focus\:placeholder-indigo-100:focus::placeholder { - color: #e0e7ff; + .sm\:hover\:bg-yellow-300:hover { + background-color: #fcd34d; } - .sm\:focus\:placeholder-indigo-200:focus::placeholder { - color: #c7d2fe; + .sm\:hover\:bg-yellow-400:hover { + background-color: #fbbf24; } - .sm\:focus\:placeholder-indigo-300:focus::placeholder { - color: #a5b4fc; + .sm\:hover\:bg-yellow-500:hover { + background-color: #f59e0b; } - .sm\:focus\:placeholder-indigo-400:focus::placeholder { - color: #818cf8; + .sm\:hover\:bg-yellow-600:hover { + background-color: #d97706; } - .sm\:focus\:placeholder-indigo-500:focus::placeholder { - color: #6366f1; + .sm\:hover\:bg-yellow-700:hover { + background-color: #b45309; } - .sm\:focus\:placeholder-indigo-600:focus::placeholder { - color: #4f46e5; + .sm\:hover\:bg-yellow-800:hover { + background-color: #92400e; } - .sm\:focus\:placeholder-indigo-700:focus::placeholder { - color: #4338ca; + .sm\:hover\:bg-yellow-900:hover { + background-color: #78350f; } - .sm\:focus\:placeholder-indigo-800:focus::placeholder { - color: #3730a3; + .sm\:hover\:bg-green-50:hover { + background-color: #ecfdf5; } - .sm\:focus\:placeholder-indigo-900:focus::placeholder { - color: #312e81; + .sm\:hover\:bg-green-100:hover { + background-color: #d1fae5; } - .sm\:focus\:placeholder-purple-50:focus::placeholder { - color: #f5f3ff; + .sm\:hover\:bg-green-200:hover { + background-color: #a7f3d0; } - .sm\:focus\:placeholder-purple-100:focus::placeholder { - color: #ede9fe; + .sm\:hover\:bg-green-300:hover { + background-color: #6ee7b7; } - .sm\:focus\:placeholder-purple-200:focus::placeholder { - color: #ddd6fe; + .sm\:hover\:bg-green-400:hover { + background-color: #34d399; } - .sm\:focus\:placeholder-purple-300:focus::placeholder { - color: #c4b5fd; + .sm\:hover\:bg-green-500:hover { + background-color: #10b981; } - .sm\:focus\:placeholder-purple-400:focus::placeholder { - color: #a78bfa; + .sm\:hover\:bg-green-600:hover { + background-color: #059669; } - .sm\:focus\:placeholder-purple-500:focus::placeholder { - color: #8b5cf6; + .sm\:hover\:bg-green-700:hover { + background-color: #047857; } - .sm\:focus\:placeholder-purple-600:focus::placeholder { - color: #7c3aed; + .sm\:hover\:bg-green-800:hover { + background-color: #065f46; } - .sm\:focus\:placeholder-purple-700:focus::placeholder { - color: #6d28d9; + .sm\:hover\:bg-green-900:hover { + background-color: #064e3b; } - .sm\:focus\:placeholder-purple-800:focus::placeholder { - color: #5b21b6; + .sm\:hover\:bg-blue-50:hover { + background-color: #eff6ff; } - .sm\:focus\:placeholder-purple-900:focus::placeholder { - color: #4c1d95; + .sm\:hover\:bg-blue-100:hover { + background-color: #dbeafe; } - .sm\:focus\:placeholder-pink-50:focus::placeholder { - color: #fdf2f8; + .sm\:hover\:bg-blue-200:hover { + background-color: #bfdbfe; } - .sm\:focus\:placeholder-pink-100:focus::placeholder { - color: #fce7f3; + .sm\:hover\:bg-blue-300:hover { + background-color: #93c5fd; } - .sm\:focus\:placeholder-pink-200:focus::placeholder { - color: #fbcfe8; + .sm\:hover\:bg-blue-400:hover { + background-color: #60a5fa; } - .sm\:focus\:placeholder-pink-300:focus::placeholder { - color: #f9a8d4; + .sm\:hover\:bg-blue-500:hover { + background-color: #3b82f6; } - .sm\:focus\:placeholder-pink-400:focus::placeholder { - color: #f472b6; + .sm\:hover\:bg-blue-600:hover { + background-color: #2563eb; } - .sm\:focus\:placeholder-pink-500:focus::placeholder { - color: #ec4899; + .sm\:hover\:bg-blue-700:hover { + background-color: #1d4ed8; } - .sm\:focus\:placeholder-pink-600:focus::placeholder { - color: #db2777; + .sm\:hover\:bg-blue-800:hover { + background-color: #1e40af; } - .sm\:focus\:placeholder-pink-700:focus::placeholder { - color: #be185d; + .sm\:hover\:bg-blue-900:hover { + background-color: #1e3a8a; } - .sm\:focus\:placeholder-pink-800:focus::placeholder { - color: #9d174d; + .sm\:hover\:bg-indigo-50:hover { + background-color: #eef2ff; } - .sm\:focus\:placeholder-pink-900:focus::placeholder { - color: #831843; + .sm\:hover\:bg-indigo-100:hover { + background-color: #e0e7ff; } - .sm\:pointer-events-none { - pointer-events: none; + .sm\:hover\:bg-indigo-200:hover { + background-color: #c7d2fe; } - .sm\:pointer-events-auto { - pointer-events: auto; + .sm\:hover\:bg-indigo-300:hover { + background-color: #a5b4fc; } - .sm\:static { - position: static; + .sm\:hover\:bg-indigo-400:hover { + background-color: #818cf8; } - .sm\:fixed { - position: fixed; + .sm\:hover\:bg-indigo-500:hover { + background-color: #6366f1; } - .sm\:absolute { - position: absolute; + .sm\:hover\:bg-indigo-600:hover { + background-color: #4f46e5; } - .sm\:relative { - position: relative; + .sm\:hover\:bg-indigo-700:hover { + background-color: #4338ca; } - .sm\:sticky { - position: sticky; + .sm\:hover\:bg-indigo-800:hover { + background-color: #3730a3; } - .sm\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .sm\:hover\:bg-indigo-900:hover { + background-color: #312e81; } - .sm\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .sm\:hover\:bg-purple-50:hover { + background-color: #f5f3ff; } - .sm\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .sm\:hover\:bg-purple-100:hover { + background-color: #ede9fe; } - .sm\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .sm\:hover\:bg-purple-200:hover { + background-color: #ddd6fe; } - .sm\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .sm\:hover\:bg-purple-300:hover { + background-color: #c4b5fd; } - .sm\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .sm\:hover\:bg-purple-400:hover { + background-color: #a78bfa; } - .sm\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .sm\:hover\:bg-purple-500:hover { + background-color: #8b5cf6; } - .sm\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .sm\:hover\:bg-purple-600:hover { + background-color: #7c3aed; } - .sm\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .sm\:hover\:bg-purple-700:hover { + background-color: #6d28d9; } - .sm\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .sm\:hover\:bg-purple-800:hover { + background-color: #5b21b6; } - .sm\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .sm\:hover\:bg-purple-900:hover { + background-color: #4c1d95; } - .sm\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .sm\:hover\:bg-pink-50:hover { + background-color: #fdf2f8; } - .sm\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .sm\:hover\:bg-pink-100:hover { + background-color: #fce7f3; } - .sm\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .sm\:hover\:bg-pink-200:hover { + background-color: #fbcfe8; } - .sm\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .sm\:hover\:bg-pink-300:hover { + background-color: #f9a8d4; } - .sm\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .sm\:hover\:bg-pink-400:hover { + background-color: #f472b6; } - .sm\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .sm\:hover\:bg-pink-500:hover { + background-color: #ec4899; } - .sm\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .sm\:hover\:bg-pink-600:hover { + background-color: #db2777; } - .sm\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .sm\:hover\:bg-pink-700:hover { + background-color: #be185d; } - .sm\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .sm\:hover\:bg-pink-800:hover { + background-color: #9d174d; } - .sm\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .sm\:hover\:bg-pink-900:hover { + background-color: #831843; } - .sm\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .sm\:focus\:bg-transparent:focus { + background-color: transparent; } - .sm\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .sm\:focus\:bg-current:focus { + background-color: currentColor; } - .sm\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .sm\:focus\:bg-black:focus { + background-color: #000; } - .sm\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .sm\:focus\:bg-white:focus { + background-color: #fff; } - .sm\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .sm\:focus\:bg-gray-50:focus { + background-color: #f9fafb; } - .sm\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .sm\:focus\:bg-gray-100:focus { + background-color: #f3f4f6; } - .sm\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .sm\:focus\:bg-gray-200:focus { + background-color: #e5e7eb; } - .sm\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .sm\:focus\:bg-gray-300:focus { + background-color: #d1d5db; } - .sm\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .sm\:focus\:bg-gray-400:focus { + background-color: #9ca3af; } - .sm\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .sm\:focus\:bg-gray-500:focus { + background-color: #6b7280; } - .sm\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .sm\:focus\:bg-gray-600:focus { + background-color: #4b5563; } - .sm\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .sm\:focus\:bg-gray-700:focus { + background-color: #374151; } - .sm\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .sm\:focus\:bg-gray-800:focus { + background-color: #1f2937; } - .sm\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .sm\:focus\:bg-gray-900:focus { + background-color: #111827; } - .sm\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .sm\:focus\:bg-red-50:focus { + background-color: #fef2f2; } - .sm\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .sm\:focus\:bg-red-100:focus { + background-color: #fee2e2; } - .sm\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .sm\:focus\:bg-red-200:focus { + background-color: #fecaca; } - .sm\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .sm\:focus\:bg-red-300:focus { + background-color: #fca5a5; } - .sm\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .sm\:focus\:bg-red-400:focus { + background-color: #f87171; } - .sm\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .sm\:focus\:bg-red-500:focus { + background-color: #ef4444; } - .sm\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .sm\:focus\:bg-red-600:focus { + background-color: #dc2626; } - .sm\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .sm\:focus\:bg-red-700:focus { + background-color: #b91c1c; } - .sm\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .sm\:focus\:bg-red-800:focus { + background-color: #991b1b; } - .sm\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .sm\:focus\:bg-red-900:focus { + background-color: #7f1d1d; } - .sm\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .sm\:focus\:bg-yellow-50:focus { + background-color: #fffbeb; } - .sm\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .sm\:focus\:bg-yellow-100:focus { + background-color: #fef3c7; } - .sm\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .sm\:focus\:bg-yellow-200:focus { + background-color: #fde68a; } - .sm\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .sm\:focus\:bg-yellow-300:focus { + background-color: #fcd34d; } - .sm\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .sm\:focus\:bg-yellow-400:focus { + background-color: #fbbf24; } - .sm\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .sm\:focus\:bg-yellow-500:focus { + background-color: #f59e0b; } - .sm\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .sm\:focus\:bg-yellow-600:focus { + background-color: #d97706; } - .sm\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .sm\:focus\:bg-yellow-700:focus { + background-color: #b45309; } - .sm\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .sm\:focus\:bg-yellow-800:focus { + background-color: #92400e; } - .sm\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .sm\:focus\:bg-yellow-900:focus { + background-color: #78350f; } - .sm\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .sm\:focus\:bg-green-50:focus { + background-color: #ecfdf5; } - .sm\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .sm\:focus\:bg-green-100:focus { + background-color: #d1fae5; } - .sm\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .sm\:focus\:bg-green-200:focus { + background-color: #a7f3d0; } - .sm\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .sm\:focus\:bg-green-300:focus { + background-color: #6ee7b7; } - .sm\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .sm\:focus\:bg-green-400:focus { + background-color: #34d399; } - .sm\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .sm\:focus\:bg-green-500:focus { + background-color: #10b981; } - .sm\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .sm\:focus\:bg-green-600:focus { + background-color: #059669; } - .sm\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .sm\:focus\:bg-green-700:focus { + background-color: #047857; } - .sm\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .sm\:focus\:bg-green-800:focus { + background-color: #065f46; } - .sm\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .sm\:focus\:bg-green-900:focus { + background-color: #064e3b; } - .sm\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .sm\:focus\:bg-blue-50:focus { + background-color: #eff6ff; } - .sm\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .sm\:focus\:bg-blue-100:focus { + background-color: #dbeafe; } - .sm\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .sm\:focus\:bg-blue-200:focus { + background-color: #bfdbfe; } - .sm\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .sm\:focus\:bg-blue-300:focus { + background-color: #93c5fd; } - .sm\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .sm\:focus\:bg-blue-400:focus { + background-color: #60a5fa; } - .sm\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .sm\:focus\:bg-blue-500:focus { + background-color: #3b82f6; } - .sm\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .sm\:focus\:bg-blue-600:focus { + background-color: #2563eb; } - .sm\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .sm\:focus\:bg-blue-700:focus { + background-color: #1d4ed8; } - .sm\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .sm\:focus\:bg-blue-800:focus { + background-color: #1e40af; } - .sm\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .sm\:focus\:bg-blue-900:focus { + background-color: #1e3a8a; } - .sm\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .sm\:focus\:bg-indigo-50:focus { + background-color: #eef2ff; } - .sm\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .sm\:focus\:bg-indigo-100:focus { + background-color: #e0e7ff; } - .sm\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .sm\:focus\:bg-indigo-200:focus { + background-color: #c7d2fe; } - .sm\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .sm\:focus\:bg-indigo-300:focus { + background-color: #a5b4fc; } - .sm\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .sm\:focus\:bg-indigo-400:focus { + background-color: #818cf8; } - .sm\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .sm\:focus\:bg-indigo-500:focus { + background-color: #6366f1; } - .sm\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .sm\:focus\:bg-indigo-600:focus { + background-color: #4f46e5; } - .sm\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .sm\:focus\:bg-indigo-700:focus { + background-color: #4338ca; } - .sm\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .sm\:focus\:bg-indigo-800:focus { + background-color: #3730a3; } - .sm\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .sm\:focus\:bg-indigo-900:focus { + background-color: #312e81; } - .sm\:inset-y-0 { - top: 0px; - bottom: 0px; + .sm\:focus\:bg-purple-50:focus { + background-color: #f5f3ff; } - .sm\:inset-x-0 { - right: 0px; - left: 0px; + .sm\:focus\:bg-purple-100:focus { + background-color: #ede9fe; } - .sm\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .sm\:focus\:bg-purple-200:focus { + background-color: #ddd6fe; } - .sm\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .sm\:focus\:bg-purple-300:focus { + background-color: #c4b5fd; } - .sm\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .sm\:focus\:bg-purple-400:focus { + background-color: #a78bfa; } - .sm\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .sm\:focus\:bg-purple-500:focus { + background-color: #8b5cf6; } - .sm\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .sm\:focus\:bg-purple-600:focus { + background-color: #7c3aed; } - .sm\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .sm\:focus\:bg-purple-700:focus { + background-color: #6d28d9; } - .sm\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .sm\:focus\:bg-purple-800:focus { + background-color: #5b21b6; } - .sm\:inset-x-4 { - right: 1rem; - left: 1rem; + .sm\:focus\:bg-purple-900:focus { + background-color: #4c1d95; } - .sm\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .sm\:focus\:bg-pink-50:focus { + background-color: #fdf2f8; } - .sm\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .sm\:focus\:bg-pink-100:focus { + background-color: #fce7f3; } - .sm\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .sm\:focus\:bg-pink-200:focus { + background-color: #fbcfe8; } - .sm\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .sm\:focus\:bg-pink-300:focus { + background-color: #f9a8d4; } - .sm\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .sm\:focus\:bg-pink-400:focus { + background-color: #f472b6; } - .sm\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .sm\:focus\:bg-pink-500:focus { + background-color: #ec4899; } - .sm\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .sm\:focus\:bg-pink-600:focus { + background-color: #db2777; } - .sm\:inset-x-8 { - right: 2rem; - left: 2rem; + .sm\:focus\:bg-pink-700:focus { + background-color: #be185d; } - .sm\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .sm\:focus\:bg-pink-800:focus { + background-color: #9d174d; } - .sm\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .sm\:focus\:bg-pink-900:focus { + background-color: #831843; } - .sm\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .sm\:bg-none { + background-image: none; } - .sm\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .sm\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .sm\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .sm\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .sm\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .sm\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .sm\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .sm\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .sm\:inset-x-12 { - right: 3rem; - left: 3rem; + .sm\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .sm\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .sm\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .sm\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .sm\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .sm\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .sm\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .sm\:inset-x-16 { - right: 4rem; - left: 4rem; + .sm\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .sm\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:inset-x-20 { - right: 5rem; - left: 5rem; + .sm\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .sm\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:inset-x-24 { - right: 6rem; - left: 6rem; + .sm\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .sm\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:inset-x-28 { - right: 7rem; - left: 7rem; + .sm\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .sm\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:inset-x-32 { - right: 8rem; - left: 8rem; + .sm\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .sm\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:inset-x-36 { - right: 9rem; - left: 9rem; + .sm\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .sm\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:inset-x-40 { - right: 10rem; - left: 10rem; + .sm\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .sm\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:inset-x-44 { - right: 11rem; - left: 11rem; + .sm\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .sm\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:inset-x-48 { - right: 12rem; - left: 12rem; + .sm\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .sm\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:inset-x-52 { - right: 13rem; - left: 13rem; + .sm\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .sm\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:inset-x-56 { - right: 14rem; - left: 14rem; + .sm\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .sm\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:inset-x-60 { - right: 15rem; - left: 15rem; + .sm\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .sm\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:inset-x-64 { - right: 16rem; - left: 16rem; + .sm\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .sm\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:inset-x-72 { - right: 18rem; - left: 18rem; + .sm\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .sm\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:inset-x-80 { - right: 20rem; - left: 20rem; + .sm\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .sm\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:inset-x-96 { - right: 24rem; - left: 24rem; + .sm\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:inset-y-auto { - top: auto; - bottom: auto; + .sm\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:inset-x-auto { - right: auto; - left: auto; + .sm\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:inset-y-px { - top: 1px; - bottom: 1px; + .sm\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:inset-x-px { - right: 1px; - left: 1px; + .sm\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .sm\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .sm\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .sm\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .sm\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .sm\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .sm\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .sm\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .sm\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:-inset-y-0 { - top: 0px; - bottom: 0px; + .sm\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:-inset-x-0 { - right: 0px; - left: 0px; + .sm\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .sm\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .sm\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .sm\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .sm\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .sm\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .sm\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .sm\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:-inset-x-4 { - right: -1rem; - left: -1rem; + .sm\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .sm\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .sm\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .sm\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .sm\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .sm\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .sm\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .sm\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:-inset-x-8 { - right: -2rem; - left: -2rem; + .sm\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .sm\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .sm\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .sm\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .sm\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .sm\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .sm\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .sm\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:-inset-x-12 { - right: -3rem; - left: -3rem; + .sm\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .sm\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .sm\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .sm\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:-inset-x-16 { - right: -4rem; - left: -4rem; + .sm\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .sm\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:-inset-x-20 { - right: -5rem; - left: -5rem; + .sm\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .sm\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:-inset-x-24 { - right: -6rem; - left: -6rem; + .sm\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .sm\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:-inset-x-28 { - right: -7rem; - left: -7rem; + .sm\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .sm\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:-inset-x-32 { - right: -8rem; - left: -8rem; + .sm\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .sm\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:-inset-x-36 { - right: -9rem; - left: -9rem; + .sm\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .sm\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:-inset-x-40 { - right: -10rem; - left: -10rem; + .sm\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .sm\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-inset-x-44 { - right: -11rem; - left: -11rem; + .sm\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .sm\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-inset-x-48 { - right: -12rem; - left: -12rem; + .sm\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .sm\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:-inset-x-52 { - right: -13rem; - left: -13rem; + .sm\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .sm\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:-inset-x-56 { - right: -14rem; - left: -14rem; + .sm\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .sm\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:-inset-x-60 { - right: -15rem; - left: -15rem; + .sm\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .sm\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:-inset-x-64 { - right: -16rem; - left: -16rem; + .sm\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .sm\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:-inset-x-72 { - right: -18rem; - left: -18rem; + .sm\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .sm\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:-inset-x-80 { - right: -20rem; - left: -20rem; + .sm\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .sm\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:-inset-x-96 { - right: -24rem; - left: -24rem; + .sm\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:-inset-y-px { - top: -1px; - bottom: -1px; + .sm\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:-inset-x-px { - right: -1px; - left: -1px; + .sm\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .sm\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .sm\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .sm\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .sm\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .sm\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .sm\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .sm\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .sm\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .sm\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:inset-x-1\/2 { - right: 50%; - left: 50%; + .sm\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .sm\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .sm\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .sm\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .sm\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .sm\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:inset-x-1\/4 { - right: 25%; - left: 25%; + .sm\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .sm\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:inset-x-2\/4 { - right: 50%; - left: 50%; + .sm\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .sm\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:inset-x-3\/4 { - right: 75%; - left: 75%; + .sm\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:inset-y-full { - top: 100%; - bottom: 100%; + .sm\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:inset-x-full { - right: 100%; - left: 100%; + .sm\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .sm\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .sm\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .sm\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .sm\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .sm\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .sm\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .sm\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .sm\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .sm\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .sm\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .sm\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .sm\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:-inset-y-full { - top: -100%; - bottom: -100%; + .sm\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:-inset-x-full { - right: -100%; - left: -100%; + .sm\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:top-0 { - top: 0px; + .sm\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:right-0 { - right: 0px; + .sm\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:bottom-0 { - bottom: 0px; + .sm\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:left-0 { - left: 0px; + .sm\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:top-1 { - top: 0.25rem; + .sm\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:right-1 { - right: 0.25rem; + .sm\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:bottom-1 { - bottom: 0.25rem; + .sm\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:left-1 { - left: 0.25rem; + .sm\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:top-2 { - top: 0.5rem; + .sm\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:right-2 { - right: 0.5rem; + .sm\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:bottom-2 { - bottom: 0.5rem; + .sm\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:left-2 { - left: 0.5rem; + .sm\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:top-3 { - top: 0.75rem; + .sm\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:right-3 { - right: 0.75rem; + .sm\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:bottom-3 { - bottom: 0.75rem; + .sm\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:left-3 { - left: 0.75rem; + .sm\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:top-4 { - top: 1rem; + .sm\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:right-4 { - right: 1rem; + .sm\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:bottom-4 { - bottom: 1rem; + .sm\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:left-4 { - left: 1rem; + .sm\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:top-5 { - top: 1.25rem; + .sm\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:right-5 { - right: 1.25rem; + .sm\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:bottom-5 { - bottom: 1.25rem; + .sm\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:left-5 { - left: 1.25rem; + .sm\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:top-6 { - top: 1.5rem; + .sm\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:right-6 { - right: 1.5rem; + .sm\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:bottom-6 { - bottom: 1.5rem; + .sm\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:left-6 { - left: 1.5rem; + .sm\:to-transparent { + --tw-gradient-to: transparent; } - .sm\:top-7 { - top: 1.75rem; + .sm\:to-current { + --tw-gradient-to: currentColor; } - .sm\:right-7 { - right: 1.75rem; + .sm\:to-black { + --tw-gradient-to: #000; } - .sm\:bottom-7 { - bottom: 1.75rem; + .sm\:to-white { + --tw-gradient-to: #fff; } - .sm\:left-7 { - left: 1.75rem; + .sm\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .sm\:top-8 { - top: 2rem; + .sm\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .sm\:right-8 { - right: 2rem; + .sm\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .sm\:bottom-8 { - bottom: 2rem; + .sm\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .sm\:left-8 { - left: 2rem; + .sm\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .sm\:top-9 { - top: 2.25rem; + .sm\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .sm\:right-9 { - right: 2.25rem; + .sm\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .sm\:bottom-9 { - bottom: 2.25rem; + .sm\:to-gray-700 { + --tw-gradient-to: #374151; } - .sm\:left-9 { - left: 2.25rem; + .sm\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .sm\:top-10 { - top: 2.5rem; + .sm\:to-gray-900 { + --tw-gradient-to: #111827; } - .sm\:right-10 { - right: 2.5rem; + .sm\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .sm\:bottom-10 { - bottom: 2.5rem; + .sm\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .sm\:left-10 { - left: 2.5rem; + .sm\:to-red-200 { + --tw-gradient-to: #fecaca; } - .sm\:top-11 { - top: 2.75rem; + .sm\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .sm\:right-11 { - right: 2.75rem; + .sm\:to-red-400 { + --tw-gradient-to: #f87171; } - .sm\:bottom-11 { - bottom: 2.75rem; + .sm\:to-red-500 { + --tw-gradient-to: #ef4444; } - .sm\:left-11 { - left: 2.75rem; + .sm\:to-red-600 { + --tw-gradient-to: #dc2626; } - .sm\:top-12 { - top: 3rem; + .sm\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .sm\:right-12 { - right: 3rem; + .sm\:to-red-800 { + --tw-gradient-to: #991b1b; } - .sm\:bottom-12 { - bottom: 3rem; + .sm\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .sm\:left-12 { - left: 3rem; + .sm\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .sm\:top-14 { - top: 3.5rem; + .sm\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .sm\:right-14 { - right: 3.5rem; + .sm\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .sm\:bottom-14 { - bottom: 3.5rem; + .sm\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .sm\:left-14 { - left: 3.5rem; + .sm\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .sm\:top-16 { - top: 4rem; + .sm\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .sm\:right-16 { - right: 4rem; + .sm\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .sm\:bottom-16 { - bottom: 4rem; + .sm\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .sm\:left-16 { - left: 4rem; + .sm\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .sm\:top-20 { - top: 5rem; + .sm\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .sm\:right-20 { - right: 5rem; + .sm\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .sm\:bottom-20 { - bottom: 5rem; + .sm\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .sm\:left-20 { - left: 5rem; + .sm\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .sm\:top-24 { - top: 6rem; + .sm\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .sm\:right-24 { - right: 6rem; + .sm\:to-green-400 { + --tw-gradient-to: #34d399; } - .sm\:bottom-24 { - bottom: 6rem; + .sm\:to-green-500 { + --tw-gradient-to: #10b981; } - .sm\:left-24 { - left: 6rem; + .sm\:to-green-600 { + --tw-gradient-to: #059669; } - .sm\:top-28 { - top: 7rem; + .sm\:to-green-700 { + --tw-gradient-to: #047857; } - .sm\:right-28 { - right: 7rem; + .sm\:to-green-800 { + --tw-gradient-to: #065f46; } - .sm\:bottom-28 { - bottom: 7rem; + .sm\:to-green-900 { + --tw-gradient-to: #064e3b; } - .sm\:left-28 { - left: 7rem; + .sm\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .sm\:top-32 { - top: 8rem; + .sm\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .sm\:right-32 { - right: 8rem; + .sm\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .sm\:bottom-32 { - bottom: 8rem; + .sm\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .sm\:left-32 { - left: 8rem; + .sm\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .sm\:top-36 { - top: 9rem; + .sm\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .sm\:right-36 { - right: 9rem; + .sm\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .sm\:bottom-36 { - bottom: 9rem; + .sm\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .sm\:left-36 { - left: 9rem; + .sm\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .sm\:top-40 { - top: 10rem; + .sm\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .sm\:right-40 { - right: 10rem; + .sm\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .sm\:bottom-40 { - bottom: 10rem; + .sm\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .sm\:left-40 { - left: 10rem; + .sm\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .sm\:top-44 { - top: 11rem; + .sm\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .sm\:right-44 { - right: 11rem; + .sm\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .sm\:bottom-44 { - bottom: 11rem; + .sm\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .sm\:left-44 { - left: 11rem; + .sm\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .sm\:top-48 { - top: 12rem; + .sm\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .sm\:right-48 { - right: 12rem; + .sm\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .sm\:bottom-48 { - bottom: 12rem; + .sm\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .sm\:left-48 { - left: 12rem; + .sm\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .sm\:top-52 { - top: 13rem; + .sm\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .sm\:right-52 { - right: 13rem; + .sm\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .sm\:bottom-52 { - bottom: 13rem; + .sm\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .sm\:left-52 { - left: 13rem; + .sm\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .sm\:top-56 { - top: 14rem; + .sm\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .sm\:right-56 { - right: 14rem; + .sm\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .sm\:bottom-56 { - bottom: 14rem; + .sm\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .sm\:left-56 { - left: 14rem; + .sm\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .sm\:top-60 { - top: 15rem; + .sm\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .sm\:right-60 { - right: 15rem; + .sm\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .sm\:bottom-60 { - bottom: 15rem; + .sm\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .sm\:left-60 { - left: 15rem; + .sm\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .sm\:top-64 { - top: 16rem; + .sm\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .sm\:right-64 { - right: 16rem; + .sm\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .sm\:bottom-64 { - bottom: 16rem; + .sm\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .sm\:left-64 { - left: 16rem; + .sm\:to-pink-600 { + --tw-gradient-to: #db2777; } - .sm\:top-72 { - top: 18rem; + .sm\:to-pink-700 { + --tw-gradient-to: #be185d; } - .sm\:right-72 { - right: 18rem; + .sm\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .sm\:bottom-72 { - bottom: 18rem; + .sm\:to-pink-900 { + --tw-gradient-to: #831843; } - .sm\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .sm\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-top-14 { - top: -3.5rem; + .sm\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-right-14 { - right: -3.5rem; + .sm\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-bottom-14 { - bottom: -3.5rem; + .sm\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-left-14 { - left: -3.5rem; + .sm\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:-top-16 { - top: -4rem; + .sm\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:-right-16 { - right: -4rem; + .sm\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:-bottom-16 { - bottom: -4rem; + .sm\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:-left-16 { - left: -4rem; + .sm\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:-top-20 { - top: -5rem; + .sm\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:-right-20 { - right: -5rem; + .sm\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:-bottom-20 { - bottom: -5rem; + .sm\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:-left-20 { - left: -5rem; + .sm\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:-top-24 { - top: -6rem; + .sm\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:-right-24 { - right: -6rem; + .sm\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:-bottom-24 { - bottom: -6rem; + .sm\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:-left-24 { - left: -6rem; + .sm\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:-top-28 { - top: -7rem; + .sm\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:-right-28 { - right: -7rem; + .sm\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:-bottom-28 { - bottom: -7rem; + .sm\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:-left-28 { - left: -7rem; + .sm\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:-top-32 { - top: -8rem; + .sm\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:-right-32 { - right: -8rem; + .sm\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:-bottom-32 { - bottom: -8rem; + .sm\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:-left-32 { - left: -8rem; + .sm\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:-top-36 { - top: -9rem; + .sm\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:-right-36 { - right: -9rem; + .sm\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:-bottom-36 { - bottom: -9rem; + .sm\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:-left-36 { - left: -9rem; + .sm\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:-top-40 { - top: -10rem; + .sm\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:-right-40 { - right: -10rem; + .sm\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:-bottom-40 { - bottom: -10rem; + .sm\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:-left-40 { - left: -10rem; + .sm\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:-top-44 { - top: -11rem; + .sm\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:-right-44 { - right: -11rem; + .sm\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:-bottom-44 { - bottom: -11rem; + .sm\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:-left-44 { - left: -11rem; + .sm\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:-top-48 { - top: -12rem; + .sm\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:-right-48 { - right: -12rem; + .sm\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:-bottom-48 { - bottom: -12rem; + .sm\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:-left-48 { - left: -12rem; + .sm\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:-top-52 { - top: -13rem; + .sm\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:-right-52 { - right: -13rem; + .sm\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:-bottom-52 { - bottom: -13rem; + .sm\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:-left-52 { - left: -13rem; + .sm\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:-top-56 { - top: -14rem; + .sm\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:-right-56 { - right: -14rem; + .sm\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:-bottom-56 { - bottom: -14rem; + .sm\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:-left-56 { - left: -14rem; + .sm\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:-top-60 { - top: -15rem; + .sm\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:-right-60 { - right: -15rem; + .sm\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:-bottom-60 { - bottom: -15rem; + .sm\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:-left-60 { - left: -15rem; + .sm\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:-top-64 { - top: -16rem; + .sm\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:-right-64 { - right: -16rem; + .sm\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:-bottom-64 { - bottom: -16rem; + .sm\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:-left-64 { - left: -16rem; + .sm\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:-top-72 { - top: -18rem; + .sm\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:-right-72 { - right: -18rem; + .sm\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:-bottom-72 { - bottom: -18rem; + .sm\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:-left-72 { - left: -18rem; + .sm\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:-top-80 { - top: -20rem; + .sm\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:-right-80 { - right: -20rem; + .sm\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:-bottom-80 { - bottom: -20rem; + .sm\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:-left-80 { - left: -20rem; + .sm\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:-top-96 { - top: -24rem; + .sm\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:-right-96 { - right: -24rem; + .sm\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:-bottom-96 { - bottom: -24rem; + .sm\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:-left-96 { - left: -24rem; + .sm\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:-top-px { - top: -1px; + .sm\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:-right-px { - right: -1px; + .sm\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:-bottom-px { - bottom: -1px; + .sm\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:-left-px { - left: -1px; + .sm\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:-top-0\.5 { - top: -0.125rem; + .sm\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:-right-0\.5 { - right: -0.125rem; + .sm\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:-bottom-0\.5 { - bottom: -0.125rem; + .sm\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:-left-0\.5 { - left: -0.125rem; + .sm\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:-top-1\.5 { - top: -0.375rem; + .sm\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:-right-1\.5 { - right: -0.375rem; + .sm\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:-bottom-1\.5 { - bottom: -0.375rem; + .sm\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:-left-1\.5 { - left: -0.375rem; + .sm\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:-top-2\.5 { - top: -0.625rem; + .sm\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:-right-2\.5 { - right: -0.625rem; + .sm\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:-bottom-2\.5 { - bottom: -0.625rem; + .sm\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:-left-2\.5 { - left: -0.625rem; + .sm\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .sm\:-top-3\.5 { - top: -0.875rem; + .sm\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .sm\:-right-3\.5 { - right: -0.875rem; + .sm\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .sm\:-bottom-3\.5 { - bottom: -0.875rem; + .sm\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .sm\:-left-3\.5 { - left: -0.875rem; + .sm\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .sm\:top-1\/2 { - top: 50%; + .sm\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .sm\:right-1\/2 { - right: 50%; + .sm\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .sm\:bottom-1\/2 { - bottom: 50%; + .sm\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .sm\:left-1\/2 { - left: 50%; + .sm\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .sm\:top-1\/3 { - top: 33.333333%; + .sm\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .sm\:right-1\/3 { - right: 33.333333%; + .sm\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .sm\:bottom-1\/3 { - bottom: 33.333333%; + .sm\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .sm\:left-1\/3 { - left: 33.333333%; + .sm\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .sm\:top-2\/3 { - top: 66.666667%; + .sm\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .sm\:right-2\/3 { - right: 66.666667%; + .sm\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .sm\:bottom-2\/3 { - bottom: 66.666667%; + .sm\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .sm\:left-2\/3 { - left: 66.666667%; + .sm\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .sm\:top-1\/4 { - top: 25%; + .sm\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .sm\:right-1\/4 { - right: 25%; + .sm\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .sm\:bottom-1\/4 { - bottom: 25%; + .sm\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .sm\:left-1\/4 { - left: 25%; + .sm\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .sm\:top-2\/4 { - top: 50%; + .sm\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .sm\:right-2\/4 { - right: 50%; + .sm\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .sm\:bottom-2\/4 { - bottom: 50%; + .sm\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .sm\:left-2\/4 { - left: 50%; + .sm\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .sm\:top-3\/4 { - top: 75%; + .sm\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .sm\:right-3\/4 { - right: 75%; + .sm\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .sm\:bottom-3\/4 { - bottom: 75%; + .sm\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .sm\:left-3\/4 { - left: 75%; + .sm\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .sm\:top-full { - top: 100%; + .sm\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .sm\:right-full { - right: 100%; + .sm\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .sm\:bottom-full { - bottom: 100%; + .sm\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .sm\:left-full { - left: 100%; + .sm\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .sm\:-top-1\/2 { - top: -50%; + .sm\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .sm\:-right-1\/2 { - right: -50%; + .sm\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .sm\:-bottom-1\/2 { - bottom: -50%; + .sm\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .sm\:-left-1\/2 { - left: -50%; + .sm\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .sm\:-top-1\/3 { - top: -33.333333%; + .sm\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .sm\:-right-1\/3 { - right: -33.333333%; + .sm\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .sm\:-bottom-1\/3 { - bottom: -33.333333%; + .sm\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .sm\:-left-1\/3 { - left: -33.333333%; + .sm\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .sm\:-top-2\/3 { - top: -66.666667%; + .sm\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .sm\:-right-2\/3 { - right: -66.666667%; + .sm\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .sm\:-bottom-2\/3 { - bottom: -66.666667%; + .sm\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .sm\:-left-2\/3 { - left: -66.666667%; + .sm\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .sm\:-top-1\/4 { - top: -25%; + .sm\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .sm\:-right-1\/4 { - right: -25%; + .sm\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .sm\:-bottom-1\/4 { - bottom: -25%; + .sm\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .sm\:-left-1\/4 { - left: -25%; + .sm\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .sm\:-top-2\/4 { - top: -50%; + .sm\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .sm\:-right-2\/4 { - right: -50%; + .sm\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .sm\:-bottom-2\/4 { - bottom: -50%; + .sm\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .sm\:-left-2\/4 { - left: -50%; + .sm\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .sm\:-top-3\/4 { - top: -75%; + .sm\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .sm\:-right-3\/4 { - right: -75%; + .sm\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .sm\:-bottom-3\/4 { - bottom: -75%; + .sm\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .sm\:-left-3\/4 { - left: -75%; + .sm\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .sm\:-top-full { - top: -100%; + .sm\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .sm\:-right-full { - right: -100%; + .sm\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .sm\:-bottom-full { - bottom: -100%; + .sm\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .sm\:-left-full { - left: -100%; + .sm\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .sm\:resize-none { - resize: none; + .sm\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .sm\:resize-y { - resize: vertical; + .sm\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .sm\:resize-x { - resize: horizontal; + .sm\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .sm\:resize { - resize: both; + .sm\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .sm\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .sm\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .sm\: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); + .sm\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .sm\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .sm\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .sm\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .sm\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .sm\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .sm\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .sm\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .sm\:group-hover\: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); + .sm\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .sm\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .sm\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .sm\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .sm\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .sm\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .sm\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .sm\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .sm\:focus-within\:shadow-md:focus-within { - --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); + .sm\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .sm\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .sm\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .sm\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .sm\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .sm\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .sm\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .sm\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .sm\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .sm\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .sm\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .sm\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .sm\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .sm\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .sm\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .sm\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .sm\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .sm\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .sm\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .sm\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .sm\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .sm\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .sm\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .sm\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .sm\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .sm\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .sm\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .sm\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .sm\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .sm\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .sm\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .sm\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .sm\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .sm\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .sm\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .sm\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .sm\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .sm\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .sm\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .sm\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .sm\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .sm\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .sm\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .sm\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .sm\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .sm\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .sm\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .sm\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .sm\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .sm\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .sm\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .sm\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .sm\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .sm\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .sm\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .sm\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .sm\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .sm\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .sm\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .sm\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .sm\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .sm\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .sm\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .sm\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .sm\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .sm\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .sm\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .sm\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .sm\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .sm\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .sm\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .sm\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .sm\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .sm\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .sm\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .sm\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .sm\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .sm\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .sm\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .sm\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .sm\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .sm\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .sm\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .sm\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .sm\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .sm\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .sm\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .sm\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .sm\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .sm\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .sm\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .sm\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .sm\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .sm\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .sm\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .sm\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .sm\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .sm\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .sm\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .sm\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .sm\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .sm\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .sm\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .sm\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .sm\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .sm\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .sm\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .sm\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .sm\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .sm\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .sm\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .sm\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .sm\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .sm\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .sm\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .sm\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .sm\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .sm\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .sm\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .sm\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .sm\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .sm\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .sm\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .sm\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .sm\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .sm\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .sm\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .sm\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .sm\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .sm\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .sm\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .sm\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .sm\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .sm\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .sm\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .sm\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .sm\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .sm\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .sm\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .sm\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .sm\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .sm\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .sm\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .sm\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .sm\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .sm\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .sm\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .sm\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .sm\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .sm\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .sm\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .sm\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .sm\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .sm\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .sm\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .sm\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .sm\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .sm\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .sm\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .sm\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .sm\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .sm\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .sm\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .sm\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .sm\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .sm\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .sm\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .sm\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .sm\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .sm\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .sm\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .sm\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .sm\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .sm\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .sm\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .sm\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .sm\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .sm\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .sm\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .sm\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .sm\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .sm\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .sm\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .sm\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .sm\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .sm\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .sm\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .sm\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .sm\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .sm\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .sm\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .sm\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .sm\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .sm\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .sm\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .sm\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .sm\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .sm\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .sm\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .sm\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .sm\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .sm\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .sm\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .sm\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .sm\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .sm\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .sm\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .sm\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .sm\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .sm\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .sm\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .sm\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .sm\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .sm\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .sm\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .sm\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .sm\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .sm\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .sm\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .sm\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .sm\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .sm\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .sm\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .sm\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .sm\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .sm\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .sm\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .sm\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .sm\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .sm\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .sm\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .sm\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .sm\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .sm\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .sm\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .sm\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .sm\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .sm\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .sm\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .sm\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .sm\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .sm\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .sm\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .sm\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .sm\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .sm\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .sm\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .sm\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .sm\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .sm\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .sm\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .sm\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .sm\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .sm\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .sm\:decoration-slice { + box-decoration-break: slice; } - .sm\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .sm\:decoration-clone { + box-decoration-break: clone; } - .sm\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .sm\:bg-auto { + background-size: auto; } - .sm\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .sm\:bg-cover { + background-size: cover; } - .sm\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .sm\:bg-contain { + background-size: contain; } - .sm\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .sm\:bg-fixed { + background-attachment: fixed; } - .sm\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .sm\:bg-local { + background-attachment: local; } - .sm\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .sm\:bg-scroll { + background-attachment: scroll; } - .sm\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .sm\:bg-clip-border { + background-clip: border-box; } - .sm\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .sm\:bg-clip-padding { + background-clip: padding-box; } - .sm\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .sm\:bg-clip-content { + background-clip: content-box; } - .sm\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .sm\:bg-clip-text { + background-clip: text; } - .sm\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .sm\:bg-bottom { + background-position: bottom; } - .sm\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .sm\:bg-center { + background-position: center; } - .sm\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .sm\:bg-left { + background-position: left; } - .sm\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .sm\:bg-left-bottom { + background-position: left bottom; } - .sm\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .sm\:bg-left-top { + background-position: left top; } - .sm\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .sm\:bg-right { + background-position: right; } - .sm\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .sm\:bg-right-bottom { + background-position: right bottom; } - .sm\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .sm\:bg-right-top { + background-position: right top; } - .sm\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .sm\:bg-top { + background-position: top; } - .sm\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .sm\:bg-repeat { + background-repeat: repeat; } - .sm\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .sm\:bg-no-repeat { + background-repeat: no-repeat; } - .sm\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .sm\:bg-repeat-x { + background-repeat: repeat-x; } - .sm\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .sm\:bg-repeat-y { + background-repeat: repeat-y; } - .sm\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .sm\:bg-repeat-round { + background-repeat: round; } - .sm\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .sm\:bg-repeat-space { + background-repeat: space; } - .sm\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .sm\:bg-origin-border { + background-origin: border-box; } - .sm\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .sm\:bg-origin-padding { + background-origin: padding-box; } - .sm\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .sm\:bg-origin-content { + background-origin: content-box; } - .sm\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .sm\:fill-current { + fill: currentColor; } - .sm\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .sm\:stroke-current { + stroke: currentColor; } - .sm\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .sm\:stroke-0 { + stroke-width: 0; } - .sm\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .sm\:stroke-1 { + stroke-width: 1; } - .sm\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .sm\:stroke-2 { + stroke-width: 2; } - .sm\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .sm\:object-contain { + object-fit: contain; } - .sm\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .sm\:object-cover { + object-fit: cover; } - .sm\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .sm\:object-fill { + object-fit: fill; } - .sm\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .sm\:object-none { + object-fit: none; } - .sm\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .sm\:object-scale-down { + object-fit: scale-down; } - .sm\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .sm\:object-bottom { + object-position: bottom; } - .sm\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .sm\:object-center { + object-position: center; } - .sm\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .sm\:object-left { + object-position: left; } - .sm\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .sm\:object-left-bottom { + object-position: left bottom; } - .sm\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .sm\:object-left-top { + object-position: left top; } - .sm\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .sm\:object-right { + object-position: right; } - .sm\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .sm\:object-right-bottom { + object-position: right bottom; } - .sm\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .sm\:object-right-top { + object-position: right top; } - .sm\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .sm\:object-top { + object-position: top; } - .sm\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .sm\:p-0 { + padding: 0px; } - .sm\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .sm\:p-1 { + padding: 0.25rem; } - .sm\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .sm\:p-2 { + padding: 0.5rem; } - .sm\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .sm\:p-3 { + padding: 0.75rem; } - .sm\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .sm\:p-4 { + padding: 1rem; } - .sm\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .sm\:p-5 { + padding: 1.25rem; } - .sm\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .sm\:p-6 { + padding: 1.5rem; } - .sm\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .sm\:p-7 { + padding: 1.75rem; } - .sm\:ring-transparent { - --tw-ring-color: transparent; + .sm\:p-8 { + padding: 2rem; } - .sm\:ring-current { - --tw-ring-color: currentColor; + .sm\:p-9 { + padding: 2.25rem; } - .sm\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .sm\:p-10 { + padding: 2.5rem; } - .sm\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .sm\:p-11 { + padding: 2.75rem; } - .sm\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .sm\:p-12 { + padding: 3rem; } - .sm\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .sm\:p-14 { + padding: 3.5rem; } - .sm\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .sm\:p-16 { + padding: 4rem; } - .sm\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .sm\:p-20 { + padding: 5rem; } - .sm\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .sm\:p-24 { + padding: 6rem; } - .sm\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .sm\:p-28 { + padding: 7rem; } - .sm\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .sm\:p-32 { + padding: 8rem; } - .sm\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .sm\:p-36 { + padding: 9rem; } - .sm\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .sm\:p-40 { + padding: 10rem; } - .sm\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .sm\:p-44 { + padding: 11rem; } - .sm\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .sm\:p-48 { + padding: 12rem; } - .sm\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .sm\:p-52 { + padding: 13rem; } - .sm\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .sm\:p-56 { + padding: 14rem; } - .sm\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .sm\:p-60 { + padding: 15rem; } - .sm\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .sm\:p-64 { + padding: 16rem; } - .sm\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .sm\:p-72 { + padding: 18rem; } - .sm\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .sm\:p-80 { + padding: 20rem; } - .sm\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .sm\:p-96 { + padding: 24rem; } - .sm\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .sm\:p-px { + padding: 1px; } - .sm\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .sm\:p-0\.5 { + padding: 0.125rem; } - .sm\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .sm\:p-1\.5 { + padding: 0.375rem; } - .sm\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .sm\:p-2\.5 { + padding: 0.625rem; } - .sm\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .sm\:p-3\.5 { + padding: 0.875rem; } - .sm\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .sm\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .sm\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .sm\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .sm\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .sm\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .sm\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .sm\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .sm\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .sm\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .sm\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .sm\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .sm\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .sm\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .sm\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .sm\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .sm\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .sm\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .sm\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .sm\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .sm\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .sm\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .sm\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .sm\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .sm\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .sm\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .sm\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .sm\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .sm\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .sm\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .sm\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .sm\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .sm\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .sm\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .sm\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .sm\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .sm\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .sm\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .sm\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .sm\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .sm\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .sm\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .sm\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .sm\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .sm\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .sm\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .sm\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .sm\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .sm\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .sm\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .sm\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .sm\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .sm\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .sm\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .sm\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .sm\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .sm\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .sm\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .sm\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .sm\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .sm\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .sm\:px-px { + padding-left: 1px; + padding-right: 1px; } - .sm\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .sm\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .sm\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .sm\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .sm\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .sm\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .sm\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .sm\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .sm\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .sm\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .sm\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .sm\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .sm\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .sm\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .sm\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .sm\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .sm\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .sm\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .sm\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .sm\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .sm\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .sm\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .sm\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .sm\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .sm\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .sm\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .sm\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .sm\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .sm\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .sm\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .sm\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .sm\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .sm\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .sm\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .sm\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .sm\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .sm\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .sm\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .sm\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .sm\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .sm\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .sm\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .sm\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .sm\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .sm\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .sm\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .sm\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .sm\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .sm\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .sm\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .sm\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .sm\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .sm\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .sm\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .sm\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .sm\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .sm\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .sm\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .sm\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .sm\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .sm\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .sm\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .sm\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .sm\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .sm\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .sm\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .sm\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .sm\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .sm\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .sm\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .sm\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .sm\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .sm\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .sm\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .sm\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .sm\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .sm\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .sm\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .sm\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .sm\:pt-0 { + padding-top: 0px; } - .sm\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .sm\:pt-1 { + padding-top: 0.25rem; } - .sm\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .sm\:pt-2 { + padding-top: 0.5rem; } - .sm\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .sm\:pt-3 { + padding-top: 0.75rem; } - .sm\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .sm\:pt-4 { + padding-top: 1rem; } - .sm\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .sm\:pt-5 { + padding-top: 1.25rem; } - .sm\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .sm\:pt-6 { + padding-top: 1.5rem; } - .sm\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .sm\:pt-7 { + padding-top: 1.75rem; } - .sm\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .sm\:pt-8 { + padding-top: 2rem; } - .sm\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .sm\:pt-9 { + padding-top: 2.25rem; } - .sm\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .sm\:pt-10 { + padding-top: 2.5rem; } - .sm\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .sm\:pt-11 { + padding-top: 2.75rem; } - .sm\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .sm\:pt-12 { + padding-top: 3rem; } - .sm\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .sm\:pt-14 { + padding-top: 3.5rem; } - .sm\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .sm\:pt-16 { + padding-top: 4rem; } - .sm\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .sm\:pt-20 { + padding-top: 5rem; } - .sm\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .sm\:pt-24 { + padding-top: 6rem; } - .sm\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .sm\:pt-28 { + padding-top: 7rem; } - .sm\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .sm\:pt-32 { + padding-top: 8rem; } - .sm\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .sm\:pt-36 { + padding-top: 9rem; } - .sm\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .sm\:pt-40 { + padding-top: 10rem; } - .sm\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .sm\:pt-44 { + padding-top: 11rem; } - .sm\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .sm\:pt-48 { + padding-top: 12rem; } - .sm\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .sm\:pt-52 { + padding-top: 13rem; } - .sm\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .sm\:pt-56 { + padding-top: 14rem; } - .sm\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .sm\:pt-60 { + padding-top: 15rem; } - .sm\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .sm\:pt-64 { + padding-top: 16rem; } - .sm\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .sm\:pt-72 { + padding-top: 18rem; } - .sm\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .sm\:pt-80 { + padding-top: 20rem; } - .sm\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .sm\:pt-96 { + padding-top: 24rem; } - .sm\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .sm\:pt-px { + padding-top: 1px; } - .sm\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .sm\:pt-0\.5 { + padding-top: 0.125rem; } - .sm\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .sm\:pt-1\.5 { + padding-top: 0.375rem; } - .sm\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .sm\:pt-2\.5 { + padding-top: 0.625rem; } - .sm\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .sm\:pt-3\.5 { + padding-top: 0.875rem; } - .sm\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .sm\:pr-0 { + padding-right: 0px; } - .sm\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .sm\:pr-1 { + padding-right: 0.25rem; } - .sm\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .sm\:pr-2 { + padding-right: 0.5rem; } - .sm\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .sm\:pr-3 { + padding-right: 0.75rem; } - .sm\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .sm\:pr-4 { + padding-right: 1rem; } - .sm\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .sm\:pr-5 { + padding-right: 1.25rem; } - .sm\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .sm\:pr-6 { + padding-right: 1.5rem; } - .sm\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .sm\:pr-7 { + padding-right: 1.75rem; } - .sm\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .sm\:pr-8 { + padding-right: 2rem; } - .sm\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .sm\:pr-9 { + padding-right: 2.25rem; } - .sm\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .sm\:pr-10 { + padding-right: 2.5rem; } - .sm\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .sm\:pr-11 { + padding-right: 2.75rem; } - .sm\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .sm\:pr-12 { + padding-right: 3rem; } - .sm\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .sm\:pr-14 { + padding-right: 3.5rem; } - .sm\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .sm\:pr-16 { + padding-right: 4rem; } - .sm\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .sm\:pr-20 { + padding-right: 5rem; } - .sm\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .sm\:pr-24 { + padding-right: 6rem; } - .sm\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .sm\:pr-28 { + padding-right: 7rem; } - .sm\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .sm\:pr-32 { + padding-right: 8rem; } - .sm\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .sm\:pr-36 { + padding-right: 9rem; } - .sm\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .sm\:pr-40 { + padding-right: 10rem; } - .sm\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .sm\:pr-44 { + padding-right: 11rem; } - .sm\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .sm\:pr-48 { + padding-right: 12rem; } - .sm\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .sm\:pr-52 { + padding-right: 13rem; } - .sm\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .sm\:pr-56 { + padding-right: 14rem; } - .sm\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .sm\:pr-60 { + padding-right: 15rem; } - .sm\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .sm\:pr-64 { + padding-right: 16rem; } - .sm\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .sm\:pr-72 { + padding-right: 18rem; } - .sm\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .sm\:pr-80 { + padding-right: 20rem; } - .sm\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .sm\:pr-96 { + padding-right: 24rem; } - .sm\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .sm\:pr-px { + padding-right: 1px; } - .sm\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .sm\:pr-0\.5 { + padding-right: 0.125rem; } - .sm\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .sm\:pr-1\.5 { + padding-right: 0.375rem; } - .sm\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .sm\:pr-2\.5 { + padding-right: 0.625rem; } - .sm\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .sm\:pr-3\.5 { + padding-right: 0.875rem; } - .sm\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .sm\:pb-0 { + padding-bottom: 0px; } - .sm\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .sm\:pb-1 { + padding-bottom: 0.25rem; } - .sm\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .sm\:pb-2 { + padding-bottom: 0.5rem; } - .sm\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .sm\:pb-3 { + padding-bottom: 0.75rem; } - .sm\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .sm\:pb-4 { + padding-bottom: 1rem; } - .sm\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .sm\:pb-5 { + padding-bottom: 1.25rem; } - .sm\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .sm\:pb-6 { + padding-bottom: 1.5rem; } - .sm\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .sm\:pb-7 { + padding-bottom: 1.75rem; } - .sm\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .sm\:pb-8 { + padding-bottom: 2rem; } - .sm\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .sm\:pb-9 { + padding-bottom: 2.25rem; } - .sm\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .sm\:pb-10 { + padding-bottom: 2.5rem; } - .sm\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .sm\:pb-11 { + padding-bottom: 2.75rem; } - .sm\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .sm\:pb-12 { + padding-bottom: 3rem; } - .sm\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .sm\:pb-14 { + padding-bottom: 3.5rem; } - .sm\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .sm\:pb-16 { + padding-bottom: 4rem; } - .sm\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .sm\:pb-20 { + padding-bottom: 5rem; } - .sm\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .sm\:pb-24 { + padding-bottom: 6rem; } - .sm\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .sm\:pb-28 { + padding-bottom: 7rem; } - .sm\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .sm\:pb-32 { + padding-bottom: 8rem; } - .sm\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .sm\:pb-36 { + padding-bottom: 9rem; } - .sm\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .sm\:pb-40 { + padding-bottom: 10rem; } - .sm\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .sm\:pb-44 { + padding-bottom: 11rem; } - .sm\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .sm\:pb-48 { + padding-bottom: 12rem; } - .sm\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .sm\:pb-52 { + padding-bottom: 13rem; } - .sm\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .sm\:pb-56 { + padding-bottom: 14rem; } - .sm\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .sm\:pb-60 { + padding-bottom: 15rem; } - .sm\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .sm\:pb-64 { + padding-bottom: 16rem; } - .sm\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .sm\:pb-72 { + padding-bottom: 18rem; } - .sm\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .sm\:pb-80 { + padding-bottom: 20rem; } - .sm\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .sm\:pb-96 { + padding-bottom: 24rem; } - .sm\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .sm\:pb-px { + padding-bottom: 1px; } - .sm\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .sm\:pb-0\.5 { + padding-bottom: 0.125rem; } - .sm\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .sm\:pb-1\.5 { + padding-bottom: 0.375rem; } - .sm\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .sm\:pb-2\.5 { + padding-bottom: 0.625rem; } - .sm\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .sm\:pb-3\.5 { + padding-bottom: 0.875rem; } - .sm\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .sm\:pl-0 { + padding-left: 0px; } - .sm\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .sm\:pl-1 { + padding-left: 0.25rem; } - .sm\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .sm\:pl-2 { + padding-left: 0.5rem; } - .sm\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .sm\:pl-3 { + padding-left: 0.75rem; } - .sm\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .sm\:pl-4 { + padding-left: 1rem; } - .sm\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .sm\:pl-5 { + padding-left: 1.25rem; } - .sm\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .sm\:pl-6 { + padding-left: 1.5rem; } - .sm\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .sm\:pl-7 { + padding-left: 1.75rem; } - .sm\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .sm\:pl-8 { + padding-left: 2rem; } - .sm\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .sm\:pl-9 { + padding-left: 2.25rem; } - .sm\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .sm\:pl-10 { + padding-left: 2.5rem; } - .sm\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .sm\:pl-11 { + padding-left: 2.75rem; } - .sm\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .sm\:pl-12 { + padding-left: 3rem; } - .sm\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .sm\:pl-14 { + padding-left: 3.5rem; } - .sm\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .sm\:pl-16 { + padding-left: 4rem; } - .sm\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .sm\:pl-20 { + padding-left: 5rem; } - .sm\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .sm\:pl-24 { + padding-left: 6rem; } - .sm\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .sm\:pl-28 { + padding-left: 7rem; } - .sm\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .sm\:pl-32 { + padding-left: 8rem; } - .sm\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .sm\:pl-36 { + padding-left: 9rem; } - .sm\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .sm\:pl-40 { + padding-left: 10rem; } - .sm\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .sm\:pl-44 { + padding-left: 11rem; } - .sm\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .sm\:pl-48 { + padding-left: 12rem; } - .sm\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .sm\:pl-52 { + padding-left: 13rem; } - .sm\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .sm\:pl-56 { + padding-left: 14rem; } - .sm\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .sm\:pl-60 { + padding-left: 15rem; } - .sm\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .sm\:pl-64 { + padding-left: 16rem; } - .sm\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .sm\:pl-72 { + padding-left: 18rem; } - .sm\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .sm\:pl-80 { + padding-left: 20rem; } - .sm\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .sm\:pl-96 { + padding-left: 24rem; } - .sm\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .sm\:pl-px { + padding-left: 1px; } - .sm\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .sm\:pl-0\.5 { + padding-left: 0.125rem; } - .sm\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .sm\:pl-1\.5 { + padding-left: 0.375rem; } - .sm\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .sm\:pl-2\.5 { + padding-left: 0.625rem; } - .sm\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .sm\:pl-3\.5 { + padding-left: 0.875rem; } - .sm\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .sm\:text-left { + text-align: left; } - .sm\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .sm\:text-center { + text-align: center; } - .sm\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .sm\:text-right { + text-align: right; } - .sm\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .sm\:text-justify { + text-align: justify; } - .sm\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .sm\:align-baseline { + vertical-align: baseline; } - .sm\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .sm\:align-top { + vertical-align: top; } - .sm\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .sm\:align-middle { + vertical-align: middle; } - .sm\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .sm\:align-bottom { + vertical-align: bottom; } - .sm\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .sm\:align-text-top { + vertical-align: text-top; } - .sm\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .sm\:align-text-bottom { + vertical-align: text-bottom; } - .sm\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .sm\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .sm\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .sm\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .sm\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .sm\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .sm\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .sm\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .sm\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .sm\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .sm\:ring-opacity-0 { - --tw-ring-opacity: 0; + .sm\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .sm\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .sm\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .sm\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .sm\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .sm\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .sm\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .sm\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .sm\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .sm\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .sm\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .sm\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .sm\:text-5xl { + font-size: 3rem; + line-height: 1; } - .sm\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .sm\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .sm\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .sm\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .sm\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .sm\:text-8xl { + font-size: 6rem; + line-height: 1; } - .sm\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .sm\:text-9xl { + font-size: 8rem; + line-height: 1; } - .sm\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .sm\:font-thin { + font-weight: 100; } - .sm\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .sm\:font-extralight { + font-weight: 200; } - .sm\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .sm\:font-light { + font-weight: 300; } - .sm\:ring-opacity-100 { - --tw-ring-opacity: 1; + .sm\:font-normal { + font-weight: 400; } - .sm\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .sm\:font-medium { + font-weight: 500; } - .sm\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .sm\:font-semibold { + font-weight: 600; } - .sm\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .sm\:font-bold { + font-weight: 700; } - .sm\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .sm\:font-extrabold { + font-weight: 800; } - .sm\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .sm\:font-black { + font-weight: 900; } - .sm\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .sm\:uppercase { + text-transform: uppercase; } - .sm\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .sm\:lowercase { + text-transform: lowercase; } - .sm\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .sm\:capitalize { + text-transform: capitalize; } - .sm\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .sm\:normal-case { + text-transform: none; } - .sm\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .sm\:italic { + font-style: italic; } - .sm\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .sm\:not-italic { + font-style: normal; } - .sm\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .sm\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .sm\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .sm\:normal-nums { + font-variant-numeric: normal; } - .sm\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .sm\:ordinal { + --tw-ordinal: ordinal; } - .sm\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .sm\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .sm\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .sm\:lining-nums { + --tw-numeric-figure: lining-nums; } - .sm\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .sm\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .sm\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .sm\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .sm\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .sm\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .sm\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .sm\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .sm\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .sm\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .sm\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .sm\:leading-3 { + line-height: .75rem; } - .sm\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .sm\:leading-4 { + line-height: 1rem; } - .sm\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .sm\:leading-5 { + line-height: 1.25rem; } - .sm\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .sm\:leading-6 { + line-height: 1.5rem; } - .sm\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .sm\:leading-7 { + line-height: 1.75rem; } - .sm\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .sm\:leading-8 { + line-height: 2rem; } - .sm\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .sm\:leading-9 { + line-height: 2.25rem; } - .sm\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .sm\:leading-10 { + line-height: 2.5rem; } - .sm\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .sm\:leading-none { + line-height: 1; } - .sm\:fill-current { - fill: currentColor; + .sm\:leading-tight { + line-height: 1.25; } - .sm\:stroke-current { - stroke: currentColor; + .sm\:leading-snug { + line-height: 1.375; } - .sm\:stroke-0 { - stroke-width: 0; + .sm\:leading-normal { + line-height: 1.5; } - .sm\:stroke-1 { - stroke-width: 1; + .sm\:leading-relaxed { + line-height: 1.625; } - .sm\:stroke-2 { - stroke-width: 2; + .sm\:leading-loose { + line-height: 2; } - .sm\:table-auto { - table-layout: auto; + .sm\:tracking-tighter { + letter-spacing: -0.05em; } - .sm\:table-fixed { - table-layout: fixed; + .sm\:tracking-tight { + letter-spacing: -0.025em; } - .sm\:text-left { - text-align: left; + .sm\:tracking-normal { + letter-spacing: 0em; } - .sm\:text-center { - text-align: center; + .sm\:tracking-wide { + letter-spacing: 0.025em; } - .sm\:text-right { - text-align: right; + .sm\:tracking-wider { + letter-spacing: 0.05em; } - .sm\:text-justify { - text-align: justify; + .sm\:tracking-widest { + letter-spacing: 0.1em; } .sm\:text-transparent { @@ -48757,44 +49230,6 @@ video { color: #831843; } - .sm\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .sm\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .sm\:overflow-clip { - text-overflow: clip; - } - - .sm\:italic { - font-style: italic; - } - - .sm\:not-italic { - font-style: normal; - } - - .sm\:uppercase { - text-transform: uppercase; - } - - .sm\:lowercase { - text-transform: lowercase; - } - - .sm\:capitalize { - text-transform: capitalize; - } - - .sm\:normal-case { - text-transform: none; - } - .sm\:underline { text-decoration: underline; } @@ -48865,13730 +49300,14082 @@ video { -moz-osx-font-smoothing: auto; } - .sm\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + .sm\:placeholder-transparent::placeholder { + color: transparent; } - .sm\:normal-nums { - font-variant-numeric: normal; + .sm\:placeholder-current::placeholder { + color: currentColor; } - .sm\:ordinal { - --tw-ordinal: ordinal; + .sm\:placeholder-black::placeholder { + color: #000; } - .sm\:slashed-zero { - --tw-slashed-zero: slashed-zero; + .sm\:placeholder-white::placeholder { + color: #fff; } - .sm\:lining-nums { - --tw-numeric-figure: lining-nums; + .sm\:placeholder-gray-50::placeholder { + color: #f9fafb; } - .sm\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; + .sm\:placeholder-gray-100::placeholder { + color: #f3f4f6; } - .sm\:proportional-nums { - --tw-numeric-spacing: proportional-nums; + .sm\:placeholder-gray-200::placeholder { + color: #e5e7eb; } - .sm\:tabular-nums { - --tw-numeric-spacing: tabular-nums; + .sm\:placeholder-gray-300::placeholder { + color: #d1d5db; } - .sm\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; + .sm\:placeholder-gray-400::placeholder { + color: #9ca3af; } - .sm\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; + .sm\:placeholder-gray-500::placeholder { + color: #6b7280; } - .sm\:tracking-tighter { - letter-spacing: -0.05em; + .sm\:placeholder-gray-600::placeholder { + color: #4b5563; } - .sm\:tracking-tight { - letter-spacing: -0.025em; + .sm\:placeholder-gray-700::placeholder { + color: #374151; } - .sm\:tracking-normal { - letter-spacing: 0em; + .sm\:placeholder-gray-800::placeholder { + color: #1f2937; } - .sm\:tracking-wide { - letter-spacing: 0.025em; + .sm\:placeholder-gray-900::placeholder { + color: #111827; } - .sm\:tracking-wider { - letter-spacing: 0.05em; + .sm\:placeholder-red-50::placeholder { + color: #fef2f2; } - .sm\:tracking-widest { - letter-spacing: 0.1em; + .sm\:placeholder-red-100::placeholder { + color: #fee2e2; } - .sm\:select-none { - user-select: none; + .sm\:placeholder-red-200::placeholder { + color: #fecaca; } - .sm\:select-text { - user-select: text; + .sm\:placeholder-red-300::placeholder { + color: #fca5a5; } - .sm\:select-all { - user-select: all; + .sm\:placeholder-red-400::placeholder { + color: #f87171; } - .sm\:select-auto { - user-select: auto; + .sm\:placeholder-red-500::placeholder { + color: #ef4444; } - .sm\:align-baseline { - vertical-align: baseline; + .sm\:placeholder-red-600::placeholder { + color: #dc2626; } - .sm\:align-top { - vertical-align: top; + .sm\:placeholder-red-700::placeholder { + color: #b91c1c; } - .sm\:align-middle { - vertical-align: middle; + .sm\:placeholder-red-800::placeholder { + color: #991b1b; } - .sm\:align-bottom { - vertical-align: bottom; + .sm\:placeholder-red-900::placeholder { + color: #7f1d1d; } - .sm\:align-text-top { - vertical-align: text-top; + .sm\:placeholder-yellow-50::placeholder { + color: #fffbeb; } - .sm\:align-text-bottom { - vertical-align: text-bottom; + .sm\:placeholder-yellow-100::placeholder { + color: #fef3c7; } - .sm\:visible { - visibility: visible; + .sm\:placeholder-yellow-200::placeholder { + color: #fde68a; } - .sm\:invisible { - visibility: hidden; + .sm\:placeholder-yellow-300::placeholder { + color: #fcd34d; } - .sm\:whitespace-normal { - white-space: normal; + .sm\:placeholder-yellow-400::placeholder { + color: #fbbf24; } - .sm\:whitespace-nowrap { - white-space: nowrap; + .sm\:placeholder-yellow-500::placeholder { + color: #f59e0b; } - .sm\:whitespace-pre { - white-space: pre; + .sm\:placeholder-yellow-600::placeholder { + color: #d97706; } - .sm\:whitespace-pre-line { - white-space: pre-line; + .sm\:placeholder-yellow-700::placeholder { + color: #b45309; } - .sm\:whitespace-pre-wrap { - white-space: pre-wrap; + .sm\:placeholder-yellow-800::placeholder { + color: #92400e; } - .sm\:break-normal { - overflow-wrap: normal; - word-break: normal; + .sm\:placeholder-yellow-900::placeholder { + color: #78350f; } - .sm\:break-words { - overflow-wrap: break-word; + .sm\:placeholder-green-50::placeholder { + color: #ecfdf5; } - .sm\:break-all { - word-break: break-all; + .sm\:placeholder-green-100::placeholder { + color: #d1fae5; } - .sm\:w-0 { - width: 0px; + .sm\:placeholder-green-200::placeholder { + color: #a7f3d0; } - .sm\:w-1 { - width: 0.25rem; + .sm\:placeholder-green-300::placeholder { + color: #6ee7b7; } - .sm\:w-2 { - width: 0.5rem; + .sm\:placeholder-green-400::placeholder { + color: #34d399; } - .sm\:w-3 { - width: 0.75rem; + .sm\:placeholder-green-500::placeholder { + color: #10b981; } - .sm\:w-4 { - width: 1rem; + .sm\:placeholder-green-600::placeholder { + color: #059669; } - .sm\:w-5 { - width: 1.25rem; + .sm\:placeholder-green-700::placeholder { + color: #047857; } - .sm\:w-6 { - width: 1.5rem; + .sm\:placeholder-green-800::placeholder { + color: #065f46; } - .sm\:w-7 { - width: 1.75rem; + .sm\:placeholder-green-900::placeholder { + color: #064e3b; } - .sm\:w-8 { - width: 2rem; + .sm\:placeholder-blue-50::placeholder { + color: #eff6ff; } - .sm\:w-9 { - width: 2.25rem; + .sm\:placeholder-blue-100::placeholder { + color: #dbeafe; } - .sm\:w-10 { - width: 2.5rem; + .sm\:placeholder-blue-200::placeholder { + color: #bfdbfe; } - .sm\:w-11 { - width: 2.75rem; + .sm\:placeholder-blue-300::placeholder { + color: #93c5fd; } - .sm\:w-12 { - width: 3rem; + .sm\:placeholder-blue-400::placeholder { + color: #60a5fa; } - .sm\:w-14 { - width: 3.5rem; + .sm\:placeholder-blue-500::placeholder { + color: #3b82f6; } - .sm\:w-16 { - width: 4rem; + .sm\:placeholder-blue-600::placeholder { + color: #2563eb; } - .sm\:w-20 { - width: 5rem; + .sm\:placeholder-blue-700::placeholder { + color: #1d4ed8; } - .sm\:w-24 { - width: 6rem; + .sm\:placeholder-blue-800::placeholder { + color: #1e40af; } - .sm\:w-28 { - width: 7rem; + .sm\:placeholder-blue-900::placeholder { + color: #1e3a8a; } - .sm\:w-32 { - width: 8rem; + .sm\:placeholder-indigo-50::placeholder { + color: #eef2ff; } - .sm\:w-36 { - width: 9rem; + .sm\:placeholder-indigo-100::placeholder { + color: #e0e7ff; } - .sm\:w-40 { - width: 10rem; + .sm\:placeholder-indigo-200::placeholder { + color: #c7d2fe; } - .sm\:w-44 { - width: 11rem; + .sm\:placeholder-indigo-300::placeholder { + color: #a5b4fc; } - .sm\:w-48 { - width: 12rem; + .sm\:placeholder-indigo-400::placeholder { + color: #818cf8; } - .sm\:w-52 { - width: 13rem; + .sm\:placeholder-indigo-500::placeholder { + color: #6366f1; } - .sm\:w-56 { - width: 14rem; + .sm\:placeholder-indigo-600::placeholder { + color: #4f46e5; } - .sm\:w-60 { - width: 15rem; + .sm\:placeholder-indigo-700::placeholder { + color: #4338ca; } - .sm\:w-64 { - width: 16rem; + .sm\:placeholder-indigo-800::placeholder { + color: #3730a3; } - .sm\:w-72 { - width: 18rem; + .sm\:placeholder-indigo-900::placeholder { + color: #312e81; } - .sm\:w-80 { - width: 20rem; + .sm\:placeholder-purple-50::placeholder { + color: #f5f3ff; } - .sm\:w-96 { - width: 24rem; + .sm\:placeholder-purple-100::placeholder { + color: #ede9fe; } - .sm\:w-auto { - width: auto; + .sm\:placeholder-purple-200::placeholder { + color: #ddd6fe; } - .sm\:w-px { - width: 1px; + .sm\:placeholder-purple-300::placeholder { + color: #c4b5fd; } - .sm\:w-0\.5 { - width: 0.125rem; + .sm\:placeholder-purple-400::placeholder { + color: #a78bfa; } - .sm\:w-1\.5 { - width: 0.375rem; + .sm\:placeholder-purple-500::placeholder { + color: #8b5cf6; } - .sm\:w-2\.5 { - width: 0.625rem; + .sm\:placeholder-purple-600::placeholder { + color: #7c3aed; } - .sm\:w-3\.5 { - width: 0.875rem; + .sm\:placeholder-purple-700::placeholder { + color: #6d28d9; } - .sm\:w-1\/2 { - width: 50%; + .sm\:placeholder-purple-800::placeholder { + color: #5b21b6; } - .sm\:w-1\/3 { - width: 33.333333%; + .sm\:placeholder-purple-900::placeholder { + color: #4c1d95; } - .sm\:w-2\/3 { - width: 66.666667%; + .sm\:placeholder-pink-50::placeholder { + color: #fdf2f8; } - .sm\:w-1\/4 { - width: 25%; + .sm\:placeholder-pink-100::placeholder { + color: #fce7f3; } - .sm\:w-2\/4 { - width: 50%; + .sm\:placeholder-pink-200::placeholder { + color: #fbcfe8; } - .sm\:w-3\/4 { - width: 75%; + .sm\:placeholder-pink-300::placeholder { + color: #f9a8d4; } - .sm\:w-1\/5 { - width: 20%; + .sm\:placeholder-pink-400::placeholder { + color: #f472b6; } - .sm\:w-2\/5 { - width: 40%; + .sm\:placeholder-pink-500::placeholder { + color: #ec4899; } - .sm\:w-3\/5 { - width: 60%; + .sm\:placeholder-pink-600::placeholder { + color: #db2777; } - .sm\:w-4\/5 { - width: 80%; + .sm\:placeholder-pink-700::placeholder { + color: #be185d; } - .sm\:w-1\/6 { - width: 16.666667%; + .sm\:placeholder-pink-800::placeholder { + color: #9d174d; } - .sm\:w-2\/6 { - width: 33.333333%; + .sm\:placeholder-pink-900::placeholder { + color: #831843; } - .sm\:w-3\/6 { - width: 50%; + .sm\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .sm\:w-4\/6 { - width: 66.666667%; + .sm\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .sm\:w-5\/6 { - width: 83.333333%; + .sm\:focus\:placeholder-black:focus::placeholder { + color: #000; } - .sm\:w-1\/12 { - width: 8.333333%; + .sm\:focus\:placeholder-white:focus::placeholder { + color: #fff; } - .sm\:w-2\/12 { - width: 16.666667%; + .sm\:focus\:placeholder-gray-50:focus::placeholder { + color: #f9fafb; } - .sm\:w-3\/12 { - width: 25%; + .sm\:focus\:placeholder-gray-100:focus::placeholder { + color: #f3f4f6; } - .sm\:w-4\/12 { - width: 33.333333%; + .sm\:focus\:placeholder-gray-200:focus::placeholder { + color: #e5e7eb; } - .sm\:w-5\/12 { - width: 41.666667%; + .sm\:focus\:placeholder-gray-300:focus::placeholder { + color: #d1d5db; } - .sm\:w-6\/12 { - width: 50%; + .sm\:focus\:placeholder-gray-400:focus::placeholder { + color: #9ca3af; } - .sm\:w-7\/12 { - width: 58.333333%; + .sm\:focus\:placeholder-gray-500:focus::placeholder { + color: #6b7280; } - .sm\:w-8\/12 { - width: 66.666667%; + .sm\:focus\:placeholder-gray-600:focus::placeholder { + color: #4b5563; } - .sm\:w-9\/12 { - width: 75%; + .sm\:focus\:placeholder-gray-700:focus::placeholder { + color: #374151; } - .sm\:w-10\/12 { - width: 83.333333%; + .sm\:focus\:placeholder-gray-800:focus::placeholder { + color: #1f2937; } - .sm\:w-11\/12 { - width: 91.666667%; + .sm\:focus\:placeholder-gray-900:focus::placeholder { + color: #111827; } - .sm\:w-full { - width: 100%; + .sm\:focus\:placeholder-red-50:focus::placeholder { + color: #fef2f2; } - .sm\:w-screen { - width: 100vw; + .sm\:focus\:placeholder-red-100:focus::placeholder { + color: #fee2e2; } - .sm\:w-min { - width: min-content; + .sm\:focus\:placeholder-red-200:focus::placeholder { + color: #fecaca; } - .sm\:w-max { - width: max-content; + .sm\:focus\:placeholder-red-300:focus::placeholder { + color: #fca5a5; } - .sm\:z-0 { - z-index: 0; + .sm\:focus\:placeholder-red-400:focus::placeholder { + color: #f87171; } - .sm\:z-10 { - z-index: 10; + .sm\:focus\:placeholder-red-500:focus::placeholder { + color: #ef4444; } - .sm\:z-20 { - z-index: 20; + .sm\:focus\:placeholder-red-600:focus::placeholder { + color: #dc2626; } - .sm\:z-30 { - z-index: 30; + .sm\:focus\:placeholder-red-700:focus::placeholder { + color: #b91c1c; } - .sm\:z-40 { - z-index: 40; + .sm\:focus\:placeholder-red-800:focus::placeholder { + color: #991b1b; } - .sm\:z-50 { - z-index: 50; + .sm\:focus\:placeholder-red-900:focus::placeholder { + color: #7f1d1d; } - .sm\:z-auto { - z-index: auto; + .sm\:focus\:placeholder-yellow-50:focus::placeholder { + color: #fffbeb; } - .sm\:focus-within\:z-0:focus-within { - z-index: 0; + .sm\:focus\:placeholder-yellow-100:focus::placeholder { + color: #fef3c7; } - .sm\:focus-within\:z-10:focus-within { - z-index: 10; + .sm\:focus\:placeholder-yellow-200:focus::placeholder { + color: #fde68a; } - .sm\:focus-within\:z-20:focus-within { - z-index: 20; + .sm\:focus\:placeholder-yellow-300:focus::placeholder { + color: #fcd34d; } - .sm\:focus-within\:z-30:focus-within { - z-index: 30; + .sm\:focus\:placeholder-yellow-400:focus::placeholder { + color: #fbbf24; } - .sm\:focus-within\:z-40:focus-within { - z-index: 40; + .sm\:focus\:placeholder-yellow-500:focus::placeholder { + color: #f59e0b; } - .sm\:focus-within\:z-50:focus-within { - z-index: 50; + .sm\:focus\:placeholder-yellow-600:focus::placeholder { + color: #d97706; } - .sm\:focus-within\:z-auto:focus-within { - z-index: auto; + .sm\:focus\:placeholder-yellow-700:focus::placeholder { + color: #b45309; } - .sm\:focus\:z-0:focus { - z-index: 0; + .sm\:focus\:placeholder-yellow-800:focus::placeholder { + color: #92400e; } - .sm\:focus\:z-10:focus { - z-index: 10; + .sm\:focus\:placeholder-yellow-900:focus::placeholder { + color: #78350f; } - .sm\:focus\:z-20:focus { - z-index: 20; + .sm\:focus\:placeholder-green-50:focus::placeholder { + color: #ecfdf5; } - .sm\:focus\:z-30:focus { - z-index: 30; + .sm\:focus\:placeholder-green-100:focus::placeholder { + color: #d1fae5; } - .sm\:focus\:z-40:focus { - z-index: 40; + .sm\:focus\:placeholder-green-200:focus::placeholder { + color: #a7f3d0; } - .sm\:focus\:z-50:focus { - z-index: 50; + .sm\:focus\:placeholder-green-300:focus::placeholder { + color: #6ee7b7; } - .sm\:focus\:z-auto:focus { - z-index: auto; + .sm\:focus\:placeholder-green-400:focus::placeholder { + color: #34d399; } - .sm\:isolate { - isolation: isolate; + .sm\:focus\:placeholder-green-500:focus::placeholder { + color: #10b981; } - .sm\:isolation-auto { - isolation: auto; + .sm\:focus\:placeholder-green-600:focus::placeholder { + color: #059669; } - .sm\:gap-0 { - gap: 0px; + .sm\:focus\:placeholder-green-700:focus::placeholder { + color: #047857; } - .sm\:gap-1 { - gap: 0.25rem; + .sm\:focus\:placeholder-green-800:focus::placeholder { + color: #065f46; } - .sm\:gap-2 { - gap: 0.5rem; + .sm\:focus\:placeholder-green-900:focus::placeholder { + color: #064e3b; } - .sm\:gap-3 { - gap: 0.75rem; + .sm\:focus\:placeholder-blue-50:focus::placeholder { + color: #eff6ff; } - .sm\:gap-4 { - gap: 1rem; + .sm\:focus\:placeholder-blue-100:focus::placeholder { + color: #dbeafe; } - .sm\:gap-5 { - gap: 1.25rem; + .sm\:focus\:placeholder-blue-200:focus::placeholder { + color: #bfdbfe; } - .sm\:gap-6 { - gap: 1.5rem; + .sm\:focus\:placeholder-blue-300:focus::placeholder { + color: #93c5fd; } - .sm\:gap-7 { - gap: 1.75rem; + .sm\:focus\:placeholder-blue-400:focus::placeholder { + color: #60a5fa; } - .sm\:gap-8 { - gap: 2rem; + .sm\:focus\:placeholder-blue-500:focus::placeholder { + color: #3b82f6; } - .sm\:gap-9 { - gap: 2.25rem; + .sm\:focus\:placeholder-blue-600:focus::placeholder { + color: #2563eb; } - .sm\:gap-10 { - gap: 2.5rem; + .sm\:focus\:placeholder-blue-700:focus::placeholder { + color: #1d4ed8; } - .sm\:gap-11 { - gap: 2.75rem; + .sm\:focus\:placeholder-blue-800:focus::placeholder { + color: #1e40af; } - .sm\:gap-12 { - gap: 3rem; + .sm\:focus\:placeholder-blue-900:focus::placeholder { + color: #1e3a8a; } - .sm\:gap-14 { - gap: 3.5rem; + .sm\:focus\:placeholder-indigo-50:focus::placeholder { + color: #eef2ff; } - .sm\:gap-16 { - gap: 4rem; + .sm\:focus\:placeholder-indigo-100:focus::placeholder { + color: #e0e7ff; } - .sm\:gap-20 { - gap: 5rem; + .sm\:focus\:placeholder-indigo-200:focus::placeholder { + color: #c7d2fe; } - .sm\:gap-24 { - gap: 6rem; + .sm\:focus\:placeholder-indigo-300:focus::placeholder { + color: #a5b4fc; } - .sm\:gap-28 { - gap: 7rem; + .sm\:focus\:placeholder-indigo-400:focus::placeholder { + color: #818cf8; } - .sm\:gap-32 { - gap: 8rem; + .sm\:focus\:placeholder-indigo-500:focus::placeholder { + color: #6366f1; } - .sm\:gap-36 { - gap: 9rem; + .sm\:focus\:placeholder-indigo-600:focus::placeholder { + color: #4f46e5; } - .sm\:gap-40 { - gap: 10rem; + .sm\:focus\:placeholder-indigo-700:focus::placeholder { + color: #4338ca; } - .sm\:gap-44 { - gap: 11rem; + .sm\:focus\:placeholder-indigo-800:focus::placeholder { + color: #3730a3; } - .sm\:gap-48 { - gap: 12rem; + .sm\:focus\:placeholder-indigo-900:focus::placeholder { + color: #312e81; } - .sm\:gap-52 { - gap: 13rem; + .sm\:focus\:placeholder-purple-50:focus::placeholder { + color: #f5f3ff; } - .sm\:gap-56 { - gap: 14rem; + .sm\:focus\:placeholder-purple-100:focus::placeholder { + color: #ede9fe; } - .sm\:gap-60 { - gap: 15rem; + .sm\:focus\:placeholder-purple-200:focus::placeholder { + color: #ddd6fe; } - .sm\:gap-64 { - gap: 16rem; + .sm\:focus\:placeholder-purple-300:focus::placeholder { + color: #c4b5fd; } - .sm\:gap-72 { - gap: 18rem; + .sm\:focus\:placeholder-purple-400:focus::placeholder { + color: #a78bfa; } - .sm\:gap-80 { - gap: 20rem; + .sm\:focus\:placeholder-purple-500:focus::placeholder { + color: #8b5cf6; } - .sm\:gap-96 { - gap: 24rem; + .sm\:focus\:placeholder-purple-600:focus::placeholder { + color: #7c3aed; } - .sm\:gap-px { - gap: 1px; + .sm\:focus\:placeholder-purple-700:focus::placeholder { + color: #6d28d9; } - .sm\:gap-0\.5 { - gap: 0.125rem; + .sm\:focus\:placeholder-purple-800:focus::placeholder { + color: #5b21b6; } - .sm\:gap-1\.5 { - gap: 0.375rem; + .sm\:focus\:placeholder-purple-900:focus::placeholder { + color: #4c1d95; } - .sm\:gap-2\.5 { - gap: 0.625rem; + .sm\:focus\:placeholder-pink-50:focus::placeholder { + color: #fdf2f8; } - .sm\:gap-3\.5 { - gap: 0.875rem; + .sm\:focus\:placeholder-pink-100:focus::placeholder { + color: #fce7f3; } - .sm\:gap-x-0 { - column-gap: 0px; + .sm\:focus\:placeholder-pink-200:focus::placeholder { + color: #fbcfe8; } - .sm\:gap-x-1 { - column-gap: 0.25rem; + .sm\:focus\:placeholder-pink-300:focus::placeholder { + color: #f9a8d4; } - .sm\:gap-x-2 { - column-gap: 0.5rem; + .sm\:focus\:placeholder-pink-400:focus::placeholder { + color: #f472b6; } - .sm\:gap-x-3 { - column-gap: 0.75rem; + .sm\:focus\:placeholder-pink-500:focus::placeholder { + color: #ec4899; } - .sm\:gap-x-4 { - column-gap: 1rem; + .sm\:focus\:placeholder-pink-600:focus::placeholder { + color: #db2777; } - .sm\:gap-x-5 { - column-gap: 1.25rem; + .sm\:focus\:placeholder-pink-700:focus::placeholder { + color: #be185d; } - .sm\:gap-x-6 { - column-gap: 1.5rem; + .sm\:focus\:placeholder-pink-800:focus::placeholder { + color: #9d174d; } - .sm\:gap-x-7 { - column-gap: 1.75rem; + .sm\:focus\:placeholder-pink-900:focus::placeholder { + color: #831843; } - .sm\:gap-x-8 { - column-gap: 2rem; + .sm\:opacity-0 { + opacity: 0; } - .sm\:gap-x-9 { - column-gap: 2.25rem; + .sm\:opacity-5 { + opacity: 0.05; } - .sm\:gap-x-10 { - column-gap: 2.5rem; + .sm\:opacity-10 { + opacity: 0.1; } - .sm\:gap-x-11 { - column-gap: 2.75rem; + .sm\:opacity-20 { + opacity: 0.2; } - .sm\:gap-x-12 { - column-gap: 3rem; + .sm\:opacity-25 { + opacity: 0.25; } - .sm\:gap-x-14 { - column-gap: 3.5rem; + .sm\:opacity-30 { + opacity: 0.3; } - .sm\:gap-x-16 { - column-gap: 4rem; + .sm\:opacity-40 { + opacity: 0.4; } - .sm\:gap-x-20 { - column-gap: 5rem; + .sm\:opacity-50 { + opacity: 0.5; } - .sm\:gap-x-24 { - column-gap: 6rem; + .sm\:opacity-60 { + opacity: 0.6; } - .sm\:gap-x-28 { - column-gap: 7rem; + .sm\:opacity-70 { + opacity: 0.7; } - .sm\:gap-x-32 { - column-gap: 8rem; + .sm\:opacity-75 { + opacity: 0.75; } - .sm\:gap-x-36 { - column-gap: 9rem; + .sm\:opacity-80 { + opacity: 0.8; } - .sm\:gap-x-40 { - column-gap: 10rem; + .sm\:opacity-90 { + opacity: 0.9; } - .sm\:gap-x-44 { - column-gap: 11rem; + .sm\:opacity-95 { + opacity: 0.95; } - .sm\:gap-x-48 { - column-gap: 12rem; + .sm\:opacity-100 { + opacity: 1; } - .sm\:gap-x-52 { - column-gap: 13rem; + .group:hover .sm\:group-hover\:opacity-0 { + opacity: 0; } - .sm\:gap-x-56 { - column-gap: 14rem; + .group:hover .sm\:group-hover\:opacity-5 { + opacity: 0.05; } - .sm\:gap-x-60 { - column-gap: 15rem; + .group:hover .sm\:group-hover\:opacity-10 { + opacity: 0.1; } - .sm\:gap-x-64 { - column-gap: 16rem; + .group:hover .sm\:group-hover\:opacity-20 { + opacity: 0.2; } - .sm\:gap-x-72 { - column-gap: 18rem; + .group:hover .sm\:group-hover\:opacity-25 { + opacity: 0.25; } - .sm\:gap-x-80 { - column-gap: 20rem; + .group:hover .sm\:group-hover\:opacity-30 { + opacity: 0.3; } - .sm\:gap-x-96 { - column-gap: 24rem; + .group:hover .sm\:group-hover\:opacity-40 { + opacity: 0.4; } - .sm\:gap-x-px { - column-gap: 1px; + .group:hover .sm\:group-hover\:opacity-50 { + opacity: 0.5; } - .sm\:gap-x-0\.5 { - column-gap: 0.125rem; + .group:hover .sm\:group-hover\:opacity-60 { + opacity: 0.6; } - .sm\:gap-x-1\.5 { - column-gap: 0.375rem; + .group:hover .sm\:group-hover\:opacity-70 { + opacity: 0.7; } - .sm\:gap-x-2\.5 { - column-gap: 0.625rem; + .group:hover .sm\:group-hover\:opacity-75 { + opacity: 0.75; } - .sm\:gap-x-3\.5 { - column-gap: 0.875rem; + .group:hover .sm\:group-hover\:opacity-80 { + opacity: 0.8; } - .sm\:gap-y-0 { - row-gap: 0px; + .group:hover .sm\:group-hover\:opacity-90 { + opacity: 0.9; } - .sm\:gap-y-1 { - row-gap: 0.25rem; + .group:hover .sm\:group-hover\:opacity-95 { + opacity: 0.95; } - .sm\:gap-y-2 { - row-gap: 0.5rem; + .group:hover .sm\:group-hover\:opacity-100 { + opacity: 1; } - .sm\:gap-y-3 { - row-gap: 0.75rem; + .sm\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .sm\:gap-y-4 { - row-gap: 1rem; + .sm\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .sm\:gap-y-5 { - row-gap: 1.25rem; + .sm\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .sm\:gap-y-6 { - row-gap: 1.5rem; + .sm\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .sm\:gap-y-7 { - row-gap: 1.75rem; + .sm\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .sm\:gap-y-8 { - row-gap: 2rem; + .sm\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .sm\:gap-y-9 { - row-gap: 2.25rem; + .sm\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .sm\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .sm\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .sm\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .sm\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .sm\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .sm\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .sm\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .sm\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .sm\:hover\:opacity-0:hover { + opacity: 0; + } + + .sm\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .sm\:hover\:opacity-10:hover { + opacity: 0.1; } - .sm\:gap-y-10 { - row-gap: 2.5rem; + .sm\:hover\:opacity-20:hover { + opacity: 0.2; } - .sm\:gap-y-11 { - row-gap: 2.75rem; + .sm\:hover\:opacity-25:hover { + opacity: 0.25; } - .sm\:gap-y-12 { - row-gap: 3rem; + .sm\:hover\:opacity-30:hover { + opacity: 0.3; } - .sm\:gap-y-14 { - row-gap: 3.5rem; + .sm\:hover\:opacity-40:hover { + opacity: 0.4; } - .sm\:gap-y-16 { - row-gap: 4rem; + .sm\:hover\:opacity-50:hover { + opacity: 0.5; } - .sm\:gap-y-20 { - row-gap: 5rem; + .sm\:hover\:opacity-60:hover { + opacity: 0.6; } - .sm\:gap-y-24 { - row-gap: 6rem; + .sm\:hover\:opacity-70:hover { + opacity: 0.7; } - .sm\:gap-y-28 { - row-gap: 7rem; + .sm\:hover\:opacity-75:hover { + opacity: 0.75; } - .sm\:gap-y-32 { - row-gap: 8rem; + .sm\:hover\:opacity-80:hover { + opacity: 0.8; } - .sm\:gap-y-36 { - row-gap: 9rem; + .sm\:hover\:opacity-90:hover { + opacity: 0.9; } - .sm\:gap-y-40 { - row-gap: 10rem; + .sm\:hover\:opacity-95:hover { + opacity: 0.95; } - .sm\:gap-y-44 { - row-gap: 11rem; + .sm\:hover\:opacity-100:hover { + opacity: 1; } - .sm\:gap-y-48 { - row-gap: 12rem; + .sm\:focus\:opacity-0:focus { + opacity: 0; } - .sm\:gap-y-52 { - row-gap: 13rem; + .sm\:focus\:opacity-5:focus { + opacity: 0.05; } - .sm\:gap-y-56 { - row-gap: 14rem; + .sm\:focus\:opacity-10:focus { + opacity: 0.1; } - .sm\:gap-y-60 { - row-gap: 15rem; + .sm\:focus\:opacity-20:focus { + opacity: 0.2; } - .sm\:gap-y-64 { - row-gap: 16rem; + .sm\:focus\:opacity-25:focus { + opacity: 0.25; } - .sm\:gap-y-72 { - row-gap: 18rem; + .sm\:focus\:opacity-30:focus { + opacity: 0.3; } - .sm\:gap-y-80 { - row-gap: 20rem; + .sm\:focus\:opacity-40:focus { + opacity: 0.4; } - .sm\:gap-y-96 { - row-gap: 24rem; + .sm\:focus\:opacity-50:focus { + opacity: 0.5; } - .sm\:gap-y-px { - row-gap: 1px; + .sm\:focus\:opacity-60:focus { + opacity: 0.6; } - .sm\:gap-y-0\.5 { - row-gap: 0.125rem; + .sm\:focus\:opacity-70:focus { + opacity: 0.7; } - .sm\:gap-y-1\.5 { - row-gap: 0.375rem; + .sm\:focus\:opacity-75:focus { + opacity: 0.75; } - .sm\:gap-y-2\.5 { - row-gap: 0.625rem; + .sm\:focus\:opacity-80:focus { + opacity: 0.8; } - .sm\:gap-y-3\.5 { - row-gap: 0.875rem; + .sm\:focus\:opacity-90:focus { + opacity: 0.9; } - .sm\:grid-flow-row { - grid-auto-flow: row; + .sm\:focus\:opacity-95:focus { + opacity: 0.95; } - .sm\:grid-flow-col { - grid-auto-flow: column; + .sm\:focus\:opacity-100:focus { + opacity: 1; } - .sm\:grid-flow-row-dense { - grid-auto-flow: row dense; + .sm\:bg-blend-normal { + background-blend-mode: normal; } - .sm\:grid-flow-col-dense { - grid-auto-flow: column dense; + .sm\:bg-blend-multiply { + background-blend-mode: multiply; } - .sm\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .sm\:bg-blend-screen { + background-blend-mode: screen; } - .sm\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .sm\:bg-blend-overlay { + background-blend-mode: overlay; } - .sm\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .sm\:bg-blend-darken { + background-blend-mode: darken; } - .sm\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .sm\:bg-blend-lighten { + background-blend-mode: lighten; } - .sm\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .sm\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .sm\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .sm\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .sm\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .sm\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .sm\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .sm\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .sm\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .sm\:bg-blend-difference { + background-blend-mode: difference; } - .sm\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .sm\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .sm\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .sm\:bg-blend-hue { + background-blend-mode: hue; } - .sm\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .sm\:bg-blend-saturation { + background-blend-mode: saturation; } - .sm\:grid-cols-none { - grid-template-columns: none; + .sm\:bg-blend-color { + background-blend-mode: color; } - .sm\:auto-cols-auto { - grid-auto-columns: auto; + .sm\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .sm\:auto-cols-min { - grid-auto-columns: min-content; + .sm\:mix-blend-normal { + mix-blend-mode: normal; } - .sm\:auto-cols-max { - grid-auto-columns: max-content; + .sm\:mix-blend-multiply { + mix-blend-mode: multiply; } - .sm\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .sm\:mix-blend-screen { + mix-blend-mode: screen; } - .sm\:col-auto { - grid-column: auto; + .sm\:mix-blend-overlay { + mix-blend-mode: overlay; } - .sm\:col-span-1 { - grid-column: span 1 / span 1; + .sm\:mix-blend-darken { + mix-blend-mode: darken; } - .sm\:col-span-2 { - grid-column: span 2 / span 2; + .sm\:mix-blend-lighten { + mix-blend-mode: lighten; } - .sm\:col-span-3 { - grid-column: span 3 / span 3; + .sm\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .sm\:col-span-4 { - grid-column: span 4 / span 4; + .sm\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .sm\:col-span-5 { - grid-column: span 5 / span 5; + .sm\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .sm\:col-span-6 { - grid-column: span 6 / span 6; + .sm\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .sm\:col-span-7 { - grid-column: span 7 / span 7; + .sm\:mix-blend-difference { + mix-blend-mode: difference; } - .sm\:col-span-8 { - grid-column: span 8 / span 8; + .sm\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .sm\:col-span-9 { - grid-column: span 9 / span 9; + .sm\:mix-blend-hue { + mix-blend-mode: hue; } - .sm\:col-span-10 { - grid-column: span 10 / span 10; + .sm\:mix-blend-saturation { + mix-blend-mode: saturation; } - .sm\:col-span-11 { - grid-column: span 11 / span 11; + .sm\:mix-blend-color { + mix-blend-mode: color; } - .sm\:col-span-12 { - grid-column: span 12 / span 12; + .sm\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .sm\:col-span-full { - grid-column: 1 / -1; + .sm\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-1 { - grid-column-start: 1; + .sm\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-2 { - grid-column-start: 2; + .sm\: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); } - .sm\:col-start-3 { - grid-column-start: 3; + .sm\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-4 { - grid-column-start: 4; + .sm\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-5 { - grid-column-start: 5; + .sm\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-6 { - grid-column-start: 6; + .sm\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-7 { - grid-column-start: 7; + .sm\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-8 { - grid-column-start: 8; + .group:hover .sm\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-9 { - grid-column-start: 9; + .group:hover .sm\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-10 { - grid-column-start: 10; + .group:hover .sm\:group-hover\: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); } - .sm\:col-start-11 { - grid-column-start: 11; + .group:hover .sm\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-12 { - grid-column-start: 12; + .group:hover .sm\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-13 { - grid-column-start: 13; + .group:hover .sm\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-start-auto { - grid-column-start: auto; + .group:hover .sm\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-1 { - grid-column-end: 1; + .group:hover .sm\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-2 { - grid-column-end: 2; + .sm\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-3 { - grid-column-end: 3; + .sm\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-4 { - grid-column-end: 4; + .sm\:focus-within\:shadow-md:focus-within { + --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); } - .sm\:col-end-5 { - grid-column-end: 5; + .sm\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-6 { - grid-column-end: 6; + .sm\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-7 { - grid-column-end: 7; + .sm\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-8 { - grid-column-end: 8; + .sm\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-9 { - grid-column-end: 9; + .sm\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-10 { - grid-column-end: 10; + .sm\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-11 { - grid-column-end: 11; + .sm\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-12 { - grid-column-end: 12; + .sm\:hover\:shadow-md:hover { + --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); } - .sm\:col-end-13 { - grid-column-end: 13; + .sm\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:col-end-auto { - grid-column-end: auto; + .sm\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .sm\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .sm\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .sm\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .sm\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .sm\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .sm\:focus\:shadow-md:focus { + --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); } - .sm\:grid-rows-none { - grid-template-rows: none; + .sm\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:auto-rows-auto { - grid-auto-rows: auto; + .sm\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:auto-rows-min { - grid-auto-rows: min-content; + .sm\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:auto-rows-max { - grid-auto-rows: max-content; + .sm\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .sm\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-auto { - grid-row: auto; + .sm\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .sm\:row-span-1 { - grid-row: span 1 / span 1; + .sm\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .sm\:row-span-2 { - grid-row: span 2 / span 2; + .sm\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .sm\:row-span-3 { - grid-row: span 3 / span 3; + .sm\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .sm\:row-span-4 { - grid-row: span 4 / span 4; + .sm\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .sm\:row-span-5 { - grid-row: span 5 / span 5; + .sm\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .sm\:row-span-6 { - grid-row: span 6 / span 6; + .sm\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .sm\:row-span-full { - grid-row: 1 / -1; + .sm\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .sm\:row-start-1 { - grid-row-start: 1; + .sm\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .sm\:row-start-2 { - grid-row-start: 2; + .sm\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-start-3 { - grid-row-start: 3; + .sm\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-start-4 { - grid-row-start: 4; + .sm\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-start-5 { - grid-row-start: 5; + .sm\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-start-6 { - grid-row-start: 6; + .sm\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-start-7 { - grid-row-start: 7; + .sm\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-start-auto { - grid-row-start: auto; + .sm\:ring-inset { + --tw-ring-inset: inset; } - .sm\:row-end-1 { - grid-row-end: 1; + .sm\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-end-2 { - grid-row-end: 2; + .sm\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-end-3 { - grid-row-end: 3; + .sm\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-end-4 { - grid-row-end: 4; + .sm\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-end-5 { - grid-row-end: 5; + .sm\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-end-6 { - grid-row-end: 6; + .sm\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:row-end-7 { - grid-row-end: 7; + .sm\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .sm\:row-end-auto { - grid-row-end: auto; + .sm\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .sm\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .sm\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:transform-none { - transform: none; + .sm\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:origin-center { - transform-origin: center; + .sm\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:origin-top { - transform-origin: top; + .sm\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:origin-top-right { - transform-origin: top right; + .sm\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .sm\:origin-right { - transform-origin: right; + .sm\:ring-transparent { + --tw-ring-color: transparent; } - .sm\:origin-bottom-right { - transform-origin: bottom right; + .sm\:ring-current { + --tw-ring-color: currentColor; } - .sm\:origin-bottom { - transform-origin: bottom; + .sm\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .sm\:origin-bottom-left { - transform-origin: bottom left; + .sm\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .sm\:origin-left { - transform-origin: left; + .sm\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .sm\:origin-top-left { - transform-origin: top left; + .sm\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .sm\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .sm\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .sm\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .sm\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .sm\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .sm\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .sm\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .sm\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .sm\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .sm\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .sm\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .sm\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .sm\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .sm\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .sm\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .sm\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .sm\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .sm\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .sm\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .sm\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .sm\:scale-x-0 { - --tw-scale-x: 0; + .sm\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .sm\:scale-x-50 { - --tw-scale-x: .5; + .sm\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .sm\:scale-x-75 { - --tw-scale-x: .75; + .sm\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .sm\:scale-x-90 { - --tw-scale-x: .9; + .sm\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .sm\:scale-x-95 { - --tw-scale-x: .95; + .sm\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .sm\:scale-x-100 { - --tw-scale-x: 1; + .sm\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .sm\:scale-x-105 { - --tw-scale-x: 1.05; + .sm\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .sm\:scale-x-110 { - --tw-scale-x: 1.1; + .sm\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .sm\:scale-x-125 { - --tw-scale-x: 1.25; + .sm\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .sm\:scale-x-150 { - --tw-scale-x: 1.5; + .sm\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .sm\:scale-y-0 { - --tw-scale-y: 0; + .sm\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .sm\:scale-y-50 { - --tw-scale-y: .5; + .sm\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .sm\:scale-y-75 { - --tw-scale-y: .75; + .sm\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .sm\:scale-y-90 { - --tw-scale-y: .9; + .sm\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .sm\:scale-y-95 { - --tw-scale-y: .95; + .sm\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .sm\:scale-y-100 { - --tw-scale-y: 1; + .sm\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .sm\:scale-y-105 { - --tw-scale-y: 1.05; + .sm\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .sm\:scale-y-110 { - --tw-scale-y: 1.1; + .sm\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .sm\:scale-y-125 { - --tw-scale-y: 1.25; + .sm\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .sm\:scale-y-150 { - --tw-scale-y: 1.5; + .sm\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .sm\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .sm\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .sm\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .sm\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .sm\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .sm\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .sm\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .sm\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .sm\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .sm\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .sm\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .sm\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .sm\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .sm\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .sm\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .sm\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .sm\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .sm\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .sm\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .sm\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .sm\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .sm\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .sm\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .sm\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .sm\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .sm\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .sm\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .sm\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .sm\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .sm\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .sm\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .sm\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .sm\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .sm\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .sm\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .sm\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .sm\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .sm\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .sm\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .sm\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .sm\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .sm\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .sm\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .sm\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .sm\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .sm\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .sm\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .sm\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .sm\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .sm\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .sm\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .sm\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .sm\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .sm\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .sm\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .sm\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .sm\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .sm\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .sm\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .sm\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .sm\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .sm\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .sm\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .sm\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .sm\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .sm\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .sm\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .sm\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .sm\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .sm\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .sm\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .sm\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .sm\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .sm\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .sm\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .sm\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .sm\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .sm\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .sm\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .sm\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .sm\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .sm\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .sm\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .sm\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .sm\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .sm\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .sm\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .sm\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .sm\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .sm\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .sm\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .sm\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .sm\:rotate-0 { - --tw-rotate: 0deg; + .sm\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .sm\:rotate-1 { - --tw-rotate: 1deg; + .sm\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .sm\:rotate-2 { - --tw-rotate: 2deg; + .sm\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .sm\:rotate-3 { - --tw-rotate: 3deg; + .sm\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .sm\:rotate-6 { - --tw-rotate: 6deg; + .sm\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .sm\:rotate-12 { - --tw-rotate: 12deg; + .sm\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .sm\:rotate-45 { - --tw-rotate: 45deg; + .sm\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .sm\:rotate-90 { - --tw-rotate: 90deg; + .sm\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .sm\:rotate-180 { - --tw-rotate: 180deg; + .sm\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .sm\:-rotate-180 { - --tw-rotate: -180deg; + .sm\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .sm\:-rotate-90 { - --tw-rotate: -90deg; + .sm\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .sm\:-rotate-45 { - --tw-rotate: -45deg; + .sm\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .sm\:-rotate-12 { - --tw-rotate: -12deg; + .sm\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .sm\:-rotate-6 { - --tw-rotate: -6deg; + .sm\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .sm\:-rotate-3 { - --tw-rotate: -3deg; + .sm\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .sm\:-rotate-2 { - --tw-rotate: -2deg; + .sm\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .sm\:-rotate-1 { - --tw-rotate: -1deg; + .sm\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .sm\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .sm\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .sm\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .sm\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .sm\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .sm\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .sm\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .sm\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .sm\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .sm\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .sm\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .sm\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .sm\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .sm\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .sm\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .sm\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .sm\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .sm\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .sm\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .sm\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .sm\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .sm\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .sm\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .sm\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .sm\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .sm\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .sm\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .sm\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .sm\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .sm\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .sm\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .sm\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .sm\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .sm\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .sm\:translate-x-0 { - --tw-translate-x: 0px; + .sm\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .sm\:translate-x-1 { - --tw-translate-x: 0.25rem; + .sm\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .sm\:translate-x-2 { - --tw-translate-x: 0.5rem; + .sm\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .sm\:translate-x-3 { - --tw-translate-x: 0.75rem; + .sm\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .sm\:translate-x-4 { - --tw-translate-x: 1rem; + .sm\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .sm\:translate-x-5 { - --tw-translate-x: 1.25rem; + .sm\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .sm\:translate-x-6 { - --tw-translate-x: 1.5rem; + .sm\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .sm\:translate-x-7 { - --tw-translate-x: 1.75rem; + .sm\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .sm\:translate-x-8 { - --tw-translate-x: 2rem; + .sm\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .sm\:translate-x-9 { - --tw-translate-x: 2.25rem; + .sm\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .sm\:translate-x-10 { - --tw-translate-x: 2.5rem; + .sm\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .sm\:translate-x-11 { - --tw-translate-x: 2.75rem; + .sm\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .sm\:translate-x-12 { - --tw-translate-x: 3rem; + .sm\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .sm\:translate-x-14 { - --tw-translate-x: 3.5rem; + .sm\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .sm\:translate-x-16 { - --tw-translate-x: 4rem; + .sm\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .sm\:translate-x-20 { - --tw-translate-x: 5rem; + .sm\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .sm\:translate-x-24 { - --tw-translate-x: 6rem; + .sm\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .sm\:translate-x-28 { - --tw-translate-x: 7rem; + .sm\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .sm\:translate-x-32 { - --tw-translate-x: 8rem; + .sm\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .sm\:translate-x-36 { - --tw-translate-x: 9rem; + .sm\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .sm\:translate-x-40 { - --tw-translate-x: 10rem; + .sm\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .sm\:translate-x-44 { - --tw-translate-x: 11rem; + .sm\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .sm\:translate-x-48 { - --tw-translate-x: 12rem; + .sm\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .sm\:translate-x-52 { - --tw-translate-x: 13rem; + .sm\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .sm\:translate-x-56 { - --tw-translate-x: 14rem; + .sm\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .sm\:translate-x-60 { - --tw-translate-x: 15rem; + .sm\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .sm\:translate-x-64 { - --tw-translate-x: 16rem; + .sm\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .sm\:translate-x-72 { - --tw-translate-x: 18rem; + .sm\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .sm\:translate-x-80 { - --tw-translate-x: 20rem; + .sm\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .sm\:translate-x-96 { - --tw-translate-x: 24rem; + .sm\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .sm\:translate-x-px { - --tw-translate-x: 1px; + .sm\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .sm\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .sm\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .sm\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .sm\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .sm\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .sm\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .sm\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .sm\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .sm\:-translate-x-0 { - --tw-translate-x: 0px; + .sm\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .sm\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .sm\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .sm\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .sm\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .sm\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .sm\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .sm\:-translate-x-4 { - --tw-translate-x: -1rem; + .sm\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .sm\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .sm\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .sm\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .sm\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .sm\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .sm\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .sm\:-translate-x-8 { - --tw-translate-x: -2rem; + .sm\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .sm\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .sm\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .sm\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .sm\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .sm\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .sm\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .sm\:-translate-x-12 { - --tw-translate-x: -3rem; + .sm\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .sm\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .sm\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .sm\:-translate-x-16 { - --tw-translate-x: -4rem; + .sm\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .sm\:-translate-x-20 { - --tw-translate-x: -5rem; + .sm\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .sm\:-translate-x-24 { - --tw-translate-x: -6rem; + .sm\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .sm\:-translate-x-28 { - --tw-translate-x: -7rem; + .sm\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .sm\:-translate-x-32 { - --tw-translate-x: -8rem; + .sm\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .sm\:-translate-x-36 { - --tw-translate-x: -9rem; + .sm\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .sm\:-translate-x-40 { - --tw-translate-x: -10rem; + .sm\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .sm\:-translate-x-44 { - --tw-translate-x: -11rem; + .sm\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .sm\:-translate-x-48 { - --tw-translate-x: -12rem; + .sm\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .sm\:-translate-x-52 { - --tw-translate-x: -13rem; + .sm\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .sm\:-translate-x-56 { - --tw-translate-x: -14rem; + .sm\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .sm\:-translate-x-60 { - --tw-translate-x: -15rem; + .sm\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .sm\:-translate-x-64 { - --tw-translate-x: -16rem; + .sm\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .sm\:-translate-x-72 { - --tw-translate-x: -18rem; + .sm\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .sm\:-translate-x-80 { - --tw-translate-x: -20rem; + .sm\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .sm\:-translate-x-96 { - --tw-translate-x: -24rem; + .sm\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .sm\:-translate-x-px { - --tw-translate-x: -1px; + .sm\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .sm\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .sm\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .sm\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .sm\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .sm\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .sm\:translate-x-1\/2 { - --tw-translate-x: 50%; + .sm\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .sm\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .sm\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .sm\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .sm\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .sm\:translate-x-1\/4 { - --tw-translate-x: 25%; + .sm\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .sm\:translate-x-2\/4 { - --tw-translate-x: 50%; + .sm\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .sm\:translate-x-3\/4 { - --tw-translate-x: 75%; + .sm\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .sm\:translate-x-full { - --tw-translate-x: 100%; + .sm\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .sm\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .sm\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .sm\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .sm\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .sm\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .sm\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .sm\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .sm\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .sm\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .sm\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .sm\:-translate-x-full { - --tw-translate-x: -100%; + .sm\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .sm\:translate-y-0 { - --tw-translate-y: 0px; + .sm\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .sm\:translate-y-1 { - --tw-translate-y: 0.25rem; + .sm\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .sm\:translate-y-2 { - --tw-translate-y: 0.5rem; + .sm\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .sm\:translate-y-3 { - --tw-translate-y: 0.75rem; + .sm\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .sm\:translate-y-4 { - --tw-translate-y: 1rem; + .sm\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .sm\:translate-y-5 { - --tw-translate-y: 1.25rem; + .sm\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .sm\:translate-y-6 { - --tw-translate-y: 1.5rem; + .sm\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .sm\:translate-y-7 { - --tw-translate-y: 1.75rem; + .sm\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .sm\:translate-y-8 { - --tw-translate-y: 2rem; + .sm\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .sm\:translate-y-9 { - --tw-translate-y: 2.25rem; + .sm\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .sm\:translate-y-10 { - --tw-translate-y: 2.5rem; + .sm\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .sm\:translate-y-11 { - --tw-translate-y: 2.75rem; + .sm\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .sm\:translate-y-12 { - --tw-translate-y: 3rem; + .sm\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .sm\:translate-y-14 { - --tw-translate-y: 3.5rem; + .sm\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .sm\:translate-y-16 { - --tw-translate-y: 4rem; + .sm\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .sm\:translate-y-20 { - --tw-translate-y: 5rem; + .sm\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .sm\:translate-y-24 { - --tw-translate-y: 6rem; + .sm\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .sm\:translate-y-28 { - --tw-translate-y: 7rem; + .sm\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .sm\:translate-y-32 { - --tw-translate-y: 8rem; + .sm\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .sm\:translate-y-36 { - --tw-translate-y: 9rem; + .sm\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .sm\:translate-y-40 { - --tw-translate-y: 10rem; + .sm\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .sm\:translate-y-44 { - --tw-translate-y: 11rem; + .sm\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .sm\:translate-y-48 { - --tw-translate-y: 12rem; + .sm\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .sm\:translate-y-52 { - --tw-translate-y: 13rem; + .sm\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .sm\:translate-y-56 { - --tw-translate-y: 14rem; + .sm\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .sm\:translate-y-60 { - --tw-translate-y: 15rem; + .sm\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .sm\:translate-y-64 { - --tw-translate-y: 16rem; + .sm\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .sm\:translate-y-72 { - --tw-translate-y: 18rem; + .sm\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .sm\:translate-y-80 { - --tw-translate-y: 20rem; + .sm\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .sm\:translate-y-96 { - --tw-translate-y: 24rem; + .sm\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .sm\:translate-y-px { - --tw-translate-y: 1px; + .sm\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .sm\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .sm\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .sm\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .sm\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .sm\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .sm\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .sm\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .sm\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .sm\:-translate-y-0 { - --tw-translate-y: 0px; + .sm\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .sm\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .sm\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .sm\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .sm\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .sm\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .sm\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .sm\:-translate-y-4 { - --tw-translate-y: -1rem; + .sm\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .sm\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .sm\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .sm\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .sm\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .sm\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .sm\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .sm\:-translate-y-8 { - --tw-translate-y: -2rem; + .sm\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .sm\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .sm\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .sm\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .sm\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .sm\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .sm\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .sm\:-translate-y-12 { - --tw-translate-y: -3rem; + .sm\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .sm\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .sm\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .sm\:-translate-y-16 { - --tw-translate-y: -4rem; + .sm\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .sm\:-translate-y-20 { - --tw-translate-y: -5rem; + .sm\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .sm\:-translate-y-24 { - --tw-translate-y: -6rem; + .sm\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .sm\:-translate-y-28 { - --tw-translate-y: -7rem; + .sm\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .sm\:-translate-y-32 { - --tw-translate-y: -8rem; + .sm\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .sm\:-translate-y-36 { - --tw-translate-y: -9rem; + .sm\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .sm\:-translate-y-40 { - --tw-translate-y: -10rem; + .sm\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .sm\:-translate-y-44 { - --tw-translate-y: -11rem; + .sm\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .sm\:-translate-y-48 { - --tw-translate-y: -12rem; + .sm\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .sm\:-translate-y-52 { - --tw-translate-y: -13rem; + .sm\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .sm\:-translate-y-56 { - --tw-translate-y: -14rem; + .sm\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .sm\:-translate-y-60 { - --tw-translate-y: -15rem; + .sm\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .sm\:-translate-y-64 { - --tw-translate-y: -16rem; + .sm\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .sm\:-translate-y-72 { - --tw-translate-y: -18rem; + .sm\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .sm\:-translate-y-80 { - --tw-translate-y: -20rem; + .sm\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .sm\:-translate-y-96 { - --tw-translate-y: -24rem; + .sm\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .sm\:-translate-y-px { - --tw-translate-y: -1px; + .sm\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .sm\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .sm\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .sm\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .sm\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .sm\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .sm\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .sm\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .sm\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .sm\:translate-y-1\/2 { - --tw-translate-y: 50%; + .sm\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .sm\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .sm\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .sm\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .sm\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .sm\:translate-y-1\/4 { - --tw-translate-y: 25%; + .sm\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .sm\:translate-y-2\/4 { - --tw-translate-y: 50%; + .sm\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .sm\:translate-y-3\/4 { - --tw-translate-y: 75%; + .sm\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .sm\:translate-y-full { - --tw-translate-y: 100%; + .sm\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .sm\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .sm\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .sm\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .sm\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .sm\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .sm\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .sm\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .sm\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .sm\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .sm\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .sm\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .sm\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .sm\:-translate-y-full { - --tw-translate-y: -100%; + .sm\:ring-offset-black { + --tw-ring-offset-color: #000; } - .sm\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .sm\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .sm\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .sm\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .sm\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .sm\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .sm\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .sm\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .sm\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .sm\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .sm\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .sm\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .sm\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .sm\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .sm\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .sm\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .sm\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .sm\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .sm\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .sm\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .sm\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .sm\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .sm\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .sm\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .sm\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .sm\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .sm\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .sm\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .sm\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .sm\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .sm\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .sm\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .sm\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .sm\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .sm\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .sm\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .sm\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .sm\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .sm\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .sm\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .sm\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .sm\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .sm\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .sm\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .sm\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .sm\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .sm\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .sm\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .sm\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .sm\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .sm\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .sm\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .sm\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .sm\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .sm\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .sm\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .sm\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .sm\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .sm\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .sm\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .sm\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .sm\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .sm\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .sm\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .sm\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .sm\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .sm\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .sm\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .sm\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .sm\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .sm\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .sm\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .sm\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .sm\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .sm\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .sm\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .sm\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .sm\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .sm\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .sm\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .sm\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .sm\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .sm\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .sm\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .sm\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .sm\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .sm\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .sm\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .sm\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .sm\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .sm\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .sm\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .sm\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .sm\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .sm\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .sm\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .sm\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .sm\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .sm\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .sm\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .sm\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .sm\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .sm\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .sm\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .sm\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .sm\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .sm\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .sm\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .sm\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .sm\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .sm\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .sm\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .sm\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .sm\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .sm\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .sm\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .sm\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .sm\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .sm\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .sm\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .sm\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .sm\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .sm\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .sm\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .sm\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .sm\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .sm\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .sm\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .sm\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .sm\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .sm\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .sm\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .sm\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .sm\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .sm\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .sm\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .sm\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .sm\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .sm\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .sm\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .sm\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .sm\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .sm\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .sm\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .sm\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .sm\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .sm\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .sm\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .sm\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .sm\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .sm\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .sm\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .sm\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .sm\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .sm\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .sm\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .sm\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .sm\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .sm\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .sm\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .sm\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .sm\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .sm\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .sm\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .sm\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .sm\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .sm\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .sm\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .sm\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .sm\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .sm\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .sm\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .sm\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .sm\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .sm\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .sm\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .sm\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .sm\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .sm\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .sm\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .sm\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .sm\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .sm\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .sm\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .sm\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .sm\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .sm\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .sm\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .sm\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .sm\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .sm\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .sm\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .sm\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .sm\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .sm\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .sm\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .sm\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .sm\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .sm\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .sm\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .sm\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .sm\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .sm\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .sm\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .sm\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .sm\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .sm\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .sm\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .sm\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .sm\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .sm\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .sm\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .sm\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .sm\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .sm\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .sm\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .sm\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .sm\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .sm\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .sm\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .sm\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .sm\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .sm\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .sm\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .sm\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .sm\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .sm\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .sm\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .sm\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .sm\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .sm\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .sm\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - .sm\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .sm\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .sm\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .sm\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .sm\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .sm\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .sm\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .sm\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .sm\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .sm\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .sm\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .sm\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .sm\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .sm\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .sm\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .sm\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .sm\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .sm\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .sm\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .sm\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .sm\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .sm\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .sm\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .sm\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .sm\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .sm\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .sm\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .sm\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .sm\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .sm\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .sm\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .sm\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .sm\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .sm\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .sm\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .sm\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .sm\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .sm\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .sm\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .sm\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .sm\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .sm\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .sm\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .sm\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .sm\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .sm\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .sm\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .sm\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .sm\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .sm\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .sm\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .sm\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .sm\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .sm\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .sm\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .sm\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .sm\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .sm\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .sm\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .sm\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .sm\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .sm\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .sm\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .sm\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .sm\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .sm\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .sm\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .sm\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .sm\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .sm\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .sm\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .sm\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .sm\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .sm\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .sm\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .sm\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .sm\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .sm\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .sm\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .sm\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .sm\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .sm\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .sm\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .sm\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .sm\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .sm\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .sm\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .sm\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .sm\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .sm\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .sm\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .sm\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .sm\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .sm\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .sm\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .sm\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .sm\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .sm\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .sm\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .sm\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .sm\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .sm\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .sm\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .sm\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .sm\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .sm\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .sm\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .sm\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .sm\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + .sm\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .sm\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .sm\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .sm\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .sm\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .sm\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .sm\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .sm\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .sm\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .sm\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .sm\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .sm\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .sm\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .sm\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .sm\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .sm\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .sm\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .sm\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .sm\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .sm\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .sm\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .sm\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .sm\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .sm\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .sm\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .sm\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .sm\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .sm\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .sm\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .sm\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .sm\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .sm\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .sm\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .sm\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .sm\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .sm\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .sm\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .sm\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .sm\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .sm\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .sm\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .sm\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .sm\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .sm\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .sm\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .sm\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .sm\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .sm\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .sm\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .sm\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .sm\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .sm\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .sm\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .sm\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .sm\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .sm\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .sm\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .sm\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .sm\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .sm\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .sm\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .sm\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .sm\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .sm\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .sm\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .sm\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .sm\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .sm\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .sm\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .sm\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .sm\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .sm\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .sm\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .sm\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .sm\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .sm\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .sm\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .sm\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .sm\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .sm\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .sm\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .sm\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .sm\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .sm\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .sm\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .sm\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .sm\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .sm\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .sm\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .sm\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .sm\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .sm\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .sm\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .sm\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .sm\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .sm\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .sm\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .sm\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .sm\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .sm\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .sm\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .sm\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .sm\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .sm\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .sm\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .sm\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .sm\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .sm\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .sm\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .sm\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .sm\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .sm\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .sm\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .sm\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .sm\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .sm\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .sm\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .sm\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .sm\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .sm\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .sm\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .sm\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .sm\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .sm\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .sm\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .sm\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .sm\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .sm\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .sm\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .sm\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .sm\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .sm\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .sm\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .sm\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .sm\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .sm\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .sm\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .sm\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .sm\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .sm\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .sm\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .sm\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .sm\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .sm\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .sm\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .sm\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .sm\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .sm\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .sm\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .sm\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .sm\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .sm\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .sm\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .sm\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .sm\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .sm\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .sm\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .sm\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .sm\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .sm\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .sm\:filter-none { + filter: none; } - .sm\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .sm\:blur-0 { + --tw-blur: blur(0); } - .sm\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .sm\:blur-sm { + --tw-blur: blur(4px); } - .sm\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .sm\:blur { + --tw-blur: blur(8px); } - .sm\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .sm\:blur-md { + --tw-blur: blur(12px); } - .sm\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .sm\:blur-lg { + --tw-blur: blur(16px); } - .sm\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .sm\:blur-xl { + --tw-blur: blur(24px); } - .sm\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .sm\:blur-2xl { + --tw-blur: blur(40px); } - .sm\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .sm\:blur-3xl { + --tw-blur: blur(64px); } - .sm\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .sm\:brightness-0 { + --tw-brightness: brightness(0); } - .sm\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .sm\:brightness-50 { + --tw-brightness: brightness(.5); } - .sm\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .sm\:brightness-75 { + --tw-brightness: brightness(.75); } - .sm\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .sm\:brightness-90 { + --tw-brightness: brightness(.9); } - .sm\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .sm\:brightness-95 { + --tw-brightness: brightness(.95); } - .sm\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .sm\:brightness-100 { + --tw-brightness: brightness(1); } - .sm\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .sm\:brightness-105 { + --tw-brightness: brightness(1.05); } - .sm\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .sm\:brightness-110 { + --tw-brightness: brightness(1.1); } - .sm\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .sm\:brightness-125 { + --tw-brightness: brightness(1.25); } - .sm\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .sm\:brightness-150 { + --tw-brightness: brightness(1.5); } - .sm\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .sm\:brightness-200 { + --tw-brightness: brightness(2); } - .sm\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .sm\:contrast-0 { + --tw-contrast: contrast(0); } - .sm\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .sm\:contrast-50 { + --tw-contrast: contrast(.5); } - .sm\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .sm\:contrast-75 { + --tw-contrast: contrast(.75); } - .sm\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .sm\:contrast-100 { + --tw-contrast: contrast(1); } - .sm\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .sm\:contrast-125 { + --tw-contrast: contrast(1.25); } - .sm\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .sm\:contrast-150 { + --tw-contrast: contrast(1.5); } - .sm\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .sm\:contrast-200 { + --tw-contrast: contrast(2); } - .sm\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .sm\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .sm\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .sm\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .sm\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .sm\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .sm\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .sm\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .sm\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .sm\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .sm\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .sm\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .sm\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .sm\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .sm\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .sm\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .sm\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .sm\:grayscale { + --tw-grayscale: grayscale(100%); } - .sm\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .sm\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .sm\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .sm\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .sm\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .sm\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .sm\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .sm\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .sm\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .sm\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .sm\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .sm\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .sm\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .sm\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .sm\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .sm\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .sm\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .sm\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .sm\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .sm\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .sm\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .sm\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .sm\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .sm\:invert-0 { + --tw-invert: invert(0); } - .sm\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .sm\:invert { + --tw-invert: invert(100%); } - .sm\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .sm\:saturate-0 { + --tw-saturate: saturate(0); } - .sm\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .sm\:saturate-50 { + --tw-saturate: saturate(.5); } - .sm\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .sm\:saturate-100 { + --tw-saturate: saturate(1); } - .sm\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .sm\:saturate-150 { + --tw-saturate: saturate(1.5); } - .sm\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .sm\:saturate-200 { + --tw-saturate: saturate(2); } - .sm\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .sm\:sepia-0 { + --tw-sepia: sepia(0); } - .sm\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .sm\:sepia { + --tw-sepia: sepia(100%); } - .sm\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .sm\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .sm\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .sm\:backdrop-filter-none { + backdrop-filter: none; } - .sm\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .sm\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .sm\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .sm\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .sm\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .sm\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .sm\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .sm\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .sm\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .sm\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .sm\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .sm\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .sm\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .sm\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .sm\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .sm\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .sm\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .sm\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .sm\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .sm\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .sm\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .sm\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .sm\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .sm\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .sm\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .sm\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .sm\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .sm\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .sm\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .sm\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .sm\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .sm\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .sm\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .sm\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .sm\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .sm\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .sm\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .sm\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .sm\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .sm\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .sm\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .sm\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .sm\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .sm\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .sm\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .sm\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .sm\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .sm\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .sm\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .sm\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .sm\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .sm\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .sm\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .sm\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .sm\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .sm\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .sm\:skew-x-0 { - --tw-skew-x: 0deg; + .sm\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .sm\:skew-x-1 { - --tw-skew-x: 1deg; + .sm\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .sm\:skew-x-2 { - --tw-skew-x: 2deg; + .sm\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .sm\:skew-x-3 { - --tw-skew-x: 3deg; + .sm\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .sm\:skew-x-6 { - --tw-skew-x: 6deg; + .sm\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .sm\:skew-x-12 { - --tw-skew-x: 12deg; + .sm\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .sm\:-skew-x-12 { - --tw-skew-x: -12deg; + .sm\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .sm\:-skew-x-6 { - --tw-skew-x: -6deg; + .sm\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .sm\:-skew-x-3 { - --tw-skew-x: -3deg; + .sm\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .sm\:-skew-x-2 { - --tw-skew-x: -2deg; + .sm\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .sm\:-skew-x-1 { - --tw-skew-x: -1deg; + .sm\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .sm\:skew-y-0 { - --tw-skew-y: 0deg; + .sm\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } - .sm\:skew-y-1 { - --tw-skew-y: 1deg; + .sm\:transition-none { + transition-property: none; } - .sm\:skew-y-2 { - --tw-skew-y: 2deg; + .sm\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .sm\:skew-y-3 { - --tw-skew-y: 3deg; + .sm\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .sm\:skew-y-6 { - --tw-skew-y: 6deg; + .sm\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .sm\:skew-y-12 { - --tw-skew-y: 12deg; + .sm\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .sm\:-skew-y-12 { - --tw-skew-y: -12deg; + .sm\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .sm\:-skew-y-6 { - --tw-skew-y: -6deg; + .sm\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .sm\:-skew-y-3 { - --tw-skew-y: -3deg; + .sm\:delay-75 { + transition-delay: 75ms; } - .sm\:-skew-y-2 { - --tw-skew-y: -2deg; + .sm\:delay-100 { + transition-delay: 100ms; } - .sm\:-skew-y-1 { - --tw-skew-y: -1deg; + .sm\:delay-150 { + transition-delay: 150ms; } - .sm\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .sm\:delay-200 { + transition-delay: 200ms; } - .sm\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .sm\:delay-300 { + transition-delay: 300ms; } - .sm\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .sm\:delay-500 { + transition-delay: 500ms; } - .sm\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .sm\:delay-700 { + transition-delay: 700ms; } - .sm\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .sm\:delay-1000 { + transition-delay: 1000ms; } - .sm\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .sm\:duration-75 { + transition-duration: 75ms; } - .sm\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .sm\:duration-100 { + transition-duration: 100ms; } - .sm\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .sm\:duration-150 { + transition-duration: 150ms; } - .sm\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .sm\:duration-200 { + transition-duration: 200ms; } - .sm\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .sm\:duration-300 { + transition-duration: 300ms; } - .sm\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .sm\:duration-500 { + transition-duration: 500ms; } - .sm\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .sm\:duration-700 { + transition-duration: 700ms; } - .sm\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .sm\:duration-1000 { + transition-duration: 1000ms; } - .sm\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .sm\:ease-linear { + transition-timing-function: linear; } - .sm\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .sm\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); } - .sm\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .sm\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); } - .sm\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .sm\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .sm\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .sm\:example { + font-weight: 700; + color: #ef4444; } +} - .sm\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; +@media (min-width: 768px) { + .md\:container { + width: 100%; } - .sm\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + @media (min-width: 640px) { + .md\:container { + max-width: 640px; + } } - .sm\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + @media (min-width: 768px) { + .md\:container { + max-width: 768px; + } } - .sm\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + @media (min-width: 1024px) { + .md\:container { + max-width: 1024px; + } } - .sm\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + @media (min-width: 1280px) { + .md\:container { + max-width: 1280px; + } } - .sm\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + @media (min-width: 1536px) { + .md\:container { + max-width: 1536px; + } } - .sm\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .md\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .md\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .sm\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .md\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .md\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .sm\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .md\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .md\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .sm\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .md\:pointer-events-none { + pointer-events: none; } - .sm\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .md\:pointer-events-auto { + pointer-events: auto; } - .sm\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .md\:visible { + visibility: visible; } - .sm\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .md\:invisible { + visibility: hidden; } - .sm\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .md\:static { + position: static; } - .sm\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .md\:fixed { + position: fixed; } - .sm\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .md\:absolute { + position: absolute; } - .sm\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .md\:relative { + position: relative; } - .sm\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .md\:sticky { + position: sticky; } - .sm\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .md\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .sm\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .md\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .sm\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .md\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .sm\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .md\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .sm\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .md\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .sm\:transition-none { - transition-property: none; + .md\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .sm\:transition-all { - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .md\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .sm\:transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .md\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .sm\:transition-colors { - transition-property: background-color, border-color, color, fill, stroke; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .md\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .sm\:transition-opacity { - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .md\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .sm\:transition-shadow { - transition-property: box-shadow; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .md\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .sm\:transition-transform { - transition-property: transform; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .md\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .sm\:ease-linear { - transition-timing-function: linear; + .md\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .sm\:ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + .md\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .sm\:ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + .md\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .sm\:ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + .md\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .sm\:duration-75 { - transition-duration: 75ms; + .md\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .sm\:duration-100 { - transition-duration: 100ms; + .md\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .sm\:duration-150 { - transition-duration: 150ms; + .md\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .sm\:duration-200 { - transition-duration: 200ms; + .md\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .sm\:duration-300 { - transition-duration: 300ms; + .md\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .sm\:duration-500 { - transition-duration: 500ms; + .md\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .sm\:duration-700 { - transition-duration: 700ms; + .md\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .sm\:duration-1000 { - transition-duration: 1000ms; + .md\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .sm\:delay-75 { - transition-delay: 75ms; + .md\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .sm\:delay-100 { - transition-delay: 100ms; + .md\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .sm\:delay-150 { - transition-delay: 150ms; + .md\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .sm\:delay-200 { - transition-delay: 200ms; + .md\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .sm\:delay-300 { - transition-delay: 300ms; + .md\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .sm\:delay-500 { - transition-delay: 500ms; + .md\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .sm\:delay-700 { - transition-delay: 700ms; + .md\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .sm\:delay-1000 { - transition-delay: 1000ms; + .md\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .sm\:animate-none { - animation: none; + .md\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .sm\:animate-spin { - animation: spin 1s linear infinite; + .md\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .sm\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .md\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .sm\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .md\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .sm\:animate-bounce { - animation: bounce 1s infinite; + .md\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .sm\:mix-blend-normal { - mix-blend-mode: normal; + .md\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .sm\:mix-blend-multiply { - mix-blend-mode: multiply; + .md\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .sm\:mix-blend-screen { - mix-blend-mode: screen; + .md\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .sm\:mix-blend-overlay { - mix-blend-mode: overlay; + .md\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .sm\:mix-blend-darken { - mix-blend-mode: darken; + .md\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .sm\:mix-blend-lighten { - mix-blend-mode: lighten; + .md\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .sm\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .md\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .sm\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .md\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .sm\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .md\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .sm\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .md\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .sm\:mix-blend-difference { - mix-blend-mode: difference; + .md\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .sm\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .md\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .sm\:mix-blend-hue { - mix-blend-mode: hue; + .md\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .sm\:mix-blend-saturation { - mix-blend-mode: saturation; + .md\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .sm\:mix-blend-color { - mix-blend-mode: color; + .md\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .sm\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .md\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .sm\:bg-blend-normal { - background-blend-mode: normal; + .md\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .sm\:bg-blend-multiply { - background-blend-mode: multiply; + .md\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .sm\:bg-blend-screen { - background-blend-mode: screen; + .md\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .sm\:bg-blend-overlay { - background-blend-mode: overlay; + .md\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .sm\:bg-blend-darken { - background-blend-mode: darken; + .md\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .sm\:bg-blend-lighten { - background-blend-mode: lighten; + .md\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .sm\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .md\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .sm\:bg-blend-color-burn { - background-blend-mode: color-burn; + .md\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .sm\:bg-blend-hard-light { - background-blend-mode: hard-light; + .md\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .sm\:bg-blend-soft-light { - background-blend-mode: soft-light; + .md\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .sm\:bg-blend-difference { - background-blend-mode: difference; + .md\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .sm\:bg-blend-exclusion { - background-blend-mode: exclusion; + .md\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .sm\:bg-blend-hue { - background-blend-mode: hue; + .md\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .sm\:bg-blend-saturation { - background-blend-mode: saturation; + .md\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .sm\:bg-blend-color { - background-blend-mode: color; + .md\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .sm\:bg-blend-luminosity { - background-blend-mode: luminosity; + .md\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .sm\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .md\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .sm\:filter-none { - filter: none; + .md\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .sm\:blur-0 { - --tw-blur: blur(0); + .md\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .sm\:blur-sm { - --tw-blur: blur(4px); + .md\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .sm\:blur { - --tw-blur: blur(8px); + .md\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .sm\:blur-md { - --tw-blur: blur(12px); + .md\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .sm\:blur-lg { - --tw-blur: blur(16px); + .md\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .sm\:blur-xl { - --tw-blur: blur(24px); + .md\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .sm\:blur-2xl { - --tw-blur: blur(40px); + .md\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .sm\:blur-3xl { - --tw-blur: blur(64px); + .md\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .sm\:brightness-0 { - --tw-brightness: brightness(0); + .md\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .sm\:brightness-50 { - --tw-brightness: brightness(.5); + .md\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .sm\:brightness-75 { - --tw-brightness: brightness(.75); + .md\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .sm\:brightness-90 { - --tw-brightness: brightness(.9); + .md\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .sm\:brightness-95 { - --tw-brightness: brightness(.95); + .md\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .sm\:brightness-100 { - --tw-brightness: brightness(1); + .md\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .sm\:brightness-105 { - --tw-brightness: brightness(1.05); + .md\:inset-y-0 { + top: 0px; + bottom: 0px; } - .sm\:brightness-110 { - --tw-brightness: brightness(1.1); + .md\:inset-x-0 { + right: 0px; + left: 0px; } - .sm\:brightness-125 { - --tw-brightness: brightness(1.25); + .md\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .sm\:brightness-150 { - --tw-brightness: brightness(1.5); + .md\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .sm\:brightness-200 { - --tw-brightness: brightness(2); + .md\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .sm\:contrast-0 { - --tw-contrast: contrast(0); + .md\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .sm\:contrast-50 { - --tw-contrast: contrast(.5); + .md\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .sm\:contrast-75 { - --tw-contrast: contrast(.75); + .md\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .sm\:contrast-100 { - --tw-contrast: contrast(1); + .md\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .sm\:contrast-125 { - --tw-contrast: contrast(1.25); + .md\:inset-x-4 { + right: 1rem; + left: 1rem; } - .sm\:contrast-150 { - --tw-contrast: contrast(1.5); + .md\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .sm\:contrast-200 { - --tw-contrast: contrast(2); + .md\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .sm\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .md\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .sm\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .md\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .sm\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .md\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .sm\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .md\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .sm\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .md\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .sm\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .md\:inset-x-8 { + right: 2rem; + left: 2rem; } - .sm\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .md\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .sm\:grayscale-0 { - --tw-grayscale: grayscale(0); + .md\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .sm\:grayscale { - --tw-grayscale: grayscale(100%); + .md\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .sm\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .md\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .sm\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .md\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .sm\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .md\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .sm\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .md\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .sm\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .md\:inset-x-12 { + right: 3rem; + left: 3rem; } - .sm\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .md\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .sm\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .md\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .sm\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .md\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .sm\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .md\:inset-x-16 { + right: 4rem; + left: 4rem; } - .sm\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .md\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .sm\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .md\:inset-x-20 { + right: 5rem; + left: 5rem; } - .sm\:invert-0 { - --tw-invert: invert(0); + .md\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .sm\:invert { - --tw-invert: invert(100%); + .md\:inset-x-24 { + right: 6rem; + left: 6rem; } - .sm\:saturate-0 { - --tw-saturate: saturate(0); + .md\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .sm\:saturate-50 { - --tw-saturate: saturate(.5); + .md\:inset-x-28 { + right: 7rem; + left: 7rem; } - .sm\:saturate-100 { - --tw-saturate: saturate(1); + .md\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .sm\:saturate-150 { - --tw-saturate: saturate(1.5); + .md\:inset-x-32 { + right: 8rem; + left: 8rem; } - .sm\:saturate-200 { - --tw-saturate: saturate(2); + .md\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .sm\:sepia-0 { - --tw-sepia: sepia(0); + .md\:inset-x-36 { + right: 9rem; + left: 9rem; } - .sm\:sepia { - --tw-sepia: sepia(100%); + .md\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .sm\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .md\:inset-x-40 { + right: 10rem; + left: 10rem; } - .sm\:backdrop-filter-none { - backdrop-filter: none; + .md\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .sm\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .md\:inset-x-44 { + right: 11rem; + left: 11rem; } - .sm\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .md\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .sm\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .md\:inset-x-48 { + right: 12rem; + left: 12rem; } - .sm\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .md\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .sm\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .md\:inset-x-52 { + right: 13rem; + left: 13rem; } - .sm\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .md\:inset-y-56 { + top: 14rem; + bottom: 14rem; } - .sm\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .md\:inset-x-56 { + right: 14rem; + left: 14rem; } - .sm\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .md\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - .sm\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .md\:inset-x-60 { + right: 15rem; + left: 15rem; } - .sm\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .md\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - .sm\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .md\:inset-x-64 { + right: 16rem; + left: 16rem; } - .sm\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .md\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .sm\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .md\:inset-x-72 { + right: 18rem; + left: 18rem; } - .sm\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .md\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .sm\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .md\:inset-x-80 { + right: 20rem; + left: 20rem; } - .sm\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .md\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .sm\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .md\:inset-x-96 { + right: 24rem; + left: 24rem; } - .sm\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .md\:inset-y-auto { + top: auto; + bottom: auto; } - .sm\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .md\:inset-x-auto { + right: auto; + left: auto; } - .sm\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .md\:inset-y-px { + top: 1px; + bottom: 1px; } - .sm\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .md\:inset-x-px { + right: 1px; + left: 1px; } - .sm\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .md\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .sm\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .md\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .sm\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .md\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .sm\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .md\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .sm\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .md\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .sm\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .md\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .sm\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .md\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .sm\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .md\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .sm\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .md\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .sm\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .md\:-inset-x-0 { + right: 0px; + left: 0px; } - .sm\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .md\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .sm\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .md\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .sm\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .md\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .sm\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .md\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .sm\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .md\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .sm\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .md\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .sm\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .md\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .sm\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .md\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .sm\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .md\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .sm\:example { - font-weight: 700; - color: #ef4444; + .md\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } -} -@media (min-width: 768px) { - .md\:container { - width: 100%; + .md\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - @media (min-width: 640px) { - .md\:container { - max-width: 640px; - } + .md\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - @media (min-width: 768px) { - .md\:container { - max-width: 768px; - } + .md\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - @media (min-width: 1024px) { - .md\:container { - max-width: 1024px; - } + .md\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - @media (min-width: 1280px) { - .md\:container { - max-width: 1280px; - } + .md\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - @media (min-width: 1536px) { - .md\:container { - max-width: 1536px; - } + .md\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .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\:right-6 { + right: 1.5rem; } - .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\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .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\:right-9 { + right: 2.25rem; } - .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\:bottom-9 { + bottom: 2.25rem; } - .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\:left-9 { + left: 2.25rem; } - .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\:top-10 { + top: 2.5rem; } - .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\:right-10 { + right: 2.5rem; } - .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\:bottom-10 { + bottom: 2.5rem; } - .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\:left-10 { + left: 2.5rem; } - .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\:top-11 { + top: 2.75rem; } - .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\:right-11 { + right: 2.75rem; } - .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\:bottom-11 { + bottom: 2.75rem; } - .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\:left-11 { + left: 2.75rem; } - .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\:top-12 { + top: 3rem; } - .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\:right-12 { + right: 3rem; } - .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\:bottom-12 { + bottom: 3rem; } - .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\:left-12 { + left: 3rem; } - .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\:top-14 { + top: 3.5rem; } - .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\:right-14 { + right: 3.5rem; } - .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\:bottom-14 { + bottom: 3.5rem; } - .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\:left-14 { + left: 3.5rem; } - .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\:top-16 { + top: 4rem; } - .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\:right-16 { + right: 4rem; } - .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\:bottom-16 { + bottom: 4rem; } - .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\:left-16 { + left: 4rem; } - .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .md\:top-20 { + top: 5rem; } - .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .md\:right-20 { + right: 5rem; } - .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\:bottom-20 { + bottom: 5rem; } - .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\:left-20 { + left: 5rem; } - .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\:top-24 { + top: 6rem; } - .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\:right-24 { + right: 6rem; } - .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\:bottom-24 { + bottom: 6rem; } - .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\:left-24 { + left: 6rem; } - .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\:top-28 { + top: 7rem; } - .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\:right-28 { + right: 7rem; } - .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\:bottom-28 { + bottom: 7rem; } - .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\:left-28 { + left: 7rem; } - .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .md\:top-32 { + top: 8rem; } - .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .md\:right-32 { + right: 8rem; } - .md\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .md\:bottom-32 { + bottom: 8rem; } - .md\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .md\:left-32 { + left: 8rem; } - .md\:divide-black > :not([hidden]) ~ :not([hidden]) { - border-color: #000; + .md\:top-36 { + top: 9rem; } - .md\:divide-white > :not([hidden]) ~ :not([hidden]) { - border-color: #fff; + .md\:right-36 { + right: 9rem; } - .md\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9fafb; + .md\:bottom-36 { + bottom: 9rem; } - .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #f3f4f6; + .md\:left-36 { + left: 9rem; } - .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #e5e7eb; + .md\:top-40 { + top: 10rem; } - .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1d5db; + .md\:right-40 { + right: 10rem; } - .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #9ca3af; + .md\:bottom-40 { + bottom: 10rem; } - .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6b7280; + .md\:left-40 { + left: 10rem; } - .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4b5563; + .md\:top-44 { + top: 11rem; } - .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #374151; + .md\:right-44 { + right: 11rem; } - .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1f2937; + .md\:bottom-44 { + bottom: 11rem; } - .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #111827; + .md\:left-44 { + left: 11rem; } - .md\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef2f2; + .md\:top-48 { + top: 12rem; } - .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fee2e2; + .md\:right-48 { + right: 12rem; } - .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fecaca; + .md\:bottom-48 { + bottom: 12rem; } - .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fca5a5; + .md\:left-48 { + left: 12rem; } - .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f87171; + .md\:top-52 { + top: 13rem; } - .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ef4444; + .md\:right-52 { + right: 13rem; } - .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #dc2626; + .md\:bottom-52 { + bottom: 13rem; } - .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b91c1c; + .md\:left-52 { + left: 13rem; } - .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #991b1b; + .md\:top-56 { + top: 14rem; } - .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #7f1d1d; + .md\:right-56 { + right: 14rem; } - .md\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fffbeb; + .md\:bottom-56 { + bottom: 14rem; } - .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef3c7; + .md\:left-56 { + left: 14rem; } - .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fde68a; + .md\:top-60 { + top: 15rem; } - .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fcd34d; + .md\:right-60 { + right: 15rem; } - .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbbf24; + .md\:bottom-60 { + bottom: 15rem; } - .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #f59e0b; + .md\:left-60 { + left: 15rem; } - .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #d97706; + .md\:top-64 { + top: 16rem; } - .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b45309; + .md\:right-64 { + right: 16rem; } - .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #92400e; + .md\:bottom-64 { + bottom: 16rem; } - .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #78350f; + .md\:left-64 { + left: 16rem; } - .md\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #ecfdf5; + .md\:top-72 { + top: 18rem; } - .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1fae5; + .md\:right-72 { + right: 18rem; } - .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #a7f3d0; + .md\:bottom-72 { + bottom: 18rem; } - .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #6ee7b7; + .md\:left-72 { + left: 18rem; } - .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #34d399; + .md\:top-80 { + top: 20rem; } - .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #10b981; + .md\:right-80 { + right: 20rem; } - .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #059669; + .md\:bottom-80 { + bottom: 20rem; } - .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #047857; + .md\:left-80 { + left: 20rem; } - .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #065f46; + .md\:top-96 { + top: 24rem; } - .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #064e3b; + .md\:right-96 { + right: 24rem; } - .md\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eff6ff; + .md\:bottom-96 { + bottom: 24rem; } - .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #dbeafe; + .md\:left-96 { + left: 24rem; } - .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #bfdbfe; + .md\:top-auto { + top: auto; } - .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #93c5fd; + .md\:right-auto { + right: auto; } - .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #60a5fa; + .md\:bottom-auto { + bottom: auto; } - .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #3b82f6; + .md\:left-auto { + left: auto; } - .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #2563eb; + .md\:top-px { + top: 1px; } - .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #1d4ed8; + .md\:right-px { + right: 1px; } - .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e40af; + .md\:bottom-px { + bottom: 1px; } - .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e3a8a; + .md\:left-px { + left: 1px; } - .md\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eef2ff; + .md\:top-0\.5 { + top: 0.125rem; } - .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #e0e7ff; + .md\:right-0\.5 { + right: 0.125rem; } - .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #c7d2fe; + .md\:bottom-0\.5 { + bottom: 0.125rem; + } + + .md\:left-0\.5 { + left: 0.125rem; } - .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #a5b4fc; + .md\:top-1\.5 { + top: 0.375rem; } - .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #818cf8; + .md\:right-1\.5 { + right: 0.375rem; } - .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6366f1; + .md\:bottom-1\.5 { + bottom: 0.375rem; } - .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4f46e5; + .md\:left-1\.5 { + left: 0.375rem; } - .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #4338ca; + .md\:top-2\.5 { + top: 0.625rem; } - .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #3730a3; + .md\:right-2\.5 { + right: 0.625rem; } - .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #312e81; + .md\:bottom-2\.5 { + bottom: 0.625rem; } - .md\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f5f3ff; + .md\:left-2\.5 { + left: 0.625rem; } - .md\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #ede9fe; + .md\:top-3\.5 { + top: 0.875rem; } - .md\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #ddd6fe; + .md\:right-3\.5 { + right: 0.875rem; } - .md\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #c4b5fd; + .md\:bottom-3\.5 { + bottom: 0.875rem; } - .md\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #a78bfa; + .md\:left-3\.5 { + left: 0.875rem; } - .md\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #8b5cf6; + .md\:-top-0 { + top: 0px; } - .md\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #7c3aed; + .md\:-right-0 { + right: 0px; } - .md\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #6d28d9; + .md\:-bottom-0 { + bottom: 0px; } - .md\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #5b21b6; + .md\:-left-0 { + left: 0px; } - .md\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #4c1d95; + .md\:-top-1 { + top: -0.25rem; } - .md\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fdf2f8; + .md\:-right-1 { + right: -0.25rem; } - .md\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fce7f3; + .md\:-bottom-1 { + bottom: -0.25rem; } - .md\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbcfe8; + .md\:-left-1 { + left: -0.25rem; } - .md\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9a8d4; + .md\:-top-2 { + top: -0.5rem; } - .md\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f472b6; + .md\:-right-2 { + right: -0.5rem; } - .md\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ec4899; + .md\:-bottom-2 { + bottom: -0.5rem; } - .md\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #db2777; + .md\:-left-2 { + left: -0.5rem; } - .md\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #be185d; + .md\:-top-3 { + top: -0.75rem; } - .md\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #9d174d; + .md\:-right-3 { + right: -0.75rem; } - .md\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #831843; + .md\:-bottom-3 { + bottom: -0.75rem; } - .md\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .md\:-left-3 { + left: -0.75rem; } - .md\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .md\:-top-4 { + top: -1rem; } - .md\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .md\:-right-4 { + right: -1rem; } - .md\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .md\:-bottom-4 { + bottom: -1rem; } - .md\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .md\:-left-4 { + left: -1rem; } - .md\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .md\:-top-5 { + top: -1.25rem; } - .md\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .md\:-right-5 { + right: -1.25rem; } - .md\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .md\:-bottom-5 { + bottom: -1.25rem; } - .md\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .md\:-left-5 { + left: -1.25rem; } - .md\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .md\:-top-6 { + top: -1.5rem; } - .md\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .md\:-right-6 { + right: -1.5rem; } - .md\:appearance-none { - appearance: none; + .md\:-bottom-6 { + bottom: -1.5rem; } - .md\:bg-fixed { - background-attachment: fixed; + .md\:-left-6 { + left: -1.5rem; } - .md\:bg-local { - background-attachment: local; + .md\:-top-7 { + top: -1.75rem; } - .md\:bg-scroll { - background-attachment: scroll; + .md\:-right-7 { + right: -1.75rem; } - .md\:bg-clip-border { - background-clip: border-box; + .md\:-bottom-7 { + bottom: -1.75rem; } - .md\:bg-clip-padding { - background-clip: padding-box; + .md\:-left-7 { + left: -1.75rem; } - .md\:bg-clip-content { - background-clip: content-box; + .md\:-top-8 { + top: -2rem; } - .md\:bg-clip-text { - background-clip: text; + .md\:-right-8 { + right: -2rem; } - .md\:bg-transparent { - background-color: transparent; + .md\:-bottom-8 { + bottom: -2rem; } - .md\:bg-current { - background-color: currentColor; + .md\:-left-8 { + left: -2rem; } - .md\:bg-black { - background-color: #000; + .md\:-top-9 { + top: -2.25rem; } - .md\:bg-white { - background-color: #fff; + .md\:-right-9 { + right: -2.25rem; } - .md\:bg-gray-50 { - background-color: #f9fafb; + .md\:-bottom-9 { + bottom: -2.25rem; } - .md\:bg-gray-100 { - background-color: #f3f4f6; + .md\:-left-9 { + left: -2.25rem; } - .md\:bg-gray-200 { - background-color: #e5e7eb; + .md\:-top-10 { + top: -2.5rem; } - .md\:bg-gray-300 { - background-color: #d1d5db; + .md\:-right-10 { + right: -2.5rem; } - .md\:bg-gray-400 { - background-color: #9ca3af; + .md\:-bottom-10 { + bottom: -2.5rem; } - .md\:bg-gray-500 { - background-color: #6b7280; + .md\:-left-10 { + left: -2.5rem; } - .md\:bg-gray-600 { - background-color: #4b5563; + .md\:-top-11 { + top: -2.75rem; } - .md\:bg-gray-700 { - background-color: #374151; + .md\:-right-11 { + right: -2.75rem; } - .md\:bg-gray-800 { - background-color: #1f2937; + .md\:-bottom-11 { + bottom: -2.75rem; } - .md\:bg-gray-900 { - background-color: #111827; + .md\:-left-11 { + left: -2.75rem; } - .md\:bg-red-50 { - background-color: #fef2f2; + .md\:-top-12 { + top: -3rem; } - .md\:bg-red-100 { - background-color: #fee2e2; + .md\:-right-12 { + right: -3rem; } - .md\:bg-red-200 { - background-color: #fecaca; + .md\:-bottom-12 { + bottom: -3rem; } - .md\:bg-red-300 { - background-color: #fca5a5; + .md\:-left-12 { + left: -3rem; } - .md\:bg-red-400 { - background-color: #f87171; + .md\:-top-14 { + top: -3.5rem; } - .md\:bg-red-500 { - background-color: #ef4444; + .md\:-right-14 { + right: -3.5rem; } - .md\:bg-red-600 { - background-color: #dc2626; + .md\:-bottom-14 { + bottom: -3.5rem; } - .md\:bg-red-700 { - background-color: #b91c1c; + .md\:-left-14 { + left: -3.5rem; } - .md\:bg-red-800 { - background-color: #991b1b; + .md\:-top-16 { + top: -4rem; } - .md\:bg-red-900 { - background-color: #7f1d1d; + .md\:-right-16 { + right: -4rem; } - .md\:bg-yellow-50 { - background-color: #fffbeb; + .md\:-bottom-16 { + bottom: -4rem; } - .md\:bg-yellow-100 { - background-color: #fef3c7; + .md\:-left-16 { + left: -4rem; } - .md\:bg-yellow-200 { - background-color: #fde68a; + .md\:-top-20 { + top: -5rem; } - .md\:bg-yellow-300 { - background-color: #fcd34d; + .md\:-right-20 { + right: -5rem; } - .md\:bg-yellow-400 { - background-color: #fbbf24; + .md\:-bottom-20 { + bottom: -5rem; } - .md\:bg-yellow-500 { - background-color: #f59e0b; + .md\:-left-20 { + left: -5rem; } - .md\:bg-yellow-600 { - background-color: #d97706; + .md\:-top-24 { + top: -6rem; } - .md\:bg-yellow-700 { - background-color: #b45309; + .md\:-right-24 { + right: -6rem; } - .md\:bg-yellow-800 { - background-color: #92400e; + .md\:-bottom-24 { + bottom: -6rem; } - .md\:bg-yellow-900 { - background-color: #78350f; + .md\:-left-24 { + left: -6rem; } - .md\:bg-green-50 { - background-color: #ecfdf5; + .md\:-top-28 { + top: -7rem; } - .md\:bg-green-100 { - background-color: #d1fae5; + .md\:-right-28 { + right: -7rem; } - .md\:bg-green-200 { - background-color: #a7f3d0; + .md\:-bottom-28 { + bottom: -7rem; } - .md\:bg-green-300 { - background-color: #6ee7b7; + .md\:-left-28 { + left: -7rem; } - .md\:bg-green-400 { - background-color: #34d399; + .md\:-top-32 { + top: -8rem; } - .md\:bg-green-500 { - background-color: #10b981; + .md\:-right-32 { + right: -8rem; } - .md\:bg-green-600 { - background-color: #059669; + .md\:-bottom-32 { + bottom: -8rem; } - .md\:bg-green-700 { - background-color: #047857; + .md\:-left-32 { + left: -8rem; } - .md\:bg-green-800 { - background-color: #065f46; + .md\:-top-36 { + top: -9rem; } - .md\:bg-green-900 { - background-color: #064e3b; + .md\:-right-36 { + right: -9rem; } - .md\:bg-blue-50 { - background-color: #eff6ff; + .md\:-bottom-36 { + bottom: -9rem; } - .md\:bg-blue-100 { - background-color: #dbeafe; + .md\:-left-36 { + left: -9rem; } - .md\:bg-blue-200 { - background-color: #bfdbfe; + .md\:-top-40 { + top: -10rem; } - .md\:bg-blue-300 { - background-color: #93c5fd; + .md\:-right-40 { + right: -10rem; } - .md\:bg-blue-400 { - background-color: #60a5fa; + .md\:-bottom-40 { + bottom: -10rem; } - .md\:bg-blue-500 { - background-color: #3b82f6; + .md\:-left-40 { + left: -10rem; } - .md\:bg-blue-600 { - background-color: #2563eb; + .md\:-top-44 { + top: -11rem; } - .md\:bg-blue-700 { - background-color: #1d4ed8; + .md\:-right-44 { + right: -11rem; } - .md\:bg-blue-800 { - background-color: #1e40af; + .md\:-bottom-44 { + bottom: -11rem; } - .md\:bg-blue-900 { - background-color: #1e3a8a; + .md\:-left-44 { + left: -11rem; } - .md\:bg-indigo-50 { - background-color: #eef2ff; + .md\:-top-48 { + top: -12rem; } - .md\:bg-indigo-100 { - background-color: #e0e7ff; + .md\:-right-48 { + right: -12rem; } - .md\:bg-indigo-200 { - background-color: #c7d2fe; + .md\:-bottom-48 { + bottom: -12rem; } - .md\:bg-indigo-300 { - background-color: #a5b4fc; + .md\:-left-48 { + left: -12rem; } - .md\:bg-indigo-400 { - background-color: #818cf8; + .md\:-top-52 { + top: -13rem; } - .md\:bg-indigo-500 { - background-color: #6366f1; + .md\:-right-52 { + right: -13rem; } - .md\:bg-indigo-600 { - background-color: #4f46e5; + .md\:-bottom-52 { + bottom: -13rem; } - .md\:bg-indigo-700 { - background-color: #4338ca; + .md\:-left-52 { + left: -13rem; } - .md\:bg-indigo-800 { - background-color: #3730a3; + .md\:-top-56 { + top: -14rem; } - .md\:bg-indigo-900 { - background-color: #312e81; + .md\:-right-56 { + right: -14rem; } - .md\:bg-purple-50 { - background-color: #f5f3ff; + .md\:-bottom-56 { + bottom: -14rem; } - .md\:bg-purple-100 { - background-color: #ede9fe; + .md\:-left-56 { + left: -14rem; } - .md\:bg-purple-200 { - background-color: #ddd6fe; + .md\:-top-60 { + top: -15rem; } - .md\:bg-purple-300 { - background-color: #c4b5fd; + .md\:-right-60 { + right: -15rem; } - .md\:bg-purple-400 { - background-color: #a78bfa; + .md\:-bottom-60 { + bottom: -15rem; } - .md\:bg-purple-500 { - background-color: #8b5cf6; + .md\:-left-60 { + left: -15rem; } - .md\:bg-purple-600 { - background-color: #7c3aed; + .md\:-top-64 { + top: -16rem; } - .md\:bg-purple-700 { - background-color: #6d28d9; + .md\:-right-64 { + right: -16rem; } - .md\:bg-purple-800 { - background-color: #5b21b6; + .md\:-bottom-64 { + bottom: -16rem; } - .md\:bg-purple-900 { - background-color: #4c1d95; + .md\:-left-64 { + left: -16rem; } - .md\:bg-pink-50 { - background-color: #fdf2f8; + .md\:-top-72 { + top: -18rem; } - .md\:bg-pink-100 { - background-color: #fce7f3; + .md\:-right-72 { + right: -18rem; } - .md\:bg-pink-200 { - background-color: #fbcfe8; + .md\:-bottom-72 { + bottom: -18rem; } - .md\:bg-pink-300 { - background-color: #f9a8d4; + .md\:-left-72 { + left: -18rem; } - .md\:bg-pink-400 { - background-color: #f472b6; + .md\:-top-80 { + top: -20rem; } - .md\:bg-pink-500 { - background-color: #ec4899; + .md\:-right-80 { + right: -20rem; } - .md\:bg-pink-600 { - background-color: #db2777; + .md\:-bottom-80 { + bottom: -20rem; } - .md\:bg-pink-700 { - background-color: #be185d; + .md\:-left-80 { + left: -20rem; } - .md\:bg-pink-800 { - background-color: #9d174d; + .md\:-top-96 { + top: -24rem; } - .md\:bg-pink-900 { - background-color: #831843; + .md\:-right-96 { + right: -24rem; } - .group:hover .md\:group-hover\:bg-transparent { - background-color: transparent; + .md\:-bottom-96 { + bottom: -24rem; } - .group:hover .md\:group-hover\:bg-current { - background-color: currentColor; + .md\:-left-96 { + left: -24rem; } - .group:hover .md\:group-hover\:bg-black { - background-color: #000; + .md\:-top-px { + top: -1px; } - .group:hover .md\:group-hover\:bg-white { - background-color: #fff; + .md\:-right-px { + right: -1px; } - .group:hover .md\:group-hover\:bg-gray-50 { - background-color: #f9fafb; + .md\:-bottom-px { + bottom: -1px; } - .group:hover .md\:group-hover\:bg-gray-100 { - background-color: #f3f4f6; + .md\:-left-px { + left: -1px; } - .group:hover .md\:group-hover\:bg-gray-200 { - background-color: #e5e7eb; + .md\:-top-0\.5 { + top: -0.125rem; } - .group:hover .md\:group-hover\:bg-gray-300 { - background-color: #d1d5db; + .md\:-right-0\.5 { + right: -0.125rem; } - .group:hover .md\:group-hover\:bg-gray-400 { - background-color: #9ca3af; + .md\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .md\:group-hover\:bg-gray-500 { - background-color: #6b7280; + .md\:-left-0\.5 { + left: -0.125rem; } - .group:hover .md\:group-hover\:bg-gray-600 { - background-color: #4b5563; + .md\:-top-1\.5 { + top: -0.375rem; } - .group:hover .md\:group-hover\:bg-gray-700 { - background-color: #374151; + .md\:-right-1\.5 { + right: -0.375rem; } - .group:hover .md\:group-hover\:bg-gray-800 { - background-color: #1f2937; + .md\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .md\:group-hover\:bg-gray-900 { - background-color: #111827; + .md\:-left-1\.5 { + left: -0.375rem; } - .group:hover .md\:group-hover\:bg-red-50 { - background-color: #fef2f2; + .md\:-top-2\.5 { + top: -0.625rem; } - .group:hover .md\:group-hover\:bg-red-100 { - background-color: #fee2e2; + .md\:-right-2\.5 { + right: -0.625rem; } - .group:hover .md\:group-hover\:bg-red-200 { - background-color: #fecaca; + .md\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .md\:group-hover\:bg-red-300 { - background-color: #fca5a5; + .md\:-left-2\.5 { + left: -0.625rem; } - .group:hover .md\:group-hover\:bg-red-400 { - background-color: #f87171; + .md\:-top-3\.5 { + top: -0.875rem; } - .group:hover .md\:group-hover\:bg-red-500 { - background-color: #ef4444; + .md\:-right-3\.5 { + right: -0.875rem; } - .group:hover .md\:group-hover\:bg-red-600 { - background-color: #dc2626; + .md\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .md\:group-hover\:bg-red-700 { - background-color: #b91c1c; + .md\:-left-3\.5 { + left: -0.875rem; } - .group:hover .md\:group-hover\:bg-red-800 { - background-color: #991b1b; + .md\:top-1\/2 { + top: 50%; } - .group:hover .md\:group-hover\:bg-red-900 { - background-color: #7f1d1d; + .md\:right-1\/2 { + right: 50%; } - .group:hover .md\:group-hover\:bg-yellow-50 { - background-color: #fffbeb; + .md\:bottom-1\/2 { + bottom: 50%; } - .group:hover .md\:group-hover\:bg-yellow-100 { - background-color: #fef3c7; + .md\:left-1\/2 { + left: 50%; } - .group:hover .md\:group-hover\:bg-yellow-200 { - background-color: #fde68a; + .md\:top-1\/3 { + top: 33.333333%; } - .group:hover .md\:group-hover\:bg-yellow-300 { - background-color: #fcd34d; + .md\:right-1\/3 { + right: 33.333333%; } - .group:hover .md\:group-hover\:bg-yellow-400 { - background-color: #fbbf24; + .md\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .md\:group-hover\:bg-yellow-500 { - background-color: #f59e0b; + .md\:left-1\/3 { + left: 33.333333%; } - .group:hover .md\:group-hover\:bg-yellow-600 { - background-color: #d97706; + .md\:top-2\/3 { + top: 66.666667%; } - .group:hover .md\:group-hover\:bg-yellow-700 { - background-color: #b45309; + .md\:right-2\/3 { + right: 66.666667%; } - .group:hover .md\:group-hover\:bg-yellow-800 { - background-color: #92400e; + .md\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .md\:group-hover\:bg-yellow-900 { - background-color: #78350f; + .md\:left-2\/3 { + left: 66.666667%; } - .group:hover .md\:group-hover\:bg-green-50 { - background-color: #ecfdf5; + .md\:top-1\/4 { + top: 25%; } - .group:hover .md\:group-hover\:bg-green-100 { - background-color: #d1fae5; + .md\:right-1\/4 { + right: 25%; } - .group:hover .md\:group-hover\:bg-green-200 { - background-color: #a7f3d0; + .md\:bottom-1\/4 { + bottom: 25%; } - .group:hover .md\:group-hover\:bg-green-300 { - background-color: #6ee7b7; + .md\:left-1\/4 { + left: 25%; } - .group:hover .md\:group-hover\:bg-green-400 { - background-color: #34d399; + .md\:top-2\/4 { + top: 50%; } - .group:hover .md\:group-hover\:bg-green-500 { - background-color: #10b981; + .md\:right-2\/4 { + right: 50%; } - .group:hover .md\:group-hover\:bg-green-600 { - background-color: #059669; + .md\:bottom-2\/4 { + bottom: 50%; } - .group:hover .md\:group-hover\:bg-green-700 { - background-color: #047857; + .md\:left-2\/4 { + left: 50%; } - .group:hover .md\:group-hover\:bg-green-800 { - background-color: #065f46; + .md\:top-3\/4 { + top: 75%; } - .group:hover .md\:group-hover\:bg-green-900 { - background-color: #064e3b; + .md\:right-3\/4 { + right: 75%; } - .group:hover .md\:group-hover\:bg-blue-50 { - background-color: #eff6ff; + .md\:bottom-3\/4 { + bottom: 75%; } - .group:hover .md\:group-hover\:bg-blue-100 { - background-color: #dbeafe; + .md\:left-3\/4 { + left: 75%; } - .group:hover .md\:group-hover\:bg-blue-200 { - background-color: #bfdbfe; + .md\:top-full { + top: 100%; } - .group:hover .md\:group-hover\:bg-blue-300 { - background-color: #93c5fd; + .md\:right-full { + right: 100%; } - .group:hover .md\:group-hover\:bg-blue-400 { - background-color: #60a5fa; + .md\:bottom-full { + bottom: 100%; } - .group:hover .md\:group-hover\:bg-blue-500 { - background-color: #3b82f6; + .md\:left-full { + left: 100%; } - .group:hover .md\:group-hover\:bg-blue-600 { - background-color: #2563eb; + .md\:-top-1\/2 { + top: -50%; } - .group:hover .md\:group-hover\:bg-blue-700 { - background-color: #1d4ed8; + .md\:-right-1\/2 { + right: -50%; } - .group:hover .md\:group-hover\:bg-blue-800 { - background-color: #1e40af; + .md\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .md\:group-hover\:bg-blue-900 { - background-color: #1e3a8a; + .md\:-left-1\/2 { + left: -50%; } - .group:hover .md\:group-hover\:bg-indigo-50 { - background-color: #eef2ff; + .md\:-top-1\/3 { + top: -33.333333%; } - .group:hover .md\:group-hover\:bg-indigo-100 { - background-color: #e0e7ff; + .md\:-right-1\/3 { + right: -33.333333%; } - .group:hover .md\:group-hover\:bg-indigo-200 { - background-color: #c7d2fe; + .md\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .md\:group-hover\:bg-indigo-300 { - background-color: #a5b4fc; + .md\:-left-1\/3 { + left: -33.333333%; } - .group:hover .md\:group-hover\:bg-indigo-400 { - background-color: #818cf8; + .md\:-top-2\/3 { + top: -66.666667%; } - .group:hover .md\:group-hover\:bg-indigo-500 { - background-color: #6366f1; + .md\:-right-2\/3 { + right: -66.666667%; } - .group:hover .md\:group-hover\:bg-indigo-600 { - background-color: #4f46e5; + .md\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .md\:group-hover\:bg-indigo-700 { - background-color: #4338ca; + .md\:-left-2\/3 { + left: -66.666667%; } - .group:hover .md\:group-hover\:bg-indigo-800 { - background-color: #3730a3; + .md\:-top-1\/4 { + top: -25%; } - .group:hover .md\:group-hover\:bg-indigo-900 { - background-color: #312e81; + .md\:-right-1\/4 { + right: -25%; } - .group:hover .md\:group-hover\:bg-purple-50 { - background-color: #f5f3ff; + .md\:-bottom-1\/4 { + bottom: -25%; } - .group:hover .md\:group-hover\:bg-purple-100 { - background-color: #ede9fe; + .md\:-left-1\/4 { + left: -25%; } - .group:hover .md\:group-hover\:bg-purple-200 { - background-color: #ddd6fe; + .md\:-top-2\/4 { + top: -50%; } - .group:hover .md\:group-hover\:bg-purple-300 { - background-color: #c4b5fd; + .md\:-right-2\/4 { + right: -50%; } - .group:hover .md\:group-hover\:bg-purple-400 { - background-color: #a78bfa; + .md\:-bottom-2\/4 { + bottom: -50%; } - .group:hover .md\:group-hover\:bg-purple-500 { - background-color: #8b5cf6; + .md\:-left-2\/4 { + left: -50%; } - .group:hover .md\:group-hover\:bg-purple-600 { - background-color: #7c3aed; + .md\:-top-3\/4 { + top: -75%; } - .group:hover .md\:group-hover\:bg-purple-700 { - background-color: #6d28d9; + .md\:-right-3\/4 { + right: -75%; } - .group:hover .md\:group-hover\:bg-purple-800 { - background-color: #5b21b6; + .md\:-bottom-3\/4 { + bottom: -75%; } - .group:hover .md\:group-hover\:bg-purple-900 { - background-color: #4c1d95; + .md\:-left-3\/4 { + left: -75%; } - .group:hover .md\:group-hover\:bg-pink-50 { - background-color: #fdf2f8; + .md\:-top-full { + top: -100%; } - .group:hover .md\:group-hover\:bg-pink-100 { - background-color: #fce7f3; + .md\:-right-full { + right: -100%; } - .group:hover .md\:group-hover\:bg-pink-200 { - background-color: #fbcfe8; + .md\:-bottom-full { + bottom: -100%; } - .group:hover .md\:group-hover\:bg-pink-300 { - background-color: #f9a8d4; + .md\:-left-full { + left: -100%; } - .group:hover .md\:group-hover\:bg-pink-400 { - background-color: #f472b6; + .md\:isolate { + isolation: isolate; } - .group:hover .md\:group-hover\:bg-pink-500 { - background-color: #ec4899; + .md\:isolation-auto { + isolation: auto; } - .group:hover .md\:group-hover\:bg-pink-600 { - background-color: #db2777; + .md\:z-0 { + z-index: 0; } - .group:hover .md\:group-hover\:bg-pink-700 { - background-color: #be185d; + .md\:z-10 { + z-index: 10; } - .group:hover .md\:group-hover\:bg-pink-800 { - background-color: #9d174d; + .md\:z-20 { + z-index: 20; } - .group:hover .md\:group-hover\:bg-pink-900 { - background-color: #831843; + .md\:z-30 { + z-index: 30; } - .md\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .md\:z-40 { + z-index: 40; } - .md\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .md\:z-50 { + z-index: 50; } - .md\:focus-within\:bg-black:focus-within { - background-color: #000; + .md\:z-auto { + z-index: auto; } - .md\:focus-within\:bg-white:focus-within { - background-color: #fff; + .md\:focus-within\:z-0:focus-within { + z-index: 0; } - .md\:focus-within\:bg-gray-50:focus-within { - background-color: #f9fafb; + .md\:focus-within\:z-10:focus-within { + z-index: 10; } - .md\:focus-within\:bg-gray-100:focus-within { - background-color: #f3f4f6; + .md\:focus-within\:z-20:focus-within { + z-index: 20; } - .md\:focus-within\:bg-gray-200:focus-within { - background-color: #e5e7eb; + .md\:focus-within\:z-30:focus-within { + z-index: 30; } - .md\:focus-within\:bg-gray-300:focus-within { - background-color: #d1d5db; + .md\:focus-within\:z-40:focus-within { + z-index: 40; } - .md\:focus-within\:bg-gray-400:focus-within { - background-color: #9ca3af; + .md\:focus-within\:z-50:focus-within { + z-index: 50; } - .md\:focus-within\:bg-gray-500:focus-within { - background-color: #6b7280; + .md\:focus-within\:z-auto:focus-within { + z-index: auto; } - .md\:focus-within\:bg-gray-600:focus-within { - background-color: #4b5563; + .md\:focus\:z-0:focus { + z-index: 0; } - .md\:focus-within\:bg-gray-700:focus-within { - background-color: #374151; + .md\:focus\:z-10:focus { + z-index: 10; } - .md\:focus-within\:bg-gray-800:focus-within { - background-color: #1f2937; + .md\:focus\:z-20:focus { + z-index: 20; } - .md\:focus-within\:bg-gray-900:focus-within { - background-color: #111827; + .md\:focus\:z-30:focus { + z-index: 30; } - .md\:focus-within\:bg-red-50:focus-within { - background-color: #fef2f2; + .md\:focus\:z-40:focus { + z-index: 40; } - .md\:focus-within\:bg-red-100:focus-within { - background-color: #fee2e2; + .md\:focus\:z-50:focus { + z-index: 50; } - .md\:focus-within\:bg-red-200:focus-within { - background-color: #fecaca; + .md\:focus\:z-auto:focus { + z-index: auto; } - .md\:focus-within\:bg-red-300:focus-within { - background-color: #fca5a5; + .md\:order-1 { + order: 1; } - .md\:focus-within\:bg-red-400:focus-within { - background-color: #f87171; + .md\:order-2 { + order: 2; } - .md\:focus-within\:bg-red-500:focus-within { - background-color: #ef4444; + .md\:order-3 { + order: 3; } - .md\:focus-within\:bg-red-600:focus-within { - background-color: #dc2626; + .md\:order-4 { + order: 4; } - .md\:focus-within\:bg-red-700:focus-within { - background-color: #b91c1c; + .md\:order-5 { + order: 5; } - .md\:focus-within\:bg-red-800:focus-within { - background-color: #991b1b; + .md\:order-6 { + order: 6; } - .md\:focus-within\:bg-red-900:focus-within { - background-color: #7f1d1d; + .md\:order-7 { + order: 7; } - .md\:focus-within\:bg-yellow-50:focus-within { - background-color: #fffbeb; + .md\:order-8 { + order: 8; } - .md\:focus-within\:bg-yellow-100:focus-within { - background-color: #fef3c7; + .md\:order-9 { + order: 9; } - .md\:focus-within\:bg-yellow-200:focus-within { - background-color: #fde68a; + .md\:order-10 { + order: 10; } - .md\:focus-within\:bg-yellow-300:focus-within { - background-color: #fcd34d; + .md\:order-11 { + order: 11; } - .md\:focus-within\:bg-yellow-400:focus-within { - background-color: #fbbf24; + .md\:order-12 { + order: 12; } - .md\:focus-within\:bg-yellow-500:focus-within { - background-color: #f59e0b; + .md\:order-first { + order: -9999; } - .md\:focus-within\:bg-yellow-600:focus-within { - background-color: #d97706; + .md\:order-last { + order: 9999; } - .md\:focus-within\:bg-yellow-700:focus-within { - background-color: #b45309; + .md\:order-none { + order: 0; } - .md\:focus-within\:bg-yellow-800:focus-within { - background-color: #92400e; + .md\:col-auto { + grid-column: auto; } - .md\:focus-within\:bg-yellow-900:focus-within { - background-color: #78350f; + .md\:col-span-1 { + grid-column: span 1 / span 1; } - .md\:focus-within\:bg-green-50:focus-within { - background-color: #ecfdf5; + .md\:col-span-2 { + grid-column: span 2 / span 2; } - .md\:focus-within\:bg-green-100:focus-within { - background-color: #d1fae5; + .md\:col-span-3 { + grid-column: span 3 / span 3; } - .md\:focus-within\:bg-green-200:focus-within { - background-color: #a7f3d0; + .md\:col-span-4 { + grid-column: span 4 / span 4; } - .md\:focus-within\:bg-green-300:focus-within { - background-color: #6ee7b7; + .md\:col-span-5 { + grid-column: span 5 / span 5; } - .md\:focus-within\:bg-green-400:focus-within { - background-color: #34d399; + .md\:col-span-6 { + grid-column: span 6 / span 6; } - .md\:focus-within\:bg-green-500:focus-within { - background-color: #10b981; + .md\:col-span-7 { + grid-column: span 7 / span 7; } - .md\:focus-within\:bg-green-600:focus-within { - background-color: #059669; + .md\:col-span-8 { + grid-column: span 8 / span 8; } - .md\:focus-within\:bg-green-700:focus-within { - background-color: #047857; + .md\:col-span-9 { + grid-column: span 9 / span 9; } - .md\:focus-within\:bg-green-800:focus-within { - background-color: #065f46; + .md\:col-span-10 { + grid-column: span 10 / span 10; } - .md\:focus-within\:bg-green-900:focus-within { - background-color: #064e3b; + .md\:col-span-11 { + grid-column: span 11 / span 11; } - .md\:focus-within\:bg-blue-50:focus-within { - background-color: #eff6ff; + .md\:col-span-12 { + grid-column: span 12 / span 12; } - .md\:focus-within\:bg-blue-100:focus-within { - background-color: #dbeafe; + .md\:col-span-full { + grid-column: 1 / -1; } - .md\:focus-within\:bg-blue-200:focus-within { - background-color: #bfdbfe; + .md\:col-start-1 { + grid-column-start: 1; } - .md\:focus-within\:bg-blue-300:focus-within { - background-color: #93c5fd; + .md\:col-start-2 { + grid-column-start: 2; } - .md\:focus-within\:bg-blue-400:focus-within { - background-color: #60a5fa; + .md\:col-start-3 { + grid-column-start: 3; } - .md\:focus-within\:bg-blue-500:focus-within { - background-color: #3b82f6; + .md\:col-start-4 { + grid-column-start: 4; } - .md\:focus-within\:bg-blue-600:focus-within { - background-color: #2563eb; + .md\:col-start-5 { + grid-column-start: 5; } - .md\:focus-within\:bg-blue-700:focus-within { - background-color: #1d4ed8; + .md\:col-start-6 { + grid-column-start: 6; } - .md\:focus-within\:bg-blue-800:focus-within { - background-color: #1e40af; + .md\:col-start-7 { + grid-column-start: 7; } - .md\:focus-within\:bg-blue-900:focus-within { - background-color: #1e3a8a; + .md\:col-start-8 { + grid-column-start: 8; } - .md\:focus-within\:bg-indigo-50:focus-within { - background-color: #eef2ff; + .md\:col-start-9 { + grid-column-start: 9; } - .md\:focus-within\:bg-indigo-100:focus-within { - background-color: #e0e7ff; + .md\:col-start-10 { + grid-column-start: 10; } - .md\:focus-within\:bg-indigo-200:focus-within { - background-color: #c7d2fe; + .md\:col-start-11 { + grid-column-start: 11; } - .md\:focus-within\:bg-indigo-300:focus-within { - background-color: #a5b4fc; + .md\:col-start-12 { + grid-column-start: 12; } - .md\:focus-within\:bg-indigo-400:focus-within { - background-color: #818cf8; + .md\:col-start-13 { + grid-column-start: 13; } - .md\:focus-within\:bg-indigo-500:focus-within { - background-color: #6366f1; + .md\:col-start-auto { + grid-column-start: auto; } - .md\:focus-within\:bg-indigo-600:focus-within { - background-color: #4f46e5; + .md\:col-end-1 { + grid-column-end: 1; } - .md\:focus-within\:bg-indigo-700:focus-within { - background-color: #4338ca; + .md\:col-end-2 { + grid-column-end: 2; } - .md\:focus-within\:bg-indigo-800:focus-within { - background-color: #3730a3; + .md\:col-end-3 { + grid-column-end: 3; } - .md\:focus-within\:bg-indigo-900:focus-within { - background-color: #312e81; + .md\:col-end-4 { + grid-column-end: 4; } - .md\:focus-within\:bg-purple-50:focus-within { - background-color: #f5f3ff; + .md\:col-end-5 { + grid-column-end: 5; } - .md\:focus-within\:bg-purple-100:focus-within { - background-color: #ede9fe; + .md\:col-end-6 { + grid-column-end: 6; } - .md\:focus-within\:bg-purple-200:focus-within { - background-color: #ddd6fe; + .md\:col-end-7 { + grid-column-end: 7; } - .md\:focus-within\:bg-purple-300:focus-within { - background-color: #c4b5fd; + .md\:col-end-8 { + grid-column-end: 8; } - .md\:focus-within\:bg-purple-400:focus-within { - background-color: #a78bfa; + .md\:col-end-9 { + grid-column-end: 9; } - .md\:focus-within\:bg-purple-500:focus-within { - background-color: #8b5cf6; + .md\:col-end-10 { + grid-column-end: 10; } - .md\:focus-within\:bg-purple-600:focus-within { - background-color: #7c3aed; + .md\:col-end-11 { + grid-column-end: 11; } - .md\:focus-within\:bg-purple-700:focus-within { - background-color: #6d28d9; + .md\:col-end-12 { + grid-column-end: 12; } - .md\:focus-within\:bg-purple-800:focus-within { - background-color: #5b21b6; + .md\:col-end-13 { + grid-column-end: 13; } - .md\:focus-within\:bg-purple-900:focus-within { - background-color: #4c1d95; + .md\:col-end-auto { + grid-column-end: auto; } - .md\:focus-within\:bg-pink-50:focus-within { - background-color: #fdf2f8; + .md\:row-auto { + grid-row: auto; } - .md\:focus-within\:bg-pink-100:focus-within { - background-color: #fce7f3; + .md\:row-span-1 { + grid-row: span 1 / span 1; } - .md\:focus-within\:bg-pink-200:focus-within { - background-color: #fbcfe8; + .md\:row-span-2 { + grid-row: span 2 / span 2; } - .md\:focus-within\:bg-pink-300:focus-within { - background-color: #f9a8d4; + .md\:row-span-3 { + grid-row: span 3 / span 3; } - .md\:focus-within\:bg-pink-400:focus-within { - background-color: #f472b6; + .md\:row-span-4 { + grid-row: span 4 / span 4; } - .md\:focus-within\:bg-pink-500:focus-within { - background-color: #ec4899; + .md\:row-span-5 { + grid-row: span 5 / span 5; } - .md\:focus-within\:bg-pink-600:focus-within { - background-color: #db2777; + .md\:row-span-6 { + grid-row: span 6 / span 6; } - .md\:focus-within\:bg-pink-700:focus-within { - background-color: #be185d; + .md\:row-span-full { + grid-row: 1 / -1; } - .md\:focus-within\:bg-pink-800:focus-within { - background-color: #9d174d; + .md\:row-start-1 { + grid-row-start: 1; } - .md\:focus-within\:bg-pink-900:focus-within { - background-color: #831843; + .md\:row-start-2 { + grid-row-start: 2; } - .md\:hover\:bg-transparent:hover { - background-color: transparent; + .md\:row-start-3 { + grid-row-start: 3; } - .md\:hover\:bg-current:hover { - background-color: currentColor; + .md\:row-start-4 { + grid-row-start: 4; } - .md\:hover\:bg-black:hover { - background-color: #000; + .md\:row-start-5 { + grid-row-start: 5; } - .md\:hover\:bg-white:hover { - background-color: #fff; + .md\:row-start-6 { + grid-row-start: 6; } - .md\:hover\:bg-gray-50:hover { - background-color: #f9fafb; + .md\:row-start-7 { + grid-row-start: 7; } - .md\:hover\:bg-gray-100:hover { - background-color: #f3f4f6; + .md\:row-start-auto { + grid-row-start: auto; } - .md\:hover\:bg-gray-200:hover { - background-color: #e5e7eb; + .md\:row-end-1 { + grid-row-end: 1; } - .md\:hover\:bg-gray-300:hover { - background-color: #d1d5db; + .md\:row-end-2 { + grid-row-end: 2; } - .md\:hover\:bg-gray-400:hover { - background-color: #9ca3af; + .md\:row-end-3 { + grid-row-end: 3; } - .md\:hover\:bg-gray-500:hover { - background-color: #6b7280; + .md\:row-end-4 { + grid-row-end: 4; } - .md\:hover\:bg-gray-600:hover { - background-color: #4b5563; + .md\:row-end-5 { + grid-row-end: 5; } - .md\:hover\:bg-gray-700:hover { - background-color: #374151; + .md\:row-end-6 { + grid-row-end: 6; } - .md\:hover\:bg-gray-800:hover { - background-color: #1f2937; + .md\:row-end-7 { + grid-row-end: 7; } - .md\:hover\:bg-gray-900:hover { - background-color: #111827; + .md\:row-end-auto { + grid-row-end: auto; } - .md\:hover\:bg-red-50:hover { - background-color: #fef2f2; + .md\:float-right { + float: right; } - .md\:hover\:bg-red-100:hover { - background-color: #fee2e2; + .md\:float-left { + float: left; } - .md\:hover\:bg-red-200:hover { - background-color: #fecaca; + .md\:float-none { + float: none; } - .md\:hover\:bg-red-300:hover { - background-color: #fca5a5; + .md\:clear-left { + clear: left; } - .md\:hover\:bg-red-400:hover { - background-color: #f87171; + .md\:clear-right { + clear: right; } - .md\:hover\:bg-red-500:hover { - background-color: #ef4444; + .md\:clear-both { + clear: both; } - .md\:hover\:bg-red-600:hover { - background-color: #dc2626; + .md\:clear-none { + clear: none; } - .md\:hover\:bg-red-700:hover { - background-color: #b91c1c; + .md\:m-0 { + margin: 0px; } - .md\:hover\:bg-red-800:hover { - background-color: #991b1b; + .md\:m-1 { + margin: 0.25rem; } - .md\:hover\:bg-red-900:hover { - background-color: #7f1d1d; + .md\:m-2 { + margin: 0.5rem; } - .md\:hover\:bg-yellow-50:hover { - background-color: #fffbeb; + .md\:m-3 { + margin: 0.75rem; } - .md\:hover\:bg-yellow-100:hover { - background-color: #fef3c7; + .md\:m-4 { + margin: 1rem; } - .md\:hover\:bg-yellow-200:hover { - background-color: #fde68a; + .md\:m-5 { + margin: 1.25rem; } - .md\:hover\:bg-yellow-300:hover { - background-color: #fcd34d; + .md\:m-6 { + margin: 1.5rem; } - .md\:hover\:bg-yellow-400:hover { - background-color: #fbbf24; + .md\:m-7 { + margin: 1.75rem; } - .md\:hover\:bg-yellow-500:hover { - background-color: #f59e0b; + .md\:m-8 { + margin: 2rem; } - .md\:hover\:bg-yellow-600:hover { - background-color: #d97706; + .md\:m-9 { + margin: 2.25rem; } - .md\:hover\:bg-yellow-700:hover { - background-color: #b45309; + .md\:m-10 { + margin: 2.5rem; } - .md\:hover\:bg-yellow-800:hover { - background-color: #92400e; + .md\:m-11 { + margin: 2.75rem; } - .md\:hover\:bg-yellow-900:hover { - background-color: #78350f; + .md\:m-12 { + margin: 3rem; } - .md\:hover\:bg-green-50:hover { - background-color: #ecfdf5; + .md\:m-14 { + margin: 3.5rem; } - .md\:hover\:bg-green-100:hover { - background-color: #d1fae5; + .md\:m-16 { + margin: 4rem; } - .md\:hover\:bg-green-200:hover { - background-color: #a7f3d0; + .md\:m-20 { + margin: 5rem; } - .md\:hover\:bg-green-300:hover { - background-color: #6ee7b7; + .md\:m-24 { + margin: 6rem; } - .md\:hover\:bg-green-400:hover { - background-color: #34d399; + .md\:m-28 { + margin: 7rem; } - .md\:hover\:bg-green-500:hover { - background-color: #10b981; + .md\:m-32 { + margin: 8rem; } - .md\:hover\:bg-green-600:hover { - background-color: #059669; + .md\:m-36 { + margin: 9rem; } - .md\:hover\:bg-green-700:hover { - background-color: #047857; + .md\:m-40 { + margin: 10rem; } - .md\:hover\:bg-green-800:hover { - background-color: #065f46; + .md\:m-44 { + margin: 11rem; } - .md\:hover\:bg-green-900:hover { - background-color: #064e3b; + .md\:m-48 { + margin: 12rem; } - .md\:hover\:bg-blue-50:hover { - background-color: #eff6ff; + .md\:m-52 { + margin: 13rem; } - .md\:hover\:bg-blue-100:hover { - background-color: #dbeafe; + .md\:m-56 { + margin: 14rem; } - .md\:hover\:bg-blue-200:hover { - background-color: #bfdbfe; + .md\:m-60 { + margin: 15rem; } - .md\:hover\:bg-blue-300:hover { - background-color: #93c5fd; + .md\:m-64 { + margin: 16rem; } - .md\:hover\:bg-blue-400:hover { - background-color: #60a5fa; + .md\:m-72 { + margin: 18rem; } - .md\:hover\:bg-blue-500:hover { - background-color: #3b82f6; + .md\:m-80 { + margin: 20rem; } - .md\:hover\:bg-blue-600:hover { - background-color: #2563eb; + .md\:m-96 { + margin: 24rem; } - .md\:hover\:bg-blue-700:hover { - background-color: #1d4ed8; + .md\:m-auto { + margin: auto; } - .md\:hover\:bg-blue-800:hover { - background-color: #1e40af; + .md\:m-px { + margin: 1px; } - .md\:hover\:bg-blue-900:hover { - background-color: #1e3a8a; + .md\:m-0\.5 { + margin: 0.125rem; } - .md\:hover\:bg-indigo-50:hover { - background-color: #eef2ff; + .md\:m-1\.5 { + margin: 0.375rem; } - .md\:hover\:bg-indigo-100:hover { - background-color: #e0e7ff; + .md\:m-2\.5 { + margin: 0.625rem; } - .md\:hover\:bg-indigo-200:hover { - background-color: #c7d2fe; + .md\:m-3\.5 { + margin: 0.875rem; } - .md\:hover\:bg-indigo-300:hover { - background-color: #a5b4fc; + .md\:-m-0 { + margin: 0px; } - .md\:hover\:bg-indigo-400:hover { - background-color: #818cf8; + .md\:-m-1 { + margin: -0.25rem; } - .md\:hover\:bg-indigo-500:hover { - background-color: #6366f1; + .md\:-m-2 { + margin: -0.5rem; } - .md\:hover\:bg-indigo-600:hover { - background-color: #4f46e5; + .md\:-m-3 { + margin: -0.75rem; } - .md\:hover\:bg-indigo-700:hover { - background-color: #4338ca; + .md\:-m-4 { + margin: -1rem; } - .md\:hover\:bg-indigo-800:hover { - background-color: #3730a3; + .md\:-m-5 { + margin: -1.25rem; } - .md\:hover\:bg-indigo-900:hover { - background-color: #312e81; + .md\:-m-6 { + margin: -1.5rem; } - .md\:hover\:bg-purple-50:hover { - background-color: #f5f3ff; + .md\:-m-7 { + margin: -1.75rem; } - .md\:hover\:bg-purple-100:hover { - background-color: #ede9fe; + .md\:-m-8 { + margin: -2rem; } - .md\:hover\:bg-purple-200:hover { - background-color: #ddd6fe; + .md\:-m-9 { + margin: -2.25rem; } - .md\:hover\:bg-purple-300:hover { - background-color: #c4b5fd; + .md\:-m-10 { + margin: -2.5rem; } - .md\:hover\:bg-purple-400:hover { - background-color: #a78bfa; + .md\:-m-11 { + margin: -2.75rem; } - .md\:hover\:bg-purple-500:hover { - background-color: #8b5cf6; + .md\:-m-12 { + margin: -3rem; } - .md\:hover\:bg-purple-600:hover { - background-color: #7c3aed; + .md\:-m-14 { + margin: -3.5rem; } - .md\:hover\:bg-purple-700:hover { - background-color: #6d28d9; + .md\:-m-16 { + margin: -4rem; } - .md\:hover\:bg-purple-800:hover { - background-color: #5b21b6; + .md\:-m-20 { + margin: -5rem; } - .md\:hover\:bg-purple-900:hover { - background-color: #4c1d95; + .md\:-m-24 { + margin: -6rem; } - .md\:hover\:bg-pink-50:hover { - background-color: #fdf2f8; + .md\:-m-28 { + margin: -7rem; } - .md\:hover\:bg-pink-100:hover { - background-color: #fce7f3; + .md\:-m-32 { + margin: -8rem; } - .md\:hover\:bg-pink-200:hover { - background-color: #fbcfe8; + .md\:-m-36 { + margin: -9rem; } - .md\:hover\:bg-pink-300:hover { - background-color: #f9a8d4; + .md\:-m-40 { + margin: -10rem; } - .md\:hover\:bg-pink-400:hover { - background-color: #f472b6; + .md\:-m-44 { + margin: -11rem; } - .md\:hover\:bg-pink-500:hover { - background-color: #ec4899; + .md\:-m-48 { + margin: -12rem; } - .md\:hover\:bg-pink-600:hover { - background-color: #db2777; + .md\:-m-52 { + margin: -13rem; } - .md\:hover\:bg-pink-700:hover { - background-color: #be185d; + .md\:-m-56 { + margin: -14rem; } - .md\:hover\:bg-pink-800:hover { - background-color: #9d174d; + .md\:-m-60 { + margin: -15rem; } - .md\:hover\:bg-pink-900:hover { - background-color: #831843; + .md\:-m-64 { + margin: -16rem; } - .md\:focus\:bg-transparent:focus { - background-color: transparent; + .md\:-m-72 { + margin: -18rem; } - .md\:focus\:bg-current:focus { - background-color: currentColor; + .md\:-m-80 { + margin: -20rem; } - .md\:focus\:bg-black:focus { - background-color: #000; + .md\:-m-96 { + margin: -24rem; } - .md\:focus\:bg-white:focus { - background-color: #fff; + .md\:-m-px { + margin: -1px; } - .md\:focus\:bg-gray-50:focus { - background-color: #f9fafb; + .md\:-m-0\.5 { + margin: -0.125rem; } - .md\:focus\:bg-gray-100:focus { - background-color: #f3f4f6; + .md\:-m-1\.5 { + margin: -0.375rem; } - .md\:focus\:bg-gray-200:focus { - background-color: #e5e7eb; + .md\:-m-2\.5 { + margin: -0.625rem; } - .md\:focus\:bg-gray-300:focus { - background-color: #d1d5db; + .md\:-m-3\.5 { + margin: -0.875rem; } - .md\:focus\:bg-gray-400:focus { - background-color: #9ca3af; + .md\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .md\:focus\:bg-gray-500:focus { - background-color: #6b7280; + .md\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .md\:focus\:bg-gray-600:focus { - background-color: #4b5563; + .md\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .md\:focus\:bg-gray-700:focus { - background-color: #374151; + .md\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .md\:focus\:bg-gray-800:focus { - background-color: #1f2937; + .md\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .md\:focus\:bg-gray-900:focus { - background-color: #111827; + .md\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .md\:focus\:bg-red-50:focus { - background-color: #fef2f2; + .md\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .md\:focus\:bg-red-100:focus { - background-color: #fee2e2; + .md\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .md\:focus\:bg-red-200:focus { - background-color: #fecaca; + .md\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .md\:focus\:bg-red-300:focus { - background-color: #fca5a5; + .md\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .md\:focus\:bg-red-400:focus { - background-color: #f87171; + .md\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .md\:focus\:bg-red-500:focus { - background-color: #ef4444; + .md\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .md\:focus\:bg-red-600:focus { - background-color: #dc2626; + .md\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .md\:focus\:bg-red-700:focus { - background-color: #b91c1c; + .md\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .md\:focus\:bg-red-800:focus { - background-color: #991b1b; + .md\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .md\:focus\:bg-red-900:focus { - background-color: #7f1d1d; + .md\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .md\:focus\:bg-yellow-50:focus { - background-color: #fffbeb; + .md\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .md\:focus\:bg-yellow-100:focus { - background-color: #fef3c7; + .md\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .md\:focus\:bg-yellow-200:focus { - background-color: #fde68a; + .md\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .md\:focus\:bg-yellow-300:focus { - background-color: #fcd34d; + .md\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .md\:focus\:bg-yellow-400:focus { - background-color: #fbbf24; + .md\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .md\:focus\:bg-yellow-500:focus { - background-color: #f59e0b; + .md\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .md\:focus\:bg-yellow-600:focus { - background-color: #d97706; + .md\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .md\:focus\:bg-yellow-700:focus { - background-color: #b45309; + .md\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .md\:focus\:bg-yellow-800:focus { - background-color: #92400e; + .md\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .md\:focus\:bg-yellow-900:focus { - background-color: #78350f; + .md\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .md\:focus\:bg-green-50:focus { - background-color: #ecfdf5; + .md\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .md\:focus\:bg-green-100:focus { - background-color: #d1fae5; + .md\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .md\:focus\:bg-green-200:focus { - background-color: #a7f3d0; + .md\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .md\:focus\:bg-green-300:focus { - background-color: #6ee7b7; + .md\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .md\:focus\:bg-green-400:focus { - background-color: #34d399; + .md\:mx-auto { + margin-left: auto; + margin-right: auto; } - .md\:focus\:bg-green-500:focus { - background-color: #10b981; + .md\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .md\:focus\:bg-green-600:focus { - background-color: #059669; + .md\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .md\:focus\:bg-green-700:focus { - background-color: #047857; + .md\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .md\:focus\:bg-green-800:focus { - background-color: #065f46; + .md\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .md\:focus\:bg-green-900:focus { - background-color: #064e3b; + .md\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .md\:focus\:bg-blue-50:focus { - background-color: #eff6ff; + .md\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .md\:focus\:bg-blue-100:focus { - background-color: #dbeafe; + .md\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .md\:focus\:bg-blue-200:focus { - background-color: #bfdbfe; + .md\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .md\:focus\:bg-blue-300:focus { - background-color: #93c5fd; + .md\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .md\:focus\:bg-blue-400:focus { - background-color: #60a5fa; + .md\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .md\:focus\:bg-blue-500:focus { - background-color: #3b82f6; + .md\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .md\:focus\:bg-blue-600:focus { - background-color: #2563eb; + .md\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .md\:focus\:bg-blue-700:focus { - background-color: #1d4ed8; + .md\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .md\:focus\:bg-blue-800:focus { - background-color: #1e40af; + .md\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .md\:focus\:bg-blue-900:focus { - background-color: #1e3a8a; + .md\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .md\:focus\:bg-indigo-50:focus { - background-color: #eef2ff; + .md\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .md\:focus\:bg-indigo-100:focus { - background-color: #e0e7ff; + .md\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .md\:focus\:bg-indigo-200:focus { - background-color: #c7d2fe; + .md\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .md\:focus\:bg-indigo-300:focus { - background-color: #a5b4fc; + .md\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .md\:focus\:bg-indigo-400:focus { - background-color: #818cf8; + .md\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .md\:focus\:bg-indigo-500:focus { - background-color: #6366f1; + .md\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .md\:focus\:bg-indigo-600:focus { - background-color: #4f46e5; + .md\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .md\:focus\:bg-indigo-700:focus { - background-color: #4338ca; + .md\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .md\:focus\:bg-indigo-800:focus { - background-color: #3730a3; + .md\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .md\:focus\:bg-indigo-900:focus { - background-color: #312e81; + .md\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .md\:focus\:bg-purple-50:focus { - background-color: #f5f3ff; + .md\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .md\:focus\:bg-purple-100:focus { - background-color: #ede9fe; + .md\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .md\:focus\:bg-purple-200:focus { - background-color: #ddd6fe; + .md\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .md\:focus\:bg-purple-300:focus { - background-color: #c4b5fd; + .md\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .md\:focus\:bg-purple-400:focus { - background-color: #a78bfa; + .md\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .md\:focus\:bg-purple-500:focus { - background-color: #8b5cf6; + .md\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .md\:focus\:bg-purple-600:focus { - background-color: #7c3aed; + .md\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .md\:focus\:bg-purple-700:focus { - background-color: #6d28d9; + .md\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .md\:focus\:bg-purple-800:focus { - background-color: #5b21b6; + .md\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .md\:focus\:bg-purple-900:focus { - background-color: #4c1d95; + .md\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .md\:focus\:bg-pink-50:focus { - background-color: #fdf2f8; + .md\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .md\:focus\:bg-pink-100:focus { - background-color: #fce7f3; + .md\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .md\:focus\:bg-pink-200:focus { - background-color: #fbcfe8; + .md\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .md\:focus\:bg-pink-300:focus { - background-color: #f9a8d4; + .md\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .md\:focus\:bg-pink-400:focus { - background-color: #f472b6; + .md\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .md\:focus\:bg-pink-500:focus { - background-color: #ec4899; + .md\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .md\:focus\:bg-pink-600:focus { - background-color: #db2777; + .md\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .md\:focus\:bg-pink-700:focus { - background-color: #be185d; + .md\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .md\:focus\:bg-pink-800:focus { - background-color: #9d174d; + .md\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .md\:focus\:bg-pink-900:focus { - background-color: #831843; + .md\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .md\:bg-none { - background-image: none; + .md\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .md\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .md\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .md\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .md\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .md\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .md\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .md\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .md\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .md\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .md\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .md\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .md\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .md\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .md\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .md\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .md\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .md\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .md\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .md\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .md\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .md\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .md\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .md\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .md\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .md\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .md\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .md\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .md\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .md\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .md\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .md\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .md\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .md\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .md\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .md\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .md\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .md\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .md\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .md\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .md\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .md\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .md\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .md\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .md\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .md\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .md\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .md\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .md\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .md\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .md\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .md\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .md\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .md\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .md\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .md\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .md\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .md\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .md\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .md\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .md\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .md\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .md\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .md\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .md\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .md\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .md\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .md\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .md\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .md\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .md\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .md\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .md\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .md\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .md\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:mt-0 { + margin-top: 0px; } - .md\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:mt-1 { + margin-top: 0.25rem; } - .md\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:mt-2 { + margin-top: 0.5rem; } - .md\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:mt-3 { + margin-top: 0.75rem; } - .md\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:mt-4 { + margin-top: 1rem; } - .md\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:mt-5 { + margin-top: 1.25rem; } - .md\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:mt-6 { + margin-top: 1.5rem; } - .md\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:mt-7 { + margin-top: 1.75rem; } - .md\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:mt-8 { + margin-top: 2rem; } - .md\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:mt-9 { + margin-top: 2.25rem; } - .md\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:mt-10 { + margin-top: 2.5rem; } - .md\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:mt-11 { + margin-top: 2.75rem; } - .md\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:mt-12 { + margin-top: 3rem; } - .md\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:mt-14 { + margin-top: 3.5rem; } - .md\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:mt-16 { + margin-top: 4rem; } - .md\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:mt-20 { + margin-top: 5rem; } - .md\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:mt-24 { + margin-top: 6rem; } - .md\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:mt-28 { + margin-top: 7rem; } - .md\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:mt-32 { + margin-top: 8rem; } - .md\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:mt-36 { + margin-top: 9rem; } - .md\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:mt-40 { + margin-top: 10rem; } - .md\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:mt-44 { + margin-top: 11rem; } - .md\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:mt-48 { + margin-top: 12rem; } - .md\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:mt-52 { + margin-top: 13rem; } - .md\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:mt-56 { + margin-top: 14rem; } - .md\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:mt-60 { + margin-top: 15rem; } - .md\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:mt-64 { + margin-top: 16rem; } - .md\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:mt-72 { + margin-top: 18rem; } - .md\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:mt-80 { + margin-top: 20rem; } - .md\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:mt-96 { + margin-top: 24rem; } - .md\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:mt-auto { + margin-top: auto; } - .md\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:mt-px { + margin-top: 1px; } - .md\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:mt-0\.5 { + margin-top: 0.125rem; } - .md\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:mt-1\.5 { + margin-top: 0.375rem; } - .md\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:mt-2\.5 { + margin-top: 0.625rem; } - .md\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:mt-3\.5 { + margin-top: 0.875rem; } - .md\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:-mt-0 { + margin-top: 0px; } - .md\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:-mt-1 { + margin-top: -0.25rem; } - .md\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:-mt-2 { + margin-top: -0.5rem; } - .md\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:-mt-3 { + margin-top: -0.75rem; } - .md\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:-mt-4 { + margin-top: -1rem; } - .md\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:-mt-5 { + margin-top: -1.25rem; } - .md\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:-mt-6 { + margin-top: -1.5rem; } - .md\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:-mt-7 { + margin-top: -1.75rem; } - .md\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:-mt-8 { + margin-top: -2rem; } - .md\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:-mt-9 { + margin-top: -2.25rem; } - .md\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:-mt-10 { + margin-top: -2.5rem; } - .md\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:-mt-11 { + margin-top: -2.75rem; } - .md\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:-mt-12 { + margin-top: -3rem; } - .md\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:-mt-14 { + margin-top: -3.5rem; } - .md\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:-mt-16 { + margin-top: -4rem; } - .md\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:-mt-20 { + margin-top: -5rem; } - .md\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:-mt-24 { + margin-top: -6rem; } - .md\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:-mt-28 { + margin-top: -7rem; } - .md\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:-mt-32 { + margin-top: -8rem; } - .md\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:-mt-36 { + margin-top: -9rem; } - .md\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:-mt-40 { + margin-top: -10rem; } - .md\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:-mt-44 { + margin-top: -11rem; } - .md\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:-mt-48 { + margin-top: -12rem; } - .md\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:-mt-52 { + margin-top: -13rem; } - .md\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:-mt-56 { + margin-top: -14rem; } - .md\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:-mt-60 { + margin-top: -15rem; } - .md\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:-mt-64 { + margin-top: -16rem; } - .md\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:-mt-72 { + margin-top: -18rem; } - .md\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:-mt-80 { + margin-top: -20rem; } - .md\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:-mt-96 { + margin-top: -24rem; } - .md\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:-mt-px { + margin-top: -1px; } - .md\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:-mt-0\.5 { + margin-top: -0.125rem; } - .md\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:-mt-1\.5 { + margin-top: -0.375rem; } - .md\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:-mt-2\.5 { + margin-top: -0.625rem; } - .md\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:-mt-3\.5 { + margin-top: -0.875rem; } - .md\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:mr-0 { + margin-right: 0px; } - .md\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:mr-1 { + margin-right: 0.25rem; } - .md\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:mr-2 { + margin-right: 0.5rem; } - .md\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:mr-3 { + margin-right: 0.75rem; } - .md\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:mr-4 { + margin-right: 1rem; } - .md\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:mr-5 { + margin-right: 1.25rem; } - .md\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:mr-6 { + margin-right: 1.5rem; } - .md\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:mr-7 { + margin-right: 1.75rem; } - .md\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:mr-8 { + margin-right: 2rem; } - .md\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:mr-9 { + margin-right: 2.25rem; } - .md\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:mr-10 { + margin-right: 2.5rem; } - .md\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:mr-11 { + margin-right: 2.75rem; } - .md\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:mr-12 { + margin-right: 3rem; } - .md\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:mr-14 { + margin-right: 3.5rem; } - .md\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:mr-16 { + margin-right: 4rem; } - .md\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:mr-20 { + margin-right: 5rem; } - .md\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:mr-24 { + margin-right: 6rem; } - .md\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:mr-28 { + margin-right: 7rem; } - .md\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:mr-32 { + margin-right: 8rem; } - .md\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:mr-36 { + margin-right: 9rem; } - .md\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:mr-40 { + margin-right: 10rem; } - .md\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:mr-44 { + margin-right: 11rem; } - .md\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:mr-48 { + margin-right: 12rem; } - .md\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:mr-52 { + margin-right: 13rem; } - .md\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:mr-56 { + margin-right: 14rem; } - .md\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:mr-60 { + margin-right: 15rem; } - .md\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:mr-64 { + margin-right: 16rem; } - .md\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:mr-72 { + margin-right: 18rem; } - .md\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:mr-80 { + margin-right: 20rem; } - .md\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:mr-96 { + margin-right: 24rem; } - .md\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:mr-auto { + margin-right: auto; } - .md\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:mr-px { + margin-right: 1px; } - .md\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:mr-0\.5 { + margin-right: 0.125rem; } - .md\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:mr-1\.5 { + margin-right: 0.375rem; } - .md\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:mr-2\.5 { + margin-right: 0.625rem; } - .md\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:mr-3\.5 { + margin-right: 0.875rem; } - .md\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:-mr-0 { + margin-right: 0px; } - .md\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:-mr-1 { + margin-right: -0.25rem; } - .md\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:-mr-2 { + margin-right: -0.5rem; } - .md\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:-mr-3 { + margin-right: -0.75rem; } - .md\:to-transparent { - --tw-gradient-to: transparent; + .md\:-mr-4 { + margin-right: -1rem; } - .md\:to-current { - --tw-gradient-to: currentColor; + .md\:-mr-5 { + margin-right: -1.25rem; } - .md\:to-black { - --tw-gradient-to: #000; + .md\:-mr-6 { + margin-right: -1.5rem; } - .md\:to-white { - --tw-gradient-to: #fff; + .md\:-mr-7 { + margin-right: -1.75rem; } - .md\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .md\:-mr-8 { + margin-right: -2rem; } - .md\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .md\:-mr-9 { + margin-right: -2.25rem; } - .md\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .md\:-mr-10 { + margin-right: -2.5rem; } - .md\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .md\:-mr-11 { + margin-right: -2.75rem; } - .md\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .md\:-mr-12 { + margin-right: -3rem; } - .md\:to-gray-500 { - --tw-gradient-to: #6b7280; + .md\:-mr-14 { + margin-right: -3.5rem; } - .md\:to-gray-600 { - --tw-gradient-to: #4b5563; + .md\:-mr-16 { + margin-right: -4rem; } - .md\:to-gray-700 { - --tw-gradient-to: #374151; + .md\:-mr-20 { + margin-right: -5rem; } - .md\:to-gray-800 { - --tw-gradient-to: #1f2937; + .md\:-mr-24 { + margin-right: -6rem; } - .md\:to-gray-900 { - --tw-gradient-to: #111827; + .md\:-mr-28 { + margin-right: -7rem; } - .md\:to-red-50 { - --tw-gradient-to: #fef2f2; + .md\:-mr-32 { + margin-right: -8rem; } - .md\:to-red-100 { - --tw-gradient-to: #fee2e2; + .md\:-mr-36 { + margin-right: -9rem; } - .md\:to-red-200 { - --tw-gradient-to: #fecaca; + .md\:-mr-40 { + margin-right: -10rem; } - .md\:to-red-300 { - --tw-gradient-to: #fca5a5; + .md\:-mr-44 { + margin-right: -11rem; } - .md\:to-red-400 { - --tw-gradient-to: #f87171; + .md\:-mr-48 { + margin-right: -12rem; } - .md\:to-red-500 { - --tw-gradient-to: #ef4444; + .md\:-mr-52 { + margin-right: -13rem; } - .md\:to-red-600 { - --tw-gradient-to: #dc2626; + .md\:-mr-56 { + margin-right: -14rem; } - .md\:to-red-700 { - --tw-gradient-to: #b91c1c; + .md\:-mr-60 { + margin-right: -15rem; } - .md\:to-red-800 { - --tw-gradient-to: #991b1b; + .md\:-mr-64 { + margin-right: -16rem; } - .md\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .md\:-mr-72 { + margin-right: -18rem; } - .md\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .md\:-mr-80 { + margin-right: -20rem; } - .md\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .md\:-mr-96 { + margin-right: -24rem; } - .md\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .md\:-mr-px { + margin-right: -1px; } - .md\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .md\:-mr-0\.5 { + margin-right: -0.125rem; } - .md\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .md\:-mr-1\.5 { + margin-right: -0.375rem; } - .md\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .md\:-mr-2\.5 { + margin-right: -0.625rem; } - .md\:to-yellow-600 { - --tw-gradient-to: #d97706; + .md\:-mr-3\.5 { + margin-right: -0.875rem; } - .md\:to-yellow-700 { - --tw-gradient-to: #b45309; + .md\:mb-0 { + margin-bottom: 0px; } - .md\:to-yellow-800 { - --tw-gradient-to: #92400e; + .md\:mb-1 { + margin-bottom: 0.25rem; } - .md\:to-yellow-900 { - --tw-gradient-to: #78350f; + .md\:mb-2 { + margin-bottom: 0.5rem; } - .md\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .md\:mb-3 { + margin-bottom: 0.75rem; } - .md\:to-green-100 { - --tw-gradient-to: #d1fae5; + .md\:mb-4 { + margin-bottom: 1rem; } - .md\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .md\:mb-5 { + margin-bottom: 1.25rem; } - .md\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .md\:mb-6 { + margin-bottom: 1.5rem; } - .md\:to-green-400 { - --tw-gradient-to: #34d399; + .md\:mb-7 { + margin-bottom: 1.75rem; } - .md\:to-green-500 { - --tw-gradient-to: #10b981; + .md\:mb-8 { + margin-bottom: 2rem; } - .md\:to-green-600 { - --tw-gradient-to: #059669; + .md\:mb-9 { + margin-bottom: 2.25rem; } - .md\:to-green-700 { - --tw-gradient-to: #047857; + .md\:mb-10 { + margin-bottom: 2.5rem; } - .md\:to-green-800 { - --tw-gradient-to: #065f46; + .md\:mb-11 { + margin-bottom: 2.75rem; } - .md\:to-green-900 { - --tw-gradient-to: #064e3b; + .md\:mb-12 { + margin-bottom: 3rem; } - .md\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .md\:mb-14 { + margin-bottom: 3.5rem; } - .md\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .md\:mb-16 { + margin-bottom: 4rem; } - .md\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .md\:mb-20 { + margin-bottom: 5rem; } - .md\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .md\:mb-24 { + margin-bottom: 6rem; } - .md\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .md\:mb-28 { + margin-bottom: 7rem; } - .md\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .md\:mb-32 { + margin-bottom: 8rem; } - .md\:to-blue-600 { - --tw-gradient-to: #2563eb; + .md\:mb-36 { + margin-bottom: 9rem; } - .md\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .md\:mb-40 { + margin-bottom: 10rem; } - .md\:to-blue-800 { - --tw-gradient-to: #1e40af; + .md\:mb-44 { + margin-bottom: 11rem; } - .md\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .md\:mb-48 { + margin-bottom: 12rem; } - .md\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .md\:mb-52 { + margin-bottom: 13rem; } - .md\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .md\:mb-56 { + margin-bottom: 14rem; } - .md\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .md\:mb-60 { + margin-bottom: 15rem; } - .md\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .md\:mb-64 { + margin-bottom: 16rem; } - .md\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .md\:mb-72 { + margin-bottom: 18rem; } - .md\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .md\:mb-80 { + margin-bottom: 20rem; } - .md\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .md\:mb-96 { + margin-bottom: 24rem; } - .md\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .md\:mb-auto { + margin-bottom: auto; } - .md\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .md\:mb-px { + margin-bottom: 1px; } - .md\:to-indigo-900 { - --tw-gradient-to: #312e81; + .md\:mb-0\.5 { + margin-bottom: 0.125rem; } - .md\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .md\:mb-1\.5 { + margin-bottom: 0.375rem; } - .md\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .md\:mb-2\.5 { + margin-bottom: 0.625rem; } - .md\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .md\:mb-3\.5 { + margin-bottom: 0.875rem; } - .md\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .md\:-mb-0 { + margin-bottom: 0px; } - .md\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .md\:-mb-1 { + margin-bottom: -0.25rem; } - .md\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .md\:-mb-2 { + margin-bottom: -0.5rem; } - .md\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .md\:-mb-3 { + margin-bottom: -0.75rem; } - .md\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .md\:-mb-4 { + margin-bottom: -1rem; } - .md\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .md\:-mb-5 { + margin-bottom: -1.25rem; } - .md\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .md\:-mb-6 { + margin-bottom: -1.5rem; } - .md\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .md\:-mb-7 { + margin-bottom: -1.75rem; } - .md\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .md\:-mb-8 { + margin-bottom: -2rem; } - .md\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .md\:-mb-9 { + margin-bottom: -2.25rem; } - .md\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .md\:-mb-10 { + margin-bottom: -2.5rem; } - .md\:to-pink-400 { - --tw-gradient-to: #f472b6; + .md\:-mb-11 { + margin-bottom: -2.75rem; } - .md\:to-pink-500 { - --tw-gradient-to: #ec4899; + .md\:-mb-12 { + margin-bottom: -3rem; } - .md\:to-pink-600 { - --tw-gradient-to: #db2777; + .md\:-mb-14 { + margin-bottom: -3.5rem; } - .md\:to-pink-700 { - --tw-gradient-to: #be185d; + .md\:-mb-16 { + margin-bottom: -4rem; } - .md\:to-pink-800 { - --tw-gradient-to: #9d174d; + .md\:-mb-20 { + margin-bottom: -5rem; } - .md\:to-pink-900 { - --tw-gradient-to: #831843; + .md\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .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\:-ml-10 { + margin-left: -2.5rem; } - .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\:-ml-11 { + margin-left: -2.75rem; } - .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\:-ml-12 { + margin-left: -3rem; } - .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\:-ml-14 { + margin-left: -3.5rem; } - .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\:-ml-16 { + margin-left: -4rem; } - .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\:-ml-20 { + margin-left: -5rem; } - .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\:-ml-24 { + margin-left: -6rem; } - .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\:-ml-28 { + margin-left: -7rem; } - .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\:-ml-32 { + margin-left: -8rem; } - .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\:-ml-36 { + margin-left: -9rem; } - .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\:-ml-40 { + margin-left: -10rem; } - .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\:-ml-44 { + margin-left: -11rem; } - .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\:-ml-48 { + margin-left: -12rem; } - .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\:-ml-52 { + margin-left: -13rem; } - .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\:-ml-56 { + margin-left: -14rem; } - .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\:-ml-60 { + margin-left: -15rem; } - .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\:-ml-64 { + margin-left: -16rem; } - .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\:-ml-72 { + margin-left: -18rem; } - .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\:-ml-80 { + margin-left: -20rem; } - .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\:-ml-96 { + margin-left: -24rem; } - .md\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:-ml-px { + margin-left: -1px; } - .md\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:-ml-0\.5 { + margin-left: -0.125rem; } - .md\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:-ml-1\.5 { + margin-left: -0.375rem; } - .md\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:-ml-2\.5 { + margin-left: -0.625rem; } - .md\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:-ml-3\.5 { + margin-left: -0.875rem; } - .md\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:box-border { + box-sizing: border-box; } - .md\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:box-content { + box-sizing: content-box; } - .md\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:block { + display: block; } - .md\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:inline-block { + display: inline-block; } - .md\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:inline { + display: inline; } - .md\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:flex { + display: flex; } - .md\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:inline-flex { + display: inline-flex; } - .md\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:table { + display: table; } - .md\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:inline-table { + display: inline-table; } - .md\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:table-caption { + display: table-caption; } - .md\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:table-cell { + display: table-cell; } - .md\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:table-column { + display: table-column; } - .md\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:table-column-group { + display: table-column-group; } - .md\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:table-footer-group { + display: table-footer-group; } - .md\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:table-header-group { + display: table-header-group; } - .md\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:table-row-group { + display: table-row-group; } - .md\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:table-row { + display: table-row; } - .md\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:flow-root { + display: flow-root; } - .md\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:grid { + display: grid; } - .md\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:inline-grid { + display: inline-grid; } - .md\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:contents { + display: contents; } - .md\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:list-item { + display: list-item; } - .md\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:hidden { + display: none; } - .md\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:h-0 { + height: 0px; } - .md\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:h-1 { + height: 0.25rem; } - .md\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:h-2 { + height: 0.5rem; } - .md\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:h-3 { + height: 0.75rem; } - .md\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:h-4 { + height: 1rem; } - .md\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:h-5 { + height: 1.25rem; } - .md\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:h-6 { + height: 1.5rem; } - .md\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:h-7 { + height: 1.75rem; } - .md\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:h-8 { + height: 2rem; } - .md\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:h-9 { + height: 2.25rem; } - .md\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:h-10 { + height: 2.5rem; } - .md\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:h-11 { + height: 2.75rem; } - .md\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:h-12 { + height: 3rem; } - .md\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:h-14 { + height: 3.5rem; } - .md\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:h-16 { + height: 4rem; } - .md\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:h-20 { + height: 5rem; } - .md\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:h-24 { + height: 6rem; } - .md\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:h-28 { + height: 7rem; } - .md\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:h-32 { + height: 8rem; } - .md\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:h-36 { + height: 9rem; } - .md\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:h-40 { + height: 10rem; } - .md\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:h-44 { + height: 11rem; } - .md\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:h-48 { + height: 12rem; } - .md\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:h-52 { + height: 13rem; } - .md\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:h-56 { + height: 14rem; } - .md\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:h-60 { + height: 15rem; } - .md\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:h-64 { + height: 16rem; } - .md\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:h-72 { + height: 18rem; } - .md\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:h-80 { + height: 20rem; } - .md\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:h-96 { + height: 24rem; } - .md\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:h-auto { + height: auto; } - .md\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:h-px { + height: 1px; } - .md\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:h-0\.5 { + height: 0.125rem; } - .md\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:h-1\.5 { + height: 0.375rem; } - .md\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:h-2\.5 { + height: 0.625rem; } - .md\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:h-3\.5 { + height: 0.875rem; } - .md\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:h-1\/2 { + height: 50%; } - .md\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:h-1\/3 { + height: 33.333333%; } - .md\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:h-2\/3 { + height: 66.666667%; } - .md\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:h-1\/4 { + height: 25%; } - .md\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:h-2\/4 { + height: 50%; } - .md\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:h-3\/4 { + height: 75%; } - .md\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:h-1\/5 { + height: 20%; } - .md\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:h-2\/5 { + height: 40%; } - .md\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:h-3\/5 { + height: 60%; } - .md\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:h-4\/5 { + height: 80%; } - .md\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:h-1\/6 { + height: 16.666667%; } - .md\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:h-2\/6 { + height: 33.333333%; } - .md\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:h-3\/6 { + height: 50%; } - .md\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:h-4\/6 { + height: 66.666667%; } - .md\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:h-5\/6 { + height: 83.333333%; } - .md\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:h-full { + height: 100%; } - .md\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:h-screen { + height: 100vh; } - .md\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:max-h-0 { + max-height: 0px; } - .md\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:max-h-1 { + max-height: 0.25rem; } - .md\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:max-h-2 { + max-height: 0.5rem; } - .md\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .md\:max-h-3 { + max-height: 0.75rem; } - .md\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .md\:max-h-4 { + max-height: 1rem; } - .md\:hover\:to-black:hover { - --tw-gradient-to: #000; + .md\:max-h-5 { + max-height: 1.25rem; } - .md\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .md\:max-h-6 { + max-height: 1.5rem; } - .md\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .md\:max-h-7 { + max-height: 1.75rem; } - .md\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .md\:max-h-8 { + max-height: 2rem; } - .md\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .md\:max-h-9 { + max-height: 2.25rem; } - .md\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .md\:max-h-10 { + max-height: 2.5rem; } - .md\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .md\:max-h-11 { + max-height: 2.75rem; } - .md\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .md\:max-h-12 { + max-height: 3rem; } - .md\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .md\:max-h-14 { + max-height: 3.5rem; } - .md\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .md\:max-h-16 { + max-height: 4rem; } - .md\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .md\:max-h-20 { + max-height: 5rem; } - .md\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .md\:max-h-24 { + max-height: 6rem; } - .md\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .md\:max-h-28 { + max-height: 7rem; } - .md\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .md\:max-h-32 { + max-height: 8rem; } - .md\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .md\:max-h-36 { + max-height: 9rem; } - .md\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .md\:max-h-40 { + max-height: 10rem; } - .md\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .md\:max-h-44 { + max-height: 11rem; } - .md\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .md\:max-h-48 { + max-height: 12rem; } - .md\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .md\:max-h-52 { + max-height: 13rem; } - .md\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .md\:max-h-56 { + max-height: 14rem; } - .md\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .md\:max-h-60 { + max-height: 15rem; } - .md\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .md\:max-h-64 { + max-height: 16rem; } - .md\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .md\:max-h-72 { + max-height: 18rem; } - .md\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .md\:max-h-80 { + max-height: 20rem; } - .md\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .md\:max-h-96 { + max-height: 24rem; } - .md\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .md\:max-h-px { + max-height: 1px; } - .md\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .md\:max-h-0\.5 { + max-height: 0.125rem; } - .md\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .md\:max-h-1\.5 { + max-height: 0.375rem; } - .md\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .md\:max-h-2\.5 { + max-height: 0.625rem; } - .md\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .md\:max-h-3\.5 { + max-height: 0.875rem; } - .md\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .md\:max-h-full { + max-height: 100%; } - .md\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .md\:max-h-screen { + max-height: 100vh; } - .md\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .md\:min-h-0 { + min-height: 0px; } - .md\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .md\:min-h-full { + min-height: 100%; } - .md\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .md\:min-h-screen { + min-height: 100vh; } - .md\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .md\:w-0 { + width: 0px; } - .md\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .md\:w-1 { + width: 0.25rem; } - .md\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .md\:w-2 { + width: 0.5rem; } - .md\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .md\:w-3 { + width: 0.75rem; } - .md\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .md\:w-4 { + width: 1rem; } - .md\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .md\:w-5 { + width: 1.25rem; } - .md\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .md\:w-6 { + width: 1.5rem; } - .md\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .md\:w-7 { + width: 1.75rem; } - .md\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .md\:w-8 { + width: 2rem; } - .md\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .md\:w-9 { + width: 2.25rem; } - .md\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .md\:w-10 { + width: 2.5rem; } - .md\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .md\:w-11 { + width: 2.75rem; } - .md\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .md\:w-12 { + width: 3rem; } - .md\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .md\:w-14 { + width: 3.5rem; } - .md\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .md\:w-16 { + width: 4rem; } - .md\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .md\:w-20 { + width: 5rem; } - .md\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .md\:w-24 { + width: 6rem; } - .md\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .md\:w-28 { + width: 7rem; } - .md\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .md\:w-32 { + width: 8rem; } - .md\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .md\:w-36 { + width: 9rem; } - .md\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .md\:w-40 { + width: 10rem; } - .md\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .md\:w-44 { + width: 11rem; } - .md\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .md\:w-48 { + width: 12rem; } - .md\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .md\:w-52 { + width: 13rem; } - .md\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .md\:w-56 { + width: 14rem; } - .md\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .md\:w-60 { + width: 15rem; } - .md\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .md\:w-64 { + width: 16rem; } - .md\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .md\:w-72 { + width: 18rem; } - .md\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .md\:w-80 { + width: 20rem; } - .md\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .md\:w-96 { + width: 24rem; } - .md\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .md\:w-auto { + width: auto; } - .md\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .md\:w-px { + width: 1px; } - .md\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .md\:w-0\.5 { + width: 0.125rem; } - .md\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .md\:w-1\.5 { + width: 0.375rem; } - .md\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .md\:w-2\.5 { + width: 0.625rem; } - .md\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .md\:w-3\.5 { + width: 0.875rem; } - .md\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .md\:w-1\/2 { + width: 50%; } - .md\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .md\:w-1\/3 { + width: 33.333333%; } - .md\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .md\:w-2\/3 { + width: 66.666667%; } - .md\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .md\:w-1\/4 { + width: 25%; } - .md\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .md\:w-2\/4 { + width: 50%; } - .md\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .md\:w-3\/4 { + width: 75%; } - .md\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .md\:w-1\/5 { + width: 20%; } - .md\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .md\:w-2\/5 { + width: 40%; } - .md\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .md\:w-3\/5 { + width: 60%; } - .md\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .md\:w-4\/5 { + width: 80%; } - .md\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .md\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .md\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .md\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .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\:origin-bottom-right { + transform-origin: bottom right; } - .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\:origin-bottom { + transform-origin: bottom; } - .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\:origin-bottom-left { + transform-origin: bottom left; } - .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\:origin-left { + transform-origin: left; } - .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\:origin-top-left { + transform-origin: top left; } - .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\:translate-x-0 { + --tw-translate-x: 0px; } - .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\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .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\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .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\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .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\:translate-x-4 { + --tw-translate-x: 1rem; } - .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\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .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\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .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\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .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\:translate-x-8 { + --tw-translate-x: 2rem; } - .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\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .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\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .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\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .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\:translate-x-12 { + --tw-translate-x: 3rem; } - .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\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .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\:translate-x-16 { + --tw-translate-x: 4rem; } - .md\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:translate-x-20 { + --tw-translate-x: 5rem; } - .md\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:translate-x-24 { + --tw-translate-x: 6rem; } - .md\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:translate-x-28 { + --tw-translate-x: 7rem; } - .md\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:translate-x-32 { + --tw-translate-x: 8rem; } - .md\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:translate-x-36 { + --tw-translate-x: 9rem; } - .md\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:translate-x-40 { + --tw-translate-x: 10rem; } - .md\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:translate-x-44 { + --tw-translate-x: 11rem; } - .md\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:translate-x-48 { + --tw-translate-x: 12rem; } - .md\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:translate-x-52 { + --tw-translate-x: 13rem; } - .md\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:translate-x-56 { + --tw-translate-x: 14rem; } - .md\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:translate-x-60 { + --tw-translate-x: 15rem; } - .md\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:translate-x-64 { + --tw-translate-x: 16rem; } - .md\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:translate-x-72 { + --tw-translate-x: 18rem; } - .md\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:translate-x-80 { + --tw-translate-x: 20rem; } - .md\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:translate-x-96 { + --tw-translate-x: 24rem; } - .md\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:translate-x-px { + --tw-translate-x: 1px; } - .md\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .md\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .md\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .md\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .md\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:-translate-x-0 { + --tw-translate-x: 0px; } - .md\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .md\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .md\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .md\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:-translate-x-4 { + --tw-translate-x: -1rem; } - .md\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .md\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .md\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .md\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:-translate-x-8 { + --tw-translate-x: -2rem; } - .md\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .md\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .md\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .md\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:-translate-x-12 { + --tw-translate-x: -3rem; } - .md\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .md\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:-translate-x-16 { + --tw-translate-x: -4rem; } - .md\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:-translate-x-20 { + --tw-translate-x: -5rem; } - .md\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:-translate-x-24 { + --tw-translate-x: -6rem; } - .md\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:-translate-x-28 { + --tw-translate-x: -7rem; } - .md\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:-translate-x-32 { + --tw-translate-x: -8rem; } - .md\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:-translate-x-36 { + --tw-translate-x: -9rem; } - .md\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:-translate-x-40 { + --tw-translate-x: -10rem; } - .md\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:-translate-x-44 { + --tw-translate-x: -11rem; } - .md\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:-translate-x-48 { + --tw-translate-x: -12rem; } - .md\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:-translate-x-52 { + --tw-translate-x: -13rem; } - .md\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:-translate-x-56 { + --tw-translate-x: -14rem; } - .md\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:-translate-x-60 { + --tw-translate-x: -15rem; } - .md\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:-translate-x-64 { + --tw-translate-x: -16rem; } - .md\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:-translate-x-72 { + --tw-translate-x: -18rem; } - .md\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:-translate-x-80 { + --tw-translate-x: -20rem; } - .md\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:-translate-x-96 { + --tw-translate-x: -24rem; } - .md\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:-translate-x-px { + --tw-translate-x: -1px; } - .md\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .md\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .md\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .md\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .md\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .md\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .md\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .md\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .md\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .md\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .md\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:translate-x-full { + --tw-translate-x: 100%; } - .md\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .md\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .md\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .md\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .md\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .md\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .md\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:-translate-x-full { + --tw-translate-x: -100%; } - .md\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:translate-y-0 { + --tw-translate-y: 0px; } - .md\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .md\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .md\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .md\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:translate-y-4 { + --tw-translate-y: 1rem; } - .md\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .md\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .md\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .md\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:translate-y-8 { + --tw-translate-y: 2rem; } - .md\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .md\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .md\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .md\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:translate-y-12 { + --tw-translate-y: 3rem; } - .md\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .md\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:translate-y-16 { + --tw-translate-y: 4rem; } - .md\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .md\:translate-y-20 { + --tw-translate-y: 5rem; } - .md\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .md\:translate-y-24 { + --tw-translate-y: 6rem; } - .md\:focus\:to-black:focus { - --tw-gradient-to: #000; + .md\:translate-y-28 { + --tw-translate-y: 7rem; } - .md\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .md\:translate-y-32 { + --tw-translate-y: 8rem; } - .md\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .md\:translate-y-36 { + --tw-translate-y: 9rem; } - .md\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .md\:translate-y-40 { + --tw-translate-y: 10rem; } - .md\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .md\:translate-y-44 { + --tw-translate-y: 11rem; } - .md\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .md\:translate-y-48 { + --tw-translate-y: 12rem; } - .md\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .md\:translate-y-52 { + --tw-translate-y: 13rem; } - .md\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .md\:translate-y-56 { + --tw-translate-y: 14rem; } - .md\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .md\:translate-y-60 { + --tw-translate-y: 15rem; } - .md\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .md\:translate-y-64 { + --tw-translate-y: 16rem; } - .md\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .md\:translate-y-72 { + --tw-translate-y: 18rem; } - .md\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .md\:translate-y-80 { + --tw-translate-y: 20rem; } - .md\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .md\:translate-y-96 { + --tw-translate-y: 24rem; } - .md\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .md\:translate-y-px { + --tw-translate-y: 1px; } - .md\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .md\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .md\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .md\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .md\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .md\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .md\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .md\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .md\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .md\:-translate-y-0 { + --tw-translate-y: 0px; } - .md\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .md\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .md\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .md\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .md\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .md\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .md\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .md\:-translate-y-4 { + --tw-translate-y: -1rem; } - .md\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .md\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .md\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .md\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .md\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .md\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .md\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .md\:-translate-y-8 { + --tw-translate-y: -2rem; } - .md\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .md\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .md\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .md\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .md\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .md\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .md\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .md\:-translate-y-12 { + --tw-translate-y: -3rem; } - .md\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .md\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .md\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .md\:-translate-y-16 { + --tw-translate-y: -4rem; } - .md\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .md\:-translate-y-20 { + --tw-translate-y: -5rem; } - .md\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .md\:-translate-y-24 { + --tw-translate-y: -6rem; } - .md\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .md\:-translate-y-28 { + --tw-translate-y: -7rem; } - .md\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .md\:-translate-y-32 { + --tw-translate-y: -8rem; } - .md\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .md\:-translate-y-36 { + --tw-translate-y: -9rem; } - .md\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .md\:-translate-y-40 { + --tw-translate-y: -10rem; } - .md\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .md\:-translate-y-44 { + --tw-translate-y: -11rem; } - .md\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .md\:-translate-y-48 { + --tw-translate-y: -12rem; } - .md\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .md\:-translate-y-52 { + --tw-translate-y: -13rem; } - .md\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .md\:-translate-y-56 { + --tw-translate-y: -14rem; } - .md\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .md\:-translate-y-60 { + --tw-translate-y: -15rem; } - .md\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .md\:-translate-y-64 { + --tw-translate-y: -16rem; } - .md\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .md\:-translate-y-72 { + --tw-translate-y: -18rem; } - .md\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .md\:-translate-y-80 { + --tw-translate-y: -20rem; } - .md\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .md\:-translate-y-96 { + --tw-translate-y: -24rem; } - .md\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .md\:-translate-y-px { + --tw-translate-y: -1px; } - .md\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .md\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .md\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .md\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .md\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .md\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .md\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .md\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .md\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .md\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .md\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .md\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .md\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .md\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .md\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .md\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .md\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .md\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .md\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .md\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .md\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .md\:translate-y-full { + --tw-translate-y: 100%; } - .md\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .md\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .md\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .md\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .md\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .md\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .md\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .md\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .md\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .md\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .md\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .md\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .md\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .md\:-translate-y-full { + --tw-translate-y: -100%; } - .md\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .md\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .md\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .md\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .md\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .md\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .md\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .md\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .md\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .md\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .md\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .md\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .md\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .md\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .md\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .md\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .md\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .md\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .md\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .md\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .md\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .md\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .md\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .md\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .md\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .md\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .md\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .md\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .md\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .md\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .md\:bg-bottom { - background-position: bottom; + .md\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .md\:bg-center { - background-position: center; + .md\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .md\:bg-left { - background-position: left; + .md\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .md\:bg-left-bottom { - background-position: left bottom; + .md\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .md\:bg-left-top { - background-position: left top; + .md\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .md\:bg-right { - background-position: right; + .md\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .md\:bg-right-bottom { - background-position: right bottom; + .md\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .md\:bg-right-top { - background-position: right top; + .md\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .md\:bg-top { - background-position: top; + .md\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .md\:bg-repeat { - background-repeat: repeat; + .md\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .md\:bg-no-repeat { - background-repeat: no-repeat; + .md\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .md\:bg-repeat-x { - background-repeat: repeat-x; + .md\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .md\:bg-repeat-y { - background-repeat: repeat-y; + .md\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .md\:bg-repeat-round { - background-repeat: round; + .md\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .md\:bg-repeat-space { - background-repeat: space; + .md\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .md\:bg-auto { - background-size: auto; + .md\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .md\:bg-cover { - background-size: cover; + .md\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .md\:bg-contain { - background-size: contain; + .md\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .md\:bg-origin-border { - background-origin: border-box; + .md\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .md\:bg-origin-padding { - background-origin: padding-box; + .md\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .md\:bg-origin-content { - background-origin: content-box; + .md\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .md\:border-collapse { - border-collapse: collapse; + .md\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .md\:border-separate { - border-collapse: separate; + .md\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .md\:border-transparent { - border-color: transparent; + .md\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .md\:border-current { - border-color: currentColor; + .md\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .md\:border-black { - border-color: #000; + .md\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .md\:border-white { - border-color: #fff; + .md\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .md\:border-gray-50 { - border-color: #f9fafb; + .md\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .md\:border-gray-100 { - border-color: #f3f4f6; + .md\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .md\:border-gray-200 { - border-color: #e5e7eb; + .md\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .md\:border-gray-300 { - border-color: #d1d5db; + .md\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .md\:border-gray-400 { - border-color: #9ca3af; + .md\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .md\:border-gray-500 { - border-color: #6b7280; + .md\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .md\:border-gray-600 { - border-color: #4b5563; + .md\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .md\:border-gray-700 { - border-color: #374151; + .md\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .md\:border-gray-800 { - border-color: #1f2937; + .md\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .md\:border-gray-900 { - border-color: #111827; + .md\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .md\:border-red-50 { - border-color: #fef2f2; + .md\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .md\:border-red-100 { - border-color: #fee2e2; + .md\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .md\:border-red-200 { - border-color: #fecaca; + .md\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .md\:border-red-300 { - border-color: #fca5a5; + .md\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .md\:border-red-400 { - border-color: #f87171; + .md\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .md\:border-red-500 { - border-color: #ef4444; + .md\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .md\:border-red-600 { - border-color: #dc2626; + .md\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .md\:border-red-700 { - border-color: #b91c1c; + .md\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .md\:border-red-800 { - border-color: #991b1b; + .md\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .md\:border-red-900 { - border-color: #7f1d1d; + .md\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .md\:border-yellow-50 { - border-color: #fffbeb; + .md\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .md\:border-yellow-100 { - border-color: #fef3c7; + .md\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .md\:border-yellow-200 { - border-color: #fde68a; + .md\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .md\:border-yellow-300 { - border-color: #fcd34d; + .md\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .md\:border-yellow-400 { - border-color: #fbbf24; + .md\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .md\:border-yellow-500 { - border-color: #f59e0b; + .md\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .md\:border-yellow-600 { - border-color: #d97706; + .md\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .md\:border-yellow-700 { - border-color: #b45309; + .md\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .md\:border-yellow-800 { - border-color: #92400e; + .md\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .md\:border-yellow-900 { - border-color: #78350f; + .md\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .md\:border-green-50 { - border-color: #ecfdf5; + .md\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .md\:border-green-100 { - border-color: #d1fae5; + .md\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .md\:border-green-200 { - border-color: #a7f3d0; + .md\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .md\:border-green-300 { - border-color: #6ee7b7; + .md\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .md\:border-green-400 { - border-color: #34d399; + .md\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .md\:border-green-500 { - border-color: #10b981; + .md\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .md\:border-green-600 { - border-color: #059669; + .md\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .md\:border-green-700 { - border-color: #047857; + .md\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .md\:border-green-800 { - border-color: #065f46; + .md\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .md\:border-green-900 { - border-color: #064e3b; + .md\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .md\:border-blue-50 { - border-color: #eff6ff; + .md\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .md\:border-blue-100 { - border-color: #dbeafe; + .md\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .md\:border-blue-200 { - border-color: #bfdbfe; + .md\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .md\:border-blue-300 { - border-color: #93c5fd; + .md\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .md\:border-blue-400 { - border-color: #60a5fa; + .md\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .md\:border-blue-500 { - border-color: #3b82f6; + .md\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .md\:border-blue-600 { - border-color: #2563eb; + .md\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .md\:border-blue-700 { - border-color: #1d4ed8; + .md\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .md\:border-blue-800 { - border-color: #1e40af; + .md\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .md\:border-blue-900 { - border-color: #1e3a8a; + .md\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .md\:border-indigo-50 { - border-color: #eef2ff; + .md\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .md\:border-indigo-100 { - border-color: #e0e7ff; + .md\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .md\:border-indigo-200 { - border-color: #c7d2fe; + .md\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .md\:border-indigo-300 { - border-color: #a5b4fc; + .md\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .md\:border-indigo-400 { - border-color: #818cf8; + .md\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .md\:border-indigo-500 { - border-color: #6366f1; + .md\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .md\:border-indigo-600 { - border-color: #4f46e5; + .md\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .md\:border-indigo-700 { - border-color: #4338ca; + .md\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .md\:border-indigo-800 { - border-color: #3730a3; + .md\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .md\:border-indigo-900 { - border-color: #312e81; + .md\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .md\:border-purple-50 { - border-color: #f5f3ff; + .md\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .md\:border-purple-100 { - border-color: #ede9fe; + .md\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .md\:border-purple-200 { - border-color: #ddd6fe; + .md\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .md\:border-purple-300 { - border-color: #c4b5fd; + .md\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .md\:border-purple-400 { - border-color: #a78bfa; + .md\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .md\:border-purple-500 { - border-color: #8b5cf6; + .md\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .md\:border-purple-600 { - border-color: #7c3aed; + .md\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .md\:border-purple-700 { - border-color: #6d28d9; + .md\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .md\:border-purple-800 { - border-color: #5b21b6; + .md\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .md\:border-purple-900 { - border-color: #4c1d95; + .md\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .md\:border-pink-50 { - border-color: #fdf2f8; + .md\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .md\:border-pink-100 { - border-color: #fce7f3; + .md\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .md\:border-pink-200 { - border-color: #fbcfe8; + .md\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .md\:border-pink-300 { - border-color: #f9a8d4; + .md\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .md\:border-pink-400 { - border-color: #f472b6; + .md\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .md\:border-pink-500 { - border-color: #ec4899; + .md\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .md\:border-pink-600 { - border-color: #db2777; + .md\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .md\:border-pink-700 { - border-color: #be185d; + .md\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .md\:border-pink-800 { - border-color: #9d174d; + .md\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .md\:border-pink-900 { - border-color: #831843; + .md\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .group:hover .md\:group-hover\:border-transparent { - border-color: transparent; + .md\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .group:hover .md\:group-hover\:border-current { - border-color: currentColor; + .md\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .group:hover .md\:group-hover\:border-black { - border-color: #000; + .md\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .group:hover .md\:group-hover\:border-white { - border-color: #fff; + .md\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .group:hover .md\:group-hover\:border-gray-50 { - border-color: #f9fafb; + .md\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .group:hover .md\:group-hover\:border-gray-100 { - border-color: #f3f4f6; + .md\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .group:hover .md\:group-hover\:border-gray-200 { - border-color: #e5e7eb; + .md\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .group:hover .md\:group-hover\:border-gray-300 { - border-color: #d1d5db; + .md\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .group:hover .md\:group-hover\:border-gray-400 { - border-color: #9ca3af; + .md\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .group:hover .md\:group-hover\:border-gray-500 { - border-color: #6b7280; + .md\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .group:hover .md\:group-hover\:border-gray-600 { - border-color: #4b5563; + .md\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .group:hover .md\:group-hover\:border-gray-700 { - border-color: #374151; + .md\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .group:hover .md\:group-hover\:border-gray-800 { - border-color: #1f2937; + .md\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .group:hover .md\:group-hover\:border-gray-900 { - border-color: #111827; + .md\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .group:hover .md\:group-hover\:border-red-50 { - border-color: #fef2f2; + .md\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .group:hover .md\:group-hover\:border-red-100 { - border-color: #fee2e2; + .md\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .group:hover .md\:group-hover\:border-red-200 { - border-color: #fecaca; + .md\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .group:hover .md\:group-hover\:border-red-300 { - border-color: #fca5a5; + .md\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .group:hover .md\:group-hover\:border-red-400 { - border-color: #f87171; + .md\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .group:hover .md\:group-hover\:border-red-500 { - border-color: #ef4444; + .md\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .group:hover .md\:group-hover\:border-red-600 { - border-color: #dc2626; + .md\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .group:hover .md\:group-hover\:border-red-700 { - border-color: #b91c1c; + .md\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .group:hover .md\:group-hover\:border-red-800 { - border-color: #991b1b; + .md\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .group:hover .md\:group-hover\:border-red-900 { - border-color: #7f1d1d; + .md\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .group:hover .md\:group-hover\:border-yellow-50 { - border-color: #fffbeb; + .md\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .group:hover .md\:group-hover\:border-yellow-100 { - border-color: #fef3c7; + .md\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .group:hover .md\:group-hover\:border-yellow-200 { - border-color: #fde68a; + .md\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .group:hover .md\:group-hover\:border-yellow-300 { - border-color: #fcd34d; + .md\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .group:hover .md\:group-hover\:border-yellow-400 { - border-color: #fbbf24; + .md\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .group:hover .md\:group-hover\:border-yellow-500 { - border-color: #f59e0b; + .md\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .group:hover .md\:group-hover\:border-yellow-600 { - border-color: #d97706; + .md\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .group:hover .md\:group-hover\:border-yellow-700 { - border-color: #b45309; + .md\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .group:hover .md\:group-hover\:border-yellow-800 { - border-color: #92400e; + .md\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .group:hover .md\:group-hover\:border-yellow-900 { - border-color: #78350f; + .md\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .group:hover .md\:group-hover\:border-green-50 { - border-color: #ecfdf5; + .md\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .group:hover .md\:group-hover\:border-green-100 { - border-color: #d1fae5; + .md\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .group:hover .md\:group-hover\:border-green-200 { - border-color: #a7f3d0; + .md\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .group:hover .md\:group-hover\:border-green-300 { - border-color: #6ee7b7; + .md\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .group:hover .md\:group-hover\:border-green-400 { - border-color: #34d399; + .md\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .group:hover .md\:group-hover\:border-green-500 { - border-color: #10b981; + .md\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .group:hover .md\:group-hover\:border-green-600 { - border-color: #059669; + .md\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .group:hover .md\:group-hover\:border-green-700 { - border-color: #047857; + .md\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .group:hover .md\:group-hover\:border-green-800 { - border-color: #065f46; + .md\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .group:hover .md\:group-hover\:border-green-900 { - border-color: #064e3b; + .md\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .group:hover .md\:group-hover\:border-blue-50 { - border-color: #eff6ff; + .md\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .group:hover .md\:group-hover\:border-blue-100 { - border-color: #dbeafe; + .md\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .group:hover .md\:group-hover\:border-blue-200 { - border-color: #bfdbfe; + .md\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .md\:group-hover\:border-blue-300 { - border-color: #93c5fd; + .md\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .group:hover .md\:group-hover\:border-blue-400 { - border-color: #60a5fa; + .md\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .group:hover .md\:group-hover\:border-blue-500 { - border-color: #3b82f6; + .md\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .group:hover .md\:group-hover\:border-blue-600 { - border-color: #2563eb; + .md\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .group:hover .md\:group-hover\:border-blue-700 { - border-color: #1d4ed8; + .md\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .group:hover .md\:group-hover\:border-blue-800 { - border-color: #1e40af; + .md\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .group:hover .md\:group-hover\:border-blue-900 { - border-color: #1e3a8a; + .md\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .group:hover .md\:group-hover\:border-indigo-50 { - border-color: #eef2ff; + .md\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .md\:group-hover\:border-indigo-100 { - border-color: #e0e7ff; + .md\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .md\:group-hover\:border-indigo-200 { - border-color: #c7d2fe; + .md\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .md\:group-hover\:border-indigo-300 { - border-color: #a5b4fc; + .md\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .md\:group-hover\:border-indigo-400 { - border-color: #818cf8; + .md\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .md\:group-hover\:border-indigo-500 { - border-color: #6366f1; + .md\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .md\:group-hover\:border-indigo-600 { - border-color: #4f46e5; + .md\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .md\:group-hover\:border-indigo-700 { - border-color: #4338ca; + .md\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .md\:group-hover\:border-indigo-800 { - border-color: #3730a3; + .md\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .md\:group-hover\:border-indigo-900 { - border-color: #312e81; + .md\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .md\:group-hover\:border-purple-50 { - border-color: #f5f3ff; + .md\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .md\:group-hover\:border-purple-100 { - border-color: #ede9fe; + .md\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .md\:group-hover\:border-purple-200 { - border-color: #ddd6fe; + .md\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .md\:group-hover\:border-purple-300 { - border-color: #c4b5fd; + .md\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .md\:group-hover\:border-purple-400 { - border-color: #a78bfa; + .md\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .md\:group-hover\:border-purple-500 { - border-color: #8b5cf6; + .md\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .md\:group-hover\:border-purple-600 { - border-color: #7c3aed; + .md\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .md\:group-hover\:border-purple-700 { - border-color: #6d28d9; + .md\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .md\:group-hover\:border-purple-800 { - border-color: #5b21b6; + .md\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .md\:group-hover\:border-purple-900 { - border-color: #4c1d95; + .md\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .md\:group-hover\:border-pink-50 { - border-color: #fdf2f8; + .md\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .md\:group-hover\:border-pink-100 { - border-color: #fce7f3; + .md\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .md\:group-hover\:border-pink-200 { - border-color: #fbcfe8; + .md\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .md\:group-hover\:border-pink-300 { - border-color: #f9a8d4; + .md\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .md\:group-hover\:border-pink-400 { - border-color: #f472b6; + .md\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .md\:group-hover\:border-pink-500 { - border-color: #ec4899; + .md\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .md\:group-hover\:border-pink-600 { - border-color: #db2777; + .md\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .md\:group-hover\:border-pink-700 { - border-color: #be185d; + .md\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .md\:group-hover\:border-pink-800 { - border-color: #9d174d; + .md\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .md\:group-hover\:border-pink-900 { - border-color: #831843; + .md\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .md\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .md\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .md\:focus-within\:border-current:focus-within { - border-color: currentColor; + .md\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .md\:focus-within\:border-black:focus-within { - border-color: #000; + .md\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .md\:focus-within\:border-white:focus-within { - border-color: #fff; + .md\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .md\:focus-within\:border-gray-50:focus-within { - border-color: #f9fafb; + .md\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .md\:focus-within\:border-gray-100:focus-within { - border-color: #f3f4f6; + .md\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .md\:focus-within\:border-gray-200:focus-within { - border-color: #e5e7eb; + .md\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - .md\:focus-within\:border-gray-300:focus-within { - border-color: #d1d5db; + .md\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .md\:focus-within\:border-gray-400:focus-within { - border-color: #9ca3af; + .md\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .md\:focus-within\:border-gray-500:focus-within { - border-color: #6b7280; + .md\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .md\:focus-within\:border-gray-600:focus-within { - border-color: #4b5563; + .md\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .md\:focus-within\:border-gray-700:focus-within { - border-color: #374151; + .md\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .md\:focus-within\:border-gray-800:focus-within { - border-color: #1f2937; + .md\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .md\:focus-within\:border-gray-900:focus-within { - border-color: #111827; + .md\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .md\:focus-within\:border-red-50:focus-within { - border-color: #fef2f2; + .md\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .md\:focus-within\:border-red-100:focus-within { - border-color: #fee2e2; + .md\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .md\:focus-within\:border-red-200:focus-within { - border-color: #fecaca; + .md\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .md\:focus-within\:border-red-300:focus-within { - border-color: #fca5a5; + .md\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .md\:focus-within\:border-red-400:focus-within { - border-color: #f87171; + .md\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .md\:focus-within\:border-red-500:focus-within { - border-color: #ef4444; + .md\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .md\:focus-within\:border-red-600:focus-within { - border-color: #dc2626; + .md\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .md\:focus-within\:border-red-700:focus-within { - border-color: #b91c1c; + .md\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .md\:focus-within\:border-red-800:focus-within { - border-color: #991b1b; + .md\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .md\:focus-within\:border-red-900:focus-within { - border-color: #7f1d1d; + .md\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .md\:focus-within\:border-yellow-50:focus-within { - border-color: #fffbeb; + .md\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .md\:focus-within\:border-yellow-100:focus-within { - border-color: #fef3c7; + .md\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .md\:focus-within\:border-yellow-200:focus-within { - border-color: #fde68a; + .md\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .md\:focus-within\:border-yellow-300:focus-within { - border-color: #fcd34d; + .md\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .md\:focus-within\:border-yellow-400:focus-within { - border-color: #fbbf24; + .md\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .md\:focus-within\:border-yellow-500:focus-within { - border-color: #f59e0b; + .md\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .md\:focus-within\:border-yellow-600:focus-within { - border-color: #d97706; + .md\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .md\:focus-within\:border-yellow-700:focus-within { - border-color: #b45309; + .md\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .md\:focus-within\:border-yellow-800:focus-within { - border-color: #92400e; + .md\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .md\:focus-within\:border-yellow-900:focus-within { - border-color: #78350f; + .md\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .md\:focus-within\:border-green-50:focus-within { - border-color: #ecfdf5; + .md\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .md\:focus-within\:border-green-100:focus-within { - border-color: #d1fae5; + .md\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .md\:focus-within\:border-green-200:focus-within { - border-color: #a7f3d0; + .md\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .md\:focus-within\:border-green-300:focus-within { - border-color: #6ee7b7; + .md\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .md\:focus-within\:border-green-400:focus-within { - border-color: #34d399; + .md\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .md\:focus-within\:border-green-500:focus-within { - border-color: #10b981; + .md\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .md\:focus-within\:border-green-600:focus-within { - border-color: #059669; + .md\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .md\:focus-within\:border-green-700:focus-within { - border-color: #047857; + .md\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .md\:focus-within\:border-green-800:focus-within { - border-color: #065f46; + .md\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .md\:focus-within\:border-green-900:focus-within { - border-color: #064e3b; + .md\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .md\:focus-within\:border-blue-50:focus-within { - border-color: #eff6ff; + .md\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .md\:focus-within\:border-blue-100:focus-within { - border-color: #dbeafe; + .md\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .md\:focus-within\:border-blue-200:focus-within { - border-color: #bfdbfe; + .md\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .md\:focus-within\:border-blue-300:focus-within { - border-color: #93c5fd; + .md\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .md\:focus-within\:border-blue-400:focus-within { - border-color: #60a5fa; + .md\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .md\:focus-within\:border-blue-500:focus-within { - border-color: #3b82f6; + .md\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .md\:focus-within\:border-blue-600:focus-within { - border-color: #2563eb; + .md\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .md\:focus-within\:border-blue-700:focus-within { - border-color: #1d4ed8; + .md\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .md\:focus-within\:border-blue-800:focus-within { - border-color: #1e40af; + .md\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .md\:focus-within\:border-blue-900:focus-within { - border-color: #1e3a8a; + .md\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .md\:focus-within\:border-indigo-50:focus-within { - border-color: #eef2ff; + .md\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .md\:focus-within\:border-indigo-100:focus-within { - border-color: #e0e7ff; + .md\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .md\:focus-within\:border-indigo-200:focus-within { - border-color: #c7d2fe; + .md\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .md\:focus-within\:border-indigo-300:focus-within { - border-color: #a5b4fc; + .md\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .md\:focus-within\:border-indigo-400:focus-within { - border-color: #818cf8; + .md\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .md\:focus-within\:border-indigo-500:focus-within { - border-color: #6366f1; + .md\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .md\:focus-within\:border-indigo-600:focus-within { - border-color: #4f46e5; + .md\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .md\:focus-within\:border-indigo-700:focus-within { - border-color: #4338ca; + .md\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .md\:focus-within\:border-indigo-800:focus-within { - border-color: #3730a3; + .md\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .md\:focus-within\:border-indigo-900:focus-within { - border-color: #312e81; + .md\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .md\:focus-within\:border-purple-50:focus-within { - border-color: #f5f3ff; + .md\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .md\:focus-within\:border-purple-100:focus-within { - border-color: #ede9fe; + .md\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .md\:focus-within\:border-purple-200:focus-within { - border-color: #ddd6fe; + .md\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .md\:focus-within\:border-purple-300:focus-within { - border-color: #c4b5fd; + .md\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .md\:focus-within\:border-purple-400:focus-within { - border-color: #a78bfa; + .md\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .md\:focus-within\:border-purple-500:focus-within { - border-color: #8b5cf6; + .md\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .md\:focus-within\:border-purple-600:focus-within { - border-color: #7c3aed; + .md\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .md\:focus-within\:border-purple-700:focus-within { - border-color: #6d28d9; + .md\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .md\:focus-within\:border-purple-800:focus-within { - border-color: #5b21b6; + .md\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .md\:focus-within\:border-purple-900:focus-within { - border-color: #4c1d95; + .md\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .md\:focus-within\:border-pink-50:focus-within { - border-color: #fdf2f8; + .md\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .md\:focus-within\:border-pink-100:focus-within { - border-color: #fce7f3; + .md\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .md\:focus-within\:border-pink-200:focus-within { - border-color: #fbcfe8; + .md\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .md\:focus-within\:border-pink-300:focus-within { - border-color: #f9a8d4; + .md\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .md\:focus-within\:border-pink-400:focus-within { - border-color: #f472b6; + .md\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .md\:focus-within\:border-pink-500:focus-within { - border-color: #ec4899; + .md\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .md\:focus-within\:border-pink-600:focus-within { - border-color: #db2777; + .md\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .md\:focus-within\:border-pink-700:focus-within { - border-color: #be185d; + .md\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .md\:focus-within\:border-pink-800:focus-within { - border-color: #9d174d; + .md\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .md\:focus-within\:border-pink-900:focus-within { - border-color: #831843; + .md\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .md\:hover\:border-transparent:hover { - border-color: transparent; + .md\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .md\:hover\:border-current:hover { - border-color: currentColor; + .md\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .md\:hover\:border-black:hover { - border-color: #000; + .md\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .md\:hover\:border-white:hover { - border-color: #fff; + .md\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .md\:hover\:border-gray-50:hover { - border-color: #f9fafb; + .md\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .md\:hover\:border-gray-100:hover { - border-color: #f3f4f6; + .md\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .md\:hover\:border-gray-200:hover { - border-color: #e5e7eb; + .md\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .md\:hover\:border-gray-300:hover { - border-color: #d1d5db; + .md\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .md\:hover\:border-gray-400:hover { - border-color: #9ca3af; + .md\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .md\:hover\:border-gray-500:hover { - border-color: #6b7280; + .md\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .md\:hover\:border-gray-600:hover { - border-color: #4b5563; + .md\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .md\:hover\:border-gray-700:hover { - border-color: #374151; + .md\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .md\:hover\:border-gray-800:hover { - border-color: #1f2937; + .md\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .md\:hover\:border-gray-900:hover { - border-color: #111827; + .md\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .md\:hover\:border-red-50:hover { - border-color: #fef2f2; + .md\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .md\:hover\:border-red-100:hover { - border-color: #fee2e2; + .md\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .md\:hover\:border-red-200:hover { - border-color: #fecaca; + .md\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .md\:hover\:border-red-300:hover { - border-color: #fca5a5; + .md\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .md\:hover\:border-red-400:hover { - border-color: #f87171; + .md\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .md\:hover\:border-red-500:hover { - border-color: #ef4444; + .md\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .md\:hover\:border-red-600:hover { - border-color: #dc2626; + .md\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .md\:hover\:border-red-700:hover { - border-color: #b91c1c; + .md\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .md\:hover\:border-red-800:hover { - border-color: #991b1b; + .md\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .md\:hover\:border-red-900:hover { - border-color: #7f1d1d; + .md\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .md\:hover\:border-yellow-50:hover { - border-color: #fffbeb; + .md\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .md\:hover\:border-yellow-100:hover { - border-color: #fef3c7; + .md\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .md\:hover\:border-yellow-200:hover { - border-color: #fde68a; + .md\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .md\:hover\:border-yellow-300:hover { - border-color: #fcd34d; + .md\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .md\:hover\:border-yellow-400:hover { - border-color: #fbbf24; + .md\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .md\:hover\:border-yellow-500:hover { - border-color: #f59e0b; + .md\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .md\:hover\:border-yellow-600:hover { - border-color: #d97706; + .md\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .md\:hover\:border-yellow-700:hover { - border-color: #b45309; + .md\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .md\:hover\:border-yellow-800:hover { - border-color: #92400e; + .md\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .md\:hover\:border-yellow-900:hover { - border-color: #78350f; + .md\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .md\:hover\:border-green-50:hover { - border-color: #ecfdf5; + .md\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .md\:hover\:border-green-100:hover { - border-color: #d1fae5; + .md\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .md\:hover\:border-green-200:hover { - border-color: #a7f3d0; + .md\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .md\:hover\:border-green-300:hover { - border-color: #6ee7b7; + .md\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .md\:hover\:border-green-400:hover { - border-color: #34d399; + .md\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .md\:hover\:border-green-500:hover { - border-color: #10b981; + .md\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .md\:hover\:border-green-600:hover { - border-color: #059669; + .md\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .md\:hover\:border-green-700:hover { - border-color: #047857; + .md\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .md\:hover\:border-green-800:hover { - border-color: #065f46; + .md\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .md\:hover\:border-green-900:hover { - border-color: #064e3b; + .md\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .md\:hover\:border-blue-50:hover { - border-color: #eff6ff; + .md\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .md\:hover\:border-blue-100:hover { - border-color: #dbeafe; + .md\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .md\:hover\:border-blue-200:hover { - border-color: #bfdbfe; + .md\:rotate-0 { + --tw-rotate: 0deg; } - .md\:hover\:border-blue-300:hover { - border-color: #93c5fd; + .md\:rotate-1 { + --tw-rotate: 1deg; } - .md\:hover\:border-blue-400:hover { - border-color: #60a5fa; + .md\:rotate-2 { + --tw-rotate: 2deg; } - .md\:hover\:border-blue-500:hover { - border-color: #3b82f6; + .md\:rotate-3 { + --tw-rotate: 3deg; } - .md\:hover\:border-blue-600:hover { - border-color: #2563eb; + .md\:rotate-6 { + --tw-rotate: 6deg; } - .md\:hover\:border-blue-700:hover { - border-color: #1d4ed8; + .md\:rotate-12 { + --tw-rotate: 12deg; } - .md\:hover\:border-blue-800:hover { - border-color: #1e40af; + .md\:rotate-45 { + --tw-rotate: 45deg; } - .md\:hover\:border-blue-900:hover { - border-color: #1e3a8a; + .md\:rotate-90 { + --tw-rotate: 90deg; } - .md\:hover\:border-indigo-50:hover { - border-color: #eef2ff; + .md\:rotate-180 { + --tw-rotate: 180deg; } - .md\:hover\:border-indigo-100:hover { - border-color: #e0e7ff; + .md\:-rotate-180 { + --tw-rotate: -180deg; } - .md\:hover\:border-indigo-200:hover { - border-color: #c7d2fe; + .md\:-rotate-90 { + --tw-rotate: -90deg; } - .md\:hover\:border-indigo-300:hover { - border-color: #a5b4fc; + .md\:-rotate-45 { + --tw-rotate: -45deg; } - .md\:hover\:border-indigo-400:hover { - border-color: #818cf8; + .md\:-rotate-12 { + --tw-rotate: -12deg; } - .md\:hover\:border-indigo-500:hover { - border-color: #6366f1; + .md\:-rotate-6 { + --tw-rotate: -6deg; } - .md\:hover\:border-indigo-600:hover { - border-color: #4f46e5; + .md\:-rotate-3 { + --tw-rotate: -3deg; } - .md\:hover\:border-indigo-700:hover { - border-color: #4338ca; + .md\:-rotate-2 { + --tw-rotate: -2deg; } - .md\:hover\:border-indigo-800:hover { - border-color: #3730a3; + .md\:-rotate-1 { + --tw-rotate: -1deg; } - .md\:hover\:border-indigo-900:hover { - border-color: #312e81; + .md\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .md\:hover\:border-purple-50:hover { - border-color: #f5f3ff; + .md\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .md\:hover\:border-purple-100:hover { - border-color: #ede9fe; + .md\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .md\:hover\:border-purple-200:hover { - border-color: #ddd6fe; + .md\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .md\:hover\:border-purple-300:hover { - border-color: #c4b5fd; + .md\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .md\:hover\:border-purple-400:hover { - border-color: #a78bfa; + .md\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .md\:hover\:border-purple-500:hover { - border-color: #8b5cf6; + .md\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .md\:hover\:border-purple-600:hover { - border-color: #7c3aed; + .md\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .md\:hover\:border-purple-700:hover { - border-color: #6d28d9; + .md\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .md\:hover\:border-purple-800:hover { - border-color: #5b21b6; + .md\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .md\:hover\:border-purple-900:hover { - border-color: #4c1d95; + .md\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .md\:hover\:border-pink-50:hover { - border-color: #fdf2f8; + .md\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .md\:hover\:border-pink-100:hover { - border-color: #fce7f3; + .md\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .md\:hover\:border-pink-200:hover { - border-color: #fbcfe8; + .md\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .md\:hover\:border-pink-300:hover { - border-color: #f9a8d4; + .md\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .md\:hover\:border-pink-400:hover { - border-color: #f472b6; + .md\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .md\:hover\:border-pink-500:hover { - border-color: #ec4899; + .md\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .md\:hover\:border-pink-600:hover { - border-color: #db2777; + .md\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .md\:hover\:border-pink-700:hover { - border-color: #be185d; + .md\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .md\:hover\:border-pink-800:hover { - border-color: #9d174d; + .md\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .md\:hover\:border-pink-900:hover { - border-color: #831843; + .md\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .md\:focus\:border-transparent:focus { - border-color: transparent; + .md\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .md\:focus\:border-current:focus { - border-color: currentColor; + .md\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .md\:focus\:border-black:focus { - border-color: #000; + .md\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .md\:focus\:border-white:focus { - border-color: #fff; + .md\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .md\:focus\:border-gray-50:focus { - border-color: #f9fafb; + .md\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .md\:focus\:border-gray-100:focus { - border-color: #f3f4f6; + .md\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .md\:focus\:border-gray-200:focus { - border-color: #e5e7eb; + .md\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .md\:focus\:border-gray-300:focus { - border-color: #d1d5db; + .md\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .md\:focus\:border-gray-400:focus { - border-color: #9ca3af; + .md\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .md\:focus\:border-gray-500:focus { - border-color: #6b7280; + .md\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .md\:focus\:border-gray-600:focus { - border-color: #4b5563; + .md\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .md\:focus\:border-gray-700:focus { - border-color: #374151; + .md\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .md\:focus\:border-gray-800:focus { - border-color: #1f2937; + .md\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .md\:focus\:border-gray-900:focus { - border-color: #111827; + .md\:skew-x-0 { + --tw-skew-x: 0deg; } - .md\:focus\:border-red-50:focus { - border-color: #fef2f2; + .md\:skew-x-1 { + --tw-skew-x: 1deg; } - .md\:focus\:border-red-100:focus { - border-color: #fee2e2; + .md\:skew-x-2 { + --tw-skew-x: 2deg; } - .md\:focus\:border-red-200:focus { - border-color: #fecaca; + .md\:skew-x-3 { + --tw-skew-x: 3deg; } - .md\:focus\:border-red-300:focus { - border-color: #fca5a5; + .md\:skew-x-6 { + --tw-skew-x: 6deg; } - .md\:focus\:border-red-400:focus { - border-color: #f87171; + .md\:skew-x-12 { + --tw-skew-x: 12deg; } - .md\:focus\:border-red-500:focus { - border-color: #ef4444; + .md\:-skew-x-12 { + --tw-skew-x: -12deg; } - .md\:focus\:border-red-600:focus { - border-color: #dc2626; + .md\:-skew-x-6 { + --tw-skew-x: -6deg; } - .md\:focus\:border-red-700:focus { - border-color: #b91c1c; + .md\:-skew-x-3 { + --tw-skew-x: -3deg; } - .md\:focus\:border-red-800:focus { - border-color: #991b1b; + .md\:-skew-x-2 { + --tw-skew-x: -2deg; } - .md\:focus\:border-red-900:focus { - border-color: #7f1d1d; + .md\:-skew-x-1 { + --tw-skew-x: -1deg; } - .md\:focus\:border-yellow-50:focus { - border-color: #fffbeb; + .md\:skew-y-0 { + --tw-skew-y: 0deg; } - .md\:focus\:border-yellow-100:focus { - border-color: #fef3c7; + .md\:skew-y-1 { + --tw-skew-y: 1deg; } - .md\:focus\:border-yellow-200:focus { - border-color: #fde68a; + .md\:skew-y-2 { + --tw-skew-y: 2deg; } - .md\:focus\:border-yellow-300:focus { - border-color: #fcd34d; + .md\:skew-y-3 { + --tw-skew-y: 3deg; } - .md\:focus\:border-yellow-400:focus { - border-color: #fbbf24; + .md\:skew-y-6 { + --tw-skew-y: 6deg; } - .md\:focus\:border-yellow-500:focus { - border-color: #f59e0b; + .md\:skew-y-12 { + --tw-skew-y: 12deg; } - .md\:focus\:border-yellow-600:focus { - border-color: #d97706; + .md\:-skew-y-12 { + --tw-skew-y: -12deg; } - .md\:focus\:border-yellow-700:focus { - border-color: #b45309; + .md\:-skew-y-6 { + --tw-skew-y: -6deg; } - .md\:focus\:border-yellow-800:focus { - border-color: #92400e; + .md\:-skew-y-3 { + --tw-skew-y: -3deg; } - .md\:focus\:border-yellow-900:focus { - border-color: #78350f; + .md\:-skew-y-2 { + --tw-skew-y: -2deg; } - .md\:focus\:border-green-50:focus { - border-color: #ecfdf5; + .md\:-skew-y-1 { + --tw-skew-y: -1deg; } - .md\:focus\:border-green-100:focus { - border-color: #d1fae5; + .md\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .md\:focus\:border-green-200:focus { - border-color: #a7f3d0; + .md\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .md\:focus\:border-green-300:focus { - border-color: #6ee7b7; + .md\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .md\:focus\:border-green-400:focus { - border-color: #34d399; + .md\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .md\:focus\:border-green-500:focus { - border-color: #10b981; + .md\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .md\:focus\:border-green-600:focus { - border-color: #059669; + .md\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .md\:focus\:border-green-700:focus { - border-color: #047857; + .md\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .md\:focus\:border-green-800:focus { - border-color: #065f46; + .md\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .md\:focus\:border-green-900:focus { - border-color: #064e3b; + .md\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .md\:focus\:border-blue-50:focus { - border-color: #eff6ff; + .md\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .md\:focus\:border-blue-100:focus { - border-color: #dbeafe; + .md\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .md\:focus\:border-blue-200:focus { - border-color: #bfdbfe; + .md\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .md\:focus\:border-blue-300:focus { - border-color: #93c5fd; + .md\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .md\:focus\:border-blue-400:focus { - border-color: #60a5fa; + .md\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .md\:focus\:border-blue-500:focus { - border-color: #3b82f6; + .md\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .md\:focus\:border-blue-600:focus { - border-color: #2563eb; + .md\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .md\:focus\:border-blue-700:focus { - border-color: #1d4ed8; + .md\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .md\:focus\:border-blue-800:focus { - border-color: #1e40af; + .md\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .md\:focus\:border-blue-900:focus { - border-color: #1e3a8a; + .md\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .md\:focus\:border-indigo-50:focus { - border-color: #eef2ff; + .md\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .md\:focus\:border-indigo-100:focus { - border-color: #e0e7ff; + .md\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .md\:focus\:border-indigo-200:focus { - border-color: #c7d2fe; + .md\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .md\:focus\:border-indigo-300:focus { - border-color: #a5b4fc; + .md\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .md\:focus\:border-indigo-400:focus { - border-color: #818cf8; + .md\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .md\:focus\:border-indigo-500:focus { - border-color: #6366f1; + .md\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .md\:focus\:border-indigo-600:focus { - border-color: #4f46e5; + .md\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .md\:focus\:border-indigo-700:focus { - border-color: #4338ca; + .md\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .md\:focus\:border-indigo-800:focus { - border-color: #3730a3; + .md\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .md\:focus\:border-indigo-900:focus { - border-color: #312e81; + .md\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .md\:focus\:border-purple-50:focus { - border-color: #f5f3ff; + .md\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .md\:focus\:border-purple-100:focus { - border-color: #ede9fe; + .md\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .md\:focus\:border-purple-200:focus { - border-color: #ddd6fe; + .md\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .md\:focus\:border-purple-300:focus { - border-color: #c4b5fd; + .md\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .md\:focus\:border-purple-400:focus { - border-color: #a78bfa; + .md\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .md\:focus\:border-purple-500:focus { - border-color: #8b5cf6; + .md\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .md\:focus\:border-purple-600:focus { - border-color: #7c3aed; + .md\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .md\:focus\:border-purple-700:focus { - border-color: #6d28d9; + .md\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .md\:focus\:border-purple-800:focus { - border-color: #5b21b6; + .md\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .md\:focus\:border-purple-900:focus { - border-color: #4c1d95; + .md\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .md\:focus\:border-pink-50:focus { - border-color: #fdf2f8; + .md\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .md\:focus\:border-pink-100:focus { - border-color: #fce7f3; + .md\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .md\:focus\:border-pink-200:focus { - border-color: #fbcfe8; + .md\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .md\:focus\:border-pink-300:focus { - border-color: #f9a8d4; + .md\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .md\:focus\:border-pink-400:focus { - border-color: #f472b6; + .md\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .md\:focus\:border-pink-500:focus { - border-color: #ec4899; + .md\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:focus\:border-pink-600:focus { - border-color: #db2777; + .md\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:focus\:border-pink-700:focus { - border-color: #be185d; + .md\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:focus\:border-pink-800:focus { - border-color: #9d174d; + .md\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:focus\:border-pink-900:focus { - border-color: #831843; + .md\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:rounded-none { - border-radius: 0px; + .md\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:rounded-sm { - border-radius: 0.125rem; + .md\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:rounded { - border-radius: 0.25rem; + .md\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:rounded-md { - border-radius: 0.375rem; + .md\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:rounded-lg { - border-radius: 0.5rem; + .md\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:rounded-xl { - border-radius: 0.75rem; + .md\:scale-x-0 { + --tw-scale-x: 0; } - .md\:rounded-2xl { - border-radius: 1rem; + .md\:scale-x-50 { + --tw-scale-x: .5; } - .md\:rounded-3xl { - border-radius: 1.5rem; + .md\:scale-x-75 { + --tw-scale-x: .75; } - .md\:rounded-full { - border-radius: 9999px; + .md\:scale-x-90 { + --tw-scale-x: .9; } - .md\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .md\:scale-x-95 { + --tw-scale-x: .95; } - .md\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .md\:scale-x-100 { + --tw-scale-x: 1; } - .md\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .md\:scale-x-105 { + --tw-scale-x: 1.05; } - .md\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .md\:scale-x-110 { + --tw-scale-x: 1.1; } - .md\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .md\:scale-x-125 { + --tw-scale-x: 1.25; } - .md\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .md\:scale-x-150 { + --tw-scale-x: 1.5; } - .md\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .md\:scale-y-0 { + --tw-scale-y: 0; } - .md\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .md\:scale-y-50 { + --tw-scale-y: .5; } - .md\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .md\:scale-y-75 { + --tw-scale-y: .75; } - .md\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .md\:scale-y-90 { + --tw-scale-y: .9; } - .md\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .md\:scale-y-95 { + --tw-scale-y: .95; } - .md\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .md\:scale-y-100 { + --tw-scale-y: 1; } - .md\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .md\:scale-y-105 { + --tw-scale-y: 1.05; } - .md\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .md\:scale-y-110 { + --tw-scale-y: 1.1; } - .md\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .md\:scale-y-125 { + --tw-scale-y: 1.25; } - .md\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .md\:scale-y-150 { + --tw-scale-y: 1.5; } - .md\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .md\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .md\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .md\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .md\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .md\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .md\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .md\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .md\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .md\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .md\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .md\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .md\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .md\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .md\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .md\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .md\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .md\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .md\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .md\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .md\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .md\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .md\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .md\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .md\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .md\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .md\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .md\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .md\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .md\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .md\:rounded-tl-none { - border-top-left-radius: 0px; + .md\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .md\:rounded-tr-none { - border-top-right-radius: 0px; + .md\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .md\:rounded-br-none { - border-bottom-right-radius: 0px; + .md\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .md\:rounded-bl-none { - border-bottom-left-radius: 0px; + .md\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .md\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .md\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .md\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .md\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .md\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .md\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .md\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .md\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .md\:rounded-tl { - border-top-left-radius: 0.25rem; + .md\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .md\:rounded-tr { - border-top-right-radius: 0.25rem; + .md\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .md\:rounded-br { - border-bottom-right-radius: 0.25rem; + .md\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .md\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .md\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .md\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .md\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .md\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .md\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .md\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .md\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .md\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .md\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .md\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .md\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .md\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .md\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .md\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .md\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .md\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .md\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .md\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .md\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .md\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .md\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .md\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .md\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .md\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .md\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .md\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .md\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .md\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .md\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .md\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .md\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .md\:rounded-tl-full { - border-top-left-radius: 9999px; + .md\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .md\:rounded-tr-full { - border-top-right-radius: 9999px; + .md\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .md\:rounded-br-full { - border-bottom-right-radius: 9999px; + .md\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .md\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .md\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .md\:border-solid { - border-style: solid; + .md\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .md\:border-dashed { - border-style: dashed; + .md\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .md\:border-dotted { - border-style: dotted; + .md\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .md\:border-double { - border-style: double; + .md\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .md\:border-none { - border-style: none; + .md\:animate-none { + animation: none; } - .md\:border-0 { - border-width: 0px; + .md\:animate-spin { + animation: spin 1s linear infinite; } - .md\:border-2 { - border-width: 2px; + .md\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .md\:border-4 { - border-width: 4px; + .md\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .md\:border-8 { - border-width: 8px; + .md\:animate-bounce { + animation: bounce 1s infinite; } - .md\:border { - border-width: 1px; + .md\:cursor-auto { + cursor: auto; } - .md\:border-t-0 { - border-top-width: 0px; + .md\:cursor-default { + cursor: default; } - .md\:border-r-0 { - border-right-width: 0px; + .md\:cursor-pointer { + cursor: pointer; } - .md\:border-b-0 { - border-bottom-width: 0px; + .md\:cursor-wait { + cursor: wait; } - .md\:border-l-0 { - border-left-width: 0px; + .md\:cursor-text { + cursor: text; } - .md\:border-t-2 { - border-top-width: 2px; + .md\:cursor-move { + cursor: move; } - .md\:border-r-2 { - border-right-width: 2px; + .md\:cursor-help { + cursor: help; } - .md\:border-b-2 { - border-bottom-width: 2px; + .md\:cursor-not-allowed { + cursor: not-allowed; } - .md\:border-l-2 { - border-left-width: 2px; + .md\:select-none { + user-select: none; } - .md\:border-t-4 { - border-top-width: 4px; + .md\:select-text { + user-select: text; } - .md\:border-r-4 { - border-right-width: 4px; + .md\:select-all { + user-select: all; } - .md\:border-b-4 { - border-bottom-width: 4px; + .md\:select-auto { + user-select: auto; } - .md\:border-l-4 { - border-left-width: 4px; + .md\:resize-none { + resize: none; } - .md\:border-t-8 { - border-top-width: 8px; + .md\:resize-y { + resize: vertical; } - .md\:border-r-8 { - border-right-width: 8px; + .md\:resize-x { + resize: horizontal; } - .md\:border-b-8 { - border-bottom-width: 8px; + .md\:resize { + resize: both; } - .md\:border-l-8 { - border-left-width: 8px; + .md\:list-inside { + list-style-position: inside; } - .md\:border-t { - border-top-width: 1px; + .md\:list-outside { + list-style-position: outside; } - .md\:border-r { - border-right-width: 1px; + .md\:list-none { + list-style-type: none; } - .md\:border-b { - border-bottom-width: 1px; + .md\:list-disc { + list-style-type: disc; } - .md\:border-l { - border-left-width: 1px; + .md\:list-decimal { + list-style-type: decimal; } - .md\:decoration-slice { - box-decoration-break: slice; + .md\:appearance-none { + appearance: none; } - .md\:decoration-clone { - box-decoration-break: clone; + .md\:auto-cols-auto { + grid-auto-columns: auto; } - .md\:box-border { - box-sizing: border-box; + .md\:auto-cols-min { + grid-auto-columns: min-content; } - .md\:box-content { - box-sizing: content-box; + .md\:auto-cols-max { + grid-auto-columns: max-content; } - .md\:cursor-auto { - cursor: auto; + .md\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .md\:cursor-default { - cursor: default; + .md\:grid-flow-row { + grid-auto-flow: row; } - .md\:cursor-pointer { - cursor: pointer; + .md\:grid-flow-col { + grid-auto-flow: column; } - .md\:cursor-wait { - cursor: wait; + .md\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .md\:cursor-text { - cursor: text; + .md\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .md\:cursor-move { - cursor: move; + .md\:auto-rows-auto { + grid-auto-rows: auto; } - .md\:cursor-help { - cursor: help; + .md\:auto-rows-min { + grid-auto-rows: min-content; } - .md\:cursor-not-allowed { - cursor: not-allowed; + .md\:auto-rows-max { + grid-auto-rows: max-content; } - .md\:block { - display: block; + .md\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .md\:inline-block { - display: inline-block; + .md\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .md\:inline { - display: inline; + .md\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .md\:flex { - display: flex; + .md\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .md\:inline-flex { - display: inline-flex; + .md\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .md\:table { - display: table; + .md\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .md\:inline-table { - display: inline-table; + .md\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .md\:table-caption { - display: table-caption; + .md\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .md\:table-cell { - display: table-cell; + .md\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .md\:table-column { - display: table-column; + .md\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .md\:table-column-group { - display: table-column-group; + .md\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .md\:table-footer-group { - display: table-footer-group; + .md\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .md\:table-header-group { - display: table-header-group; + .md\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .md\:table-row-group { - display: table-row-group; + .md\:grid-cols-none { + grid-template-columns: none; } - .md\:table-row { - display: table-row; + .md\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .md\:flow-root { - display: flow-root; + .md\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .md\:grid { - display: grid; + .md\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .md\:inline-grid { - display: inline-grid; + .md\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .md\:contents { - display: contents; + .md\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .md\:list-item { - display: list-item; + .md\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .md\:hidden { - display: none; + .md\:grid-rows-none { + grid-template-rows: none; } .md\:flex-row { @@ -62619,22 +63406,6 @@ video { flex-wrap: nowrap; } - .md\:place-items-start { - place-items: start; - } - - .md\:place-items-end { - place-items: end; - } - - .md\:place-items-center { - place-items: center; - } - - .md\:place-items-stretch { - place-items: stretch; - } - .md\:place-content-center { place-content: center; } @@ -62663,44 +63434,20 @@ video { place-content: stretch; } - .md\:place-self-auto { - place-self: auto; - } - - .md\:place-self-start { - place-self: start; - } - - .md\:place-self-end { - place-self: end; - } - - .md\:place-self-center { - place-self: center; - } - - .md\:place-self-stretch { - place-self: stretch; - } - - .md\:items-start { - align-items: flex-start; - } - - .md\:items-end { - align-items: flex-end; + .md\:place-items-start { + place-items: start; } - .md\:items-center { - align-items: center; + .md\:place-items-end { + place-items: end; } - .md\:items-baseline { - align-items: baseline; + .md\:place-items-center { + place-items: center; } - .md\:items-stretch { - align-items: stretch; + .md\:place-items-stretch { + place-items: stretch; } .md\:content-center { @@ -62727,24 +63474,48 @@ video { align-content: space-evenly; } - .md\:self-auto { - align-self: auto; + .md\:items-start { + align-items: flex-start; } - .md\:self-start { - align-self: flex-start; + .md\:items-end { + align-items: flex-end; } - .md\:self-end { - align-self: flex-end; + .md\:items-center { + align-items: center; } - .md\:self-center { - align-self: center; + .md\:items-baseline { + align-items: baseline; } - .md\:self-stretch { - align-self: stretch; + .md\:items-stretch { + align-items: stretch; + } + + .md\:justify-start { + justify-content: flex-start; + } + + .md\:justify-end { + justify-content: flex-end; + } + + .md\:justify-center { + justify-content: center; + } + + .md\:justify-between { + justify-content: space-between; + } + + .md\:justify-around { + justify-content: space-around; + } + + .md\:justify-evenly { + justify-content: space-evenly; } .md\:justify-items-start { @@ -62763,10885 +63534,10587 @@ video { justify-items: stretch; } - .md\:justify-start { - justify-content: flex-start; + .md\:gap-0 { + gap: 0px; } - .md\:justify-end { - justify-content: flex-end; + .md\:gap-1 { + gap: 0.25rem; } - .md\:justify-center { - justify-content: center; + .md\:gap-2 { + gap: 0.5rem; } - .md\:justify-between { - justify-content: space-between; + .md\:gap-3 { + gap: 0.75rem; } - .md\:justify-around { - justify-content: space-around; + .md\:gap-4 { + gap: 1rem; } - .md\:justify-evenly { - justify-content: space-evenly; + .md\:gap-5 { + gap: 1.25rem; } - .md\:justify-self-auto { - justify-self: auto; + .md\:gap-6 { + gap: 1.5rem; } - .md\:justify-self-start { - justify-self: start; + .md\:gap-7 { + gap: 1.75rem; } - .md\:justify-self-end { - justify-self: end; + .md\:gap-8 { + gap: 2rem; } - .md\:justify-self-center { - justify-self: center; + .md\:gap-9 { + gap: 2.25rem; } - .md\:justify-self-stretch { - justify-self: stretch; + .md\:gap-10 { + gap: 2.5rem; } - .md\:flex-1 { - flex: 1 1 0%; + .md\:gap-11 { + gap: 2.75rem; } - .md\:flex-auto { - flex: 1 1 auto; + .md\:gap-12 { + gap: 3rem; } - .md\:flex-initial { - flex: 0 1 auto; + .md\:gap-14 { + gap: 3.5rem; } - .md\:flex-none { - flex: none; + .md\:gap-16 { + gap: 4rem; } - .md\:flex-grow-0 { - flex-grow: 0; + .md\:gap-20 { + gap: 5rem; } - .md\:flex-grow { - flex-grow: 1; + .md\:gap-24 { + gap: 6rem; } - .md\:flex-shrink-0 { - flex-shrink: 0; + .md\:gap-28 { + gap: 7rem; } - .md\:flex-shrink { - flex-shrink: 1; + .md\:gap-32 { + gap: 8rem; } - .md\:order-1 { - order: 1; + .md\:gap-36 { + gap: 9rem; } - .md\:order-2 { - order: 2; + .md\:gap-40 { + gap: 10rem; } - .md\:order-3 { - order: 3; + .md\:gap-44 { + gap: 11rem; } - .md\:order-4 { - order: 4; + .md\:gap-48 { + gap: 12rem; } - .md\:order-5 { - order: 5; + .md\:gap-52 { + gap: 13rem; } - .md\:order-6 { - order: 6; + .md\:gap-56 { + gap: 14rem; } - .md\:order-7 { - order: 7; + .md\:gap-60 { + gap: 15rem; } - .md\:order-8 { - order: 8; + .md\:gap-64 { + gap: 16rem; } - .md\:order-9 { - order: 9; + .md\:gap-72 { + gap: 18rem; } - .md\:order-10 { - order: 10; + .md\:gap-80 { + gap: 20rem; } - .md\:order-11 { - order: 11; + .md\:gap-96 { + gap: 24rem; } - .md\:order-12 { - order: 12; + .md\:gap-px { + gap: 1px; } - .md\:order-first { - order: -9999; + .md\:gap-0\.5 { + gap: 0.125rem; } - .md\:order-last { - order: 9999; + .md\:gap-1\.5 { + gap: 0.375rem; } - .md\:order-none { - order: 0; + .md\:gap-2\.5 { + gap: 0.625rem; } - .md\:float-right { - float: right; + .md\:gap-3\.5 { + gap: 0.875rem; } - .md\:float-left { - float: left; + .md\:gap-x-0 { + column-gap: 0px; } - .md\:float-none { - float: none; + .md\:gap-x-1 { + column-gap: 0.25rem; } - .md\:clear-left { - clear: left; + .md\:gap-x-2 { + column-gap: 0.5rem; } - .md\:clear-right { - clear: right; + .md\:gap-x-3 { + column-gap: 0.75rem; } - .md\:clear-both { - clear: both; + .md\:gap-x-4 { + column-gap: 1rem; } - .md\:clear-none { - clear: none; + .md\:gap-x-5 { + column-gap: 1.25rem; } - .md\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .md\:gap-x-6 { + column-gap: 1.5rem; } - .md\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .md\:gap-x-7 { + column-gap: 1.75rem; } - .md\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .md\:gap-x-8 { + column-gap: 2rem; } - .md\:font-thin { - font-weight: 100; + .md\:gap-x-9 { + column-gap: 2.25rem; } - .md\:font-extralight { - font-weight: 200; + .md\:gap-x-10 { + column-gap: 2.5rem; } - .md\:font-light { - font-weight: 300; + .md\:gap-x-11 { + column-gap: 2.75rem; } - .md\:font-normal { - font-weight: 400; + .md\:gap-x-12 { + column-gap: 3rem; } - .md\:font-medium { - font-weight: 500; + .md\:gap-x-14 { + column-gap: 3.5rem; } - .md\:font-semibold { - font-weight: 600; + .md\:gap-x-16 { + column-gap: 4rem; } - .md\:font-bold { - font-weight: 700; + .md\:gap-x-20 { + column-gap: 5rem; } - .md\:font-extrabold { - font-weight: 800; + .md\:gap-x-24 { + column-gap: 6rem; } - .md\:font-black { - font-weight: 900; + .md\:gap-x-28 { + column-gap: 7rem; } - .md\:h-0 { - height: 0px; + .md\:gap-x-32 { + column-gap: 8rem; } - .md\:h-1 { - height: 0.25rem; + .md\:gap-x-36 { + column-gap: 9rem; } - .md\:h-2 { - height: 0.5rem; + .md\:gap-x-40 { + column-gap: 10rem; } - .md\:h-3 { - height: 0.75rem; + .md\:gap-x-44 { + column-gap: 11rem; } - .md\:h-4 { - height: 1rem; + .md\:gap-x-48 { + column-gap: 12rem; } - .md\:h-5 { - height: 1.25rem; + .md\:gap-x-52 { + column-gap: 13rem; } - .md\:h-6 { - height: 1.5rem; + .md\:gap-x-56 { + column-gap: 14rem; } - .md\:h-7 { - height: 1.75rem; + .md\:gap-x-60 { + column-gap: 15rem; } - .md\:h-8 { - height: 2rem; + .md\:gap-x-64 { + column-gap: 16rem; } - .md\:h-9 { - height: 2.25rem; + .md\:gap-x-72 { + column-gap: 18rem; } - .md\:h-10 { - height: 2.5rem; + .md\:gap-x-80 { + column-gap: 20rem; } - .md\:h-11 { - height: 2.75rem; + .md\:gap-x-96 { + column-gap: 24rem; } - .md\:h-12 { - height: 3rem; + .md\:gap-x-px { + column-gap: 1px; } - .md\:h-14 { - height: 3.5rem; + .md\:gap-x-0\.5 { + column-gap: 0.125rem; } - .md\:h-16 { - height: 4rem; + .md\:gap-x-1\.5 { + column-gap: 0.375rem; } - .md\:h-20 { - height: 5rem; + .md\:gap-x-2\.5 { + column-gap: 0.625rem; } - .md\:h-24 { - height: 6rem; + .md\:gap-x-3\.5 { + column-gap: 0.875rem; } - .md\:h-28 { - height: 7rem; + .md\:gap-y-0 { + row-gap: 0px; } - .md\:h-32 { - height: 8rem; + .md\:gap-y-1 { + row-gap: 0.25rem; } - .md\:h-36 { - height: 9rem; + .md\:gap-y-2 { + row-gap: 0.5rem; } - .md\:h-40 { - height: 10rem; + .md\:gap-y-3 { + row-gap: 0.75rem; + } + + .md\:gap-y-4 { + row-gap: 1rem; } - .md\:h-44 { - height: 11rem; + .md\:gap-y-5 { + row-gap: 1.25rem; } - .md\:h-48 { - height: 12rem; + .md\:gap-y-6 { + row-gap: 1.5rem; } - .md\:h-52 { - height: 13rem; + .md\:gap-y-7 { + row-gap: 1.75rem; } - .md\:h-56 { - height: 14rem; + .md\:gap-y-8 { + row-gap: 2rem; } - .md\:h-60 { - height: 15rem; + .md\:gap-y-9 { + row-gap: 2.25rem; } - .md\:h-64 { - height: 16rem; + .md\:gap-y-10 { + row-gap: 2.5rem; } - .md\:h-72 { - height: 18rem; + .md\:gap-y-11 { + row-gap: 2.75rem; } - .md\:h-80 { - height: 20rem; + .md\:gap-y-12 { + row-gap: 3rem; } - .md\:h-96 { - height: 24rem; + .md\:gap-y-14 { + row-gap: 3.5rem; } - .md\:h-auto { - height: auto; + .md\:gap-y-16 { + row-gap: 4rem; } - .md\:h-px { - height: 1px; + .md\:gap-y-20 { + row-gap: 5rem; } - .md\:h-0\.5 { - height: 0.125rem; + .md\:gap-y-24 { + row-gap: 6rem; } - .md\:h-1\.5 { - height: 0.375rem; + .md\:gap-y-28 { + row-gap: 7rem; } - .md\:h-2\.5 { - height: 0.625rem; + .md\:gap-y-32 { + row-gap: 8rem; } - .md\:h-3\.5 { - height: 0.875rem; + .md\:gap-y-36 { + row-gap: 9rem; } - .md\:h-1\/2 { - height: 50%; + .md\:gap-y-40 { + row-gap: 10rem; } - .md\:h-1\/3 { - height: 33.333333%; + .md\:gap-y-44 { + row-gap: 11rem; } - .md\:h-2\/3 { - height: 66.666667%; + .md\:gap-y-48 { + row-gap: 12rem; } - .md\:h-1\/4 { - height: 25%; + .md\:gap-y-52 { + row-gap: 13rem; } - .md\:h-2\/4 { - height: 50%; + .md\:gap-y-56 { + row-gap: 14rem; } - .md\:h-3\/4 { - height: 75%; + .md\:gap-y-60 { + row-gap: 15rem; } - .md\:h-1\/5 { - height: 20%; + .md\:gap-y-64 { + row-gap: 16rem; } - .md\:h-2\/5 { - height: 40%; + .md\:gap-y-72 { + row-gap: 18rem; } - .md\:h-3\/5 { - height: 60%; + .md\:gap-y-80 { + row-gap: 20rem; } - .md\:h-4\/5 { - height: 80%; + .md\:gap-y-96 { + row-gap: 24rem; } - .md\:h-1\/6 { - height: 16.666667%; + .md\:gap-y-px { + row-gap: 1px; } - .md\:h-2\/6 { - height: 33.333333%; + .md\:gap-y-0\.5 { + row-gap: 0.125rem; } - .md\:h-3\/6 { - height: 50%; + .md\:gap-y-1\.5 { + row-gap: 0.375rem; } - .md\:h-4\/6 { - height: 66.666667%; + .md\:gap-y-2\.5 { + row-gap: 0.625rem; } - .md\:h-5\/6 { - height: 83.333333%; + .md\:gap-y-3\.5 { + row-gap: 0.875rem; } - .md\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .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\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .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\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .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\:leading-7 { - line-height: 1.75rem; + .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\:leading-8 { - line-height: 2rem; + .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\:leading-9 { - line-height: 2.25rem; + .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\:leading-10 { - line-height: 2.5rem; + .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\:leading-none { - line-height: 1; + .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\:leading-tight { - line-height: 1.25; + .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\:leading-snug { - line-height: 1.375; + .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\:leading-normal { - line-height: 1.5; + .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\:leading-relaxed { - line-height: 1.625; + .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\:leading-loose { - line-height: 2; + .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\:list-inside { - list-style-position: inside; + .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\:list-outside { - list-style-position: outside; + .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\:list-none { - list-style-type: none; + .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\:list-disc { - list-style-type: disc; + .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\:list-decimal { - list-style-type: decimal; + .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\:m-0 { - margin: 0px; + .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\:m-1 { - margin: 0.25rem; + .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\:m-2 { - margin: 0.5rem; + .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\:m-3 { - margin: 0.75rem; + .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\:m-4 { - margin: 1rem; + .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\:m-5 { - margin: 1.25rem; + .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\:m-6 { - margin: 1.5rem; + .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\:m-7 { - margin: 1.75rem; + .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\:m-8 { - margin: 2rem; + .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\:m-9 { - margin: 2.25rem; + .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\:m-10 { - margin: 2.5rem; + .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\:m-11 { - margin: 2.75rem; + .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\:m-12 { - margin: 3rem; + .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\:m-14 { - margin: 3.5rem; + .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\:m-16 { - margin: 4rem; + .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\:m-20 { - margin: 5rem; + .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\:m-24 { - margin: 6rem; + .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\:m-28 { - margin: 7rem; + .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\:m-32 { - margin: 8rem; + .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\:m-36 { - margin: 9rem; + .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\:m-40 { - margin: 10rem; + .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\:m-44 { - margin: 11rem; + .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\:m-48 { - margin: 12rem; + .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\:m-52 { - margin: 13rem; + .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\:m-56 { - margin: 14rem; + .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\:m-60 { - margin: 15rem; + .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\:m-64 { - margin: 16rem; + .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\:m-72 { - margin: 18rem; + .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\:m-80 { - margin: 20rem; + .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\:m-96 { - margin: 24rem; + .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\:m-auto { - margin: auto; + .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\:m-px { - margin: 1px; + .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\:m-0\.5 { - margin: 0.125rem; + .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\:m-1\.5 { - margin: 0.375rem; + .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\:m-2\.5 { - margin: 0.625rem; + .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\:m-3\.5 { - margin: 0.875rem; + .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\:-m-0 { - margin: 0px; + .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\:-m-1 { - margin: -0.25rem; + .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\:-m-2 { - margin: -0.5rem; + .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\:-m-3 { - margin: -0.75rem; + .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\:-m-4 { - margin: -1rem; + .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\:-m-5 { - margin: -1.25rem; + .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\:-m-6 { - margin: -1.5rem; + .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\:-m-7 { - margin: -1.75rem; + .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\:-m-8 { - margin: -2rem; + .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\:-m-9 { - margin: -2.25rem; + .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\:-m-10 { - margin: -2.5rem; + .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\:-m-11 { - margin: -2.75rem; + .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\:-m-12 { - margin: -3rem; + .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\:-m-14 { - margin: -3.5rem; + .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\:-m-16 { - margin: -4rem; + .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\:-m-20 { - margin: -5rem; + .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\:-m-24 { - margin: -6rem; + .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\:-m-28 { - margin: -7rem; + .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\:-m-32 { - margin: -8rem; + .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\:-m-36 { - margin: -9rem; + .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\:-m-40 { - margin: -10rem; + .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\:-m-44 { - margin: -11rem; + .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\:-m-48 { - margin: -12rem; + .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\:-m-52 { - margin: -13rem; + .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\:-m-56 { - margin: -14rem; + .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\:-m-60 { - margin: -15rem; + .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\:-m-64 { - margin: -16rem; + .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\:-m-72 { - margin: -18rem; + .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\:-m-80 { - margin: -20rem; + .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\:-m-96 { - margin: -24rem; + .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\:-m-px { - margin: -1px; + .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\:-m-0\.5 { - margin: -0.125rem; + .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\:-m-1\.5 { - margin: -0.375rem; + .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\:-m-2\.5 { - margin: -0.625rem; + .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\:-m-3\.5 { - margin: -0.875rem; + .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\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .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\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .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\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .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\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .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\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .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\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .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\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .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\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .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\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .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\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .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\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .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\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .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\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .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\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .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\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .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\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .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\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .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\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .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\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .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\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .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\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .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\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .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\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .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\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .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\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .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\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .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\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .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\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .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\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .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\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .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\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .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\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .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\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .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\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .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\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .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\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .md\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .md\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .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\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .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\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .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\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .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\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .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\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .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\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .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\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .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\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .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\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .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\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .md\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .md\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .md\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .md\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .md\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .md\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .md\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .md\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .md\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .md\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .md\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .md\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .md\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .md\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .md\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .md\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .md\:divide-black > :not([hidden]) ~ :not([hidden]) { + border-color: #000; } - .md\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .md\:divide-white > :not([hidden]) ~ :not([hidden]) { + border-color: #fff; } - .md\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .md\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9fafb; } - .md\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #f3f4f6; } - .md\:my-auto { - margin-top: auto; - margin-bottom: auto; + .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #e5e7eb; } - .md\:mx-auto { - margin-left: auto; - margin-right: auto; + .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1d5db; } - .md\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #9ca3af; } - .md\:mx-px { - margin-left: 1px; - margin-right: 1px; + .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6b7280; } - .md\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4b5563; } - .md\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #374151; } - .md\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1f2937; } - .md\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #111827; } - .md\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .md\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef2f2; } - .md\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fee2e2; } - .md\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fecaca; } - .md\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fca5a5; } - .md\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f87171; } - .md\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ef4444; } - .md\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #dc2626; } - .md\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b91c1c; } - .md\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #991b1b; } - .md\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #7f1d1d; } - .md\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .md\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fffbeb; } - .md\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef3c7; } - .md\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fde68a; } - .md\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fcd34d; } - .md\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbbf24; } - .md\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #f59e0b; } - .md\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #d97706; } - .md\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b45309; } - .md\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #92400e; } - .md\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #78350f; } - .md\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .md\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #ecfdf5; } - .md\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1fae5; } - .md\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #a7f3d0; } - .md\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #6ee7b7; } - .md\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #34d399; } - .md\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #10b981; } - .md\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #059669; } - .md\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #047857; } - .md\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #065f46; } - .md\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #064e3b; } - .md\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .md\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eff6ff; } - .md\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #dbeafe; } - .md\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #bfdbfe; } - .md\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #93c5fd; } - .md\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #60a5fa; } - .md\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #3b82f6; } - .md\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #2563eb; } - .md\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #1d4ed8; } - .md\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e40af; } - .md\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e3a8a; } - .md\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .md\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eef2ff; } - .md\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #e0e7ff; } - .md\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #c7d2fe; } - .md\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #a5b4fc; } - .md\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #818cf8; } - .md\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6366f1; } - .md\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4f46e5; } - .md\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #4338ca; } - .md\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #3730a3; } - .md\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #312e81; } - .md\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .md\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f5f3ff; } - .md\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .md\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #ede9fe; } - .md\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .md\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #ddd6fe; } - .md\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .md\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #c4b5fd; } - .md\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .md\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #a78bfa; } - .md\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .md\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #8b5cf6; } - .md\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .md\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #7c3aed; } - .md\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .md\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #6d28d9; } - .md\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .md\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #5b21b6; } - .md\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .md\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #4c1d95; } - .md\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .md\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fdf2f8; } - .md\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .md\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fce7f3; } - .md\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .md\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbcfe8; } - .md\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .md\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9a8d4; } - .md\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .md\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f472b6; } - .md\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .md\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ec4899; } - .md\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .md\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #db2777; } - .md\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .md\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #be185d; } - .md\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .md\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #9d174d; } - .md\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .md\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #831843; } - .md\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .md\:place-self-auto { + place-self: auto; } - .md\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .md\:place-self-start { + place-self: start; } - .md\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .md\:place-self-end { + place-self: end; } - .md\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .md\:place-self-center { + place-self: center; } - .md\:mt-0 { - margin-top: 0px; + .md\:place-self-stretch { + place-self: stretch; } - .md\:mr-0 { - margin-right: 0px; + .md\:self-auto { + align-self: auto; } - .md\:mb-0 { - margin-bottom: 0px; + .md\:self-start { + align-self: flex-start; } - .md\:ml-0 { - margin-left: 0px; + .md\:self-end { + align-self: flex-end; } - .md\:mt-1 { - margin-top: 0.25rem; + .md\:self-center { + align-self: center; } - .md\:mr-1 { - margin-right: 0.25rem; + .md\:self-stretch { + align-self: stretch; } - .md\:mb-1 { - margin-bottom: 0.25rem; + .md\:justify-self-auto { + justify-self: auto; } - .md\:ml-1 { - margin-left: 0.25rem; + .md\:justify-self-start { + justify-self: start; } - .md\:mt-2 { - margin-top: 0.5rem; + .md\:justify-self-end { + justify-self: end; } - .md\:mr-2 { - margin-right: 0.5rem; + .md\:justify-self-center { + justify-self: center; } - .md\:mb-2 { - margin-bottom: 0.5rem; + .md\:justify-self-stretch { + justify-self: stretch; } - .md\:ml-2 { - margin-left: 0.5rem; + .md\:overflow-auto { + overflow: auto; } - .md\:mt-3 { - margin-top: 0.75rem; + .md\:overflow-hidden { + overflow: hidden; } - .md\:mr-3 { - margin-right: 0.75rem; + .md\:overflow-visible { + overflow: visible; } - .md\:mb-3 { - margin-bottom: 0.75rem; + .md\:overflow-scroll { + overflow: scroll; } - .md\:ml-3 { - margin-left: 0.75rem; + .md\:overflow-x-auto { + overflow-x: auto; } - .md\:mt-4 { - margin-top: 1rem; + .md\:overflow-y-auto { + overflow-y: auto; } - .md\:mr-4 { - margin-right: 1rem; + .md\:overflow-x-hidden { + overflow-x: hidden; } - .md\:mb-4 { - margin-bottom: 1rem; + .md\:overflow-y-hidden { + overflow-y: hidden; } - .md\:ml-4 { - margin-left: 1rem; + .md\:overflow-x-visible { + overflow-x: visible; } - .md\:mt-5 { - margin-top: 1.25rem; + .md\:overflow-y-visible { + overflow-y: visible; } - .md\:mr-5 { - margin-right: 1.25rem; + .md\:overflow-x-scroll { + overflow-x: scroll; } - .md\:mb-5 { - margin-bottom: 1.25rem; + .md\:overflow-y-scroll { + overflow-y: scroll; } - .md\:ml-5 { - margin-left: 1.25rem; + .md\:overscroll-auto { + overscroll-behavior: auto; } - .md\:mt-6 { - margin-top: 1.5rem; + .md\:overscroll-contain { + overscroll-behavior: contain; } - .md\:mr-6 { - margin-right: 1.5rem; + .md\:overscroll-none { + overscroll-behavior: none; } - .md\:mb-6 { - margin-bottom: 1.5rem; + .md\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .md\:ml-6 { - margin-left: 1.5rem; + .md\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .md\:mt-7 { - margin-top: 1.75rem; + .md\:overscroll-y-none { + overscroll-behavior-y: none; } - .md\:mr-7 { - margin-right: 1.75rem; + .md\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .md\:mb-7 { - margin-bottom: 1.75rem; + .md\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .md\:ml-7 { - margin-left: 1.75rem; + .md\:overscroll-x-none { + overscroll-behavior-x: none; } - .md\:mt-8 { - margin-top: 2rem; + .md\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .md\:mr-8 { - margin-right: 2rem; + .md\:overflow-ellipsis { + text-overflow: ellipsis; } - .md\:mb-8 { - margin-bottom: 2rem; + .md\:overflow-clip { + text-overflow: clip; } - .md\:ml-8 { - margin-left: 2rem; + .md\:whitespace-normal { + white-space: normal; } - .md\:mt-9 { - margin-top: 2.25rem; + .md\:whitespace-nowrap { + white-space: nowrap; } - .md\:mr-9 { - margin-right: 2.25rem; + .md\:whitespace-pre { + white-space: pre; } - .md\:mb-9 { - margin-bottom: 2.25rem; + .md\:whitespace-pre-line { + white-space: pre-line; } - .md\:ml-9 { - margin-left: 2.25rem; + .md\:whitespace-pre-wrap { + white-space: pre-wrap; } - .md\:mt-10 { - margin-top: 2.5rem; + .md\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .md\:mr-10 { - margin-right: 2.5rem; + .md\:break-words { + overflow-wrap: break-word; } - .md\:mb-10 { - margin-bottom: 2.5rem; + .md\:break-all { + word-break: break-all; } - .md\:ml-10 { - margin-left: 2.5rem; + .md\:rounded-none { + border-radius: 0px; } - .md\:mt-11 { - margin-top: 2.75rem; + .md\:rounded-sm { + border-radius: 0.125rem; } - .md\:mr-11 { - margin-right: 2.75rem; + .md\:rounded { + border-radius: 0.25rem; } - .md\:mb-11 { - margin-bottom: 2.75rem; + .md\:rounded-md { + border-radius: 0.375rem; } - .md\:ml-11 { - margin-left: 2.75rem; + .md\:rounded-lg { + border-radius: 0.5rem; } - .md\:mt-12 { - margin-top: 3rem; + .md\:rounded-xl { + border-radius: 0.75rem; } - .md\:mr-12 { - margin-right: 3rem; + .md\:rounded-2xl { + border-radius: 1rem; } - .md\:mb-12 { - margin-bottom: 3rem; + .md\:rounded-3xl { + border-radius: 1.5rem; } - .md\:ml-12 { - margin-left: 3rem; + .md\:rounded-full { + border-radius: 9999px; } - .md\:mt-14 { - margin-top: 3.5rem; + .md\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .md\:mr-14 { - margin-right: 3.5rem; + .md\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .md\:mb-14 { - margin-bottom: 3.5rem; + .md\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .md\:ml-14 { - margin-left: 3.5rem; + .md\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .md\:mt-16 { - margin-top: 4rem; + .md\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .md\:mr-16 { - margin-right: 4rem; + .md\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .md\:mb-16 { - margin-bottom: 4rem; + .md\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .md\:ml-16 { - margin-left: 4rem; + .md\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .md\:mt-20 { - margin-top: 5rem; + .md\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .md\:mr-20 { - margin-right: 5rem; + .md\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .md\:mb-20 { - margin-bottom: 5rem; + .md\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .md\:ml-20 { - margin-left: 5rem; + .md\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .md\:mt-24 { - margin-top: 6rem; + .md\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .md\:mr-24 { - margin-right: 6rem; + .md\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .md\:mb-24 { - margin-bottom: 6rem; + .md\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .md\:ml-24 { - margin-left: 6rem; + .md\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .md\:mt-28 { - margin-top: 7rem; + .md\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .md\:mr-28 { - margin-right: 7rem; + .md\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .md\:mb-28 { - margin-bottom: 7rem; + .md\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .md\:ml-28 { - margin-left: 7rem; + .md\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .md\:mt-32 { - margin-top: 8rem; + .md\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .md\:mr-32 { - margin-right: 8rem; + .md\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .md\:mb-32 { - margin-bottom: 8rem; + .md\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .md\:ml-32 { - margin-left: 8rem; + .md\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .md\:mt-36 { - margin-top: 9rem; + .md\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .md\:mr-36 { - margin-right: 9rem; + .md\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .md\:mb-36 { - margin-bottom: 9rem; + .md\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .md\:ml-36 { - margin-left: 9rem; + .md\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .md\:mt-40 { - margin-top: 10rem; + .md\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .md\:mr-40 { - margin-right: 10rem; + .md\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .md\:mb-40 { - margin-bottom: 10rem; + .md\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .md\:ml-40 { - margin-left: 10rem; + .md\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .md\:mt-44 { - margin-top: 11rem; + .md\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .md\:mr-44 { - margin-right: 11rem; + .md\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .md\:mb-44 { - margin-bottom: 11rem; + .md\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .md\:ml-44 { - margin-left: 11rem; + .md\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .md\:mt-48 { - margin-top: 12rem; + .md\:rounded-tl-none { + border-top-left-radius: 0px; } - .md\:mr-48 { - margin-right: 12rem; + .md\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .md\:mb-48 { - margin-bottom: 12rem; + .md\:rounded-tl { + border-top-left-radius: 0.25rem; } - .md\:ml-48 { - margin-left: 12rem; + .md\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .md\:mt-52 { - margin-top: 13rem; + .md\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .md\:mr-52 { - margin-right: 13rem; + .md\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .md\:mb-52 { - margin-bottom: 13rem; + .md\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .md\:ml-52 { - margin-left: 13rem; + .md\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .md\:mt-56 { - margin-top: 14rem; + .md\:rounded-tl-full { + border-top-left-radius: 9999px; } - .md\:mr-56 { - margin-right: 14rem; + .md\:rounded-tr-none { + border-top-right-radius: 0px; } - .md\:mb-56 { - margin-bottom: 14rem; + .md\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .md\:ml-56 { - margin-left: 14rem; + .md\:rounded-tr { + border-top-right-radius: 0.25rem; } - .md\:mt-60 { - margin-top: 15rem; + .md\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .md\:mr-60 { - margin-right: 15rem; + .md\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .md\:mb-60 { - margin-bottom: 15rem; + .md\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .md\:ml-60 { - margin-left: 15rem; + .md\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .md\:mt-64 { - margin-top: 16rem; + .md\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .md\:mr-64 { - margin-right: 16rem; + .md\:rounded-tr-full { + border-top-right-radius: 9999px; } - .md\:mb-64 { - margin-bottom: 16rem; + .md\:rounded-br-none { + border-bottom-right-radius: 0px; } - .md\:ml-64 { - margin-left: 16rem; + .md\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .md\:mt-72 { - margin-top: 18rem; + .md\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .md\:mr-72 { - margin-right: 18rem; + .md\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .md\:mb-72 { - margin-bottom: 18rem; + .md\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .md\:ml-72 { - margin-left: 18rem; + .md\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .md\:mt-80 { - margin-top: 20rem; + .md\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .md\:mr-80 { - margin-right: 20rem; + .md\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .md\:mb-80 { - margin-bottom: 20rem; + .md\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .md\:ml-80 { - margin-left: 20rem; + .md\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .md\:mt-96 { - margin-top: 24rem; + .md\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .md\:mr-96 { - margin-right: 24rem; + .md\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .md\:mb-96 { - margin-bottom: 24rem; + .md\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .md\:ml-96 { - margin-left: 24rem; + .md\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .md\:mt-auto { - margin-top: auto; + .md\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .md\:mr-auto { - margin-right: auto; + .md\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .md\:mb-auto { - margin-bottom: auto; + .md\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .md\:ml-auto { - margin-left: auto; + .md\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .md\:mt-px { - margin-top: 1px; + .md\:border-0 { + border-width: 0px; } - .md\:mr-px { - margin-right: 1px; + .md\:border-2 { + border-width: 2px; } - .md\:mb-px { - margin-bottom: 1px; + .md\:border-4 { + border-width: 4px; } - .md\:ml-px { - margin-left: 1px; + .md\:border-8 { + border-width: 8px; } - .md\:mt-0\.5 { - margin-top: 0.125rem; + .md\:border { + border-width: 1px; } - .md\:mr-0\.5 { - margin-right: 0.125rem; + .md\:border-t-0 { + border-top-width: 0px; } - .md\:mb-0\.5 { - margin-bottom: 0.125rem; + .md\:border-t-2 { + border-top-width: 2px; } - .md\:ml-0\.5 { - margin-left: 0.125rem; + .md\:border-t-4 { + border-top-width: 4px; } - .md\:mt-1\.5 { - margin-top: 0.375rem; + .md\:border-t-8 { + border-top-width: 8px; } - .md\:mr-1\.5 { - margin-right: 0.375rem; + .md\:border-t { + border-top-width: 1px; } - .md\:mb-1\.5 { - margin-bottom: 0.375rem; + .md\:border-r-0 { + border-right-width: 0px; } - .md\:ml-1\.5 { - margin-left: 0.375rem; + .md\:border-r-2 { + border-right-width: 2px; } - .md\:mt-2\.5 { - margin-top: 0.625rem; + .md\:border-r-4 { + border-right-width: 4px; } - .md\:mr-2\.5 { - margin-right: 0.625rem; + .md\:border-r-8 { + border-right-width: 8px; } - .md\:mb-2\.5 { - margin-bottom: 0.625rem; + .md\:border-r { + border-right-width: 1px; } - .md\:ml-2\.5 { - margin-left: 0.625rem; + .md\:border-b-0 { + border-bottom-width: 0px; } - .md\:mt-3\.5 { - margin-top: 0.875rem; + .md\:border-b-2 { + border-bottom-width: 2px; } - .md\:mr-3\.5 { - margin-right: 0.875rem; + .md\:border-b-4 { + border-bottom-width: 4px; } - .md\:mb-3\.5 { - margin-bottom: 0.875rem; + .md\:border-b-8 { + border-bottom-width: 8px; } - .md\:ml-3\.5 { - margin-left: 0.875rem; + .md\:border-b { + border-bottom-width: 1px; } - .md\:-mt-0 { - margin-top: 0px; + .md\:border-l-0 { + border-left-width: 0px; } - .md\:-mr-0 { - margin-right: 0px; + .md\:border-l-2 { + border-left-width: 2px; } - .md\:-mb-0 { - margin-bottom: 0px; + .md\:border-l-4 { + border-left-width: 4px; } - .md\:-ml-0 { - margin-left: 0px; + .md\:border-l-8 { + border-left-width: 8px; } - .md\:-mt-1 { - margin-top: -0.25rem; + .md\:border-l { + border-left-width: 1px; } - .md\:-mr-1 { - margin-right: -0.25rem; + .md\:border-solid { + border-style: solid; } - .md\:-mb-1 { - margin-bottom: -0.25rem; + .md\:border-dashed { + border-style: dashed; } - .md\:-ml-1 { - margin-left: -0.25rem; + .md\:border-dotted { + border-style: dotted; } - .md\:-mt-2 { - margin-top: -0.5rem; + .md\:border-double { + border-style: double; } - .md\:-mr-2 { - margin-right: -0.5rem; + .md\:border-none { + border-style: none; } - .md\:-mb-2 { - margin-bottom: -0.5rem; + .md\:border-transparent { + border-color: transparent; } - .md\:-ml-2 { - margin-left: -0.5rem; + .md\:border-current { + border-color: currentColor; } - .md\:-mt-3 { - margin-top: -0.75rem; + .md\:border-black { + border-color: #000; } - .md\:-mr-3 { - margin-right: -0.75rem; + .md\:border-white { + border-color: #fff; } - .md\:-mb-3 { - margin-bottom: -0.75rem; + .md\:border-gray-50 { + border-color: #f9fafb; } - .md\:-ml-3 { - margin-left: -0.75rem; + .md\:border-gray-100 { + border-color: #f3f4f6; } - .md\:-mt-4 { - margin-top: -1rem; + .md\:border-gray-200 { + border-color: #e5e7eb; } - .md\:-mr-4 { - margin-right: -1rem; + .md\:border-gray-300 { + border-color: #d1d5db; } - .md\:-mb-4 { - margin-bottom: -1rem; + .md\:border-gray-400 { + border-color: #9ca3af; } - .md\:-ml-4 { - margin-left: -1rem; + .md\:border-gray-500 { + border-color: #6b7280; } - .md\:-mt-5 { - margin-top: -1.25rem; + .md\:border-gray-600 { + border-color: #4b5563; } - .md\:-mr-5 { - margin-right: -1.25rem; + .md\:border-gray-700 { + border-color: #374151; } - .md\:-mb-5 { - margin-bottom: -1.25rem; + .md\:border-gray-800 { + border-color: #1f2937; } - .md\:-ml-5 { - margin-left: -1.25rem; + .md\:border-gray-900 { + border-color: #111827; } - .md\:-mt-6 { - margin-top: -1.5rem; + .md\:border-red-50 { + border-color: #fef2f2; } - .md\:-mr-6 { - margin-right: -1.5rem; + .md\:border-red-100 { + border-color: #fee2e2; } - .md\:-mb-6 { - margin-bottom: -1.5rem; + .md\:border-red-200 { + border-color: #fecaca; } - .md\:-ml-6 { - margin-left: -1.5rem; + .md\:border-red-300 { + border-color: #fca5a5; } - .md\:-mt-7 { - margin-top: -1.75rem; + .md\:border-red-400 { + border-color: #f87171; } - .md\:-mr-7 { - margin-right: -1.75rem; + .md\:border-red-500 { + border-color: #ef4444; } - .md\:-mb-7 { - margin-bottom: -1.75rem; + .md\:border-red-600 { + border-color: #dc2626; } - .md\:-ml-7 { - margin-left: -1.75rem; + .md\:border-red-700 { + border-color: #b91c1c; } - .md\:-mt-8 { - margin-top: -2rem; + .md\:border-red-800 { + border-color: #991b1b; } - .md\:-mr-8 { - margin-right: -2rem; + .md\:border-red-900 { + border-color: #7f1d1d; } - .md\:-mb-8 { - margin-bottom: -2rem; + .md\:border-yellow-50 { + border-color: #fffbeb; } - .md\:-ml-8 { - margin-left: -2rem; + .md\:border-yellow-100 { + border-color: #fef3c7; } - .md\:-mt-9 { - margin-top: -2.25rem; + .md\:border-yellow-200 { + border-color: #fde68a; } - .md\:-mr-9 { - margin-right: -2.25rem; + .md\:border-yellow-300 { + border-color: #fcd34d; } - .md\:-mb-9 { - margin-bottom: -2.25rem; + .md\:border-yellow-400 { + border-color: #fbbf24; } - .md\:-ml-9 { - margin-left: -2.25rem; + .md\:border-yellow-500 { + border-color: #f59e0b; } - .md\:-mt-10 { - margin-top: -2.5rem; + .md\:border-yellow-600 { + border-color: #d97706; } - .md\:-mr-10 { - margin-right: -2.5rem; + .md\:border-yellow-700 { + border-color: #b45309; } - .md\:-mb-10 { - margin-bottom: -2.5rem; + .md\:border-yellow-800 { + border-color: #92400e; } - .md\:-ml-10 { - margin-left: -2.5rem; + .md\:border-yellow-900 { + border-color: #78350f; } - .md\:-mt-11 { - margin-top: -2.75rem; + .md\:border-green-50 { + border-color: #ecfdf5; } - .md\:-mr-11 { - margin-right: -2.75rem; + .md\:border-green-100 { + border-color: #d1fae5; } - .md\:-mb-11 { - margin-bottom: -2.75rem; + .md\:border-green-200 { + border-color: #a7f3d0; } - .md\:-ml-11 { - margin-left: -2.75rem; + .md\:border-green-300 { + border-color: #6ee7b7; } - .md\:-mt-12 { - margin-top: -3rem; + .md\:border-green-400 { + border-color: #34d399; } - .md\:-mr-12 { - margin-right: -3rem; + .md\:border-green-500 { + border-color: #10b981; } - .md\:-mb-12 { - margin-bottom: -3rem; + .md\:border-green-600 { + border-color: #059669; } - .md\:-ml-12 { - margin-left: -3rem; + .md\:border-green-700 { + border-color: #047857; } - .md\:-mt-14 { - margin-top: -3.5rem; + .md\:border-green-800 { + border-color: #065f46; } - .md\:-mr-14 { - margin-right: -3.5rem; + .md\:border-green-900 { + border-color: #064e3b; } - .md\:-mb-14 { - margin-bottom: -3.5rem; + .md\:border-blue-50 { + border-color: #eff6ff; } - .md\:-ml-14 { - margin-left: -3.5rem; + .md\:border-blue-100 { + border-color: #dbeafe; } - .md\:-mt-16 { - margin-top: -4rem; + .md\:border-blue-200 { + border-color: #bfdbfe; } - .md\:-mr-16 { - margin-right: -4rem; + .md\:border-blue-300 { + border-color: #93c5fd; } - .md\:-mb-16 { - margin-bottom: -4rem; + .md\:border-blue-400 { + border-color: #60a5fa; } - .md\:-ml-16 { - margin-left: -4rem; + .md\:border-blue-500 { + border-color: #3b82f6; } - .md\:-mt-20 { - margin-top: -5rem; + .md\:border-blue-600 { + border-color: #2563eb; } - .md\:-mr-20 { - margin-right: -5rem; + .md\:border-blue-700 { + border-color: #1d4ed8; } - .md\:-mb-20 { - margin-bottom: -5rem; + .md\:border-blue-800 { + border-color: #1e40af; } - .md\:-ml-20 { - margin-left: -5rem; + .md\:border-blue-900 { + border-color: #1e3a8a; } - .md\:-mt-24 { - margin-top: -6rem; + .md\:border-indigo-50 { + border-color: #eef2ff; } - .md\:-mr-24 { - margin-right: -6rem; + .md\:border-indigo-100 { + border-color: #e0e7ff; } - .md\:-mb-24 { - margin-bottom: -6rem; + .md\:border-indigo-200 { + border-color: #c7d2fe; } - .md\:-ml-24 { - margin-left: -6rem; + .md\:border-indigo-300 { + border-color: #a5b4fc; } - .md\:-mt-28 { - margin-top: -7rem; + .md\:border-indigo-400 { + border-color: #818cf8; } - .md\:-mr-28 { - margin-right: -7rem; + .md\:border-indigo-500 { + border-color: #6366f1; } - .md\:-mb-28 { - margin-bottom: -7rem; + .md\:border-indigo-600 { + border-color: #4f46e5; } - .md\:-ml-28 { - margin-left: -7rem; + .md\:border-indigo-700 { + border-color: #4338ca; } - .md\:-mt-32 { - margin-top: -8rem; + .md\:border-indigo-800 { + border-color: #3730a3; } - .md\:-mr-32 { - margin-right: -8rem; + .md\:border-indigo-900 { + border-color: #312e81; } - .md\:-mb-32 { - margin-bottom: -8rem; + .md\:border-purple-50 { + border-color: #f5f3ff; } - .md\:-ml-32 { - margin-left: -8rem; + .md\:border-purple-100 { + border-color: #ede9fe; } - .md\:-mt-36 { - margin-top: -9rem; + .md\:border-purple-200 { + border-color: #ddd6fe; } - .md\:-mr-36 { - margin-right: -9rem; + .md\:border-purple-300 { + border-color: #c4b5fd; } - .md\:-mb-36 { - margin-bottom: -9rem; + .md\:border-purple-400 { + border-color: #a78bfa; } - .md\:-ml-36 { - margin-left: -9rem; + .md\:border-purple-500 { + border-color: #8b5cf6; } - .md\:-mt-40 { - margin-top: -10rem; + .md\:border-purple-600 { + border-color: #7c3aed; } - .md\:-mr-40 { - margin-right: -10rem; + .md\:border-purple-700 { + border-color: #6d28d9; } - .md\:-mb-40 { - margin-bottom: -10rem; + .md\:border-purple-800 { + border-color: #5b21b6; } - .md\:-ml-40 { - margin-left: -10rem; + .md\:border-purple-900 { + border-color: #4c1d95; } - .md\:-mt-44 { - margin-top: -11rem; + .md\:border-pink-50 { + border-color: #fdf2f8; } - .md\:-mr-44 { - margin-right: -11rem; + .md\:border-pink-100 { + border-color: #fce7f3; } - .md\:-mb-44 { - margin-bottom: -11rem; + .md\:border-pink-200 { + border-color: #fbcfe8; } - .md\:-ml-44 { - margin-left: -11rem; + .md\:border-pink-300 { + border-color: #f9a8d4; } - .md\:-mt-48 { - margin-top: -12rem; + .md\:border-pink-400 { + border-color: #f472b6; } - .md\:-mr-48 { - margin-right: -12rem; + .md\:border-pink-500 { + border-color: #ec4899; } - .md\:-mb-48 { - margin-bottom: -12rem; + .md\:border-pink-600 { + border-color: #db2777; } - .md\:-ml-48 { - margin-left: -12rem; + .md\:border-pink-700 { + border-color: #be185d; } - .md\:-mt-52 { - margin-top: -13rem; + .md\:border-pink-800 { + border-color: #9d174d; } - .md\:-mr-52 { - margin-right: -13rem; + .md\:border-pink-900 { + border-color: #831843; } - .md\:-mb-52 { - margin-bottom: -13rem; + .group:hover .md\:group-hover\:border-transparent { + border-color: transparent; } - .md\:-ml-52 { - margin-left: -13rem; + .group:hover .md\:group-hover\:border-current { + border-color: currentColor; } - .md\:-mt-56 { - margin-top: -14rem; + .group:hover .md\:group-hover\:border-black { + border-color: #000; } - .md\:-mr-56 { - margin-right: -14rem; + .group:hover .md\:group-hover\:border-white { + border-color: #fff; } - .md\:-mb-56 { - margin-bottom: -14rem; + .group:hover .md\:group-hover\:border-gray-50 { + border-color: #f9fafb; } - .md\:-ml-56 { - margin-left: -14rem; + .group:hover .md\:group-hover\:border-gray-100 { + border-color: #f3f4f6; } - .md\:-mt-60 { - margin-top: -15rem; + .group:hover .md\:group-hover\:border-gray-200 { + border-color: #e5e7eb; } - .md\:-mr-60 { - margin-right: -15rem; + .group:hover .md\:group-hover\:border-gray-300 { + border-color: #d1d5db; } - .md\:-mb-60 { - margin-bottom: -15rem; + .group:hover .md\:group-hover\:border-gray-400 { + border-color: #9ca3af; } - .md\:-ml-60 { - margin-left: -15rem; + .group:hover .md\:group-hover\:border-gray-500 { + border-color: #6b7280; } - .md\:-mt-64 { - margin-top: -16rem; + .group:hover .md\:group-hover\:border-gray-600 { + border-color: #4b5563; } - .md\:-mr-64 { - margin-right: -16rem; + .group:hover .md\:group-hover\:border-gray-700 { + border-color: #374151; } - .md\:-mb-64 { - margin-bottom: -16rem; + .group:hover .md\:group-hover\:border-gray-800 { + border-color: #1f2937; } - .md\:-ml-64 { - margin-left: -16rem; + .group:hover .md\:group-hover\:border-gray-900 { + border-color: #111827; } - .md\:-mt-72 { - margin-top: -18rem; + .group:hover .md\:group-hover\:border-red-50 { + border-color: #fef2f2; } - .md\:-mr-72 { - margin-right: -18rem; + .group:hover .md\:group-hover\:border-red-100 { + border-color: #fee2e2; } - .md\:-mb-72 { - margin-bottom: -18rem; + .group:hover .md\:group-hover\:border-red-200 { + border-color: #fecaca; } - .md\:-ml-72 { - margin-left: -18rem; + .group:hover .md\:group-hover\:border-red-300 { + border-color: #fca5a5; } - .md\:-mt-80 { - margin-top: -20rem; + .group:hover .md\:group-hover\:border-red-400 { + border-color: #f87171; } - .md\:-mr-80 { - margin-right: -20rem; + .group:hover .md\:group-hover\:border-red-500 { + border-color: #ef4444; } - .md\:-mb-80 { - margin-bottom: -20rem; + .group:hover .md\:group-hover\:border-red-600 { + border-color: #dc2626; } - .md\:-ml-80 { - margin-left: -20rem; + .group:hover .md\:group-hover\:border-red-700 { + border-color: #b91c1c; } - .md\:-mt-96 { - margin-top: -24rem; + .group:hover .md\:group-hover\:border-red-800 { + border-color: #991b1b; } - .md\:-mr-96 { - margin-right: -24rem; + .group:hover .md\:group-hover\:border-red-900 { + border-color: #7f1d1d; } - .md\:-mb-96 { - margin-bottom: -24rem; + .group:hover .md\:group-hover\:border-yellow-50 { + border-color: #fffbeb; } - .md\:-ml-96 { - margin-left: -24rem; + .group:hover .md\:group-hover\:border-yellow-100 { + border-color: #fef3c7; } - .md\:-mt-px { - margin-top: -1px; + .group:hover .md\:group-hover\:border-yellow-200 { + border-color: #fde68a; } - .md\:-mr-px { - margin-right: -1px; + .group:hover .md\:group-hover\:border-yellow-300 { + border-color: #fcd34d; } - .md\:-mb-px { - margin-bottom: -1px; + .group:hover .md\:group-hover\:border-yellow-400 { + border-color: #fbbf24; } - .md\:-ml-px { - margin-left: -1px; + .group:hover .md\:group-hover\:border-yellow-500 { + border-color: #f59e0b; } - .md\:-mt-0\.5 { - margin-top: -0.125rem; + .group:hover .md\:group-hover\:border-yellow-600 { + border-color: #d97706; } - .md\:-mr-0\.5 { - margin-right: -0.125rem; + .group:hover .md\:group-hover\:border-yellow-700 { + border-color: #b45309; } - .md\:-mb-0\.5 { - margin-bottom: -0.125rem; + .group:hover .md\:group-hover\:border-yellow-800 { + border-color: #92400e; } - .md\:-ml-0\.5 { - margin-left: -0.125rem; + .group:hover .md\:group-hover\:border-yellow-900 { + border-color: #78350f; } - .md\:-mt-1\.5 { - margin-top: -0.375rem; + .group:hover .md\:group-hover\:border-green-50 { + border-color: #ecfdf5; } - .md\:-mr-1\.5 { - margin-right: -0.375rem; + .group:hover .md\:group-hover\:border-green-100 { + border-color: #d1fae5; } - .md\:-mb-1\.5 { - margin-bottom: -0.375rem; + .group:hover .md\:group-hover\:border-green-200 { + border-color: #a7f3d0; } - .md\:-ml-1\.5 { - margin-left: -0.375rem; + .group:hover .md\:group-hover\:border-green-300 { + border-color: #6ee7b7; } - .md\:-mt-2\.5 { - margin-top: -0.625rem; + .group:hover .md\:group-hover\:border-green-400 { + border-color: #34d399; } - .md\:-mr-2\.5 { - margin-right: -0.625rem; + .group:hover .md\:group-hover\:border-green-500 { + border-color: #10b981; } - .md\:-mb-2\.5 { - margin-bottom: -0.625rem; + .group:hover .md\:group-hover\:border-green-600 { + border-color: #059669; } - .md\:-ml-2\.5 { - margin-left: -0.625rem; + .group:hover .md\:group-hover\:border-green-700 { + border-color: #047857; } - .md\:-mt-3\.5 { - margin-top: -0.875rem; + .group:hover .md\:group-hover\:border-green-800 { + border-color: #065f46; } - .md\:-mr-3\.5 { - margin-right: -0.875rem; + .group:hover .md\:group-hover\:border-green-900 { + border-color: #064e3b; } - .md\:-mb-3\.5 { - margin-bottom: -0.875rem; + .group:hover .md\:group-hover\:border-blue-50 { + border-color: #eff6ff; } - .md\:-ml-3\.5 { - margin-left: -0.875rem; + .group:hover .md\:group-hover\:border-blue-100 { + border-color: #dbeafe; } - .md\:max-h-0 { - max-height: 0px; + .group:hover .md\:group-hover\:border-blue-200 { + border-color: #bfdbfe; } - .md\:max-h-1 { - max-height: 0.25rem; + .group:hover .md\:group-hover\:border-blue-300 { + border-color: #93c5fd; } - .md\:max-h-2 { - max-height: 0.5rem; + .group:hover .md\:group-hover\:border-blue-400 { + border-color: #60a5fa; } - .md\:max-h-3 { - max-height: 0.75rem; + .group:hover .md\:group-hover\:border-blue-500 { + border-color: #3b82f6; } - .md\:max-h-4 { - max-height: 1rem; + .group:hover .md\:group-hover\:border-blue-600 { + border-color: #2563eb; } - .md\:max-h-5 { - max-height: 1.25rem; + .group:hover .md\:group-hover\:border-blue-700 { + border-color: #1d4ed8; } - .md\:max-h-6 { - max-height: 1.5rem; + .group:hover .md\:group-hover\:border-blue-800 { + border-color: #1e40af; } - .md\:max-h-7 { - max-height: 1.75rem; + .group:hover .md\:group-hover\:border-blue-900 { + border-color: #1e3a8a; } - .md\:max-h-8 { - max-height: 2rem; + .group:hover .md\:group-hover\:border-indigo-50 { + border-color: #eef2ff; } - .md\:max-h-9 { - max-height: 2.25rem; + .group:hover .md\:group-hover\:border-indigo-100 { + border-color: #e0e7ff; } - .md\:max-h-10 { - max-height: 2.5rem; + .group:hover .md\:group-hover\:border-indigo-200 { + border-color: #c7d2fe; } - .md\:max-h-11 { - max-height: 2.75rem; + .group:hover .md\:group-hover\:border-indigo-300 { + border-color: #a5b4fc; } - .md\:max-h-12 { - max-height: 3rem; + .group:hover .md\:group-hover\:border-indigo-400 { + border-color: #818cf8; } - .md\:max-h-14 { - max-height: 3.5rem; + .group:hover .md\:group-hover\:border-indigo-500 { + border-color: #6366f1; } - .md\:max-h-16 { - max-height: 4rem; + .group:hover .md\:group-hover\:border-indigo-600 { + border-color: #4f46e5; } - .md\:max-h-20 { - max-height: 5rem; + .group:hover .md\:group-hover\:border-indigo-700 { + border-color: #4338ca; } - .md\:max-h-24 { - max-height: 6rem; + .group:hover .md\:group-hover\:border-indigo-800 { + border-color: #3730a3; } - .md\:max-h-28 { - max-height: 7rem; + .group:hover .md\:group-hover\:border-indigo-900 { + border-color: #312e81; } - .md\:max-h-32 { - max-height: 8rem; + .group:hover .md\:group-hover\:border-purple-50 { + border-color: #f5f3ff; } - .md\:max-h-36 { - max-height: 9rem; + .group:hover .md\:group-hover\:border-purple-100 { + border-color: #ede9fe; } - .md\:max-h-40 { - max-height: 10rem; + .group:hover .md\:group-hover\:border-purple-200 { + border-color: #ddd6fe; } - .md\:max-h-44 { - max-height: 11rem; + .group:hover .md\:group-hover\:border-purple-300 { + border-color: #c4b5fd; } - .md\:max-h-48 { - max-height: 12rem; + .group:hover .md\:group-hover\:border-purple-400 { + border-color: #a78bfa; } - .md\:max-h-52 { - max-height: 13rem; + .group:hover .md\:group-hover\:border-purple-500 { + border-color: #8b5cf6; } - .md\:max-h-56 { - max-height: 14rem; + .group:hover .md\:group-hover\:border-purple-600 { + border-color: #7c3aed; } - .md\:max-h-60 { - max-height: 15rem; + .group:hover .md\:group-hover\:border-purple-700 { + border-color: #6d28d9; } - .md\:max-h-64 { - max-height: 16rem; + .group:hover .md\:group-hover\:border-purple-800 { + border-color: #5b21b6; } - .md\:max-h-72 { - max-height: 18rem; + .group:hover .md\:group-hover\:border-purple-900 { + border-color: #4c1d95; } - .md\:max-h-80 { - max-height: 20rem; + .group:hover .md\:group-hover\:border-pink-50 { + border-color: #fdf2f8; } - .md\:max-h-96 { - max-height: 24rem; + .group:hover .md\:group-hover\:border-pink-100 { + border-color: #fce7f3; } - .md\:max-h-px { - max-height: 1px; + .group:hover .md\:group-hover\:border-pink-200 { + border-color: #fbcfe8; } - .md\:max-h-0\.5 { - max-height: 0.125rem; + .group:hover .md\:group-hover\:border-pink-300 { + border-color: #f9a8d4; } - .md\:max-h-1\.5 { - max-height: 0.375rem; + .group:hover .md\:group-hover\:border-pink-400 { + border-color: #f472b6; } - .md\:max-h-2\.5 { - max-height: 0.625rem; + .group:hover .md\:group-hover\:border-pink-500 { + border-color: #ec4899; } - .md\:max-h-3\.5 { - max-height: 0.875rem; + .group:hover .md\:group-hover\:border-pink-600 { + border-color: #db2777; } - .md\:max-h-full { - max-height: 100%; + .group:hover .md\:group-hover\:border-pink-700 { + border-color: #be185d; } - .md\:max-h-screen { - max-height: 100vh; + .group:hover .md\:group-hover\:border-pink-800 { + border-color: #9d174d; } - .md\:max-w-0 { - max-width: 0rem; + .group:hover .md\:group-hover\:border-pink-900 { + border-color: #831843; } - .md\:max-w-none { - max-width: none; + .md\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .md\:max-w-xs { - max-width: 20rem; + .md\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .md\:max-w-sm { - max-width: 24rem; + .md\:focus-within\:border-black:focus-within { + border-color: #000; } - .md\:max-w-md { - max-width: 28rem; + .md\:focus-within\:border-white:focus-within { + border-color: #fff; } - .md\:max-w-lg { - max-width: 32rem; + .md\:focus-within\:border-gray-50:focus-within { + border-color: #f9fafb; } - .md\:max-w-xl { - max-width: 36rem; + .md\:focus-within\:border-gray-100:focus-within { + border-color: #f3f4f6; } - .md\:max-w-2xl { - max-width: 42rem; + .md\:focus-within\:border-gray-200:focus-within { + border-color: #e5e7eb; } - .md\:max-w-3xl { - max-width: 48rem; + .md\:focus-within\:border-gray-300:focus-within { + border-color: #d1d5db; } - .md\:max-w-4xl { - max-width: 56rem; + .md\:focus-within\:border-gray-400:focus-within { + border-color: #9ca3af; } - .md\:max-w-5xl { - max-width: 64rem; + .md\:focus-within\:border-gray-500:focus-within { + border-color: #6b7280; } - .md\:max-w-6xl { - max-width: 72rem; + .md\:focus-within\:border-gray-600:focus-within { + border-color: #4b5563; } - .md\:max-w-7xl { - max-width: 80rem; + .md\:focus-within\:border-gray-700:focus-within { + border-color: #374151; } - .md\:max-w-full { - max-width: 100%; + .md\:focus-within\:border-gray-800:focus-within { + border-color: #1f2937; } - .md\:max-w-min { - max-width: min-content; + .md\:focus-within\:border-gray-900:focus-within { + border-color: #111827; } - .md\:max-w-max { - max-width: max-content; + .md\:focus-within\:border-red-50:focus-within { + border-color: #fef2f2; } - .md\:max-w-prose { - max-width: 65ch; + .md\:focus-within\:border-red-100:focus-within { + border-color: #fee2e2; } - .md\:max-w-screen-sm { - max-width: 640px; + .md\:focus-within\:border-red-200:focus-within { + border-color: #fecaca; } - .md\:max-w-screen-md { - max-width: 768px; + .md\:focus-within\:border-red-300:focus-within { + border-color: #fca5a5; } - .md\:max-w-screen-lg { - max-width: 1024px; + .md\:focus-within\:border-red-400:focus-within { + border-color: #f87171; } - .md\:max-w-screen-xl { - max-width: 1280px; + .md\:focus-within\:border-red-500:focus-within { + border-color: #ef4444; } - .md\:max-w-screen-2xl { - max-width: 1536px; + .md\:focus-within\:border-red-600:focus-within { + border-color: #dc2626; } - .md\:min-h-0 { - min-height: 0px; + .md\:focus-within\:border-red-700:focus-within { + border-color: #b91c1c; } - .md\:min-h-full { - min-height: 100%; + .md\:focus-within\:border-red-800:focus-within { + border-color: #991b1b; } - .md\:min-h-screen { - min-height: 100vh; + .md\:focus-within\:border-red-900:focus-within { + border-color: #7f1d1d; } - .md\:min-w-0 { - min-width: 0px; + .md\:focus-within\:border-yellow-50:focus-within { + border-color: #fffbeb; } - .md\:min-w-full { - min-width: 100%; + .md\:focus-within\:border-yellow-100:focus-within { + border-color: #fef3c7; } - .md\:min-w-min { - min-width: min-content; + .md\:focus-within\:border-yellow-200:focus-within { + border-color: #fde68a; } - .md\:min-w-max { - min-width: max-content; + .md\:focus-within\:border-yellow-300:focus-within { + border-color: #fcd34d; } - .md\:object-contain { - object-fit: contain; + .md\:focus-within\:border-yellow-400:focus-within { + border-color: #fbbf24; } - .md\:object-cover { - object-fit: cover; + .md\:focus-within\:border-yellow-500:focus-within { + border-color: #f59e0b; } - .md\:object-fill { - object-fit: fill; + .md\:focus-within\:border-yellow-600:focus-within { + border-color: #d97706; } - .md\:object-none { - object-fit: none; + .md\:focus-within\:border-yellow-700:focus-within { + border-color: #b45309; } - .md\:object-scale-down { - object-fit: scale-down; + .md\:focus-within\:border-yellow-800:focus-within { + border-color: #92400e; } - .md\:object-bottom { - object-position: bottom; + .md\:focus-within\:border-yellow-900:focus-within { + border-color: #78350f; } - .md\:object-center { - object-position: center; + .md\:focus-within\:border-green-50:focus-within { + border-color: #ecfdf5; } - .md\:object-left { - object-position: left; + .md\:focus-within\:border-green-100:focus-within { + border-color: #d1fae5; } - .md\:object-left-bottom { - object-position: left bottom; + .md\:focus-within\:border-green-200:focus-within { + border-color: #a7f3d0; } - .md\:object-left-top { - object-position: left top; + .md\:focus-within\:border-green-300:focus-within { + border-color: #6ee7b7; } - .md\:object-right { - object-position: right; + .md\:focus-within\:border-green-400:focus-within { + border-color: #34d399; } - .md\:object-right-bottom { - object-position: right bottom; + .md\:focus-within\:border-green-500:focus-within { + border-color: #10b981; } - .md\:object-right-top { - object-position: right top; + .md\:focus-within\:border-green-600:focus-within { + border-color: #059669; } - .md\:object-top { - object-position: top; + .md\:focus-within\:border-green-700:focus-within { + border-color: #047857; } - .md\:opacity-0 { - opacity: 0; + .md\:focus-within\:border-green-800:focus-within { + border-color: #065f46; } - .md\:opacity-5 { - opacity: 0.05; + .md\:focus-within\:border-green-900:focus-within { + border-color: #064e3b; } - .md\:opacity-10 { - opacity: 0.1; + .md\:focus-within\:border-blue-50:focus-within { + border-color: #eff6ff; } - .md\:opacity-20 { - opacity: 0.2; + .md\:focus-within\:border-blue-100:focus-within { + border-color: #dbeafe; } - .md\:opacity-25 { - opacity: 0.25; + .md\:focus-within\:border-blue-200:focus-within { + border-color: #bfdbfe; } - .md\:opacity-30 { - opacity: 0.3; + .md\:focus-within\:border-blue-300:focus-within { + border-color: #93c5fd; } - .md\:opacity-40 { - opacity: 0.4; + .md\:focus-within\:border-blue-400:focus-within { + border-color: #60a5fa; } - .md\:opacity-50 { - opacity: 0.5; + .md\:focus-within\:border-blue-500:focus-within { + border-color: #3b82f6; } - .md\:opacity-60 { - opacity: 0.6; + .md\:focus-within\:border-blue-600:focus-within { + border-color: #2563eb; } - .md\:opacity-70 { - opacity: 0.7; + .md\:focus-within\:border-blue-700:focus-within { + border-color: #1d4ed8; } - .md\:opacity-75 { - opacity: 0.75; + .md\:focus-within\:border-blue-800:focus-within { + border-color: #1e40af; } - .md\:opacity-80 { - opacity: 0.8; + .md\:focus-within\:border-blue-900:focus-within { + border-color: #1e3a8a; } - .md\:opacity-90 { - opacity: 0.9; + .md\:focus-within\:border-indigo-50:focus-within { + border-color: #eef2ff; } - .md\:opacity-95 { - opacity: 0.95; + .md\:focus-within\:border-indigo-100:focus-within { + border-color: #e0e7ff; } - .md\:opacity-100 { - opacity: 1; + .md\:focus-within\:border-indigo-200:focus-within { + border-color: #c7d2fe; } - .group:hover .md\:group-hover\:opacity-0 { - opacity: 0; + .md\:focus-within\:border-indigo-300:focus-within { + border-color: #a5b4fc; } - .group:hover .md\:group-hover\:opacity-5 { - opacity: 0.05; + .md\:focus-within\:border-indigo-400:focus-within { + border-color: #818cf8; } - .group:hover .md\:group-hover\:opacity-10 { - opacity: 0.1; + .md\:focus-within\:border-indigo-500:focus-within { + border-color: #6366f1; } - .group:hover .md\:group-hover\:opacity-20 { - opacity: 0.2; + .md\:focus-within\:border-indigo-600:focus-within { + border-color: #4f46e5; } - .group:hover .md\:group-hover\:opacity-25 { - opacity: 0.25; + .md\:focus-within\:border-indigo-700:focus-within { + border-color: #4338ca; } - .group:hover .md\:group-hover\:opacity-30 { - opacity: 0.3; + .md\:focus-within\:border-indigo-800:focus-within { + border-color: #3730a3; } - .group:hover .md\:group-hover\:opacity-40 { - opacity: 0.4; + .md\:focus-within\:border-indigo-900:focus-within { + border-color: #312e81; } - .group:hover .md\:group-hover\:opacity-50 { - opacity: 0.5; + .md\:focus-within\:border-purple-50:focus-within { + border-color: #f5f3ff; } - .group:hover .md\:group-hover\:opacity-60 { - opacity: 0.6; + .md\:focus-within\:border-purple-100:focus-within { + border-color: #ede9fe; } - .group:hover .md\:group-hover\:opacity-70 { - opacity: 0.7; + .md\:focus-within\:border-purple-200:focus-within { + border-color: #ddd6fe; } - .group:hover .md\:group-hover\:opacity-75 { - opacity: 0.75; + .md\:focus-within\:border-purple-300:focus-within { + border-color: #c4b5fd; } - .group:hover .md\:group-hover\:opacity-80 { - opacity: 0.8; + .md\:focus-within\:border-purple-400:focus-within { + border-color: #a78bfa; } - .group:hover .md\:group-hover\:opacity-90 { - opacity: 0.9; + .md\:focus-within\:border-purple-500:focus-within { + border-color: #8b5cf6; } - .group:hover .md\:group-hover\:opacity-95 { - opacity: 0.95; + .md\:focus-within\:border-purple-600:focus-within { + border-color: #7c3aed; } - .group:hover .md\:group-hover\:opacity-100 { - opacity: 1; + .md\:focus-within\:border-purple-700:focus-within { + border-color: #6d28d9; } - .md\:focus-within\:opacity-0:focus-within { - opacity: 0; + .md\:focus-within\:border-purple-800:focus-within { + border-color: #5b21b6; } - .md\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .md\:focus-within\:border-purple-900:focus-within { + border-color: #4c1d95; } - .md\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .md\:focus-within\:border-pink-50:focus-within { + border-color: #fdf2f8; } - .md\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .md\:focus-within\:border-pink-100:focus-within { + border-color: #fce7f3; } - .md\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .md\:focus-within\:border-pink-200:focus-within { + border-color: #fbcfe8; } - .md\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .md\:focus-within\:border-pink-300:focus-within { + border-color: #f9a8d4; } - .md\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .md\:focus-within\:border-pink-400:focus-within { + border-color: #f472b6; } - .md\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .md\:focus-within\:border-pink-500:focus-within { + border-color: #ec4899; } - .md\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .md\:focus-within\:border-pink-600:focus-within { + border-color: #db2777; } - .md\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .md\:focus-within\:border-pink-700:focus-within { + border-color: #be185d; } - .md\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .md\:focus-within\:border-pink-800:focus-within { + border-color: #9d174d; } - .md\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .md\:focus-within\:border-pink-900:focus-within { + border-color: #831843; } - .md\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .md\:hover\:border-transparent:hover { + border-color: transparent; } - .md\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .md\:hover\:border-current:hover { + border-color: currentColor; } - .md\:focus-within\:opacity-100:focus-within { - opacity: 1; + .md\:hover\:border-black:hover { + border-color: #000; } - .md\:hover\:opacity-0:hover { - opacity: 0; + .md\:hover\:border-white:hover { + border-color: #fff; } - .md\:hover\:opacity-5:hover { - opacity: 0.05; + .md\:hover\:border-gray-50:hover { + border-color: #f9fafb; } - .md\:hover\:opacity-10:hover { - opacity: 0.1; + .md\:hover\:border-gray-100:hover { + border-color: #f3f4f6; } - .md\:hover\:opacity-20:hover { - opacity: 0.2; + .md\:hover\:border-gray-200:hover { + border-color: #e5e7eb; } - .md\:hover\:opacity-25:hover { - opacity: 0.25; + .md\:hover\:border-gray-300:hover { + border-color: #d1d5db; } - .md\:hover\:opacity-30:hover { - opacity: 0.3; + .md\:hover\:border-gray-400:hover { + border-color: #9ca3af; } - .md\:hover\:opacity-40:hover { - opacity: 0.4; + .md\:hover\:border-gray-500:hover { + border-color: #6b7280; } - .md\:hover\:opacity-50:hover { - opacity: 0.5; + .md\:hover\:border-gray-600:hover { + border-color: #4b5563; } - .md\:hover\:opacity-60:hover { - opacity: 0.6; + .md\:hover\:border-gray-700:hover { + border-color: #374151; } - .md\:hover\:opacity-70:hover { - opacity: 0.7; + .md\:hover\:border-gray-800:hover { + border-color: #1f2937; } - .md\:hover\:opacity-75:hover { - opacity: 0.75; + .md\:hover\:border-gray-900:hover { + border-color: #111827; } - .md\:hover\:opacity-80:hover { - opacity: 0.8; + .md\:hover\:border-red-50:hover { + border-color: #fef2f2; } - .md\:hover\:opacity-90:hover { - opacity: 0.9; + .md\:hover\:border-red-100:hover { + border-color: #fee2e2; } - .md\:hover\:opacity-95:hover { - opacity: 0.95; + .md\:hover\:border-red-200:hover { + border-color: #fecaca; } - .md\:hover\:opacity-100:hover { - opacity: 1; + .md\:hover\:border-red-300:hover { + border-color: #fca5a5; } - .md\:focus\:opacity-0:focus { - opacity: 0; + .md\:hover\:border-red-400:hover { + border-color: #f87171; } - .md\:focus\:opacity-5:focus { - opacity: 0.05; + .md\:hover\:border-red-500:hover { + border-color: #ef4444; } - .md\:focus\:opacity-10:focus { - opacity: 0.1; + .md\:hover\:border-red-600:hover { + border-color: #dc2626; } - .md\:focus\:opacity-20:focus { - opacity: 0.2; + .md\:hover\:border-red-700:hover { + border-color: #b91c1c; } - .md\:focus\:opacity-25:focus { - opacity: 0.25; + .md\:hover\:border-red-800:hover { + border-color: #991b1b; } - .md\:focus\:opacity-30:focus { - opacity: 0.3; + .md\:hover\:border-red-900:hover { + border-color: #7f1d1d; } - .md\:focus\:opacity-40:focus { - opacity: 0.4; + .md\:hover\:border-yellow-50:hover { + border-color: #fffbeb; } - .md\:focus\:opacity-50:focus { - opacity: 0.5; + .md\:hover\:border-yellow-100:hover { + border-color: #fef3c7; } - .md\:focus\:opacity-60:focus { - opacity: 0.6; + .md\:hover\:border-yellow-200:hover { + border-color: #fde68a; } - .md\:focus\:opacity-70:focus { - opacity: 0.7; + .md\:hover\:border-yellow-300:hover { + border-color: #fcd34d; } - .md\:focus\:opacity-75:focus { - opacity: 0.75; + .md\:hover\:border-yellow-400:hover { + border-color: #fbbf24; } - .md\:focus\:opacity-80:focus { - opacity: 0.8; + .md\:hover\:border-yellow-500:hover { + border-color: #f59e0b; } - .md\:focus\:opacity-90:focus { - opacity: 0.9; + .md\:hover\:border-yellow-600:hover { + border-color: #d97706; } - .md\:focus\:opacity-95:focus { - opacity: 0.95; + .md\:hover\:border-yellow-700:hover { + border-color: #b45309; } - .md\:focus\:opacity-100:focus { - opacity: 1; + .md\:hover\:border-yellow-800:hover { + border-color: #92400e; } - .md\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .md\:hover\:border-yellow-900:hover { + border-color: #78350f; } - .md\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .md\:hover\:border-green-50:hover { + border-color: #ecfdf5; } - .md\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .md\:hover\:border-green-100:hover { + border-color: #d1fae5; } - .md\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .md\:hover\:border-green-200:hover { + border-color: #a7f3d0; } - .md\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .md\:hover\:border-green-300:hover { + border-color: #6ee7b7; } - .md\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .md\:hover\:border-green-400:hover { + border-color: #34d399; } - .md\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .md\:hover\:border-green-500:hover { + border-color: #10b981; } - .md\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .md\:hover\:border-green-600:hover { + border-color: #059669; } - .md\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .md\:hover\:border-green-700:hover { + border-color: #047857; } - .md\:overflow-auto { - overflow: auto; + .md\:hover\:border-green-800:hover { + border-color: #065f46; } - .md\:overflow-hidden { - overflow: hidden; + .md\:hover\:border-green-900:hover { + border-color: #064e3b; } - .md\:overflow-visible { - overflow: visible; + .md\:hover\:border-blue-50:hover { + border-color: #eff6ff; } - .md\:overflow-scroll { - overflow: scroll; + .md\:hover\:border-blue-100:hover { + border-color: #dbeafe; } - .md\:overflow-x-auto { - overflow-x: auto; + .md\:hover\:border-blue-200:hover { + border-color: #bfdbfe; } - .md\:overflow-y-auto { - overflow-y: auto; + .md\:hover\:border-blue-300:hover { + border-color: #93c5fd; } - .md\:overflow-x-hidden { - overflow-x: hidden; + .md\:hover\:border-blue-400:hover { + border-color: #60a5fa; } - .md\:overflow-y-hidden { - overflow-y: hidden; + .md\:hover\:border-blue-500:hover { + border-color: #3b82f6; } - .md\:overflow-x-visible { - overflow-x: visible; + .md\:hover\:border-blue-600:hover { + border-color: #2563eb; } - .md\:overflow-y-visible { - overflow-y: visible; + .md\:hover\:border-blue-700:hover { + border-color: #1d4ed8; } - .md\:overflow-x-scroll { - overflow-x: scroll; + .md\:hover\:border-blue-800:hover { + border-color: #1e40af; } - .md\:overflow-y-scroll { - overflow-y: scroll; + .md\:hover\:border-blue-900:hover { + border-color: #1e3a8a; } - .md\:overscroll-auto { - overscroll-behavior: auto; + .md\:hover\:border-indigo-50:hover { + border-color: #eef2ff; } - .md\:overscroll-contain { - overscroll-behavior: contain; + .md\:hover\:border-indigo-100:hover { + border-color: #e0e7ff; } - .md\:overscroll-none { - overscroll-behavior: none; + .md\:hover\:border-indigo-200:hover { + border-color: #c7d2fe; } - .md\:overscroll-y-auto { - overscroll-behavior-y: auto; + .md\:hover\:border-indigo-300:hover { + border-color: #a5b4fc; } - .md\:overscroll-y-contain { - overscroll-behavior-y: contain; + .md\:hover\:border-indigo-400:hover { + border-color: #818cf8; } - .md\:overscroll-y-none { - overscroll-behavior-y: none; + .md\:hover\:border-indigo-500:hover { + border-color: #6366f1; } - .md\:overscroll-x-auto { - overscroll-behavior-x: auto; + .md\:hover\:border-indigo-600:hover { + border-color: #4f46e5; } - .md\:overscroll-x-contain { - overscroll-behavior-x: contain; + .md\:hover\:border-indigo-700:hover { + border-color: #4338ca; } - .md\:overscroll-x-none { - overscroll-behavior-x: none; + .md\:hover\:border-indigo-800:hover { + border-color: #3730a3; } - .md\:p-0 { - padding: 0px; + .md\:hover\:border-indigo-900:hover { + border-color: #312e81; } - .md\:p-1 { - padding: 0.25rem; + .md\:hover\:border-purple-50:hover { + border-color: #f5f3ff; } - .md\:p-2 { - padding: 0.5rem; + .md\:hover\:border-purple-100:hover { + border-color: #ede9fe; } - .md\:p-3 { - padding: 0.75rem; + .md\:hover\:border-purple-200:hover { + border-color: #ddd6fe; } - .md\:p-4 { - padding: 1rem; + .md\:hover\:border-purple-300:hover { + border-color: #c4b5fd; } - .md\:p-5 { - padding: 1.25rem; + .md\:hover\:border-purple-400:hover { + border-color: #a78bfa; } - .md\:p-6 { - padding: 1.5rem; + .md\:hover\:border-purple-500:hover { + border-color: #8b5cf6; } - .md\:p-7 { - padding: 1.75rem; + .md\:hover\:border-purple-600:hover { + border-color: #7c3aed; } - .md\:p-8 { - padding: 2rem; + .md\:hover\:border-purple-700:hover { + border-color: #6d28d9; } - .md\:p-9 { - padding: 2.25rem; + .md\:hover\:border-purple-800:hover { + border-color: #5b21b6; } - .md\:p-10 { - padding: 2.5rem; + .md\:hover\:border-purple-900:hover { + border-color: #4c1d95; } - .md\:p-11 { - padding: 2.75rem; + .md\:hover\:border-pink-50:hover { + border-color: #fdf2f8; } - .md\:p-12 { - padding: 3rem; + .md\:hover\:border-pink-100:hover { + border-color: #fce7f3; } - .md\:p-14 { - padding: 3.5rem; + .md\:hover\:border-pink-200:hover { + border-color: #fbcfe8; } - .md\:p-16 { - padding: 4rem; + .md\:hover\:border-pink-300:hover { + border-color: #f9a8d4; } - .md\:p-20 { - padding: 5rem; + .md\:hover\:border-pink-400:hover { + border-color: #f472b6; } - .md\:p-24 { - padding: 6rem; + .md\:hover\:border-pink-500:hover { + border-color: #ec4899; } - .md\:p-28 { - padding: 7rem; + .md\:hover\:border-pink-600:hover { + border-color: #db2777; } - .md\:p-32 { - padding: 8rem; + .md\:hover\:border-pink-700:hover { + border-color: #be185d; } - .md\:p-36 { - padding: 9rem; + .md\:hover\:border-pink-800:hover { + border-color: #9d174d; } - .md\:p-40 { - padding: 10rem; + .md\:hover\:border-pink-900:hover { + border-color: #831843; } - .md\:p-44 { - padding: 11rem; + .md\:focus\:border-transparent:focus { + border-color: transparent; } - .md\:p-48 { - padding: 12rem; + .md\:focus\:border-current:focus { + border-color: currentColor; } - .md\:p-52 { - padding: 13rem; + .md\:focus\:border-black:focus { + border-color: #000; } - .md\:p-56 { - padding: 14rem; + .md\:focus\:border-white:focus { + border-color: #fff; } - .md\:p-60 { - padding: 15rem; + .md\:focus\:border-gray-50:focus { + border-color: #f9fafb; } - .md\:p-64 { - padding: 16rem; + .md\:focus\:border-gray-100:focus { + border-color: #f3f4f6; } - .md\:p-72 { - padding: 18rem; + .md\:focus\:border-gray-200:focus { + border-color: #e5e7eb; } - .md\:p-80 { - padding: 20rem; + .md\:focus\:border-gray-300:focus { + border-color: #d1d5db; } - .md\:p-96 { - padding: 24rem; + .md\:focus\:border-gray-400:focus { + border-color: #9ca3af; } - .md\:p-px { - padding: 1px; + .md\:focus\:border-gray-500:focus { + border-color: #6b7280; } - .md\:p-0\.5 { - padding: 0.125rem; + .md\:focus\:border-gray-600:focus { + border-color: #4b5563; } - .md\:p-1\.5 { - padding: 0.375rem; + .md\:focus\:border-gray-700:focus { + border-color: #374151; } - .md\:p-2\.5 { - padding: 0.625rem; + .md\:focus\:border-gray-800:focus { + border-color: #1f2937; } - .md\:p-3\.5 { - padding: 0.875rem; + .md\:focus\:border-gray-900:focus { + border-color: #111827; } - .md\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .md\:focus\:border-red-50:focus { + border-color: #fef2f2; } - .md\:px-0 { - padding-left: 0px; - padding-right: 0px; + .md\:focus\:border-red-100:focus { + border-color: #fee2e2; } - .md\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .md\:focus\:border-red-200:focus { + border-color: #fecaca; } - .md\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .md\:focus\:border-red-300:focus { + border-color: #fca5a5; } - .md\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .md\:focus\:border-red-400:focus { + border-color: #f87171; } - .md\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .md\:focus\:border-red-500:focus { + border-color: #ef4444; } - .md\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .md\:focus\:border-red-600:focus { + border-color: #dc2626; } - .md\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .md\:focus\:border-red-700:focus { + border-color: #b91c1c; } - .md\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .md\:focus\:border-red-800:focus { + border-color: #991b1b; } - .md\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .md\:focus\:border-red-900:focus { + border-color: #7f1d1d; } - .md\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .md\:focus\:border-yellow-50:focus { + border-color: #fffbeb; } - .md\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .md\:focus\:border-yellow-100:focus { + border-color: #fef3c7; } - .md\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .md\:focus\:border-yellow-200:focus { + border-color: #fde68a; } - .md\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .md\:focus\:border-yellow-300:focus { + border-color: #fcd34d; } - .md\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .md\:focus\:border-yellow-400:focus { + border-color: #fbbf24; } - .md\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .md\:focus\:border-yellow-500:focus { + border-color: #f59e0b; } - .md\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .md\:focus\:border-yellow-600:focus { + border-color: #d97706; } - .md\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .md\:focus\:border-yellow-700:focus { + border-color: #b45309; } - .md\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .md\:focus\:border-yellow-800:focus { + border-color: #92400e; } - .md\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .md\:focus\:border-yellow-900:focus { + border-color: #78350f; } - .md\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .md\:focus\:border-green-50:focus { + border-color: #ecfdf5; } - .md\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .md\:focus\:border-green-100:focus { + border-color: #d1fae5; } - .md\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .md\:focus\:border-green-200:focus { + border-color: #a7f3d0; } - .md\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .md\:focus\:border-green-300:focus { + border-color: #6ee7b7; } - .md\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .md\:focus\:border-green-400:focus { + border-color: #34d399; } - .md\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .md\:focus\:border-green-500:focus { + border-color: #10b981; } - .md\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .md\:focus\:border-green-600:focus { + border-color: #059669; } - .md\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .md\:focus\:border-green-700:focus { + border-color: #047857; } - .md\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .md\:focus\:border-green-800:focus { + border-color: #065f46; } - .md\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .md\:focus\:border-green-900:focus { + border-color: #064e3b; } - .md\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .md\:focus\:border-blue-50:focus { + border-color: #eff6ff; } - .md\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .md\:focus\:border-blue-100:focus { + border-color: #dbeafe; } - .md\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .md\:focus\:border-blue-200:focus { + border-color: #bfdbfe; } - .md\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .md\:focus\:border-blue-300:focus { + border-color: #93c5fd; } - .md\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .md\:focus\:border-blue-400:focus { + border-color: #60a5fa; } - .md\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .md\:focus\:border-blue-500:focus { + border-color: #3b82f6; } - .md\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .md\:focus\:border-blue-600:focus { + border-color: #2563eb; } - .md\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .md\:focus\:border-blue-700:focus { + border-color: #1d4ed8; } - .md\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .md\:focus\:border-blue-800:focus { + border-color: #1e40af; } - .md\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .md\:focus\:border-blue-900:focus { + border-color: #1e3a8a; } - .md\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .md\:focus\:border-indigo-50:focus { + border-color: #eef2ff; } - .md\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .md\:focus\:border-indigo-100:focus { + border-color: #e0e7ff; } - .md\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .md\:focus\:border-indigo-200:focus { + border-color: #c7d2fe; } - .md\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .md\:focus\:border-indigo-300:focus { + border-color: #a5b4fc; } - .md\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .md\:focus\:border-indigo-400:focus { + border-color: #818cf8; } - .md\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .md\:focus\:border-indigo-500:focus { + border-color: #6366f1; } - .md\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .md\:focus\:border-indigo-600:focus { + border-color: #4f46e5; } - .md\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .md\:focus\:border-indigo-700:focus { + border-color: #4338ca; } - .md\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .md\:focus\:border-indigo-800:focus { + border-color: #3730a3; } - .md\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .md\:focus\:border-indigo-900:focus { + border-color: #312e81; } - .md\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .md\:focus\:border-purple-50:focus { + border-color: #f5f3ff; } - .md\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .md\:focus\:border-purple-100:focus { + border-color: #ede9fe; } - .md\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .md\:focus\:border-purple-200:focus { + border-color: #ddd6fe; } - .md\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .md\:focus\:border-purple-300:focus { + border-color: #c4b5fd; } - .md\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .md\:focus\:border-purple-400:focus { + border-color: #a78bfa; } - .md\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .md\:focus\:border-purple-500:focus { + border-color: #8b5cf6; } - .md\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .md\:focus\:border-purple-600:focus { + border-color: #7c3aed; } - .md\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .md\:focus\:border-purple-700:focus { + border-color: #6d28d9; } - .md\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .md\:focus\:border-purple-800:focus { + border-color: #5b21b6; } - .md\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .md\:focus\:border-purple-900:focus { + border-color: #4c1d95; } - .md\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .md\:focus\:border-pink-50:focus { + border-color: #fdf2f8; } - .md\:px-px { - padding-left: 1px; - padding-right: 1px; + .md\:focus\:border-pink-100:focus { + border-color: #fce7f3; } - .md\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .md\:focus\:border-pink-200:focus { + border-color: #fbcfe8; } - .md\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .md\:focus\:border-pink-300:focus { + border-color: #f9a8d4; } - .md\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .md\:focus\:border-pink-400:focus { + border-color: #f472b6; } - .md\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .md\:focus\:border-pink-500:focus { + border-color: #ec4899; } - .md\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .md\:focus\:border-pink-600:focus { + border-color: #db2777; } - .md\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .md\:focus\:border-pink-700:focus { + border-color: #be185d; } - .md\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .md\:focus\:border-pink-800:focus { + border-color: #9d174d; } - .md\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .md\:focus\:border-pink-900:focus { + border-color: #831843; } - .md\:pt-0 { - padding-top: 0px; + .md\:bg-transparent { + background-color: transparent; } - .md\:pr-0 { - padding-right: 0px; + .md\:bg-current { + background-color: currentColor; } - .md\:pb-0 { - padding-bottom: 0px; + .md\:bg-black { + background-color: #000; } - .md\:pl-0 { - padding-left: 0px; + .md\:bg-white { + background-color: #fff; } - .md\:pt-1 { - padding-top: 0.25rem; + .md\:bg-gray-50 { + background-color: #f9fafb; } - .md\:pr-1 { - padding-right: 0.25rem; + .md\:bg-gray-100 { + background-color: #f3f4f6; } - .md\:pb-1 { - padding-bottom: 0.25rem; + .md\:bg-gray-200 { + background-color: #e5e7eb; } - .md\:pl-1 { - padding-left: 0.25rem; + .md\:bg-gray-300 { + background-color: #d1d5db; } - .md\:pt-2 { - padding-top: 0.5rem; + .md\:bg-gray-400 { + background-color: #9ca3af; } - .md\:pr-2 { - padding-right: 0.5rem; + .md\:bg-gray-500 { + background-color: #6b7280; } - .md\:pb-2 { - padding-bottom: 0.5rem; + .md\:bg-gray-600 { + background-color: #4b5563; } - .md\:pl-2 { - padding-left: 0.5rem; + .md\:bg-gray-700 { + background-color: #374151; } - .md\:pt-3 { - padding-top: 0.75rem; + .md\:bg-gray-800 { + background-color: #1f2937; } - .md\:pr-3 { - padding-right: 0.75rem; + .md\:bg-gray-900 { + background-color: #111827; } - .md\:pb-3 { - padding-bottom: 0.75rem; + .md\:bg-red-50 { + background-color: #fef2f2; } - .md\:pl-3 { - padding-left: 0.75rem; + .md\:bg-red-100 { + background-color: #fee2e2; } - .md\:pt-4 { - padding-top: 1rem; + .md\:bg-red-200 { + background-color: #fecaca; } - .md\:pr-4 { - padding-right: 1rem; + .md\:bg-red-300 { + background-color: #fca5a5; } - .md\:pb-4 { - padding-bottom: 1rem; + .md\:bg-red-400 { + background-color: #f87171; } - .md\:pl-4 { - padding-left: 1rem; + .md\:bg-red-500 { + background-color: #ef4444; } - .md\:pt-5 { - padding-top: 1.25rem; + .md\:bg-red-600 { + background-color: #dc2626; } - .md\:pr-5 { - padding-right: 1.25rem; + .md\:bg-red-700 { + background-color: #b91c1c; } - .md\:pb-5 { - padding-bottom: 1.25rem; + .md\:bg-red-800 { + background-color: #991b1b; } - .md\:pl-5 { - padding-left: 1.25rem; + .md\:bg-red-900 { + background-color: #7f1d1d; } - .md\:pt-6 { - padding-top: 1.5rem; + .md\:bg-yellow-50 { + background-color: #fffbeb; } - .md\:pr-6 { - padding-right: 1.5rem; + .md\:bg-yellow-100 { + background-color: #fef3c7; } - .md\:pb-6 { - padding-bottom: 1.5rem; + .md\:bg-yellow-200 { + background-color: #fde68a; } - .md\:pl-6 { - padding-left: 1.5rem; + .md\:bg-yellow-300 { + background-color: #fcd34d; } - .md\:pt-7 { - padding-top: 1.75rem; + .md\:bg-yellow-400 { + background-color: #fbbf24; } - .md\:pr-7 { - padding-right: 1.75rem; + .md\:bg-yellow-500 { + background-color: #f59e0b; } - .md\:pb-7 { - padding-bottom: 1.75rem; + .md\:bg-yellow-600 { + background-color: #d97706; } - .md\:pl-7 { - padding-left: 1.75rem; + .md\:bg-yellow-700 { + background-color: #b45309; } - .md\:pt-8 { - padding-top: 2rem; + .md\:bg-yellow-800 { + background-color: #92400e; } - .md\:pr-8 { - padding-right: 2rem; + .md\:bg-yellow-900 { + background-color: #78350f; } - .md\:pb-8 { - padding-bottom: 2rem; + .md\:bg-green-50 { + background-color: #ecfdf5; } - .md\:pl-8 { - padding-left: 2rem; + .md\:bg-green-100 { + background-color: #d1fae5; } - .md\:pt-9 { - padding-top: 2.25rem; + .md\:bg-green-200 { + background-color: #a7f3d0; } - .md\:pr-9 { - padding-right: 2.25rem; + .md\:bg-green-300 { + background-color: #6ee7b7; } - .md\:pb-9 { - padding-bottom: 2.25rem; + .md\:bg-green-400 { + background-color: #34d399; } - .md\:pl-9 { - padding-left: 2.25rem; + .md\:bg-green-500 { + background-color: #10b981; } - .md\:pt-10 { - padding-top: 2.5rem; + .md\:bg-green-600 { + background-color: #059669; } - .md\:pr-10 { - padding-right: 2.5rem; + .md\:bg-green-700 { + background-color: #047857; } - .md\:pb-10 { - padding-bottom: 2.5rem; + .md\:bg-green-800 { + background-color: #065f46; } - .md\:pl-10 { - padding-left: 2.5rem; + .md\:bg-green-900 { + background-color: #064e3b; } - .md\:pt-11 { - padding-top: 2.75rem; + .md\:bg-blue-50 { + background-color: #eff6ff; } - .md\:pr-11 { - padding-right: 2.75rem; + .md\:bg-blue-100 { + background-color: #dbeafe; } - .md\:pb-11 { - padding-bottom: 2.75rem; + .md\:bg-blue-200 { + background-color: #bfdbfe; } - .md\:pl-11 { - padding-left: 2.75rem; + .md\:bg-blue-300 { + background-color: #93c5fd; } - .md\:pt-12 { - padding-top: 3rem; + .md\:bg-blue-400 { + background-color: #60a5fa; } - .md\:pr-12 { - padding-right: 3rem; + .md\:bg-blue-500 { + background-color: #3b82f6; } - .md\:pb-12 { - padding-bottom: 3rem; + .md\:bg-blue-600 { + background-color: #2563eb; } - .md\:pl-12 { - padding-left: 3rem; + .md\:bg-blue-700 { + background-color: #1d4ed8; } - .md\:pt-14 { - padding-top: 3.5rem; + .md\:bg-blue-800 { + background-color: #1e40af; } - .md\:pr-14 { - padding-right: 3.5rem; + .md\:bg-blue-900 { + background-color: #1e3a8a; } - .md\:pb-14 { - padding-bottom: 3.5rem; + .md\:bg-indigo-50 { + background-color: #eef2ff; } - .md\:pl-14 { - padding-left: 3.5rem; + .md\:bg-indigo-100 { + background-color: #e0e7ff; } - .md\:pt-16 { - padding-top: 4rem; + .md\:bg-indigo-200 { + background-color: #c7d2fe; } - .md\:pr-16 { - padding-right: 4rem; + .md\:bg-indigo-300 { + background-color: #a5b4fc; } - .md\:pb-16 { - padding-bottom: 4rem; + .md\:bg-indigo-400 { + background-color: #818cf8; } - .md\:pl-16 { - padding-left: 4rem; + .md\:bg-indigo-500 { + background-color: #6366f1; } - .md\:pt-20 { - padding-top: 5rem; + .md\:bg-indigo-600 { + background-color: #4f46e5; } - .md\:pr-20 { - padding-right: 5rem; + .md\:bg-indigo-700 { + background-color: #4338ca; } - .md\:pb-20 { - padding-bottom: 5rem; + .md\:bg-indigo-800 { + background-color: #3730a3; } - .md\:pl-20 { - padding-left: 5rem; + .md\:bg-indigo-900 { + background-color: #312e81; } - .md\:pt-24 { - padding-top: 6rem; + .md\:bg-purple-50 { + background-color: #f5f3ff; } - .md\:pr-24 { - padding-right: 6rem; + .md\:bg-purple-100 { + background-color: #ede9fe; } - .md\:pb-24 { - padding-bottom: 6rem; + .md\:bg-purple-200 { + background-color: #ddd6fe; } - .md\:pl-24 { - padding-left: 6rem; + .md\:bg-purple-300 { + background-color: #c4b5fd; } - .md\:pt-28 { - padding-top: 7rem; + .md\:bg-purple-400 { + background-color: #a78bfa; } - .md\:pr-28 { - padding-right: 7rem; + .md\:bg-purple-500 { + background-color: #8b5cf6; } - .md\:pb-28 { - padding-bottom: 7rem; + .md\:bg-purple-600 { + background-color: #7c3aed; } - .md\:pl-28 { - padding-left: 7rem; + .md\:bg-purple-700 { + background-color: #6d28d9; } - .md\:pt-32 { - padding-top: 8rem; + .md\:bg-purple-800 { + background-color: #5b21b6; } - .md\:pr-32 { - padding-right: 8rem; + .md\:bg-purple-900 { + background-color: #4c1d95; } - .md\:pb-32 { - padding-bottom: 8rem; + .md\:bg-pink-50 { + background-color: #fdf2f8; } - .md\:pl-32 { - padding-left: 8rem; + .md\:bg-pink-100 { + background-color: #fce7f3; } - .md\:pt-36 { - padding-top: 9rem; + .md\:bg-pink-200 { + background-color: #fbcfe8; } - .md\:pr-36 { - padding-right: 9rem; + .md\:bg-pink-300 { + background-color: #f9a8d4; } - .md\:pb-36 { - padding-bottom: 9rem; + .md\:bg-pink-400 { + background-color: #f472b6; } - .md\:pl-36 { - padding-left: 9rem; + .md\:bg-pink-500 { + background-color: #ec4899; } - .md\:pt-40 { - padding-top: 10rem; + .md\:bg-pink-600 { + background-color: #db2777; } - .md\:pr-40 { - padding-right: 10rem; + .md\:bg-pink-700 { + background-color: #be185d; } - .md\:pb-40 { - padding-bottom: 10rem; + .md\:bg-pink-800 { + background-color: #9d174d; } - .md\:pl-40 { - padding-left: 10rem; + .md\:bg-pink-900 { + background-color: #831843; } - .md\:pt-44 { - padding-top: 11rem; + .group:hover .md\:group-hover\:bg-transparent { + background-color: transparent; } - .md\:pr-44 { - padding-right: 11rem; + .group:hover .md\:group-hover\:bg-current { + background-color: currentColor; } - .md\:pb-44 { - padding-bottom: 11rem; + .group:hover .md\:group-hover\:bg-black { + background-color: #000; } - .md\:pl-44 { - padding-left: 11rem; + .group:hover .md\:group-hover\:bg-white { + background-color: #fff; } - .md\:pt-48 { - padding-top: 12rem; + .group:hover .md\:group-hover\:bg-gray-50 { + background-color: #f9fafb; } - .md\:pr-48 { - padding-right: 12rem; + .group:hover .md\:group-hover\:bg-gray-100 { + background-color: #f3f4f6; } - .md\:pb-48 { - padding-bottom: 12rem; + .group:hover .md\:group-hover\:bg-gray-200 { + background-color: #e5e7eb; } - .md\:pl-48 { - padding-left: 12rem; + .group:hover .md\:group-hover\:bg-gray-300 { + background-color: #d1d5db; } - .md\:pt-52 { - padding-top: 13rem; + .group:hover .md\:group-hover\:bg-gray-400 { + background-color: #9ca3af; } - .md\:pr-52 { - padding-right: 13rem; + .group:hover .md\:group-hover\:bg-gray-500 { + background-color: #6b7280; } - .md\:pb-52 { - padding-bottom: 13rem; + .group:hover .md\:group-hover\:bg-gray-600 { + background-color: #4b5563; } - .md\:pl-52 { - padding-left: 13rem; + .group:hover .md\:group-hover\:bg-gray-700 { + background-color: #374151; } - .md\:pt-56 { - padding-top: 14rem; + .group:hover .md\:group-hover\:bg-gray-800 { + background-color: #1f2937; } - .md\:pr-56 { - padding-right: 14rem; + .group:hover .md\:group-hover\:bg-gray-900 { + background-color: #111827; } - .md\:pb-56 { - padding-bottom: 14rem; + .group:hover .md\:group-hover\:bg-red-50 { + background-color: #fef2f2; } - .md\:pl-56 { - padding-left: 14rem; + .group:hover .md\:group-hover\:bg-red-100 { + background-color: #fee2e2; } - .md\:pt-60 { - padding-top: 15rem; + .group:hover .md\:group-hover\:bg-red-200 { + background-color: #fecaca; } - .md\:pr-60 { - padding-right: 15rem; + .group:hover .md\:group-hover\:bg-red-300 { + background-color: #fca5a5; } - .md\:pb-60 { - padding-bottom: 15rem; + .group:hover .md\:group-hover\:bg-red-400 { + background-color: #f87171; } - .md\:pl-60 { - padding-left: 15rem; + .group:hover .md\:group-hover\:bg-red-500 { + background-color: #ef4444; } - .md\:pt-64 { - padding-top: 16rem; + .group:hover .md\:group-hover\:bg-red-600 { + background-color: #dc2626; } - .md\:pr-64 { - padding-right: 16rem; + .group:hover .md\:group-hover\:bg-red-700 { + background-color: #b91c1c; } - .md\:pb-64 { - padding-bottom: 16rem; + .group:hover .md\:group-hover\:bg-red-800 { + background-color: #991b1b; } - .md\:pl-64 { - padding-left: 16rem; + .group:hover .md\:group-hover\:bg-red-900 { + background-color: #7f1d1d; } - .md\:pt-72 { - padding-top: 18rem; + .group:hover .md\:group-hover\:bg-yellow-50 { + background-color: #fffbeb; } - .md\:pr-72 { - padding-right: 18rem; + .group:hover .md\:group-hover\:bg-yellow-100 { + background-color: #fef3c7; } - .md\:pb-72 { - padding-bottom: 18rem; + .group:hover .md\:group-hover\:bg-yellow-200 { + background-color: #fde68a; } - .md\:pl-72 { - padding-left: 18rem; + .group:hover .md\:group-hover\:bg-yellow-300 { + background-color: #fcd34d; } - .md\:pt-80 { - padding-top: 20rem; + .group:hover .md\:group-hover\:bg-yellow-400 { + background-color: #fbbf24; } - .md\:pr-80 { - padding-right: 20rem; + .group:hover .md\:group-hover\:bg-yellow-500 { + background-color: #f59e0b; } - .md\:pb-80 { - padding-bottom: 20rem; + .group:hover .md\:group-hover\:bg-yellow-600 { + background-color: #d97706; } - .md\:pl-80 { - padding-left: 20rem; + .group:hover .md\:group-hover\:bg-yellow-700 { + background-color: #b45309; } - .md\:pt-96 { - padding-top: 24rem; + .group:hover .md\:group-hover\:bg-yellow-800 { + background-color: #92400e; } - .md\:pr-96 { - padding-right: 24rem; + .group:hover .md\:group-hover\:bg-yellow-900 { + background-color: #78350f; } - .md\:pb-96 { - padding-bottom: 24rem; + .group:hover .md\:group-hover\:bg-green-50 { + background-color: #ecfdf5; } - .md\:pl-96 { - padding-left: 24rem; + .group:hover .md\:group-hover\:bg-green-100 { + background-color: #d1fae5; } - .md\:pt-px { - padding-top: 1px; + .group:hover .md\:group-hover\:bg-green-200 { + background-color: #a7f3d0; } - .md\:pr-px { - padding-right: 1px; + .group:hover .md\:group-hover\:bg-green-300 { + background-color: #6ee7b7; } - .md\:pb-px { - padding-bottom: 1px; + .group:hover .md\:group-hover\:bg-green-400 { + background-color: #34d399; } - .md\:pl-px { - padding-left: 1px; + .group:hover .md\:group-hover\:bg-green-500 { + background-color: #10b981; } - .md\:pt-0\.5 { - padding-top: 0.125rem; + .group:hover .md\:group-hover\:bg-green-600 { + background-color: #059669; } - .md\:pr-0\.5 { - padding-right: 0.125rem; + .group:hover .md\:group-hover\:bg-green-700 { + background-color: #047857; } - .md\:pb-0\.5 { - padding-bottom: 0.125rem; + .group:hover .md\:group-hover\:bg-green-800 { + background-color: #065f46; } - .md\:pl-0\.5 { - padding-left: 0.125rem; + .group:hover .md\:group-hover\:bg-green-900 { + background-color: #064e3b; } - .md\:pt-1\.5 { - padding-top: 0.375rem; + .group:hover .md\:group-hover\:bg-blue-50 { + background-color: #eff6ff; } - .md\:pr-1\.5 { - padding-right: 0.375rem; + .group:hover .md\:group-hover\:bg-blue-100 { + background-color: #dbeafe; } - .md\:pb-1\.5 { - padding-bottom: 0.375rem; + .group:hover .md\:group-hover\:bg-blue-200 { + background-color: #bfdbfe; } - .md\:pl-1\.5 { - padding-left: 0.375rem; + .group:hover .md\:group-hover\:bg-blue-300 { + background-color: #93c5fd; } - .md\:pt-2\.5 { - padding-top: 0.625rem; + .group:hover .md\:group-hover\:bg-blue-400 { + background-color: #60a5fa; } - .md\:pr-2\.5 { - padding-right: 0.625rem; + .group:hover .md\:group-hover\:bg-blue-500 { + background-color: #3b82f6; } - .md\:pb-2\.5 { - padding-bottom: 0.625rem; + .group:hover .md\:group-hover\:bg-blue-600 { + background-color: #2563eb; } - .md\:pl-2\.5 { - padding-left: 0.625rem; + .group:hover .md\:group-hover\:bg-blue-700 { + background-color: #1d4ed8; } - .md\:pt-3\.5 { - padding-top: 0.875rem; + .group:hover .md\:group-hover\:bg-blue-800 { + background-color: #1e40af; } - .md\:pr-3\.5 { - padding-right: 0.875rem; + .group:hover .md\:group-hover\:bg-blue-900 { + background-color: #1e3a8a; } - .md\:pb-3\.5 { - padding-bottom: 0.875rem; + .group:hover .md\:group-hover\:bg-indigo-50 { + background-color: #eef2ff; } - .md\:pl-3\.5 { - padding-left: 0.875rem; + .group:hover .md\:group-hover\:bg-indigo-100 { + background-color: #e0e7ff; } - .md\:placeholder-transparent::placeholder { - color: transparent; + .group:hover .md\:group-hover\:bg-indigo-200 { + background-color: #c7d2fe; } - .md\:placeholder-current::placeholder { - color: currentColor; + .group:hover .md\:group-hover\:bg-indigo-300 { + background-color: #a5b4fc; } - .md\:placeholder-black::placeholder { - color: #000; + .group:hover .md\:group-hover\:bg-indigo-400 { + background-color: #818cf8; } - .md\:placeholder-white::placeholder { - color: #fff; + .group:hover .md\:group-hover\:bg-indigo-500 { + background-color: #6366f1; } - .md\:placeholder-gray-50::placeholder { - color: #f9fafb; + .group:hover .md\:group-hover\:bg-indigo-600 { + background-color: #4f46e5; } - .md\:placeholder-gray-100::placeholder { - color: #f3f4f6; + .group:hover .md\:group-hover\:bg-indigo-700 { + background-color: #4338ca; } - .md\:placeholder-gray-200::placeholder { - color: #e5e7eb; + .group:hover .md\:group-hover\:bg-indigo-800 { + background-color: #3730a3; } - .md\:placeholder-gray-300::placeholder { - color: #d1d5db; + .group:hover .md\:group-hover\:bg-indigo-900 { + background-color: #312e81; } - .md\:placeholder-gray-400::placeholder { - color: #9ca3af; + .group:hover .md\:group-hover\:bg-purple-50 { + background-color: #f5f3ff; } - .md\:placeholder-gray-500::placeholder { - color: #6b7280; + .group:hover .md\:group-hover\:bg-purple-100 { + background-color: #ede9fe; } - .md\:placeholder-gray-600::placeholder { - color: #4b5563; + .group:hover .md\:group-hover\:bg-purple-200 { + background-color: #ddd6fe; } - .md\:placeholder-gray-700::placeholder { - color: #374151; + .group:hover .md\:group-hover\:bg-purple-300 { + background-color: #c4b5fd; } - .md\:placeholder-gray-800::placeholder { - color: #1f2937; + .group:hover .md\:group-hover\:bg-purple-400 { + background-color: #a78bfa; } - .md\:placeholder-gray-900::placeholder { - color: #111827; + .group:hover .md\:group-hover\:bg-purple-500 { + background-color: #8b5cf6; } - .md\:placeholder-red-50::placeholder { - color: #fef2f2; + .group:hover .md\:group-hover\:bg-purple-600 { + background-color: #7c3aed; } - .md\:placeholder-red-100::placeholder { - color: #fee2e2; + .group:hover .md\:group-hover\:bg-purple-700 { + background-color: #6d28d9; } - .md\:placeholder-red-200::placeholder { - color: #fecaca; + .group:hover .md\:group-hover\:bg-purple-800 { + background-color: #5b21b6; } - .md\:placeholder-red-300::placeholder { - color: #fca5a5; + .group:hover .md\:group-hover\:bg-purple-900 { + background-color: #4c1d95; } - .md\:placeholder-red-400::placeholder { - color: #f87171; + .group:hover .md\:group-hover\:bg-pink-50 { + background-color: #fdf2f8; } - .md\:placeholder-red-500::placeholder { - color: #ef4444; + .group:hover .md\:group-hover\:bg-pink-100 { + background-color: #fce7f3; } - .md\:placeholder-red-600::placeholder { - color: #dc2626; + .group:hover .md\:group-hover\:bg-pink-200 { + background-color: #fbcfe8; } - .md\:placeholder-red-700::placeholder { - color: #b91c1c; + .group:hover .md\:group-hover\:bg-pink-300 { + background-color: #f9a8d4; } - .md\:placeholder-red-800::placeholder { - color: #991b1b; + .group:hover .md\:group-hover\:bg-pink-400 { + background-color: #f472b6; } - .md\:placeholder-red-900::placeholder { - color: #7f1d1d; + .group:hover .md\:group-hover\:bg-pink-500 { + background-color: #ec4899; } - .md\:placeholder-yellow-50::placeholder { - color: #fffbeb; + .group:hover .md\:group-hover\:bg-pink-600 { + background-color: #db2777; } - .md\:placeholder-yellow-100::placeholder { - color: #fef3c7; + .group:hover .md\:group-hover\:bg-pink-700 { + background-color: #be185d; } - .md\:placeholder-yellow-200::placeholder { - color: #fde68a; + .group:hover .md\:group-hover\:bg-pink-800 { + background-color: #9d174d; } - .md\:placeholder-yellow-300::placeholder { - color: #fcd34d; + .group:hover .md\:group-hover\:bg-pink-900 { + background-color: #831843; } - .md\:placeholder-yellow-400::placeholder { - color: #fbbf24; + .md\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .md\:placeholder-yellow-500::placeholder { - color: #f59e0b; + .md\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .md\:placeholder-yellow-600::placeholder { - color: #d97706; + .md\:focus-within\:bg-black:focus-within { + background-color: #000; } - .md\:placeholder-yellow-700::placeholder { - color: #b45309; + .md\:focus-within\:bg-white:focus-within { + background-color: #fff; } - .md\:placeholder-yellow-800::placeholder { - color: #92400e; + .md\:focus-within\:bg-gray-50:focus-within { + background-color: #f9fafb; } - .md\:placeholder-yellow-900::placeholder { - color: #78350f; + .md\:focus-within\:bg-gray-100:focus-within { + background-color: #f3f4f6; } - .md\:placeholder-green-50::placeholder { - color: #ecfdf5; + .md\:focus-within\:bg-gray-200:focus-within { + background-color: #e5e7eb; } - .md\:placeholder-green-100::placeholder { - color: #d1fae5; + .md\:focus-within\:bg-gray-300:focus-within { + background-color: #d1d5db; } - .md\:placeholder-green-200::placeholder { - color: #a7f3d0; + .md\:focus-within\:bg-gray-400:focus-within { + background-color: #9ca3af; } - .md\:placeholder-green-300::placeholder { - color: #6ee7b7; + .md\:focus-within\:bg-gray-500:focus-within { + background-color: #6b7280; } - .md\:placeholder-green-400::placeholder { - color: #34d399; + .md\:focus-within\:bg-gray-600:focus-within { + background-color: #4b5563; } - .md\:placeholder-green-500::placeholder { - color: #10b981; + .md\:focus-within\:bg-gray-700:focus-within { + background-color: #374151; } - .md\:placeholder-green-600::placeholder { - color: #059669; + .md\:focus-within\:bg-gray-800:focus-within { + background-color: #1f2937; } - .md\:placeholder-green-700::placeholder { - color: #047857; + .md\:focus-within\:bg-gray-900:focus-within { + background-color: #111827; } - .md\:placeholder-green-800::placeholder { - color: #065f46; + .md\:focus-within\:bg-red-50:focus-within { + background-color: #fef2f2; } - .md\:placeholder-green-900::placeholder { - color: #064e3b; + .md\:focus-within\:bg-red-100:focus-within { + background-color: #fee2e2; } - .md\:placeholder-blue-50::placeholder { - color: #eff6ff; + .md\:focus-within\:bg-red-200:focus-within { + background-color: #fecaca; } - .md\:placeholder-blue-100::placeholder { - color: #dbeafe; + .md\:focus-within\:bg-red-300:focus-within { + background-color: #fca5a5; } - .md\:placeholder-blue-200::placeholder { - color: #bfdbfe; + .md\:focus-within\:bg-red-400:focus-within { + background-color: #f87171; } - .md\:placeholder-blue-300::placeholder { - color: #93c5fd; + .md\:focus-within\:bg-red-500:focus-within { + background-color: #ef4444; } - .md\:placeholder-blue-400::placeholder { - color: #60a5fa; + .md\:focus-within\:bg-red-600:focus-within { + background-color: #dc2626; } - .md\:placeholder-blue-500::placeholder { - color: #3b82f6; + .md\:focus-within\:bg-red-700:focus-within { + background-color: #b91c1c; } - .md\:placeholder-blue-600::placeholder { - color: #2563eb; + .md\:focus-within\:bg-red-800:focus-within { + background-color: #991b1b; } - .md\:placeholder-blue-700::placeholder { - color: #1d4ed8; + .md\:focus-within\:bg-red-900:focus-within { + background-color: #7f1d1d; } - .md\:placeholder-blue-800::placeholder { - color: #1e40af; + .md\:focus-within\:bg-yellow-50:focus-within { + background-color: #fffbeb; } - .md\:placeholder-blue-900::placeholder { - color: #1e3a8a; + .md\:focus-within\:bg-yellow-100:focus-within { + background-color: #fef3c7; } - .md\:placeholder-indigo-50::placeholder { - color: #eef2ff; + .md\:focus-within\:bg-yellow-200:focus-within { + background-color: #fde68a; } - .md\:placeholder-indigo-100::placeholder { - color: #e0e7ff; + .md\:focus-within\:bg-yellow-300:focus-within { + background-color: #fcd34d; } - .md\:placeholder-indigo-200::placeholder { - color: #c7d2fe; + .md\:focus-within\:bg-yellow-400:focus-within { + background-color: #fbbf24; } - .md\:placeholder-indigo-300::placeholder { - color: #a5b4fc; + .md\:focus-within\:bg-yellow-500:focus-within { + background-color: #f59e0b; } - .md\:placeholder-indigo-400::placeholder { - color: #818cf8; + .md\:focus-within\:bg-yellow-600:focus-within { + background-color: #d97706; } - .md\:placeholder-indigo-500::placeholder { - color: #6366f1; + .md\:focus-within\:bg-yellow-700:focus-within { + background-color: #b45309; } - .md\:placeholder-indigo-600::placeholder { - color: #4f46e5; + .md\:focus-within\:bg-yellow-800:focus-within { + background-color: #92400e; } - .md\:placeholder-indigo-700::placeholder { - color: #4338ca; + .md\:focus-within\:bg-yellow-900:focus-within { + background-color: #78350f; } - .md\:placeholder-indigo-800::placeholder { - color: #3730a3; + .md\:focus-within\:bg-green-50:focus-within { + background-color: #ecfdf5; } - .md\:placeholder-indigo-900::placeholder { - color: #312e81; + .md\:focus-within\:bg-green-100:focus-within { + background-color: #d1fae5; } - .md\:placeholder-purple-50::placeholder { - color: #f5f3ff; + .md\:focus-within\:bg-green-200:focus-within { + background-color: #a7f3d0; } - .md\:placeholder-purple-100::placeholder { - color: #ede9fe; + .md\:focus-within\:bg-green-300:focus-within { + background-color: #6ee7b7; } - .md\:placeholder-purple-200::placeholder { - color: #ddd6fe; + .md\:focus-within\:bg-green-400:focus-within { + background-color: #34d399; } - .md\:placeholder-purple-300::placeholder { - color: #c4b5fd; + .md\:focus-within\:bg-green-500:focus-within { + background-color: #10b981; } - .md\:placeholder-purple-400::placeholder { - color: #a78bfa; + .md\:focus-within\:bg-green-600:focus-within { + background-color: #059669; } - .md\:placeholder-purple-500::placeholder { - color: #8b5cf6; + .md\:focus-within\:bg-green-700:focus-within { + background-color: #047857; } - .md\:placeholder-purple-600::placeholder { - color: #7c3aed; + .md\:focus-within\:bg-green-800:focus-within { + background-color: #065f46; } - .md\:placeholder-purple-700::placeholder { - color: #6d28d9; + .md\:focus-within\:bg-green-900:focus-within { + background-color: #064e3b; } - .md\:placeholder-purple-800::placeholder { - color: #5b21b6; + .md\:focus-within\:bg-blue-50:focus-within { + background-color: #eff6ff; } - .md\:placeholder-purple-900::placeholder { - color: #4c1d95; + .md\:focus-within\:bg-blue-100:focus-within { + background-color: #dbeafe; } - .md\:placeholder-pink-50::placeholder { - color: #fdf2f8; + .md\:focus-within\:bg-blue-200:focus-within { + background-color: #bfdbfe; } - .md\:placeholder-pink-100::placeholder { - color: #fce7f3; + .md\:focus-within\:bg-blue-300:focus-within { + background-color: #93c5fd; } - .md\:placeholder-pink-200::placeholder { - color: #fbcfe8; + .md\:focus-within\:bg-blue-400:focus-within { + background-color: #60a5fa; } - .md\:placeholder-pink-300::placeholder { - color: #f9a8d4; + .md\:focus-within\:bg-blue-500:focus-within { + background-color: #3b82f6; } - .md\:placeholder-pink-400::placeholder { - color: #f472b6; + .md\:focus-within\:bg-blue-600:focus-within { + background-color: #2563eb; } - .md\:placeholder-pink-500::placeholder { - color: #ec4899; + .md\:focus-within\:bg-blue-700:focus-within { + background-color: #1d4ed8; } - .md\:placeholder-pink-600::placeholder { - color: #db2777; + .md\:focus-within\:bg-blue-800:focus-within { + background-color: #1e40af; } - .md\:placeholder-pink-700::placeholder { - color: #be185d; + .md\:focus-within\:bg-blue-900:focus-within { + background-color: #1e3a8a; } - .md\:placeholder-pink-800::placeholder { - color: #9d174d; + .md\:focus-within\:bg-indigo-50:focus-within { + background-color: #eef2ff; } - .md\:placeholder-pink-900::placeholder { - color: #831843; + .md\:focus-within\:bg-indigo-100:focus-within { + background-color: #e0e7ff; } - .md\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .md\:focus-within\:bg-indigo-200:focus-within { + background-color: #c7d2fe; } - .md\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .md\:focus-within\:bg-indigo-300:focus-within { + background-color: #a5b4fc; } - .md\:focus\:placeholder-black:focus::placeholder { - color: #000; + .md\:focus-within\:bg-indigo-400:focus-within { + background-color: #818cf8; } - .md\:focus\:placeholder-white:focus::placeholder { - color: #fff; + .md\:focus-within\:bg-indigo-500:focus-within { + background-color: #6366f1; } - .md\:focus\:placeholder-gray-50:focus::placeholder { - color: #f9fafb; + .md\:focus-within\:bg-indigo-600:focus-within { + background-color: #4f46e5; } - .md\:focus\:placeholder-gray-100:focus::placeholder { - color: #f3f4f6; + .md\:focus-within\:bg-indigo-700:focus-within { + background-color: #4338ca; } - .md\:focus\:placeholder-gray-200:focus::placeholder { - color: #e5e7eb; + .md\:focus-within\:bg-indigo-800:focus-within { + background-color: #3730a3; } - .md\:focus\:placeholder-gray-300:focus::placeholder { - color: #d1d5db; + .md\:focus-within\:bg-indigo-900:focus-within { + background-color: #312e81; } - .md\:focus\:placeholder-gray-400:focus::placeholder { - color: #9ca3af; + .md\:focus-within\:bg-purple-50:focus-within { + background-color: #f5f3ff; } - .md\:focus\:placeholder-gray-500:focus::placeholder { - color: #6b7280; + .md\:focus-within\:bg-purple-100:focus-within { + background-color: #ede9fe; } - .md\:focus\:placeholder-gray-600:focus::placeholder { - color: #4b5563; + .md\:focus-within\:bg-purple-200:focus-within { + background-color: #ddd6fe; } - .md\:focus\:placeholder-gray-700:focus::placeholder { - color: #374151; + .md\:focus-within\:bg-purple-300:focus-within { + background-color: #c4b5fd; } - .md\:focus\:placeholder-gray-800:focus::placeholder { - color: #1f2937; + .md\:focus-within\:bg-purple-400:focus-within { + background-color: #a78bfa; } - .md\:focus\:placeholder-gray-900:focus::placeholder { - color: #111827; + .md\:focus-within\:bg-purple-500:focus-within { + background-color: #8b5cf6; } - .md\:focus\:placeholder-red-50:focus::placeholder { - color: #fef2f2; + .md\:focus-within\:bg-purple-600:focus-within { + background-color: #7c3aed; } - .md\:focus\:placeholder-red-100:focus::placeholder { - color: #fee2e2; + .md\:focus-within\:bg-purple-700:focus-within { + background-color: #6d28d9; } - .md\:focus\:placeholder-red-200:focus::placeholder { - color: #fecaca; + .md\:focus-within\:bg-purple-800:focus-within { + background-color: #5b21b6; } - .md\:focus\:placeholder-red-300:focus::placeholder { - color: #fca5a5; + .md\:focus-within\:bg-purple-900:focus-within { + background-color: #4c1d95; } - .md\:focus\:placeholder-red-400:focus::placeholder { - color: #f87171; + .md\:focus-within\:bg-pink-50:focus-within { + background-color: #fdf2f8; } - .md\:focus\:placeholder-red-500:focus::placeholder { - color: #ef4444; + .md\:focus-within\:bg-pink-100:focus-within { + background-color: #fce7f3; } - .md\:focus\:placeholder-red-600:focus::placeholder { - color: #dc2626; + .md\:focus-within\:bg-pink-200:focus-within { + background-color: #fbcfe8; } - .md\:focus\:placeholder-red-700:focus::placeholder { - color: #b91c1c; + .md\:focus-within\:bg-pink-300:focus-within { + background-color: #f9a8d4; } - .md\:focus\:placeholder-red-800:focus::placeholder { - color: #991b1b; + .md\:focus-within\:bg-pink-400:focus-within { + background-color: #f472b6; } - .md\:focus\:placeholder-red-900:focus::placeholder { - color: #7f1d1d; + .md\:focus-within\:bg-pink-500:focus-within { + background-color: #ec4899; } - .md\:focus\:placeholder-yellow-50:focus::placeholder { - color: #fffbeb; + .md\:focus-within\:bg-pink-600:focus-within { + background-color: #db2777; } - .md\:focus\:placeholder-yellow-100:focus::placeholder { - color: #fef3c7; + .md\:focus-within\:bg-pink-700:focus-within { + background-color: #be185d; } - .md\:focus\:placeholder-yellow-200:focus::placeholder { - color: #fde68a; + .md\:focus-within\:bg-pink-800:focus-within { + background-color: #9d174d; } - .md\:focus\:placeholder-yellow-300:focus::placeholder { - color: #fcd34d; + .md\:focus-within\:bg-pink-900:focus-within { + background-color: #831843; } - .md\:focus\:placeholder-yellow-400:focus::placeholder { - color: #fbbf24; + .md\:hover\:bg-transparent:hover { + background-color: transparent; } - .md\:focus\:placeholder-yellow-500:focus::placeholder { - color: #f59e0b; + .md\:hover\:bg-current:hover { + background-color: currentColor; } - .md\:focus\:placeholder-yellow-600:focus::placeholder { - color: #d97706; + .md\:hover\:bg-black:hover { + background-color: #000; } - .md\:focus\:placeholder-yellow-700:focus::placeholder { - color: #b45309; + .md\:hover\:bg-white:hover { + background-color: #fff; } - .md\:focus\:placeholder-yellow-800:focus::placeholder { - color: #92400e; + .md\:hover\:bg-gray-50:hover { + background-color: #f9fafb; } - .md\:focus\:placeholder-yellow-900:focus::placeholder { - color: #78350f; + .md\:hover\:bg-gray-100:hover { + background-color: #f3f4f6; } - .md\:focus\:placeholder-green-50:focus::placeholder { - color: #ecfdf5; + .md\:hover\:bg-gray-200:hover { + background-color: #e5e7eb; } - .md\:focus\:placeholder-green-100:focus::placeholder { - color: #d1fae5; + .md\:hover\:bg-gray-300:hover { + background-color: #d1d5db; } - .md\:focus\:placeholder-green-200:focus::placeholder { - color: #a7f3d0; + .md\:hover\:bg-gray-400:hover { + background-color: #9ca3af; } - .md\:focus\:placeholder-green-300:focus::placeholder { - color: #6ee7b7; + .md\:hover\:bg-gray-500:hover { + background-color: #6b7280; } - .md\:focus\:placeholder-green-400:focus::placeholder { - color: #34d399; + .md\:hover\:bg-gray-600:hover { + background-color: #4b5563; } - .md\:focus\:placeholder-green-500:focus::placeholder { - color: #10b981; + .md\:hover\:bg-gray-700:hover { + background-color: #374151; } - .md\:focus\:placeholder-green-600:focus::placeholder { - color: #059669; + .md\:hover\:bg-gray-800:hover { + background-color: #1f2937; } - .md\:focus\:placeholder-green-700:focus::placeholder { - color: #047857; + .md\:hover\:bg-gray-900:hover { + background-color: #111827; } - .md\:focus\:placeholder-green-800:focus::placeholder { - color: #065f46; + .md\:hover\:bg-red-50:hover { + background-color: #fef2f2; } - .md\:focus\:placeholder-green-900:focus::placeholder { - color: #064e3b; + .md\:hover\:bg-red-100:hover { + background-color: #fee2e2; } - .md\:focus\:placeholder-blue-50:focus::placeholder { - color: #eff6ff; + .md\:hover\:bg-red-200:hover { + background-color: #fecaca; } - .md\:focus\:placeholder-blue-100:focus::placeholder { - color: #dbeafe; + .md\:hover\:bg-red-300:hover { + background-color: #fca5a5; } - .md\:focus\:placeholder-blue-200:focus::placeholder { - color: #bfdbfe; + .md\:hover\:bg-red-400:hover { + background-color: #f87171; } - .md\:focus\:placeholder-blue-300:focus::placeholder { - color: #93c5fd; + .md\:hover\:bg-red-500:hover { + background-color: #ef4444; } - .md\:focus\:placeholder-blue-400:focus::placeholder { - color: #60a5fa; + .md\:hover\:bg-red-600:hover { + background-color: #dc2626; } - .md\:focus\:placeholder-blue-500:focus::placeholder { - color: #3b82f6; + .md\:hover\:bg-red-700:hover { + background-color: #b91c1c; } - .md\:focus\:placeholder-blue-600:focus::placeholder { - color: #2563eb; + .md\:hover\:bg-red-800:hover { + background-color: #991b1b; } - .md\:focus\:placeholder-blue-700:focus::placeholder { - color: #1d4ed8; + .md\:hover\:bg-red-900:hover { + background-color: #7f1d1d; } - .md\:focus\:placeholder-blue-800:focus::placeholder { - color: #1e40af; + .md\:hover\:bg-yellow-50:hover { + background-color: #fffbeb; } - .md\:focus\:placeholder-blue-900:focus::placeholder { - color: #1e3a8a; + .md\:hover\:bg-yellow-100:hover { + background-color: #fef3c7; } - .md\:focus\:placeholder-indigo-50:focus::placeholder { - color: #eef2ff; + .md\:hover\:bg-yellow-200:hover { + background-color: #fde68a; } - .md\:focus\:placeholder-indigo-100:focus::placeholder { - color: #e0e7ff; + .md\:hover\:bg-yellow-300:hover { + background-color: #fcd34d; } - .md\:focus\:placeholder-indigo-200:focus::placeholder { - color: #c7d2fe; + .md\:hover\:bg-yellow-400:hover { + background-color: #fbbf24; } - .md\:focus\:placeholder-indigo-300:focus::placeholder { - color: #a5b4fc; + .md\:hover\:bg-yellow-500:hover { + background-color: #f59e0b; } - .md\:focus\:placeholder-indigo-400:focus::placeholder { - color: #818cf8; + .md\:hover\:bg-yellow-600:hover { + background-color: #d97706; } - .md\:focus\:placeholder-indigo-500:focus::placeholder { - color: #6366f1; + .md\:hover\:bg-yellow-700:hover { + background-color: #b45309; } - .md\:focus\:placeholder-indigo-600:focus::placeholder { - color: #4f46e5; + .md\:hover\:bg-yellow-800:hover { + background-color: #92400e; } - .md\:focus\:placeholder-indigo-700:focus::placeholder { - color: #4338ca; + .md\:hover\:bg-yellow-900:hover { + background-color: #78350f; } - .md\:focus\:placeholder-indigo-800:focus::placeholder { - color: #3730a3; + .md\:hover\:bg-green-50:hover { + background-color: #ecfdf5; } - .md\:focus\:placeholder-indigo-900:focus::placeholder { - color: #312e81; + .md\:hover\:bg-green-100:hover { + background-color: #d1fae5; } - .md\:focus\:placeholder-purple-50:focus::placeholder { - color: #f5f3ff; + .md\:hover\:bg-green-200:hover { + background-color: #a7f3d0; } - .md\:focus\:placeholder-purple-100:focus::placeholder { - color: #ede9fe; + .md\:hover\:bg-green-300:hover { + background-color: #6ee7b7; } - .md\:focus\:placeholder-purple-200:focus::placeholder { - color: #ddd6fe; + .md\:hover\:bg-green-400:hover { + background-color: #34d399; } - .md\:focus\:placeholder-purple-300:focus::placeholder { - color: #c4b5fd; + .md\:hover\:bg-green-500:hover { + background-color: #10b981; } - .md\:focus\:placeholder-purple-400:focus::placeholder { - color: #a78bfa; + .md\:hover\:bg-green-600:hover { + background-color: #059669; } - .md\:focus\:placeholder-purple-500:focus::placeholder { - color: #8b5cf6; + .md\:hover\:bg-green-700:hover { + background-color: #047857; } - .md\:focus\:placeholder-purple-600:focus::placeholder { - color: #7c3aed; + .md\:hover\:bg-green-800:hover { + background-color: #065f46; } - .md\:focus\:placeholder-purple-700:focus::placeholder { - color: #6d28d9; + .md\:hover\:bg-green-900:hover { + background-color: #064e3b; } - .md\:focus\:placeholder-purple-800:focus::placeholder { - color: #5b21b6; + .md\:hover\:bg-blue-50:hover { + background-color: #eff6ff; } - .md\:focus\:placeholder-purple-900:focus::placeholder { - color: #4c1d95; + .md\:hover\:bg-blue-100:hover { + background-color: #dbeafe; } - .md\:focus\:placeholder-pink-50:focus::placeholder { - color: #fdf2f8; + .md\:hover\:bg-blue-200:hover { + background-color: #bfdbfe; } - .md\:focus\:placeholder-pink-100:focus::placeholder { - color: #fce7f3; + .md\:hover\:bg-blue-300:hover { + background-color: #93c5fd; } - .md\:focus\:placeholder-pink-200:focus::placeholder { - color: #fbcfe8; + .md\:hover\:bg-blue-400:hover { + background-color: #60a5fa; } - .md\:focus\:placeholder-pink-300:focus::placeholder { - color: #f9a8d4; + .md\:hover\:bg-blue-500:hover { + background-color: #3b82f6; } - .md\:focus\:placeholder-pink-400:focus::placeholder { - color: #f472b6; + .md\:hover\:bg-blue-600:hover { + background-color: #2563eb; } - .md\:focus\:placeholder-pink-500:focus::placeholder { - color: #ec4899; + .md\:hover\:bg-blue-700:hover { + background-color: #1d4ed8; } - .md\:focus\:placeholder-pink-600:focus::placeholder { - color: #db2777; + .md\:hover\:bg-blue-800:hover { + background-color: #1e40af; } - .md\:focus\:placeholder-pink-700:focus::placeholder { - color: #be185d; + .md\:hover\:bg-blue-900:hover { + background-color: #1e3a8a; } - .md\:focus\:placeholder-pink-800:focus::placeholder { - color: #9d174d; + .md\:hover\:bg-indigo-50:hover { + background-color: #eef2ff; } - .md\:focus\:placeholder-pink-900:focus::placeholder { - color: #831843; + .md\:hover\:bg-indigo-100:hover { + background-color: #e0e7ff; } - .md\:pointer-events-none { - pointer-events: none; + .md\:hover\:bg-indigo-200:hover { + background-color: #c7d2fe; } - .md\:pointer-events-auto { - pointer-events: auto; + .md\:hover\:bg-indigo-300:hover { + background-color: #a5b4fc; } - .md\:static { - position: static; + .md\:hover\:bg-indigo-400:hover { + background-color: #818cf8; } - .md\:fixed { - position: fixed; + .md\:hover\:bg-indigo-500:hover { + background-color: #6366f1; } - .md\:absolute { - position: absolute; + .md\:hover\:bg-indigo-600:hover { + background-color: #4f46e5; } - .md\:relative { - position: relative; + .md\:hover\:bg-indigo-700:hover { + background-color: #4338ca; } - .md\:sticky { - position: sticky; + .md\:hover\:bg-indigo-800:hover { + background-color: #3730a3; } - .md\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .md\:hover\:bg-indigo-900:hover { + background-color: #312e81; } - .md\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .md\:hover\:bg-purple-50:hover { + background-color: #f5f3ff; } - .md\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .md\:hover\:bg-purple-100:hover { + background-color: #ede9fe; } - .md\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .md\:hover\:bg-purple-200:hover { + background-color: #ddd6fe; } - .md\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .md\:hover\:bg-purple-300:hover { + background-color: #c4b5fd; } - .md\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .md\:hover\:bg-purple-400:hover { + background-color: #a78bfa; } - .md\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .md\:hover\:bg-purple-500:hover { + background-color: #8b5cf6; } - .md\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .md\:hover\:bg-purple-600:hover { + background-color: #7c3aed; } - .md\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .md\:hover\:bg-purple-700:hover { + background-color: #6d28d9; } - .md\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .md\:hover\:bg-purple-800:hover { + background-color: #5b21b6; } - .md\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .md\:hover\:bg-purple-900:hover { + background-color: #4c1d95; } - .md\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .md\:hover\:bg-pink-50:hover { + background-color: #fdf2f8; } - .md\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .md\:hover\:bg-pink-100:hover { + background-color: #fce7f3; } - .md\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .md\:hover\:bg-pink-200:hover { + background-color: #fbcfe8; } - .md\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .md\:hover\:bg-pink-300:hover { + background-color: #f9a8d4; } - .md\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .md\:hover\:bg-pink-400:hover { + background-color: #f472b6; } - .md\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .md\:hover\:bg-pink-500:hover { + background-color: #ec4899; } - .md\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .md\:hover\:bg-pink-600:hover { + background-color: #db2777; } - .md\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .md\:hover\:bg-pink-700:hover { + background-color: #be185d; } - .md\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .md\:hover\:bg-pink-800:hover { + background-color: #9d174d; } - .md\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .md\:hover\:bg-pink-900:hover { + background-color: #831843; } - .md\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .md\:focus\:bg-transparent:focus { + background-color: transparent; } - .md\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .md\:focus\:bg-current:focus { + background-color: currentColor; } - .md\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .md\:focus\:bg-black:focus { + background-color: #000; } - .md\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .md\:focus\:bg-white:focus { + background-color: #fff; } - .md\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .md\:focus\:bg-gray-50:focus { + background-color: #f9fafb; } - .md\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .md\:focus\:bg-gray-100:focus { + background-color: #f3f4f6; } - .md\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .md\:focus\:bg-gray-200:focus { + background-color: #e5e7eb; } - .md\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .md\:focus\:bg-gray-300:focus { + background-color: #d1d5db; } - .md\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .md\:focus\:bg-gray-400:focus { + background-color: #9ca3af; } - .md\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .md\:focus\:bg-gray-500:focus { + background-color: #6b7280; } - .md\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .md\:focus\:bg-gray-600:focus { + background-color: #4b5563; } - .md\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .md\:focus\:bg-gray-700:focus { + background-color: #374151; } - .md\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .md\:focus\:bg-gray-800:focus { + background-color: #1f2937; } - .md\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .md\:focus\:bg-gray-900:focus { + background-color: #111827; } - .md\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .md\:focus\:bg-red-50:focus { + background-color: #fef2f2; } - .md\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .md\:focus\:bg-red-100:focus { + background-color: #fee2e2; } - .md\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .md\:focus\:bg-red-200:focus { + background-color: #fecaca; } - .md\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .md\:focus\:bg-red-300:focus { + background-color: #fca5a5; } - .md\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .md\:focus\:bg-red-400:focus { + background-color: #f87171; } - .md\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .md\:focus\:bg-red-500:focus { + background-color: #ef4444; } - .md\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .md\:focus\:bg-red-600:focus { + background-color: #dc2626; } - .md\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .md\:focus\:bg-red-700:focus { + background-color: #b91c1c; } - .md\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .md\:focus\:bg-red-800:focus { + background-color: #991b1b; } - .md\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .md\:focus\:bg-red-900:focus { + background-color: #7f1d1d; } - .md\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .md\:focus\:bg-yellow-50:focus { + background-color: #fffbeb; } - .md\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .md\:focus\:bg-yellow-100:focus { + background-color: #fef3c7; } - .md\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .md\:focus\:bg-yellow-200:focus { + background-color: #fde68a; } - .md\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .md\:focus\:bg-yellow-300:focus { + background-color: #fcd34d; } - .md\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .md\:focus\:bg-yellow-400:focus { + background-color: #fbbf24; } - .md\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .md\:focus\:bg-yellow-500:focus { + background-color: #f59e0b; } - .md\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .md\:focus\:bg-yellow-600:focus { + background-color: #d97706; } - .md\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .md\:focus\:bg-yellow-700:focus { + background-color: #b45309; } - .md\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .md\:focus\:bg-yellow-800:focus { + background-color: #92400e; } - .md\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .md\:focus\:bg-yellow-900:focus { + background-color: #78350f; } - .md\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .md\:focus\:bg-green-50:focus { + background-color: #ecfdf5; } - .md\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .md\:focus\:bg-green-100:focus { + background-color: #d1fae5; } - .md\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .md\:focus\:bg-green-200:focus { + background-color: #a7f3d0; } - .md\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .md\:focus\:bg-green-300:focus { + background-color: #6ee7b7; } - .md\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .md\:focus\:bg-green-400:focus { + background-color: #34d399; } - .md\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .md\:focus\:bg-green-500:focus { + background-color: #10b981; } - .md\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .md\:focus\:bg-green-600:focus { + background-color: #059669; } - .md\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .md\:focus\:bg-green-700:focus { + background-color: #047857; } - .md\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .md\:focus\:bg-green-800:focus { + background-color: #065f46; } - .md\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .md\:focus\:bg-green-900:focus { + background-color: #064e3b; } - .md\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .md\:focus\:bg-blue-50:focus { + background-color: #eff6ff; } - .md\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .md\:focus\:bg-blue-100:focus { + background-color: #dbeafe; } - .md\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .md\:focus\:bg-blue-200:focus { + background-color: #bfdbfe; } - .md\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .md\:focus\:bg-blue-300:focus { + background-color: #93c5fd; } - .md\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .md\:focus\:bg-blue-400:focus { + background-color: #60a5fa; } - .md\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .md\:focus\:bg-blue-500:focus { + background-color: #3b82f6; } - .md\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .md\:focus\:bg-blue-600:focus { + background-color: #2563eb; } - .md\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .md\:focus\:bg-blue-700:focus { + background-color: #1d4ed8; } - .md\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .md\:focus\:bg-blue-800:focus { + background-color: #1e40af; } - .md\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .md\:focus\:bg-blue-900:focus { + background-color: #1e3a8a; } - .md\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .md\:focus\:bg-indigo-50:focus { + background-color: #eef2ff; } - .md\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .md\:focus\:bg-indigo-100:focus { + background-color: #e0e7ff; } - .md\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .md\:focus\:bg-indigo-200:focus { + background-color: #c7d2fe; } - .md\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .md\:focus\:bg-indigo-300:focus { + background-color: #a5b4fc; } - .md\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .md\:focus\:bg-indigo-400:focus { + background-color: #818cf8; } - .md\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .md\:focus\:bg-indigo-500:focus { + background-color: #6366f1; } - .md\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .md\:focus\:bg-indigo-600:focus { + background-color: #4f46e5; } - .md\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .md\:focus\:bg-indigo-700:focus { + background-color: #4338ca; } - .md\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .md\:focus\:bg-indigo-800:focus { + background-color: #3730a3; } - .md\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .md\:focus\:bg-indigo-900:focus { + background-color: #312e81; } - .md\:inset-y-0 { - top: 0px; - bottom: 0px; + .md\:focus\:bg-purple-50:focus { + background-color: #f5f3ff; } - .md\:inset-x-0 { - right: 0px; - left: 0px; + .md\:focus\:bg-purple-100:focus { + background-color: #ede9fe; } - .md\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .md\:focus\:bg-purple-200:focus { + background-color: #ddd6fe; } - .md\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .md\:focus\:bg-purple-300:focus { + background-color: #c4b5fd; } - .md\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .md\:focus\:bg-purple-400:focus { + background-color: #a78bfa; } - .md\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .md\:focus\:bg-purple-500:focus { + background-color: #8b5cf6; } - .md\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .md\:focus\:bg-purple-600:focus { + background-color: #7c3aed; } - .md\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .md\:focus\:bg-purple-700:focus { + background-color: #6d28d9; } - .md\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .md\:focus\:bg-purple-800:focus { + background-color: #5b21b6; } - .md\:inset-x-4 { - right: 1rem; - left: 1rem; + .md\:focus\:bg-purple-900:focus { + background-color: #4c1d95; } - .md\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .md\:focus\:bg-pink-50:focus { + background-color: #fdf2f8; } - .md\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .md\:focus\:bg-pink-100:focus { + background-color: #fce7f3; } - .md\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .md\:focus\:bg-pink-200:focus { + background-color: #fbcfe8; } - .md\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .md\:focus\:bg-pink-300:focus { + background-color: #f9a8d4; } - .md\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .md\:focus\:bg-pink-400:focus { + background-color: #f472b6; } - .md\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .md\:focus\:bg-pink-500:focus { + background-color: #ec4899; } - .md\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .md\:focus\:bg-pink-600:focus { + background-color: #db2777; } - .md\:inset-x-8 { - right: 2rem; - left: 2rem; + .md\:focus\:bg-pink-700:focus { + background-color: #be185d; } - .md\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .md\:focus\:bg-pink-800:focus { + background-color: #9d174d; } - .md\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .md\:focus\:bg-pink-900:focus { + background-color: #831843; } - .md\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .md\:bg-none { + background-image: none; } - .md\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .md\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .md\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .md\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .md\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .md\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .md\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .md\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .md\:inset-x-12 { - right: 3rem; - left: 3rem; + .md\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .md\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .md\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .md\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .md\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .md\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .md\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .md\:inset-x-16 { - right: 4rem; - left: 4rem; + .md\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .md\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:inset-x-20 { - right: 5rem; - left: 5rem; + .md\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .md\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:inset-x-24 { - right: 6rem; - left: 6rem; + .md\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .md\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:inset-x-28 { - right: 7rem; - left: 7rem; + .md\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .md\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:inset-x-32 { - right: 8rem; - left: 8rem; + .md\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .md\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:inset-x-36 { - right: 9rem; - left: 9rem; + .md\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .md\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:inset-x-40 { - right: 10rem; - left: 10rem; + .md\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .md\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:inset-x-44 { - right: 11rem; - left: 11rem; + .md\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .md\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:inset-x-48 { - right: 12rem; - left: 12rem; + .md\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .md\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:inset-x-52 { - right: 13rem; - left: 13rem; + .md\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .md\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:inset-x-56 { - right: 14rem; - left: 14rem; + .md\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .md\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:inset-x-60 { - right: 15rem; - left: 15rem; + .md\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .md\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:inset-x-64 { - right: 16rem; - left: 16rem; + .md\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .md\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:inset-x-72 { - right: 18rem; - left: 18rem; + .md\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .md\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:inset-x-80 { - right: 20rem; - left: 20rem; + .md\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .md\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:inset-x-96 { - right: 24rem; - left: 24rem; + .md\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:inset-y-auto { - top: auto; - bottom: auto; + .md\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:inset-x-auto { - right: auto; - left: auto; + .md\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:inset-y-px { - top: 1px; - bottom: 1px; + .md\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:inset-x-px { - right: 1px; - left: 1px; + .md\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .md\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .md\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .md\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .md\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .md\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .md\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .md\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .md\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:-inset-y-0 { - top: 0px; - bottom: 0px; + .md\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:-inset-x-0 { - right: 0px; - left: 0px; + .md\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .md\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .md\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .md\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .md\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .md\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .md\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .md\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:-inset-x-4 { - right: -1rem; - left: -1rem; + .md\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .md\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .md\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .md\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .md\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .md\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .md\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .md\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:-inset-x-8 { - right: -2rem; - left: -2rem; + .md\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .md\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .md\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .md\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .md\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .md\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .md\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .md\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:-inset-x-12 { - right: -3rem; - left: -3rem; + .md\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .md\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .md\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .md\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:-inset-x-16 { - right: -4rem; - left: -4rem; + .md\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .md\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:-inset-x-20 { - right: -5rem; - left: -5rem; + .md\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .md\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:-inset-x-24 { - right: -6rem; - left: -6rem; + .md\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .md\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:-inset-x-28 { - right: -7rem; - left: -7rem; + .md\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .md\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:-inset-x-32 { - right: -8rem; - left: -8rem; + .md\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .md\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:-inset-x-36 { - right: -9rem; - left: -9rem; + .md\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .md\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:-inset-x-40 { - right: -10rem; - left: -10rem; + .md\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .md\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-inset-x-44 { - right: -11rem; - left: -11rem; + .md\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .md\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-inset-x-48 { - right: -12rem; - left: -12rem; + .md\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .md\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:-inset-x-52 { - right: -13rem; - left: -13rem; + .md\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .md\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:-inset-x-56 { - right: -14rem; - left: -14rem; + .md\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .md\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:-inset-x-60 { - right: -15rem; - left: -15rem; + .md\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .md\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:-inset-x-64 { - right: -16rem; - left: -16rem; + .md\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .md\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:-inset-x-72 { - right: -18rem; - left: -18rem; + .md\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .md\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:-inset-x-80 { - right: -20rem; - left: -20rem; + .md\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .md\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:-inset-x-96 { - right: -24rem; - left: -24rem; + .md\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:-inset-y-px { - top: -1px; - bottom: -1px; + .md\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:-inset-x-px { - right: -1px; - left: -1px; + .md\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .md\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .md\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .md\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .md\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .md\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .md\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .md\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .md\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .md\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:inset-x-1\/2 { - right: 50%; - left: 50%; + .md\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .md\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .md\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .md\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .md\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .md\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:inset-x-1\/4 { - right: 25%; - left: 25%; + .md\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .md\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:inset-x-2\/4 { - right: 50%; - left: 50%; + .md\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .md\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:inset-x-3\/4 { - right: 75%; - left: 75%; + .md\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:inset-y-full { - top: 100%; - bottom: 100%; + .md\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:inset-x-full { - right: 100%; - left: 100%; + .md\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .md\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .md\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .md\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .md\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .md\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .md\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .md\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .md\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .md\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .md\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .md\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .md\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:-inset-y-full { - top: -100%; - bottom: -100%; + .md\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:-inset-x-full { - right: -100%; - left: -100%; + .md\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:top-0 { - top: 0px; + .md\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:right-0 { - right: 0px; + .md\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:bottom-0 { - bottom: 0px; + .md\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:left-0 { - left: 0px; + .md\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:top-1 { - top: 0.25rem; + .md\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:right-1 { - right: 0.25rem; + .md\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:bottom-1 { - bottom: 0.25rem; + .md\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:left-1 { - left: 0.25rem; + .md\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:top-2 { - top: 0.5rem; + .md\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:right-2 { - right: 0.5rem; + .md\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:bottom-2 { - bottom: 0.5rem; + .md\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:left-2 { - left: 0.5rem; + .md\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:top-3 { - top: 0.75rem; + .md\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:right-3 { - right: 0.75rem; + .md\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:bottom-3 { - bottom: 0.75rem; + .md\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:left-3 { - left: 0.75rem; + .md\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:top-4 { - top: 1rem; + .md\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:right-4 { - right: 1rem; + .md\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:bottom-4 { - bottom: 1rem; + .md\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:left-4 { - left: 1rem; + .md\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:top-5 { - top: 1.25rem; + .md\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:right-5 { - right: 1.25rem; + .md\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:bottom-5 { - bottom: 1.25rem; + .md\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:left-5 { - left: 1.25rem; + .md\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:top-6 { - top: 1.5rem; + .md\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:right-6 { - right: 1.5rem; + .md\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:bottom-6 { - bottom: 1.5rem; + .md\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:left-6 { - left: 1.5rem; + .md\:to-transparent { + --tw-gradient-to: transparent; } - .md\:top-7 { - top: 1.75rem; + .md\:to-current { + --tw-gradient-to: currentColor; } - .md\:right-7 { - right: 1.75rem; + .md\:to-black { + --tw-gradient-to: #000; } - .md\:bottom-7 { - bottom: 1.75rem; + .md\:to-white { + --tw-gradient-to: #fff; } - .md\:left-7 { - left: 1.75rem; + .md\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .md\:top-8 { - top: 2rem; + .md\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .md\:right-8 { - right: 2rem; + .md\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .md\:bottom-8 { - bottom: 2rem; + .md\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .md\:left-8 { - left: 2rem; + .md\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .md\:top-9 { - top: 2.25rem; + .md\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .md\:right-9 { - right: 2.25rem; + .md\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .md\:bottom-9 { - bottom: 2.25rem; + .md\:to-gray-700 { + --tw-gradient-to: #374151; } - .md\:left-9 { - left: 2.25rem; + .md\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .md\:top-10 { - top: 2.5rem; + .md\:to-gray-900 { + --tw-gradient-to: #111827; } - .md\:right-10 { - right: 2.5rem; + .md\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .md\:bottom-10 { - bottom: 2.5rem; + .md\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .md\:left-10 { - left: 2.5rem; + .md\:to-red-200 { + --tw-gradient-to: #fecaca; } - .md\:top-11 { - top: 2.75rem; + .md\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .md\:right-11 { - right: 2.75rem; + .md\:to-red-400 { + --tw-gradient-to: #f87171; } - .md\:bottom-11 { - bottom: 2.75rem; + .md\:to-red-500 { + --tw-gradient-to: #ef4444; } - .md\:left-11 { - left: 2.75rem; + .md\:to-red-600 { + --tw-gradient-to: #dc2626; } - .md\:top-12 { - top: 3rem; + .md\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .md\:right-12 { - right: 3rem; + .md\:to-red-800 { + --tw-gradient-to: #991b1b; } - .md\:bottom-12 { - bottom: 3rem; + .md\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .md\:left-12 { - left: 3rem; + .md\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .md\:top-14 { - top: 3.5rem; + .md\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .md\:right-14 { - right: 3.5rem; + .md\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .md\:bottom-14 { - bottom: 3.5rem; + .md\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .md\:left-14 { - left: 3.5rem; + .md\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .md\:top-16 { - top: 4rem; + .md\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .md\:right-16 { - right: 4rem; + .md\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .md\:bottom-16 { - bottom: 4rem; + .md\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .md\:left-16 { - left: 4rem; + .md\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .md\:top-20 { - top: 5rem; + .md\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .md\:right-20 { - right: 5rem; + .md\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .md\:bottom-20 { - bottom: 5rem; + .md\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .md\:left-20 { - left: 5rem; + .md\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .md\:top-24 { - top: 6rem; + .md\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .md\:right-24 { - right: 6rem; + .md\:to-green-400 { + --tw-gradient-to: #34d399; } - .md\:bottom-24 { - bottom: 6rem; + .md\:to-green-500 { + --tw-gradient-to: #10b981; } - .md\:left-24 { - left: 6rem; + .md\:to-green-600 { + --tw-gradient-to: #059669; } - .md\:top-28 { - top: 7rem; + .md\:to-green-700 { + --tw-gradient-to: #047857; } - .md\:right-28 { - right: 7rem; + .md\:to-green-800 { + --tw-gradient-to: #065f46; } - .md\:bottom-28 { - bottom: 7rem; + .md\:to-green-900 { + --tw-gradient-to: #064e3b; } - .md\:left-28 { - left: 7rem; + .md\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .md\:top-32 { - top: 8rem; + .md\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .md\:right-32 { - right: 8rem; + .md\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .md\:bottom-32 { - bottom: 8rem; + .md\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .md\:left-32 { - left: 8rem; + .md\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .md\:top-36 { - top: 9rem; + .md\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .md\:right-36 { - right: 9rem; + .md\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .md\:bottom-36 { - bottom: 9rem; + .md\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .md\:left-36 { - left: 9rem; + .md\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .md\:top-40 { - top: 10rem; + .md\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .md\:right-40 { - right: 10rem; + .md\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .md\:bottom-40 { - bottom: 10rem; + .md\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .md\:left-40 { - left: 10rem; + .md\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .md\:top-44 { - top: 11rem; + .md\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .md\:right-44 { - right: 11rem; + .md\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .md\:bottom-44 { - bottom: 11rem; + .md\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .md\:left-44 { - left: 11rem; + .md\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .md\:top-48 { - top: 12rem; + .md\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .md\:right-48 { - right: 12rem; + .md\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .md\:bottom-48 { - bottom: 12rem; + .md\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .md\:left-48 { - left: 12rem; + .md\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .md\:top-52 { - top: 13rem; + .md\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .md\:right-52 { - right: 13rem; + .md\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .md\:bottom-52 { - bottom: 13rem; + .md\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .md\:left-52 { - left: 13rem; + .md\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .md\:top-56 { - top: 14rem; + .md\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .md\:right-56 { - right: 14rem; + .md\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .md\:bottom-56 { - bottom: 14rem; + .md\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .md\:left-56 { - left: 14rem; + .md\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .md\:top-60 { - top: 15rem; + .md\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .md\:right-60 { - right: 15rem; + .md\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .md\:bottom-60 { - bottom: 15rem; + .md\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .md\:left-60 { - left: 15rem; + .md\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .md\:top-64 { - top: 16rem; + .md\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .md\:right-64 { - right: 16rem; + .md\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .md\:bottom-64 { - bottom: 16rem; + .md\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .md\:left-64 { - left: 16rem; + .md\:to-pink-600 { + --tw-gradient-to: #db2777; } - .md\:top-72 { - top: 18rem; + .md\:to-pink-700 { + --tw-gradient-to: #be185d; } - .md\:right-72 { - right: 18rem; + .md\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .md\:bottom-72 { - bottom: 18rem; + .md\:to-pink-900 { + --tw-gradient-to: #831843; } - .md\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .md\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-top-14 { - top: -3.5rem; + .md\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-right-14 { - right: -3.5rem; + .md\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-bottom-14 { - bottom: -3.5rem; + .md\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-left-14 { - left: -3.5rem; + .md\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:-top-16 { - top: -4rem; + .md\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:-right-16 { - right: -4rem; + .md\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:-bottom-16 { - bottom: -4rem; + .md\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:-left-16 { - left: -4rem; + .md\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:-top-20 { - top: -5rem; + .md\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:-right-20 { - right: -5rem; + .md\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:-bottom-20 { - bottom: -5rem; + .md\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:-left-20 { - left: -5rem; + .md\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:-top-24 { - top: -6rem; + .md\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:-right-24 { - right: -6rem; + .md\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:-bottom-24 { - bottom: -6rem; + .md\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:-left-24 { - left: -6rem; + .md\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:-top-28 { - top: -7rem; + .md\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:-right-28 { - right: -7rem; + .md\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:-bottom-28 { - bottom: -7rem; + .md\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:-left-28 { - left: -7rem; + .md\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:-top-32 { - top: -8rem; + .md\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:-right-32 { - right: -8rem; + .md\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:-bottom-32 { - bottom: -8rem; + .md\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:-left-32 { - left: -8rem; + .md\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:-top-36 { - top: -9rem; + .md\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:-right-36 { - right: -9rem; + .md\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:-bottom-36 { - bottom: -9rem; + .md\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:-left-36 { - left: -9rem; + .md\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:-top-40 { - top: -10rem; + .md\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:-right-40 { - right: -10rem; + .md\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:-bottom-40 { - bottom: -10rem; + .md\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:-left-40 { - left: -10rem; + .md\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:-top-44 { - top: -11rem; + .md\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:-right-44 { - right: -11rem; + .md\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:-bottom-44 { - bottom: -11rem; + .md\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:-left-44 { - left: -11rem; + .md\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:-top-48 { - top: -12rem; + .md\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:-right-48 { - right: -12rem; + .md\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:-bottom-48 { - bottom: -12rem; + .md\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:-left-48 { - left: -12rem; + .md\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:-top-52 { - top: -13rem; + .md\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:-right-52 { - right: -13rem; + .md\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:-bottom-52 { - bottom: -13rem; + .md\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:-left-52 { - left: -13rem; + .md\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:-top-56 { - top: -14rem; + .md\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:-right-56 { - right: -14rem; + .md\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:-bottom-56 { - bottom: -14rem; + .md\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:-left-56 { - left: -14rem; + .md\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:-top-60 { - top: -15rem; + .md\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:-right-60 { - right: -15rem; + .md\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:-bottom-60 { - bottom: -15rem; + .md\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:-left-60 { - left: -15rem; + .md\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:-top-64 { - top: -16rem; + .md\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:-right-64 { - right: -16rem; + .md\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:-bottom-64 { - bottom: -16rem; + .md\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:-left-64 { - left: -16rem; + .md\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:-top-72 { - top: -18rem; + .md\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:-right-72 { - right: -18rem; + .md\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:-bottom-72 { - bottom: -18rem; + .md\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:-left-72 { - left: -18rem; + .md\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:-top-80 { - top: -20rem; + .md\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:-right-80 { - right: -20rem; + .md\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:-bottom-80 { - bottom: -20rem; + .md\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:-left-80 { - left: -20rem; + .md\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:-top-96 { - top: -24rem; + .md\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:-right-96 { - right: -24rem; + .md\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:-bottom-96 { - bottom: -24rem; + .md\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:-left-96 { - left: -24rem; + .md\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:-top-px { - top: -1px; + .md\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:-right-px { - right: -1px; + .md\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:-bottom-px { - bottom: -1px; + .md\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:-left-px { - left: -1px; + .md\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:-top-0\.5 { - top: -0.125rem; + .md\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:-right-0\.5 { - right: -0.125rem; + .md\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:-bottom-0\.5 { - bottom: -0.125rem; + .md\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:-left-0\.5 { - left: -0.125rem; + .md\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:-top-1\.5 { - top: -0.375rem; + .md\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:-right-1\.5 { - right: -0.375rem; + .md\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:-bottom-1\.5 { - bottom: -0.375rem; + .md\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:-left-1\.5 { - left: -0.375rem; + .md\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:-top-2\.5 { - top: -0.625rem; + .md\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:-right-2\.5 { - right: -0.625rem; + .md\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:-bottom-2\.5 { - bottom: -0.625rem; + .md\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:-left-2\.5 { - left: -0.625rem; + .md\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .md\:-top-3\.5 { - top: -0.875rem; + .md\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .md\:-right-3\.5 { - right: -0.875rem; + .md\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .md\:-bottom-3\.5 { - bottom: -0.875rem; + .md\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .md\:-left-3\.5 { - left: -0.875rem; + .md\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .md\:top-1\/2 { - top: 50%; + .md\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .md\:right-1\/2 { - right: 50%; + .md\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .md\:bottom-1\/2 { - bottom: 50%; + .md\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .md\:left-1\/2 { - left: 50%; + .md\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .md\:top-1\/3 { - top: 33.333333%; + .md\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .md\:right-1\/3 { - right: 33.333333%; + .md\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .md\:bottom-1\/3 { - bottom: 33.333333%; + .md\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .md\:left-1\/3 { - left: 33.333333%; + .md\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .md\:top-2\/3 { - top: 66.666667%; + .md\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .md\:right-2\/3 { - right: 66.666667%; + .md\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .md\:bottom-2\/3 { - bottom: 66.666667%; + .md\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .md\:left-2\/3 { - left: 66.666667%; + .md\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .md\:top-1\/4 { - top: 25%; + .md\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .md\:right-1\/4 { - right: 25%; + .md\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .md\:bottom-1\/4 { - bottom: 25%; + .md\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .md\:left-1\/4 { - left: 25%; + .md\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .md\:top-2\/4 { - top: 50%; + .md\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .md\:right-2\/4 { - right: 50%; + .md\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .md\:bottom-2\/4 { - bottom: 50%; + .md\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .md\:left-2\/4 { - left: 50%; + .md\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .md\:top-3\/4 { - top: 75%; + .md\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .md\:right-3\/4 { - right: 75%; + .md\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .md\:bottom-3\/4 { - bottom: 75%; + .md\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .md\:left-3\/4 { - left: 75%; + .md\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .md\:top-full { - top: 100%; + .md\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .md\:right-full { - right: 100%; + .md\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .md\:bottom-full { - bottom: 100%; + .md\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .md\:left-full { - left: 100%; + .md\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .md\:-top-1\/2 { - top: -50%; + .md\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .md\:-right-1\/2 { - right: -50%; + .md\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .md\:-bottom-1\/2 { - bottom: -50%; + .md\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .md\:-left-1\/2 { - left: -50%; + .md\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .md\:-top-1\/3 { - top: -33.333333%; + .md\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .md\:-right-1\/3 { - right: -33.333333%; + .md\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .md\:-bottom-1\/3 { - bottom: -33.333333%; + .md\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .md\:-left-1\/3 { - left: -33.333333%; + .md\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .md\:-top-2\/3 { - top: -66.666667%; + .md\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .md\:-right-2\/3 { - right: -66.666667%; + .md\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .md\:-bottom-2\/3 { - bottom: -66.666667%; + .md\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .md\:-left-2\/3 { - left: -66.666667%; + .md\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .md\:-top-1\/4 { - top: -25%; + .md\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .md\:-right-1\/4 { - right: -25%; + .md\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .md\:-bottom-1\/4 { - bottom: -25%; + .md\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .md\:-left-1\/4 { - left: -25%; + .md\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .md\:-top-2\/4 { - top: -50%; + .md\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .md\:-right-2\/4 { - right: -50%; + .md\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .md\:-bottom-2\/4 { - bottom: -50%; + .md\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .md\:-left-2\/4 { - left: -50%; + .md\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .md\:-top-3\/4 { - top: -75%; + .md\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .md\:-right-3\/4 { - right: -75%; + .md\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .md\:-bottom-3\/4 { - bottom: -75%; + .md\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .md\:-left-3\/4 { - left: -75%; + .md\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .md\:-top-full { - top: -100%; + .md\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .md\:-right-full { - right: -100%; + .md\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .md\:-bottom-full { - bottom: -100%; + .md\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .md\:-left-full { - left: -100%; + .md\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .md\:resize-none { - resize: none; + .md\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .md\:resize-y { - resize: vertical; + .md\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .md\:resize-x { - resize: horizontal; + .md\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .md\:resize { - resize: both; + .md\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .md\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .md\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .md\: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); + .md\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .md\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .md\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .md\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .md\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .md\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .md\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .md\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .md\:group-hover\: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); + .md\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .md\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .md\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .md\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .md\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .md\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .md\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .md\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .md\:focus-within\:shadow-md:focus-within { - --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); + .md\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .md\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .md\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .md\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .md\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .md\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .md\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .md\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .md\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .md\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .md\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .md\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .md\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .md\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .md\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .md\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .md\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .md\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .md\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .md\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .md\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .md\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .md\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .md\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .md\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .md\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .md\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .md\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .md\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .md\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .md\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .md\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .md\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .md\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .md\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .md\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .md\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .md\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .md\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .md\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .md\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .md\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .md\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .md\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .md\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .md\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .md\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .md\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .md\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .md\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .md\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .md\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .md\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .md\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .md\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .md\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .md\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .md\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .md\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .md\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .md\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .md\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .md\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .md\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .md\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .md\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .md\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .md\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .md\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .md\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .md\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .md\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .md\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .md\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .md\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .md\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .md\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .md\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .md\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .md\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .md\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .md\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .md\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .md\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .md\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .md\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .md\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .md\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .md\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .md\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .md\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .md\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .md\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .md\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .md\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .md\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .md\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .md\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .md\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .md\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .md\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .md\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .md\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .md\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .md\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .md\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .md\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .md\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .md\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .md\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .md\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .md\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .md\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .md\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .md\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .md\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .md\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .md\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .md\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .md\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .md\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .md\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .md\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .md\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .md\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .md\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .md\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .md\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .md\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .md\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .md\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .md\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .md\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .md\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .md\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .md\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .md\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .md\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .md\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .md\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .md\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .md\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .md\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .md\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .md\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .md\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .md\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .md\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .md\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .md\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .md\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .md\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .md\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .md\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .md\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .md\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .md\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .md\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .md\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .md\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .md\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .md\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .md\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .md\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .md\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .md\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .md\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .md\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .md\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .md\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .md\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .md\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .md\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .md\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .md\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .md\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .md\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .md\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .md\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .md\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .md\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .md\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .md\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .md\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .md\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .md\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .md\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .md\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .md\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .md\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .md\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .md\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .md\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .md\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .md\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .md\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .md\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .md\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .md\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .md\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .md\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .md\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .md\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .md\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .md\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .md\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .md\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .md\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .md\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .md\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .md\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .md\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .md\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .md\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .md\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .md\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .md\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .md\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .md\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .md\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .md\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .md\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .md\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .md\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .md\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .md\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .md\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .md\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .md\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .md\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .md\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .md\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .md\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .md\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .md\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .md\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .md\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .md\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .md\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .md\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .md\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .md\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .md\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .md\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .md\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .md\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .md\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .md\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .md\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .md\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .md\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .md\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .md\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .md\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .md\:decoration-slice { + box-decoration-break: slice; } - .md\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .md\:decoration-clone { + box-decoration-break: clone; } - .md\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .md\:bg-auto { + background-size: auto; } - .md\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .md\:bg-cover { + background-size: cover; } - .md\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .md\:bg-contain { + background-size: contain; } - .md\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .md\:bg-fixed { + background-attachment: fixed; } - .md\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .md\:bg-local { + background-attachment: local; } - .md\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .md\:bg-scroll { + background-attachment: scroll; } - .md\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .md\:bg-clip-border { + background-clip: border-box; } - .md\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .md\:bg-clip-padding { + background-clip: padding-box; } - .md\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .md\:bg-clip-content { + background-clip: content-box; } - .md\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .md\:bg-clip-text { + background-clip: text; } - .md\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .md\:bg-bottom { + background-position: bottom; } - .md\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .md\:bg-center { + background-position: center; } - .md\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .md\:bg-left { + background-position: left; } - .md\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .md\:bg-left-bottom { + background-position: left bottom; } - .md\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .md\:bg-left-top { + background-position: left top; } - .md\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .md\:bg-right { + background-position: right; } - .md\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .md\:bg-right-bottom { + background-position: right bottom; } - .md\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .md\:bg-right-top { + background-position: right top; } - .md\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .md\:bg-top { + background-position: top; } - .md\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .md\:bg-repeat { + background-repeat: repeat; } - .md\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .md\:bg-no-repeat { + background-repeat: no-repeat; } - .md\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .md\:bg-repeat-x { + background-repeat: repeat-x; } - .md\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .md\:bg-repeat-y { + background-repeat: repeat-y; } - .md\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .md\:bg-repeat-round { + background-repeat: round; } - .md\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .md\:bg-repeat-space { + background-repeat: space; } - .md\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .md\:bg-origin-border { + background-origin: border-box; } - .md\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .md\:bg-origin-padding { + background-origin: padding-box; } - .md\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .md\:bg-origin-content { + background-origin: content-box; } - .md\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .md\:fill-current { + fill: currentColor; } - .md\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .md\:stroke-current { + stroke: currentColor; } - .md\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .md\:stroke-0 { + stroke-width: 0; } - .md\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .md\:stroke-1 { + stroke-width: 1; } - .md\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .md\:stroke-2 { + stroke-width: 2; } - .md\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .md\:object-contain { + object-fit: contain; } - .md\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .md\:object-cover { + object-fit: cover; } - .md\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .md\:object-fill { + object-fit: fill; } - .md\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .md\:object-none { + object-fit: none; } - .md\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .md\:object-scale-down { + object-fit: scale-down; } - .md\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .md\:object-bottom { + object-position: bottom; } - .md\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .md\:object-center { + object-position: center; } - .md\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .md\:object-left { + object-position: left; } - .md\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .md\:object-left-bottom { + object-position: left bottom; } - .md\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .md\:object-left-top { + object-position: left top; } - .md\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .md\:object-right { + object-position: right; } - .md\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .md\:object-right-bottom { + object-position: right bottom; } - .md\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .md\:object-right-top { + object-position: right top; } - .md\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .md\:object-top { + object-position: top; } - .md\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .md\:p-0 { + padding: 0px; } - .md\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .md\:p-1 { + padding: 0.25rem; } - .md\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .md\:p-2 { + padding: 0.5rem; } - .md\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .md\:p-3 { + padding: 0.75rem; } - .md\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .md\:p-4 { + padding: 1rem; } - .md\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .md\:p-5 { + padding: 1.25rem; } - .md\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .md\:p-6 { + padding: 1.5rem; } - .md\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .md\:p-7 { + padding: 1.75rem; } - .md\:ring-transparent { - --tw-ring-color: transparent; + .md\:p-8 { + padding: 2rem; } - .md\:ring-current { - --tw-ring-color: currentColor; + .md\:p-9 { + padding: 2.25rem; } - .md\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .md\:p-10 { + padding: 2.5rem; } - .md\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .md\:p-11 { + padding: 2.75rem; } - .md\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .md\:p-12 { + padding: 3rem; } - .md\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .md\:p-14 { + padding: 3.5rem; } - .md\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .md\:p-16 { + padding: 4rem; } - .md\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .md\:p-20 { + padding: 5rem; } - .md\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .md\:p-24 { + padding: 6rem; } - .md\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .md\:p-28 { + padding: 7rem; } - .md\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .md\:p-32 { + padding: 8rem; } - .md\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .md\:p-36 { + padding: 9rem; } - .md\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .md\:p-40 { + padding: 10rem; } - .md\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .md\:p-44 { + padding: 11rem; } - .md\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .md\:p-48 { + padding: 12rem; } - .md\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .md\:p-52 { + padding: 13rem; } - .md\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .md\:p-56 { + padding: 14rem; } - .md\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .md\:p-60 { + padding: 15rem; } - .md\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .md\:p-64 { + padding: 16rem; } - .md\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .md\:p-72 { + padding: 18rem; } - .md\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .md\:p-80 { + padding: 20rem; } - .md\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .md\:p-96 { + padding: 24rem; } - .md\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .md\:p-px { + padding: 1px; } - .md\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .md\:p-0\.5 { + padding: 0.125rem; } - .md\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .md\:p-1\.5 { + padding: 0.375rem; } - .md\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .md\:p-2\.5 { + padding: 0.625rem; } - .md\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .md\:p-3\.5 { + padding: 0.875rem; } - .md\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .md\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .md\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .md\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .md\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .md\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .md\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .md\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .md\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .md\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .md\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .md\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .md\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .md\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .md\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .md\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .md\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .md\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .md\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .md\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .md\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .md\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .md\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .md\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .md\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .md\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .md\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .md\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .md\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .md\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .md\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .md\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .md\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .md\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .md\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .md\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .md\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .md\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .md\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .md\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .md\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .md\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .md\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .md\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .md\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .md\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .md\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .md\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .md\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .md\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .md\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .md\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .md\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .md\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .md\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .md\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .md\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .md\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .md\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .md\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .md\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .md\:px-px { + padding-left: 1px; + padding-right: 1px; } - .md\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .md\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .md\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .md\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .md\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .md\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .md\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .md\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .md\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .md\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .md\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .md\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .md\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .md\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .md\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .md\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .md\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .md\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .md\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .md\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .md\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .md\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .md\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .md\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .md\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .md\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .md\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .md\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .md\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .md\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .md\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .md\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .md\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .md\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .md\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .md\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .md\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .md\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .md\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .md\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .md\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .md\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .md\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .md\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .md\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .md\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .md\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .md\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .md\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .md\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .md\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .md\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .md\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .md\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .md\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .md\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .md\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .md\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .md\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .md\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .md\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .md\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .md\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .md\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .md\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .md\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .md\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .md\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .md\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .md\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .md\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .md\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .md\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .md\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .md\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .md\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .md\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .md\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .md\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .md\:pt-0 { + padding-top: 0px; } - .md\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .md\:pt-1 { + padding-top: 0.25rem; } - .md\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .md\:pt-2 { + padding-top: 0.5rem; } - .md\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .md\:pt-3 { + padding-top: 0.75rem; } - .md\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .md\:pt-4 { + padding-top: 1rem; } - .md\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .md\:pt-5 { + padding-top: 1.25rem; } - .md\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .md\:pt-6 { + padding-top: 1.5rem; } - .md\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .md\:pt-7 { + padding-top: 1.75rem; } - .md\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .md\:pt-8 { + padding-top: 2rem; } - .md\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .md\:pt-9 { + padding-top: 2.25rem; } - .md\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .md\:pt-10 { + padding-top: 2.5rem; } - .md\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .md\:pt-11 { + padding-top: 2.75rem; } - .md\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .md\:pt-12 { + padding-top: 3rem; } - .md\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .md\:pt-14 { + padding-top: 3.5rem; } - .md\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .md\:pt-16 { + padding-top: 4rem; } - .md\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .md\:pt-20 { + padding-top: 5rem; } - .md\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .md\:pt-24 { + padding-top: 6rem; } - .md\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .md\:pt-28 { + padding-top: 7rem; } - .md\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .md\:pt-32 { + padding-top: 8rem; } - .md\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .md\:pt-36 { + padding-top: 9rem; } - .md\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .md\:pt-40 { + padding-top: 10rem; } - .md\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .md\:pt-44 { + padding-top: 11rem; } - .md\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .md\:pt-48 { + padding-top: 12rem; } - .md\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .md\:pt-52 { + padding-top: 13rem; } - .md\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .md\:pt-56 { + padding-top: 14rem; } - .md\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .md\:pt-60 { + padding-top: 15rem; } - .md\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .md\:pt-64 { + padding-top: 16rem; } - .md\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .md\:pt-72 { + padding-top: 18rem; } - .md\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .md\:pt-80 { + padding-top: 20rem; } - .md\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .md\:pt-96 { + padding-top: 24rem; } - .md\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .md\:pt-px { + padding-top: 1px; } - .md\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .md\:pt-0\.5 { + padding-top: 0.125rem; } - .md\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .md\:pt-1\.5 { + padding-top: 0.375rem; } - .md\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .md\:pt-2\.5 { + padding-top: 0.625rem; } - .md\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .md\:pt-3\.5 { + padding-top: 0.875rem; } - .md\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .md\:pr-0 { + padding-right: 0px; } - .md\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .md\:pr-1 { + padding-right: 0.25rem; } - .md\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .md\:pr-2 { + padding-right: 0.5rem; } - .md\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .md\:pr-3 { + padding-right: 0.75rem; } - .md\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .md\:pr-4 { + padding-right: 1rem; } - .md\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .md\:pr-5 { + padding-right: 1.25rem; } - .md\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .md\:pr-6 { + padding-right: 1.5rem; } - .md\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .md\:pr-7 { + padding-right: 1.75rem; } - .md\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .md\:pr-8 { + padding-right: 2rem; } - .md\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .md\:pr-9 { + padding-right: 2.25rem; } - .md\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .md\:pr-10 { + padding-right: 2.5rem; } - .md\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .md\:pr-11 { + padding-right: 2.75rem; } - .md\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .md\:pr-12 { + padding-right: 3rem; } - .md\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .md\:pr-14 { + padding-right: 3.5rem; } - .md\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .md\:pr-16 { + padding-right: 4rem; } - .md\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .md\:pr-20 { + padding-right: 5rem; } - .md\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .md\:pr-24 { + padding-right: 6rem; } - .md\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .md\:pr-28 { + padding-right: 7rem; } - .md\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .md\:pr-32 { + padding-right: 8rem; } - .md\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .md\:pr-36 { + padding-right: 9rem; } - .md\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .md\:pr-40 { + padding-right: 10rem; } - .md\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .md\:pr-44 { + padding-right: 11rem; } - .md\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .md\:pr-48 { + padding-right: 12rem; } - .md\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .md\:pr-52 { + padding-right: 13rem; } - .md\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .md\:pr-56 { + padding-right: 14rem; } - .md\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .md\:pr-60 { + padding-right: 15rem; } - .md\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .md\:pr-64 { + padding-right: 16rem; } - .md\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .md\:pr-72 { + padding-right: 18rem; } - .md\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .md\:pr-80 { + padding-right: 20rem; } - .md\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .md\:pr-96 { + padding-right: 24rem; } - .md\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .md\:pr-px { + padding-right: 1px; } - .md\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .md\:pr-0\.5 { + padding-right: 0.125rem; } - .md\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .md\:pr-1\.5 { + padding-right: 0.375rem; } - .md\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .md\:pr-2\.5 { + padding-right: 0.625rem; } - .md\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .md\:pr-3\.5 { + padding-right: 0.875rem; } - .md\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .md\:pb-0 { + padding-bottom: 0px; } - .md\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .md\:pb-1 { + padding-bottom: 0.25rem; } - .md\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .md\:pb-2 { + padding-bottom: 0.5rem; } - .md\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .md\:pb-3 { + padding-bottom: 0.75rem; } - .md\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .md\:pb-4 { + padding-bottom: 1rem; } - .md\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .md\:pb-5 { + padding-bottom: 1.25rem; } - .md\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .md\:pb-6 { + padding-bottom: 1.5rem; } - .md\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .md\:pb-7 { + padding-bottom: 1.75rem; } - .md\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .md\:pb-8 { + padding-bottom: 2rem; } - .md\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .md\:pb-9 { + padding-bottom: 2.25rem; } - .md\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .md\:pb-10 { + padding-bottom: 2.5rem; } - .md\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .md\:pb-11 { + padding-bottom: 2.75rem; } - .md\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .md\:pb-12 { + padding-bottom: 3rem; } - .md\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .md\:pb-14 { + padding-bottom: 3.5rem; } - .md\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .md\:pb-16 { + padding-bottom: 4rem; } - .md\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .md\:pb-20 { + padding-bottom: 5rem; } - .md\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .md\:pb-24 { + padding-bottom: 6rem; } - .md\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .md\:pb-28 { + padding-bottom: 7rem; } - .md\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .md\:pb-32 { + padding-bottom: 8rem; } - .md\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .md\:pb-36 { + padding-bottom: 9rem; } - .md\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .md\:pb-40 { + padding-bottom: 10rem; } - .md\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .md\:pb-44 { + padding-bottom: 11rem; } - .md\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .md\:pb-48 { + padding-bottom: 12rem; } - .md\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .md\:pb-52 { + padding-bottom: 13rem; } - .md\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .md\:pb-56 { + padding-bottom: 14rem; } - .md\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .md\:pb-60 { + padding-bottom: 15rem; } - .md\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .md\:pb-64 { + padding-bottom: 16rem; } - .md\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .md\:pb-72 { + padding-bottom: 18rem; } - .md\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .md\:pb-80 { + padding-bottom: 20rem; } - .md\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .md\:pb-96 { + padding-bottom: 24rem; } - .md\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .md\:pb-px { + padding-bottom: 1px; } - .md\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .md\:pb-0\.5 { + padding-bottom: 0.125rem; } - .md\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .md\:pb-1\.5 { + padding-bottom: 0.375rem; } - .md\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .md\:pb-2\.5 { + padding-bottom: 0.625rem; } - .md\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .md\:pb-3\.5 { + padding-bottom: 0.875rem; } - .md\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .md\:pl-0 { + padding-left: 0px; } - .md\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .md\:pl-1 { + padding-left: 0.25rem; } - .md\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .md\:pl-2 { + padding-left: 0.5rem; } - .md\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .md\:pl-3 { + padding-left: 0.75rem; } - .md\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .md\:pl-4 { + padding-left: 1rem; } - .md\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .md\:pl-5 { + padding-left: 1.25rem; } - .md\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .md\:pl-6 { + padding-left: 1.5rem; } - .md\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .md\:pl-7 { + padding-left: 1.75rem; } - .md\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .md\:pl-8 { + padding-left: 2rem; } - .md\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .md\:pl-9 { + padding-left: 2.25rem; } - .md\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .md\:pl-10 { + padding-left: 2.5rem; } - .md\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .md\:pl-11 { + padding-left: 2.75rem; } - .md\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .md\:pl-12 { + padding-left: 3rem; } - .md\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .md\:pl-14 { + padding-left: 3.5rem; } - .md\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .md\:pl-16 { + padding-left: 4rem; } - .md\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .md\:pl-20 { + padding-left: 5rem; } - .md\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .md\:pl-24 { + padding-left: 6rem; } - .md\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .md\:pl-28 { + padding-left: 7rem; } - .md\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .md\:pl-32 { + padding-left: 8rem; } - .md\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .md\:pl-36 { + padding-left: 9rem; } - .md\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .md\:pl-40 { + padding-left: 10rem; } - .md\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .md\:pl-44 { + padding-left: 11rem; } - .md\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .md\:pl-48 { + padding-left: 12rem; } - .md\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .md\:pl-52 { + padding-left: 13rem; } - .md\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .md\:pl-56 { + padding-left: 14rem; } - .md\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .md\:pl-60 { + padding-left: 15rem; } - .md\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .md\:pl-64 { + padding-left: 16rem; } - .md\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .md\:pl-72 { + padding-left: 18rem; } - .md\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .md\:pl-80 { + padding-left: 20rem; } - .md\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .md\:pl-96 { + padding-left: 24rem; } - .md\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .md\:pl-px { + padding-left: 1px; } - .md\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .md\:pl-0\.5 { + padding-left: 0.125rem; } - .md\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .md\:pl-1\.5 { + padding-left: 0.375rem; } - .md\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .md\:pl-2\.5 { + padding-left: 0.625rem; } - .md\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .md\:pl-3\.5 { + padding-left: 0.875rem; } - .md\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .md\:text-left { + text-align: left; } - .md\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .md\:text-center { + text-align: center; } - .md\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .md\:text-right { + text-align: right; } - .md\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .md\:text-justify { + text-align: justify; } - .md\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .md\:align-baseline { + vertical-align: baseline; } - .md\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .md\:align-top { + vertical-align: top; } - .md\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .md\:align-middle { + vertical-align: middle; } - .md\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .md\:align-bottom { + vertical-align: bottom; } - .md\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .md\:align-text-top { + vertical-align: text-top; } - .md\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .md\:align-text-bottom { + vertical-align: text-bottom; } - .md\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .md\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .md\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .md\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .md\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .md\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .md\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .md\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .md\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .md\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .md\:ring-opacity-0 { - --tw-ring-opacity: 0; + .md\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .md\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .md\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .md\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .md\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .md\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .md\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .md\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .md\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .md\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .md\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .md\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .md\:text-5xl { + font-size: 3rem; + line-height: 1; } - .md\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .md\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .md\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .md\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .md\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .md\:text-8xl { + font-size: 6rem; + line-height: 1; } - .md\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .md\:text-9xl { + font-size: 8rem; + line-height: 1; } - .md\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .md\:font-thin { + font-weight: 100; } - .md\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .md\:font-extralight { + font-weight: 200; } - .md\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .md\:font-light { + font-weight: 300; } - .md\:ring-opacity-100 { - --tw-ring-opacity: 1; + .md\:font-normal { + font-weight: 400; } - .md\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .md\:font-medium { + font-weight: 500; } - .md\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .md\:font-semibold { + font-weight: 600; } - .md\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .md\:font-bold { + font-weight: 700; } - .md\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .md\:font-extrabold { + font-weight: 800; } - .md\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .md\:font-black { + font-weight: 900; } - .md\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .md\:uppercase { + text-transform: uppercase; } - .md\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .md\:lowercase { + text-transform: lowercase; } - .md\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .md\:capitalize { + text-transform: capitalize; } - .md\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .md\:normal-case { + text-transform: none; } - .md\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .md\:italic { + font-style: italic; } - .md\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .md\:not-italic { + font-style: normal; } - .md\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .md\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .md\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .md\:normal-nums { + font-variant-numeric: normal; } - .md\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .md\:ordinal { + --tw-ordinal: ordinal; } - .md\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .md\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .md\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .md\:lining-nums { + --tw-numeric-figure: lining-nums; } - .md\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .md\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .md\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .md\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .md\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .md\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .md\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .md\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .md\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .md\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .md\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .md\:leading-3 { + line-height: .75rem; } - .md\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .md\:leading-4 { + line-height: 1rem; } - .md\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .md\:leading-5 { + line-height: 1.25rem; } - .md\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .md\:leading-6 { + line-height: 1.5rem; } - .md\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .md\:leading-7 { + line-height: 1.75rem; } - .md\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .md\:leading-8 { + line-height: 2rem; } - .md\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .md\:leading-9 { + line-height: 2.25rem; } - .md\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .md\:leading-10 { + line-height: 2.5rem; } - .md\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .md\:leading-none { + line-height: 1; } - .md\:fill-current { - fill: currentColor; + .md\:leading-tight { + line-height: 1.25; } - .md\:stroke-current { - stroke: currentColor; + .md\:leading-snug { + line-height: 1.375; } - .md\:stroke-0 { - stroke-width: 0; + .md\:leading-normal { + line-height: 1.5; } - .md\:stroke-1 { - stroke-width: 1; + .md\:leading-relaxed { + line-height: 1.625; } - .md\:stroke-2 { - stroke-width: 2; + .md\:leading-loose { + line-height: 2; } - .md\:table-auto { - table-layout: auto; + .md\:tracking-tighter { + letter-spacing: -0.05em; } - .md\:table-fixed { - table-layout: fixed; + .md\:tracking-tight { + letter-spacing: -0.025em; } - .md\:text-left { - text-align: left; + .md\:tracking-normal { + letter-spacing: 0em; } - .md\:text-center { - text-align: center; + .md\:tracking-wide { + letter-spacing: 0.025em; } - .md\:text-right { - text-align: right; + .md\:tracking-wider { + letter-spacing: 0.05em; } - .md\:text-justify { - text-align: justify; + .md\:tracking-widest { + letter-spacing: 0.1em; } .md\:text-transparent { @@ -75324,44 +75797,6 @@ video { color: #831843; } - .md\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .md\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .md\:overflow-clip { - text-overflow: clip; - } - - .md\:italic { - font-style: italic; - } - - .md\:not-italic { - font-style: normal; - } - - .md\:uppercase { - text-transform: uppercase; - } - - .md\:lowercase { - text-transform: lowercase; - } - - .md\:capitalize { - text-transform: capitalize; - } - - .md\:normal-case { - text-transform: none; - } - .md\:underline { text-decoration: underline; } @@ -75432,13730 +75867,14082 @@ video { -moz-osx-font-smoothing: auto; } - .md\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + .md\:placeholder-transparent::placeholder { + color: transparent; } - .md\:normal-nums { - font-variant-numeric: normal; + .md\:placeholder-current::placeholder { + color: currentColor; } - .md\:ordinal { - --tw-ordinal: ordinal; + .md\:placeholder-black::placeholder { + color: #000; } - .md\:slashed-zero { - --tw-slashed-zero: slashed-zero; + .md\:placeholder-white::placeholder { + color: #fff; } - .md\:lining-nums { - --tw-numeric-figure: lining-nums; + .md\:placeholder-gray-50::placeholder { + color: #f9fafb; } - .md\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; + .md\:placeholder-gray-100::placeholder { + color: #f3f4f6; } - .md\:proportional-nums { - --tw-numeric-spacing: proportional-nums; + .md\:placeholder-gray-200::placeholder { + color: #e5e7eb; } - .md\:tabular-nums { - --tw-numeric-spacing: tabular-nums; + .md\:placeholder-gray-300::placeholder { + color: #d1d5db; } - .md\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; + .md\:placeholder-gray-400::placeholder { + color: #9ca3af; } - .md\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; + .md\:placeholder-gray-500::placeholder { + color: #6b7280; } - .md\:tracking-tighter { - letter-spacing: -0.05em; + .md\:placeholder-gray-600::placeholder { + color: #4b5563; } - .md\:tracking-tight { - letter-spacing: -0.025em; + .md\:placeholder-gray-700::placeholder { + color: #374151; } - .md\:tracking-normal { - letter-spacing: 0em; + .md\:placeholder-gray-800::placeholder { + color: #1f2937; } - .md\:tracking-wide { - letter-spacing: 0.025em; + .md\:placeholder-gray-900::placeholder { + color: #111827; } - .md\:tracking-wider { - letter-spacing: 0.05em; + .md\:placeholder-red-50::placeholder { + color: #fef2f2; } - .md\:tracking-widest { - letter-spacing: 0.1em; + .md\:placeholder-red-100::placeholder { + color: #fee2e2; } - .md\:select-none { - user-select: none; + .md\:placeholder-red-200::placeholder { + color: #fecaca; } - .md\:select-text { - user-select: text; + .md\:placeholder-red-300::placeholder { + color: #fca5a5; } - .md\:select-all { - user-select: all; + .md\:placeholder-red-400::placeholder { + color: #f87171; } - .md\:select-auto { - user-select: auto; + .md\:placeholder-red-500::placeholder { + color: #ef4444; } - .md\:align-baseline { - vertical-align: baseline; + .md\:placeholder-red-600::placeholder { + color: #dc2626; } - .md\:align-top { - vertical-align: top; + .md\:placeholder-red-700::placeholder { + color: #b91c1c; } - .md\:align-middle { - vertical-align: middle; + .md\:placeholder-red-800::placeholder { + color: #991b1b; } - .md\:align-bottom { - vertical-align: bottom; + .md\:placeholder-red-900::placeholder { + color: #7f1d1d; } - .md\:align-text-top { - vertical-align: text-top; + .md\:placeholder-yellow-50::placeholder { + color: #fffbeb; } - .md\:align-text-bottom { - vertical-align: text-bottom; + .md\:placeholder-yellow-100::placeholder { + color: #fef3c7; } - .md\:visible { - visibility: visible; + .md\:placeholder-yellow-200::placeholder { + color: #fde68a; } - .md\:invisible { - visibility: hidden; + .md\:placeholder-yellow-300::placeholder { + color: #fcd34d; } - .md\:whitespace-normal { - white-space: normal; + .md\:placeholder-yellow-400::placeholder { + color: #fbbf24; } - .md\:whitespace-nowrap { - white-space: nowrap; + .md\:placeholder-yellow-500::placeholder { + color: #f59e0b; } - .md\:whitespace-pre { - white-space: pre; + .md\:placeholder-yellow-600::placeholder { + color: #d97706; } - .md\:whitespace-pre-line { - white-space: pre-line; + .md\:placeholder-yellow-700::placeholder { + color: #b45309; } - .md\:whitespace-pre-wrap { - white-space: pre-wrap; + .md\:placeholder-yellow-800::placeholder { + color: #92400e; } - .md\:break-normal { - overflow-wrap: normal; - word-break: normal; + .md\:placeholder-yellow-900::placeholder { + color: #78350f; } - .md\:break-words { - overflow-wrap: break-word; + .md\:placeholder-green-50::placeholder { + color: #ecfdf5; } - .md\:break-all { - word-break: break-all; + .md\:placeholder-green-100::placeholder { + color: #d1fae5; } - .md\:w-0 { - width: 0px; + .md\:placeholder-green-200::placeholder { + color: #a7f3d0; } - .md\:w-1 { - width: 0.25rem; + .md\:placeholder-green-300::placeholder { + color: #6ee7b7; } - .md\:w-2 { - width: 0.5rem; + .md\:placeholder-green-400::placeholder { + color: #34d399; } - .md\:w-3 { - width: 0.75rem; + .md\:placeholder-green-500::placeholder { + color: #10b981; } - .md\:w-4 { - width: 1rem; + .md\:placeholder-green-600::placeholder { + color: #059669; } - .md\:w-5 { - width: 1.25rem; + .md\:placeholder-green-700::placeholder { + color: #047857; } - .md\:w-6 { - width: 1.5rem; + .md\:placeholder-green-800::placeholder { + color: #065f46; } - .md\:w-7 { - width: 1.75rem; + .md\:placeholder-green-900::placeholder { + color: #064e3b; } - .md\:w-8 { - width: 2rem; + .md\:placeholder-blue-50::placeholder { + color: #eff6ff; } - .md\:w-9 { - width: 2.25rem; + .md\:placeholder-blue-100::placeholder { + color: #dbeafe; } - .md\:w-10 { - width: 2.5rem; + .md\:placeholder-blue-200::placeholder { + color: #bfdbfe; } - .md\:w-11 { - width: 2.75rem; + .md\:placeholder-blue-300::placeholder { + color: #93c5fd; } - .md\:w-12 { - width: 3rem; + .md\:placeholder-blue-400::placeholder { + color: #60a5fa; } - .md\:w-14 { - width: 3.5rem; + .md\:placeholder-blue-500::placeholder { + color: #3b82f6; } - .md\:w-16 { - width: 4rem; + .md\:placeholder-blue-600::placeholder { + color: #2563eb; } - .md\:w-20 { - width: 5rem; + .md\:placeholder-blue-700::placeholder { + color: #1d4ed8; } - .md\:w-24 { - width: 6rem; + .md\:placeholder-blue-800::placeholder { + color: #1e40af; } - .md\:w-28 { - width: 7rem; + .md\:placeholder-blue-900::placeholder { + color: #1e3a8a; } - .md\:w-32 { - width: 8rem; + .md\:placeholder-indigo-50::placeholder { + color: #eef2ff; } - .md\:w-36 { - width: 9rem; + .md\:placeholder-indigo-100::placeholder { + color: #e0e7ff; } - .md\:w-40 { - width: 10rem; + .md\:placeholder-indigo-200::placeholder { + color: #c7d2fe; } - .md\:w-44 { - width: 11rem; + .md\:placeholder-indigo-300::placeholder { + color: #a5b4fc; } - .md\:w-48 { - width: 12rem; + .md\:placeholder-indigo-400::placeholder { + color: #818cf8; } - .md\:w-52 { - width: 13rem; + .md\:placeholder-indigo-500::placeholder { + color: #6366f1; } - .md\:w-56 { - width: 14rem; + .md\:placeholder-indigo-600::placeholder { + color: #4f46e5; } - .md\:w-60 { - width: 15rem; + .md\:placeholder-indigo-700::placeholder { + color: #4338ca; } - .md\:w-64 { - width: 16rem; + .md\:placeholder-indigo-800::placeholder { + color: #3730a3; } - .md\:w-72 { - width: 18rem; + .md\:placeholder-indigo-900::placeholder { + color: #312e81; } - .md\:w-80 { - width: 20rem; + .md\:placeholder-purple-50::placeholder { + color: #f5f3ff; } - .md\:w-96 { - width: 24rem; + .md\:placeholder-purple-100::placeholder { + color: #ede9fe; } - .md\:w-auto { - width: auto; + .md\:placeholder-purple-200::placeholder { + color: #ddd6fe; } - .md\:w-px { - width: 1px; + .md\:placeholder-purple-300::placeholder { + color: #c4b5fd; } - .md\:w-0\.5 { - width: 0.125rem; + .md\:placeholder-purple-400::placeholder { + color: #a78bfa; } - .md\:w-1\.5 { - width: 0.375rem; + .md\:placeholder-purple-500::placeholder { + color: #8b5cf6; } - .md\:w-2\.5 { - width: 0.625rem; + .md\:placeholder-purple-600::placeholder { + color: #7c3aed; } - .md\:w-3\.5 { - width: 0.875rem; + .md\:placeholder-purple-700::placeholder { + color: #6d28d9; } - .md\:w-1\/2 { - width: 50%; + .md\:placeholder-purple-800::placeholder { + color: #5b21b6; } - .md\:w-1\/3 { - width: 33.333333%; + .md\:placeholder-purple-900::placeholder { + color: #4c1d95; } - .md\:w-2\/3 { - width: 66.666667%; + .md\:placeholder-pink-50::placeholder { + color: #fdf2f8; } - .md\:w-1\/4 { - width: 25%; + .md\:placeholder-pink-100::placeholder { + color: #fce7f3; } - .md\:w-2\/4 { - width: 50%; + .md\:placeholder-pink-200::placeholder { + color: #fbcfe8; } - .md\:w-3\/4 { - width: 75%; + .md\:placeholder-pink-300::placeholder { + color: #f9a8d4; } - .md\:w-1\/5 { - width: 20%; + .md\:placeholder-pink-400::placeholder { + color: #f472b6; } - .md\:w-2\/5 { - width: 40%; + .md\:placeholder-pink-500::placeholder { + color: #ec4899; } - .md\:w-3\/5 { - width: 60%; + .md\:placeholder-pink-600::placeholder { + color: #db2777; } - .md\:w-4\/5 { - width: 80%; + .md\:placeholder-pink-700::placeholder { + color: #be185d; } - .md\:w-1\/6 { - width: 16.666667%; + .md\:placeholder-pink-800::placeholder { + color: #9d174d; } - .md\:w-2\/6 { - width: 33.333333%; + .md\:placeholder-pink-900::placeholder { + color: #831843; } - .md\:w-3\/6 { - width: 50%; + .md\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .md\:w-4\/6 { - width: 66.666667%; + .md\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .md\:w-5\/6 { - width: 83.333333%; + .md\:focus\:placeholder-black:focus::placeholder { + color: #000; } - .md\:w-1\/12 { - width: 8.333333%; + .md\:focus\:placeholder-white:focus::placeholder { + color: #fff; } - .md\:w-2\/12 { - width: 16.666667%; + .md\:focus\:placeholder-gray-50:focus::placeholder { + color: #f9fafb; } - .md\:w-3\/12 { - width: 25%; + .md\:focus\:placeholder-gray-100:focus::placeholder { + color: #f3f4f6; } - .md\:w-4\/12 { - width: 33.333333%; + .md\:focus\:placeholder-gray-200:focus::placeholder { + color: #e5e7eb; } - .md\:w-5\/12 { - width: 41.666667%; + .md\:focus\:placeholder-gray-300:focus::placeholder { + color: #d1d5db; } - .md\:w-6\/12 { - width: 50%; + .md\:focus\:placeholder-gray-400:focus::placeholder { + color: #9ca3af; } - .md\:w-7\/12 { - width: 58.333333%; + .md\:focus\:placeholder-gray-500:focus::placeholder { + color: #6b7280; } - .md\:w-8\/12 { - width: 66.666667%; + .md\:focus\:placeholder-gray-600:focus::placeholder { + color: #4b5563; } - .md\:w-9\/12 { - width: 75%; + .md\:focus\:placeholder-gray-700:focus::placeholder { + color: #374151; } - .md\:w-10\/12 { - width: 83.333333%; + .md\:focus\:placeholder-gray-800:focus::placeholder { + color: #1f2937; } - .md\:w-11\/12 { - width: 91.666667%; + .md\:focus\:placeholder-gray-900:focus::placeholder { + color: #111827; } - .md\:w-full { - width: 100%; + .md\:focus\:placeholder-red-50:focus::placeholder { + color: #fef2f2; } - .md\:w-screen { - width: 100vw; + .md\:focus\:placeholder-red-100:focus::placeholder { + color: #fee2e2; } - .md\:w-min { - width: min-content; + .md\:focus\:placeholder-red-200:focus::placeholder { + color: #fecaca; } - .md\:w-max { - width: max-content; + .md\:focus\:placeholder-red-300:focus::placeholder { + color: #fca5a5; } - .md\:z-0 { - z-index: 0; + .md\:focus\:placeholder-red-400:focus::placeholder { + color: #f87171; } - .md\:z-10 { - z-index: 10; + .md\:focus\:placeholder-red-500:focus::placeholder { + color: #ef4444; } - .md\:z-20 { - z-index: 20; + .md\:focus\:placeholder-red-600:focus::placeholder { + color: #dc2626; } - .md\:z-30 { - z-index: 30; + .md\:focus\:placeholder-red-700:focus::placeholder { + color: #b91c1c; } - .md\:z-40 { - z-index: 40; + .md\:focus\:placeholder-red-800:focus::placeholder { + color: #991b1b; } - .md\:z-50 { - z-index: 50; + .md\:focus\:placeholder-red-900:focus::placeholder { + color: #7f1d1d; } - .md\:z-auto { - z-index: auto; + .md\:focus\:placeholder-yellow-50:focus::placeholder { + color: #fffbeb; } - .md\:focus-within\:z-0:focus-within { - z-index: 0; + .md\:focus\:placeholder-yellow-100:focus::placeholder { + color: #fef3c7; } - .md\:focus-within\:z-10:focus-within { - z-index: 10; + .md\:focus\:placeholder-yellow-200:focus::placeholder { + color: #fde68a; } - .md\:focus-within\:z-20:focus-within { - z-index: 20; + .md\:focus\:placeholder-yellow-300:focus::placeholder { + color: #fcd34d; } - .md\:focus-within\:z-30:focus-within { - z-index: 30; + .md\:focus\:placeholder-yellow-400:focus::placeholder { + color: #fbbf24; } - .md\:focus-within\:z-40:focus-within { - z-index: 40; + .md\:focus\:placeholder-yellow-500:focus::placeholder { + color: #f59e0b; } - .md\:focus-within\:z-50:focus-within { - z-index: 50; + .md\:focus\:placeholder-yellow-600:focus::placeholder { + color: #d97706; } - .md\:focus-within\:z-auto:focus-within { - z-index: auto; + .md\:focus\:placeholder-yellow-700:focus::placeholder { + color: #b45309; } - .md\:focus\:z-0:focus { - z-index: 0; + .md\:focus\:placeholder-yellow-800:focus::placeholder { + color: #92400e; } - .md\:focus\:z-10:focus { - z-index: 10; + .md\:focus\:placeholder-yellow-900:focus::placeholder { + color: #78350f; } - .md\:focus\:z-20:focus { - z-index: 20; + .md\:focus\:placeholder-green-50:focus::placeholder { + color: #ecfdf5; } - .md\:focus\:z-30:focus { - z-index: 30; + .md\:focus\:placeholder-green-100:focus::placeholder { + color: #d1fae5; } - .md\:focus\:z-40:focus { - z-index: 40; + .md\:focus\:placeholder-green-200:focus::placeholder { + color: #a7f3d0; } - .md\:focus\:z-50:focus { - z-index: 50; + .md\:focus\:placeholder-green-300:focus::placeholder { + color: #6ee7b7; } - .md\:focus\:z-auto:focus { - z-index: auto; + .md\:focus\:placeholder-green-400:focus::placeholder { + color: #34d399; } - .md\:isolate { - isolation: isolate; + .md\:focus\:placeholder-green-500:focus::placeholder { + color: #10b981; } - .md\:isolation-auto { - isolation: auto; + .md\:focus\:placeholder-green-600:focus::placeholder { + color: #059669; } - .md\:gap-0 { - gap: 0px; + .md\:focus\:placeholder-green-700:focus::placeholder { + color: #047857; } - .md\:gap-1 { - gap: 0.25rem; + .md\:focus\:placeholder-green-800:focus::placeholder { + color: #065f46; } - .md\:gap-2 { - gap: 0.5rem; + .md\:focus\:placeholder-green-900:focus::placeholder { + color: #064e3b; } - .md\:gap-3 { - gap: 0.75rem; + .md\:focus\:placeholder-blue-50:focus::placeholder { + color: #eff6ff; } - .md\:gap-4 { - gap: 1rem; + .md\:focus\:placeholder-blue-100:focus::placeholder { + color: #dbeafe; } - .md\:gap-5 { - gap: 1.25rem; + .md\:focus\:placeholder-blue-200:focus::placeholder { + color: #bfdbfe; } - .md\:gap-6 { - gap: 1.5rem; + .md\:focus\:placeholder-blue-300:focus::placeholder { + color: #93c5fd; } - .md\:gap-7 { - gap: 1.75rem; + .md\:focus\:placeholder-blue-400:focus::placeholder { + color: #60a5fa; } - .md\:gap-8 { - gap: 2rem; + .md\:focus\:placeholder-blue-500:focus::placeholder { + color: #3b82f6; } - .md\:gap-9 { - gap: 2.25rem; + .md\:focus\:placeholder-blue-600:focus::placeholder { + color: #2563eb; } - .md\:gap-10 { - gap: 2.5rem; + .md\:focus\:placeholder-blue-700:focus::placeholder { + color: #1d4ed8; } - .md\:gap-11 { - gap: 2.75rem; + .md\:focus\:placeholder-blue-800:focus::placeholder { + color: #1e40af; } - .md\:gap-12 { - gap: 3rem; + .md\:focus\:placeholder-blue-900:focus::placeholder { + color: #1e3a8a; } - .md\:gap-14 { - gap: 3.5rem; + .md\:focus\:placeholder-indigo-50:focus::placeholder { + color: #eef2ff; } - .md\:gap-16 { - gap: 4rem; + .md\:focus\:placeholder-indigo-100:focus::placeholder { + color: #e0e7ff; } - .md\:gap-20 { - gap: 5rem; + .md\:focus\:placeholder-indigo-200:focus::placeholder { + color: #c7d2fe; } - .md\:gap-24 { - gap: 6rem; + .md\:focus\:placeholder-indigo-300:focus::placeholder { + color: #a5b4fc; } - .md\:gap-28 { - gap: 7rem; + .md\:focus\:placeholder-indigo-400:focus::placeholder { + color: #818cf8; } - .md\:gap-32 { - gap: 8rem; + .md\:focus\:placeholder-indigo-500:focus::placeholder { + color: #6366f1; } - .md\:gap-36 { - gap: 9rem; + .md\:focus\:placeholder-indigo-600:focus::placeholder { + color: #4f46e5; } - .md\:gap-40 { - gap: 10rem; + .md\:focus\:placeholder-indigo-700:focus::placeholder { + color: #4338ca; } - .md\:gap-44 { - gap: 11rem; + .md\:focus\:placeholder-indigo-800:focus::placeholder { + color: #3730a3; } - .md\:gap-48 { - gap: 12rem; + .md\:focus\:placeholder-indigo-900:focus::placeholder { + color: #312e81; } - .md\:gap-52 { - gap: 13rem; + .md\:focus\:placeholder-purple-50:focus::placeholder { + color: #f5f3ff; } - .md\:gap-56 { - gap: 14rem; + .md\:focus\:placeholder-purple-100:focus::placeholder { + color: #ede9fe; } - .md\:gap-60 { - gap: 15rem; + .md\:focus\:placeholder-purple-200:focus::placeholder { + color: #ddd6fe; } - .md\:gap-64 { - gap: 16rem; + .md\:focus\:placeholder-purple-300:focus::placeholder { + color: #c4b5fd; } - .md\:gap-72 { - gap: 18rem; + .md\:focus\:placeholder-purple-400:focus::placeholder { + color: #a78bfa; } - .md\:gap-80 { - gap: 20rem; + .md\:focus\:placeholder-purple-500:focus::placeholder { + color: #8b5cf6; } - .md\:gap-96 { - gap: 24rem; + .md\:focus\:placeholder-purple-600:focus::placeholder { + color: #7c3aed; } - .md\:gap-px { - gap: 1px; + .md\:focus\:placeholder-purple-700:focus::placeholder { + color: #6d28d9; } - .md\:gap-0\.5 { - gap: 0.125rem; + .md\:focus\:placeholder-purple-800:focus::placeholder { + color: #5b21b6; } - .md\:gap-1\.5 { - gap: 0.375rem; + .md\:focus\:placeholder-purple-900:focus::placeholder { + color: #4c1d95; } - .md\:gap-2\.5 { - gap: 0.625rem; + .md\:focus\:placeholder-pink-50:focus::placeholder { + color: #fdf2f8; } - .md\:gap-3\.5 { - gap: 0.875rem; + .md\:focus\:placeholder-pink-100:focus::placeholder { + color: #fce7f3; } - .md\:gap-x-0 { - column-gap: 0px; + .md\:focus\:placeholder-pink-200:focus::placeholder { + color: #fbcfe8; } - .md\:gap-x-1 { - column-gap: 0.25rem; + .md\:focus\:placeholder-pink-300:focus::placeholder { + color: #f9a8d4; } - .md\:gap-x-2 { - column-gap: 0.5rem; + .md\:focus\:placeholder-pink-400:focus::placeholder { + color: #f472b6; } - .md\:gap-x-3 { - column-gap: 0.75rem; + .md\:focus\:placeholder-pink-500:focus::placeholder { + color: #ec4899; } - .md\:gap-x-4 { - column-gap: 1rem; + .md\:focus\:placeholder-pink-600:focus::placeholder { + color: #db2777; } - .md\:gap-x-5 { - column-gap: 1.25rem; + .md\:focus\:placeholder-pink-700:focus::placeholder { + color: #be185d; } - .md\:gap-x-6 { - column-gap: 1.5rem; + .md\:focus\:placeholder-pink-800:focus::placeholder { + color: #9d174d; } - .md\:gap-x-7 { - column-gap: 1.75rem; + .md\:focus\:placeholder-pink-900:focus::placeholder { + color: #831843; } - .md\:gap-x-8 { - column-gap: 2rem; + .md\:opacity-0 { + opacity: 0; } - .md\:gap-x-9 { - column-gap: 2.25rem; + .md\:opacity-5 { + opacity: 0.05; } - .md\:gap-x-10 { - column-gap: 2.5rem; + .md\:opacity-10 { + opacity: 0.1; } - .md\:gap-x-11 { - column-gap: 2.75rem; + .md\:opacity-20 { + opacity: 0.2; } - .md\:gap-x-12 { - column-gap: 3rem; + .md\:opacity-25 { + opacity: 0.25; } - .md\:gap-x-14 { - column-gap: 3.5rem; + .md\:opacity-30 { + opacity: 0.3; } - .md\:gap-x-16 { - column-gap: 4rem; + .md\:opacity-40 { + opacity: 0.4; } - .md\:gap-x-20 { - column-gap: 5rem; + .md\:opacity-50 { + opacity: 0.5; } - .md\:gap-x-24 { - column-gap: 6rem; + .md\:opacity-60 { + opacity: 0.6; } - .md\:gap-x-28 { - column-gap: 7rem; + .md\:opacity-70 { + opacity: 0.7; } - .md\:gap-x-32 { - column-gap: 8rem; + .md\:opacity-75 { + opacity: 0.75; } - .md\:gap-x-36 { - column-gap: 9rem; + .md\:opacity-80 { + opacity: 0.8; } - .md\:gap-x-40 { - column-gap: 10rem; + .md\:opacity-90 { + opacity: 0.9; } - .md\:gap-x-44 { - column-gap: 11rem; + .md\:opacity-95 { + opacity: 0.95; } - .md\:gap-x-48 { - column-gap: 12rem; + .md\:opacity-100 { + opacity: 1; } - .md\:gap-x-52 { - column-gap: 13rem; + .group:hover .md\:group-hover\:opacity-0 { + opacity: 0; } - .md\:gap-x-56 { - column-gap: 14rem; + .group:hover .md\:group-hover\:opacity-5 { + opacity: 0.05; } - .md\:gap-x-60 { - column-gap: 15rem; + .group:hover .md\:group-hover\:opacity-10 { + opacity: 0.1; } - .md\:gap-x-64 { - column-gap: 16rem; + .group:hover .md\:group-hover\:opacity-20 { + opacity: 0.2; } - .md\:gap-x-72 { - column-gap: 18rem; + .group:hover .md\:group-hover\:opacity-25 { + opacity: 0.25; } - .md\:gap-x-80 { - column-gap: 20rem; + .group:hover .md\:group-hover\:opacity-30 { + opacity: 0.3; } - .md\:gap-x-96 { - column-gap: 24rem; + .group:hover .md\:group-hover\:opacity-40 { + opacity: 0.4; } - .md\:gap-x-px { - column-gap: 1px; + .group:hover .md\:group-hover\:opacity-50 { + opacity: 0.5; } - .md\:gap-x-0\.5 { - column-gap: 0.125rem; + .group:hover .md\:group-hover\:opacity-60 { + opacity: 0.6; } - .md\:gap-x-1\.5 { - column-gap: 0.375rem; + .group:hover .md\:group-hover\:opacity-70 { + opacity: 0.7; } - .md\:gap-x-2\.5 { - column-gap: 0.625rem; + .group:hover .md\:group-hover\:opacity-75 { + opacity: 0.75; } - .md\:gap-x-3\.5 { - column-gap: 0.875rem; + .group:hover .md\:group-hover\:opacity-80 { + opacity: 0.8; } - .md\:gap-y-0 { - row-gap: 0px; + .group:hover .md\:group-hover\:opacity-90 { + opacity: 0.9; } - .md\:gap-y-1 { - row-gap: 0.25rem; + .group:hover .md\:group-hover\:opacity-95 { + opacity: 0.95; } - .md\:gap-y-2 { - row-gap: 0.5rem; + .group:hover .md\:group-hover\:opacity-100 { + opacity: 1; } - .md\:gap-y-3 { - row-gap: 0.75rem; + .md\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .md\:gap-y-4 { - row-gap: 1rem; + .md\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .md\:gap-y-5 { - row-gap: 1.25rem; + .md\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .md\:gap-y-6 { - row-gap: 1.5rem; + .md\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .md\:gap-y-7 { - row-gap: 1.75rem; + .md\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .md\:gap-y-8 { - row-gap: 2rem; + .md\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .md\:gap-y-9 { - row-gap: 2.25rem; + .md\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .md\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .md\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .md\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .md\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .md\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .md\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .md\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .md\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .md\:hover\:opacity-0:hover { + opacity: 0; + } + + .md\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .md\:hover\:opacity-10:hover { + opacity: 0.1; } - .md\:gap-y-10 { - row-gap: 2.5rem; + .md\:hover\:opacity-20:hover { + opacity: 0.2; } - .md\:gap-y-11 { - row-gap: 2.75rem; + .md\:hover\:opacity-25:hover { + opacity: 0.25; } - .md\:gap-y-12 { - row-gap: 3rem; + .md\:hover\:opacity-30:hover { + opacity: 0.3; } - .md\:gap-y-14 { - row-gap: 3.5rem; + .md\:hover\:opacity-40:hover { + opacity: 0.4; } - .md\:gap-y-16 { - row-gap: 4rem; + .md\:hover\:opacity-50:hover { + opacity: 0.5; } - .md\:gap-y-20 { - row-gap: 5rem; + .md\:hover\:opacity-60:hover { + opacity: 0.6; } - .md\:gap-y-24 { - row-gap: 6rem; + .md\:hover\:opacity-70:hover { + opacity: 0.7; } - .md\:gap-y-28 { - row-gap: 7rem; + .md\:hover\:opacity-75:hover { + opacity: 0.75; } - .md\:gap-y-32 { - row-gap: 8rem; + .md\:hover\:opacity-80:hover { + opacity: 0.8; } - .md\:gap-y-36 { - row-gap: 9rem; + .md\:hover\:opacity-90:hover { + opacity: 0.9; } - .md\:gap-y-40 { - row-gap: 10rem; + .md\:hover\:opacity-95:hover { + opacity: 0.95; } - .md\:gap-y-44 { - row-gap: 11rem; + .md\:hover\:opacity-100:hover { + opacity: 1; } - .md\:gap-y-48 { - row-gap: 12rem; + .md\:focus\:opacity-0:focus { + opacity: 0; } - .md\:gap-y-52 { - row-gap: 13rem; + .md\:focus\:opacity-5:focus { + opacity: 0.05; } - .md\:gap-y-56 { - row-gap: 14rem; + .md\:focus\:opacity-10:focus { + opacity: 0.1; } - .md\:gap-y-60 { - row-gap: 15rem; + .md\:focus\:opacity-20:focus { + opacity: 0.2; } - .md\:gap-y-64 { - row-gap: 16rem; + .md\:focus\:opacity-25:focus { + opacity: 0.25; } - .md\:gap-y-72 { - row-gap: 18rem; + .md\:focus\:opacity-30:focus { + opacity: 0.3; } - .md\:gap-y-80 { - row-gap: 20rem; + .md\:focus\:opacity-40:focus { + opacity: 0.4; } - .md\:gap-y-96 { - row-gap: 24rem; + .md\:focus\:opacity-50:focus { + opacity: 0.5; } - .md\:gap-y-px { - row-gap: 1px; + .md\:focus\:opacity-60:focus { + opacity: 0.6; } - .md\:gap-y-0\.5 { - row-gap: 0.125rem; + .md\:focus\:opacity-70:focus { + opacity: 0.7; } - .md\:gap-y-1\.5 { - row-gap: 0.375rem; + .md\:focus\:opacity-75:focus { + opacity: 0.75; } - .md\:gap-y-2\.5 { - row-gap: 0.625rem; + .md\:focus\:opacity-80:focus { + opacity: 0.8; } - .md\:gap-y-3\.5 { - row-gap: 0.875rem; + .md\:focus\:opacity-90:focus { + opacity: 0.9; } - .md\:grid-flow-row { - grid-auto-flow: row; + .md\:focus\:opacity-95:focus { + opacity: 0.95; } - .md\:grid-flow-col { - grid-auto-flow: column; + .md\:focus\:opacity-100:focus { + opacity: 1; } - .md\:grid-flow-row-dense { - grid-auto-flow: row dense; + .md\:bg-blend-normal { + background-blend-mode: normal; } - .md\:grid-flow-col-dense { - grid-auto-flow: column dense; + .md\:bg-blend-multiply { + background-blend-mode: multiply; } - .md\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .md\:bg-blend-screen { + background-blend-mode: screen; } - .md\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .md\:bg-blend-overlay { + background-blend-mode: overlay; } - .md\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .md\:bg-blend-darken { + background-blend-mode: darken; } - .md\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .md\:bg-blend-lighten { + background-blend-mode: lighten; } - .md\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .md\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .md\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .md\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .md\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .md\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .md\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .md\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .md\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .md\:bg-blend-difference { + background-blend-mode: difference; } - .md\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .md\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .md\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .md\:bg-blend-hue { + background-blend-mode: hue; } - .md\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .md\:bg-blend-saturation { + background-blend-mode: saturation; } - .md\:grid-cols-none { - grid-template-columns: none; + .md\:bg-blend-color { + background-blend-mode: color; } - .md\:auto-cols-auto { - grid-auto-columns: auto; + .md\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .md\:auto-cols-min { - grid-auto-columns: min-content; + .md\:mix-blend-normal { + mix-blend-mode: normal; } - .md\:auto-cols-max { - grid-auto-columns: max-content; + .md\:mix-blend-multiply { + mix-blend-mode: multiply; } - .md\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .md\:mix-blend-screen { + mix-blend-mode: screen; } - .md\:col-auto { - grid-column: auto; + .md\:mix-blend-overlay { + mix-blend-mode: overlay; } - .md\:col-span-1 { - grid-column: span 1 / span 1; + .md\:mix-blend-darken { + mix-blend-mode: darken; } - .md\:col-span-2 { - grid-column: span 2 / span 2; + .md\:mix-blend-lighten { + mix-blend-mode: lighten; } - .md\:col-span-3 { - grid-column: span 3 / span 3; + .md\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .md\:col-span-4 { - grid-column: span 4 / span 4; + .md\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .md\:col-span-5 { - grid-column: span 5 / span 5; + .md\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .md\:col-span-6 { - grid-column: span 6 / span 6; + .md\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .md\:col-span-7 { - grid-column: span 7 / span 7; + .md\:mix-blend-difference { + mix-blend-mode: difference; } - .md\:col-span-8 { - grid-column: span 8 / span 8; + .md\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .md\:col-span-9 { - grid-column: span 9 / span 9; + .md\:mix-blend-hue { + mix-blend-mode: hue; } - .md\:col-span-10 { - grid-column: span 10 / span 10; + .md\:mix-blend-saturation { + mix-blend-mode: saturation; } - .md\:col-span-11 { - grid-column: span 11 / span 11; + .md\:mix-blend-color { + mix-blend-mode: color; } - .md\:col-span-12 { - grid-column: span 12 / span 12; + .md\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .md\:col-span-full { - grid-column: 1 / -1; + .md\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-1 { - grid-column-start: 1; + .md\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-2 { - grid-column-start: 2; + .md\: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); } - .md\:col-start-3 { - grid-column-start: 3; + .md\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-4 { - grid-column-start: 4; + .md\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-5 { - grid-column-start: 5; + .md\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-6 { - grid-column-start: 6; + .md\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-7 { - grid-column-start: 7; + .md\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-8 { - grid-column-start: 8; + .group:hover .md\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-9 { - grid-column-start: 9; + .group:hover .md\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-10 { - grid-column-start: 10; + .group:hover .md\:group-hover\: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); } - .md\:col-start-11 { - grid-column-start: 11; + .group:hover .md\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-12 { - grid-column-start: 12; + .group:hover .md\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-13 { - grid-column-start: 13; + .group:hover .md\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-start-auto { - grid-column-start: auto; + .group:hover .md\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-1 { - grid-column-end: 1; + .group:hover .md\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-2 { - grid-column-end: 2; + .md\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-3 { - grid-column-end: 3; + .md\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-4 { - grid-column-end: 4; + .md\:focus-within\:shadow-md:focus-within { + --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); } - .md\:col-end-5 { - grid-column-end: 5; + .md\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-6 { - grid-column-end: 6; + .md\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-7 { - grid-column-end: 7; + .md\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-8 { - grid-column-end: 8; + .md\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-9 { - grid-column-end: 9; + .md\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-10 { - grid-column-end: 10; + .md\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-11 { - grid-column-end: 11; + .md\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-12 { - grid-column-end: 12; + .md\:hover\:shadow-md:hover { + --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); } - .md\:col-end-13 { - grid-column-end: 13; + .md\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:col-end-auto { - grid-column-end: auto; + .md\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .md\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .md\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .md\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .md\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .md\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .md\:focus\:shadow-md:focus { + --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); } - .md\:grid-rows-none { - grid-template-rows: none; + .md\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:auto-rows-auto { - grid-auto-rows: auto; + .md\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:auto-rows-min { - grid-auto-rows: min-content; + .md\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:auto-rows-max { - grid-auto-rows: max-content; + .md\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .md\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-auto { - grid-row: auto; + .md\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .md\:row-span-1 { - grid-row: span 1 / span 1; + .md\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .md\:row-span-2 { - grid-row: span 2 / span 2; + .md\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .md\:row-span-3 { - grid-row: span 3 / span 3; + .md\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .md\:row-span-4 { - grid-row: span 4 / span 4; + .md\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .md\:row-span-5 { - grid-row: span 5 / span 5; + .md\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .md\:row-span-6 { - grid-row: span 6 / span 6; + .md\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .md\:row-span-full { - grid-row: 1 / -1; + .md\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .md\:row-start-1 { - grid-row-start: 1; + .md\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .md\:row-start-2 { - grid-row-start: 2; + .md\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-start-3 { - grid-row-start: 3; + .md\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-start-4 { - grid-row-start: 4; + .md\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-start-5 { - grid-row-start: 5; + .md\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-start-6 { - grid-row-start: 6; + .md\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-start-7 { - grid-row-start: 7; + .md\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-start-auto { - grid-row-start: auto; + .md\:ring-inset { + --tw-ring-inset: inset; } - .md\:row-end-1 { - grid-row-end: 1; + .md\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-end-2 { - grid-row-end: 2; + .md\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-end-3 { - grid-row-end: 3; + .md\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-end-4 { - grid-row-end: 4; + .md\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-end-5 { - grid-row-end: 5; + .md\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-end-6 { - grid-row-end: 6; + .md\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:row-end-7 { - grid-row-end: 7; + .md\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .md\:row-end-auto { - grid-row-end: auto; + .md\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .md\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .md\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:transform-none { - transform: none; + .md\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:origin-center { - transform-origin: center; + .md\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:origin-top { - transform-origin: top; + .md\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:origin-top-right { - transform-origin: top right; + .md\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .md\:origin-right { - transform-origin: right; + .md\:ring-transparent { + --tw-ring-color: transparent; } - .md\:origin-bottom-right { - transform-origin: bottom right; + .md\:ring-current { + --tw-ring-color: currentColor; } - .md\:origin-bottom { - transform-origin: bottom; + .md\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .md\:origin-bottom-left { - transform-origin: bottom left; + .md\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .md\:origin-left { - transform-origin: left; + .md\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .md\:origin-top-left { - transform-origin: top left; + .md\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .md\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .md\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .md\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .md\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .md\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .md\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .md\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .md\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .md\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .md\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .md\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .md\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .md\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .md\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .md\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .md\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .md\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .md\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .md\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .md\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .md\:scale-x-0 { - --tw-scale-x: 0; + .md\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .md\:scale-x-50 { - --tw-scale-x: .5; + .md\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .md\:scale-x-75 { - --tw-scale-x: .75; + .md\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .md\:scale-x-90 { - --tw-scale-x: .9; + .md\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .md\:scale-x-95 { - --tw-scale-x: .95; + .md\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .md\:scale-x-100 { - --tw-scale-x: 1; + .md\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .md\:scale-x-105 { - --tw-scale-x: 1.05; + .md\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .md\:scale-x-110 { - --tw-scale-x: 1.1; + .md\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .md\:scale-x-125 { - --tw-scale-x: 1.25; + .md\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .md\:scale-x-150 { - --tw-scale-x: 1.5; + .md\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .md\:scale-y-0 { - --tw-scale-y: 0; + .md\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .md\:scale-y-50 { - --tw-scale-y: .5; + .md\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .md\:scale-y-75 { - --tw-scale-y: .75; + .md\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .md\:scale-y-90 { - --tw-scale-y: .9; + .md\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .md\:scale-y-95 { - --tw-scale-y: .95; + .md\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .md\:scale-y-100 { - --tw-scale-y: 1; + .md\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .md\:scale-y-105 { - --tw-scale-y: 1.05; + .md\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .md\:scale-y-110 { - --tw-scale-y: 1.1; + .md\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .md\:scale-y-125 { - --tw-scale-y: 1.25; + .md\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .md\:scale-y-150 { - --tw-scale-y: 1.5; + .md\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .md\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .md\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .md\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .md\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .md\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .md\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .md\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .md\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .md\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .md\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .md\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .md\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .md\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .md\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .md\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .md\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .md\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .md\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .md\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .md\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .md\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .md\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .md\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .md\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .md\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .md\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .md\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .md\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .md\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .md\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .md\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .md\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .md\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .md\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .md\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .md\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .md\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .md\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .md\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .md\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .md\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .md\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .md\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .md\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .md\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .md\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .md\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .md\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .md\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .md\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .md\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .md\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .md\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .md\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .md\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .md\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .md\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .md\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .md\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .md\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .md\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .md\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .md\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .md\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .md\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .md\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .md\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .md\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .md\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .md\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .md\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .md\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .md\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .md\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .md\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .md\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .md\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .md\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .md\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .md\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .md\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .md\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .md\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .md\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .md\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .md\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .md\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .md\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .md\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .md\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .md\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .md\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .md\:rotate-0 { - --tw-rotate: 0deg; + .md\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .md\:rotate-1 { - --tw-rotate: 1deg; + .md\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .md\:rotate-2 { - --tw-rotate: 2deg; + .md\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .md\:rotate-3 { - --tw-rotate: 3deg; + .md\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .md\:rotate-6 { - --tw-rotate: 6deg; + .md\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .md\:rotate-12 { - --tw-rotate: 12deg; + .md\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .md\:rotate-45 { - --tw-rotate: 45deg; + .md\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .md\:rotate-90 { - --tw-rotate: 90deg; + .md\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .md\:rotate-180 { - --tw-rotate: 180deg; + .md\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .md\:-rotate-180 { - --tw-rotate: -180deg; + .md\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .md\:-rotate-90 { - --tw-rotate: -90deg; + .md\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .md\:-rotate-45 { - --tw-rotate: -45deg; + .md\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .md\:-rotate-12 { - --tw-rotate: -12deg; + .md\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .md\:-rotate-6 { - --tw-rotate: -6deg; + .md\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .md\:-rotate-3 { - --tw-rotate: -3deg; + .md\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .md\:-rotate-2 { - --tw-rotate: -2deg; + .md\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .md\:-rotate-1 { - --tw-rotate: -1deg; + .md\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .md\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .md\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .md\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .md\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .md\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .md\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .md\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .md\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .md\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .md\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .md\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .md\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .md\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .md\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .md\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .md\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .md\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .md\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .md\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .md\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .md\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .md\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .md\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .md\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .md\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .md\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .md\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .md\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .md\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .md\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .md\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .md\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .md\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .md\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .md\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .md\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .md\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .md\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .md\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .md\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .md\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .md\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .md\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .md\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .md\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .md\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .md\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .md\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .md\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .md\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .md\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .md\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .md\:translate-x-0 { - --tw-translate-x: 0px; + .md\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .md\:translate-x-1 { - --tw-translate-x: 0.25rem; + .md\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .md\:translate-x-2 { - --tw-translate-x: 0.5rem; + .md\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .md\:translate-x-3 { - --tw-translate-x: 0.75rem; + .md\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .md\:translate-x-4 { - --tw-translate-x: 1rem; + .md\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .md\:translate-x-5 { - --tw-translate-x: 1.25rem; + .md\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .md\:translate-x-6 { - --tw-translate-x: 1.5rem; + .md\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .md\:translate-x-7 { - --tw-translate-x: 1.75rem; + .md\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .md\:translate-x-8 { - --tw-translate-x: 2rem; + .md\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .md\:translate-x-9 { - --tw-translate-x: 2.25rem; + .md\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .md\:translate-x-10 { - --tw-translate-x: 2.5rem; + .md\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .md\:translate-x-11 { - --tw-translate-x: 2.75rem; + .md\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .md\:translate-x-12 { - --tw-translate-x: 3rem; + .md\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .md\:translate-x-14 { - --tw-translate-x: 3.5rem; + .md\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .md\:translate-x-16 { - --tw-translate-x: 4rem; + .md\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .md\:translate-x-20 { - --tw-translate-x: 5rem; + .md\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .md\:translate-x-24 { - --tw-translate-x: 6rem; + .md\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .md\:translate-x-28 { - --tw-translate-x: 7rem; + .md\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .md\:translate-x-32 { - --tw-translate-x: 8rem; + .md\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .md\:translate-x-36 { - --tw-translate-x: 9rem; + .md\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .md\:translate-x-40 { - --tw-translate-x: 10rem; + .md\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .md\:translate-x-44 { - --tw-translate-x: 11rem; + .md\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .md\:translate-x-48 { - --tw-translate-x: 12rem; + .md\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .md\:translate-x-52 { - --tw-translate-x: 13rem; + .md\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .md\:translate-x-56 { - --tw-translate-x: 14rem; + .md\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .md\:translate-x-60 { - --tw-translate-x: 15rem; + .md\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .md\:translate-x-64 { - --tw-translate-x: 16rem; + .md\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .md\:translate-x-72 { - --tw-translate-x: 18rem; + .md\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .md\:translate-x-80 { - --tw-translate-x: 20rem; + .md\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .md\:translate-x-96 { - --tw-translate-x: 24rem; + .md\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .md\:translate-x-px { - --tw-translate-x: 1px; + .md\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .md\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .md\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .md\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .md\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .md\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .md\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .md\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .md\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .md\:-translate-x-0 { - --tw-translate-x: 0px; + .md\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .md\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .md\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .md\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .md\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .md\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .md\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .md\:-translate-x-4 { - --tw-translate-x: -1rem; + .md\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .md\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .md\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .md\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .md\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .md\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .md\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .md\:-translate-x-8 { - --tw-translate-x: -2rem; + .md\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .md\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .md\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .md\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .md\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .md\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .md\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .md\:-translate-x-12 { - --tw-translate-x: -3rem; + .md\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .md\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .md\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .md\:-translate-x-16 { - --tw-translate-x: -4rem; + .md\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .md\:-translate-x-20 { - --tw-translate-x: -5rem; + .md\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .md\:-translate-x-24 { - --tw-translate-x: -6rem; + .md\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .md\:-translate-x-28 { - --tw-translate-x: -7rem; + .md\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .md\:-translate-x-32 { - --tw-translate-x: -8rem; + .md\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .md\:-translate-x-36 { - --tw-translate-x: -9rem; + .md\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .md\:-translate-x-40 { - --tw-translate-x: -10rem; + .md\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .md\:-translate-x-44 { - --tw-translate-x: -11rem; + .md\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .md\:-translate-x-48 { - --tw-translate-x: -12rem; + .md\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .md\:-translate-x-52 { - --tw-translate-x: -13rem; + .md\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .md\:-translate-x-56 { - --tw-translate-x: -14rem; + .md\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .md\:-translate-x-60 { - --tw-translate-x: -15rem; + .md\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .md\:-translate-x-64 { - --tw-translate-x: -16rem; + .md\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .md\:-translate-x-72 { - --tw-translate-x: -18rem; + .md\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .md\:-translate-x-80 { - --tw-translate-x: -20rem; + .md\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .md\:-translate-x-96 { - --tw-translate-x: -24rem; + .md\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .md\:-translate-x-px { - --tw-translate-x: -1px; + .md\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .md\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .md\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .md\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .md\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .md\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .md\:translate-x-1\/2 { - --tw-translate-x: 50%; + .md\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .md\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .md\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .md\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .md\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .md\:translate-x-1\/4 { - --tw-translate-x: 25%; + .md\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .md\:translate-x-2\/4 { - --tw-translate-x: 50%; + .md\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .md\:translate-x-3\/4 { - --tw-translate-x: 75%; + .md\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .md\:translate-x-full { - --tw-translate-x: 100%; + .md\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .md\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .md\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .md\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .md\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .md\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .md\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .md\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .md\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .md\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .md\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .md\:-translate-x-full { - --tw-translate-x: -100%; + .md\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .md\:translate-y-0 { - --tw-translate-y: 0px; + .md\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .md\:translate-y-1 { - --tw-translate-y: 0.25rem; + .md\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .md\:translate-y-2 { - --tw-translate-y: 0.5rem; + .md\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .md\:translate-y-3 { - --tw-translate-y: 0.75rem; + .md\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .md\:translate-y-4 { - --tw-translate-y: 1rem; + .md\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .md\:translate-y-5 { - --tw-translate-y: 1.25rem; + .md\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .md\:translate-y-6 { - --tw-translate-y: 1.5rem; + .md\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .md\:translate-y-7 { - --tw-translate-y: 1.75rem; + .md\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .md\:translate-y-8 { - --tw-translate-y: 2rem; + .md\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .md\:translate-y-9 { - --tw-translate-y: 2.25rem; + .md\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .md\:translate-y-10 { - --tw-translate-y: 2.5rem; + .md\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .md\:translate-y-11 { - --tw-translate-y: 2.75rem; + .md\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .md\:translate-y-12 { - --tw-translate-y: 3rem; + .md\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .md\:translate-y-14 { - --tw-translate-y: 3.5rem; + .md\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .md\:translate-y-16 { - --tw-translate-y: 4rem; + .md\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .md\:translate-y-20 { - --tw-translate-y: 5rem; + .md\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .md\:translate-y-24 { - --tw-translate-y: 6rem; + .md\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .md\:translate-y-28 { - --tw-translate-y: 7rem; + .md\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .md\:translate-y-32 { - --tw-translate-y: 8rem; + .md\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .md\:translate-y-36 { - --tw-translate-y: 9rem; + .md\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .md\:translate-y-40 { - --tw-translate-y: 10rem; + .md\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .md\:translate-y-44 { - --tw-translate-y: 11rem; + .md\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .md\:translate-y-48 { - --tw-translate-y: 12rem; + .md\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .md\:translate-y-52 { - --tw-translate-y: 13rem; + .md\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .md\:translate-y-56 { - --tw-translate-y: 14rem; + .md\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .md\:translate-y-60 { - --tw-translate-y: 15rem; + .md\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .md\:translate-y-64 { - --tw-translate-y: 16rem; + .md\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .md\:translate-y-72 { - --tw-translate-y: 18rem; + .md\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .md\:translate-y-80 { - --tw-translate-y: 20rem; + .md\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .md\:translate-y-96 { - --tw-translate-y: 24rem; + .md\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .md\:translate-y-px { - --tw-translate-y: 1px; + .md\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .md\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .md\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .md\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .md\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .md\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .md\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .md\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .md\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .md\:-translate-y-0 { - --tw-translate-y: 0px; + .md\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .md\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .md\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .md\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .md\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .md\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .md\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .md\:-translate-y-4 { - --tw-translate-y: -1rem; + .md\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .md\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .md\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .md\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .md\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .md\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .md\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .md\:-translate-y-8 { - --tw-translate-y: -2rem; + .md\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .md\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .md\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .md\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .md\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .md\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .md\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .md\:-translate-y-12 { - --tw-translate-y: -3rem; + .md\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .md\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .md\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .md\:-translate-y-16 { - --tw-translate-y: -4rem; + .md\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .md\:-translate-y-20 { - --tw-translate-y: -5rem; + .md\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .md\:-translate-y-24 { - --tw-translate-y: -6rem; + .md\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .md\:-translate-y-28 { - --tw-translate-y: -7rem; + .md\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .md\:-translate-y-32 { - --tw-translate-y: -8rem; + .md\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .md\:-translate-y-36 { - --tw-translate-y: -9rem; + .md\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .md\:-translate-y-40 { - --tw-translate-y: -10rem; + .md\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .md\:-translate-y-44 { - --tw-translate-y: -11rem; + .md\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .md\:-translate-y-48 { - --tw-translate-y: -12rem; + .md\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .md\:-translate-y-52 { - --tw-translate-y: -13rem; + .md\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .md\:-translate-y-56 { - --tw-translate-y: -14rem; + .md\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .md\:-translate-y-60 { - --tw-translate-y: -15rem; + .md\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .md\:-translate-y-64 { - --tw-translate-y: -16rem; + .md\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .md\:-translate-y-72 { - --tw-translate-y: -18rem; + .md\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .md\:-translate-y-80 { - --tw-translate-y: -20rem; + .md\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .md\:-translate-y-96 { - --tw-translate-y: -24rem; + .md\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .md\:-translate-y-px { - --tw-translate-y: -1px; + .md\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .md\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .md\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .md\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .md\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .md\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .md\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .md\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .md\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .md\:translate-y-1\/2 { - --tw-translate-y: 50%; + .md\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .md\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .md\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .md\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .md\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .md\:translate-y-1\/4 { - --tw-translate-y: 25%; + .md\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .md\:translate-y-2\/4 { - --tw-translate-y: 50%; + .md\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .md\:translate-y-3\/4 { - --tw-translate-y: 75%; + .md\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .md\:translate-y-full { - --tw-translate-y: 100%; + .md\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .md\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .md\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .md\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .md\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .md\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .md\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .md\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .md\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .md\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .md\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .md\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .md\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .md\:-translate-y-full { - --tw-translate-y: -100%; + .md\:ring-offset-black { + --tw-ring-offset-color: #000; } - .md\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .md\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .md\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .md\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .md\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .md\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .md\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .md\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .md\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .md\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .md\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .md\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .md\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .md\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .md\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .md\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .md\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .md\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .md\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .md\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .md\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .md\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .md\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .md\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .md\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .md\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .md\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .md\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .md\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .md\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .md\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .md\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .md\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .md\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .md\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .md\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .md\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .md\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .md\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .md\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .md\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .md\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .md\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .md\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .md\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .md\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .md\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .md\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .md\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .md\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .md\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .md\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .md\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .md\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .md\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .md\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .md\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .md\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .md\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .md\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .md\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .md\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .md\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .md\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .md\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .md\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .md\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .md\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .md\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .md\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .md\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .md\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .md\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .md\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .md\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .md\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .md\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .md\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .md\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .md\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .md\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .md\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .md\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .md\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .md\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .md\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .md\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .md\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .md\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .md\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .md\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .md\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .md\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .md\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .md\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .md\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .md\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .md\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .md\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .md\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .md\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .md\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .md\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .md\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .md\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .md\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .md\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .md\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .md\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .md\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .md\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .md\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .md\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .md\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .md\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .md\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .md\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .md\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .md\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .md\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .md\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .md\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .md\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .md\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .md\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .md\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .md\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .md\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .md\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .md\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .md\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .md\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .md\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .md\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .md\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .md\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .md\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .md\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .md\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .md\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .md\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .md\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .md\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .md\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .md\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .md\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .md\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .md\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .md\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .md\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .md\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .md\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .md\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .md\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .md\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .md\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .md\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .md\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .md\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .md\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .md\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .md\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .md\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .md\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .md\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .md\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .md\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .md\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .md\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .md\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .md\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .md\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .md\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .md\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .md\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .md\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .md\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .md\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .md\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .md\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .md\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .md\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .md\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .md\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .md\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .md\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .md\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .md\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .md\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .md\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .md\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .md\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .md\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .md\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .md\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .md\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .md\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .md\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .md\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .md\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .md\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .md\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .md\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .md\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .md\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .md\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .md\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .md\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .md\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .md\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .md\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .md\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .md\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .md\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .md\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .md\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .md\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .md\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .md\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .md\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .md\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .md\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .md\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .md\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .md\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .md\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .md\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .md\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .md\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .md\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .md\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .md\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - .md\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .md\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .md\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .md\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .md\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .md\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .md\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .md\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .md\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .md\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .md\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .md\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .md\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .md\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .md\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .md\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .md\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .md\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .md\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .md\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .md\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .md\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .md\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .md\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .md\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .md\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .md\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .md\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .md\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .md\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .md\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .md\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .md\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .md\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .md\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .md\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .md\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .md\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .md\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .md\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .md\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .md\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .md\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .md\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .md\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .md\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .md\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .md\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .md\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .md\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .md\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .md\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .md\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .md\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .md\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .md\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .md\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .md\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .md\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .md\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .md\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .md\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .md\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .md\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .md\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .md\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .md\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .md\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .md\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .md\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .md\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .md\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .md\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .md\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .md\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .md\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .md\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .md\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .md\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .md\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .md\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .md\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .md\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .md\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .md\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .md\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .md\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .md\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .md\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .md\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .md\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .md\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .md\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .md\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .md\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .md\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .md\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .md\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .md\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .md\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .md\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .md\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .md\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .md\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .md\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .md\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .md\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .md\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .md\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + .md\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .md\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .md\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .md\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .md\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .md\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .md\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .md\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .md\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .md\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .md\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .md\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .md\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .md\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .md\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .md\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .md\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .md\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .md\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .md\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .md\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .md\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .md\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .md\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .md\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .md\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .md\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .md\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .md\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .md\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .md\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .md\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .md\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .md\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .md\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .md\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .md\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .md\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .md\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .md\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .md\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .md\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .md\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .md\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .md\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .md\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .md\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .md\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .md\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .md\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .md\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .md\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .md\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .md\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .md\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .md\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .md\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .md\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .md\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .md\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .md\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .md\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .md\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .md\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .md\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .md\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .md\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .md\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .md\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .md\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .md\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .md\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .md\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .md\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .md\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .md\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .md\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .md\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .md\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .md\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .md\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .md\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .md\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .md\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .md\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .md\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .md\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .md\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .md\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .md\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .md\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .md\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .md\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .md\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .md\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .md\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .md\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .md\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .md\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .md\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .md\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .md\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .md\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .md\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .md\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .md\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .md\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .md\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .md\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .md\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .md\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .md\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .md\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .md\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .md\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .md\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .md\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .md\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .md\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .md\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .md\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .md\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .md\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .md\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .md\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .md\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .md\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .md\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .md\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .md\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .md\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .md\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .md\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .md\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .md\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .md\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .md\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .md\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .md\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .md\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .md\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .md\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .md\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .md\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .md\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .md\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .md\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .md\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .md\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .md\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .md\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .md\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .md\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .md\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .md\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .md\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .md\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .md\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .md\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .md\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .md\:filter-none { + filter: none; } - .md\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .md\:blur-0 { + --tw-blur: blur(0); } - .md\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .md\:blur-sm { + --tw-blur: blur(4px); } - .md\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .md\:blur { + --tw-blur: blur(8px); } - .md\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .md\:blur-md { + --tw-blur: blur(12px); } - .md\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .md\:blur-lg { + --tw-blur: blur(16px); } - .md\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .md\:blur-xl { + --tw-blur: blur(24px); } - .md\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .md\:blur-2xl { + --tw-blur: blur(40px); } - .md\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .md\:blur-3xl { + --tw-blur: blur(64px); } - .md\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .md\:brightness-0 { + --tw-brightness: brightness(0); } - .md\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .md\:brightness-50 { + --tw-brightness: brightness(.5); } - .md\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .md\:brightness-75 { + --tw-brightness: brightness(.75); } - .md\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .md\:brightness-90 { + --tw-brightness: brightness(.9); } - .md\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .md\:brightness-95 { + --tw-brightness: brightness(.95); } - .md\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .md\:brightness-100 { + --tw-brightness: brightness(1); } - .md\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .md\:brightness-105 { + --tw-brightness: brightness(1.05); } - .md\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .md\:brightness-110 { + --tw-brightness: brightness(1.1); } - .md\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .md\:brightness-125 { + --tw-brightness: brightness(1.25); } - .md\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .md\:brightness-150 { + --tw-brightness: brightness(1.5); } - .md\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .md\:brightness-200 { + --tw-brightness: brightness(2); } - .md\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .md\:contrast-0 { + --tw-contrast: contrast(0); } - .md\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .md\:contrast-50 { + --tw-contrast: contrast(.5); } - .md\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .md\:contrast-75 { + --tw-contrast: contrast(.75); } - .md\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .md\:contrast-100 { + --tw-contrast: contrast(1); } - .md\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .md\:contrast-125 { + --tw-contrast: contrast(1.25); } - .md\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .md\:contrast-150 { + --tw-contrast: contrast(1.5); } - .md\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .md\:contrast-200 { + --tw-contrast: contrast(2); } - .md\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .md\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .md\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .md\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .md\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .md\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .md\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .md\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .md\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .md\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .md\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .md\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .md\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .md\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .md\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .md\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .md\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .md\:grayscale { + --tw-grayscale: grayscale(100%); } - .md\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .md\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .md\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .md\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .md\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .md\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .md\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .md\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .md\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .md\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .md\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .md\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .md\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .md\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .md\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .md\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .md\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .md\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .md\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .md\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .md\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .md\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .md\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .md\:invert-0 { + --tw-invert: invert(0); } - .md\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .md\:invert { + --tw-invert: invert(100%); } - .md\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .md\:saturate-0 { + --tw-saturate: saturate(0); } - .md\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .md\:saturate-50 { + --tw-saturate: saturate(.5); } - .md\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .md\:saturate-100 { + --tw-saturate: saturate(1); } - .md\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .md\:saturate-150 { + --tw-saturate: saturate(1.5); } - .md\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .md\:saturate-200 { + --tw-saturate: saturate(2); } - .md\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .md\:sepia-0 { + --tw-sepia: sepia(0); } - .md\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .md\:sepia { + --tw-sepia: sepia(100%); } - .md\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .md\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .md\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .md\:backdrop-filter-none { + backdrop-filter: none; } - .md\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .md\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .md\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .md\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .md\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .md\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .md\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .md\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .md\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .md\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .md\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .md\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .md\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .md\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .md\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .md\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .md\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .md\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .md\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .md\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .md\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .md\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .md\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .md\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .md\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .md\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .md\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .md\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .md\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .md\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .md\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .md\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .md\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .md\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .md\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .md\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .md\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .md\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .md\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .md\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .md\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .md\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .md\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .md\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .md\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .md\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .md\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .md\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .md\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .md\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .md\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .md\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .md\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .md\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .md\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .md\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .md\:skew-x-0 { - --tw-skew-x: 0deg; + .md\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .md\:skew-x-1 { - --tw-skew-x: 1deg; + .md\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .md\:skew-x-2 { - --tw-skew-x: 2deg; + .md\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .md\:skew-x-3 { - --tw-skew-x: 3deg; + .md\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .md\:skew-x-6 { - --tw-skew-x: 6deg; + .md\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .md\:skew-x-12 { - --tw-skew-x: 12deg; + .md\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .md\:-skew-x-12 { - --tw-skew-x: -12deg; + .md\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .md\:-skew-x-6 { - --tw-skew-x: -6deg; + .md\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .md\:-skew-x-3 { - --tw-skew-x: -3deg; + .md\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .md\:-skew-x-2 { - --tw-skew-x: -2deg; + .md\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .md\:-skew-x-1 { - --tw-skew-x: -1deg; + .md\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .md\:skew-y-0 { - --tw-skew-y: 0deg; + .md\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } - .md\:skew-y-1 { - --tw-skew-y: 1deg; + .md\:transition-none { + transition-property: none; } - .md\:skew-y-2 { - --tw-skew-y: 2deg; + .md\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .md\:skew-y-3 { - --tw-skew-y: 3deg; + .md\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .md\:skew-y-6 { - --tw-skew-y: 6deg; + .md\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .md\:skew-y-12 { - --tw-skew-y: 12deg; + .md\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .md\:-skew-y-12 { - --tw-skew-y: -12deg; + .md\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .md\:-skew-y-6 { - --tw-skew-y: -6deg; + .md\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .md\:-skew-y-3 { - --tw-skew-y: -3deg; + .md\:delay-75 { + transition-delay: 75ms; } - .md\:-skew-y-2 { - --tw-skew-y: -2deg; + .md\:delay-100 { + transition-delay: 100ms; } - .md\:-skew-y-1 { - --tw-skew-y: -1deg; + .md\:delay-150 { + transition-delay: 150ms; } - .md\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .md\:delay-200 { + transition-delay: 200ms; } - .md\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .md\:delay-300 { + transition-delay: 300ms; } - .md\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .md\:delay-500 { + transition-delay: 500ms; } - .md\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .md\:delay-700 { + transition-delay: 700ms; } - .md\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .md\:delay-1000 { + transition-delay: 1000ms; } - .md\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .md\:duration-75 { + transition-duration: 75ms; } - .md\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .md\:duration-100 { + transition-duration: 100ms; } - .md\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .md\:duration-150 { + transition-duration: 150ms; } - .md\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .md\:duration-200 { + transition-duration: 200ms; } - .md\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .md\:duration-300 { + transition-duration: 300ms; } - .md\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .md\:duration-500 { + transition-duration: 500ms; } - .md\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .md\:duration-700 { + transition-duration: 700ms; } - .md\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .md\:duration-1000 { + transition-duration: 1000ms; } - .md\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .md\:ease-linear { + transition-timing-function: linear; } - .md\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .md\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); } - .md\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .md\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); } - .md\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .md\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .md\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .md\:example { + font-weight: 700; + color: #ef4444; } +} - .md\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; +@media (min-width: 1024px) { + .lg\:container { + width: 100%; } - .md\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + @media (min-width: 640px) { + .lg\:container { + max-width: 640px; + } } - .md\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + @media (min-width: 768px) { + .lg\:container { + max-width: 768px; + } } - .md\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + @media (min-width: 1024px) { + .lg\:container { + max-width: 1024px; + } } - .md\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + @media (min-width: 1280px) { + .lg\:container { + max-width: 1280px; + } } - .md\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + @media (min-width: 1536px) { + .lg\:container { + max-width: 1536px; + } } - .md\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .lg\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .md\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .lg\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .md\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .lg\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .md\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .lg\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .md\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .lg\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .md\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .lg\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .md\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .lg\:pointer-events-none { + pointer-events: none; } - .md\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .lg\:pointer-events-auto { + pointer-events: auto; } - .md\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .lg\:visible { + visibility: visible; } - .md\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .lg\:invisible { + visibility: hidden; } - .md\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .lg\:static { + position: static; } - .md\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .lg\:fixed { + position: fixed; } - .md\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .lg\:absolute { + position: absolute; } - .md\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .lg\:relative { + position: relative; } - .md\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .lg\:sticky { + position: sticky; } - .md\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .lg\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .md\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .lg\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .md\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .lg\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .md\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .lg\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .md\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .lg\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .md\:transition-none { - transition-property: none; + .lg\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .md\:transition-all { - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .lg\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .md\:transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .lg\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .md\:transition-colors { - transition-property: background-color, border-color, color, fill, stroke; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .lg\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .md\:transition-opacity { - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .lg\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .md\:transition-shadow { - transition-property: box-shadow; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .lg\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .md\:transition-transform { - transition-property: transform; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .lg\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .md\:ease-linear { - transition-timing-function: linear; + .lg\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .md\:ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + .lg\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .md\:ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + .lg\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .md\:ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + .lg\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .md\:duration-75 { - transition-duration: 75ms; + .lg\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .md\:duration-100 { - transition-duration: 100ms; + .lg\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .md\:duration-150 { - transition-duration: 150ms; + .lg\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .md\:duration-200 { - transition-duration: 200ms; + .lg\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .md\:duration-300 { - transition-duration: 300ms; + .lg\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .md\:duration-500 { - transition-duration: 500ms; + .lg\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .md\:duration-700 { - transition-duration: 700ms; + .lg\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .md\:duration-1000 { - transition-duration: 1000ms; + .lg\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .md\:delay-75 { - transition-delay: 75ms; + .lg\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .md\:delay-100 { - transition-delay: 100ms; + .lg\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .md\:delay-150 { - transition-delay: 150ms; + .lg\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .md\:delay-200 { - transition-delay: 200ms; + .lg\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .md\:delay-300 { - transition-delay: 300ms; + .lg\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .md\:delay-500 { - transition-delay: 500ms; + .lg\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .md\:delay-700 { - transition-delay: 700ms; + .lg\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .md\:delay-1000 { - transition-delay: 1000ms; + .lg\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .md\:animate-none { - animation: none; + .lg\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .md\:animate-spin { - animation: spin 1s linear infinite; + .lg\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .md\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .lg\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .md\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .lg\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .md\:animate-bounce { - animation: bounce 1s infinite; + .lg\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .md\:mix-blend-normal { - mix-blend-mode: normal; + .lg\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .md\:mix-blend-multiply { - mix-blend-mode: multiply; + .lg\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .md\:mix-blend-screen { - mix-blend-mode: screen; + .lg\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .md\:mix-blend-overlay { - mix-blend-mode: overlay; + .lg\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .md\:mix-blend-darken { - mix-blend-mode: darken; + .lg\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .md\:mix-blend-lighten { - mix-blend-mode: lighten; + .lg\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .md\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .lg\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .md\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .lg\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .md\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .lg\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .md\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .lg\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .md\:mix-blend-difference { - mix-blend-mode: difference; + .lg\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .md\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .lg\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .md\:mix-blend-hue { - mix-blend-mode: hue; + .lg\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .md\:mix-blend-saturation { - mix-blend-mode: saturation; + .lg\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .md\:mix-blend-color { - mix-blend-mode: color; + .lg\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .md\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .lg\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .md\:bg-blend-normal { - background-blend-mode: normal; + .lg\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .md\:bg-blend-multiply { - background-blend-mode: multiply; + .lg\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .md\:bg-blend-screen { - background-blend-mode: screen; + .lg\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .md\:bg-blend-overlay { - background-blend-mode: overlay; + .lg\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .md\:bg-blend-darken { - background-blend-mode: darken; + .lg\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .md\:bg-blend-lighten { - background-blend-mode: lighten; + .lg\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .md\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .lg\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .md\:bg-blend-color-burn { - background-blend-mode: color-burn; + .lg\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .md\:bg-blend-hard-light { - background-blend-mode: hard-light; + .lg\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .md\:bg-blend-soft-light { - background-blend-mode: soft-light; + .lg\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .md\:bg-blend-difference { - background-blend-mode: difference; + .lg\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .md\:bg-blend-exclusion { - background-blend-mode: exclusion; + .lg\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .md\:bg-blend-hue { - background-blend-mode: hue; + .lg\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .md\:bg-blend-saturation { - background-blend-mode: saturation; + .lg\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .md\:bg-blend-color { - background-blend-mode: color; + .lg\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .md\:bg-blend-luminosity { - background-blend-mode: luminosity; + .lg\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .md\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .lg\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .md\:filter-none { - filter: none; + .lg\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .md\:blur-0 { - --tw-blur: blur(0); + .lg\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .md\:blur-sm { - --tw-blur: blur(4px); + .lg\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .md\:blur { - --tw-blur: blur(8px); + .lg\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .md\:blur-md { - --tw-blur: blur(12px); + .lg\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .md\:blur-lg { - --tw-blur: blur(16px); + .lg\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .md\:blur-xl { - --tw-blur: blur(24px); + .lg\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .md\:blur-2xl { - --tw-blur: blur(40px); + .lg\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .md\:blur-3xl { - --tw-blur: blur(64px); + .lg\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .md\:brightness-0 { - --tw-brightness: brightness(0); + .lg\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .md\:brightness-50 { - --tw-brightness: brightness(.5); + .lg\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .md\:brightness-75 { - --tw-brightness: brightness(.75); + .lg\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .md\:brightness-90 { - --tw-brightness: brightness(.9); + .lg\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .md\:brightness-95 { - --tw-brightness: brightness(.95); + .lg\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .md\:brightness-100 { - --tw-brightness: brightness(1); + .lg\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .md\:brightness-105 { - --tw-brightness: brightness(1.05); + .lg\:inset-y-0 { + top: 0px; + bottom: 0px; } - .md\:brightness-110 { - --tw-brightness: brightness(1.1); + .lg\:inset-x-0 { + right: 0px; + left: 0px; } - .md\:brightness-125 { - --tw-brightness: brightness(1.25); + .lg\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .md\:brightness-150 { - --tw-brightness: brightness(1.5); + .lg\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .md\:brightness-200 { - --tw-brightness: brightness(2); + .lg\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .md\:contrast-0 { - --tw-contrast: contrast(0); + .lg\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .md\:contrast-50 { - --tw-contrast: contrast(.5); + .lg\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .md\:contrast-75 { - --tw-contrast: contrast(.75); + .lg\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .md\:contrast-100 { - --tw-contrast: contrast(1); + .lg\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .md\:contrast-125 { - --tw-contrast: contrast(1.25); + .lg\:inset-x-4 { + right: 1rem; + left: 1rem; } - .md\:contrast-150 { - --tw-contrast: contrast(1.5); + .lg\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .md\:contrast-200 { - --tw-contrast: contrast(2); + .lg\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .md\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .lg\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .md\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .lg\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .md\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .lg\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .md\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .lg\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .md\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .lg\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .md\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .lg\:inset-x-8 { + right: 2rem; + left: 2rem; } - .md\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .lg\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .md\:grayscale-0 { - --tw-grayscale: grayscale(0); + .lg\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .md\:grayscale { - --tw-grayscale: grayscale(100%); + .lg\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .md\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .lg\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .md\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .lg\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .md\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .lg\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .md\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .lg\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .md\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .lg\:inset-x-12 { + right: 3rem; + left: 3rem; } - .md\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .lg\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .md\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .lg\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .md\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .lg\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .md\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .lg\:inset-x-16 { + right: 4rem; + left: 4rem; } - .md\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .lg\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .md\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .lg\:inset-x-20 { + right: 5rem; + left: 5rem; } - .md\:invert-0 { - --tw-invert: invert(0); + .lg\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .md\:invert { - --tw-invert: invert(100%); + .lg\:inset-x-24 { + right: 6rem; + left: 6rem; } - .md\:saturate-0 { - --tw-saturate: saturate(0); + .lg\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .md\:saturate-50 { - --tw-saturate: saturate(.5); + .lg\:inset-x-28 { + right: 7rem; + left: 7rem; } - .md\:saturate-100 { - --tw-saturate: saturate(1); + .lg\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .md\:saturate-150 { - --tw-saturate: saturate(1.5); + .lg\:inset-x-32 { + right: 8rem; + left: 8rem; } - .md\:saturate-200 { - --tw-saturate: saturate(2); + .lg\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .md\:sepia-0 { - --tw-sepia: sepia(0); + .lg\:inset-x-36 { + right: 9rem; + left: 9rem; } - .md\:sepia { - --tw-sepia: sepia(100%); + .lg\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .md\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .lg\:inset-x-40 { + right: 10rem; + left: 10rem; } - .md\:backdrop-filter-none { - backdrop-filter: none; + .lg\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .md\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .lg\:inset-x-44 { + right: 11rem; + left: 11rem; } - .md\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .lg\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .md\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .lg\:inset-x-48 { + right: 12rem; + left: 12rem; } - .md\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .lg\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .md\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .lg\:inset-x-52 { + right: 13rem; + left: 13rem; } - .md\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .lg\:inset-y-56 { + top: 14rem; + bottom: 14rem; } - .md\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .lg\:inset-x-56 { + right: 14rem; + left: 14rem; } - .md\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .lg\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - .md\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .lg\:inset-x-60 { + right: 15rem; + left: 15rem; } - .md\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .lg\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - .md\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .lg\:inset-x-64 { + right: 16rem; + left: 16rem; } - .md\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .lg\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .md\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .lg\:inset-x-72 { + right: 18rem; + left: 18rem; } - .md\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .lg\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .md\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .lg\:inset-x-80 { + right: 20rem; + left: 20rem; } - .md\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .lg\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .md\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .lg\:inset-x-96 { + right: 24rem; + left: 24rem; } - .md\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .lg\:inset-y-auto { + top: auto; + bottom: auto; } - .md\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .lg\:inset-x-auto { + right: auto; + left: auto; } - .md\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .lg\:inset-y-px { + top: 1px; + bottom: 1px; } - .md\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .lg\:inset-x-px { + right: 1px; + left: 1px; } - .md\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .lg\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .md\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .lg\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .md\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .lg\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .md\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .lg\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .md\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .lg\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .md\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .lg\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .md\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .lg\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .md\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .lg\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .md\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .lg\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .md\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .lg\:-inset-x-0 { + right: 0px; + left: 0px; } - .md\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .lg\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .md\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .lg\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .md\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .lg\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .md\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .lg\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .md\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .lg\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .md\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .lg\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .md\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .lg\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .md\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .lg\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .md\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .lg\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .md\:example { - font-weight: 700; - color: #ef4444; + .lg\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } -} -@media (min-width: 1024px) { - .lg\:container { - width: 100%; + .lg\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - @media (min-width: 640px) { - .lg\:container { - max-width: 640px; - } + .lg\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - @media (min-width: 768px) { - .lg\:container { - max-width: 768px; - } + .lg\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - @media (min-width: 1024px) { - .lg\:container { - max-width: 1024px; - } + .lg\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - @media (min-width: 1280px) { - .lg\:container { - max-width: 1280px; - } + .lg\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - @media (min-width: 1536px) { - .lg\:container { - max-width: 1536px; - } + .lg\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .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\:right-6 { + right: 1.5rem; } - .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\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .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\:right-9 { + right: 2.25rem; } - .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\:bottom-9 { + bottom: 2.25rem; } - .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\:left-9 { + left: 2.25rem; } - .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\:top-10 { + top: 2.5rem; } - .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\:right-10 { + right: 2.5rem; } - .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\:bottom-10 { + bottom: 2.5rem; } - .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\:left-10 { + left: 2.5rem; } - .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\:top-11 { + top: 2.75rem; } - .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\:right-11 { + right: 2.75rem; } - .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\:bottom-11 { + bottom: 2.75rem; } - .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\:left-11 { + left: 2.75rem; } - .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\:top-12 { + top: 3rem; } - .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\:right-12 { + right: 3rem; } - .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\:bottom-12 { + bottom: 3rem; } - .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\:left-12 { + left: 3rem; } - .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\:top-14 { + top: 3.5rem; } - .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\:right-14 { + right: 3.5rem; } - .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\:bottom-14 { + bottom: 3.5rem; } - .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\:left-14 { + left: 3.5rem; } - .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\:top-16 { + top: 4rem; } - .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\:right-16 { + right: 4rem; } - .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\:bottom-16 { + bottom: 4rem; } - .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\:left-16 { + left: 4rem; } - .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .lg\:top-20 { + top: 5rem; } - .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .lg\:right-20 { + right: 5rem; } - .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\:bottom-20 { + bottom: 5rem; } - .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\:left-20 { + left: 5rem; } - .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\:top-24 { + top: 6rem; } - .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\:right-24 { + right: 6rem; } - .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\:bottom-24 { + bottom: 6rem; } - .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\:left-24 { + left: 6rem; } - .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\:top-28 { + top: 7rem; } - .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\:right-28 { + right: 7rem; } - .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\:bottom-28 { + bottom: 7rem; } - .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\:left-28 { + left: 7rem; } - .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .lg\:top-32 { + top: 8rem; } - .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .lg\:right-32 { + right: 8rem; } - .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .lg\:bottom-32 { + bottom: 8rem; } - .lg\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .lg\:left-32 { + left: 8rem; } - .lg\:divide-black > :not([hidden]) ~ :not([hidden]) { - border-color: #000; + .lg\:top-36 { + top: 9rem; } - .lg\:divide-white > :not([hidden]) ~ :not([hidden]) { - border-color: #fff; + .lg\:right-36 { + right: 9rem; } - .lg\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9fafb; + .lg\:bottom-36 { + bottom: 9rem; } - .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #f3f4f6; + .lg\:left-36 { + left: 9rem; } - .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #e5e7eb; + .lg\:top-40 { + top: 10rem; } - .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1d5db; + .lg\:right-40 { + right: 10rem; } - .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #9ca3af; + .lg\:bottom-40 { + bottom: 10rem; } - .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6b7280; + .lg\:left-40 { + left: 10rem; } - .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4b5563; + .lg\:top-44 { + top: 11rem; } - .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #374151; + .lg\:right-44 { + right: 11rem; } - .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1f2937; + .lg\:bottom-44 { + bottom: 11rem; } - .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #111827; + .lg\:left-44 { + left: 11rem; } - .lg\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef2f2; + .lg\:top-48 { + top: 12rem; } - .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fee2e2; + .lg\:right-48 { + right: 12rem; } - .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fecaca; + .lg\:bottom-48 { + bottom: 12rem; } - .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fca5a5; + .lg\:left-48 { + left: 12rem; } - .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f87171; + .lg\:top-52 { + top: 13rem; } - .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ef4444; + .lg\:right-52 { + right: 13rem; } - .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #dc2626; + .lg\:bottom-52 { + bottom: 13rem; } - .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b91c1c; + .lg\:left-52 { + left: 13rem; } - .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #991b1b; + .lg\:top-56 { + top: 14rem; } - .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #7f1d1d; + .lg\:right-56 { + right: 14rem; } - .lg\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fffbeb; + .lg\:bottom-56 { + bottom: 14rem; } - .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef3c7; + .lg\:left-56 { + left: 14rem; } - .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fde68a; + .lg\:top-60 { + top: 15rem; } - .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fcd34d; + .lg\:right-60 { + right: 15rem; } - .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbbf24; + .lg\:bottom-60 { + bottom: 15rem; } - .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #f59e0b; + .lg\:left-60 { + left: 15rem; } - .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #d97706; + .lg\:top-64 { + top: 16rem; } - .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b45309; + .lg\:right-64 { + right: 16rem; } - .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #92400e; + .lg\:bottom-64 { + bottom: 16rem; } - .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #78350f; + .lg\:left-64 { + left: 16rem; } - .lg\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #ecfdf5; + .lg\:top-72 { + top: 18rem; } - .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1fae5; + .lg\:right-72 { + right: 18rem; } - .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #a7f3d0; + .lg\:bottom-72 { + bottom: 18rem; } - .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #6ee7b7; + .lg\:left-72 { + left: 18rem; } - .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #34d399; + .lg\:top-80 { + top: 20rem; } - .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #10b981; + .lg\:right-80 { + right: 20rem; } - .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #059669; + .lg\:bottom-80 { + bottom: 20rem; } - .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #047857; + .lg\:left-80 { + left: 20rem; } - .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #065f46; + .lg\:top-96 { + top: 24rem; } - .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #064e3b; + .lg\:right-96 { + right: 24rem; } - .lg\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eff6ff; + .lg\:bottom-96 { + bottom: 24rem; } - .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #dbeafe; + .lg\:left-96 { + left: 24rem; } - .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #bfdbfe; + .lg\:top-auto { + top: auto; } - .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #93c5fd; + .lg\:right-auto { + right: auto; } - .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #60a5fa; + .lg\:bottom-auto { + bottom: auto; } - .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #3b82f6; + .lg\:left-auto { + left: auto; } - .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #2563eb; + .lg\:top-px { + top: 1px; } - .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #1d4ed8; + .lg\:right-px { + right: 1px; } - .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e40af; + .lg\:bottom-px { + bottom: 1px; } - .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e3a8a; + .lg\:left-px { + left: 1px; } - .lg\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eef2ff; + .lg\:top-0\.5 { + top: 0.125rem; } - .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #e0e7ff; + .lg\:right-0\.5 { + right: 0.125rem; } - .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #c7d2fe; + .lg\:bottom-0\.5 { + bottom: 0.125rem; + } + + .lg\:left-0\.5 { + left: 0.125rem; } - .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #a5b4fc; + .lg\:top-1\.5 { + top: 0.375rem; } - .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #818cf8; + .lg\:right-1\.5 { + right: 0.375rem; } - .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6366f1; + .lg\:bottom-1\.5 { + bottom: 0.375rem; } - .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4f46e5; + .lg\:left-1\.5 { + left: 0.375rem; } - .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #4338ca; + .lg\:top-2\.5 { + top: 0.625rem; } - .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #3730a3; + .lg\:right-2\.5 { + right: 0.625rem; } - .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #312e81; + .lg\:bottom-2\.5 { + bottom: 0.625rem; } - .lg\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f5f3ff; + .lg\:left-2\.5 { + left: 0.625rem; } - .lg\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #ede9fe; + .lg\:top-3\.5 { + top: 0.875rem; } - .lg\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #ddd6fe; + .lg\:right-3\.5 { + right: 0.875rem; } - .lg\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #c4b5fd; + .lg\:bottom-3\.5 { + bottom: 0.875rem; } - .lg\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #a78bfa; + .lg\:left-3\.5 { + left: 0.875rem; } - .lg\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #8b5cf6; + .lg\:-top-0 { + top: 0px; } - .lg\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #7c3aed; + .lg\:-right-0 { + right: 0px; } - .lg\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #6d28d9; + .lg\:-bottom-0 { + bottom: 0px; } - .lg\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #5b21b6; + .lg\:-left-0 { + left: 0px; } - .lg\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #4c1d95; + .lg\:-top-1 { + top: -0.25rem; } - .lg\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fdf2f8; + .lg\:-right-1 { + right: -0.25rem; } - .lg\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fce7f3; + .lg\:-bottom-1 { + bottom: -0.25rem; } - .lg\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbcfe8; + .lg\:-left-1 { + left: -0.25rem; } - .lg\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9a8d4; + .lg\:-top-2 { + top: -0.5rem; } - .lg\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f472b6; + .lg\:-right-2 { + right: -0.5rem; } - .lg\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ec4899; + .lg\:-bottom-2 { + bottom: -0.5rem; } - .lg\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #db2777; + .lg\:-left-2 { + left: -0.5rem; } - .lg\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #be185d; + .lg\:-top-3 { + top: -0.75rem; } - .lg\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #9d174d; + .lg\:-right-3 { + right: -0.75rem; } - .lg\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #831843; + .lg\:-bottom-3 { + bottom: -0.75rem; } - .lg\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .lg\:-left-3 { + left: -0.75rem; } - .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .lg\:-top-4 { + top: -1rem; } - .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .lg\:-right-4 { + right: -1rem; } - .lg\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .lg\:-bottom-4 { + bottom: -1rem; } - .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .lg\:-left-4 { + left: -1rem; } - .lg\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .lg\:-top-5 { + top: -1.25rem; } - .lg\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .lg\:-right-5 { + right: -1.25rem; } - .lg\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .lg\:-bottom-5 { + bottom: -1.25rem; } - .lg\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .lg\:-left-5 { + left: -1.25rem; } - .lg\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .lg\:-top-6 { + top: -1.5rem; } - .lg\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .lg\:-right-6 { + right: -1.5rem; } - .lg\:appearance-none { - appearance: none; + .lg\:-bottom-6 { + bottom: -1.5rem; } - .lg\:bg-fixed { - background-attachment: fixed; + .lg\:-left-6 { + left: -1.5rem; } - .lg\:bg-local { - background-attachment: local; + .lg\:-top-7 { + top: -1.75rem; } - .lg\:bg-scroll { - background-attachment: scroll; + .lg\:-right-7 { + right: -1.75rem; } - .lg\:bg-clip-border { - background-clip: border-box; + .lg\:-bottom-7 { + bottom: -1.75rem; } - .lg\:bg-clip-padding { - background-clip: padding-box; + .lg\:-left-7 { + left: -1.75rem; } - .lg\:bg-clip-content { - background-clip: content-box; + .lg\:-top-8 { + top: -2rem; } - .lg\:bg-clip-text { - background-clip: text; + .lg\:-right-8 { + right: -2rem; } - .lg\:bg-transparent { - background-color: transparent; + .lg\:-bottom-8 { + bottom: -2rem; } - .lg\:bg-current { - background-color: currentColor; + .lg\:-left-8 { + left: -2rem; } - .lg\:bg-black { - background-color: #000; + .lg\:-top-9 { + top: -2.25rem; } - .lg\:bg-white { - background-color: #fff; + .lg\:-right-9 { + right: -2.25rem; } - .lg\:bg-gray-50 { - background-color: #f9fafb; + .lg\:-bottom-9 { + bottom: -2.25rem; } - .lg\:bg-gray-100 { - background-color: #f3f4f6; + .lg\:-left-9 { + left: -2.25rem; } - .lg\:bg-gray-200 { - background-color: #e5e7eb; + .lg\:-top-10 { + top: -2.5rem; } - .lg\:bg-gray-300 { - background-color: #d1d5db; + .lg\:-right-10 { + right: -2.5rem; } - .lg\:bg-gray-400 { - background-color: #9ca3af; + .lg\:-bottom-10 { + bottom: -2.5rem; } - .lg\:bg-gray-500 { - background-color: #6b7280; + .lg\:-left-10 { + left: -2.5rem; } - .lg\:bg-gray-600 { - background-color: #4b5563; + .lg\:-top-11 { + top: -2.75rem; } - .lg\:bg-gray-700 { - background-color: #374151; + .lg\:-right-11 { + right: -2.75rem; } - .lg\:bg-gray-800 { - background-color: #1f2937; + .lg\:-bottom-11 { + bottom: -2.75rem; } - .lg\:bg-gray-900 { - background-color: #111827; + .lg\:-left-11 { + left: -2.75rem; } - .lg\:bg-red-50 { - background-color: #fef2f2; + .lg\:-top-12 { + top: -3rem; } - .lg\:bg-red-100 { - background-color: #fee2e2; + .lg\:-right-12 { + right: -3rem; } - .lg\:bg-red-200 { - background-color: #fecaca; + .lg\:-bottom-12 { + bottom: -3rem; } - .lg\:bg-red-300 { - background-color: #fca5a5; + .lg\:-left-12 { + left: -3rem; } - .lg\:bg-red-400 { - background-color: #f87171; + .lg\:-top-14 { + top: -3.5rem; } - .lg\:bg-red-500 { - background-color: #ef4444; + .lg\:-right-14 { + right: -3.5rem; } - .lg\:bg-red-600 { - background-color: #dc2626; + .lg\:-bottom-14 { + bottom: -3.5rem; } - .lg\:bg-red-700 { - background-color: #b91c1c; + .lg\:-left-14 { + left: -3.5rem; } - .lg\:bg-red-800 { - background-color: #991b1b; + .lg\:-top-16 { + top: -4rem; } - .lg\:bg-red-900 { - background-color: #7f1d1d; + .lg\:-right-16 { + right: -4rem; } - .lg\:bg-yellow-50 { - background-color: #fffbeb; + .lg\:-bottom-16 { + bottom: -4rem; } - .lg\:bg-yellow-100 { - background-color: #fef3c7; + .lg\:-left-16 { + left: -4rem; } - .lg\:bg-yellow-200 { - background-color: #fde68a; + .lg\:-top-20 { + top: -5rem; } - .lg\:bg-yellow-300 { - background-color: #fcd34d; + .lg\:-right-20 { + right: -5rem; } - .lg\:bg-yellow-400 { - background-color: #fbbf24; + .lg\:-bottom-20 { + bottom: -5rem; } - .lg\:bg-yellow-500 { - background-color: #f59e0b; + .lg\:-left-20 { + left: -5rem; } - .lg\:bg-yellow-600 { - background-color: #d97706; + .lg\:-top-24 { + top: -6rem; } - .lg\:bg-yellow-700 { - background-color: #b45309; + .lg\:-right-24 { + right: -6rem; } - .lg\:bg-yellow-800 { - background-color: #92400e; + .lg\:-bottom-24 { + bottom: -6rem; } - .lg\:bg-yellow-900 { - background-color: #78350f; + .lg\:-left-24 { + left: -6rem; } - .lg\:bg-green-50 { - background-color: #ecfdf5; + .lg\:-top-28 { + top: -7rem; } - .lg\:bg-green-100 { - background-color: #d1fae5; + .lg\:-right-28 { + right: -7rem; } - .lg\:bg-green-200 { - background-color: #a7f3d0; + .lg\:-bottom-28 { + bottom: -7rem; } - .lg\:bg-green-300 { - background-color: #6ee7b7; + .lg\:-left-28 { + left: -7rem; } - .lg\:bg-green-400 { - background-color: #34d399; + .lg\:-top-32 { + top: -8rem; } - .lg\:bg-green-500 { - background-color: #10b981; + .lg\:-right-32 { + right: -8rem; } - .lg\:bg-green-600 { - background-color: #059669; + .lg\:-bottom-32 { + bottom: -8rem; } - .lg\:bg-green-700 { - background-color: #047857; + .lg\:-left-32 { + left: -8rem; } - .lg\:bg-green-800 { - background-color: #065f46; + .lg\:-top-36 { + top: -9rem; } - .lg\:bg-green-900 { - background-color: #064e3b; + .lg\:-right-36 { + right: -9rem; } - .lg\:bg-blue-50 { - background-color: #eff6ff; + .lg\:-bottom-36 { + bottom: -9rem; } - .lg\:bg-blue-100 { - background-color: #dbeafe; + .lg\:-left-36 { + left: -9rem; } - .lg\:bg-blue-200 { - background-color: #bfdbfe; + .lg\:-top-40 { + top: -10rem; } - .lg\:bg-blue-300 { - background-color: #93c5fd; + .lg\:-right-40 { + right: -10rem; } - .lg\:bg-blue-400 { - background-color: #60a5fa; + .lg\:-bottom-40 { + bottom: -10rem; } - .lg\:bg-blue-500 { - background-color: #3b82f6; + .lg\:-left-40 { + left: -10rem; } - .lg\:bg-blue-600 { - background-color: #2563eb; + .lg\:-top-44 { + top: -11rem; } - .lg\:bg-blue-700 { - background-color: #1d4ed8; + .lg\:-right-44 { + right: -11rem; } - .lg\:bg-blue-800 { - background-color: #1e40af; + .lg\:-bottom-44 { + bottom: -11rem; } - .lg\:bg-blue-900 { - background-color: #1e3a8a; + .lg\:-left-44 { + left: -11rem; } - .lg\:bg-indigo-50 { - background-color: #eef2ff; + .lg\:-top-48 { + top: -12rem; } - .lg\:bg-indigo-100 { - background-color: #e0e7ff; + .lg\:-right-48 { + right: -12rem; } - .lg\:bg-indigo-200 { - background-color: #c7d2fe; + .lg\:-bottom-48 { + bottom: -12rem; } - .lg\:bg-indigo-300 { - background-color: #a5b4fc; + .lg\:-left-48 { + left: -12rem; } - .lg\:bg-indigo-400 { - background-color: #818cf8; + .lg\:-top-52 { + top: -13rem; } - .lg\:bg-indigo-500 { - background-color: #6366f1; + .lg\:-right-52 { + right: -13rem; } - .lg\:bg-indigo-600 { - background-color: #4f46e5; + .lg\:-bottom-52 { + bottom: -13rem; } - .lg\:bg-indigo-700 { - background-color: #4338ca; + .lg\:-left-52 { + left: -13rem; } - .lg\:bg-indigo-800 { - background-color: #3730a3; + .lg\:-top-56 { + top: -14rem; } - .lg\:bg-indigo-900 { - background-color: #312e81; + .lg\:-right-56 { + right: -14rem; } - .lg\:bg-purple-50 { - background-color: #f5f3ff; + .lg\:-bottom-56 { + bottom: -14rem; } - .lg\:bg-purple-100 { - background-color: #ede9fe; + .lg\:-left-56 { + left: -14rem; } - .lg\:bg-purple-200 { - background-color: #ddd6fe; + .lg\:-top-60 { + top: -15rem; } - .lg\:bg-purple-300 { - background-color: #c4b5fd; + .lg\:-right-60 { + right: -15rem; } - .lg\:bg-purple-400 { - background-color: #a78bfa; + .lg\:-bottom-60 { + bottom: -15rem; } - .lg\:bg-purple-500 { - background-color: #8b5cf6; + .lg\:-left-60 { + left: -15rem; } - .lg\:bg-purple-600 { - background-color: #7c3aed; + .lg\:-top-64 { + top: -16rem; } - .lg\:bg-purple-700 { - background-color: #6d28d9; + .lg\:-right-64 { + right: -16rem; } - .lg\:bg-purple-800 { - background-color: #5b21b6; + .lg\:-bottom-64 { + bottom: -16rem; } - .lg\:bg-purple-900 { - background-color: #4c1d95; + .lg\:-left-64 { + left: -16rem; } - .lg\:bg-pink-50 { - background-color: #fdf2f8; + .lg\:-top-72 { + top: -18rem; } - .lg\:bg-pink-100 { - background-color: #fce7f3; + .lg\:-right-72 { + right: -18rem; } - .lg\:bg-pink-200 { - background-color: #fbcfe8; + .lg\:-bottom-72 { + bottom: -18rem; } - .lg\:bg-pink-300 { - background-color: #f9a8d4; + .lg\:-left-72 { + left: -18rem; } - .lg\:bg-pink-400 { - background-color: #f472b6; + .lg\:-top-80 { + top: -20rem; } - .lg\:bg-pink-500 { - background-color: #ec4899; + .lg\:-right-80 { + right: -20rem; } - .lg\:bg-pink-600 { - background-color: #db2777; + .lg\:-bottom-80 { + bottom: -20rem; } - .lg\:bg-pink-700 { - background-color: #be185d; + .lg\:-left-80 { + left: -20rem; } - .lg\:bg-pink-800 { - background-color: #9d174d; + .lg\:-top-96 { + top: -24rem; } - .lg\:bg-pink-900 { - background-color: #831843; + .lg\:-right-96 { + right: -24rem; } - .group:hover .lg\:group-hover\:bg-transparent { - background-color: transparent; + .lg\:-bottom-96 { + bottom: -24rem; } - .group:hover .lg\:group-hover\:bg-current { - background-color: currentColor; + .lg\:-left-96 { + left: -24rem; } - .group:hover .lg\:group-hover\:bg-black { - background-color: #000; + .lg\:-top-px { + top: -1px; } - .group:hover .lg\:group-hover\:bg-white { - background-color: #fff; + .lg\:-right-px { + right: -1px; } - .group:hover .lg\:group-hover\:bg-gray-50 { - background-color: #f9fafb; + .lg\:-bottom-px { + bottom: -1px; } - .group:hover .lg\:group-hover\:bg-gray-100 { - background-color: #f3f4f6; + .lg\:-left-px { + left: -1px; } - .group:hover .lg\:group-hover\:bg-gray-200 { - background-color: #e5e7eb; + .lg\:-top-0\.5 { + top: -0.125rem; } - .group:hover .lg\:group-hover\:bg-gray-300 { - background-color: #d1d5db; + .lg\:-right-0\.5 { + right: -0.125rem; } - .group:hover .lg\:group-hover\:bg-gray-400 { - background-color: #9ca3af; + .lg\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .lg\:group-hover\:bg-gray-500 { - background-color: #6b7280; + .lg\:-left-0\.5 { + left: -0.125rem; } - .group:hover .lg\:group-hover\:bg-gray-600 { - background-color: #4b5563; + .lg\:-top-1\.5 { + top: -0.375rem; } - .group:hover .lg\:group-hover\:bg-gray-700 { - background-color: #374151; + .lg\:-right-1\.5 { + right: -0.375rem; } - .group:hover .lg\:group-hover\:bg-gray-800 { - background-color: #1f2937; + .lg\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .lg\:group-hover\:bg-gray-900 { - background-color: #111827; + .lg\:-left-1\.5 { + left: -0.375rem; } - .group:hover .lg\:group-hover\:bg-red-50 { - background-color: #fef2f2; + .lg\:-top-2\.5 { + top: -0.625rem; } - .group:hover .lg\:group-hover\:bg-red-100 { - background-color: #fee2e2; + .lg\:-right-2\.5 { + right: -0.625rem; } - .group:hover .lg\:group-hover\:bg-red-200 { - background-color: #fecaca; + .lg\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .lg\:group-hover\:bg-red-300 { - background-color: #fca5a5; + .lg\:-left-2\.5 { + left: -0.625rem; } - .group:hover .lg\:group-hover\:bg-red-400 { - background-color: #f87171; + .lg\:-top-3\.5 { + top: -0.875rem; } - .group:hover .lg\:group-hover\:bg-red-500 { - background-color: #ef4444; + .lg\:-right-3\.5 { + right: -0.875rem; } - .group:hover .lg\:group-hover\:bg-red-600 { - background-color: #dc2626; + .lg\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .lg\:group-hover\:bg-red-700 { - background-color: #b91c1c; + .lg\:-left-3\.5 { + left: -0.875rem; } - .group:hover .lg\:group-hover\:bg-red-800 { - background-color: #991b1b; + .lg\:top-1\/2 { + top: 50%; } - .group:hover .lg\:group-hover\:bg-red-900 { - background-color: #7f1d1d; + .lg\:right-1\/2 { + right: 50%; } - .group:hover .lg\:group-hover\:bg-yellow-50 { - background-color: #fffbeb; + .lg\:bottom-1\/2 { + bottom: 50%; } - .group:hover .lg\:group-hover\:bg-yellow-100 { - background-color: #fef3c7; + .lg\:left-1\/2 { + left: 50%; } - .group:hover .lg\:group-hover\:bg-yellow-200 { - background-color: #fde68a; + .lg\:top-1\/3 { + top: 33.333333%; } - .group:hover .lg\:group-hover\:bg-yellow-300 { - background-color: #fcd34d; + .lg\:right-1\/3 { + right: 33.333333%; } - .group:hover .lg\:group-hover\:bg-yellow-400 { - background-color: #fbbf24; + .lg\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .lg\:group-hover\:bg-yellow-500 { - background-color: #f59e0b; + .lg\:left-1\/3 { + left: 33.333333%; } - .group:hover .lg\:group-hover\:bg-yellow-600 { - background-color: #d97706; + .lg\:top-2\/3 { + top: 66.666667%; } - .group:hover .lg\:group-hover\:bg-yellow-700 { - background-color: #b45309; + .lg\:right-2\/3 { + right: 66.666667%; } - .group:hover .lg\:group-hover\:bg-yellow-800 { - background-color: #92400e; + .lg\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .lg\:group-hover\:bg-yellow-900 { - background-color: #78350f; + .lg\:left-2\/3 { + left: 66.666667%; } - .group:hover .lg\:group-hover\:bg-green-50 { - background-color: #ecfdf5; + .lg\:top-1\/4 { + top: 25%; } - .group:hover .lg\:group-hover\:bg-green-100 { - background-color: #d1fae5; + .lg\:right-1\/4 { + right: 25%; } - .group:hover .lg\:group-hover\:bg-green-200 { - background-color: #a7f3d0; + .lg\:bottom-1\/4 { + bottom: 25%; } - .group:hover .lg\:group-hover\:bg-green-300 { - background-color: #6ee7b7; + .lg\:left-1\/4 { + left: 25%; } - .group:hover .lg\:group-hover\:bg-green-400 { - background-color: #34d399; + .lg\:top-2\/4 { + top: 50%; } - .group:hover .lg\:group-hover\:bg-green-500 { - background-color: #10b981; + .lg\:right-2\/4 { + right: 50%; } - .group:hover .lg\:group-hover\:bg-green-600 { - background-color: #059669; + .lg\:bottom-2\/4 { + bottom: 50%; } - .group:hover .lg\:group-hover\:bg-green-700 { - background-color: #047857; + .lg\:left-2\/4 { + left: 50%; } - .group:hover .lg\:group-hover\:bg-green-800 { - background-color: #065f46; + .lg\:top-3\/4 { + top: 75%; } - .group:hover .lg\:group-hover\:bg-green-900 { - background-color: #064e3b; + .lg\:right-3\/4 { + right: 75%; } - .group:hover .lg\:group-hover\:bg-blue-50 { - background-color: #eff6ff; + .lg\:bottom-3\/4 { + bottom: 75%; } - .group:hover .lg\:group-hover\:bg-blue-100 { - background-color: #dbeafe; + .lg\:left-3\/4 { + left: 75%; } - .group:hover .lg\:group-hover\:bg-blue-200 { - background-color: #bfdbfe; + .lg\:top-full { + top: 100%; } - .group:hover .lg\:group-hover\:bg-blue-300 { - background-color: #93c5fd; + .lg\:right-full { + right: 100%; } - .group:hover .lg\:group-hover\:bg-blue-400 { - background-color: #60a5fa; + .lg\:bottom-full { + bottom: 100%; } - .group:hover .lg\:group-hover\:bg-blue-500 { - background-color: #3b82f6; + .lg\:left-full { + left: 100%; } - .group:hover .lg\:group-hover\:bg-blue-600 { - background-color: #2563eb; + .lg\:-top-1\/2 { + top: -50%; } - .group:hover .lg\:group-hover\:bg-blue-700 { - background-color: #1d4ed8; + .lg\:-right-1\/2 { + right: -50%; } - .group:hover .lg\:group-hover\:bg-blue-800 { - background-color: #1e40af; + .lg\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .lg\:group-hover\:bg-blue-900 { - background-color: #1e3a8a; + .lg\:-left-1\/2 { + left: -50%; } - .group:hover .lg\:group-hover\:bg-indigo-50 { - background-color: #eef2ff; + .lg\:-top-1\/3 { + top: -33.333333%; } - .group:hover .lg\:group-hover\:bg-indigo-100 { - background-color: #e0e7ff; + .lg\:-right-1\/3 { + right: -33.333333%; } - .group:hover .lg\:group-hover\:bg-indigo-200 { - background-color: #c7d2fe; + .lg\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .lg\:group-hover\:bg-indigo-300 { - background-color: #a5b4fc; + .lg\:-left-1\/3 { + left: -33.333333%; } - .group:hover .lg\:group-hover\:bg-indigo-400 { - background-color: #818cf8; + .lg\:-top-2\/3 { + top: -66.666667%; } - .group:hover .lg\:group-hover\:bg-indigo-500 { - background-color: #6366f1; + .lg\:-right-2\/3 { + right: -66.666667%; } - .group:hover .lg\:group-hover\:bg-indigo-600 { - background-color: #4f46e5; + .lg\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .lg\:group-hover\:bg-indigo-700 { - background-color: #4338ca; + .lg\:-left-2\/3 { + left: -66.666667%; } - .group:hover .lg\:group-hover\:bg-indigo-800 { - background-color: #3730a3; + .lg\:-top-1\/4 { + top: -25%; } - .group:hover .lg\:group-hover\:bg-indigo-900 { - background-color: #312e81; + .lg\:-right-1\/4 { + right: -25%; } - .group:hover .lg\:group-hover\:bg-purple-50 { - background-color: #f5f3ff; + .lg\:-bottom-1\/4 { + bottom: -25%; } - .group:hover .lg\:group-hover\:bg-purple-100 { - background-color: #ede9fe; + .lg\:-left-1\/4 { + left: -25%; } - .group:hover .lg\:group-hover\:bg-purple-200 { - background-color: #ddd6fe; + .lg\:-top-2\/4 { + top: -50%; } - .group:hover .lg\:group-hover\:bg-purple-300 { - background-color: #c4b5fd; + .lg\:-right-2\/4 { + right: -50%; } - .group:hover .lg\:group-hover\:bg-purple-400 { - background-color: #a78bfa; + .lg\:-bottom-2\/4 { + bottom: -50%; } - .group:hover .lg\:group-hover\:bg-purple-500 { - background-color: #8b5cf6; + .lg\:-left-2\/4 { + left: -50%; } - .group:hover .lg\:group-hover\:bg-purple-600 { - background-color: #7c3aed; + .lg\:-top-3\/4 { + top: -75%; } - .group:hover .lg\:group-hover\:bg-purple-700 { - background-color: #6d28d9; + .lg\:-right-3\/4 { + right: -75%; } - .group:hover .lg\:group-hover\:bg-purple-800 { - background-color: #5b21b6; + .lg\:-bottom-3\/4 { + bottom: -75%; } - .group:hover .lg\:group-hover\:bg-purple-900 { - background-color: #4c1d95; + .lg\:-left-3\/4 { + left: -75%; } - .group:hover .lg\:group-hover\:bg-pink-50 { - background-color: #fdf2f8; + .lg\:-top-full { + top: -100%; } - .group:hover .lg\:group-hover\:bg-pink-100 { - background-color: #fce7f3; + .lg\:-right-full { + right: -100%; } - .group:hover .lg\:group-hover\:bg-pink-200 { - background-color: #fbcfe8; + .lg\:-bottom-full { + bottom: -100%; } - .group:hover .lg\:group-hover\:bg-pink-300 { - background-color: #f9a8d4; + .lg\:-left-full { + left: -100%; } - .group:hover .lg\:group-hover\:bg-pink-400 { - background-color: #f472b6; + .lg\:isolate { + isolation: isolate; } - .group:hover .lg\:group-hover\:bg-pink-500 { - background-color: #ec4899; + .lg\:isolation-auto { + isolation: auto; } - .group:hover .lg\:group-hover\:bg-pink-600 { - background-color: #db2777; + .lg\:z-0 { + z-index: 0; } - .group:hover .lg\:group-hover\:bg-pink-700 { - background-color: #be185d; + .lg\:z-10 { + z-index: 10; } - .group:hover .lg\:group-hover\:bg-pink-800 { - background-color: #9d174d; + .lg\:z-20 { + z-index: 20; } - .group:hover .lg\:group-hover\:bg-pink-900 { - background-color: #831843; + .lg\:z-30 { + z-index: 30; } - .lg\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .lg\:z-40 { + z-index: 40; } - .lg\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .lg\:z-50 { + z-index: 50; } - .lg\:focus-within\:bg-black:focus-within { - background-color: #000; + .lg\:z-auto { + z-index: auto; } - .lg\:focus-within\:bg-white:focus-within { - background-color: #fff; + .lg\:focus-within\:z-0:focus-within { + z-index: 0; } - .lg\:focus-within\:bg-gray-50:focus-within { - background-color: #f9fafb; + .lg\:focus-within\:z-10:focus-within { + z-index: 10; } - .lg\:focus-within\:bg-gray-100:focus-within { - background-color: #f3f4f6; + .lg\:focus-within\:z-20:focus-within { + z-index: 20; } - .lg\:focus-within\:bg-gray-200:focus-within { - background-color: #e5e7eb; + .lg\:focus-within\:z-30:focus-within { + z-index: 30; } - .lg\:focus-within\:bg-gray-300:focus-within { - background-color: #d1d5db; + .lg\:focus-within\:z-40:focus-within { + z-index: 40; } - .lg\:focus-within\:bg-gray-400:focus-within { - background-color: #9ca3af; + .lg\:focus-within\:z-50:focus-within { + z-index: 50; } - .lg\:focus-within\:bg-gray-500:focus-within { - background-color: #6b7280; + .lg\:focus-within\:z-auto:focus-within { + z-index: auto; } - .lg\:focus-within\:bg-gray-600:focus-within { - background-color: #4b5563; + .lg\:focus\:z-0:focus { + z-index: 0; } - .lg\:focus-within\:bg-gray-700:focus-within { - background-color: #374151; + .lg\:focus\:z-10:focus { + z-index: 10; } - .lg\:focus-within\:bg-gray-800:focus-within { - background-color: #1f2937; + .lg\:focus\:z-20:focus { + z-index: 20; } - .lg\:focus-within\:bg-gray-900:focus-within { - background-color: #111827; + .lg\:focus\:z-30:focus { + z-index: 30; } - .lg\:focus-within\:bg-red-50:focus-within { - background-color: #fef2f2; + .lg\:focus\:z-40:focus { + z-index: 40; } - .lg\:focus-within\:bg-red-100:focus-within { - background-color: #fee2e2; + .lg\:focus\:z-50:focus { + z-index: 50; } - .lg\:focus-within\:bg-red-200:focus-within { - background-color: #fecaca; + .lg\:focus\:z-auto:focus { + z-index: auto; } - .lg\:focus-within\:bg-red-300:focus-within { - background-color: #fca5a5; + .lg\:order-1 { + order: 1; } - .lg\:focus-within\:bg-red-400:focus-within { - background-color: #f87171; + .lg\:order-2 { + order: 2; } - .lg\:focus-within\:bg-red-500:focus-within { - background-color: #ef4444; + .lg\:order-3 { + order: 3; } - .lg\:focus-within\:bg-red-600:focus-within { - background-color: #dc2626; + .lg\:order-4 { + order: 4; } - .lg\:focus-within\:bg-red-700:focus-within { - background-color: #b91c1c; + .lg\:order-5 { + order: 5; } - .lg\:focus-within\:bg-red-800:focus-within { - background-color: #991b1b; + .lg\:order-6 { + order: 6; } - .lg\:focus-within\:bg-red-900:focus-within { - background-color: #7f1d1d; + .lg\:order-7 { + order: 7; } - .lg\:focus-within\:bg-yellow-50:focus-within { - background-color: #fffbeb; + .lg\:order-8 { + order: 8; } - .lg\:focus-within\:bg-yellow-100:focus-within { - background-color: #fef3c7; + .lg\:order-9 { + order: 9; } - .lg\:focus-within\:bg-yellow-200:focus-within { - background-color: #fde68a; + .lg\:order-10 { + order: 10; } - .lg\:focus-within\:bg-yellow-300:focus-within { - background-color: #fcd34d; + .lg\:order-11 { + order: 11; } - .lg\:focus-within\:bg-yellow-400:focus-within { - background-color: #fbbf24; + .lg\:order-12 { + order: 12; } - .lg\:focus-within\:bg-yellow-500:focus-within { - background-color: #f59e0b; + .lg\:order-first { + order: -9999; } - .lg\:focus-within\:bg-yellow-600:focus-within { - background-color: #d97706; + .lg\:order-last { + order: 9999; } - .lg\:focus-within\:bg-yellow-700:focus-within { - background-color: #b45309; + .lg\:order-none { + order: 0; } - .lg\:focus-within\:bg-yellow-800:focus-within { - background-color: #92400e; + .lg\:col-auto { + grid-column: auto; } - .lg\:focus-within\:bg-yellow-900:focus-within { - background-color: #78350f; + .lg\:col-span-1 { + grid-column: span 1 / span 1; } - .lg\:focus-within\:bg-green-50:focus-within { - background-color: #ecfdf5; + .lg\:col-span-2 { + grid-column: span 2 / span 2; } - .lg\:focus-within\:bg-green-100:focus-within { - background-color: #d1fae5; + .lg\:col-span-3 { + grid-column: span 3 / span 3; } - .lg\:focus-within\:bg-green-200:focus-within { - background-color: #a7f3d0; + .lg\:col-span-4 { + grid-column: span 4 / span 4; } - .lg\:focus-within\:bg-green-300:focus-within { - background-color: #6ee7b7; + .lg\:col-span-5 { + grid-column: span 5 / span 5; } - .lg\:focus-within\:bg-green-400:focus-within { - background-color: #34d399; + .lg\:col-span-6 { + grid-column: span 6 / span 6; } - .lg\:focus-within\:bg-green-500:focus-within { - background-color: #10b981; + .lg\:col-span-7 { + grid-column: span 7 / span 7; } - .lg\:focus-within\:bg-green-600:focus-within { - background-color: #059669; + .lg\:col-span-8 { + grid-column: span 8 / span 8; } - .lg\:focus-within\:bg-green-700:focus-within { - background-color: #047857; + .lg\:col-span-9 { + grid-column: span 9 / span 9; } - .lg\:focus-within\:bg-green-800:focus-within { - background-color: #065f46; + .lg\:col-span-10 { + grid-column: span 10 / span 10; } - .lg\:focus-within\:bg-green-900:focus-within { - background-color: #064e3b; + .lg\:col-span-11 { + grid-column: span 11 / span 11; } - .lg\:focus-within\:bg-blue-50:focus-within { - background-color: #eff6ff; + .lg\:col-span-12 { + grid-column: span 12 / span 12; } - .lg\:focus-within\:bg-blue-100:focus-within { - background-color: #dbeafe; + .lg\:col-span-full { + grid-column: 1 / -1; } - .lg\:focus-within\:bg-blue-200:focus-within { - background-color: #bfdbfe; + .lg\:col-start-1 { + grid-column-start: 1; } - .lg\:focus-within\:bg-blue-300:focus-within { - background-color: #93c5fd; + .lg\:col-start-2 { + grid-column-start: 2; } - .lg\:focus-within\:bg-blue-400:focus-within { - background-color: #60a5fa; + .lg\:col-start-3 { + grid-column-start: 3; } - .lg\:focus-within\:bg-blue-500:focus-within { - background-color: #3b82f6; + .lg\:col-start-4 { + grid-column-start: 4; } - .lg\:focus-within\:bg-blue-600:focus-within { - background-color: #2563eb; + .lg\:col-start-5 { + grid-column-start: 5; } - .lg\:focus-within\:bg-blue-700:focus-within { - background-color: #1d4ed8; + .lg\:col-start-6 { + grid-column-start: 6; } - .lg\:focus-within\:bg-blue-800:focus-within { - background-color: #1e40af; + .lg\:col-start-7 { + grid-column-start: 7; } - .lg\:focus-within\:bg-blue-900:focus-within { - background-color: #1e3a8a; + .lg\:col-start-8 { + grid-column-start: 8; } - .lg\:focus-within\:bg-indigo-50:focus-within { - background-color: #eef2ff; + .lg\:col-start-9 { + grid-column-start: 9; } - .lg\:focus-within\:bg-indigo-100:focus-within { - background-color: #e0e7ff; + .lg\:col-start-10 { + grid-column-start: 10; } - .lg\:focus-within\:bg-indigo-200:focus-within { - background-color: #c7d2fe; + .lg\:col-start-11 { + grid-column-start: 11; } - .lg\:focus-within\:bg-indigo-300:focus-within { - background-color: #a5b4fc; + .lg\:col-start-12 { + grid-column-start: 12; } - .lg\:focus-within\:bg-indigo-400:focus-within { - background-color: #818cf8; + .lg\:col-start-13 { + grid-column-start: 13; } - .lg\:focus-within\:bg-indigo-500:focus-within { - background-color: #6366f1; + .lg\:col-start-auto { + grid-column-start: auto; } - .lg\:focus-within\:bg-indigo-600:focus-within { - background-color: #4f46e5; + .lg\:col-end-1 { + grid-column-end: 1; } - .lg\:focus-within\:bg-indigo-700:focus-within { - background-color: #4338ca; + .lg\:col-end-2 { + grid-column-end: 2; } - .lg\:focus-within\:bg-indigo-800:focus-within { - background-color: #3730a3; + .lg\:col-end-3 { + grid-column-end: 3; } - .lg\:focus-within\:bg-indigo-900:focus-within { - background-color: #312e81; + .lg\:col-end-4 { + grid-column-end: 4; } - .lg\:focus-within\:bg-purple-50:focus-within { - background-color: #f5f3ff; + .lg\:col-end-5 { + grid-column-end: 5; } - .lg\:focus-within\:bg-purple-100:focus-within { - background-color: #ede9fe; + .lg\:col-end-6 { + grid-column-end: 6; } - .lg\:focus-within\:bg-purple-200:focus-within { - background-color: #ddd6fe; + .lg\:col-end-7 { + grid-column-end: 7; } - .lg\:focus-within\:bg-purple-300:focus-within { - background-color: #c4b5fd; + .lg\:col-end-8 { + grid-column-end: 8; } - .lg\:focus-within\:bg-purple-400:focus-within { - background-color: #a78bfa; + .lg\:col-end-9 { + grid-column-end: 9; } - .lg\:focus-within\:bg-purple-500:focus-within { - background-color: #8b5cf6; + .lg\:col-end-10 { + grid-column-end: 10; } - .lg\:focus-within\:bg-purple-600:focus-within { - background-color: #7c3aed; + .lg\:col-end-11 { + grid-column-end: 11; } - .lg\:focus-within\:bg-purple-700:focus-within { - background-color: #6d28d9; + .lg\:col-end-12 { + grid-column-end: 12; } - .lg\:focus-within\:bg-purple-800:focus-within { - background-color: #5b21b6; + .lg\:col-end-13 { + grid-column-end: 13; } - .lg\:focus-within\:bg-purple-900:focus-within { - background-color: #4c1d95; + .lg\:col-end-auto { + grid-column-end: auto; } - .lg\:focus-within\:bg-pink-50:focus-within { - background-color: #fdf2f8; + .lg\:row-auto { + grid-row: auto; } - .lg\:focus-within\:bg-pink-100:focus-within { - background-color: #fce7f3; + .lg\:row-span-1 { + grid-row: span 1 / span 1; } - .lg\:focus-within\:bg-pink-200:focus-within { - background-color: #fbcfe8; + .lg\:row-span-2 { + grid-row: span 2 / span 2; } - .lg\:focus-within\:bg-pink-300:focus-within { - background-color: #f9a8d4; + .lg\:row-span-3 { + grid-row: span 3 / span 3; } - .lg\:focus-within\:bg-pink-400:focus-within { - background-color: #f472b6; + .lg\:row-span-4 { + grid-row: span 4 / span 4; } - .lg\:focus-within\:bg-pink-500:focus-within { - background-color: #ec4899; + .lg\:row-span-5 { + grid-row: span 5 / span 5; } - .lg\:focus-within\:bg-pink-600:focus-within { - background-color: #db2777; + .lg\:row-span-6 { + grid-row: span 6 / span 6; } - .lg\:focus-within\:bg-pink-700:focus-within { - background-color: #be185d; + .lg\:row-span-full { + grid-row: 1 / -1; } - .lg\:focus-within\:bg-pink-800:focus-within { - background-color: #9d174d; + .lg\:row-start-1 { + grid-row-start: 1; } - .lg\:focus-within\:bg-pink-900:focus-within { - background-color: #831843; + .lg\:row-start-2 { + grid-row-start: 2; } - .lg\:hover\:bg-transparent:hover { - background-color: transparent; + .lg\:row-start-3 { + grid-row-start: 3; } - .lg\:hover\:bg-current:hover { - background-color: currentColor; + .lg\:row-start-4 { + grid-row-start: 4; } - .lg\:hover\:bg-black:hover { - background-color: #000; + .lg\:row-start-5 { + grid-row-start: 5; } - .lg\:hover\:bg-white:hover { - background-color: #fff; + .lg\:row-start-6 { + grid-row-start: 6; } - .lg\:hover\:bg-gray-50:hover { - background-color: #f9fafb; + .lg\:row-start-7 { + grid-row-start: 7; } - .lg\:hover\:bg-gray-100:hover { - background-color: #f3f4f6; + .lg\:row-start-auto { + grid-row-start: auto; } - .lg\:hover\:bg-gray-200:hover { - background-color: #e5e7eb; + .lg\:row-end-1 { + grid-row-end: 1; } - .lg\:hover\:bg-gray-300:hover { - background-color: #d1d5db; + .lg\:row-end-2 { + grid-row-end: 2; } - .lg\:hover\:bg-gray-400:hover { - background-color: #9ca3af; + .lg\:row-end-3 { + grid-row-end: 3; } - .lg\:hover\:bg-gray-500:hover { - background-color: #6b7280; + .lg\:row-end-4 { + grid-row-end: 4; } - .lg\:hover\:bg-gray-600:hover { - background-color: #4b5563; + .lg\:row-end-5 { + grid-row-end: 5; } - .lg\:hover\:bg-gray-700:hover { - background-color: #374151; + .lg\:row-end-6 { + grid-row-end: 6; } - .lg\:hover\:bg-gray-800:hover { - background-color: #1f2937; + .lg\:row-end-7 { + grid-row-end: 7; } - .lg\:hover\:bg-gray-900:hover { - background-color: #111827; + .lg\:row-end-auto { + grid-row-end: auto; } - .lg\:hover\:bg-red-50:hover { - background-color: #fef2f2; + .lg\:float-right { + float: right; } - .lg\:hover\:bg-red-100:hover { - background-color: #fee2e2; + .lg\:float-left { + float: left; } - .lg\:hover\:bg-red-200:hover { - background-color: #fecaca; + .lg\:float-none { + float: none; } - .lg\:hover\:bg-red-300:hover { - background-color: #fca5a5; + .lg\:clear-left { + clear: left; } - .lg\:hover\:bg-red-400:hover { - background-color: #f87171; + .lg\:clear-right { + clear: right; } - .lg\:hover\:bg-red-500:hover { - background-color: #ef4444; + .lg\:clear-both { + clear: both; } - .lg\:hover\:bg-red-600:hover { - background-color: #dc2626; + .lg\:clear-none { + clear: none; } - .lg\:hover\:bg-red-700:hover { - background-color: #b91c1c; + .lg\:m-0 { + margin: 0px; } - .lg\:hover\:bg-red-800:hover { - background-color: #991b1b; + .lg\:m-1 { + margin: 0.25rem; } - .lg\:hover\:bg-red-900:hover { - background-color: #7f1d1d; + .lg\:m-2 { + margin: 0.5rem; } - .lg\:hover\:bg-yellow-50:hover { - background-color: #fffbeb; + .lg\:m-3 { + margin: 0.75rem; } - .lg\:hover\:bg-yellow-100:hover { - background-color: #fef3c7; + .lg\:m-4 { + margin: 1rem; } - .lg\:hover\:bg-yellow-200:hover { - background-color: #fde68a; + .lg\:m-5 { + margin: 1.25rem; } - .lg\:hover\:bg-yellow-300:hover { - background-color: #fcd34d; + .lg\:m-6 { + margin: 1.5rem; } - .lg\:hover\:bg-yellow-400:hover { - background-color: #fbbf24; + .lg\:m-7 { + margin: 1.75rem; } - .lg\:hover\:bg-yellow-500:hover { - background-color: #f59e0b; + .lg\:m-8 { + margin: 2rem; } - .lg\:hover\:bg-yellow-600:hover { - background-color: #d97706; + .lg\:m-9 { + margin: 2.25rem; } - .lg\:hover\:bg-yellow-700:hover { - background-color: #b45309; + .lg\:m-10 { + margin: 2.5rem; } - .lg\:hover\:bg-yellow-800:hover { - background-color: #92400e; + .lg\:m-11 { + margin: 2.75rem; } - .lg\:hover\:bg-yellow-900:hover { - background-color: #78350f; + .lg\:m-12 { + margin: 3rem; } - .lg\:hover\:bg-green-50:hover { - background-color: #ecfdf5; + .lg\:m-14 { + margin: 3.5rem; } - .lg\:hover\:bg-green-100:hover { - background-color: #d1fae5; + .lg\:m-16 { + margin: 4rem; } - .lg\:hover\:bg-green-200:hover { - background-color: #a7f3d0; + .lg\:m-20 { + margin: 5rem; } - .lg\:hover\:bg-green-300:hover { - background-color: #6ee7b7; + .lg\:m-24 { + margin: 6rem; } - .lg\:hover\:bg-green-400:hover { - background-color: #34d399; + .lg\:m-28 { + margin: 7rem; } - .lg\:hover\:bg-green-500:hover { - background-color: #10b981; + .lg\:m-32 { + margin: 8rem; } - .lg\:hover\:bg-green-600:hover { - background-color: #059669; + .lg\:m-36 { + margin: 9rem; } - .lg\:hover\:bg-green-700:hover { - background-color: #047857; + .lg\:m-40 { + margin: 10rem; } - .lg\:hover\:bg-green-800:hover { - background-color: #065f46; + .lg\:m-44 { + margin: 11rem; } - .lg\:hover\:bg-green-900:hover { - background-color: #064e3b; + .lg\:m-48 { + margin: 12rem; } - .lg\:hover\:bg-blue-50:hover { - background-color: #eff6ff; + .lg\:m-52 { + margin: 13rem; } - .lg\:hover\:bg-blue-100:hover { - background-color: #dbeafe; + .lg\:m-56 { + margin: 14rem; } - .lg\:hover\:bg-blue-200:hover { - background-color: #bfdbfe; + .lg\:m-60 { + margin: 15rem; } - .lg\:hover\:bg-blue-300:hover { - background-color: #93c5fd; + .lg\:m-64 { + margin: 16rem; } - .lg\:hover\:bg-blue-400:hover { - background-color: #60a5fa; + .lg\:m-72 { + margin: 18rem; } - .lg\:hover\:bg-blue-500:hover { - background-color: #3b82f6; + .lg\:m-80 { + margin: 20rem; } - .lg\:hover\:bg-blue-600:hover { - background-color: #2563eb; + .lg\:m-96 { + margin: 24rem; } - .lg\:hover\:bg-blue-700:hover { - background-color: #1d4ed8; + .lg\:m-auto { + margin: auto; } - .lg\:hover\:bg-blue-800:hover { - background-color: #1e40af; + .lg\:m-px { + margin: 1px; } - .lg\:hover\:bg-blue-900:hover { - background-color: #1e3a8a; + .lg\:m-0\.5 { + margin: 0.125rem; } - .lg\:hover\:bg-indigo-50:hover { - background-color: #eef2ff; + .lg\:m-1\.5 { + margin: 0.375rem; } - .lg\:hover\:bg-indigo-100:hover { - background-color: #e0e7ff; + .lg\:m-2\.5 { + margin: 0.625rem; } - .lg\:hover\:bg-indigo-200:hover { - background-color: #c7d2fe; + .lg\:m-3\.5 { + margin: 0.875rem; } - .lg\:hover\:bg-indigo-300:hover { - background-color: #a5b4fc; + .lg\:-m-0 { + margin: 0px; } - .lg\:hover\:bg-indigo-400:hover { - background-color: #818cf8; + .lg\:-m-1 { + margin: -0.25rem; } - .lg\:hover\:bg-indigo-500:hover { - background-color: #6366f1; + .lg\:-m-2 { + margin: -0.5rem; } - .lg\:hover\:bg-indigo-600:hover { - background-color: #4f46e5; + .lg\:-m-3 { + margin: -0.75rem; } - .lg\:hover\:bg-indigo-700:hover { - background-color: #4338ca; + .lg\:-m-4 { + margin: -1rem; } - .lg\:hover\:bg-indigo-800:hover { - background-color: #3730a3; + .lg\:-m-5 { + margin: -1.25rem; } - .lg\:hover\:bg-indigo-900:hover { - background-color: #312e81; + .lg\:-m-6 { + margin: -1.5rem; } - .lg\:hover\:bg-purple-50:hover { - background-color: #f5f3ff; + .lg\:-m-7 { + margin: -1.75rem; } - .lg\:hover\:bg-purple-100:hover { - background-color: #ede9fe; + .lg\:-m-8 { + margin: -2rem; } - .lg\:hover\:bg-purple-200:hover { - background-color: #ddd6fe; + .lg\:-m-9 { + margin: -2.25rem; } - .lg\:hover\:bg-purple-300:hover { - background-color: #c4b5fd; + .lg\:-m-10 { + margin: -2.5rem; } - .lg\:hover\:bg-purple-400:hover { - background-color: #a78bfa; + .lg\:-m-11 { + margin: -2.75rem; } - .lg\:hover\:bg-purple-500:hover { - background-color: #8b5cf6; + .lg\:-m-12 { + margin: -3rem; } - .lg\:hover\:bg-purple-600:hover { - background-color: #7c3aed; + .lg\:-m-14 { + margin: -3.5rem; } - .lg\:hover\:bg-purple-700:hover { - background-color: #6d28d9; + .lg\:-m-16 { + margin: -4rem; } - .lg\:hover\:bg-purple-800:hover { - background-color: #5b21b6; + .lg\:-m-20 { + margin: -5rem; } - .lg\:hover\:bg-purple-900:hover { - background-color: #4c1d95; + .lg\:-m-24 { + margin: -6rem; } - .lg\:hover\:bg-pink-50:hover { - background-color: #fdf2f8; + .lg\:-m-28 { + margin: -7rem; } - .lg\:hover\:bg-pink-100:hover { - background-color: #fce7f3; + .lg\:-m-32 { + margin: -8rem; } - .lg\:hover\:bg-pink-200:hover { - background-color: #fbcfe8; + .lg\:-m-36 { + margin: -9rem; } - .lg\:hover\:bg-pink-300:hover { - background-color: #f9a8d4; + .lg\:-m-40 { + margin: -10rem; } - .lg\:hover\:bg-pink-400:hover { - background-color: #f472b6; + .lg\:-m-44 { + margin: -11rem; } - .lg\:hover\:bg-pink-500:hover { - background-color: #ec4899; + .lg\:-m-48 { + margin: -12rem; } - .lg\:hover\:bg-pink-600:hover { - background-color: #db2777; + .lg\:-m-52 { + margin: -13rem; } - .lg\:hover\:bg-pink-700:hover { - background-color: #be185d; + .lg\:-m-56 { + margin: -14rem; } - .lg\:hover\:bg-pink-800:hover { - background-color: #9d174d; + .lg\:-m-60 { + margin: -15rem; } - .lg\:hover\:bg-pink-900:hover { - background-color: #831843; + .lg\:-m-64 { + margin: -16rem; } - .lg\:focus\:bg-transparent:focus { - background-color: transparent; + .lg\:-m-72 { + margin: -18rem; } - .lg\:focus\:bg-current:focus { - background-color: currentColor; + .lg\:-m-80 { + margin: -20rem; } - .lg\:focus\:bg-black:focus { - background-color: #000; + .lg\:-m-96 { + margin: -24rem; } - .lg\:focus\:bg-white:focus { - background-color: #fff; + .lg\:-m-px { + margin: -1px; } - .lg\:focus\:bg-gray-50:focus { - background-color: #f9fafb; + .lg\:-m-0\.5 { + margin: -0.125rem; } - .lg\:focus\:bg-gray-100:focus { - background-color: #f3f4f6; + .lg\:-m-1\.5 { + margin: -0.375rem; } - .lg\:focus\:bg-gray-200:focus { - background-color: #e5e7eb; + .lg\:-m-2\.5 { + margin: -0.625rem; } - .lg\:focus\:bg-gray-300:focus { - background-color: #d1d5db; + .lg\:-m-3\.5 { + margin: -0.875rem; } - .lg\:focus\:bg-gray-400:focus { - background-color: #9ca3af; + .lg\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .lg\:focus\:bg-gray-500:focus { - background-color: #6b7280; + .lg\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .lg\:focus\:bg-gray-600:focus { - background-color: #4b5563; + .lg\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .lg\:focus\:bg-gray-700:focus { - background-color: #374151; + .lg\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .lg\:focus\:bg-gray-800:focus { - background-color: #1f2937; + .lg\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .lg\:focus\:bg-gray-900:focus { - background-color: #111827; + .lg\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .lg\:focus\:bg-red-50:focus { - background-color: #fef2f2; + .lg\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .lg\:focus\:bg-red-100:focus { - background-color: #fee2e2; + .lg\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .lg\:focus\:bg-red-200:focus { - background-color: #fecaca; + .lg\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .lg\:focus\:bg-red-300:focus { - background-color: #fca5a5; + .lg\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .lg\:focus\:bg-red-400:focus { - background-color: #f87171; + .lg\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .lg\:focus\:bg-red-500:focus { - background-color: #ef4444; + .lg\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .lg\:focus\:bg-red-600:focus { - background-color: #dc2626; + .lg\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .lg\:focus\:bg-red-700:focus { - background-color: #b91c1c; + .lg\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .lg\:focus\:bg-red-800:focus { - background-color: #991b1b; + .lg\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .lg\:focus\:bg-red-900:focus { - background-color: #7f1d1d; + .lg\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .lg\:focus\:bg-yellow-50:focus { - background-color: #fffbeb; + .lg\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .lg\:focus\:bg-yellow-100:focus { - background-color: #fef3c7; + .lg\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .lg\:focus\:bg-yellow-200:focus { - background-color: #fde68a; + .lg\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .lg\:focus\:bg-yellow-300:focus { - background-color: #fcd34d; + .lg\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .lg\:focus\:bg-yellow-400:focus { - background-color: #fbbf24; + .lg\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .lg\:focus\:bg-yellow-500:focus { - background-color: #f59e0b; + .lg\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .lg\:focus\:bg-yellow-600:focus { - background-color: #d97706; + .lg\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .lg\:focus\:bg-yellow-700:focus { - background-color: #b45309; + .lg\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .lg\:focus\:bg-yellow-800:focus { - background-color: #92400e; + .lg\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .lg\:focus\:bg-yellow-900:focus { - background-color: #78350f; + .lg\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .lg\:focus\:bg-green-50:focus { - background-color: #ecfdf5; + .lg\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .lg\:focus\:bg-green-100:focus { - background-color: #d1fae5; + .lg\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .lg\:focus\:bg-green-200:focus { - background-color: #a7f3d0; + .lg\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .lg\:focus\:bg-green-300:focus { - background-color: #6ee7b7; + .lg\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .lg\:focus\:bg-green-400:focus { - background-color: #34d399; + .lg\:mx-auto { + margin-left: auto; + margin-right: auto; } - .lg\:focus\:bg-green-500:focus { - background-color: #10b981; + .lg\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .lg\:focus\:bg-green-600:focus { - background-color: #059669; + .lg\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .lg\:focus\:bg-green-700:focus { - background-color: #047857; + .lg\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .lg\:focus\:bg-green-800:focus { - background-color: #065f46; + .lg\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .lg\:focus\:bg-green-900:focus { - background-color: #064e3b; + .lg\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .lg\:focus\:bg-blue-50:focus { - background-color: #eff6ff; + .lg\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .lg\:focus\:bg-blue-100:focus { - background-color: #dbeafe; + .lg\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .lg\:focus\:bg-blue-200:focus { - background-color: #bfdbfe; + .lg\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .lg\:focus\:bg-blue-300:focus { - background-color: #93c5fd; + .lg\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .lg\:focus\:bg-blue-400:focus { - background-color: #60a5fa; + .lg\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .lg\:focus\:bg-blue-500:focus { - background-color: #3b82f6; + .lg\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .lg\:focus\:bg-blue-600:focus { - background-color: #2563eb; + .lg\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .lg\:focus\:bg-blue-700:focus { - background-color: #1d4ed8; + .lg\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .lg\:focus\:bg-blue-800:focus { - background-color: #1e40af; + .lg\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .lg\:focus\:bg-blue-900:focus { - background-color: #1e3a8a; + .lg\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .lg\:focus\:bg-indigo-50:focus { - background-color: #eef2ff; + .lg\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .lg\:focus\:bg-indigo-100:focus { - background-color: #e0e7ff; + .lg\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .lg\:focus\:bg-indigo-200:focus { - background-color: #c7d2fe; + .lg\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .lg\:focus\:bg-indigo-300:focus { - background-color: #a5b4fc; + .lg\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .lg\:focus\:bg-indigo-400:focus { - background-color: #818cf8; + .lg\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .lg\:focus\:bg-indigo-500:focus { - background-color: #6366f1; + .lg\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .lg\:focus\:bg-indigo-600:focus { - background-color: #4f46e5; + .lg\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .lg\:focus\:bg-indigo-700:focus { - background-color: #4338ca; + .lg\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .lg\:focus\:bg-indigo-800:focus { - background-color: #3730a3; + .lg\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .lg\:focus\:bg-indigo-900:focus { - background-color: #312e81; + .lg\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .lg\:focus\:bg-purple-50:focus { - background-color: #f5f3ff; + .lg\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .lg\:focus\:bg-purple-100:focus { - background-color: #ede9fe; + .lg\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .lg\:focus\:bg-purple-200:focus { - background-color: #ddd6fe; + .lg\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .lg\:focus\:bg-purple-300:focus { - background-color: #c4b5fd; + .lg\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .lg\:focus\:bg-purple-400:focus { - background-color: #a78bfa; + .lg\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .lg\:focus\:bg-purple-500:focus { - background-color: #8b5cf6; + .lg\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .lg\:focus\:bg-purple-600:focus { - background-color: #7c3aed; + .lg\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .lg\:focus\:bg-purple-700:focus { - background-color: #6d28d9; + .lg\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .lg\:focus\:bg-purple-800:focus { - background-color: #5b21b6; + .lg\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .lg\:focus\:bg-purple-900:focus { - background-color: #4c1d95; + .lg\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .lg\:focus\:bg-pink-50:focus { - background-color: #fdf2f8; + .lg\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .lg\:focus\:bg-pink-100:focus { - background-color: #fce7f3; + .lg\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .lg\:focus\:bg-pink-200:focus { - background-color: #fbcfe8; + .lg\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .lg\:focus\:bg-pink-300:focus { - background-color: #f9a8d4; + .lg\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .lg\:focus\:bg-pink-400:focus { - background-color: #f472b6; + .lg\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .lg\:focus\:bg-pink-500:focus { - background-color: #ec4899; + .lg\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .lg\:focus\:bg-pink-600:focus { - background-color: #db2777; + .lg\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .lg\:focus\:bg-pink-700:focus { - background-color: #be185d; + .lg\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .lg\:focus\:bg-pink-800:focus { - background-color: #9d174d; + .lg\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .lg\:focus\:bg-pink-900:focus { - background-color: #831843; + .lg\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .lg\:bg-none { - background-image: none; + .lg\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .lg\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .lg\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .lg\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .lg\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .lg\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .lg\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .lg\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .lg\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .lg\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .lg\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .lg\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .lg\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .lg\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .lg\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .lg\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .lg\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .lg\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .lg\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .lg\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .lg\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .lg\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .lg\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .lg\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .lg\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .lg\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .lg\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .lg\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .lg\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .lg\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .lg\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .lg\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .lg\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .lg\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .lg\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .lg\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .lg\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .lg\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .lg\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .lg\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .lg\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .lg\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .lg\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .lg\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .lg\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .lg\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .lg\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .lg\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .lg\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .lg\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .lg\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .lg\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .lg\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .lg\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .lg\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .lg\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .lg\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .lg\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .lg\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .lg\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .lg\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .lg\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .lg\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .lg\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .lg\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .lg\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .lg\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .lg\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .lg\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .lg\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .lg\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .lg\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .lg\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .lg\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .lg\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:mt-0 { + margin-top: 0px; } - .lg\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:mt-1 { + margin-top: 0.25rem; } - .lg\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:mt-2 { + margin-top: 0.5rem; } - .lg\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:mt-3 { + margin-top: 0.75rem; } - .lg\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:mt-4 { + margin-top: 1rem; } - .lg\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:mt-5 { + margin-top: 1.25rem; } - .lg\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:mt-6 { + margin-top: 1.5rem; } - .lg\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:mt-7 { + margin-top: 1.75rem; } - .lg\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:mt-8 { + margin-top: 2rem; } - .lg\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:mt-9 { + margin-top: 2.25rem; } - .lg\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:mt-10 { + margin-top: 2.5rem; } - .lg\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:mt-11 { + margin-top: 2.75rem; } - .lg\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:mt-12 { + margin-top: 3rem; } - .lg\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:mt-14 { + margin-top: 3.5rem; } - .lg\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:mt-16 { + margin-top: 4rem; } - .lg\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:mt-20 { + margin-top: 5rem; } - .lg\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:mt-24 { + margin-top: 6rem; } - .lg\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:mt-28 { + margin-top: 7rem; } - .lg\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:mt-32 { + margin-top: 8rem; } - .lg\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:mt-36 { + margin-top: 9rem; } - .lg\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:mt-40 { + margin-top: 10rem; } - .lg\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:mt-44 { + margin-top: 11rem; } - .lg\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:mt-48 { + margin-top: 12rem; } - .lg\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:mt-52 { + margin-top: 13rem; } - .lg\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:mt-56 { + margin-top: 14rem; } - .lg\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:mt-60 { + margin-top: 15rem; } - .lg\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:mt-64 { + margin-top: 16rem; } - .lg\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:mt-72 { + margin-top: 18rem; } - .lg\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:mt-80 { + margin-top: 20rem; } - .lg\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:mt-96 { + margin-top: 24rem; } - .lg\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:mt-auto { + margin-top: auto; } - .lg\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:mt-px { + margin-top: 1px; } - .lg\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:mt-0\.5 { + margin-top: 0.125rem; } - .lg\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:mt-1\.5 { + margin-top: 0.375rem; } - .lg\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:mt-2\.5 { + margin-top: 0.625rem; } - .lg\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:mt-3\.5 { + margin-top: 0.875rem; } - .lg\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:-mt-0 { + margin-top: 0px; } - .lg\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:-mt-1 { + margin-top: -0.25rem; } - .lg\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:-mt-2 { + margin-top: -0.5rem; } - .lg\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:-mt-3 { + margin-top: -0.75rem; } - .lg\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:-mt-4 { + margin-top: -1rem; } - .lg\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:-mt-5 { + margin-top: -1.25rem; } - .lg\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:-mt-6 { + margin-top: -1.5rem; } - .lg\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:-mt-7 { + margin-top: -1.75rem; } - .lg\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:-mt-8 { + margin-top: -2rem; } - .lg\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:-mt-9 { + margin-top: -2.25rem; } - .lg\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:-mt-10 { + margin-top: -2.5rem; } - .lg\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:-mt-11 { + margin-top: -2.75rem; } - .lg\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:-mt-12 { + margin-top: -3rem; } - .lg\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:-mt-14 { + margin-top: -3.5rem; } - .lg\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:-mt-16 { + margin-top: -4rem; } - .lg\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:-mt-20 { + margin-top: -5rem; } - .lg\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:-mt-24 { + margin-top: -6rem; } - .lg\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:-mt-28 { + margin-top: -7rem; } - .lg\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:-mt-32 { + margin-top: -8rem; } - .lg\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:-mt-36 { + margin-top: -9rem; } - .lg\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:-mt-40 { + margin-top: -10rem; } - .lg\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:-mt-44 { + margin-top: -11rem; } - .lg\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:-mt-48 { + margin-top: -12rem; } - .lg\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:-mt-52 { + margin-top: -13rem; } - .lg\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:-mt-56 { + margin-top: -14rem; } - .lg\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:-mt-60 { + margin-top: -15rem; } - .lg\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:-mt-64 { + margin-top: -16rem; } - .lg\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:-mt-72 { + margin-top: -18rem; } - .lg\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:-mt-80 { + margin-top: -20rem; } - .lg\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:-mt-96 { + margin-top: -24rem; } - .lg\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:-mt-px { + margin-top: -1px; } - .lg\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:-mt-0\.5 { + margin-top: -0.125rem; } - .lg\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:-mt-1\.5 { + margin-top: -0.375rem; } - .lg\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:-mt-2\.5 { + margin-top: -0.625rem; } - .lg\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:-mt-3\.5 { + margin-top: -0.875rem; } - .lg\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:mr-0 { + margin-right: 0px; } - .lg\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:mr-1 { + margin-right: 0.25rem; } - .lg\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:mr-2 { + margin-right: 0.5rem; } - .lg\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:mr-3 { + margin-right: 0.75rem; } - .lg\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:mr-4 { + margin-right: 1rem; } - .lg\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:mr-5 { + margin-right: 1.25rem; } - .lg\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:mr-6 { + margin-right: 1.5rem; } - .lg\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:mr-7 { + margin-right: 1.75rem; } - .lg\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:mr-8 { + margin-right: 2rem; } - .lg\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:mr-9 { + margin-right: 2.25rem; } - .lg\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:mr-10 { + margin-right: 2.5rem; } - .lg\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:mr-11 { + margin-right: 2.75rem; } - .lg\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:mr-12 { + margin-right: 3rem; } - .lg\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:mr-14 { + margin-right: 3.5rem; } - .lg\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:mr-16 { + margin-right: 4rem; } - .lg\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:mr-20 { + margin-right: 5rem; } - .lg\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:mr-24 { + margin-right: 6rem; } - .lg\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:mr-28 { + margin-right: 7rem; } - .lg\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:mr-32 { + margin-right: 8rem; } - .lg\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:mr-36 { + margin-right: 9rem; } - .lg\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:mr-40 { + margin-right: 10rem; } - .lg\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:mr-44 { + margin-right: 11rem; } - .lg\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:mr-48 { + margin-right: 12rem; } - .lg\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:mr-52 { + margin-right: 13rem; } - .lg\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:mr-56 { + margin-right: 14rem; } - .lg\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:mr-60 { + margin-right: 15rem; } - .lg\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:mr-64 { + margin-right: 16rem; } - .lg\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:mr-72 { + margin-right: 18rem; } - .lg\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:mr-80 { + margin-right: 20rem; } - .lg\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:mr-96 { + margin-right: 24rem; } - .lg\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:mr-auto { + margin-right: auto; } - .lg\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:mr-px { + margin-right: 1px; } - .lg\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:mr-0\.5 { + margin-right: 0.125rem; } - .lg\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:mr-1\.5 { + margin-right: 0.375rem; } - .lg\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:mr-2\.5 { + margin-right: 0.625rem; } - .lg\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:mr-3\.5 { + margin-right: 0.875rem; } - .lg\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:-mr-0 { + margin-right: 0px; } - .lg\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:-mr-1 { + margin-right: -0.25rem; } - .lg\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:-mr-2 { + margin-right: -0.5rem; } - .lg\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:-mr-3 { + margin-right: -0.75rem; } - .lg\:to-transparent { - --tw-gradient-to: transparent; + .lg\:-mr-4 { + margin-right: -1rem; } - .lg\:to-current { - --tw-gradient-to: currentColor; + .lg\:-mr-5 { + margin-right: -1.25rem; } - .lg\:to-black { - --tw-gradient-to: #000; + .lg\:-mr-6 { + margin-right: -1.5rem; } - .lg\:to-white { - --tw-gradient-to: #fff; + .lg\:-mr-7 { + margin-right: -1.75rem; } - .lg\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .lg\:-mr-8 { + margin-right: -2rem; } - .lg\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .lg\:-mr-9 { + margin-right: -2.25rem; } - .lg\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .lg\:-mr-10 { + margin-right: -2.5rem; } - .lg\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .lg\:-mr-11 { + margin-right: -2.75rem; } - .lg\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .lg\:-mr-12 { + margin-right: -3rem; } - .lg\:to-gray-500 { - --tw-gradient-to: #6b7280; + .lg\:-mr-14 { + margin-right: -3.5rem; } - .lg\:to-gray-600 { - --tw-gradient-to: #4b5563; + .lg\:-mr-16 { + margin-right: -4rem; } - .lg\:to-gray-700 { - --tw-gradient-to: #374151; + .lg\:-mr-20 { + margin-right: -5rem; } - .lg\:to-gray-800 { - --tw-gradient-to: #1f2937; + .lg\:-mr-24 { + margin-right: -6rem; } - .lg\:to-gray-900 { - --tw-gradient-to: #111827; + .lg\:-mr-28 { + margin-right: -7rem; } - .lg\:to-red-50 { - --tw-gradient-to: #fef2f2; + .lg\:-mr-32 { + margin-right: -8rem; } - .lg\:to-red-100 { - --tw-gradient-to: #fee2e2; + .lg\:-mr-36 { + margin-right: -9rem; } - .lg\:to-red-200 { - --tw-gradient-to: #fecaca; + .lg\:-mr-40 { + margin-right: -10rem; } - .lg\:to-red-300 { - --tw-gradient-to: #fca5a5; + .lg\:-mr-44 { + margin-right: -11rem; } - .lg\:to-red-400 { - --tw-gradient-to: #f87171; + .lg\:-mr-48 { + margin-right: -12rem; } - .lg\:to-red-500 { - --tw-gradient-to: #ef4444; + .lg\:-mr-52 { + margin-right: -13rem; } - .lg\:to-red-600 { - --tw-gradient-to: #dc2626; + .lg\:-mr-56 { + margin-right: -14rem; } - .lg\:to-red-700 { - --tw-gradient-to: #b91c1c; + .lg\:-mr-60 { + margin-right: -15rem; } - .lg\:to-red-800 { - --tw-gradient-to: #991b1b; + .lg\:-mr-64 { + margin-right: -16rem; } - .lg\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .lg\:-mr-72 { + margin-right: -18rem; } - .lg\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .lg\:-mr-80 { + margin-right: -20rem; } - .lg\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .lg\:-mr-96 { + margin-right: -24rem; } - .lg\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .lg\:-mr-px { + margin-right: -1px; } - .lg\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .lg\:-mr-0\.5 { + margin-right: -0.125rem; } - .lg\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .lg\:-mr-1\.5 { + margin-right: -0.375rem; } - .lg\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .lg\:-mr-2\.5 { + margin-right: -0.625rem; } - .lg\:to-yellow-600 { - --tw-gradient-to: #d97706; + .lg\:-mr-3\.5 { + margin-right: -0.875rem; } - .lg\:to-yellow-700 { - --tw-gradient-to: #b45309; + .lg\:mb-0 { + margin-bottom: 0px; } - .lg\:to-yellow-800 { - --tw-gradient-to: #92400e; + .lg\:mb-1 { + margin-bottom: 0.25rem; } - .lg\:to-yellow-900 { - --tw-gradient-to: #78350f; + .lg\:mb-2 { + margin-bottom: 0.5rem; } - .lg\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .lg\:mb-3 { + margin-bottom: 0.75rem; } - .lg\:to-green-100 { - --tw-gradient-to: #d1fae5; + .lg\:mb-4 { + margin-bottom: 1rem; } - .lg\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .lg\:mb-5 { + margin-bottom: 1.25rem; } - .lg\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .lg\:mb-6 { + margin-bottom: 1.5rem; } - .lg\:to-green-400 { - --tw-gradient-to: #34d399; + .lg\:mb-7 { + margin-bottom: 1.75rem; } - .lg\:to-green-500 { - --tw-gradient-to: #10b981; + .lg\:mb-8 { + margin-bottom: 2rem; } - .lg\:to-green-600 { - --tw-gradient-to: #059669; + .lg\:mb-9 { + margin-bottom: 2.25rem; } - .lg\:to-green-700 { - --tw-gradient-to: #047857; + .lg\:mb-10 { + margin-bottom: 2.5rem; } - .lg\:to-green-800 { - --tw-gradient-to: #065f46; + .lg\:mb-11 { + margin-bottom: 2.75rem; } - .lg\:to-green-900 { - --tw-gradient-to: #064e3b; + .lg\:mb-12 { + margin-bottom: 3rem; } - .lg\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .lg\:mb-14 { + margin-bottom: 3.5rem; } - .lg\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .lg\:mb-16 { + margin-bottom: 4rem; } - .lg\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .lg\:mb-20 { + margin-bottom: 5rem; } - .lg\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .lg\:mb-24 { + margin-bottom: 6rem; } - .lg\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .lg\:mb-28 { + margin-bottom: 7rem; } - .lg\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .lg\:mb-32 { + margin-bottom: 8rem; } - .lg\:to-blue-600 { - --tw-gradient-to: #2563eb; + .lg\:mb-36 { + margin-bottom: 9rem; } - .lg\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .lg\:mb-40 { + margin-bottom: 10rem; } - .lg\:to-blue-800 { - --tw-gradient-to: #1e40af; + .lg\:mb-44 { + margin-bottom: 11rem; } - .lg\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .lg\:mb-48 { + margin-bottom: 12rem; } - .lg\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .lg\:mb-52 { + margin-bottom: 13rem; } - .lg\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .lg\:mb-56 { + margin-bottom: 14rem; } - .lg\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .lg\:mb-60 { + margin-bottom: 15rem; } - .lg\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .lg\:mb-64 { + margin-bottom: 16rem; } - .lg\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .lg\:mb-72 { + margin-bottom: 18rem; } - .lg\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .lg\:mb-80 { + margin-bottom: 20rem; } - .lg\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .lg\:mb-96 { + margin-bottom: 24rem; } - .lg\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .lg\:mb-auto { + margin-bottom: auto; } - .lg\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .lg\:mb-px { + margin-bottom: 1px; } - .lg\:to-indigo-900 { - --tw-gradient-to: #312e81; + .lg\:mb-0\.5 { + margin-bottom: 0.125rem; } - .lg\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .lg\:mb-1\.5 { + margin-bottom: 0.375rem; } - .lg\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .lg\:mb-2\.5 { + margin-bottom: 0.625rem; } - .lg\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .lg\:mb-3\.5 { + margin-bottom: 0.875rem; } - .lg\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .lg\:-mb-0 { + margin-bottom: 0px; } - .lg\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .lg\:-mb-1 { + margin-bottom: -0.25rem; } - .lg\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .lg\:-mb-2 { + margin-bottom: -0.5rem; } - .lg\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .lg\:-mb-3 { + margin-bottom: -0.75rem; } - .lg\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .lg\:-mb-4 { + margin-bottom: -1rem; } - .lg\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .lg\:-mb-5 { + margin-bottom: -1.25rem; } - .lg\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .lg\:-mb-6 { + margin-bottom: -1.5rem; } - .lg\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .lg\:-mb-7 { + margin-bottom: -1.75rem; } - .lg\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .lg\:-mb-8 { + margin-bottom: -2rem; } - .lg\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .lg\:-mb-9 { + margin-bottom: -2.25rem; } - .lg\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .lg\:-mb-10 { + margin-bottom: -2.5rem; } - .lg\:to-pink-400 { - --tw-gradient-to: #f472b6; + .lg\:-mb-11 { + margin-bottom: -2.75rem; } - .lg\:to-pink-500 { - --tw-gradient-to: #ec4899; + .lg\:-mb-12 { + margin-bottom: -3rem; } - .lg\:to-pink-600 { - --tw-gradient-to: #db2777; + .lg\:-mb-14 { + margin-bottom: -3.5rem; } - .lg\:to-pink-700 { - --tw-gradient-to: #be185d; + .lg\:-mb-16 { + margin-bottom: -4rem; } - .lg\:to-pink-800 { - --tw-gradient-to: #9d174d; + .lg\:-mb-20 { + margin-bottom: -5rem; } - .lg\:to-pink-900 { - --tw-gradient-to: #831843; + .lg\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .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\:-ml-10 { + margin-left: -2.5rem; } - .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\:-ml-11 { + margin-left: -2.75rem; } - .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\:-ml-12 { + margin-left: -3rem; } - .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\:-ml-14 { + margin-left: -3.5rem; } - .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\:-ml-16 { + margin-left: -4rem; } - .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\:-ml-20 { + margin-left: -5rem; } - .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\:-ml-24 { + margin-left: -6rem; } - .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\:-ml-28 { + margin-left: -7rem; } - .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\:-ml-32 { + margin-left: -8rem; } - .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\:-ml-36 { + margin-left: -9rem; } - .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\:-ml-40 { + margin-left: -10rem; } - .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\:-ml-44 { + margin-left: -11rem; } - .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\:-ml-48 { + margin-left: -12rem; } - .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\:-ml-52 { + margin-left: -13rem; } - .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\:-ml-56 { + margin-left: -14rem; } - .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\:-ml-60 { + margin-left: -15rem; } - .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\:-ml-64 { + margin-left: -16rem; } - .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\:-ml-72 { + margin-left: -18rem; } - .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\:-ml-80 { + margin-left: -20rem; } - .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\:-ml-96 { + margin-left: -24rem; } - .lg\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:-ml-px { + margin-left: -1px; } - .lg\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:-ml-0\.5 { + margin-left: -0.125rem; } - .lg\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:-ml-1\.5 { + margin-left: -0.375rem; } - .lg\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:-ml-2\.5 { + margin-left: -0.625rem; } - .lg\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:-ml-3\.5 { + margin-left: -0.875rem; } - .lg\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:box-border { + box-sizing: border-box; } - .lg\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:box-content { + box-sizing: content-box; } - .lg\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:block { + display: block; } - .lg\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:inline-block { + display: inline-block; } - .lg\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:inline { + display: inline; } - .lg\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:flex { + display: flex; } - .lg\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:inline-flex { + display: inline-flex; } - .lg\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:table { + display: table; } - .lg\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:inline-table { + display: inline-table; } - .lg\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:table-caption { + display: table-caption; } - .lg\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:table-cell { + display: table-cell; } - .lg\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:table-column { + display: table-column; } - .lg\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:table-column-group { + display: table-column-group; } - .lg\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:table-footer-group { + display: table-footer-group; } - .lg\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:table-header-group { + display: table-header-group; } - .lg\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:table-row-group { + display: table-row-group; } - .lg\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:table-row { + display: table-row; } - .lg\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:flow-root { + display: flow-root; } - .lg\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:grid { + display: grid; } - .lg\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:inline-grid { + display: inline-grid; } - .lg\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:contents { + display: contents; } - .lg\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:list-item { + display: list-item; } - .lg\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:hidden { + display: none; } - .lg\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:h-0 { + height: 0px; } - .lg\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:h-1 { + height: 0.25rem; } - .lg\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:h-2 { + height: 0.5rem; } - .lg\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:h-3 { + height: 0.75rem; } - .lg\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:h-4 { + height: 1rem; } - .lg\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:h-5 { + height: 1.25rem; } - .lg\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:h-6 { + height: 1.5rem; } - .lg\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:h-7 { + height: 1.75rem; } - .lg\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:h-8 { + height: 2rem; } - .lg\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:h-9 { + height: 2.25rem; } - .lg\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:h-10 { + height: 2.5rem; } - .lg\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:h-11 { + height: 2.75rem; } - .lg\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:h-12 { + height: 3rem; } - .lg\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:h-14 { + height: 3.5rem; } - .lg\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:h-16 { + height: 4rem; } - .lg\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:h-20 { + height: 5rem; } - .lg\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:h-24 { + height: 6rem; } - .lg\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:h-28 { + height: 7rem; } - .lg\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:h-32 { + height: 8rem; } - .lg\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:h-36 { + height: 9rem; } - .lg\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:h-40 { + height: 10rem; } - .lg\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:h-44 { + height: 11rem; } - .lg\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:h-48 { + height: 12rem; } - .lg\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:h-52 { + height: 13rem; } - .lg\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:h-56 { + height: 14rem; } - .lg\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:h-60 { + height: 15rem; } - .lg\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:h-64 { + height: 16rem; } - .lg\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:h-72 { + height: 18rem; } - .lg\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:h-80 { + height: 20rem; } - .lg\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:h-96 { + height: 24rem; } - .lg\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:h-auto { + height: auto; } - .lg\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:h-px { + height: 1px; } - .lg\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:h-0\.5 { + height: 0.125rem; } - .lg\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:h-1\.5 { + height: 0.375rem; } - .lg\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:h-2\.5 { + height: 0.625rem; } - .lg\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:h-3\.5 { + height: 0.875rem; } - .lg\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:h-1\/2 { + height: 50%; } - .lg\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:h-1\/3 { + height: 33.333333%; } - .lg\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:h-2\/3 { + height: 66.666667%; } - .lg\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:h-1\/4 { + height: 25%; } - .lg\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:h-2\/4 { + height: 50%; } - .lg\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:h-3\/4 { + height: 75%; } - .lg\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:h-1\/5 { + height: 20%; } - .lg\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:h-2\/5 { + height: 40%; } - .lg\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:h-3\/5 { + height: 60%; } - .lg\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:h-4\/5 { + height: 80%; } - .lg\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:h-1\/6 { + height: 16.666667%; } - .lg\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:h-2\/6 { + height: 33.333333%; } - .lg\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:h-3\/6 { + height: 50%; } - .lg\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:h-4\/6 { + height: 66.666667%; } - .lg\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:h-5\/6 { + height: 83.333333%; } - .lg\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:h-full { + height: 100%; } - .lg\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:h-screen { + height: 100vh; } - .lg\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:max-h-0 { + max-height: 0px; } - .lg\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:max-h-1 { + max-height: 0.25rem; } - .lg\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:max-h-2 { + max-height: 0.5rem; } - .lg\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .lg\:max-h-3 { + max-height: 0.75rem; } - .lg\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .lg\:max-h-4 { + max-height: 1rem; } - .lg\:hover\:to-black:hover { - --tw-gradient-to: #000; + .lg\:max-h-5 { + max-height: 1.25rem; } - .lg\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .lg\:max-h-6 { + max-height: 1.5rem; } - .lg\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .lg\:max-h-7 { + max-height: 1.75rem; } - .lg\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .lg\:max-h-8 { + max-height: 2rem; } - .lg\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .lg\:max-h-9 { + max-height: 2.25rem; } - .lg\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .lg\:max-h-10 { + max-height: 2.5rem; } - .lg\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .lg\:max-h-11 { + max-height: 2.75rem; } - .lg\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .lg\:max-h-12 { + max-height: 3rem; } - .lg\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .lg\:max-h-14 { + max-height: 3.5rem; } - .lg\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .lg\:max-h-16 { + max-height: 4rem; } - .lg\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .lg\:max-h-20 { + max-height: 5rem; } - .lg\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .lg\:max-h-24 { + max-height: 6rem; } - .lg\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .lg\:max-h-28 { + max-height: 7rem; } - .lg\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .lg\:max-h-32 { + max-height: 8rem; } - .lg\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .lg\:max-h-36 { + max-height: 9rem; } - .lg\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .lg\:max-h-40 { + max-height: 10rem; } - .lg\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .lg\:max-h-44 { + max-height: 11rem; } - .lg\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .lg\:max-h-48 { + max-height: 12rem; } - .lg\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .lg\:max-h-52 { + max-height: 13rem; } - .lg\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .lg\:max-h-56 { + max-height: 14rem; } - .lg\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .lg\:max-h-60 { + max-height: 15rem; } - .lg\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .lg\:max-h-64 { + max-height: 16rem; } - .lg\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .lg\:max-h-72 { + max-height: 18rem; } - .lg\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .lg\:max-h-80 { + max-height: 20rem; } - .lg\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .lg\:max-h-96 { + max-height: 24rem; } - .lg\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .lg\:max-h-px { + max-height: 1px; } - .lg\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .lg\:max-h-0\.5 { + max-height: 0.125rem; } - .lg\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .lg\:max-h-1\.5 { + max-height: 0.375rem; } - .lg\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .lg\:max-h-2\.5 { + max-height: 0.625rem; } - .lg\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .lg\:max-h-3\.5 { + max-height: 0.875rem; } - .lg\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .lg\:max-h-full { + max-height: 100%; } - .lg\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .lg\:max-h-screen { + max-height: 100vh; } - .lg\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .lg\:min-h-0 { + min-height: 0px; } - .lg\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .lg\:min-h-full { + min-height: 100%; } - .lg\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .lg\:min-h-screen { + min-height: 100vh; } - .lg\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .lg\:w-0 { + width: 0px; } - .lg\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .lg\:w-1 { + width: 0.25rem; } - .lg\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .lg\:w-2 { + width: 0.5rem; } - .lg\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .lg\:w-3 { + width: 0.75rem; } - .lg\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .lg\:w-4 { + width: 1rem; } - .lg\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .lg\:w-5 { + width: 1.25rem; } - .lg\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .lg\:w-6 { + width: 1.5rem; } - .lg\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .lg\:w-7 { + width: 1.75rem; } - .lg\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .lg\:w-8 { + width: 2rem; } - .lg\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .lg\:w-9 { + width: 2.25rem; } - .lg\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .lg\:w-10 { + width: 2.5rem; } - .lg\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .lg\:w-11 { + width: 2.75rem; } - .lg\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .lg\:w-12 { + width: 3rem; } - .lg\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .lg\:w-14 { + width: 3.5rem; } - .lg\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .lg\:w-16 { + width: 4rem; } - .lg\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .lg\:w-20 { + width: 5rem; } - .lg\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .lg\:w-24 { + width: 6rem; } - .lg\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .lg\:w-28 { + width: 7rem; } - .lg\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .lg\:w-32 { + width: 8rem; } - .lg\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .lg\:w-36 { + width: 9rem; } - .lg\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .lg\:w-40 { + width: 10rem; } - .lg\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .lg\:w-44 { + width: 11rem; } - .lg\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .lg\:w-48 { + width: 12rem; } - .lg\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .lg\:w-52 { + width: 13rem; } - .lg\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .lg\:w-56 { + width: 14rem; } - .lg\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .lg\:w-60 { + width: 15rem; } - .lg\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .lg\:w-64 { + width: 16rem; } - .lg\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .lg\:w-72 { + width: 18rem; } - .lg\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .lg\:w-80 { + width: 20rem; } - .lg\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .lg\:w-96 { + width: 24rem; } - .lg\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .lg\:w-auto { + width: auto; } - .lg\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .lg\:w-px { + width: 1px; } - .lg\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .lg\:w-0\.5 { + width: 0.125rem; } - .lg\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .lg\:w-1\.5 { + width: 0.375rem; } - .lg\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .lg\:w-2\.5 { + width: 0.625rem; } - .lg\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .lg\:w-3\.5 { + width: 0.875rem; } - .lg\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .lg\:w-1\/2 { + width: 50%; } - .lg\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .lg\:w-1\/3 { + width: 33.333333%; } - .lg\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .lg\:w-2\/3 { + width: 66.666667%; } - .lg\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .lg\:w-1\/4 { + width: 25%; } - .lg\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .lg\:w-2\/4 { + width: 50%; } - .lg\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .lg\:w-3\/4 { + width: 75%; } - .lg\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .lg\:w-1\/5 { + width: 20%; } - .lg\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .lg\:w-2\/5 { + width: 40%; } - .lg\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .lg\:w-3\/5 { + width: 60%; } - .lg\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .lg\:w-4\/5 { + width: 80%; } - .lg\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .lg\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .lg\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .lg\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .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\:origin-bottom-right { + transform-origin: bottom right; } - .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\:origin-bottom { + transform-origin: bottom; } - .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\:origin-bottom-left { + transform-origin: bottom left; } - .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\:origin-left { + transform-origin: left; } - .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\:origin-top-left { + transform-origin: top left; } - .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\:translate-x-0 { + --tw-translate-x: 0px; } - .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\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .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\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .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\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .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\:translate-x-4 { + --tw-translate-x: 1rem; } - .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\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .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\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .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\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .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\:translate-x-8 { + --tw-translate-x: 2rem; } - .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\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .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\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .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\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .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\:translate-x-12 { + --tw-translate-x: 3rem; } - .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\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .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\:translate-x-16 { + --tw-translate-x: 4rem; } - .lg\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:translate-x-20 { + --tw-translate-x: 5rem; } - .lg\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:translate-x-24 { + --tw-translate-x: 6rem; } - .lg\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:translate-x-28 { + --tw-translate-x: 7rem; } - .lg\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:translate-x-32 { + --tw-translate-x: 8rem; } - .lg\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:translate-x-36 { + --tw-translate-x: 9rem; } - .lg\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:translate-x-40 { + --tw-translate-x: 10rem; } - .lg\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:translate-x-44 { + --tw-translate-x: 11rem; } - .lg\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:translate-x-48 { + --tw-translate-x: 12rem; } - .lg\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:translate-x-52 { + --tw-translate-x: 13rem; } - .lg\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:translate-x-56 { + --tw-translate-x: 14rem; } - .lg\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:translate-x-60 { + --tw-translate-x: 15rem; } - .lg\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:translate-x-64 { + --tw-translate-x: 16rem; } - .lg\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:translate-x-72 { + --tw-translate-x: 18rem; } - .lg\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:translate-x-80 { + --tw-translate-x: 20rem; } - .lg\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:translate-x-96 { + --tw-translate-x: 24rem; } - .lg\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:translate-x-px { + --tw-translate-x: 1px; } - .lg\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .lg\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .lg\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .lg\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .lg\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:-translate-x-0 { + --tw-translate-x: 0px; } - .lg\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .lg\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .lg\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .lg\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:-translate-x-4 { + --tw-translate-x: -1rem; } - .lg\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .lg\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .lg\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .lg\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:-translate-x-8 { + --tw-translate-x: -2rem; } - .lg\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .lg\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .lg\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .lg\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:-translate-x-12 { + --tw-translate-x: -3rem; } - .lg\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .lg\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:-translate-x-16 { + --tw-translate-x: -4rem; } - .lg\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:-translate-x-20 { + --tw-translate-x: -5rem; } - .lg\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:-translate-x-24 { + --tw-translate-x: -6rem; } - .lg\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:-translate-x-28 { + --tw-translate-x: -7rem; } - .lg\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:-translate-x-32 { + --tw-translate-x: -8rem; } - .lg\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:-translate-x-36 { + --tw-translate-x: -9rem; } - .lg\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:-translate-x-40 { + --tw-translate-x: -10rem; } - .lg\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:-translate-x-44 { + --tw-translate-x: -11rem; } - .lg\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:-translate-x-48 { + --tw-translate-x: -12rem; } - .lg\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:-translate-x-52 { + --tw-translate-x: -13rem; } - .lg\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:-translate-x-56 { + --tw-translate-x: -14rem; } - .lg\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:-translate-x-60 { + --tw-translate-x: -15rem; } - .lg\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:-translate-x-64 { + --tw-translate-x: -16rem; } - .lg\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:-translate-x-72 { + --tw-translate-x: -18rem; } - .lg\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:-translate-x-80 { + --tw-translate-x: -20rem; } - .lg\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:-translate-x-96 { + --tw-translate-x: -24rem; } - .lg\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:-translate-x-px { + --tw-translate-x: -1px; } - .lg\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .lg\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .lg\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .lg\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .lg\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .lg\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .lg\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .lg\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .lg\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .lg\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .lg\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:translate-x-full { + --tw-translate-x: 100%; } - .lg\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .lg\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .lg\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .lg\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .lg\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .lg\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .lg\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:-translate-x-full { + --tw-translate-x: -100%; } - .lg\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:translate-y-0 { + --tw-translate-y: 0px; } - .lg\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .lg\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .lg\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .lg\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:translate-y-4 { + --tw-translate-y: 1rem; } - .lg\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .lg\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .lg\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .lg\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:translate-y-8 { + --tw-translate-y: 2rem; } - .lg\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .lg\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .lg\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .lg\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:translate-y-12 { + --tw-translate-y: 3rem; } - .lg\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .lg\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:translate-y-16 { + --tw-translate-y: 4rem; } - .lg\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .lg\:translate-y-20 { + --tw-translate-y: 5rem; } - .lg\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .lg\:translate-y-24 { + --tw-translate-y: 6rem; } - .lg\:focus\:to-black:focus { - --tw-gradient-to: #000; + .lg\:translate-y-28 { + --tw-translate-y: 7rem; } - .lg\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .lg\:translate-y-32 { + --tw-translate-y: 8rem; } - .lg\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .lg\:translate-y-36 { + --tw-translate-y: 9rem; } - .lg\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .lg\:translate-y-40 { + --tw-translate-y: 10rem; } - .lg\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .lg\:translate-y-44 { + --tw-translate-y: 11rem; } - .lg\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .lg\:translate-y-48 { + --tw-translate-y: 12rem; } - .lg\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .lg\:translate-y-52 { + --tw-translate-y: 13rem; } - .lg\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .lg\:translate-y-56 { + --tw-translate-y: 14rem; } - .lg\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .lg\:translate-y-60 { + --tw-translate-y: 15rem; } - .lg\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .lg\:translate-y-64 { + --tw-translate-y: 16rem; } - .lg\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .lg\:translate-y-72 { + --tw-translate-y: 18rem; } - .lg\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .lg\:translate-y-80 { + --tw-translate-y: 20rem; } - .lg\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .lg\:translate-y-96 { + --tw-translate-y: 24rem; } - .lg\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .lg\:translate-y-px { + --tw-translate-y: 1px; } - .lg\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .lg\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .lg\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .lg\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .lg\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .lg\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .lg\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .lg\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .lg\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .lg\:-translate-y-0 { + --tw-translate-y: 0px; } - .lg\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .lg\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .lg\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .lg\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .lg\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .lg\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .lg\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .lg\:-translate-y-4 { + --tw-translate-y: -1rem; } - .lg\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .lg\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .lg\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .lg\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .lg\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .lg\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .lg\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .lg\:-translate-y-8 { + --tw-translate-y: -2rem; } - .lg\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .lg\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .lg\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .lg\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .lg\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .lg\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .lg\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .lg\:-translate-y-12 { + --tw-translate-y: -3rem; } - .lg\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .lg\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .lg\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .lg\:-translate-y-16 { + --tw-translate-y: -4rem; } - .lg\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .lg\:-translate-y-20 { + --tw-translate-y: -5rem; } - .lg\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .lg\:-translate-y-24 { + --tw-translate-y: -6rem; } - .lg\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .lg\:-translate-y-28 { + --tw-translate-y: -7rem; } - .lg\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .lg\:-translate-y-32 { + --tw-translate-y: -8rem; } - .lg\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .lg\:-translate-y-36 { + --tw-translate-y: -9rem; } - .lg\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .lg\:-translate-y-40 { + --tw-translate-y: -10rem; } - .lg\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .lg\:-translate-y-44 { + --tw-translate-y: -11rem; } - .lg\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .lg\:-translate-y-48 { + --tw-translate-y: -12rem; } - .lg\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .lg\:-translate-y-52 { + --tw-translate-y: -13rem; } - .lg\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .lg\:-translate-y-56 { + --tw-translate-y: -14rem; } - .lg\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .lg\:-translate-y-60 { + --tw-translate-y: -15rem; } - .lg\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .lg\:-translate-y-64 { + --tw-translate-y: -16rem; } - .lg\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .lg\:-translate-y-72 { + --tw-translate-y: -18rem; } - .lg\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .lg\:-translate-y-80 { + --tw-translate-y: -20rem; } - .lg\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .lg\:-translate-y-96 { + --tw-translate-y: -24rem; } - .lg\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .lg\:-translate-y-px { + --tw-translate-y: -1px; } - .lg\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .lg\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .lg\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .lg\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .lg\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .lg\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .lg\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .lg\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .lg\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .lg\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .lg\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .lg\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .lg\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .lg\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .lg\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .lg\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .lg\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .lg\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .lg\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .lg\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .lg\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .lg\:translate-y-full { + --tw-translate-y: 100%; } - .lg\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .lg\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .lg\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .lg\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .lg\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .lg\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .lg\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .lg\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .lg\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .lg\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .lg\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .lg\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .lg\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .lg\:-translate-y-full { + --tw-translate-y: -100%; } - .lg\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .lg\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .lg\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .lg\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .lg\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .lg\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .lg\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .lg\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .lg\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .lg\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .lg\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .lg\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .lg\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .lg\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .lg\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .lg\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .lg\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .lg\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .lg\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .lg\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .lg\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .lg\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .lg\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .lg\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .lg\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .lg\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .lg\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .lg\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .lg\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .lg\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .lg\:bg-bottom { - background-position: bottom; + .lg\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .lg\:bg-center { - background-position: center; + .lg\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .lg\:bg-left { - background-position: left; + .lg\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .lg\:bg-left-bottom { - background-position: left bottom; + .lg\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .lg\:bg-left-top { - background-position: left top; + .lg\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .lg\:bg-right { - background-position: right; + .lg\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .lg\:bg-right-bottom { - background-position: right bottom; + .lg\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .lg\:bg-right-top { - background-position: right top; + .lg\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .lg\:bg-top { - background-position: top; + .lg\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .lg\:bg-repeat { - background-repeat: repeat; + .lg\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .lg\:bg-no-repeat { - background-repeat: no-repeat; + .lg\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .lg\:bg-repeat-x { - background-repeat: repeat-x; + .lg\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .lg\:bg-repeat-y { - background-repeat: repeat-y; + .lg\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .lg\:bg-repeat-round { - background-repeat: round; + .lg\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .lg\:bg-repeat-space { - background-repeat: space; + .lg\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .lg\:bg-auto { - background-size: auto; + .lg\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .lg\:bg-cover { - background-size: cover; + .lg\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .lg\:bg-contain { - background-size: contain; + .lg\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .lg\:bg-origin-border { - background-origin: border-box; + .lg\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .lg\:bg-origin-padding { - background-origin: padding-box; + .lg\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .lg\:bg-origin-content { - background-origin: content-box; + .lg\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .lg\:border-collapse { - border-collapse: collapse; + .lg\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .lg\:border-separate { - border-collapse: separate; + .lg\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .lg\:border-transparent { - border-color: transparent; + .lg\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .lg\:border-current { - border-color: currentColor; + .lg\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .lg\:border-black { - border-color: #000; + .lg\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .lg\:border-white { - border-color: #fff; + .lg\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .lg\:border-gray-50 { - border-color: #f9fafb; + .lg\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .lg\:border-gray-100 { - border-color: #f3f4f6; + .lg\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .lg\:border-gray-200 { - border-color: #e5e7eb; + .lg\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .lg\:border-gray-300 { - border-color: #d1d5db; + .lg\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .lg\:border-gray-400 { - border-color: #9ca3af; + .lg\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .lg\:border-gray-500 { - border-color: #6b7280; + .lg\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .lg\:border-gray-600 { - border-color: #4b5563; + .lg\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .lg\:border-gray-700 { - border-color: #374151; + .lg\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .lg\:border-gray-800 { - border-color: #1f2937; + .lg\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .lg\:border-gray-900 { - border-color: #111827; + .lg\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .lg\:border-red-50 { - border-color: #fef2f2; + .lg\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .lg\:border-red-100 { - border-color: #fee2e2; + .lg\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .lg\:border-red-200 { - border-color: #fecaca; + .lg\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .lg\:border-red-300 { - border-color: #fca5a5; + .lg\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .lg\:border-red-400 { - border-color: #f87171; + .lg\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .lg\:border-red-500 { - border-color: #ef4444; + .lg\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .lg\:border-red-600 { - border-color: #dc2626; + .lg\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .lg\:border-red-700 { - border-color: #b91c1c; + .lg\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .lg\:border-red-800 { - border-color: #991b1b; + .lg\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .lg\:border-red-900 { - border-color: #7f1d1d; + .lg\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .lg\:border-yellow-50 { - border-color: #fffbeb; + .lg\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .lg\:border-yellow-100 { - border-color: #fef3c7; + .lg\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .lg\:border-yellow-200 { - border-color: #fde68a; + .lg\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .lg\:border-yellow-300 { - border-color: #fcd34d; + .lg\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .lg\:border-yellow-400 { - border-color: #fbbf24; + .lg\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .lg\:border-yellow-500 { - border-color: #f59e0b; + .lg\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .lg\:border-yellow-600 { - border-color: #d97706; + .lg\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .lg\:border-yellow-700 { - border-color: #b45309; + .lg\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .lg\:border-yellow-800 { - border-color: #92400e; + .lg\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .lg\:border-yellow-900 { - border-color: #78350f; + .lg\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .lg\:border-green-50 { - border-color: #ecfdf5; + .lg\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .lg\:border-green-100 { - border-color: #d1fae5; + .lg\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .lg\:border-green-200 { - border-color: #a7f3d0; + .lg\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .lg\:border-green-300 { - border-color: #6ee7b7; + .lg\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .lg\:border-green-400 { - border-color: #34d399; + .lg\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .lg\:border-green-500 { - border-color: #10b981; + .lg\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .lg\:border-green-600 { - border-color: #059669; + .lg\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .lg\:border-green-700 { - border-color: #047857; + .lg\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .lg\:border-green-800 { - border-color: #065f46; + .lg\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .lg\:border-green-900 { - border-color: #064e3b; + .lg\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .lg\:border-blue-50 { - border-color: #eff6ff; + .lg\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .lg\:border-blue-100 { - border-color: #dbeafe; + .lg\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .lg\:border-blue-200 { - border-color: #bfdbfe; + .lg\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .lg\:border-blue-300 { - border-color: #93c5fd; + .lg\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .lg\:border-blue-400 { - border-color: #60a5fa; + .lg\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .lg\:border-blue-500 { - border-color: #3b82f6; + .lg\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .lg\:border-blue-600 { - border-color: #2563eb; + .lg\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .lg\:border-blue-700 { - border-color: #1d4ed8; + .lg\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .lg\:border-blue-800 { - border-color: #1e40af; + .lg\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .lg\:border-blue-900 { - border-color: #1e3a8a; + .lg\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .lg\:border-indigo-50 { - border-color: #eef2ff; + .lg\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .lg\:border-indigo-100 { - border-color: #e0e7ff; + .lg\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .lg\:border-indigo-200 { - border-color: #c7d2fe; + .lg\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .lg\:border-indigo-300 { - border-color: #a5b4fc; + .lg\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .lg\:border-indigo-400 { - border-color: #818cf8; + .lg\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .lg\:border-indigo-500 { - border-color: #6366f1; + .lg\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .lg\:border-indigo-600 { - border-color: #4f46e5; + .lg\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .lg\:border-indigo-700 { - border-color: #4338ca; + .lg\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .lg\:border-indigo-800 { - border-color: #3730a3; + .lg\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .lg\:border-indigo-900 { - border-color: #312e81; + .lg\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .lg\:border-purple-50 { - border-color: #f5f3ff; + .lg\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .lg\:border-purple-100 { - border-color: #ede9fe; + .lg\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .lg\:border-purple-200 { - border-color: #ddd6fe; + .lg\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .lg\:border-purple-300 { - border-color: #c4b5fd; + .lg\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .lg\:border-purple-400 { - border-color: #a78bfa; + .lg\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .lg\:border-purple-500 { - border-color: #8b5cf6; + .lg\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .lg\:border-purple-600 { - border-color: #7c3aed; + .lg\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .lg\:border-purple-700 { - border-color: #6d28d9; + .lg\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .lg\:border-purple-800 { - border-color: #5b21b6; + .lg\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .lg\:border-purple-900 { - border-color: #4c1d95; + .lg\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .lg\:border-pink-50 { - border-color: #fdf2f8; + .lg\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .lg\:border-pink-100 { - border-color: #fce7f3; + .lg\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .lg\:border-pink-200 { - border-color: #fbcfe8; + .lg\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .lg\:border-pink-300 { - border-color: #f9a8d4; + .lg\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .lg\:border-pink-400 { - border-color: #f472b6; + .lg\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .lg\:border-pink-500 { - border-color: #ec4899; + .lg\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .lg\:border-pink-600 { - border-color: #db2777; + .lg\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .lg\:border-pink-700 { - border-color: #be185d; + .lg\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .lg\:border-pink-800 { - border-color: #9d174d; + .lg\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .lg\:border-pink-900 { - border-color: #831843; + .lg\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .group:hover .lg\:group-hover\:border-transparent { - border-color: transparent; + .lg\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .group:hover .lg\:group-hover\:border-current { - border-color: currentColor; + .lg\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .group:hover .lg\:group-hover\:border-black { - border-color: #000; + .lg\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .group:hover .lg\:group-hover\:border-white { - border-color: #fff; + .lg\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .group:hover .lg\:group-hover\:border-gray-50 { - border-color: #f9fafb; + .lg\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .group:hover .lg\:group-hover\:border-gray-100 { - border-color: #f3f4f6; + .lg\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .group:hover .lg\:group-hover\:border-gray-200 { - border-color: #e5e7eb; + .lg\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .group:hover .lg\:group-hover\:border-gray-300 { - border-color: #d1d5db; + .lg\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .group:hover .lg\:group-hover\:border-gray-400 { - border-color: #9ca3af; + .lg\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .group:hover .lg\:group-hover\:border-gray-500 { - border-color: #6b7280; + .lg\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .group:hover .lg\:group-hover\:border-gray-600 { - border-color: #4b5563; + .lg\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .group:hover .lg\:group-hover\:border-gray-700 { - border-color: #374151; + .lg\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .group:hover .lg\:group-hover\:border-gray-800 { - border-color: #1f2937; + .lg\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .group:hover .lg\:group-hover\:border-gray-900 { - border-color: #111827; + .lg\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .group:hover .lg\:group-hover\:border-red-50 { - border-color: #fef2f2; + .lg\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .group:hover .lg\:group-hover\:border-red-100 { - border-color: #fee2e2; + .lg\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .group:hover .lg\:group-hover\:border-red-200 { - border-color: #fecaca; + .lg\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .group:hover .lg\:group-hover\:border-red-300 { - border-color: #fca5a5; + .lg\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .group:hover .lg\:group-hover\:border-red-400 { - border-color: #f87171; + .lg\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .group:hover .lg\:group-hover\:border-red-500 { - border-color: #ef4444; + .lg\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .group:hover .lg\:group-hover\:border-red-600 { - border-color: #dc2626; + .lg\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .group:hover .lg\:group-hover\:border-red-700 { - border-color: #b91c1c; + .lg\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .group:hover .lg\:group-hover\:border-red-800 { - border-color: #991b1b; + .lg\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .group:hover .lg\:group-hover\:border-red-900 { - border-color: #7f1d1d; + .lg\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .group:hover .lg\:group-hover\:border-yellow-50 { - border-color: #fffbeb; + .lg\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .group:hover .lg\:group-hover\:border-yellow-100 { - border-color: #fef3c7; + .lg\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .group:hover .lg\:group-hover\:border-yellow-200 { - border-color: #fde68a; + .lg\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .group:hover .lg\:group-hover\:border-yellow-300 { - border-color: #fcd34d; + .lg\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .group:hover .lg\:group-hover\:border-yellow-400 { - border-color: #fbbf24; + .lg\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .group:hover .lg\:group-hover\:border-yellow-500 { - border-color: #f59e0b; + .lg\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .group:hover .lg\:group-hover\:border-yellow-600 { - border-color: #d97706; + .lg\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .group:hover .lg\:group-hover\:border-yellow-700 { - border-color: #b45309; + .lg\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .group:hover .lg\:group-hover\:border-yellow-800 { - border-color: #92400e; + .lg\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .group:hover .lg\:group-hover\:border-yellow-900 { - border-color: #78350f; + .lg\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .group:hover .lg\:group-hover\:border-green-50 { - border-color: #ecfdf5; + .lg\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .group:hover .lg\:group-hover\:border-green-100 { - border-color: #d1fae5; + .lg\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .group:hover .lg\:group-hover\:border-green-200 { - border-color: #a7f3d0; + .lg\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .group:hover .lg\:group-hover\:border-green-300 { - border-color: #6ee7b7; + .lg\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .group:hover .lg\:group-hover\:border-green-400 { - border-color: #34d399; + .lg\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .group:hover .lg\:group-hover\:border-green-500 { - border-color: #10b981; + .lg\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .group:hover .lg\:group-hover\:border-green-600 { - border-color: #059669; + .lg\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .group:hover .lg\:group-hover\:border-green-700 { - border-color: #047857; + .lg\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .group:hover .lg\:group-hover\:border-green-800 { - border-color: #065f46; + .lg\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .group:hover .lg\:group-hover\:border-green-900 { - border-color: #064e3b; + .lg\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .group:hover .lg\:group-hover\:border-blue-50 { - border-color: #eff6ff; + .lg\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .group:hover .lg\:group-hover\:border-blue-100 { - border-color: #dbeafe; + .lg\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .group:hover .lg\:group-hover\:border-blue-200 { - border-color: #bfdbfe; + .lg\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .lg\:group-hover\:border-blue-300 { - border-color: #93c5fd; + .lg\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .group:hover .lg\:group-hover\:border-blue-400 { - border-color: #60a5fa; + .lg\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .group:hover .lg\:group-hover\:border-blue-500 { - border-color: #3b82f6; + .lg\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .group:hover .lg\:group-hover\:border-blue-600 { - border-color: #2563eb; + .lg\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .group:hover .lg\:group-hover\:border-blue-700 { - border-color: #1d4ed8; + .lg\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .group:hover .lg\:group-hover\:border-blue-800 { - border-color: #1e40af; + .lg\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .group:hover .lg\:group-hover\:border-blue-900 { - border-color: #1e3a8a; + .lg\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .group:hover .lg\:group-hover\:border-indigo-50 { - border-color: #eef2ff; + .lg\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .lg\:group-hover\:border-indigo-100 { - border-color: #e0e7ff; + .lg\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .lg\:group-hover\:border-indigo-200 { - border-color: #c7d2fe; + .lg\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .lg\:group-hover\:border-indigo-300 { - border-color: #a5b4fc; + .lg\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .lg\:group-hover\:border-indigo-400 { - border-color: #818cf8; + .lg\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .lg\:group-hover\:border-indigo-500 { - border-color: #6366f1; + .lg\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .lg\:group-hover\:border-indigo-600 { - border-color: #4f46e5; + .lg\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .lg\:group-hover\:border-indigo-700 { - border-color: #4338ca; + .lg\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .lg\:group-hover\:border-indigo-800 { - border-color: #3730a3; + .lg\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .lg\:group-hover\:border-indigo-900 { - border-color: #312e81; + .lg\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .lg\:group-hover\:border-purple-50 { - border-color: #f5f3ff; + .lg\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .lg\:group-hover\:border-purple-100 { - border-color: #ede9fe; + .lg\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .lg\:group-hover\:border-purple-200 { - border-color: #ddd6fe; + .lg\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .lg\:group-hover\:border-purple-300 { - border-color: #c4b5fd; + .lg\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .lg\:group-hover\:border-purple-400 { - border-color: #a78bfa; + .lg\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .lg\:group-hover\:border-purple-500 { - border-color: #8b5cf6; + .lg\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .lg\:group-hover\:border-purple-600 { - border-color: #7c3aed; + .lg\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .lg\:group-hover\:border-purple-700 { - border-color: #6d28d9; + .lg\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .lg\:group-hover\:border-purple-800 { - border-color: #5b21b6; + .lg\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .lg\:group-hover\:border-purple-900 { - border-color: #4c1d95; + .lg\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .lg\:group-hover\:border-pink-50 { - border-color: #fdf2f8; + .lg\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .lg\:group-hover\:border-pink-100 { - border-color: #fce7f3; + .lg\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .lg\:group-hover\:border-pink-200 { - border-color: #fbcfe8; + .lg\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .lg\:group-hover\:border-pink-300 { - border-color: #f9a8d4; + .lg\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .lg\:group-hover\:border-pink-400 { - border-color: #f472b6; + .lg\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .lg\:group-hover\:border-pink-500 { - border-color: #ec4899; + .lg\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .lg\:group-hover\:border-pink-600 { - border-color: #db2777; + .lg\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .lg\:group-hover\:border-pink-700 { - border-color: #be185d; + .lg\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .lg\:group-hover\:border-pink-800 { - border-color: #9d174d; + .lg\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .lg\:group-hover\:border-pink-900 { - border-color: #831843; + .lg\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .lg\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .lg\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .lg\:focus-within\:border-current:focus-within { - border-color: currentColor; + .lg\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .lg\:focus-within\:border-black:focus-within { - border-color: #000; + .lg\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .lg\:focus-within\:border-white:focus-within { - border-color: #fff; + .lg\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .lg\:focus-within\:border-gray-50:focus-within { - border-color: #f9fafb; + .lg\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .lg\:focus-within\:border-gray-100:focus-within { - border-color: #f3f4f6; + .lg\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .lg\:focus-within\:border-gray-200:focus-within { - border-color: #e5e7eb; + .lg\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - .lg\:focus-within\:border-gray-300:focus-within { - border-color: #d1d5db; + .lg\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .lg\:focus-within\:border-gray-400:focus-within { - border-color: #9ca3af; + .lg\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .lg\:focus-within\:border-gray-500:focus-within { - border-color: #6b7280; + .lg\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .lg\:focus-within\:border-gray-600:focus-within { - border-color: #4b5563; + .lg\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .lg\:focus-within\:border-gray-700:focus-within { - border-color: #374151; + .lg\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .lg\:focus-within\:border-gray-800:focus-within { - border-color: #1f2937; + .lg\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .lg\:focus-within\:border-gray-900:focus-within { - border-color: #111827; + .lg\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .lg\:focus-within\:border-red-50:focus-within { - border-color: #fef2f2; + .lg\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .lg\:focus-within\:border-red-100:focus-within { - border-color: #fee2e2; + .lg\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .lg\:focus-within\:border-red-200:focus-within { - border-color: #fecaca; + .lg\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .lg\:focus-within\:border-red-300:focus-within { - border-color: #fca5a5; + .lg\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .lg\:focus-within\:border-red-400:focus-within { - border-color: #f87171; + .lg\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .lg\:focus-within\:border-red-500:focus-within { - border-color: #ef4444; + .lg\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .lg\:focus-within\:border-red-600:focus-within { - border-color: #dc2626; + .lg\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .lg\:focus-within\:border-red-700:focus-within { - border-color: #b91c1c; + .lg\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .lg\:focus-within\:border-red-800:focus-within { - border-color: #991b1b; + .lg\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .lg\:focus-within\:border-red-900:focus-within { - border-color: #7f1d1d; + .lg\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .lg\:focus-within\:border-yellow-50:focus-within { - border-color: #fffbeb; + .lg\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .lg\:focus-within\:border-yellow-100:focus-within { - border-color: #fef3c7; + .lg\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .lg\:focus-within\:border-yellow-200:focus-within { - border-color: #fde68a; + .lg\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .lg\:focus-within\:border-yellow-300:focus-within { - border-color: #fcd34d; + .lg\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .lg\:focus-within\:border-yellow-400:focus-within { - border-color: #fbbf24; + .lg\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .lg\:focus-within\:border-yellow-500:focus-within { - border-color: #f59e0b; + .lg\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .lg\:focus-within\:border-yellow-600:focus-within { - border-color: #d97706; + .lg\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .lg\:focus-within\:border-yellow-700:focus-within { - border-color: #b45309; + .lg\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .lg\:focus-within\:border-yellow-800:focus-within { - border-color: #92400e; + .lg\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .lg\:focus-within\:border-yellow-900:focus-within { - border-color: #78350f; + .lg\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .lg\:focus-within\:border-green-50:focus-within { - border-color: #ecfdf5; + .lg\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .lg\:focus-within\:border-green-100:focus-within { - border-color: #d1fae5; + .lg\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .lg\:focus-within\:border-green-200:focus-within { - border-color: #a7f3d0; + .lg\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .lg\:focus-within\:border-green-300:focus-within { - border-color: #6ee7b7; + .lg\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .lg\:focus-within\:border-green-400:focus-within { - border-color: #34d399; + .lg\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .lg\:focus-within\:border-green-500:focus-within { - border-color: #10b981; + .lg\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .lg\:focus-within\:border-green-600:focus-within { - border-color: #059669; + .lg\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .lg\:focus-within\:border-green-700:focus-within { - border-color: #047857; + .lg\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .lg\:focus-within\:border-green-800:focus-within { - border-color: #065f46; + .lg\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .lg\:focus-within\:border-green-900:focus-within { - border-color: #064e3b; + .lg\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .lg\:focus-within\:border-blue-50:focus-within { - border-color: #eff6ff; + .lg\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .lg\:focus-within\:border-blue-100:focus-within { - border-color: #dbeafe; + .lg\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .lg\:focus-within\:border-blue-200:focus-within { - border-color: #bfdbfe; + .lg\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .lg\:focus-within\:border-blue-300:focus-within { - border-color: #93c5fd; + .lg\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .lg\:focus-within\:border-blue-400:focus-within { - border-color: #60a5fa; + .lg\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .lg\:focus-within\:border-blue-500:focus-within { - border-color: #3b82f6; + .lg\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .lg\:focus-within\:border-blue-600:focus-within { - border-color: #2563eb; + .lg\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .lg\:focus-within\:border-blue-700:focus-within { - border-color: #1d4ed8; + .lg\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .lg\:focus-within\:border-blue-800:focus-within { - border-color: #1e40af; + .lg\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .lg\:focus-within\:border-blue-900:focus-within { - border-color: #1e3a8a; + .lg\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .lg\:focus-within\:border-indigo-50:focus-within { - border-color: #eef2ff; + .lg\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .lg\:focus-within\:border-indigo-100:focus-within { - border-color: #e0e7ff; + .lg\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .lg\:focus-within\:border-indigo-200:focus-within { - border-color: #c7d2fe; + .lg\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .lg\:focus-within\:border-indigo-300:focus-within { - border-color: #a5b4fc; + .lg\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .lg\:focus-within\:border-indigo-400:focus-within { - border-color: #818cf8; + .lg\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .lg\:focus-within\:border-indigo-500:focus-within { - border-color: #6366f1; + .lg\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .lg\:focus-within\:border-indigo-600:focus-within { - border-color: #4f46e5; + .lg\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .lg\:focus-within\:border-indigo-700:focus-within { - border-color: #4338ca; + .lg\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .lg\:focus-within\:border-indigo-800:focus-within { - border-color: #3730a3; + .lg\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .lg\:focus-within\:border-indigo-900:focus-within { - border-color: #312e81; + .lg\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .lg\:focus-within\:border-purple-50:focus-within { - border-color: #f5f3ff; + .lg\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .lg\:focus-within\:border-purple-100:focus-within { - border-color: #ede9fe; + .lg\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .lg\:focus-within\:border-purple-200:focus-within { - border-color: #ddd6fe; + .lg\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .lg\:focus-within\:border-purple-300:focus-within { - border-color: #c4b5fd; + .lg\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .lg\:focus-within\:border-purple-400:focus-within { - border-color: #a78bfa; + .lg\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .lg\:focus-within\:border-purple-500:focus-within { - border-color: #8b5cf6; + .lg\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .lg\:focus-within\:border-purple-600:focus-within { - border-color: #7c3aed; + .lg\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .lg\:focus-within\:border-purple-700:focus-within { - border-color: #6d28d9; + .lg\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .lg\:focus-within\:border-purple-800:focus-within { - border-color: #5b21b6; + .lg\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .lg\:focus-within\:border-purple-900:focus-within { - border-color: #4c1d95; + .lg\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .lg\:focus-within\:border-pink-50:focus-within { - border-color: #fdf2f8; + .lg\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .lg\:focus-within\:border-pink-100:focus-within { - border-color: #fce7f3; + .lg\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .lg\:focus-within\:border-pink-200:focus-within { - border-color: #fbcfe8; + .lg\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .lg\:focus-within\:border-pink-300:focus-within { - border-color: #f9a8d4; + .lg\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .lg\:focus-within\:border-pink-400:focus-within { - border-color: #f472b6; + .lg\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .lg\:focus-within\:border-pink-500:focus-within { - border-color: #ec4899; + .lg\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .lg\:focus-within\:border-pink-600:focus-within { - border-color: #db2777; + .lg\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .lg\:focus-within\:border-pink-700:focus-within { - border-color: #be185d; + .lg\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .lg\:focus-within\:border-pink-800:focus-within { - border-color: #9d174d; + .lg\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .lg\:focus-within\:border-pink-900:focus-within { - border-color: #831843; + .lg\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .lg\:hover\:border-transparent:hover { - border-color: transparent; + .lg\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .lg\:hover\:border-current:hover { - border-color: currentColor; + .lg\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .lg\:hover\:border-black:hover { - border-color: #000; + .lg\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .lg\:hover\:border-white:hover { - border-color: #fff; + .lg\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .lg\:hover\:border-gray-50:hover { - border-color: #f9fafb; + .lg\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .lg\:hover\:border-gray-100:hover { - border-color: #f3f4f6; + .lg\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .lg\:hover\:border-gray-200:hover { - border-color: #e5e7eb; + .lg\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .lg\:hover\:border-gray-300:hover { - border-color: #d1d5db; + .lg\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .lg\:hover\:border-gray-400:hover { - border-color: #9ca3af; + .lg\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .lg\:hover\:border-gray-500:hover { - border-color: #6b7280; + .lg\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .lg\:hover\:border-gray-600:hover { - border-color: #4b5563; + .lg\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .lg\:hover\:border-gray-700:hover { - border-color: #374151; + .lg\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .lg\:hover\:border-gray-800:hover { - border-color: #1f2937; + .lg\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .lg\:hover\:border-gray-900:hover { - border-color: #111827; + .lg\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .lg\:hover\:border-red-50:hover { - border-color: #fef2f2; + .lg\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .lg\:hover\:border-red-100:hover { - border-color: #fee2e2; + .lg\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .lg\:hover\:border-red-200:hover { - border-color: #fecaca; + .lg\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .lg\:hover\:border-red-300:hover { - border-color: #fca5a5; + .lg\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .lg\:hover\:border-red-400:hover { - border-color: #f87171; + .lg\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .lg\:hover\:border-red-500:hover { - border-color: #ef4444; + .lg\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .lg\:hover\:border-red-600:hover { - border-color: #dc2626; + .lg\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .lg\:hover\:border-red-700:hover { - border-color: #b91c1c; + .lg\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .lg\:hover\:border-red-800:hover { - border-color: #991b1b; + .lg\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .lg\:hover\:border-red-900:hover { - border-color: #7f1d1d; + .lg\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .lg\:hover\:border-yellow-50:hover { - border-color: #fffbeb; + .lg\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .lg\:hover\:border-yellow-100:hover { - border-color: #fef3c7; + .lg\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .lg\:hover\:border-yellow-200:hover { - border-color: #fde68a; + .lg\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .lg\:hover\:border-yellow-300:hover { - border-color: #fcd34d; + .lg\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .lg\:hover\:border-yellow-400:hover { - border-color: #fbbf24; + .lg\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .lg\:hover\:border-yellow-500:hover { - border-color: #f59e0b; + .lg\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .lg\:hover\:border-yellow-600:hover { - border-color: #d97706; + .lg\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .lg\:hover\:border-yellow-700:hover { - border-color: #b45309; + .lg\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .lg\:hover\:border-yellow-800:hover { - border-color: #92400e; + .lg\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .lg\:hover\:border-yellow-900:hover { - border-color: #78350f; + .lg\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .lg\:hover\:border-green-50:hover { - border-color: #ecfdf5; + .lg\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .lg\:hover\:border-green-100:hover { - border-color: #d1fae5; + .lg\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .lg\:hover\:border-green-200:hover { - border-color: #a7f3d0; + .lg\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .lg\:hover\:border-green-300:hover { - border-color: #6ee7b7; + .lg\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .lg\:hover\:border-green-400:hover { - border-color: #34d399; + .lg\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .lg\:hover\:border-green-500:hover { - border-color: #10b981; + .lg\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .lg\:hover\:border-green-600:hover { - border-color: #059669; + .lg\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .lg\:hover\:border-green-700:hover { - border-color: #047857; + .lg\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .lg\:hover\:border-green-800:hover { - border-color: #065f46; + .lg\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .lg\:hover\:border-green-900:hover { - border-color: #064e3b; + .lg\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .lg\:hover\:border-blue-50:hover { - border-color: #eff6ff; + .lg\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .lg\:hover\:border-blue-100:hover { - border-color: #dbeafe; + .lg\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .lg\:hover\:border-blue-200:hover { - border-color: #bfdbfe; + .lg\:rotate-0 { + --tw-rotate: 0deg; } - .lg\:hover\:border-blue-300:hover { - border-color: #93c5fd; + .lg\:rotate-1 { + --tw-rotate: 1deg; } - .lg\:hover\:border-blue-400:hover { - border-color: #60a5fa; + .lg\:rotate-2 { + --tw-rotate: 2deg; } - .lg\:hover\:border-blue-500:hover { - border-color: #3b82f6; + .lg\:rotate-3 { + --tw-rotate: 3deg; } - .lg\:hover\:border-blue-600:hover { - border-color: #2563eb; + .lg\:rotate-6 { + --tw-rotate: 6deg; } - .lg\:hover\:border-blue-700:hover { - border-color: #1d4ed8; + .lg\:rotate-12 { + --tw-rotate: 12deg; } - .lg\:hover\:border-blue-800:hover { - border-color: #1e40af; + .lg\:rotate-45 { + --tw-rotate: 45deg; } - .lg\:hover\:border-blue-900:hover { - border-color: #1e3a8a; + .lg\:rotate-90 { + --tw-rotate: 90deg; } - .lg\:hover\:border-indigo-50:hover { - border-color: #eef2ff; + .lg\:rotate-180 { + --tw-rotate: 180deg; } - .lg\:hover\:border-indigo-100:hover { - border-color: #e0e7ff; + .lg\:-rotate-180 { + --tw-rotate: -180deg; } - .lg\:hover\:border-indigo-200:hover { - border-color: #c7d2fe; + .lg\:-rotate-90 { + --tw-rotate: -90deg; } - .lg\:hover\:border-indigo-300:hover { - border-color: #a5b4fc; + .lg\:-rotate-45 { + --tw-rotate: -45deg; } - .lg\:hover\:border-indigo-400:hover { - border-color: #818cf8; + .lg\:-rotate-12 { + --tw-rotate: -12deg; } - .lg\:hover\:border-indigo-500:hover { - border-color: #6366f1; + .lg\:-rotate-6 { + --tw-rotate: -6deg; } - .lg\:hover\:border-indigo-600:hover { - border-color: #4f46e5; + .lg\:-rotate-3 { + --tw-rotate: -3deg; } - .lg\:hover\:border-indigo-700:hover { - border-color: #4338ca; + .lg\:-rotate-2 { + --tw-rotate: -2deg; } - .lg\:hover\:border-indigo-800:hover { - border-color: #3730a3; + .lg\:-rotate-1 { + --tw-rotate: -1deg; } - .lg\:hover\:border-indigo-900:hover { - border-color: #312e81; + .lg\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .lg\:hover\:border-purple-50:hover { - border-color: #f5f3ff; + .lg\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .lg\:hover\:border-purple-100:hover { - border-color: #ede9fe; + .lg\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .lg\:hover\:border-purple-200:hover { - border-color: #ddd6fe; + .lg\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .lg\:hover\:border-purple-300:hover { - border-color: #c4b5fd; + .lg\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .lg\:hover\:border-purple-400:hover { - border-color: #a78bfa; + .lg\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .lg\:hover\:border-purple-500:hover { - border-color: #8b5cf6; + .lg\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .lg\:hover\:border-purple-600:hover { - border-color: #7c3aed; + .lg\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .lg\:hover\:border-purple-700:hover { - border-color: #6d28d9; + .lg\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .lg\:hover\:border-purple-800:hover { - border-color: #5b21b6; + .lg\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .lg\:hover\:border-purple-900:hover { - border-color: #4c1d95; + .lg\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .lg\:hover\:border-pink-50:hover { - border-color: #fdf2f8; + .lg\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .lg\:hover\:border-pink-100:hover { - border-color: #fce7f3; + .lg\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .lg\:hover\:border-pink-200:hover { - border-color: #fbcfe8; + .lg\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .lg\:hover\:border-pink-300:hover { - border-color: #f9a8d4; + .lg\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .lg\:hover\:border-pink-400:hover { - border-color: #f472b6; + .lg\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .lg\:hover\:border-pink-500:hover { - border-color: #ec4899; + .lg\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .lg\:hover\:border-pink-600:hover { - border-color: #db2777; + .lg\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .lg\:hover\:border-pink-700:hover { - border-color: #be185d; + .lg\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .lg\:hover\:border-pink-800:hover { - border-color: #9d174d; + .lg\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .lg\:hover\:border-pink-900:hover { - border-color: #831843; + .lg\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .lg\:focus\:border-transparent:focus { - border-color: transparent; + .lg\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .lg\:focus\:border-current:focus { - border-color: currentColor; + .lg\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .lg\:focus\:border-black:focus { - border-color: #000; + .lg\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .lg\:focus\:border-white:focus { - border-color: #fff; + .lg\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .lg\:focus\:border-gray-50:focus { - border-color: #f9fafb; + .lg\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .lg\:focus\:border-gray-100:focus { - border-color: #f3f4f6; + .lg\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .lg\:focus\:border-gray-200:focus { - border-color: #e5e7eb; + .lg\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .lg\:focus\:border-gray-300:focus { - border-color: #d1d5db; + .lg\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .lg\:focus\:border-gray-400:focus { - border-color: #9ca3af; + .lg\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .lg\:focus\:border-gray-500:focus { - border-color: #6b7280; + .lg\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .lg\:focus\:border-gray-600:focus { - border-color: #4b5563; + .lg\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .lg\:focus\:border-gray-700:focus { - border-color: #374151; + .lg\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .lg\:focus\:border-gray-800:focus { - border-color: #1f2937; + .lg\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .lg\:focus\:border-gray-900:focus { - border-color: #111827; + .lg\:skew-x-0 { + --tw-skew-x: 0deg; } - .lg\:focus\:border-red-50:focus { - border-color: #fef2f2; + .lg\:skew-x-1 { + --tw-skew-x: 1deg; } - .lg\:focus\:border-red-100:focus { - border-color: #fee2e2; + .lg\:skew-x-2 { + --tw-skew-x: 2deg; } - .lg\:focus\:border-red-200:focus { - border-color: #fecaca; + .lg\:skew-x-3 { + --tw-skew-x: 3deg; } - .lg\:focus\:border-red-300:focus { - border-color: #fca5a5; + .lg\:skew-x-6 { + --tw-skew-x: 6deg; } - .lg\:focus\:border-red-400:focus { - border-color: #f87171; + .lg\:skew-x-12 { + --tw-skew-x: 12deg; } - .lg\:focus\:border-red-500:focus { - border-color: #ef4444; + .lg\:-skew-x-12 { + --tw-skew-x: -12deg; } - .lg\:focus\:border-red-600:focus { - border-color: #dc2626; + .lg\:-skew-x-6 { + --tw-skew-x: -6deg; } - .lg\:focus\:border-red-700:focus { - border-color: #b91c1c; + .lg\:-skew-x-3 { + --tw-skew-x: -3deg; } - .lg\:focus\:border-red-800:focus { - border-color: #991b1b; + .lg\:-skew-x-2 { + --tw-skew-x: -2deg; } - .lg\:focus\:border-red-900:focus { - border-color: #7f1d1d; + .lg\:-skew-x-1 { + --tw-skew-x: -1deg; } - .lg\:focus\:border-yellow-50:focus { - border-color: #fffbeb; + .lg\:skew-y-0 { + --tw-skew-y: 0deg; } - .lg\:focus\:border-yellow-100:focus { - border-color: #fef3c7; + .lg\:skew-y-1 { + --tw-skew-y: 1deg; } - .lg\:focus\:border-yellow-200:focus { - border-color: #fde68a; + .lg\:skew-y-2 { + --tw-skew-y: 2deg; } - .lg\:focus\:border-yellow-300:focus { - border-color: #fcd34d; + .lg\:skew-y-3 { + --tw-skew-y: 3deg; } - .lg\:focus\:border-yellow-400:focus { - border-color: #fbbf24; + .lg\:skew-y-6 { + --tw-skew-y: 6deg; } - .lg\:focus\:border-yellow-500:focus { - border-color: #f59e0b; + .lg\:skew-y-12 { + --tw-skew-y: 12deg; } - .lg\:focus\:border-yellow-600:focus { - border-color: #d97706; + .lg\:-skew-y-12 { + --tw-skew-y: -12deg; } - .lg\:focus\:border-yellow-700:focus { - border-color: #b45309; + .lg\:-skew-y-6 { + --tw-skew-y: -6deg; } - .lg\:focus\:border-yellow-800:focus { - border-color: #92400e; + .lg\:-skew-y-3 { + --tw-skew-y: -3deg; } - .lg\:focus\:border-yellow-900:focus { - border-color: #78350f; + .lg\:-skew-y-2 { + --tw-skew-y: -2deg; } - .lg\:focus\:border-green-50:focus { - border-color: #ecfdf5; + .lg\:-skew-y-1 { + --tw-skew-y: -1deg; } - .lg\:focus\:border-green-100:focus { - border-color: #d1fae5; + .lg\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .lg\:focus\:border-green-200:focus { - border-color: #a7f3d0; + .lg\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .lg\:focus\:border-green-300:focus { - border-color: #6ee7b7; + .lg\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .lg\:focus\:border-green-400:focus { - border-color: #34d399; + .lg\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .lg\:focus\:border-green-500:focus { - border-color: #10b981; + .lg\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .lg\:focus\:border-green-600:focus { - border-color: #059669; + .lg\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .lg\:focus\:border-green-700:focus { - border-color: #047857; + .lg\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .lg\:focus\:border-green-800:focus { - border-color: #065f46; + .lg\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .lg\:focus\:border-green-900:focus { - border-color: #064e3b; + .lg\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .lg\:focus\:border-blue-50:focus { - border-color: #eff6ff; + .lg\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .lg\:focus\:border-blue-100:focus { - border-color: #dbeafe; + .lg\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .lg\:focus\:border-blue-200:focus { - border-color: #bfdbfe; + .lg\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .lg\:focus\:border-blue-300:focus { - border-color: #93c5fd; + .lg\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .lg\:focus\:border-blue-400:focus { - border-color: #60a5fa; + .lg\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .lg\:focus\:border-blue-500:focus { - border-color: #3b82f6; + .lg\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .lg\:focus\:border-blue-600:focus { - border-color: #2563eb; + .lg\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .lg\:focus\:border-blue-700:focus { - border-color: #1d4ed8; + .lg\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .lg\:focus\:border-blue-800:focus { - border-color: #1e40af; + .lg\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .lg\:focus\:border-blue-900:focus { - border-color: #1e3a8a; + .lg\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .lg\:focus\:border-indigo-50:focus { - border-color: #eef2ff; + .lg\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .lg\:focus\:border-indigo-100:focus { - border-color: #e0e7ff; + .lg\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .lg\:focus\:border-indigo-200:focus { - border-color: #c7d2fe; + .lg\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .lg\:focus\:border-indigo-300:focus { - border-color: #a5b4fc; + .lg\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .lg\:focus\:border-indigo-400:focus { - border-color: #818cf8; + .lg\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .lg\:focus\:border-indigo-500:focus { - border-color: #6366f1; + .lg\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .lg\:focus\:border-indigo-600:focus { - border-color: #4f46e5; + .lg\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .lg\:focus\:border-indigo-700:focus { - border-color: #4338ca; + .lg\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .lg\:focus\:border-indigo-800:focus { - border-color: #3730a3; + .lg\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .lg\:focus\:border-indigo-900:focus { - border-color: #312e81; + .lg\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .lg\:focus\:border-purple-50:focus { - border-color: #f5f3ff; + .lg\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .lg\:focus\:border-purple-100:focus { - border-color: #ede9fe; + .lg\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .lg\:focus\:border-purple-200:focus { - border-color: #ddd6fe; + .lg\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .lg\:focus\:border-purple-300:focus { - border-color: #c4b5fd; + .lg\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .lg\:focus\:border-purple-400:focus { - border-color: #a78bfa; + .lg\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .lg\:focus\:border-purple-500:focus { - border-color: #8b5cf6; + .lg\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .lg\:focus\:border-purple-600:focus { - border-color: #7c3aed; + .lg\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .lg\:focus\:border-purple-700:focus { - border-color: #6d28d9; + .lg\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .lg\:focus\:border-purple-800:focus { - border-color: #5b21b6; + .lg\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .lg\:focus\:border-purple-900:focus { - border-color: #4c1d95; + .lg\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .lg\:focus\:border-pink-50:focus { - border-color: #fdf2f8; + .lg\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .lg\:focus\:border-pink-100:focus { - border-color: #fce7f3; + .lg\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .lg\:focus\:border-pink-200:focus { - border-color: #fbcfe8; + .lg\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .lg\:focus\:border-pink-300:focus { - border-color: #f9a8d4; + .lg\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .lg\:focus\:border-pink-400:focus { - border-color: #f472b6; + .lg\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .lg\:focus\:border-pink-500:focus { - border-color: #ec4899; + .lg\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:focus\:border-pink-600:focus { - border-color: #db2777; + .lg\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:focus\:border-pink-700:focus { - border-color: #be185d; + .lg\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:focus\:border-pink-800:focus { - border-color: #9d174d; + .lg\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:focus\:border-pink-900:focus { - border-color: #831843; + .lg\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:rounded-none { - border-radius: 0px; + .lg\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:rounded-sm { - border-radius: 0.125rem; + .lg\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:rounded { - border-radius: 0.25rem; + .lg\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:rounded-md { - border-radius: 0.375rem; + .lg\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:rounded-lg { - border-radius: 0.5rem; + .lg\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:rounded-xl { - border-radius: 0.75rem; + .lg\:scale-x-0 { + --tw-scale-x: 0; } - .lg\:rounded-2xl { - border-radius: 1rem; + .lg\:scale-x-50 { + --tw-scale-x: .5; } - .lg\:rounded-3xl { - border-radius: 1.5rem; + .lg\:scale-x-75 { + --tw-scale-x: .75; } - .lg\:rounded-full { - border-radius: 9999px; + .lg\:scale-x-90 { + --tw-scale-x: .9; } - .lg\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .lg\:scale-x-95 { + --tw-scale-x: .95; } - .lg\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .lg\:scale-x-100 { + --tw-scale-x: 1; } - .lg\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .lg\:scale-x-105 { + --tw-scale-x: 1.05; } - .lg\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .lg\:scale-x-110 { + --tw-scale-x: 1.1; } - .lg\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .lg\:scale-x-125 { + --tw-scale-x: 1.25; } - .lg\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .lg\:scale-x-150 { + --tw-scale-x: 1.5; } - .lg\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .lg\:scale-y-0 { + --tw-scale-y: 0; } - .lg\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .lg\:scale-y-50 { + --tw-scale-y: .5; } - .lg\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .lg\:scale-y-75 { + --tw-scale-y: .75; } - .lg\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .lg\:scale-y-90 { + --tw-scale-y: .9; } - .lg\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .lg\:scale-y-95 { + --tw-scale-y: .95; } - .lg\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .lg\:scale-y-100 { + --tw-scale-y: 1; } - .lg\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .lg\:scale-y-105 { + --tw-scale-y: 1.05; } - .lg\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .lg\:scale-y-110 { + --tw-scale-y: 1.1; } - .lg\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .lg\:scale-y-125 { + --tw-scale-y: 1.25; } - .lg\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .lg\:scale-y-150 { + --tw-scale-y: 1.5; } - .lg\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .lg\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .lg\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .lg\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .lg\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .lg\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .lg\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .lg\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .lg\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .lg\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .lg\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .lg\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .lg\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .lg\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .lg\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .lg\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .lg\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .lg\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .lg\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .lg\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .lg\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .lg\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .lg\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .lg\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .lg\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .lg\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .lg\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .lg\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .lg\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .lg\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .lg\:rounded-tl-none { - border-top-left-radius: 0px; + .lg\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .lg\:rounded-tr-none { - border-top-right-radius: 0px; + .lg\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .lg\:rounded-br-none { - border-bottom-right-radius: 0px; + .lg\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .lg\:rounded-bl-none { - border-bottom-left-radius: 0px; + .lg\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .lg\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .lg\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .lg\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .lg\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .lg\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .lg\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .lg\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .lg\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .lg\:rounded-tl { - border-top-left-radius: 0.25rem; + .lg\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .lg\:rounded-tr { - border-top-right-radius: 0.25rem; + .lg\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .lg\:rounded-br { - border-bottom-right-radius: 0.25rem; + .lg\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .lg\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .lg\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .lg\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .lg\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .lg\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .lg\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .lg\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .lg\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .lg\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .lg\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .lg\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .lg\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .lg\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .lg\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .lg\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .lg\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .lg\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .lg\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .lg\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .lg\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .lg\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .lg\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .lg\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .lg\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .lg\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .lg\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .lg\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .lg\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .lg\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .lg\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .lg\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .lg\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .lg\:rounded-tl-full { - border-top-left-radius: 9999px; + .lg\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .lg\:rounded-tr-full { - border-top-right-radius: 9999px; + .lg\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .lg\:rounded-br-full { - border-bottom-right-radius: 9999px; + .lg\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .lg\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .lg\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .lg\:border-solid { - border-style: solid; + .lg\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .lg\:border-dashed { - border-style: dashed; + .lg\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .lg\:border-dotted { - border-style: dotted; + .lg\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .lg\:border-double { - border-style: double; + .lg\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .lg\:border-none { - border-style: none; + .lg\:animate-none { + animation: none; } - .lg\:border-0 { - border-width: 0px; + .lg\:animate-spin { + animation: spin 1s linear infinite; } - .lg\:border-2 { - border-width: 2px; + .lg\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .lg\:border-4 { - border-width: 4px; + .lg\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .lg\:border-8 { - border-width: 8px; + .lg\:animate-bounce { + animation: bounce 1s infinite; } - .lg\:border { - border-width: 1px; + .lg\:cursor-auto { + cursor: auto; } - .lg\:border-t-0 { - border-top-width: 0px; + .lg\:cursor-default { + cursor: default; } - .lg\:border-r-0 { - border-right-width: 0px; + .lg\:cursor-pointer { + cursor: pointer; } - .lg\:border-b-0 { - border-bottom-width: 0px; + .lg\:cursor-wait { + cursor: wait; } - .lg\:border-l-0 { - border-left-width: 0px; + .lg\:cursor-text { + cursor: text; } - .lg\:border-t-2 { - border-top-width: 2px; + .lg\:cursor-move { + cursor: move; } - .lg\:border-r-2 { - border-right-width: 2px; + .lg\:cursor-help { + cursor: help; } - .lg\:border-b-2 { - border-bottom-width: 2px; + .lg\:cursor-not-allowed { + cursor: not-allowed; } - .lg\:border-l-2 { - border-left-width: 2px; + .lg\:select-none { + user-select: none; } - .lg\:border-t-4 { - border-top-width: 4px; + .lg\:select-text { + user-select: text; } - .lg\:border-r-4 { - border-right-width: 4px; + .lg\:select-all { + user-select: all; } - .lg\:border-b-4 { - border-bottom-width: 4px; + .lg\:select-auto { + user-select: auto; } - .lg\:border-l-4 { - border-left-width: 4px; + .lg\:resize-none { + resize: none; } - .lg\:border-t-8 { - border-top-width: 8px; + .lg\:resize-y { + resize: vertical; } - .lg\:border-r-8 { - border-right-width: 8px; + .lg\:resize-x { + resize: horizontal; } - .lg\:border-b-8 { - border-bottom-width: 8px; + .lg\:resize { + resize: both; } - .lg\:border-l-8 { - border-left-width: 8px; + .lg\:list-inside { + list-style-position: inside; } - .lg\:border-t { - border-top-width: 1px; + .lg\:list-outside { + list-style-position: outside; } - .lg\:border-r { - border-right-width: 1px; + .lg\:list-none { + list-style-type: none; } - .lg\:border-b { - border-bottom-width: 1px; + .lg\:list-disc { + list-style-type: disc; } - .lg\:border-l { - border-left-width: 1px; + .lg\:list-decimal { + list-style-type: decimal; } - .lg\:decoration-slice { - box-decoration-break: slice; + .lg\:appearance-none { + appearance: none; } - .lg\:decoration-clone { - box-decoration-break: clone; + .lg\:auto-cols-auto { + grid-auto-columns: auto; } - .lg\:box-border { - box-sizing: border-box; + .lg\:auto-cols-min { + grid-auto-columns: min-content; } - .lg\:box-content { - box-sizing: content-box; + .lg\:auto-cols-max { + grid-auto-columns: max-content; } - .lg\:cursor-auto { - cursor: auto; + .lg\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .lg\:cursor-default { - cursor: default; + .lg\:grid-flow-row { + grid-auto-flow: row; } - .lg\:cursor-pointer { - cursor: pointer; + .lg\:grid-flow-col { + grid-auto-flow: column; } - .lg\:cursor-wait { - cursor: wait; + .lg\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .lg\:cursor-text { - cursor: text; + .lg\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .lg\:cursor-move { - cursor: move; + .lg\:auto-rows-auto { + grid-auto-rows: auto; } - .lg\:cursor-help { - cursor: help; + .lg\:auto-rows-min { + grid-auto-rows: min-content; } - .lg\:cursor-not-allowed { - cursor: not-allowed; + .lg\:auto-rows-max { + grid-auto-rows: max-content; } - .lg\:block { - display: block; + .lg\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .lg\:inline-block { - display: inline-block; + .lg\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .lg\:inline { - display: inline; + .lg\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .lg\:flex { - display: flex; + .lg\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .lg\:inline-flex { - display: inline-flex; + .lg\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .lg\:table { - display: table; + .lg\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .lg\:inline-table { - display: inline-table; + .lg\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .lg\:table-caption { - display: table-caption; + .lg\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .lg\:table-cell { - display: table-cell; + .lg\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .lg\:table-column { - display: table-column; + .lg\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .lg\:table-column-group { - display: table-column-group; + .lg\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .lg\:table-footer-group { - display: table-footer-group; + .lg\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .lg\:table-header-group { - display: table-header-group; + .lg\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .lg\:table-row-group { - display: table-row-group; + .lg\:grid-cols-none { + grid-template-columns: none; } - .lg\:table-row { - display: table-row; + .lg\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .lg\:flow-root { - display: flow-root; + .lg\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .lg\:grid { - display: grid; + .lg\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .lg\:inline-grid { - display: inline-grid; + .lg\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .lg\:contents { - display: contents; + .lg\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .lg\:list-item { - display: list-item; + .lg\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .lg\:hidden { - display: none; + .lg\:grid-rows-none { + grid-template-rows: none; } .lg\:flex-row { @@ -89186,22 +89973,6 @@ video { flex-wrap: nowrap; } - .lg\:place-items-start { - place-items: start; - } - - .lg\:place-items-end { - place-items: end; - } - - .lg\:place-items-center { - place-items: center; - } - - .lg\:place-items-stretch { - place-items: stretch; - } - .lg\:place-content-center { place-content: center; } @@ -89230,44 +90001,20 @@ video { place-content: stretch; } - .lg\:place-self-auto { - place-self: auto; - } - - .lg\:place-self-start { - place-self: start; - } - - .lg\:place-self-end { - place-self: end; - } - - .lg\:place-self-center { - place-self: center; - } - - .lg\:place-self-stretch { - place-self: stretch; - } - - .lg\:items-start { - align-items: flex-start; - } - - .lg\:items-end { - align-items: flex-end; + .lg\:place-items-start { + place-items: start; } - .lg\:items-center { - align-items: center; + .lg\:place-items-end { + place-items: end; } - .lg\:items-baseline { - align-items: baseline; + .lg\:place-items-center { + place-items: center; } - .lg\:items-stretch { - align-items: stretch; + .lg\:place-items-stretch { + place-items: stretch; } .lg\:content-center { @@ -89294,24 +90041,48 @@ video { align-content: space-evenly; } - .lg\:self-auto { - align-self: auto; + .lg\:items-start { + align-items: flex-start; } - .lg\:self-start { - align-self: flex-start; + .lg\:items-end { + align-items: flex-end; } - .lg\:self-end { - align-self: flex-end; + .lg\:items-center { + align-items: center; } - .lg\:self-center { - align-self: center; + .lg\:items-baseline { + align-items: baseline; } - .lg\:self-stretch { - align-self: stretch; + .lg\:items-stretch { + align-items: stretch; + } + + .lg\:justify-start { + justify-content: flex-start; + } + + .lg\:justify-end { + justify-content: flex-end; + } + + .lg\:justify-center { + justify-content: center; + } + + .lg\:justify-between { + justify-content: space-between; + } + + .lg\:justify-around { + justify-content: space-around; + } + + .lg\:justify-evenly { + justify-content: space-evenly; } .lg\:justify-items-start { @@ -89330,10885 +90101,10587 @@ video { justify-items: stretch; } - .lg\:justify-start { - justify-content: flex-start; + .lg\:gap-0 { + gap: 0px; } - .lg\:justify-end { - justify-content: flex-end; + .lg\:gap-1 { + gap: 0.25rem; } - .lg\:justify-center { - justify-content: center; + .lg\:gap-2 { + gap: 0.5rem; } - .lg\:justify-between { - justify-content: space-between; + .lg\:gap-3 { + gap: 0.75rem; } - .lg\:justify-around { - justify-content: space-around; + .lg\:gap-4 { + gap: 1rem; } - .lg\:justify-evenly { - justify-content: space-evenly; + .lg\:gap-5 { + gap: 1.25rem; } - .lg\:justify-self-auto { - justify-self: auto; + .lg\:gap-6 { + gap: 1.5rem; } - .lg\:justify-self-start { - justify-self: start; + .lg\:gap-7 { + gap: 1.75rem; } - .lg\:justify-self-end { - justify-self: end; + .lg\:gap-8 { + gap: 2rem; } - .lg\:justify-self-center { - justify-self: center; + .lg\:gap-9 { + gap: 2.25rem; } - .lg\:justify-self-stretch { - justify-self: stretch; + .lg\:gap-10 { + gap: 2.5rem; } - .lg\:flex-1 { - flex: 1 1 0%; + .lg\:gap-11 { + gap: 2.75rem; } - .lg\:flex-auto { - flex: 1 1 auto; + .lg\:gap-12 { + gap: 3rem; } - .lg\:flex-initial { - flex: 0 1 auto; + .lg\:gap-14 { + gap: 3.5rem; } - .lg\:flex-none { - flex: none; + .lg\:gap-16 { + gap: 4rem; } - .lg\:flex-grow-0 { - flex-grow: 0; + .lg\:gap-20 { + gap: 5rem; } - .lg\:flex-grow { - flex-grow: 1; + .lg\:gap-24 { + gap: 6rem; } - .lg\:flex-shrink-0 { - flex-shrink: 0; + .lg\:gap-28 { + gap: 7rem; } - .lg\:flex-shrink { - flex-shrink: 1; + .lg\:gap-32 { + gap: 8rem; } - .lg\:order-1 { - order: 1; + .lg\:gap-36 { + gap: 9rem; } - .lg\:order-2 { - order: 2; + .lg\:gap-40 { + gap: 10rem; } - .lg\:order-3 { - order: 3; + .lg\:gap-44 { + gap: 11rem; } - .lg\:order-4 { - order: 4; + .lg\:gap-48 { + gap: 12rem; } - .lg\:order-5 { - order: 5; + .lg\:gap-52 { + gap: 13rem; } - .lg\:order-6 { - order: 6; + .lg\:gap-56 { + gap: 14rem; } - .lg\:order-7 { - order: 7; + .lg\:gap-60 { + gap: 15rem; } - .lg\:order-8 { - order: 8; + .lg\:gap-64 { + gap: 16rem; } - .lg\:order-9 { - order: 9; + .lg\:gap-72 { + gap: 18rem; } - .lg\:order-10 { - order: 10; + .lg\:gap-80 { + gap: 20rem; } - .lg\:order-11 { - order: 11; + .lg\:gap-96 { + gap: 24rem; } - .lg\:order-12 { - order: 12; + .lg\:gap-px { + gap: 1px; } - .lg\:order-first { - order: -9999; + .lg\:gap-0\.5 { + gap: 0.125rem; } - .lg\:order-last { - order: 9999; + .lg\:gap-1\.5 { + gap: 0.375rem; } - .lg\:order-none { - order: 0; + .lg\:gap-2\.5 { + gap: 0.625rem; } - .lg\:float-right { - float: right; + .lg\:gap-3\.5 { + gap: 0.875rem; } - .lg\:float-left { - float: left; + .lg\:gap-x-0 { + column-gap: 0px; } - .lg\:float-none { - float: none; + .lg\:gap-x-1 { + column-gap: 0.25rem; } - .lg\:clear-left { - clear: left; + .lg\:gap-x-2 { + column-gap: 0.5rem; } - .lg\:clear-right { - clear: right; + .lg\:gap-x-3 { + column-gap: 0.75rem; } - .lg\:clear-both { - clear: both; + .lg\:gap-x-4 { + column-gap: 1rem; } - .lg\:clear-none { - clear: none; + .lg\:gap-x-5 { + column-gap: 1.25rem; } - .lg\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .lg\:gap-x-6 { + column-gap: 1.5rem; } - .lg\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .lg\:gap-x-7 { + column-gap: 1.75rem; } - .lg\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .lg\:gap-x-8 { + column-gap: 2rem; } - .lg\:font-thin { - font-weight: 100; + .lg\:gap-x-9 { + column-gap: 2.25rem; } - .lg\:font-extralight { - font-weight: 200; + .lg\:gap-x-10 { + column-gap: 2.5rem; } - .lg\:font-light { - font-weight: 300; + .lg\:gap-x-11 { + column-gap: 2.75rem; } - .lg\:font-normal { - font-weight: 400; + .lg\:gap-x-12 { + column-gap: 3rem; } - .lg\:font-medium { - font-weight: 500; + .lg\:gap-x-14 { + column-gap: 3.5rem; } - .lg\:font-semibold { - font-weight: 600; + .lg\:gap-x-16 { + column-gap: 4rem; } - .lg\:font-bold { - font-weight: 700; + .lg\:gap-x-20 { + column-gap: 5rem; } - .lg\:font-extrabold { - font-weight: 800; + .lg\:gap-x-24 { + column-gap: 6rem; } - .lg\:font-black { - font-weight: 900; + .lg\:gap-x-28 { + column-gap: 7rem; } - .lg\:h-0 { - height: 0px; + .lg\:gap-x-32 { + column-gap: 8rem; } - .lg\:h-1 { - height: 0.25rem; + .lg\:gap-x-36 { + column-gap: 9rem; } - .lg\:h-2 { - height: 0.5rem; + .lg\:gap-x-40 { + column-gap: 10rem; } - .lg\:h-3 { - height: 0.75rem; + .lg\:gap-x-44 { + column-gap: 11rem; } - .lg\:h-4 { - height: 1rem; + .lg\:gap-x-48 { + column-gap: 12rem; } - .lg\:h-5 { - height: 1.25rem; + .lg\:gap-x-52 { + column-gap: 13rem; } - .lg\:h-6 { - height: 1.5rem; + .lg\:gap-x-56 { + column-gap: 14rem; } - .lg\:h-7 { - height: 1.75rem; + .lg\:gap-x-60 { + column-gap: 15rem; } - .lg\:h-8 { - height: 2rem; + .lg\:gap-x-64 { + column-gap: 16rem; } - .lg\:h-9 { - height: 2.25rem; + .lg\:gap-x-72 { + column-gap: 18rem; } - .lg\:h-10 { - height: 2.5rem; + .lg\:gap-x-80 { + column-gap: 20rem; } - .lg\:h-11 { - height: 2.75rem; + .lg\:gap-x-96 { + column-gap: 24rem; } - .lg\:h-12 { - height: 3rem; + .lg\:gap-x-px { + column-gap: 1px; } - .lg\:h-14 { - height: 3.5rem; + .lg\:gap-x-0\.5 { + column-gap: 0.125rem; } - .lg\:h-16 { - height: 4rem; + .lg\:gap-x-1\.5 { + column-gap: 0.375rem; } - .lg\:h-20 { - height: 5rem; + .lg\:gap-x-2\.5 { + column-gap: 0.625rem; } - .lg\:h-24 { - height: 6rem; + .lg\:gap-x-3\.5 { + column-gap: 0.875rem; } - .lg\:h-28 { - height: 7rem; + .lg\:gap-y-0 { + row-gap: 0px; } - .lg\:h-32 { - height: 8rem; + .lg\:gap-y-1 { + row-gap: 0.25rem; } - .lg\:h-36 { - height: 9rem; + .lg\:gap-y-2 { + row-gap: 0.5rem; } - .lg\:h-40 { - height: 10rem; + .lg\:gap-y-3 { + row-gap: 0.75rem; + } + + .lg\:gap-y-4 { + row-gap: 1rem; } - .lg\:h-44 { - height: 11rem; + .lg\:gap-y-5 { + row-gap: 1.25rem; } - .lg\:h-48 { - height: 12rem; + .lg\:gap-y-6 { + row-gap: 1.5rem; } - .lg\:h-52 { - height: 13rem; + .lg\:gap-y-7 { + row-gap: 1.75rem; } - .lg\:h-56 { - height: 14rem; + .lg\:gap-y-8 { + row-gap: 2rem; } - .lg\:h-60 { - height: 15rem; + .lg\:gap-y-9 { + row-gap: 2.25rem; } - .lg\:h-64 { - height: 16rem; + .lg\:gap-y-10 { + row-gap: 2.5rem; } - .lg\:h-72 { - height: 18rem; + .lg\:gap-y-11 { + row-gap: 2.75rem; } - .lg\:h-80 { - height: 20rem; + .lg\:gap-y-12 { + row-gap: 3rem; } - .lg\:h-96 { - height: 24rem; + .lg\:gap-y-14 { + row-gap: 3.5rem; } - .lg\:h-auto { - height: auto; + .lg\:gap-y-16 { + row-gap: 4rem; } - .lg\:h-px { - height: 1px; + .lg\:gap-y-20 { + row-gap: 5rem; } - .lg\:h-0\.5 { - height: 0.125rem; + .lg\:gap-y-24 { + row-gap: 6rem; } - .lg\:h-1\.5 { - height: 0.375rem; + .lg\:gap-y-28 { + row-gap: 7rem; } - .lg\:h-2\.5 { - height: 0.625rem; + .lg\:gap-y-32 { + row-gap: 8rem; } - .lg\:h-3\.5 { - height: 0.875rem; + .lg\:gap-y-36 { + row-gap: 9rem; } - .lg\:h-1\/2 { - height: 50%; + .lg\:gap-y-40 { + row-gap: 10rem; } - .lg\:h-1\/3 { - height: 33.333333%; + .lg\:gap-y-44 { + row-gap: 11rem; } - .lg\:h-2\/3 { - height: 66.666667%; + .lg\:gap-y-48 { + row-gap: 12rem; } - .lg\:h-1\/4 { - height: 25%; + .lg\:gap-y-52 { + row-gap: 13rem; } - .lg\:h-2\/4 { - height: 50%; + .lg\:gap-y-56 { + row-gap: 14rem; } - .lg\:h-3\/4 { - height: 75%; + .lg\:gap-y-60 { + row-gap: 15rem; } - .lg\:h-1\/5 { - height: 20%; + .lg\:gap-y-64 { + row-gap: 16rem; } - .lg\:h-2\/5 { - height: 40%; + .lg\:gap-y-72 { + row-gap: 18rem; } - .lg\:h-3\/5 { - height: 60%; + .lg\:gap-y-80 { + row-gap: 20rem; } - .lg\:h-4\/5 { - height: 80%; + .lg\:gap-y-96 { + row-gap: 24rem; } - .lg\:h-1\/6 { - height: 16.666667%; + .lg\:gap-y-px { + row-gap: 1px; } - .lg\:h-2\/6 { - height: 33.333333%; + .lg\:gap-y-0\.5 { + row-gap: 0.125rem; } - .lg\:h-3\/6 { - height: 50%; + .lg\:gap-y-1\.5 { + row-gap: 0.375rem; } - .lg\:h-4\/6 { - height: 66.666667%; + .lg\:gap-y-2\.5 { + row-gap: 0.625rem; } - .lg\:h-5\/6 { - height: 83.333333%; + .lg\:gap-y-3\.5 { + row-gap: 0.875rem; } - .lg\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .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\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .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\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .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\:leading-7 { - line-height: 1.75rem; + .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\:leading-8 { - line-height: 2rem; + .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\:leading-9 { - line-height: 2.25rem; + .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\:leading-10 { - line-height: 2.5rem; + .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\:leading-none { - line-height: 1; + .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\:leading-tight { - line-height: 1.25; + .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\:leading-snug { - line-height: 1.375; + .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\:leading-normal { - line-height: 1.5; + .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\:leading-relaxed { - line-height: 1.625; + .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\:leading-loose { - line-height: 2; + .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\:list-inside { - list-style-position: inside; + .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\:list-outside { - list-style-position: outside; + .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\:list-none { - list-style-type: none; + .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\:list-disc { - list-style-type: disc; + .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\:list-decimal { - list-style-type: decimal; + .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\:m-0 { - margin: 0px; + .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\:m-1 { - margin: 0.25rem; + .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\:m-2 { - margin: 0.5rem; + .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\:m-3 { - margin: 0.75rem; + .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\:m-4 { - margin: 1rem; + .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\:m-5 { - margin: 1.25rem; + .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\:m-6 { - margin: 1.5rem; + .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\:m-7 { - margin: 1.75rem; + .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\:m-8 { - margin: 2rem; + .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\:m-9 { - margin: 2.25rem; + .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\:m-10 { - margin: 2.5rem; + .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\:m-11 { - margin: 2.75rem; + .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\:m-12 { - margin: 3rem; + .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\:m-14 { - margin: 3.5rem; + .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\:m-16 { - margin: 4rem; + .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\:m-20 { - margin: 5rem; + .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\:m-24 { - margin: 6rem; + .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\:m-28 { - margin: 7rem; + .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\:m-32 { - margin: 8rem; + .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\:m-36 { - margin: 9rem; + .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\:m-40 { - margin: 10rem; + .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\:m-44 { - margin: 11rem; + .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\:m-48 { - margin: 12rem; + .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\:m-52 { - margin: 13rem; + .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\:m-56 { - margin: 14rem; + .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\:m-60 { - margin: 15rem; + .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\:m-64 { - margin: 16rem; + .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\:m-72 { - margin: 18rem; + .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\:m-80 { - margin: 20rem; + .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\:m-96 { - margin: 24rem; + .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\:m-auto { - margin: auto; + .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\:m-px { - margin: 1px; + .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\:m-0\.5 { - margin: 0.125rem; + .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\:m-1\.5 { - margin: 0.375rem; + .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\:m-2\.5 { - margin: 0.625rem; + .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\:m-3\.5 { - margin: 0.875rem; + .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\:-m-0 { - margin: 0px; + .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\:-m-1 { - margin: -0.25rem; + .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\:-m-2 { - margin: -0.5rem; + .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\:-m-3 { - margin: -0.75rem; + .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\:-m-4 { - margin: -1rem; + .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\:-m-5 { - margin: -1.25rem; + .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\:-m-6 { - margin: -1.5rem; + .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\:-m-7 { - margin: -1.75rem; + .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\:-m-8 { - margin: -2rem; + .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\:-m-9 { - margin: -2.25rem; + .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\:-m-10 { - margin: -2.5rem; + .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\:-m-11 { - margin: -2.75rem; + .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\:-m-12 { - margin: -3rem; + .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\:-m-14 { - margin: -3.5rem; + .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\:-m-16 { - margin: -4rem; + .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\:-m-20 { - margin: -5rem; + .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\:-m-24 { - margin: -6rem; + .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\:-m-28 { - margin: -7rem; + .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\:-m-32 { - margin: -8rem; + .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\:-m-36 { - margin: -9rem; + .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\:-m-40 { - margin: -10rem; + .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\:-m-44 { - margin: -11rem; + .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\:-m-48 { - margin: -12rem; + .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\:-m-52 { - margin: -13rem; + .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\:-m-56 { - margin: -14rem; + .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\:-m-60 { - margin: -15rem; + .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\:-m-64 { - margin: -16rem; + .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\:-m-72 { - margin: -18rem; + .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\:-m-80 { - margin: -20rem; + .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\:-m-96 { - margin: -24rem; + .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\:-m-px { - margin: -1px; + .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\:-m-0\.5 { - margin: -0.125rem; + .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\:-m-1\.5 { - margin: -0.375rem; + .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\:-m-2\.5 { - margin: -0.625rem; + .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\:-m-3\.5 { - margin: -0.875rem; + .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\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .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\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .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\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .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\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .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\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .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\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .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\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .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\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .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\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .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\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .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\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .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\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .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\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .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\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .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\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .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\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .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\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .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\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .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\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .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\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .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\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .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\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .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\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .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\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .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\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .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\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .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\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .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\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .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\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .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\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .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\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .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\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .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\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .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\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .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\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .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\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .lg\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .lg\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .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\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .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\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .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\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .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\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .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\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .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\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .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\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .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\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .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\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .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\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .lg\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .lg\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .lg\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .lg\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .lg\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .lg\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .lg\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .lg\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .lg\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .lg\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .lg\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .lg\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .lg\:divide-black > :not([hidden]) ~ :not([hidden]) { + border-color: #000; } - .lg\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .lg\:divide-white > :not([hidden]) ~ :not([hidden]) { + border-color: #fff; } - .lg\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .lg\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9fafb; } - .lg\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #f3f4f6; } - .lg\:my-auto { - margin-top: auto; - margin-bottom: auto; + .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #e5e7eb; } - .lg\:mx-auto { - margin-left: auto; - margin-right: auto; + .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1d5db; } - .lg\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #9ca3af; } - .lg\:mx-px { - margin-left: 1px; - margin-right: 1px; + .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6b7280; } - .lg\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4b5563; } - .lg\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #374151; } - .lg\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1f2937; } - .lg\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #111827; } - .lg\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .lg\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef2f2; } - .lg\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fee2e2; } - .lg\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fecaca; } - .lg\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fca5a5; } - .lg\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f87171; } - .lg\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ef4444; } - .lg\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #dc2626; } - .lg\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b91c1c; } - .lg\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #991b1b; } - .lg\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #7f1d1d; } - .lg\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .lg\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fffbeb; } - .lg\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef3c7; } - .lg\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fde68a; } - .lg\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fcd34d; } - .lg\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbbf24; } - .lg\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #f59e0b; } - .lg\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #d97706; } - .lg\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b45309; } - .lg\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #92400e; } - .lg\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #78350f; } - .lg\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .lg\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #ecfdf5; } - .lg\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1fae5; } - .lg\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #a7f3d0; } - .lg\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #6ee7b7; } - .lg\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #34d399; } - .lg\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #10b981; } - .lg\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #059669; } - .lg\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #047857; } - .lg\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #065f46; } - .lg\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #064e3b; } - .lg\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .lg\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eff6ff; } - .lg\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #dbeafe; } - .lg\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #bfdbfe; } - .lg\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #93c5fd; } - .lg\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #60a5fa; } - .lg\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #3b82f6; } - .lg\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #2563eb; } - .lg\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #1d4ed8; } - .lg\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e40af; } - .lg\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e3a8a; } - .lg\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .lg\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eef2ff; } - .lg\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #e0e7ff; } - .lg\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #c7d2fe; } - .lg\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #a5b4fc; } - .lg\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #818cf8; } - .lg\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6366f1; } - .lg\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4f46e5; } - .lg\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #4338ca; } - .lg\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #3730a3; } - .lg\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #312e81; } - .lg\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .lg\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f5f3ff; } - .lg\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .lg\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #ede9fe; } - .lg\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .lg\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #ddd6fe; } - .lg\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .lg\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #c4b5fd; } - .lg\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .lg\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #a78bfa; } - .lg\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .lg\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #8b5cf6; } - .lg\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .lg\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #7c3aed; } - .lg\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .lg\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #6d28d9; } - .lg\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .lg\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #5b21b6; } - .lg\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .lg\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #4c1d95; } - .lg\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .lg\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fdf2f8; } - .lg\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .lg\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fce7f3; } - .lg\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .lg\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbcfe8; } - .lg\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .lg\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9a8d4; } - .lg\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .lg\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f472b6; } - .lg\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .lg\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ec4899; } - .lg\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .lg\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #db2777; } - .lg\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .lg\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #be185d; } - .lg\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .lg\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #9d174d; } - .lg\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .lg\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #831843; } - .lg\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .lg\:place-self-auto { + place-self: auto; } - .lg\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .lg\:place-self-start { + place-self: start; } - .lg\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .lg\:place-self-end { + place-self: end; } - .lg\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .lg\:place-self-center { + place-self: center; } - .lg\:mt-0 { - margin-top: 0px; + .lg\:place-self-stretch { + place-self: stretch; } - .lg\:mr-0 { - margin-right: 0px; + .lg\:self-auto { + align-self: auto; } - .lg\:mb-0 { - margin-bottom: 0px; + .lg\:self-start { + align-self: flex-start; } - .lg\:ml-0 { - margin-left: 0px; + .lg\:self-end { + align-self: flex-end; } - .lg\:mt-1 { - margin-top: 0.25rem; + .lg\:self-center { + align-self: center; } - .lg\:mr-1 { - margin-right: 0.25rem; + .lg\:self-stretch { + align-self: stretch; } - .lg\:mb-1 { - margin-bottom: 0.25rem; + .lg\:justify-self-auto { + justify-self: auto; } - .lg\:ml-1 { - margin-left: 0.25rem; + .lg\:justify-self-start { + justify-self: start; } - .lg\:mt-2 { - margin-top: 0.5rem; + .lg\:justify-self-end { + justify-self: end; } - .lg\:mr-2 { - margin-right: 0.5rem; + .lg\:justify-self-center { + justify-self: center; } - .lg\:mb-2 { - margin-bottom: 0.5rem; + .lg\:justify-self-stretch { + justify-self: stretch; } - .lg\:ml-2 { - margin-left: 0.5rem; + .lg\:overflow-auto { + overflow: auto; } - .lg\:mt-3 { - margin-top: 0.75rem; + .lg\:overflow-hidden { + overflow: hidden; } - .lg\:mr-3 { - margin-right: 0.75rem; + .lg\:overflow-visible { + overflow: visible; } - .lg\:mb-3 { - margin-bottom: 0.75rem; + .lg\:overflow-scroll { + overflow: scroll; } - .lg\:ml-3 { - margin-left: 0.75rem; + .lg\:overflow-x-auto { + overflow-x: auto; } - .lg\:mt-4 { - margin-top: 1rem; + .lg\:overflow-y-auto { + overflow-y: auto; } - .lg\:mr-4 { - margin-right: 1rem; + .lg\:overflow-x-hidden { + overflow-x: hidden; } - .lg\:mb-4 { - margin-bottom: 1rem; + .lg\:overflow-y-hidden { + overflow-y: hidden; } - .lg\:ml-4 { - margin-left: 1rem; + .lg\:overflow-x-visible { + overflow-x: visible; } - .lg\:mt-5 { - margin-top: 1.25rem; + .lg\:overflow-y-visible { + overflow-y: visible; } - .lg\:mr-5 { - margin-right: 1.25rem; + .lg\:overflow-x-scroll { + overflow-x: scroll; } - .lg\:mb-5 { - margin-bottom: 1.25rem; + .lg\:overflow-y-scroll { + overflow-y: scroll; } - .lg\:ml-5 { - margin-left: 1.25rem; + .lg\:overscroll-auto { + overscroll-behavior: auto; } - .lg\:mt-6 { - margin-top: 1.5rem; + .lg\:overscroll-contain { + overscroll-behavior: contain; } - .lg\:mr-6 { - margin-right: 1.5rem; + .lg\:overscroll-none { + overscroll-behavior: none; } - .lg\:mb-6 { - margin-bottom: 1.5rem; + .lg\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .lg\:ml-6 { - margin-left: 1.5rem; + .lg\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .lg\:mt-7 { - margin-top: 1.75rem; + .lg\:overscroll-y-none { + overscroll-behavior-y: none; } - .lg\:mr-7 { - margin-right: 1.75rem; + .lg\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .lg\:mb-7 { - margin-bottom: 1.75rem; + .lg\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .lg\:ml-7 { - margin-left: 1.75rem; + .lg\:overscroll-x-none { + overscroll-behavior-x: none; } - .lg\:mt-8 { - margin-top: 2rem; + .lg\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .lg\:mr-8 { - margin-right: 2rem; + .lg\:overflow-ellipsis { + text-overflow: ellipsis; } - .lg\:mb-8 { - margin-bottom: 2rem; + .lg\:overflow-clip { + text-overflow: clip; } - .lg\:ml-8 { - margin-left: 2rem; + .lg\:whitespace-normal { + white-space: normal; } - .lg\:mt-9 { - margin-top: 2.25rem; + .lg\:whitespace-nowrap { + white-space: nowrap; } - .lg\:mr-9 { - margin-right: 2.25rem; + .lg\:whitespace-pre { + white-space: pre; } - .lg\:mb-9 { - margin-bottom: 2.25rem; + .lg\:whitespace-pre-line { + white-space: pre-line; } - .lg\:ml-9 { - margin-left: 2.25rem; + .lg\:whitespace-pre-wrap { + white-space: pre-wrap; } - .lg\:mt-10 { - margin-top: 2.5rem; + .lg\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .lg\:mr-10 { - margin-right: 2.5rem; + .lg\:break-words { + overflow-wrap: break-word; } - .lg\:mb-10 { - margin-bottom: 2.5rem; + .lg\:break-all { + word-break: break-all; } - .lg\:ml-10 { - margin-left: 2.5rem; + .lg\:rounded-none { + border-radius: 0px; } - .lg\:mt-11 { - margin-top: 2.75rem; + .lg\:rounded-sm { + border-radius: 0.125rem; } - .lg\:mr-11 { - margin-right: 2.75rem; + .lg\:rounded { + border-radius: 0.25rem; } - .lg\:mb-11 { - margin-bottom: 2.75rem; + .lg\:rounded-md { + border-radius: 0.375rem; } - .lg\:ml-11 { - margin-left: 2.75rem; + .lg\:rounded-lg { + border-radius: 0.5rem; } - .lg\:mt-12 { - margin-top: 3rem; + .lg\:rounded-xl { + border-radius: 0.75rem; } - .lg\:mr-12 { - margin-right: 3rem; + .lg\:rounded-2xl { + border-radius: 1rem; } - .lg\:mb-12 { - margin-bottom: 3rem; + .lg\:rounded-3xl { + border-radius: 1.5rem; } - .lg\:ml-12 { - margin-left: 3rem; + .lg\:rounded-full { + border-radius: 9999px; } - .lg\:mt-14 { - margin-top: 3.5rem; + .lg\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .lg\:mr-14 { - margin-right: 3.5rem; + .lg\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .lg\:mb-14 { - margin-bottom: 3.5rem; + .lg\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .lg\:ml-14 { - margin-left: 3.5rem; + .lg\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .lg\:mt-16 { - margin-top: 4rem; + .lg\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .lg\:mr-16 { - margin-right: 4rem; + .lg\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .lg\:mb-16 { - margin-bottom: 4rem; + .lg\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .lg\:ml-16 { - margin-left: 4rem; + .lg\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .lg\:mt-20 { - margin-top: 5rem; + .lg\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .lg\:mr-20 { - margin-right: 5rem; + .lg\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .lg\:mb-20 { - margin-bottom: 5rem; + .lg\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .lg\:ml-20 { - margin-left: 5rem; + .lg\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .lg\:mt-24 { - margin-top: 6rem; + .lg\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .lg\:mr-24 { - margin-right: 6rem; + .lg\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .lg\:mb-24 { - margin-bottom: 6rem; + .lg\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .lg\:ml-24 { - margin-left: 6rem; + .lg\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .lg\:mt-28 { - margin-top: 7rem; + .lg\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .lg\:mr-28 { - margin-right: 7rem; + .lg\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .lg\:mb-28 { - margin-bottom: 7rem; + .lg\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .lg\:ml-28 { - margin-left: 7rem; + .lg\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .lg\:mt-32 { - margin-top: 8rem; + .lg\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .lg\:mr-32 { - margin-right: 8rem; + .lg\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .lg\:mb-32 { - margin-bottom: 8rem; + .lg\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .lg\:ml-32 { - margin-left: 8rem; + .lg\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .lg\:mt-36 { - margin-top: 9rem; + .lg\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .lg\:mr-36 { - margin-right: 9rem; + .lg\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .lg\:mb-36 { - margin-bottom: 9rem; + .lg\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .lg\:ml-36 { - margin-left: 9rem; + .lg\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .lg\:mt-40 { - margin-top: 10rem; + .lg\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .lg\:mr-40 { - margin-right: 10rem; + .lg\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .lg\:mb-40 { - margin-bottom: 10rem; + .lg\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .lg\:ml-40 { - margin-left: 10rem; + .lg\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .lg\:mt-44 { - margin-top: 11rem; + .lg\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .lg\:mr-44 { - margin-right: 11rem; + .lg\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .lg\:mb-44 { - margin-bottom: 11rem; + .lg\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .lg\:ml-44 { - margin-left: 11rem; + .lg\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .lg\:mt-48 { - margin-top: 12rem; + .lg\:rounded-tl-none { + border-top-left-radius: 0px; } - .lg\:mr-48 { - margin-right: 12rem; + .lg\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .lg\:mb-48 { - margin-bottom: 12rem; + .lg\:rounded-tl { + border-top-left-radius: 0.25rem; } - .lg\:ml-48 { - margin-left: 12rem; + .lg\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .lg\:mt-52 { - margin-top: 13rem; + .lg\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .lg\:mr-52 { - margin-right: 13rem; + .lg\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .lg\:mb-52 { - margin-bottom: 13rem; + .lg\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .lg\:ml-52 { - margin-left: 13rem; + .lg\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .lg\:mt-56 { - margin-top: 14rem; + .lg\:rounded-tl-full { + border-top-left-radius: 9999px; } - .lg\:mr-56 { - margin-right: 14rem; + .lg\:rounded-tr-none { + border-top-right-radius: 0px; } - .lg\:mb-56 { - margin-bottom: 14rem; + .lg\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .lg\:ml-56 { - margin-left: 14rem; + .lg\:rounded-tr { + border-top-right-radius: 0.25rem; } - .lg\:mt-60 { - margin-top: 15rem; + .lg\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .lg\:mr-60 { - margin-right: 15rem; + .lg\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .lg\:mb-60 { - margin-bottom: 15rem; + .lg\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .lg\:ml-60 { - margin-left: 15rem; + .lg\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .lg\:mt-64 { - margin-top: 16rem; + .lg\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .lg\:mr-64 { - margin-right: 16rem; + .lg\:rounded-tr-full { + border-top-right-radius: 9999px; } - .lg\:mb-64 { - margin-bottom: 16rem; + .lg\:rounded-br-none { + border-bottom-right-radius: 0px; } - .lg\:ml-64 { - margin-left: 16rem; + .lg\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .lg\:mt-72 { - margin-top: 18rem; + .lg\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .lg\:mr-72 { - margin-right: 18rem; + .lg\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .lg\:mb-72 { - margin-bottom: 18rem; + .lg\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .lg\:ml-72 { - margin-left: 18rem; + .lg\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .lg\:mt-80 { - margin-top: 20rem; + .lg\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .lg\:mr-80 { - margin-right: 20rem; + .lg\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .lg\:mb-80 { - margin-bottom: 20rem; + .lg\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .lg\:ml-80 { - margin-left: 20rem; + .lg\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .lg\:mt-96 { - margin-top: 24rem; + .lg\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .lg\:mr-96 { - margin-right: 24rem; + .lg\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .lg\:mb-96 { - margin-bottom: 24rem; + .lg\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .lg\:ml-96 { - margin-left: 24rem; + .lg\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .lg\:mt-auto { - margin-top: auto; + .lg\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .lg\:mr-auto { - margin-right: auto; + .lg\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .lg\:mb-auto { - margin-bottom: auto; + .lg\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .lg\:ml-auto { - margin-left: auto; + .lg\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .lg\:mt-px { - margin-top: 1px; + .lg\:border-0 { + border-width: 0px; } - .lg\:mr-px { - margin-right: 1px; + .lg\:border-2 { + border-width: 2px; } - .lg\:mb-px { - margin-bottom: 1px; + .lg\:border-4 { + border-width: 4px; } - .lg\:ml-px { - margin-left: 1px; + .lg\:border-8 { + border-width: 8px; } - .lg\:mt-0\.5 { - margin-top: 0.125rem; + .lg\:border { + border-width: 1px; } - .lg\:mr-0\.5 { - margin-right: 0.125rem; + .lg\:border-t-0 { + border-top-width: 0px; } - .lg\:mb-0\.5 { - margin-bottom: 0.125rem; + .lg\:border-t-2 { + border-top-width: 2px; } - .lg\:ml-0\.5 { - margin-left: 0.125rem; + .lg\:border-t-4 { + border-top-width: 4px; } - .lg\:mt-1\.5 { - margin-top: 0.375rem; + .lg\:border-t-8 { + border-top-width: 8px; } - .lg\:mr-1\.5 { - margin-right: 0.375rem; + .lg\:border-t { + border-top-width: 1px; } - .lg\:mb-1\.5 { - margin-bottom: 0.375rem; + .lg\:border-r-0 { + border-right-width: 0px; } - .lg\:ml-1\.5 { - margin-left: 0.375rem; + .lg\:border-r-2 { + border-right-width: 2px; } - .lg\:mt-2\.5 { - margin-top: 0.625rem; + .lg\:border-r-4 { + border-right-width: 4px; } - .lg\:mr-2\.5 { - margin-right: 0.625rem; + .lg\:border-r-8 { + border-right-width: 8px; } - .lg\:mb-2\.5 { - margin-bottom: 0.625rem; + .lg\:border-r { + border-right-width: 1px; } - .lg\:ml-2\.5 { - margin-left: 0.625rem; + .lg\:border-b-0 { + border-bottom-width: 0px; } - .lg\:mt-3\.5 { - margin-top: 0.875rem; + .lg\:border-b-2 { + border-bottom-width: 2px; } - .lg\:mr-3\.5 { - margin-right: 0.875rem; + .lg\:border-b-4 { + border-bottom-width: 4px; } - .lg\:mb-3\.5 { - margin-bottom: 0.875rem; + .lg\:border-b-8 { + border-bottom-width: 8px; } - .lg\:ml-3\.5 { - margin-left: 0.875rem; + .lg\:border-b { + border-bottom-width: 1px; } - .lg\:-mt-0 { - margin-top: 0px; + .lg\:border-l-0 { + border-left-width: 0px; } - .lg\:-mr-0 { - margin-right: 0px; + .lg\:border-l-2 { + border-left-width: 2px; } - .lg\:-mb-0 { - margin-bottom: 0px; + .lg\:border-l-4 { + border-left-width: 4px; } - .lg\:-ml-0 { - margin-left: 0px; + .lg\:border-l-8 { + border-left-width: 8px; } - .lg\:-mt-1 { - margin-top: -0.25rem; + .lg\:border-l { + border-left-width: 1px; } - .lg\:-mr-1 { - margin-right: -0.25rem; + .lg\:border-solid { + border-style: solid; } - .lg\:-mb-1 { - margin-bottom: -0.25rem; + .lg\:border-dashed { + border-style: dashed; } - .lg\:-ml-1 { - margin-left: -0.25rem; + .lg\:border-dotted { + border-style: dotted; } - .lg\:-mt-2 { - margin-top: -0.5rem; + .lg\:border-double { + border-style: double; } - .lg\:-mr-2 { - margin-right: -0.5rem; + .lg\:border-none { + border-style: none; } - .lg\:-mb-2 { - margin-bottom: -0.5rem; + .lg\:border-transparent { + border-color: transparent; } - .lg\:-ml-2 { - margin-left: -0.5rem; + .lg\:border-current { + border-color: currentColor; } - .lg\:-mt-3 { - margin-top: -0.75rem; + .lg\:border-black { + border-color: #000; } - .lg\:-mr-3 { - margin-right: -0.75rem; + .lg\:border-white { + border-color: #fff; } - .lg\:-mb-3 { - margin-bottom: -0.75rem; + .lg\:border-gray-50 { + border-color: #f9fafb; } - .lg\:-ml-3 { - margin-left: -0.75rem; + .lg\:border-gray-100 { + border-color: #f3f4f6; } - .lg\:-mt-4 { - margin-top: -1rem; + .lg\:border-gray-200 { + border-color: #e5e7eb; } - .lg\:-mr-4 { - margin-right: -1rem; + .lg\:border-gray-300 { + border-color: #d1d5db; } - .lg\:-mb-4 { - margin-bottom: -1rem; + .lg\:border-gray-400 { + border-color: #9ca3af; } - .lg\:-ml-4 { - margin-left: -1rem; + .lg\:border-gray-500 { + border-color: #6b7280; } - .lg\:-mt-5 { - margin-top: -1.25rem; + .lg\:border-gray-600 { + border-color: #4b5563; } - .lg\:-mr-5 { - margin-right: -1.25rem; + .lg\:border-gray-700 { + border-color: #374151; } - .lg\:-mb-5 { - margin-bottom: -1.25rem; + .lg\:border-gray-800 { + border-color: #1f2937; } - .lg\:-ml-5 { - margin-left: -1.25rem; + .lg\:border-gray-900 { + border-color: #111827; } - .lg\:-mt-6 { - margin-top: -1.5rem; + .lg\:border-red-50 { + border-color: #fef2f2; } - .lg\:-mr-6 { - margin-right: -1.5rem; + .lg\:border-red-100 { + border-color: #fee2e2; } - .lg\:-mb-6 { - margin-bottom: -1.5rem; + .lg\:border-red-200 { + border-color: #fecaca; } - .lg\:-ml-6 { - margin-left: -1.5rem; + .lg\:border-red-300 { + border-color: #fca5a5; } - .lg\:-mt-7 { - margin-top: -1.75rem; + .lg\:border-red-400 { + border-color: #f87171; } - .lg\:-mr-7 { - margin-right: -1.75rem; + .lg\:border-red-500 { + border-color: #ef4444; } - .lg\:-mb-7 { - margin-bottom: -1.75rem; + .lg\:border-red-600 { + border-color: #dc2626; } - .lg\:-ml-7 { - margin-left: -1.75rem; + .lg\:border-red-700 { + border-color: #b91c1c; } - .lg\:-mt-8 { - margin-top: -2rem; + .lg\:border-red-800 { + border-color: #991b1b; } - .lg\:-mr-8 { - margin-right: -2rem; + .lg\:border-red-900 { + border-color: #7f1d1d; } - .lg\:-mb-8 { - margin-bottom: -2rem; + .lg\:border-yellow-50 { + border-color: #fffbeb; } - .lg\:-ml-8 { - margin-left: -2rem; + .lg\:border-yellow-100 { + border-color: #fef3c7; } - .lg\:-mt-9 { - margin-top: -2.25rem; + .lg\:border-yellow-200 { + border-color: #fde68a; } - .lg\:-mr-9 { - margin-right: -2.25rem; + .lg\:border-yellow-300 { + border-color: #fcd34d; } - .lg\:-mb-9 { - margin-bottom: -2.25rem; + .lg\:border-yellow-400 { + border-color: #fbbf24; } - .lg\:-ml-9 { - margin-left: -2.25rem; + .lg\:border-yellow-500 { + border-color: #f59e0b; } - .lg\:-mt-10 { - margin-top: -2.5rem; + .lg\:border-yellow-600 { + border-color: #d97706; } - .lg\:-mr-10 { - margin-right: -2.5rem; + .lg\:border-yellow-700 { + border-color: #b45309; } - .lg\:-mb-10 { - margin-bottom: -2.5rem; + .lg\:border-yellow-800 { + border-color: #92400e; } - .lg\:-ml-10 { - margin-left: -2.5rem; + .lg\:border-yellow-900 { + border-color: #78350f; } - .lg\:-mt-11 { - margin-top: -2.75rem; + .lg\:border-green-50 { + border-color: #ecfdf5; } - .lg\:-mr-11 { - margin-right: -2.75rem; + .lg\:border-green-100 { + border-color: #d1fae5; } - .lg\:-mb-11 { - margin-bottom: -2.75rem; + .lg\:border-green-200 { + border-color: #a7f3d0; } - .lg\:-ml-11 { - margin-left: -2.75rem; + .lg\:border-green-300 { + border-color: #6ee7b7; } - .lg\:-mt-12 { - margin-top: -3rem; + .lg\:border-green-400 { + border-color: #34d399; } - .lg\:-mr-12 { - margin-right: -3rem; + .lg\:border-green-500 { + border-color: #10b981; } - .lg\:-mb-12 { - margin-bottom: -3rem; + .lg\:border-green-600 { + border-color: #059669; } - .lg\:-ml-12 { - margin-left: -3rem; + .lg\:border-green-700 { + border-color: #047857; } - .lg\:-mt-14 { - margin-top: -3.5rem; + .lg\:border-green-800 { + border-color: #065f46; } - .lg\:-mr-14 { - margin-right: -3.5rem; + .lg\:border-green-900 { + border-color: #064e3b; } - .lg\:-mb-14 { - margin-bottom: -3.5rem; + .lg\:border-blue-50 { + border-color: #eff6ff; } - .lg\:-ml-14 { - margin-left: -3.5rem; + .lg\:border-blue-100 { + border-color: #dbeafe; } - .lg\:-mt-16 { - margin-top: -4rem; + .lg\:border-blue-200 { + border-color: #bfdbfe; } - .lg\:-mr-16 { - margin-right: -4rem; + .lg\:border-blue-300 { + border-color: #93c5fd; } - .lg\:-mb-16 { - margin-bottom: -4rem; + .lg\:border-blue-400 { + border-color: #60a5fa; } - .lg\:-ml-16 { - margin-left: -4rem; + .lg\:border-blue-500 { + border-color: #3b82f6; } - .lg\:-mt-20 { - margin-top: -5rem; + .lg\:border-blue-600 { + border-color: #2563eb; } - .lg\:-mr-20 { - margin-right: -5rem; + .lg\:border-blue-700 { + border-color: #1d4ed8; } - .lg\:-mb-20 { - margin-bottom: -5rem; + .lg\:border-blue-800 { + border-color: #1e40af; } - .lg\:-ml-20 { - margin-left: -5rem; + .lg\:border-blue-900 { + border-color: #1e3a8a; } - .lg\:-mt-24 { - margin-top: -6rem; + .lg\:border-indigo-50 { + border-color: #eef2ff; } - .lg\:-mr-24 { - margin-right: -6rem; + .lg\:border-indigo-100 { + border-color: #e0e7ff; } - .lg\:-mb-24 { - margin-bottom: -6rem; + .lg\:border-indigo-200 { + border-color: #c7d2fe; } - .lg\:-ml-24 { - margin-left: -6rem; + .lg\:border-indigo-300 { + border-color: #a5b4fc; } - .lg\:-mt-28 { - margin-top: -7rem; + .lg\:border-indigo-400 { + border-color: #818cf8; } - .lg\:-mr-28 { - margin-right: -7rem; + .lg\:border-indigo-500 { + border-color: #6366f1; } - .lg\:-mb-28 { - margin-bottom: -7rem; + .lg\:border-indigo-600 { + border-color: #4f46e5; } - .lg\:-ml-28 { - margin-left: -7rem; + .lg\:border-indigo-700 { + border-color: #4338ca; } - .lg\:-mt-32 { - margin-top: -8rem; + .lg\:border-indigo-800 { + border-color: #3730a3; } - .lg\:-mr-32 { - margin-right: -8rem; + .lg\:border-indigo-900 { + border-color: #312e81; } - .lg\:-mb-32 { - margin-bottom: -8rem; + .lg\:border-purple-50 { + border-color: #f5f3ff; } - .lg\:-ml-32 { - margin-left: -8rem; + .lg\:border-purple-100 { + border-color: #ede9fe; } - .lg\:-mt-36 { - margin-top: -9rem; + .lg\:border-purple-200 { + border-color: #ddd6fe; } - .lg\:-mr-36 { - margin-right: -9rem; + .lg\:border-purple-300 { + border-color: #c4b5fd; } - .lg\:-mb-36 { - margin-bottom: -9rem; + .lg\:border-purple-400 { + border-color: #a78bfa; } - .lg\:-ml-36 { - margin-left: -9rem; + .lg\:border-purple-500 { + border-color: #8b5cf6; } - .lg\:-mt-40 { - margin-top: -10rem; + .lg\:border-purple-600 { + border-color: #7c3aed; } - .lg\:-mr-40 { - margin-right: -10rem; + .lg\:border-purple-700 { + border-color: #6d28d9; } - .lg\:-mb-40 { - margin-bottom: -10rem; + .lg\:border-purple-800 { + border-color: #5b21b6; } - .lg\:-ml-40 { - margin-left: -10rem; + .lg\:border-purple-900 { + border-color: #4c1d95; } - .lg\:-mt-44 { - margin-top: -11rem; + .lg\:border-pink-50 { + border-color: #fdf2f8; } - .lg\:-mr-44 { - margin-right: -11rem; + .lg\:border-pink-100 { + border-color: #fce7f3; } - .lg\:-mb-44 { - margin-bottom: -11rem; + .lg\:border-pink-200 { + border-color: #fbcfe8; } - .lg\:-ml-44 { - margin-left: -11rem; + .lg\:border-pink-300 { + border-color: #f9a8d4; } - .lg\:-mt-48 { - margin-top: -12rem; + .lg\:border-pink-400 { + border-color: #f472b6; } - .lg\:-mr-48 { - margin-right: -12rem; + .lg\:border-pink-500 { + border-color: #ec4899; } - .lg\:-mb-48 { - margin-bottom: -12rem; + .lg\:border-pink-600 { + border-color: #db2777; } - .lg\:-ml-48 { - margin-left: -12rem; + .lg\:border-pink-700 { + border-color: #be185d; } - .lg\:-mt-52 { - margin-top: -13rem; + .lg\:border-pink-800 { + border-color: #9d174d; } - .lg\:-mr-52 { - margin-right: -13rem; + .lg\:border-pink-900 { + border-color: #831843; } - .lg\:-mb-52 { - margin-bottom: -13rem; + .group:hover .lg\:group-hover\:border-transparent { + border-color: transparent; } - .lg\:-ml-52 { - margin-left: -13rem; + .group:hover .lg\:group-hover\:border-current { + border-color: currentColor; } - .lg\:-mt-56 { - margin-top: -14rem; + .group:hover .lg\:group-hover\:border-black { + border-color: #000; } - .lg\:-mr-56 { - margin-right: -14rem; + .group:hover .lg\:group-hover\:border-white { + border-color: #fff; } - .lg\:-mb-56 { - margin-bottom: -14rem; + .group:hover .lg\:group-hover\:border-gray-50 { + border-color: #f9fafb; } - .lg\:-ml-56 { - margin-left: -14rem; + .group:hover .lg\:group-hover\:border-gray-100 { + border-color: #f3f4f6; } - .lg\:-mt-60 { - margin-top: -15rem; + .group:hover .lg\:group-hover\:border-gray-200 { + border-color: #e5e7eb; } - .lg\:-mr-60 { - margin-right: -15rem; + .group:hover .lg\:group-hover\:border-gray-300 { + border-color: #d1d5db; } - .lg\:-mb-60 { - margin-bottom: -15rem; + .group:hover .lg\:group-hover\:border-gray-400 { + border-color: #9ca3af; } - .lg\:-ml-60 { - margin-left: -15rem; + .group:hover .lg\:group-hover\:border-gray-500 { + border-color: #6b7280; } - .lg\:-mt-64 { - margin-top: -16rem; + .group:hover .lg\:group-hover\:border-gray-600 { + border-color: #4b5563; } - .lg\:-mr-64 { - margin-right: -16rem; + .group:hover .lg\:group-hover\:border-gray-700 { + border-color: #374151; } - .lg\:-mb-64 { - margin-bottom: -16rem; + .group:hover .lg\:group-hover\:border-gray-800 { + border-color: #1f2937; } - .lg\:-ml-64 { - margin-left: -16rem; + .group:hover .lg\:group-hover\:border-gray-900 { + border-color: #111827; } - .lg\:-mt-72 { - margin-top: -18rem; + .group:hover .lg\:group-hover\:border-red-50 { + border-color: #fef2f2; } - .lg\:-mr-72 { - margin-right: -18rem; + .group:hover .lg\:group-hover\:border-red-100 { + border-color: #fee2e2; } - .lg\:-mb-72 { - margin-bottom: -18rem; + .group:hover .lg\:group-hover\:border-red-200 { + border-color: #fecaca; } - .lg\:-ml-72 { - margin-left: -18rem; + .group:hover .lg\:group-hover\:border-red-300 { + border-color: #fca5a5; } - .lg\:-mt-80 { - margin-top: -20rem; + .group:hover .lg\:group-hover\:border-red-400 { + border-color: #f87171; } - .lg\:-mr-80 { - margin-right: -20rem; + .group:hover .lg\:group-hover\:border-red-500 { + border-color: #ef4444; } - .lg\:-mb-80 { - margin-bottom: -20rem; + .group:hover .lg\:group-hover\:border-red-600 { + border-color: #dc2626; } - .lg\:-ml-80 { - margin-left: -20rem; + .group:hover .lg\:group-hover\:border-red-700 { + border-color: #b91c1c; } - .lg\:-mt-96 { - margin-top: -24rem; + .group:hover .lg\:group-hover\:border-red-800 { + border-color: #991b1b; } - .lg\:-mr-96 { - margin-right: -24rem; + .group:hover .lg\:group-hover\:border-red-900 { + border-color: #7f1d1d; } - .lg\:-mb-96 { - margin-bottom: -24rem; + .group:hover .lg\:group-hover\:border-yellow-50 { + border-color: #fffbeb; } - .lg\:-ml-96 { - margin-left: -24rem; + .group:hover .lg\:group-hover\:border-yellow-100 { + border-color: #fef3c7; } - .lg\:-mt-px { - margin-top: -1px; + .group:hover .lg\:group-hover\:border-yellow-200 { + border-color: #fde68a; } - .lg\:-mr-px { - margin-right: -1px; + .group:hover .lg\:group-hover\:border-yellow-300 { + border-color: #fcd34d; } - .lg\:-mb-px { - margin-bottom: -1px; + .group:hover .lg\:group-hover\:border-yellow-400 { + border-color: #fbbf24; } - .lg\:-ml-px { - margin-left: -1px; + .group:hover .lg\:group-hover\:border-yellow-500 { + border-color: #f59e0b; } - .lg\:-mt-0\.5 { - margin-top: -0.125rem; + .group:hover .lg\:group-hover\:border-yellow-600 { + border-color: #d97706; } - .lg\:-mr-0\.5 { - margin-right: -0.125rem; + .group:hover .lg\:group-hover\:border-yellow-700 { + border-color: #b45309; } - .lg\:-mb-0\.5 { - margin-bottom: -0.125rem; + .group:hover .lg\:group-hover\:border-yellow-800 { + border-color: #92400e; } - .lg\:-ml-0\.5 { - margin-left: -0.125rem; + .group:hover .lg\:group-hover\:border-yellow-900 { + border-color: #78350f; } - .lg\:-mt-1\.5 { - margin-top: -0.375rem; + .group:hover .lg\:group-hover\:border-green-50 { + border-color: #ecfdf5; } - .lg\:-mr-1\.5 { - margin-right: -0.375rem; + .group:hover .lg\:group-hover\:border-green-100 { + border-color: #d1fae5; } - .lg\:-mb-1\.5 { - margin-bottom: -0.375rem; + .group:hover .lg\:group-hover\:border-green-200 { + border-color: #a7f3d0; } - .lg\:-ml-1\.5 { - margin-left: -0.375rem; + .group:hover .lg\:group-hover\:border-green-300 { + border-color: #6ee7b7; } - .lg\:-mt-2\.5 { - margin-top: -0.625rem; + .group:hover .lg\:group-hover\:border-green-400 { + border-color: #34d399; } - .lg\:-mr-2\.5 { - margin-right: -0.625rem; + .group:hover .lg\:group-hover\:border-green-500 { + border-color: #10b981; } - .lg\:-mb-2\.5 { - margin-bottom: -0.625rem; + .group:hover .lg\:group-hover\:border-green-600 { + border-color: #059669; } - .lg\:-ml-2\.5 { - margin-left: -0.625rem; + .group:hover .lg\:group-hover\:border-green-700 { + border-color: #047857; } - .lg\:-mt-3\.5 { - margin-top: -0.875rem; + .group:hover .lg\:group-hover\:border-green-800 { + border-color: #065f46; } - .lg\:-mr-3\.5 { - margin-right: -0.875rem; + .group:hover .lg\:group-hover\:border-green-900 { + border-color: #064e3b; } - .lg\:-mb-3\.5 { - margin-bottom: -0.875rem; + .group:hover .lg\:group-hover\:border-blue-50 { + border-color: #eff6ff; } - .lg\:-ml-3\.5 { - margin-left: -0.875rem; + .group:hover .lg\:group-hover\:border-blue-100 { + border-color: #dbeafe; } - .lg\:max-h-0 { - max-height: 0px; + .group:hover .lg\:group-hover\:border-blue-200 { + border-color: #bfdbfe; } - .lg\:max-h-1 { - max-height: 0.25rem; + .group:hover .lg\:group-hover\:border-blue-300 { + border-color: #93c5fd; } - .lg\:max-h-2 { - max-height: 0.5rem; + .group:hover .lg\:group-hover\:border-blue-400 { + border-color: #60a5fa; } - .lg\:max-h-3 { - max-height: 0.75rem; + .group:hover .lg\:group-hover\:border-blue-500 { + border-color: #3b82f6; } - .lg\:max-h-4 { - max-height: 1rem; + .group:hover .lg\:group-hover\:border-blue-600 { + border-color: #2563eb; } - .lg\:max-h-5 { - max-height: 1.25rem; + .group:hover .lg\:group-hover\:border-blue-700 { + border-color: #1d4ed8; } - .lg\:max-h-6 { - max-height: 1.5rem; + .group:hover .lg\:group-hover\:border-blue-800 { + border-color: #1e40af; } - .lg\:max-h-7 { - max-height: 1.75rem; + .group:hover .lg\:group-hover\:border-blue-900 { + border-color: #1e3a8a; } - .lg\:max-h-8 { - max-height: 2rem; + .group:hover .lg\:group-hover\:border-indigo-50 { + border-color: #eef2ff; } - .lg\:max-h-9 { - max-height: 2.25rem; + .group:hover .lg\:group-hover\:border-indigo-100 { + border-color: #e0e7ff; } - .lg\:max-h-10 { - max-height: 2.5rem; + .group:hover .lg\:group-hover\:border-indigo-200 { + border-color: #c7d2fe; } - .lg\:max-h-11 { - max-height: 2.75rem; + .group:hover .lg\:group-hover\:border-indigo-300 { + border-color: #a5b4fc; } - .lg\:max-h-12 { - max-height: 3rem; + .group:hover .lg\:group-hover\:border-indigo-400 { + border-color: #818cf8; } - .lg\:max-h-14 { - max-height: 3.5rem; + .group:hover .lg\:group-hover\:border-indigo-500 { + border-color: #6366f1; } - .lg\:max-h-16 { - max-height: 4rem; + .group:hover .lg\:group-hover\:border-indigo-600 { + border-color: #4f46e5; } - .lg\:max-h-20 { - max-height: 5rem; + .group:hover .lg\:group-hover\:border-indigo-700 { + border-color: #4338ca; } - .lg\:max-h-24 { - max-height: 6rem; + .group:hover .lg\:group-hover\:border-indigo-800 { + border-color: #3730a3; } - .lg\:max-h-28 { - max-height: 7rem; + .group:hover .lg\:group-hover\:border-indigo-900 { + border-color: #312e81; } - .lg\:max-h-32 { - max-height: 8rem; + .group:hover .lg\:group-hover\:border-purple-50 { + border-color: #f5f3ff; } - .lg\:max-h-36 { - max-height: 9rem; + .group:hover .lg\:group-hover\:border-purple-100 { + border-color: #ede9fe; } - .lg\:max-h-40 { - max-height: 10rem; + .group:hover .lg\:group-hover\:border-purple-200 { + border-color: #ddd6fe; } - .lg\:max-h-44 { - max-height: 11rem; + .group:hover .lg\:group-hover\:border-purple-300 { + border-color: #c4b5fd; } - .lg\:max-h-48 { - max-height: 12rem; + .group:hover .lg\:group-hover\:border-purple-400 { + border-color: #a78bfa; } - .lg\:max-h-52 { - max-height: 13rem; + .group:hover .lg\:group-hover\:border-purple-500 { + border-color: #8b5cf6; } - .lg\:max-h-56 { - max-height: 14rem; + .group:hover .lg\:group-hover\:border-purple-600 { + border-color: #7c3aed; } - .lg\:max-h-60 { - max-height: 15rem; + .group:hover .lg\:group-hover\:border-purple-700 { + border-color: #6d28d9; } - .lg\:max-h-64 { - max-height: 16rem; + .group:hover .lg\:group-hover\:border-purple-800 { + border-color: #5b21b6; } - .lg\:max-h-72 { - max-height: 18rem; + .group:hover .lg\:group-hover\:border-purple-900 { + border-color: #4c1d95; } - .lg\:max-h-80 { - max-height: 20rem; + .group:hover .lg\:group-hover\:border-pink-50 { + border-color: #fdf2f8; } - .lg\:max-h-96 { - max-height: 24rem; + .group:hover .lg\:group-hover\:border-pink-100 { + border-color: #fce7f3; } - .lg\:max-h-px { - max-height: 1px; + .group:hover .lg\:group-hover\:border-pink-200 { + border-color: #fbcfe8; } - .lg\:max-h-0\.5 { - max-height: 0.125rem; + .group:hover .lg\:group-hover\:border-pink-300 { + border-color: #f9a8d4; } - .lg\:max-h-1\.5 { - max-height: 0.375rem; + .group:hover .lg\:group-hover\:border-pink-400 { + border-color: #f472b6; } - .lg\:max-h-2\.5 { - max-height: 0.625rem; + .group:hover .lg\:group-hover\:border-pink-500 { + border-color: #ec4899; } - .lg\:max-h-3\.5 { - max-height: 0.875rem; + .group:hover .lg\:group-hover\:border-pink-600 { + border-color: #db2777; } - .lg\:max-h-full { - max-height: 100%; + .group:hover .lg\:group-hover\:border-pink-700 { + border-color: #be185d; } - .lg\:max-h-screen { - max-height: 100vh; + .group:hover .lg\:group-hover\:border-pink-800 { + border-color: #9d174d; } - .lg\:max-w-0 { - max-width: 0rem; + .group:hover .lg\:group-hover\:border-pink-900 { + border-color: #831843; } - .lg\:max-w-none { - max-width: none; + .lg\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .lg\:max-w-xs { - max-width: 20rem; + .lg\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .lg\:max-w-sm { - max-width: 24rem; + .lg\:focus-within\:border-black:focus-within { + border-color: #000; } - .lg\:max-w-md { - max-width: 28rem; + .lg\:focus-within\:border-white:focus-within { + border-color: #fff; } - .lg\:max-w-lg { - max-width: 32rem; + .lg\:focus-within\:border-gray-50:focus-within { + border-color: #f9fafb; } - .lg\:max-w-xl { - max-width: 36rem; + .lg\:focus-within\:border-gray-100:focus-within { + border-color: #f3f4f6; } - .lg\:max-w-2xl { - max-width: 42rem; + .lg\:focus-within\:border-gray-200:focus-within { + border-color: #e5e7eb; } - .lg\:max-w-3xl { - max-width: 48rem; + .lg\:focus-within\:border-gray-300:focus-within { + border-color: #d1d5db; } - .lg\:max-w-4xl { - max-width: 56rem; + .lg\:focus-within\:border-gray-400:focus-within { + border-color: #9ca3af; } - .lg\:max-w-5xl { - max-width: 64rem; + .lg\:focus-within\:border-gray-500:focus-within { + border-color: #6b7280; } - .lg\:max-w-6xl { - max-width: 72rem; + .lg\:focus-within\:border-gray-600:focus-within { + border-color: #4b5563; } - .lg\:max-w-7xl { - max-width: 80rem; + .lg\:focus-within\:border-gray-700:focus-within { + border-color: #374151; } - .lg\:max-w-full { - max-width: 100%; + .lg\:focus-within\:border-gray-800:focus-within { + border-color: #1f2937; } - .lg\:max-w-min { - max-width: min-content; + .lg\:focus-within\:border-gray-900:focus-within { + border-color: #111827; } - .lg\:max-w-max { - max-width: max-content; + .lg\:focus-within\:border-red-50:focus-within { + border-color: #fef2f2; } - .lg\:max-w-prose { - max-width: 65ch; + .lg\:focus-within\:border-red-100:focus-within { + border-color: #fee2e2; } - .lg\:max-w-screen-sm { - max-width: 640px; + .lg\:focus-within\:border-red-200:focus-within { + border-color: #fecaca; } - .lg\:max-w-screen-md { - max-width: 768px; + .lg\:focus-within\:border-red-300:focus-within { + border-color: #fca5a5; } - .lg\:max-w-screen-lg { - max-width: 1024px; + .lg\:focus-within\:border-red-400:focus-within { + border-color: #f87171; } - .lg\:max-w-screen-xl { - max-width: 1280px; + .lg\:focus-within\:border-red-500:focus-within { + border-color: #ef4444; } - .lg\:max-w-screen-2xl { - max-width: 1536px; + .lg\:focus-within\:border-red-600:focus-within { + border-color: #dc2626; } - .lg\:min-h-0 { - min-height: 0px; + .lg\:focus-within\:border-red-700:focus-within { + border-color: #b91c1c; } - .lg\:min-h-full { - min-height: 100%; + .lg\:focus-within\:border-red-800:focus-within { + border-color: #991b1b; } - .lg\:min-h-screen { - min-height: 100vh; + .lg\:focus-within\:border-red-900:focus-within { + border-color: #7f1d1d; } - .lg\:min-w-0 { - min-width: 0px; + .lg\:focus-within\:border-yellow-50:focus-within { + border-color: #fffbeb; } - .lg\:min-w-full { - min-width: 100%; + .lg\:focus-within\:border-yellow-100:focus-within { + border-color: #fef3c7; } - .lg\:min-w-min { - min-width: min-content; + .lg\:focus-within\:border-yellow-200:focus-within { + border-color: #fde68a; } - .lg\:min-w-max { - min-width: max-content; + .lg\:focus-within\:border-yellow-300:focus-within { + border-color: #fcd34d; } - .lg\:object-contain { - object-fit: contain; + .lg\:focus-within\:border-yellow-400:focus-within { + border-color: #fbbf24; } - .lg\:object-cover { - object-fit: cover; + .lg\:focus-within\:border-yellow-500:focus-within { + border-color: #f59e0b; } - .lg\:object-fill { - object-fit: fill; + .lg\:focus-within\:border-yellow-600:focus-within { + border-color: #d97706; } - .lg\:object-none { - object-fit: none; + .lg\:focus-within\:border-yellow-700:focus-within { + border-color: #b45309; } - .lg\:object-scale-down { - object-fit: scale-down; + .lg\:focus-within\:border-yellow-800:focus-within { + border-color: #92400e; } - .lg\:object-bottom { - object-position: bottom; + .lg\:focus-within\:border-yellow-900:focus-within { + border-color: #78350f; } - .lg\:object-center { - object-position: center; + .lg\:focus-within\:border-green-50:focus-within { + border-color: #ecfdf5; } - .lg\:object-left { - object-position: left; + .lg\:focus-within\:border-green-100:focus-within { + border-color: #d1fae5; } - .lg\:object-left-bottom { - object-position: left bottom; + .lg\:focus-within\:border-green-200:focus-within { + border-color: #a7f3d0; } - .lg\:object-left-top { - object-position: left top; + .lg\:focus-within\:border-green-300:focus-within { + border-color: #6ee7b7; } - .lg\:object-right { - object-position: right; + .lg\:focus-within\:border-green-400:focus-within { + border-color: #34d399; } - .lg\:object-right-bottom { - object-position: right bottom; + .lg\:focus-within\:border-green-500:focus-within { + border-color: #10b981; } - .lg\:object-right-top { - object-position: right top; + .lg\:focus-within\:border-green-600:focus-within { + border-color: #059669; } - .lg\:object-top { - object-position: top; + .lg\:focus-within\:border-green-700:focus-within { + border-color: #047857; } - .lg\:opacity-0 { - opacity: 0; + .lg\:focus-within\:border-green-800:focus-within { + border-color: #065f46; } - .lg\:opacity-5 { - opacity: 0.05; + .lg\:focus-within\:border-green-900:focus-within { + border-color: #064e3b; } - .lg\:opacity-10 { - opacity: 0.1; + .lg\:focus-within\:border-blue-50:focus-within { + border-color: #eff6ff; } - .lg\:opacity-20 { - opacity: 0.2; + .lg\:focus-within\:border-blue-100:focus-within { + border-color: #dbeafe; } - .lg\:opacity-25 { - opacity: 0.25; + .lg\:focus-within\:border-blue-200:focus-within { + border-color: #bfdbfe; } - .lg\:opacity-30 { - opacity: 0.3; + .lg\:focus-within\:border-blue-300:focus-within { + border-color: #93c5fd; } - .lg\:opacity-40 { - opacity: 0.4; + .lg\:focus-within\:border-blue-400:focus-within { + border-color: #60a5fa; } - .lg\:opacity-50 { - opacity: 0.5; + .lg\:focus-within\:border-blue-500:focus-within { + border-color: #3b82f6; } - .lg\:opacity-60 { - opacity: 0.6; + .lg\:focus-within\:border-blue-600:focus-within { + border-color: #2563eb; } - .lg\:opacity-70 { - opacity: 0.7; + .lg\:focus-within\:border-blue-700:focus-within { + border-color: #1d4ed8; } - .lg\:opacity-75 { - opacity: 0.75; + .lg\:focus-within\:border-blue-800:focus-within { + border-color: #1e40af; } - .lg\:opacity-80 { - opacity: 0.8; + .lg\:focus-within\:border-blue-900:focus-within { + border-color: #1e3a8a; } - .lg\:opacity-90 { - opacity: 0.9; + .lg\:focus-within\:border-indigo-50:focus-within { + border-color: #eef2ff; } - .lg\:opacity-95 { - opacity: 0.95; + .lg\:focus-within\:border-indigo-100:focus-within { + border-color: #e0e7ff; } - .lg\:opacity-100 { - opacity: 1; + .lg\:focus-within\:border-indigo-200:focus-within { + border-color: #c7d2fe; } - .group:hover .lg\:group-hover\:opacity-0 { - opacity: 0; + .lg\:focus-within\:border-indigo-300:focus-within { + border-color: #a5b4fc; } - .group:hover .lg\:group-hover\:opacity-5 { - opacity: 0.05; + .lg\:focus-within\:border-indigo-400:focus-within { + border-color: #818cf8; } - .group:hover .lg\:group-hover\:opacity-10 { - opacity: 0.1; + .lg\:focus-within\:border-indigo-500:focus-within { + border-color: #6366f1; } - .group:hover .lg\:group-hover\:opacity-20 { - opacity: 0.2; + .lg\:focus-within\:border-indigo-600:focus-within { + border-color: #4f46e5; } - .group:hover .lg\:group-hover\:opacity-25 { - opacity: 0.25; + .lg\:focus-within\:border-indigo-700:focus-within { + border-color: #4338ca; } - .group:hover .lg\:group-hover\:opacity-30 { - opacity: 0.3; + .lg\:focus-within\:border-indigo-800:focus-within { + border-color: #3730a3; } - .group:hover .lg\:group-hover\:opacity-40 { - opacity: 0.4; + .lg\:focus-within\:border-indigo-900:focus-within { + border-color: #312e81; } - .group:hover .lg\:group-hover\:opacity-50 { - opacity: 0.5; + .lg\:focus-within\:border-purple-50:focus-within { + border-color: #f5f3ff; } - .group:hover .lg\:group-hover\:opacity-60 { - opacity: 0.6; + .lg\:focus-within\:border-purple-100:focus-within { + border-color: #ede9fe; } - .group:hover .lg\:group-hover\:opacity-70 { - opacity: 0.7; + .lg\:focus-within\:border-purple-200:focus-within { + border-color: #ddd6fe; } - .group:hover .lg\:group-hover\:opacity-75 { - opacity: 0.75; + .lg\:focus-within\:border-purple-300:focus-within { + border-color: #c4b5fd; } - .group:hover .lg\:group-hover\:opacity-80 { - opacity: 0.8; + .lg\:focus-within\:border-purple-400:focus-within { + border-color: #a78bfa; } - .group:hover .lg\:group-hover\:opacity-90 { - opacity: 0.9; + .lg\:focus-within\:border-purple-500:focus-within { + border-color: #8b5cf6; } - .group:hover .lg\:group-hover\:opacity-95 { - opacity: 0.95; + .lg\:focus-within\:border-purple-600:focus-within { + border-color: #7c3aed; } - .group:hover .lg\:group-hover\:opacity-100 { - opacity: 1; + .lg\:focus-within\:border-purple-700:focus-within { + border-color: #6d28d9; } - .lg\:focus-within\:opacity-0:focus-within { - opacity: 0; + .lg\:focus-within\:border-purple-800:focus-within { + border-color: #5b21b6; } - .lg\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .lg\:focus-within\:border-purple-900:focus-within { + border-color: #4c1d95; } - .lg\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .lg\:focus-within\:border-pink-50:focus-within { + border-color: #fdf2f8; } - .lg\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .lg\:focus-within\:border-pink-100:focus-within { + border-color: #fce7f3; } - .lg\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .lg\:focus-within\:border-pink-200:focus-within { + border-color: #fbcfe8; } - .lg\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .lg\:focus-within\:border-pink-300:focus-within { + border-color: #f9a8d4; } - .lg\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .lg\:focus-within\:border-pink-400:focus-within { + border-color: #f472b6; } - .lg\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .lg\:focus-within\:border-pink-500:focus-within { + border-color: #ec4899; } - .lg\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .lg\:focus-within\:border-pink-600:focus-within { + border-color: #db2777; } - .lg\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .lg\:focus-within\:border-pink-700:focus-within { + border-color: #be185d; } - .lg\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .lg\:focus-within\:border-pink-800:focus-within { + border-color: #9d174d; } - .lg\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .lg\:focus-within\:border-pink-900:focus-within { + border-color: #831843; } - .lg\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .lg\:hover\:border-transparent:hover { + border-color: transparent; } - .lg\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .lg\:hover\:border-current:hover { + border-color: currentColor; } - .lg\:focus-within\:opacity-100:focus-within { - opacity: 1; + .lg\:hover\:border-black:hover { + border-color: #000; } - .lg\:hover\:opacity-0:hover { - opacity: 0; + .lg\:hover\:border-white:hover { + border-color: #fff; } - .lg\:hover\:opacity-5:hover { - opacity: 0.05; + .lg\:hover\:border-gray-50:hover { + border-color: #f9fafb; } - .lg\:hover\:opacity-10:hover { - opacity: 0.1; + .lg\:hover\:border-gray-100:hover { + border-color: #f3f4f6; } - .lg\:hover\:opacity-20:hover { - opacity: 0.2; + .lg\:hover\:border-gray-200:hover { + border-color: #e5e7eb; } - .lg\:hover\:opacity-25:hover { - opacity: 0.25; + .lg\:hover\:border-gray-300:hover { + border-color: #d1d5db; } - .lg\:hover\:opacity-30:hover { - opacity: 0.3; + .lg\:hover\:border-gray-400:hover { + border-color: #9ca3af; } - .lg\:hover\:opacity-40:hover { - opacity: 0.4; + .lg\:hover\:border-gray-500:hover { + border-color: #6b7280; } - .lg\:hover\:opacity-50:hover { - opacity: 0.5; + .lg\:hover\:border-gray-600:hover { + border-color: #4b5563; } - .lg\:hover\:opacity-60:hover { - opacity: 0.6; + .lg\:hover\:border-gray-700:hover { + border-color: #374151; } - .lg\:hover\:opacity-70:hover { - opacity: 0.7; + .lg\:hover\:border-gray-800:hover { + border-color: #1f2937; } - .lg\:hover\:opacity-75:hover { - opacity: 0.75; + .lg\:hover\:border-gray-900:hover { + border-color: #111827; } - .lg\:hover\:opacity-80:hover { - opacity: 0.8; + .lg\:hover\:border-red-50:hover { + border-color: #fef2f2; } - .lg\:hover\:opacity-90:hover { - opacity: 0.9; + .lg\:hover\:border-red-100:hover { + border-color: #fee2e2; } - .lg\:hover\:opacity-95:hover { - opacity: 0.95; + .lg\:hover\:border-red-200:hover { + border-color: #fecaca; } - .lg\:hover\:opacity-100:hover { - opacity: 1; + .lg\:hover\:border-red-300:hover { + border-color: #fca5a5; } - .lg\:focus\:opacity-0:focus { - opacity: 0; + .lg\:hover\:border-red-400:hover { + border-color: #f87171; } - .lg\:focus\:opacity-5:focus { - opacity: 0.05; + .lg\:hover\:border-red-500:hover { + border-color: #ef4444; } - .lg\:focus\:opacity-10:focus { - opacity: 0.1; + .lg\:hover\:border-red-600:hover { + border-color: #dc2626; } - .lg\:focus\:opacity-20:focus { - opacity: 0.2; + .lg\:hover\:border-red-700:hover { + border-color: #b91c1c; } - .lg\:focus\:opacity-25:focus { - opacity: 0.25; + .lg\:hover\:border-red-800:hover { + border-color: #991b1b; } - .lg\:focus\:opacity-30:focus { - opacity: 0.3; + .lg\:hover\:border-red-900:hover { + border-color: #7f1d1d; } - .lg\:focus\:opacity-40:focus { - opacity: 0.4; + .lg\:hover\:border-yellow-50:hover { + border-color: #fffbeb; } - .lg\:focus\:opacity-50:focus { - opacity: 0.5; + .lg\:hover\:border-yellow-100:hover { + border-color: #fef3c7; } - .lg\:focus\:opacity-60:focus { - opacity: 0.6; + .lg\:hover\:border-yellow-200:hover { + border-color: #fde68a; } - .lg\:focus\:opacity-70:focus { - opacity: 0.7; + .lg\:hover\:border-yellow-300:hover { + border-color: #fcd34d; } - .lg\:focus\:opacity-75:focus { - opacity: 0.75; + .lg\:hover\:border-yellow-400:hover { + border-color: #fbbf24; } - .lg\:focus\:opacity-80:focus { - opacity: 0.8; + .lg\:hover\:border-yellow-500:hover { + border-color: #f59e0b; } - .lg\:focus\:opacity-90:focus { - opacity: 0.9; + .lg\:hover\:border-yellow-600:hover { + border-color: #d97706; } - .lg\:focus\:opacity-95:focus { - opacity: 0.95; + .lg\:hover\:border-yellow-700:hover { + border-color: #b45309; } - .lg\:focus\:opacity-100:focus { - opacity: 1; + .lg\:hover\:border-yellow-800:hover { + border-color: #92400e; } - .lg\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .lg\:hover\:border-yellow-900:hover { + border-color: #78350f; } - .lg\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .lg\:hover\:border-green-50:hover { + border-color: #ecfdf5; } - .lg\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .lg\:hover\:border-green-100:hover { + border-color: #d1fae5; } - .lg\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .lg\:hover\:border-green-200:hover { + border-color: #a7f3d0; } - .lg\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .lg\:hover\:border-green-300:hover { + border-color: #6ee7b7; } - .lg\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .lg\:hover\:border-green-400:hover { + border-color: #34d399; } - .lg\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .lg\:hover\:border-green-500:hover { + border-color: #10b981; } - .lg\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .lg\:hover\:border-green-600:hover { + border-color: #059669; } - .lg\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .lg\:hover\:border-green-700:hover { + border-color: #047857; } - .lg\:overflow-auto { - overflow: auto; + .lg\:hover\:border-green-800:hover { + border-color: #065f46; } - .lg\:overflow-hidden { - overflow: hidden; + .lg\:hover\:border-green-900:hover { + border-color: #064e3b; } - .lg\:overflow-visible { - overflow: visible; + .lg\:hover\:border-blue-50:hover { + border-color: #eff6ff; } - .lg\:overflow-scroll { - overflow: scroll; + .lg\:hover\:border-blue-100:hover { + border-color: #dbeafe; } - .lg\:overflow-x-auto { - overflow-x: auto; + .lg\:hover\:border-blue-200:hover { + border-color: #bfdbfe; } - .lg\:overflow-y-auto { - overflow-y: auto; + .lg\:hover\:border-blue-300:hover { + border-color: #93c5fd; } - .lg\:overflow-x-hidden { - overflow-x: hidden; + .lg\:hover\:border-blue-400:hover { + border-color: #60a5fa; } - .lg\:overflow-y-hidden { - overflow-y: hidden; + .lg\:hover\:border-blue-500:hover { + border-color: #3b82f6; } - .lg\:overflow-x-visible { - overflow-x: visible; + .lg\:hover\:border-blue-600:hover { + border-color: #2563eb; } - .lg\:overflow-y-visible { - overflow-y: visible; + .lg\:hover\:border-blue-700:hover { + border-color: #1d4ed8; } - .lg\:overflow-x-scroll { - overflow-x: scroll; + .lg\:hover\:border-blue-800:hover { + border-color: #1e40af; } - .lg\:overflow-y-scroll { - overflow-y: scroll; + .lg\:hover\:border-blue-900:hover { + border-color: #1e3a8a; } - .lg\:overscroll-auto { - overscroll-behavior: auto; + .lg\:hover\:border-indigo-50:hover { + border-color: #eef2ff; } - .lg\:overscroll-contain { - overscroll-behavior: contain; + .lg\:hover\:border-indigo-100:hover { + border-color: #e0e7ff; } - .lg\:overscroll-none { - overscroll-behavior: none; + .lg\:hover\:border-indigo-200:hover { + border-color: #c7d2fe; } - .lg\:overscroll-y-auto { - overscroll-behavior-y: auto; + .lg\:hover\:border-indigo-300:hover { + border-color: #a5b4fc; } - .lg\:overscroll-y-contain { - overscroll-behavior-y: contain; + .lg\:hover\:border-indigo-400:hover { + border-color: #818cf8; } - .lg\:overscroll-y-none { - overscroll-behavior-y: none; + .lg\:hover\:border-indigo-500:hover { + border-color: #6366f1; } - .lg\:overscroll-x-auto { - overscroll-behavior-x: auto; + .lg\:hover\:border-indigo-600:hover { + border-color: #4f46e5; } - .lg\:overscroll-x-contain { - overscroll-behavior-x: contain; + .lg\:hover\:border-indigo-700:hover { + border-color: #4338ca; } - .lg\:overscroll-x-none { - overscroll-behavior-x: none; + .lg\:hover\:border-indigo-800:hover { + border-color: #3730a3; } - .lg\:p-0 { - padding: 0px; + .lg\:hover\:border-indigo-900:hover { + border-color: #312e81; } - .lg\:p-1 { - padding: 0.25rem; + .lg\:hover\:border-purple-50:hover { + border-color: #f5f3ff; } - .lg\:p-2 { - padding: 0.5rem; + .lg\:hover\:border-purple-100:hover { + border-color: #ede9fe; } - .lg\:p-3 { - padding: 0.75rem; + .lg\:hover\:border-purple-200:hover { + border-color: #ddd6fe; } - .lg\:p-4 { - padding: 1rem; + .lg\:hover\:border-purple-300:hover { + border-color: #c4b5fd; } - .lg\:p-5 { - padding: 1.25rem; + .lg\:hover\:border-purple-400:hover { + border-color: #a78bfa; } - .lg\:p-6 { - padding: 1.5rem; + .lg\:hover\:border-purple-500:hover { + border-color: #8b5cf6; } - .lg\:p-7 { - padding: 1.75rem; + .lg\:hover\:border-purple-600:hover { + border-color: #7c3aed; } - .lg\:p-8 { - padding: 2rem; + .lg\:hover\:border-purple-700:hover { + border-color: #6d28d9; } - .lg\:p-9 { - padding: 2.25rem; + .lg\:hover\:border-purple-800:hover { + border-color: #5b21b6; } - .lg\:p-10 { - padding: 2.5rem; + .lg\:hover\:border-purple-900:hover { + border-color: #4c1d95; } - .lg\:p-11 { - padding: 2.75rem; + .lg\:hover\:border-pink-50:hover { + border-color: #fdf2f8; } - .lg\:p-12 { - padding: 3rem; + .lg\:hover\:border-pink-100:hover { + border-color: #fce7f3; } - .lg\:p-14 { - padding: 3.5rem; + .lg\:hover\:border-pink-200:hover { + border-color: #fbcfe8; } - .lg\:p-16 { - padding: 4rem; + .lg\:hover\:border-pink-300:hover { + border-color: #f9a8d4; } - .lg\:p-20 { - padding: 5rem; + .lg\:hover\:border-pink-400:hover { + border-color: #f472b6; } - .lg\:p-24 { - padding: 6rem; + .lg\:hover\:border-pink-500:hover { + border-color: #ec4899; } - .lg\:p-28 { - padding: 7rem; + .lg\:hover\:border-pink-600:hover { + border-color: #db2777; } - .lg\:p-32 { - padding: 8rem; + .lg\:hover\:border-pink-700:hover { + border-color: #be185d; } - .lg\:p-36 { - padding: 9rem; + .lg\:hover\:border-pink-800:hover { + border-color: #9d174d; } - .lg\:p-40 { - padding: 10rem; + .lg\:hover\:border-pink-900:hover { + border-color: #831843; } - .lg\:p-44 { - padding: 11rem; + .lg\:focus\:border-transparent:focus { + border-color: transparent; } - .lg\:p-48 { - padding: 12rem; + .lg\:focus\:border-current:focus { + border-color: currentColor; } - .lg\:p-52 { - padding: 13rem; + .lg\:focus\:border-black:focus { + border-color: #000; } - .lg\:p-56 { - padding: 14rem; + .lg\:focus\:border-white:focus { + border-color: #fff; } - .lg\:p-60 { - padding: 15rem; + .lg\:focus\:border-gray-50:focus { + border-color: #f9fafb; } - .lg\:p-64 { - padding: 16rem; + .lg\:focus\:border-gray-100:focus { + border-color: #f3f4f6; } - .lg\:p-72 { - padding: 18rem; + .lg\:focus\:border-gray-200:focus { + border-color: #e5e7eb; } - .lg\:p-80 { - padding: 20rem; + .lg\:focus\:border-gray-300:focus { + border-color: #d1d5db; } - .lg\:p-96 { - padding: 24rem; + .lg\:focus\:border-gray-400:focus { + border-color: #9ca3af; } - .lg\:p-px { - padding: 1px; + .lg\:focus\:border-gray-500:focus { + border-color: #6b7280; } - .lg\:p-0\.5 { - padding: 0.125rem; + .lg\:focus\:border-gray-600:focus { + border-color: #4b5563; } - .lg\:p-1\.5 { - padding: 0.375rem; + .lg\:focus\:border-gray-700:focus { + border-color: #374151; } - .lg\:p-2\.5 { - padding: 0.625rem; + .lg\:focus\:border-gray-800:focus { + border-color: #1f2937; } - .lg\:p-3\.5 { - padding: 0.875rem; + .lg\:focus\:border-gray-900:focus { + border-color: #111827; } - .lg\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .lg\:focus\:border-red-50:focus { + border-color: #fef2f2; } - .lg\:px-0 { - padding-left: 0px; - padding-right: 0px; + .lg\:focus\:border-red-100:focus { + border-color: #fee2e2; } - .lg\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .lg\:focus\:border-red-200:focus { + border-color: #fecaca; } - .lg\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .lg\:focus\:border-red-300:focus { + border-color: #fca5a5; } - .lg\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .lg\:focus\:border-red-400:focus { + border-color: #f87171; } - .lg\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .lg\:focus\:border-red-500:focus { + border-color: #ef4444; } - .lg\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .lg\:focus\:border-red-600:focus { + border-color: #dc2626; } - .lg\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .lg\:focus\:border-red-700:focus { + border-color: #b91c1c; } - .lg\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .lg\:focus\:border-red-800:focus { + border-color: #991b1b; } - .lg\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .lg\:focus\:border-red-900:focus { + border-color: #7f1d1d; } - .lg\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .lg\:focus\:border-yellow-50:focus { + border-color: #fffbeb; } - .lg\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .lg\:focus\:border-yellow-100:focus { + border-color: #fef3c7; } - .lg\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .lg\:focus\:border-yellow-200:focus { + border-color: #fde68a; } - .lg\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .lg\:focus\:border-yellow-300:focus { + border-color: #fcd34d; } - .lg\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .lg\:focus\:border-yellow-400:focus { + border-color: #fbbf24; } - .lg\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .lg\:focus\:border-yellow-500:focus { + border-color: #f59e0b; } - .lg\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .lg\:focus\:border-yellow-600:focus { + border-color: #d97706; } - .lg\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .lg\:focus\:border-yellow-700:focus { + border-color: #b45309; } - .lg\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .lg\:focus\:border-yellow-800:focus { + border-color: #92400e; } - .lg\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .lg\:focus\:border-yellow-900:focus { + border-color: #78350f; } - .lg\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .lg\:focus\:border-green-50:focus { + border-color: #ecfdf5; } - .lg\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .lg\:focus\:border-green-100:focus { + border-color: #d1fae5; } - .lg\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .lg\:focus\:border-green-200:focus { + border-color: #a7f3d0; } - .lg\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .lg\:focus\:border-green-300:focus { + border-color: #6ee7b7; } - .lg\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .lg\:focus\:border-green-400:focus { + border-color: #34d399; } - .lg\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .lg\:focus\:border-green-500:focus { + border-color: #10b981; } - .lg\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .lg\:focus\:border-green-600:focus { + border-color: #059669; } - .lg\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .lg\:focus\:border-green-700:focus { + border-color: #047857; } - .lg\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .lg\:focus\:border-green-800:focus { + border-color: #065f46; } - .lg\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .lg\:focus\:border-green-900:focus { + border-color: #064e3b; } - .lg\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .lg\:focus\:border-blue-50:focus { + border-color: #eff6ff; } - .lg\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .lg\:focus\:border-blue-100:focus { + border-color: #dbeafe; } - .lg\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .lg\:focus\:border-blue-200:focus { + border-color: #bfdbfe; } - .lg\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .lg\:focus\:border-blue-300:focus { + border-color: #93c5fd; } - .lg\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .lg\:focus\:border-blue-400:focus { + border-color: #60a5fa; } - .lg\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .lg\:focus\:border-blue-500:focus { + border-color: #3b82f6; } - .lg\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .lg\:focus\:border-blue-600:focus { + border-color: #2563eb; } - .lg\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .lg\:focus\:border-blue-700:focus { + border-color: #1d4ed8; } - .lg\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .lg\:focus\:border-blue-800:focus { + border-color: #1e40af; } - .lg\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .lg\:focus\:border-blue-900:focus { + border-color: #1e3a8a; } - .lg\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .lg\:focus\:border-indigo-50:focus { + border-color: #eef2ff; } - .lg\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .lg\:focus\:border-indigo-100:focus { + border-color: #e0e7ff; } - .lg\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .lg\:focus\:border-indigo-200:focus { + border-color: #c7d2fe; } - .lg\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .lg\:focus\:border-indigo-300:focus { + border-color: #a5b4fc; } - .lg\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .lg\:focus\:border-indigo-400:focus { + border-color: #818cf8; } - .lg\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .lg\:focus\:border-indigo-500:focus { + border-color: #6366f1; } - .lg\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .lg\:focus\:border-indigo-600:focus { + border-color: #4f46e5; } - .lg\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .lg\:focus\:border-indigo-700:focus { + border-color: #4338ca; } - .lg\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .lg\:focus\:border-indigo-800:focus { + border-color: #3730a3; } - .lg\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .lg\:focus\:border-indigo-900:focus { + border-color: #312e81; } - .lg\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .lg\:focus\:border-purple-50:focus { + border-color: #f5f3ff; } - .lg\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .lg\:focus\:border-purple-100:focus { + border-color: #ede9fe; } - .lg\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .lg\:focus\:border-purple-200:focus { + border-color: #ddd6fe; } - .lg\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .lg\:focus\:border-purple-300:focus { + border-color: #c4b5fd; } - .lg\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .lg\:focus\:border-purple-400:focus { + border-color: #a78bfa; } - .lg\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .lg\:focus\:border-purple-500:focus { + border-color: #8b5cf6; } - .lg\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .lg\:focus\:border-purple-600:focus { + border-color: #7c3aed; } - .lg\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .lg\:focus\:border-purple-700:focus { + border-color: #6d28d9; } - .lg\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .lg\:focus\:border-purple-800:focus { + border-color: #5b21b6; } - .lg\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .lg\:focus\:border-purple-900:focus { + border-color: #4c1d95; } - .lg\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .lg\:focus\:border-pink-50:focus { + border-color: #fdf2f8; } - .lg\:px-px { - padding-left: 1px; - padding-right: 1px; + .lg\:focus\:border-pink-100:focus { + border-color: #fce7f3; } - .lg\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .lg\:focus\:border-pink-200:focus { + border-color: #fbcfe8; } - .lg\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .lg\:focus\:border-pink-300:focus { + border-color: #f9a8d4; } - .lg\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .lg\:focus\:border-pink-400:focus { + border-color: #f472b6; } - .lg\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .lg\:focus\:border-pink-500:focus { + border-color: #ec4899; } - .lg\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .lg\:focus\:border-pink-600:focus { + border-color: #db2777; } - .lg\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .lg\:focus\:border-pink-700:focus { + border-color: #be185d; } - .lg\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .lg\:focus\:border-pink-800:focus { + border-color: #9d174d; } - .lg\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .lg\:focus\:border-pink-900:focus { + border-color: #831843; } - .lg\:pt-0 { - padding-top: 0px; + .lg\:bg-transparent { + background-color: transparent; } - .lg\:pr-0 { - padding-right: 0px; + .lg\:bg-current { + background-color: currentColor; } - .lg\:pb-0 { - padding-bottom: 0px; + .lg\:bg-black { + background-color: #000; } - .lg\:pl-0 { - padding-left: 0px; + .lg\:bg-white { + background-color: #fff; } - .lg\:pt-1 { - padding-top: 0.25rem; + .lg\:bg-gray-50 { + background-color: #f9fafb; } - .lg\:pr-1 { - padding-right: 0.25rem; + .lg\:bg-gray-100 { + background-color: #f3f4f6; } - .lg\:pb-1 { - padding-bottom: 0.25rem; + .lg\:bg-gray-200 { + background-color: #e5e7eb; } - .lg\:pl-1 { - padding-left: 0.25rem; + .lg\:bg-gray-300 { + background-color: #d1d5db; } - .lg\:pt-2 { - padding-top: 0.5rem; + .lg\:bg-gray-400 { + background-color: #9ca3af; } - .lg\:pr-2 { - padding-right: 0.5rem; + .lg\:bg-gray-500 { + background-color: #6b7280; } - .lg\:pb-2 { - padding-bottom: 0.5rem; + .lg\:bg-gray-600 { + background-color: #4b5563; } - .lg\:pl-2 { - padding-left: 0.5rem; + .lg\:bg-gray-700 { + background-color: #374151; } - .lg\:pt-3 { - padding-top: 0.75rem; + .lg\:bg-gray-800 { + background-color: #1f2937; } - .lg\:pr-3 { - padding-right: 0.75rem; + .lg\:bg-gray-900 { + background-color: #111827; } - .lg\:pb-3 { - padding-bottom: 0.75rem; + .lg\:bg-red-50 { + background-color: #fef2f2; } - .lg\:pl-3 { - padding-left: 0.75rem; + .lg\:bg-red-100 { + background-color: #fee2e2; } - .lg\:pt-4 { - padding-top: 1rem; + .lg\:bg-red-200 { + background-color: #fecaca; } - .lg\:pr-4 { - padding-right: 1rem; + .lg\:bg-red-300 { + background-color: #fca5a5; } - .lg\:pb-4 { - padding-bottom: 1rem; + .lg\:bg-red-400 { + background-color: #f87171; } - .lg\:pl-4 { - padding-left: 1rem; + .lg\:bg-red-500 { + background-color: #ef4444; } - .lg\:pt-5 { - padding-top: 1.25rem; + .lg\:bg-red-600 { + background-color: #dc2626; } - .lg\:pr-5 { - padding-right: 1.25rem; + .lg\:bg-red-700 { + background-color: #b91c1c; } - .lg\:pb-5 { - padding-bottom: 1.25rem; + .lg\:bg-red-800 { + background-color: #991b1b; } - .lg\:pl-5 { - padding-left: 1.25rem; + .lg\:bg-red-900 { + background-color: #7f1d1d; } - .lg\:pt-6 { - padding-top: 1.5rem; + .lg\:bg-yellow-50 { + background-color: #fffbeb; } - .lg\:pr-6 { - padding-right: 1.5rem; + .lg\:bg-yellow-100 { + background-color: #fef3c7; } - .lg\:pb-6 { - padding-bottom: 1.5rem; + .lg\:bg-yellow-200 { + background-color: #fde68a; } - .lg\:pl-6 { - padding-left: 1.5rem; + .lg\:bg-yellow-300 { + background-color: #fcd34d; } - .lg\:pt-7 { - padding-top: 1.75rem; + .lg\:bg-yellow-400 { + background-color: #fbbf24; } - .lg\:pr-7 { - padding-right: 1.75rem; + .lg\:bg-yellow-500 { + background-color: #f59e0b; } - .lg\:pb-7 { - padding-bottom: 1.75rem; + .lg\:bg-yellow-600 { + background-color: #d97706; } - .lg\:pl-7 { - padding-left: 1.75rem; + .lg\:bg-yellow-700 { + background-color: #b45309; } - .lg\:pt-8 { - padding-top: 2rem; + .lg\:bg-yellow-800 { + background-color: #92400e; } - .lg\:pr-8 { - padding-right: 2rem; + .lg\:bg-yellow-900 { + background-color: #78350f; } - .lg\:pb-8 { - padding-bottom: 2rem; + .lg\:bg-green-50 { + background-color: #ecfdf5; } - .lg\:pl-8 { - padding-left: 2rem; + .lg\:bg-green-100 { + background-color: #d1fae5; } - .lg\:pt-9 { - padding-top: 2.25rem; + .lg\:bg-green-200 { + background-color: #a7f3d0; } - .lg\:pr-9 { - padding-right: 2.25rem; + .lg\:bg-green-300 { + background-color: #6ee7b7; } - .lg\:pb-9 { - padding-bottom: 2.25rem; + .lg\:bg-green-400 { + background-color: #34d399; } - .lg\:pl-9 { - padding-left: 2.25rem; + .lg\:bg-green-500 { + background-color: #10b981; } - .lg\:pt-10 { - padding-top: 2.5rem; + .lg\:bg-green-600 { + background-color: #059669; } - .lg\:pr-10 { - padding-right: 2.5rem; + .lg\:bg-green-700 { + background-color: #047857; } - .lg\:pb-10 { - padding-bottom: 2.5rem; + .lg\:bg-green-800 { + background-color: #065f46; } - .lg\:pl-10 { - padding-left: 2.5rem; + .lg\:bg-green-900 { + background-color: #064e3b; } - .lg\:pt-11 { - padding-top: 2.75rem; + .lg\:bg-blue-50 { + background-color: #eff6ff; } - .lg\:pr-11 { - padding-right: 2.75rem; + .lg\:bg-blue-100 { + background-color: #dbeafe; } - .lg\:pb-11 { - padding-bottom: 2.75rem; + .lg\:bg-blue-200 { + background-color: #bfdbfe; } - .lg\:pl-11 { - padding-left: 2.75rem; + .lg\:bg-blue-300 { + background-color: #93c5fd; } - .lg\:pt-12 { - padding-top: 3rem; + .lg\:bg-blue-400 { + background-color: #60a5fa; } - .lg\:pr-12 { - padding-right: 3rem; + .lg\:bg-blue-500 { + background-color: #3b82f6; } - .lg\:pb-12 { - padding-bottom: 3rem; + .lg\:bg-blue-600 { + background-color: #2563eb; } - .lg\:pl-12 { - padding-left: 3rem; + .lg\:bg-blue-700 { + background-color: #1d4ed8; } - .lg\:pt-14 { - padding-top: 3.5rem; + .lg\:bg-blue-800 { + background-color: #1e40af; } - .lg\:pr-14 { - padding-right: 3.5rem; + .lg\:bg-blue-900 { + background-color: #1e3a8a; } - .lg\:pb-14 { - padding-bottom: 3.5rem; + .lg\:bg-indigo-50 { + background-color: #eef2ff; } - .lg\:pl-14 { - padding-left: 3.5rem; + .lg\:bg-indigo-100 { + background-color: #e0e7ff; } - .lg\:pt-16 { - padding-top: 4rem; + .lg\:bg-indigo-200 { + background-color: #c7d2fe; } - .lg\:pr-16 { - padding-right: 4rem; + .lg\:bg-indigo-300 { + background-color: #a5b4fc; } - .lg\:pb-16 { - padding-bottom: 4rem; + .lg\:bg-indigo-400 { + background-color: #818cf8; } - .lg\:pl-16 { - padding-left: 4rem; + .lg\:bg-indigo-500 { + background-color: #6366f1; } - .lg\:pt-20 { - padding-top: 5rem; + .lg\:bg-indigo-600 { + background-color: #4f46e5; } - .lg\:pr-20 { - padding-right: 5rem; + .lg\:bg-indigo-700 { + background-color: #4338ca; } - .lg\:pb-20 { - padding-bottom: 5rem; + .lg\:bg-indigo-800 { + background-color: #3730a3; } - .lg\:pl-20 { - padding-left: 5rem; + .lg\:bg-indigo-900 { + background-color: #312e81; } - .lg\:pt-24 { - padding-top: 6rem; + .lg\:bg-purple-50 { + background-color: #f5f3ff; } - .lg\:pr-24 { - padding-right: 6rem; + .lg\:bg-purple-100 { + background-color: #ede9fe; } - .lg\:pb-24 { - padding-bottom: 6rem; + .lg\:bg-purple-200 { + background-color: #ddd6fe; } - .lg\:pl-24 { - padding-left: 6rem; + .lg\:bg-purple-300 { + background-color: #c4b5fd; } - .lg\:pt-28 { - padding-top: 7rem; + .lg\:bg-purple-400 { + background-color: #a78bfa; } - .lg\:pr-28 { - padding-right: 7rem; + .lg\:bg-purple-500 { + background-color: #8b5cf6; } - .lg\:pb-28 { - padding-bottom: 7rem; + .lg\:bg-purple-600 { + background-color: #7c3aed; } - .lg\:pl-28 { - padding-left: 7rem; + .lg\:bg-purple-700 { + background-color: #6d28d9; } - .lg\:pt-32 { - padding-top: 8rem; + .lg\:bg-purple-800 { + background-color: #5b21b6; } - .lg\:pr-32 { - padding-right: 8rem; + .lg\:bg-purple-900 { + background-color: #4c1d95; } - .lg\:pb-32 { - padding-bottom: 8rem; + .lg\:bg-pink-50 { + background-color: #fdf2f8; } - .lg\:pl-32 { - padding-left: 8rem; + .lg\:bg-pink-100 { + background-color: #fce7f3; } - .lg\:pt-36 { - padding-top: 9rem; + .lg\:bg-pink-200 { + background-color: #fbcfe8; } - .lg\:pr-36 { - padding-right: 9rem; + .lg\:bg-pink-300 { + background-color: #f9a8d4; } - .lg\:pb-36 { - padding-bottom: 9rem; + .lg\:bg-pink-400 { + background-color: #f472b6; } - .lg\:pl-36 { - padding-left: 9rem; + .lg\:bg-pink-500 { + background-color: #ec4899; } - .lg\:pt-40 { - padding-top: 10rem; + .lg\:bg-pink-600 { + background-color: #db2777; } - .lg\:pr-40 { - padding-right: 10rem; + .lg\:bg-pink-700 { + background-color: #be185d; } - .lg\:pb-40 { - padding-bottom: 10rem; + .lg\:bg-pink-800 { + background-color: #9d174d; } - .lg\:pl-40 { - padding-left: 10rem; + .lg\:bg-pink-900 { + background-color: #831843; } - .lg\:pt-44 { - padding-top: 11rem; + .group:hover .lg\:group-hover\:bg-transparent { + background-color: transparent; } - .lg\:pr-44 { - padding-right: 11rem; + .group:hover .lg\:group-hover\:bg-current { + background-color: currentColor; } - .lg\:pb-44 { - padding-bottom: 11rem; + .group:hover .lg\:group-hover\:bg-black { + background-color: #000; } - .lg\:pl-44 { - padding-left: 11rem; + .group:hover .lg\:group-hover\:bg-white { + background-color: #fff; } - .lg\:pt-48 { - padding-top: 12rem; + .group:hover .lg\:group-hover\:bg-gray-50 { + background-color: #f9fafb; } - .lg\:pr-48 { - padding-right: 12rem; + .group:hover .lg\:group-hover\:bg-gray-100 { + background-color: #f3f4f6; } - .lg\:pb-48 { - padding-bottom: 12rem; + .group:hover .lg\:group-hover\:bg-gray-200 { + background-color: #e5e7eb; } - .lg\:pl-48 { - padding-left: 12rem; + .group:hover .lg\:group-hover\:bg-gray-300 { + background-color: #d1d5db; } - .lg\:pt-52 { - padding-top: 13rem; + .group:hover .lg\:group-hover\:bg-gray-400 { + background-color: #9ca3af; } - .lg\:pr-52 { - padding-right: 13rem; + .group:hover .lg\:group-hover\:bg-gray-500 { + background-color: #6b7280; } - .lg\:pb-52 { - padding-bottom: 13rem; + .group:hover .lg\:group-hover\:bg-gray-600 { + background-color: #4b5563; } - .lg\:pl-52 { - padding-left: 13rem; + .group:hover .lg\:group-hover\:bg-gray-700 { + background-color: #374151; } - .lg\:pt-56 { - padding-top: 14rem; + .group:hover .lg\:group-hover\:bg-gray-800 { + background-color: #1f2937; } - .lg\:pr-56 { - padding-right: 14rem; + .group:hover .lg\:group-hover\:bg-gray-900 { + background-color: #111827; } - .lg\:pb-56 { - padding-bottom: 14rem; + .group:hover .lg\:group-hover\:bg-red-50 { + background-color: #fef2f2; } - .lg\:pl-56 { - padding-left: 14rem; + .group:hover .lg\:group-hover\:bg-red-100 { + background-color: #fee2e2; } - .lg\:pt-60 { - padding-top: 15rem; + .group:hover .lg\:group-hover\:bg-red-200 { + background-color: #fecaca; } - .lg\:pr-60 { - padding-right: 15rem; + .group:hover .lg\:group-hover\:bg-red-300 { + background-color: #fca5a5; } - .lg\:pb-60 { - padding-bottom: 15rem; + .group:hover .lg\:group-hover\:bg-red-400 { + background-color: #f87171; } - .lg\:pl-60 { - padding-left: 15rem; + .group:hover .lg\:group-hover\:bg-red-500 { + background-color: #ef4444; } - .lg\:pt-64 { - padding-top: 16rem; + .group:hover .lg\:group-hover\:bg-red-600 { + background-color: #dc2626; } - .lg\:pr-64 { - padding-right: 16rem; + .group:hover .lg\:group-hover\:bg-red-700 { + background-color: #b91c1c; } - .lg\:pb-64 { - padding-bottom: 16rem; + .group:hover .lg\:group-hover\:bg-red-800 { + background-color: #991b1b; } - .lg\:pl-64 { - padding-left: 16rem; + .group:hover .lg\:group-hover\:bg-red-900 { + background-color: #7f1d1d; } - .lg\:pt-72 { - padding-top: 18rem; + .group:hover .lg\:group-hover\:bg-yellow-50 { + background-color: #fffbeb; } - .lg\:pr-72 { - padding-right: 18rem; + .group:hover .lg\:group-hover\:bg-yellow-100 { + background-color: #fef3c7; } - .lg\:pb-72 { - padding-bottom: 18rem; + .group:hover .lg\:group-hover\:bg-yellow-200 { + background-color: #fde68a; } - .lg\:pl-72 { - padding-left: 18rem; + .group:hover .lg\:group-hover\:bg-yellow-300 { + background-color: #fcd34d; } - .lg\:pt-80 { - padding-top: 20rem; + .group:hover .lg\:group-hover\:bg-yellow-400 { + background-color: #fbbf24; } - .lg\:pr-80 { - padding-right: 20rem; + .group:hover .lg\:group-hover\:bg-yellow-500 { + background-color: #f59e0b; } - .lg\:pb-80 { - padding-bottom: 20rem; + .group:hover .lg\:group-hover\:bg-yellow-600 { + background-color: #d97706; } - .lg\:pl-80 { - padding-left: 20rem; + .group:hover .lg\:group-hover\:bg-yellow-700 { + background-color: #b45309; } - .lg\:pt-96 { - padding-top: 24rem; + .group:hover .lg\:group-hover\:bg-yellow-800 { + background-color: #92400e; } - .lg\:pr-96 { - padding-right: 24rem; + .group:hover .lg\:group-hover\:bg-yellow-900 { + background-color: #78350f; } - .lg\:pb-96 { - padding-bottom: 24rem; + .group:hover .lg\:group-hover\:bg-green-50 { + background-color: #ecfdf5; } - .lg\:pl-96 { - padding-left: 24rem; + .group:hover .lg\:group-hover\:bg-green-100 { + background-color: #d1fae5; } - .lg\:pt-px { - padding-top: 1px; + .group:hover .lg\:group-hover\:bg-green-200 { + background-color: #a7f3d0; } - .lg\:pr-px { - padding-right: 1px; + .group:hover .lg\:group-hover\:bg-green-300 { + background-color: #6ee7b7; } - .lg\:pb-px { - padding-bottom: 1px; + .group:hover .lg\:group-hover\:bg-green-400 { + background-color: #34d399; } - .lg\:pl-px { - padding-left: 1px; + .group:hover .lg\:group-hover\:bg-green-500 { + background-color: #10b981; } - .lg\:pt-0\.5 { - padding-top: 0.125rem; + .group:hover .lg\:group-hover\:bg-green-600 { + background-color: #059669; } - .lg\:pr-0\.5 { - padding-right: 0.125rem; + .group:hover .lg\:group-hover\:bg-green-700 { + background-color: #047857; } - .lg\:pb-0\.5 { - padding-bottom: 0.125rem; + .group:hover .lg\:group-hover\:bg-green-800 { + background-color: #065f46; } - .lg\:pl-0\.5 { - padding-left: 0.125rem; + .group:hover .lg\:group-hover\:bg-green-900 { + background-color: #064e3b; } - .lg\:pt-1\.5 { - padding-top: 0.375rem; + .group:hover .lg\:group-hover\:bg-blue-50 { + background-color: #eff6ff; } - .lg\:pr-1\.5 { - padding-right: 0.375rem; + .group:hover .lg\:group-hover\:bg-blue-100 { + background-color: #dbeafe; } - .lg\:pb-1\.5 { - padding-bottom: 0.375rem; + .group:hover .lg\:group-hover\:bg-blue-200 { + background-color: #bfdbfe; } - .lg\:pl-1\.5 { - padding-left: 0.375rem; + .group:hover .lg\:group-hover\:bg-blue-300 { + background-color: #93c5fd; } - .lg\:pt-2\.5 { - padding-top: 0.625rem; + .group:hover .lg\:group-hover\:bg-blue-400 { + background-color: #60a5fa; } - .lg\:pr-2\.5 { - padding-right: 0.625rem; + .group:hover .lg\:group-hover\:bg-blue-500 { + background-color: #3b82f6; } - .lg\:pb-2\.5 { - padding-bottom: 0.625rem; + .group:hover .lg\:group-hover\:bg-blue-600 { + background-color: #2563eb; } - .lg\:pl-2\.5 { - padding-left: 0.625rem; + .group:hover .lg\:group-hover\:bg-blue-700 { + background-color: #1d4ed8; } - .lg\:pt-3\.5 { - padding-top: 0.875rem; + .group:hover .lg\:group-hover\:bg-blue-800 { + background-color: #1e40af; } - .lg\:pr-3\.5 { - padding-right: 0.875rem; + .group:hover .lg\:group-hover\:bg-blue-900 { + background-color: #1e3a8a; } - .lg\:pb-3\.5 { - padding-bottom: 0.875rem; + .group:hover .lg\:group-hover\:bg-indigo-50 { + background-color: #eef2ff; } - .lg\:pl-3\.5 { - padding-left: 0.875rem; + .group:hover .lg\:group-hover\:bg-indigo-100 { + background-color: #e0e7ff; } - .lg\:placeholder-transparent::placeholder { - color: transparent; + .group:hover .lg\:group-hover\:bg-indigo-200 { + background-color: #c7d2fe; } - .lg\:placeholder-current::placeholder { - color: currentColor; + .group:hover .lg\:group-hover\:bg-indigo-300 { + background-color: #a5b4fc; } - .lg\:placeholder-black::placeholder { - color: #000; + .group:hover .lg\:group-hover\:bg-indigo-400 { + background-color: #818cf8; } - .lg\:placeholder-white::placeholder { - color: #fff; + .group:hover .lg\:group-hover\:bg-indigo-500 { + background-color: #6366f1; } - .lg\:placeholder-gray-50::placeholder { - color: #f9fafb; + .group:hover .lg\:group-hover\:bg-indigo-600 { + background-color: #4f46e5; } - .lg\:placeholder-gray-100::placeholder { - color: #f3f4f6; + .group:hover .lg\:group-hover\:bg-indigo-700 { + background-color: #4338ca; } - .lg\:placeholder-gray-200::placeholder { - color: #e5e7eb; + .group:hover .lg\:group-hover\:bg-indigo-800 { + background-color: #3730a3; } - .lg\:placeholder-gray-300::placeholder { - color: #d1d5db; + .group:hover .lg\:group-hover\:bg-indigo-900 { + background-color: #312e81; } - .lg\:placeholder-gray-400::placeholder { - color: #9ca3af; + .group:hover .lg\:group-hover\:bg-purple-50 { + background-color: #f5f3ff; } - .lg\:placeholder-gray-500::placeholder { - color: #6b7280; + .group:hover .lg\:group-hover\:bg-purple-100 { + background-color: #ede9fe; } - .lg\:placeholder-gray-600::placeholder { - color: #4b5563; + .group:hover .lg\:group-hover\:bg-purple-200 { + background-color: #ddd6fe; } - .lg\:placeholder-gray-700::placeholder { - color: #374151; + .group:hover .lg\:group-hover\:bg-purple-300 { + background-color: #c4b5fd; } - .lg\:placeholder-gray-800::placeholder { - color: #1f2937; + .group:hover .lg\:group-hover\:bg-purple-400 { + background-color: #a78bfa; } - .lg\:placeholder-gray-900::placeholder { - color: #111827; + .group:hover .lg\:group-hover\:bg-purple-500 { + background-color: #8b5cf6; } - .lg\:placeholder-red-50::placeholder { - color: #fef2f2; + .group:hover .lg\:group-hover\:bg-purple-600 { + background-color: #7c3aed; } - .lg\:placeholder-red-100::placeholder { - color: #fee2e2; + .group:hover .lg\:group-hover\:bg-purple-700 { + background-color: #6d28d9; } - .lg\:placeholder-red-200::placeholder { - color: #fecaca; + .group:hover .lg\:group-hover\:bg-purple-800 { + background-color: #5b21b6; } - .lg\:placeholder-red-300::placeholder { - color: #fca5a5; + .group:hover .lg\:group-hover\:bg-purple-900 { + background-color: #4c1d95; } - .lg\:placeholder-red-400::placeholder { - color: #f87171; + .group:hover .lg\:group-hover\:bg-pink-50 { + background-color: #fdf2f8; } - .lg\:placeholder-red-500::placeholder { - color: #ef4444; + .group:hover .lg\:group-hover\:bg-pink-100 { + background-color: #fce7f3; } - .lg\:placeholder-red-600::placeholder { - color: #dc2626; + .group:hover .lg\:group-hover\:bg-pink-200 { + background-color: #fbcfe8; } - .lg\:placeholder-red-700::placeholder { - color: #b91c1c; + .group:hover .lg\:group-hover\:bg-pink-300 { + background-color: #f9a8d4; } - .lg\:placeholder-red-800::placeholder { - color: #991b1b; + .group:hover .lg\:group-hover\:bg-pink-400 { + background-color: #f472b6; } - .lg\:placeholder-red-900::placeholder { - color: #7f1d1d; + .group:hover .lg\:group-hover\:bg-pink-500 { + background-color: #ec4899; } - .lg\:placeholder-yellow-50::placeholder { - color: #fffbeb; + .group:hover .lg\:group-hover\:bg-pink-600 { + background-color: #db2777; } - .lg\:placeholder-yellow-100::placeholder { - color: #fef3c7; + .group:hover .lg\:group-hover\:bg-pink-700 { + background-color: #be185d; } - .lg\:placeholder-yellow-200::placeholder { - color: #fde68a; + .group:hover .lg\:group-hover\:bg-pink-800 { + background-color: #9d174d; } - .lg\:placeholder-yellow-300::placeholder { - color: #fcd34d; + .group:hover .lg\:group-hover\:bg-pink-900 { + background-color: #831843; } - .lg\:placeholder-yellow-400::placeholder { - color: #fbbf24; + .lg\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .lg\:placeholder-yellow-500::placeholder { - color: #f59e0b; + .lg\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .lg\:placeholder-yellow-600::placeholder { - color: #d97706; + .lg\:focus-within\:bg-black:focus-within { + background-color: #000; } - .lg\:placeholder-yellow-700::placeholder { - color: #b45309; + .lg\:focus-within\:bg-white:focus-within { + background-color: #fff; } - .lg\:placeholder-yellow-800::placeholder { - color: #92400e; + .lg\:focus-within\:bg-gray-50:focus-within { + background-color: #f9fafb; } - .lg\:placeholder-yellow-900::placeholder { - color: #78350f; + .lg\:focus-within\:bg-gray-100:focus-within { + background-color: #f3f4f6; } - .lg\:placeholder-green-50::placeholder { - color: #ecfdf5; + .lg\:focus-within\:bg-gray-200:focus-within { + background-color: #e5e7eb; } - .lg\:placeholder-green-100::placeholder { - color: #d1fae5; + .lg\:focus-within\:bg-gray-300:focus-within { + background-color: #d1d5db; } - .lg\:placeholder-green-200::placeholder { - color: #a7f3d0; + .lg\:focus-within\:bg-gray-400:focus-within { + background-color: #9ca3af; } - .lg\:placeholder-green-300::placeholder { - color: #6ee7b7; + .lg\:focus-within\:bg-gray-500:focus-within { + background-color: #6b7280; } - .lg\:placeholder-green-400::placeholder { - color: #34d399; + .lg\:focus-within\:bg-gray-600:focus-within { + background-color: #4b5563; } - .lg\:placeholder-green-500::placeholder { - color: #10b981; + .lg\:focus-within\:bg-gray-700:focus-within { + background-color: #374151; } - .lg\:placeholder-green-600::placeholder { - color: #059669; + .lg\:focus-within\:bg-gray-800:focus-within { + background-color: #1f2937; } - .lg\:placeholder-green-700::placeholder { - color: #047857; + .lg\:focus-within\:bg-gray-900:focus-within { + background-color: #111827; } - .lg\:placeholder-green-800::placeholder { - color: #065f46; + .lg\:focus-within\:bg-red-50:focus-within { + background-color: #fef2f2; } - .lg\:placeholder-green-900::placeholder { - color: #064e3b; + .lg\:focus-within\:bg-red-100:focus-within { + background-color: #fee2e2; } - .lg\:placeholder-blue-50::placeholder { - color: #eff6ff; + .lg\:focus-within\:bg-red-200:focus-within { + background-color: #fecaca; } - .lg\:placeholder-blue-100::placeholder { - color: #dbeafe; + .lg\:focus-within\:bg-red-300:focus-within { + background-color: #fca5a5; } - .lg\:placeholder-blue-200::placeholder { - color: #bfdbfe; + .lg\:focus-within\:bg-red-400:focus-within { + background-color: #f87171; } - .lg\:placeholder-blue-300::placeholder { - color: #93c5fd; + .lg\:focus-within\:bg-red-500:focus-within { + background-color: #ef4444; } - .lg\:placeholder-blue-400::placeholder { - color: #60a5fa; + .lg\:focus-within\:bg-red-600:focus-within { + background-color: #dc2626; } - .lg\:placeholder-blue-500::placeholder { - color: #3b82f6; + .lg\:focus-within\:bg-red-700:focus-within { + background-color: #b91c1c; } - .lg\:placeholder-blue-600::placeholder { - color: #2563eb; + .lg\:focus-within\:bg-red-800:focus-within { + background-color: #991b1b; } - .lg\:placeholder-blue-700::placeholder { - color: #1d4ed8; + .lg\:focus-within\:bg-red-900:focus-within { + background-color: #7f1d1d; } - .lg\:placeholder-blue-800::placeholder { - color: #1e40af; + .lg\:focus-within\:bg-yellow-50:focus-within { + background-color: #fffbeb; } - .lg\:placeholder-blue-900::placeholder { - color: #1e3a8a; + .lg\:focus-within\:bg-yellow-100:focus-within { + background-color: #fef3c7; } - .lg\:placeholder-indigo-50::placeholder { - color: #eef2ff; + .lg\:focus-within\:bg-yellow-200:focus-within { + background-color: #fde68a; } - .lg\:placeholder-indigo-100::placeholder { - color: #e0e7ff; + .lg\:focus-within\:bg-yellow-300:focus-within { + background-color: #fcd34d; } - .lg\:placeholder-indigo-200::placeholder { - color: #c7d2fe; + .lg\:focus-within\:bg-yellow-400:focus-within { + background-color: #fbbf24; } - .lg\:placeholder-indigo-300::placeholder { - color: #a5b4fc; + .lg\:focus-within\:bg-yellow-500:focus-within { + background-color: #f59e0b; } - .lg\:placeholder-indigo-400::placeholder { - color: #818cf8; + .lg\:focus-within\:bg-yellow-600:focus-within { + background-color: #d97706; } - .lg\:placeholder-indigo-500::placeholder { - color: #6366f1; + .lg\:focus-within\:bg-yellow-700:focus-within { + background-color: #b45309; } - .lg\:placeholder-indigo-600::placeholder { - color: #4f46e5; + .lg\:focus-within\:bg-yellow-800:focus-within { + background-color: #92400e; } - .lg\:placeholder-indigo-700::placeholder { - color: #4338ca; + .lg\:focus-within\:bg-yellow-900:focus-within { + background-color: #78350f; } - .lg\:placeholder-indigo-800::placeholder { - color: #3730a3; + .lg\:focus-within\:bg-green-50:focus-within { + background-color: #ecfdf5; } - .lg\:placeholder-indigo-900::placeholder { - color: #312e81; + .lg\:focus-within\:bg-green-100:focus-within { + background-color: #d1fae5; } - .lg\:placeholder-purple-50::placeholder { - color: #f5f3ff; + .lg\:focus-within\:bg-green-200:focus-within { + background-color: #a7f3d0; } - .lg\:placeholder-purple-100::placeholder { - color: #ede9fe; + .lg\:focus-within\:bg-green-300:focus-within { + background-color: #6ee7b7; } - .lg\:placeholder-purple-200::placeholder { - color: #ddd6fe; + .lg\:focus-within\:bg-green-400:focus-within { + background-color: #34d399; } - .lg\:placeholder-purple-300::placeholder { - color: #c4b5fd; + .lg\:focus-within\:bg-green-500:focus-within { + background-color: #10b981; } - .lg\:placeholder-purple-400::placeholder { - color: #a78bfa; + .lg\:focus-within\:bg-green-600:focus-within { + background-color: #059669; } - .lg\:placeholder-purple-500::placeholder { - color: #8b5cf6; + .lg\:focus-within\:bg-green-700:focus-within { + background-color: #047857; } - .lg\:placeholder-purple-600::placeholder { - color: #7c3aed; + .lg\:focus-within\:bg-green-800:focus-within { + background-color: #065f46; } - .lg\:placeholder-purple-700::placeholder { - color: #6d28d9; + .lg\:focus-within\:bg-green-900:focus-within { + background-color: #064e3b; } - .lg\:placeholder-purple-800::placeholder { - color: #5b21b6; + .lg\:focus-within\:bg-blue-50:focus-within { + background-color: #eff6ff; } - .lg\:placeholder-purple-900::placeholder { - color: #4c1d95; + .lg\:focus-within\:bg-blue-100:focus-within { + background-color: #dbeafe; } - .lg\:placeholder-pink-50::placeholder { - color: #fdf2f8; + .lg\:focus-within\:bg-blue-200:focus-within { + background-color: #bfdbfe; } - .lg\:placeholder-pink-100::placeholder { - color: #fce7f3; + .lg\:focus-within\:bg-blue-300:focus-within { + background-color: #93c5fd; } - .lg\:placeholder-pink-200::placeholder { - color: #fbcfe8; + .lg\:focus-within\:bg-blue-400:focus-within { + background-color: #60a5fa; } - .lg\:placeholder-pink-300::placeholder { - color: #f9a8d4; + .lg\:focus-within\:bg-blue-500:focus-within { + background-color: #3b82f6; } - .lg\:placeholder-pink-400::placeholder { - color: #f472b6; + .lg\:focus-within\:bg-blue-600:focus-within { + background-color: #2563eb; } - .lg\:placeholder-pink-500::placeholder { - color: #ec4899; + .lg\:focus-within\:bg-blue-700:focus-within { + background-color: #1d4ed8; } - .lg\:placeholder-pink-600::placeholder { - color: #db2777; + .lg\:focus-within\:bg-blue-800:focus-within { + background-color: #1e40af; } - .lg\:placeholder-pink-700::placeholder { - color: #be185d; + .lg\:focus-within\:bg-blue-900:focus-within { + background-color: #1e3a8a; } - .lg\:placeholder-pink-800::placeholder { - color: #9d174d; + .lg\:focus-within\:bg-indigo-50:focus-within { + background-color: #eef2ff; } - .lg\:placeholder-pink-900::placeholder { - color: #831843; + .lg\:focus-within\:bg-indigo-100:focus-within { + background-color: #e0e7ff; } - .lg\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .lg\:focus-within\:bg-indigo-200:focus-within { + background-color: #c7d2fe; } - .lg\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .lg\:focus-within\:bg-indigo-300:focus-within { + background-color: #a5b4fc; } - .lg\:focus\:placeholder-black:focus::placeholder { - color: #000; + .lg\:focus-within\:bg-indigo-400:focus-within { + background-color: #818cf8; } - .lg\:focus\:placeholder-white:focus::placeholder { - color: #fff; + .lg\:focus-within\:bg-indigo-500:focus-within { + background-color: #6366f1; } - .lg\:focus\:placeholder-gray-50:focus::placeholder { - color: #f9fafb; + .lg\:focus-within\:bg-indigo-600:focus-within { + background-color: #4f46e5; } - .lg\:focus\:placeholder-gray-100:focus::placeholder { - color: #f3f4f6; + .lg\:focus-within\:bg-indigo-700:focus-within { + background-color: #4338ca; } - .lg\:focus\:placeholder-gray-200:focus::placeholder { - color: #e5e7eb; + .lg\:focus-within\:bg-indigo-800:focus-within { + background-color: #3730a3; } - .lg\:focus\:placeholder-gray-300:focus::placeholder { - color: #d1d5db; + .lg\:focus-within\:bg-indigo-900:focus-within { + background-color: #312e81; } - .lg\:focus\:placeholder-gray-400:focus::placeholder { - color: #9ca3af; + .lg\:focus-within\:bg-purple-50:focus-within { + background-color: #f5f3ff; } - .lg\:focus\:placeholder-gray-500:focus::placeholder { - color: #6b7280; + .lg\:focus-within\:bg-purple-100:focus-within { + background-color: #ede9fe; } - .lg\:focus\:placeholder-gray-600:focus::placeholder { - color: #4b5563; + .lg\:focus-within\:bg-purple-200:focus-within { + background-color: #ddd6fe; } - .lg\:focus\:placeholder-gray-700:focus::placeholder { - color: #374151; + .lg\:focus-within\:bg-purple-300:focus-within { + background-color: #c4b5fd; } - .lg\:focus\:placeholder-gray-800:focus::placeholder { - color: #1f2937; + .lg\:focus-within\:bg-purple-400:focus-within { + background-color: #a78bfa; } - .lg\:focus\:placeholder-gray-900:focus::placeholder { - color: #111827; + .lg\:focus-within\:bg-purple-500:focus-within { + background-color: #8b5cf6; } - .lg\:focus\:placeholder-red-50:focus::placeholder { - color: #fef2f2; + .lg\:focus-within\:bg-purple-600:focus-within { + background-color: #7c3aed; } - .lg\:focus\:placeholder-red-100:focus::placeholder { - color: #fee2e2; + .lg\:focus-within\:bg-purple-700:focus-within { + background-color: #6d28d9; } - .lg\:focus\:placeholder-red-200:focus::placeholder { - color: #fecaca; + .lg\:focus-within\:bg-purple-800:focus-within { + background-color: #5b21b6; } - .lg\:focus\:placeholder-red-300:focus::placeholder { - color: #fca5a5; + .lg\:focus-within\:bg-purple-900:focus-within { + background-color: #4c1d95; } - .lg\:focus\:placeholder-red-400:focus::placeholder { - color: #f87171; + .lg\:focus-within\:bg-pink-50:focus-within { + background-color: #fdf2f8; } - .lg\:focus\:placeholder-red-500:focus::placeholder { - color: #ef4444; + .lg\:focus-within\:bg-pink-100:focus-within { + background-color: #fce7f3; } - .lg\:focus\:placeholder-red-600:focus::placeholder { - color: #dc2626; + .lg\:focus-within\:bg-pink-200:focus-within { + background-color: #fbcfe8; } - .lg\:focus\:placeholder-red-700:focus::placeholder { - color: #b91c1c; + .lg\:focus-within\:bg-pink-300:focus-within { + background-color: #f9a8d4; } - .lg\:focus\:placeholder-red-800:focus::placeholder { - color: #991b1b; + .lg\:focus-within\:bg-pink-400:focus-within { + background-color: #f472b6; } - .lg\:focus\:placeholder-red-900:focus::placeholder { - color: #7f1d1d; + .lg\:focus-within\:bg-pink-500:focus-within { + background-color: #ec4899; } - .lg\:focus\:placeholder-yellow-50:focus::placeholder { - color: #fffbeb; + .lg\:focus-within\:bg-pink-600:focus-within { + background-color: #db2777; } - .lg\:focus\:placeholder-yellow-100:focus::placeholder { - color: #fef3c7; + .lg\:focus-within\:bg-pink-700:focus-within { + background-color: #be185d; } - .lg\:focus\:placeholder-yellow-200:focus::placeholder { - color: #fde68a; + .lg\:focus-within\:bg-pink-800:focus-within { + background-color: #9d174d; } - .lg\:focus\:placeholder-yellow-300:focus::placeholder { - color: #fcd34d; + .lg\:focus-within\:bg-pink-900:focus-within { + background-color: #831843; } - .lg\:focus\:placeholder-yellow-400:focus::placeholder { - color: #fbbf24; + .lg\:hover\:bg-transparent:hover { + background-color: transparent; } - .lg\:focus\:placeholder-yellow-500:focus::placeholder { - color: #f59e0b; + .lg\:hover\:bg-current:hover { + background-color: currentColor; } - .lg\:focus\:placeholder-yellow-600:focus::placeholder { - color: #d97706; + .lg\:hover\:bg-black:hover { + background-color: #000; } - .lg\:focus\:placeholder-yellow-700:focus::placeholder { - color: #b45309; + .lg\:hover\:bg-white:hover { + background-color: #fff; } - .lg\:focus\:placeholder-yellow-800:focus::placeholder { - color: #92400e; + .lg\:hover\:bg-gray-50:hover { + background-color: #f9fafb; } - .lg\:focus\:placeholder-yellow-900:focus::placeholder { - color: #78350f; + .lg\:hover\:bg-gray-100:hover { + background-color: #f3f4f6; } - .lg\:focus\:placeholder-green-50:focus::placeholder { - color: #ecfdf5; + .lg\:hover\:bg-gray-200:hover { + background-color: #e5e7eb; } - .lg\:focus\:placeholder-green-100:focus::placeholder { - color: #d1fae5; + .lg\:hover\:bg-gray-300:hover { + background-color: #d1d5db; } - .lg\:focus\:placeholder-green-200:focus::placeholder { - color: #a7f3d0; + .lg\:hover\:bg-gray-400:hover { + background-color: #9ca3af; } - .lg\:focus\:placeholder-green-300:focus::placeholder { - color: #6ee7b7; + .lg\:hover\:bg-gray-500:hover { + background-color: #6b7280; } - .lg\:focus\:placeholder-green-400:focus::placeholder { - color: #34d399; + .lg\:hover\:bg-gray-600:hover { + background-color: #4b5563; } - .lg\:focus\:placeholder-green-500:focus::placeholder { - color: #10b981; + .lg\:hover\:bg-gray-700:hover { + background-color: #374151; } - .lg\:focus\:placeholder-green-600:focus::placeholder { - color: #059669; + .lg\:hover\:bg-gray-800:hover { + background-color: #1f2937; } - .lg\:focus\:placeholder-green-700:focus::placeholder { - color: #047857; + .lg\:hover\:bg-gray-900:hover { + background-color: #111827; } - .lg\:focus\:placeholder-green-800:focus::placeholder { - color: #065f46; + .lg\:hover\:bg-red-50:hover { + background-color: #fef2f2; } - .lg\:focus\:placeholder-green-900:focus::placeholder { - color: #064e3b; + .lg\:hover\:bg-red-100:hover { + background-color: #fee2e2; } - .lg\:focus\:placeholder-blue-50:focus::placeholder { - color: #eff6ff; + .lg\:hover\:bg-red-200:hover { + background-color: #fecaca; } - .lg\:focus\:placeholder-blue-100:focus::placeholder { - color: #dbeafe; + .lg\:hover\:bg-red-300:hover { + background-color: #fca5a5; } - .lg\:focus\:placeholder-blue-200:focus::placeholder { - color: #bfdbfe; + .lg\:hover\:bg-red-400:hover { + background-color: #f87171; } - .lg\:focus\:placeholder-blue-300:focus::placeholder { - color: #93c5fd; + .lg\:hover\:bg-red-500:hover { + background-color: #ef4444; } - .lg\:focus\:placeholder-blue-400:focus::placeholder { - color: #60a5fa; + .lg\:hover\:bg-red-600:hover { + background-color: #dc2626; } - .lg\:focus\:placeholder-blue-500:focus::placeholder { - color: #3b82f6; + .lg\:hover\:bg-red-700:hover { + background-color: #b91c1c; } - .lg\:focus\:placeholder-blue-600:focus::placeholder { - color: #2563eb; + .lg\:hover\:bg-red-800:hover { + background-color: #991b1b; } - .lg\:focus\:placeholder-blue-700:focus::placeholder { - color: #1d4ed8; + .lg\:hover\:bg-red-900:hover { + background-color: #7f1d1d; } - .lg\:focus\:placeholder-blue-800:focus::placeholder { - color: #1e40af; + .lg\:hover\:bg-yellow-50:hover { + background-color: #fffbeb; } - .lg\:focus\:placeholder-blue-900:focus::placeholder { - color: #1e3a8a; + .lg\:hover\:bg-yellow-100:hover { + background-color: #fef3c7; } - .lg\:focus\:placeholder-indigo-50:focus::placeholder { - color: #eef2ff; + .lg\:hover\:bg-yellow-200:hover { + background-color: #fde68a; } - .lg\:focus\:placeholder-indigo-100:focus::placeholder { - color: #e0e7ff; + .lg\:hover\:bg-yellow-300:hover { + background-color: #fcd34d; } - .lg\:focus\:placeholder-indigo-200:focus::placeholder { - color: #c7d2fe; + .lg\:hover\:bg-yellow-400:hover { + background-color: #fbbf24; } - .lg\:focus\:placeholder-indigo-300:focus::placeholder { - color: #a5b4fc; + .lg\:hover\:bg-yellow-500:hover { + background-color: #f59e0b; } - .lg\:focus\:placeholder-indigo-400:focus::placeholder { - color: #818cf8; + .lg\:hover\:bg-yellow-600:hover { + background-color: #d97706; } - .lg\:focus\:placeholder-indigo-500:focus::placeholder { - color: #6366f1; + .lg\:hover\:bg-yellow-700:hover { + background-color: #b45309; } - .lg\:focus\:placeholder-indigo-600:focus::placeholder { - color: #4f46e5; + .lg\:hover\:bg-yellow-800:hover { + background-color: #92400e; } - .lg\:focus\:placeholder-indigo-700:focus::placeholder { - color: #4338ca; + .lg\:hover\:bg-yellow-900:hover { + background-color: #78350f; } - .lg\:focus\:placeholder-indigo-800:focus::placeholder { - color: #3730a3; + .lg\:hover\:bg-green-50:hover { + background-color: #ecfdf5; } - .lg\:focus\:placeholder-indigo-900:focus::placeholder { - color: #312e81; + .lg\:hover\:bg-green-100:hover { + background-color: #d1fae5; } - .lg\:focus\:placeholder-purple-50:focus::placeholder { - color: #f5f3ff; + .lg\:hover\:bg-green-200:hover { + background-color: #a7f3d0; } - .lg\:focus\:placeholder-purple-100:focus::placeholder { - color: #ede9fe; + .lg\:hover\:bg-green-300:hover { + background-color: #6ee7b7; } - .lg\:focus\:placeholder-purple-200:focus::placeholder { - color: #ddd6fe; + .lg\:hover\:bg-green-400:hover { + background-color: #34d399; } - .lg\:focus\:placeholder-purple-300:focus::placeholder { - color: #c4b5fd; + .lg\:hover\:bg-green-500:hover { + background-color: #10b981; } - .lg\:focus\:placeholder-purple-400:focus::placeholder { - color: #a78bfa; + .lg\:hover\:bg-green-600:hover { + background-color: #059669; } - .lg\:focus\:placeholder-purple-500:focus::placeholder { - color: #8b5cf6; + .lg\:hover\:bg-green-700:hover { + background-color: #047857; } - .lg\:focus\:placeholder-purple-600:focus::placeholder { - color: #7c3aed; + .lg\:hover\:bg-green-800:hover { + background-color: #065f46; } - .lg\:focus\:placeholder-purple-700:focus::placeholder { - color: #6d28d9; + .lg\:hover\:bg-green-900:hover { + background-color: #064e3b; } - .lg\:focus\:placeholder-purple-800:focus::placeholder { - color: #5b21b6; + .lg\:hover\:bg-blue-50:hover { + background-color: #eff6ff; } - .lg\:focus\:placeholder-purple-900:focus::placeholder { - color: #4c1d95; + .lg\:hover\:bg-blue-100:hover { + background-color: #dbeafe; } - .lg\:focus\:placeholder-pink-50:focus::placeholder { - color: #fdf2f8; + .lg\:hover\:bg-blue-200:hover { + background-color: #bfdbfe; } - .lg\:focus\:placeholder-pink-100:focus::placeholder { - color: #fce7f3; + .lg\:hover\:bg-blue-300:hover { + background-color: #93c5fd; } - .lg\:focus\:placeholder-pink-200:focus::placeholder { - color: #fbcfe8; + .lg\:hover\:bg-blue-400:hover { + background-color: #60a5fa; } - .lg\:focus\:placeholder-pink-300:focus::placeholder { - color: #f9a8d4; + .lg\:hover\:bg-blue-500:hover { + background-color: #3b82f6; } - .lg\:focus\:placeholder-pink-400:focus::placeholder { - color: #f472b6; + .lg\:hover\:bg-blue-600:hover { + background-color: #2563eb; } - .lg\:focus\:placeholder-pink-500:focus::placeholder { - color: #ec4899; + .lg\:hover\:bg-blue-700:hover { + background-color: #1d4ed8; } - .lg\:focus\:placeholder-pink-600:focus::placeholder { - color: #db2777; + .lg\:hover\:bg-blue-800:hover { + background-color: #1e40af; } - .lg\:focus\:placeholder-pink-700:focus::placeholder { - color: #be185d; + .lg\:hover\:bg-blue-900:hover { + background-color: #1e3a8a; } - .lg\:focus\:placeholder-pink-800:focus::placeholder { - color: #9d174d; + .lg\:hover\:bg-indigo-50:hover { + background-color: #eef2ff; } - .lg\:focus\:placeholder-pink-900:focus::placeholder { - color: #831843; + .lg\:hover\:bg-indigo-100:hover { + background-color: #e0e7ff; } - .lg\:pointer-events-none { - pointer-events: none; + .lg\:hover\:bg-indigo-200:hover { + background-color: #c7d2fe; } - .lg\:pointer-events-auto { - pointer-events: auto; + .lg\:hover\:bg-indigo-300:hover { + background-color: #a5b4fc; } - .lg\:static { - position: static; + .lg\:hover\:bg-indigo-400:hover { + background-color: #818cf8; } - .lg\:fixed { - position: fixed; + .lg\:hover\:bg-indigo-500:hover { + background-color: #6366f1; } - .lg\:absolute { - position: absolute; + .lg\:hover\:bg-indigo-600:hover { + background-color: #4f46e5; } - .lg\:relative { - position: relative; + .lg\:hover\:bg-indigo-700:hover { + background-color: #4338ca; } - .lg\:sticky { - position: sticky; + .lg\:hover\:bg-indigo-800:hover { + background-color: #3730a3; } - .lg\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .lg\:hover\:bg-indigo-900:hover { + background-color: #312e81; } - .lg\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .lg\:hover\:bg-purple-50:hover { + background-color: #f5f3ff; } - .lg\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .lg\:hover\:bg-purple-100:hover { + background-color: #ede9fe; } - .lg\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .lg\:hover\:bg-purple-200:hover { + background-color: #ddd6fe; } - .lg\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .lg\:hover\:bg-purple-300:hover { + background-color: #c4b5fd; } - .lg\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .lg\:hover\:bg-purple-400:hover { + background-color: #a78bfa; } - .lg\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .lg\:hover\:bg-purple-500:hover { + background-color: #8b5cf6; } - .lg\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .lg\:hover\:bg-purple-600:hover { + background-color: #7c3aed; } - .lg\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .lg\:hover\:bg-purple-700:hover { + background-color: #6d28d9; } - .lg\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .lg\:hover\:bg-purple-800:hover { + background-color: #5b21b6; } - .lg\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .lg\:hover\:bg-purple-900:hover { + background-color: #4c1d95; } - .lg\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .lg\:hover\:bg-pink-50:hover { + background-color: #fdf2f8; } - .lg\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .lg\:hover\:bg-pink-100:hover { + background-color: #fce7f3; } - .lg\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .lg\:hover\:bg-pink-200:hover { + background-color: #fbcfe8; } - .lg\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .lg\:hover\:bg-pink-300:hover { + background-color: #f9a8d4; } - .lg\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .lg\:hover\:bg-pink-400:hover { + background-color: #f472b6; } - .lg\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .lg\:hover\:bg-pink-500:hover { + background-color: #ec4899; } - .lg\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .lg\:hover\:bg-pink-600:hover { + background-color: #db2777; } - .lg\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .lg\:hover\:bg-pink-700:hover { + background-color: #be185d; } - .lg\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .lg\:hover\:bg-pink-800:hover { + background-color: #9d174d; } - .lg\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .lg\:hover\:bg-pink-900:hover { + background-color: #831843; } - .lg\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .lg\:focus\:bg-transparent:focus { + background-color: transparent; } - .lg\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .lg\:focus\:bg-current:focus { + background-color: currentColor; } - .lg\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .lg\:focus\:bg-black:focus { + background-color: #000; } - .lg\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .lg\:focus\:bg-white:focus { + background-color: #fff; } - .lg\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .lg\:focus\:bg-gray-50:focus { + background-color: #f9fafb; } - .lg\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .lg\:focus\:bg-gray-100:focus { + background-color: #f3f4f6; } - .lg\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .lg\:focus\:bg-gray-200:focus { + background-color: #e5e7eb; } - .lg\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .lg\:focus\:bg-gray-300:focus { + background-color: #d1d5db; } - .lg\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .lg\:focus\:bg-gray-400:focus { + background-color: #9ca3af; } - .lg\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .lg\:focus\:bg-gray-500:focus { + background-color: #6b7280; } - .lg\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .lg\:focus\:bg-gray-600:focus { + background-color: #4b5563; } - .lg\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .lg\:focus\:bg-gray-700:focus { + background-color: #374151; } - .lg\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .lg\:focus\:bg-gray-800:focus { + background-color: #1f2937; } - .lg\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .lg\:focus\:bg-gray-900:focus { + background-color: #111827; } - .lg\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .lg\:focus\:bg-red-50:focus { + background-color: #fef2f2; } - .lg\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .lg\:focus\:bg-red-100:focus { + background-color: #fee2e2; } - .lg\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .lg\:focus\:bg-red-200:focus { + background-color: #fecaca; } - .lg\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .lg\:focus\:bg-red-300:focus { + background-color: #fca5a5; } - .lg\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .lg\:focus\:bg-red-400:focus { + background-color: #f87171; } - .lg\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .lg\:focus\:bg-red-500:focus { + background-color: #ef4444; } - .lg\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .lg\:focus\:bg-red-600:focus { + background-color: #dc2626; } - .lg\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .lg\:focus\:bg-red-700:focus { + background-color: #b91c1c; } - .lg\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .lg\:focus\:bg-red-800:focus { + background-color: #991b1b; } - .lg\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .lg\:focus\:bg-red-900:focus { + background-color: #7f1d1d; } - .lg\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .lg\:focus\:bg-yellow-50:focus { + background-color: #fffbeb; } - .lg\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .lg\:focus\:bg-yellow-100:focus { + background-color: #fef3c7; } - .lg\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .lg\:focus\:bg-yellow-200:focus { + background-color: #fde68a; } - .lg\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .lg\:focus\:bg-yellow-300:focus { + background-color: #fcd34d; } - .lg\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .lg\:focus\:bg-yellow-400:focus { + background-color: #fbbf24; } - .lg\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .lg\:focus\:bg-yellow-500:focus { + background-color: #f59e0b; } - .lg\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .lg\:focus\:bg-yellow-600:focus { + background-color: #d97706; } - .lg\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .lg\:focus\:bg-yellow-700:focus { + background-color: #b45309; } - .lg\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .lg\:focus\:bg-yellow-800:focus { + background-color: #92400e; } - .lg\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .lg\:focus\:bg-yellow-900:focus { + background-color: #78350f; } - .lg\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .lg\:focus\:bg-green-50:focus { + background-color: #ecfdf5; } - .lg\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .lg\:focus\:bg-green-100:focus { + background-color: #d1fae5; } - .lg\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .lg\:focus\:bg-green-200:focus { + background-color: #a7f3d0; } - .lg\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .lg\:focus\:bg-green-300:focus { + background-color: #6ee7b7; } - .lg\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .lg\:focus\:bg-green-400:focus { + background-color: #34d399; } - .lg\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .lg\:focus\:bg-green-500:focus { + background-color: #10b981; } - .lg\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .lg\:focus\:bg-green-600:focus { + background-color: #059669; } - .lg\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .lg\:focus\:bg-green-700:focus { + background-color: #047857; } - .lg\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .lg\:focus\:bg-green-800:focus { + background-color: #065f46; } - .lg\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .lg\:focus\:bg-green-900:focus { + background-color: #064e3b; } - .lg\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .lg\:focus\:bg-blue-50:focus { + background-color: #eff6ff; } - .lg\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .lg\:focus\:bg-blue-100:focus { + background-color: #dbeafe; } - .lg\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .lg\:focus\:bg-blue-200:focus { + background-color: #bfdbfe; } - .lg\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .lg\:focus\:bg-blue-300:focus { + background-color: #93c5fd; } - .lg\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .lg\:focus\:bg-blue-400:focus { + background-color: #60a5fa; } - .lg\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .lg\:focus\:bg-blue-500:focus { + background-color: #3b82f6; } - .lg\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .lg\:focus\:bg-blue-600:focus { + background-color: #2563eb; } - .lg\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .lg\:focus\:bg-blue-700:focus { + background-color: #1d4ed8; } - .lg\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .lg\:focus\:bg-blue-800:focus { + background-color: #1e40af; } - .lg\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .lg\:focus\:bg-blue-900:focus { + background-color: #1e3a8a; } - .lg\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .lg\:focus\:bg-indigo-50:focus { + background-color: #eef2ff; } - .lg\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .lg\:focus\:bg-indigo-100:focus { + background-color: #e0e7ff; } - .lg\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .lg\:focus\:bg-indigo-200:focus { + background-color: #c7d2fe; } - .lg\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .lg\:focus\:bg-indigo-300:focus { + background-color: #a5b4fc; } - .lg\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .lg\:focus\:bg-indigo-400:focus { + background-color: #818cf8; } - .lg\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .lg\:focus\:bg-indigo-500:focus { + background-color: #6366f1; } - .lg\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .lg\:focus\:bg-indigo-600:focus { + background-color: #4f46e5; } - .lg\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .lg\:focus\:bg-indigo-700:focus { + background-color: #4338ca; } - .lg\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .lg\:focus\:bg-indigo-800:focus { + background-color: #3730a3; } - .lg\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .lg\:focus\:bg-indigo-900:focus { + background-color: #312e81; } - .lg\:inset-y-0 { - top: 0px; - bottom: 0px; + .lg\:focus\:bg-purple-50:focus { + background-color: #f5f3ff; } - .lg\:inset-x-0 { - right: 0px; - left: 0px; + .lg\:focus\:bg-purple-100:focus { + background-color: #ede9fe; } - .lg\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .lg\:focus\:bg-purple-200:focus { + background-color: #ddd6fe; } - .lg\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .lg\:focus\:bg-purple-300:focus { + background-color: #c4b5fd; } - .lg\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .lg\:focus\:bg-purple-400:focus { + background-color: #a78bfa; } - .lg\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .lg\:focus\:bg-purple-500:focus { + background-color: #8b5cf6; } - .lg\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .lg\:focus\:bg-purple-600:focus { + background-color: #7c3aed; } - .lg\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .lg\:focus\:bg-purple-700:focus { + background-color: #6d28d9; } - .lg\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .lg\:focus\:bg-purple-800:focus { + background-color: #5b21b6; } - .lg\:inset-x-4 { - right: 1rem; - left: 1rem; + .lg\:focus\:bg-purple-900:focus { + background-color: #4c1d95; } - .lg\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .lg\:focus\:bg-pink-50:focus { + background-color: #fdf2f8; } - .lg\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .lg\:focus\:bg-pink-100:focus { + background-color: #fce7f3; } - .lg\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .lg\:focus\:bg-pink-200:focus { + background-color: #fbcfe8; } - .lg\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .lg\:focus\:bg-pink-300:focus { + background-color: #f9a8d4; } - .lg\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .lg\:focus\:bg-pink-400:focus { + background-color: #f472b6; } - .lg\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .lg\:focus\:bg-pink-500:focus { + background-color: #ec4899; } - .lg\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .lg\:focus\:bg-pink-600:focus { + background-color: #db2777; } - .lg\:inset-x-8 { - right: 2rem; - left: 2rem; + .lg\:focus\:bg-pink-700:focus { + background-color: #be185d; } - .lg\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .lg\:focus\:bg-pink-800:focus { + background-color: #9d174d; } - .lg\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .lg\:focus\:bg-pink-900:focus { + background-color: #831843; } - .lg\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .lg\:bg-none { + background-image: none; } - .lg\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .lg\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .lg\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .lg\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .lg\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .lg\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .lg\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .lg\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .lg\:inset-x-12 { - right: 3rem; - left: 3rem; + .lg\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .lg\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .lg\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .lg\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .lg\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .lg\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .lg\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .lg\:inset-x-16 { - right: 4rem; - left: 4rem; + .lg\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .lg\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:inset-x-20 { - right: 5rem; - left: 5rem; + .lg\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .lg\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:inset-x-24 { - right: 6rem; - left: 6rem; + .lg\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .lg\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:inset-x-28 { - right: 7rem; - left: 7rem; + .lg\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .lg\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:inset-x-32 { - right: 8rem; - left: 8rem; + .lg\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .lg\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:inset-x-36 { - right: 9rem; - left: 9rem; + .lg\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .lg\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:inset-x-40 { - right: 10rem; - left: 10rem; + .lg\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .lg\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:inset-x-44 { - right: 11rem; - left: 11rem; + .lg\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .lg\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:inset-x-48 { - right: 12rem; - left: 12rem; + .lg\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .lg\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:inset-x-52 { - right: 13rem; - left: 13rem; + .lg\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .lg\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:inset-x-56 { - right: 14rem; - left: 14rem; + .lg\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .lg\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:inset-x-60 { - right: 15rem; - left: 15rem; + .lg\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .lg\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:inset-x-64 { - right: 16rem; - left: 16rem; + .lg\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .lg\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:inset-x-72 { - right: 18rem; - left: 18rem; + .lg\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .lg\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:inset-x-80 { - right: 20rem; - left: 20rem; + .lg\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .lg\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:inset-x-96 { - right: 24rem; - left: 24rem; + .lg\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:inset-y-auto { - top: auto; - bottom: auto; + .lg\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:inset-x-auto { - right: auto; - left: auto; + .lg\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:inset-y-px { - top: 1px; - bottom: 1px; + .lg\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:inset-x-px { - right: 1px; - left: 1px; + .lg\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .lg\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .lg\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .lg\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .lg\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .lg\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .lg\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .lg\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .lg\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:-inset-y-0 { - top: 0px; - bottom: 0px; + .lg\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:-inset-x-0 { - right: 0px; - left: 0px; + .lg\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .lg\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .lg\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .lg\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .lg\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .lg\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .lg\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .lg\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:-inset-x-4 { - right: -1rem; - left: -1rem; + .lg\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .lg\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .lg\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .lg\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .lg\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .lg\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .lg\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .lg\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:-inset-x-8 { - right: -2rem; - left: -2rem; + .lg\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .lg\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .lg\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .lg\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .lg\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .lg\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .lg\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .lg\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:-inset-x-12 { - right: -3rem; - left: -3rem; + .lg\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .lg\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .lg\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .lg\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:-inset-x-16 { - right: -4rem; - left: -4rem; + .lg\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .lg\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:-inset-x-20 { - right: -5rem; - left: -5rem; + .lg\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .lg\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:-inset-x-24 { - right: -6rem; - left: -6rem; + .lg\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .lg\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:-inset-x-28 { - right: -7rem; - left: -7rem; + .lg\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .lg\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:-inset-x-32 { - right: -8rem; - left: -8rem; + .lg\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .lg\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:-inset-x-36 { - right: -9rem; - left: -9rem; + .lg\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .lg\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:-inset-x-40 { - right: -10rem; - left: -10rem; + .lg\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .lg\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-inset-x-44 { - right: -11rem; - left: -11rem; + .lg\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .lg\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-inset-x-48 { - right: -12rem; - left: -12rem; + .lg\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .lg\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:-inset-x-52 { - right: -13rem; - left: -13rem; + .lg\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .lg\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:-inset-x-56 { - right: -14rem; - left: -14rem; + .lg\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .lg\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:-inset-x-60 { - right: -15rem; - left: -15rem; + .lg\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .lg\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:-inset-x-64 { - right: -16rem; - left: -16rem; + .lg\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .lg\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:-inset-x-72 { - right: -18rem; - left: -18rem; + .lg\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .lg\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:-inset-x-80 { - right: -20rem; - left: -20rem; + .lg\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .lg\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:-inset-x-96 { - right: -24rem; - left: -24rem; + .lg\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:-inset-y-px { - top: -1px; - bottom: -1px; + .lg\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:-inset-x-px { - right: -1px; - left: -1px; + .lg\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .lg\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .lg\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .lg\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .lg\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .lg\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .lg\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .lg\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .lg\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .lg\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:inset-x-1\/2 { - right: 50%; - left: 50%; + .lg\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .lg\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .lg\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .lg\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .lg\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .lg\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:inset-x-1\/4 { - right: 25%; - left: 25%; + .lg\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .lg\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:inset-x-2\/4 { - right: 50%; - left: 50%; + .lg\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .lg\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:inset-x-3\/4 { - right: 75%; - left: 75%; + .lg\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:inset-y-full { - top: 100%; - bottom: 100%; + .lg\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:inset-x-full { - right: 100%; - left: 100%; + .lg\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .lg\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .lg\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .lg\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .lg\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .lg\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .lg\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .lg\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .lg\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .lg\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .lg\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .lg\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .lg\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:-inset-y-full { - top: -100%; - bottom: -100%; + .lg\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:-inset-x-full { - right: -100%; - left: -100%; + .lg\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:top-0 { - top: 0px; + .lg\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:right-0 { - right: 0px; + .lg\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:bottom-0 { - bottom: 0px; + .lg\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:left-0 { - left: 0px; + .lg\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:top-1 { - top: 0.25rem; + .lg\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:right-1 { - right: 0.25rem; + .lg\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:bottom-1 { - bottom: 0.25rem; + .lg\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:left-1 { - left: 0.25rem; + .lg\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:top-2 { - top: 0.5rem; + .lg\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:right-2 { - right: 0.5rem; + .lg\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:bottom-2 { - bottom: 0.5rem; + .lg\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:left-2 { - left: 0.5rem; + .lg\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:top-3 { - top: 0.75rem; + .lg\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:right-3 { - right: 0.75rem; + .lg\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:bottom-3 { - bottom: 0.75rem; + .lg\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:left-3 { - left: 0.75rem; + .lg\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:top-4 { - top: 1rem; + .lg\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:right-4 { - right: 1rem; + .lg\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:bottom-4 { - bottom: 1rem; + .lg\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:left-4 { - left: 1rem; + .lg\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:top-5 { - top: 1.25rem; + .lg\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:right-5 { - right: 1.25rem; + .lg\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:bottom-5 { - bottom: 1.25rem; + .lg\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:left-5 { - left: 1.25rem; + .lg\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:top-6 { - top: 1.5rem; + .lg\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:right-6 { - right: 1.5rem; + .lg\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:bottom-6 { - bottom: 1.5rem; + .lg\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:left-6 { - left: 1.5rem; + .lg\:to-transparent { + --tw-gradient-to: transparent; } - .lg\:top-7 { - top: 1.75rem; + .lg\:to-current { + --tw-gradient-to: currentColor; } - .lg\:right-7 { - right: 1.75rem; + .lg\:to-black { + --tw-gradient-to: #000; } - .lg\:bottom-7 { - bottom: 1.75rem; + .lg\:to-white { + --tw-gradient-to: #fff; } - .lg\:left-7 { - left: 1.75rem; + .lg\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .lg\:top-8 { - top: 2rem; + .lg\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .lg\:right-8 { - right: 2rem; + .lg\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .lg\:bottom-8 { - bottom: 2rem; + .lg\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .lg\:left-8 { - left: 2rem; + .lg\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .lg\:top-9 { - top: 2.25rem; + .lg\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .lg\:right-9 { - right: 2.25rem; + .lg\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .lg\:bottom-9 { - bottom: 2.25rem; + .lg\:to-gray-700 { + --tw-gradient-to: #374151; } - .lg\:left-9 { - left: 2.25rem; + .lg\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .lg\:top-10 { - top: 2.5rem; + .lg\:to-gray-900 { + --tw-gradient-to: #111827; } - .lg\:right-10 { - right: 2.5rem; + .lg\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .lg\:bottom-10 { - bottom: 2.5rem; + .lg\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .lg\:left-10 { - left: 2.5rem; + .lg\:to-red-200 { + --tw-gradient-to: #fecaca; } - .lg\:top-11 { - top: 2.75rem; + .lg\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .lg\:right-11 { - right: 2.75rem; + .lg\:to-red-400 { + --tw-gradient-to: #f87171; } - .lg\:bottom-11 { - bottom: 2.75rem; + .lg\:to-red-500 { + --tw-gradient-to: #ef4444; } - .lg\:left-11 { - left: 2.75rem; + .lg\:to-red-600 { + --tw-gradient-to: #dc2626; } - .lg\:top-12 { - top: 3rem; + .lg\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .lg\:right-12 { - right: 3rem; + .lg\:to-red-800 { + --tw-gradient-to: #991b1b; } - .lg\:bottom-12 { - bottom: 3rem; + .lg\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .lg\:left-12 { - left: 3rem; + .lg\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .lg\:top-14 { - top: 3.5rem; + .lg\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .lg\:right-14 { - right: 3.5rem; + .lg\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .lg\:bottom-14 { - bottom: 3.5rem; + .lg\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .lg\:left-14 { - left: 3.5rem; + .lg\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .lg\:top-16 { - top: 4rem; + .lg\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .lg\:right-16 { - right: 4rem; + .lg\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .lg\:bottom-16 { - bottom: 4rem; + .lg\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .lg\:left-16 { - left: 4rem; + .lg\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .lg\:top-20 { - top: 5rem; + .lg\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .lg\:right-20 { - right: 5rem; + .lg\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .lg\:bottom-20 { - bottom: 5rem; + .lg\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .lg\:left-20 { - left: 5rem; + .lg\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .lg\:top-24 { - top: 6rem; + .lg\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .lg\:right-24 { - right: 6rem; + .lg\:to-green-400 { + --tw-gradient-to: #34d399; } - .lg\:bottom-24 { - bottom: 6rem; + .lg\:to-green-500 { + --tw-gradient-to: #10b981; } - .lg\:left-24 { - left: 6rem; + .lg\:to-green-600 { + --tw-gradient-to: #059669; } - .lg\:top-28 { - top: 7rem; + .lg\:to-green-700 { + --tw-gradient-to: #047857; } - .lg\:right-28 { - right: 7rem; + .lg\:to-green-800 { + --tw-gradient-to: #065f46; } - .lg\:bottom-28 { - bottom: 7rem; + .lg\:to-green-900 { + --tw-gradient-to: #064e3b; } - .lg\:left-28 { - left: 7rem; + .lg\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .lg\:top-32 { - top: 8rem; + .lg\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .lg\:right-32 { - right: 8rem; + .lg\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .lg\:bottom-32 { - bottom: 8rem; + .lg\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .lg\:left-32 { - left: 8rem; + .lg\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .lg\:top-36 { - top: 9rem; + .lg\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .lg\:right-36 { - right: 9rem; + .lg\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .lg\:bottom-36 { - bottom: 9rem; + .lg\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .lg\:left-36 { - left: 9rem; + .lg\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .lg\:top-40 { - top: 10rem; + .lg\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .lg\:right-40 { - right: 10rem; + .lg\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .lg\:bottom-40 { - bottom: 10rem; + .lg\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .lg\:left-40 { - left: 10rem; + .lg\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .lg\:top-44 { - top: 11rem; + .lg\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .lg\:right-44 { - right: 11rem; + .lg\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .lg\:bottom-44 { - bottom: 11rem; + .lg\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .lg\:left-44 { - left: 11rem; + .lg\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .lg\:top-48 { - top: 12rem; + .lg\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .lg\:right-48 { - right: 12rem; + .lg\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .lg\:bottom-48 { - bottom: 12rem; + .lg\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .lg\:left-48 { - left: 12rem; + .lg\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .lg\:top-52 { - top: 13rem; + .lg\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .lg\:right-52 { - right: 13rem; + .lg\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .lg\:bottom-52 { - bottom: 13rem; + .lg\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .lg\:left-52 { - left: 13rem; + .lg\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .lg\:top-56 { - top: 14rem; + .lg\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .lg\:right-56 { - right: 14rem; + .lg\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .lg\:bottom-56 { - bottom: 14rem; + .lg\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .lg\:left-56 { - left: 14rem; + .lg\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .lg\:top-60 { - top: 15rem; + .lg\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .lg\:right-60 { - right: 15rem; + .lg\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .lg\:bottom-60 { - bottom: 15rem; + .lg\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .lg\:left-60 { - left: 15rem; + .lg\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .lg\:top-64 { - top: 16rem; + .lg\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .lg\:right-64 { - right: 16rem; + .lg\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .lg\:bottom-64 { - bottom: 16rem; + .lg\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .lg\:left-64 { - left: 16rem; + .lg\:to-pink-600 { + --tw-gradient-to: #db2777; } - .lg\:top-72 { - top: 18rem; + .lg\:to-pink-700 { + --tw-gradient-to: #be185d; } - .lg\:right-72 { - right: 18rem; + .lg\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .lg\:bottom-72 { - bottom: 18rem; + .lg\:to-pink-900 { + --tw-gradient-to: #831843; } - .lg\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .lg\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-top-14 { - top: -3.5rem; + .lg\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-right-14 { - right: -3.5rem; + .lg\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-bottom-14 { - bottom: -3.5rem; + .lg\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-left-14 { - left: -3.5rem; + .lg\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:-top-16 { - top: -4rem; + .lg\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:-right-16 { - right: -4rem; + .lg\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:-bottom-16 { - bottom: -4rem; + .lg\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:-left-16 { - left: -4rem; + .lg\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:-top-20 { - top: -5rem; + .lg\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:-right-20 { - right: -5rem; + .lg\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:-bottom-20 { - bottom: -5rem; + .lg\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:-left-20 { - left: -5rem; + .lg\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:-top-24 { - top: -6rem; + .lg\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:-right-24 { - right: -6rem; + .lg\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:-bottom-24 { - bottom: -6rem; + .lg\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:-left-24 { - left: -6rem; + .lg\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:-top-28 { - top: -7rem; + .lg\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:-right-28 { - right: -7rem; + .lg\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:-bottom-28 { - bottom: -7rem; + .lg\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:-left-28 { - left: -7rem; + .lg\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:-top-32 { - top: -8rem; + .lg\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:-right-32 { - right: -8rem; + .lg\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:-bottom-32 { - bottom: -8rem; + .lg\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:-left-32 { - left: -8rem; + .lg\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:-top-36 { - top: -9rem; + .lg\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:-right-36 { - right: -9rem; + .lg\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:-bottom-36 { - bottom: -9rem; + .lg\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:-left-36 { - left: -9rem; + .lg\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:-top-40 { - top: -10rem; + .lg\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:-right-40 { - right: -10rem; + .lg\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:-bottom-40 { - bottom: -10rem; + .lg\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:-left-40 { - left: -10rem; + .lg\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:-top-44 { - top: -11rem; + .lg\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:-right-44 { - right: -11rem; + .lg\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:-bottom-44 { - bottom: -11rem; + .lg\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:-left-44 { - left: -11rem; + .lg\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:-top-48 { - top: -12rem; + .lg\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:-right-48 { - right: -12rem; + .lg\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:-bottom-48 { - bottom: -12rem; + .lg\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:-left-48 { - left: -12rem; + .lg\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:-top-52 { - top: -13rem; + .lg\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:-right-52 { - right: -13rem; + .lg\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:-bottom-52 { - bottom: -13rem; + .lg\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:-left-52 { - left: -13rem; + .lg\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:-top-56 { - top: -14rem; + .lg\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:-right-56 { - right: -14rem; + .lg\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:-bottom-56 { - bottom: -14rem; + .lg\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:-left-56 { - left: -14rem; + .lg\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:-top-60 { - top: -15rem; + .lg\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:-right-60 { - right: -15rem; + .lg\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:-bottom-60 { - bottom: -15rem; + .lg\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:-left-60 { - left: -15rem; + .lg\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:-top-64 { - top: -16rem; + .lg\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:-right-64 { - right: -16rem; + .lg\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:-bottom-64 { - bottom: -16rem; + .lg\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:-left-64 { - left: -16rem; + .lg\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:-top-72 { - top: -18rem; + .lg\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:-right-72 { - right: -18rem; + .lg\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:-bottom-72 { - bottom: -18rem; + .lg\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:-left-72 { - left: -18rem; + .lg\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:-top-80 { - top: -20rem; + .lg\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:-right-80 { - right: -20rem; + .lg\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:-bottom-80 { - bottom: -20rem; + .lg\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:-left-80 { - left: -20rem; + .lg\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:-top-96 { - top: -24rem; + .lg\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:-right-96 { - right: -24rem; + .lg\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:-bottom-96 { - bottom: -24rem; + .lg\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:-left-96 { - left: -24rem; + .lg\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:-top-px { - top: -1px; + .lg\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:-right-px { - right: -1px; + .lg\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:-bottom-px { - bottom: -1px; + .lg\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:-left-px { - left: -1px; + .lg\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:-top-0\.5 { - top: -0.125rem; + .lg\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:-right-0\.5 { - right: -0.125rem; + .lg\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:-bottom-0\.5 { - bottom: -0.125rem; + .lg\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:-left-0\.5 { - left: -0.125rem; + .lg\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:-top-1\.5 { - top: -0.375rem; + .lg\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:-right-1\.5 { - right: -0.375rem; + .lg\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:-bottom-1\.5 { - bottom: -0.375rem; + .lg\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:-left-1\.5 { - left: -0.375rem; + .lg\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:-top-2\.5 { - top: -0.625rem; + .lg\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:-right-2\.5 { - right: -0.625rem; + .lg\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:-bottom-2\.5 { - bottom: -0.625rem; + .lg\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:-left-2\.5 { - left: -0.625rem; + .lg\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .lg\:-top-3\.5 { - top: -0.875rem; + .lg\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .lg\:-right-3\.5 { - right: -0.875rem; + .lg\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .lg\:-bottom-3\.5 { - bottom: -0.875rem; + .lg\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .lg\:-left-3\.5 { - left: -0.875rem; + .lg\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .lg\:top-1\/2 { - top: 50%; + .lg\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .lg\:right-1\/2 { - right: 50%; + .lg\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .lg\:bottom-1\/2 { - bottom: 50%; + .lg\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .lg\:left-1\/2 { - left: 50%; + .lg\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .lg\:top-1\/3 { - top: 33.333333%; + .lg\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .lg\:right-1\/3 { - right: 33.333333%; + .lg\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .lg\:bottom-1\/3 { - bottom: 33.333333%; + .lg\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .lg\:left-1\/3 { - left: 33.333333%; + .lg\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .lg\:top-2\/3 { - top: 66.666667%; + .lg\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .lg\:right-2\/3 { - right: 66.666667%; + .lg\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .lg\:bottom-2\/3 { - bottom: 66.666667%; + .lg\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .lg\:left-2\/3 { - left: 66.666667%; + .lg\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .lg\:top-1\/4 { - top: 25%; + .lg\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .lg\:right-1\/4 { - right: 25%; + .lg\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .lg\:bottom-1\/4 { - bottom: 25%; + .lg\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .lg\:left-1\/4 { - left: 25%; + .lg\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .lg\:top-2\/4 { - top: 50%; + .lg\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .lg\:right-2\/4 { - right: 50%; + .lg\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .lg\:bottom-2\/4 { - bottom: 50%; + .lg\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .lg\:left-2\/4 { - left: 50%; + .lg\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .lg\:top-3\/4 { - top: 75%; + .lg\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .lg\:right-3\/4 { - right: 75%; + .lg\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .lg\:bottom-3\/4 { - bottom: 75%; + .lg\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .lg\:left-3\/4 { - left: 75%; + .lg\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .lg\:top-full { - top: 100%; + .lg\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .lg\:right-full { - right: 100%; + .lg\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .lg\:bottom-full { - bottom: 100%; + .lg\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .lg\:left-full { - left: 100%; + .lg\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .lg\:-top-1\/2 { - top: -50%; + .lg\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .lg\:-right-1\/2 { - right: -50%; + .lg\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .lg\:-bottom-1\/2 { - bottom: -50%; + .lg\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .lg\:-left-1\/2 { - left: -50%; + .lg\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .lg\:-top-1\/3 { - top: -33.333333%; + .lg\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .lg\:-right-1\/3 { - right: -33.333333%; + .lg\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .lg\:-bottom-1\/3 { - bottom: -33.333333%; + .lg\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .lg\:-left-1\/3 { - left: -33.333333%; + .lg\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .lg\:-top-2\/3 { - top: -66.666667%; + .lg\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .lg\:-right-2\/3 { - right: -66.666667%; + .lg\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .lg\:-bottom-2\/3 { - bottom: -66.666667%; + .lg\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .lg\:-left-2\/3 { - left: -66.666667%; + .lg\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .lg\:-top-1\/4 { - top: -25%; + .lg\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .lg\:-right-1\/4 { - right: -25%; + .lg\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .lg\:-bottom-1\/4 { - bottom: -25%; + .lg\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .lg\:-left-1\/4 { - left: -25%; + .lg\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .lg\:-top-2\/4 { - top: -50%; + .lg\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .lg\:-right-2\/4 { - right: -50%; + .lg\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .lg\:-bottom-2\/4 { - bottom: -50%; + .lg\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .lg\:-left-2\/4 { - left: -50%; + .lg\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .lg\:-top-3\/4 { - top: -75%; + .lg\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .lg\:-right-3\/4 { - right: -75%; + .lg\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .lg\:-bottom-3\/4 { - bottom: -75%; + .lg\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .lg\:-left-3\/4 { - left: -75%; + .lg\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .lg\:-top-full { - top: -100%; + .lg\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .lg\:-right-full { - right: -100%; + .lg\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .lg\:-bottom-full { - bottom: -100%; + .lg\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .lg\:-left-full { - left: -100%; + .lg\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .lg\:resize-none { - resize: none; + .lg\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .lg\:resize-y { - resize: vertical; + .lg\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .lg\:resize-x { - resize: horizontal; + .lg\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .lg\:resize { - resize: both; + .lg\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .lg\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .lg\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .lg\: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); + .lg\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .lg\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .lg\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .lg\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .lg\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .lg\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .lg\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .lg\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .lg\:group-hover\: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); + .lg\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .lg\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .lg\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .lg\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .lg\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .lg\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .lg\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .lg\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .lg\:focus-within\:shadow-md:focus-within { - --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); + .lg\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .lg\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .lg\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .lg\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .lg\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .lg\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .lg\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .lg\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .lg\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .lg\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .lg\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .lg\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .lg\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .lg\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .lg\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .lg\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .lg\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .lg\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .lg\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .lg\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .lg\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .lg\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .lg\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .lg\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .lg\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .lg\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .lg\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .lg\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .lg\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .lg\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .lg\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .lg\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .lg\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .lg\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .lg\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .lg\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .lg\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .lg\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .lg\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .lg\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .lg\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .lg\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .lg\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .lg\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .lg\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .lg\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .lg\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .lg\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .lg\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .lg\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .lg\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .lg\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .lg\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .lg\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .lg\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .lg\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .lg\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .lg\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .lg\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .lg\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .lg\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .lg\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .lg\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .lg\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .lg\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .lg\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .lg\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .lg\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .lg\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .lg\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .lg\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .lg\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .lg\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .lg\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .lg\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .lg\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .lg\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .lg\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .lg\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .lg\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .lg\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .lg\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .lg\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .lg\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .lg\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .lg\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .lg\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .lg\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .lg\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .lg\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .lg\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .lg\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .lg\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .lg\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .lg\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .lg\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .lg\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .lg\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .lg\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .lg\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .lg\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .lg\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .lg\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .lg\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .lg\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .lg\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .lg\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .lg\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .lg\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .lg\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .lg\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .lg\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .lg\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .lg\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .lg\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .lg\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .lg\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .lg\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .lg\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .lg\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .lg\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .lg\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .lg\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .lg\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .lg\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .lg\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .lg\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .lg\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .lg\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .lg\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .lg\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .lg\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .lg\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .lg\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .lg\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .lg\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .lg\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .lg\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .lg\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .lg\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .lg\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .lg\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .lg\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .lg\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .lg\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .lg\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .lg\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .lg\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .lg\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .lg\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .lg\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .lg\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .lg\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .lg\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .lg\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .lg\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .lg\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .lg\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .lg\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .lg\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .lg\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .lg\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .lg\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .lg\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .lg\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .lg\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .lg\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .lg\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .lg\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .lg\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .lg\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .lg\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .lg\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .lg\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .lg\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .lg\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .lg\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .lg\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .lg\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .lg\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .lg\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .lg\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .lg\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .lg\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .lg\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .lg\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .lg\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .lg\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .lg\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .lg\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .lg\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .lg\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .lg\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .lg\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .lg\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .lg\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .lg\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .lg\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .lg\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .lg\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .lg\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .lg\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .lg\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .lg\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .lg\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .lg\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .lg\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .lg\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .lg\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .lg\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .lg\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .lg\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .lg\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .lg\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .lg\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .lg\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .lg\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .lg\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .lg\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .lg\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .lg\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .lg\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .lg\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .lg\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .lg\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .lg\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .lg\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .lg\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .lg\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .lg\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .lg\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .lg\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .lg\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .lg\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .lg\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .lg\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .lg\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .lg\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .lg\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .lg\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .lg\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .lg\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .lg\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .lg\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .lg\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .lg\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .lg\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .lg\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .lg\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .lg\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .lg\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .lg\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .lg\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .lg\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .lg\:decoration-slice { + box-decoration-break: slice; } - .lg\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .lg\:decoration-clone { + box-decoration-break: clone; } - .lg\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .lg\:bg-auto { + background-size: auto; } - .lg\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .lg\:bg-cover { + background-size: cover; } - .lg\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .lg\:bg-contain { + background-size: contain; } - .lg\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .lg\:bg-fixed { + background-attachment: fixed; } - .lg\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .lg\:bg-local { + background-attachment: local; } - .lg\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .lg\:bg-scroll { + background-attachment: scroll; } - .lg\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .lg\:bg-clip-border { + background-clip: border-box; } - .lg\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .lg\:bg-clip-padding { + background-clip: padding-box; } - .lg\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .lg\:bg-clip-content { + background-clip: content-box; } - .lg\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .lg\:bg-clip-text { + background-clip: text; } - .lg\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .lg\:bg-bottom { + background-position: bottom; } - .lg\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .lg\:bg-center { + background-position: center; } - .lg\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .lg\:bg-left { + background-position: left; } - .lg\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .lg\:bg-left-bottom { + background-position: left bottom; } - .lg\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .lg\:bg-left-top { + background-position: left top; } - .lg\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .lg\:bg-right { + background-position: right; } - .lg\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .lg\:bg-right-bottom { + background-position: right bottom; } - .lg\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .lg\:bg-right-top { + background-position: right top; } - .lg\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .lg\:bg-top { + background-position: top; } - .lg\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .lg\:bg-repeat { + background-repeat: repeat; } - .lg\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .lg\:bg-no-repeat { + background-repeat: no-repeat; } - .lg\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .lg\:bg-repeat-x { + background-repeat: repeat-x; } - .lg\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .lg\:bg-repeat-y { + background-repeat: repeat-y; } - .lg\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .lg\:bg-repeat-round { + background-repeat: round; } - .lg\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .lg\:bg-repeat-space { + background-repeat: space; } - .lg\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .lg\:bg-origin-border { + background-origin: border-box; } - .lg\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .lg\:bg-origin-padding { + background-origin: padding-box; } - .lg\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .lg\:bg-origin-content { + background-origin: content-box; } - .lg\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .lg\:fill-current { + fill: currentColor; } - .lg\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .lg\:stroke-current { + stroke: currentColor; } - .lg\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .lg\:stroke-0 { + stroke-width: 0; } - .lg\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .lg\:stroke-1 { + stroke-width: 1; } - .lg\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .lg\:stroke-2 { + stroke-width: 2; } - .lg\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .lg\:object-contain { + object-fit: contain; } - .lg\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .lg\:object-cover { + object-fit: cover; } - .lg\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .lg\:object-fill { + object-fit: fill; } - .lg\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .lg\:object-none { + object-fit: none; } - .lg\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .lg\:object-scale-down { + object-fit: scale-down; } - .lg\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .lg\:object-bottom { + object-position: bottom; } - .lg\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .lg\:object-center { + object-position: center; } - .lg\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .lg\:object-left { + object-position: left; } - .lg\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .lg\:object-left-bottom { + object-position: left bottom; } - .lg\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .lg\:object-left-top { + object-position: left top; } - .lg\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .lg\:object-right { + object-position: right; } - .lg\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .lg\:object-right-bottom { + object-position: right bottom; } - .lg\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .lg\:object-right-top { + object-position: right top; } - .lg\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .lg\:object-top { + object-position: top; } - .lg\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .lg\:p-0 { + padding: 0px; } - .lg\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .lg\:p-1 { + padding: 0.25rem; } - .lg\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .lg\:p-2 { + padding: 0.5rem; } - .lg\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .lg\:p-3 { + padding: 0.75rem; } - .lg\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .lg\:p-4 { + padding: 1rem; } - .lg\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .lg\:p-5 { + padding: 1.25rem; } - .lg\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .lg\:p-6 { + padding: 1.5rem; } - .lg\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .lg\:p-7 { + padding: 1.75rem; } - .lg\:ring-transparent { - --tw-ring-color: transparent; + .lg\:p-8 { + padding: 2rem; } - .lg\:ring-current { - --tw-ring-color: currentColor; + .lg\:p-9 { + padding: 2.25rem; } - .lg\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .lg\:p-10 { + padding: 2.5rem; } - .lg\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .lg\:p-11 { + padding: 2.75rem; } - .lg\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .lg\:p-12 { + padding: 3rem; } - .lg\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .lg\:p-14 { + padding: 3.5rem; } - .lg\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .lg\:p-16 { + padding: 4rem; } - .lg\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .lg\:p-20 { + padding: 5rem; } - .lg\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .lg\:p-24 { + padding: 6rem; } - .lg\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .lg\:p-28 { + padding: 7rem; } - .lg\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .lg\:p-32 { + padding: 8rem; } - .lg\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .lg\:p-36 { + padding: 9rem; } - .lg\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .lg\:p-40 { + padding: 10rem; } - .lg\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .lg\:p-44 { + padding: 11rem; } - .lg\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .lg\:p-48 { + padding: 12rem; } - .lg\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .lg\:p-52 { + padding: 13rem; } - .lg\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .lg\:p-56 { + padding: 14rem; } - .lg\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .lg\:p-60 { + padding: 15rem; } - .lg\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .lg\:p-64 { + padding: 16rem; } - .lg\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .lg\:p-72 { + padding: 18rem; } - .lg\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .lg\:p-80 { + padding: 20rem; } - .lg\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .lg\:p-96 { + padding: 24rem; } - .lg\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .lg\:p-px { + padding: 1px; } - .lg\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .lg\:p-0\.5 { + padding: 0.125rem; } - .lg\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .lg\:p-1\.5 { + padding: 0.375rem; } - .lg\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .lg\:p-2\.5 { + padding: 0.625rem; } - .lg\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .lg\:p-3\.5 { + padding: 0.875rem; } - .lg\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .lg\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .lg\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .lg\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .lg\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .lg\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .lg\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .lg\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .lg\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .lg\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .lg\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .lg\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .lg\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .lg\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .lg\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .lg\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .lg\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .lg\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .lg\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .lg\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .lg\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .lg\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .lg\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .lg\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .lg\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .lg\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .lg\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .lg\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .lg\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .lg\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .lg\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .lg\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .lg\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .lg\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .lg\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .lg\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .lg\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .lg\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .lg\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .lg\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .lg\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .lg\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .lg\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .lg\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .lg\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .lg\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .lg\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .lg\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .lg\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .lg\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .lg\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .lg\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .lg\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .lg\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .lg\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .lg\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .lg\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .lg\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .lg\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .lg\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .lg\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .lg\:px-px { + padding-left: 1px; + padding-right: 1px; } - .lg\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .lg\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .lg\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .lg\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .lg\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .lg\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .lg\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .lg\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .lg\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .lg\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .lg\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .lg\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .lg\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .lg\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .lg\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .lg\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .lg\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .lg\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .lg\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .lg\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .lg\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .lg\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .lg\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .lg\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .lg\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .lg\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .lg\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .lg\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .lg\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .lg\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .lg\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .lg\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .lg\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .lg\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .lg\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .lg\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .lg\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .lg\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .lg\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .lg\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .lg\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .lg\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .lg\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .lg\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .lg\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .lg\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .lg\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .lg\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .lg\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .lg\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .lg\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .lg\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .lg\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .lg\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .lg\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .lg\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .lg\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .lg\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .lg\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .lg\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .lg\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .lg\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .lg\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .lg\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .lg\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .lg\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .lg\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .lg\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .lg\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .lg\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .lg\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .lg\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .lg\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .lg\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .lg\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .lg\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .lg\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .lg\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .lg\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .lg\:pt-0 { + padding-top: 0px; } - .lg\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .lg\:pt-1 { + padding-top: 0.25rem; } - .lg\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .lg\:pt-2 { + padding-top: 0.5rem; } - .lg\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .lg\:pt-3 { + padding-top: 0.75rem; } - .lg\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .lg\:pt-4 { + padding-top: 1rem; } - .lg\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .lg\:pt-5 { + padding-top: 1.25rem; } - .lg\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .lg\:pt-6 { + padding-top: 1.5rem; } - .lg\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .lg\:pt-7 { + padding-top: 1.75rem; } - .lg\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .lg\:pt-8 { + padding-top: 2rem; } - .lg\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .lg\:pt-9 { + padding-top: 2.25rem; } - .lg\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .lg\:pt-10 { + padding-top: 2.5rem; } - .lg\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .lg\:pt-11 { + padding-top: 2.75rem; } - .lg\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .lg\:pt-12 { + padding-top: 3rem; } - .lg\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .lg\:pt-14 { + padding-top: 3.5rem; } - .lg\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .lg\:pt-16 { + padding-top: 4rem; } - .lg\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .lg\:pt-20 { + padding-top: 5rem; } - .lg\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .lg\:pt-24 { + padding-top: 6rem; } - .lg\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .lg\:pt-28 { + padding-top: 7rem; } - .lg\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .lg\:pt-32 { + padding-top: 8rem; } - .lg\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .lg\:pt-36 { + padding-top: 9rem; } - .lg\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .lg\:pt-40 { + padding-top: 10rem; } - .lg\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .lg\:pt-44 { + padding-top: 11rem; } - .lg\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .lg\:pt-48 { + padding-top: 12rem; } - .lg\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .lg\:pt-52 { + padding-top: 13rem; } - .lg\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .lg\:pt-56 { + padding-top: 14rem; } - .lg\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .lg\:pt-60 { + padding-top: 15rem; } - .lg\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .lg\:pt-64 { + padding-top: 16rem; } - .lg\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .lg\:pt-72 { + padding-top: 18rem; } - .lg\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .lg\:pt-80 { + padding-top: 20rem; } - .lg\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .lg\:pt-96 { + padding-top: 24rem; } - .lg\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .lg\:pt-px { + padding-top: 1px; } - .lg\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .lg\:pt-0\.5 { + padding-top: 0.125rem; } - .lg\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .lg\:pt-1\.5 { + padding-top: 0.375rem; } - .lg\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .lg\:pt-2\.5 { + padding-top: 0.625rem; } - .lg\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .lg\:pt-3\.5 { + padding-top: 0.875rem; } - .lg\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .lg\:pr-0 { + padding-right: 0px; } - .lg\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .lg\:pr-1 { + padding-right: 0.25rem; } - .lg\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .lg\:pr-2 { + padding-right: 0.5rem; } - .lg\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .lg\:pr-3 { + padding-right: 0.75rem; } - .lg\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .lg\:pr-4 { + padding-right: 1rem; } - .lg\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .lg\:pr-5 { + padding-right: 1.25rem; } - .lg\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .lg\:pr-6 { + padding-right: 1.5rem; } - .lg\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .lg\:pr-7 { + padding-right: 1.75rem; } - .lg\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .lg\:pr-8 { + padding-right: 2rem; } - .lg\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .lg\:pr-9 { + padding-right: 2.25rem; } - .lg\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .lg\:pr-10 { + padding-right: 2.5rem; } - .lg\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .lg\:pr-11 { + padding-right: 2.75rem; } - .lg\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .lg\:pr-12 { + padding-right: 3rem; } - .lg\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .lg\:pr-14 { + padding-right: 3.5rem; } - .lg\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .lg\:pr-16 { + padding-right: 4rem; } - .lg\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .lg\:pr-20 { + padding-right: 5rem; } - .lg\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .lg\:pr-24 { + padding-right: 6rem; } - .lg\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .lg\:pr-28 { + padding-right: 7rem; } - .lg\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .lg\:pr-32 { + padding-right: 8rem; } - .lg\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .lg\:pr-36 { + padding-right: 9rem; } - .lg\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .lg\:pr-40 { + padding-right: 10rem; } - .lg\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .lg\:pr-44 { + padding-right: 11rem; } - .lg\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .lg\:pr-48 { + padding-right: 12rem; } - .lg\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .lg\:pr-52 { + padding-right: 13rem; } - .lg\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .lg\:pr-56 { + padding-right: 14rem; } - .lg\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .lg\:pr-60 { + padding-right: 15rem; } - .lg\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .lg\:pr-64 { + padding-right: 16rem; } - .lg\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .lg\:pr-72 { + padding-right: 18rem; } - .lg\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .lg\:pr-80 { + padding-right: 20rem; } - .lg\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .lg\:pr-96 { + padding-right: 24rem; } - .lg\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .lg\:pr-px { + padding-right: 1px; } - .lg\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .lg\:pr-0\.5 { + padding-right: 0.125rem; } - .lg\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .lg\:pr-1\.5 { + padding-right: 0.375rem; } - .lg\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .lg\:pr-2\.5 { + padding-right: 0.625rem; } - .lg\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .lg\:pr-3\.5 { + padding-right: 0.875rem; } - .lg\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .lg\:pb-0 { + padding-bottom: 0px; } - .lg\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .lg\:pb-1 { + padding-bottom: 0.25rem; } - .lg\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .lg\:pb-2 { + padding-bottom: 0.5rem; } - .lg\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .lg\:pb-3 { + padding-bottom: 0.75rem; } - .lg\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .lg\:pb-4 { + padding-bottom: 1rem; } - .lg\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .lg\:pb-5 { + padding-bottom: 1.25rem; } - .lg\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .lg\:pb-6 { + padding-bottom: 1.5rem; } - .lg\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .lg\:pb-7 { + padding-bottom: 1.75rem; } - .lg\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .lg\:pb-8 { + padding-bottom: 2rem; } - .lg\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .lg\:pb-9 { + padding-bottom: 2.25rem; } - .lg\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .lg\:pb-10 { + padding-bottom: 2.5rem; } - .lg\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .lg\:pb-11 { + padding-bottom: 2.75rem; } - .lg\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .lg\:pb-12 { + padding-bottom: 3rem; } - .lg\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .lg\:pb-14 { + padding-bottom: 3.5rem; } - .lg\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .lg\:pb-16 { + padding-bottom: 4rem; } - .lg\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .lg\:pb-20 { + padding-bottom: 5rem; } - .lg\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .lg\:pb-24 { + padding-bottom: 6rem; } - .lg\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .lg\:pb-28 { + padding-bottom: 7rem; } - .lg\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .lg\:pb-32 { + padding-bottom: 8rem; } - .lg\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .lg\:pb-36 { + padding-bottom: 9rem; } - .lg\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .lg\:pb-40 { + padding-bottom: 10rem; } - .lg\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .lg\:pb-44 { + padding-bottom: 11rem; } - .lg\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .lg\:pb-48 { + padding-bottom: 12rem; } - .lg\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .lg\:pb-52 { + padding-bottom: 13rem; } - .lg\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .lg\:pb-56 { + padding-bottom: 14rem; } - .lg\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .lg\:pb-60 { + padding-bottom: 15rem; } - .lg\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .lg\:pb-64 { + padding-bottom: 16rem; } - .lg\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .lg\:pb-72 { + padding-bottom: 18rem; } - .lg\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .lg\:pb-80 { + padding-bottom: 20rem; } - .lg\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .lg\:pb-96 { + padding-bottom: 24rem; } - .lg\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .lg\:pb-px { + padding-bottom: 1px; } - .lg\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .lg\:pb-0\.5 { + padding-bottom: 0.125rem; } - .lg\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .lg\:pb-1\.5 { + padding-bottom: 0.375rem; } - .lg\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .lg\:pb-2\.5 { + padding-bottom: 0.625rem; } - .lg\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .lg\:pb-3\.5 { + padding-bottom: 0.875rem; } - .lg\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .lg\:pl-0 { + padding-left: 0px; } - .lg\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .lg\:pl-1 { + padding-left: 0.25rem; } - .lg\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .lg\:pl-2 { + padding-left: 0.5rem; } - .lg\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .lg\:pl-3 { + padding-left: 0.75rem; } - .lg\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .lg\:pl-4 { + padding-left: 1rem; } - .lg\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .lg\:pl-5 { + padding-left: 1.25rem; } - .lg\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .lg\:pl-6 { + padding-left: 1.5rem; } - .lg\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .lg\:pl-7 { + padding-left: 1.75rem; } - .lg\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .lg\:pl-8 { + padding-left: 2rem; } - .lg\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .lg\:pl-9 { + padding-left: 2.25rem; } - .lg\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .lg\:pl-10 { + padding-left: 2.5rem; } - .lg\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .lg\:pl-11 { + padding-left: 2.75rem; } - .lg\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .lg\:pl-12 { + padding-left: 3rem; } - .lg\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .lg\:pl-14 { + padding-left: 3.5rem; } - .lg\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .lg\:pl-16 { + padding-left: 4rem; } - .lg\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .lg\:pl-20 { + padding-left: 5rem; } - .lg\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .lg\:pl-24 { + padding-left: 6rem; } - .lg\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .lg\:pl-28 { + padding-left: 7rem; } - .lg\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .lg\:pl-32 { + padding-left: 8rem; } - .lg\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .lg\:pl-36 { + padding-left: 9rem; } - .lg\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .lg\:pl-40 { + padding-left: 10rem; } - .lg\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .lg\:pl-44 { + padding-left: 11rem; } - .lg\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .lg\:pl-48 { + padding-left: 12rem; } - .lg\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .lg\:pl-52 { + padding-left: 13rem; } - .lg\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .lg\:pl-56 { + padding-left: 14rem; } - .lg\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .lg\:pl-60 { + padding-left: 15rem; } - .lg\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .lg\:pl-64 { + padding-left: 16rem; } - .lg\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .lg\:pl-72 { + padding-left: 18rem; } - .lg\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .lg\:pl-80 { + padding-left: 20rem; } - .lg\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .lg\:pl-96 { + padding-left: 24rem; } - .lg\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .lg\:pl-px { + padding-left: 1px; } - .lg\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .lg\:pl-0\.5 { + padding-left: 0.125rem; } - .lg\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .lg\:pl-1\.5 { + padding-left: 0.375rem; } - .lg\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .lg\:pl-2\.5 { + padding-left: 0.625rem; } - .lg\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .lg\:pl-3\.5 { + padding-left: 0.875rem; } - .lg\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .lg\:text-left { + text-align: left; } - .lg\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .lg\:text-center { + text-align: center; } - .lg\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .lg\:text-right { + text-align: right; } - .lg\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .lg\:text-justify { + text-align: justify; } - .lg\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .lg\:align-baseline { + vertical-align: baseline; } - .lg\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .lg\:align-top { + vertical-align: top; } - .lg\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .lg\:align-middle { + vertical-align: middle; } - .lg\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .lg\:align-bottom { + vertical-align: bottom; } - .lg\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .lg\:align-text-top { + vertical-align: text-top; } - .lg\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .lg\:align-text-bottom { + vertical-align: text-bottom; } - .lg\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .lg\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .lg\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .lg\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .lg\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .lg\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .lg\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .lg\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .lg\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .lg\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .lg\:ring-opacity-0 { - --tw-ring-opacity: 0; + .lg\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .lg\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .lg\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .lg\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .lg\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .lg\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .lg\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .lg\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .lg\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .lg\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .lg\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .lg\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .lg\:text-5xl { + font-size: 3rem; + line-height: 1; } - .lg\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .lg\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .lg\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .lg\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .lg\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .lg\:text-8xl { + font-size: 6rem; + line-height: 1; } - .lg\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .lg\:text-9xl { + font-size: 8rem; + line-height: 1; } - .lg\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .lg\:font-thin { + font-weight: 100; } - .lg\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .lg\:font-extralight { + font-weight: 200; } - .lg\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .lg\:font-light { + font-weight: 300; } - .lg\:ring-opacity-100 { - --tw-ring-opacity: 1; + .lg\:font-normal { + font-weight: 400; } - .lg\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .lg\:font-medium { + font-weight: 500; } - .lg\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .lg\:font-semibold { + font-weight: 600; } - .lg\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .lg\:font-bold { + font-weight: 700; } - .lg\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .lg\:font-extrabold { + font-weight: 800; } - .lg\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .lg\:font-black { + font-weight: 900; } - .lg\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .lg\:uppercase { + text-transform: uppercase; } - .lg\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .lg\:lowercase { + text-transform: lowercase; } - .lg\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .lg\:capitalize { + text-transform: capitalize; } - .lg\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .lg\:normal-case { + text-transform: none; } - .lg\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .lg\:italic { + font-style: italic; } - .lg\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .lg\:not-italic { + font-style: normal; } - .lg\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .lg\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .lg\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .lg\:normal-nums { + font-variant-numeric: normal; } - .lg\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .lg\:ordinal { + --tw-ordinal: ordinal; } - .lg\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .lg\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .lg\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .lg\:lining-nums { + --tw-numeric-figure: lining-nums; } - .lg\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .lg\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .lg\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .lg\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .lg\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .lg\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .lg\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .lg\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .lg\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .lg\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .lg\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .lg\:leading-3 { + line-height: .75rem; } - .lg\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .lg\:leading-4 { + line-height: 1rem; } - .lg\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .lg\:leading-5 { + line-height: 1.25rem; } - .lg\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .lg\:leading-6 { + line-height: 1.5rem; } - .lg\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .lg\:leading-7 { + line-height: 1.75rem; } - .lg\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .lg\:leading-8 { + line-height: 2rem; } - .lg\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .lg\:leading-9 { + line-height: 2.25rem; } - .lg\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .lg\:leading-10 { + line-height: 2.5rem; } - .lg\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .lg\:leading-none { + line-height: 1; } - .lg\:fill-current { - fill: currentColor; + .lg\:leading-tight { + line-height: 1.25; } - .lg\:stroke-current { - stroke: currentColor; + .lg\:leading-snug { + line-height: 1.375; } - .lg\:stroke-0 { - stroke-width: 0; + .lg\:leading-normal { + line-height: 1.5; } - .lg\:stroke-1 { - stroke-width: 1; + .lg\:leading-relaxed { + line-height: 1.625; } - .lg\:stroke-2 { - stroke-width: 2; + .lg\:leading-loose { + line-height: 2; } - .lg\:table-auto { - table-layout: auto; + .lg\:tracking-tighter { + letter-spacing: -0.05em; } - .lg\:table-fixed { - table-layout: fixed; + .lg\:tracking-tight { + letter-spacing: -0.025em; } - .lg\:text-left { - text-align: left; + .lg\:tracking-normal { + letter-spacing: 0em; } - .lg\:text-center { - text-align: center; + .lg\:tracking-wide { + letter-spacing: 0.025em; } - .lg\:text-right { - text-align: right; + .lg\:tracking-wider { + letter-spacing: 0.05em; } - .lg\:text-justify { - text-align: justify; + .lg\:tracking-widest { + letter-spacing: 0.1em; } .lg\:text-transparent { @@ -101891,44 +102364,6 @@ video { color: #831843; } - .lg\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .lg\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .lg\:overflow-clip { - text-overflow: clip; - } - - .lg\:italic { - font-style: italic; - } - - .lg\:not-italic { - font-style: normal; - } - - .lg\:uppercase { - text-transform: uppercase; - } - - .lg\:lowercase { - text-transform: lowercase; - } - - .lg\:capitalize { - text-transform: capitalize; - } - - .lg\:normal-case { - text-transform: none; - } - .lg\:underline { text-decoration: underline; } @@ -101999,13730 +102434,14082 @@ video { -moz-osx-font-smoothing: auto; } - .lg\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + .lg\:placeholder-transparent::placeholder { + color: transparent; } - .lg\:normal-nums { - font-variant-numeric: normal; + .lg\:placeholder-current::placeholder { + color: currentColor; } - .lg\:ordinal { - --tw-ordinal: ordinal; + .lg\:placeholder-black::placeholder { + color: #000; } - .lg\:slashed-zero { - --tw-slashed-zero: slashed-zero; + .lg\:placeholder-white::placeholder { + color: #fff; } - .lg\:lining-nums { - --tw-numeric-figure: lining-nums; + .lg\:placeholder-gray-50::placeholder { + color: #f9fafb; } - .lg\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; + .lg\:placeholder-gray-100::placeholder { + color: #f3f4f6; } - .lg\:proportional-nums { - --tw-numeric-spacing: proportional-nums; + .lg\:placeholder-gray-200::placeholder { + color: #e5e7eb; } - .lg\:tabular-nums { - --tw-numeric-spacing: tabular-nums; + .lg\:placeholder-gray-300::placeholder { + color: #d1d5db; } - .lg\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; + .lg\:placeholder-gray-400::placeholder { + color: #9ca3af; } - .lg\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; + .lg\:placeholder-gray-500::placeholder { + color: #6b7280; } - .lg\:tracking-tighter { - letter-spacing: -0.05em; + .lg\:placeholder-gray-600::placeholder { + color: #4b5563; } - .lg\:tracking-tight { - letter-spacing: -0.025em; + .lg\:placeholder-gray-700::placeholder { + color: #374151; } - .lg\:tracking-normal { - letter-spacing: 0em; + .lg\:placeholder-gray-800::placeholder { + color: #1f2937; } - .lg\:tracking-wide { - letter-spacing: 0.025em; + .lg\:placeholder-gray-900::placeholder { + color: #111827; } - .lg\:tracking-wider { - letter-spacing: 0.05em; + .lg\:placeholder-red-50::placeholder { + color: #fef2f2; } - .lg\:tracking-widest { - letter-spacing: 0.1em; + .lg\:placeholder-red-100::placeholder { + color: #fee2e2; } - .lg\:select-none { - user-select: none; + .lg\:placeholder-red-200::placeholder { + color: #fecaca; } - .lg\:select-text { - user-select: text; + .lg\:placeholder-red-300::placeholder { + color: #fca5a5; } - .lg\:select-all { - user-select: all; + .lg\:placeholder-red-400::placeholder { + color: #f87171; } - .lg\:select-auto { - user-select: auto; + .lg\:placeholder-red-500::placeholder { + color: #ef4444; } - .lg\:align-baseline { - vertical-align: baseline; + .lg\:placeholder-red-600::placeholder { + color: #dc2626; } - .lg\:align-top { - vertical-align: top; + .lg\:placeholder-red-700::placeholder { + color: #b91c1c; } - .lg\:align-middle { - vertical-align: middle; + .lg\:placeholder-red-800::placeholder { + color: #991b1b; } - .lg\:align-bottom { - vertical-align: bottom; + .lg\:placeholder-red-900::placeholder { + color: #7f1d1d; } - .lg\:align-text-top { - vertical-align: text-top; + .lg\:placeholder-yellow-50::placeholder { + color: #fffbeb; } - .lg\:align-text-bottom { - vertical-align: text-bottom; + .lg\:placeholder-yellow-100::placeholder { + color: #fef3c7; } - .lg\:visible { - visibility: visible; + .lg\:placeholder-yellow-200::placeholder { + color: #fde68a; } - .lg\:invisible { - visibility: hidden; + .lg\:placeholder-yellow-300::placeholder { + color: #fcd34d; } - .lg\:whitespace-normal { - white-space: normal; + .lg\:placeholder-yellow-400::placeholder { + color: #fbbf24; } - .lg\:whitespace-nowrap { - white-space: nowrap; + .lg\:placeholder-yellow-500::placeholder { + color: #f59e0b; } - .lg\:whitespace-pre { - white-space: pre; + .lg\:placeholder-yellow-600::placeholder { + color: #d97706; } - .lg\:whitespace-pre-line { - white-space: pre-line; + .lg\:placeholder-yellow-700::placeholder { + color: #b45309; } - .lg\:whitespace-pre-wrap { - white-space: pre-wrap; + .lg\:placeholder-yellow-800::placeholder { + color: #92400e; } - .lg\:break-normal { - overflow-wrap: normal; - word-break: normal; + .lg\:placeholder-yellow-900::placeholder { + color: #78350f; } - .lg\:break-words { - overflow-wrap: break-word; + .lg\:placeholder-green-50::placeholder { + color: #ecfdf5; } - .lg\:break-all { - word-break: break-all; + .lg\:placeholder-green-100::placeholder { + color: #d1fae5; } - .lg\:w-0 { - width: 0px; + .lg\:placeholder-green-200::placeholder { + color: #a7f3d0; } - .lg\:w-1 { - width: 0.25rem; + .lg\:placeholder-green-300::placeholder { + color: #6ee7b7; } - .lg\:w-2 { - width: 0.5rem; + .lg\:placeholder-green-400::placeholder { + color: #34d399; } - .lg\:w-3 { - width: 0.75rem; + .lg\:placeholder-green-500::placeholder { + color: #10b981; } - .lg\:w-4 { - width: 1rem; + .lg\:placeholder-green-600::placeholder { + color: #059669; } - .lg\:w-5 { - width: 1.25rem; + .lg\:placeholder-green-700::placeholder { + color: #047857; } - .lg\:w-6 { - width: 1.5rem; + .lg\:placeholder-green-800::placeholder { + color: #065f46; } - .lg\:w-7 { - width: 1.75rem; + .lg\:placeholder-green-900::placeholder { + color: #064e3b; } - .lg\:w-8 { - width: 2rem; + .lg\:placeholder-blue-50::placeholder { + color: #eff6ff; } - .lg\:w-9 { - width: 2.25rem; + .lg\:placeholder-blue-100::placeholder { + color: #dbeafe; } - .lg\:w-10 { - width: 2.5rem; + .lg\:placeholder-blue-200::placeholder { + color: #bfdbfe; } - .lg\:w-11 { - width: 2.75rem; + .lg\:placeholder-blue-300::placeholder { + color: #93c5fd; } - .lg\:w-12 { - width: 3rem; + .lg\:placeholder-blue-400::placeholder { + color: #60a5fa; } - .lg\:w-14 { - width: 3.5rem; + .lg\:placeholder-blue-500::placeholder { + color: #3b82f6; } - .lg\:w-16 { - width: 4rem; + .lg\:placeholder-blue-600::placeholder { + color: #2563eb; } - .lg\:w-20 { - width: 5rem; + .lg\:placeholder-blue-700::placeholder { + color: #1d4ed8; } - .lg\:w-24 { - width: 6rem; + .lg\:placeholder-blue-800::placeholder { + color: #1e40af; } - .lg\:w-28 { - width: 7rem; + .lg\:placeholder-blue-900::placeholder { + color: #1e3a8a; } - .lg\:w-32 { - width: 8rem; + .lg\:placeholder-indigo-50::placeholder { + color: #eef2ff; } - .lg\:w-36 { - width: 9rem; + .lg\:placeholder-indigo-100::placeholder { + color: #e0e7ff; } - .lg\:w-40 { - width: 10rem; + .lg\:placeholder-indigo-200::placeholder { + color: #c7d2fe; } - .lg\:w-44 { - width: 11rem; + .lg\:placeholder-indigo-300::placeholder { + color: #a5b4fc; } - .lg\:w-48 { - width: 12rem; + .lg\:placeholder-indigo-400::placeholder { + color: #818cf8; } - .lg\:w-52 { - width: 13rem; + .lg\:placeholder-indigo-500::placeholder { + color: #6366f1; } - .lg\:w-56 { - width: 14rem; + .lg\:placeholder-indigo-600::placeholder { + color: #4f46e5; } - .lg\:w-60 { - width: 15rem; + .lg\:placeholder-indigo-700::placeholder { + color: #4338ca; } - .lg\:w-64 { - width: 16rem; + .lg\:placeholder-indigo-800::placeholder { + color: #3730a3; } - .lg\:w-72 { - width: 18rem; + .lg\:placeholder-indigo-900::placeholder { + color: #312e81; } - .lg\:w-80 { - width: 20rem; + .lg\:placeholder-purple-50::placeholder { + color: #f5f3ff; } - .lg\:w-96 { - width: 24rem; + .lg\:placeholder-purple-100::placeholder { + color: #ede9fe; } - .lg\:w-auto { - width: auto; + .lg\:placeholder-purple-200::placeholder { + color: #ddd6fe; } - .lg\:w-px { - width: 1px; + .lg\:placeholder-purple-300::placeholder { + color: #c4b5fd; } - .lg\:w-0\.5 { - width: 0.125rem; + .lg\:placeholder-purple-400::placeholder { + color: #a78bfa; } - .lg\:w-1\.5 { - width: 0.375rem; + .lg\:placeholder-purple-500::placeholder { + color: #8b5cf6; } - .lg\:w-2\.5 { - width: 0.625rem; + .lg\:placeholder-purple-600::placeholder { + color: #7c3aed; } - .lg\:w-3\.5 { - width: 0.875rem; + .lg\:placeholder-purple-700::placeholder { + color: #6d28d9; } - .lg\:w-1\/2 { - width: 50%; + .lg\:placeholder-purple-800::placeholder { + color: #5b21b6; } - .lg\:w-1\/3 { - width: 33.333333%; + .lg\:placeholder-purple-900::placeholder { + color: #4c1d95; } - .lg\:w-2\/3 { - width: 66.666667%; + .lg\:placeholder-pink-50::placeholder { + color: #fdf2f8; } - .lg\:w-1\/4 { - width: 25%; + .lg\:placeholder-pink-100::placeholder { + color: #fce7f3; } - .lg\:w-2\/4 { - width: 50%; + .lg\:placeholder-pink-200::placeholder { + color: #fbcfe8; } - .lg\:w-3\/4 { - width: 75%; + .lg\:placeholder-pink-300::placeholder { + color: #f9a8d4; } - .lg\:w-1\/5 { - width: 20%; + .lg\:placeholder-pink-400::placeholder { + color: #f472b6; } - .lg\:w-2\/5 { - width: 40%; + .lg\:placeholder-pink-500::placeholder { + color: #ec4899; } - .lg\:w-3\/5 { - width: 60%; + .lg\:placeholder-pink-600::placeholder { + color: #db2777; } - .lg\:w-4\/5 { - width: 80%; + .lg\:placeholder-pink-700::placeholder { + color: #be185d; } - .lg\:w-1\/6 { - width: 16.666667%; + .lg\:placeholder-pink-800::placeholder { + color: #9d174d; } - .lg\:w-2\/6 { - width: 33.333333%; + .lg\:placeholder-pink-900::placeholder { + color: #831843; } - .lg\:w-3\/6 { - width: 50%; + .lg\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .lg\:w-4\/6 { - width: 66.666667%; + .lg\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .lg\:w-5\/6 { - width: 83.333333%; + .lg\:focus\:placeholder-black:focus::placeholder { + color: #000; } - .lg\:w-1\/12 { - width: 8.333333%; + .lg\:focus\:placeholder-white:focus::placeholder { + color: #fff; } - .lg\:w-2\/12 { - width: 16.666667%; + .lg\:focus\:placeholder-gray-50:focus::placeholder { + color: #f9fafb; } - .lg\:w-3\/12 { - width: 25%; + .lg\:focus\:placeholder-gray-100:focus::placeholder { + color: #f3f4f6; } - .lg\:w-4\/12 { - width: 33.333333%; + .lg\:focus\:placeholder-gray-200:focus::placeholder { + color: #e5e7eb; } - .lg\:w-5\/12 { - width: 41.666667%; + .lg\:focus\:placeholder-gray-300:focus::placeholder { + color: #d1d5db; } - .lg\:w-6\/12 { - width: 50%; + .lg\:focus\:placeholder-gray-400:focus::placeholder { + color: #9ca3af; } - .lg\:w-7\/12 { - width: 58.333333%; + .lg\:focus\:placeholder-gray-500:focus::placeholder { + color: #6b7280; } - .lg\:w-8\/12 { - width: 66.666667%; + .lg\:focus\:placeholder-gray-600:focus::placeholder { + color: #4b5563; } - .lg\:w-9\/12 { - width: 75%; + .lg\:focus\:placeholder-gray-700:focus::placeholder { + color: #374151; } - .lg\:w-10\/12 { - width: 83.333333%; + .lg\:focus\:placeholder-gray-800:focus::placeholder { + color: #1f2937; } - .lg\:w-11\/12 { - width: 91.666667%; + .lg\:focus\:placeholder-gray-900:focus::placeholder { + color: #111827; } - .lg\:w-full { - width: 100%; + .lg\:focus\:placeholder-red-50:focus::placeholder { + color: #fef2f2; } - .lg\:w-screen { - width: 100vw; + .lg\:focus\:placeholder-red-100:focus::placeholder { + color: #fee2e2; } - .lg\:w-min { - width: min-content; + .lg\:focus\:placeholder-red-200:focus::placeholder { + color: #fecaca; } - .lg\:w-max { - width: max-content; + .lg\:focus\:placeholder-red-300:focus::placeholder { + color: #fca5a5; } - .lg\:z-0 { - z-index: 0; + .lg\:focus\:placeholder-red-400:focus::placeholder { + color: #f87171; } - .lg\:z-10 { - z-index: 10; + .lg\:focus\:placeholder-red-500:focus::placeholder { + color: #ef4444; } - .lg\:z-20 { - z-index: 20; + .lg\:focus\:placeholder-red-600:focus::placeholder { + color: #dc2626; } - .lg\:z-30 { - z-index: 30; + .lg\:focus\:placeholder-red-700:focus::placeholder { + color: #b91c1c; } - .lg\:z-40 { - z-index: 40; + .lg\:focus\:placeholder-red-800:focus::placeholder { + color: #991b1b; } - .lg\:z-50 { - z-index: 50; + .lg\:focus\:placeholder-red-900:focus::placeholder { + color: #7f1d1d; } - .lg\:z-auto { - z-index: auto; + .lg\:focus\:placeholder-yellow-50:focus::placeholder { + color: #fffbeb; } - .lg\:focus-within\:z-0:focus-within { - z-index: 0; + .lg\:focus\:placeholder-yellow-100:focus::placeholder { + color: #fef3c7; } - .lg\:focus-within\:z-10:focus-within { - z-index: 10; + .lg\:focus\:placeholder-yellow-200:focus::placeholder { + color: #fde68a; } - .lg\:focus-within\:z-20:focus-within { - z-index: 20; + .lg\:focus\:placeholder-yellow-300:focus::placeholder { + color: #fcd34d; } - .lg\:focus-within\:z-30:focus-within { - z-index: 30; + .lg\:focus\:placeholder-yellow-400:focus::placeholder { + color: #fbbf24; } - .lg\:focus-within\:z-40:focus-within { - z-index: 40; + .lg\:focus\:placeholder-yellow-500:focus::placeholder { + color: #f59e0b; } - .lg\:focus-within\:z-50:focus-within { - z-index: 50; + .lg\:focus\:placeholder-yellow-600:focus::placeholder { + color: #d97706; } - .lg\:focus-within\:z-auto:focus-within { - z-index: auto; + .lg\:focus\:placeholder-yellow-700:focus::placeholder { + color: #b45309; } - .lg\:focus\:z-0:focus { - z-index: 0; + .lg\:focus\:placeholder-yellow-800:focus::placeholder { + color: #92400e; } - .lg\:focus\:z-10:focus { - z-index: 10; + .lg\:focus\:placeholder-yellow-900:focus::placeholder { + color: #78350f; } - .lg\:focus\:z-20:focus { - z-index: 20; + .lg\:focus\:placeholder-green-50:focus::placeholder { + color: #ecfdf5; } - .lg\:focus\:z-30:focus { - z-index: 30; + .lg\:focus\:placeholder-green-100:focus::placeholder { + color: #d1fae5; } - .lg\:focus\:z-40:focus { - z-index: 40; + .lg\:focus\:placeholder-green-200:focus::placeholder { + color: #a7f3d0; } - .lg\:focus\:z-50:focus { - z-index: 50; + .lg\:focus\:placeholder-green-300:focus::placeholder { + color: #6ee7b7; } - .lg\:focus\:z-auto:focus { - z-index: auto; + .lg\:focus\:placeholder-green-400:focus::placeholder { + color: #34d399; } - .lg\:isolate { - isolation: isolate; + .lg\:focus\:placeholder-green-500:focus::placeholder { + color: #10b981; } - .lg\:isolation-auto { - isolation: auto; + .lg\:focus\:placeholder-green-600:focus::placeholder { + color: #059669; } - .lg\:gap-0 { - gap: 0px; + .lg\:focus\:placeholder-green-700:focus::placeholder { + color: #047857; } - .lg\:gap-1 { - gap: 0.25rem; + .lg\:focus\:placeholder-green-800:focus::placeholder { + color: #065f46; } - .lg\:gap-2 { - gap: 0.5rem; + .lg\:focus\:placeholder-green-900:focus::placeholder { + color: #064e3b; } - .lg\:gap-3 { - gap: 0.75rem; + .lg\:focus\:placeholder-blue-50:focus::placeholder { + color: #eff6ff; } - .lg\:gap-4 { - gap: 1rem; + .lg\:focus\:placeholder-blue-100:focus::placeholder { + color: #dbeafe; } - .lg\:gap-5 { - gap: 1.25rem; + .lg\:focus\:placeholder-blue-200:focus::placeholder { + color: #bfdbfe; } - .lg\:gap-6 { - gap: 1.5rem; + .lg\:focus\:placeholder-blue-300:focus::placeholder { + color: #93c5fd; } - .lg\:gap-7 { - gap: 1.75rem; + .lg\:focus\:placeholder-blue-400:focus::placeholder { + color: #60a5fa; } - .lg\:gap-8 { - gap: 2rem; + .lg\:focus\:placeholder-blue-500:focus::placeholder { + color: #3b82f6; } - .lg\:gap-9 { - gap: 2.25rem; + .lg\:focus\:placeholder-blue-600:focus::placeholder { + color: #2563eb; } - .lg\:gap-10 { - gap: 2.5rem; + .lg\:focus\:placeholder-blue-700:focus::placeholder { + color: #1d4ed8; } - .lg\:gap-11 { - gap: 2.75rem; + .lg\:focus\:placeholder-blue-800:focus::placeholder { + color: #1e40af; } - .lg\:gap-12 { - gap: 3rem; + .lg\:focus\:placeholder-blue-900:focus::placeholder { + color: #1e3a8a; } - .lg\:gap-14 { - gap: 3.5rem; + .lg\:focus\:placeholder-indigo-50:focus::placeholder { + color: #eef2ff; } - .lg\:gap-16 { - gap: 4rem; + .lg\:focus\:placeholder-indigo-100:focus::placeholder { + color: #e0e7ff; } - .lg\:gap-20 { - gap: 5rem; + .lg\:focus\:placeholder-indigo-200:focus::placeholder { + color: #c7d2fe; } - .lg\:gap-24 { - gap: 6rem; + .lg\:focus\:placeholder-indigo-300:focus::placeholder { + color: #a5b4fc; } - .lg\:gap-28 { - gap: 7rem; + .lg\:focus\:placeholder-indigo-400:focus::placeholder { + color: #818cf8; } - .lg\:gap-32 { - gap: 8rem; + .lg\:focus\:placeholder-indigo-500:focus::placeholder { + color: #6366f1; } - .lg\:gap-36 { - gap: 9rem; + .lg\:focus\:placeholder-indigo-600:focus::placeholder { + color: #4f46e5; } - .lg\:gap-40 { - gap: 10rem; + .lg\:focus\:placeholder-indigo-700:focus::placeholder { + color: #4338ca; } - .lg\:gap-44 { - gap: 11rem; + .lg\:focus\:placeholder-indigo-800:focus::placeholder { + color: #3730a3; } - .lg\:gap-48 { - gap: 12rem; + .lg\:focus\:placeholder-indigo-900:focus::placeholder { + color: #312e81; } - .lg\:gap-52 { - gap: 13rem; + .lg\:focus\:placeholder-purple-50:focus::placeholder { + color: #f5f3ff; } - .lg\:gap-56 { - gap: 14rem; + .lg\:focus\:placeholder-purple-100:focus::placeholder { + color: #ede9fe; } - .lg\:gap-60 { - gap: 15rem; + .lg\:focus\:placeholder-purple-200:focus::placeholder { + color: #ddd6fe; } - .lg\:gap-64 { - gap: 16rem; + .lg\:focus\:placeholder-purple-300:focus::placeholder { + color: #c4b5fd; } - .lg\:gap-72 { - gap: 18rem; + .lg\:focus\:placeholder-purple-400:focus::placeholder { + color: #a78bfa; } - .lg\:gap-80 { - gap: 20rem; + .lg\:focus\:placeholder-purple-500:focus::placeholder { + color: #8b5cf6; } - .lg\:gap-96 { - gap: 24rem; + .lg\:focus\:placeholder-purple-600:focus::placeholder { + color: #7c3aed; } - .lg\:gap-px { - gap: 1px; + .lg\:focus\:placeholder-purple-700:focus::placeholder { + color: #6d28d9; } - .lg\:gap-0\.5 { - gap: 0.125rem; + .lg\:focus\:placeholder-purple-800:focus::placeholder { + color: #5b21b6; } - .lg\:gap-1\.5 { - gap: 0.375rem; + .lg\:focus\:placeholder-purple-900:focus::placeholder { + color: #4c1d95; } - .lg\:gap-2\.5 { - gap: 0.625rem; + .lg\:focus\:placeholder-pink-50:focus::placeholder { + color: #fdf2f8; } - .lg\:gap-3\.5 { - gap: 0.875rem; + .lg\:focus\:placeholder-pink-100:focus::placeholder { + color: #fce7f3; } - .lg\:gap-x-0 { - column-gap: 0px; + .lg\:focus\:placeholder-pink-200:focus::placeholder { + color: #fbcfe8; } - .lg\:gap-x-1 { - column-gap: 0.25rem; + .lg\:focus\:placeholder-pink-300:focus::placeholder { + color: #f9a8d4; } - .lg\:gap-x-2 { - column-gap: 0.5rem; + .lg\:focus\:placeholder-pink-400:focus::placeholder { + color: #f472b6; } - .lg\:gap-x-3 { - column-gap: 0.75rem; + .lg\:focus\:placeholder-pink-500:focus::placeholder { + color: #ec4899; } - .lg\:gap-x-4 { - column-gap: 1rem; + .lg\:focus\:placeholder-pink-600:focus::placeholder { + color: #db2777; } - .lg\:gap-x-5 { - column-gap: 1.25rem; + .lg\:focus\:placeholder-pink-700:focus::placeholder { + color: #be185d; } - .lg\:gap-x-6 { - column-gap: 1.5rem; + .lg\:focus\:placeholder-pink-800:focus::placeholder { + color: #9d174d; } - .lg\:gap-x-7 { - column-gap: 1.75rem; + .lg\:focus\:placeholder-pink-900:focus::placeholder { + color: #831843; } - .lg\:gap-x-8 { - column-gap: 2rem; + .lg\:opacity-0 { + opacity: 0; } - .lg\:gap-x-9 { - column-gap: 2.25rem; + .lg\:opacity-5 { + opacity: 0.05; } - .lg\:gap-x-10 { - column-gap: 2.5rem; + .lg\:opacity-10 { + opacity: 0.1; } - .lg\:gap-x-11 { - column-gap: 2.75rem; + .lg\:opacity-20 { + opacity: 0.2; } - .lg\:gap-x-12 { - column-gap: 3rem; + .lg\:opacity-25 { + opacity: 0.25; } - .lg\:gap-x-14 { - column-gap: 3.5rem; + .lg\:opacity-30 { + opacity: 0.3; } - .lg\:gap-x-16 { - column-gap: 4rem; + .lg\:opacity-40 { + opacity: 0.4; } - .lg\:gap-x-20 { - column-gap: 5rem; + .lg\:opacity-50 { + opacity: 0.5; } - .lg\:gap-x-24 { - column-gap: 6rem; + .lg\:opacity-60 { + opacity: 0.6; } - .lg\:gap-x-28 { - column-gap: 7rem; + .lg\:opacity-70 { + opacity: 0.7; } - .lg\:gap-x-32 { - column-gap: 8rem; + .lg\:opacity-75 { + opacity: 0.75; } - .lg\:gap-x-36 { - column-gap: 9rem; + .lg\:opacity-80 { + opacity: 0.8; } - .lg\:gap-x-40 { - column-gap: 10rem; + .lg\:opacity-90 { + opacity: 0.9; } - .lg\:gap-x-44 { - column-gap: 11rem; + .lg\:opacity-95 { + opacity: 0.95; } - .lg\:gap-x-48 { - column-gap: 12rem; + .lg\:opacity-100 { + opacity: 1; } - .lg\:gap-x-52 { - column-gap: 13rem; + .group:hover .lg\:group-hover\:opacity-0 { + opacity: 0; } - .lg\:gap-x-56 { - column-gap: 14rem; + .group:hover .lg\:group-hover\:opacity-5 { + opacity: 0.05; } - .lg\:gap-x-60 { - column-gap: 15rem; + .group:hover .lg\:group-hover\:opacity-10 { + opacity: 0.1; } - .lg\:gap-x-64 { - column-gap: 16rem; + .group:hover .lg\:group-hover\:opacity-20 { + opacity: 0.2; } - .lg\:gap-x-72 { - column-gap: 18rem; + .group:hover .lg\:group-hover\:opacity-25 { + opacity: 0.25; } - .lg\:gap-x-80 { - column-gap: 20rem; + .group:hover .lg\:group-hover\:opacity-30 { + opacity: 0.3; } - .lg\:gap-x-96 { - column-gap: 24rem; + .group:hover .lg\:group-hover\:opacity-40 { + opacity: 0.4; } - .lg\:gap-x-px { - column-gap: 1px; + .group:hover .lg\:group-hover\:opacity-50 { + opacity: 0.5; } - .lg\:gap-x-0\.5 { - column-gap: 0.125rem; + .group:hover .lg\:group-hover\:opacity-60 { + opacity: 0.6; } - .lg\:gap-x-1\.5 { - column-gap: 0.375rem; + .group:hover .lg\:group-hover\:opacity-70 { + opacity: 0.7; } - .lg\:gap-x-2\.5 { - column-gap: 0.625rem; + .group:hover .lg\:group-hover\:opacity-75 { + opacity: 0.75; } - .lg\:gap-x-3\.5 { - column-gap: 0.875rem; + .group:hover .lg\:group-hover\:opacity-80 { + opacity: 0.8; } - .lg\:gap-y-0 { - row-gap: 0px; + .group:hover .lg\:group-hover\:opacity-90 { + opacity: 0.9; } - .lg\:gap-y-1 { - row-gap: 0.25rem; + .group:hover .lg\:group-hover\:opacity-95 { + opacity: 0.95; } - .lg\:gap-y-2 { - row-gap: 0.5rem; + .group:hover .lg\:group-hover\:opacity-100 { + opacity: 1; } - .lg\:gap-y-3 { - row-gap: 0.75rem; + .lg\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .lg\:gap-y-4 { - row-gap: 1rem; + .lg\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .lg\:gap-y-5 { - row-gap: 1.25rem; + .lg\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .lg\:gap-y-6 { - row-gap: 1.5rem; + .lg\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .lg\:gap-y-7 { - row-gap: 1.75rem; + .lg\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .lg\:gap-y-8 { - row-gap: 2rem; + .lg\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .lg\:gap-y-9 { - row-gap: 2.25rem; + .lg\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .lg\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .lg\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .lg\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .lg\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .lg\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .lg\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .lg\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .lg\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .lg\:hover\:opacity-0:hover { + opacity: 0; + } + + .lg\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .lg\:hover\:opacity-10:hover { + opacity: 0.1; } - .lg\:gap-y-10 { - row-gap: 2.5rem; + .lg\:hover\:opacity-20:hover { + opacity: 0.2; } - .lg\:gap-y-11 { - row-gap: 2.75rem; + .lg\:hover\:opacity-25:hover { + opacity: 0.25; } - .lg\:gap-y-12 { - row-gap: 3rem; + .lg\:hover\:opacity-30:hover { + opacity: 0.3; } - .lg\:gap-y-14 { - row-gap: 3.5rem; + .lg\:hover\:opacity-40:hover { + opacity: 0.4; } - .lg\:gap-y-16 { - row-gap: 4rem; + .lg\:hover\:opacity-50:hover { + opacity: 0.5; } - .lg\:gap-y-20 { - row-gap: 5rem; + .lg\:hover\:opacity-60:hover { + opacity: 0.6; } - .lg\:gap-y-24 { - row-gap: 6rem; + .lg\:hover\:opacity-70:hover { + opacity: 0.7; } - .lg\:gap-y-28 { - row-gap: 7rem; + .lg\:hover\:opacity-75:hover { + opacity: 0.75; } - .lg\:gap-y-32 { - row-gap: 8rem; + .lg\:hover\:opacity-80:hover { + opacity: 0.8; } - .lg\:gap-y-36 { - row-gap: 9rem; + .lg\:hover\:opacity-90:hover { + opacity: 0.9; } - .lg\:gap-y-40 { - row-gap: 10rem; + .lg\:hover\:opacity-95:hover { + opacity: 0.95; } - .lg\:gap-y-44 { - row-gap: 11rem; + .lg\:hover\:opacity-100:hover { + opacity: 1; } - .lg\:gap-y-48 { - row-gap: 12rem; + .lg\:focus\:opacity-0:focus { + opacity: 0; } - .lg\:gap-y-52 { - row-gap: 13rem; + .lg\:focus\:opacity-5:focus { + opacity: 0.05; } - .lg\:gap-y-56 { - row-gap: 14rem; + .lg\:focus\:opacity-10:focus { + opacity: 0.1; } - .lg\:gap-y-60 { - row-gap: 15rem; + .lg\:focus\:opacity-20:focus { + opacity: 0.2; } - .lg\:gap-y-64 { - row-gap: 16rem; + .lg\:focus\:opacity-25:focus { + opacity: 0.25; } - .lg\:gap-y-72 { - row-gap: 18rem; + .lg\:focus\:opacity-30:focus { + opacity: 0.3; } - .lg\:gap-y-80 { - row-gap: 20rem; + .lg\:focus\:opacity-40:focus { + opacity: 0.4; } - .lg\:gap-y-96 { - row-gap: 24rem; + .lg\:focus\:opacity-50:focus { + opacity: 0.5; } - .lg\:gap-y-px { - row-gap: 1px; + .lg\:focus\:opacity-60:focus { + opacity: 0.6; } - .lg\:gap-y-0\.5 { - row-gap: 0.125rem; + .lg\:focus\:opacity-70:focus { + opacity: 0.7; } - .lg\:gap-y-1\.5 { - row-gap: 0.375rem; + .lg\:focus\:opacity-75:focus { + opacity: 0.75; } - .lg\:gap-y-2\.5 { - row-gap: 0.625rem; + .lg\:focus\:opacity-80:focus { + opacity: 0.8; } - .lg\:gap-y-3\.5 { - row-gap: 0.875rem; + .lg\:focus\:opacity-90:focus { + opacity: 0.9; } - .lg\:grid-flow-row { - grid-auto-flow: row; + .lg\:focus\:opacity-95:focus { + opacity: 0.95; } - .lg\:grid-flow-col { - grid-auto-flow: column; + .lg\:focus\:opacity-100:focus { + opacity: 1; } - .lg\:grid-flow-row-dense { - grid-auto-flow: row dense; + .lg\:bg-blend-normal { + background-blend-mode: normal; } - .lg\:grid-flow-col-dense { - grid-auto-flow: column dense; + .lg\:bg-blend-multiply { + background-blend-mode: multiply; } - .lg\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .lg\:bg-blend-screen { + background-blend-mode: screen; } - .lg\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .lg\:bg-blend-overlay { + background-blend-mode: overlay; } - .lg\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .lg\:bg-blend-darken { + background-blend-mode: darken; } - .lg\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .lg\:bg-blend-lighten { + background-blend-mode: lighten; } - .lg\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .lg\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .lg\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .lg\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .lg\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .lg\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .lg\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .lg\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .lg\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .lg\:bg-blend-difference { + background-blend-mode: difference; } - .lg\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .lg\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .lg\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .lg\:bg-blend-hue { + background-blend-mode: hue; } - .lg\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .lg\:bg-blend-saturation { + background-blend-mode: saturation; } - .lg\:grid-cols-none { - grid-template-columns: none; + .lg\:bg-blend-color { + background-blend-mode: color; } - .lg\:auto-cols-auto { - grid-auto-columns: auto; + .lg\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .lg\:auto-cols-min { - grid-auto-columns: min-content; + .lg\:mix-blend-normal { + mix-blend-mode: normal; } - .lg\:auto-cols-max { - grid-auto-columns: max-content; + .lg\:mix-blend-multiply { + mix-blend-mode: multiply; } - .lg\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .lg\:mix-blend-screen { + mix-blend-mode: screen; } - .lg\:col-auto { - grid-column: auto; + .lg\:mix-blend-overlay { + mix-blend-mode: overlay; } - .lg\:col-span-1 { - grid-column: span 1 / span 1; + .lg\:mix-blend-darken { + mix-blend-mode: darken; } - .lg\:col-span-2 { - grid-column: span 2 / span 2; + .lg\:mix-blend-lighten { + mix-blend-mode: lighten; } - .lg\:col-span-3 { - grid-column: span 3 / span 3; + .lg\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .lg\:col-span-4 { - grid-column: span 4 / span 4; + .lg\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .lg\:col-span-5 { - grid-column: span 5 / span 5; + .lg\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .lg\:col-span-6 { - grid-column: span 6 / span 6; + .lg\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .lg\:col-span-7 { - grid-column: span 7 / span 7; + .lg\:mix-blend-difference { + mix-blend-mode: difference; } - .lg\:col-span-8 { - grid-column: span 8 / span 8; + .lg\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .lg\:col-span-9 { - grid-column: span 9 / span 9; + .lg\:mix-blend-hue { + mix-blend-mode: hue; } - .lg\:col-span-10 { - grid-column: span 10 / span 10; + .lg\:mix-blend-saturation { + mix-blend-mode: saturation; } - .lg\:col-span-11 { - grid-column: span 11 / span 11; + .lg\:mix-blend-color { + mix-blend-mode: color; } - .lg\:col-span-12 { - grid-column: span 12 / span 12; + .lg\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .lg\:col-span-full { - grid-column: 1 / -1; + .lg\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-1 { - grid-column-start: 1; + .lg\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-2 { - grid-column-start: 2; + .lg\: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); } - .lg\:col-start-3 { - grid-column-start: 3; + .lg\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-4 { - grid-column-start: 4; + .lg\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-5 { - grid-column-start: 5; + .lg\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-6 { - grid-column-start: 6; + .lg\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-7 { - grid-column-start: 7; + .lg\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-8 { - grid-column-start: 8; + .group:hover .lg\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-9 { - grid-column-start: 9; + .group:hover .lg\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-10 { - grid-column-start: 10; + .group:hover .lg\:group-hover\: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); } - .lg\:col-start-11 { - grid-column-start: 11; + .group:hover .lg\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-12 { - grid-column-start: 12; + .group:hover .lg\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-13 { - grid-column-start: 13; + .group:hover .lg\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-start-auto { - grid-column-start: auto; + .group:hover .lg\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-1 { - grid-column-end: 1; + .group:hover .lg\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-2 { - grid-column-end: 2; + .lg\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-3 { - grid-column-end: 3; + .lg\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-4 { - grid-column-end: 4; + .lg\:focus-within\:shadow-md:focus-within { + --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); } - .lg\:col-end-5 { - grid-column-end: 5; + .lg\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-6 { - grid-column-end: 6; + .lg\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-7 { - grid-column-end: 7; + .lg\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-8 { - grid-column-end: 8; + .lg\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-9 { - grid-column-end: 9; + .lg\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-10 { - grid-column-end: 10; + .lg\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-11 { - grid-column-end: 11; + .lg\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-12 { - grid-column-end: 12; + .lg\:hover\:shadow-md:hover { + --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); } - .lg\:col-end-13 { - grid-column-end: 13; + .lg\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:col-end-auto { - grid-column-end: auto; + .lg\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .lg\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .lg\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .lg\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .lg\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .lg\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .lg\:focus\:shadow-md:focus { + --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); } - .lg\:grid-rows-none { - grid-template-rows: none; + .lg\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:auto-rows-auto { - grid-auto-rows: auto; + .lg\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:auto-rows-min { - grid-auto-rows: min-content; + .lg\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:auto-rows-max { - grid-auto-rows: max-content; + .lg\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .lg\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-auto { - grid-row: auto; + .lg\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .lg\:row-span-1 { - grid-row: span 1 / span 1; + .lg\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .lg\:row-span-2 { - grid-row: span 2 / span 2; + .lg\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .lg\:row-span-3 { - grid-row: span 3 / span 3; + .lg\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .lg\:row-span-4 { - grid-row: span 4 / span 4; + .lg\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .lg\:row-span-5 { - grid-row: span 5 / span 5; + .lg\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .lg\:row-span-6 { - grid-row: span 6 / span 6; + .lg\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .lg\:row-span-full { - grid-row: 1 / -1; + .lg\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .lg\:row-start-1 { - grid-row-start: 1; + .lg\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .lg\:row-start-2 { - grid-row-start: 2; + .lg\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-start-3 { - grid-row-start: 3; + .lg\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-start-4 { - grid-row-start: 4; + .lg\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-start-5 { - grid-row-start: 5; + .lg\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-start-6 { - grid-row-start: 6; + .lg\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-start-7 { - grid-row-start: 7; + .lg\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-start-auto { - grid-row-start: auto; + .lg\:ring-inset { + --tw-ring-inset: inset; } - .lg\:row-end-1 { - grid-row-end: 1; + .lg\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-end-2 { - grid-row-end: 2; + .lg\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-end-3 { - grid-row-end: 3; + .lg\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-end-4 { - grid-row-end: 4; + .lg\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-end-5 { - grid-row-end: 5; + .lg\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-end-6 { - grid-row-end: 6; + .lg\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:row-end-7 { - grid-row-end: 7; + .lg\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .lg\:row-end-auto { - grid-row-end: auto; + .lg\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .lg\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .lg\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:transform-none { - transform: none; + .lg\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:origin-center { - transform-origin: center; + .lg\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:origin-top { - transform-origin: top; + .lg\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:origin-top-right { - transform-origin: top right; + .lg\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .lg\:origin-right { - transform-origin: right; + .lg\:ring-transparent { + --tw-ring-color: transparent; } - .lg\:origin-bottom-right { - transform-origin: bottom right; + .lg\:ring-current { + --tw-ring-color: currentColor; } - .lg\:origin-bottom { - transform-origin: bottom; + .lg\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .lg\:origin-bottom-left { - transform-origin: bottom left; + .lg\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .lg\:origin-left { - transform-origin: left; + .lg\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .lg\:origin-top-left { - transform-origin: top left; + .lg\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .lg\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .lg\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .lg\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .lg\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .lg\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .lg\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .lg\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .lg\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .lg\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .lg\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .lg\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .lg\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .lg\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .lg\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .lg\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .lg\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .lg\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .lg\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .lg\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .lg\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .lg\:scale-x-0 { - --tw-scale-x: 0; + .lg\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .lg\:scale-x-50 { - --tw-scale-x: .5; + .lg\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .lg\:scale-x-75 { - --tw-scale-x: .75; + .lg\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .lg\:scale-x-90 { - --tw-scale-x: .9; + .lg\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .lg\:scale-x-95 { - --tw-scale-x: .95; + .lg\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .lg\:scale-x-100 { - --tw-scale-x: 1; + .lg\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .lg\:scale-x-105 { - --tw-scale-x: 1.05; + .lg\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .lg\:scale-x-110 { - --tw-scale-x: 1.1; + .lg\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .lg\:scale-x-125 { - --tw-scale-x: 1.25; + .lg\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .lg\:scale-x-150 { - --tw-scale-x: 1.5; + .lg\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .lg\:scale-y-0 { - --tw-scale-y: 0; + .lg\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .lg\:scale-y-50 { - --tw-scale-y: .5; + .lg\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .lg\:scale-y-75 { - --tw-scale-y: .75; + .lg\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .lg\:scale-y-90 { - --tw-scale-y: .9; + .lg\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .lg\:scale-y-95 { - --tw-scale-y: .95; + .lg\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .lg\:scale-y-100 { - --tw-scale-y: 1; + .lg\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .lg\:scale-y-105 { - --tw-scale-y: 1.05; + .lg\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .lg\:scale-y-110 { - --tw-scale-y: 1.1; + .lg\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .lg\:scale-y-125 { - --tw-scale-y: 1.25; + .lg\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .lg\:scale-y-150 { - --tw-scale-y: 1.5; + .lg\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .lg\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .lg\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .lg\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .lg\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .lg\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .lg\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .lg\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .lg\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .lg\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .lg\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .lg\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .lg\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .lg\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .lg\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .lg\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .lg\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .lg\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .lg\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .lg\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .lg\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .lg\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .lg\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .lg\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .lg\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .lg\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .lg\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .lg\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .lg\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .lg\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .lg\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .lg\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .lg\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .lg\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .lg\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .lg\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .lg\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .lg\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .lg\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .lg\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .lg\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .lg\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .lg\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .lg\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .lg\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .lg\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .lg\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .lg\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .lg\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .lg\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .lg\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .lg\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .lg\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .lg\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .lg\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .lg\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .lg\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .lg\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .lg\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .lg\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .lg\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .lg\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .lg\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .lg\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .lg\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .lg\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .lg\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .lg\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .lg\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .lg\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .lg\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .lg\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .lg\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .lg\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .lg\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .lg\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .lg\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .lg\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .lg\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .lg\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .lg\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .lg\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .lg\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .lg\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .lg\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .lg\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .lg\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .lg\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .lg\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .lg\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .lg\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .lg\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .lg\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .lg\:rotate-0 { - --tw-rotate: 0deg; + .lg\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .lg\:rotate-1 { - --tw-rotate: 1deg; + .lg\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .lg\:rotate-2 { - --tw-rotate: 2deg; + .lg\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .lg\:rotate-3 { - --tw-rotate: 3deg; + .lg\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .lg\:rotate-6 { - --tw-rotate: 6deg; + .lg\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .lg\:rotate-12 { - --tw-rotate: 12deg; + .lg\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .lg\:rotate-45 { - --tw-rotate: 45deg; + .lg\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .lg\:rotate-90 { - --tw-rotate: 90deg; + .lg\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .lg\:rotate-180 { - --tw-rotate: 180deg; + .lg\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .lg\:-rotate-180 { - --tw-rotate: -180deg; + .lg\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .lg\:-rotate-90 { - --tw-rotate: -90deg; + .lg\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .lg\:-rotate-45 { - --tw-rotate: -45deg; + .lg\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .lg\:-rotate-12 { - --tw-rotate: -12deg; + .lg\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .lg\:-rotate-6 { - --tw-rotate: -6deg; + .lg\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .lg\:-rotate-3 { - --tw-rotate: -3deg; + .lg\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .lg\:-rotate-2 { - --tw-rotate: -2deg; + .lg\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .lg\:-rotate-1 { - --tw-rotate: -1deg; + .lg\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .lg\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .lg\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .lg\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .lg\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .lg\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .lg\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .lg\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .lg\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .lg\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .lg\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .lg\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .lg\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .lg\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .lg\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .lg\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .lg\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .lg\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .lg\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .lg\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .lg\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .lg\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .lg\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .lg\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .lg\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .lg\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .lg\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .lg\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .lg\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .lg\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .lg\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .lg\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .lg\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .lg\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .lg\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .lg\:translate-x-0 { - --tw-translate-x: 0px; + .lg\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .lg\:translate-x-1 { - --tw-translate-x: 0.25rem; + .lg\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .lg\:translate-x-2 { - --tw-translate-x: 0.5rem; + .lg\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .lg\:translate-x-3 { - --tw-translate-x: 0.75rem; + .lg\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .lg\:translate-x-4 { - --tw-translate-x: 1rem; + .lg\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .lg\:translate-x-5 { - --tw-translate-x: 1.25rem; + .lg\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .lg\:translate-x-6 { - --tw-translate-x: 1.5rem; + .lg\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .lg\:translate-x-7 { - --tw-translate-x: 1.75rem; + .lg\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .lg\:translate-x-8 { - --tw-translate-x: 2rem; + .lg\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .lg\:translate-x-9 { - --tw-translate-x: 2.25rem; + .lg\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .lg\:translate-x-10 { - --tw-translate-x: 2.5rem; + .lg\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .lg\:translate-x-11 { - --tw-translate-x: 2.75rem; + .lg\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .lg\:translate-x-12 { - --tw-translate-x: 3rem; + .lg\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .lg\:translate-x-14 { - --tw-translate-x: 3.5rem; + .lg\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .lg\:translate-x-16 { - --tw-translate-x: 4rem; + .lg\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .lg\:translate-x-20 { - --tw-translate-x: 5rem; + .lg\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .lg\:translate-x-24 { - --tw-translate-x: 6rem; + .lg\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .lg\:translate-x-28 { - --tw-translate-x: 7rem; + .lg\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .lg\:translate-x-32 { - --tw-translate-x: 8rem; + .lg\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .lg\:translate-x-36 { - --tw-translate-x: 9rem; + .lg\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .lg\:translate-x-40 { - --tw-translate-x: 10rem; + .lg\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .lg\:translate-x-44 { - --tw-translate-x: 11rem; + .lg\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .lg\:translate-x-48 { - --tw-translate-x: 12rem; + .lg\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .lg\:translate-x-52 { - --tw-translate-x: 13rem; + .lg\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .lg\:translate-x-56 { - --tw-translate-x: 14rem; + .lg\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .lg\:translate-x-60 { - --tw-translate-x: 15rem; + .lg\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .lg\:translate-x-64 { - --tw-translate-x: 16rem; + .lg\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .lg\:translate-x-72 { - --tw-translate-x: 18rem; + .lg\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .lg\:translate-x-80 { - --tw-translate-x: 20rem; + .lg\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .lg\:translate-x-96 { - --tw-translate-x: 24rem; + .lg\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .lg\:translate-x-px { - --tw-translate-x: 1px; + .lg\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .lg\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .lg\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .lg\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .lg\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .lg\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .lg\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .lg\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .lg\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .lg\:-translate-x-0 { - --tw-translate-x: 0px; + .lg\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .lg\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .lg\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .lg\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .lg\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .lg\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .lg\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .lg\:-translate-x-4 { - --tw-translate-x: -1rem; + .lg\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .lg\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .lg\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .lg\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .lg\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .lg\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .lg\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .lg\:-translate-x-8 { - --tw-translate-x: -2rem; + .lg\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .lg\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .lg\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .lg\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .lg\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .lg\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .lg\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .lg\:-translate-x-12 { - --tw-translate-x: -3rem; + .lg\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .lg\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .lg\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .lg\:-translate-x-16 { - --tw-translate-x: -4rem; + .lg\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .lg\:-translate-x-20 { - --tw-translate-x: -5rem; + .lg\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .lg\:-translate-x-24 { - --tw-translate-x: -6rem; + .lg\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .lg\:-translate-x-28 { - --tw-translate-x: -7rem; + .lg\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .lg\:-translate-x-32 { - --tw-translate-x: -8rem; + .lg\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .lg\:-translate-x-36 { - --tw-translate-x: -9rem; + .lg\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .lg\:-translate-x-40 { - --tw-translate-x: -10rem; + .lg\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .lg\:-translate-x-44 { - --tw-translate-x: -11rem; + .lg\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .lg\:-translate-x-48 { - --tw-translate-x: -12rem; + .lg\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .lg\:-translate-x-52 { - --tw-translate-x: -13rem; + .lg\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .lg\:-translate-x-56 { - --tw-translate-x: -14rem; + .lg\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .lg\:-translate-x-60 { - --tw-translate-x: -15rem; + .lg\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .lg\:-translate-x-64 { - --tw-translate-x: -16rem; + .lg\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .lg\:-translate-x-72 { - --tw-translate-x: -18rem; + .lg\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .lg\:-translate-x-80 { - --tw-translate-x: -20rem; + .lg\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .lg\:-translate-x-96 { - --tw-translate-x: -24rem; + .lg\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .lg\:-translate-x-px { - --tw-translate-x: -1px; + .lg\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .lg\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .lg\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .lg\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .lg\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .lg\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .lg\:translate-x-1\/2 { - --tw-translate-x: 50%; + .lg\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .lg\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .lg\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .lg\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .lg\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .lg\:translate-x-1\/4 { - --tw-translate-x: 25%; + .lg\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .lg\:translate-x-2\/4 { - --tw-translate-x: 50%; + .lg\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .lg\:translate-x-3\/4 { - --tw-translate-x: 75%; + .lg\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .lg\:translate-x-full { - --tw-translate-x: 100%; + .lg\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .lg\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .lg\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .lg\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .lg\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .lg\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .lg\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .lg\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .lg\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .lg\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .lg\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .lg\:-translate-x-full { - --tw-translate-x: -100%; + .lg\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .lg\:translate-y-0 { - --tw-translate-y: 0px; + .lg\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .lg\:translate-y-1 { - --tw-translate-y: 0.25rem; + .lg\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .lg\:translate-y-2 { - --tw-translate-y: 0.5rem; + .lg\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .lg\:translate-y-3 { - --tw-translate-y: 0.75rem; + .lg\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .lg\:translate-y-4 { - --tw-translate-y: 1rem; + .lg\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .lg\:translate-y-5 { - --tw-translate-y: 1.25rem; + .lg\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .lg\:translate-y-6 { - --tw-translate-y: 1.5rem; + .lg\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .lg\:translate-y-7 { - --tw-translate-y: 1.75rem; + .lg\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .lg\:translate-y-8 { - --tw-translate-y: 2rem; + .lg\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .lg\:translate-y-9 { - --tw-translate-y: 2.25rem; + .lg\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .lg\:translate-y-10 { - --tw-translate-y: 2.5rem; + .lg\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .lg\:translate-y-11 { - --tw-translate-y: 2.75rem; + .lg\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .lg\:translate-y-12 { - --tw-translate-y: 3rem; + .lg\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .lg\:translate-y-14 { - --tw-translate-y: 3.5rem; + .lg\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .lg\:translate-y-16 { - --tw-translate-y: 4rem; + .lg\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .lg\:translate-y-20 { - --tw-translate-y: 5rem; + .lg\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .lg\:translate-y-24 { - --tw-translate-y: 6rem; + .lg\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .lg\:translate-y-28 { - --tw-translate-y: 7rem; + .lg\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .lg\:translate-y-32 { - --tw-translate-y: 8rem; + .lg\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .lg\:translate-y-36 { - --tw-translate-y: 9rem; + .lg\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .lg\:translate-y-40 { - --tw-translate-y: 10rem; + .lg\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .lg\:translate-y-44 { - --tw-translate-y: 11rem; + .lg\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .lg\:translate-y-48 { - --tw-translate-y: 12rem; + .lg\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .lg\:translate-y-52 { - --tw-translate-y: 13rem; + .lg\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .lg\:translate-y-56 { - --tw-translate-y: 14rem; + .lg\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .lg\:translate-y-60 { - --tw-translate-y: 15rem; + .lg\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .lg\:translate-y-64 { - --tw-translate-y: 16rem; + .lg\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .lg\:translate-y-72 { - --tw-translate-y: 18rem; + .lg\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .lg\:translate-y-80 { - --tw-translate-y: 20rem; + .lg\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .lg\:translate-y-96 { - --tw-translate-y: 24rem; + .lg\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .lg\:translate-y-px { - --tw-translate-y: 1px; + .lg\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .lg\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .lg\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .lg\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .lg\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .lg\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .lg\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .lg\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .lg\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .lg\:-translate-y-0 { - --tw-translate-y: 0px; + .lg\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .lg\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .lg\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .lg\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .lg\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .lg\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .lg\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .lg\:-translate-y-4 { - --tw-translate-y: -1rem; + .lg\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .lg\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .lg\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .lg\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .lg\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .lg\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .lg\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .lg\:-translate-y-8 { - --tw-translate-y: -2rem; + .lg\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .lg\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .lg\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .lg\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .lg\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .lg\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .lg\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .lg\:-translate-y-12 { - --tw-translate-y: -3rem; + .lg\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .lg\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .lg\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .lg\:-translate-y-16 { - --tw-translate-y: -4rem; + .lg\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .lg\:-translate-y-20 { - --tw-translate-y: -5rem; + .lg\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .lg\:-translate-y-24 { - --tw-translate-y: -6rem; + .lg\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .lg\:-translate-y-28 { - --tw-translate-y: -7rem; + .lg\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .lg\:-translate-y-32 { - --tw-translate-y: -8rem; + .lg\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .lg\:-translate-y-36 { - --tw-translate-y: -9rem; + .lg\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .lg\:-translate-y-40 { - --tw-translate-y: -10rem; + .lg\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .lg\:-translate-y-44 { - --tw-translate-y: -11rem; + .lg\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .lg\:-translate-y-48 { - --tw-translate-y: -12rem; + .lg\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .lg\:-translate-y-52 { - --tw-translate-y: -13rem; + .lg\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .lg\:-translate-y-56 { - --tw-translate-y: -14rem; + .lg\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .lg\:-translate-y-60 { - --tw-translate-y: -15rem; + .lg\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .lg\:-translate-y-64 { - --tw-translate-y: -16rem; + .lg\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .lg\:-translate-y-72 { - --tw-translate-y: -18rem; + .lg\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .lg\:-translate-y-80 { - --tw-translate-y: -20rem; + .lg\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .lg\:-translate-y-96 { - --tw-translate-y: -24rem; + .lg\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .lg\:-translate-y-px { - --tw-translate-y: -1px; + .lg\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .lg\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .lg\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .lg\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .lg\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .lg\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .lg\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .lg\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .lg\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .lg\:translate-y-1\/2 { - --tw-translate-y: 50%; + .lg\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .lg\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .lg\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .lg\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .lg\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .lg\:translate-y-1\/4 { - --tw-translate-y: 25%; + .lg\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .lg\:translate-y-2\/4 { - --tw-translate-y: 50%; + .lg\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .lg\:translate-y-3\/4 { - --tw-translate-y: 75%; + .lg\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .lg\:translate-y-full { - --tw-translate-y: 100%; + .lg\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .lg\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .lg\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .lg\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .lg\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .lg\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .lg\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .lg\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .lg\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .lg\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .lg\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .lg\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .lg\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .lg\:-translate-y-full { - --tw-translate-y: -100%; + .lg\:ring-offset-black { + --tw-ring-offset-color: #000; } - .lg\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .lg\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .lg\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .lg\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .lg\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .lg\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .lg\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .lg\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .lg\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .lg\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .lg\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .lg\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .lg\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .lg\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .lg\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .lg\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .lg\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .lg\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .lg\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .lg\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .lg\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .lg\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .lg\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .lg\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .lg\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .lg\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .lg\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .lg\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .lg\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .lg\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .lg\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .lg\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .lg\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .lg\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .lg\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .lg\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .lg\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .lg\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .lg\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .lg\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .lg\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .lg\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .lg\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .lg\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .lg\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .lg\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .lg\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .lg\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .lg\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .lg\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .lg\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .lg\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .lg\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .lg\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .lg\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .lg\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .lg\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .lg\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .lg\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .lg\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .lg\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .lg\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .lg\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .lg\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .lg\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .lg\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .lg\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .lg\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .lg\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .lg\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .lg\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .lg\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .lg\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .lg\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .lg\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .lg\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .lg\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .lg\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .lg\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .lg\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .lg\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .lg\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .lg\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .lg\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .lg\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .lg\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .lg\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .lg\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .lg\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .lg\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .lg\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .lg\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .lg\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .lg\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .lg\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .lg\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .lg\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .lg\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .lg\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .lg\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .lg\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .lg\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .lg\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .lg\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .lg\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .lg\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .lg\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .lg\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .lg\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .lg\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .lg\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .lg\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .lg\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .lg\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .lg\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .lg\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .lg\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .lg\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .lg\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .lg\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .lg\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .lg\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .lg\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .lg\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .lg\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .lg\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .lg\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .lg\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .lg\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .lg\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .lg\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .lg\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .lg\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .lg\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .lg\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .lg\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .lg\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .lg\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .lg\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .lg\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .lg\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .lg\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .lg\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .lg\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .lg\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .lg\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .lg\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .lg\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .lg\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .lg\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .lg\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .lg\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .lg\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .lg\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .lg\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .lg\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .lg\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .lg\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .lg\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .lg\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .lg\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .lg\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .lg\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .lg\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .lg\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .lg\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .lg\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .lg\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .lg\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .lg\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .lg\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .lg\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .lg\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .lg\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .lg\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .lg\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .lg\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .lg\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .lg\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .lg\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .lg\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .lg\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .lg\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .lg\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .lg\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .lg\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .lg\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .lg\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .lg\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .lg\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .lg\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .lg\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .lg\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .lg\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .lg\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .lg\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .lg\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .lg\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .lg\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .lg\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .lg\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .lg\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .lg\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .lg\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .lg\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .lg\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .lg\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .lg\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .lg\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .lg\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .lg\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .lg\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .lg\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .lg\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .lg\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .lg\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .lg\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .lg\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .lg\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .lg\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .lg\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .lg\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .lg\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .lg\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .lg\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .lg\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .lg\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .lg\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .lg\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .lg\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .lg\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .lg\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - .lg\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .lg\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .lg\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .lg\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .lg\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .lg\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .lg\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .lg\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .lg\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .lg\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .lg\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .lg\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .lg\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .lg\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .lg\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .lg\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .lg\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .lg\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .lg\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .lg\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .lg\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .lg\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .lg\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .lg\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .lg\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .lg\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .lg\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .lg\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .lg\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .lg\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .lg\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .lg\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .lg\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .lg\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .lg\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .lg\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .lg\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .lg\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .lg\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .lg\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .lg\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .lg\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .lg\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .lg\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .lg\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .lg\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .lg\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .lg\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .lg\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .lg\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .lg\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .lg\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .lg\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .lg\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .lg\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .lg\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .lg\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .lg\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .lg\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .lg\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .lg\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .lg\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .lg\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .lg\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .lg\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .lg\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .lg\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .lg\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .lg\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .lg\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .lg\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .lg\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .lg\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .lg\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .lg\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .lg\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .lg\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .lg\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .lg\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .lg\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .lg\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .lg\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .lg\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .lg\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .lg\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .lg\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .lg\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .lg\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .lg\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .lg\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .lg\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .lg\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .lg\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .lg\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .lg\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .lg\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .lg\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .lg\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .lg\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .lg\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .lg\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .lg\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .lg\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .lg\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .lg\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .lg\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .lg\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .lg\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .lg\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + .lg\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .lg\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .lg\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .lg\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .lg\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .lg\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .lg\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .lg\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .lg\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .lg\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .lg\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .lg\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .lg\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .lg\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .lg\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .lg\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .lg\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .lg\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .lg\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .lg\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .lg\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .lg\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .lg\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .lg\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .lg\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .lg\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .lg\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .lg\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .lg\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .lg\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .lg\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .lg\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .lg\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .lg\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .lg\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .lg\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .lg\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .lg\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .lg\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .lg\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .lg\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .lg\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .lg\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .lg\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .lg\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .lg\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .lg\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .lg\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .lg\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .lg\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .lg\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .lg\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .lg\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .lg\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .lg\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .lg\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .lg\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .lg\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .lg\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .lg\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .lg\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .lg\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .lg\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .lg\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .lg\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .lg\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .lg\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .lg\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .lg\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .lg\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .lg\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .lg\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .lg\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .lg\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .lg\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .lg\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .lg\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .lg\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .lg\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .lg\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .lg\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .lg\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .lg\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .lg\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .lg\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .lg\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .lg\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .lg\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .lg\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .lg\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .lg\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .lg\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .lg\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .lg\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .lg\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .lg\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .lg\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .lg\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .lg\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .lg\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .lg\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .lg\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .lg\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .lg\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .lg\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .lg\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .lg\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .lg\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .lg\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .lg\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .lg\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .lg\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .lg\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .lg\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .lg\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .lg\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .lg\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .lg\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .lg\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .lg\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .lg\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .lg\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .lg\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .lg\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .lg\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .lg\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .lg\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .lg\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .lg\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .lg\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .lg\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .lg\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .lg\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .lg\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .lg\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .lg\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .lg\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .lg\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .lg\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .lg\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .lg\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .lg\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .lg\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .lg\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .lg\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .lg\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .lg\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .lg\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .lg\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .lg\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .lg\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .lg\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .lg\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .lg\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .lg\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .lg\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .lg\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .lg\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .lg\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .lg\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .lg\:filter-none { + filter: none; } - .lg\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .lg\:blur-0 { + --tw-blur: blur(0); } - .lg\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .lg\:blur-sm { + --tw-blur: blur(4px); } - .lg\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .lg\:blur { + --tw-blur: blur(8px); } - .lg\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .lg\:blur-md { + --tw-blur: blur(12px); } - .lg\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .lg\:blur-lg { + --tw-blur: blur(16px); } - .lg\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .lg\:blur-xl { + --tw-blur: blur(24px); } - .lg\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .lg\:blur-2xl { + --tw-blur: blur(40px); } - .lg\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .lg\:blur-3xl { + --tw-blur: blur(64px); } - .lg\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .lg\:brightness-0 { + --tw-brightness: brightness(0); } - .lg\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .lg\:brightness-50 { + --tw-brightness: brightness(.5); } - .lg\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .lg\:brightness-75 { + --tw-brightness: brightness(.75); } - .lg\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .lg\:brightness-90 { + --tw-brightness: brightness(.9); } - .lg\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .lg\:brightness-95 { + --tw-brightness: brightness(.95); } - .lg\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .lg\:brightness-100 { + --tw-brightness: brightness(1); } - .lg\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .lg\:brightness-105 { + --tw-brightness: brightness(1.05); } - .lg\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .lg\:brightness-110 { + --tw-brightness: brightness(1.1); } - .lg\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .lg\:brightness-125 { + --tw-brightness: brightness(1.25); } - .lg\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .lg\:brightness-150 { + --tw-brightness: brightness(1.5); } - .lg\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .lg\:brightness-200 { + --tw-brightness: brightness(2); } - .lg\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .lg\:contrast-0 { + --tw-contrast: contrast(0); } - .lg\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .lg\:contrast-50 { + --tw-contrast: contrast(.5); } - .lg\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .lg\:contrast-75 { + --tw-contrast: contrast(.75); } - .lg\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .lg\:contrast-100 { + --tw-contrast: contrast(1); } - .lg\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .lg\:contrast-125 { + --tw-contrast: contrast(1.25); } - .lg\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .lg\:contrast-150 { + --tw-contrast: contrast(1.5); } - .lg\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .lg\:contrast-200 { + --tw-contrast: contrast(2); } - .lg\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .lg\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .lg\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .lg\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .lg\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .lg\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .lg\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .lg\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .lg\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .lg\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .lg\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .lg\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .lg\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .lg\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .lg\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .lg\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .lg\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .lg\:grayscale { + --tw-grayscale: grayscale(100%); } - .lg\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .lg\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .lg\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .lg\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .lg\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .lg\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .lg\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .lg\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .lg\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .lg\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .lg\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .lg\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .lg\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .lg\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .lg\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .lg\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .lg\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .lg\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .lg\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .lg\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .lg\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .lg\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .lg\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .lg\:invert-0 { + --tw-invert: invert(0); } - .lg\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .lg\:invert { + --tw-invert: invert(100%); } - .lg\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .lg\:saturate-0 { + --tw-saturate: saturate(0); } - .lg\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .lg\:saturate-50 { + --tw-saturate: saturate(.5); } - .lg\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .lg\:saturate-100 { + --tw-saturate: saturate(1); } - .lg\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .lg\:saturate-150 { + --tw-saturate: saturate(1.5); } - .lg\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .lg\:saturate-200 { + --tw-saturate: saturate(2); } - .lg\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .lg\:sepia-0 { + --tw-sepia: sepia(0); } - .lg\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .lg\:sepia { + --tw-sepia: sepia(100%); } - .lg\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .lg\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .lg\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .lg\:backdrop-filter-none { + backdrop-filter: none; } - .lg\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .lg\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .lg\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .lg\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .lg\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .lg\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .lg\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .lg\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .lg\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .lg\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .lg\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .lg\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .lg\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .lg\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .lg\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .lg\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .lg\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .lg\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .lg\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .lg\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .lg\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .lg\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .lg\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .lg\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .lg\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .lg\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .lg\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .lg\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .lg\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .lg\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .lg\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .lg\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .lg\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .lg\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .lg\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .lg\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .lg\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .lg\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .lg\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .lg\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .lg\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .lg\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .lg\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .lg\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .lg\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .lg\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .lg\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .lg\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .lg\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .lg\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .lg\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .lg\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .lg\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .lg\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .lg\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .lg\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .lg\:skew-x-0 { - --tw-skew-x: 0deg; + .lg\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .lg\:skew-x-1 { - --tw-skew-x: 1deg; + .lg\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .lg\:skew-x-2 { - --tw-skew-x: 2deg; + .lg\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .lg\:skew-x-3 { - --tw-skew-x: 3deg; + .lg\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .lg\:skew-x-6 { - --tw-skew-x: 6deg; + .lg\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .lg\:skew-x-12 { - --tw-skew-x: 12deg; + .lg\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .lg\:-skew-x-12 { - --tw-skew-x: -12deg; + .lg\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .lg\:-skew-x-6 { - --tw-skew-x: -6deg; + .lg\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .lg\:-skew-x-3 { - --tw-skew-x: -3deg; + .lg\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .lg\:-skew-x-2 { - --tw-skew-x: -2deg; + .lg\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .lg\:-skew-x-1 { - --tw-skew-x: -1deg; + .lg\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .lg\:skew-y-0 { - --tw-skew-y: 0deg; + .lg\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } - .lg\:skew-y-1 { - --tw-skew-y: 1deg; + .lg\:transition-none { + transition-property: none; } - .lg\:skew-y-2 { - --tw-skew-y: 2deg; + .lg\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .lg\:skew-y-3 { - --tw-skew-y: 3deg; + .lg\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .lg\:skew-y-6 { - --tw-skew-y: 6deg; + .lg\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .lg\:skew-y-12 { - --tw-skew-y: 12deg; + .lg\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .lg\:-skew-y-12 { - --tw-skew-y: -12deg; + .lg\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .lg\:-skew-y-6 { - --tw-skew-y: -6deg; + .lg\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .lg\:-skew-y-3 { - --tw-skew-y: -3deg; + .lg\:delay-75 { + transition-delay: 75ms; } - .lg\:-skew-y-2 { - --tw-skew-y: -2deg; + .lg\:delay-100 { + transition-delay: 100ms; } - .lg\:-skew-y-1 { - --tw-skew-y: -1deg; + .lg\:delay-150 { + transition-delay: 150ms; } - .lg\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .lg\:delay-200 { + transition-delay: 200ms; } - .lg\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .lg\:delay-300 { + transition-delay: 300ms; } - .lg\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .lg\:delay-500 { + transition-delay: 500ms; } - .lg\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .lg\:delay-700 { + transition-delay: 700ms; } - .lg\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .lg\:delay-1000 { + transition-delay: 1000ms; } - .lg\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .lg\:duration-75 { + transition-duration: 75ms; } - .lg\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .lg\:duration-100 { + transition-duration: 100ms; } - .lg\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .lg\:duration-150 { + transition-duration: 150ms; } - .lg\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .lg\:duration-200 { + transition-duration: 200ms; } - .lg\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .lg\:duration-300 { + transition-duration: 300ms; } - .lg\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .lg\:duration-500 { + transition-duration: 500ms; } - .lg\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .lg\:duration-700 { + transition-duration: 700ms; } - .lg\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .lg\:duration-1000 { + transition-duration: 1000ms; } - .lg\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .lg\:ease-linear { + transition-timing-function: linear; } - .lg\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .lg\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); } - .lg\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .lg\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); } - .lg\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .lg\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .lg\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .lg\:example { + font-weight: 700; + color: #ef4444; } +} - .lg\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; +@media (min-width: 1280px) { + .xl\:container { + width: 100%; } - .lg\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + @media (min-width: 640px) { + .xl\:container { + max-width: 640px; + } } - .lg\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + @media (min-width: 768px) { + .xl\:container { + max-width: 768px; + } } - .lg\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + @media (min-width: 1024px) { + .xl\:container { + max-width: 1024px; + } } - .lg\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + @media (min-width: 1280px) { + .xl\:container { + max-width: 1280px; + } } - .lg\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + @media (min-width: 1536px) { + .xl\:container { + max-width: 1536px; + } } - .lg\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .xl\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .lg\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .xl\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .lg\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .xl\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .lg\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .xl\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .lg\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .xl\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .lg\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .xl\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .lg\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .xl\:pointer-events-none { + pointer-events: none; } - .lg\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .xl\:pointer-events-auto { + pointer-events: auto; } - .lg\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .xl\:visible { + visibility: visible; } - .lg\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .xl\:invisible { + visibility: hidden; } - .lg\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .xl\:static { + position: static; } - .lg\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .xl\:fixed { + position: fixed; } - .lg\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .xl\:absolute { + position: absolute; } - .lg\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .xl\:relative { + position: relative; } - .lg\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .xl\:sticky { + position: sticky; } - .lg\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .xl\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .lg\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .xl\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .lg\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .xl\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .lg\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .xl\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .lg\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .xl\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .lg\:transition-none { - transition-property: none; + .xl\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .lg\:transition-all { - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .xl\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .lg\:transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .xl\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .lg\:transition-colors { - transition-property: background-color, border-color, color, fill, stroke; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .xl\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .lg\:transition-opacity { - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .xl\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .lg\:transition-shadow { - transition-property: box-shadow; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .xl\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .lg\:transition-transform { - transition-property: transform; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .xl\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .lg\:ease-linear { - transition-timing-function: linear; + .xl\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .lg\:ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + .xl\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .lg\:ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + .xl\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .lg\:ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + .xl\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .lg\:duration-75 { - transition-duration: 75ms; + .xl\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .lg\:duration-100 { - transition-duration: 100ms; + .xl\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .lg\:duration-150 { - transition-duration: 150ms; + .xl\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .lg\:duration-200 { - transition-duration: 200ms; + .xl\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .lg\:duration-300 { - transition-duration: 300ms; + .xl\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .lg\:duration-500 { - transition-duration: 500ms; + .xl\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .lg\:duration-700 { - transition-duration: 700ms; + .xl\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .lg\:duration-1000 { - transition-duration: 1000ms; + .xl\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .lg\:delay-75 { - transition-delay: 75ms; + .xl\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .lg\:delay-100 { - transition-delay: 100ms; + .xl\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .lg\:delay-150 { - transition-delay: 150ms; + .xl\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .lg\:delay-200 { - transition-delay: 200ms; + .xl\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .lg\:delay-300 { - transition-delay: 300ms; + .xl\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .lg\:delay-500 { - transition-delay: 500ms; + .xl\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .lg\:delay-700 { - transition-delay: 700ms; + .xl\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .lg\:delay-1000 { - transition-delay: 1000ms; + .xl\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .lg\:animate-none { - animation: none; + .xl\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .lg\:animate-spin { - animation: spin 1s linear infinite; + .xl\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .lg\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .xl\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .lg\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .xl\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .lg\:animate-bounce { - animation: bounce 1s infinite; + .xl\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .lg\:mix-blend-normal { - mix-blend-mode: normal; + .xl\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .lg\:mix-blend-multiply { - mix-blend-mode: multiply; + .xl\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .lg\:mix-blend-screen { - mix-blend-mode: screen; + .xl\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .lg\:mix-blend-overlay { - mix-blend-mode: overlay; + .xl\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .lg\:mix-blend-darken { - mix-blend-mode: darken; + .xl\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .lg\:mix-blend-lighten { - mix-blend-mode: lighten; + .xl\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .lg\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .xl\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .lg\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .xl\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .lg\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .xl\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .lg\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .xl\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .lg\:mix-blend-difference { - mix-blend-mode: difference; + .xl\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .lg\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .xl\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .lg\:mix-blend-hue { - mix-blend-mode: hue; + .xl\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .lg\:mix-blend-saturation { - mix-blend-mode: saturation; + .xl\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .lg\:mix-blend-color { - mix-blend-mode: color; + .xl\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .lg\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .xl\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .lg\:bg-blend-normal { - background-blend-mode: normal; + .xl\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .lg\:bg-blend-multiply { - background-blend-mode: multiply; + .xl\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .lg\:bg-blend-screen { - background-blend-mode: screen; + .xl\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .lg\:bg-blend-overlay { - background-blend-mode: overlay; + .xl\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .lg\:bg-blend-darken { - background-blend-mode: darken; + .xl\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .lg\:bg-blend-lighten { - background-blend-mode: lighten; + .xl\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .lg\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .xl\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .lg\:bg-blend-color-burn { - background-blend-mode: color-burn; + .xl\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .lg\:bg-blend-hard-light { - background-blend-mode: hard-light; + .xl\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .lg\:bg-blend-soft-light { - background-blend-mode: soft-light; + .xl\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .lg\:bg-blend-difference { - background-blend-mode: difference; + .xl\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .lg\:bg-blend-exclusion { - background-blend-mode: exclusion; + .xl\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .lg\:bg-blend-hue { - background-blend-mode: hue; + .xl\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .lg\:bg-blend-saturation { - background-blend-mode: saturation; + .xl\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .lg\:bg-blend-color { - background-blend-mode: color; + .xl\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .lg\:bg-blend-luminosity { - background-blend-mode: luminosity; + .xl\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .lg\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .lg\:filter-none { - filter: none; + .xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .lg\:blur-0 { - --tw-blur: blur(0); + .xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .lg\:blur-sm { - --tw-blur: blur(4px); + .xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .lg\:blur { - --tw-blur: blur(8px); + .xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .lg\:blur-md { - --tw-blur: blur(12px); + .xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .lg\:blur-lg { - --tw-blur: blur(16px); + .xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .lg\:blur-xl { - --tw-blur: blur(24px); + .xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .lg\:blur-2xl { - --tw-blur: blur(40px); + .xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .lg\:blur-3xl { - --tw-blur: blur(64px); + .xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .lg\:brightness-0 { - --tw-brightness: brightness(0); + .xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .lg\:brightness-50 { - --tw-brightness: brightness(.5); + .xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .lg\:brightness-75 { - --tw-brightness: brightness(.75); + .xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .lg\:brightness-90 { - --tw-brightness: brightness(.9); + .xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .lg\:brightness-95 { - --tw-brightness: brightness(.95); + .xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .lg\:brightness-100 { - --tw-brightness: brightness(1); + .xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .lg\:brightness-105 { - --tw-brightness: brightness(1.05); + .xl\:inset-y-0 { + top: 0px; + bottom: 0px; } - .lg\:brightness-110 { - --tw-brightness: brightness(1.1); + .xl\:inset-x-0 { + right: 0px; + left: 0px; } - .lg\:brightness-125 { - --tw-brightness: brightness(1.25); + .xl\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .lg\:brightness-150 { - --tw-brightness: brightness(1.5); + .xl\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .lg\:brightness-200 { - --tw-brightness: brightness(2); + .xl\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .lg\:contrast-0 { - --tw-contrast: contrast(0); + .xl\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .lg\:contrast-50 { - --tw-contrast: contrast(.5); + .xl\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .lg\:contrast-75 { - --tw-contrast: contrast(.75); + .xl\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .lg\:contrast-100 { - --tw-contrast: contrast(1); + .xl\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .lg\:contrast-125 { - --tw-contrast: contrast(1.25); + .xl\:inset-x-4 { + right: 1rem; + left: 1rem; } - .lg\:contrast-150 { - --tw-contrast: contrast(1.5); + .xl\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .lg\:contrast-200 { - --tw-contrast: contrast(2); + .xl\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .lg\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .xl\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .lg\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .xl\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .lg\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .xl\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .lg\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .xl\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .lg\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .xl\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .lg\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .xl\:inset-x-8 { + right: 2rem; + left: 2rem; } - .lg\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .xl\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .lg\:grayscale-0 { - --tw-grayscale: grayscale(0); + .xl\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .lg\:grayscale { - --tw-grayscale: grayscale(100%); + .xl\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .lg\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .xl\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .lg\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .xl\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .lg\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .xl\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .lg\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .xl\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .lg\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .xl\:inset-x-12 { + right: 3rem; + left: 3rem; } - .lg\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .xl\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .lg\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .xl\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .lg\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .xl\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .lg\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .xl\:inset-x-16 { + right: 4rem; + left: 4rem; } - .lg\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .xl\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .lg\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .xl\:inset-x-20 { + right: 5rem; + left: 5rem; } - .lg\:invert-0 { - --tw-invert: invert(0); + .xl\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .lg\:invert { - --tw-invert: invert(100%); + .xl\:inset-x-24 { + right: 6rem; + left: 6rem; } - .lg\:saturate-0 { - --tw-saturate: saturate(0); + .xl\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .lg\:saturate-50 { - --tw-saturate: saturate(.5); + .xl\:inset-x-28 { + right: 7rem; + left: 7rem; } - .lg\:saturate-100 { - --tw-saturate: saturate(1); + .xl\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .lg\:saturate-150 { - --tw-saturate: saturate(1.5); + .xl\:inset-x-32 { + right: 8rem; + left: 8rem; } - .lg\:saturate-200 { - --tw-saturate: saturate(2); + .xl\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .lg\:sepia-0 { - --tw-sepia: sepia(0); + .xl\:inset-x-36 { + right: 9rem; + left: 9rem; } - .lg\:sepia { - --tw-sepia: sepia(100%); + .xl\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .lg\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .xl\:inset-x-40 { + right: 10rem; + left: 10rem; } - .lg\:backdrop-filter-none { - backdrop-filter: none; + .xl\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .lg\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .xl\:inset-x-44 { + right: 11rem; + left: 11rem; } - .lg\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .xl\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .lg\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .xl\:inset-x-48 { + right: 12rem; + left: 12rem; } - .lg\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .xl\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .lg\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .xl\:inset-x-52 { + right: 13rem; + left: 13rem; } - .lg\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .xl\:inset-y-56 { + top: 14rem; + bottom: 14rem; } - .lg\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .xl\:inset-x-56 { + right: 14rem; + left: 14rem; } - .lg\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .xl\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - .lg\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .xl\:inset-x-60 { + right: 15rem; + left: 15rem; } - .lg\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .xl\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - .lg\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .xl\:inset-x-64 { + right: 16rem; + left: 16rem; } - .lg\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .xl\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .lg\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .xl\:inset-x-72 { + right: 18rem; + left: 18rem; } - .lg\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .xl\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .lg\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .xl\:inset-x-80 { + right: 20rem; + left: 20rem; } - .lg\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .xl\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .lg\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .xl\:inset-x-96 { + right: 24rem; + left: 24rem; } - .lg\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .xl\:inset-y-auto { + top: auto; + bottom: auto; } - .lg\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .xl\:inset-x-auto { + right: auto; + left: auto; } - .lg\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .xl\:inset-y-px { + top: 1px; + bottom: 1px; } - .lg\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .xl\:inset-x-px { + right: 1px; + left: 1px; } - .lg\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .xl\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .lg\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .xl\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .lg\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .xl\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .lg\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .xl\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .lg\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .xl\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .lg\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .xl\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .lg\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .xl\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .lg\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .xl\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .lg\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .xl\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .lg\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .xl\:-inset-x-0 { + right: 0px; + left: 0px; } - .lg\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .xl\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .lg\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .xl\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .lg\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .xl\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .lg\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .xl\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .lg\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .xl\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .lg\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .xl\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .lg\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .xl\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .lg\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .xl\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .lg\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .xl\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .lg\:example { - font-weight: 700; - color: #ef4444; + .xl\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } -} -@media (min-width: 1280px) { - .xl\:container { - width: 100%; + .xl\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - @media (min-width: 640px) { - .xl\:container { - max-width: 640px; - } + .xl\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - @media (min-width: 768px) { - .xl\:container { - max-width: 768px; - } + .xl\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - @media (min-width: 1024px) { - .xl\:container { - max-width: 1024px; - } + .xl\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - @media (min-width: 1280px) { - .xl\:container { - max-width: 1280px; - } + .xl\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - @media (min-width: 1536px) { - .xl\:container { - max-width: 1536px; - } + .xl\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .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\:right-6 { + right: 1.5rem; } - .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\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .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\:right-9 { + right: 2.25rem; } - .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\:bottom-9 { + bottom: 2.25rem; } - .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\:left-9 { + left: 2.25rem; } - .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\:top-10 { + top: 2.5rem; } - .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\:right-10 { + right: 2.5rem; } - .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\:bottom-10 { + bottom: 2.5rem; } - .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\:left-10 { + left: 2.5rem; } - .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\:top-11 { + top: 2.75rem; } - .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\:right-11 { + right: 2.75rem; } - .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\:bottom-11 { + bottom: 2.75rem; } - .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\:left-11 { + left: 2.75rem; } - .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\:top-12 { + top: 3rem; } - .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\:right-12 { + right: 3rem; } - .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\:bottom-12 { + bottom: 3rem; } - .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\:left-12 { + left: 3rem; } - .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\:top-14 { + top: 3.5rem; } - .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\:right-14 { + right: 3.5rem; } - .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\:bottom-14 { + bottom: 3.5rem; } - .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\:left-14 { + left: 3.5rem; } - .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\:top-16 { + top: 4rem; } - .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\:right-16 { + right: 4rem; } - .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\:bottom-16 { + bottom: 4rem; } - .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\:left-16 { + left: 4rem; } - .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .xl\:top-20 { + top: 5rem; } - .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .xl\:right-20 { + right: 5rem; } - .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\:bottom-20 { + bottom: 5rem; } - .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\:left-20 { + left: 5rem; } - .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\:top-24 { + top: 6rem; } - .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\:right-24 { + right: 6rem; } - .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\:bottom-24 { + bottom: 6rem; } - .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\:left-24 { + left: 6rem; } - .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\:top-28 { + top: 7rem; } - .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\:right-28 { + right: 7rem; } - .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\:bottom-28 { + bottom: 7rem; } - .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\:left-28 { + left: 7rem; } - .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .xl\:top-32 { + top: 8rem; } - .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .xl\:right-32 { + right: 8rem; } - .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .xl\:bottom-32 { + bottom: 8rem; } - .xl\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .xl\:left-32 { + left: 8rem; } - .xl\:divide-black > :not([hidden]) ~ :not([hidden]) { - border-color: #000; + .xl\:top-36 { + top: 9rem; } - .xl\:divide-white > :not([hidden]) ~ :not([hidden]) { - border-color: #fff; + .xl\:right-36 { + right: 9rem; } - .xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9fafb; + .xl\:bottom-36 { + bottom: 9rem; } - .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #f3f4f6; + .xl\:left-36 { + left: 9rem; } - .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #e5e7eb; + .xl\:top-40 { + top: 10rem; } - .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1d5db; + .xl\:right-40 { + right: 10rem; } - .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #9ca3af; + .xl\:bottom-40 { + bottom: 10rem; } - .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6b7280; + .xl\:left-40 { + left: 10rem; } - .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4b5563; + .xl\:top-44 { + top: 11rem; } - .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #374151; + .xl\:right-44 { + right: 11rem; } - .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1f2937; + .xl\:bottom-44 { + bottom: 11rem; } - .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #111827; + .xl\:left-44 { + left: 11rem; } - .xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef2f2; + .xl\:top-48 { + top: 12rem; } - .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fee2e2; + .xl\:right-48 { + right: 12rem; } - .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fecaca; + .xl\:bottom-48 { + bottom: 12rem; } - .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fca5a5; + .xl\:left-48 { + left: 12rem; } - .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f87171; + .xl\:top-52 { + top: 13rem; } - .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ef4444; + .xl\:right-52 { + right: 13rem; } - .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #dc2626; + .xl\:bottom-52 { + bottom: 13rem; } - .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b91c1c; + .xl\:left-52 { + left: 13rem; } - .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #991b1b; + .xl\:top-56 { + top: 14rem; } - .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #7f1d1d; + .xl\:right-56 { + right: 14rem; } - .xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fffbeb; + .xl\:bottom-56 { + bottom: 14rem; } - .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef3c7; + .xl\:left-56 { + left: 14rem; } - .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fde68a; + .xl\:top-60 { + top: 15rem; } - .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fcd34d; + .xl\:right-60 { + right: 15rem; } - .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbbf24; + .xl\:bottom-60 { + bottom: 15rem; } - .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #f59e0b; + .xl\:left-60 { + left: 15rem; } - .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #d97706; + .xl\:top-64 { + top: 16rem; } - .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b45309; + .xl\:right-64 { + right: 16rem; } - .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #92400e; + .xl\:bottom-64 { + bottom: 16rem; } - .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #78350f; + .xl\:left-64 { + left: 16rem; } - .xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #ecfdf5; + .xl\:top-72 { + top: 18rem; } - .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1fae5; + .xl\:right-72 { + right: 18rem; } - .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #a7f3d0; + .xl\:bottom-72 { + bottom: 18rem; } - .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #6ee7b7; + .xl\:left-72 { + left: 18rem; } - .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #34d399; + .xl\:top-80 { + top: 20rem; } - .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #10b981; + .xl\:right-80 { + right: 20rem; } - .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #059669; + .xl\:bottom-80 { + bottom: 20rem; } - .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #047857; + .xl\:left-80 { + left: 20rem; } - .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #065f46; + .xl\:top-96 { + top: 24rem; } - .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #064e3b; + .xl\:right-96 { + right: 24rem; } - .xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eff6ff; + .xl\:bottom-96 { + bottom: 24rem; } - .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #dbeafe; + .xl\:left-96 { + left: 24rem; } - .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #bfdbfe; + .xl\:top-auto { + top: auto; } - .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #93c5fd; + .xl\:right-auto { + right: auto; } - .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #60a5fa; + .xl\:bottom-auto { + bottom: auto; } - .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #3b82f6; + .xl\:left-auto { + left: auto; } - .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #2563eb; + .xl\:top-px { + top: 1px; } - .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #1d4ed8; + .xl\:right-px { + right: 1px; } - .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e40af; + .xl\:bottom-px { + bottom: 1px; } - .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e3a8a; + .xl\:left-px { + left: 1px; } - .xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eef2ff; + .xl\:top-0\.5 { + top: 0.125rem; } - .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #e0e7ff; + .xl\:right-0\.5 { + right: 0.125rem; } - .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #c7d2fe; + .xl\:bottom-0\.5 { + bottom: 0.125rem; + } + + .xl\:left-0\.5 { + left: 0.125rem; } - .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #a5b4fc; + .xl\:top-1\.5 { + top: 0.375rem; } - .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #818cf8; + .xl\:right-1\.5 { + right: 0.375rem; } - .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6366f1; + .xl\:bottom-1\.5 { + bottom: 0.375rem; } - .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4f46e5; + .xl\:left-1\.5 { + left: 0.375rem; } - .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #4338ca; + .xl\:top-2\.5 { + top: 0.625rem; } - .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #3730a3; + .xl\:right-2\.5 { + right: 0.625rem; } - .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #312e81; + .xl\:bottom-2\.5 { + bottom: 0.625rem; } - .xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f5f3ff; + .xl\:left-2\.5 { + left: 0.625rem; } - .xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #ede9fe; + .xl\:top-3\.5 { + top: 0.875rem; } - .xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #ddd6fe; + .xl\:right-3\.5 { + right: 0.875rem; } - .xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #c4b5fd; + .xl\:bottom-3\.5 { + bottom: 0.875rem; } - .xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #a78bfa; + .xl\:left-3\.5 { + left: 0.875rem; } - .xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #8b5cf6; + .xl\:-top-0 { + top: 0px; } - .xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #7c3aed; + .xl\:-right-0 { + right: 0px; } - .xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #6d28d9; + .xl\:-bottom-0 { + bottom: 0px; } - .xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #5b21b6; + .xl\:-left-0 { + left: 0px; } - .xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #4c1d95; + .xl\:-top-1 { + top: -0.25rem; } - .xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fdf2f8; + .xl\:-right-1 { + right: -0.25rem; } - .xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fce7f3; + .xl\:-bottom-1 { + bottom: -0.25rem; } - .xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbcfe8; + .xl\:-left-1 { + left: -0.25rem; } - .xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9a8d4; + .xl\:-top-2 { + top: -0.5rem; } - .xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f472b6; + .xl\:-right-2 { + right: -0.5rem; } - .xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ec4899; + .xl\:-bottom-2 { + bottom: -0.5rem; } - .xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #db2777; + .xl\:-left-2 { + left: -0.5rem; } - .xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #be185d; + .xl\:-top-3 { + top: -0.75rem; } - .xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #9d174d; + .xl\:-right-3 { + right: -0.75rem; } - .xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #831843; + .xl\:-bottom-3 { + bottom: -0.75rem; } - .xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .xl\:-left-3 { + left: -0.75rem; } - .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .xl\:-top-4 { + top: -1rem; } - .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .xl\:-right-4 { + right: -1rem; } - .xl\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .xl\:-bottom-4 { + bottom: -1rem; } - .xl\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .xl\:-left-4 { + left: -1rem; } - .xl\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .xl\:-top-5 { + top: -1.25rem; } - .xl\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .xl\:-right-5 { + right: -1.25rem; } - .xl\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .xl\:-bottom-5 { + bottom: -1.25rem; } - .xl\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .xl\:-left-5 { + left: -1.25rem; } - .xl\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .xl\:-top-6 { + top: -1.5rem; } - .xl\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .xl\:-right-6 { + right: -1.5rem; } - .xl\:appearance-none { - appearance: none; + .xl\:-bottom-6 { + bottom: -1.5rem; } - .xl\:bg-fixed { - background-attachment: fixed; + .xl\:-left-6 { + left: -1.5rem; } - .xl\:bg-local { - background-attachment: local; + .xl\:-top-7 { + top: -1.75rem; } - .xl\:bg-scroll { - background-attachment: scroll; + .xl\:-right-7 { + right: -1.75rem; } - .xl\:bg-clip-border { - background-clip: border-box; + .xl\:-bottom-7 { + bottom: -1.75rem; } - .xl\:bg-clip-padding { - background-clip: padding-box; + .xl\:-left-7 { + left: -1.75rem; } - .xl\:bg-clip-content { - background-clip: content-box; + .xl\:-top-8 { + top: -2rem; } - .xl\:bg-clip-text { - background-clip: text; + .xl\:-right-8 { + right: -2rem; } - .xl\:bg-transparent { - background-color: transparent; + .xl\:-bottom-8 { + bottom: -2rem; } - .xl\:bg-current { - background-color: currentColor; + .xl\:-left-8 { + left: -2rem; } - .xl\:bg-black { - background-color: #000; + .xl\:-top-9 { + top: -2.25rem; } - .xl\:bg-white { - background-color: #fff; + .xl\:-right-9 { + right: -2.25rem; } - .xl\:bg-gray-50 { - background-color: #f9fafb; + .xl\:-bottom-9 { + bottom: -2.25rem; } - .xl\:bg-gray-100 { - background-color: #f3f4f6; + .xl\:-left-9 { + left: -2.25rem; } - .xl\:bg-gray-200 { - background-color: #e5e7eb; + .xl\:-top-10 { + top: -2.5rem; } - .xl\:bg-gray-300 { - background-color: #d1d5db; + .xl\:-right-10 { + right: -2.5rem; } - .xl\:bg-gray-400 { - background-color: #9ca3af; + .xl\:-bottom-10 { + bottom: -2.5rem; } - .xl\:bg-gray-500 { - background-color: #6b7280; + .xl\:-left-10 { + left: -2.5rem; } - .xl\:bg-gray-600 { - background-color: #4b5563; + .xl\:-top-11 { + top: -2.75rem; } - .xl\:bg-gray-700 { - background-color: #374151; + .xl\:-right-11 { + right: -2.75rem; } - .xl\:bg-gray-800 { - background-color: #1f2937; + .xl\:-bottom-11 { + bottom: -2.75rem; } - .xl\:bg-gray-900 { - background-color: #111827; + .xl\:-left-11 { + left: -2.75rem; } - .xl\:bg-red-50 { - background-color: #fef2f2; + .xl\:-top-12 { + top: -3rem; } - .xl\:bg-red-100 { - background-color: #fee2e2; + .xl\:-right-12 { + right: -3rem; } - .xl\:bg-red-200 { - background-color: #fecaca; + .xl\:-bottom-12 { + bottom: -3rem; } - .xl\:bg-red-300 { - background-color: #fca5a5; + .xl\:-left-12 { + left: -3rem; } - .xl\:bg-red-400 { - background-color: #f87171; + .xl\:-top-14 { + top: -3.5rem; } - .xl\:bg-red-500 { - background-color: #ef4444; + .xl\:-right-14 { + right: -3.5rem; } - .xl\:bg-red-600 { - background-color: #dc2626; + .xl\:-bottom-14 { + bottom: -3.5rem; } - .xl\:bg-red-700 { - background-color: #b91c1c; + .xl\:-left-14 { + left: -3.5rem; } - .xl\:bg-red-800 { - background-color: #991b1b; + .xl\:-top-16 { + top: -4rem; } - .xl\:bg-red-900 { - background-color: #7f1d1d; + .xl\:-right-16 { + right: -4rem; } - .xl\:bg-yellow-50 { - background-color: #fffbeb; + .xl\:-bottom-16 { + bottom: -4rem; } - .xl\:bg-yellow-100 { - background-color: #fef3c7; + .xl\:-left-16 { + left: -4rem; } - .xl\:bg-yellow-200 { - background-color: #fde68a; + .xl\:-top-20 { + top: -5rem; } - .xl\:bg-yellow-300 { - background-color: #fcd34d; + .xl\:-right-20 { + right: -5rem; } - .xl\:bg-yellow-400 { - background-color: #fbbf24; + .xl\:-bottom-20 { + bottom: -5rem; } - .xl\:bg-yellow-500 { - background-color: #f59e0b; + .xl\:-left-20 { + left: -5rem; } - .xl\:bg-yellow-600 { - background-color: #d97706; + .xl\:-top-24 { + top: -6rem; } - .xl\:bg-yellow-700 { - background-color: #b45309; + .xl\:-right-24 { + right: -6rem; } - .xl\:bg-yellow-800 { - background-color: #92400e; + .xl\:-bottom-24 { + bottom: -6rem; } - .xl\:bg-yellow-900 { - background-color: #78350f; + .xl\:-left-24 { + left: -6rem; } - .xl\:bg-green-50 { - background-color: #ecfdf5; + .xl\:-top-28 { + top: -7rem; } - .xl\:bg-green-100 { - background-color: #d1fae5; + .xl\:-right-28 { + right: -7rem; } - .xl\:bg-green-200 { - background-color: #a7f3d0; + .xl\:-bottom-28 { + bottom: -7rem; } - .xl\:bg-green-300 { - background-color: #6ee7b7; + .xl\:-left-28 { + left: -7rem; } - .xl\:bg-green-400 { - background-color: #34d399; + .xl\:-top-32 { + top: -8rem; } - .xl\:bg-green-500 { - background-color: #10b981; + .xl\:-right-32 { + right: -8rem; } - .xl\:bg-green-600 { - background-color: #059669; + .xl\:-bottom-32 { + bottom: -8rem; } - .xl\:bg-green-700 { - background-color: #047857; + .xl\:-left-32 { + left: -8rem; } - .xl\:bg-green-800 { - background-color: #065f46; + .xl\:-top-36 { + top: -9rem; } - .xl\:bg-green-900 { - background-color: #064e3b; + .xl\:-right-36 { + right: -9rem; } - .xl\:bg-blue-50 { - background-color: #eff6ff; + .xl\:-bottom-36 { + bottom: -9rem; } - .xl\:bg-blue-100 { - background-color: #dbeafe; + .xl\:-left-36 { + left: -9rem; } - .xl\:bg-blue-200 { - background-color: #bfdbfe; + .xl\:-top-40 { + top: -10rem; } - .xl\:bg-blue-300 { - background-color: #93c5fd; + .xl\:-right-40 { + right: -10rem; } - .xl\:bg-blue-400 { - background-color: #60a5fa; + .xl\:-bottom-40 { + bottom: -10rem; } - .xl\:bg-blue-500 { - background-color: #3b82f6; + .xl\:-left-40 { + left: -10rem; } - .xl\:bg-blue-600 { - background-color: #2563eb; + .xl\:-top-44 { + top: -11rem; } - .xl\:bg-blue-700 { - background-color: #1d4ed8; + .xl\:-right-44 { + right: -11rem; } - .xl\:bg-blue-800 { - background-color: #1e40af; + .xl\:-bottom-44 { + bottom: -11rem; } - .xl\:bg-blue-900 { - background-color: #1e3a8a; + .xl\:-left-44 { + left: -11rem; } - .xl\:bg-indigo-50 { - background-color: #eef2ff; + .xl\:-top-48 { + top: -12rem; } - .xl\:bg-indigo-100 { - background-color: #e0e7ff; + .xl\:-right-48 { + right: -12rem; } - .xl\:bg-indigo-200 { - background-color: #c7d2fe; + .xl\:-bottom-48 { + bottom: -12rem; } - .xl\:bg-indigo-300 { - background-color: #a5b4fc; + .xl\:-left-48 { + left: -12rem; } - .xl\:bg-indigo-400 { - background-color: #818cf8; + .xl\:-top-52 { + top: -13rem; } - .xl\:bg-indigo-500 { - background-color: #6366f1; + .xl\:-right-52 { + right: -13rem; } - .xl\:bg-indigo-600 { - background-color: #4f46e5; + .xl\:-bottom-52 { + bottom: -13rem; } - .xl\:bg-indigo-700 { - background-color: #4338ca; + .xl\:-left-52 { + left: -13rem; } - .xl\:bg-indigo-800 { - background-color: #3730a3; + .xl\:-top-56 { + top: -14rem; } - .xl\:bg-indigo-900 { - background-color: #312e81; + .xl\:-right-56 { + right: -14rem; } - .xl\:bg-purple-50 { - background-color: #f5f3ff; + .xl\:-bottom-56 { + bottom: -14rem; } - .xl\:bg-purple-100 { - background-color: #ede9fe; + .xl\:-left-56 { + left: -14rem; } - .xl\:bg-purple-200 { - background-color: #ddd6fe; + .xl\:-top-60 { + top: -15rem; } - .xl\:bg-purple-300 { - background-color: #c4b5fd; + .xl\:-right-60 { + right: -15rem; } - .xl\:bg-purple-400 { - background-color: #a78bfa; + .xl\:-bottom-60 { + bottom: -15rem; } - .xl\:bg-purple-500 { - background-color: #8b5cf6; + .xl\:-left-60 { + left: -15rem; } - .xl\:bg-purple-600 { - background-color: #7c3aed; + .xl\:-top-64 { + top: -16rem; } - .xl\:bg-purple-700 { - background-color: #6d28d9; + .xl\:-right-64 { + right: -16rem; } - .xl\:bg-purple-800 { - background-color: #5b21b6; + .xl\:-bottom-64 { + bottom: -16rem; } - .xl\:bg-purple-900 { - background-color: #4c1d95; + .xl\:-left-64 { + left: -16rem; } - .xl\:bg-pink-50 { - background-color: #fdf2f8; + .xl\:-top-72 { + top: -18rem; } - .xl\:bg-pink-100 { - background-color: #fce7f3; + .xl\:-right-72 { + right: -18rem; } - .xl\:bg-pink-200 { - background-color: #fbcfe8; + .xl\:-bottom-72 { + bottom: -18rem; } - .xl\:bg-pink-300 { - background-color: #f9a8d4; + .xl\:-left-72 { + left: -18rem; } - .xl\:bg-pink-400 { - background-color: #f472b6; + .xl\:-top-80 { + top: -20rem; } - .xl\:bg-pink-500 { - background-color: #ec4899; + .xl\:-right-80 { + right: -20rem; } - .xl\:bg-pink-600 { - background-color: #db2777; + .xl\:-bottom-80 { + bottom: -20rem; } - .xl\:bg-pink-700 { - background-color: #be185d; + .xl\:-left-80 { + left: -20rem; } - .xl\:bg-pink-800 { - background-color: #9d174d; + .xl\:-top-96 { + top: -24rem; } - .xl\:bg-pink-900 { - background-color: #831843; + .xl\:-right-96 { + right: -24rem; } - .group:hover .xl\:group-hover\:bg-transparent { - background-color: transparent; + .xl\:-bottom-96 { + bottom: -24rem; } - .group:hover .xl\:group-hover\:bg-current { - background-color: currentColor; + .xl\:-left-96 { + left: -24rem; } - .group:hover .xl\:group-hover\:bg-black { - background-color: #000; + .xl\:-top-px { + top: -1px; } - .group:hover .xl\:group-hover\:bg-white { - background-color: #fff; + .xl\:-right-px { + right: -1px; } - .group:hover .xl\:group-hover\:bg-gray-50 { - background-color: #f9fafb; + .xl\:-bottom-px { + bottom: -1px; } - .group:hover .xl\:group-hover\:bg-gray-100 { - background-color: #f3f4f6; + .xl\:-left-px { + left: -1px; } - .group:hover .xl\:group-hover\:bg-gray-200 { - background-color: #e5e7eb; + .xl\:-top-0\.5 { + top: -0.125rem; } - .group:hover .xl\:group-hover\:bg-gray-300 { - background-color: #d1d5db; + .xl\:-right-0\.5 { + right: -0.125rem; } - .group:hover .xl\:group-hover\:bg-gray-400 { - background-color: #9ca3af; + .xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .xl\:group-hover\:bg-gray-500 { - background-color: #6b7280; + .xl\:-left-0\.5 { + left: -0.125rem; } - .group:hover .xl\:group-hover\:bg-gray-600 { - background-color: #4b5563; + .xl\:-top-1\.5 { + top: -0.375rem; } - .group:hover .xl\:group-hover\:bg-gray-700 { - background-color: #374151; + .xl\:-right-1\.5 { + right: -0.375rem; } - .group:hover .xl\:group-hover\:bg-gray-800 { - background-color: #1f2937; + .xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .xl\:group-hover\:bg-gray-900 { - background-color: #111827; + .xl\:-left-1\.5 { + left: -0.375rem; } - .group:hover .xl\:group-hover\:bg-red-50 { - background-color: #fef2f2; + .xl\:-top-2\.5 { + top: -0.625rem; } - .group:hover .xl\:group-hover\:bg-red-100 { - background-color: #fee2e2; + .xl\:-right-2\.5 { + right: -0.625rem; } - .group:hover .xl\:group-hover\:bg-red-200 { - background-color: #fecaca; + .xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .xl\:group-hover\:bg-red-300 { - background-color: #fca5a5; + .xl\:-left-2\.5 { + left: -0.625rem; } - .group:hover .xl\:group-hover\:bg-red-400 { - background-color: #f87171; + .xl\:-top-3\.5 { + top: -0.875rem; } - .group:hover .xl\:group-hover\:bg-red-500 { - background-color: #ef4444; + .xl\:-right-3\.5 { + right: -0.875rem; } - .group:hover .xl\:group-hover\:bg-red-600 { - background-color: #dc2626; + .xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .xl\:group-hover\:bg-red-700 { - background-color: #b91c1c; + .xl\:-left-3\.5 { + left: -0.875rem; } - .group:hover .xl\:group-hover\:bg-red-800 { - background-color: #991b1b; + .xl\:top-1\/2 { + top: 50%; } - .group:hover .xl\:group-hover\:bg-red-900 { - background-color: #7f1d1d; + .xl\:right-1\/2 { + right: 50%; } - .group:hover .xl\:group-hover\:bg-yellow-50 { - background-color: #fffbeb; + .xl\:bottom-1\/2 { + bottom: 50%; } - .group:hover .xl\:group-hover\:bg-yellow-100 { - background-color: #fef3c7; + .xl\:left-1\/2 { + left: 50%; } - .group:hover .xl\:group-hover\:bg-yellow-200 { - background-color: #fde68a; + .xl\:top-1\/3 { + top: 33.333333%; } - .group:hover .xl\:group-hover\:bg-yellow-300 { - background-color: #fcd34d; + .xl\:right-1\/3 { + right: 33.333333%; } - .group:hover .xl\:group-hover\:bg-yellow-400 { - background-color: #fbbf24; + .xl\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .xl\:group-hover\:bg-yellow-500 { - background-color: #f59e0b; + .xl\:left-1\/3 { + left: 33.333333%; } - .group:hover .xl\:group-hover\:bg-yellow-600 { - background-color: #d97706; + .xl\:top-2\/3 { + top: 66.666667%; } - .group:hover .xl\:group-hover\:bg-yellow-700 { - background-color: #b45309; + .xl\:right-2\/3 { + right: 66.666667%; } - .group:hover .xl\:group-hover\:bg-yellow-800 { - background-color: #92400e; + .xl\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .xl\:group-hover\:bg-yellow-900 { - background-color: #78350f; + .xl\:left-2\/3 { + left: 66.666667%; } - .group:hover .xl\:group-hover\:bg-green-50 { - background-color: #ecfdf5; + .xl\:top-1\/4 { + top: 25%; } - .group:hover .xl\:group-hover\:bg-green-100 { - background-color: #d1fae5; + .xl\:right-1\/4 { + right: 25%; } - .group:hover .xl\:group-hover\:bg-green-200 { - background-color: #a7f3d0; + .xl\:bottom-1\/4 { + bottom: 25%; } - .group:hover .xl\:group-hover\:bg-green-300 { - background-color: #6ee7b7; + .xl\:left-1\/4 { + left: 25%; } - .group:hover .xl\:group-hover\:bg-green-400 { - background-color: #34d399; + .xl\:top-2\/4 { + top: 50%; } - .group:hover .xl\:group-hover\:bg-green-500 { - background-color: #10b981; + .xl\:right-2\/4 { + right: 50%; } - .group:hover .xl\:group-hover\:bg-green-600 { - background-color: #059669; + .xl\:bottom-2\/4 { + bottom: 50%; } - .group:hover .xl\:group-hover\:bg-green-700 { - background-color: #047857; + .xl\:left-2\/4 { + left: 50%; } - .group:hover .xl\:group-hover\:bg-green-800 { - background-color: #065f46; + .xl\:top-3\/4 { + top: 75%; } - .group:hover .xl\:group-hover\:bg-green-900 { - background-color: #064e3b; + .xl\:right-3\/4 { + right: 75%; } - .group:hover .xl\:group-hover\:bg-blue-50 { - background-color: #eff6ff; + .xl\:bottom-3\/4 { + bottom: 75%; } - .group:hover .xl\:group-hover\:bg-blue-100 { - background-color: #dbeafe; + .xl\:left-3\/4 { + left: 75%; } - .group:hover .xl\:group-hover\:bg-blue-200 { - background-color: #bfdbfe; + .xl\:top-full { + top: 100%; } - .group:hover .xl\:group-hover\:bg-blue-300 { - background-color: #93c5fd; + .xl\:right-full { + right: 100%; } - .group:hover .xl\:group-hover\:bg-blue-400 { - background-color: #60a5fa; + .xl\:bottom-full { + bottom: 100%; } - .group:hover .xl\:group-hover\:bg-blue-500 { - background-color: #3b82f6; + .xl\:left-full { + left: 100%; } - .group:hover .xl\:group-hover\:bg-blue-600 { - background-color: #2563eb; + .xl\:-top-1\/2 { + top: -50%; } - .group:hover .xl\:group-hover\:bg-blue-700 { - background-color: #1d4ed8; + .xl\:-right-1\/2 { + right: -50%; } - .group:hover .xl\:group-hover\:bg-blue-800 { - background-color: #1e40af; + .xl\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .xl\:group-hover\:bg-blue-900 { - background-color: #1e3a8a; + .xl\:-left-1\/2 { + left: -50%; } - .group:hover .xl\:group-hover\:bg-indigo-50 { - background-color: #eef2ff; + .xl\:-top-1\/3 { + top: -33.333333%; } - .group:hover .xl\:group-hover\:bg-indigo-100 { - background-color: #e0e7ff; + .xl\:-right-1\/3 { + right: -33.333333%; } - .group:hover .xl\:group-hover\:bg-indigo-200 { - background-color: #c7d2fe; + .xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .xl\:group-hover\:bg-indigo-300 { - background-color: #a5b4fc; + .xl\:-left-1\/3 { + left: -33.333333%; } - .group:hover .xl\:group-hover\:bg-indigo-400 { - background-color: #818cf8; + .xl\:-top-2\/3 { + top: -66.666667%; } - .group:hover .xl\:group-hover\:bg-indigo-500 { - background-color: #6366f1; + .xl\:-right-2\/3 { + right: -66.666667%; } - .group:hover .xl\:group-hover\:bg-indigo-600 { - background-color: #4f46e5; + .xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .xl\:group-hover\:bg-indigo-700 { - background-color: #4338ca; + .xl\:-left-2\/3 { + left: -66.666667%; } - .group:hover .xl\:group-hover\:bg-indigo-800 { - background-color: #3730a3; + .xl\:-top-1\/4 { + top: -25%; } - .group:hover .xl\:group-hover\:bg-indigo-900 { - background-color: #312e81; + .xl\:-right-1\/4 { + right: -25%; } - .group:hover .xl\:group-hover\:bg-purple-50 { - background-color: #f5f3ff; + .xl\:-bottom-1\/4 { + bottom: -25%; } - .group:hover .xl\:group-hover\:bg-purple-100 { - background-color: #ede9fe; + .xl\:-left-1\/4 { + left: -25%; } - .group:hover .xl\:group-hover\:bg-purple-200 { - background-color: #ddd6fe; + .xl\:-top-2\/4 { + top: -50%; } - .group:hover .xl\:group-hover\:bg-purple-300 { - background-color: #c4b5fd; + .xl\:-right-2\/4 { + right: -50%; } - .group:hover .xl\:group-hover\:bg-purple-400 { - background-color: #a78bfa; + .xl\:-bottom-2\/4 { + bottom: -50%; } - .group:hover .xl\:group-hover\:bg-purple-500 { - background-color: #8b5cf6; + .xl\:-left-2\/4 { + left: -50%; } - .group:hover .xl\:group-hover\:bg-purple-600 { - background-color: #7c3aed; + .xl\:-top-3\/4 { + top: -75%; } - .group:hover .xl\:group-hover\:bg-purple-700 { - background-color: #6d28d9; + .xl\:-right-3\/4 { + right: -75%; } - .group:hover .xl\:group-hover\:bg-purple-800 { - background-color: #5b21b6; + .xl\:-bottom-3\/4 { + bottom: -75%; } - .group:hover .xl\:group-hover\:bg-purple-900 { - background-color: #4c1d95; + .xl\:-left-3\/4 { + left: -75%; } - .group:hover .xl\:group-hover\:bg-pink-50 { - background-color: #fdf2f8; + .xl\:-top-full { + top: -100%; } - .group:hover .xl\:group-hover\:bg-pink-100 { - background-color: #fce7f3; + .xl\:-right-full { + right: -100%; } - .group:hover .xl\:group-hover\:bg-pink-200 { - background-color: #fbcfe8; + .xl\:-bottom-full { + bottom: -100%; } - .group:hover .xl\:group-hover\:bg-pink-300 { - background-color: #f9a8d4; + .xl\:-left-full { + left: -100%; } - .group:hover .xl\:group-hover\:bg-pink-400 { - background-color: #f472b6; + .xl\:isolate { + isolation: isolate; } - .group:hover .xl\:group-hover\:bg-pink-500 { - background-color: #ec4899; + .xl\:isolation-auto { + isolation: auto; } - .group:hover .xl\:group-hover\:bg-pink-600 { - background-color: #db2777; + .xl\:z-0 { + z-index: 0; } - .group:hover .xl\:group-hover\:bg-pink-700 { - background-color: #be185d; + .xl\:z-10 { + z-index: 10; } - .group:hover .xl\:group-hover\:bg-pink-800 { - background-color: #9d174d; + .xl\:z-20 { + z-index: 20; } - .group:hover .xl\:group-hover\:bg-pink-900 { - background-color: #831843; + .xl\:z-30 { + z-index: 30; } - .xl\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .xl\:z-40 { + z-index: 40; } - .xl\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .xl\:z-50 { + z-index: 50; } - .xl\:focus-within\:bg-black:focus-within { - background-color: #000; + .xl\:z-auto { + z-index: auto; } - .xl\:focus-within\:bg-white:focus-within { - background-color: #fff; + .xl\:focus-within\:z-0:focus-within { + z-index: 0; } - .xl\:focus-within\:bg-gray-50:focus-within { - background-color: #f9fafb; + .xl\:focus-within\:z-10:focus-within { + z-index: 10; } - .xl\:focus-within\:bg-gray-100:focus-within { - background-color: #f3f4f6; + .xl\:focus-within\:z-20:focus-within { + z-index: 20; } - .xl\:focus-within\:bg-gray-200:focus-within { - background-color: #e5e7eb; + .xl\:focus-within\:z-30:focus-within { + z-index: 30; } - .xl\:focus-within\:bg-gray-300:focus-within { - background-color: #d1d5db; + .xl\:focus-within\:z-40:focus-within { + z-index: 40; } - .xl\:focus-within\:bg-gray-400:focus-within { - background-color: #9ca3af; + .xl\:focus-within\:z-50:focus-within { + z-index: 50; } - .xl\:focus-within\:bg-gray-500:focus-within { - background-color: #6b7280; + .xl\:focus-within\:z-auto:focus-within { + z-index: auto; } - .xl\:focus-within\:bg-gray-600:focus-within { - background-color: #4b5563; + .xl\:focus\:z-0:focus { + z-index: 0; } - .xl\:focus-within\:bg-gray-700:focus-within { - background-color: #374151; + .xl\:focus\:z-10:focus { + z-index: 10; } - .xl\:focus-within\:bg-gray-800:focus-within { - background-color: #1f2937; + .xl\:focus\:z-20:focus { + z-index: 20; } - .xl\:focus-within\:bg-gray-900:focus-within { - background-color: #111827; + .xl\:focus\:z-30:focus { + z-index: 30; } - .xl\:focus-within\:bg-red-50:focus-within { - background-color: #fef2f2; + .xl\:focus\:z-40:focus { + z-index: 40; } - .xl\:focus-within\:bg-red-100:focus-within { - background-color: #fee2e2; + .xl\:focus\:z-50:focus { + z-index: 50; } - .xl\:focus-within\:bg-red-200:focus-within { - background-color: #fecaca; + .xl\:focus\:z-auto:focus { + z-index: auto; } - .xl\:focus-within\:bg-red-300:focus-within { - background-color: #fca5a5; + .xl\:order-1 { + order: 1; } - .xl\:focus-within\:bg-red-400:focus-within { - background-color: #f87171; + .xl\:order-2 { + order: 2; } - .xl\:focus-within\:bg-red-500:focus-within { - background-color: #ef4444; + .xl\:order-3 { + order: 3; } - .xl\:focus-within\:bg-red-600:focus-within { - background-color: #dc2626; + .xl\:order-4 { + order: 4; } - .xl\:focus-within\:bg-red-700:focus-within { - background-color: #b91c1c; + .xl\:order-5 { + order: 5; } - .xl\:focus-within\:bg-red-800:focus-within { - background-color: #991b1b; + .xl\:order-6 { + order: 6; } - .xl\:focus-within\:bg-red-900:focus-within { - background-color: #7f1d1d; + .xl\:order-7 { + order: 7; } - .xl\:focus-within\:bg-yellow-50:focus-within { - background-color: #fffbeb; + .xl\:order-8 { + order: 8; } - .xl\:focus-within\:bg-yellow-100:focus-within { - background-color: #fef3c7; + .xl\:order-9 { + order: 9; } - .xl\:focus-within\:bg-yellow-200:focus-within { - background-color: #fde68a; + .xl\:order-10 { + order: 10; } - .xl\:focus-within\:bg-yellow-300:focus-within { - background-color: #fcd34d; + .xl\:order-11 { + order: 11; } - .xl\:focus-within\:bg-yellow-400:focus-within { - background-color: #fbbf24; + .xl\:order-12 { + order: 12; } - .xl\:focus-within\:bg-yellow-500:focus-within { - background-color: #f59e0b; + .xl\:order-first { + order: -9999; } - .xl\:focus-within\:bg-yellow-600:focus-within { - background-color: #d97706; + .xl\:order-last { + order: 9999; } - .xl\:focus-within\:bg-yellow-700:focus-within { - background-color: #b45309; + .xl\:order-none { + order: 0; } - .xl\:focus-within\:bg-yellow-800:focus-within { - background-color: #92400e; + .xl\:col-auto { + grid-column: auto; } - .xl\:focus-within\:bg-yellow-900:focus-within { - background-color: #78350f; + .xl\:col-span-1 { + grid-column: span 1 / span 1; } - .xl\:focus-within\:bg-green-50:focus-within { - background-color: #ecfdf5; + .xl\:col-span-2 { + grid-column: span 2 / span 2; } - .xl\:focus-within\:bg-green-100:focus-within { - background-color: #d1fae5; + .xl\:col-span-3 { + grid-column: span 3 / span 3; } - .xl\:focus-within\:bg-green-200:focus-within { - background-color: #a7f3d0; + .xl\:col-span-4 { + grid-column: span 4 / span 4; } - .xl\:focus-within\:bg-green-300:focus-within { - background-color: #6ee7b7; + .xl\:col-span-5 { + grid-column: span 5 / span 5; } - .xl\:focus-within\:bg-green-400:focus-within { - background-color: #34d399; + .xl\:col-span-6 { + grid-column: span 6 / span 6; } - .xl\:focus-within\:bg-green-500:focus-within { - background-color: #10b981; + .xl\:col-span-7 { + grid-column: span 7 / span 7; } - .xl\:focus-within\:bg-green-600:focus-within { - background-color: #059669; + .xl\:col-span-8 { + grid-column: span 8 / span 8; } - .xl\:focus-within\:bg-green-700:focus-within { - background-color: #047857; + .xl\:col-span-9 { + grid-column: span 9 / span 9; } - .xl\:focus-within\:bg-green-800:focus-within { - background-color: #065f46; + .xl\:col-span-10 { + grid-column: span 10 / span 10; } - .xl\:focus-within\:bg-green-900:focus-within { - background-color: #064e3b; + .xl\:col-span-11 { + grid-column: span 11 / span 11; } - .xl\:focus-within\:bg-blue-50:focus-within { - background-color: #eff6ff; + .xl\:col-span-12 { + grid-column: span 12 / span 12; } - .xl\:focus-within\:bg-blue-100:focus-within { - background-color: #dbeafe; + .xl\:col-span-full { + grid-column: 1 / -1; } - .xl\:focus-within\:bg-blue-200:focus-within { - background-color: #bfdbfe; + .xl\:col-start-1 { + grid-column-start: 1; } - .xl\:focus-within\:bg-blue-300:focus-within { - background-color: #93c5fd; + .xl\:col-start-2 { + grid-column-start: 2; } - .xl\:focus-within\:bg-blue-400:focus-within { - background-color: #60a5fa; + .xl\:col-start-3 { + grid-column-start: 3; } - .xl\:focus-within\:bg-blue-500:focus-within { - background-color: #3b82f6; + .xl\:col-start-4 { + grid-column-start: 4; } - .xl\:focus-within\:bg-blue-600:focus-within { - background-color: #2563eb; + .xl\:col-start-5 { + grid-column-start: 5; } - .xl\:focus-within\:bg-blue-700:focus-within { - background-color: #1d4ed8; + .xl\:col-start-6 { + grid-column-start: 6; } - .xl\:focus-within\:bg-blue-800:focus-within { - background-color: #1e40af; + .xl\:col-start-7 { + grid-column-start: 7; } - .xl\:focus-within\:bg-blue-900:focus-within { - background-color: #1e3a8a; + .xl\:col-start-8 { + grid-column-start: 8; } - .xl\:focus-within\:bg-indigo-50:focus-within { - background-color: #eef2ff; + .xl\:col-start-9 { + grid-column-start: 9; } - .xl\:focus-within\:bg-indigo-100:focus-within { - background-color: #e0e7ff; + .xl\:col-start-10 { + grid-column-start: 10; } - .xl\:focus-within\:bg-indigo-200:focus-within { - background-color: #c7d2fe; + .xl\:col-start-11 { + grid-column-start: 11; } - .xl\:focus-within\:bg-indigo-300:focus-within { - background-color: #a5b4fc; + .xl\:col-start-12 { + grid-column-start: 12; } - .xl\:focus-within\:bg-indigo-400:focus-within { - background-color: #818cf8; + .xl\:col-start-13 { + grid-column-start: 13; } - .xl\:focus-within\:bg-indigo-500:focus-within { - background-color: #6366f1; + .xl\:col-start-auto { + grid-column-start: auto; } - .xl\:focus-within\:bg-indigo-600:focus-within { - background-color: #4f46e5; + .xl\:col-end-1 { + grid-column-end: 1; } - .xl\:focus-within\:bg-indigo-700:focus-within { - background-color: #4338ca; + .xl\:col-end-2 { + grid-column-end: 2; } - .xl\:focus-within\:bg-indigo-800:focus-within { - background-color: #3730a3; + .xl\:col-end-3 { + grid-column-end: 3; } - .xl\:focus-within\:bg-indigo-900:focus-within { - background-color: #312e81; + .xl\:col-end-4 { + grid-column-end: 4; } - .xl\:focus-within\:bg-purple-50:focus-within { - background-color: #f5f3ff; + .xl\:col-end-5 { + grid-column-end: 5; } - .xl\:focus-within\:bg-purple-100:focus-within { - background-color: #ede9fe; + .xl\:col-end-6 { + grid-column-end: 6; } - .xl\:focus-within\:bg-purple-200:focus-within { - background-color: #ddd6fe; + .xl\:col-end-7 { + grid-column-end: 7; } - .xl\:focus-within\:bg-purple-300:focus-within { - background-color: #c4b5fd; + .xl\:col-end-8 { + grid-column-end: 8; } - .xl\:focus-within\:bg-purple-400:focus-within { - background-color: #a78bfa; + .xl\:col-end-9 { + grid-column-end: 9; } - .xl\:focus-within\:bg-purple-500:focus-within { - background-color: #8b5cf6; + .xl\:col-end-10 { + grid-column-end: 10; } - .xl\:focus-within\:bg-purple-600:focus-within { - background-color: #7c3aed; + .xl\:col-end-11 { + grid-column-end: 11; } - .xl\:focus-within\:bg-purple-700:focus-within { - background-color: #6d28d9; + .xl\:col-end-12 { + grid-column-end: 12; } - .xl\:focus-within\:bg-purple-800:focus-within { - background-color: #5b21b6; + .xl\:col-end-13 { + grid-column-end: 13; } - .xl\:focus-within\:bg-purple-900:focus-within { - background-color: #4c1d95; + .xl\:col-end-auto { + grid-column-end: auto; } - .xl\:focus-within\:bg-pink-50:focus-within { - background-color: #fdf2f8; + .xl\:row-auto { + grid-row: auto; } - .xl\:focus-within\:bg-pink-100:focus-within { - background-color: #fce7f3; + .xl\:row-span-1 { + grid-row: span 1 / span 1; } - .xl\:focus-within\:bg-pink-200:focus-within { - background-color: #fbcfe8; + .xl\:row-span-2 { + grid-row: span 2 / span 2; } - .xl\:focus-within\:bg-pink-300:focus-within { - background-color: #f9a8d4; + .xl\:row-span-3 { + grid-row: span 3 / span 3; } - .xl\:focus-within\:bg-pink-400:focus-within { - background-color: #f472b6; + .xl\:row-span-4 { + grid-row: span 4 / span 4; } - .xl\:focus-within\:bg-pink-500:focus-within { - background-color: #ec4899; + .xl\:row-span-5 { + grid-row: span 5 / span 5; } - .xl\:focus-within\:bg-pink-600:focus-within { - background-color: #db2777; + .xl\:row-span-6 { + grid-row: span 6 / span 6; } - .xl\:focus-within\:bg-pink-700:focus-within { - background-color: #be185d; + .xl\:row-span-full { + grid-row: 1 / -1; } - .xl\:focus-within\:bg-pink-800:focus-within { - background-color: #9d174d; + .xl\:row-start-1 { + grid-row-start: 1; } - .xl\:focus-within\:bg-pink-900:focus-within { - background-color: #831843; + .xl\:row-start-2 { + grid-row-start: 2; } - .xl\:hover\:bg-transparent:hover { - background-color: transparent; + .xl\:row-start-3 { + grid-row-start: 3; } - .xl\:hover\:bg-current:hover { - background-color: currentColor; + .xl\:row-start-4 { + grid-row-start: 4; } - .xl\:hover\:bg-black:hover { - background-color: #000; + .xl\:row-start-5 { + grid-row-start: 5; } - .xl\:hover\:bg-white:hover { - background-color: #fff; + .xl\:row-start-6 { + grid-row-start: 6; } - .xl\:hover\:bg-gray-50:hover { - background-color: #f9fafb; + .xl\:row-start-7 { + grid-row-start: 7; } - .xl\:hover\:bg-gray-100:hover { - background-color: #f3f4f6; + .xl\:row-start-auto { + grid-row-start: auto; } - .xl\:hover\:bg-gray-200:hover { - background-color: #e5e7eb; + .xl\:row-end-1 { + grid-row-end: 1; } - .xl\:hover\:bg-gray-300:hover { - background-color: #d1d5db; + .xl\:row-end-2 { + grid-row-end: 2; } - .xl\:hover\:bg-gray-400:hover { - background-color: #9ca3af; + .xl\:row-end-3 { + grid-row-end: 3; } - .xl\:hover\:bg-gray-500:hover { - background-color: #6b7280; + .xl\:row-end-4 { + grid-row-end: 4; } - .xl\:hover\:bg-gray-600:hover { - background-color: #4b5563; + .xl\:row-end-5 { + grid-row-end: 5; } - .xl\:hover\:bg-gray-700:hover { - background-color: #374151; + .xl\:row-end-6 { + grid-row-end: 6; } - .xl\:hover\:bg-gray-800:hover { - background-color: #1f2937; + .xl\:row-end-7 { + grid-row-end: 7; } - .xl\:hover\:bg-gray-900:hover { - background-color: #111827; + .xl\:row-end-auto { + grid-row-end: auto; } - .xl\:hover\:bg-red-50:hover { - background-color: #fef2f2; + .xl\:float-right { + float: right; } - .xl\:hover\:bg-red-100:hover { - background-color: #fee2e2; + .xl\:float-left { + float: left; } - .xl\:hover\:bg-red-200:hover { - background-color: #fecaca; + .xl\:float-none { + float: none; } - .xl\:hover\:bg-red-300:hover { - background-color: #fca5a5; + .xl\:clear-left { + clear: left; } - .xl\:hover\:bg-red-400:hover { - background-color: #f87171; + .xl\:clear-right { + clear: right; } - .xl\:hover\:bg-red-500:hover { - background-color: #ef4444; + .xl\:clear-both { + clear: both; } - .xl\:hover\:bg-red-600:hover { - background-color: #dc2626; + .xl\:clear-none { + clear: none; } - .xl\:hover\:bg-red-700:hover { - background-color: #b91c1c; + .xl\:m-0 { + margin: 0px; } - .xl\:hover\:bg-red-800:hover { - background-color: #991b1b; + .xl\:m-1 { + margin: 0.25rem; } - .xl\:hover\:bg-red-900:hover { - background-color: #7f1d1d; + .xl\:m-2 { + margin: 0.5rem; } - .xl\:hover\:bg-yellow-50:hover { - background-color: #fffbeb; + .xl\:m-3 { + margin: 0.75rem; } - .xl\:hover\:bg-yellow-100:hover { - background-color: #fef3c7; + .xl\:m-4 { + margin: 1rem; } - .xl\:hover\:bg-yellow-200:hover { - background-color: #fde68a; + .xl\:m-5 { + margin: 1.25rem; } - .xl\:hover\:bg-yellow-300:hover { - background-color: #fcd34d; + .xl\:m-6 { + margin: 1.5rem; } - .xl\:hover\:bg-yellow-400:hover { - background-color: #fbbf24; + .xl\:m-7 { + margin: 1.75rem; } - .xl\:hover\:bg-yellow-500:hover { - background-color: #f59e0b; + .xl\:m-8 { + margin: 2rem; } - .xl\:hover\:bg-yellow-600:hover { - background-color: #d97706; + .xl\:m-9 { + margin: 2.25rem; } - .xl\:hover\:bg-yellow-700:hover { - background-color: #b45309; + .xl\:m-10 { + margin: 2.5rem; } - .xl\:hover\:bg-yellow-800:hover { - background-color: #92400e; + .xl\:m-11 { + margin: 2.75rem; } - .xl\:hover\:bg-yellow-900:hover { - background-color: #78350f; + .xl\:m-12 { + margin: 3rem; } - .xl\:hover\:bg-green-50:hover { - background-color: #ecfdf5; + .xl\:m-14 { + margin: 3.5rem; } - .xl\:hover\:bg-green-100:hover { - background-color: #d1fae5; + .xl\:m-16 { + margin: 4rem; } - .xl\:hover\:bg-green-200:hover { - background-color: #a7f3d0; + .xl\:m-20 { + margin: 5rem; } - .xl\:hover\:bg-green-300:hover { - background-color: #6ee7b7; + .xl\:m-24 { + margin: 6rem; } - .xl\:hover\:bg-green-400:hover { - background-color: #34d399; + .xl\:m-28 { + margin: 7rem; } - .xl\:hover\:bg-green-500:hover { - background-color: #10b981; + .xl\:m-32 { + margin: 8rem; } - .xl\:hover\:bg-green-600:hover { - background-color: #059669; + .xl\:m-36 { + margin: 9rem; } - .xl\:hover\:bg-green-700:hover { - background-color: #047857; + .xl\:m-40 { + margin: 10rem; } - .xl\:hover\:bg-green-800:hover { - background-color: #065f46; + .xl\:m-44 { + margin: 11rem; } - .xl\:hover\:bg-green-900:hover { - background-color: #064e3b; + .xl\:m-48 { + margin: 12rem; } - .xl\:hover\:bg-blue-50:hover { - background-color: #eff6ff; + .xl\:m-52 { + margin: 13rem; } - .xl\:hover\:bg-blue-100:hover { - background-color: #dbeafe; + .xl\:m-56 { + margin: 14rem; } - .xl\:hover\:bg-blue-200:hover { - background-color: #bfdbfe; + .xl\:m-60 { + margin: 15rem; } - .xl\:hover\:bg-blue-300:hover { - background-color: #93c5fd; + .xl\:m-64 { + margin: 16rem; } - .xl\:hover\:bg-blue-400:hover { - background-color: #60a5fa; + .xl\:m-72 { + margin: 18rem; } - .xl\:hover\:bg-blue-500:hover { - background-color: #3b82f6; + .xl\:m-80 { + margin: 20rem; } - .xl\:hover\:bg-blue-600:hover { - background-color: #2563eb; + .xl\:m-96 { + margin: 24rem; } - .xl\:hover\:bg-blue-700:hover { - background-color: #1d4ed8; + .xl\:m-auto { + margin: auto; } - .xl\:hover\:bg-blue-800:hover { - background-color: #1e40af; + .xl\:m-px { + margin: 1px; } - .xl\:hover\:bg-blue-900:hover { - background-color: #1e3a8a; + .xl\:m-0\.5 { + margin: 0.125rem; } - .xl\:hover\:bg-indigo-50:hover { - background-color: #eef2ff; + .xl\:m-1\.5 { + margin: 0.375rem; } - .xl\:hover\:bg-indigo-100:hover { - background-color: #e0e7ff; + .xl\:m-2\.5 { + margin: 0.625rem; } - .xl\:hover\:bg-indigo-200:hover { - background-color: #c7d2fe; + .xl\:m-3\.5 { + margin: 0.875rem; } - .xl\:hover\:bg-indigo-300:hover { - background-color: #a5b4fc; + .xl\:-m-0 { + margin: 0px; } - .xl\:hover\:bg-indigo-400:hover { - background-color: #818cf8; + .xl\:-m-1 { + margin: -0.25rem; } - .xl\:hover\:bg-indigo-500:hover { - background-color: #6366f1; + .xl\:-m-2 { + margin: -0.5rem; } - .xl\:hover\:bg-indigo-600:hover { - background-color: #4f46e5; + .xl\:-m-3 { + margin: -0.75rem; } - .xl\:hover\:bg-indigo-700:hover { - background-color: #4338ca; + .xl\:-m-4 { + margin: -1rem; } - .xl\:hover\:bg-indigo-800:hover { - background-color: #3730a3; + .xl\:-m-5 { + margin: -1.25rem; } - .xl\:hover\:bg-indigo-900:hover { - background-color: #312e81; + .xl\:-m-6 { + margin: -1.5rem; } - .xl\:hover\:bg-purple-50:hover { - background-color: #f5f3ff; + .xl\:-m-7 { + margin: -1.75rem; } - .xl\:hover\:bg-purple-100:hover { - background-color: #ede9fe; + .xl\:-m-8 { + margin: -2rem; } - .xl\:hover\:bg-purple-200:hover { - background-color: #ddd6fe; + .xl\:-m-9 { + margin: -2.25rem; } - .xl\:hover\:bg-purple-300:hover { - background-color: #c4b5fd; + .xl\:-m-10 { + margin: -2.5rem; } - .xl\:hover\:bg-purple-400:hover { - background-color: #a78bfa; + .xl\:-m-11 { + margin: -2.75rem; } - .xl\:hover\:bg-purple-500:hover { - background-color: #8b5cf6; + .xl\:-m-12 { + margin: -3rem; } - .xl\:hover\:bg-purple-600:hover { - background-color: #7c3aed; + .xl\:-m-14 { + margin: -3.5rem; } - .xl\:hover\:bg-purple-700:hover { - background-color: #6d28d9; + .xl\:-m-16 { + margin: -4rem; } - .xl\:hover\:bg-purple-800:hover { - background-color: #5b21b6; + .xl\:-m-20 { + margin: -5rem; } - .xl\:hover\:bg-purple-900:hover { - background-color: #4c1d95; + .xl\:-m-24 { + margin: -6rem; } - .xl\:hover\:bg-pink-50:hover { - background-color: #fdf2f8; + .xl\:-m-28 { + margin: -7rem; } - .xl\:hover\:bg-pink-100:hover { - background-color: #fce7f3; + .xl\:-m-32 { + margin: -8rem; } - .xl\:hover\:bg-pink-200:hover { - background-color: #fbcfe8; + .xl\:-m-36 { + margin: -9rem; } - .xl\:hover\:bg-pink-300:hover { - background-color: #f9a8d4; + .xl\:-m-40 { + margin: -10rem; } - .xl\:hover\:bg-pink-400:hover { - background-color: #f472b6; + .xl\:-m-44 { + margin: -11rem; } - .xl\:hover\:bg-pink-500:hover { - background-color: #ec4899; + .xl\:-m-48 { + margin: -12rem; } - .xl\:hover\:bg-pink-600:hover { - background-color: #db2777; + .xl\:-m-52 { + margin: -13rem; } - .xl\:hover\:bg-pink-700:hover { - background-color: #be185d; + .xl\:-m-56 { + margin: -14rem; } - .xl\:hover\:bg-pink-800:hover { - background-color: #9d174d; + .xl\:-m-60 { + margin: -15rem; } - .xl\:hover\:bg-pink-900:hover { - background-color: #831843; + .xl\:-m-64 { + margin: -16rem; } - .xl\:focus\:bg-transparent:focus { - background-color: transparent; + .xl\:-m-72 { + margin: -18rem; } - .xl\:focus\:bg-current:focus { - background-color: currentColor; + .xl\:-m-80 { + margin: -20rem; } - .xl\:focus\:bg-black:focus { - background-color: #000; + .xl\:-m-96 { + margin: -24rem; } - .xl\:focus\:bg-white:focus { - background-color: #fff; + .xl\:-m-px { + margin: -1px; } - .xl\:focus\:bg-gray-50:focus { - background-color: #f9fafb; + .xl\:-m-0\.5 { + margin: -0.125rem; } - .xl\:focus\:bg-gray-100:focus { - background-color: #f3f4f6; + .xl\:-m-1\.5 { + margin: -0.375rem; } - .xl\:focus\:bg-gray-200:focus { - background-color: #e5e7eb; + .xl\:-m-2\.5 { + margin: -0.625rem; } - .xl\:focus\:bg-gray-300:focus { - background-color: #d1d5db; + .xl\:-m-3\.5 { + margin: -0.875rem; } - .xl\:focus\:bg-gray-400:focus { - background-color: #9ca3af; + .xl\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .xl\:focus\:bg-gray-500:focus { - background-color: #6b7280; + .xl\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .xl\:focus\:bg-gray-600:focus { - background-color: #4b5563; + .xl\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .xl\:focus\:bg-gray-700:focus { - background-color: #374151; + .xl\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .xl\:focus\:bg-gray-800:focus { - background-color: #1f2937; + .xl\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .xl\:focus\:bg-gray-900:focus { - background-color: #111827; + .xl\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .xl\:focus\:bg-red-50:focus { - background-color: #fef2f2; + .xl\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .xl\:focus\:bg-red-100:focus { - background-color: #fee2e2; + .xl\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .xl\:focus\:bg-red-200:focus { - background-color: #fecaca; + .xl\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .xl\:focus\:bg-red-300:focus { - background-color: #fca5a5; + .xl\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .xl\:focus\:bg-red-400:focus { - background-color: #f87171; + .xl\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .xl\:focus\:bg-red-500:focus { - background-color: #ef4444; + .xl\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .xl\:focus\:bg-red-600:focus { - background-color: #dc2626; + .xl\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .xl\:focus\:bg-red-700:focus { - background-color: #b91c1c; + .xl\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .xl\:focus\:bg-red-800:focus { - background-color: #991b1b; + .xl\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .xl\:focus\:bg-red-900:focus { - background-color: #7f1d1d; + .xl\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .xl\:focus\:bg-yellow-50:focus { - background-color: #fffbeb; + .xl\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .xl\:focus\:bg-yellow-100:focus { - background-color: #fef3c7; + .xl\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .xl\:focus\:bg-yellow-200:focus { - background-color: #fde68a; + .xl\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .xl\:focus\:bg-yellow-300:focus { - background-color: #fcd34d; + .xl\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .xl\:focus\:bg-yellow-400:focus { - background-color: #fbbf24; + .xl\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .xl\:focus\:bg-yellow-500:focus { - background-color: #f59e0b; + .xl\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .xl\:focus\:bg-yellow-600:focus { - background-color: #d97706; + .xl\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .xl\:focus\:bg-yellow-700:focus { - background-color: #b45309; + .xl\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .xl\:focus\:bg-yellow-800:focus { - background-color: #92400e; + .xl\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .xl\:focus\:bg-yellow-900:focus { - background-color: #78350f; + .xl\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .xl\:focus\:bg-green-50:focus { - background-color: #ecfdf5; + .xl\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .xl\:focus\:bg-green-100:focus { - background-color: #d1fae5; + .xl\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .xl\:focus\:bg-green-200:focus { - background-color: #a7f3d0; + .xl\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .xl\:focus\:bg-green-300:focus { - background-color: #6ee7b7; + .xl\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .xl\:focus\:bg-green-400:focus { - background-color: #34d399; + .xl\:mx-auto { + margin-left: auto; + margin-right: auto; } - .xl\:focus\:bg-green-500:focus { - background-color: #10b981; + .xl\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .xl\:focus\:bg-green-600:focus { - background-color: #059669; + .xl\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .xl\:focus\:bg-green-700:focus { - background-color: #047857; + .xl\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .xl\:focus\:bg-green-800:focus { - background-color: #065f46; + .xl\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .xl\:focus\:bg-green-900:focus { - background-color: #064e3b; + .xl\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .xl\:focus\:bg-blue-50:focus { - background-color: #eff6ff; + .xl\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .xl\:focus\:bg-blue-100:focus { - background-color: #dbeafe; + .xl\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .xl\:focus\:bg-blue-200:focus { - background-color: #bfdbfe; + .xl\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .xl\:focus\:bg-blue-300:focus { - background-color: #93c5fd; + .xl\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .xl\:focus\:bg-blue-400:focus { - background-color: #60a5fa; + .xl\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .xl\:focus\:bg-blue-500:focus { - background-color: #3b82f6; + .xl\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .xl\:focus\:bg-blue-600:focus { - background-color: #2563eb; + .xl\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .xl\:focus\:bg-blue-700:focus { - background-color: #1d4ed8; + .xl\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .xl\:focus\:bg-blue-800:focus { - background-color: #1e40af; + .xl\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .xl\:focus\:bg-blue-900:focus { - background-color: #1e3a8a; + .xl\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .xl\:focus\:bg-indigo-50:focus { - background-color: #eef2ff; + .xl\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .xl\:focus\:bg-indigo-100:focus { - background-color: #e0e7ff; + .xl\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .xl\:focus\:bg-indigo-200:focus { - background-color: #c7d2fe; + .xl\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .xl\:focus\:bg-indigo-300:focus { - background-color: #a5b4fc; + .xl\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .xl\:focus\:bg-indigo-400:focus { - background-color: #818cf8; + .xl\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .xl\:focus\:bg-indigo-500:focus { - background-color: #6366f1; + .xl\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .xl\:focus\:bg-indigo-600:focus { - background-color: #4f46e5; + .xl\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .xl\:focus\:bg-indigo-700:focus { - background-color: #4338ca; + .xl\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .xl\:focus\:bg-indigo-800:focus { - background-color: #3730a3; + .xl\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .xl\:focus\:bg-indigo-900:focus { - background-color: #312e81; + .xl\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .xl\:focus\:bg-purple-50:focus { - background-color: #f5f3ff; + .xl\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .xl\:focus\:bg-purple-100:focus { - background-color: #ede9fe; + .xl\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .xl\:focus\:bg-purple-200:focus { - background-color: #ddd6fe; + .xl\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .xl\:focus\:bg-purple-300:focus { - background-color: #c4b5fd; + .xl\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .xl\:focus\:bg-purple-400:focus { - background-color: #a78bfa; + .xl\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .xl\:focus\:bg-purple-500:focus { - background-color: #8b5cf6; + .xl\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .xl\:focus\:bg-purple-600:focus { - background-color: #7c3aed; + .xl\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .xl\:focus\:bg-purple-700:focus { - background-color: #6d28d9; + .xl\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .xl\:focus\:bg-purple-800:focus { - background-color: #5b21b6; + .xl\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .xl\:focus\:bg-purple-900:focus { - background-color: #4c1d95; + .xl\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .xl\:focus\:bg-pink-50:focus { - background-color: #fdf2f8; + .xl\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .xl\:focus\:bg-pink-100:focus { - background-color: #fce7f3; + .xl\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .xl\:focus\:bg-pink-200:focus { - background-color: #fbcfe8; + .xl\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .xl\:focus\:bg-pink-300:focus { - background-color: #f9a8d4; + .xl\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .xl\:focus\:bg-pink-400:focus { - background-color: #f472b6; + .xl\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .xl\:focus\:bg-pink-500:focus { - background-color: #ec4899; + .xl\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .xl\:focus\:bg-pink-600:focus { - background-color: #db2777; + .xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .xl\:focus\:bg-pink-700:focus { - background-color: #be185d; + .xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .xl\:focus\:bg-pink-800:focus { - background-color: #9d174d; + .xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .xl\:focus\:bg-pink-900:focus { - background-color: #831843; + .xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .xl\:bg-none { - background-image: none; + .xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .xl\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .xl\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .xl\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .xl\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .xl\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .xl\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .xl\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .xl\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .xl\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .xl\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .xl\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .xl\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .xl\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .xl\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .xl\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .xl\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .xl\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .xl\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .xl\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .xl\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .xl\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .xl\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .xl\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .xl\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .xl\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .xl\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .xl\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .xl\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .xl\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .xl\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .xl\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .xl\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .xl\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .xl\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .xl\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .xl\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .xl\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .xl\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .xl\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .xl\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .xl\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .xl\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .xl\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .xl\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .xl\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .xl\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .xl\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .xl\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .xl\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .xl\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .xl\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .xl\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .xl\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .xl\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .xl\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .xl\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .xl\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .xl\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .xl\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .xl\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .xl\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .xl\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .xl\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .xl\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .xl\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .xl\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:mt-0 { + margin-top: 0px; } - .xl\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:mt-1 { + margin-top: 0.25rem; } - .xl\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:mt-2 { + margin-top: 0.5rem; } - .xl\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:mt-3 { + margin-top: 0.75rem; } - .xl\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:mt-4 { + margin-top: 1rem; } - .xl\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:mt-5 { + margin-top: 1.25rem; } - .xl\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:mt-6 { + margin-top: 1.5rem; } - .xl\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:mt-7 { + margin-top: 1.75rem; } - .xl\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:mt-8 { + margin-top: 2rem; } - .xl\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:mt-9 { + margin-top: 2.25rem; } - .xl\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:mt-10 { + margin-top: 2.5rem; } - .xl\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:mt-11 { + margin-top: 2.75rem; } - .xl\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:mt-12 { + margin-top: 3rem; } - .xl\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:mt-14 { + margin-top: 3.5rem; } - .xl\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:mt-16 { + margin-top: 4rem; } - .xl\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:mt-20 { + margin-top: 5rem; } - .xl\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:mt-24 { + margin-top: 6rem; } - .xl\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:mt-28 { + margin-top: 7rem; } - .xl\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:mt-32 { + margin-top: 8rem; } - .xl\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:mt-36 { + margin-top: 9rem; } - .xl\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:mt-40 { + margin-top: 10rem; } - .xl\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:mt-44 { + margin-top: 11rem; } - .xl\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:mt-48 { + margin-top: 12rem; } - .xl\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:mt-52 { + margin-top: 13rem; } - .xl\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:mt-56 { + margin-top: 14rem; } - .xl\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:mt-60 { + margin-top: 15rem; } - .xl\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:mt-64 { + margin-top: 16rem; } - .xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:mt-72 { + margin-top: 18rem; } - .xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:mt-80 { + margin-top: 20rem; } - .xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:mt-96 { + margin-top: 24rem; } - .xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:mt-auto { + margin-top: auto; } - .xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:mt-px { + margin-top: 1px; } - .xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:mt-0\.5 { + margin-top: 0.125rem; } - .xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:mt-1\.5 { + margin-top: 0.375rem; } - .xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:mt-2\.5 { + margin-top: 0.625rem; } - .xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:mt-3\.5 { + margin-top: 0.875rem; } - .xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:-mt-0 { + margin-top: 0px; } - .xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:-mt-1 { + margin-top: -0.25rem; } - .xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:-mt-2 { + margin-top: -0.5rem; } - .xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:-mt-3 { + margin-top: -0.75rem; } - .xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:-mt-4 { + margin-top: -1rem; } - .xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:-mt-5 { + margin-top: -1.25rem; } - .xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:-mt-6 { + margin-top: -1.5rem; } - .xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:-mt-7 { + margin-top: -1.75rem; } - .xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:-mt-8 { + margin-top: -2rem; } - .xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:-mt-9 { + margin-top: -2.25rem; } - .xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:-mt-10 { + margin-top: -2.5rem; } - .xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:-mt-11 { + margin-top: -2.75rem; } - .xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:-mt-12 { + margin-top: -3rem; } - .xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:-mt-14 { + margin-top: -3.5rem; } - .xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:-mt-16 { + margin-top: -4rem; } - .xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:-mt-20 { + margin-top: -5rem; } - .xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:-mt-24 { + margin-top: -6rem; } - .xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:-mt-28 { + margin-top: -7rem; } - .xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:-mt-32 { + margin-top: -8rem; } - .xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:-mt-36 { + margin-top: -9rem; } - .xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:-mt-40 { + margin-top: -10rem; } - .xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:-mt-44 { + margin-top: -11rem; } - .xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:-mt-48 { + margin-top: -12rem; } - .xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:-mt-52 { + margin-top: -13rem; } - .xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:-mt-56 { + margin-top: -14rem; } - .xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:-mt-60 { + margin-top: -15rem; } - .xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:-mt-64 { + margin-top: -16rem; } - .xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:-mt-72 { + margin-top: -18rem; } - .xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:-mt-80 { + margin-top: -20rem; } - .xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:-mt-96 { + margin-top: -24rem; } - .xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:-mt-px { + margin-top: -1px; } - .xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:mr-0 { + margin-right: 0px; } - .xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:mr-1 { + margin-right: 0.25rem; } - .xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:mr-2 { + margin-right: 0.5rem; } - .xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:mr-3 { + margin-right: 0.75rem; } - .xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:mr-4 { + margin-right: 1rem; } - .xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:mr-5 { + margin-right: 1.25rem; } - .xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:mr-6 { + margin-right: 1.5rem; } - .xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:mr-7 { + margin-right: 1.75rem; } - .xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:mr-8 { + margin-right: 2rem; } - .xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:mr-9 { + margin-right: 2.25rem; } - .xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:mr-10 { + margin-right: 2.5rem; } - .xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:mr-11 { + margin-right: 2.75rem; } - .xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:mr-12 { + margin-right: 3rem; } - .xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:mr-14 { + margin-right: 3.5rem; } - .xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:mr-16 { + margin-right: 4rem; } - .xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:mr-20 { + margin-right: 5rem; } - .xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:mr-24 { + margin-right: 6rem; } - .xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:mr-28 { + margin-right: 7rem; } - .xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:mr-32 { + margin-right: 8rem; } - .xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:mr-36 { + margin-right: 9rem; } - .xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:mr-40 { + margin-right: 10rem; } - .xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:mr-44 { + margin-right: 11rem; } - .xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:mr-48 { + margin-right: 12rem; } - .xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:mr-52 { + margin-right: 13rem; } - .xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:mr-56 { + margin-right: 14rem; } - .xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:mr-60 { + margin-right: 15rem; } - .xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:mr-64 { + margin-right: 16rem; } - .xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:mr-72 { + margin-right: 18rem; } - .xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:mr-80 { + margin-right: 20rem; } - .xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:mr-96 { + margin-right: 24rem; } - .xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:mr-auto { + margin-right: auto; } - .xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:mr-px { + margin-right: 1px; } - .xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:mr-0\.5 { + margin-right: 0.125rem; } - .xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:mr-1\.5 { + margin-right: 0.375rem; } - .xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:mr-2\.5 { + margin-right: 0.625rem; } - .xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:mr-3\.5 { + margin-right: 0.875rem; } - .xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:-mr-0 { + margin-right: 0px; } - .xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:-mr-1 { + margin-right: -0.25rem; } - .xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:-mr-2 { + margin-right: -0.5rem; } - .xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:-mr-3 { + margin-right: -0.75rem; } - .xl\:to-transparent { - --tw-gradient-to: transparent; + .xl\:-mr-4 { + margin-right: -1rem; } - .xl\:to-current { - --tw-gradient-to: currentColor; + .xl\:-mr-5 { + margin-right: -1.25rem; } - .xl\:to-black { - --tw-gradient-to: #000; + .xl\:-mr-6 { + margin-right: -1.5rem; } - .xl\:to-white { - --tw-gradient-to: #fff; + .xl\:-mr-7 { + margin-right: -1.75rem; } - .xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .xl\:-mr-8 { + margin-right: -2rem; } - .xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .xl\:-mr-9 { + margin-right: -2.25rem; } - .xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .xl\:-mr-10 { + margin-right: -2.5rem; } - .xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .xl\:-mr-11 { + margin-right: -2.75rem; } - .xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .xl\:-mr-12 { + margin-right: -3rem; } - .xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .xl\:-mr-14 { + margin-right: -3.5rem; } - .xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .xl\:-mr-16 { + margin-right: -4rem; } - .xl\:to-gray-700 { - --tw-gradient-to: #374151; + .xl\:-mr-20 { + margin-right: -5rem; } - .xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .xl\:-mr-24 { + margin-right: -6rem; } - .xl\:to-gray-900 { - --tw-gradient-to: #111827; + .xl\:-mr-28 { + margin-right: -7rem; } - .xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .xl\:-mr-32 { + margin-right: -8rem; } - .xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .xl\:-mr-36 { + margin-right: -9rem; } - .xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .xl\:-mr-40 { + margin-right: -10rem; } - .xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .xl\:-mr-44 { + margin-right: -11rem; } - .xl\:to-red-400 { - --tw-gradient-to: #f87171; + .xl\:-mr-48 { + margin-right: -12rem; } - .xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .xl\:-mr-52 { + margin-right: -13rem; } - .xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .xl\:-mr-56 { + margin-right: -14rem; } - .xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .xl\:-mr-60 { + margin-right: -15rem; } - .xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .xl\:-mr-64 { + margin-right: -16rem; } - .xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .xl\:-mr-72 { + margin-right: -18rem; } - .xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .xl\:-mr-80 { + margin-right: -20rem; } - .xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .xl\:-mr-96 { + margin-right: -24rem; } - .xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .xl\:-mr-px { + margin-right: -1px; } - .xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .xl\:-mr-0\.5 { + margin-right: -0.125rem; } - .xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .xl\:-mr-1\.5 { + margin-right: -0.375rem; } - .xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .xl\:-mr-2\.5 { + margin-right: -0.625rem; } - .xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .xl\:-mr-3\.5 { + margin-right: -0.875rem; } - .xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .xl\:mb-0 { + margin-bottom: 0px; } - .xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .xl\:mb-1 { + margin-bottom: 0.25rem; } - .xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .xl\:mb-2 { + margin-bottom: 0.5rem; } - .xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .xl\:mb-3 { + margin-bottom: 0.75rem; } - .xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .xl\:mb-4 { + margin-bottom: 1rem; } - .xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .xl\:mb-5 { + margin-bottom: 1.25rem; } - .xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .xl\:mb-6 { + margin-bottom: 1.5rem; } - .xl\:to-green-400 { - --tw-gradient-to: #34d399; + .xl\:mb-7 { + margin-bottom: 1.75rem; } - .xl\:to-green-500 { - --tw-gradient-to: #10b981; + .xl\:mb-8 { + margin-bottom: 2rem; } - .xl\:to-green-600 { - --tw-gradient-to: #059669; + .xl\:mb-9 { + margin-bottom: 2.25rem; } - .xl\:to-green-700 { - --tw-gradient-to: #047857; + .xl\:mb-10 { + margin-bottom: 2.5rem; } - .xl\:to-green-800 { - --tw-gradient-to: #065f46; + .xl\:mb-11 { + margin-bottom: 2.75rem; } - .xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .xl\:mb-12 { + margin-bottom: 3rem; } - .xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .xl\:mb-14 { + margin-bottom: 3.5rem; } - .xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .xl\:mb-16 { + margin-bottom: 4rem; } - .xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .xl\:mb-20 { + margin-bottom: 5rem; } - .xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .xl\:mb-24 { + margin-bottom: 6rem; } - .xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .xl\:mb-28 { + margin-bottom: 7rem; } - .xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .xl\:mb-32 { + margin-bottom: 8rem; } - .xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .xl\:mb-36 { + margin-bottom: 9rem; } - .xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .xl\:mb-40 { + margin-bottom: 10rem; } - .xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .xl\:mb-44 { + margin-bottom: 11rem; } - .xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .xl\:mb-48 { + margin-bottom: 12rem; } - .xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .xl\:mb-52 { + margin-bottom: 13rem; } - .xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .xl\:mb-56 { + margin-bottom: 14rem; } - .xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .xl\:mb-60 { + margin-bottom: 15rem; } - .xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .xl\:mb-64 { + margin-bottom: 16rem; } - .xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .xl\:mb-72 { + margin-bottom: 18rem; } - .xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .xl\:mb-80 { + margin-bottom: 20rem; } - .xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .xl\:mb-96 { + margin-bottom: 24rem; } - .xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .xl\:mb-auto { + margin-bottom: auto; } - .xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .xl\:mb-px { + margin-bottom: 1px; } - .xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .xl\:mb-1\.5 { + margin-bottom: 0.375rem; } - .xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .xl\:mb-2\.5 { + margin-bottom: 0.625rem; } - .xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .xl\:mb-3\.5 { + margin-bottom: 0.875rem; } - .xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .xl\:-mb-0 { + margin-bottom: 0px; } - .xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .xl\:-mb-1 { + margin-bottom: -0.25rem; } - .xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .xl\:-mb-2 { + margin-bottom: -0.5rem; } - .xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .xl\:-mb-3 { + margin-bottom: -0.75rem; } - .xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .xl\:-mb-4 { + margin-bottom: -1rem; } - .xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .xl\:-mb-5 { + margin-bottom: -1.25rem; } - .xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .xl\:-mb-6 { + margin-bottom: -1.5rem; } - .xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .xl\:-mb-7 { + margin-bottom: -1.75rem; } - .xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .xl\:-mb-8 { + margin-bottom: -2rem; } - .xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .xl\:-mb-9 { + margin-bottom: -2.25rem; } - .xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .xl\:-mb-10 { + margin-bottom: -2.5rem; } - .xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .xl\:-mb-11 { + margin-bottom: -2.75rem; } - .xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .xl\:-mb-12 { + margin-bottom: -3rem; } - .xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .xl\:-mb-14 { + margin-bottom: -3.5rem; } - .xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .xl\:-mb-16 { + margin-bottom: -4rem; } - .xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .xl\:-mb-20 { + margin-bottom: -5rem; } - .xl\:to-pink-900 { - --tw-gradient-to: #831843; + .xl\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .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\:-ml-10 { + margin-left: -2.5rem; } - .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\:-ml-11 { + margin-left: -2.75rem; } - .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\:-ml-12 { + margin-left: -3rem; } - .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\:-ml-14 { + margin-left: -3.5rem; } - .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\:-ml-16 { + margin-left: -4rem; } - .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\:-ml-20 { + margin-left: -5rem; } - .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\:-ml-24 { + margin-left: -6rem; } - .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\:-ml-28 { + margin-left: -7rem; } - .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\:-ml-32 { + margin-left: -8rem; } - .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\:-ml-36 { + margin-left: -9rem; } - .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\:-ml-40 { + margin-left: -10rem; } - .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\:-ml-44 { + margin-left: -11rem; } - .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\:-ml-48 { + margin-left: -12rem; } - .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\:-ml-52 { + margin-left: -13rem; } - .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\:-ml-56 { + margin-left: -14rem; } - .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\:-ml-60 { + margin-left: -15rem; } - .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\:-ml-64 { + margin-left: -16rem; } - .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\:-ml-72 { + margin-left: -18rem; } - .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\:-ml-80 { + margin-left: -20rem; } - .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\:-ml-96 { + margin-left: -24rem; } - .xl\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:-ml-px { + margin-left: -1px; } - .xl\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:-ml-0\.5 { + margin-left: -0.125rem; } - .xl\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:-ml-1\.5 { + margin-left: -0.375rem; } - .xl\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:-ml-2\.5 { + margin-left: -0.625rem; } - .xl\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:-ml-3\.5 { + margin-left: -0.875rem; } - .xl\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:box-border { + box-sizing: border-box; } - .xl\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:box-content { + box-sizing: content-box; } - .xl\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:block { + display: block; } - .xl\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:inline-block { + display: inline-block; } - .xl\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:inline { + display: inline; } - .xl\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:flex { + display: flex; } - .xl\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:inline-flex { + display: inline-flex; } - .xl\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:table { + display: table; } - .xl\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:inline-table { + display: inline-table; } - .xl\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:table-caption { + display: table-caption; } - .xl\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:table-cell { + display: table-cell; } - .xl\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:table-column { + display: table-column; } - .xl\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:table-column-group { + display: table-column-group; } - .xl\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:table-footer-group { + display: table-footer-group; } - .xl\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:table-header-group { + display: table-header-group; } - .xl\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:table-row-group { + display: table-row-group; } - .xl\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:table-row { + display: table-row; } - .xl\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:flow-root { + display: flow-root; } - .xl\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:grid { + display: grid; } - .xl\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:inline-grid { + display: inline-grid; } - .xl\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:contents { + display: contents; } - .xl\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:list-item { + display: list-item; } - .xl\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:hidden { + display: none; } - .xl\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:h-0 { + height: 0px; } - .xl\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:h-1 { + height: 0.25rem; } - .xl\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:h-2 { + height: 0.5rem; } - .xl\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:h-3 { + height: 0.75rem; } - .xl\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:h-4 { + height: 1rem; } - .xl\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:h-5 { + height: 1.25rem; } - .xl\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:h-6 { + height: 1.5rem; } - .xl\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:h-7 { + height: 1.75rem; } - .xl\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:h-8 { + height: 2rem; } - .xl\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:h-9 { + height: 2.25rem; } - .xl\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:h-10 { + height: 2.5rem; } - .xl\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:h-11 { + height: 2.75rem; } - .xl\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:h-12 { + height: 3rem; } - .xl\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:h-14 { + height: 3.5rem; } - .xl\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:h-16 { + height: 4rem; } - .xl\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:h-20 { + height: 5rem; } - .xl\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:h-24 { + height: 6rem; } - .xl\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:h-28 { + height: 7rem; } - .xl\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:h-32 { + height: 8rem; } - .xl\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:h-36 { + height: 9rem; } - .xl\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:h-40 { + height: 10rem; } - .xl\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:h-44 { + height: 11rem; } - .xl\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:h-48 { + height: 12rem; } - .xl\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:h-52 { + height: 13rem; } - .xl\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:h-56 { + height: 14rem; } - .xl\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:h-60 { + height: 15rem; } - .xl\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:h-64 { + height: 16rem; } - .xl\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:h-72 { + height: 18rem; } - .xl\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:h-80 { + height: 20rem; } - .xl\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:h-96 { + height: 24rem; } - .xl\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:h-auto { + height: auto; } - .xl\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:h-px { + height: 1px; } - .xl\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:h-0\.5 { + height: 0.125rem; } - .xl\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:h-1\.5 { + height: 0.375rem; } - .xl\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:h-2\.5 { + height: 0.625rem; } - .xl\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:h-3\.5 { + height: 0.875rem; } - .xl\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:h-1\/2 { + height: 50%; } - .xl\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:h-1\/3 { + height: 33.333333%; } - .xl\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:h-2\/3 { + height: 66.666667%; } - .xl\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:h-1\/4 { + height: 25%; } - .xl\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:h-2\/4 { + height: 50%; } - .xl\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:h-3\/4 { + height: 75%; } - .xl\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:h-1\/5 { + height: 20%; } - .xl\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:h-2\/5 { + height: 40%; } - .xl\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:h-3\/5 { + height: 60%; } - .xl\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:h-4\/5 { + height: 80%; } - .xl\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:h-1\/6 { + height: 16.666667%; } - .xl\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:h-2\/6 { + height: 33.333333%; } - .xl\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:h-3\/6 { + height: 50%; } - .xl\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:h-4\/6 { + height: 66.666667%; } - .xl\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:h-5\/6 { + height: 83.333333%; } - .xl\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:h-full { + height: 100%; } - .xl\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:h-screen { + height: 100vh; } - .xl\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:max-h-0 { + max-height: 0px; } - .xl\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:max-h-1 { + max-height: 0.25rem; } - .xl\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:max-h-2 { + max-height: 0.5rem; } - .xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .xl\:max-h-3 { + max-height: 0.75rem; } - .xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .xl\:max-h-4 { + max-height: 1rem; } - .xl\:hover\:to-black:hover { - --tw-gradient-to: #000; + .xl\:max-h-5 { + max-height: 1.25rem; } - .xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .xl\:max-h-6 { + max-height: 1.5rem; } - .xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .xl\:max-h-7 { + max-height: 1.75rem; } - .xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .xl\:max-h-8 { + max-height: 2rem; } - .xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .xl\:max-h-9 { + max-height: 2.25rem; } - .xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .xl\:max-h-10 { + max-height: 2.5rem; } - .xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .xl\:max-h-11 { + max-height: 2.75rem; } - .xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .xl\:max-h-12 { + max-height: 3rem; } - .xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .xl\:max-h-14 { + max-height: 3.5rem; } - .xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .xl\:max-h-16 { + max-height: 4rem; } - .xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .xl\:max-h-20 { + max-height: 5rem; } - .xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .xl\:max-h-24 { + max-height: 6rem; } - .xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .xl\:max-h-28 { + max-height: 7rem; } - .xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .xl\:max-h-32 { + max-height: 8rem; } - .xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .xl\:max-h-36 { + max-height: 9rem; } - .xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .xl\:max-h-40 { + max-height: 10rem; } - .xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .xl\:max-h-44 { + max-height: 11rem; } - .xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .xl\:max-h-48 { + max-height: 12rem; } - .xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .xl\:max-h-52 { + max-height: 13rem; } - .xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .xl\:max-h-56 { + max-height: 14rem; } - .xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .xl\:max-h-60 { + max-height: 15rem; } - .xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .xl\:max-h-64 { + max-height: 16rem; } - .xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .xl\:max-h-72 { + max-height: 18rem; } - .xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .xl\:max-h-80 { + max-height: 20rem; } - .xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .xl\:max-h-96 { + max-height: 24rem; } - .xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .xl\:max-h-px { + max-height: 1px; } - .xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .xl\:max-h-0\.5 { + max-height: 0.125rem; } - .xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .xl\:max-h-1\.5 { + max-height: 0.375rem; } - .xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .xl\:max-h-2\.5 { + max-height: 0.625rem; } - .xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .xl\:max-h-3\.5 { + max-height: 0.875rem; } - .xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .xl\:max-h-full { + max-height: 100%; } - .xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .xl\:max-h-screen { + max-height: 100vh; } - .xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .xl\:min-h-0 { + min-height: 0px; } - .xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .xl\:min-h-full { + min-height: 100%; } - .xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .xl\:min-h-screen { + min-height: 100vh; } - .xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .xl\:w-0 { + width: 0px; } - .xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .xl\:w-1 { + width: 0.25rem; } - .xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .xl\:w-2 { + width: 0.5rem; } - .xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .xl\:w-3 { + width: 0.75rem; } - .xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .xl\:w-4 { + width: 1rem; } - .xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .xl\:w-5 { + width: 1.25rem; } - .xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .xl\:w-6 { + width: 1.5rem; } - .xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .xl\:w-7 { + width: 1.75rem; } - .xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .xl\:w-8 { + width: 2rem; } - .xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .xl\:w-9 { + width: 2.25rem; } - .xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .xl\:w-10 { + width: 2.5rem; } - .xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .xl\:w-11 { + width: 2.75rem; } - .xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .xl\:w-12 { + width: 3rem; } - .xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .xl\:w-14 { + width: 3.5rem; } - .xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .xl\:w-16 { + width: 4rem; } - .xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .xl\:w-20 { + width: 5rem; } - .xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .xl\:w-24 { + width: 6rem; } - .xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .xl\:w-28 { + width: 7rem; } - .xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .xl\:w-32 { + width: 8rem; } - .xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .xl\:w-36 { + width: 9rem; } - .xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .xl\:w-40 { + width: 10rem; } - .xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .xl\:w-44 { + width: 11rem; } - .xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .xl\:w-48 { + width: 12rem; } - .xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .xl\:w-52 { + width: 13rem; } - .xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .xl\:w-56 { + width: 14rem; } - .xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .xl\:w-60 { + width: 15rem; } - .xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .xl\:w-64 { + width: 16rem; } - .xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .xl\:w-72 { + width: 18rem; } - .xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .xl\:w-80 { + width: 20rem; } - .xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .xl\:w-96 { + width: 24rem; } - .xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .xl\:w-auto { + width: auto; } - .xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .xl\:w-px { + width: 1px; } - .xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .xl\:w-0\.5 { + width: 0.125rem; } - .xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .xl\:w-1\.5 { + width: 0.375rem; } - .xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .xl\:w-2\.5 { + width: 0.625rem; } - .xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .xl\:w-3\.5 { + width: 0.875rem; } - .xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .xl\:w-1\/2 { + width: 50%; } - .xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .xl\:w-1\/3 { + width: 33.333333%; } - .xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .xl\:w-2\/3 { + width: 66.666667%; } - .xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .xl\:w-1\/4 { + width: 25%; } - .xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .xl\:w-2\/4 { + width: 50%; } - .xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .xl\:w-3\/4 { + width: 75%; } - .xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .xl\:w-1\/5 { + width: 20%; } - .xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .xl\:w-2\/5 { + width: 40%; } - .xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .xl\:w-3\/5 { + width: 60%; } - .xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .xl\:w-4\/5 { + width: 80%; } - .xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .xl\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .xl\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .xl\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .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\:origin-bottom-right { + transform-origin: bottom right; } - .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\:origin-bottom { + transform-origin: bottom; } - .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\:origin-bottom-left { + transform-origin: bottom left; } - .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\:origin-left { + transform-origin: left; } - .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\:origin-top-left { + transform-origin: top left; } - .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\:translate-x-0 { + --tw-translate-x: 0px; } - .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\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .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\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .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\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .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\:translate-x-4 { + --tw-translate-x: 1rem; } - .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\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .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\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .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\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .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\:translate-x-8 { + --tw-translate-x: 2rem; } - .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\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .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\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .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\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .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\:translate-x-12 { + --tw-translate-x: 3rem; } - .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\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .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\:translate-x-16 { + --tw-translate-x: 4rem; } - .xl\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:translate-x-20 { + --tw-translate-x: 5rem; } - .xl\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:translate-x-24 { + --tw-translate-x: 6rem; } - .xl\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:translate-x-28 { + --tw-translate-x: 7rem; } - .xl\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:translate-x-32 { + --tw-translate-x: 8rem; } - .xl\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:translate-x-36 { + --tw-translate-x: 9rem; } - .xl\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:translate-x-40 { + --tw-translate-x: 10rem; } - .xl\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:translate-x-44 { + --tw-translate-x: 11rem; } - .xl\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:translate-x-48 { + --tw-translate-x: 12rem; } - .xl\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:translate-x-52 { + --tw-translate-x: 13rem; } - .xl\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:translate-x-56 { + --tw-translate-x: 14rem; } - .xl\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:translate-x-60 { + --tw-translate-x: 15rem; } - .xl\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:translate-x-64 { + --tw-translate-x: 16rem; } - .xl\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:translate-x-72 { + --tw-translate-x: 18rem; } - .xl\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:translate-x-80 { + --tw-translate-x: 20rem; } - .xl\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:translate-x-96 { + --tw-translate-x: 24rem; } - .xl\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:translate-x-px { + --tw-translate-x: 1px; } - .xl\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .xl\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .xl\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .xl\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .xl\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:-translate-x-0 { + --tw-translate-x: 0px; } - .xl\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .xl\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .xl\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .xl\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:-translate-x-4 { + --tw-translate-x: -1rem; } - .xl\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .xl\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .xl\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .xl\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:-translate-x-8 { + --tw-translate-x: -2rem; } - .xl\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .xl\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .xl\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .xl\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:-translate-x-12 { + --tw-translate-x: -3rem; } - .xl\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .xl\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:-translate-x-16 { + --tw-translate-x: -4rem; } - .xl\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:-translate-x-20 { + --tw-translate-x: -5rem; } - .xl\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:-translate-x-24 { + --tw-translate-x: -6rem; } - .xl\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:-translate-x-28 { + --tw-translate-x: -7rem; } - .xl\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:-translate-x-32 { + --tw-translate-x: -8rem; } - .xl\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:-translate-x-36 { + --tw-translate-x: -9rem; } - .xl\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:-translate-x-40 { + --tw-translate-x: -10rem; } - .xl\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:-translate-x-44 { + --tw-translate-x: -11rem; } - .xl\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:-translate-x-48 { + --tw-translate-x: -12rem; } - .xl\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:-translate-x-52 { + --tw-translate-x: -13rem; } - .xl\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:-translate-x-56 { + --tw-translate-x: -14rem; } - .xl\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:-translate-x-60 { + --tw-translate-x: -15rem; } - .xl\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:-translate-x-64 { + --tw-translate-x: -16rem; } - .xl\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:-translate-x-72 { + --tw-translate-x: -18rem; } - .xl\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:-translate-x-80 { + --tw-translate-x: -20rem; } - .xl\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:-translate-x-96 { + --tw-translate-x: -24rem; } - .xl\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:-translate-x-px { + --tw-translate-x: -1px; } - .xl\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .xl\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .xl\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .xl\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .xl\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .xl\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .xl\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .xl\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .xl\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .xl\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .xl\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:translate-x-full { + --tw-translate-x: 100%; } - .xl\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .xl\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .xl\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .xl\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .xl\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .xl\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .xl\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:-translate-x-full { + --tw-translate-x: -100%; } - .xl\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:translate-y-0 { + --tw-translate-y: 0px; } - .xl\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .xl\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .xl\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .xl\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:translate-y-4 { + --tw-translate-y: 1rem; } - .xl\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .xl\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .xl\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .xl\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:translate-y-8 { + --tw-translate-y: 2rem; } - .xl\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .xl\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .xl\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .xl\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:translate-y-12 { + --tw-translate-y: 3rem; } - .xl\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .xl\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:translate-y-16 { + --tw-translate-y: 4rem; } - .xl\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .xl\:translate-y-20 { + --tw-translate-y: 5rem; } - .xl\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .xl\:translate-y-24 { + --tw-translate-y: 6rem; } - .xl\:focus\:to-black:focus { - --tw-gradient-to: #000; + .xl\:translate-y-28 { + --tw-translate-y: 7rem; } - .xl\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .xl\:translate-y-32 { + --tw-translate-y: 8rem; } - .xl\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .xl\:translate-y-36 { + --tw-translate-y: 9rem; } - .xl\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .xl\:translate-y-40 { + --tw-translate-y: 10rem; } - .xl\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .xl\:translate-y-44 { + --tw-translate-y: 11rem; } - .xl\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .xl\:translate-y-48 { + --tw-translate-y: 12rem; } - .xl\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .xl\:translate-y-52 { + --tw-translate-y: 13rem; } - .xl\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .xl\:translate-y-56 { + --tw-translate-y: 14rem; } - .xl\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .xl\:translate-y-60 { + --tw-translate-y: 15rem; } - .xl\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .xl\:translate-y-64 { + --tw-translate-y: 16rem; } - .xl\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .xl\:translate-y-72 { + --tw-translate-y: 18rem; } - .xl\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .xl\:translate-y-80 { + --tw-translate-y: 20rem; } - .xl\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .xl\:translate-y-96 { + --tw-translate-y: 24rem; } - .xl\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .xl\:translate-y-px { + --tw-translate-y: 1px; } - .xl\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .xl\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .xl\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .xl\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .xl\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .xl\:-translate-y-0 { + --tw-translate-y: 0px; } - .xl\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .xl\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .xl\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .xl\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .xl\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .xl\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .xl\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .xl\:-translate-y-4 { + --tw-translate-y: -1rem; } - .xl\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .xl\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .xl\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .xl\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .xl\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .xl\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .xl\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .xl\:-translate-y-8 { + --tw-translate-y: -2rem; } - .xl\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .xl\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .xl\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .xl\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .xl\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .xl\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .xl\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .xl\:-translate-y-12 { + --tw-translate-y: -3rem; } - .xl\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .xl\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .xl\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .xl\:-translate-y-16 { + --tw-translate-y: -4rem; } - .xl\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .xl\:-translate-y-20 { + --tw-translate-y: -5rem; } - .xl\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .xl\:-translate-y-24 { + --tw-translate-y: -6rem; } - .xl\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .xl\:-translate-y-28 { + --tw-translate-y: -7rem; } - .xl\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .xl\:-translate-y-32 { + --tw-translate-y: -8rem; } - .xl\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .xl\:-translate-y-36 { + --tw-translate-y: -9rem; } - .xl\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .xl\:-translate-y-40 { + --tw-translate-y: -10rem; } - .xl\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .xl\:-translate-y-44 { + --tw-translate-y: -11rem; } - .xl\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .xl\:-translate-y-48 { + --tw-translate-y: -12rem; } - .xl\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .xl\:-translate-y-52 { + --tw-translate-y: -13rem; } - .xl\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .xl\:-translate-y-56 { + --tw-translate-y: -14rem; } - .xl\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .xl\:-translate-y-60 { + --tw-translate-y: -15rem; } - .xl\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .xl\:-translate-y-64 { + --tw-translate-y: -16rem; } - .xl\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .xl\:-translate-y-72 { + --tw-translate-y: -18rem; } - .xl\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .xl\:-translate-y-80 { + --tw-translate-y: -20rem; } - .xl\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .xl\:-translate-y-96 { + --tw-translate-y: -24rem; } - .xl\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .xl\:-translate-y-px { + --tw-translate-y: -1px; } - .xl\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .xl\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .xl\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .xl\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .xl\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .xl\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .xl\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .xl\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .xl\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .xl\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .xl\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .xl\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .xl\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .xl\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .xl\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .xl\:translate-y-full { + --tw-translate-y: 100%; } - .xl\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .xl\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .xl\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .xl\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .xl\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .xl\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .xl\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .xl\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .xl\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .xl\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .xl\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .xl\:-translate-y-full { + --tw-translate-y: -100%; } - .xl\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .xl\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .xl\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .xl\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .xl\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .xl\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .xl\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .xl\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .xl\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .xl\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .xl\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .xl\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .xl\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .xl\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .xl\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .xl\:bg-bottom { - background-position: bottom; + .xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .xl\:bg-center { - background-position: center; + .xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .xl\:bg-left { - background-position: left; + .xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .xl\:bg-left-bottom { - background-position: left bottom; + .xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .xl\:bg-left-top { - background-position: left top; + .xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .xl\:bg-right { - background-position: right; + .xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .xl\:bg-right-bottom { - background-position: right bottom; + .xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .xl\:bg-right-top { - background-position: right top; + .xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .xl\:bg-top { - background-position: top; + .xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .xl\:bg-repeat { - background-repeat: repeat; + .xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .xl\:bg-no-repeat { - background-repeat: no-repeat; + .xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .xl\:bg-repeat-x { - background-repeat: repeat-x; + .xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .xl\:bg-repeat-y { - background-repeat: repeat-y; + .xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .xl\:bg-repeat-round { - background-repeat: round; + .xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .xl\:bg-repeat-space { - background-repeat: space; + .xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .xl\:bg-auto { - background-size: auto; + .xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .xl\:bg-cover { - background-size: cover; + .xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .xl\:bg-contain { - background-size: contain; + .xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .xl\:bg-origin-border { - background-origin: border-box; + .xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .xl\:bg-origin-padding { - background-origin: padding-box; + .xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .xl\:bg-origin-content { - background-origin: content-box; + .xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .xl\:border-collapse { - border-collapse: collapse; + .xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .xl\:border-separate { - border-collapse: separate; + .xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .xl\:border-transparent { - border-color: transparent; + .xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .xl\:border-current { - border-color: currentColor; + .xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .xl\:border-black { - border-color: #000; + .xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .xl\:border-white { - border-color: #fff; + .xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .xl\:border-gray-50 { - border-color: #f9fafb; + .xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .xl\:border-gray-100 { - border-color: #f3f4f6; + .xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .xl\:border-gray-200 { - border-color: #e5e7eb; + .xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .xl\:border-gray-300 { - border-color: #d1d5db; + .xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .xl\:border-gray-400 { - border-color: #9ca3af; + .xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .xl\:border-gray-500 { - border-color: #6b7280; + .xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .xl\:border-gray-600 { - border-color: #4b5563; + .xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .xl\:border-gray-700 { - border-color: #374151; + .xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .xl\:border-gray-800 { - border-color: #1f2937; + .xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .xl\:border-gray-900 { - border-color: #111827; + .xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .xl\:border-red-50 { - border-color: #fef2f2; + .xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .xl\:border-red-100 { - border-color: #fee2e2; + .xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .xl\:border-red-200 { - border-color: #fecaca; + .xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .xl\:border-red-300 { - border-color: #fca5a5; + .xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .xl\:border-red-400 { - border-color: #f87171; + .xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .xl\:border-red-500 { - border-color: #ef4444; + .xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .xl\:border-red-600 { - border-color: #dc2626; + .xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .xl\:border-red-700 { - border-color: #b91c1c; + .xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .xl\:border-red-800 { - border-color: #991b1b; + .xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .xl\:border-red-900 { - border-color: #7f1d1d; + .xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .xl\:border-yellow-50 { - border-color: #fffbeb; + .xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .xl\:border-yellow-100 { - border-color: #fef3c7; + .xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .xl\:border-yellow-200 { - border-color: #fde68a; + .xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .xl\:border-yellow-300 { - border-color: #fcd34d; + .xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .xl\:border-yellow-400 { - border-color: #fbbf24; + .xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .xl\:border-yellow-500 { - border-color: #f59e0b; + .xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .xl\:border-yellow-600 { - border-color: #d97706; + .xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .xl\:border-yellow-700 { - border-color: #b45309; + .xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .xl\:border-yellow-800 { - border-color: #92400e; + .xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .xl\:border-yellow-900 { - border-color: #78350f; + .xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .xl\:border-green-50 { - border-color: #ecfdf5; + .xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .xl\:border-green-100 { - border-color: #d1fae5; + .xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .xl\:border-green-200 { - border-color: #a7f3d0; + .xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .xl\:border-green-300 { - border-color: #6ee7b7; + .xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .xl\:border-green-400 { - border-color: #34d399; + .xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .xl\:border-green-500 { - border-color: #10b981; + .xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .xl\:border-green-600 { - border-color: #059669; + .xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .xl\:border-green-700 { - border-color: #047857; + .xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .xl\:border-green-800 { - border-color: #065f46; + .xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .xl\:border-green-900 { - border-color: #064e3b; + .xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .xl\:border-blue-50 { - border-color: #eff6ff; + .xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .xl\:border-blue-100 { - border-color: #dbeafe; + .xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .xl\:border-blue-200 { - border-color: #bfdbfe; + .xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .xl\:border-blue-300 { - border-color: #93c5fd; + .xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .xl\:border-blue-400 { - border-color: #60a5fa; + .xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .xl\:border-blue-500 { - border-color: #3b82f6; + .xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .xl\:border-blue-600 { - border-color: #2563eb; + .xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .xl\:border-blue-700 { - border-color: #1d4ed8; + .xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .xl\:border-blue-800 { - border-color: #1e40af; + .xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .xl\:border-blue-900 { - border-color: #1e3a8a; + .xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .xl\:border-indigo-50 { - border-color: #eef2ff; + .xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .xl\:border-indigo-100 { - border-color: #e0e7ff; + .xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .xl\:border-indigo-200 { - border-color: #c7d2fe; + .xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .xl\:border-indigo-300 { - border-color: #a5b4fc; + .xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .xl\:border-indigo-400 { - border-color: #818cf8; + .xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .xl\:border-indigo-500 { - border-color: #6366f1; + .xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .xl\:border-indigo-600 { - border-color: #4f46e5; + .xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .xl\:border-indigo-700 { - border-color: #4338ca; + .xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .xl\:border-indigo-800 { - border-color: #3730a3; + .xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .xl\:border-indigo-900 { - border-color: #312e81; + .xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .xl\:border-purple-50 { - border-color: #f5f3ff; + .xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .xl\:border-purple-100 { - border-color: #ede9fe; + .xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .xl\:border-purple-200 { - border-color: #ddd6fe; + .xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .xl\:border-purple-300 { - border-color: #c4b5fd; + .xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .xl\:border-purple-400 { - border-color: #a78bfa; + .xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .xl\:border-purple-500 { - border-color: #8b5cf6; + .xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .xl\:border-purple-600 { - border-color: #7c3aed; + .xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .xl\:border-purple-700 { - border-color: #6d28d9; + .xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .xl\:border-purple-800 { - border-color: #5b21b6; + .xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .xl\:border-purple-900 { - border-color: #4c1d95; + .xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .xl\:border-pink-50 { - border-color: #fdf2f8; + .xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .xl\:border-pink-100 { - border-color: #fce7f3; + .xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .xl\:border-pink-200 { - border-color: #fbcfe8; + .xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .xl\:border-pink-300 { - border-color: #f9a8d4; + .xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .xl\:border-pink-400 { - border-color: #f472b6; + .xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .xl\:border-pink-500 { - border-color: #ec4899; + .xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .xl\:border-pink-600 { - border-color: #db2777; + .xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .xl\:border-pink-700 { - border-color: #be185d; + .xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .xl\:border-pink-800 { - border-color: #9d174d; + .xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .xl\:border-pink-900 { - border-color: #831843; + .xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .group:hover .xl\:group-hover\:border-transparent { - border-color: transparent; + .xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .group:hover .xl\:group-hover\:border-current { - border-color: currentColor; + .xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .group:hover .xl\:group-hover\:border-black { - border-color: #000; + .xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .group:hover .xl\:group-hover\:border-white { - border-color: #fff; + .xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .group:hover .xl\:group-hover\:border-gray-50 { - border-color: #f9fafb; + .xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .group:hover .xl\:group-hover\:border-gray-100 { - border-color: #f3f4f6; + .xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .group:hover .xl\:group-hover\:border-gray-200 { - border-color: #e5e7eb; + .xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .group:hover .xl\:group-hover\:border-gray-300 { - border-color: #d1d5db; + .xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .group:hover .xl\:group-hover\:border-gray-400 { - border-color: #9ca3af; + .xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .group:hover .xl\:group-hover\:border-gray-500 { - border-color: #6b7280; + .xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .group:hover .xl\:group-hover\:border-gray-600 { - border-color: #4b5563; + .xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .group:hover .xl\:group-hover\:border-gray-700 { - border-color: #374151; + .xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .group:hover .xl\:group-hover\:border-gray-800 { - border-color: #1f2937; + .xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .group:hover .xl\:group-hover\:border-gray-900 { - border-color: #111827; + .xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .group:hover .xl\:group-hover\:border-red-50 { - border-color: #fef2f2; + .xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .group:hover .xl\:group-hover\:border-red-100 { - border-color: #fee2e2; + .xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .group:hover .xl\:group-hover\:border-red-200 { - border-color: #fecaca; + .xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .group:hover .xl\:group-hover\:border-red-300 { - border-color: #fca5a5; + .xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .group:hover .xl\:group-hover\:border-red-400 { - border-color: #f87171; + .xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .group:hover .xl\:group-hover\:border-red-500 { - border-color: #ef4444; + .xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .group:hover .xl\:group-hover\:border-red-600 { - border-color: #dc2626; + .xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .group:hover .xl\:group-hover\:border-red-700 { - border-color: #b91c1c; + .xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .group:hover .xl\:group-hover\:border-red-800 { - border-color: #991b1b; + .xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .group:hover .xl\:group-hover\:border-red-900 { - border-color: #7f1d1d; + .xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .group:hover .xl\:group-hover\:border-yellow-50 { - border-color: #fffbeb; + .xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .group:hover .xl\:group-hover\:border-yellow-100 { - border-color: #fef3c7; + .xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .group:hover .xl\:group-hover\:border-yellow-200 { - border-color: #fde68a; + .xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .group:hover .xl\:group-hover\:border-yellow-300 { - border-color: #fcd34d; + .xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .group:hover .xl\:group-hover\:border-yellow-400 { - border-color: #fbbf24; + .xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .group:hover .xl\:group-hover\:border-yellow-500 { - border-color: #f59e0b; + .xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .group:hover .xl\:group-hover\:border-yellow-600 { - border-color: #d97706; + .xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .group:hover .xl\:group-hover\:border-yellow-700 { - border-color: #b45309; + .xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .group:hover .xl\:group-hover\:border-yellow-800 { - border-color: #92400e; + .xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .group:hover .xl\:group-hover\:border-yellow-900 { - border-color: #78350f; + .xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .group:hover .xl\:group-hover\:border-green-50 { - border-color: #ecfdf5; + .xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .group:hover .xl\:group-hover\:border-green-100 { - border-color: #d1fae5; + .xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .group:hover .xl\:group-hover\:border-green-200 { - border-color: #a7f3d0; + .xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .group:hover .xl\:group-hover\:border-green-300 { - border-color: #6ee7b7; + .xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .group:hover .xl\:group-hover\:border-green-400 { - border-color: #34d399; + .xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .group:hover .xl\:group-hover\:border-green-500 { - border-color: #10b981; + .xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .group:hover .xl\:group-hover\:border-green-600 { - border-color: #059669; + .xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .group:hover .xl\:group-hover\:border-green-700 { - border-color: #047857; + .xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .group:hover .xl\:group-hover\:border-green-800 { - border-color: #065f46; + .xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .group:hover .xl\:group-hover\:border-green-900 { - border-color: #064e3b; + .xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .group:hover .xl\:group-hover\:border-blue-50 { - border-color: #eff6ff; + .xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .group:hover .xl\:group-hover\:border-blue-100 { - border-color: #dbeafe; + .xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .group:hover .xl\:group-hover\:border-blue-200 { - border-color: #bfdbfe; + .xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .xl\:group-hover\:border-blue-300 { - border-color: #93c5fd; + .xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .group:hover .xl\:group-hover\:border-blue-400 { - border-color: #60a5fa; + .xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .group:hover .xl\:group-hover\:border-blue-500 { - border-color: #3b82f6; + .xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .group:hover .xl\:group-hover\:border-blue-600 { - border-color: #2563eb; + .xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .group:hover .xl\:group-hover\:border-blue-700 { - border-color: #1d4ed8; + .xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .group:hover .xl\:group-hover\:border-blue-800 { - border-color: #1e40af; + .xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .group:hover .xl\:group-hover\:border-blue-900 { - border-color: #1e3a8a; + .xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .group:hover .xl\:group-hover\:border-indigo-50 { - border-color: #eef2ff; + .xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .xl\:group-hover\:border-indigo-100 { - border-color: #e0e7ff; + .xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .xl\:group-hover\:border-indigo-200 { - border-color: #c7d2fe; + .xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .xl\:group-hover\:border-indigo-300 { - border-color: #a5b4fc; + .xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .xl\:group-hover\:border-indigo-400 { - border-color: #818cf8; + .xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .xl\:group-hover\:border-indigo-500 { - border-color: #6366f1; + .xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .xl\:group-hover\:border-indigo-600 { - border-color: #4f46e5; + .xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .xl\:group-hover\:border-indigo-700 { - border-color: #4338ca; + .xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .xl\:group-hover\:border-indigo-800 { - border-color: #3730a3; + .xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .xl\:group-hover\:border-indigo-900 { - border-color: #312e81; + .xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .xl\:group-hover\:border-purple-50 { - border-color: #f5f3ff; + .xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .xl\:group-hover\:border-purple-100 { - border-color: #ede9fe; + .xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .xl\:group-hover\:border-purple-200 { - border-color: #ddd6fe; + .xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .xl\:group-hover\:border-purple-300 { - border-color: #c4b5fd; + .xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .xl\:group-hover\:border-purple-400 { - border-color: #a78bfa; + .xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .xl\:group-hover\:border-purple-500 { - border-color: #8b5cf6; + .xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .xl\:group-hover\:border-purple-600 { - border-color: #7c3aed; + .xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .xl\:group-hover\:border-purple-700 { - border-color: #6d28d9; + .xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .xl\:group-hover\:border-purple-800 { - border-color: #5b21b6; + .xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .xl\:group-hover\:border-purple-900 { - border-color: #4c1d95; + .xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .xl\:group-hover\:border-pink-50 { - border-color: #fdf2f8; + .xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .xl\:group-hover\:border-pink-100 { - border-color: #fce7f3; + .xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .xl\:group-hover\:border-pink-200 { - border-color: #fbcfe8; + .xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .xl\:group-hover\:border-pink-300 { - border-color: #f9a8d4; + .xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .xl\:group-hover\:border-pink-400 { - border-color: #f472b6; + .xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .xl\:group-hover\:border-pink-500 { - border-color: #ec4899; + .xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .xl\:group-hover\:border-pink-600 { - border-color: #db2777; + .xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .xl\:group-hover\:border-pink-700 { - border-color: #be185d; + .xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .xl\:group-hover\:border-pink-800 { - border-color: #9d174d; + .xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .xl\:group-hover\:border-pink-900 { - border-color: #831843; + .xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .xl\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .xl\:focus-within\:border-current:focus-within { - border-color: currentColor; + .xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .xl\:focus-within\:border-black:focus-within { - border-color: #000; + .xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .xl\:focus-within\:border-white:focus-within { - border-color: #fff; + .xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .xl\:focus-within\:border-gray-50:focus-within { - border-color: #f9fafb; + .xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .xl\:focus-within\:border-gray-100:focus-within { - border-color: #f3f4f6; + .xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .xl\:focus-within\:border-gray-200:focus-within { - border-color: #e5e7eb; + .xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - .xl\:focus-within\:border-gray-300:focus-within { - border-color: #d1d5db; + .xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .xl\:focus-within\:border-gray-400:focus-within { - border-color: #9ca3af; + .xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .xl\:focus-within\:border-gray-500:focus-within { - border-color: #6b7280; + .xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .xl\:focus-within\:border-gray-600:focus-within { - border-color: #4b5563; + .xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .xl\:focus-within\:border-gray-700:focus-within { - border-color: #374151; + .xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .xl\:focus-within\:border-gray-800:focus-within { - border-color: #1f2937; + .xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .xl\:focus-within\:border-gray-900:focus-within { - border-color: #111827; + .xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .xl\:focus-within\:border-red-50:focus-within { - border-color: #fef2f2; + .xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .xl\:focus-within\:border-red-100:focus-within { - border-color: #fee2e2; + .xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .xl\:focus-within\:border-red-200:focus-within { - border-color: #fecaca; + .xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .xl\:focus-within\:border-red-300:focus-within { - border-color: #fca5a5; + .xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .xl\:focus-within\:border-red-400:focus-within { - border-color: #f87171; + .xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .xl\:focus-within\:border-red-500:focus-within { - border-color: #ef4444; + .xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .xl\:focus-within\:border-red-600:focus-within { - border-color: #dc2626; + .xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .xl\:focus-within\:border-red-700:focus-within { - border-color: #b91c1c; + .xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .xl\:focus-within\:border-red-800:focus-within { - border-color: #991b1b; + .xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .xl\:focus-within\:border-red-900:focus-within { - border-color: #7f1d1d; + .xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .xl\:focus-within\:border-yellow-50:focus-within { - border-color: #fffbeb; + .xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .xl\:focus-within\:border-yellow-100:focus-within { - border-color: #fef3c7; + .xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .xl\:focus-within\:border-yellow-200:focus-within { - border-color: #fde68a; + .xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .xl\:focus-within\:border-yellow-300:focus-within { - border-color: #fcd34d; + .xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .xl\:focus-within\:border-yellow-400:focus-within { - border-color: #fbbf24; + .xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .xl\:focus-within\:border-yellow-500:focus-within { - border-color: #f59e0b; + .xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .xl\:focus-within\:border-yellow-600:focus-within { - border-color: #d97706; + .xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .xl\:focus-within\:border-yellow-700:focus-within { - border-color: #b45309; + .xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .xl\:focus-within\:border-yellow-800:focus-within { - border-color: #92400e; + .xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .xl\:focus-within\:border-yellow-900:focus-within { - border-color: #78350f; + .xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .xl\:focus-within\:border-green-50:focus-within { - border-color: #ecfdf5; + .xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .xl\:focus-within\:border-green-100:focus-within { - border-color: #d1fae5; + .xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .xl\:focus-within\:border-green-200:focus-within { - border-color: #a7f3d0; + .xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .xl\:focus-within\:border-green-300:focus-within { - border-color: #6ee7b7; + .xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .xl\:focus-within\:border-green-400:focus-within { - border-color: #34d399; + .xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .xl\:focus-within\:border-green-500:focus-within { - border-color: #10b981; + .xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .xl\:focus-within\:border-green-600:focus-within { - border-color: #059669; + .xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .xl\:focus-within\:border-green-700:focus-within { - border-color: #047857; + .xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .xl\:focus-within\:border-green-800:focus-within { - border-color: #065f46; + .xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .xl\:focus-within\:border-green-900:focus-within { - border-color: #064e3b; + .xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .xl\:focus-within\:border-blue-50:focus-within { - border-color: #eff6ff; + .xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .xl\:focus-within\:border-blue-100:focus-within { - border-color: #dbeafe; + .xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .xl\:focus-within\:border-blue-200:focus-within { - border-color: #bfdbfe; + .xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .xl\:focus-within\:border-blue-300:focus-within { - border-color: #93c5fd; + .xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .xl\:focus-within\:border-blue-400:focus-within { - border-color: #60a5fa; + .xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .xl\:focus-within\:border-blue-500:focus-within { - border-color: #3b82f6; + .xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .xl\:focus-within\:border-blue-600:focus-within { - border-color: #2563eb; + .xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .xl\:focus-within\:border-blue-700:focus-within { - border-color: #1d4ed8; + .xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .xl\:focus-within\:border-blue-800:focus-within { - border-color: #1e40af; + .xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .xl\:focus-within\:border-blue-900:focus-within { - border-color: #1e3a8a; + .xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .xl\:focus-within\:border-indigo-50:focus-within { - border-color: #eef2ff; + .xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .xl\:focus-within\:border-indigo-100:focus-within { - border-color: #e0e7ff; + .xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .xl\:focus-within\:border-indigo-200:focus-within { - border-color: #c7d2fe; + .xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .xl\:focus-within\:border-indigo-300:focus-within { - border-color: #a5b4fc; + .xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .xl\:focus-within\:border-indigo-400:focus-within { - border-color: #818cf8; + .xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .xl\:focus-within\:border-indigo-500:focus-within { - border-color: #6366f1; + .xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .xl\:focus-within\:border-indigo-600:focus-within { - border-color: #4f46e5; + .xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .xl\:focus-within\:border-indigo-700:focus-within { - border-color: #4338ca; + .xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .xl\:focus-within\:border-indigo-800:focus-within { - border-color: #3730a3; + .xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .xl\:focus-within\:border-indigo-900:focus-within { - border-color: #312e81; + .xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .xl\:focus-within\:border-purple-50:focus-within { - border-color: #f5f3ff; + .xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .xl\:focus-within\:border-purple-100:focus-within { - border-color: #ede9fe; + .xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .xl\:focus-within\:border-purple-200:focus-within { - border-color: #ddd6fe; + .xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .xl\:focus-within\:border-purple-300:focus-within { - border-color: #c4b5fd; + .xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .xl\:focus-within\:border-purple-400:focus-within { - border-color: #a78bfa; + .xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .xl\:focus-within\:border-purple-500:focus-within { - border-color: #8b5cf6; + .xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .xl\:focus-within\:border-purple-600:focus-within { - border-color: #7c3aed; + .xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .xl\:focus-within\:border-purple-700:focus-within { - border-color: #6d28d9; + .xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .xl\:focus-within\:border-purple-800:focus-within { - border-color: #5b21b6; + .xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .xl\:focus-within\:border-purple-900:focus-within { - border-color: #4c1d95; + .xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .xl\:focus-within\:border-pink-50:focus-within { - border-color: #fdf2f8; + .xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .xl\:focus-within\:border-pink-100:focus-within { - border-color: #fce7f3; + .xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .xl\:focus-within\:border-pink-200:focus-within { - border-color: #fbcfe8; + .xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .xl\:focus-within\:border-pink-300:focus-within { - border-color: #f9a8d4; + .xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .xl\:focus-within\:border-pink-400:focus-within { - border-color: #f472b6; + .xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .xl\:focus-within\:border-pink-500:focus-within { - border-color: #ec4899; + .xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .xl\:focus-within\:border-pink-600:focus-within { - border-color: #db2777; + .xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .xl\:focus-within\:border-pink-700:focus-within { - border-color: #be185d; + .xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .xl\:focus-within\:border-pink-800:focus-within { - border-color: #9d174d; + .xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .xl\:focus-within\:border-pink-900:focus-within { - border-color: #831843; + .xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .xl\:hover\:border-transparent:hover { - border-color: transparent; + .xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .xl\:hover\:border-current:hover { - border-color: currentColor; + .xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .xl\:hover\:border-black:hover { - border-color: #000; + .xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .xl\:hover\:border-white:hover { - border-color: #fff; + .xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .xl\:hover\:border-gray-50:hover { - border-color: #f9fafb; + .xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .xl\:hover\:border-gray-100:hover { - border-color: #f3f4f6; + .xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .xl\:hover\:border-gray-200:hover { - border-color: #e5e7eb; + .xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .xl\:hover\:border-gray-300:hover { - border-color: #d1d5db; + .xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .xl\:hover\:border-gray-400:hover { - border-color: #9ca3af; + .xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .xl\:hover\:border-gray-500:hover { - border-color: #6b7280; + .xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .xl\:hover\:border-gray-600:hover { - border-color: #4b5563; + .xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .xl\:hover\:border-gray-700:hover { - border-color: #374151; + .xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .xl\:hover\:border-gray-800:hover { - border-color: #1f2937; + .xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .xl\:hover\:border-gray-900:hover { - border-color: #111827; + .xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .xl\:hover\:border-red-50:hover { - border-color: #fef2f2; + .xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .xl\:hover\:border-red-100:hover { - border-color: #fee2e2; + .xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .xl\:hover\:border-red-200:hover { - border-color: #fecaca; + .xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .xl\:hover\:border-red-300:hover { - border-color: #fca5a5; + .xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .xl\:hover\:border-red-400:hover { - border-color: #f87171; + .xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .xl\:hover\:border-red-500:hover { - border-color: #ef4444; + .xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .xl\:hover\:border-red-600:hover { - border-color: #dc2626; + .xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .xl\:hover\:border-red-700:hover { - border-color: #b91c1c; + .xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .xl\:hover\:border-red-800:hover { - border-color: #991b1b; + .xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .xl\:hover\:border-red-900:hover { - border-color: #7f1d1d; + .xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .xl\:hover\:border-yellow-50:hover { - border-color: #fffbeb; + .xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .xl\:hover\:border-yellow-100:hover { - border-color: #fef3c7; + .xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .xl\:hover\:border-yellow-200:hover { - border-color: #fde68a; + .xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .xl\:hover\:border-yellow-300:hover { - border-color: #fcd34d; + .xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .xl\:hover\:border-yellow-400:hover { - border-color: #fbbf24; + .xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .xl\:hover\:border-yellow-500:hover { - border-color: #f59e0b; + .xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .xl\:hover\:border-yellow-600:hover { - border-color: #d97706; + .xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .xl\:hover\:border-yellow-700:hover { - border-color: #b45309; + .xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .xl\:hover\:border-yellow-800:hover { - border-color: #92400e; + .xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .xl\:hover\:border-yellow-900:hover { - border-color: #78350f; + .xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .xl\:hover\:border-green-50:hover { - border-color: #ecfdf5; + .xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .xl\:hover\:border-green-100:hover { - border-color: #d1fae5; + .xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .xl\:hover\:border-green-200:hover { - border-color: #a7f3d0; + .xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .xl\:hover\:border-green-300:hover { - border-color: #6ee7b7; + .xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .xl\:hover\:border-green-400:hover { - border-color: #34d399; + .xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .xl\:hover\:border-green-500:hover { - border-color: #10b981; + .xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .xl\:hover\:border-green-600:hover { - border-color: #059669; + .xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .xl\:hover\:border-green-700:hover { - border-color: #047857; + .xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .xl\:hover\:border-green-800:hover { - border-color: #065f46; + .xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .xl\:hover\:border-green-900:hover { - border-color: #064e3b; + .xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .xl\:hover\:border-blue-50:hover { - border-color: #eff6ff; + .xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .xl\:hover\:border-blue-100:hover { - border-color: #dbeafe; + .xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .xl\:hover\:border-blue-200:hover { - border-color: #bfdbfe; + .xl\:rotate-0 { + --tw-rotate: 0deg; } - .xl\:hover\:border-blue-300:hover { - border-color: #93c5fd; + .xl\:rotate-1 { + --tw-rotate: 1deg; } - .xl\:hover\:border-blue-400:hover { - border-color: #60a5fa; + .xl\:rotate-2 { + --tw-rotate: 2deg; } - .xl\:hover\:border-blue-500:hover { - border-color: #3b82f6; + .xl\:rotate-3 { + --tw-rotate: 3deg; } - .xl\:hover\:border-blue-600:hover { - border-color: #2563eb; + .xl\:rotate-6 { + --tw-rotate: 6deg; } - .xl\:hover\:border-blue-700:hover { - border-color: #1d4ed8; + .xl\:rotate-12 { + --tw-rotate: 12deg; } - .xl\:hover\:border-blue-800:hover { - border-color: #1e40af; + .xl\:rotate-45 { + --tw-rotate: 45deg; } - .xl\:hover\:border-blue-900:hover { - border-color: #1e3a8a; + .xl\:rotate-90 { + --tw-rotate: 90deg; } - .xl\:hover\:border-indigo-50:hover { - border-color: #eef2ff; + .xl\:rotate-180 { + --tw-rotate: 180deg; } - .xl\:hover\:border-indigo-100:hover { - border-color: #e0e7ff; + .xl\:-rotate-180 { + --tw-rotate: -180deg; } - .xl\:hover\:border-indigo-200:hover { - border-color: #c7d2fe; + .xl\:-rotate-90 { + --tw-rotate: -90deg; } - .xl\:hover\:border-indigo-300:hover { - border-color: #a5b4fc; + .xl\:-rotate-45 { + --tw-rotate: -45deg; } - .xl\:hover\:border-indigo-400:hover { - border-color: #818cf8; + .xl\:-rotate-12 { + --tw-rotate: -12deg; } - .xl\:hover\:border-indigo-500:hover { - border-color: #6366f1; + .xl\:-rotate-6 { + --tw-rotate: -6deg; } - .xl\:hover\:border-indigo-600:hover { - border-color: #4f46e5; + .xl\:-rotate-3 { + --tw-rotate: -3deg; } - .xl\:hover\:border-indigo-700:hover { - border-color: #4338ca; + .xl\:-rotate-2 { + --tw-rotate: -2deg; } - .xl\:hover\:border-indigo-800:hover { - border-color: #3730a3; + .xl\:-rotate-1 { + --tw-rotate: -1deg; } - .xl\:hover\:border-indigo-900:hover { - border-color: #312e81; + .xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .xl\:hover\:border-purple-50:hover { - border-color: #f5f3ff; + .xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .xl\:hover\:border-purple-100:hover { - border-color: #ede9fe; + .xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .xl\:hover\:border-purple-200:hover { - border-color: #ddd6fe; + .xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .xl\:hover\:border-purple-300:hover { - border-color: #c4b5fd; + .xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .xl\:hover\:border-purple-400:hover { - border-color: #a78bfa; + .xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .xl\:hover\:border-purple-500:hover { - border-color: #8b5cf6; + .xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .xl\:hover\:border-purple-600:hover { - border-color: #7c3aed; + .xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .xl\:hover\:border-purple-700:hover { - border-color: #6d28d9; + .xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .xl\:hover\:border-purple-800:hover { - border-color: #5b21b6; + .xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .xl\:hover\:border-purple-900:hover { - border-color: #4c1d95; + .xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .xl\:hover\:border-pink-50:hover { - border-color: #fdf2f8; + .xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .xl\:hover\:border-pink-100:hover { - border-color: #fce7f3; + .xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .xl\:hover\:border-pink-200:hover { - border-color: #fbcfe8; + .xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .xl\:hover\:border-pink-300:hover { - border-color: #f9a8d4; + .xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .xl\:hover\:border-pink-400:hover { - border-color: #f472b6; + .xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .xl\:hover\:border-pink-500:hover { - border-color: #ec4899; + .xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .xl\:hover\:border-pink-600:hover { - border-color: #db2777; + .xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .xl\:hover\:border-pink-700:hover { - border-color: #be185d; + .xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .xl\:hover\:border-pink-800:hover { - border-color: #9d174d; + .xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .xl\:hover\:border-pink-900:hover { - border-color: #831843; + .xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .xl\:focus\:border-transparent:focus { - border-color: transparent; + .xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .xl\:focus\:border-current:focus { - border-color: currentColor; + .xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .xl\:focus\:border-black:focus { - border-color: #000; + .xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .xl\:focus\:border-white:focus { - border-color: #fff; + .xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .xl\:focus\:border-gray-50:focus { - border-color: #f9fafb; + .xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .xl\:focus\:border-gray-100:focus { - border-color: #f3f4f6; + .xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .xl\:focus\:border-gray-200:focus { - border-color: #e5e7eb; + .xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .xl\:focus\:border-gray-300:focus { - border-color: #d1d5db; + .xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .xl\:focus\:border-gray-400:focus { - border-color: #9ca3af; + .xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .xl\:focus\:border-gray-500:focus { - border-color: #6b7280; + .xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .xl\:focus\:border-gray-600:focus { - border-color: #4b5563; + .xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .xl\:focus\:border-gray-700:focus { - border-color: #374151; + .xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .xl\:focus\:border-gray-800:focus { - border-color: #1f2937; + .xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .xl\:focus\:border-gray-900:focus { - border-color: #111827; + .xl\:skew-x-0 { + --tw-skew-x: 0deg; } - .xl\:focus\:border-red-50:focus { - border-color: #fef2f2; + .xl\:skew-x-1 { + --tw-skew-x: 1deg; } - .xl\:focus\:border-red-100:focus { - border-color: #fee2e2; + .xl\:skew-x-2 { + --tw-skew-x: 2deg; } - .xl\:focus\:border-red-200:focus { - border-color: #fecaca; + .xl\:skew-x-3 { + --tw-skew-x: 3deg; } - .xl\:focus\:border-red-300:focus { - border-color: #fca5a5; + .xl\:skew-x-6 { + --tw-skew-x: 6deg; } - .xl\:focus\:border-red-400:focus { - border-color: #f87171; + .xl\:skew-x-12 { + --tw-skew-x: 12deg; } - .xl\:focus\:border-red-500:focus { - border-color: #ef4444; + .xl\:-skew-x-12 { + --tw-skew-x: -12deg; } - .xl\:focus\:border-red-600:focus { - border-color: #dc2626; + .xl\:-skew-x-6 { + --tw-skew-x: -6deg; } - .xl\:focus\:border-red-700:focus { - border-color: #b91c1c; + .xl\:-skew-x-3 { + --tw-skew-x: -3deg; } - .xl\:focus\:border-red-800:focus { - border-color: #991b1b; + .xl\:-skew-x-2 { + --tw-skew-x: -2deg; } - .xl\:focus\:border-red-900:focus { - border-color: #7f1d1d; + .xl\:-skew-x-1 { + --tw-skew-x: -1deg; } - .xl\:focus\:border-yellow-50:focus { - border-color: #fffbeb; + .xl\:skew-y-0 { + --tw-skew-y: 0deg; } - .xl\:focus\:border-yellow-100:focus { - border-color: #fef3c7; + .xl\:skew-y-1 { + --tw-skew-y: 1deg; } - .xl\:focus\:border-yellow-200:focus { - border-color: #fde68a; + .xl\:skew-y-2 { + --tw-skew-y: 2deg; } - .xl\:focus\:border-yellow-300:focus { - border-color: #fcd34d; + .xl\:skew-y-3 { + --tw-skew-y: 3deg; } - .xl\:focus\:border-yellow-400:focus { - border-color: #fbbf24; + .xl\:skew-y-6 { + --tw-skew-y: 6deg; } - .xl\:focus\:border-yellow-500:focus { - border-color: #f59e0b; + .xl\:skew-y-12 { + --tw-skew-y: 12deg; } - .xl\:focus\:border-yellow-600:focus { - border-color: #d97706; + .xl\:-skew-y-12 { + --tw-skew-y: -12deg; } - .xl\:focus\:border-yellow-700:focus { - border-color: #b45309; + .xl\:-skew-y-6 { + --tw-skew-y: -6deg; } - .xl\:focus\:border-yellow-800:focus { - border-color: #92400e; + .xl\:-skew-y-3 { + --tw-skew-y: -3deg; } - .xl\:focus\:border-yellow-900:focus { - border-color: #78350f; + .xl\:-skew-y-2 { + --tw-skew-y: -2deg; } - .xl\:focus\:border-green-50:focus { - border-color: #ecfdf5; + .xl\:-skew-y-1 { + --tw-skew-y: -1deg; } - .xl\:focus\:border-green-100:focus { - border-color: #d1fae5; + .xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .xl\:focus\:border-green-200:focus { - border-color: #a7f3d0; + .xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .xl\:focus\:border-green-300:focus { - border-color: #6ee7b7; + .xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .xl\:focus\:border-green-400:focus { - border-color: #34d399; + .xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .xl\:focus\:border-green-500:focus { - border-color: #10b981; + .xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .xl\:focus\:border-green-600:focus { - border-color: #059669; + .xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .xl\:focus\:border-green-700:focus { - border-color: #047857; + .xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .xl\:focus\:border-green-800:focus { - border-color: #065f46; + .xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .xl\:focus\:border-green-900:focus { - border-color: #064e3b; + .xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .xl\:focus\:border-blue-50:focus { - border-color: #eff6ff; + .xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .xl\:focus\:border-blue-100:focus { - border-color: #dbeafe; + .xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .xl\:focus\:border-blue-200:focus { - border-color: #bfdbfe; + .xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .xl\:focus\:border-blue-300:focus { - border-color: #93c5fd; + .xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .xl\:focus\:border-blue-400:focus { - border-color: #60a5fa; + .xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .xl\:focus\:border-blue-500:focus { - border-color: #3b82f6; + .xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .xl\:focus\:border-blue-600:focus { - border-color: #2563eb; + .xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .xl\:focus\:border-blue-700:focus { - border-color: #1d4ed8; + .xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .xl\:focus\:border-blue-800:focus { - border-color: #1e40af; + .xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .xl\:focus\:border-blue-900:focus { - border-color: #1e3a8a; + .xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .xl\:focus\:border-indigo-50:focus { - border-color: #eef2ff; + .xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .xl\:focus\:border-indigo-100:focus { - border-color: #e0e7ff; + .xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .xl\:focus\:border-indigo-200:focus { - border-color: #c7d2fe; + .xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .xl\:focus\:border-indigo-300:focus { - border-color: #a5b4fc; + .xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .xl\:focus\:border-indigo-400:focus { - border-color: #818cf8; + .xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .xl\:focus\:border-indigo-500:focus { - border-color: #6366f1; + .xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .xl\:focus\:border-indigo-600:focus { - border-color: #4f46e5; + .xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .xl\:focus\:border-indigo-700:focus { - border-color: #4338ca; + .xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .xl\:focus\:border-indigo-800:focus { - border-color: #3730a3; + .xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .xl\:focus\:border-indigo-900:focus { - border-color: #312e81; + .xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .xl\:focus\:border-purple-50:focus { - border-color: #f5f3ff; + .xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .xl\:focus\:border-purple-100:focus { - border-color: #ede9fe; + .xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .xl\:focus\:border-purple-200:focus { - border-color: #ddd6fe; + .xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .xl\:focus\:border-purple-300:focus { - border-color: #c4b5fd; + .xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .xl\:focus\:border-purple-400:focus { - border-color: #a78bfa; + .xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .xl\:focus\:border-purple-500:focus { - border-color: #8b5cf6; + .xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .xl\:focus\:border-purple-600:focus { - border-color: #7c3aed; + .xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .xl\:focus\:border-purple-700:focus { - border-color: #6d28d9; + .xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .xl\:focus\:border-purple-800:focus { - border-color: #5b21b6; + .xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .xl\:focus\:border-purple-900:focus { - border-color: #4c1d95; + .xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .xl\:focus\:border-pink-50:focus { - border-color: #fdf2f8; + .xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .xl\:focus\:border-pink-100:focus { - border-color: #fce7f3; + .xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .xl\:focus\:border-pink-200:focus { - border-color: #fbcfe8; + .xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .xl\:focus\:border-pink-300:focus { - border-color: #f9a8d4; + .xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .xl\:focus\:border-pink-400:focus { - border-color: #f472b6; + .xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .xl\:focus\:border-pink-500:focus { - border-color: #ec4899; + .xl\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:focus\:border-pink-600:focus { - border-color: #db2777; + .xl\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:focus\:border-pink-700:focus { - border-color: #be185d; + .xl\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:focus\:border-pink-800:focus { - border-color: #9d174d; + .xl\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:focus\:border-pink-900:focus { - border-color: #831843; + .xl\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:rounded-none { - border-radius: 0px; + .xl\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:rounded-sm { - border-radius: 0.125rem; + .xl\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:rounded { - border-radius: 0.25rem; + .xl\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:rounded-md { - border-radius: 0.375rem; + .xl\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:rounded-lg { - border-radius: 0.5rem; + .xl\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:rounded-xl { - border-radius: 0.75rem; + .xl\:scale-x-0 { + --tw-scale-x: 0; } - .xl\:rounded-2xl { - border-radius: 1rem; + .xl\:scale-x-50 { + --tw-scale-x: .5; } - .xl\:rounded-3xl { - border-radius: 1.5rem; + .xl\:scale-x-75 { + --tw-scale-x: .75; } - .xl\:rounded-full { - border-radius: 9999px; + .xl\:scale-x-90 { + --tw-scale-x: .9; } - .xl\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .xl\:scale-x-95 { + --tw-scale-x: .95; } - .xl\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .xl\:scale-x-100 { + --tw-scale-x: 1; } - .xl\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .xl\:scale-x-105 { + --tw-scale-x: 1.05; } - .xl\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .xl\:scale-x-110 { + --tw-scale-x: 1.1; } - .xl\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .xl\:scale-x-125 { + --tw-scale-x: 1.25; } - .xl\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .xl\:scale-x-150 { + --tw-scale-x: 1.5; } - .xl\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .xl\:scale-y-0 { + --tw-scale-y: 0; } - .xl\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .xl\:scale-y-50 { + --tw-scale-y: .5; } - .xl\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .xl\:scale-y-75 { + --tw-scale-y: .75; } - .xl\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .xl\:scale-y-90 { + --tw-scale-y: .9; } - .xl\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .xl\:scale-y-95 { + --tw-scale-y: .95; } - .xl\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .xl\:scale-y-100 { + --tw-scale-y: 1; } - .xl\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .xl\:scale-y-105 { + --tw-scale-y: 1.05; } - .xl\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .xl\:scale-y-110 { + --tw-scale-y: 1.1; } - .xl\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .xl\:scale-y-125 { + --tw-scale-y: 1.25; } - .xl\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .xl\:scale-y-150 { + --tw-scale-y: 1.5; } - .xl\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .xl\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .xl\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .xl\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .xl\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .xl\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .xl\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .xl\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .xl\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .xl\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .xl\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .xl\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .xl\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .xl\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .xl\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .xl\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .xl\:rounded-tl-none { - border-top-left-radius: 0px; + .xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .xl\:rounded-tr-none { - border-top-right-radius: 0px; + .xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .xl\:rounded-br-none { - border-bottom-right-radius: 0px; + .xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .xl\:rounded-bl-none { - border-bottom-left-radius: 0px; + .xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .xl\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .xl\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .xl\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .xl\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .xl\:rounded-tl { - border-top-left-radius: 0.25rem; + .xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .xl\:rounded-tr { - border-top-right-radius: 0.25rem; + .xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .xl\:rounded-br { - border-bottom-right-radius: 0.25rem; + .xl\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .xl\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .xl\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .xl\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .xl\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .xl\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .xl\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .xl\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .xl\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .xl\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .xl\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .xl\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .xl\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .xl\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .xl\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .xl\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .xl\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .xl\:rounded-tl-full { - border-top-left-radius: 9999px; + .xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .xl\:rounded-tr-full { - border-top-right-radius: 9999px; + .xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .xl\:rounded-br-full { - border-bottom-right-radius: 9999px; + .xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .xl\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .xl\:border-solid { - border-style: solid; + .xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .xl\:border-dashed { - border-style: dashed; + .xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .xl\:border-dotted { - border-style: dotted; + .xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .xl\:border-double { - border-style: double; + .xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .xl\:border-none { - border-style: none; + .xl\:animate-none { + animation: none; } - .xl\:border-0 { - border-width: 0px; + .xl\:animate-spin { + animation: spin 1s linear infinite; } - .xl\:border-2 { - border-width: 2px; + .xl\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .xl\:border-4 { - border-width: 4px; + .xl\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .xl\:border-8 { - border-width: 8px; + .xl\:animate-bounce { + animation: bounce 1s infinite; } - .xl\:border { - border-width: 1px; + .xl\:cursor-auto { + cursor: auto; } - .xl\:border-t-0 { - border-top-width: 0px; + .xl\:cursor-default { + cursor: default; } - .xl\:border-r-0 { - border-right-width: 0px; + .xl\:cursor-pointer { + cursor: pointer; } - .xl\:border-b-0 { - border-bottom-width: 0px; + .xl\:cursor-wait { + cursor: wait; } - .xl\:border-l-0 { - border-left-width: 0px; + .xl\:cursor-text { + cursor: text; } - .xl\:border-t-2 { - border-top-width: 2px; + .xl\:cursor-move { + cursor: move; } - .xl\:border-r-2 { - border-right-width: 2px; + .xl\:cursor-help { + cursor: help; } - .xl\:border-b-2 { - border-bottom-width: 2px; + .xl\:cursor-not-allowed { + cursor: not-allowed; } - .xl\:border-l-2 { - border-left-width: 2px; + .xl\:select-none { + user-select: none; } - .xl\:border-t-4 { - border-top-width: 4px; + .xl\:select-text { + user-select: text; } - .xl\:border-r-4 { - border-right-width: 4px; + .xl\:select-all { + user-select: all; } - .xl\:border-b-4 { - border-bottom-width: 4px; + .xl\:select-auto { + user-select: auto; } - .xl\:border-l-4 { - border-left-width: 4px; + .xl\:resize-none { + resize: none; } - .xl\:border-t-8 { - border-top-width: 8px; + .xl\:resize-y { + resize: vertical; } - .xl\:border-r-8 { - border-right-width: 8px; + .xl\:resize-x { + resize: horizontal; } - .xl\:border-b-8 { - border-bottom-width: 8px; + .xl\:resize { + resize: both; } - .xl\:border-l-8 { - border-left-width: 8px; + .xl\:list-inside { + list-style-position: inside; } - .xl\:border-t { - border-top-width: 1px; + .xl\:list-outside { + list-style-position: outside; } - .xl\:border-r { - border-right-width: 1px; + .xl\:list-none { + list-style-type: none; } - .xl\:border-b { - border-bottom-width: 1px; + .xl\:list-disc { + list-style-type: disc; } - .xl\:border-l { - border-left-width: 1px; + .xl\:list-decimal { + list-style-type: decimal; } - .xl\:decoration-slice { - box-decoration-break: slice; + .xl\:appearance-none { + appearance: none; } - .xl\:decoration-clone { - box-decoration-break: clone; + .xl\:auto-cols-auto { + grid-auto-columns: auto; } - .xl\:box-border { - box-sizing: border-box; + .xl\:auto-cols-min { + grid-auto-columns: min-content; } - .xl\:box-content { - box-sizing: content-box; + .xl\:auto-cols-max { + grid-auto-columns: max-content; } - .xl\:cursor-auto { - cursor: auto; + .xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .xl\:cursor-default { - cursor: default; + .xl\:grid-flow-row { + grid-auto-flow: row; } - .xl\:cursor-pointer { - cursor: pointer; + .xl\:grid-flow-col { + grid-auto-flow: column; } - .xl\:cursor-wait { - cursor: wait; + .xl\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .xl\:cursor-text { - cursor: text; + .xl\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .xl\:cursor-move { - cursor: move; + .xl\:auto-rows-auto { + grid-auto-rows: auto; } - .xl\:cursor-help { - cursor: help; + .xl\:auto-rows-min { + grid-auto-rows: min-content; } - .xl\:cursor-not-allowed { - cursor: not-allowed; + .xl\:auto-rows-max { + grid-auto-rows: max-content; } - .xl\:block { - display: block; + .xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .xl\:inline-block { - display: inline-block; + .xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .xl\:inline { - display: inline; + .xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .xl\:flex { - display: flex; + .xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .xl\:inline-flex { - display: inline-flex; + .xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .xl\:table { - display: table; + .xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .xl\:inline-table { - display: inline-table; + .xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .xl\:table-caption { - display: table-caption; + .xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .xl\:table-cell { - display: table-cell; + .xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .xl\:table-column { - display: table-column; + .xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .xl\:table-column-group { - display: table-column-group; + .xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .xl\:table-footer-group { - display: table-footer-group; + .xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .xl\:table-header-group { - display: table-header-group; + .xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .xl\:table-row-group { - display: table-row-group; + .xl\:grid-cols-none { + grid-template-columns: none; } - .xl\:table-row { - display: table-row; + .xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .xl\:flow-root { - display: flow-root; + .xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .xl\:grid { - display: grid; + .xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .xl\:inline-grid { - display: inline-grid; + .xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .xl\:contents { - display: contents; + .xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .xl\:list-item { - display: list-item; + .xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .xl\:hidden { - display: none; + .xl\:grid-rows-none { + grid-template-rows: none; } .xl\:flex-row { @@ -115753,22 +116540,6 @@ video { flex-wrap: nowrap; } - .xl\:place-items-start { - place-items: start; - } - - .xl\:place-items-end { - place-items: end; - } - - .xl\:place-items-center { - place-items: center; - } - - .xl\:place-items-stretch { - place-items: stretch; - } - .xl\:place-content-center { place-content: center; } @@ -115797,44 +116568,20 @@ video { place-content: stretch; } - .xl\:place-self-auto { - place-self: auto; - } - - .xl\:place-self-start { - place-self: start; - } - - .xl\:place-self-end { - place-self: end; - } - - .xl\:place-self-center { - place-self: center; - } - - .xl\:place-self-stretch { - place-self: stretch; - } - - .xl\:items-start { - align-items: flex-start; - } - - .xl\:items-end { - align-items: flex-end; + .xl\:place-items-start { + place-items: start; } - .xl\:items-center { - align-items: center; + .xl\:place-items-end { + place-items: end; } - .xl\:items-baseline { - align-items: baseline; + .xl\:place-items-center { + place-items: center; } - .xl\:items-stretch { - align-items: stretch; + .xl\:place-items-stretch { + place-items: stretch; } .xl\:content-center { @@ -115861,24 +116608,48 @@ video { align-content: space-evenly; } - .xl\:self-auto { - align-self: auto; + .xl\:items-start { + align-items: flex-start; } - .xl\:self-start { - align-self: flex-start; + .xl\:items-end { + align-items: flex-end; } - .xl\:self-end { - align-self: flex-end; + .xl\:items-center { + align-items: center; } - .xl\:self-center { - align-self: center; + .xl\:items-baseline { + align-items: baseline; } - .xl\:self-stretch { - align-self: stretch; + .xl\:items-stretch { + align-items: stretch; + } + + .xl\:justify-start { + justify-content: flex-start; + } + + .xl\:justify-end { + justify-content: flex-end; + } + + .xl\:justify-center { + justify-content: center; + } + + .xl\:justify-between { + justify-content: space-between; + } + + .xl\:justify-around { + justify-content: space-around; + } + + .xl\:justify-evenly { + justify-content: space-evenly; } .xl\:justify-items-start { @@ -115897,10885 +116668,10587 @@ video { justify-items: stretch; } - .xl\:justify-start { - justify-content: flex-start; + .xl\:gap-0 { + gap: 0px; } - .xl\:justify-end { - justify-content: flex-end; + .xl\:gap-1 { + gap: 0.25rem; } - .xl\:justify-center { - justify-content: center; + .xl\:gap-2 { + gap: 0.5rem; } - .xl\:justify-between { - justify-content: space-between; + .xl\:gap-3 { + gap: 0.75rem; } - .xl\:justify-around { - justify-content: space-around; + .xl\:gap-4 { + gap: 1rem; } - .xl\:justify-evenly { - justify-content: space-evenly; + .xl\:gap-5 { + gap: 1.25rem; } - .xl\:justify-self-auto { - justify-self: auto; + .xl\:gap-6 { + gap: 1.5rem; } - .xl\:justify-self-start { - justify-self: start; + .xl\:gap-7 { + gap: 1.75rem; } - .xl\:justify-self-end { - justify-self: end; + .xl\:gap-8 { + gap: 2rem; } - .xl\:justify-self-center { - justify-self: center; + .xl\:gap-9 { + gap: 2.25rem; } - .xl\:justify-self-stretch { - justify-self: stretch; + .xl\:gap-10 { + gap: 2.5rem; } - .xl\:flex-1 { - flex: 1 1 0%; + .xl\:gap-11 { + gap: 2.75rem; } - .xl\:flex-auto { - flex: 1 1 auto; + .xl\:gap-12 { + gap: 3rem; } - .xl\:flex-initial { - flex: 0 1 auto; + .xl\:gap-14 { + gap: 3.5rem; } - .xl\:flex-none { - flex: none; + .xl\:gap-16 { + gap: 4rem; } - .xl\:flex-grow-0 { - flex-grow: 0; + .xl\:gap-20 { + gap: 5rem; } - .xl\:flex-grow { - flex-grow: 1; + .xl\:gap-24 { + gap: 6rem; } - .xl\:flex-shrink-0 { - flex-shrink: 0; + .xl\:gap-28 { + gap: 7rem; } - .xl\:flex-shrink { - flex-shrink: 1; + .xl\:gap-32 { + gap: 8rem; } - .xl\:order-1 { - order: 1; + .xl\:gap-36 { + gap: 9rem; } - .xl\:order-2 { - order: 2; + .xl\:gap-40 { + gap: 10rem; } - .xl\:order-3 { - order: 3; + .xl\:gap-44 { + gap: 11rem; } - .xl\:order-4 { - order: 4; + .xl\:gap-48 { + gap: 12rem; } - .xl\:order-5 { - order: 5; + .xl\:gap-52 { + gap: 13rem; } - .xl\:order-6 { - order: 6; + .xl\:gap-56 { + gap: 14rem; } - .xl\:order-7 { - order: 7; + .xl\:gap-60 { + gap: 15rem; } - .xl\:order-8 { - order: 8; + .xl\:gap-64 { + gap: 16rem; } - .xl\:order-9 { - order: 9; + .xl\:gap-72 { + gap: 18rem; } - .xl\:order-10 { - order: 10; + .xl\:gap-80 { + gap: 20rem; } - .xl\:order-11 { - order: 11; + .xl\:gap-96 { + gap: 24rem; } - .xl\:order-12 { - order: 12; + .xl\:gap-px { + gap: 1px; } - .xl\:order-first { - order: -9999; + .xl\:gap-0\.5 { + gap: 0.125rem; } - .xl\:order-last { - order: 9999; + .xl\:gap-1\.5 { + gap: 0.375rem; } - .xl\:order-none { - order: 0; + .xl\:gap-2\.5 { + gap: 0.625rem; } - .xl\:float-right { - float: right; + .xl\:gap-3\.5 { + gap: 0.875rem; } - .xl\:float-left { - float: left; + .xl\:gap-x-0 { + column-gap: 0px; } - .xl\:float-none { - float: none; + .xl\:gap-x-1 { + column-gap: 0.25rem; } - .xl\:clear-left { - clear: left; + .xl\:gap-x-2 { + column-gap: 0.5rem; } - .xl\:clear-right { - clear: right; + .xl\:gap-x-3 { + column-gap: 0.75rem; } - .xl\:clear-both { - clear: both; + .xl\:gap-x-4 { + column-gap: 1rem; } - .xl\:clear-none { - clear: none; + .xl\:gap-x-5 { + column-gap: 1.25rem; } - .xl\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .xl\:gap-x-6 { + column-gap: 1.5rem; } - .xl\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .xl\:gap-x-7 { + column-gap: 1.75rem; } - .xl\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .xl\:gap-x-8 { + column-gap: 2rem; } - .xl\:font-thin { - font-weight: 100; + .xl\:gap-x-9 { + column-gap: 2.25rem; } - .xl\:font-extralight { - font-weight: 200; + .xl\:gap-x-10 { + column-gap: 2.5rem; } - .xl\:font-light { - font-weight: 300; + .xl\:gap-x-11 { + column-gap: 2.75rem; } - .xl\:font-normal { - font-weight: 400; + .xl\:gap-x-12 { + column-gap: 3rem; } - .xl\:font-medium { - font-weight: 500; + .xl\:gap-x-14 { + column-gap: 3.5rem; } - .xl\:font-semibold { - font-weight: 600; + .xl\:gap-x-16 { + column-gap: 4rem; } - .xl\:font-bold { - font-weight: 700; + .xl\:gap-x-20 { + column-gap: 5rem; } - .xl\:font-extrabold { - font-weight: 800; + .xl\:gap-x-24 { + column-gap: 6rem; } - .xl\:font-black { - font-weight: 900; + .xl\:gap-x-28 { + column-gap: 7rem; } - .xl\:h-0 { - height: 0px; + .xl\:gap-x-32 { + column-gap: 8rem; } - .xl\:h-1 { - height: 0.25rem; + .xl\:gap-x-36 { + column-gap: 9rem; } - .xl\:h-2 { - height: 0.5rem; + .xl\:gap-x-40 { + column-gap: 10rem; } - .xl\:h-3 { - height: 0.75rem; + .xl\:gap-x-44 { + column-gap: 11rem; } - .xl\:h-4 { - height: 1rem; + .xl\:gap-x-48 { + column-gap: 12rem; } - .xl\:h-5 { - height: 1.25rem; + .xl\:gap-x-52 { + column-gap: 13rem; } - .xl\:h-6 { - height: 1.5rem; + .xl\:gap-x-56 { + column-gap: 14rem; } - .xl\:h-7 { - height: 1.75rem; + .xl\:gap-x-60 { + column-gap: 15rem; } - .xl\:h-8 { - height: 2rem; + .xl\:gap-x-64 { + column-gap: 16rem; } - .xl\:h-9 { - height: 2.25rem; + .xl\:gap-x-72 { + column-gap: 18rem; } - .xl\:h-10 { - height: 2.5rem; + .xl\:gap-x-80 { + column-gap: 20rem; } - .xl\:h-11 { - height: 2.75rem; + .xl\:gap-x-96 { + column-gap: 24rem; } - .xl\:h-12 { - height: 3rem; + .xl\:gap-x-px { + column-gap: 1px; } - .xl\:h-14 { - height: 3.5rem; + .xl\:gap-x-0\.5 { + column-gap: 0.125rem; } - .xl\:h-16 { - height: 4rem; + .xl\:gap-x-1\.5 { + column-gap: 0.375rem; } - .xl\:h-20 { - height: 5rem; + .xl\:gap-x-2\.5 { + column-gap: 0.625rem; } - .xl\:h-24 { - height: 6rem; + .xl\:gap-x-3\.5 { + column-gap: 0.875rem; } - .xl\:h-28 { - height: 7rem; + .xl\:gap-y-0 { + row-gap: 0px; } - .xl\:h-32 { - height: 8rem; + .xl\:gap-y-1 { + row-gap: 0.25rem; } - .xl\:h-36 { - height: 9rem; + .xl\:gap-y-2 { + row-gap: 0.5rem; } - .xl\:h-40 { - height: 10rem; + .xl\:gap-y-3 { + row-gap: 0.75rem; + } + + .xl\:gap-y-4 { + row-gap: 1rem; } - .xl\:h-44 { - height: 11rem; + .xl\:gap-y-5 { + row-gap: 1.25rem; } - .xl\:h-48 { - height: 12rem; + .xl\:gap-y-6 { + row-gap: 1.5rem; } - .xl\:h-52 { - height: 13rem; + .xl\:gap-y-7 { + row-gap: 1.75rem; } - .xl\:h-56 { - height: 14rem; + .xl\:gap-y-8 { + row-gap: 2rem; } - .xl\:h-60 { - height: 15rem; + .xl\:gap-y-9 { + row-gap: 2.25rem; } - .xl\:h-64 { - height: 16rem; + .xl\:gap-y-10 { + row-gap: 2.5rem; } - .xl\:h-72 { - height: 18rem; + .xl\:gap-y-11 { + row-gap: 2.75rem; } - .xl\:h-80 { - height: 20rem; + .xl\:gap-y-12 { + row-gap: 3rem; } - .xl\:h-96 { - height: 24rem; + .xl\:gap-y-14 { + row-gap: 3.5rem; } - .xl\:h-auto { - height: auto; + .xl\:gap-y-16 { + row-gap: 4rem; } - .xl\:h-px { - height: 1px; + .xl\:gap-y-20 { + row-gap: 5rem; } - .xl\:h-0\.5 { - height: 0.125rem; + .xl\:gap-y-24 { + row-gap: 6rem; } - .xl\:h-1\.5 { - height: 0.375rem; + .xl\:gap-y-28 { + row-gap: 7rem; } - .xl\:h-2\.5 { - height: 0.625rem; + .xl\:gap-y-32 { + row-gap: 8rem; } - .xl\:h-3\.5 { - height: 0.875rem; + .xl\:gap-y-36 { + row-gap: 9rem; } - .xl\:h-1\/2 { - height: 50%; + .xl\:gap-y-40 { + row-gap: 10rem; } - .xl\:h-1\/3 { - height: 33.333333%; + .xl\:gap-y-44 { + row-gap: 11rem; } - .xl\:h-2\/3 { - height: 66.666667%; + .xl\:gap-y-48 { + row-gap: 12rem; } - .xl\:h-1\/4 { - height: 25%; + .xl\:gap-y-52 { + row-gap: 13rem; } - .xl\:h-2\/4 { - height: 50%; + .xl\:gap-y-56 { + row-gap: 14rem; } - .xl\:h-3\/4 { - height: 75%; + .xl\:gap-y-60 { + row-gap: 15rem; } - .xl\:h-1\/5 { - height: 20%; + .xl\:gap-y-64 { + row-gap: 16rem; } - .xl\:h-2\/5 { - height: 40%; + .xl\:gap-y-72 { + row-gap: 18rem; } - .xl\:h-3\/5 { - height: 60%; + .xl\:gap-y-80 { + row-gap: 20rem; } - .xl\:h-4\/5 { - height: 80%; + .xl\:gap-y-96 { + row-gap: 24rem; } - .xl\:h-1\/6 { - height: 16.666667%; + .xl\:gap-y-px { + row-gap: 1px; } - .xl\:h-2\/6 { - height: 33.333333%; + .xl\:gap-y-0\.5 { + row-gap: 0.125rem; } - .xl\:h-3\/6 { - height: 50%; + .xl\:gap-y-1\.5 { + row-gap: 0.375rem; } - .xl\:h-4\/6 { - height: 66.666667%; + .xl\:gap-y-2\.5 { + row-gap: 0.625rem; } - .xl\:h-5\/6 { - height: 83.333333%; + .xl\:gap-y-3\.5 { + row-gap: 0.875rem; } - .xl\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .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\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .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\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .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\:leading-7 { - line-height: 1.75rem; + .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\:leading-8 { - line-height: 2rem; + .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\:leading-9 { - line-height: 2.25rem; + .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\:leading-10 { - line-height: 2.5rem; + .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\:leading-none { - line-height: 1; + .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\:leading-tight { - line-height: 1.25; + .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\:leading-snug { - line-height: 1.375; + .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\:leading-normal { - line-height: 1.5; + .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\:leading-relaxed { - line-height: 1.625; + .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\:leading-loose { - line-height: 2; + .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\:list-inside { - list-style-position: inside; + .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\:list-outside { - list-style-position: outside; + .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\:list-none { - list-style-type: none; + .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\:list-disc { - list-style-type: disc; + .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\:list-decimal { - list-style-type: decimal; + .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\:m-0 { - margin: 0px; + .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\:m-1 { - margin: 0.25rem; + .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\:m-2 { - margin: 0.5rem; + .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\:m-3 { - margin: 0.75rem; + .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\:m-4 { - margin: 1rem; + .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\:m-5 { - margin: 1.25rem; + .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\:m-6 { - margin: 1.5rem; + .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\:m-7 { - margin: 1.75rem; + .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\:m-8 { - margin: 2rem; + .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\:m-9 { - margin: 2.25rem; + .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\:m-10 { - margin: 2.5rem; + .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\:m-11 { - margin: 2.75rem; + .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\:m-12 { - margin: 3rem; + .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\:m-14 { - margin: 3.5rem; + .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\:m-16 { - margin: 4rem; + .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\:m-20 { - margin: 5rem; + .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\:m-24 { - margin: 6rem; + .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\:m-28 { - margin: 7rem; + .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\:m-32 { - margin: 8rem; + .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\:m-36 { - margin: 9rem; + .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\:m-40 { - margin: 10rem; + .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\:m-44 { - margin: 11rem; + .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\:m-48 { - margin: 12rem; + .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\:m-52 { - margin: 13rem; + .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\:m-56 { - margin: 14rem; + .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\:m-60 { - margin: 15rem; + .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\:m-64 { - margin: 16rem; + .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\:m-72 { - margin: 18rem; + .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\:m-80 { - margin: 20rem; + .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\:m-96 { - margin: 24rem; + .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\:m-auto { - margin: auto; + .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\:m-px { - margin: 1px; + .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\:m-0\.5 { - margin: 0.125rem; + .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\:m-1\.5 { - margin: 0.375rem; + .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\:m-2\.5 { - margin: 0.625rem; + .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\:m-3\.5 { - margin: 0.875rem; + .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\:-m-0 { - margin: 0px; + .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\:-m-1 { - margin: -0.25rem; + .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\:-m-2 { - margin: -0.5rem; + .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\:-m-3 { - margin: -0.75rem; + .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\:-m-4 { - margin: -1rem; + .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\:-m-5 { - margin: -1.25rem; + .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\:-m-6 { - margin: -1.5rem; + .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\:-m-7 { - margin: -1.75rem; + .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\:-m-8 { - margin: -2rem; + .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\:-m-9 { - margin: -2.25rem; + .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\:-m-10 { - margin: -2.5rem; + .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\:-m-11 { - margin: -2.75rem; + .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\:-m-12 { - margin: -3rem; + .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\:-m-14 { - margin: -3.5rem; + .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\:-m-16 { - margin: -4rem; + .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\:-m-20 { - margin: -5rem; + .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\:-m-24 { - margin: -6rem; + .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\:-m-28 { - margin: -7rem; + .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\:-m-32 { - margin: -8rem; + .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\:-m-36 { - margin: -9rem; + .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\:-m-40 { - margin: -10rem; + .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\:-m-44 { - margin: -11rem; + .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\:-m-48 { - margin: -12rem; + .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\:-m-52 { - margin: -13rem; + .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\:-m-56 { - margin: -14rem; + .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\:-m-60 { - margin: -15rem; + .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\:-m-64 { - margin: -16rem; + .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\:-m-72 { - margin: -18rem; + .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\:-m-80 { - margin: -20rem; + .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\:-m-96 { - margin: -24rem; + .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\:-m-px { - margin: -1px; + .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\:-m-0\.5 { - margin: -0.125rem; + .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\:-m-1\.5 { - margin: -0.375rem; + .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\:-m-2\.5 { - margin: -0.625rem; + .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\:-m-3\.5 { - margin: -0.875rem; + .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\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .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\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .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\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .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\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .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\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .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\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .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\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .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\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .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\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .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\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .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\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .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\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .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\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .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\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .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\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .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\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .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\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .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\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .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\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .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\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .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\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .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\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .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\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .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\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .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\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .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\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .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\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .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\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .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\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .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\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .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\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .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\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .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\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .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\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .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\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .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\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .xl\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .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\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .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\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .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\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .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\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .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\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .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\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .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\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .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\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .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\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .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\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .xl\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .xl\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .xl\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .xl\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + border-color: #000; } - .xl\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + border-color: #fff; } - .xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9fafb; } - .xl\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #f3f4f6; } - .xl\:my-auto { - margin-top: auto; - margin-bottom: auto; + .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #e5e7eb; } - .xl\:mx-auto { - margin-left: auto; - margin-right: auto; + .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1d5db; } - .xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #9ca3af; } - .xl\:mx-px { - margin-left: 1px; - margin-right: 1px; + .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6b7280; } - .xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4b5563; } - .xl\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #374151; } - .xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1f2937; } - .xl\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #111827; } - .xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef2f2; } - .xl\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fee2e2; } - .xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fecaca; } - .xl\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fca5a5; } - .xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f87171; } - .xl\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ef4444; } - .xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #dc2626; } - .xl\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b91c1c; } - .xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #991b1b; } - .xl\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #7f1d1d; } - .xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fffbeb; } - .xl\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef3c7; } - .xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fde68a; } - .xl\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fcd34d; } - .xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbbf24; } - .xl\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #f59e0b; } - .xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #d97706; } - .xl\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b45309; } - .xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #92400e; } - .xl\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #78350f; } - .xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #ecfdf5; } - .xl\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1fae5; } - .xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #a7f3d0; } - .xl\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #6ee7b7; } - .xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #34d399; } - .xl\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #10b981; } - .xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #059669; } - .xl\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #047857; } - .xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #065f46; } - .xl\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #064e3b; } - .xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eff6ff; } - .xl\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #dbeafe; } - .xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #bfdbfe; } - .xl\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #93c5fd; } - .xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #60a5fa; } - .xl\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #3b82f6; } - .xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #2563eb; } - .xl\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #1d4ed8; } - .xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e40af; } - .xl\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e3a8a; } - .xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eef2ff; } - .xl\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #e0e7ff; } - .xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #c7d2fe; } - .xl\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #a5b4fc; } - .xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #818cf8; } - .xl\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6366f1; } - .xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4f46e5; } - .xl\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #4338ca; } - .xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #3730a3; } - .xl\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #312e81; } - .xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f5f3ff; } - .xl\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #ede9fe; } - .xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #ddd6fe; } - .xl\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #c4b5fd; } - .xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #a78bfa; } - .xl\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #8b5cf6; } - .xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #7c3aed; } - .xl\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #6d28d9; } - .xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #5b21b6; } - .xl\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #4c1d95; } - .xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fdf2f8; } - .xl\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fce7f3; } - .xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbcfe8; } - .xl\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9a8d4; } - .xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f472b6; } - .xl\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ec4899; } - .xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #db2777; } - .xl\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #be185d; } - .xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #9d174d; } - .xl\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #831843; } - .xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .xl\:place-self-auto { + place-self: auto; } - .xl\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .xl\:place-self-start { + place-self: start; } - .xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .xl\:place-self-end { + place-self: end; } - .xl\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .xl\:place-self-center { + place-self: center; } - .xl\:mt-0 { - margin-top: 0px; + .xl\:place-self-stretch { + place-self: stretch; } - .xl\:mr-0 { - margin-right: 0px; + .xl\:self-auto { + align-self: auto; } - .xl\:mb-0 { - margin-bottom: 0px; + .xl\:self-start { + align-self: flex-start; } - .xl\:ml-0 { - margin-left: 0px; + .xl\:self-end { + align-self: flex-end; } - .xl\:mt-1 { - margin-top: 0.25rem; + .xl\:self-center { + align-self: center; } - .xl\:mr-1 { - margin-right: 0.25rem; + .xl\:self-stretch { + align-self: stretch; } - .xl\:mb-1 { - margin-bottom: 0.25rem; + .xl\:justify-self-auto { + justify-self: auto; } - .xl\:ml-1 { - margin-left: 0.25rem; + .xl\:justify-self-start { + justify-self: start; } - .xl\:mt-2 { - margin-top: 0.5rem; + .xl\:justify-self-end { + justify-self: end; } - .xl\:mr-2 { - margin-right: 0.5rem; + .xl\:justify-self-center { + justify-self: center; } - .xl\:mb-2 { - margin-bottom: 0.5rem; + .xl\:justify-self-stretch { + justify-self: stretch; } - .xl\:ml-2 { - margin-left: 0.5rem; + .xl\:overflow-auto { + overflow: auto; } - .xl\:mt-3 { - margin-top: 0.75rem; + .xl\:overflow-hidden { + overflow: hidden; } - .xl\:mr-3 { - margin-right: 0.75rem; + .xl\:overflow-visible { + overflow: visible; } - .xl\:mb-3 { - margin-bottom: 0.75rem; + .xl\:overflow-scroll { + overflow: scroll; } - .xl\:ml-3 { - margin-left: 0.75rem; + .xl\:overflow-x-auto { + overflow-x: auto; } - .xl\:mt-4 { - margin-top: 1rem; + .xl\:overflow-y-auto { + overflow-y: auto; } - .xl\:mr-4 { - margin-right: 1rem; + .xl\:overflow-x-hidden { + overflow-x: hidden; } - .xl\:mb-4 { - margin-bottom: 1rem; + .xl\:overflow-y-hidden { + overflow-y: hidden; } - .xl\:ml-4 { - margin-left: 1rem; + .xl\:overflow-x-visible { + overflow-x: visible; } - .xl\:mt-5 { - margin-top: 1.25rem; + .xl\:overflow-y-visible { + overflow-y: visible; } - .xl\:mr-5 { - margin-right: 1.25rem; + .xl\:overflow-x-scroll { + overflow-x: scroll; } - .xl\:mb-5 { - margin-bottom: 1.25rem; + .xl\:overflow-y-scroll { + overflow-y: scroll; } - .xl\:ml-5 { - margin-left: 1.25rem; + .xl\:overscroll-auto { + overscroll-behavior: auto; } - .xl\:mt-6 { - margin-top: 1.5rem; + .xl\:overscroll-contain { + overscroll-behavior: contain; } - .xl\:mr-6 { - margin-right: 1.5rem; + .xl\:overscroll-none { + overscroll-behavior: none; } - .xl\:mb-6 { - margin-bottom: 1.5rem; + .xl\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .xl\:ml-6 { - margin-left: 1.5rem; + .xl\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .xl\:mt-7 { - margin-top: 1.75rem; + .xl\:overscroll-y-none { + overscroll-behavior-y: none; } - .xl\:mr-7 { - margin-right: 1.75rem; + .xl\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .xl\:mb-7 { - margin-bottom: 1.75rem; + .xl\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .xl\:ml-7 { - margin-left: 1.75rem; + .xl\:overscroll-x-none { + overscroll-behavior-x: none; } - .xl\:mt-8 { - margin-top: 2rem; + .xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .xl\:mr-8 { - margin-right: 2rem; + .xl\:overflow-ellipsis { + text-overflow: ellipsis; } - .xl\:mb-8 { - margin-bottom: 2rem; + .xl\:overflow-clip { + text-overflow: clip; } - .xl\:ml-8 { - margin-left: 2rem; + .xl\:whitespace-normal { + white-space: normal; } - .xl\:mt-9 { - margin-top: 2.25rem; + .xl\:whitespace-nowrap { + white-space: nowrap; } - .xl\:mr-9 { - margin-right: 2.25rem; + .xl\:whitespace-pre { + white-space: pre; } - .xl\:mb-9 { - margin-bottom: 2.25rem; + .xl\:whitespace-pre-line { + white-space: pre-line; } - .xl\:ml-9 { - margin-left: 2.25rem; + .xl\:whitespace-pre-wrap { + white-space: pre-wrap; } - .xl\:mt-10 { - margin-top: 2.5rem; + .xl\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .xl\:mr-10 { - margin-right: 2.5rem; + .xl\:break-words { + overflow-wrap: break-word; } - .xl\:mb-10 { - margin-bottom: 2.5rem; + .xl\:break-all { + word-break: break-all; } - .xl\:ml-10 { - margin-left: 2.5rem; + .xl\:rounded-none { + border-radius: 0px; } - .xl\:mt-11 { - margin-top: 2.75rem; + .xl\:rounded-sm { + border-radius: 0.125rem; } - .xl\:mr-11 { - margin-right: 2.75rem; + .xl\:rounded { + border-radius: 0.25rem; } - .xl\:mb-11 { - margin-bottom: 2.75rem; + .xl\:rounded-md { + border-radius: 0.375rem; } - .xl\:ml-11 { - margin-left: 2.75rem; + .xl\:rounded-lg { + border-radius: 0.5rem; } - .xl\:mt-12 { - margin-top: 3rem; + .xl\:rounded-xl { + border-radius: 0.75rem; } - .xl\:mr-12 { - margin-right: 3rem; + .xl\:rounded-2xl { + border-radius: 1rem; } - .xl\:mb-12 { - margin-bottom: 3rem; + .xl\:rounded-3xl { + border-radius: 1.5rem; } - .xl\:ml-12 { - margin-left: 3rem; + .xl\:rounded-full { + border-radius: 9999px; } - .xl\:mt-14 { - margin-top: 3.5rem; + .xl\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .xl\:mr-14 { - margin-right: 3.5rem; + .xl\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .xl\:mb-14 { - margin-bottom: 3.5rem; + .xl\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .xl\:ml-14 { - margin-left: 3.5rem; + .xl\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .xl\:mt-16 { - margin-top: 4rem; + .xl\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .xl\:mr-16 { - margin-right: 4rem; + .xl\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .xl\:mb-16 { - margin-bottom: 4rem; + .xl\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .xl\:ml-16 { - margin-left: 4rem; + .xl\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .xl\:mt-20 { - margin-top: 5rem; + .xl\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .xl\:mr-20 { - margin-right: 5rem; + .xl\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .xl\:mb-20 { - margin-bottom: 5rem; + .xl\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .xl\:ml-20 { - margin-left: 5rem; + .xl\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .xl\:mt-24 { - margin-top: 6rem; + .xl\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .xl\:mr-24 { - margin-right: 6rem; + .xl\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .xl\:mb-24 { - margin-bottom: 6rem; + .xl\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .xl\:ml-24 { - margin-left: 6rem; + .xl\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .xl\:mt-28 { - margin-top: 7rem; + .xl\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .xl\:mr-28 { - margin-right: 7rem; + .xl\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .xl\:mb-28 { - margin-bottom: 7rem; + .xl\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .xl\:ml-28 { - margin-left: 7rem; + .xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .xl\:mt-32 { - margin-top: 8rem; + .xl\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .xl\:mr-32 { - margin-right: 8rem; + .xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .xl\:mb-32 { - margin-bottom: 8rem; + .xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .xl\:ml-32 { - margin-left: 8rem; + .xl\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .xl\:mt-36 { - margin-top: 9rem; + .xl\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .xl\:mr-36 { - margin-right: 9rem; + .xl\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .xl\:mb-36 { - margin-bottom: 9rem; + .xl\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .xl\:ml-36 { - margin-left: 9rem; + .xl\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .xl\:mt-40 { - margin-top: 10rem; + .xl\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .xl\:mr-40 { - margin-right: 10rem; + .xl\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .xl\:mb-40 { - margin-bottom: 10rem; + .xl\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .xl\:ml-40 { - margin-left: 10rem; + .xl\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .xl\:mt-44 { - margin-top: 11rem; + .xl\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .xl\:mr-44 { - margin-right: 11rem; + .xl\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .xl\:mb-44 { - margin-bottom: 11rem; + .xl\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .xl\:ml-44 { - margin-left: 11rem; + .xl\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .xl\:mt-48 { - margin-top: 12rem; + .xl\:rounded-tl-none { + border-top-left-radius: 0px; } - .xl\:mr-48 { - margin-right: 12rem; + .xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .xl\:mb-48 { - margin-bottom: 12rem; + .xl\:rounded-tl { + border-top-left-radius: 0.25rem; } - .xl\:ml-48 { - margin-left: 12rem; + .xl\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .xl\:mt-52 { - margin-top: 13rem; + .xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .xl\:mr-52 { - margin-right: 13rem; + .xl\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .xl\:mb-52 { - margin-bottom: 13rem; + .xl\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .xl\:ml-52 { - margin-left: 13rem; + .xl\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .xl\:mt-56 { - margin-top: 14rem; + .xl\:rounded-tl-full { + border-top-left-radius: 9999px; } - .xl\:mr-56 { - margin-right: 14rem; + .xl\:rounded-tr-none { + border-top-right-radius: 0px; } - .xl\:mb-56 { - margin-bottom: 14rem; + .xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .xl\:ml-56 { - margin-left: 14rem; + .xl\:rounded-tr { + border-top-right-radius: 0.25rem; } - .xl\:mt-60 { - margin-top: 15rem; + .xl\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .xl\:mr-60 { - margin-right: 15rem; + .xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .xl\:mb-60 { - margin-bottom: 15rem; + .xl\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .xl\:ml-60 { - margin-left: 15rem; + .xl\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .xl\:mt-64 { - margin-top: 16rem; + .xl\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .xl\:mr-64 { - margin-right: 16rem; + .xl\:rounded-tr-full { + border-top-right-radius: 9999px; } - .xl\:mb-64 { - margin-bottom: 16rem; + .xl\:rounded-br-none { + border-bottom-right-radius: 0px; } - .xl\:ml-64 { - margin-left: 16rem; + .xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .xl\:mt-72 { - margin-top: 18rem; + .xl\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .xl\:mr-72 { - margin-right: 18rem; + .xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .xl\:mb-72 { - margin-bottom: 18rem; + .xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .xl\:ml-72 { - margin-left: 18rem; + .xl\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .xl\:mt-80 { - margin-top: 20rem; + .xl\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .xl\:mr-80 { - margin-right: 20rem; + .xl\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .xl\:mb-80 { - margin-bottom: 20rem; + .xl\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .xl\:ml-80 { - margin-left: 20rem; + .xl\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .xl\:mt-96 { - margin-top: 24rem; + .xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .xl\:mr-96 { - margin-right: 24rem; + .xl\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .xl\:mb-96 { - margin-bottom: 24rem; + .xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .xl\:ml-96 { - margin-left: 24rem; + .xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .xl\:mt-auto { - margin-top: auto; + .xl\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .xl\:mr-auto { - margin-right: auto; + .xl\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .xl\:mb-auto { - margin-bottom: auto; + .xl\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .xl\:ml-auto { - margin-left: auto; + .xl\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .xl\:mt-px { - margin-top: 1px; + .xl\:border-0 { + border-width: 0px; } - .xl\:mr-px { - margin-right: 1px; + .xl\:border-2 { + border-width: 2px; } - .xl\:mb-px { - margin-bottom: 1px; + .xl\:border-4 { + border-width: 4px; } - .xl\:ml-px { - margin-left: 1px; + .xl\:border-8 { + border-width: 8px; } - .xl\:mt-0\.5 { - margin-top: 0.125rem; + .xl\:border { + border-width: 1px; } - .xl\:mr-0\.5 { - margin-right: 0.125rem; + .xl\:border-t-0 { + border-top-width: 0px; } - .xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .xl\:border-t-2 { + border-top-width: 2px; } - .xl\:ml-0\.5 { - margin-left: 0.125rem; + .xl\:border-t-4 { + border-top-width: 4px; } - .xl\:mt-1\.5 { - margin-top: 0.375rem; + .xl\:border-t-8 { + border-top-width: 8px; } - .xl\:mr-1\.5 { - margin-right: 0.375rem; + .xl\:border-t { + border-top-width: 1px; } - .xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .xl\:border-r-0 { + border-right-width: 0px; } - .xl\:ml-1\.5 { - margin-left: 0.375rem; + .xl\:border-r-2 { + border-right-width: 2px; } - .xl\:mt-2\.5 { - margin-top: 0.625rem; + .xl\:border-r-4 { + border-right-width: 4px; } - .xl\:mr-2\.5 { - margin-right: 0.625rem; + .xl\:border-r-8 { + border-right-width: 8px; } - .xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .xl\:border-r { + border-right-width: 1px; } - .xl\:ml-2\.5 { - margin-left: 0.625rem; + .xl\:border-b-0 { + border-bottom-width: 0px; } - .xl\:mt-3\.5 { - margin-top: 0.875rem; + .xl\:border-b-2 { + border-bottom-width: 2px; } - .xl\:mr-3\.5 { - margin-right: 0.875rem; + .xl\:border-b-4 { + border-bottom-width: 4px; } - .xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .xl\:border-b-8 { + border-bottom-width: 8px; } - .xl\:ml-3\.5 { - margin-left: 0.875rem; + .xl\:border-b { + border-bottom-width: 1px; } - .xl\:-mt-0 { - margin-top: 0px; + .xl\:border-l-0 { + border-left-width: 0px; } - .xl\:-mr-0 { - margin-right: 0px; + .xl\:border-l-2 { + border-left-width: 2px; } - .xl\:-mb-0 { - margin-bottom: 0px; + .xl\:border-l-4 { + border-left-width: 4px; } - .xl\:-ml-0 { - margin-left: 0px; + .xl\:border-l-8 { + border-left-width: 8px; } - .xl\:-mt-1 { - margin-top: -0.25rem; + .xl\:border-l { + border-left-width: 1px; } - .xl\:-mr-1 { - margin-right: -0.25rem; + .xl\:border-solid { + border-style: solid; } - .xl\:-mb-1 { - margin-bottom: -0.25rem; + .xl\:border-dashed { + border-style: dashed; } - .xl\:-ml-1 { - margin-left: -0.25rem; + .xl\:border-dotted { + border-style: dotted; } - .xl\:-mt-2 { - margin-top: -0.5rem; + .xl\:border-double { + border-style: double; } - .xl\:-mr-2 { - margin-right: -0.5rem; + .xl\:border-none { + border-style: none; } - .xl\:-mb-2 { - margin-bottom: -0.5rem; + .xl\:border-transparent { + border-color: transparent; } - .xl\:-ml-2 { - margin-left: -0.5rem; + .xl\:border-current { + border-color: currentColor; } - .xl\:-mt-3 { - margin-top: -0.75rem; + .xl\:border-black { + border-color: #000; } - .xl\:-mr-3 { - margin-right: -0.75rem; + .xl\:border-white { + border-color: #fff; } - .xl\:-mb-3 { - margin-bottom: -0.75rem; + .xl\:border-gray-50 { + border-color: #f9fafb; } - .xl\:-ml-3 { - margin-left: -0.75rem; + .xl\:border-gray-100 { + border-color: #f3f4f6; } - .xl\:-mt-4 { - margin-top: -1rem; + .xl\:border-gray-200 { + border-color: #e5e7eb; } - .xl\:-mr-4 { - margin-right: -1rem; + .xl\:border-gray-300 { + border-color: #d1d5db; } - .xl\:-mb-4 { - margin-bottom: -1rem; + .xl\:border-gray-400 { + border-color: #9ca3af; } - .xl\:-ml-4 { - margin-left: -1rem; + .xl\:border-gray-500 { + border-color: #6b7280; } - .xl\:-mt-5 { - margin-top: -1.25rem; + .xl\:border-gray-600 { + border-color: #4b5563; } - .xl\:-mr-5 { - margin-right: -1.25rem; + .xl\:border-gray-700 { + border-color: #374151; } - .xl\:-mb-5 { - margin-bottom: -1.25rem; + .xl\:border-gray-800 { + border-color: #1f2937; } - .xl\:-ml-5 { - margin-left: -1.25rem; + .xl\:border-gray-900 { + border-color: #111827; } - .xl\:-mt-6 { - margin-top: -1.5rem; + .xl\:border-red-50 { + border-color: #fef2f2; } - .xl\:-mr-6 { - margin-right: -1.5rem; + .xl\:border-red-100 { + border-color: #fee2e2; } - .xl\:-mb-6 { - margin-bottom: -1.5rem; + .xl\:border-red-200 { + border-color: #fecaca; } - .xl\:-ml-6 { - margin-left: -1.5rem; + .xl\:border-red-300 { + border-color: #fca5a5; } - .xl\:-mt-7 { - margin-top: -1.75rem; + .xl\:border-red-400 { + border-color: #f87171; } - .xl\:-mr-7 { - margin-right: -1.75rem; + .xl\:border-red-500 { + border-color: #ef4444; } - .xl\:-mb-7 { - margin-bottom: -1.75rem; + .xl\:border-red-600 { + border-color: #dc2626; } - .xl\:-ml-7 { - margin-left: -1.75rem; + .xl\:border-red-700 { + border-color: #b91c1c; } - .xl\:-mt-8 { - margin-top: -2rem; + .xl\:border-red-800 { + border-color: #991b1b; } - .xl\:-mr-8 { - margin-right: -2rem; + .xl\:border-red-900 { + border-color: #7f1d1d; } - .xl\:-mb-8 { - margin-bottom: -2rem; + .xl\:border-yellow-50 { + border-color: #fffbeb; } - .xl\:-ml-8 { - margin-left: -2rem; + .xl\:border-yellow-100 { + border-color: #fef3c7; } - .xl\:-mt-9 { - margin-top: -2.25rem; + .xl\:border-yellow-200 { + border-color: #fde68a; } - .xl\:-mr-9 { - margin-right: -2.25rem; + .xl\:border-yellow-300 { + border-color: #fcd34d; } - .xl\:-mb-9 { - margin-bottom: -2.25rem; + .xl\:border-yellow-400 { + border-color: #fbbf24; } - .xl\:-ml-9 { - margin-left: -2.25rem; + .xl\:border-yellow-500 { + border-color: #f59e0b; } - .xl\:-mt-10 { - margin-top: -2.5rem; + .xl\:border-yellow-600 { + border-color: #d97706; } - .xl\:-mr-10 { - margin-right: -2.5rem; + .xl\:border-yellow-700 { + border-color: #b45309; } - .xl\:-mb-10 { - margin-bottom: -2.5rem; + .xl\:border-yellow-800 { + border-color: #92400e; } - .xl\:-ml-10 { - margin-left: -2.5rem; + .xl\:border-yellow-900 { + border-color: #78350f; } - .xl\:-mt-11 { - margin-top: -2.75rem; + .xl\:border-green-50 { + border-color: #ecfdf5; } - .xl\:-mr-11 { - margin-right: -2.75rem; + .xl\:border-green-100 { + border-color: #d1fae5; } - .xl\:-mb-11 { - margin-bottom: -2.75rem; + .xl\:border-green-200 { + border-color: #a7f3d0; } - .xl\:-ml-11 { - margin-left: -2.75rem; + .xl\:border-green-300 { + border-color: #6ee7b7; } - .xl\:-mt-12 { - margin-top: -3rem; + .xl\:border-green-400 { + border-color: #34d399; } - .xl\:-mr-12 { - margin-right: -3rem; + .xl\:border-green-500 { + border-color: #10b981; } - .xl\:-mb-12 { - margin-bottom: -3rem; + .xl\:border-green-600 { + border-color: #059669; } - .xl\:-ml-12 { - margin-left: -3rem; + .xl\:border-green-700 { + border-color: #047857; } - .xl\:-mt-14 { - margin-top: -3.5rem; + .xl\:border-green-800 { + border-color: #065f46; } - .xl\:-mr-14 { - margin-right: -3.5rem; + .xl\:border-green-900 { + border-color: #064e3b; } - .xl\:-mb-14 { - margin-bottom: -3.5rem; + .xl\:border-blue-50 { + border-color: #eff6ff; } - .xl\:-ml-14 { - margin-left: -3.5rem; + .xl\:border-blue-100 { + border-color: #dbeafe; } - .xl\:-mt-16 { - margin-top: -4rem; + .xl\:border-blue-200 { + border-color: #bfdbfe; } - .xl\:-mr-16 { - margin-right: -4rem; + .xl\:border-blue-300 { + border-color: #93c5fd; } - .xl\:-mb-16 { - margin-bottom: -4rem; + .xl\:border-blue-400 { + border-color: #60a5fa; } - .xl\:-ml-16 { - margin-left: -4rem; + .xl\:border-blue-500 { + border-color: #3b82f6; } - .xl\:-mt-20 { - margin-top: -5rem; + .xl\:border-blue-600 { + border-color: #2563eb; } - .xl\:-mr-20 { - margin-right: -5rem; + .xl\:border-blue-700 { + border-color: #1d4ed8; } - .xl\:-mb-20 { - margin-bottom: -5rem; + .xl\:border-blue-800 { + border-color: #1e40af; } - .xl\:-ml-20 { - margin-left: -5rem; + .xl\:border-blue-900 { + border-color: #1e3a8a; } - .xl\:-mt-24 { - margin-top: -6rem; + .xl\:border-indigo-50 { + border-color: #eef2ff; } - .xl\:-mr-24 { - margin-right: -6rem; + .xl\:border-indigo-100 { + border-color: #e0e7ff; } - .xl\:-mb-24 { - margin-bottom: -6rem; + .xl\:border-indigo-200 { + border-color: #c7d2fe; } - .xl\:-ml-24 { - margin-left: -6rem; + .xl\:border-indigo-300 { + border-color: #a5b4fc; } - .xl\:-mt-28 { - margin-top: -7rem; + .xl\:border-indigo-400 { + border-color: #818cf8; } - .xl\:-mr-28 { - margin-right: -7rem; + .xl\:border-indigo-500 { + border-color: #6366f1; } - .xl\:-mb-28 { - margin-bottom: -7rem; + .xl\:border-indigo-600 { + border-color: #4f46e5; } - .xl\:-ml-28 { - margin-left: -7rem; + .xl\:border-indigo-700 { + border-color: #4338ca; } - .xl\:-mt-32 { - margin-top: -8rem; + .xl\:border-indigo-800 { + border-color: #3730a3; } - .xl\:-mr-32 { - margin-right: -8rem; + .xl\:border-indigo-900 { + border-color: #312e81; } - .xl\:-mb-32 { - margin-bottom: -8rem; + .xl\:border-purple-50 { + border-color: #f5f3ff; } - .xl\:-ml-32 { - margin-left: -8rem; + .xl\:border-purple-100 { + border-color: #ede9fe; } - .xl\:-mt-36 { - margin-top: -9rem; + .xl\:border-purple-200 { + border-color: #ddd6fe; } - .xl\:-mr-36 { - margin-right: -9rem; + .xl\:border-purple-300 { + border-color: #c4b5fd; } - .xl\:-mb-36 { - margin-bottom: -9rem; + .xl\:border-purple-400 { + border-color: #a78bfa; } - .xl\:-ml-36 { - margin-left: -9rem; + .xl\:border-purple-500 { + border-color: #8b5cf6; } - .xl\:-mt-40 { - margin-top: -10rem; + .xl\:border-purple-600 { + border-color: #7c3aed; } - .xl\:-mr-40 { - margin-right: -10rem; + .xl\:border-purple-700 { + border-color: #6d28d9; } - .xl\:-mb-40 { - margin-bottom: -10rem; + .xl\:border-purple-800 { + border-color: #5b21b6; } - .xl\:-ml-40 { - margin-left: -10rem; + .xl\:border-purple-900 { + border-color: #4c1d95; } - .xl\:-mt-44 { - margin-top: -11rem; + .xl\:border-pink-50 { + border-color: #fdf2f8; } - .xl\:-mr-44 { - margin-right: -11rem; + .xl\:border-pink-100 { + border-color: #fce7f3; } - .xl\:-mb-44 { - margin-bottom: -11rem; + .xl\:border-pink-200 { + border-color: #fbcfe8; } - .xl\:-ml-44 { - margin-left: -11rem; + .xl\:border-pink-300 { + border-color: #f9a8d4; } - .xl\:-mt-48 { - margin-top: -12rem; + .xl\:border-pink-400 { + border-color: #f472b6; } - .xl\:-mr-48 { - margin-right: -12rem; + .xl\:border-pink-500 { + border-color: #ec4899; } - .xl\:-mb-48 { - margin-bottom: -12rem; + .xl\:border-pink-600 { + border-color: #db2777; } - .xl\:-ml-48 { - margin-left: -12rem; + .xl\:border-pink-700 { + border-color: #be185d; } - .xl\:-mt-52 { - margin-top: -13rem; + .xl\:border-pink-800 { + border-color: #9d174d; } - .xl\:-mr-52 { - margin-right: -13rem; + .xl\:border-pink-900 { + border-color: #831843; } - .xl\:-mb-52 { - margin-bottom: -13rem; + .group:hover .xl\:group-hover\:border-transparent { + border-color: transparent; } - .xl\:-ml-52 { - margin-left: -13rem; + .group:hover .xl\:group-hover\:border-current { + border-color: currentColor; } - .xl\:-mt-56 { - margin-top: -14rem; + .group:hover .xl\:group-hover\:border-black { + border-color: #000; } - .xl\:-mr-56 { - margin-right: -14rem; + .group:hover .xl\:group-hover\:border-white { + border-color: #fff; } - .xl\:-mb-56 { - margin-bottom: -14rem; + .group:hover .xl\:group-hover\:border-gray-50 { + border-color: #f9fafb; } - .xl\:-ml-56 { - margin-left: -14rem; + .group:hover .xl\:group-hover\:border-gray-100 { + border-color: #f3f4f6; } - .xl\:-mt-60 { - margin-top: -15rem; + .group:hover .xl\:group-hover\:border-gray-200 { + border-color: #e5e7eb; } - .xl\:-mr-60 { - margin-right: -15rem; + .group:hover .xl\:group-hover\:border-gray-300 { + border-color: #d1d5db; } - .xl\:-mb-60 { - margin-bottom: -15rem; + .group:hover .xl\:group-hover\:border-gray-400 { + border-color: #9ca3af; } - .xl\:-ml-60 { - margin-left: -15rem; + .group:hover .xl\:group-hover\:border-gray-500 { + border-color: #6b7280; } - .xl\:-mt-64 { - margin-top: -16rem; + .group:hover .xl\:group-hover\:border-gray-600 { + border-color: #4b5563; } - .xl\:-mr-64 { - margin-right: -16rem; + .group:hover .xl\:group-hover\:border-gray-700 { + border-color: #374151; } - .xl\:-mb-64 { - margin-bottom: -16rem; + .group:hover .xl\:group-hover\:border-gray-800 { + border-color: #1f2937; } - .xl\:-ml-64 { - margin-left: -16rem; + .group:hover .xl\:group-hover\:border-gray-900 { + border-color: #111827; } - .xl\:-mt-72 { - margin-top: -18rem; + .group:hover .xl\:group-hover\:border-red-50 { + border-color: #fef2f2; } - .xl\:-mr-72 { - margin-right: -18rem; + .group:hover .xl\:group-hover\:border-red-100 { + border-color: #fee2e2; } - .xl\:-mb-72 { - margin-bottom: -18rem; + .group:hover .xl\:group-hover\:border-red-200 { + border-color: #fecaca; } - .xl\:-ml-72 { - margin-left: -18rem; + .group:hover .xl\:group-hover\:border-red-300 { + border-color: #fca5a5; } - .xl\:-mt-80 { - margin-top: -20rem; + .group:hover .xl\:group-hover\:border-red-400 { + border-color: #f87171; } - .xl\:-mr-80 { - margin-right: -20rem; + .group:hover .xl\:group-hover\:border-red-500 { + border-color: #ef4444; } - .xl\:-mb-80 { - margin-bottom: -20rem; + .group:hover .xl\:group-hover\:border-red-600 { + border-color: #dc2626; } - .xl\:-ml-80 { - margin-left: -20rem; + .group:hover .xl\:group-hover\:border-red-700 { + border-color: #b91c1c; } - .xl\:-mt-96 { - margin-top: -24rem; + .group:hover .xl\:group-hover\:border-red-800 { + border-color: #991b1b; } - .xl\:-mr-96 { - margin-right: -24rem; + .group:hover .xl\:group-hover\:border-red-900 { + border-color: #7f1d1d; } - .xl\:-mb-96 { - margin-bottom: -24rem; + .group:hover .xl\:group-hover\:border-yellow-50 { + border-color: #fffbeb; } - .xl\:-ml-96 { - margin-left: -24rem; + .group:hover .xl\:group-hover\:border-yellow-100 { + border-color: #fef3c7; } - .xl\:-mt-px { - margin-top: -1px; + .group:hover .xl\:group-hover\:border-yellow-200 { + border-color: #fde68a; } - .xl\:-mr-px { - margin-right: -1px; + .group:hover .xl\:group-hover\:border-yellow-300 { + border-color: #fcd34d; } - .xl\:-mb-px { - margin-bottom: -1px; + .group:hover .xl\:group-hover\:border-yellow-400 { + border-color: #fbbf24; } - .xl\:-ml-px { - margin-left: -1px; + .group:hover .xl\:group-hover\:border-yellow-500 { + border-color: #f59e0b; } - .xl\:-mt-0\.5 { - margin-top: -0.125rem; + .group:hover .xl\:group-hover\:border-yellow-600 { + border-color: #d97706; } - .xl\:-mr-0\.5 { - margin-right: -0.125rem; + .group:hover .xl\:group-hover\:border-yellow-700 { + border-color: #b45309; } - .xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .group:hover .xl\:group-hover\:border-yellow-800 { + border-color: #92400e; } - .xl\:-ml-0\.5 { - margin-left: -0.125rem; + .group:hover .xl\:group-hover\:border-yellow-900 { + border-color: #78350f; } - .xl\:-mt-1\.5 { - margin-top: -0.375rem; + .group:hover .xl\:group-hover\:border-green-50 { + border-color: #ecfdf5; } - .xl\:-mr-1\.5 { - margin-right: -0.375rem; + .group:hover .xl\:group-hover\:border-green-100 { + border-color: #d1fae5; } - .xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .group:hover .xl\:group-hover\:border-green-200 { + border-color: #a7f3d0; } - .xl\:-ml-1\.5 { - margin-left: -0.375rem; + .group:hover .xl\:group-hover\:border-green-300 { + border-color: #6ee7b7; } - .xl\:-mt-2\.5 { - margin-top: -0.625rem; + .group:hover .xl\:group-hover\:border-green-400 { + border-color: #34d399; } - .xl\:-mr-2\.5 { - margin-right: -0.625rem; + .group:hover .xl\:group-hover\:border-green-500 { + border-color: #10b981; } - .xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .group:hover .xl\:group-hover\:border-green-600 { + border-color: #059669; } - .xl\:-ml-2\.5 { - margin-left: -0.625rem; + .group:hover .xl\:group-hover\:border-green-700 { + border-color: #047857; } - .xl\:-mt-3\.5 { - margin-top: -0.875rem; + .group:hover .xl\:group-hover\:border-green-800 { + border-color: #065f46; } - .xl\:-mr-3\.5 { - margin-right: -0.875rem; + .group:hover .xl\:group-hover\:border-green-900 { + border-color: #064e3b; } - .xl\:-mb-3\.5 { - margin-bottom: -0.875rem; + .group:hover .xl\:group-hover\:border-blue-50 { + border-color: #eff6ff; } - .xl\:-ml-3\.5 { - margin-left: -0.875rem; + .group:hover .xl\:group-hover\:border-blue-100 { + border-color: #dbeafe; } - .xl\:max-h-0 { - max-height: 0px; + .group:hover .xl\:group-hover\:border-blue-200 { + border-color: #bfdbfe; } - .xl\:max-h-1 { - max-height: 0.25rem; + .group:hover .xl\:group-hover\:border-blue-300 { + border-color: #93c5fd; } - .xl\:max-h-2 { - max-height: 0.5rem; + .group:hover .xl\:group-hover\:border-blue-400 { + border-color: #60a5fa; } - .xl\:max-h-3 { - max-height: 0.75rem; + .group:hover .xl\:group-hover\:border-blue-500 { + border-color: #3b82f6; } - .xl\:max-h-4 { - max-height: 1rem; + .group:hover .xl\:group-hover\:border-blue-600 { + border-color: #2563eb; } - .xl\:max-h-5 { - max-height: 1.25rem; + .group:hover .xl\:group-hover\:border-blue-700 { + border-color: #1d4ed8; } - .xl\:max-h-6 { - max-height: 1.5rem; + .group:hover .xl\:group-hover\:border-blue-800 { + border-color: #1e40af; } - .xl\:max-h-7 { - max-height: 1.75rem; + .group:hover .xl\:group-hover\:border-blue-900 { + border-color: #1e3a8a; } - .xl\:max-h-8 { - max-height: 2rem; + .group:hover .xl\:group-hover\:border-indigo-50 { + border-color: #eef2ff; } - .xl\:max-h-9 { - max-height: 2.25rem; + .group:hover .xl\:group-hover\:border-indigo-100 { + border-color: #e0e7ff; } - .xl\:max-h-10 { - max-height: 2.5rem; + .group:hover .xl\:group-hover\:border-indigo-200 { + border-color: #c7d2fe; } - .xl\:max-h-11 { - max-height: 2.75rem; + .group:hover .xl\:group-hover\:border-indigo-300 { + border-color: #a5b4fc; } - .xl\:max-h-12 { - max-height: 3rem; + .group:hover .xl\:group-hover\:border-indigo-400 { + border-color: #818cf8; } - .xl\:max-h-14 { - max-height: 3.5rem; + .group:hover .xl\:group-hover\:border-indigo-500 { + border-color: #6366f1; } - .xl\:max-h-16 { - max-height: 4rem; + .group:hover .xl\:group-hover\:border-indigo-600 { + border-color: #4f46e5; } - .xl\:max-h-20 { - max-height: 5rem; + .group:hover .xl\:group-hover\:border-indigo-700 { + border-color: #4338ca; } - .xl\:max-h-24 { - max-height: 6rem; + .group:hover .xl\:group-hover\:border-indigo-800 { + border-color: #3730a3; } - .xl\:max-h-28 { - max-height: 7rem; + .group:hover .xl\:group-hover\:border-indigo-900 { + border-color: #312e81; } - .xl\:max-h-32 { - max-height: 8rem; + .group:hover .xl\:group-hover\:border-purple-50 { + border-color: #f5f3ff; } - .xl\:max-h-36 { - max-height: 9rem; + .group:hover .xl\:group-hover\:border-purple-100 { + border-color: #ede9fe; } - .xl\:max-h-40 { - max-height: 10rem; + .group:hover .xl\:group-hover\:border-purple-200 { + border-color: #ddd6fe; } - .xl\:max-h-44 { - max-height: 11rem; + .group:hover .xl\:group-hover\:border-purple-300 { + border-color: #c4b5fd; } - .xl\:max-h-48 { - max-height: 12rem; + .group:hover .xl\:group-hover\:border-purple-400 { + border-color: #a78bfa; } - .xl\:max-h-52 { - max-height: 13rem; + .group:hover .xl\:group-hover\:border-purple-500 { + border-color: #8b5cf6; } - .xl\:max-h-56 { - max-height: 14rem; + .group:hover .xl\:group-hover\:border-purple-600 { + border-color: #7c3aed; } - .xl\:max-h-60 { - max-height: 15rem; + .group:hover .xl\:group-hover\:border-purple-700 { + border-color: #6d28d9; } - .xl\:max-h-64 { - max-height: 16rem; + .group:hover .xl\:group-hover\:border-purple-800 { + border-color: #5b21b6; } - .xl\:max-h-72 { - max-height: 18rem; + .group:hover .xl\:group-hover\:border-purple-900 { + border-color: #4c1d95; } - .xl\:max-h-80 { - max-height: 20rem; + .group:hover .xl\:group-hover\:border-pink-50 { + border-color: #fdf2f8; } - .xl\:max-h-96 { - max-height: 24rem; + .group:hover .xl\:group-hover\:border-pink-100 { + border-color: #fce7f3; } - .xl\:max-h-px { - max-height: 1px; + .group:hover .xl\:group-hover\:border-pink-200 { + border-color: #fbcfe8; } - .xl\:max-h-0\.5 { - max-height: 0.125rem; + .group:hover .xl\:group-hover\:border-pink-300 { + border-color: #f9a8d4; } - .xl\:max-h-1\.5 { - max-height: 0.375rem; + .group:hover .xl\:group-hover\:border-pink-400 { + border-color: #f472b6; } - .xl\:max-h-2\.5 { - max-height: 0.625rem; + .group:hover .xl\:group-hover\:border-pink-500 { + border-color: #ec4899; } - .xl\:max-h-3\.5 { - max-height: 0.875rem; + .group:hover .xl\:group-hover\:border-pink-600 { + border-color: #db2777; } - .xl\:max-h-full { - max-height: 100%; + .group:hover .xl\:group-hover\:border-pink-700 { + border-color: #be185d; } - .xl\:max-h-screen { - max-height: 100vh; + .group:hover .xl\:group-hover\:border-pink-800 { + border-color: #9d174d; } - .xl\:max-w-0 { - max-width: 0rem; + .group:hover .xl\:group-hover\:border-pink-900 { + border-color: #831843; } - .xl\:max-w-none { - max-width: none; + .xl\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .xl\:max-w-xs { - max-width: 20rem; + .xl\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .xl\:max-w-sm { - max-width: 24rem; + .xl\:focus-within\:border-black:focus-within { + border-color: #000; } - .xl\:max-w-md { - max-width: 28rem; + .xl\:focus-within\:border-white:focus-within { + border-color: #fff; } - .xl\:max-w-lg { - max-width: 32rem; + .xl\:focus-within\:border-gray-50:focus-within { + border-color: #f9fafb; } - .xl\:max-w-xl { - max-width: 36rem; + .xl\:focus-within\:border-gray-100:focus-within { + border-color: #f3f4f6; } - .xl\:max-w-2xl { - max-width: 42rem; + .xl\:focus-within\:border-gray-200:focus-within { + border-color: #e5e7eb; } - .xl\:max-w-3xl { - max-width: 48rem; + .xl\:focus-within\:border-gray-300:focus-within { + border-color: #d1d5db; } - .xl\:max-w-4xl { - max-width: 56rem; + .xl\:focus-within\:border-gray-400:focus-within { + border-color: #9ca3af; } - .xl\:max-w-5xl { - max-width: 64rem; + .xl\:focus-within\:border-gray-500:focus-within { + border-color: #6b7280; } - .xl\:max-w-6xl { - max-width: 72rem; + .xl\:focus-within\:border-gray-600:focus-within { + border-color: #4b5563; } - .xl\:max-w-7xl { - max-width: 80rem; + .xl\:focus-within\:border-gray-700:focus-within { + border-color: #374151; } - .xl\:max-w-full { - max-width: 100%; + .xl\:focus-within\:border-gray-800:focus-within { + border-color: #1f2937; } - .xl\:max-w-min { - max-width: min-content; + .xl\:focus-within\:border-gray-900:focus-within { + border-color: #111827; } - .xl\:max-w-max { - max-width: max-content; + .xl\:focus-within\:border-red-50:focus-within { + border-color: #fef2f2; } - .xl\:max-w-prose { - max-width: 65ch; + .xl\:focus-within\:border-red-100:focus-within { + border-color: #fee2e2; } - .xl\:max-w-screen-sm { - max-width: 640px; + .xl\:focus-within\:border-red-200:focus-within { + border-color: #fecaca; } - .xl\:max-w-screen-md { - max-width: 768px; + .xl\:focus-within\:border-red-300:focus-within { + border-color: #fca5a5; } - .xl\:max-w-screen-lg { - max-width: 1024px; + .xl\:focus-within\:border-red-400:focus-within { + border-color: #f87171; } - .xl\:max-w-screen-xl { - max-width: 1280px; + .xl\:focus-within\:border-red-500:focus-within { + border-color: #ef4444; } - .xl\:max-w-screen-2xl { - max-width: 1536px; + .xl\:focus-within\:border-red-600:focus-within { + border-color: #dc2626; } - .xl\:min-h-0 { - min-height: 0px; + .xl\:focus-within\:border-red-700:focus-within { + border-color: #b91c1c; } - .xl\:min-h-full { - min-height: 100%; + .xl\:focus-within\:border-red-800:focus-within { + border-color: #991b1b; } - .xl\:min-h-screen { - min-height: 100vh; + .xl\:focus-within\:border-red-900:focus-within { + border-color: #7f1d1d; } - .xl\:min-w-0 { - min-width: 0px; + .xl\:focus-within\:border-yellow-50:focus-within { + border-color: #fffbeb; } - .xl\:min-w-full { - min-width: 100%; + .xl\:focus-within\:border-yellow-100:focus-within { + border-color: #fef3c7; } - .xl\:min-w-min { - min-width: min-content; + .xl\:focus-within\:border-yellow-200:focus-within { + border-color: #fde68a; } - .xl\:min-w-max { - min-width: max-content; + .xl\:focus-within\:border-yellow-300:focus-within { + border-color: #fcd34d; } - .xl\:object-contain { - object-fit: contain; + .xl\:focus-within\:border-yellow-400:focus-within { + border-color: #fbbf24; } - .xl\:object-cover { - object-fit: cover; + .xl\:focus-within\:border-yellow-500:focus-within { + border-color: #f59e0b; } - .xl\:object-fill { - object-fit: fill; + .xl\:focus-within\:border-yellow-600:focus-within { + border-color: #d97706; } - .xl\:object-none { - object-fit: none; + .xl\:focus-within\:border-yellow-700:focus-within { + border-color: #b45309; } - .xl\:object-scale-down { - object-fit: scale-down; + .xl\:focus-within\:border-yellow-800:focus-within { + border-color: #92400e; } - .xl\:object-bottom { - object-position: bottom; + .xl\:focus-within\:border-yellow-900:focus-within { + border-color: #78350f; } - .xl\:object-center { - object-position: center; + .xl\:focus-within\:border-green-50:focus-within { + border-color: #ecfdf5; } - .xl\:object-left { - object-position: left; + .xl\:focus-within\:border-green-100:focus-within { + border-color: #d1fae5; } - .xl\:object-left-bottom { - object-position: left bottom; + .xl\:focus-within\:border-green-200:focus-within { + border-color: #a7f3d0; } - .xl\:object-left-top { - object-position: left top; + .xl\:focus-within\:border-green-300:focus-within { + border-color: #6ee7b7; } - .xl\:object-right { - object-position: right; + .xl\:focus-within\:border-green-400:focus-within { + border-color: #34d399; } - .xl\:object-right-bottom { - object-position: right bottom; + .xl\:focus-within\:border-green-500:focus-within { + border-color: #10b981; } - .xl\:object-right-top { - object-position: right top; + .xl\:focus-within\:border-green-600:focus-within { + border-color: #059669; } - .xl\:object-top { - object-position: top; + .xl\:focus-within\:border-green-700:focus-within { + border-color: #047857; } - .xl\:opacity-0 { - opacity: 0; + .xl\:focus-within\:border-green-800:focus-within { + border-color: #065f46; } - .xl\:opacity-5 { - opacity: 0.05; + .xl\:focus-within\:border-green-900:focus-within { + border-color: #064e3b; } - .xl\:opacity-10 { - opacity: 0.1; + .xl\:focus-within\:border-blue-50:focus-within { + border-color: #eff6ff; } - .xl\:opacity-20 { - opacity: 0.2; + .xl\:focus-within\:border-blue-100:focus-within { + border-color: #dbeafe; } - .xl\:opacity-25 { - opacity: 0.25; + .xl\:focus-within\:border-blue-200:focus-within { + border-color: #bfdbfe; } - .xl\:opacity-30 { - opacity: 0.3; + .xl\:focus-within\:border-blue-300:focus-within { + border-color: #93c5fd; } - .xl\:opacity-40 { - opacity: 0.4; + .xl\:focus-within\:border-blue-400:focus-within { + border-color: #60a5fa; } - .xl\:opacity-50 { - opacity: 0.5; + .xl\:focus-within\:border-blue-500:focus-within { + border-color: #3b82f6; } - .xl\:opacity-60 { - opacity: 0.6; + .xl\:focus-within\:border-blue-600:focus-within { + border-color: #2563eb; } - .xl\:opacity-70 { - opacity: 0.7; + .xl\:focus-within\:border-blue-700:focus-within { + border-color: #1d4ed8; } - .xl\:opacity-75 { - opacity: 0.75; + .xl\:focus-within\:border-blue-800:focus-within { + border-color: #1e40af; } - .xl\:opacity-80 { - opacity: 0.8; + .xl\:focus-within\:border-blue-900:focus-within { + border-color: #1e3a8a; } - .xl\:opacity-90 { - opacity: 0.9; + .xl\:focus-within\:border-indigo-50:focus-within { + border-color: #eef2ff; } - .xl\:opacity-95 { - opacity: 0.95; + .xl\:focus-within\:border-indigo-100:focus-within { + border-color: #e0e7ff; } - .xl\:opacity-100 { - opacity: 1; + .xl\:focus-within\:border-indigo-200:focus-within { + border-color: #c7d2fe; } - .group:hover .xl\:group-hover\:opacity-0 { - opacity: 0; + .xl\:focus-within\:border-indigo-300:focus-within { + border-color: #a5b4fc; } - .group:hover .xl\:group-hover\:opacity-5 { - opacity: 0.05; + .xl\:focus-within\:border-indigo-400:focus-within { + border-color: #818cf8; } - .group:hover .xl\:group-hover\:opacity-10 { - opacity: 0.1; + .xl\:focus-within\:border-indigo-500:focus-within { + border-color: #6366f1; } - .group:hover .xl\:group-hover\:opacity-20 { - opacity: 0.2; + .xl\:focus-within\:border-indigo-600:focus-within { + border-color: #4f46e5; } - .group:hover .xl\:group-hover\:opacity-25 { - opacity: 0.25; + .xl\:focus-within\:border-indigo-700:focus-within { + border-color: #4338ca; } - .group:hover .xl\:group-hover\:opacity-30 { - opacity: 0.3; + .xl\:focus-within\:border-indigo-800:focus-within { + border-color: #3730a3; } - .group:hover .xl\:group-hover\:opacity-40 { - opacity: 0.4; + .xl\:focus-within\:border-indigo-900:focus-within { + border-color: #312e81; } - .group:hover .xl\:group-hover\:opacity-50 { - opacity: 0.5; + .xl\:focus-within\:border-purple-50:focus-within { + border-color: #f5f3ff; } - .group:hover .xl\:group-hover\:opacity-60 { - opacity: 0.6; + .xl\:focus-within\:border-purple-100:focus-within { + border-color: #ede9fe; } - .group:hover .xl\:group-hover\:opacity-70 { - opacity: 0.7; + .xl\:focus-within\:border-purple-200:focus-within { + border-color: #ddd6fe; } - .group:hover .xl\:group-hover\:opacity-75 { - opacity: 0.75; + .xl\:focus-within\:border-purple-300:focus-within { + border-color: #c4b5fd; } - .group:hover .xl\:group-hover\:opacity-80 { - opacity: 0.8; + .xl\:focus-within\:border-purple-400:focus-within { + border-color: #a78bfa; } - .group:hover .xl\:group-hover\:opacity-90 { - opacity: 0.9; + .xl\:focus-within\:border-purple-500:focus-within { + border-color: #8b5cf6; } - .group:hover .xl\:group-hover\:opacity-95 { - opacity: 0.95; + .xl\:focus-within\:border-purple-600:focus-within { + border-color: #7c3aed; } - .group:hover .xl\:group-hover\:opacity-100 { - opacity: 1; + .xl\:focus-within\:border-purple-700:focus-within { + border-color: #6d28d9; } - .xl\:focus-within\:opacity-0:focus-within { - opacity: 0; + .xl\:focus-within\:border-purple-800:focus-within { + border-color: #5b21b6; } - .xl\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .xl\:focus-within\:border-purple-900:focus-within { + border-color: #4c1d95; } - .xl\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .xl\:focus-within\:border-pink-50:focus-within { + border-color: #fdf2f8; } - .xl\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .xl\:focus-within\:border-pink-100:focus-within { + border-color: #fce7f3; } - .xl\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .xl\:focus-within\:border-pink-200:focus-within { + border-color: #fbcfe8; } - .xl\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .xl\:focus-within\:border-pink-300:focus-within { + border-color: #f9a8d4; } - .xl\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .xl\:focus-within\:border-pink-400:focus-within { + border-color: #f472b6; } - .xl\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .xl\:focus-within\:border-pink-500:focus-within { + border-color: #ec4899; } - .xl\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .xl\:focus-within\:border-pink-600:focus-within { + border-color: #db2777; } - .xl\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .xl\:focus-within\:border-pink-700:focus-within { + border-color: #be185d; } - .xl\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .xl\:focus-within\:border-pink-800:focus-within { + border-color: #9d174d; } - .xl\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .xl\:focus-within\:border-pink-900:focus-within { + border-color: #831843; } - .xl\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .xl\:hover\:border-transparent:hover { + border-color: transparent; } - .xl\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .xl\:hover\:border-current:hover { + border-color: currentColor; } - .xl\:focus-within\:opacity-100:focus-within { - opacity: 1; + .xl\:hover\:border-black:hover { + border-color: #000; } - .xl\:hover\:opacity-0:hover { - opacity: 0; + .xl\:hover\:border-white:hover { + border-color: #fff; } - .xl\:hover\:opacity-5:hover { - opacity: 0.05; + .xl\:hover\:border-gray-50:hover { + border-color: #f9fafb; } - .xl\:hover\:opacity-10:hover { - opacity: 0.1; + .xl\:hover\:border-gray-100:hover { + border-color: #f3f4f6; } - .xl\:hover\:opacity-20:hover { - opacity: 0.2; + .xl\:hover\:border-gray-200:hover { + border-color: #e5e7eb; } - .xl\:hover\:opacity-25:hover { - opacity: 0.25; + .xl\:hover\:border-gray-300:hover { + border-color: #d1d5db; } - .xl\:hover\:opacity-30:hover { - opacity: 0.3; + .xl\:hover\:border-gray-400:hover { + border-color: #9ca3af; } - .xl\:hover\:opacity-40:hover { - opacity: 0.4; + .xl\:hover\:border-gray-500:hover { + border-color: #6b7280; } - .xl\:hover\:opacity-50:hover { - opacity: 0.5; + .xl\:hover\:border-gray-600:hover { + border-color: #4b5563; } - .xl\:hover\:opacity-60:hover { - opacity: 0.6; + .xl\:hover\:border-gray-700:hover { + border-color: #374151; } - .xl\:hover\:opacity-70:hover { - opacity: 0.7; + .xl\:hover\:border-gray-800:hover { + border-color: #1f2937; } - .xl\:hover\:opacity-75:hover { - opacity: 0.75; + .xl\:hover\:border-gray-900:hover { + border-color: #111827; } - .xl\:hover\:opacity-80:hover { - opacity: 0.8; + .xl\:hover\:border-red-50:hover { + border-color: #fef2f2; } - .xl\:hover\:opacity-90:hover { - opacity: 0.9; + .xl\:hover\:border-red-100:hover { + border-color: #fee2e2; } - .xl\:hover\:opacity-95:hover { - opacity: 0.95; + .xl\:hover\:border-red-200:hover { + border-color: #fecaca; } - .xl\:hover\:opacity-100:hover { - opacity: 1; + .xl\:hover\:border-red-300:hover { + border-color: #fca5a5; } - .xl\:focus\:opacity-0:focus { - opacity: 0; + .xl\:hover\:border-red-400:hover { + border-color: #f87171; } - .xl\:focus\:opacity-5:focus { - opacity: 0.05; + .xl\:hover\:border-red-500:hover { + border-color: #ef4444; } - .xl\:focus\:opacity-10:focus { - opacity: 0.1; + .xl\:hover\:border-red-600:hover { + border-color: #dc2626; } - .xl\:focus\:opacity-20:focus { - opacity: 0.2; + .xl\:hover\:border-red-700:hover { + border-color: #b91c1c; } - .xl\:focus\:opacity-25:focus { - opacity: 0.25; + .xl\:hover\:border-red-800:hover { + border-color: #991b1b; } - .xl\:focus\:opacity-30:focus { - opacity: 0.3; + .xl\:hover\:border-red-900:hover { + border-color: #7f1d1d; } - .xl\:focus\:opacity-40:focus { - opacity: 0.4; + .xl\:hover\:border-yellow-50:hover { + border-color: #fffbeb; } - .xl\:focus\:opacity-50:focus { - opacity: 0.5; + .xl\:hover\:border-yellow-100:hover { + border-color: #fef3c7; } - .xl\:focus\:opacity-60:focus { - opacity: 0.6; + .xl\:hover\:border-yellow-200:hover { + border-color: #fde68a; } - .xl\:focus\:opacity-70:focus { - opacity: 0.7; + .xl\:hover\:border-yellow-300:hover { + border-color: #fcd34d; } - .xl\:focus\:opacity-75:focus { - opacity: 0.75; + .xl\:hover\:border-yellow-400:hover { + border-color: #fbbf24; } - .xl\:focus\:opacity-80:focus { - opacity: 0.8; + .xl\:hover\:border-yellow-500:hover { + border-color: #f59e0b; } - .xl\:focus\:opacity-90:focus { - opacity: 0.9; + .xl\:hover\:border-yellow-600:hover { + border-color: #d97706; } - .xl\:focus\:opacity-95:focus { - opacity: 0.95; + .xl\:hover\:border-yellow-700:hover { + border-color: #b45309; } - .xl\:focus\:opacity-100:focus { - opacity: 1; + .xl\:hover\:border-yellow-800:hover { + border-color: #92400e; } - .xl\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .xl\:hover\:border-yellow-900:hover { + border-color: #78350f; } - .xl\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .xl\:hover\:border-green-50:hover { + border-color: #ecfdf5; } - .xl\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .xl\:hover\:border-green-100:hover { + border-color: #d1fae5; } - .xl\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .xl\:hover\:border-green-200:hover { + border-color: #a7f3d0; } - .xl\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .xl\:hover\:border-green-300:hover { + border-color: #6ee7b7; } - .xl\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .xl\:hover\:border-green-400:hover { + border-color: #34d399; } - .xl\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .xl\:hover\:border-green-500:hover { + border-color: #10b981; } - .xl\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .xl\:hover\:border-green-600:hover { + border-color: #059669; } - .xl\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .xl\:hover\:border-green-700:hover { + border-color: #047857; } - .xl\:overflow-auto { - overflow: auto; + .xl\:hover\:border-green-800:hover { + border-color: #065f46; } - .xl\:overflow-hidden { - overflow: hidden; + .xl\:hover\:border-green-900:hover { + border-color: #064e3b; } - .xl\:overflow-visible { - overflow: visible; + .xl\:hover\:border-blue-50:hover { + border-color: #eff6ff; } - .xl\:overflow-scroll { - overflow: scroll; + .xl\:hover\:border-blue-100:hover { + border-color: #dbeafe; } - .xl\:overflow-x-auto { - overflow-x: auto; + .xl\:hover\:border-blue-200:hover { + border-color: #bfdbfe; } - .xl\:overflow-y-auto { - overflow-y: auto; + .xl\:hover\:border-blue-300:hover { + border-color: #93c5fd; } - .xl\:overflow-x-hidden { - overflow-x: hidden; + .xl\:hover\:border-blue-400:hover { + border-color: #60a5fa; } - .xl\:overflow-y-hidden { - overflow-y: hidden; + .xl\:hover\:border-blue-500:hover { + border-color: #3b82f6; } - .xl\:overflow-x-visible { - overflow-x: visible; + .xl\:hover\:border-blue-600:hover { + border-color: #2563eb; } - .xl\:overflow-y-visible { - overflow-y: visible; + .xl\:hover\:border-blue-700:hover { + border-color: #1d4ed8; } - .xl\:overflow-x-scroll { - overflow-x: scroll; + .xl\:hover\:border-blue-800:hover { + border-color: #1e40af; } - .xl\:overflow-y-scroll { - overflow-y: scroll; + .xl\:hover\:border-blue-900:hover { + border-color: #1e3a8a; } - .xl\:overscroll-auto { - overscroll-behavior: auto; + .xl\:hover\:border-indigo-50:hover { + border-color: #eef2ff; } - .xl\:overscroll-contain { - overscroll-behavior: contain; + .xl\:hover\:border-indigo-100:hover { + border-color: #e0e7ff; } - .xl\:overscroll-none { - overscroll-behavior: none; + .xl\:hover\:border-indigo-200:hover { + border-color: #c7d2fe; } - .xl\:overscroll-y-auto { - overscroll-behavior-y: auto; + .xl\:hover\:border-indigo-300:hover { + border-color: #a5b4fc; } - .xl\:overscroll-y-contain { - overscroll-behavior-y: contain; + .xl\:hover\:border-indigo-400:hover { + border-color: #818cf8; } - .xl\:overscroll-y-none { - overscroll-behavior-y: none; + .xl\:hover\:border-indigo-500:hover { + border-color: #6366f1; } - .xl\:overscroll-x-auto { - overscroll-behavior-x: auto; + .xl\:hover\:border-indigo-600:hover { + border-color: #4f46e5; } - .xl\:overscroll-x-contain { - overscroll-behavior-x: contain; + .xl\:hover\:border-indigo-700:hover { + border-color: #4338ca; } - .xl\:overscroll-x-none { - overscroll-behavior-x: none; + .xl\:hover\:border-indigo-800:hover { + border-color: #3730a3; } - .xl\:p-0 { - padding: 0px; + .xl\:hover\:border-indigo-900:hover { + border-color: #312e81; } - .xl\:p-1 { - padding: 0.25rem; + .xl\:hover\:border-purple-50:hover { + border-color: #f5f3ff; } - .xl\:p-2 { - padding: 0.5rem; + .xl\:hover\:border-purple-100:hover { + border-color: #ede9fe; } - .xl\:p-3 { - padding: 0.75rem; + .xl\:hover\:border-purple-200:hover { + border-color: #ddd6fe; } - .xl\:p-4 { - padding: 1rem; + .xl\:hover\:border-purple-300:hover { + border-color: #c4b5fd; } - .xl\:p-5 { - padding: 1.25rem; + .xl\:hover\:border-purple-400:hover { + border-color: #a78bfa; } - .xl\:p-6 { - padding: 1.5rem; + .xl\:hover\:border-purple-500:hover { + border-color: #8b5cf6; } - .xl\:p-7 { - padding: 1.75rem; + .xl\:hover\:border-purple-600:hover { + border-color: #7c3aed; } - .xl\:p-8 { - padding: 2rem; + .xl\:hover\:border-purple-700:hover { + border-color: #6d28d9; } - .xl\:p-9 { - padding: 2.25rem; + .xl\:hover\:border-purple-800:hover { + border-color: #5b21b6; } - .xl\:p-10 { - padding: 2.5rem; + .xl\:hover\:border-purple-900:hover { + border-color: #4c1d95; } - .xl\:p-11 { - padding: 2.75rem; + .xl\:hover\:border-pink-50:hover { + border-color: #fdf2f8; } - .xl\:p-12 { - padding: 3rem; + .xl\:hover\:border-pink-100:hover { + border-color: #fce7f3; } - .xl\:p-14 { - padding: 3.5rem; + .xl\:hover\:border-pink-200:hover { + border-color: #fbcfe8; } - .xl\:p-16 { - padding: 4rem; + .xl\:hover\:border-pink-300:hover { + border-color: #f9a8d4; } - .xl\:p-20 { - padding: 5rem; + .xl\:hover\:border-pink-400:hover { + border-color: #f472b6; } - .xl\:p-24 { - padding: 6rem; + .xl\:hover\:border-pink-500:hover { + border-color: #ec4899; } - .xl\:p-28 { - padding: 7rem; + .xl\:hover\:border-pink-600:hover { + border-color: #db2777; } - .xl\:p-32 { - padding: 8rem; + .xl\:hover\:border-pink-700:hover { + border-color: #be185d; } - .xl\:p-36 { - padding: 9rem; + .xl\:hover\:border-pink-800:hover { + border-color: #9d174d; } - .xl\:p-40 { - padding: 10rem; + .xl\:hover\:border-pink-900:hover { + border-color: #831843; } - .xl\:p-44 { - padding: 11rem; + .xl\:focus\:border-transparent:focus { + border-color: transparent; } - .xl\:p-48 { - padding: 12rem; + .xl\:focus\:border-current:focus { + border-color: currentColor; } - .xl\:p-52 { - padding: 13rem; + .xl\:focus\:border-black:focus { + border-color: #000; } - .xl\:p-56 { - padding: 14rem; + .xl\:focus\:border-white:focus { + border-color: #fff; } - .xl\:p-60 { - padding: 15rem; + .xl\:focus\:border-gray-50:focus { + border-color: #f9fafb; } - .xl\:p-64 { - padding: 16rem; + .xl\:focus\:border-gray-100:focus { + border-color: #f3f4f6; } - .xl\:p-72 { - padding: 18rem; + .xl\:focus\:border-gray-200:focus { + border-color: #e5e7eb; } - .xl\:p-80 { - padding: 20rem; + .xl\:focus\:border-gray-300:focus { + border-color: #d1d5db; } - .xl\:p-96 { - padding: 24rem; + .xl\:focus\:border-gray-400:focus { + border-color: #9ca3af; } - .xl\:p-px { - padding: 1px; + .xl\:focus\:border-gray-500:focus { + border-color: #6b7280; } - .xl\:p-0\.5 { - padding: 0.125rem; + .xl\:focus\:border-gray-600:focus { + border-color: #4b5563; } - .xl\:p-1\.5 { - padding: 0.375rem; + .xl\:focus\:border-gray-700:focus { + border-color: #374151; } - .xl\:p-2\.5 { - padding: 0.625rem; + .xl\:focus\:border-gray-800:focus { + border-color: #1f2937; } - .xl\:p-3\.5 { - padding: 0.875rem; + .xl\:focus\:border-gray-900:focus { + border-color: #111827; } - .xl\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .xl\:focus\:border-red-50:focus { + border-color: #fef2f2; } - .xl\:px-0 { - padding-left: 0px; - padding-right: 0px; + .xl\:focus\:border-red-100:focus { + border-color: #fee2e2; } - .xl\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .xl\:focus\:border-red-200:focus { + border-color: #fecaca; } - .xl\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .xl\:focus\:border-red-300:focus { + border-color: #fca5a5; } - .xl\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .xl\:focus\:border-red-400:focus { + border-color: #f87171; } - .xl\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .xl\:focus\:border-red-500:focus { + border-color: #ef4444; } - .xl\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .xl\:focus\:border-red-600:focus { + border-color: #dc2626; } - .xl\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .xl\:focus\:border-red-700:focus { + border-color: #b91c1c; } - .xl\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .xl\:focus\:border-red-800:focus { + border-color: #991b1b; } - .xl\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .xl\:focus\:border-red-900:focus { + border-color: #7f1d1d; } - .xl\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .xl\:focus\:border-yellow-50:focus { + border-color: #fffbeb; } - .xl\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .xl\:focus\:border-yellow-100:focus { + border-color: #fef3c7; } - .xl\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .xl\:focus\:border-yellow-200:focus { + border-color: #fde68a; } - .xl\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .xl\:focus\:border-yellow-300:focus { + border-color: #fcd34d; } - .xl\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .xl\:focus\:border-yellow-400:focus { + border-color: #fbbf24; } - .xl\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .xl\:focus\:border-yellow-500:focus { + border-color: #f59e0b; } - .xl\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .xl\:focus\:border-yellow-600:focus { + border-color: #d97706; } - .xl\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .xl\:focus\:border-yellow-700:focus { + border-color: #b45309; } - .xl\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .xl\:focus\:border-yellow-800:focus { + border-color: #92400e; } - .xl\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .xl\:focus\:border-yellow-900:focus { + border-color: #78350f; } - .xl\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .xl\:focus\:border-green-50:focus { + border-color: #ecfdf5; } - .xl\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .xl\:focus\:border-green-100:focus { + border-color: #d1fae5; } - .xl\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .xl\:focus\:border-green-200:focus { + border-color: #a7f3d0; } - .xl\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .xl\:focus\:border-green-300:focus { + border-color: #6ee7b7; } - .xl\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .xl\:focus\:border-green-400:focus { + border-color: #34d399; } - .xl\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .xl\:focus\:border-green-500:focus { + border-color: #10b981; } - .xl\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .xl\:focus\:border-green-600:focus { + border-color: #059669; } - .xl\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .xl\:focus\:border-green-700:focus { + border-color: #047857; } - .xl\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .xl\:focus\:border-green-800:focus { + border-color: #065f46; } - .xl\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .xl\:focus\:border-green-900:focus { + border-color: #064e3b; } - .xl\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .xl\:focus\:border-blue-50:focus { + border-color: #eff6ff; } - .xl\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .xl\:focus\:border-blue-100:focus { + border-color: #dbeafe; } - .xl\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .xl\:focus\:border-blue-200:focus { + border-color: #bfdbfe; } - .xl\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .xl\:focus\:border-blue-300:focus { + border-color: #93c5fd; } - .xl\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .xl\:focus\:border-blue-400:focus { + border-color: #60a5fa; } - .xl\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .xl\:focus\:border-blue-500:focus { + border-color: #3b82f6; } - .xl\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .xl\:focus\:border-blue-600:focus { + border-color: #2563eb; } - .xl\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .xl\:focus\:border-blue-700:focus { + border-color: #1d4ed8; } - .xl\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .xl\:focus\:border-blue-800:focus { + border-color: #1e40af; } - .xl\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .xl\:focus\:border-blue-900:focus { + border-color: #1e3a8a; } - .xl\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .xl\:focus\:border-indigo-50:focus { + border-color: #eef2ff; } - .xl\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .xl\:focus\:border-indigo-100:focus { + border-color: #e0e7ff; } - .xl\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .xl\:focus\:border-indigo-200:focus { + border-color: #c7d2fe; } - .xl\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .xl\:focus\:border-indigo-300:focus { + border-color: #a5b4fc; } - .xl\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .xl\:focus\:border-indigo-400:focus { + border-color: #818cf8; } - .xl\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .xl\:focus\:border-indigo-500:focus { + border-color: #6366f1; } - .xl\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .xl\:focus\:border-indigo-600:focus { + border-color: #4f46e5; } - .xl\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .xl\:focus\:border-indigo-700:focus { + border-color: #4338ca; } - .xl\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .xl\:focus\:border-indigo-800:focus { + border-color: #3730a3; } - .xl\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .xl\:focus\:border-indigo-900:focus { + border-color: #312e81; } - .xl\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .xl\:focus\:border-purple-50:focus { + border-color: #f5f3ff; } - .xl\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .xl\:focus\:border-purple-100:focus { + border-color: #ede9fe; } - .xl\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .xl\:focus\:border-purple-200:focus { + border-color: #ddd6fe; } - .xl\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .xl\:focus\:border-purple-300:focus { + border-color: #c4b5fd; } - .xl\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .xl\:focus\:border-purple-400:focus { + border-color: #a78bfa; } - .xl\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .xl\:focus\:border-purple-500:focus { + border-color: #8b5cf6; } - .xl\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .xl\:focus\:border-purple-600:focus { + border-color: #7c3aed; } - .xl\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .xl\:focus\:border-purple-700:focus { + border-color: #6d28d9; } - .xl\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .xl\:focus\:border-purple-800:focus { + border-color: #5b21b6; } - .xl\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .xl\:focus\:border-purple-900:focus { + border-color: #4c1d95; } - .xl\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .xl\:focus\:border-pink-50:focus { + border-color: #fdf2f8; } - .xl\:px-px { - padding-left: 1px; - padding-right: 1px; + .xl\:focus\:border-pink-100:focus { + border-color: #fce7f3; } - .xl\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .xl\:focus\:border-pink-200:focus { + border-color: #fbcfe8; } - .xl\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .xl\:focus\:border-pink-300:focus { + border-color: #f9a8d4; } - .xl\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .xl\:focus\:border-pink-400:focus { + border-color: #f472b6; } - .xl\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .xl\:focus\:border-pink-500:focus { + border-color: #ec4899; } - .xl\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .xl\:focus\:border-pink-600:focus { + border-color: #db2777; } - .xl\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .xl\:focus\:border-pink-700:focus { + border-color: #be185d; } - .xl\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .xl\:focus\:border-pink-800:focus { + border-color: #9d174d; } - .xl\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .xl\:focus\:border-pink-900:focus { + border-color: #831843; } - .xl\:pt-0 { - padding-top: 0px; + .xl\:bg-transparent { + background-color: transparent; } - .xl\:pr-0 { - padding-right: 0px; + .xl\:bg-current { + background-color: currentColor; } - .xl\:pb-0 { - padding-bottom: 0px; + .xl\:bg-black { + background-color: #000; } - .xl\:pl-0 { - padding-left: 0px; + .xl\:bg-white { + background-color: #fff; } - .xl\:pt-1 { - padding-top: 0.25rem; + .xl\:bg-gray-50 { + background-color: #f9fafb; } - .xl\:pr-1 { - padding-right: 0.25rem; + .xl\:bg-gray-100 { + background-color: #f3f4f6; } - .xl\:pb-1 { - padding-bottom: 0.25rem; + .xl\:bg-gray-200 { + background-color: #e5e7eb; } - .xl\:pl-1 { - padding-left: 0.25rem; + .xl\:bg-gray-300 { + background-color: #d1d5db; } - .xl\:pt-2 { - padding-top: 0.5rem; + .xl\:bg-gray-400 { + background-color: #9ca3af; } - .xl\:pr-2 { - padding-right: 0.5rem; + .xl\:bg-gray-500 { + background-color: #6b7280; } - .xl\:pb-2 { - padding-bottom: 0.5rem; + .xl\:bg-gray-600 { + background-color: #4b5563; } - .xl\:pl-2 { - padding-left: 0.5rem; + .xl\:bg-gray-700 { + background-color: #374151; } - .xl\:pt-3 { - padding-top: 0.75rem; + .xl\:bg-gray-800 { + background-color: #1f2937; } - .xl\:pr-3 { - padding-right: 0.75rem; + .xl\:bg-gray-900 { + background-color: #111827; } - .xl\:pb-3 { - padding-bottom: 0.75rem; + .xl\:bg-red-50 { + background-color: #fef2f2; } - .xl\:pl-3 { - padding-left: 0.75rem; + .xl\:bg-red-100 { + background-color: #fee2e2; } - .xl\:pt-4 { - padding-top: 1rem; + .xl\:bg-red-200 { + background-color: #fecaca; } - .xl\:pr-4 { - padding-right: 1rem; + .xl\:bg-red-300 { + background-color: #fca5a5; } - .xl\:pb-4 { - padding-bottom: 1rem; + .xl\:bg-red-400 { + background-color: #f87171; } - .xl\:pl-4 { - padding-left: 1rem; + .xl\:bg-red-500 { + background-color: #ef4444; } - .xl\:pt-5 { - padding-top: 1.25rem; + .xl\:bg-red-600 { + background-color: #dc2626; } - .xl\:pr-5 { - padding-right: 1.25rem; + .xl\:bg-red-700 { + background-color: #b91c1c; } - .xl\:pb-5 { - padding-bottom: 1.25rem; + .xl\:bg-red-800 { + background-color: #991b1b; } - .xl\:pl-5 { - padding-left: 1.25rem; + .xl\:bg-red-900 { + background-color: #7f1d1d; } - .xl\:pt-6 { - padding-top: 1.5rem; + .xl\:bg-yellow-50 { + background-color: #fffbeb; } - .xl\:pr-6 { - padding-right: 1.5rem; + .xl\:bg-yellow-100 { + background-color: #fef3c7; } - .xl\:pb-6 { - padding-bottom: 1.5rem; + .xl\:bg-yellow-200 { + background-color: #fde68a; } - .xl\:pl-6 { - padding-left: 1.5rem; + .xl\:bg-yellow-300 { + background-color: #fcd34d; } - .xl\:pt-7 { - padding-top: 1.75rem; + .xl\:bg-yellow-400 { + background-color: #fbbf24; } - .xl\:pr-7 { - padding-right: 1.75rem; + .xl\:bg-yellow-500 { + background-color: #f59e0b; } - .xl\:pb-7 { - padding-bottom: 1.75rem; + .xl\:bg-yellow-600 { + background-color: #d97706; } - .xl\:pl-7 { - padding-left: 1.75rem; + .xl\:bg-yellow-700 { + background-color: #b45309; } - .xl\:pt-8 { - padding-top: 2rem; + .xl\:bg-yellow-800 { + background-color: #92400e; } - .xl\:pr-8 { - padding-right: 2rem; + .xl\:bg-yellow-900 { + background-color: #78350f; } - .xl\:pb-8 { - padding-bottom: 2rem; + .xl\:bg-green-50 { + background-color: #ecfdf5; } - .xl\:pl-8 { - padding-left: 2rem; + .xl\:bg-green-100 { + background-color: #d1fae5; } - .xl\:pt-9 { - padding-top: 2.25rem; + .xl\:bg-green-200 { + background-color: #a7f3d0; } - .xl\:pr-9 { - padding-right: 2.25rem; + .xl\:bg-green-300 { + background-color: #6ee7b7; } - .xl\:pb-9 { - padding-bottom: 2.25rem; + .xl\:bg-green-400 { + background-color: #34d399; } - .xl\:pl-9 { - padding-left: 2.25rem; + .xl\:bg-green-500 { + background-color: #10b981; } - .xl\:pt-10 { - padding-top: 2.5rem; + .xl\:bg-green-600 { + background-color: #059669; } - .xl\:pr-10 { - padding-right: 2.5rem; + .xl\:bg-green-700 { + background-color: #047857; } - .xl\:pb-10 { - padding-bottom: 2.5rem; + .xl\:bg-green-800 { + background-color: #065f46; } - .xl\:pl-10 { - padding-left: 2.5rem; + .xl\:bg-green-900 { + background-color: #064e3b; } - .xl\:pt-11 { - padding-top: 2.75rem; + .xl\:bg-blue-50 { + background-color: #eff6ff; } - .xl\:pr-11 { - padding-right: 2.75rem; + .xl\:bg-blue-100 { + background-color: #dbeafe; } - .xl\:pb-11 { - padding-bottom: 2.75rem; + .xl\:bg-blue-200 { + background-color: #bfdbfe; } - .xl\:pl-11 { - padding-left: 2.75rem; + .xl\:bg-blue-300 { + background-color: #93c5fd; } - .xl\:pt-12 { - padding-top: 3rem; + .xl\:bg-blue-400 { + background-color: #60a5fa; } - .xl\:pr-12 { - padding-right: 3rem; + .xl\:bg-blue-500 { + background-color: #3b82f6; } - .xl\:pb-12 { - padding-bottom: 3rem; + .xl\:bg-blue-600 { + background-color: #2563eb; } - .xl\:pl-12 { - padding-left: 3rem; + .xl\:bg-blue-700 { + background-color: #1d4ed8; } - .xl\:pt-14 { - padding-top: 3.5rem; + .xl\:bg-blue-800 { + background-color: #1e40af; } - .xl\:pr-14 { - padding-right: 3.5rem; + .xl\:bg-blue-900 { + background-color: #1e3a8a; } - .xl\:pb-14 { - padding-bottom: 3.5rem; + .xl\:bg-indigo-50 { + background-color: #eef2ff; } - .xl\:pl-14 { - padding-left: 3.5rem; + .xl\:bg-indigo-100 { + background-color: #e0e7ff; } - .xl\:pt-16 { - padding-top: 4rem; + .xl\:bg-indigo-200 { + background-color: #c7d2fe; } - .xl\:pr-16 { - padding-right: 4rem; + .xl\:bg-indigo-300 { + background-color: #a5b4fc; } - .xl\:pb-16 { - padding-bottom: 4rem; + .xl\:bg-indigo-400 { + background-color: #818cf8; } - .xl\:pl-16 { - padding-left: 4rem; + .xl\:bg-indigo-500 { + background-color: #6366f1; } - .xl\:pt-20 { - padding-top: 5rem; + .xl\:bg-indigo-600 { + background-color: #4f46e5; } - .xl\:pr-20 { - padding-right: 5rem; + .xl\:bg-indigo-700 { + background-color: #4338ca; } - .xl\:pb-20 { - padding-bottom: 5rem; + .xl\:bg-indigo-800 { + background-color: #3730a3; } - .xl\:pl-20 { - padding-left: 5rem; + .xl\:bg-indigo-900 { + background-color: #312e81; } - .xl\:pt-24 { - padding-top: 6rem; + .xl\:bg-purple-50 { + background-color: #f5f3ff; } - .xl\:pr-24 { - padding-right: 6rem; + .xl\:bg-purple-100 { + background-color: #ede9fe; } - .xl\:pb-24 { - padding-bottom: 6rem; + .xl\:bg-purple-200 { + background-color: #ddd6fe; } - .xl\:pl-24 { - padding-left: 6rem; + .xl\:bg-purple-300 { + background-color: #c4b5fd; } - .xl\:pt-28 { - padding-top: 7rem; + .xl\:bg-purple-400 { + background-color: #a78bfa; } - .xl\:pr-28 { - padding-right: 7rem; + .xl\:bg-purple-500 { + background-color: #8b5cf6; } - .xl\:pb-28 { - padding-bottom: 7rem; + .xl\:bg-purple-600 { + background-color: #7c3aed; } - .xl\:pl-28 { - padding-left: 7rem; + .xl\:bg-purple-700 { + background-color: #6d28d9; } - .xl\:pt-32 { - padding-top: 8rem; + .xl\:bg-purple-800 { + background-color: #5b21b6; } - .xl\:pr-32 { - padding-right: 8rem; + .xl\:bg-purple-900 { + background-color: #4c1d95; } - .xl\:pb-32 { - padding-bottom: 8rem; + .xl\:bg-pink-50 { + background-color: #fdf2f8; } - .xl\:pl-32 { - padding-left: 8rem; + .xl\:bg-pink-100 { + background-color: #fce7f3; } - .xl\:pt-36 { - padding-top: 9rem; + .xl\:bg-pink-200 { + background-color: #fbcfe8; } - .xl\:pr-36 { - padding-right: 9rem; + .xl\:bg-pink-300 { + background-color: #f9a8d4; } - .xl\:pb-36 { - padding-bottom: 9rem; + .xl\:bg-pink-400 { + background-color: #f472b6; } - .xl\:pl-36 { - padding-left: 9rem; + .xl\:bg-pink-500 { + background-color: #ec4899; } - .xl\:pt-40 { - padding-top: 10rem; + .xl\:bg-pink-600 { + background-color: #db2777; } - .xl\:pr-40 { - padding-right: 10rem; + .xl\:bg-pink-700 { + background-color: #be185d; } - .xl\:pb-40 { - padding-bottom: 10rem; + .xl\:bg-pink-800 { + background-color: #9d174d; } - .xl\:pl-40 { - padding-left: 10rem; + .xl\:bg-pink-900 { + background-color: #831843; } - .xl\:pt-44 { - padding-top: 11rem; + .group:hover .xl\:group-hover\:bg-transparent { + background-color: transparent; } - .xl\:pr-44 { - padding-right: 11rem; + .group:hover .xl\:group-hover\:bg-current { + background-color: currentColor; } - .xl\:pb-44 { - padding-bottom: 11rem; + .group:hover .xl\:group-hover\:bg-black { + background-color: #000; } - .xl\:pl-44 { - padding-left: 11rem; + .group:hover .xl\:group-hover\:bg-white { + background-color: #fff; } - .xl\:pt-48 { - padding-top: 12rem; + .group:hover .xl\:group-hover\:bg-gray-50 { + background-color: #f9fafb; } - .xl\:pr-48 { - padding-right: 12rem; + .group:hover .xl\:group-hover\:bg-gray-100 { + background-color: #f3f4f6; } - .xl\:pb-48 { - padding-bottom: 12rem; + .group:hover .xl\:group-hover\:bg-gray-200 { + background-color: #e5e7eb; } - .xl\:pl-48 { - padding-left: 12rem; + .group:hover .xl\:group-hover\:bg-gray-300 { + background-color: #d1d5db; } - .xl\:pt-52 { - padding-top: 13rem; + .group:hover .xl\:group-hover\:bg-gray-400 { + background-color: #9ca3af; } - .xl\:pr-52 { - padding-right: 13rem; + .group:hover .xl\:group-hover\:bg-gray-500 { + background-color: #6b7280; } - .xl\:pb-52 { - padding-bottom: 13rem; + .group:hover .xl\:group-hover\:bg-gray-600 { + background-color: #4b5563; } - .xl\:pl-52 { - padding-left: 13rem; + .group:hover .xl\:group-hover\:bg-gray-700 { + background-color: #374151; } - .xl\:pt-56 { - padding-top: 14rem; + .group:hover .xl\:group-hover\:bg-gray-800 { + background-color: #1f2937; } - .xl\:pr-56 { - padding-right: 14rem; + .group:hover .xl\:group-hover\:bg-gray-900 { + background-color: #111827; } - .xl\:pb-56 { - padding-bottom: 14rem; + .group:hover .xl\:group-hover\:bg-red-50 { + background-color: #fef2f2; } - .xl\:pl-56 { - padding-left: 14rem; + .group:hover .xl\:group-hover\:bg-red-100 { + background-color: #fee2e2; } - .xl\:pt-60 { - padding-top: 15rem; + .group:hover .xl\:group-hover\:bg-red-200 { + background-color: #fecaca; } - .xl\:pr-60 { - padding-right: 15rem; + .group:hover .xl\:group-hover\:bg-red-300 { + background-color: #fca5a5; } - .xl\:pb-60 { - padding-bottom: 15rem; + .group:hover .xl\:group-hover\:bg-red-400 { + background-color: #f87171; } - .xl\:pl-60 { - padding-left: 15rem; + .group:hover .xl\:group-hover\:bg-red-500 { + background-color: #ef4444; } - .xl\:pt-64 { - padding-top: 16rem; + .group:hover .xl\:group-hover\:bg-red-600 { + background-color: #dc2626; } - .xl\:pr-64 { - padding-right: 16rem; + .group:hover .xl\:group-hover\:bg-red-700 { + background-color: #b91c1c; } - .xl\:pb-64 { - padding-bottom: 16rem; + .group:hover .xl\:group-hover\:bg-red-800 { + background-color: #991b1b; } - .xl\:pl-64 { - padding-left: 16rem; + .group:hover .xl\:group-hover\:bg-red-900 { + background-color: #7f1d1d; } - .xl\:pt-72 { - padding-top: 18rem; + .group:hover .xl\:group-hover\:bg-yellow-50 { + background-color: #fffbeb; } - .xl\:pr-72 { - padding-right: 18rem; + .group:hover .xl\:group-hover\:bg-yellow-100 { + background-color: #fef3c7; } - .xl\:pb-72 { - padding-bottom: 18rem; + .group:hover .xl\:group-hover\:bg-yellow-200 { + background-color: #fde68a; } - .xl\:pl-72 { - padding-left: 18rem; + .group:hover .xl\:group-hover\:bg-yellow-300 { + background-color: #fcd34d; } - .xl\:pt-80 { - padding-top: 20rem; + .group:hover .xl\:group-hover\:bg-yellow-400 { + background-color: #fbbf24; } - .xl\:pr-80 { - padding-right: 20rem; + .group:hover .xl\:group-hover\:bg-yellow-500 { + background-color: #f59e0b; } - .xl\:pb-80 { - padding-bottom: 20rem; + .group:hover .xl\:group-hover\:bg-yellow-600 { + background-color: #d97706; } - .xl\:pl-80 { - padding-left: 20rem; + .group:hover .xl\:group-hover\:bg-yellow-700 { + background-color: #b45309; } - .xl\:pt-96 { - padding-top: 24rem; + .group:hover .xl\:group-hover\:bg-yellow-800 { + background-color: #92400e; } - .xl\:pr-96 { - padding-right: 24rem; + .group:hover .xl\:group-hover\:bg-yellow-900 { + background-color: #78350f; } - .xl\:pb-96 { - padding-bottom: 24rem; + .group:hover .xl\:group-hover\:bg-green-50 { + background-color: #ecfdf5; } - .xl\:pl-96 { - padding-left: 24rem; + .group:hover .xl\:group-hover\:bg-green-100 { + background-color: #d1fae5; } - .xl\:pt-px { - padding-top: 1px; + .group:hover .xl\:group-hover\:bg-green-200 { + background-color: #a7f3d0; } - .xl\:pr-px { - padding-right: 1px; + .group:hover .xl\:group-hover\:bg-green-300 { + background-color: #6ee7b7; } - .xl\:pb-px { - padding-bottom: 1px; + .group:hover .xl\:group-hover\:bg-green-400 { + background-color: #34d399; } - .xl\:pl-px { - padding-left: 1px; + .group:hover .xl\:group-hover\:bg-green-500 { + background-color: #10b981; } - .xl\:pt-0\.5 { - padding-top: 0.125rem; + .group:hover .xl\:group-hover\:bg-green-600 { + background-color: #059669; } - .xl\:pr-0\.5 { - padding-right: 0.125rem; + .group:hover .xl\:group-hover\:bg-green-700 { + background-color: #047857; } - .xl\:pb-0\.5 { - padding-bottom: 0.125rem; + .group:hover .xl\:group-hover\:bg-green-800 { + background-color: #065f46; } - .xl\:pl-0\.5 { - padding-left: 0.125rem; + .group:hover .xl\:group-hover\:bg-green-900 { + background-color: #064e3b; } - .xl\:pt-1\.5 { - padding-top: 0.375rem; + .group:hover .xl\:group-hover\:bg-blue-50 { + background-color: #eff6ff; } - .xl\:pr-1\.5 { - padding-right: 0.375rem; + .group:hover .xl\:group-hover\:bg-blue-100 { + background-color: #dbeafe; } - .xl\:pb-1\.5 { - padding-bottom: 0.375rem; + .group:hover .xl\:group-hover\:bg-blue-200 { + background-color: #bfdbfe; } - .xl\:pl-1\.5 { - padding-left: 0.375rem; + .group:hover .xl\:group-hover\:bg-blue-300 { + background-color: #93c5fd; } - .xl\:pt-2\.5 { - padding-top: 0.625rem; + .group:hover .xl\:group-hover\:bg-blue-400 { + background-color: #60a5fa; } - .xl\:pr-2\.5 { - padding-right: 0.625rem; + .group:hover .xl\:group-hover\:bg-blue-500 { + background-color: #3b82f6; } - .xl\:pb-2\.5 { - padding-bottom: 0.625rem; + .group:hover .xl\:group-hover\:bg-blue-600 { + background-color: #2563eb; } - .xl\:pl-2\.5 { - padding-left: 0.625rem; + .group:hover .xl\:group-hover\:bg-blue-700 { + background-color: #1d4ed8; } - .xl\:pt-3\.5 { - padding-top: 0.875rem; + .group:hover .xl\:group-hover\:bg-blue-800 { + background-color: #1e40af; } - .xl\:pr-3\.5 { - padding-right: 0.875rem; + .group:hover .xl\:group-hover\:bg-blue-900 { + background-color: #1e3a8a; } - .xl\:pb-3\.5 { - padding-bottom: 0.875rem; + .group:hover .xl\:group-hover\:bg-indigo-50 { + background-color: #eef2ff; } - .xl\:pl-3\.5 { - padding-left: 0.875rem; + .group:hover .xl\:group-hover\:bg-indigo-100 { + background-color: #e0e7ff; } - .xl\:placeholder-transparent::placeholder { - color: transparent; + .group:hover .xl\:group-hover\:bg-indigo-200 { + background-color: #c7d2fe; } - .xl\:placeholder-current::placeholder { - color: currentColor; + .group:hover .xl\:group-hover\:bg-indigo-300 { + background-color: #a5b4fc; } - .xl\:placeholder-black::placeholder { - color: #000; + .group:hover .xl\:group-hover\:bg-indigo-400 { + background-color: #818cf8; } - .xl\:placeholder-white::placeholder { - color: #fff; + .group:hover .xl\:group-hover\:bg-indigo-500 { + background-color: #6366f1; } - .xl\:placeholder-gray-50::placeholder { - color: #f9fafb; + .group:hover .xl\:group-hover\:bg-indigo-600 { + background-color: #4f46e5; } - .xl\:placeholder-gray-100::placeholder { - color: #f3f4f6; + .group:hover .xl\:group-hover\:bg-indigo-700 { + background-color: #4338ca; } - .xl\:placeholder-gray-200::placeholder { - color: #e5e7eb; + .group:hover .xl\:group-hover\:bg-indigo-800 { + background-color: #3730a3; } - .xl\:placeholder-gray-300::placeholder { - color: #d1d5db; + .group:hover .xl\:group-hover\:bg-indigo-900 { + background-color: #312e81; } - .xl\:placeholder-gray-400::placeholder { - color: #9ca3af; + .group:hover .xl\:group-hover\:bg-purple-50 { + background-color: #f5f3ff; } - .xl\:placeholder-gray-500::placeholder { - color: #6b7280; + .group:hover .xl\:group-hover\:bg-purple-100 { + background-color: #ede9fe; } - .xl\:placeholder-gray-600::placeholder { - color: #4b5563; + .group:hover .xl\:group-hover\:bg-purple-200 { + background-color: #ddd6fe; } - .xl\:placeholder-gray-700::placeholder { - color: #374151; + .group:hover .xl\:group-hover\:bg-purple-300 { + background-color: #c4b5fd; } - .xl\:placeholder-gray-800::placeholder { - color: #1f2937; + .group:hover .xl\:group-hover\:bg-purple-400 { + background-color: #a78bfa; } - .xl\:placeholder-gray-900::placeholder { - color: #111827; + .group:hover .xl\:group-hover\:bg-purple-500 { + background-color: #8b5cf6; } - .xl\:placeholder-red-50::placeholder { - color: #fef2f2; + .group:hover .xl\:group-hover\:bg-purple-600 { + background-color: #7c3aed; } - .xl\:placeholder-red-100::placeholder { - color: #fee2e2; + .group:hover .xl\:group-hover\:bg-purple-700 { + background-color: #6d28d9; } - .xl\:placeholder-red-200::placeholder { - color: #fecaca; + .group:hover .xl\:group-hover\:bg-purple-800 { + background-color: #5b21b6; } - .xl\:placeholder-red-300::placeholder { - color: #fca5a5; + .group:hover .xl\:group-hover\:bg-purple-900 { + background-color: #4c1d95; } - .xl\:placeholder-red-400::placeholder { - color: #f87171; + .group:hover .xl\:group-hover\:bg-pink-50 { + background-color: #fdf2f8; } - .xl\:placeholder-red-500::placeholder { - color: #ef4444; + .group:hover .xl\:group-hover\:bg-pink-100 { + background-color: #fce7f3; } - .xl\:placeholder-red-600::placeholder { - color: #dc2626; + .group:hover .xl\:group-hover\:bg-pink-200 { + background-color: #fbcfe8; } - .xl\:placeholder-red-700::placeholder { - color: #b91c1c; + .group:hover .xl\:group-hover\:bg-pink-300 { + background-color: #f9a8d4; } - .xl\:placeholder-red-800::placeholder { - color: #991b1b; + .group:hover .xl\:group-hover\:bg-pink-400 { + background-color: #f472b6; } - .xl\:placeholder-red-900::placeholder { - color: #7f1d1d; + .group:hover .xl\:group-hover\:bg-pink-500 { + background-color: #ec4899; } - .xl\:placeholder-yellow-50::placeholder { - color: #fffbeb; + .group:hover .xl\:group-hover\:bg-pink-600 { + background-color: #db2777; } - .xl\:placeholder-yellow-100::placeholder { - color: #fef3c7; + .group:hover .xl\:group-hover\:bg-pink-700 { + background-color: #be185d; } - .xl\:placeholder-yellow-200::placeholder { - color: #fde68a; + .group:hover .xl\:group-hover\:bg-pink-800 { + background-color: #9d174d; } - .xl\:placeholder-yellow-300::placeholder { - color: #fcd34d; + .group:hover .xl\:group-hover\:bg-pink-900 { + background-color: #831843; } - .xl\:placeholder-yellow-400::placeholder { - color: #fbbf24; + .xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .xl\:placeholder-yellow-500::placeholder { - color: #f59e0b; + .xl\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .xl\:placeholder-yellow-600::placeholder { - color: #d97706; + .xl\:focus-within\:bg-black:focus-within { + background-color: #000; } - .xl\:placeholder-yellow-700::placeholder { - color: #b45309; + .xl\:focus-within\:bg-white:focus-within { + background-color: #fff; } - .xl\:placeholder-yellow-800::placeholder { - color: #92400e; + .xl\:focus-within\:bg-gray-50:focus-within { + background-color: #f9fafb; } - .xl\:placeholder-yellow-900::placeholder { - color: #78350f; + .xl\:focus-within\:bg-gray-100:focus-within { + background-color: #f3f4f6; } - .xl\:placeholder-green-50::placeholder { - color: #ecfdf5; + .xl\:focus-within\:bg-gray-200:focus-within { + background-color: #e5e7eb; } - .xl\:placeholder-green-100::placeholder { - color: #d1fae5; + .xl\:focus-within\:bg-gray-300:focus-within { + background-color: #d1d5db; } - .xl\:placeholder-green-200::placeholder { - color: #a7f3d0; + .xl\:focus-within\:bg-gray-400:focus-within { + background-color: #9ca3af; } - .xl\:placeholder-green-300::placeholder { - color: #6ee7b7; + .xl\:focus-within\:bg-gray-500:focus-within { + background-color: #6b7280; } - .xl\:placeholder-green-400::placeholder { - color: #34d399; + .xl\:focus-within\:bg-gray-600:focus-within { + background-color: #4b5563; } - .xl\:placeholder-green-500::placeholder { - color: #10b981; + .xl\:focus-within\:bg-gray-700:focus-within { + background-color: #374151; } - .xl\:placeholder-green-600::placeholder { - color: #059669; + .xl\:focus-within\:bg-gray-800:focus-within { + background-color: #1f2937; } - .xl\:placeholder-green-700::placeholder { - color: #047857; + .xl\:focus-within\:bg-gray-900:focus-within { + background-color: #111827; } - .xl\:placeholder-green-800::placeholder { - color: #065f46; + .xl\:focus-within\:bg-red-50:focus-within { + background-color: #fef2f2; } - .xl\:placeholder-green-900::placeholder { - color: #064e3b; + .xl\:focus-within\:bg-red-100:focus-within { + background-color: #fee2e2; } - .xl\:placeholder-blue-50::placeholder { - color: #eff6ff; + .xl\:focus-within\:bg-red-200:focus-within { + background-color: #fecaca; } - .xl\:placeholder-blue-100::placeholder { - color: #dbeafe; + .xl\:focus-within\:bg-red-300:focus-within { + background-color: #fca5a5; } - .xl\:placeholder-blue-200::placeholder { - color: #bfdbfe; + .xl\:focus-within\:bg-red-400:focus-within { + background-color: #f87171; } - .xl\:placeholder-blue-300::placeholder { - color: #93c5fd; + .xl\:focus-within\:bg-red-500:focus-within { + background-color: #ef4444; } - .xl\:placeholder-blue-400::placeholder { - color: #60a5fa; + .xl\:focus-within\:bg-red-600:focus-within { + background-color: #dc2626; } - .xl\:placeholder-blue-500::placeholder { - color: #3b82f6; + .xl\:focus-within\:bg-red-700:focus-within { + background-color: #b91c1c; } - .xl\:placeholder-blue-600::placeholder { - color: #2563eb; + .xl\:focus-within\:bg-red-800:focus-within { + background-color: #991b1b; } - .xl\:placeholder-blue-700::placeholder { - color: #1d4ed8; + .xl\:focus-within\:bg-red-900:focus-within { + background-color: #7f1d1d; } - .xl\:placeholder-blue-800::placeholder { - color: #1e40af; + .xl\:focus-within\:bg-yellow-50:focus-within { + background-color: #fffbeb; } - .xl\:placeholder-blue-900::placeholder { - color: #1e3a8a; + .xl\:focus-within\:bg-yellow-100:focus-within { + background-color: #fef3c7; } - .xl\:placeholder-indigo-50::placeholder { - color: #eef2ff; + .xl\:focus-within\:bg-yellow-200:focus-within { + background-color: #fde68a; } - .xl\:placeholder-indigo-100::placeholder { - color: #e0e7ff; + .xl\:focus-within\:bg-yellow-300:focus-within { + background-color: #fcd34d; } - .xl\:placeholder-indigo-200::placeholder { - color: #c7d2fe; + .xl\:focus-within\:bg-yellow-400:focus-within { + background-color: #fbbf24; } - .xl\:placeholder-indigo-300::placeholder { - color: #a5b4fc; + .xl\:focus-within\:bg-yellow-500:focus-within { + background-color: #f59e0b; } - .xl\:placeholder-indigo-400::placeholder { - color: #818cf8; + .xl\:focus-within\:bg-yellow-600:focus-within { + background-color: #d97706; } - .xl\:placeholder-indigo-500::placeholder { - color: #6366f1; + .xl\:focus-within\:bg-yellow-700:focus-within { + background-color: #b45309; } - .xl\:placeholder-indigo-600::placeholder { - color: #4f46e5; + .xl\:focus-within\:bg-yellow-800:focus-within { + background-color: #92400e; } - .xl\:placeholder-indigo-700::placeholder { - color: #4338ca; + .xl\:focus-within\:bg-yellow-900:focus-within { + background-color: #78350f; } - .xl\:placeholder-indigo-800::placeholder { - color: #3730a3; + .xl\:focus-within\:bg-green-50:focus-within { + background-color: #ecfdf5; } - .xl\:placeholder-indigo-900::placeholder { - color: #312e81; + .xl\:focus-within\:bg-green-100:focus-within { + background-color: #d1fae5; } - .xl\:placeholder-purple-50::placeholder { - color: #f5f3ff; + .xl\:focus-within\:bg-green-200:focus-within { + background-color: #a7f3d0; } - .xl\:placeholder-purple-100::placeholder { - color: #ede9fe; + .xl\:focus-within\:bg-green-300:focus-within { + background-color: #6ee7b7; } - .xl\:placeholder-purple-200::placeholder { - color: #ddd6fe; + .xl\:focus-within\:bg-green-400:focus-within { + background-color: #34d399; } - .xl\:placeholder-purple-300::placeholder { - color: #c4b5fd; + .xl\:focus-within\:bg-green-500:focus-within { + background-color: #10b981; } - .xl\:placeholder-purple-400::placeholder { - color: #a78bfa; + .xl\:focus-within\:bg-green-600:focus-within { + background-color: #059669; } - .xl\:placeholder-purple-500::placeholder { - color: #8b5cf6; + .xl\:focus-within\:bg-green-700:focus-within { + background-color: #047857; } - .xl\:placeholder-purple-600::placeholder { - color: #7c3aed; + .xl\:focus-within\:bg-green-800:focus-within { + background-color: #065f46; } - .xl\:placeholder-purple-700::placeholder { - color: #6d28d9; + .xl\:focus-within\:bg-green-900:focus-within { + background-color: #064e3b; } - .xl\:placeholder-purple-800::placeholder { - color: #5b21b6; + .xl\:focus-within\:bg-blue-50:focus-within { + background-color: #eff6ff; } - .xl\:placeholder-purple-900::placeholder { - color: #4c1d95; + .xl\:focus-within\:bg-blue-100:focus-within { + background-color: #dbeafe; } - .xl\:placeholder-pink-50::placeholder { - color: #fdf2f8; + .xl\:focus-within\:bg-blue-200:focus-within { + background-color: #bfdbfe; } - .xl\:placeholder-pink-100::placeholder { - color: #fce7f3; + .xl\:focus-within\:bg-blue-300:focus-within { + background-color: #93c5fd; } - .xl\:placeholder-pink-200::placeholder { - color: #fbcfe8; + .xl\:focus-within\:bg-blue-400:focus-within { + background-color: #60a5fa; } - .xl\:placeholder-pink-300::placeholder { - color: #f9a8d4; + .xl\:focus-within\:bg-blue-500:focus-within { + background-color: #3b82f6; } - .xl\:placeholder-pink-400::placeholder { - color: #f472b6; + .xl\:focus-within\:bg-blue-600:focus-within { + background-color: #2563eb; } - .xl\:placeholder-pink-500::placeholder { - color: #ec4899; + .xl\:focus-within\:bg-blue-700:focus-within { + background-color: #1d4ed8; } - .xl\:placeholder-pink-600::placeholder { - color: #db2777; + .xl\:focus-within\:bg-blue-800:focus-within { + background-color: #1e40af; } - .xl\:placeholder-pink-700::placeholder { - color: #be185d; + .xl\:focus-within\:bg-blue-900:focus-within { + background-color: #1e3a8a; } - .xl\:placeholder-pink-800::placeholder { - color: #9d174d; + .xl\:focus-within\:bg-indigo-50:focus-within { + background-color: #eef2ff; } - .xl\:placeholder-pink-900::placeholder { - color: #831843; + .xl\:focus-within\:bg-indigo-100:focus-within { + background-color: #e0e7ff; } - .xl\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .xl\:focus-within\:bg-indigo-200:focus-within { + background-color: #c7d2fe; } - .xl\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .xl\:focus-within\:bg-indigo-300:focus-within { + background-color: #a5b4fc; } - .xl\:focus\:placeholder-black:focus::placeholder { - color: #000; + .xl\:focus-within\:bg-indigo-400:focus-within { + background-color: #818cf8; } - .xl\:focus\:placeholder-white:focus::placeholder { - color: #fff; + .xl\:focus-within\:bg-indigo-500:focus-within { + background-color: #6366f1; } - .xl\:focus\:placeholder-gray-50:focus::placeholder { - color: #f9fafb; + .xl\:focus-within\:bg-indigo-600:focus-within { + background-color: #4f46e5; } - .xl\:focus\:placeholder-gray-100:focus::placeholder { - color: #f3f4f6; + .xl\:focus-within\:bg-indigo-700:focus-within { + background-color: #4338ca; } - .xl\:focus\:placeholder-gray-200:focus::placeholder { - color: #e5e7eb; + .xl\:focus-within\:bg-indigo-800:focus-within { + background-color: #3730a3; } - .xl\:focus\:placeholder-gray-300:focus::placeholder { - color: #d1d5db; + .xl\:focus-within\:bg-indigo-900:focus-within { + background-color: #312e81; } - .xl\:focus\:placeholder-gray-400:focus::placeholder { - color: #9ca3af; + .xl\:focus-within\:bg-purple-50:focus-within { + background-color: #f5f3ff; } - .xl\:focus\:placeholder-gray-500:focus::placeholder { - color: #6b7280; + .xl\:focus-within\:bg-purple-100:focus-within { + background-color: #ede9fe; } - .xl\:focus\:placeholder-gray-600:focus::placeholder { - color: #4b5563; + .xl\:focus-within\:bg-purple-200:focus-within { + background-color: #ddd6fe; } - .xl\:focus\:placeholder-gray-700:focus::placeholder { - color: #374151; + .xl\:focus-within\:bg-purple-300:focus-within { + background-color: #c4b5fd; } - .xl\:focus\:placeholder-gray-800:focus::placeholder { - color: #1f2937; + .xl\:focus-within\:bg-purple-400:focus-within { + background-color: #a78bfa; } - .xl\:focus\:placeholder-gray-900:focus::placeholder { - color: #111827; + .xl\:focus-within\:bg-purple-500:focus-within { + background-color: #8b5cf6; } - .xl\:focus\:placeholder-red-50:focus::placeholder { - color: #fef2f2; + .xl\:focus-within\:bg-purple-600:focus-within { + background-color: #7c3aed; } - .xl\:focus\:placeholder-red-100:focus::placeholder { - color: #fee2e2; + .xl\:focus-within\:bg-purple-700:focus-within { + background-color: #6d28d9; } - .xl\:focus\:placeholder-red-200:focus::placeholder { - color: #fecaca; + .xl\:focus-within\:bg-purple-800:focus-within { + background-color: #5b21b6; } - .xl\:focus\:placeholder-red-300:focus::placeholder { - color: #fca5a5; + .xl\:focus-within\:bg-purple-900:focus-within { + background-color: #4c1d95; } - .xl\:focus\:placeholder-red-400:focus::placeholder { - color: #f87171; + .xl\:focus-within\:bg-pink-50:focus-within { + background-color: #fdf2f8; } - .xl\:focus\:placeholder-red-500:focus::placeholder { - color: #ef4444; + .xl\:focus-within\:bg-pink-100:focus-within { + background-color: #fce7f3; } - .xl\:focus\:placeholder-red-600:focus::placeholder { - color: #dc2626; + .xl\:focus-within\:bg-pink-200:focus-within { + background-color: #fbcfe8; } - .xl\:focus\:placeholder-red-700:focus::placeholder { - color: #b91c1c; + .xl\:focus-within\:bg-pink-300:focus-within { + background-color: #f9a8d4; } - .xl\:focus\:placeholder-red-800:focus::placeholder { - color: #991b1b; + .xl\:focus-within\:bg-pink-400:focus-within { + background-color: #f472b6; } - .xl\:focus\:placeholder-red-900:focus::placeholder { - color: #7f1d1d; + .xl\:focus-within\:bg-pink-500:focus-within { + background-color: #ec4899; } - .xl\:focus\:placeholder-yellow-50:focus::placeholder { - color: #fffbeb; + .xl\:focus-within\:bg-pink-600:focus-within { + background-color: #db2777; } - .xl\:focus\:placeholder-yellow-100:focus::placeholder { - color: #fef3c7; + .xl\:focus-within\:bg-pink-700:focus-within { + background-color: #be185d; } - .xl\:focus\:placeholder-yellow-200:focus::placeholder { - color: #fde68a; + .xl\:focus-within\:bg-pink-800:focus-within { + background-color: #9d174d; } - .xl\:focus\:placeholder-yellow-300:focus::placeholder { - color: #fcd34d; + .xl\:focus-within\:bg-pink-900:focus-within { + background-color: #831843; } - .xl\:focus\:placeholder-yellow-400:focus::placeholder { - color: #fbbf24; + .xl\:hover\:bg-transparent:hover { + background-color: transparent; } - .xl\:focus\:placeholder-yellow-500:focus::placeholder { - color: #f59e0b; + .xl\:hover\:bg-current:hover { + background-color: currentColor; } - .xl\:focus\:placeholder-yellow-600:focus::placeholder { - color: #d97706; + .xl\:hover\:bg-black:hover { + background-color: #000; } - .xl\:focus\:placeholder-yellow-700:focus::placeholder { - color: #b45309; + .xl\:hover\:bg-white:hover { + background-color: #fff; } - .xl\:focus\:placeholder-yellow-800:focus::placeholder { - color: #92400e; + .xl\:hover\:bg-gray-50:hover { + background-color: #f9fafb; } - .xl\:focus\:placeholder-yellow-900:focus::placeholder { - color: #78350f; + .xl\:hover\:bg-gray-100:hover { + background-color: #f3f4f6; } - .xl\:focus\:placeholder-green-50:focus::placeholder { - color: #ecfdf5; + .xl\:hover\:bg-gray-200:hover { + background-color: #e5e7eb; } - .xl\:focus\:placeholder-green-100:focus::placeholder { - color: #d1fae5; + .xl\:hover\:bg-gray-300:hover { + background-color: #d1d5db; } - .xl\:focus\:placeholder-green-200:focus::placeholder { - color: #a7f3d0; + .xl\:hover\:bg-gray-400:hover { + background-color: #9ca3af; } - .xl\:focus\:placeholder-green-300:focus::placeholder { - color: #6ee7b7; + .xl\:hover\:bg-gray-500:hover { + background-color: #6b7280; } - .xl\:focus\:placeholder-green-400:focus::placeholder { - color: #34d399; + .xl\:hover\:bg-gray-600:hover { + background-color: #4b5563; } - .xl\:focus\:placeholder-green-500:focus::placeholder { - color: #10b981; + .xl\:hover\:bg-gray-700:hover { + background-color: #374151; } - .xl\:focus\:placeholder-green-600:focus::placeholder { - color: #059669; + .xl\:hover\:bg-gray-800:hover { + background-color: #1f2937; } - .xl\:focus\:placeholder-green-700:focus::placeholder { - color: #047857; + .xl\:hover\:bg-gray-900:hover { + background-color: #111827; } - .xl\:focus\:placeholder-green-800:focus::placeholder { - color: #065f46; + .xl\:hover\:bg-red-50:hover { + background-color: #fef2f2; } - .xl\:focus\:placeholder-green-900:focus::placeholder { - color: #064e3b; + .xl\:hover\:bg-red-100:hover { + background-color: #fee2e2; } - .xl\:focus\:placeholder-blue-50:focus::placeholder { - color: #eff6ff; + .xl\:hover\:bg-red-200:hover { + background-color: #fecaca; } - .xl\:focus\:placeholder-blue-100:focus::placeholder { - color: #dbeafe; + .xl\:hover\:bg-red-300:hover { + background-color: #fca5a5; } - .xl\:focus\:placeholder-blue-200:focus::placeholder { - color: #bfdbfe; + .xl\:hover\:bg-red-400:hover { + background-color: #f87171; } - .xl\:focus\:placeholder-blue-300:focus::placeholder { - color: #93c5fd; + .xl\:hover\:bg-red-500:hover { + background-color: #ef4444; } - .xl\:focus\:placeholder-blue-400:focus::placeholder { - color: #60a5fa; + .xl\:hover\:bg-red-600:hover { + background-color: #dc2626; } - .xl\:focus\:placeholder-blue-500:focus::placeholder { - color: #3b82f6; + .xl\:hover\:bg-red-700:hover { + background-color: #b91c1c; } - .xl\:focus\:placeholder-blue-600:focus::placeholder { - color: #2563eb; + .xl\:hover\:bg-red-800:hover { + background-color: #991b1b; } - .xl\:focus\:placeholder-blue-700:focus::placeholder { - color: #1d4ed8; + .xl\:hover\:bg-red-900:hover { + background-color: #7f1d1d; } - .xl\:focus\:placeholder-blue-800:focus::placeholder { - color: #1e40af; + .xl\:hover\:bg-yellow-50:hover { + background-color: #fffbeb; } - .xl\:focus\:placeholder-blue-900:focus::placeholder { - color: #1e3a8a; + .xl\:hover\:bg-yellow-100:hover { + background-color: #fef3c7; } - .xl\:focus\:placeholder-indigo-50:focus::placeholder { - color: #eef2ff; + .xl\:hover\:bg-yellow-200:hover { + background-color: #fde68a; } - .xl\:focus\:placeholder-indigo-100:focus::placeholder { - color: #e0e7ff; + .xl\:hover\:bg-yellow-300:hover { + background-color: #fcd34d; } - .xl\:focus\:placeholder-indigo-200:focus::placeholder { - color: #c7d2fe; + .xl\:hover\:bg-yellow-400:hover { + background-color: #fbbf24; } - .xl\:focus\:placeholder-indigo-300:focus::placeholder { - color: #a5b4fc; + .xl\:hover\:bg-yellow-500:hover { + background-color: #f59e0b; } - .xl\:focus\:placeholder-indigo-400:focus::placeholder { - color: #818cf8; + .xl\:hover\:bg-yellow-600:hover { + background-color: #d97706; } - .xl\:focus\:placeholder-indigo-500:focus::placeholder { - color: #6366f1; + .xl\:hover\:bg-yellow-700:hover { + background-color: #b45309; } - .xl\:focus\:placeholder-indigo-600:focus::placeholder { - color: #4f46e5; + .xl\:hover\:bg-yellow-800:hover { + background-color: #92400e; } - .xl\:focus\:placeholder-indigo-700:focus::placeholder { - color: #4338ca; + .xl\:hover\:bg-yellow-900:hover { + background-color: #78350f; } - .xl\:focus\:placeholder-indigo-800:focus::placeholder { - color: #3730a3; + .xl\:hover\:bg-green-50:hover { + background-color: #ecfdf5; } - .xl\:focus\:placeholder-indigo-900:focus::placeholder { - color: #312e81; + .xl\:hover\:bg-green-100:hover { + background-color: #d1fae5; } - .xl\:focus\:placeholder-purple-50:focus::placeholder { - color: #f5f3ff; + .xl\:hover\:bg-green-200:hover { + background-color: #a7f3d0; } - .xl\:focus\:placeholder-purple-100:focus::placeholder { - color: #ede9fe; + .xl\:hover\:bg-green-300:hover { + background-color: #6ee7b7; } - .xl\:focus\:placeholder-purple-200:focus::placeholder { - color: #ddd6fe; + .xl\:hover\:bg-green-400:hover { + background-color: #34d399; } - .xl\:focus\:placeholder-purple-300:focus::placeholder { - color: #c4b5fd; + .xl\:hover\:bg-green-500:hover { + background-color: #10b981; } - .xl\:focus\:placeholder-purple-400:focus::placeholder { - color: #a78bfa; + .xl\:hover\:bg-green-600:hover { + background-color: #059669; } - .xl\:focus\:placeholder-purple-500:focus::placeholder { - color: #8b5cf6; + .xl\:hover\:bg-green-700:hover { + background-color: #047857; } - .xl\:focus\:placeholder-purple-600:focus::placeholder { - color: #7c3aed; + .xl\:hover\:bg-green-800:hover { + background-color: #065f46; } - .xl\:focus\:placeholder-purple-700:focus::placeholder { - color: #6d28d9; + .xl\:hover\:bg-green-900:hover { + background-color: #064e3b; } - .xl\:focus\:placeholder-purple-800:focus::placeholder { - color: #5b21b6; + .xl\:hover\:bg-blue-50:hover { + background-color: #eff6ff; } - .xl\:focus\:placeholder-purple-900:focus::placeholder { - color: #4c1d95; + .xl\:hover\:bg-blue-100:hover { + background-color: #dbeafe; } - .xl\:focus\:placeholder-pink-50:focus::placeholder { - color: #fdf2f8; + .xl\:hover\:bg-blue-200:hover { + background-color: #bfdbfe; } - .xl\:focus\:placeholder-pink-100:focus::placeholder { - color: #fce7f3; + .xl\:hover\:bg-blue-300:hover { + background-color: #93c5fd; } - .xl\:focus\:placeholder-pink-200:focus::placeholder { - color: #fbcfe8; + .xl\:hover\:bg-blue-400:hover { + background-color: #60a5fa; } - .xl\:focus\:placeholder-pink-300:focus::placeholder { - color: #f9a8d4; + .xl\:hover\:bg-blue-500:hover { + background-color: #3b82f6; } - .xl\:focus\:placeholder-pink-400:focus::placeholder { - color: #f472b6; + .xl\:hover\:bg-blue-600:hover { + background-color: #2563eb; } - .xl\:focus\:placeholder-pink-500:focus::placeholder { - color: #ec4899; + .xl\:hover\:bg-blue-700:hover { + background-color: #1d4ed8; } - .xl\:focus\:placeholder-pink-600:focus::placeholder { - color: #db2777; + .xl\:hover\:bg-blue-800:hover { + background-color: #1e40af; } - .xl\:focus\:placeholder-pink-700:focus::placeholder { - color: #be185d; + .xl\:hover\:bg-blue-900:hover { + background-color: #1e3a8a; } - .xl\:focus\:placeholder-pink-800:focus::placeholder { - color: #9d174d; + .xl\:hover\:bg-indigo-50:hover { + background-color: #eef2ff; } - .xl\:focus\:placeholder-pink-900:focus::placeholder { - color: #831843; + .xl\:hover\:bg-indigo-100:hover { + background-color: #e0e7ff; } - .xl\:pointer-events-none { - pointer-events: none; + .xl\:hover\:bg-indigo-200:hover { + background-color: #c7d2fe; } - .xl\:pointer-events-auto { - pointer-events: auto; + .xl\:hover\:bg-indigo-300:hover { + background-color: #a5b4fc; } - .xl\:static { - position: static; + .xl\:hover\:bg-indigo-400:hover { + background-color: #818cf8; } - .xl\:fixed { - position: fixed; + .xl\:hover\:bg-indigo-500:hover { + background-color: #6366f1; } - .xl\:absolute { - position: absolute; + .xl\:hover\:bg-indigo-600:hover { + background-color: #4f46e5; } - .xl\:relative { - position: relative; + .xl\:hover\:bg-indigo-700:hover { + background-color: #4338ca; } - .xl\:sticky { - position: sticky; + .xl\:hover\:bg-indigo-800:hover { + background-color: #3730a3; } - .xl\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .xl\:hover\:bg-indigo-900:hover { + background-color: #312e81; } - .xl\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .xl\:hover\:bg-purple-50:hover { + background-color: #f5f3ff; } - .xl\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .xl\:hover\:bg-purple-100:hover { + background-color: #ede9fe; } - .xl\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .xl\:hover\:bg-purple-200:hover { + background-color: #ddd6fe; } - .xl\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .xl\:hover\:bg-purple-300:hover { + background-color: #c4b5fd; } - .xl\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .xl\:hover\:bg-purple-400:hover { + background-color: #a78bfa; } - .xl\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .xl\:hover\:bg-purple-500:hover { + background-color: #8b5cf6; } - .xl\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .xl\:hover\:bg-purple-600:hover { + background-color: #7c3aed; } - .xl\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .xl\:hover\:bg-purple-700:hover { + background-color: #6d28d9; } - .xl\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .xl\:hover\:bg-purple-800:hover { + background-color: #5b21b6; } - .xl\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .xl\:hover\:bg-purple-900:hover { + background-color: #4c1d95; } - .xl\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .xl\:hover\:bg-pink-50:hover { + background-color: #fdf2f8; } - .xl\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .xl\:hover\:bg-pink-100:hover { + background-color: #fce7f3; } - .xl\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .xl\:hover\:bg-pink-200:hover { + background-color: #fbcfe8; } - .xl\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .xl\:hover\:bg-pink-300:hover { + background-color: #f9a8d4; } - .xl\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .xl\:hover\:bg-pink-400:hover { + background-color: #f472b6; } - .xl\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .xl\:hover\:bg-pink-500:hover { + background-color: #ec4899; } - .xl\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .xl\:hover\:bg-pink-600:hover { + background-color: #db2777; } - .xl\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .xl\:hover\:bg-pink-700:hover { + background-color: #be185d; } - .xl\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .xl\:hover\:bg-pink-800:hover { + background-color: #9d174d; } - .xl\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .xl\:hover\:bg-pink-900:hover { + background-color: #831843; } - .xl\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .xl\:focus\:bg-transparent:focus { + background-color: transparent; } - .xl\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .xl\:focus\:bg-current:focus { + background-color: currentColor; } - .xl\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .xl\:focus\:bg-black:focus { + background-color: #000; } - .xl\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .xl\:focus\:bg-white:focus { + background-color: #fff; } - .xl\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .xl\:focus\:bg-gray-50:focus { + background-color: #f9fafb; } - .xl\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .xl\:focus\:bg-gray-100:focus { + background-color: #f3f4f6; } - .xl\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .xl\:focus\:bg-gray-200:focus { + background-color: #e5e7eb; } - .xl\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .xl\:focus\:bg-gray-300:focus { + background-color: #d1d5db; } - .xl\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .xl\:focus\:bg-gray-400:focus { + background-color: #9ca3af; } - .xl\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .xl\:focus\:bg-gray-500:focus { + background-color: #6b7280; } - .xl\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .xl\:focus\:bg-gray-600:focus { + background-color: #4b5563; } - .xl\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .xl\:focus\:bg-gray-700:focus { + background-color: #374151; } - .xl\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .xl\:focus\:bg-gray-800:focus { + background-color: #1f2937; } - .xl\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .xl\:focus\:bg-gray-900:focus { + background-color: #111827; } - .xl\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .xl\:focus\:bg-red-50:focus { + background-color: #fef2f2; } - .xl\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .xl\:focus\:bg-red-100:focus { + background-color: #fee2e2; } - .xl\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .xl\:focus\:bg-red-200:focus { + background-color: #fecaca; } - .xl\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .xl\:focus\:bg-red-300:focus { + background-color: #fca5a5; } - .xl\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .xl\:focus\:bg-red-400:focus { + background-color: #f87171; } - .xl\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .xl\:focus\:bg-red-500:focus { + background-color: #ef4444; } - .xl\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .xl\:focus\:bg-red-600:focus { + background-color: #dc2626; } - .xl\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .xl\:focus\:bg-red-700:focus { + background-color: #b91c1c; } - .xl\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .xl\:focus\:bg-red-800:focus { + background-color: #991b1b; } - .xl\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .xl\:focus\:bg-red-900:focus { + background-color: #7f1d1d; } - .xl\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .xl\:focus\:bg-yellow-50:focus { + background-color: #fffbeb; } - .xl\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .xl\:focus\:bg-yellow-100:focus { + background-color: #fef3c7; } - .xl\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .xl\:focus\:bg-yellow-200:focus { + background-color: #fde68a; } - .xl\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .xl\:focus\:bg-yellow-300:focus { + background-color: #fcd34d; } - .xl\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .xl\:focus\:bg-yellow-400:focus { + background-color: #fbbf24; } - .xl\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .xl\:focus\:bg-yellow-500:focus { + background-color: #f59e0b; } - .xl\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .xl\:focus\:bg-yellow-600:focus { + background-color: #d97706; } - .xl\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .xl\:focus\:bg-yellow-700:focus { + background-color: #b45309; } - .xl\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .xl\:focus\:bg-yellow-800:focus { + background-color: #92400e; } - .xl\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .xl\:focus\:bg-yellow-900:focus { + background-color: #78350f; } - .xl\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .xl\:focus\:bg-green-50:focus { + background-color: #ecfdf5; } - .xl\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .xl\:focus\:bg-green-100:focus { + background-color: #d1fae5; } - .xl\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .xl\:focus\:bg-green-200:focus { + background-color: #a7f3d0; } - .xl\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .xl\:focus\:bg-green-300:focus { + background-color: #6ee7b7; } - .xl\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .xl\:focus\:bg-green-400:focus { + background-color: #34d399; } - .xl\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .xl\:focus\:bg-green-500:focus { + background-color: #10b981; } - .xl\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .xl\:focus\:bg-green-600:focus { + background-color: #059669; } - .xl\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .xl\:focus\:bg-green-700:focus { + background-color: #047857; } - .xl\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .xl\:focus\:bg-green-800:focus { + background-color: #065f46; } - .xl\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .xl\:focus\:bg-green-900:focus { + background-color: #064e3b; } - .xl\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .xl\:focus\:bg-blue-50:focus { + background-color: #eff6ff; } - .xl\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .xl\:focus\:bg-blue-100:focus { + background-color: #dbeafe; } - .xl\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .xl\:focus\:bg-blue-200:focus { + background-color: #bfdbfe; } - .xl\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .xl\:focus\:bg-blue-300:focus { + background-color: #93c5fd; } - .xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .xl\:focus\:bg-blue-400:focus { + background-color: #60a5fa; } - .xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .xl\:focus\:bg-blue-500:focus { + background-color: #3b82f6; } - .xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .xl\:focus\:bg-blue-600:focus { + background-color: #2563eb; } - .xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .xl\:focus\:bg-blue-700:focus { + background-color: #1d4ed8; } - .xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .xl\:focus\:bg-blue-800:focus { + background-color: #1e40af; } - .xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .xl\:focus\:bg-blue-900:focus { + background-color: #1e3a8a; } - .xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .xl\:focus\:bg-indigo-50:focus { + background-color: #eef2ff; } - .xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .xl\:focus\:bg-indigo-100:focus { + background-color: #e0e7ff; } - .xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .xl\:focus\:bg-indigo-200:focus { + background-color: #c7d2fe; } - .xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .xl\:focus\:bg-indigo-300:focus { + background-color: #a5b4fc; } - .xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .xl\:focus\:bg-indigo-400:focus { + background-color: #818cf8; } - .xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .xl\:focus\:bg-indigo-500:focus { + background-color: #6366f1; } - .xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .xl\:focus\:bg-indigo-600:focus { + background-color: #4f46e5; } - .xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .xl\:focus\:bg-indigo-700:focus { + background-color: #4338ca; } - .xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .xl\:focus\:bg-indigo-800:focus { + background-color: #3730a3; } - .xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .xl\:focus\:bg-indigo-900:focus { + background-color: #312e81; } - .xl\:inset-y-0 { - top: 0px; - bottom: 0px; + .xl\:focus\:bg-purple-50:focus { + background-color: #f5f3ff; } - .xl\:inset-x-0 { - right: 0px; - left: 0px; + .xl\:focus\:bg-purple-100:focus { + background-color: #ede9fe; } - .xl\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .xl\:focus\:bg-purple-200:focus { + background-color: #ddd6fe; } - .xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .xl\:focus\:bg-purple-300:focus { + background-color: #c4b5fd; } - .xl\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .xl\:focus\:bg-purple-400:focus { + background-color: #a78bfa; } - .xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .xl\:focus\:bg-purple-500:focus { + background-color: #8b5cf6; } - .xl\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .xl\:focus\:bg-purple-600:focus { + background-color: #7c3aed; } - .xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .xl\:focus\:bg-purple-700:focus { + background-color: #6d28d9; } - .xl\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .xl\:focus\:bg-purple-800:focus { + background-color: #5b21b6; } - .xl\:inset-x-4 { - right: 1rem; - left: 1rem; + .xl\:focus\:bg-purple-900:focus { + background-color: #4c1d95; } - .xl\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .xl\:focus\:bg-pink-50:focus { + background-color: #fdf2f8; } - .xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .xl\:focus\:bg-pink-100:focus { + background-color: #fce7f3; } - .xl\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .xl\:focus\:bg-pink-200:focus { + background-color: #fbcfe8; } - .xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .xl\:focus\:bg-pink-300:focus { + background-color: #f9a8d4; } - .xl\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .xl\:focus\:bg-pink-400:focus { + background-color: #f472b6; } - .xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .xl\:focus\:bg-pink-500:focus { + background-color: #ec4899; } - .xl\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .xl\:focus\:bg-pink-600:focus { + background-color: #db2777; } - .xl\:inset-x-8 { - right: 2rem; - left: 2rem; + .xl\:focus\:bg-pink-700:focus { + background-color: #be185d; } - .xl\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .xl\:focus\:bg-pink-800:focus { + background-color: #9d174d; } - .xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .xl\:focus\:bg-pink-900:focus { + background-color: #831843; } - .xl\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .xl\:bg-none { + background-image: none; } - .xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .xl\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .xl\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .xl\:inset-x-12 { - right: 3rem; - left: 3rem; + .xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .xl\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .xl\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .xl\:inset-x-16 { - right: 4rem; - left: 4rem; + .xl\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .xl\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:inset-x-20 { - right: 5rem; - left: 5rem; + .xl\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .xl\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:inset-x-24 { - right: 6rem; - left: 6rem; + .xl\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:inset-x-28 { - right: 7rem; - left: 7rem; + .xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .xl\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:inset-x-32 { - right: 8rem; - left: 8rem; + .xl\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .xl\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:inset-x-36 { - right: 9rem; - left: 9rem; + .xl\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .xl\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:inset-x-40 { - right: 10rem; - left: 10rem; + .xl\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .xl\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:inset-x-44 { - right: 11rem; - left: 11rem; + .xl\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .xl\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:inset-x-48 { - right: 12rem; - left: 12rem; + .xl\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .xl\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:inset-x-52 { - right: 13rem; - left: 13rem; + .xl\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .xl\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:inset-x-56 { - right: 14rem; - left: 14rem; + .xl\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .xl\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:inset-x-60 { - right: 15rem; - left: 15rem; + .xl\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .xl\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:inset-x-64 { - right: 16rem; - left: 16rem; + .xl\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .xl\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:inset-x-72 { - right: 18rem; - left: 18rem; + .xl\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .xl\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:inset-x-80 { - right: 20rem; - left: 20rem; + .xl\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .xl\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:inset-x-96 { - right: 24rem; - left: 24rem; + .xl\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:inset-y-auto { - top: auto; - bottom: auto; + .xl\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:inset-x-auto { - right: auto; - left: auto; + .xl\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:inset-y-px { - top: 1px; - bottom: 1px; + .xl\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:inset-x-px { - right: 1px; - left: 1px; + .xl\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .xl\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .xl\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .xl\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .xl\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .xl\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .xl\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .xl\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .xl\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:-inset-y-0 { - top: 0px; - bottom: 0px; + .xl\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:-inset-x-0 { - right: 0px; - left: 0px; + .xl\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .xl\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .xl\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .xl\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .xl\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .xl\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .xl\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .xl\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:-inset-x-4 { - right: -1rem; - left: -1rem; + .xl\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .xl\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .xl\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .xl\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .xl\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .xl\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .xl\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .xl\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:-inset-x-8 { - right: -2rem; - left: -2rem; + .xl\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .xl\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .xl\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .xl\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .xl\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .xl\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .xl\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .xl\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:-inset-x-12 { - right: -3rem; - left: -3rem; + .xl\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .xl\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .xl\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .xl\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:-inset-x-16 { - right: -4rem; - left: -4rem; + .xl\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .xl\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:-inset-x-20 { - right: -5rem; - left: -5rem; + .xl\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .xl\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:-inset-x-24 { - right: -6rem; - left: -6rem; + .xl\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .xl\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:-inset-x-28 { - right: -7rem; - left: -7rem; + .xl\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .xl\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:-inset-x-32 { - right: -8rem; - left: -8rem; + .xl\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .xl\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:-inset-x-36 { - right: -9rem; - left: -9rem; + .xl\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .xl\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:-inset-x-40 { - right: -10rem; - left: -10rem; + .xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-inset-x-44 { - right: -11rem; - left: -11rem; + .xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-inset-x-48 { - right: -12rem; - left: -12rem; + .xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:-inset-x-52 { - right: -13rem; - left: -13rem; + .xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:-inset-x-56 { - right: -14rem; - left: -14rem; + .xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:-inset-x-60 { - right: -15rem; - left: -15rem; + .xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:-inset-x-64 { - right: -16rem; - left: -16rem; + .xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:-inset-x-72 { - right: -18rem; - left: -18rem; + .xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:-inset-x-80 { - right: -20rem; - left: -20rem; + .xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:-inset-x-96 { - right: -24rem; - left: -24rem; + .xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:-inset-y-px { - top: -1px; - bottom: -1px; + .xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:-inset-x-px { - right: -1px; - left: -1px; + .xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:inset-x-1\/2 { - right: 50%; - left: 50%; + .xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:inset-x-1\/4 { - right: 25%; - left: 25%; + .xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:inset-x-2\/4 { - right: 50%; - left: 50%; + .xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:inset-x-3\/4 { - right: 75%; - left: 75%; + .xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:inset-y-full { - top: 100%; - bottom: 100%; + .xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:inset-x-full { - right: 100%; - left: 100%; + .xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:-inset-y-full { - top: -100%; - bottom: -100%; + .xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:-inset-x-full { - right: -100%; - left: -100%; + .xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:top-0 { - top: 0px; + .xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:right-0 { - right: 0px; + .xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:bottom-0 { - bottom: 0px; + .xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:left-0 { - left: 0px; + .xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:top-1 { - top: 0.25rem; + .xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:right-1 { - right: 0.25rem; + .xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:bottom-1 { - bottom: 0.25rem; + .xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:left-1 { - left: 0.25rem; + .xl\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:top-2 { - top: 0.5rem; + .xl\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:right-2 { - right: 0.5rem; + .xl\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:bottom-2 { - bottom: 0.5rem; + .xl\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:left-2 { - left: 0.5rem; + .xl\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:top-3 { - top: 0.75rem; + .xl\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:right-3 { - right: 0.75rem; + .xl\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:bottom-3 { - bottom: 0.75rem; + .xl\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:left-3 { - left: 0.75rem; + .xl\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:top-4 { - top: 1rem; + .xl\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:right-4 { - right: 1rem; + .xl\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:bottom-4 { - bottom: 1rem; + .xl\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:left-4 { - left: 1rem; + .xl\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:top-5 { - top: 1.25rem; + .xl\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:right-5 { - right: 1.25rem; + .xl\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:bottom-5 { - bottom: 1.25rem; + .xl\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:left-5 { - left: 1.25rem; + .xl\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:top-6 { - top: 1.5rem; + .xl\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:right-6 { - right: 1.5rem; + .xl\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:bottom-6 { - bottom: 1.5rem; + .xl\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:left-6 { - left: 1.5rem; + .xl\:to-transparent { + --tw-gradient-to: transparent; } - .xl\:top-7 { - top: 1.75rem; + .xl\:to-current { + --tw-gradient-to: currentColor; } - .xl\:right-7 { - right: 1.75rem; + .xl\:to-black { + --tw-gradient-to: #000; } - .xl\:bottom-7 { - bottom: 1.75rem; + .xl\:to-white { + --tw-gradient-to: #fff; } - .xl\:left-7 { - left: 1.75rem; + .xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .xl\:top-8 { - top: 2rem; + .xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .xl\:right-8 { - right: 2rem; + .xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .xl\:bottom-8 { - bottom: 2rem; + .xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .xl\:left-8 { - left: 2rem; + .xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .xl\:top-9 { - top: 2.25rem; + .xl\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .xl\:right-9 { - right: 2.25rem; + .xl\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .xl\:bottom-9 { - bottom: 2.25rem; + .xl\:to-gray-700 { + --tw-gradient-to: #374151; } - .xl\:left-9 { - left: 2.25rem; + .xl\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .xl\:top-10 { - top: 2.5rem; + .xl\:to-gray-900 { + --tw-gradient-to: #111827; } - .xl\:right-10 { - right: 2.5rem; + .xl\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .xl\:bottom-10 { - bottom: 2.5rem; + .xl\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .xl\:left-10 { - left: 2.5rem; + .xl\:to-red-200 { + --tw-gradient-to: #fecaca; } - .xl\:top-11 { - top: 2.75rem; + .xl\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .xl\:right-11 { - right: 2.75rem; + .xl\:to-red-400 { + --tw-gradient-to: #f87171; } - .xl\:bottom-11 { - bottom: 2.75rem; + .xl\:to-red-500 { + --tw-gradient-to: #ef4444; } - .xl\:left-11 { - left: 2.75rem; + .xl\:to-red-600 { + --tw-gradient-to: #dc2626; } - .xl\:top-12 { - top: 3rem; + .xl\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .xl\:right-12 { - right: 3rem; + .xl\:to-red-800 { + --tw-gradient-to: #991b1b; } - .xl\:bottom-12 { - bottom: 3rem; + .xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .xl\:left-12 { - left: 3rem; + .xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .xl\:top-14 { - top: 3.5rem; + .xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .xl\:right-14 { - right: 3.5rem; + .xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .xl\:bottom-14 { - bottom: 3.5rem; + .xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .xl\:left-14 { - left: 3.5rem; + .xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .xl\:top-16 { - top: 4rem; + .xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .xl\:right-16 { - right: 4rem; + .xl\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .xl\:bottom-16 { - bottom: 4rem; + .xl\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .xl\:left-16 { - left: 4rem; + .xl\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .xl\:top-20 { - top: 5rem; + .xl\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .xl\:right-20 { - right: 5rem; + .xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .xl\:bottom-20 { - bottom: 5rem; + .xl\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .xl\:left-20 { - left: 5rem; + .xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .xl\:top-24 { - top: 6rem; + .xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .xl\:right-24 { - right: 6rem; + .xl\:to-green-400 { + --tw-gradient-to: #34d399; } - .xl\:bottom-24 { - bottom: 6rem; + .xl\:to-green-500 { + --tw-gradient-to: #10b981; } - .xl\:left-24 { - left: 6rem; + .xl\:to-green-600 { + --tw-gradient-to: #059669; } - .xl\:top-28 { - top: 7rem; + .xl\:to-green-700 { + --tw-gradient-to: #047857; } - .xl\:right-28 { - right: 7rem; + .xl\:to-green-800 { + --tw-gradient-to: #065f46; } - .xl\:bottom-28 { - bottom: 7rem; + .xl\:to-green-900 { + --tw-gradient-to: #064e3b; } - .xl\:left-28 { - left: 7rem; + .xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .xl\:top-32 { - top: 8rem; + .xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .xl\:right-32 { - right: 8rem; + .xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .xl\:bottom-32 { - bottom: 8rem; + .xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .xl\:left-32 { - left: 8rem; + .xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .xl\:top-36 { - top: 9rem; + .xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .xl\:right-36 { - right: 9rem; + .xl\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .xl\:bottom-36 { - bottom: 9rem; + .xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .xl\:left-36 { - left: 9rem; + .xl\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .xl\:top-40 { - top: 10rem; + .xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .xl\:right-40 { - right: 10rem; + .xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .xl\:bottom-40 { - bottom: 10rem; + .xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .xl\:left-40 { - left: 10rem; + .xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .xl\:top-44 { - top: 11rem; + .xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .xl\:right-44 { - right: 11rem; + .xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .xl\:bottom-44 { - bottom: 11rem; + .xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .xl\:left-44 { - left: 11rem; + .xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .xl\:top-48 { - top: 12rem; + .xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .xl\:right-48 { - right: 12rem; + .xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .xl\:bottom-48 { - bottom: 12rem; + .xl\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .xl\:left-48 { - left: 12rem; + .xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .xl\:top-52 { - top: 13rem; + .xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .xl\:right-52 { - right: 13rem; + .xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .xl\:bottom-52 { - bottom: 13rem; + .xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .xl\:left-52 { - left: 13rem; + .xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .xl\:top-56 { - top: 14rem; + .xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .xl\:right-56 { - right: 14rem; + .xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .xl\:bottom-56 { - bottom: 14rem; + .xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .xl\:left-56 { - left: 14rem; + .xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .xl\:top-60 { - top: 15rem; + .xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .xl\:right-60 { - right: 15rem; + .xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .xl\:bottom-60 { - bottom: 15rem; + .xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .xl\:left-60 { - left: 15rem; + .xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .xl\:top-64 { - top: 16rem; + .xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .xl\:right-64 { - right: 16rem; + .xl\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .xl\:bottom-64 { - bottom: 16rem; + .xl\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .xl\:left-64 { - left: 16rem; + .xl\:to-pink-600 { + --tw-gradient-to: #db2777; } - .xl\:top-72 { - top: 18rem; + .xl\:to-pink-700 { + --tw-gradient-to: #be185d; } - .xl\:right-72 { - right: 18rem; + .xl\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .xl\:bottom-72 { - bottom: 18rem; + .xl\:to-pink-900 { + --tw-gradient-to: #831843; } - .xl\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-top-14 { - top: -3.5rem; + .xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-right-14 { - right: -3.5rem; + .xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-bottom-14 { - bottom: -3.5rem; + .xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-left-14 { - left: -3.5rem; + .xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:-top-16 { - top: -4rem; + .xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:-right-16 { - right: -4rem; + .xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:-bottom-16 { - bottom: -4rem; + .xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:-left-16 { - left: -4rem; + .xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:-top-20 { - top: -5rem; + .xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:-right-20 { - right: -5rem; + .xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:-bottom-20 { - bottom: -5rem; + .xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:-left-20 { - left: -5rem; + .xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:-top-24 { - top: -6rem; + .xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:-right-24 { - right: -6rem; + .xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:-bottom-24 { - bottom: -6rem; + .xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:-left-24 { - left: -6rem; + .xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:-top-28 { - top: -7rem; + .xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:-right-28 { - right: -7rem; + .xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:-bottom-28 { - bottom: -7rem; + .xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:-left-28 { - left: -7rem; + .xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:-top-32 { - top: -8rem; + .xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:-right-32 { - right: -8rem; + .xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:-bottom-32 { - bottom: -8rem; + .xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:-left-32 { - left: -8rem; + .xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:-top-36 { - top: -9rem; + .xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:-right-36 { - right: -9rem; + .xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:-bottom-36 { - bottom: -9rem; + .xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:-left-36 { - left: -9rem; + .xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:-top-40 { - top: -10rem; + .xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:-right-40 { - right: -10rem; + .xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:-bottom-40 { - bottom: -10rem; + .xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:-left-40 { - left: -10rem; + .xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:-top-44 { - top: -11rem; + .xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:-right-44 { - right: -11rem; + .xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:-bottom-44 { - bottom: -11rem; + .xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:-left-44 { - left: -11rem; + .xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:-top-48 { - top: -12rem; + .xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:-right-48 { - right: -12rem; + .xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:-bottom-48 { - bottom: -12rem; + .xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:-left-48 { - left: -12rem; + .xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:-top-52 { - top: -13rem; + .xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:-right-52 { - right: -13rem; + .xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:-bottom-52 { - bottom: -13rem; + .xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:-left-52 { - left: -13rem; + .xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:-top-56 { - top: -14rem; + .xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:-right-56 { - right: -14rem; + .xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:-bottom-56 { - bottom: -14rem; + .xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:-left-56 { - left: -14rem; + .xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:-top-60 { - top: -15rem; + .xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:-right-60 { - right: -15rem; + .xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:-bottom-60 { - bottom: -15rem; + .xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:-left-60 { - left: -15rem; + .xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:-top-64 { - top: -16rem; + .xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:-right-64 { - right: -16rem; + .xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:-bottom-64 { - bottom: -16rem; + .xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:-left-64 { - left: -16rem; + .xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:-top-72 { - top: -18rem; + .xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:-right-72 { - right: -18rem; + .xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:-bottom-72 { - bottom: -18rem; + .xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:-left-72 { - left: -18rem; + .xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:-top-80 { - top: -20rem; + .xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:-right-80 { - right: -20rem; + .xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:-bottom-80 { - bottom: -20rem; + .xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:-left-80 { - left: -20rem; + .xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:-top-96 { - top: -24rem; + .xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:-right-96 { - right: -24rem; + .xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:-bottom-96 { - bottom: -24rem; + .xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:-left-96 { - left: -24rem; + .xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:-top-px { - top: -1px; + .xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:-right-px { - right: -1px; + .xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:-bottom-px { - bottom: -1px; + .xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:-left-px { - left: -1px; + .xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:-top-0\.5 { - top: -0.125rem; + .xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:-right-0\.5 { - right: -0.125rem; + .xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:-bottom-0\.5 { - bottom: -0.125rem; + .xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:-left-0\.5 { - left: -0.125rem; + .xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:-top-1\.5 { - top: -0.375rem; + .xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:-right-1\.5 { - right: -0.375rem; + .xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:-bottom-1\.5 { - bottom: -0.375rem; + .xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:-left-1\.5 { - left: -0.375rem; + .xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:-top-2\.5 { - top: -0.625rem; + .xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:-right-2\.5 { - right: -0.625rem; + .xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:-bottom-2\.5 { - bottom: -0.625rem; + .xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:-left-2\.5 { - left: -0.625rem; + .xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .xl\:-top-3\.5 { - top: -0.875rem; + .xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .xl\:-right-3\.5 { - right: -0.875rem; + .xl\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .xl\:-bottom-3\.5 { - bottom: -0.875rem; + .xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .xl\:-left-3\.5 { - left: -0.875rem; + .xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .xl\:top-1\/2 { - top: 50%; + .xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .xl\:right-1\/2 { - right: 50%; + .xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .xl\:bottom-1\/2 { - bottom: 50%; + .xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .xl\:left-1\/2 { - left: 50%; + .xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .xl\:top-1\/3 { - top: 33.333333%; + .xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .xl\:right-1\/3 { - right: 33.333333%; + .xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .xl\:bottom-1\/3 { - bottom: 33.333333%; + .xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .xl\:left-1\/3 { - left: 33.333333%; + .xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .xl\:top-2\/3 { - top: 66.666667%; + .xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .xl\:right-2\/3 { - right: 66.666667%; + .xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .xl\:bottom-2\/3 { - bottom: 66.666667%; + .xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .xl\:left-2\/3 { - left: 66.666667%; + .xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .xl\:top-1\/4 { - top: 25%; + .xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .xl\:right-1\/4 { - right: 25%; + .xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .xl\:bottom-1\/4 { - bottom: 25%; + .xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .xl\:left-1\/4 { - left: 25%; + .xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .xl\:top-2\/4 { - top: 50%; + .xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .xl\:right-2\/4 { - right: 50%; + .xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .xl\:bottom-2\/4 { - bottom: 50%; + .xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .xl\:left-2\/4 { - left: 50%; + .xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .xl\:top-3\/4 { - top: 75%; + .xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .xl\:right-3\/4 { - right: 75%; + .xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .xl\:bottom-3\/4 { - bottom: 75%; + .xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .xl\:left-3\/4 { - left: 75%; + .xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .xl\:top-full { - top: 100%; + .xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .xl\:right-full { - right: 100%; + .xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .xl\:bottom-full { - bottom: 100%; + .xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .xl\:left-full { - left: 100%; + .xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .xl\:-top-1\/2 { - top: -50%; + .xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .xl\:-right-1\/2 { - right: -50%; + .xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .xl\:-bottom-1\/2 { - bottom: -50%; + .xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .xl\:-left-1\/2 { - left: -50%; + .xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .xl\:-top-1\/3 { - top: -33.333333%; + .xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .xl\:-right-1\/3 { - right: -33.333333%; + .xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .xl\:-bottom-1\/3 { - bottom: -33.333333%; + .xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .xl\:-left-1\/3 { - left: -33.333333%; + .xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .xl\:-top-2\/3 { - top: -66.666667%; + .xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .xl\:-right-2\/3 { - right: -66.666667%; + .xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .xl\:-bottom-2\/3 { - bottom: -66.666667%; + .xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .xl\:-left-2\/3 { - left: -66.666667%; + .xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .xl\:-top-1\/4 { - top: -25%; + .xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .xl\:-right-1\/4 { - right: -25%; + .xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .xl\:-bottom-1\/4 { - bottom: -25%; + .xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .xl\:-left-1\/4 { - left: -25%; + .xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .xl\:-top-2\/4 { - top: -50%; + .xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .xl\:-right-2\/4 { - right: -50%; + .xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .xl\:-bottom-2\/4 { - bottom: -50%; + .xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .xl\:-left-2\/4 { - left: -50%; + .xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .xl\:-top-3\/4 { - top: -75%; + .xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .xl\:-right-3\/4 { - right: -75%; + .xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .xl\:-bottom-3\/4 { - bottom: -75%; + .xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .xl\:-left-3\/4 { - left: -75%; + .xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .xl\:-top-full { - top: -100%; + .xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .xl\:-right-full { - right: -100%; + .xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .xl\:-bottom-full { - bottom: -100%; + .xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .xl\:-left-full { - left: -100%; + .xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .xl\:resize-none { - resize: none; + .xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .xl\:resize-y { - resize: vertical; + .xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .xl\:resize-x { - resize: horizontal; + .xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .xl\:resize { - resize: both; + .xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .xl\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .xl\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .xl\: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); + .xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .xl\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .xl\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .xl\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .xl\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .xl\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .xl\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .xl\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .xl\:group-hover\: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); + .xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .xl\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .xl\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .xl\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .xl\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .xl\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .xl\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .xl\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .xl\:focus-within\:shadow-md:focus-within { - --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); + .xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .xl\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .xl\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .xl\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .xl\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .xl\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .xl\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .xl\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .xl\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .xl\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .xl\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .xl\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .xl\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .xl\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .xl\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .xl\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .xl\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .xl\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .xl\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .xl\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .xl\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .xl\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .xl\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .xl\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .xl\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .xl\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .xl\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .xl\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .xl\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .xl\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .xl\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .xl\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .xl\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .xl\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .xl\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .xl\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .xl\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .xl\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .xl\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .xl\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .xl\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .xl\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .xl\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .xl\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .xl\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .xl\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .xl\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .xl\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .xl\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .xl\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .xl\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .xl\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .xl\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .xl\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .xl\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .xl\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .xl\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .xl\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .xl\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .xl\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .xl\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .xl\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .xl\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .xl\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .xl\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .xl\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .xl\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .xl\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .xl\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .xl\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .xl\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .xl\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .xl\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .xl\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .xl\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .xl\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .xl\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .xl\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .xl\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .xl\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .xl\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .xl\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .xl\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .xl\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .xl\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .xl\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .xl\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .xl\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .xl\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .xl\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .xl\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .xl\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .xl\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .xl\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .xl\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .xl\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .xl\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .xl\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .xl\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .xl\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .xl\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .xl\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .xl\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .xl\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .xl\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .xl\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .xl\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .xl\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .xl\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .xl\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .xl\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .xl\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .xl\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .xl\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .xl\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .xl\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .xl\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .xl\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .xl\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .xl\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .xl\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .xl\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .xl\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .xl\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .xl\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .xl\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .xl\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .xl\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .xl\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .xl\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .xl\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .xl\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .xl\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .xl\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .xl\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .xl\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .xl\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .xl\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .xl\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .xl\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .xl\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .xl\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .xl\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .xl\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .xl\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .xl\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .xl\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .xl\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .xl\:decoration-slice { + box-decoration-break: slice; } - .xl\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .xl\:decoration-clone { + box-decoration-break: clone; } - .xl\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .xl\:bg-auto { + background-size: auto; } - .xl\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .xl\:bg-cover { + background-size: cover; } - .xl\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .xl\:bg-contain { + background-size: contain; } - .xl\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .xl\:bg-fixed { + background-attachment: fixed; } - .xl\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .xl\:bg-local { + background-attachment: local; } - .xl\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .xl\:bg-scroll { + background-attachment: scroll; } - .xl\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .xl\:bg-clip-border { + background-clip: border-box; } - .xl\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .xl\:bg-clip-padding { + background-clip: padding-box; } - .xl\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .xl\:bg-clip-content { + background-clip: content-box; } - .xl\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .xl\:bg-clip-text { + background-clip: text; } - .xl\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .xl\:bg-bottom { + background-position: bottom; } - .xl\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .xl\:bg-center { + background-position: center; } - .xl\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .xl\:bg-left { + background-position: left; } - .xl\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .xl\:bg-left-bottom { + background-position: left bottom; } - .xl\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .xl\:bg-left-top { + background-position: left top; } - .xl\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .xl\:bg-right { + background-position: right; } - .xl\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .xl\:bg-right-bottom { + background-position: right bottom; } - .xl\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .xl\:bg-right-top { + background-position: right top; } - .xl\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .xl\:bg-top { + background-position: top; } - .xl\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .xl\:bg-repeat { + background-repeat: repeat; } - .xl\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .xl\:bg-no-repeat { + background-repeat: no-repeat; } - .xl\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .xl\:bg-repeat-x { + background-repeat: repeat-x; } - .xl\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .xl\:bg-repeat-y { + background-repeat: repeat-y; } - .xl\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .xl\:bg-repeat-round { + background-repeat: round; } - .xl\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .xl\:bg-repeat-space { + background-repeat: space; } - .xl\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .xl\:bg-origin-border { + background-origin: border-box; } - .xl\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .xl\:bg-origin-padding { + background-origin: padding-box; } - .xl\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .xl\:bg-origin-content { + background-origin: content-box; } - .xl\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .xl\:fill-current { + fill: currentColor; } - .xl\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .xl\:stroke-current { + stroke: currentColor; } - .xl\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .xl\:stroke-0 { + stroke-width: 0; } - .xl\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .xl\:stroke-1 { + stroke-width: 1; } - .xl\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .xl\:stroke-2 { + stroke-width: 2; } - .xl\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .xl\:object-contain { + object-fit: contain; } - .xl\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .xl\:object-cover { + object-fit: cover; } - .xl\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .xl\:object-fill { + object-fit: fill; } - .xl\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .xl\:object-none { + object-fit: none; } - .xl\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .xl\:object-scale-down { + object-fit: scale-down; } - .xl\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .xl\:object-bottom { + object-position: bottom; } - .xl\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .xl\:object-center { + object-position: center; } - .xl\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .xl\:object-left { + object-position: left; } - .xl\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .xl\:object-left-bottom { + object-position: left bottom; } - .xl\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .xl\:object-left-top { + object-position: left top; } - .xl\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .xl\:object-right { + object-position: right; } - .xl\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .xl\:object-right-bottom { + object-position: right bottom; } - .xl\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .xl\:object-right-top { + object-position: right top; } - .xl\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .xl\:object-top { + object-position: top; } - .xl\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .xl\:p-0 { + padding: 0px; } - .xl\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .xl\:p-1 { + padding: 0.25rem; } - .xl\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .xl\:p-2 { + padding: 0.5rem; } - .xl\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .xl\:p-3 { + padding: 0.75rem; } - .xl\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .xl\:p-4 { + padding: 1rem; } - .xl\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .xl\:p-5 { + padding: 1.25rem; } - .xl\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .xl\:p-6 { + padding: 1.5rem; } - .xl\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .xl\:p-7 { + padding: 1.75rem; } - .xl\:ring-transparent { - --tw-ring-color: transparent; + .xl\:p-8 { + padding: 2rem; } - .xl\:ring-current { - --tw-ring-color: currentColor; + .xl\:p-9 { + padding: 2.25rem; } - .xl\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .xl\:p-10 { + padding: 2.5rem; } - .xl\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .xl\:p-11 { + padding: 2.75rem; } - .xl\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .xl\:p-12 { + padding: 3rem; } - .xl\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .xl\:p-14 { + padding: 3.5rem; } - .xl\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .xl\:p-16 { + padding: 4rem; } - .xl\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .xl\:p-20 { + padding: 5rem; } - .xl\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .xl\:p-24 { + padding: 6rem; } - .xl\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .xl\:p-28 { + padding: 7rem; } - .xl\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .xl\:p-32 { + padding: 8rem; } - .xl\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .xl\:p-36 { + padding: 9rem; } - .xl\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .xl\:p-40 { + padding: 10rem; } - .xl\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .xl\:p-44 { + padding: 11rem; } - .xl\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .xl\:p-48 { + padding: 12rem; } - .xl\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .xl\:p-52 { + padding: 13rem; } - .xl\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .xl\:p-56 { + padding: 14rem; } - .xl\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .xl\:p-60 { + padding: 15rem; } - .xl\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .xl\:p-64 { + padding: 16rem; } - .xl\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .xl\:p-72 { + padding: 18rem; } - .xl\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .xl\:p-80 { + padding: 20rem; } - .xl\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .xl\:p-96 { + padding: 24rem; } - .xl\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .xl\:p-px { + padding: 1px; } - .xl\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .xl\:p-0\.5 { + padding: 0.125rem; } - .xl\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .xl\:p-1\.5 { + padding: 0.375rem; } - .xl\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .xl\:p-2\.5 { + padding: 0.625rem; } - .xl\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .xl\:p-3\.5 { + padding: 0.875rem; } - .xl\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .xl\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .xl\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .xl\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .xl\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .xl\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .xl\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .xl\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .xl\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .xl\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .xl\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .xl\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .xl\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .xl\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .xl\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .xl\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .xl\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .xl\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .xl\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .xl\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .xl\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .xl\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .xl\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .xl\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .xl\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .xl\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .xl\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .xl\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .xl\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .xl\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .xl\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .xl\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .xl\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .xl\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .xl\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .xl\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .xl\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .xl\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .xl\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .xl\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .xl\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .xl\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .xl\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .xl\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .xl\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .xl\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .xl\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .xl\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .xl\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .xl\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .xl\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .xl\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .xl\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .xl\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .xl\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .xl\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .xl\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .xl\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .xl\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .xl\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .xl\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .xl\:px-px { + padding-left: 1px; + padding-right: 1px; } - .xl\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .xl\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .xl\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .xl\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .xl\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .xl\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .xl\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .xl\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .xl\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .xl\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .xl\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .xl\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .xl\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .xl\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .xl\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .xl\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .xl\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .xl\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .xl\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .xl\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .xl\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .xl\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .xl\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .xl\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .xl\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .xl\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .xl\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .xl\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .xl\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .xl\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .xl\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .xl\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .xl\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .xl\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .xl\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .xl\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .xl\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .xl\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .xl\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .xl\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .xl\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .xl\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .xl\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .xl\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .xl\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .xl\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .xl\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .xl\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .xl\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .xl\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .xl\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .xl\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .xl\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .xl\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .xl\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .xl\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .xl\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .xl\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .xl\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .xl\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .xl\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .xl\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .xl\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .xl\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .xl\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .xl\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .xl\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .xl\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .xl\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .xl\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .xl\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .xl\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .xl\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .xl\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .xl\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .xl\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .xl\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .xl\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .xl\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .xl\:pt-0 { + padding-top: 0px; } - .xl\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .xl\:pt-1 { + padding-top: 0.25rem; } - .xl\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .xl\:pt-2 { + padding-top: 0.5rem; } - .xl\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .xl\:pt-3 { + padding-top: 0.75rem; } - .xl\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .xl\:pt-4 { + padding-top: 1rem; } - .xl\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .xl\:pt-5 { + padding-top: 1.25rem; } - .xl\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .xl\:pt-6 { + padding-top: 1.5rem; } - .xl\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .xl\:pt-7 { + padding-top: 1.75rem; } - .xl\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .xl\:pt-8 { + padding-top: 2rem; } - .xl\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .xl\:pt-9 { + padding-top: 2.25rem; } - .xl\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .xl\:pt-10 { + padding-top: 2.5rem; } - .xl\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .xl\:pt-11 { + padding-top: 2.75rem; } - .xl\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .xl\:pt-12 { + padding-top: 3rem; } - .xl\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .xl\:pt-14 { + padding-top: 3.5rem; } - .xl\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .xl\:pt-16 { + padding-top: 4rem; } - .xl\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .xl\:pt-20 { + padding-top: 5rem; } - .xl\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .xl\:pt-24 { + padding-top: 6rem; } - .xl\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .xl\:pt-28 { + padding-top: 7rem; } - .xl\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .xl\:pt-32 { + padding-top: 8rem; } - .xl\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .xl\:pt-36 { + padding-top: 9rem; } - .xl\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .xl\:pt-40 { + padding-top: 10rem; } - .xl\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .xl\:pt-44 { + padding-top: 11rem; } - .xl\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .xl\:pt-48 { + padding-top: 12rem; } - .xl\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .xl\:pt-52 { + padding-top: 13rem; } - .xl\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .xl\:pt-56 { + padding-top: 14rem; } - .xl\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .xl\:pt-60 { + padding-top: 15rem; } - .xl\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .xl\:pt-64 { + padding-top: 16rem; } - .xl\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .xl\:pt-72 { + padding-top: 18rem; } - .xl\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .xl\:pt-80 { + padding-top: 20rem; } - .xl\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .xl\:pt-96 { + padding-top: 24rem; } - .xl\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .xl\:pt-px { + padding-top: 1px; } - .xl\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .xl\:pt-0\.5 { + padding-top: 0.125rem; } - .xl\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .xl\:pt-1\.5 { + padding-top: 0.375rem; } - .xl\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .xl\:pt-2\.5 { + padding-top: 0.625rem; } - .xl\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .xl\:pt-3\.5 { + padding-top: 0.875rem; } - .xl\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .xl\:pr-0 { + padding-right: 0px; } - .xl\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .xl\:pr-1 { + padding-right: 0.25rem; } - .xl\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .xl\:pr-2 { + padding-right: 0.5rem; } - .xl\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .xl\:pr-3 { + padding-right: 0.75rem; } - .xl\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .xl\:pr-4 { + padding-right: 1rem; } - .xl\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .xl\:pr-5 { + padding-right: 1.25rem; } - .xl\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .xl\:pr-6 { + padding-right: 1.5rem; } - .xl\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .xl\:pr-7 { + padding-right: 1.75rem; } - .xl\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .xl\:pr-8 { + padding-right: 2rem; } - .xl\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .xl\:pr-9 { + padding-right: 2.25rem; } - .xl\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .xl\:pr-10 { + padding-right: 2.5rem; } - .xl\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .xl\:pr-11 { + padding-right: 2.75rem; } - .xl\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .xl\:pr-12 { + padding-right: 3rem; } - .xl\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .xl\:pr-14 { + padding-right: 3.5rem; } - .xl\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .xl\:pr-16 { + padding-right: 4rem; } - .xl\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .xl\:pr-20 { + padding-right: 5rem; } - .xl\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .xl\:pr-24 { + padding-right: 6rem; } - .xl\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .xl\:pr-28 { + padding-right: 7rem; } - .xl\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .xl\:pr-32 { + padding-right: 8rem; } - .xl\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .xl\:pr-36 { + padding-right: 9rem; } - .xl\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .xl\:pr-40 { + padding-right: 10rem; } - .xl\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .xl\:pr-44 { + padding-right: 11rem; } - .xl\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .xl\:pr-48 { + padding-right: 12rem; } - .xl\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .xl\:pr-52 { + padding-right: 13rem; } - .xl\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .xl\:pr-56 { + padding-right: 14rem; } - .xl\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .xl\:pr-60 { + padding-right: 15rem; } - .xl\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .xl\:pr-64 { + padding-right: 16rem; } - .xl\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .xl\:pr-72 { + padding-right: 18rem; } - .xl\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .xl\:pr-80 { + padding-right: 20rem; } - .xl\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .xl\:pr-96 { + padding-right: 24rem; } - .xl\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .xl\:pr-px { + padding-right: 1px; } - .xl\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .xl\:pr-0\.5 { + padding-right: 0.125rem; } - .xl\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .xl\:pr-1\.5 { + padding-right: 0.375rem; } - .xl\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .xl\:pr-2\.5 { + padding-right: 0.625rem; } - .xl\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .xl\:pr-3\.5 { + padding-right: 0.875rem; } - .xl\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .xl\:pb-0 { + padding-bottom: 0px; } - .xl\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .xl\:pb-1 { + padding-bottom: 0.25rem; } - .xl\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .xl\:pb-2 { + padding-bottom: 0.5rem; } - .xl\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .xl\:pb-3 { + padding-bottom: 0.75rem; } - .xl\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .xl\:pb-4 { + padding-bottom: 1rem; } - .xl\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .xl\:pb-5 { + padding-bottom: 1.25rem; } - .xl\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .xl\:pb-6 { + padding-bottom: 1.5rem; } - .xl\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .xl\:pb-7 { + padding-bottom: 1.75rem; } - .xl\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .xl\:pb-8 { + padding-bottom: 2rem; } - .xl\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .xl\:pb-9 { + padding-bottom: 2.25rem; } - .xl\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .xl\:pb-10 { + padding-bottom: 2.5rem; } - .xl\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .xl\:pb-11 { + padding-bottom: 2.75rem; } - .xl\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .xl\:pb-12 { + padding-bottom: 3rem; } - .xl\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .xl\:pb-14 { + padding-bottom: 3.5rem; } - .xl\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .xl\:pb-16 { + padding-bottom: 4rem; } - .xl\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .xl\:pb-20 { + padding-bottom: 5rem; } - .xl\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .xl\:pb-24 { + padding-bottom: 6rem; } - .xl\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .xl\:pb-28 { + padding-bottom: 7rem; } - .xl\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .xl\:pb-32 { + padding-bottom: 8rem; } - .xl\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .xl\:pb-36 { + padding-bottom: 9rem; } - .xl\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .xl\:pb-40 { + padding-bottom: 10rem; } - .xl\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .xl\:pb-44 { + padding-bottom: 11rem; } - .xl\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .xl\:pb-48 { + padding-bottom: 12rem; } - .xl\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .xl\:pb-52 { + padding-bottom: 13rem; } - .xl\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .xl\:pb-56 { + padding-bottom: 14rem; } - .xl\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .xl\:pb-60 { + padding-bottom: 15rem; } - .xl\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .xl\:pb-64 { + padding-bottom: 16rem; } - .xl\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .xl\:pb-72 { + padding-bottom: 18rem; } - .xl\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .xl\:pb-80 { + padding-bottom: 20rem; } - .xl\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .xl\:pb-96 { + padding-bottom: 24rem; } - .xl\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .xl\:pb-px { + padding-bottom: 1px; } - .xl\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .xl\:pb-0\.5 { + padding-bottom: 0.125rem; } - .xl\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .xl\:pb-1\.5 { + padding-bottom: 0.375rem; } - .xl\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .xl\:pb-2\.5 { + padding-bottom: 0.625rem; } - .xl\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .xl\:pb-3\.5 { + padding-bottom: 0.875rem; } - .xl\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .xl\:pl-0 { + padding-left: 0px; } - .xl\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .xl\:pl-1 { + padding-left: 0.25rem; } - .xl\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .xl\:pl-2 { + padding-left: 0.5rem; } - .xl\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .xl\:pl-3 { + padding-left: 0.75rem; } - .xl\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .xl\:pl-4 { + padding-left: 1rem; } - .xl\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .xl\:pl-5 { + padding-left: 1.25rem; } - .xl\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .xl\:pl-6 { + padding-left: 1.5rem; } - .xl\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .xl\:pl-7 { + padding-left: 1.75rem; } - .xl\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .xl\:pl-8 { + padding-left: 2rem; } - .xl\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .xl\:pl-9 { + padding-left: 2.25rem; } - .xl\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .xl\:pl-10 { + padding-left: 2.5rem; } - .xl\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .xl\:pl-11 { + padding-left: 2.75rem; } - .xl\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .xl\:pl-12 { + padding-left: 3rem; } - .xl\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .xl\:pl-14 { + padding-left: 3.5rem; } - .xl\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .xl\:pl-16 { + padding-left: 4rem; } - .xl\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .xl\:pl-20 { + padding-left: 5rem; } - .xl\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .xl\:pl-24 { + padding-left: 6rem; } - .xl\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .xl\:pl-28 { + padding-left: 7rem; } - .xl\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .xl\:pl-32 { + padding-left: 8rem; } - .xl\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .xl\:pl-36 { + padding-left: 9rem; } - .xl\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .xl\:pl-40 { + padding-left: 10rem; } - .xl\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .xl\:pl-44 { + padding-left: 11rem; } - .xl\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .xl\:pl-48 { + padding-left: 12rem; } - .xl\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .xl\:pl-52 { + padding-left: 13rem; } - .xl\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .xl\:pl-56 { + padding-left: 14rem; } - .xl\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .xl\:pl-60 { + padding-left: 15rem; } - .xl\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .xl\:pl-64 { + padding-left: 16rem; } - .xl\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .xl\:pl-72 { + padding-left: 18rem; } - .xl\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .xl\:pl-80 { + padding-left: 20rem; } - .xl\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .xl\:pl-96 { + padding-left: 24rem; } - .xl\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .xl\:pl-px { + padding-left: 1px; } - .xl\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .xl\:pl-0\.5 { + padding-left: 0.125rem; } - .xl\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .xl\:pl-1\.5 { + padding-left: 0.375rem; } - .xl\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .xl\:pl-2\.5 { + padding-left: 0.625rem; } - .xl\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .xl\:pl-3\.5 { + padding-left: 0.875rem; } - .xl\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .xl\:text-left { + text-align: left; } - .xl\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .xl\:text-center { + text-align: center; } - .xl\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .xl\:text-right { + text-align: right; } - .xl\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .xl\:text-justify { + text-align: justify; } - .xl\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .xl\:align-baseline { + vertical-align: baseline; } - .xl\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .xl\:align-top { + vertical-align: top; } - .xl\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .xl\:align-middle { + vertical-align: middle; } - .xl\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .xl\:align-bottom { + vertical-align: bottom; } - .xl\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .xl\:align-text-top { + vertical-align: text-top; } - .xl\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .xl\:align-text-bottom { + vertical-align: text-bottom; } - .xl\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .xl\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .xl\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .xl\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .xl\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .xl\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .xl\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .xl\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .xl\:ring-opacity-0 { - --tw-ring-opacity: 0; + .xl\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .xl\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .xl\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .xl\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .xl\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .xl\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .xl\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .xl\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .xl\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .xl\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .xl\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .xl\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .xl\:text-5xl { + font-size: 3rem; + line-height: 1; } - .xl\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .xl\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .xl\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .xl\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .xl\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .xl\:text-8xl { + font-size: 6rem; + line-height: 1; } - .xl\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .xl\:text-9xl { + font-size: 8rem; + line-height: 1; } - .xl\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .xl\:font-thin { + font-weight: 100; } - .xl\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .xl\:font-extralight { + font-weight: 200; } - .xl\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .xl\:font-light { + font-weight: 300; } - .xl\:ring-opacity-100 { - --tw-ring-opacity: 1; + .xl\:font-normal { + font-weight: 400; } - .xl\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .xl\:font-medium { + font-weight: 500; } - .xl\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .xl\:font-semibold { + font-weight: 600; } - .xl\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .xl\:font-bold { + font-weight: 700; } - .xl\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .xl\:font-extrabold { + font-weight: 800; } - .xl\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .xl\:font-black { + font-weight: 900; } - .xl\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .xl\:uppercase { + text-transform: uppercase; } - .xl\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .xl\:lowercase { + text-transform: lowercase; } - .xl\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .xl\:capitalize { + text-transform: capitalize; } - .xl\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .xl\:normal-case { + text-transform: none; } - .xl\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .xl\:italic { + font-style: italic; } - .xl\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .xl\:not-italic { + font-style: normal; } - .xl\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .xl\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .xl\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .xl\:normal-nums { + font-variant-numeric: normal; } - .xl\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .xl\:ordinal { + --tw-ordinal: ordinal; } - .xl\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .xl\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .xl\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .xl\:lining-nums { + --tw-numeric-figure: lining-nums; } - .xl\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .xl\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .xl\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .xl\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .xl\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .xl\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .xl\:leading-3 { + line-height: .75rem; } - .xl\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .xl\:leading-4 { + line-height: 1rem; } - .xl\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .xl\:leading-5 { + line-height: 1.25rem; } - .xl\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .xl\:leading-6 { + line-height: 1.5rem; } - .xl\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .xl\:leading-7 { + line-height: 1.75rem; } - .xl\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .xl\:leading-8 { + line-height: 2rem; } - .xl\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .xl\:leading-9 { + line-height: 2.25rem; } - .xl\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .xl\:leading-10 { + line-height: 2.5rem; } - .xl\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .xl\:leading-none { + line-height: 1; } - .xl\:fill-current { - fill: currentColor; + .xl\:leading-tight { + line-height: 1.25; } - .xl\:stroke-current { - stroke: currentColor; + .xl\:leading-snug { + line-height: 1.375; } - .xl\:stroke-0 { - stroke-width: 0; + .xl\:leading-normal { + line-height: 1.5; } - .xl\:stroke-1 { - stroke-width: 1; + .xl\:leading-relaxed { + line-height: 1.625; } - .xl\:stroke-2 { - stroke-width: 2; + .xl\:leading-loose { + line-height: 2; } - .xl\:table-auto { - table-layout: auto; + .xl\:tracking-tighter { + letter-spacing: -0.05em; } - .xl\:table-fixed { - table-layout: fixed; + .xl\:tracking-tight { + letter-spacing: -0.025em; } - .xl\:text-left { - text-align: left; + .xl\:tracking-normal { + letter-spacing: 0em; } - .xl\:text-center { - text-align: center; + .xl\:tracking-wide { + letter-spacing: 0.025em; } - .xl\:text-right { - text-align: right; + .xl\:tracking-wider { + letter-spacing: 0.05em; } - .xl\:text-justify { - text-align: justify; + .xl\:tracking-widest { + letter-spacing: 0.1em; } .xl\:text-transparent { @@ -128458,44 +128931,6 @@ video { color: #831843; } - .xl\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .xl\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .xl\:overflow-clip { - text-overflow: clip; - } - - .xl\:italic { - font-style: italic; - } - - .xl\:not-italic { - font-style: normal; - } - - .xl\:uppercase { - text-transform: uppercase; - } - - .xl\:lowercase { - text-transform: lowercase; - } - - .xl\:capitalize { - text-transform: capitalize; - } - - .xl\:normal-case { - text-transform: none; - } - .xl\:underline { text-decoration: underline; } @@ -128566,13730 +129001,14082 @@ video { -moz-osx-font-smoothing: auto; } - .xl\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + .xl\:placeholder-transparent::placeholder { + color: transparent; } - .xl\:normal-nums { - font-variant-numeric: normal; + .xl\:placeholder-current::placeholder { + color: currentColor; } - .xl\:ordinal { - --tw-ordinal: ordinal; + .xl\:placeholder-black::placeholder { + color: #000; } - .xl\:slashed-zero { - --tw-slashed-zero: slashed-zero; + .xl\:placeholder-white::placeholder { + color: #fff; } - .xl\:lining-nums { - --tw-numeric-figure: lining-nums; + .xl\:placeholder-gray-50::placeholder { + color: #f9fafb; } - .xl\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; + .xl\:placeholder-gray-100::placeholder { + color: #f3f4f6; } - .xl\:proportional-nums { - --tw-numeric-spacing: proportional-nums; + .xl\:placeholder-gray-200::placeholder { + color: #e5e7eb; } - .xl\:tabular-nums { - --tw-numeric-spacing: tabular-nums; + .xl\:placeholder-gray-300::placeholder { + color: #d1d5db; } - .xl\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; + .xl\:placeholder-gray-400::placeholder { + color: #9ca3af; } - .xl\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; + .xl\:placeholder-gray-500::placeholder { + color: #6b7280; } - .xl\:tracking-tighter { - letter-spacing: -0.05em; + .xl\:placeholder-gray-600::placeholder { + color: #4b5563; } - .xl\:tracking-tight { - letter-spacing: -0.025em; + .xl\:placeholder-gray-700::placeholder { + color: #374151; } - .xl\:tracking-normal { - letter-spacing: 0em; + .xl\:placeholder-gray-800::placeholder { + color: #1f2937; } - .xl\:tracking-wide { - letter-spacing: 0.025em; + .xl\:placeholder-gray-900::placeholder { + color: #111827; } - .xl\:tracking-wider { - letter-spacing: 0.05em; + .xl\:placeholder-red-50::placeholder { + color: #fef2f2; } - .xl\:tracking-widest { - letter-spacing: 0.1em; + .xl\:placeholder-red-100::placeholder { + color: #fee2e2; } - .xl\:select-none { - user-select: none; + .xl\:placeholder-red-200::placeholder { + color: #fecaca; } - .xl\:select-text { - user-select: text; + .xl\:placeholder-red-300::placeholder { + color: #fca5a5; } - .xl\:select-all { - user-select: all; + .xl\:placeholder-red-400::placeholder { + color: #f87171; } - .xl\:select-auto { - user-select: auto; + .xl\:placeholder-red-500::placeholder { + color: #ef4444; } - .xl\:align-baseline { - vertical-align: baseline; + .xl\:placeholder-red-600::placeholder { + color: #dc2626; } - .xl\:align-top { - vertical-align: top; + .xl\:placeholder-red-700::placeholder { + color: #b91c1c; } - .xl\:align-middle { - vertical-align: middle; + .xl\:placeholder-red-800::placeholder { + color: #991b1b; } - .xl\:align-bottom { - vertical-align: bottom; + .xl\:placeholder-red-900::placeholder { + color: #7f1d1d; } - .xl\:align-text-top { - vertical-align: text-top; + .xl\:placeholder-yellow-50::placeholder { + color: #fffbeb; } - .xl\:align-text-bottom { - vertical-align: text-bottom; + .xl\:placeholder-yellow-100::placeholder { + color: #fef3c7; } - .xl\:visible { - visibility: visible; + .xl\:placeholder-yellow-200::placeholder { + color: #fde68a; } - .xl\:invisible { - visibility: hidden; + .xl\:placeholder-yellow-300::placeholder { + color: #fcd34d; } - .xl\:whitespace-normal { - white-space: normal; + .xl\:placeholder-yellow-400::placeholder { + color: #fbbf24; } - .xl\:whitespace-nowrap { - white-space: nowrap; + .xl\:placeholder-yellow-500::placeholder { + color: #f59e0b; } - .xl\:whitespace-pre { - white-space: pre; + .xl\:placeholder-yellow-600::placeholder { + color: #d97706; } - .xl\:whitespace-pre-line { - white-space: pre-line; + .xl\:placeholder-yellow-700::placeholder { + color: #b45309; } - .xl\:whitespace-pre-wrap { - white-space: pre-wrap; + .xl\:placeholder-yellow-800::placeholder { + color: #92400e; } - .xl\:break-normal { - overflow-wrap: normal; - word-break: normal; + .xl\:placeholder-yellow-900::placeholder { + color: #78350f; } - .xl\:break-words { - overflow-wrap: break-word; + .xl\:placeholder-green-50::placeholder { + color: #ecfdf5; } - .xl\:break-all { - word-break: break-all; + .xl\:placeholder-green-100::placeholder { + color: #d1fae5; } - .xl\:w-0 { - width: 0px; + .xl\:placeholder-green-200::placeholder { + color: #a7f3d0; } - .xl\:w-1 { - width: 0.25rem; + .xl\:placeholder-green-300::placeholder { + color: #6ee7b7; } - .xl\:w-2 { - width: 0.5rem; + .xl\:placeholder-green-400::placeholder { + color: #34d399; } - .xl\:w-3 { - width: 0.75rem; + .xl\:placeholder-green-500::placeholder { + color: #10b981; } - .xl\:w-4 { - width: 1rem; + .xl\:placeholder-green-600::placeholder { + color: #059669; } - .xl\:w-5 { - width: 1.25rem; + .xl\:placeholder-green-700::placeholder { + color: #047857; } - .xl\:w-6 { - width: 1.5rem; + .xl\:placeholder-green-800::placeholder { + color: #065f46; } - .xl\:w-7 { - width: 1.75rem; + .xl\:placeholder-green-900::placeholder { + color: #064e3b; } - .xl\:w-8 { - width: 2rem; + .xl\:placeholder-blue-50::placeholder { + color: #eff6ff; } - .xl\:w-9 { - width: 2.25rem; + .xl\:placeholder-blue-100::placeholder { + color: #dbeafe; } - .xl\:w-10 { - width: 2.5rem; + .xl\:placeholder-blue-200::placeholder { + color: #bfdbfe; } - .xl\:w-11 { - width: 2.75rem; + .xl\:placeholder-blue-300::placeholder { + color: #93c5fd; } - .xl\:w-12 { - width: 3rem; + .xl\:placeholder-blue-400::placeholder { + color: #60a5fa; } - .xl\:w-14 { - width: 3.5rem; + .xl\:placeholder-blue-500::placeholder { + color: #3b82f6; } - .xl\:w-16 { - width: 4rem; + .xl\:placeholder-blue-600::placeholder { + color: #2563eb; } - .xl\:w-20 { - width: 5rem; + .xl\:placeholder-blue-700::placeholder { + color: #1d4ed8; } - .xl\:w-24 { - width: 6rem; + .xl\:placeholder-blue-800::placeholder { + color: #1e40af; } - .xl\:w-28 { - width: 7rem; + .xl\:placeholder-blue-900::placeholder { + color: #1e3a8a; } - .xl\:w-32 { - width: 8rem; + .xl\:placeholder-indigo-50::placeholder { + color: #eef2ff; } - .xl\:w-36 { - width: 9rem; + .xl\:placeholder-indigo-100::placeholder { + color: #e0e7ff; } - .xl\:w-40 { - width: 10rem; + .xl\:placeholder-indigo-200::placeholder { + color: #c7d2fe; } - .xl\:w-44 { - width: 11rem; + .xl\:placeholder-indigo-300::placeholder { + color: #a5b4fc; } - .xl\:w-48 { - width: 12rem; + .xl\:placeholder-indigo-400::placeholder { + color: #818cf8; } - .xl\:w-52 { - width: 13rem; + .xl\:placeholder-indigo-500::placeholder { + color: #6366f1; } - .xl\:w-56 { - width: 14rem; + .xl\:placeholder-indigo-600::placeholder { + color: #4f46e5; } - .xl\:w-60 { - width: 15rem; + .xl\:placeholder-indigo-700::placeholder { + color: #4338ca; } - .xl\:w-64 { - width: 16rem; + .xl\:placeholder-indigo-800::placeholder { + color: #3730a3; } - .xl\:w-72 { - width: 18rem; + .xl\:placeholder-indigo-900::placeholder { + color: #312e81; } - .xl\:w-80 { - width: 20rem; + .xl\:placeholder-purple-50::placeholder { + color: #f5f3ff; } - .xl\:w-96 { - width: 24rem; + .xl\:placeholder-purple-100::placeholder { + color: #ede9fe; } - .xl\:w-auto { - width: auto; + .xl\:placeholder-purple-200::placeholder { + color: #ddd6fe; } - .xl\:w-px { - width: 1px; + .xl\:placeholder-purple-300::placeholder { + color: #c4b5fd; } - .xl\:w-0\.5 { - width: 0.125rem; + .xl\:placeholder-purple-400::placeholder { + color: #a78bfa; } - .xl\:w-1\.5 { - width: 0.375rem; + .xl\:placeholder-purple-500::placeholder { + color: #8b5cf6; } - .xl\:w-2\.5 { - width: 0.625rem; + .xl\:placeholder-purple-600::placeholder { + color: #7c3aed; } - .xl\:w-3\.5 { - width: 0.875rem; + .xl\:placeholder-purple-700::placeholder { + color: #6d28d9; } - .xl\:w-1\/2 { - width: 50%; + .xl\:placeholder-purple-800::placeholder { + color: #5b21b6; } - .xl\:w-1\/3 { - width: 33.333333%; + .xl\:placeholder-purple-900::placeholder { + color: #4c1d95; } - .xl\:w-2\/3 { - width: 66.666667%; + .xl\:placeholder-pink-50::placeholder { + color: #fdf2f8; } - .xl\:w-1\/4 { - width: 25%; + .xl\:placeholder-pink-100::placeholder { + color: #fce7f3; } - .xl\:w-2\/4 { - width: 50%; + .xl\:placeholder-pink-200::placeholder { + color: #fbcfe8; } - .xl\:w-3\/4 { - width: 75%; + .xl\:placeholder-pink-300::placeholder { + color: #f9a8d4; } - .xl\:w-1\/5 { - width: 20%; + .xl\:placeholder-pink-400::placeholder { + color: #f472b6; } - .xl\:w-2\/5 { - width: 40%; + .xl\:placeholder-pink-500::placeholder { + color: #ec4899; } - .xl\:w-3\/5 { - width: 60%; + .xl\:placeholder-pink-600::placeholder { + color: #db2777; } - .xl\:w-4\/5 { - width: 80%; + .xl\:placeholder-pink-700::placeholder { + color: #be185d; } - .xl\:w-1\/6 { - width: 16.666667%; + .xl\:placeholder-pink-800::placeholder { + color: #9d174d; } - .xl\:w-2\/6 { - width: 33.333333%; + .xl\:placeholder-pink-900::placeholder { + color: #831843; } - .xl\:w-3\/6 { - width: 50%; + .xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .xl\:w-4\/6 { - width: 66.666667%; + .xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .xl\:w-5\/6 { - width: 83.333333%; + .xl\:focus\:placeholder-black:focus::placeholder { + color: #000; } - .xl\:w-1\/12 { - width: 8.333333%; + .xl\:focus\:placeholder-white:focus::placeholder { + color: #fff; } - .xl\:w-2\/12 { - width: 16.666667%; + .xl\:focus\:placeholder-gray-50:focus::placeholder { + color: #f9fafb; } - .xl\:w-3\/12 { - width: 25%; + .xl\:focus\:placeholder-gray-100:focus::placeholder { + color: #f3f4f6; } - .xl\:w-4\/12 { - width: 33.333333%; + .xl\:focus\:placeholder-gray-200:focus::placeholder { + color: #e5e7eb; } - .xl\:w-5\/12 { - width: 41.666667%; + .xl\:focus\:placeholder-gray-300:focus::placeholder { + color: #d1d5db; } - .xl\:w-6\/12 { - width: 50%; + .xl\:focus\:placeholder-gray-400:focus::placeholder { + color: #9ca3af; } - .xl\:w-7\/12 { - width: 58.333333%; + .xl\:focus\:placeholder-gray-500:focus::placeholder { + color: #6b7280; } - .xl\:w-8\/12 { - width: 66.666667%; + .xl\:focus\:placeholder-gray-600:focus::placeholder { + color: #4b5563; } - .xl\:w-9\/12 { - width: 75%; + .xl\:focus\:placeholder-gray-700:focus::placeholder { + color: #374151; } - .xl\:w-10\/12 { - width: 83.333333%; + .xl\:focus\:placeholder-gray-800:focus::placeholder { + color: #1f2937; } - .xl\:w-11\/12 { - width: 91.666667%; + .xl\:focus\:placeholder-gray-900:focus::placeholder { + color: #111827; } - .xl\:w-full { - width: 100%; + .xl\:focus\:placeholder-red-50:focus::placeholder { + color: #fef2f2; } - .xl\:w-screen { - width: 100vw; + .xl\:focus\:placeholder-red-100:focus::placeholder { + color: #fee2e2; } - .xl\:w-min { - width: min-content; + .xl\:focus\:placeholder-red-200:focus::placeholder { + color: #fecaca; } - .xl\:w-max { - width: max-content; + .xl\:focus\:placeholder-red-300:focus::placeholder { + color: #fca5a5; } - .xl\:z-0 { - z-index: 0; + .xl\:focus\:placeholder-red-400:focus::placeholder { + color: #f87171; } - .xl\:z-10 { - z-index: 10; + .xl\:focus\:placeholder-red-500:focus::placeholder { + color: #ef4444; } - .xl\:z-20 { - z-index: 20; + .xl\:focus\:placeholder-red-600:focus::placeholder { + color: #dc2626; } - .xl\:z-30 { - z-index: 30; + .xl\:focus\:placeholder-red-700:focus::placeholder { + color: #b91c1c; } - .xl\:z-40 { - z-index: 40; + .xl\:focus\:placeholder-red-800:focus::placeholder { + color: #991b1b; } - .xl\:z-50 { - z-index: 50; + .xl\:focus\:placeholder-red-900:focus::placeholder { + color: #7f1d1d; } - .xl\:z-auto { - z-index: auto; + .xl\:focus\:placeholder-yellow-50:focus::placeholder { + color: #fffbeb; } - .xl\:focus-within\:z-0:focus-within { - z-index: 0; + .xl\:focus\:placeholder-yellow-100:focus::placeholder { + color: #fef3c7; } - .xl\:focus-within\:z-10:focus-within { - z-index: 10; + .xl\:focus\:placeholder-yellow-200:focus::placeholder { + color: #fde68a; } - .xl\:focus-within\:z-20:focus-within { - z-index: 20; + .xl\:focus\:placeholder-yellow-300:focus::placeholder { + color: #fcd34d; } - .xl\:focus-within\:z-30:focus-within { - z-index: 30; + .xl\:focus\:placeholder-yellow-400:focus::placeholder { + color: #fbbf24; } - .xl\:focus-within\:z-40:focus-within { - z-index: 40; + .xl\:focus\:placeholder-yellow-500:focus::placeholder { + color: #f59e0b; } - .xl\:focus-within\:z-50:focus-within { - z-index: 50; + .xl\:focus\:placeholder-yellow-600:focus::placeholder { + color: #d97706; } - .xl\:focus-within\:z-auto:focus-within { - z-index: auto; + .xl\:focus\:placeholder-yellow-700:focus::placeholder { + color: #b45309; } - .xl\:focus\:z-0:focus { - z-index: 0; + .xl\:focus\:placeholder-yellow-800:focus::placeholder { + color: #92400e; } - .xl\:focus\:z-10:focus { - z-index: 10; + .xl\:focus\:placeholder-yellow-900:focus::placeholder { + color: #78350f; } - .xl\:focus\:z-20:focus { - z-index: 20; + .xl\:focus\:placeholder-green-50:focus::placeholder { + color: #ecfdf5; } - .xl\:focus\:z-30:focus { - z-index: 30; + .xl\:focus\:placeholder-green-100:focus::placeholder { + color: #d1fae5; } - .xl\:focus\:z-40:focus { - z-index: 40; + .xl\:focus\:placeholder-green-200:focus::placeholder { + color: #a7f3d0; } - .xl\:focus\:z-50:focus { - z-index: 50; + .xl\:focus\:placeholder-green-300:focus::placeholder { + color: #6ee7b7; } - .xl\:focus\:z-auto:focus { - z-index: auto; + .xl\:focus\:placeholder-green-400:focus::placeholder { + color: #34d399; } - .xl\:isolate { - isolation: isolate; + .xl\:focus\:placeholder-green-500:focus::placeholder { + color: #10b981; } - .xl\:isolation-auto { - isolation: auto; + .xl\:focus\:placeholder-green-600:focus::placeholder { + color: #059669; } - .xl\:gap-0 { - gap: 0px; + .xl\:focus\:placeholder-green-700:focus::placeholder { + color: #047857; } - .xl\:gap-1 { - gap: 0.25rem; + .xl\:focus\:placeholder-green-800:focus::placeholder { + color: #065f46; } - .xl\:gap-2 { - gap: 0.5rem; + .xl\:focus\:placeholder-green-900:focus::placeholder { + color: #064e3b; } - .xl\:gap-3 { - gap: 0.75rem; + .xl\:focus\:placeholder-blue-50:focus::placeholder { + color: #eff6ff; } - .xl\:gap-4 { - gap: 1rem; + .xl\:focus\:placeholder-blue-100:focus::placeholder { + color: #dbeafe; } - .xl\:gap-5 { - gap: 1.25rem; + .xl\:focus\:placeholder-blue-200:focus::placeholder { + color: #bfdbfe; } - .xl\:gap-6 { - gap: 1.5rem; + .xl\:focus\:placeholder-blue-300:focus::placeholder { + color: #93c5fd; } - .xl\:gap-7 { - gap: 1.75rem; + .xl\:focus\:placeholder-blue-400:focus::placeholder { + color: #60a5fa; } - .xl\:gap-8 { - gap: 2rem; + .xl\:focus\:placeholder-blue-500:focus::placeholder { + color: #3b82f6; } - .xl\:gap-9 { - gap: 2.25rem; + .xl\:focus\:placeholder-blue-600:focus::placeholder { + color: #2563eb; } - .xl\:gap-10 { - gap: 2.5rem; + .xl\:focus\:placeholder-blue-700:focus::placeholder { + color: #1d4ed8; } - .xl\:gap-11 { - gap: 2.75rem; + .xl\:focus\:placeholder-blue-800:focus::placeholder { + color: #1e40af; } - .xl\:gap-12 { - gap: 3rem; + .xl\:focus\:placeholder-blue-900:focus::placeholder { + color: #1e3a8a; } - .xl\:gap-14 { - gap: 3.5rem; + .xl\:focus\:placeholder-indigo-50:focus::placeholder { + color: #eef2ff; } - .xl\:gap-16 { - gap: 4rem; + .xl\:focus\:placeholder-indigo-100:focus::placeholder { + color: #e0e7ff; } - .xl\:gap-20 { - gap: 5rem; + .xl\:focus\:placeholder-indigo-200:focus::placeholder { + color: #c7d2fe; } - .xl\:gap-24 { - gap: 6rem; + .xl\:focus\:placeholder-indigo-300:focus::placeholder { + color: #a5b4fc; } - .xl\:gap-28 { - gap: 7rem; + .xl\:focus\:placeholder-indigo-400:focus::placeholder { + color: #818cf8; } - .xl\:gap-32 { - gap: 8rem; + .xl\:focus\:placeholder-indigo-500:focus::placeholder { + color: #6366f1; } - .xl\:gap-36 { - gap: 9rem; + .xl\:focus\:placeholder-indigo-600:focus::placeholder { + color: #4f46e5; } - .xl\:gap-40 { - gap: 10rem; + .xl\:focus\:placeholder-indigo-700:focus::placeholder { + color: #4338ca; } - .xl\:gap-44 { - gap: 11rem; + .xl\:focus\:placeholder-indigo-800:focus::placeholder { + color: #3730a3; } - .xl\:gap-48 { - gap: 12rem; + .xl\:focus\:placeholder-indigo-900:focus::placeholder { + color: #312e81; } - .xl\:gap-52 { - gap: 13rem; + .xl\:focus\:placeholder-purple-50:focus::placeholder { + color: #f5f3ff; } - .xl\:gap-56 { - gap: 14rem; + .xl\:focus\:placeholder-purple-100:focus::placeholder { + color: #ede9fe; } - .xl\:gap-60 { - gap: 15rem; + .xl\:focus\:placeholder-purple-200:focus::placeholder { + color: #ddd6fe; } - .xl\:gap-64 { - gap: 16rem; + .xl\:focus\:placeholder-purple-300:focus::placeholder { + color: #c4b5fd; } - .xl\:gap-72 { - gap: 18rem; + .xl\:focus\:placeholder-purple-400:focus::placeholder { + color: #a78bfa; } - .xl\:gap-80 { - gap: 20rem; + .xl\:focus\:placeholder-purple-500:focus::placeholder { + color: #8b5cf6; } - .xl\:gap-96 { - gap: 24rem; + .xl\:focus\:placeholder-purple-600:focus::placeholder { + color: #7c3aed; } - .xl\:gap-px { - gap: 1px; + .xl\:focus\:placeholder-purple-700:focus::placeholder { + color: #6d28d9; } - .xl\:gap-0\.5 { - gap: 0.125rem; + .xl\:focus\:placeholder-purple-800:focus::placeholder { + color: #5b21b6; } - .xl\:gap-1\.5 { - gap: 0.375rem; + .xl\:focus\:placeholder-purple-900:focus::placeholder { + color: #4c1d95; } - .xl\:gap-2\.5 { - gap: 0.625rem; + .xl\:focus\:placeholder-pink-50:focus::placeholder { + color: #fdf2f8; } - .xl\:gap-3\.5 { - gap: 0.875rem; + .xl\:focus\:placeholder-pink-100:focus::placeholder { + color: #fce7f3; } - .xl\:gap-x-0 { - column-gap: 0px; + .xl\:focus\:placeholder-pink-200:focus::placeholder { + color: #fbcfe8; } - .xl\:gap-x-1 { - column-gap: 0.25rem; + .xl\:focus\:placeholder-pink-300:focus::placeholder { + color: #f9a8d4; } - .xl\:gap-x-2 { - column-gap: 0.5rem; + .xl\:focus\:placeholder-pink-400:focus::placeholder { + color: #f472b6; } - .xl\:gap-x-3 { - column-gap: 0.75rem; + .xl\:focus\:placeholder-pink-500:focus::placeholder { + color: #ec4899; } - .xl\:gap-x-4 { - column-gap: 1rem; + .xl\:focus\:placeholder-pink-600:focus::placeholder { + color: #db2777; } - .xl\:gap-x-5 { - column-gap: 1.25rem; + .xl\:focus\:placeholder-pink-700:focus::placeholder { + color: #be185d; } - .xl\:gap-x-6 { - column-gap: 1.5rem; + .xl\:focus\:placeholder-pink-800:focus::placeholder { + color: #9d174d; } - .xl\:gap-x-7 { - column-gap: 1.75rem; + .xl\:focus\:placeholder-pink-900:focus::placeholder { + color: #831843; } - .xl\:gap-x-8 { - column-gap: 2rem; + .xl\:opacity-0 { + opacity: 0; } - .xl\:gap-x-9 { - column-gap: 2.25rem; + .xl\:opacity-5 { + opacity: 0.05; } - .xl\:gap-x-10 { - column-gap: 2.5rem; + .xl\:opacity-10 { + opacity: 0.1; } - .xl\:gap-x-11 { - column-gap: 2.75rem; + .xl\:opacity-20 { + opacity: 0.2; } - .xl\:gap-x-12 { - column-gap: 3rem; + .xl\:opacity-25 { + opacity: 0.25; } - .xl\:gap-x-14 { - column-gap: 3.5rem; + .xl\:opacity-30 { + opacity: 0.3; } - .xl\:gap-x-16 { - column-gap: 4rem; + .xl\:opacity-40 { + opacity: 0.4; } - .xl\:gap-x-20 { - column-gap: 5rem; + .xl\:opacity-50 { + opacity: 0.5; } - .xl\:gap-x-24 { - column-gap: 6rem; + .xl\:opacity-60 { + opacity: 0.6; } - .xl\:gap-x-28 { - column-gap: 7rem; + .xl\:opacity-70 { + opacity: 0.7; } - .xl\:gap-x-32 { - column-gap: 8rem; + .xl\:opacity-75 { + opacity: 0.75; + } + + .xl\:opacity-80 { + opacity: 0.8; + } + + .xl\:opacity-90 { + opacity: 0.9; + } + + .xl\:opacity-95 { + opacity: 0.95; + } + + .xl\:opacity-100 { + opacity: 1; + } + + .group:hover .xl\:group-hover\:opacity-0 { + opacity: 0; + } + + .group:hover .xl\:group-hover\:opacity-5 { + opacity: 0.05; + } + + .group:hover .xl\:group-hover\:opacity-10 { + opacity: 0.1; + } + + .group:hover .xl\:group-hover\:opacity-20 { + opacity: 0.2; + } + + .group:hover .xl\:group-hover\:opacity-25 { + opacity: 0.25; + } + + .group:hover .xl\:group-hover\:opacity-30 { + opacity: 0.3; + } + + .group:hover .xl\:group-hover\:opacity-40 { + opacity: 0.4; } - .xl\:gap-x-36 { - column-gap: 9rem; + .group:hover .xl\:group-hover\:opacity-50 { + opacity: 0.5; } - .xl\:gap-x-40 { - column-gap: 10rem; + .group:hover .xl\:group-hover\:opacity-60 { + opacity: 0.6; } - .xl\:gap-x-44 { - column-gap: 11rem; + .group:hover .xl\:group-hover\:opacity-70 { + opacity: 0.7; } - .xl\:gap-x-48 { - column-gap: 12rem; + .group:hover .xl\:group-hover\:opacity-75 { + opacity: 0.75; } - .xl\:gap-x-52 { - column-gap: 13rem; + .group:hover .xl\:group-hover\:opacity-80 { + opacity: 0.8; } - .xl\:gap-x-56 { - column-gap: 14rem; + .group:hover .xl\:group-hover\:opacity-90 { + opacity: 0.9; } - .xl\:gap-x-60 { - column-gap: 15rem; + .group:hover .xl\:group-hover\:opacity-95 { + opacity: 0.95; } - .xl\:gap-x-64 { - column-gap: 16rem; + .group:hover .xl\:group-hover\:opacity-100 { + opacity: 1; } - .xl\:gap-x-72 { - column-gap: 18rem; + .xl\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .xl\:gap-x-80 { - column-gap: 20rem; + .xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .xl\:gap-x-96 { - column-gap: 24rem; + .xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .xl\:gap-x-px { - column-gap: 1px; + .xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .xl\:gap-x-0\.5 { - column-gap: 0.125rem; + .xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .xl\:gap-x-1\.5 { - column-gap: 0.375rem; + .xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .xl\:gap-x-2\.5 { - column-gap: 0.625rem; + .xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .xl\:gap-x-3\.5 { - column-gap: 0.875rem; + .xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .xl\:gap-y-0 { - row-gap: 0px; + .xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .xl\:gap-y-1 { - row-gap: 0.25rem; + .xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .xl\:gap-y-2 { - row-gap: 0.5rem; + .xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .xl\:gap-y-3 { - row-gap: 0.75rem; + .xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .xl\:gap-y-4 { - row-gap: 1rem; + .xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .xl\:gap-y-5 { - row-gap: 1.25rem; + .xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .xl\:gap-y-6 { - row-gap: 1.5rem; + .xl\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .xl\:gap-y-7 { - row-gap: 1.75rem; + .xl\:hover\:opacity-0:hover { + opacity: 0; } - .xl\:gap-y-8 { - row-gap: 2rem; + .xl\:hover\:opacity-5:hover { + opacity: 0.05; } - .xl\:gap-y-9 { - row-gap: 2.25rem; + .xl\:hover\:opacity-10:hover { + opacity: 0.1; } - .xl\:gap-y-10 { - row-gap: 2.5rem; + .xl\:hover\:opacity-20:hover { + opacity: 0.2; } - .xl\:gap-y-11 { - row-gap: 2.75rem; + .xl\:hover\:opacity-25:hover { + opacity: 0.25; } - .xl\:gap-y-12 { - row-gap: 3rem; + .xl\:hover\:opacity-30:hover { + opacity: 0.3; } - .xl\:gap-y-14 { - row-gap: 3.5rem; + .xl\:hover\:opacity-40:hover { + opacity: 0.4; } - .xl\:gap-y-16 { - row-gap: 4rem; + .xl\:hover\:opacity-50:hover { + opacity: 0.5; } - .xl\:gap-y-20 { - row-gap: 5rem; + .xl\:hover\:opacity-60:hover { + opacity: 0.6; } - .xl\:gap-y-24 { - row-gap: 6rem; + .xl\:hover\:opacity-70:hover { + opacity: 0.7; } - .xl\:gap-y-28 { - row-gap: 7rem; + .xl\:hover\:opacity-75:hover { + opacity: 0.75; } - .xl\:gap-y-32 { - row-gap: 8rem; + .xl\:hover\:opacity-80:hover { + opacity: 0.8; } - .xl\:gap-y-36 { - row-gap: 9rem; + .xl\:hover\:opacity-90:hover { + opacity: 0.9; } - .xl\:gap-y-40 { - row-gap: 10rem; + .xl\:hover\:opacity-95:hover { + opacity: 0.95; } - .xl\:gap-y-44 { - row-gap: 11rem; + .xl\:hover\:opacity-100:hover { + opacity: 1; } - .xl\:gap-y-48 { - row-gap: 12rem; + .xl\:focus\:opacity-0:focus { + opacity: 0; } - .xl\:gap-y-52 { - row-gap: 13rem; + .xl\:focus\:opacity-5:focus { + opacity: 0.05; } - .xl\:gap-y-56 { - row-gap: 14rem; + .xl\:focus\:opacity-10:focus { + opacity: 0.1; } - .xl\:gap-y-60 { - row-gap: 15rem; + .xl\:focus\:opacity-20:focus { + opacity: 0.2; } - .xl\:gap-y-64 { - row-gap: 16rem; + .xl\:focus\:opacity-25:focus { + opacity: 0.25; } - .xl\:gap-y-72 { - row-gap: 18rem; + .xl\:focus\:opacity-30:focus { + opacity: 0.3; } - .xl\:gap-y-80 { - row-gap: 20rem; + .xl\:focus\:opacity-40:focus { + opacity: 0.4; } - .xl\:gap-y-96 { - row-gap: 24rem; + .xl\:focus\:opacity-50:focus { + opacity: 0.5; } - .xl\:gap-y-px { - row-gap: 1px; + .xl\:focus\:opacity-60:focus { + opacity: 0.6; } - .xl\:gap-y-0\.5 { - row-gap: 0.125rem; + .xl\:focus\:opacity-70:focus { + opacity: 0.7; } - .xl\:gap-y-1\.5 { - row-gap: 0.375rem; + .xl\:focus\:opacity-75:focus { + opacity: 0.75; } - .xl\:gap-y-2\.5 { - row-gap: 0.625rem; + .xl\:focus\:opacity-80:focus { + opacity: 0.8; } - .xl\:gap-y-3\.5 { - row-gap: 0.875rem; + .xl\:focus\:opacity-90:focus { + opacity: 0.9; } - .xl\:grid-flow-row { - grid-auto-flow: row; + .xl\:focus\:opacity-95:focus { + opacity: 0.95; } - .xl\:grid-flow-col { - grid-auto-flow: column; + .xl\:focus\:opacity-100:focus { + opacity: 1; } - .xl\:grid-flow-row-dense { - grid-auto-flow: row dense; + .xl\:bg-blend-normal { + background-blend-mode: normal; } - .xl\:grid-flow-col-dense { - grid-auto-flow: column dense; + .xl\:bg-blend-multiply { + background-blend-mode: multiply; } - .xl\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .xl\:bg-blend-screen { + background-blend-mode: screen; } - .xl\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .xl\:bg-blend-overlay { + background-blend-mode: overlay; } - .xl\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .xl\:bg-blend-darken { + background-blend-mode: darken; } - .xl\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .xl\:bg-blend-lighten { + background-blend-mode: lighten; } - .xl\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .xl\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .xl\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .xl\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .xl\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .xl\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .xl\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .xl\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .xl\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .xl\:bg-blend-difference { + background-blend-mode: difference; } - .xl\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .xl\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .xl\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .xl\:bg-blend-hue { + background-blend-mode: hue; } - .xl\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .xl\:bg-blend-saturation { + background-blend-mode: saturation; } - .xl\:grid-cols-none { - grid-template-columns: none; + .xl\:bg-blend-color { + background-blend-mode: color; } - .xl\:auto-cols-auto { - grid-auto-columns: auto; + .xl\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .xl\:auto-cols-min { - grid-auto-columns: min-content; + .xl\:mix-blend-normal { + mix-blend-mode: normal; } - .xl\:auto-cols-max { - grid-auto-columns: max-content; + .xl\:mix-blend-multiply { + mix-blend-mode: multiply; } - .xl\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .xl\:mix-blend-screen { + mix-blend-mode: screen; } - .xl\:col-auto { - grid-column: auto; + .xl\:mix-blend-overlay { + mix-blend-mode: overlay; } - .xl\:col-span-1 { - grid-column: span 1 / span 1; + .xl\:mix-blend-darken { + mix-blend-mode: darken; } - .xl\:col-span-2 { - grid-column: span 2 / span 2; + .xl\:mix-blend-lighten { + mix-blend-mode: lighten; } - .xl\:col-span-3 { - grid-column: span 3 / span 3; + .xl\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .xl\:col-span-4 { - grid-column: span 4 / span 4; + .xl\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .xl\:col-span-5 { - grid-column: span 5 / span 5; + .xl\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .xl\:col-span-6 { - grid-column: span 6 / span 6; + .xl\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .xl\:col-span-7 { - grid-column: span 7 / span 7; + .xl\:mix-blend-difference { + mix-blend-mode: difference; } - .xl\:col-span-8 { - grid-column: span 8 / span 8; + .xl\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .xl\:col-span-9 { - grid-column: span 9 / span 9; + .xl\:mix-blend-hue { + mix-blend-mode: hue; } - .xl\:col-span-10 { - grid-column: span 10 / span 10; + .xl\:mix-blend-saturation { + mix-blend-mode: saturation; } - .xl\:col-span-11 { - grid-column: span 11 / span 11; + .xl\:mix-blend-color { + mix-blend-mode: color; } - .xl\:col-span-12 { - grid-column: span 12 / span 12; + .xl\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .xl\:col-span-full { - grid-column: 1 / -1; + .xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-1 { - grid-column-start: 1; + .xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-2 { - grid-column-start: 2; + .xl\: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); } - .xl\:col-start-3 { - grid-column-start: 3; + .xl\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-4 { - grid-column-start: 4; + .xl\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-5 { - grid-column-start: 5; + .xl\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-6 { - grid-column-start: 6; + .xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-7 { - grid-column-start: 7; + .xl\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-8 { - grid-column-start: 8; + .group:hover .xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-9 { - grid-column-start: 9; + .group:hover .xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-10 { - grid-column-start: 10; + .group:hover .xl\:group-hover\: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); } - .xl\:col-start-11 { - grid-column-start: 11; + .group:hover .xl\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-12 { - grid-column-start: 12; + .group:hover .xl\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-13 { - grid-column-start: 13; + .group:hover .xl\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-start-auto { - grid-column-start: auto; + .group:hover .xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-1 { - grid-column-end: 1; + .group:hover .xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-2 { - grid-column-end: 2; + .xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-3 { - grid-column-end: 3; + .xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-4 { - grid-column-end: 4; + .xl\:focus-within\:shadow-md:focus-within { + --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); } - .xl\:col-end-5 { - grid-column-end: 5; + .xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-6 { - grid-column-end: 6; + .xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-7 { - grid-column-end: 7; + .xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-8 { - grid-column-end: 8; + .xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-9 { - grid-column-end: 9; + .xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-10 { - grid-column-end: 10; + .xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-11 { - grid-column-end: 11; + .xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-12 { - grid-column-end: 12; + .xl\:hover\:shadow-md:hover { + --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); } - .xl\:col-end-13 { - grid-column-end: 13; + .xl\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:col-end-auto { - grid-column-end: auto; + .xl\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .xl\:focus\:shadow-md:focus { + --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); } - .xl\:grid-rows-none { - grid-template-rows: none; + .xl\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:auto-rows-auto { - grid-auto-rows: auto; + .xl\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:auto-rows-min { - grid-auto-rows: min-content; + .xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:auto-rows-max { - grid-auto-rows: max-content; + .xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-auto { - grid-row: auto; + .xl\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .xl\:row-span-1 { - grid-row: span 1 / span 1; + .xl\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .xl\:row-span-2 { - grid-row: span 2 / span 2; + .xl\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .xl\:row-span-3 { - grid-row: span 3 / span 3; + .xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .xl\:row-span-4 { - grid-row: span 4 / span 4; + .xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .xl\:row-span-5 { - grid-row: span 5 / span 5; + .xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .xl\:row-span-6 { - grid-row: span 6 / span 6; + .xl\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .xl\:row-span-full { - grid-row: 1 / -1; + .xl\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .xl\:row-start-1 { - grid-row-start: 1; + .xl\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .xl\:row-start-2 { - grid-row-start: 2; + .xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-start-3 { - grid-row-start: 3; + .xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-start-4 { - grid-row-start: 4; + .xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-start-5 { - grid-row-start: 5; + .xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-start-6 { - grid-row-start: 6; + .xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-start-7 { - grid-row-start: 7; + .xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-start-auto { - grid-row-start: auto; + .xl\:ring-inset { + --tw-ring-inset: inset; } - .xl\:row-end-1 { - grid-row-end: 1; + .xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-end-2 { - grid-row-end: 2; + .xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-end-3 { - grid-row-end: 3; + .xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-end-4 { - grid-row-end: 4; + .xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-end-5 { - grid-row-end: 5; + .xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-end-6 { - grid-row-end: 6; + .xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:row-end-7 { - grid-row-end: 7; + .xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .xl\:row-end-auto { - grid-row-end: auto; + .xl\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:transform-none { - transform: none; + .xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:origin-center { - transform-origin: center; + .xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:origin-top { - transform-origin: top; + .xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:origin-top-right { - transform-origin: top right; + .xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .xl\:origin-right { - transform-origin: right; + .xl\:ring-transparent { + --tw-ring-color: transparent; } - .xl\:origin-bottom-right { - transform-origin: bottom right; + .xl\:ring-current { + --tw-ring-color: currentColor; } - .xl\:origin-bottom { - transform-origin: bottom; + .xl\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .xl\:origin-bottom-left { - transform-origin: bottom left; + .xl\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .xl\:origin-left { - transform-origin: left; + .xl\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .xl\:origin-top-left { - transform-origin: top left; + .xl\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .xl\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .xl\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .xl\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .xl\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .xl\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .xl\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .xl\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .xl\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .xl\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .xl\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .xl\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .xl\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .xl\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .xl\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .xl\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .xl\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .xl\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .xl\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .xl\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .xl\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .xl\:scale-x-0 { - --tw-scale-x: 0; + .xl\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .xl\:scale-x-50 { - --tw-scale-x: .5; + .xl\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .xl\:scale-x-75 { - --tw-scale-x: .75; + .xl\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .xl\:scale-x-90 { - --tw-scale-x: .9; + .xl\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .xl\:scale-x-95 { - --tw-scale-x: .95; + .xl\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .xl\:scale-x-100 { - --tw-scale-x: 1; + .xl\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .xl\:scale-x-105 { - --tw-scale-x: 1.05; + .xl\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .xl\:scale-x-110 { - --tw-scale-x: 1.1; + .xl\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .xl\:scale-x-125 { - --tw-scale-x: 1.25; + .xl\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .xl\:scale-x-150 { - --tw-scale-x: 1.5; + .xl\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .xl\:scale-y-0 { - --tw-scale-y: 0; + .xl\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .xl\:scale-y-50 { - --tw-scale-y: .5; + .xl\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .xl\:scale-y-75 { - --tw-scale-y: .75; + .xl\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .xl\:scale-y-90 { - --tw-scale-y: .9; + .xl\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .xl\:scale-y-95 { - --tw-scale-y: .95; + .xl\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .xl\:scale-y-100 { - --tw-scale-y: 1; + .xl\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .xl\:scale-y-105 { - --tw-scale-y: 1.05; + .xl\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .xl\:scale-y-110 { - --tw-scale-y: 1.1; + .xl\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .xl\:scale-y-125 { - --tw-scale-y: 1.25; + .xl\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .xl\:scale-y-150 { - --tw-scale-y: 1.5; + .xl\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .xl\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .xl\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .xl\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .xl\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .xl\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .xl\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .xl\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .xl\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .xl\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .xl\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .xl\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .xl\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .xl\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .xl\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .xl\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .xl\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .xl\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .xl\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .xl\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .xl\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .xl\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .xl\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .xl\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .xl\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .xl\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .xl\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .xl\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .xl\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .xl\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .xl\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .xl\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .xl\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .xl\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .xl\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .xl\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .xl\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .xl\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .xl\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .xl\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .xl\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .xl\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .xl\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .xl\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .xl\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .xl\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .xl\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .xl\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .xl\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .xl\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .xl\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .xl\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .xl\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .xl\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .xl\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .xl\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .xl\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .xl\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .xl\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .xl\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .xl\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .xl\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .xl\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .xl\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .xl\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .xl\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .xl\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .xl\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .xl\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .xl\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .xl\:rotate-0 { - --tw-rotate: 0deg; + .xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .xl\:rotate-1 { - --tw-rotate: 1deg; + .xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .xl\:rotate-2 { - --tw-rotate: 2deg; + .xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .xl\:rotate-3 { - --tw-rotate: 3deg; + .xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .xl\:rotate-6 { - --tw-rotate: 6deg; + .xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .xl\:rotate-12 { - --tw-rotate: 12deg; + .xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .xl\:rotate-45 { - --tw-rotate: 45deg; + .xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .xl\:rotate-90 { - --tw-rotate: 90deg; + .xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .xl\:rotate-180 { - --tw-rotate: 180deg; + .xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .xl\:-rotate-180 { - --tw-rotate: -180deg; + .xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .xl\:-rotate-90 { - --tw-rotate: -90deg; + .xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .xl\:-rotate-45 { - --tw-rotate: -45deg; + .xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .xl\:-rotate-12 { - --tw-rotate: -12deg; + .xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .xl\:-rotate-6 { - --tw-rotate: -6deg; + .xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .xl\:-rotate-3 { - --tw-rotate: -3deg; + .xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .xl\:-rotate-2 { - --tw-rotate: -2deg; + .xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .xl\:-rotate-1 { - --tw-rotate: -1deg; + .xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .xl\:translate-x-0 { - --tw-translate-x: 0px; + .xl\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .xl\:translate-x-1 { - --tw-translate-x: 0.25rem; + .xl\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .xl\:translate-x-2 { - --tw-translate-x: 0.5rem; + .xl\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .xl\:translate-x-3 { - --tw-translate-x: 0.75rem; + .xl\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .xl\:translate-x-4 { - --tw-translate-x: 1rem; + .xl\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .xl\:translate-x-5 { - --tw-translate-x: 1.25rem; + .xl\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .xl\:translate-x-6 { - --tw-translate-x: 1.5rem; + .xl\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .xl\:translate-x-7 { - --tw-translate-x: 1.75rem; + .xl\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .xl\:translate-x-8 { - --tw-translate-x: 2rem; + .xl\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .xl\:translate-x-9 { - --tw-translate-x: 2.25rem; + .xl\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .xl\:translate-x-10 { - --tw-translate-x: 2.5rem; + .xl\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .xl\:translate-x-11 { - --tw-translate-x: 2.75rem; + .xl\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .xl\:translate-x-12 { - --tw-translate-x: 3rem; + .xl\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .xl\:translate-x-14 { - --tw-translate-x: 3.5rem; + .xl\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .xl\:translate-x-16 { - --tw-translate-x: 4rem; + .xl\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .xl\:translate-x-20 { - --tw-translate-x: 5rem; + .xl\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .xl\:translate-x-24 { - --tw-translate-x: 6rem; + .xl\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .xl\:translate-x-28 { - --tw-translate-x: 7rem; + .xl\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .xl\:translate-x-32 { - --tw-translate-x: 8rem; + .xl\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .xl\:translate-x-36 { - --tw-translate-x: 9rem; + .xl\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .xl\:translate-x-40 { - --tw-translate-x: 10rem; + .xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .xl\:translate-x-44 { - --tw-translate-x: 11rem; + .xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .xl\:translate-x-48 { - --tw-translate-x: 12rem; + .xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .xl\:translate-x-52 { - --tw-translate-x: 13rem; + .xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .xl\:translate-x-56 { - --tw-translate-x: 14rem; + .xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .xl\:translate-x-60 { - --tw-translate-x: 15rem; + .xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .xl\:translate-x-64 { - --tw-translate-x: 16rem; + .xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .xl\:translate-x-72 { - --tw-translate-x: 18rem; + .xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .xl\:translate-x-80 { - --tw-translate-x: 20rem; + .xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .xl\:translate-x-96 { - --tw-translate-x: 24rem; + .xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .xl\:translate-x-px { - --tw-translate-x: 1px; + .xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .xl\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .xl\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .xl\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .xl\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .xl\:-translate-x-0 { - --tw-translate-x: 0px; + .xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .xl\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .xl\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .xl\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .xl\:-translate-x-4 { - --tw-translate-x: -1rem; + .xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .xl\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .xl\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .xl\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .xl\:-translate-x-8 { - --tw-translate-x: -2rem; + .xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .xl\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .xl\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .xl\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .xl\:-translate-x-12 { - --tw-translate-x: -3rem; + .xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .xl\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .xl\:-translate-x-16 { - --tw-translate-x: -4rem; + .xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .xl\:-translate-x-20 { - --tw-translate-x: -5rem; + .xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .xl\:-translate-x-24 { - --tw-translate-x: -6rem; + .xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .xl\:-translate-x-28 { - --tw-translate-x: -7rem; + .xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .xl\:-translate-x-32 { - --tw-translate-x: -8rem; + .xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .xl\:-translate-x-36 { - --tw-translate-x: -9rem; + .xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .xl\:-translate-x-40 { - --tw-translate-x: -10rem; + .xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .xl\:-translate-x-44 { - --tw-translate-x: -11rem; + .xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .xl\:-translate-x-48 { - --tw-translate-x: -12rem; + .xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .xl\:-translate-x-52 { - --tw-translate-x: -13rem; + .xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .xl\:-translate-x-56 { - --tw-translate-x: -14rem; + .xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .xl\:-translate-x-60 { - --tw-translate-x: -15rem; + .xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .xl\:-translate-x-64 { - --tw-translate-x: -16rem; + .xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .xl\:-translate-x-72 { - --tw-translate-x: -18rem; + .xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .xl\:-translate-x-80 { - --tw-translate-x: -20rem; + .xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .xl\:-translate-x-96 { - --tw-translate-x: -24rem; + .xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .xl\:-translate-x-px { - --tw-translate-x: -1px; + .xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .xl\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .xl\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .xl\:translate-x-1\/2 { - --tw-translate-x: 50%; + .xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .xl\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .xl\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .xl\:translate-x-1\/4 { - --tw-translate-x: 25%; + .xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .xl\:translate-x-2\/4 { - --tw-translate-x: 50%; + .xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .xl\:translate-x-3\/4 { - --tw-translate-x: 75%; + .xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .xl\:translate-x-full { - --tw-translate-x: 100%; + .xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .xl\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .xl\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .xl\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .xl\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .xl\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .xl\:-translate-x-full { - --tw-translate-x: -100%; + .xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .xl\:translate-y-0 { - --tw-translate-y: 0px; + .xl\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .xl\:translate-y-1 { - --tw-translate-y: 0.25rem; + .xl\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .xl\:translate-y-2 { - --tw-translate-y: 0.5rem; + .xl\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .xl\:translate-y-3 { - --tw-translate-y: 0.75rem; + .xl\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .xl\:translate-y-4 { - --tw-translate-y: 1rem; + .xl\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .xl\:translate-y-5 { - --tw-translate-y: 1.25rem; + .xl\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .xl\:translate-y-6 { - --tw-translate-y: 1.5rem; + .xl\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .xl\:translate-y-7 { - --tw-translate-y: 1.75rem; + .xl\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .xl\:translate-y-8 { - --tw-translate-y: 2rem; + .xl\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .xl\:translate-y-9 { - --tw-translate-y: 2.25rem; + .xl\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .xl\:translate-y-10 { - --tw-translate-y: 2.5rem; + .xl\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .xl\:translate-y-11 { - --tw-translate-y: 2.75rem; + .xl\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .xl\:translate-y-12 { - --tw-translate-y: 3rem; + .xl\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .xl\:translate-y-14 { - --tw-translate-y: 3.5rem; + .xl\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .xl\:translate-y-16 { - --tw-translate-y: 4rem; + .xl\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .xl\:translate-y-20 { - --tw-translate-y: 5rem; + .xl\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .xl\:translate-y-24 { - --tw-translate-y: 6rem; + .xl\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .xl\:translate-y-28 { - --tw-translate-y: 7rem; + .xl\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .xl\:translate-y-32 { - --tw-translate-y: 8rem; + .xl\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .xl\:translate-y-36 { - --tw-translate-y: 9rem; + .xl\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .xl\:translate-y-40 { - --tw-translate-y: 10rem; + .xl\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .xl\:translate-y-44 { - --tw-translate-y: 11rem; + .xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .xl\:translate-y-48 { - --tw-translate-y: 12rem; + .xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .xl\:translate-y-52 { - --tw-translate-y: 13rem; + .xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .xl\:translate-y-56 { - --tw-translate-y: 14rem; + .xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .xl\:translate-y-60 { - --tw-translate-y: 15rem; + .xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .xl\:translate-y-64 { - --tw-translate-y: 16rem; + .xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .xl\:translate-y-72 { - --tw-translate-y: 18rem; + .xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .xl\:translate-y-80 { - --tw-translate-y: 20rem; + .xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .xl\:translate-y-96 { - --tw-translate-y: 24rem; + .xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .xl\:translate-y-px { - --tw-translate-y: 1px; + .xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .xl\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .xl\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .xl\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .xl\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .xl\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .xl\:-translate-y-0 { - --tw-translate-y: 0px; + .xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .xl\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .xl\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .xl\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .xl\:-translate-y-4 { - --tw-translate-y: -1rem; + .xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .xl\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .xl\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .xl\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .xl\:-translate-y-8 { - --tw-translate-y: -2rem; + .xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .xl\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .xl\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .xl\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .xl\:-translate-y-12 { - --tw-translate-y: -3rem; + .xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .xl\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .xl\:-translate-y-16 { - --tw-translate-y: -4rem; + .xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .xl\:-translate-y-20 { - --tw-translate-y: -5rem; + .xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .xl\:-translate-y-24 { - --tw-translate-y: -6rem; + .xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .xl\:-translate-y-28 { - --tw-translate-y: -7rem; + .xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .xl\:-translate-y-32 { - --tw-translate-y: -8rem; + .xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .xl\:-translate-y-36 { - --tw-translate-y: -9rem; + .xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .xl\:-translate-y-40 { - --tw-translate-y: -10rem; + .xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .xl\:-translate-y-44 { - --tw-translate-y: -11rem; + .xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .xl\:-translate-y-48 { - --tw-translate-y: -12rem; + .xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .xl\:-translate-y-52 { - --tw-translate-y: -13rem; + .xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .xl\:-translate-y-56 { - --tw-translate-y: -14rem; + .xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .xl\:-translate-y-60 { - --tw-translate-y: -15rem; + .xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .xl\:-translate-y-64 { - --tw-translate-y: -16rem; + .xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .xl\:-translate-y-72 { - --tw-translate-y: -18rem; + .xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .xl\:-translate-y-80 { - --tw-translate-y: -20rem; + .xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .xl\:-translate-y-96 { - --tw-translate-y: -24rem; + .xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .xl\:-translate-y-px { - --tw-translate-y: -1px; + .xl\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .xl\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .xl\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .xl\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .xl\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .xl\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .xl\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .xl\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .xl\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .xl\:translate-y-1\/2 { - --tw-translate-y: 50%; + .xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .xl\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .xl\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .xl\:translate-y-1\/4 { - --tw-translate-y: 25%; + .xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .xl\:translate-y-2\/4 { - --tw-translate-y: 50%; + .xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .xl\:translate-y-3\/4 { - --tw-translate-y: 75%; + .xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .xl\:translate-y-full { - --tw-translate-y: 100%; + .xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .xl\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .xl\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .xl\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .xl\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .xl\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .xl\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .xl\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .xl\:ring-offset-black { + --tw-ring-offset-color: #000; } - .xl\:-translate-y-full { - --tw-translate-y: -100%; + .xl\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .xl\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .xl\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .xl\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .xl\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .xl\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .xl\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .xl\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .xl\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .xl\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .xl\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .xl\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .xl\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .xl\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .xl\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .xl\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .xl\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .xl\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .xl\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .xl\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .xl\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .xl\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .xl\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .xl\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .xl\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .xl\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .xl\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .xl\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .xl\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .xl\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .xl\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .xl\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .xl\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .xl\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .xl\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .xl\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .xl\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .xl\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .xl\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .xl\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .xl\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .xl\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .xl\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .xl\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .xl\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .xl\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .xl\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .xl\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .xl\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .xl\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .xl\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .xl\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .xl\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .xl\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .xl\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .xl\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .xl\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .xl\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .xl\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .xl\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .xl\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .xl\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .xl\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .xl\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .xl\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .xl\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .xl\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .xl\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .xl\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .xl\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .xl\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .xl\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .xl\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .xl\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .xl\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .xl\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .xl\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .xl\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .xl\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .xl\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .xl\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .xl\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .xl\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .xl\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .xl\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .xl\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .xl\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .xl\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .xl\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .xl\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .xl\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .xl\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .xl\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .xl\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .xl\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .xl\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .xl\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .xl\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .xl\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .xl\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .xl\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .xl\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .xl\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .xl\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .xl\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .xl\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .xl\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .xl\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .xl\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .xl\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .xl\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .xl\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .xl\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .xl\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .xl\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .xl\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .xl\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .xl\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .xl\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .xl\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .xl\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .xl\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .xl\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .xl\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .xl\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .xl\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .xl\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .xl\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .xl\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .xl\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .xl\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .xl\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .xl\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .xl\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .xl\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .xl\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .xl\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .xl\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .xl\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .xl\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .xl\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .xl\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .xl\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .xl\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .xl\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .xl\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .xl\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .xl\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .xl\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .xl\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .xl\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .xl\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .xl\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .xl\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .xl\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .xl\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - .xl\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .xl\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .xl\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .xl\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .xl\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .xl\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .xl\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .xl\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .xl\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .xl\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .xl\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .xl\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .xl\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .xl\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .xl\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .xl\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .xl\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .xl\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .xl\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .xl\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .xl\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .xl\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .xl\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .xl\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .xl\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .xl\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .xl\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .xl\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .xl\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .xl\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .xl\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .xl\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .xl\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .xl\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .xl\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .xl\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .xl\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .xl\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .xl\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .xl\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .xl\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .xl\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .xl\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .xl\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .xl\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .xl\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .xl\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .xl\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .xl\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .xl\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .xl\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .xl\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .xl\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .xl\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .xl\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .xl\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .xl\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .xl\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .xl\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .xl\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .xl\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .xl\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .xl\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .xl\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .xl\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .xl\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .xl\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .xl\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .xl\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .xl\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .xl\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .xl\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .xl\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .xl\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .xl\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .xl\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + .xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .xl\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .xl\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .xl\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .xl\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .xl\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .xl\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .xl\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .xl\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .xl\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .xl\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .xl\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .xl\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .xl\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .xl\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .xl\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .xl\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .xl\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .xl\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .xl\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .xl\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .xl\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .xl\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .xl\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .xl\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .xl\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .xl\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .xl\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .xl\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .xl\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .xl\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .xl\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .xl\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .xl\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .xl\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .xl\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .xl\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .xl\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .xl\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .xl\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .xl\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .xl\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .xl\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .xl\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .xl\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .xl\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .xl\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .xl\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .xl\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .xl\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .xl\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .xl\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .xl\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .xl\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .xl\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .xl\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .xl\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .xl\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .xl\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .xl\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .xl\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .xl\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .xl\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .xl\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .xl\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .xl\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .xl\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .xl\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .xl\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .xl\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .xl\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .xl\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .xl\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .xl\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .xl\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .xl\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .xl\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .xl\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .xl\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .xl\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .xl\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .xl\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .xl\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .xl\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .xl\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .xl\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .xl\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .xl\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .xl\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .xl\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .xl\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .xl\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .xl\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .xl\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .xl\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .xl\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .xl\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .xl\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .xl\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .xl\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .xl\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .xl\:filter-none { + filter: none; } - .xl\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .xl\:blur-0 { + --tw-blur: blur(0); } - .xl\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .xl\:blur-sm { + --tw-blur: blur(4px); } - .xl\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .xl\:blur { + --tw-blur: blur(8px); } - .xl\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .xl\:blur-md { + --tw-blur: blur(12px); } - .xl\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .xl\:blur-lg { + --tw-blur: blur(16px); } - .xl\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .xl\:blur-xl { + --tw-blur: blur(24px); } - .xl\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .xl\:blur-2xl { + --tw-blur: blur(40px); } - .xl\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .xl\:blur-3xl { + --tw-blur: blur(64px); } - .xl\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .xl\:brightness-0 { + --tw-brightness: brightness(0); } - .xl\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .xl\:brightness-50 { + --tw-brightness: brightness(.5); } - .xl\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .xl\:brightness-75 { + --tw-brightness: brightness(.75); } - .xl\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .xl\:brightness-90 { + --tw-brightness: brightness(.9); } - .xl\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .xl\:brightness-95 { + --tw-brightness: brightness(.95); } - .xl\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .xl\:brightness-100 { + --tw-brightness: brightness(1); } - .xl\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .xl\:brightness-105 { + --tw-brightness: brightness(1.05); } - .xl\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .xl\:brightness-110 { + --tw-brightness: brightness(1.1); } - .xl\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .xl\:brightness-125 { + --tw-brightness: brightness(1.25); } - .xl\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .xl\:brightness-150 { + --tw-brightness: brightness(1.5); } - .xl\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .xl\:brightness-200 { + --tw-brightness: brightness(2); } - .xl\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .xl\:contrast-0 { + --tw-contrast: contrast(0); } - .xl\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .xl\:contrast-50 { + --tw-contrast: contrast(.5); } - .xl\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .xl\:contrast-75 { + --tw-contrast: contrast(.75); } - .xl\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .xl\:contrast-100 { + --tw-contrast: contrast(1); } - .xl\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .xl\:contrast-125 { + --tw-contrast: contrast(1.25); } - .xl\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .xl\:contrast-150 { + --tw-contrast: contrast(1.5); } - .xl\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .xl\:contrast-200 { + --tw-contrast: contrast(2); } - .xl\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .xl\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .xl\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .xl\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .xl\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .xl\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .xl\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .xl\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .xl\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .xl\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .xl\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .xl\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .xl\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .xl\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .xl\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .xl\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .xl\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .xl\:grayscale { + --tw-grayscale: grayscale(100%); } - .xl\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .xl\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .xl\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .xl\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .xl\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .xl\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .xl\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .xl\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .xl\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .xl\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .xl\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .xl\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .xl\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .xl\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .xl\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .xl\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .xl\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .xl\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .xl\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .xl\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .xl\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .xl\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .xl\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .xl\:invert-0 { + --tw-invert: invert(0); } - .xl\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .xl\:invert { + --tw-invert: invert(100%); } - .xl\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .xl\:saturate-0 { + --tw-saturate: saturate(0); } - .xl\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .xl\:saturate-50 { + --tw-saturate: saturate(.5); } - .xl\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .xl\:saturate-100 { + --tw-saturate: saturate(1); } - .xl\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .xl\:saturate-150 { + --tw-saturate: saturate(1.5); } - .xl\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .xl\:saturate-200 { + --tw-saturate: saturate(2); } - .xl\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .xl\:sepia-0 { + --tw-sepia: sepia(0); } - .xl\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .xl\:sepia { + --tw-sepia: sepia(100%); } - .xl\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .xl\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .xl\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .xl\:backdrop-filter-none { + backdrop-filter: none; } - .xl\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .xl\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .xl\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .xl\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .xl\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .xl\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .xl\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .xl\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .xl\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .xl\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .xl\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .xl\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .xl\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .xl\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .xl\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .xl\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .xl\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .xl\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .xl\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .xl\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .xl\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .xl\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .xl\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .xl\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .xl\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .xl\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .xl\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .xl\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .xl\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .xl\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .xl\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .xl\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .xl\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .xl\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .xl\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .xl\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .xl\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .xl\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .xl\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .xl\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .xl\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .xl\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .xl\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .xl\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .xl\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .xl\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .xl\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .xl\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .xl\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .xl\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .xl\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .xl\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .xl\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .xl\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .xl\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .xl\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .xl\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .xl\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .xl\:skew-x-0 { - --tw-skew-x: 0deg; + .xl\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .xl\:skew-x-1 { - --tw-skew-x: 1deg; + .xl\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .xl\:skew-x-2 { - --tw-skew-x: 2deg; + .xl\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .xl\:skew-x-3 { - --tw-skew-x: 3deg; + .xl\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .xl\:skew-x-6 { - --tw-skew-x: 6deg; + .xl\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .xl\:skew-x-12 { - --tw-skew-x: 12deg; + .xl\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .xl\:-skew-x-12 { - --tw-skew-x: -12deg; + .xl\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .xl\:-skew-x-6 { - --tw-skew-x: -6deg; + .xl\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .xl\:-skew-x-3 { - --tw-skew-x: -3deg; + .xl\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .xl\:-skew-x-2 { - --tw-skew-x: -2deg; + .xl\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .xl\:-skew-x-1 { - --tw-skew-x: -1deg; + .xl\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } - .xl\:skew-y-0 { - --tw-skew-y: 0deg; + .xl\:transition-none { + transition-property: none; } - .xl\:skew-y-1 { - --tw-skew-y: 1deg; + .xl\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .xl\:skew-y-2 { - --tw-skew-y: 2deg; + .xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .xl\:skew-y-3 { - --tw-skew-y: 3deg; + .xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .xl\:skew-y-6 { - --tw-skew-y: 6deg; + .xl\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .xl\:skew-y-12 { - --tw-skew-y: 12deg; + .xl\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .xl\:-skew-y-12 { - --tw-skew-y: -12deg; + .xl\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } - .xl\:-skew-y-6 { - --tw-skew-y: -6deg; + .xl\:delay-75 { + transition-delay: 75ms; } - .xl\:-skew-y-3 { - --tw-skew-y: -3deg; + .xl\:delay-100 { + transition-delay: 100ms; } - .xl\:-skew-y-2 { - --tw-skew-y: -2deg; + .xl\:delay-150 { + transition-delay: 150ms; } - .xl\:-skew-y-1 { - --tw-skew-y: -1deg; + .xl\:delay-200 { + transition-delay: 200ms; } - .xl\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .xl\:delay-300 { + transition-delay: 300ms; } - .xl\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .xl\:delay-500 { + transition-delay: 500ms; } - .xl\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .xl\:delay-700 { + transition-delay: 700ms; } - .xl\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .xl\:delay-1000 { + transition-delay: 1000ms; } - .xl\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .xl\:duration-75 { + transition-duration: 75ms; } - .xl\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .xl\:duration-100 { + transition-duration: 100ms; } - .xl\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .xl\:duration-150 { + transition-duration: 150ms; } - .xl\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .xl\:duration-200 { + transition-duration: 200ms; } - .xl\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .xl\:duration-300 { + transition-duration: 300ms; } - .xl\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .xl\:duration-500 { + transition-duration: 500ms; } - .xl\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .xl\:duration-700 { + transition-duration: 700ms; } - .xl\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .xl\:duration-1000 { + transition-duration: 1000ms; } - .xl\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .xl\:ease-linear { + transition-timing-function: linear; } - .xl\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .xl\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); } - .xl\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .xl\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); } - .xl\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .xl\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .xl\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .xl\:example { + font-weight: 700; + color: #ef4444; } +} - .xl\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; +@media (min-width: 1536px) { + .\32xl\:container { + width: 100%; } - .xl\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + @media (min-width: 640px) { + .\32xl\:container { + max-width: 640px; + } } - .xl\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + @media (min-width: 768px) { + .\32xl\:container { + max-width: 768px; + } } - .xl\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + @media (min-width: 1024px) { + .\32xl\:container { + max-width: 1024px; + } } - .xl\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + @media (min-width: 1280px) { + .\32xl\:container { + max-width: 1280px; + } } - .xl\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + @media (min-width: 1536px) { + .\32xl\:container { + max-width: 1536px; + } } - .xl\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .\32xl\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .xl\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .\32xl\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .xl\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .\32xl\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .xl\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .\32xl\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .xl\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .\32xl\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .xl\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .\32xl\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .xl\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .\32xl\:pointer-events-none { + pointer-events: none; } - .xl\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .\32xl\:pointer-events-auto { + pointer-events: auto; } - .xl\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .\32xl\:visible { + visibility: visible; } - .xl\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .\32xl\:invisible { + visibility: hidden; } - .xl\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .\32xl\:static { + position: static; } - .xl\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .\32xl\:fixed { + position: fixed; } - .xl\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .\32xl\:absolute { + position: absolute; } - .xl\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .\32xl\:relative { + position: relative; } - .xl\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .\32xl\:sticky { + position: sticky; } - .xl\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .\32xl\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .xl\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .\32xl\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .xl\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .\32xl\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .xl\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .\32xl\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .xl\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .\32xl\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .xl\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .\32xl\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .xl\:transition-none { - transition-property: none; + .\32xl\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .xl\:transition-all { - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .xl\:transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .xl\:transition-colors { - transition-property: background-color, border-color, color, fill, stroke; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .xl\:transition-opacity { - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .xl\:transition-shadow { - transition-property: box-shadow; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .xl\:transition-transform { - transition-property: transform; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .xl\:ease-linear { - transition-timing-function: linear; + .\32xl\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .xl\:ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + .\32xl\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .xl\:ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + .\32xl\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .xl\:ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + .\32xl\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .xl\:duration-75 { - transition-duration: 75ms; + .\32xl\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .xl\:duration-100 { - transition-duration: 100ms; + .\32xl\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .xl\:duration-150 { - transition-duration: 150ms; + .\32xl\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .xl\:duration-200 { - transition-duration: 200ms; + .\32xl\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .xl\:duration-300 { - transition-duration: 300ms; + .\32xl\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .xl\:duration-500 { - transition-duration: 500ms; + .\32xl\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .xl\:duration-700 { - transition-duration: 700ms; + .\32xl\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .xl\:duration-1000 { - transition-duration: 1000ms; + .\32xl\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .xl\:delay-75 { - transition-delay: 75ms; + .\32xl\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .xl\:delay-100 { - transition-delay: 100ms; + .\32xl\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .xl\:delay-150 { - transition-delay: 150ms; + .\32xl\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .xl\:delay-200 { - transition-delay: 200ms; + .\32xl\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .xl\:delay-300 { - transition-delay: 300ms; + .\32xl\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .xl\:delay-500 { - transition-delay: 500ms; + .\32xl\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .xl\:delay-700 { - transition-delay: 700ms; + .\32xl\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .xl\:delay-1000 { - transition-delay: 1000ms; + .\32xl\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .xl\:animate-none { - animation: none; + .\32xl\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .xl\:animate-spin { - animation: spin 1s linear infinite; + .\32xl\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .xl\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .\32xl\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .xl\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .\32xl\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .xl\:animate-bounce { - animation: bounce 1s infinite; + .\32xl\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .xl\:mix-blend-normal { - mix-blend-mode: normal; + .\32xl\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .xl\:mix-blend-multiply { - mix-blend-mode: multiply; + .\32xl\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .xl\:mix-blend-screen { - mix-blend-mode: screen; + .\32xl\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .xl\:mix-blend-overlay { - mix-blend-mode: overlay; + .\32xl\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .xl\:mix-blend-darken { - mix-blend-mode: darken; + .\32xl\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .xl\:mix-blend-lighten { - mix-blend-mode: lighten; + .\32xl\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .xl\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .\32xl\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .xl\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .\32xl\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .xl\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .\32xl\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .xl\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .\32xl\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .xl\:mix-blend-difference { - mix-blend-mode: difference; + .\32xl\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .xl\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .\32xl\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .xl\:mix-blend-hue { - mix-blend-mode: hue; + .\32xl\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .xl\:mix-blend-saturation { - mix-blend-mode: saturation; + .\32xl\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .xl\:mix-blend-color { - mix-blend-mode: color; + .\32xl\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .xl\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .\32xl\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .xl\:bg-blend-normal { - background-blend-mode: normal; + .\32xl\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .xl\:bg-blend-multiply { - background-blend-mode: multiply; + .\32xl\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .xl\:bg-blend-screen { - background-blend-mode: screen; + .\32xl\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .xl\:bg-blend-overlay { - background-blend-mode: overlay; + .\32xl\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .xl\:bg-blend-darken { - background-blend-mode: darken; + .\32xl\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .xl\:bg-blend-lighten { - background-blend-mode: lighten; + .\32xl\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .xl\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .\32xl\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .xl\:bg-blend-color-burn { - background-blend-mode: color-burn; + .\32xl\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .xl\:bg-blend-hard-light { - background-blend-mode: hard-light; + .\32xl\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .xl\:bg-blend-soft-light { - background-blend-mode: soft-light; + .\32xl\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .xl\:bg-blend-difference { - background-blend-mode: difference; + .\32xl\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .xl\:bg-blend-exclusion { - background-blend-mode: exclusion; + .\32xl\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .xl\:bg-blend-hue { - background-blend-mode: hue; + .\32xl\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .xl\:bg-blend-saturation { - background-blend-mode: saturation; + .\32xl\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .xl\:bg-blend-color { - background-blend-mode: color; + .\32xl\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .xl\:bg-blend-luminosity { - background-blend-mode: luminosity; + .\32xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .xl\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .\32xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .xl\:filter-none { - filter: none; + .\32xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .xl\:blur-0 { - --tw-blur: blur(0); + .\32xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .xl\:blur-sm { - --tw-blur: blur(4px); + .\32xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .xl\:blur { - --tw-blur: blur(8px); + .\32xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .xl\:blur-md { - --tw-blur: blur(12px); + .\32xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .xl\:blur-lg { - --tw-blur: blur(16px); + .\32xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .xl\:blur-xl { - --tw-blur: blur(24px); + .\32xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .xl\:blur-2xl { - --tw-blur: blur(40px); + .\32xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .xl\:blur-3xl { - --tw-blur: blur(64px); + .\32xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .xl\:brightness-0 { - --tw-brightness: brightness(0); + .\32xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .xl\:brightness-50 { - --tw-brightness: brightness(.5); + .\32xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .xl\:brightness-75 { - --tw-brightness: brightness(.75); + .\32xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .xl\:brightness-90 { - --tw-brightness: brightness(.9); + .\32xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .xl\:brightness-95 { - --tw-brightness: brightness(.95); + .\32xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .xl\:brightness-100 { - --tw-brightness: brightness(1); + .\32xl\:inset-y-0 { + top: 0px; + bottom: 0px; } - .xl\:brightness-105 { - --tw-brightness: brightness(1.05); + .\32xl\:inset-x-0 { + right: 0px; + left: 0px; } - .xl\:brightness-110 { - --tw-brightness: brightness(1.1); + .\32xl\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .xl\:brightness-125 { - --tw-brightness: brightness(1.25); + .\32xl\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .xl\:brightness-150 { - --tw-brightness: brightness(1.5); + .\32xl\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .xl\:brightness-200 { - --tw-brightness: brightness(2); + .\32xl\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .xl\:contrast-0 { - --tw-contrast: contrast(0); + .\32xl\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .xl\:contrast-50 { - --tw-contrast: contrast(.5); + .\32xl\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .xl\:contrast-75 { - --tw-contrast: contrast(.75); + .\32xl\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .xl\:contrast-100 { - --tw-contrast: contrast(1); + .\32xl\:inset-x-4 { + right: 1rem; + left: 1rem; } - .xl\:contrast-125 { - --tw-contrast: contrast(1.25); + .\32xl\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .xl\:contrast-150 { - --tw-contrast: contrast(1.5); + .\32xl\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .xl\:contrast-200 { - --tw-contrast: contrast(2); + .\32xl\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .xl\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .\32xl\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .xl\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .\32xl\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .xl\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .\32xl\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .xl\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .\32xl\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .xl\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .\32xl\:inset-x-8 { + right: 2rem; + left: 2rem; } - .xl\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .\32xl\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .xl\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .\32xl\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .xl\:grayscale-0 { - --tw-grayscale: grayscale(0); + .\32xl\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .xl\:grayscale { - --tw-grayscale: grayscale(100%); + .\32xl\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .xl\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .\32xl\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .xl\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .\32xl\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .xl\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .\32xl\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .xl\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .\32xl\:inset-x-12 { + right: 3rem; + left: 3rem; } - .xl\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .\32xl\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .xl\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .\32xl\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .xl\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .\32xl\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .xl\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .\32xl\:inset-x-16 { + right: 4rem; + left: 4rem; } - .xl\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .\32xl\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .xl\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .\32xl\:inset-x-20 { + right: 5rem; + left: 5rem; } - .xl\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .\32xl\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .xl\:invert-0 { - --tw-invert: invert(0); + .\32xl\:inset-x-24 { + right: 6rem; + left: 6rem; } - .xl\:invert { - --tw-invert: invert(100%); + .\32xl\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .xl\:saturate-0 { - --tw-saturate: saturate(0); + .\32xl\:inset-x-28 { + right: 7rem; + left: 7rem; } - .xl\:saturate-50 { - --tw-saturate: saturate(.5); + .\32xl\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .xl\:saturate-100 { - --tw-saturate: saturate(1); + .\32xl\:inset-x-32 { + right: 8rem; + left: 8rem; } - .xl\:saturate-150 { - --tw-saturate: saturate(1.5); + .\32xl\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .xl\:saturate-200 { - --tw-saturate: saturate(2); + .\32xl\:inset-x-36 { + right: 9rem; + left: 9rem; } - .xl\:sepia-0 { - --tw-sepia: sepia(0); + .\32xl\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .xl\:sepia { - --tw-sepia: sepia(100%); + .\32xl\:inset-x-40 { + right: 10rem; + left: 10rem; } - .xl\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .\32xl\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .xl\:backdrop-filter-none { - backdrop-filter: none; + .\32xl\:inset-x-44 { + right: 11rem; + left: 11rem; } - .xl\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .\32xl\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .xl\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .\32xl\:inset-x-48 { + right: 12rem; + left: 12rem; } - .xl\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .\32xl\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .xl\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .\32xl\:inset-x-52 { + right: 13rem; + left: 13rem; } - .xl\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .\32xl\:inset-y-56 { + top: 14rem; + bottom: 14rem; } - .xl\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .\32xl\:inset-x-56 { + right: 14rem; + left: 14rem; } - .xl\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .\32xl\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - .xl\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .\32xl\:inset-x-60 { + right: 15rem; + left: 15rem; } - .xl\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .\32xl\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - .xl\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .\32xl\:inset-x-64 { + right: 16rem; + left: 16rem; } - .xl\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .\32xl\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .xl\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .\32xl\:inset-x-72 { + right: 18rem; + left: 18rem; } - .xl\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .\32xl\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .xl\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .\32xl\:inset-x-80 { + right: 20rem; + left: 20rem; } - .xl\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .\32xl\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .xl\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .\32xl\:inset-x-96 { + right: 24rem; + left: 24rem; } - .xl\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .\32xl\:inset-y-auto { + top: auto; + bottom: auto; } - .xl\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .\32xl\:inset-x-auto { + right: auto; + left: auto; } - .xl\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .\32xl\:inset-y-px { + top: 1px; + bottom: 1px; } - .xl\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .\32xl\:inset-x-px { + right: 1px; + left: 1px; } - .xl\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .\32xl\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .xl\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .\32xl\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .xl\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .\32xl\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .xl\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .\32xl\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .xl\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .\32xl\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .xl\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .\32xl\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .xl\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .\32xl\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .xl\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .\32xl\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .xl\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .\32xl\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .xl\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .\32xl\:-inset-x-0 { + right: 0px; + left: 0px; } - .xl\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .\32xl\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .xl\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .\32xl\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .xl\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .\32xl\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .xl\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .\32xl\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .xl\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .\32xl\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .xl\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .\32xl\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .xl\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .\32xl\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .xl\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .\32xl\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .xl\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .\32xl\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .xl\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .\32xl\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } - .xl\:example { - font-weight: 700; - color: #ef4444; + .\32xl\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } -} -@media (min-width: 1536px) { - .\32xl\:container { - width: 100%; + .\32xl\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - @media (min-width: 640px) { - .\32xl\:container { - max-width: 640px; - } + .\32xl\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - @media (min-width: 768px) { - .\32xl\:container { - max-width: 768px; - } + .\32xl\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - @media (min-width: 1024px) { - .\32xl\:container { - max-width: 1024px; - } + .\32xl\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - @media (min-width: 1280px) { - .\32xl\:container { - max-width: 1280px; - } + .\32xl\:-inset-x-8 { + right: -2rem; + left: -2rem; } - @media (min-width: 1536px) { - .\32xl\:container { - max-width: 1536px; - } + .\32xl\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .\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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .\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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .\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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .\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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .\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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .\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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .\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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .\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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .\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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .\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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .\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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .\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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .\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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .\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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .\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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .\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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .\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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .\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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .\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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .\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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .\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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .\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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .\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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .\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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .\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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .\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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .\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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .\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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .\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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .\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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .\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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .\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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .\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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .\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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .\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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .\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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .\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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .\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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .\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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .\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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .\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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .\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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .\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\:-inset-x-px { + right: -1px; + left: -1px; } - .\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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .\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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .\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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .\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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .\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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .\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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .\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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .\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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .\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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .\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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .\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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .\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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .\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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .\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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .\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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .\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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .\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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .\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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .\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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .\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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .\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\:inset-y-full { + top: 100%; + bottom: 100%; } - .\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\:inset-x-full { + right: 100%; + left: 100%; } - .\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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .\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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .\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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .\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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .\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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .\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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .\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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .\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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .\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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .\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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .\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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .\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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .\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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .\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\:-inset-x-full { + right: -100%; + left: -100%; } - .\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\:top-0 { + top: 0px; } - .\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\:right-0 { + right: 0px; } - .\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\:bottom-0 { + bottom: 0px; } - .\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\:left-0 { + left: 0px; } - .\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\:top-1 { + top: 0.25rem; } - .\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\:right-1 { + right: 0.25rem; } - .\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\:bottom-1 { + bottom: 0.25rem; } - .\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\:left-1 { + left: 0.25rem; } - .\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\:top-2 { + top: 0.5rem; } - .\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\:right-2 { + right: 0.5rem; } - .\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\:bottom-2 { + bottom: 0.5rem; } - .\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\:left-2 { + left: 0.5rem; } - .\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\:top-3 { + top: 0.75rem; } - .\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\:right-3 { + right: 0.75rem; } - .\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\:bottom-3 { + bottom: 0.75rem; } - .\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\:left-3 { + left: 0.75rem; } - .\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\:top-4 { + top: 1rem; } - .\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\:right-4 { + right: 1rem; } - .\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\:bottom-4 { + bottom: 1rem; } - .\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\:left-4 { + left: 1rem; } - .\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\:top-5 { + top: 1.25rem; } - .\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\:right-5 { + right: 1.25rem; } - .\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\:bottom-5 { + bottom: 1.25rem; } - .\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\:left-5 { + left: 1.25rem; } - .\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\:top-6 { + top: 1.5rem; } - .\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\:right-6 { + right: 1.5rem; } - .\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\:bottom-6 { + bottom: 1.5rem; } - .\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\:left-6 { + left: 1.5rem; } - .\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\:top-7 { + top: 1.75rem; } - .\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\:right-7 { + right: 1.75rem; } - .\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\:bottom-7 { + bottom: 1.75rem; } - .\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\:left-7 { + left: 1.75rem; } - .\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\:top-8 { + top: 2rem; } - .\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\:right-8 { + right: 2rem; } - .\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\:bottom-8 { + bottom: 2rem; } - .\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\:left-8 { + left: 2rem; } - .\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\:top-9 { + top: 2.25rem; } - .\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\:right-9 { + right: 2.25rem; } - .\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\:bottom-9 { + bottom: 2.25rem; } - .\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\:left-9 { + left: 2.25rem; } - .\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\:top-10 { + top: 2.5rem; } - .\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\:right-10 { + right: 2.5rem; } - .\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\:bottom-10 { + bottom: 2.5rem; } - .\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\:left-10 { + left: 2.5rem; } - .\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\:top-11 { + top: 2.75rem; } - .\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\:right-11 { + right: 2.75rem; } - .\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\:bottom-11 { + bottom: 2.75rem; } - .\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\:left-11 { + left: 2.75rem; } - .\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\:top-12 { + top: 3rem; } - .\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\:right-12 { + right: 3rem; } - .\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\:bottom-12 { + bottom: 3rem; } - .\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\:left-12 { + left: 3rem; } - .\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\:top-14 { + top: 3.5rem; } - .\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\:right-14 { + right: 3.5rem; } - .\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\:bottom-14 { + bottom: 3.5rem; } - .\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\:left-14 { + left: 3.5rem; } - .\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\:top-16 { + top: 4rem; } - .\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\:right-16 { + right: 4rem; } - .\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\:bottom-16 { + bottom: 4rem; } - .\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\:left-16 { + left: 4rem; } - .\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\:top-20 { + top: 5rem; } - .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .\32xl\:right-20 { + right: 5rem; } - .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .\32xl\:bottom-20 { + bottom: 5rem; } - .\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\:left-20 { + left: 5rem; } - .\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\:top-24 { + top: 6rem; } - .\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\:right-24 { + right: 6rem; } - .\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\:bottom-24 { + bottom: 6rem; } - .\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\:left-24 { + left: 6rem; } - .\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\:top-28 { + top: 7rem; } - .\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\:right-28 { + right: 7rem; } - .\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\:bottom-28 { + bottom: 7rem; } - .\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\:left-28 { + left: 7rem; } - .\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\:top-32 { + top: 8rem; } - .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .\32xl\:right-32 { + right: 8rem; } - .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .\32xl\:bottom-32 { + bottom: 8rem; } - .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .\32xl\:left-32 { + left: 8rem; } - .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .\32xl\:top-36 { + top: 9rem; } - .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]) { - border-color: #000; + .\32xl\:right-36 { + right: 9rem; } - .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]) { - border-color: #fff; + .\32xl\:bottom-36 { + bottom: 9rem; } - .\32xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9fafb; + .\32xl\:left-36 { + left: 9rem; } - .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #f3f4f6; + .\32xl\:top-40 { + top: 10rem; } - .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #e5e7eb; + .\32xl\:right-40 { + right: 10rem; } - .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1d5db; + .\32xl\:bottom-40 { + bottom: 10rem; } - .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #9ca3af; + .\32xl\:left-40 { + left: 10rem; } - .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6b7280; + .\32xl\:top-44 { + top: 11rem; } - .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4b5563; + .\32xl\:right-44 { + right: 11rem; } - .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #374151; + .\32xl\:bottom-44 { + bottom: 11rem; } - .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1f2937; + .\32xl\:left-44 { + left: 11rem; } - .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #111827; + .\32xl\:top-48 { + top: 12rem; } - .\32xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef2f2; + .\32xl\:right-48 { + right: 12rem; } - .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fee2e2; + .\32xl\:bottom-48 { + bottom: 12rem; } - .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fecaca; + .\32xl\:left-48 { + left: 12rem; } - .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fca5a5; + .\32xl\:top-52 { + top: 13rem; } - .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f87171; + .\32xl\:right-52 { + right: 13rem; } - .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ef4444; + .\32xl\:bottom-52 { + bottom: 13rem; } - .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #dc2626; + .\32xl\:left-52 { + left: 13rem; } - .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b91c1c; + .\32xl\:top-56 { + top: 14rem; } - .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #991b1b; + .\32xl\:right-56 { + right: 14rem; } - .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #7f1d1d; + .\32xl\:bottom-56 { + bottom: 14rem; } - .\32xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fffbeb; + .\32xl\:left-56 { + left: 14rem; } - .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fef3c7; + .\32xl\:top-60 { + top: 15rem; } - .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fde68a; + .\32xl\:right-60 { + right: 15rem; } - .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #fcd34d; + .\32xl\:bottom-60 { + bottom: 15rem; } - .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbbf24; + .\32xl\:left-60 { + left: 15rem; } - .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #f59e0b; + .\32xl\:top-64 { + top: 16rem; } - .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #d97706; + .\32xl\:right-64 { + right: 16rem; } - .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #b45309; + .\32xl\:bottom-64 { + bottom: 16rem; } - .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #92400e; + .\32xl\:left-64 { + left: 16rem; } - .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #78350f; + .\32xl\:top-72 { + top: 18rem; } - .\32xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #ecfdf5; + .\32xl\:right-72 { + right: 18rem; } - .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #d1fae5; + .\32xl\:bottom-72 { + bottom: 18rem; } - .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #a7f3d0; + .\32xl\:left-72 { + left: 18rem; } - .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #6ee7b7; + .\32xl\:top-80 { + top: 20rem; } - .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #34d399; + .\32xl\:right-80 { + right: 20rem; } - .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #10b981; + .\32xl\:bottom-80 { + bottom: 20rem; } - .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #059669; + .\32xl\:left-80 { + left: 20rem; } - .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #047857; + .\32xl\:top-96 { + top: 24rem; } - .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #065f46; + .\32xl\:right-96 { + right: 24rem; } - .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #064e3b; + .\32xl\:bottom-96 { + bottom: 24rem; } - .\32xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eff6ff; + .\32xl\:left-96 { + left: 24rem; } - .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #dbeafe; + .\32xl\:top-auto { + top: auto; } - .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #bfdbfe; + .\32xl\:right-auto { + right: auto; } - .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #93c5fd; + .\32xl\:bottom-auto { + bottom: auto; } - .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #60a5fa; + .\32xl\:left-auto { + left: auto; } - .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #3b82f6; + .\32xl\:top-px { + top: 1px; } - .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #2563eb; + .\32xl\:right-px { + right: 1px; } - .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #1d4ed8; + .\32xl\:bottom-px { + bottom: 1px; } - .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e40af; + .\32xl\:left-px { + left: 1px; } - .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #1e3a8a; + .\32xl\:top-0\.5 { + top: 0.125rem; } - .\32xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #eef2ff; + .\32xl\:right-0\.5 { + right: 0.125rem; } - .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #e0e7ff; + .\32xl\:bottom-0\.5 { + bottom: 0.125rem; } - .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #c7d2fe; + .\32xl\:left-0\.5 { + left: 0.125rem; } - .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #a5b4fc; + .\32xl\:top-1\.5 { + top: 0.375rem; } - .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #818cf8; + .\32xl\:right-1\.5 { + right: 0.375rem; } - .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #6366f1; + .\32xl\:bottom-1\.5 { + bottom: 0.375rem; } - .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #4f46e5; + .\32xl\:left-1\.5 { + left: 0.375rem; } - .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #4338ca; + .\32xl\:top-2\.5 { + top: 0.625rem; } - .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #3730a3; + .\32xl\:right-2\.5 { + right: 0.625rem; } - .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #312e81; + .\32xl\:bottom-2\.5 { + bottom: 0.625rem; } - .\32xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #f5f3ff; + .\32xl\:left-2\.5 { + left: 0.625rem; } - .\32xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #ede9fe; + .\32xl\:top-3\.5 { + top: 0.875rem; } - .\32xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #ddd6fe; + .\32xl\:right-3\.5 { + right: 0.875rem; } - .\32xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #c4b5fd; + .\32xl\:bottom-3\.5 { + bottom: 0.875rem; } - .\32xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #a78bfa; + .\32xl\:left-3\.5 { + left: 0.875rem; } - .\32xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #8b5cf6; + .\32xl\:-top-0 { + top: 0px; } - .\32xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #7c3aed; + .\32xl\:-right-0 { + right: 0px; } - .\32xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #6d28d9; + .\32xl\:-bottom-0 { + bottom: 0px; } - .\32xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #5b21b6; + .\32xl\:-left-0 { + left: 0px; } - .\32xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #4c1d95; + .\32xl\:-top-1 { + top: -0.25rem; } - .\32xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - border-color: #fdf2f8; + .\32xl\:-right-1 { + right: -0.25rem; } - .\32xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - border-color: #fce7f3; + .\32xl\:-bottom-1 { + bottom: -0.25rem; } - .\32xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - border-color: #fbcfe8; + .\32xl\:-left-1 { + left: -0.25rem; } - .\32xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - border-color: #f9a8d4; + .\32xl\:-top-2 { + top: -0.5rem; } - .\32xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - border-color: #f472b6; + .\32xl\:-right-2 { + right: -0.5rem; } - .\32xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - border-color: #ec4899; + .\32xl\:-bottom-2 { + bottom: -0.5rem; } - .\32xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - border-color: #db2777; + .\32xl\:-left-2 { + left: -0.5rem; } - .\32xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - border-color: #be185d; + .\32xl\:-top-3 { + top: -0.75rem; } - .\32xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - border-color: #9d174d; + .\32xl\:-right-3 { + right: -0.75rem; } - .\32xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - border-color: #831843; + .\32xl\:-bottom-3 { + bottom: -0.75rem; } - .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .\32xl\:-left-3 { + left: -0.75rem; } - .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .\32xl\:-top-4 { + top: -1rem; } - .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .\32xl\:-right-4 { + right: -1rem; } - .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .\32xl\:-bottom-4 { + bottom: -1rem; } - .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .\32xl\:-left-4 { + left: -1rem; } - .\32xl\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .\32xl\:-top-5 { + top: -1.25rem; } - .\32xl\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .\32xl\:-right-5 { + right: -1.25rem; } - .\32xl\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .\32xl\:-bottom-5 { + bottom: -1.25rem; } - .\32xl\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .\32xl\:-left-5 { + left: -1.25rem; } - .\32xl\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .\32xl\:-top-6 { + top: -1.5rem; } - .\32xl\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .\32xl\:-right-6 { + right: -1.5rem; } - .\32xl\:appearance-none { - appearance: none; + .\32xl\:-bottom-6 { + bottom: -1.5rem; } - .\32xl\:bg-fixed { - background-attachment: fixed; + .\32xl\:-left-6 { + left: -1.5rem; } - .\32xl\:bg-local { - background-attachment: local; + .\32xl\:-top-7 { + top: -1.75rem; } - .\32xl\:bg-scroll { - background-attachment: scroll; + .\32xl\:-right-7 { + right: -1.75rem; } - .\32xl\:bg-clip-border { - background-clip: border-box; + .\32xl\:-bottom-7 { + bottom: -1.75rem; } - .\32xl\:bg-clip-padding { - background-clip: padding-box; + .\32xl\:-left-7 { + left: -1.75rem; } - .\32xl\:bg-clip-content { - background-clip: content-box; + .\32xl\:-top-8 { + top: -2rem; } - .\32xl\:bg-clip-text { - background-clip: text; + .\32xl\:-right-8 { + right: -2rem; } - .\32xl\:bg-transparent { - background-color: transparent; + .\32xl\:-bottom-8 { + bottom: -2rem; } - .\32xl\:bg-current { - background-color: currentColor; + .\32xl\:-left-8 { + left: -2rem; } - .\32xl\:bg-black { - background-color: #000; + .\32xl\:-top-9 { + top: -2.25rem; } - .\32xl\:bg-white { - background-color: #fff; + .\32xl\:-right-9 { + right: -2.25rem; } - .\32xl\:bg-gray-50 { - background-color: #f9fafb; + .\32xl\:-bottom-9 { + bottom: -2.25rem; } - .\32xl\:bg-gray-100 { - background-color: #f3f4f6; + .\32xl\:-left-9 { + left: -2.25rem; } - .\32xl\:bg-gray-200 { - background-color: #e5e7eb; + .\32xl\:-top-10 { + top: -2.5rem; } - .\32xl\:bg-gray-300 { - background-color: #d1d5db; + .\32xl\:-right-10 { + right: -2.5rem; } - .\32xl\:bg-gray-400 { - background-color: #9ca3af; + .\32xl\:-bottom-10 { + bottom: -2.5rem; } - .\32xl\:bg-gray-500 { - background-color: #6b7280; + .\32xl\:-left-10 { + left: -2.5rem; } - .\32xl\:bg-gray-600 { - background-color: #4b5563; + .\32xl\:-top-11 { + top: -2.75rem; } - .\32xl\:bg-gray-700 { - background-color: #374151; + .\32xl\:-right-11 { + right: -2.75rem; } - .\32xl\:bg-gray-800 { - background-color: #1f2937; + .\32xl\:-bottom-11 { + bottom: -2.75rem; } - .\32xl\:bg-gray-900 { - background-color: #111827; + .\32xl\:-left-11 { + left: -2.75rem; } - .\32xl\:bg-red-50 { - background-color: #fef2f2; + .\32xl\:-top-12 { + top: -3rem; } - .\32xl\:bg-red-100 { - background-color: #fee2e2; + .\32xl\:-right-12 { + right: -3rem; } - .\32xl\:bg-red-200 { - background-color: #fecaca; + .\32xl\:-bottom-12 { + bottom: -3rem; } - .\32xl\:bg-red-300 { - background-color: #fca5a5; + .\32xl\:-left-12 { + left: -3rem; } - .\32xl\:bg-red-400 { - background-color: #f87171; + .\32xl\:-top-14 { + top: -3.5rem; } - .\32xl\:bg-red-500 { - background-color: #ef4444; + .\32xl\:-right-14 { + right: -3.5rem; } - .\32xl\:bg-red-600 { - background-color: #dc2626; + .\32xl\:-bottom-14 { + bottom: -3.5rem; } - .\32xl\:bg-red-700 { - background-color: #b91c1c; + .\32xl\:-left-14 { + left: -3.5rem; } - .\32xl\:bg-red-800 { - background-color: #991b1b; + .\32xl\:-top-16 { + top: -4rem; } - .\32xl\:bg-red-900 { - background-color: #7f1d1d; + .\32xl\:-right-16 { + right: -4rem; } - .\32xl\:bg-yellow-50 { - background-color: #fffbeb; + .\32xl\:-bottom-16 { + bottom: -4rem; } - .\32xl\:bg-yellow-100 { - background-color: #fef3c7; + .\32xl\:-left-16 { + left: -4rem; } - .\32xl\:bg-yellow-200 { - background-color: #fde68a; + .\32xl\:-top-20 { + top: -5rem; } - .\32xl\:bg-yellow-300 { - background-color: #fcd34d; + .\32xl\:-right-20 { + right: -5rem; } - .\32xl\:bg-yellow-400 { - background-color: #fbbf24; + .\32xl\:-bottom-20 { + bottom: -5rem; } - .\32xl\:bg-yellow-500 { - background-color: #f59e0b; + .\32xl\:-left-20 { + left: -5rem; } - .\32xl\:bg-yellow-600 { - background-color: #d97706; + .\32xl\:-top-24 { + top: -6rem; } - .\32xl\:bg-yellow-700 { - background-color: #b45309; + .\32xl\:-right-24 { + right: -6rem; } - .\32xl\:bg-yellow-800 { - background-color: #92400e; + .\32xl\:-bottom-24 { + bottom: -6rem; } - .\32xl\:bg-yellow-900 { - background-color: #78350f; + .\32xl\:-left-24 { + left: -6rem; } - .\32xl\:bg-green-50 { - background-color: #ecfdf5; + .\32xl\:-top-28 { + top: -7rem; } - .\32xl\:bg-green-100 { - background-color: #d1fae5; + .\32xl\:-right-28 { + right: -7rem; } - .\32xl\:bg-green-200 { - background-color: #a7f3d0; + .\32xl\:-bottom-28 { + bottom: -7rem; } - .\32xl\:bg-green-300 { - background-color: #6ee7b7; + .\32xl\:-left-28 { + left: -7rem; } - .\32xl\:bg-green-400 { - background-color: #34d399; + .\32xl\:-top-32 { + top: -8rem; } - .\32xl\:bg-green-500 { - background-color: #10b981; + .\32xl\:-right-32 { + right: -8rem; } - .\32xl\:bg-green-600 { - background-color: #059669; + .\32xl\:-bottom-32 { + bottom: -8rem; } - .\32xl\:bg-green-700 { - background-color: #047857; + .\32xl\:-left-32 { + left: -8rem; } - .\32xl\:bg-green-800 { - background-color: #065f46; + .\32xl\:-top-36 { + top: -9rem; } - .\32xl\:bg-green-900 { - background-color: #064e3b; + .\32xl\:-right-36 { + right: -9rem; } - .\32xl\:bg-blue-50 { - background-color: #eff6ff; + .\32xl\:-bottom-36 { + bottom: -9rem; } - .\32xl\:bg-blue-100 { - background-color: #dbeafe; + .\32xl\:-left-36 { + left: -9rem; } - .\32xl\:bg-blue-200 { - background-color: #bfdbfe; + .\32xl\:-top-40 { + top: -10rem; } - .\32xl\:bg-blue-300 { - background-color: #93c5fd; + .\32xl\:-right-40 { + right: -10rem; } - .\32xl\:bg-blue-400 { - background-color: #60a5fa; + .\32xl\:-bottom-40 { + bottom: -10rem; } - .\32xl\:bg-blue-500 { - background-color: #3b82f6; + .\32xl\:-left-40 { + left: -10rem; } - .\32xl\:bg-blue-600 { - background-color: #2563eb; + .\32xl\:-top-44 { + top: -11rem; } - .\32xl\:bg-blue-700 { - background-color: #1d4ed8; + .\32xl\:-right-44 { + right: -11rem; } - .\32xl\:bg-blue-800 { - background-color: #1e40af; + .\32xl\:-bottom-44 { + bottom: -11rem; } - .\32xl\:bg-blue-900 { - background-color: #1e3a8a; + .\32xl\:-left-44 { + left: -11rem; } - .\32xl\:bg-indigo-50 { - background-color: #eef2ff; + .\32xl\:-top-48 { + top: -12rem; } - .\32xl\:bg-indigo-100 { - background-color: #e0e7ff; + .\32xl\:-right-48 { + right: -12rem; } - .\32xl\:bg-indigo-200 { - background-color: #c7d2fe; + .\32xl\:-bottom-48 { + bottom: -12rem; } - .\32xl\:bg-indigo-300 { - background-color: #a5b4fc; + .\32xl\:-left-48 { + left: -12rem; } - .\32xl\:bg-indigo-400 { - background-color: #818cf8; + .\32xl\:-top-52 { + top: -13rem; } - .\32xl\:bg-indigo-500 { - background-color: #6366f1; + .\32xl\:-right-52 { + right: -13rem; } - .\32xl\:bg-indigo-600 { - background-color: #4f46e5; + .\32xl\:-bottom-52 { + bottom: -13rem; } - .\32xl\:bg-indigo-700 { - background-color: #4338ca; + .\32xl\:-left-52 { + left: -13rem; } - .\32xl\:bg-indigo-800 { - background-color: #3730a3; + .\32xl\:-top-56 { + top: -14rem; } - .\32xl\:bg-indigo-900 { - background-color: #312e81; + .\32xl\:-right-56 { + right: -14rem; } - .\32xl\:bg-purple-50 { - background-color: #f5f3ff; + .\32xl\:-bottom-56 { + bottom: -14rem; } - .\32xl\:bg-purple-100 { - background-color: #ede9fe; + .\32xl\:-left-56 { + left: -14rem; } - .\32xl\:bg-purple-200 { - background-color: #ddd6fe; + .\32xl\:-top-60 { + top: -15rem; } - .\32xl\:bg-purple-300 { - background-color: #c4b5fd; + .\32xl\:-right-60 { + right: -15rem; } - .\32xl\:bg-purple-400 { - background-color: #a78bfa; + .\32xl\:-bottom-60 { + bottom: -15rem; } - .\32xl\:bg-purple-500 { - background-color: #8b5cf6; + .\32xl\:-left-60 { + left: -15rem; } - .\32xl\:bg-purple-600 { - background-color: #7c3aed; + .\32xl\:-top-64 { + top: -16rem; } - .\32xl\:bg-purple-700 { - background-color: #6d28d9; + .\32xl\:-right-64 { + right: -16rem; } - .\32xl\:bg-purple-800 { - background-color: #5b21b6; + .\32xl\:-bottom-64 { + bottom: -16rem; } - .\32xl\:bg-purple-900 { - background-color: #4c1d95; + .\32xl\:-left-64 { + left: -16rem; } - .\32xl\:bg-pink-50 { - background-color: #fdf2f8; + .\32xl\:-top-72 { + top: -18rem; } - .\32xl\:bg-pink-100 { - background-color: #fce7f3; + .\32xl\:-right-72 { + right: -18rem; } - .\32xl\:bg-pink-200 { - background-color: #fbcfe8; + .\32xl\:-bottom-72 { + bottom: -18rem; } - .\32xl\:bg-pink-300 { - background-color: #f9a8d4; + .\32xl\:-left-72 { + left: -18rem; } - .\32xl\:bg-pink-400 { - background-color: #f472b6; + .\32xl\:-top-80 { + top: -20rem; } - .\32xl\:bg-pink-500 { - background-color: #ec4899; + .\32xl\:-right-80 { + right: -20rem; } - .\32xl\:bg-pink-600 { - background-color: #db2777; + .\32xl\:-bottom-80 { + bottom: -20rem; } - .\32xl\:bg-pink-700 { - background-color: #be185d; + .\32xl\:-left-80 { + left: -20rem; } - .\32xl\:bg-pink-800 { - background-color: #9d174d; + .\32xl\:-top-96 { + top: -24rem; } - .\32xl\:bg-pink-900 { - background-color: #831843; + .\32xl\:-right-96 { + right: -24rem; } - .group:hover .\32xl\:group-hover\:bg-transparent { - background-color: transparent; + .\32xl\:-bottom-96 { + bottom: -24rem; } - .group:hover .\32xl\:group-hover\:bg-current { - background-color: currentColor; + .\32xl\:-left-96 { + left: -24rem; } - .group:hover .\32xl\:group-hover\:bg-black { - background-color: #000; + .\32xl\:-top-px { + top: -1px; } - .group:hover .\32xl\:group-hover\:bg-white { - background-color: #fff; + .\32xl\:-right-px { + right: -1px; } - .group:hover .\32xl\:group-hover\:bg-gray-50 { - background-color: #f9fafb; + .\32xl\:-bottom-px { + bottom: -1px; } - .group:hover .\32xl\:group-hover\:bg-gray-100 { - background-color: #f3f4f6; + .\32xl\:-left-px { + left: -1px; } - .group:hover .\32xl\:group-hover\:bg-gray-200 { - background-color: #e5e7eb; + .\32xl\:-top-0\.5 { + top: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-gray-300 { - background-color: #d1d5db; + .\32xl\:-right-0\.5 { + right: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-gray-400 { - background-color: #9ca3af; + .\32xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-gray-500 { - background-color: #6b7280; + .\32xl\:-left-0\.5 { + left: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-gray-600 { - background-color: #4b5563; + .\32xl\:-top-1\.5 { + top: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-gray-700 { - background-color: #374151; + .\32xl\:-right-1\.5 { + right: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-gray-800 { - background-color: #1f2937; + .\32xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-gray-900 { - background-color: #111827; + .\32xl\:-left-1\.5 { + left: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-red-50 { - background-color: #fef2f2; + .\32xl\:-top-2\.5 { + top: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-red-100 { - background-color: #fee2e2; + .\32xl\:-right-2\.5 { + right: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-red-200 { - background-color: #fecaca; + .\32xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-red-300 { - background-color: #fca5a5; + .\32xl\:-left-2\.5 { + left: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-red-400 { - background-color: #f87171; + .\32xl\:-top-3\.5 { + top: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-red-500 { - background-color: #ef4444; + .\32xl\:-right-3\.5 { + right: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-red-600 { - background-color: #dc2626; + .\32xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-red-700 { - background-color: #b91c1c; + .\32xl\:-left-3\.5 { + left: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-red-800 { - background-color: #991b1b; + .\32xl\:top-1\/2 { + top: 50%; } - .group:hover .\32xl\:group-hover\:bg-red-900 { - background-color: #7f1d1d; + .\32xl\:right-1\/2 { + right: 50%; } - .group:hover .\32xl\:group-hover\:bg-yellow-50 { - background-color: #fffbeb; + .\32xl\:bottom-1\/2 { + bottom: 50%; } - .group:hover .\32xl\:group-hover\:bg-yellow-100 { - background-color: #fef3c7; + .\32xl\:left-1\/2 { + left: 50%; } - .group:hover .\32xl\:group-hover\:bg-yellow-200 { - background-color: #fde68a; + .\32xl\:top-1\/3 { + top: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-yellow-300 { - background-color: #fcd34d; + .\32xl\:right-1\/3 { + right: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-yellow-400 { - background-color: #fbbf24; + .\32xl\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-yellow-500 { - background-color: #f59e0b; + .\32xl\:left-1\/3 { + left: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-yellow-600 { - background-color: #d97706; + .\32xl\:top-2\/3 { + top: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-yellow-700 { - background-color: #b45309; + .\32xl\:right-2\/3 { + right: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-yellow-800 { - background-color: #92400e; + .\32xl\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-yellow-900 { - background-color: #78350f; + .\32xl\:left-2\/3 { + left: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-green-50 { - background-color: #ecfdf5; + .\32xl\:top-1\/4 { + top: 25%; } - .group:hover .\32xl\:group-hover\:bg-green-100 { - background-color: #d1fae5; + .\32xl\:right-1\/4 { + right: 25%; } - .group:hover .\32xl\:group-hover\:bg-green-200 { - background-color: #a7f3d0; + .\32xl\:bottom-1\/4 { + bottom: 25%; } - .group:hover .\32xl\:group-hover\:bg-green-300 { - background-color: #6ee7b7; + .\32xl\:left-1\/4 { + left: 25%; } - .group:hover .\32xl\:group-hover\:bg-green-400 { - background-color: #34d399; + .\32xl\:top-2\/4 { + top: 50%; } - .group:hover .\32xl\:group-hover\:bg-green-500 { - background-color: #10b981; + .\32xl\:right-2\/4 { + right: 50%; } - .group:hover .\32xl\:group-hover\:bg-green-600 { - background-color: #059669; + .\32xl\:bottom-2\/4 { + bottom: 50%; } - .group:hover .\32xl\:group-hover\:bg-green-700 { - background-color: #047857; + .\32xl\:left-2\/4 { + left: 50%; } - .group:hover .\32xl\:group-hover\:bg-green-800 { - background-color: #065f46; + .\32xl\:top-3\/4 { + top: 75%; } - .group:hover .\32xl\:group-hover\:bg-green-900 { - background-color: #064e3b; + .\32xl\:right-3\/4 { + right: 75%; } - .group:hover .\32xl\:group-hover\:bg-blue-50 { - background-color: #eff6ff; + .\32xl\:bottom-3\/4 { + bottom: 75%; } - .group:hover .\32xl\:group-hover\:bg-blue-100 { - background-color: #dbeafe; + .\32xl\:left-3\/4 { + left: 75%; } - .group:hover .\32xl\:group-hover\:bg-blue-200 { - background-color: #bfdbfe; + .\32xl\:top-full { + top: 100%; } - .group:hover .\32xl\:group-hover\:bg-blue-300 { - background-color: #93c5fd; + .\32xl\:right-full { + right: 100%; } - .group:hover .\32xl\:group-hover\:bg-blue-400 { - background-color: #60a5fa; + .\32xl\:bottom-full { + bottom: 100%; } - .group:hover .\32xl\:group-hover\:bg-blue-500 { - background-color: #3b82f6; + .\32xl\:left-full { + left: 100%; } - .group:hover .\32xl\:group-hover\:bg-blue-600 { - background-color: #2563eb; + .\32xl\:-top-1\/2 { + top: -50%; } - .group:hover .\32xl\:group-hover\:bg-blue-700 { - background-color: #1d4ed8; + .\32xl\:-right-1\/2 { + right: -50%; } - .group:hover .\32xl\:group-hover\:bg-blue-800 { - background-color: #1e40af; + .\32xl\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .\32xl\:group-hover\:bg-blue-900 { - background-color: #1e3a8a; + .\32xl\:-left-1\/2 { + left: -50%; } - .group:hover .\32xl\:group-hover\:bg-indigo-50 { - background-color: #eef2ff; + .\32xl\:-top-1\/3 { + top: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-indigo-100 { - background-color: #e0e7ff; + .\32xl\:-right-1\/3 { + right: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-indigo-200 { - background-color: #c7d2fe; + .\32xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-indigo-300 { - background-color: #a5b4fc; + .\32xl\:-left-1\/3 { + left: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-indigo-400 { - background-color: #818cf8; + .\32xl\:-top-2\/3 { + top: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-indigo-500 { - background-color: #6366f1; + .\32xl\:-right-2\/3 { + right: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-indigo-600 { - background-color: #4f46e5; + .\32xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-indigo-700 { - background-color: #4338ca; + .\32xl\:-left-2\/3 { + left: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-indigo-800 { - background-color: #3730a3; + .\32xl\:-top-1\/4 { + top: -25%; } - .group:hover .\32xl\:group-hover\:bg-indigo-900 { - background-color: #312e81; + .\32xl\:-right-1\/4 { + right: -25%; } - .group:hover .\32xl\:group-hover\:bg-purple-50 { - background-color: #f5f3ff; + .\32xl\:-bottom-1\/4 { + bottom: -25%; } - .group:hover .\32xl\:group-hover\:bg-purple-100 { - background-color: #ede9fe; + .\32xl\:-left-1\/4 { + left: -25%; } - .group:hover .\32xl\:group-hover\:bg-purple-200 { - background-color: #ddd6fe; + .\32xl\:-top-2\/4 { + top: -50%; } - .group:hover .\32xl\:group-hover\:bg-purple-300 { - background-color: #c4b5fd; + .\32xl\:-right-2\/4 { + right: -50%; } - .group:hover .\32xl\:group-hover\:bg-purple-400 { - background-color: #a78bfa; + .\32xl\:-bottom-2\/4 { + bottom: -50%; } - .group:hover .\32xl\:group-hover\:bg-purple-500 { - background-color: #8b5cf6; + .\32xl\:-left-2\/4 { + left: -50%; } - .group:hover .\32xl\:group-hover\:bg-purple-600 { - background-color: #7c3aed; + .\32xl\:-top-3\/4 { + top: -75%; } - .group:hover .\32xl\:group-hover\:bg-purple-700 { - background-color: #6d28d9; + .\32xl\:-right-3\/4 { + right: -75%; } - .group:hover .\32xl\:group-hover\:bg-purple-800 { - background-color: #5b21b6; + .\32xl\:-bottom-3\/4 { + bottom: -75%; } - .group:hover .\32xl\:group-hover\:bg-purple-900 { - background-color: #4c1d95; + .\32xl\:-left-3\/4 { + left: -75%; } - .group:hover .\32xl\:group-hover\:bg-pink-50 { - background-color: #fdf2f8; + .\32xl\:-top-full { + top: -100%; } - .group:hover .\32xl\:group-hover\:bg-pink-100 { - background-color: #fce7f3; + .\32xl\:-right-full { + right: -100%; } - .group:hover .\32xl\:group-hover\:bg-pink-200 { - background-color: #fbcfe8; + .\32xl\:-bottom-full { + bottom: -100%; } - .group:hover .\32xl\:group-hover\:bg-pink-300 { - background-color: #f9a8d4; + .\32xl\:-left-full { + left: -100%; } - .group:hover .\32xl\:group-hover\:bg-pink-400 { - background-color: #f472b6; + .\32xl\:isolate { + isolation: isolate; } - .group:hover .\32xl\:group-hover\:bg-pink-500 { - background-color: #ec4899; + .\32xl\:isolation-auto { + isolation: auto; } - .group:hover .\32xl\:group-hover\:bg-pink-600 { - background-color: #db2777; + .\32xl\:z-0 { + z-index: 0; } - .group:hover .\32xl\:group-hover\:bg-pink-700 { - background-color: #be185d; + .\32xl\:z-10 { + z-index: 10; } - .group:hover .\32xl\:group-hover\:bg-pink-800 { - background-color: #9d174d; + .\32xl\:z-20 { + z-index: 20; } - .group:hover .\32xl\:group-hover\:bg-pink-900 { - background-color: #831843; + .\32xl\:z-30 { + z-index: 30; } - .\32xl\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .\32xl\:z-40 { + z-index: 40; } - .\32xl\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .\32xl\:z-50 { + z-index: 50; } - .\32xl\:focus-within\:bg-black:focus-within { - background-color: #000; + .\32xl\:z-auto { + z-index: auto; } - .\32xl\:focus-within\:bg-white:focus-within { - background-color: #fff; + .\32xl\:focus-within\:z-0:focus-within { + z-index: 0; } - - .\32xl\:focus-within\:bg-gray-50:focus-within { - background-color: #f9fafb; + + .\32xl\:focus-within\:z-10:focus-within { + z-index: 10; } - .\32xl\:focus-within\:bg-gray-100:focus-within { - background-color: #f3f4f6; + .\32xl\:focus-within\:z-20:focus-within { + z-index: 20; } - .\32xl\:focus-within\:bg-gray-200:focus-within { - background-color: #e5e7eb; + .\32xl\:focus-within\:z-30:focus-within { + z-index: 30; } - .\32xl\:focus-within\:bg-gray-300:focus-within { - background-color: #d1d5db; + .\32xl\:focus-within\:z-40:focus-within { + z-index: 40; } - .\32xl\:focus-within\:bg-gray-400:focus-within { - background-color: #9ca3af; + .\32xl\:focus-within\:z-50:focus-within { + z-index: 50; } - .\32xl\:focus-within\:bg-gray-500:focus-within { - background-color: #6b7280; + .\32xl\:focus-within\:z-auto:focus-within { + z-index: auto; } - .\32xl\:focus-within\:bg-gray-600:focus-within { - background-color: #4b5563; + .\32xl\:focus\:z-0:focus { + z-index: 0; } - .\32xl\:focus-within\:bg-gray-700:focus-within { - background-color: #374151; + .\32xl\:focus\:z-10:focus { + z-index: 10; } - .\32xl\:focus-within\:bg-gray-800:focus-within { - background-color: #1f2937; + .\32xl\:focus\:z-20:focus { + z-index: 20; } - .\32xl\:focus-within\:bg-gray-900:focus-within { - background-color: #111827; + .\32xl\:focus\:z-30:focus { + z-index: 30; } - .\32xl\:focus-within\:bg-red-50:focus-within { - background-color: #fef2f2; + .\32xl\:focus\:z-40:focus { + z-index: 40; } - .\32xl\:focus-within\:bg-red-100:focus-within { - background-color: #fee2e2; + .\32xl\:focus\:z-50:focus { + z-index: 50; } - .\32xl\:focus-within\:bg-red-200:focus-within { - background-color: #fecaca; + .\32xl\:focus\:z-auto:focus { + z-index: auto; } - .\32xl\:focus-within\:bg-red-300:focus-within { - background-color: #fca5a5; + .\32xl\:order-1 { + order: 1; } - .\32xl\:focus-within\:bg-red-400:focus-within { - background-color: #f87171; + .\32xl\:order-2 { + order: 2; } - .\32xl\:focus-within\:bg-red-500:focus-within { - background-color: #ef4444; + .\32xl\:order-3 { + order: 3; } - .\32xl\:focus-within\:bg-red-600:focus-within { - background-color: #dc2626; + .\32xl\:order-4 { + order: 4; } - .\32xl\:focus-within\:bg-red-700:focus-within { - background-color: #b91c1c; + .\32xl\:order-5 { + order: 5; } - .\32xl\:focus-within\:bg-red-800:focus-within { - background-color: #991b1b; + .\32xl\:order-6 { + order: 6; } - .\32xl\:focus-within\:bg-red-900:focus-within { - background-color: #7f1d1d; + .\32xl\:order-7 { + order: 7; } - .\32xl\:focus-within\:bg-yellow-50:focus-within { - background-color: #fffbeb; + .\32xl\:order-8 { + order: 8; } - .\32xl\:focus-within\:bg-yellow-100:focus-within { - background-color: #fef3c7; + .\32xl\:order-9 { + order: 9; } - .\32xl\:focus-within\:bg-yellow-200:focus-within { - background-color: #fde68a; + .\32xl\:order-10 { + order: 10; } - .\32xl\:focus-within\:bg-yellow-300:focus-within { - background-color: #fcd34d; + .\32xl\:order-11 { + order: 11; } - .\32xl\:focus-within\:bg-yellow-400:focus-within { - background-color: #fbbf24; + .\32xl\:order-12 { + order: 12; } - .\32xl\:focus-within\:bg-yellow-500:focus-within { - background-color: #f59e0b; + .\32xl\:order-first { + order: -9999; } - .\32xl\:focus-within\:bg-yellow-600:focus-within { - background-color: #d97706; + .\32xl\:order-last { + order: 9999; } - .\32xl\:focus-within\:bg-yellow-700:focus-within { - background-color: #b45309; + .\32xl\:order-none { + order: 0; } - .\32xl\:focus-within\:bg-yellow-800:focus-within { - background-color: #92400e; + .\32xl\:col-auto { + grid-column: auto; } - .\32xl\:focus-within\:bg-yellow-900:focus-within { - background-color: #78350f; + .\32xl\:col-span-1 { + grid-column: span 1 / span 1; } - .\32xl\:focus-within\:bg-green-50:focus-within { - background-color: #ecfdf5; + .\32xl\:col-span-2 { + grid-column: span 2 / span 2; } - .\32xl\:focus-within\:bg-green-100:focus-within { - background-color: #d1fae5; + .\32xl\:col-span-3 { + grid-column: span 3 / span 3; } - .\32xl\:focus-within\:bg-green-200:focus-within { - background-color: #a7f3d0; + .\32xl\:col-span-4 { + grid-column: span 4 / span 4; } - .\32xl\:focus-within\:bg-green-300:focus-within { - background-color: #6ee7b7; + .\32xl\:col-span-5 { + grid-column: span 5 / span 5; } - .\32xl\:focus-within\:bg-green-400:focus-within { - background-color: #34d399; + .\32xl\:col-span-6 { + grid-column: span 6 / span 6; } - .\32xl\:focus-within\:bg-green-500:focus-within { - background-color: #10b981; + .\32xl\:col-span-7 { + grid-column: span 7 / span 7; } - .\32xl\:focus-within\:bg-green-600:focus-within { - background-color: #059669; + .\32xl\:col-span-8 { + grid-column: span 8 / span 8; } - .\32xl\:focus-within\:bg-green-700:focus-within { - background-color: #047857; + .\32xl\:col-span-9 { + grid-column: span 9 / span 9; } - .\32xl\:focus-within\:bg-green-800:focus-within { - background-color: #065f46; + .\32xl\:col-span-10 { + grid-column: span 10 / span 10; } - .\32xl\:focus-within\:bg-green-900:focus-within { - background-color: #064e3b; + .\32xl\:col-span-11 { + grid-column: span 11 / span 11; } - .\32xl\:focus-within\:bg-blue-50:focus-within { - background-color: #eff6ff; + .\32xl\:col-span-12 { + grid-column: span 12 / span 12; } - .\32xl\:focus-within\:bg-blue-100:focus-within { - background-color: #dbeafe; + .\32xl\:col-span-full { + grid-column: 1 / -1; } - .\32xl\:focus-within\:bg-blue-200:focus-within { - background-color: #bfdbfe; + .\32xl\:col-start-1 { + grid-column-start: 1; } - .\32xl\:focus-within\:bg-blue-300:focus-within { - background-color: #93c5fd; + .\32xl\:col-start-2 { + grid-column-start: 2; } - .\32xl\:focus-within\:bg-blue-400:focus-within { - background-color: #60a5fa; + .\32xl\:col-start-3 { + grid-column-start: 3; } - .\32xl\:focus-within\:bg-blue-500:focus-within { - background-color: #3b82f6; + .\32xl\:col-start-4 { + grid-column-start: 4; } - .\32xl\:focus-within\:bg-blue-600:focus-within { - background-color: #2563eb; + .\32xl\:col-start-5 { + grid-column-start: 5; } - .\32xl\:focus-within\:bg-blue-700:focus-within { - background-color: #1d4ed8; + .\32xl\:col-start-6 { + grid-column-start: 6; } - .\32xl\:focus-within\:bg-blue-800:focus-within { - background-color: #1e40af; + .\32xl\:col-start-7 { + grid-column-start: 7; } - .\32xl\:focus-within\:bg-blue-900:focus-within { - background-color: #1e3a8a; + .\32xl\:col-start-8 { + grid-column-start: 8; } - .\32xl\:focus-within\:bg-indigo-50:focus-within { - background-color: #eef2ff; + .\32xl\:col-start-9 { + grid-column-start: 9; } - .\32xl\:focus-within\:bg-indigo-100:focus-within { - background-color: #e0e7ff; + .\32xl\:col-start-10 { + grid-column-start: 10; } - .\32xl\:focus-within\:bg-indigo-200:focus-within { - background-color: #c7d2fe; + .\32xl\:col-start-11 { + grid-column-start: 11; } - .\32xl\:focus-within\:bg-indigo-300:focus-within { - background-color: #a5b4fc; + .\32xl\:col-start-12 { + grid-column-start: 12; } - .\32xl\:focus-within\:bg-indigo-400:focus-within { - background-color: #818cf8; + .\32xl\:col-start-13 { + grid-column-start: 13; } - .\32xl\:focus-within\:bg-indigo-500:focus-within { - background-color: #6366f1; + .\32xl\:col-start-auto { + grid-column-start: auto; } - .\32xl\:focus-within\:bg-indigo-600:focus-within { - background-color: #4f46e5; + .\32xl\:col-end-1 { + grid-column-end: 1; } - .\32xl\:focus-within\:bg-indigo-700:focus-within { - background-color: #4338ca; + .\32xl\:col-end-2 { + grid-column-end: 2; } - .\32xl\:focus-within\:bg-indigo-800:focus-within { - background-color: #3730a3; + .\32xl\:col-end-3 { + grid-column-end: 3; } - .\32xl\:focus-within\:bg-indigo-900:focus-within { - background-color: #312e81; + .\32xl\:col-end-4 { + grid-column-end: 4; } - .\32xl\:focus-within\:bg-purple-50:focus-within { - background-color: #f5f3ff; + .\32xl\:col-end-5 { + grid-column-end: 5; } - .\32xl\:focus-within\:bg-purple-100:focus-within { - background-color: #ede9fe; + .\32xl\:col-end-6 { + grid-column-end: 6; } - .\32xl\:focus-within\:bg-purple-200:focus-within { - background-color: #ddd6fe; + .\32xl\:col-end-7 { + grid-column-end: 7; } - .\32xl\:focus-within\:bg-purple-300:focus-within { - background-color: #c4b5fd; + .\32xl\:col-end-8 { + grid-column-end: 8; } - .\32xl\:focus-within\:bg-purple-400:focus-within { - background-color: #a78bfa; + .\32xl\:col-end-9 { + grid-column-end: 9; } - .\32xl\:focus-within\:bg-purple-500:focus-within { - background-color: #8b5cf6; + .\32xl\:col-end-10 { + grid-column-end: 10; } - .\32xl\:focus-within\:bg-purple-600:focus-within { - background-color: #7c3aed; + .\32xl\:col-end-11 { + grid-column-end: 11; } - .\32xl\:focus-within\:bg-purple-700:focus-within { - background-color: #6d28d9; + .\32xl\:col-end-12 { + grid-column-end: 12; } - .\32xl\:focus-within\:bg-purple-800:focus-within { - background-color: #5b21b6; + .\32xl\:col-end-13 { + grid-column-end: 13; } - .\32xl\:focus-within\:bg-purple-900:focus-within { - background-color: #4c1d95; + .\32xl\:col-end-auto { + grid-column-end: auto; } - .\32xl\:focus-within\:bg-pink-50:focus-within { - background-color: #fdf2f8; + .\32xl\:row-auto { + grid-row: auto; } - .\32xl\:focus-within\:bg-pink-100:focus-within { - background-color: #fce7f3; + .\32xl\:row-span-1 { + grid-row: span 1 / span 1; } - .\32xl\:focus-within\:bg-pink-200:focus-within { - background-color: #fbcfe8; + .\32xl\:row-span-2 { + grid-row: span 2 / span 2; } - .\32xl\:focus-within\:bg-pink-300:focus-within { - background-color: #f9a8d4; + .\32xl\:row-span-3 { + grid-row: span 3 / span 3; } - .\32xl\:focus-within\:bg-pink-400:focus-within { - background-color: #f472b6; + .\32xl\:row-span-4 { + grid-row: span 4 / span 4; } - .\32xl\:focus-within\:bg-pink-500:focus-within { - background-color: #ec4899; + .\32xl\:row-span-5 { + grid-row: span 5 / span 5; } - .\32xl\:focus-within\:bg-pink-600:focus-within { - background-color: #db2777; + .\32xl\:row-span-6 { + grid-row: span 6 / span 6; } - .\32xl\:focus-within\:bg-pink-700:focus-within { - background-color: #be185d; + .\32xl\:row-span-full { + grid-row: 1 / -1; } - .\32xl\:focus-within\:bg-pink-800:focus-within { - background-color: #9d174d; + .\32xl\:row-start-1 { + grid-row-start: 1; } - .\32xl\:focus-within\:bg-pink-900:focus-within { - background-color: #831843; + .\32xl\:row-start-2 { + grid-row-start: 2; } - .\32xl\:hover\:bg-transparent:hover { - background-color: transparent; + .\32xl\:row-start-3 { + grid-row-start: 3; } - .\32xl\:hover\:bg-current:hover { - background-color: currentColor; + .\32xl\:row-start-4 { + grid-row-start: 4; } - .\32xl\:hover\:bg-black:hover { - background-color: #000; + .\32xl\:row-start-5 { + grid-row-start: 5; } - .\32xl\:hover\:bg-white:hover { - background-color: #fff; + .\32xl\:row-start-6 { + grid-row-start: 6; } - .\32xl\:hover\:bg-gray-50:hover { - background-color: #f9fafb; + .\32xl\:row-start-7 { + grid-row-start: 7; } - .\32xl\:hover\:bg-gray-100:hover { - background-color: #f3f4f6; + .\32xl\:row-start-auto { + grid-row-start: auto; } - .\32xl\:hover\:bg-gray-200:hover { - background-color: #e5e7eb; + .\32xl\:row-end-1 { + grid-row-end: 1; } - .\32xl\:hover\:bg-gray-300:hover { - background-color: #d1d5db; + .\32xl\:row-end-2 { + grid-row-end: 2; } - .\32xl\:hover\:bg-gray-400:hover { - background-color: #9ca3af; + .\32xl\:row-end-3 { + grid-row-end: 3; } - .\32xl\:hover\:bg-gray-500:hover { - background-color: #6b7280; + .\32xl\:row-end-4 { + grid-row-end: 4; } - .\32xl\:hover\:bg-gray-600:hover { - background-color: #4b5563; + .\32xl\:row-end-5 { + grid-row-end: 5; } - .\32xl\:hover\:bg-gray-700:hover { - background-color: #374151; + .\32xl\:row-end-6 { + grid-row-end: 6; } - .\32xl\:hover\:bg-gray-800:hover { - background-color: #1f2937; + .\32xl\:row-end-7 { + grid-row-end: 7; } - .\32xl\:hover\:bg-gray-900:hover { - background-color: #111827; + .\32xl\:row-end-auto { + grid-row-end: auto; } - .\32xl\:hover\:bg-red-50:hover { - background-color: #fef2f2; + .\32xl\:float-right { + float: right; } - .\32xl\:hover\:bg-red-100:hover { - background-color: #fee2e2; + .\32xl\:float-left { + float: left; } - .\32xl\:hover\:bg-red-200:hover { - background-color: #fecaca; + .\32xl\:float-none { + float: none; } - .\32xl\:hover\:bg-red-300:hover { - background-color: #fca5a5; + .\32xl\:clear-left { + clear: left; } - .\32xl\:hover\:bg-red-400:hover { - background-color: #f87171; + .\32xl\:clear-right { + clear: right; } - .\32xl\:hover\:bg-red-500:hover { - background-color: #ef4444; + .\32xl\:clear-both { + clear: both; } - .\32xl\:hover\:bg-red-600:hover { - background-color: #dc2626; + .\32xl\:clear-none { + clear: none; } - .\32xl\:hover\:bg-red-700:hover { - background-color: #b91c1c; + .\32xl\:m-0 { + margin: 0px; } - .\32xl\:hover\:bg-red-800:hover { - background-color: #991b1b; + .\32xl\:m-1 { + margin: 0.25rem; } - .\32xl\:hover\:bg-red-900:hover { - background-color: #7f1d1d; + .\32xl\:m-2 { + margin: 0.5rem; } - .\32xl\:hover\:bg-yellow-50:hover { - background-color: #fffbeb; + .\32xl\:m-3 { + margin: 0.75rem; } - .\32xl\:hover\:bg-yellow-100:hover { - background-color: #fef3c7; + .\32xl\:m-4 { + margin: 1rem; } - .\32xl\:hover\:bg-yellow-200:hover { - background-color: #fde68a; + .\32xl\:m-5 { + margin: 1.25rem; } - .\32xl\:hover\:bg-yellow-300:hover { - background-color: #fcd34d; + .\32xl\:m-6 { + margin: 1.5rem; } - .\32xl\:hover\:bg-yellow-400:hover { - background-color: #fbbf24; + .\32xl\:m-7 { + margin: 1.75rem; } - .\32xl\:hover\:bg-yellow-500:hover { - background-color: #f59e0b; + .\32xl\:m-8 { + margin: 2rem; } - .\32xl\:hover\:bg-yellow-600:hover { - background-color: #d97706; + .\32xl\:m-9 { + margin: 2.25rem; } - .\32xl\:hover\:bg-yellow-700:hover { - background-color: #b45309; + .\32xl\:m-10 { + margin: 2.5rem; } - .\32xl\:hover\:bg-yellow-800:hover { - background-color: #92400e; + .\32xl\:m-11 { + margin: 2.75rem; } - .\32xl\:hover\:bg-yellow-900:hover { - background-color: #78350f; + .\32xl\:m-12 { + margin: 3rem; } - .\32xl\:hover\:bg-green-50:hover { - background-color: #ecfdf5; + .\32xl\:m-14 { + margin: 3.5rem; } - .\32xl\:hover\:bg-green-100:hover { - background-color: #d1fae5; + .\32xl\:m-16 { + margin: 4rem; } - .\32xl\:hover\:bg-green-200:hover { - background-color: #a7f3d0; + .\32xl\:m-20 { + margin: 5rem; } - .\32xl\:hover\:bg-green-300:hover { - background-color: #6ee7b7; + .\32xl\:m-24 { + margin: 6rem; } - .\32xl\:hover\:bg-green-400:hover { - background-color: #34d399; + .\32xl\:m-28 { + margin: 7rem; } - .\32xl\:hover\:bg-green-500:hover { - background-color: #10b981; + .\32xl\:m-32 { + margin: 8rem; } - .\32xl\:hover\:bg-green-600:hover { - background-color: #059669; + .\32xl\:m-36 { + margin: 9rem; } - .\32xl\:hover\:bg-green-700:hover { - background-color: #047857; + .\32xl\:m-40 { + margin: 10rem; } - .\32xl\:hover\:bg-green-800:hover { - background-color: #065f46; + .\32xl\:m-44 { + margin: 11rem; } - .\32xl\:hover\:bg-green-900:hover { - background-color: #064e3b; + .\32xl\:m-48 { + margin: 12rem; } - .\32xl\:hover\:bg-blue-50:hover { - background-color: #eff6ff; + .\32xl\:m-52 { + margin: 13rem; } - .\32xl\:hover\:bg-blue-100:hover { - background-color: #dbeafe; + .\32xl\:m-56 { + margin: 14rem; } - .\32xl\:hover\:bg-blue-200:hover { - background-color: #bfdbfe; + .\32xl\:m-60 { + margin: 15rem; } - .\32xl\:hover\:bg-blue-300:hover { - background-color: #93c5fd; + .\32xl\:m-64 { + margin: 16rem; } - .\32xl\:hover\:bg-blue-400:hover { - background-color: #60a5fa; + .\32xl\:m-72 { + margin: 18rem; } - .\32xl\:hover\:bg-blue-500:hover { - background-color: #3b82f6; + .\32xl\:m-80 { + margin: 20rem; } - .\32xl\:hover\:bg-blue-600:hover { - background-color: #2563eb; + .\32xl\:m-96 { + margin: 24rem; } - .\32xl\:hover\:bg-blue-700:hover { - background-color: #1d4ed8; + .\32xl\:m-auto { + margin: auto; } - .\32xl\:hover\:bg-blue-800:hover { - background-color: #1e40af; + .\32xl\:m-px { + margin: 1px; } - .\32xl\:hover\:bg-blue-900:hover { - background-color: #1e3a8a; + .\32xl\:m-0\.5 { + margin: 0.125rem; } - .\32xl\:hover\:bg-indigo-50:hover { - background-color: #eef2ff; + .\32xl\:m-1\.5 { + margin: 0.375rem; } - .\32xl\:hover\:bg-indigo-100:hover { - background-color: #e0e7ff; + .\32xl\:m-2\.5 { + margin: 0.625rem; } - .\32xl\:hover\:bg-indigo-200:hover { - background-color: #c7d2fe; + .\32xl\:m-3\.5 { + margin: 0.875rem; } - .\32xl\:hover\:bg-indigo-300:hover { - background-color: #a5b4fc; + .\32xl\:-m-0 { + margin: 0px; } - .\32xl\:hover\:bg-indigo-400:hover { - background-color: #818cf8; + .\32xl\:-m-1 { + margin: -0.25rem; } - .\32xl\:hover\:bg-indigo-500:hover { - background-color: #6366f1; + .\32xl\:-m-2 { + margin: -0.5rem; } - .\32xl\:hover\:bg-indigo-600:hover { - background-color: #4f46e5; + .\32xl\:-m-3 { + margin: -0.75rem; } - .\32xl\:hover\:bg-indigo-700:hover { - background-color: #4338ca; + .\32xl\:-m-4 { + margin: -1rem; } - .\32xl\:hover\:bg-indigo-800:hover { - background-color: #3730a3; + .\32xl\:-m-5 { + margin: -1.25rem; } - .\32xl\:hover\:bg-indigo-900:hover { - background-color: #312e81; + .\32xl\:-m-6 { + margin: -1.5rem; } - .\32xl\:hover\:bg-purple-50:hover { - background-color: #f5f3ff; + .\32xl\:-m-7 { + margin: -1.75rem; } - .\32xl\:hover\:bg-purple-100:hover { - background-color: #ede9fe; + .\32xl\:-m-8 { + margin: -2rem; } - .\32xl\:hover\:bg-purple-200:hover { - background-color: #ddd6fe; + .\32xl\:-m-9 { + margin: -2.25rem; } - .\32xl\:hover\:bg-purple-300:hover { - background-color: #c4b5fd; + .\32xl\:-m-10 { + margin: -2.5rem; } - .\32xl\:hover\:bg-purple-400:hover { - background-color: #a78bfa; + .\32xl\:-m-11 { + margin: -2.75rem; } - .\32xl\:hover\:bg-purple-500:hover { - background-color: #8b5cf6; + .\32xl\:-m-12 { + margin: -3rem; } - .\32xl\:hover\:bg-purple-600:hover { - background-color: #7c3aed; + .\32xl\:-m-14 { + margin: -3.5rem; } - .\32xl\:hover\:bg-purple-700:hover { - background-color: #6d28d9; + .\32xl\:-m-16 { + margin: -4rem; } - .\32xl\:hover\:bg-purple-800:hover { - background-color: #5b21b6; + .\32xl\:-m-20 { + margin: -5rem; } - .\32xl\:hover\:bg-purple-900:hover { - background-color: #4c1d95; + .\32xl\:-m-24 { + margin: -6rem; } - .\32xl\:hover\:bg-pink-50:hover { - background-color: #fdf2f8; + .\32xl\:-m-28 { + margin: -7rem; } - .\32xl\:hover\:bg-pink-100:hover { - background-color: #fce7f3; + .\32xl\:-m-32 { + margin: -8rem; } - .\32xl\:hover\:bg-pink-200:hover { - background-color: #fbcfe8; + .\32xl\:-m-36 { + margin: -9rem; } - .\32xl\:hover\:bg-pink-300:hover { - background-color: #f9a8d4; + .\32xl\:-m-40 { + margin: -10rem; } - .\32xl\:hover\:bg-pink-400:hover { - background-color: #f472b6; + .\32xl\:-m-44 { + margin: -11rem; } - .\32xl\:hover\:bg-pink-500:hover { - background-color: #ec4899; + .\32xl\:-m-48 { + margin: -12rem; } - .\32xl\:hover\:bg-pink-600:hover { - background-color: #db2777; + .\32xl\:-m-52 { + margin: -13rem; } - .\32xl\:hover\:bg-pink-700:hover { - background-color: #be185d; + .\32xl\:-m-56 { + margin: -14rem; } - .\32xl\:hover\:bg-pink-800:hover { - background-color: #9d174d; + .\32xl\:-m-60 { + margin: -15rem; } - .\32xl\:hover\:bg-pink-900:hover { - background-color: #831843; + .\32xl\:-m-64 { + margin: -16rem; } - .\32xl\:focus\:bg-transparent:focus { - background-color: transparent; + .\32xl\:-m-72 { + margin: -18rem; } - .\32xl\:focus\:bg-current:focus { - background-color: currentColor; + .\32xl\:-m-80 { + margin: -20rem; } - .\32xl\:focus\:bg-black:focus { - background-color: #000; + .\32xl\:-m-96 { + margin: -24rem; } - .\32xl\:focus\:bg-white:focus { - background-color: #fff; + .\32xl\:-m-px { + margin: -1px; } - .\32xl\:focus\:bg-gray-50:focus { - background-color: #f9fafb; + .\32xl\:-m-0\.5 { + margin: -0.125rem; } - .\32xl\:focus\:bg-gray-100:focus { - background-color: #f3f4f6; + .\32xl\:-m-1\.5 { + margin: -0.375rem; } - .\32xl\:focus\:bg-gray-200:focus { - background-color: #e5e7eb; + .\32xl\:-m-2\.5 { + margin: -0.625rem; } - .\32xl\:focus\:bg-gray-300:focus { - background-color: #d1d5db; + .\32xl\:-m-3\.5 { + margin: -0.875rem; } - .\32xl\:focus\:bg-gray-400:focus { - background-color: #9ca3af; + .\32xl\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .\32xl\:focus\:bg-gray-500:focus { - background-color: #6b7280; + .\32xl\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .\32xl\:focus\:bg-gray-600:focus { - background-color: #4b5563; + .\32xl\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .\32xl\:focus\:bg-gray-700:focus { - background-color: #374151; + .\32xl\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .\32xl\:focus\:bg-gray-800:focus { - background-color: #1f2937; + .\32xl\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .\32xl\:focus\:bg-gray-900:focus { - background-color: #111827; + .\32xl\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .\32xl\:focus\:bg-red-50:focus { - background-color: #fef2f2; + .\32xl\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .\32xl\:focus\:bg-red-100:focus { - background-color: #fee2e2; + .\32xl\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .\32xl\:focus\:bg-red-200:focus { - background-color: #fecaca; + .\32xl\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .\32xl\:focus\:bg-red-300:focus { - background-color: #fca5a5; + .\32xl\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .\32xl\:focus\:bg-red-400:focus { - background-color: #f87171; + .\32xl\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .\32xl\:focus\:bg-red-500:focus { - background-color: #ef4444; + .\32xl\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .\32xl\:focus\:bg-red-600:focus { - background-color: #dc2626; + .\32xl\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .\32xl\:focus\:bg-red-700:focus { - background-color: #b91c1c; + .\32xl\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .\32xl\:focus\:bg-red-800:focus { - background-color: #991b1b; + .\32xl\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .\32xl\:focus\:bg-red-900:focus { - background-color: #7f1d1d; + .\32xl\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .\32xl\:focus\:bg-yellow-50:focus { - background-color: #fffbeb; + .\32xl\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .\32xl\:focus\:bg-yellow-100:focus { - background-color: #fef3c7; + .\32xl\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .\32xl\:focus\:bg-yellow-200:focus { - background-color: #fde68a; + .\32xl\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .\32xl\:focus\:bg-yellow-300:focus { - background-color: #fcd34d; + .\32xl\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .\32xl\:focus\:bg-yellow-400:focus { - background-color: #fbbf24; + .\32xl\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .\32xl\:focus\:bg-yellow-500:focus { - background-color: #f59e0b; + .\32xl\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .\32xl\:focus\:bg-yellow-600:focus { - background-color: #d97706; + .\32xl\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .\32xl\:focus\:bg-yellow-700:focus { - background-color: #b45309; + .\32xl\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .\32xl\:focus\:bg-yellow-800:focus { - background-color: #92400e; + .\32xl\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .\32xl\:focus\:bg-yellow-900:focus { - background-color: #78350f; + .\32xl\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .\32xl\:focus\:bg-green-50:focus { - background-color: #ecfdf5; + .\32xl\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .\32xl\:focus\:bg-green-100:focus { - background-color: #d1fae5; + .\32xl\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .\32xl\:focus\:bg-green-200:focus { - background-color: #a7f3d0; + .\32xl\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .\32xl\:focus\:bg-green-300:focus { - background-color: #6ee7b7; + .\32xl\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .\32xl\:focus\:bg-green-400:focus { - background-color: #34d399; + .\32xl\:mx-auto { + margin-left: auto; + margin-right: auto; } - .\32xl\:focus\:bg-green-500:focus { - background-color: #10b981; + .\32xl\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .\32xl\:focus\:bg-green-600:focus { - background-color: #059669; + .\32xl\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .\32xl\:focus\:bg-green-700:focus { - background-color: #047857; + .\32xl\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .\32xl\:focus\:bg-green-800:focus { - background-color: #065f46; + .\32xl\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .\32xl\:focus\:bg-green-900:focus { - background-color: #064e3b; + .\32xl\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .\32xl\:focus\:bg-blue-50:focus { - background-color: #eff6ff; + .\32xl\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .\32xl\:focus\:bg-blue-100:focus { - background-color: #dbeafe; + .\32xl\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .\32xl\:focus\:bg-blue-200:focus { - background-color: #bfdbfe; + .\32xl\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .\32xl\:focus\:bg-blue-300:focus { - background-color: #93c5fd; + .\32xl\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .\32xl\:focus\:bg-blue-400:focus { - background-color: #60a5fa; + .\32xl\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .\32xl\:focus\:bg-blue-500:focus { - background-color: #3b82f6; + .\32xl\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .\32xl\:focus\:bg-blue-600:focus { - background-color: #2563eb; + .\32xl\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .\32xl\:focus\:bg-blue-700:focus { - background-color: #1d4ed8; + .\32xl\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .\32xl\:focus\:bg-blue-800:focus { - background-color: #1e40af; + .\32xl\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .\32xl\:focus\:bg-blue-900:focus { - background-color: #1e3a8a; + .\32xl\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .\32xl\:focus\:bg-indigo-50:focus { - background-color: #eef2ff; + .\32xl\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .\32xl\:focus\:bg-indigo-100:focus { - background-color: #e0e7ff; + .\32xl\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .\32xl\:focus\:bg-indigo-200:focus { - background-color: #c7d2fe; + .\32xl\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .\32xl\:focus\:bg-indigo-300:focus { - background-color: #a5b4fc; + .\32xl\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .\32xl\:focus\:bg-indigo-400:focus { - background-color: #818cf8; + .\32xl\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .\32xl\:focus\:bg-indigo-500:focus { - background-color: #6366f1; + .\32xl\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .\32xl\:focus\:bg-indigo-600:focus { - background-color: #4f46e5; + .\32xl\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .\32xl\:focus\:bg-indigo-700:focus { - background-color: #4338ca; + .\32xl\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .\32xl\:focus\:bg-indigo-800:focus { - background-color: #3730a3; + .\32xl\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .\32xl\:focus\:bg-indigo-900:focus { - background-color: #312e81; + .\32xl\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .\32xl\:focus\:bg-purple-50:focus { - background-color: #f5f3ff; + .\32xl\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .\32xl\:focus\:bg-purple-100:focus { - background-color: #ede9fe; + .\32xl\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .\32xl\:focus\:bg-purple-200:focus { - background-color: #ddd6fe; + .\32xl\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .\32xl\:focus\:bg-purple-300:focus { - background-color: #c4b5fd; + .\32xl\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .\32xl\:focus\:bg-purple-400:focus { - background-color: #a78bfa; + .\32xl\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .\32xl\:focus\:bg-purple-500:focus { - background-color: #8b5cf6; + .\32xl\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .\32xl\:focus\:bg-purple-600:focus { - background-color: #7c3aed; + .\32xl\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .\32xl\:focus\:bg-purple-700:focus { - background-color: #6d28d9; + .\32xl\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .\32xl\:focus\:bg-purple-800:focus { - background-color: #5b21b6; + .\32xl\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .\32xl\:focus\:bg-purple-900:focus { - background-color: #4c1d95; + .\32xl\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .\32xl\:focus\:bg-pink-50:focus { - background-color: #fdf2f8; + .\32xl\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .\32xl\:focus\:bg-pink-100:focus { - background-color: #fce7f3; + .\32xl\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .\32xl\:focus\:bg-pink-200:focus { - background-color: #fbcfe8; + .\32xl\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .\32xl\:focus\:bg-pink-300:focus { - background-color: #f9a8d4; + .\32xl\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .\32xl\:focus\:bg-pink-400:focus { - background-color: #f472b6; + .\32xl\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .\32xl\:focus\:bg-pink-500:focus { - background-color: #ec4899; + .\32xl\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .\32xl\:focus\:bg-pink-600:focus { - background-color: #db2777; + .\32xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .\32xl\:focus\:bg-pink-700:focus { - background-color: #be185d; + .\32xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .\32xl\:focus\:bg-pink-800:focus { - background-color: #9d174d; + .\32xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .\32xl\:focus\:bg-pink-900:focus { - background-color: #831843; + .\32xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .\32xl\:bg-none { - background-image: none; + .\32xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .\32xl\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .\32xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .\32xl\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .\32xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .\32xl\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .\32xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .\32xl\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .\32xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .\32xl\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .\32xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .\32xl\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .\32xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .\32xl\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .\32xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .\32xl\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .\32xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .\32xl\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .\32xl\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .\32xl\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .\32xl\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .\32xl\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .\32xl\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .\32xl\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .\32xl\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .\32xl\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .\32xl\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .\32xl\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .\32xl\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .\32xl\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .\32xl\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .\32xl\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .\32xl\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .\32xl\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .\32xl\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .\32xl\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .\32xl\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .\32xl\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .\32xl\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .\32xl\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .\32xl\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .\32xl\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .\32xl\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .\32xl\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .\32xl\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .\32xl\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .\32xl\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .\32xl\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .\32xl\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .\32xl\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .\32xl\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .\32xl\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .\32xl\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .\32xl\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .\32xl\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .\32xl\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .\32xl\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .\32xl\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .\32xl\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .\32xl\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .\32xl\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .\32xl\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .\32xl\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .\32xl\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .\32xl\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .\32xl\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .\32xl\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .\32xl\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .\32xl\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .\32xl\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .\32xl\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .\32xl\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .\32xl\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .\32xl\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .\32xl\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:mt-0 { + margin-top: 0px; } - .\32xl\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:mt-1 { + margin-top: 0.25rem; } - .\32xl\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:mt-2 { + margin-top: 0.5rem; } - .\32xl\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:mt-3 { + margin-top: 0.75rem; } - .\32xl\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:mt-4 { + margin-top: 1rem; } - .\32xl\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:mt-5 { + margin-top: 1.25rem; } - .\32xl\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:mt-6 { + margin-top: 1.5rem; } - .\32xl\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:mt-7 { + margin-top: 1.75rem; } - .\32xl\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:mt-8 { + margin-top: 2rem; } - .\32xl\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:mt-9 { + margin-top: 2.25rem; } - .\32xl\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:mt-10 { + margin-top: 2.5rem; } - .\32xl\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:mt-11 { + margin-top: 2.75rem; } - .\32xl\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:mt-12 { + margin-top: 3rem; } - .\32xl\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:mt-14 { + margin-top: 3.5rem; } - .\32xl\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:mt-16 { + margin-top: 4rem; } - .\32xl\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:mt-20 { + margin-top: 5rem; } - .\32xl\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:mt-24 { + margin-top: 6rem; } - .\32xl\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:mt-28 { + margin-top: 7rem; } - .\32xl\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:mt-32 { + margin-top: 8rem; } - .\32xl\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:mt-36 { + margin-top: 9rem; } - .\32xl\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:mt-40 { + margin-top: 10rem; } - .\32xl\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:mt-44 { + margin-top: 11rem; } - .\32xl\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:mt-48 { + margin-top: 12rem; } - .\32xl\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:mt-52 { + margin-top: 13rem; } - .\32xl\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:mt-56 { + margin-top: 14rem; } - .\32xl\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:mt-60 { + margin-top: 15rem; } - .\32xl\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:mt-64 { + margin-top: 16rem; } - .\32xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:mt-72 { + margin-top: 18rem; } - .\32xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:mt-80 { + margin-top: 20rem; } - .\32xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:mt-96 { + margin-top: 24rem; } - .\32xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:mt-auto { + margin-top: auto; } - .\32xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:mt-px { + margin-top: 1px; } - .\32xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:mt-0\.5 { + margin-top: 0.125rem; } - .\32xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:mt-1\.5 { + margin-top: 0.375rem; } - .\32xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:mt-2\.5 { + margin-top: 0.625rem; } - .\32xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:mt-3\.5 { + margin-top: 0.875rem; } - .\32xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:-mt-0 { + margin-top: 0px; } - .\32xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:-mt-1 { + margin-top: -0.25rem; } - .\32xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:-mt-2 { + margin-top: -0.5rem; } - .\32xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:-mt-3 { + margin-top: -0.75rem; } - .\32xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:-mt-4 { + margin-top: -1rem; } - .\32xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:-mt-5 { + margin-top: -1.25rem; } - .\32xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:-mt-6 { + margin-top: -1.5rem; } - .\32xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:-mt-7 { + margin-top: -1.75rem; } - .\32xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:-mt-8 { + margin-top: -2rem; } - .\32xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:-mt-9 { + margin-top: -2.25rem; } - .\32xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:-mt-10 { + margin-top: -2.5rem; } - .\32xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:-mt-11 { + margin-top: -2.75rem; } - .\32xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:-mt-12 { + margin-top: -3rem; } - .\32xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:-mt-14 { + margin-top: -3.5rem; } - .\32xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:-mt-16 { + margin-top: -4rem; } - .\32xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:-mt-20 { + margin-top: -5rem; } - .\32xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:-mt-24 { + margin-top: -6rem; } - .\32xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:-mt-28 { + margin-top: -7rem; } - .\32xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:-mt-32 { + margin-top: -8rem; } - .\32xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:-mt-36 { + margin-top: -9rem; } - .\32xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:-mt-40 { + margin-top: -10rem; } - .\32xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:-mt-44 { + margin-top: -11rem; } - .\32xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:-mt-48 { + margin-top: -12rem; } - .\32xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:-mt-52 { + margin-top: -13rem; } - .\32xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:-mt-56 { + margin-top: -14rem; } - .\32xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:-mt-60 { + margin-top: -15rem; } - .\32xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:-mt-64 { + margin-top: -16rem; } - .\32xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:-mt-72 { + margin-top: -18rem; } - .\32xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:-mt-80 { + margin-top: -20rem; } - .\32xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:-mt-96 { + margin-top: -24rem; } - .\32xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:-mt-px { + margin-top: -1px; } - .\32xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .\32xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .\32xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .\32xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .\32xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:mr-0 { + margin-right: 0px; } - .\32xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:mr-1 { + margin-right: 0.25rem; } - .\32xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:mr-2 { + margin-right: 0.5rem; } - .\32xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:mr-3 { + margin-right: 0.75rem; } - .\32xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:mr-4 { + margin-right: 1rem; } - .\32xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:mr-5 { + margin-right: 1.25rem; } - .\32xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:mr-6 { + margin-right: 1.5rem; } - .\32xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:mr-7 { + margin-right: 1.75rem; } - .\32xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:mr-8 { + margin-right: 2rem; } - .\32xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:mr-9 { + margin-right: 2.25rem; } - .\32xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:mr-10 { + margin-right: 2.5rem; } - .\32xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:mr-11 { + margin-right: 2.75rem; } - .\32xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:mr-12 { + margin-right: 3rem; } - .\32xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:mr-14 { + margin-right: 3.5rem; } - .\32xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:mr-16 { + margin-right: 4rem; } - .\32xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:mr-20 { + margin-right: 5rem; } - .\32xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:mr-24 { + margin-right: 6rem; } - .\32xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:mr-28 { + margin-right: 7rem; } - .\32xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:mr-32 { + margin-right: 8rem; } - .\32xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:mr-36 { + margin-right: 9rem; } - .\32xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:mr-40 { + margin-right: 10rem; } - .\32xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:mr-44 { + margin-right: 11rem; } - .\32xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:mr-48 { + margin-right: 12rem; } - .\32xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:mr-52 { + margin-right: 13rem; } - .\32xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:mr-56 { + margin-right: 14rem; } - .\32xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:mr-60 { + margin-right: 15rem; } - .\32xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:mr-64 { + margin-right: 16rem; } - .\32xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:mr-72 { + margin-right: 18rem; } - .\32xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:mr-80 { + margin-right: 20rem; } - .\32xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:mr-96 { + margin-right: 24rem; } - .\32xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:mr-auto { + margin-right: auto; } - .\32xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:mr-px { + margin-right: 1px; } - .\32xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:mr-0\.5 { + margin-right: 0.125rem; } - .\32xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:mr-1\.5 { + margin-right: 0.375rem; } - .\32xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:mr-2\.5 { + margin-right: 0.625rem; } - .\32xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:mr-3\.5 { + margin-right: 0.875rem; } - .\32xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:-mr-0 { + margin-right: 0px; } - .\32xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:-mr-1 { + margin-right: -0.25rem; } - .\32xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:-mr-2 { + margin-right: -0.5rem; } - .\32xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:-mr-3 { + margin-right: -0.75rem; } - .\32xl\:to-transparent { - --tw-gradient-to: transparent; + .\32xl\:-mr-4 { + margin-right: -1rem; } - .\32xl\:to-current { - --tw-gradient-to: currentColor; + .\32xl\:-mr-5 { + margin-right: -1.25rem; } - .\32xl\:to-black { - --tw-gradient-to: #000; + .\32xl\:-mr-6 { + margin-right: -1.5rem; } - .\32xl\:to-white { - --tw-gradient-to: #fff; + .\32xl\:-mr-7 { + margin-right: -1.75rem; } - .\32xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .\32xl\:-mr-8 { + margin-right: -2rem; } - .\32xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .\32xl\:-mr-9 { + margin-right: -2.25rem; } - .\32xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .\32xl\:-mr-10 { + margin-right: -2.5rem; } - .\32xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .\32xl\:-mr-11 { + margin-right: -2.75rem; } - .\32xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .\32xl\:-mr-12 { + margin-right: -3rem; } - .\32xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .\32xl\:-mr-14 { + margin-right: -3.5rem; } - .\32xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .\32xl\:-mr-16 { + margin-right: -4rem; } - .\32xl\:to-gray-700 { - --tw-gradient-to: #374151; + .\32xl\:-mr-20 { + margin-right: -5rem; } - .\32xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .\32xl\:-mr-24 { + margin-right: -6rem; } - .\32xl\:to-gray-900 { - --tw-gradient-to: #111827; + .\32xl\:-mr-28 { + margin-right: -7rem; } - .\32xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .\32xl\:-mr-32 { + margin-right: -8rem; } - .\32xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .\32xl\:-mr-36 { + margin-right: -9rem; } - .\32xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .\32xl\:-mr-40 { + margin-right: -10rem; } - .\32xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .\32xl\:-mr-44 { + margin-right: -11rem; } - .\32xl\:to-red-400 { - --tw-gradient-to: #f87171; + .\32xl\:-mr-48 { + margin-right: -12rem; } - .\32xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .\32xl\:-mr-52 { + margin-right: -13rem; } - .\32xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .\32xl\:-mr-56 { + margin-right: -14rem; } - .\32xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .\32xl\:-mr-60 { + margin-right: -15rem; } - .\32xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .\32xl\:-mr-64 { + margin-right: -16rem; } - .\32xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .\32xl\:-mr-72 { + margin-right: -18rem; } - .\32xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .\32xl\:-mr-80 { + margin-right: -20rem; } - .\32xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .\32xl\:-mr-96 { + margin-right: -24rem; } - .\32xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .\32xl\:-mr-px { + margin-right: -1px; } - .\32xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .\32xl\:-mr-0\.5 { + margin-right: -0.125rem; } - .\32xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .\32xl\:-mr-1\.5 { + margin-right: -0.375rem; } - .\32xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .\32xl\:-mr-2\.5 { + margin-right: -0.625rem; } - .\32xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .\32xl\:-mr-3\.5 { + margin-right: -0.875rem; } - .\32xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .\32xl\:mb-0 { + margin-bottom: 0px; } - .\32xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .\32xl\:mb-1 { + margin-bottom: 0.25rem; } - .\32xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .\32xl\:mb-2 { + margin-bottom: 0.5rem; } - .\32xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .\32xl\:mb-3 { + margin-bottom: 0.75rem; } - .\32xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .\32xl\:mb-4 { + margin-bottom: 1rem; } - .\32xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .\32xl\:mb-5 { + margin-bottom: 1.25rem; } - .\32xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .\32xl\:mb-6 { + margin-bottom: 1.5rem; } - .\32xl\:to-green-400 { - --tw-gradient-to: #34d399; + .\32xl\:mb-7 { + margin-bottom: 1.75rem; } - .\32xl\:to-green-500 { - --tw-gradient-to: #10b981; + .\32xl\:mb-8 { + margin-bottom: 2rem; } - .\32xl\:to-green-600 { - --tw-gradient-to: #059669; + .\32xl\:mb-9 { + margin-bottom: 2.25rem; } - .\32xl\:to-green-700 { - --tw-gradient-to: #047857; + .\32xl\:mb-10 { + margin-bottom: 2.5rem; } - .\32xl\:to-green-800 { - --tw-gradient-to: #065f46; + .\32xl\:mb-11 { + margin-bottom: 2.75rem; } - .\32xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .\32xl\:mb-12 { + margin-bottom: 3rem; } - .\32xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .\32xl\:mb-14 { + margin-bottom: 3.5rem; } - .\32xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .\32xl\:mb-16 { + margin-bottom: 4rem; } - .\32xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .\32xl\:mb-20 { + margin-bottom: 5rem; } - .\32xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .\32xl\:mb-24 { + margin-bottom: 6rem; } - .\32xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .\32xl\:mb-28 { + margin-bottom: 7rem; } - .\32xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .\32xl\:mb-32 { + margin-bottom: 8rem; } - .\32xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .\32xl\:mb-36 { + margin-bottom: 9rem; } - .\32xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .\32xl\:mb-40 { + margin-bottom: 10rem; } - .\32xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .\32xl\:mb-44 { + margin-bottom: 11rem; } - .\32xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .\32xl\:mb-48 { + margin-bottom: 12rem; } - .\32xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .\32xl\:mb-52 { + margin-bottom: 13rem; } - .\32xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .\32xl\:mb-56 { + margin-bottom: 14rem; } - .\32xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .\32xl\:mb-60 { + margin-bottom: 15rem; } - .\32xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .\32xl\:mb-64 { + margin-bottom: 16rem; } - .\32xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .\32xl\:mb-72 { + margin-bottom: 18rem; } - .\32xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .\32xl\:mb-80 { + margin-bottom: 20rem; } - .\32xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .\32xl\:mb-96 { + margin-bottom: 24rem; } - .\32xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .\32xl\:mb-auto { + margin-bottom: auto; } - .\32xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .\32xl\:mb-px { + margin-bottom: 1px; } - .\32xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .\32xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .\32xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .\32xl\:mb-1\.5 { + margin-bottom: 0.375rem; } - .\32xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .\32xl\:mb-2\.5 { + margin-bottom: 0.625rem; } - .\32xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .\32xl\:mb-3\.5 { + margin-bottom: 0.875rem; } - .\32xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .\32xl\:-mb-0 { + margin-bottom: 0px; } - .\32xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .\32xl\:-mb-1 { + margin-bottom: -0.25rem; } - .\32xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .\32xl\:-mb-2 { + margin-bottom: -0.5rem; } - .\32xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .\32xl\:-mb-3 { + margin-bottom: -0.75rem; } - .\32xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .\32xl\:-mb-4 { + margin-bottom: -1rem; } - .\32xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .\32xl\:-mb-5 { + margin-bottom: -1.25rem; } - .\32xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .\32xl\:-mb-6 { + margin-bottom: -1.5rem; } - .\32xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .\32xl\:-mb-7 { + margin-bottom: -1.75rem; } - .\32xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .\32xl\:-mb-8 { + margin-bottom: -2rem; } - .\32xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .\32xl\:-mb-9 { + margin-bottom: -2.25rem; } - .\32xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .\32xl\:-mb-10 { + margin-bottom: -2.5rem; } - .\32xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .\32xl\:-mb-11 { + margin-bottom: -2.75rem; } - .\32xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .\32xl\:-mb-12 { + margin-bottom: -3rem; } - .\32xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .\32xl\:-mb-14 { + margin-bottom: -3.5rem; } - .\32xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .\32xl\:-mb-16 { + margin-bottom: -4rem; } - .\32xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .\32xl\:-mb-20 { + margin-bottom: -5rem; } - .\32xl\:to-pink-900 { - --tw-gradient-to: #831843; + .\32xl\:-mb-24 { + margin-bottom: -6rem; } - .\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\:-mb-28 { + margin-bottom: -7rem; } - .\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\:-mb-32 { + margin-bottom: -8rem; } - .\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\:-mb-36 { + margin-bottom: -9rem; } - .\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\:-mb-40 { + margin-bottom: -10rem; } - .\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\:-mb-44 { + margin-bottom: -11rem; } - .\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\:-mb-48 { + margin-bottom: -12rem; } - .\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\:-mb-52 { + margin-bottom: -13rem; } - .\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\:-mb-56 { + margin-bottom: -14rem; } - .\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\:-mb-60 { + margin-bottom: -15rem; } - .\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\:-mb-64 { + margin-bottom: -16rem; } - .\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\:-mb-72 { + margin-bottom: -18rem; } - .\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\:-mb-80 { + margin-bottom: -20rem; } - .\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\:-mb-96 { + margin-bottom: -24rem; } - .\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\:-mb-px { + margin-bottom: -1px; } - .\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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .\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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .\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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .\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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .\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\:ml-0 { + margin-left: 0px; } - .\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\:ml-1 { + margin-left: 0.25rem; } - .\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\:ml-2 { + margin-left: 0.5rem; } - .\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\:ml-3 { + margin-left: 0.75rem; } - .\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\:ml-4 { + margin-left: 1rem; } - .\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\:ml-5 { + margin-left: 1.25rem; } - .\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\:ml-6 { + margin-left: 1.5rem; } - .\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\:ml-7 { + margin-left: 1.75rem; } - .\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\:ml-8 { + margin-left: 2rem; } - .\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\:ml-9 { + margin-left: 2.25rem; } - .\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\:ml-10 { + margin-left: 2.5rem; } - .\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\:ml-11 { + margin-left: 2.75rem; } - .\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\:ml-12 { + margin-left: 3rem; } - .\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\:ml-14 { + margin-left: 3.5rem; } - .\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\:ml-16 { + margin-left: 4rem; } - .\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\:ml-20 { + margin-left: 5rem; } - .\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\:ml-24 { + margin-left: 6rem; } - .\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\:ml-28 { + margin-left: 7rem; } - .\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\:ml-32 { + margin-left: 8rem; } - .\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\:ml-36 { + margin-left: 9rem; } - .\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\:ml-40 { + margin-left: 10rem; } - .\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\:ml-44 { + margin-left: 11rem; } - .\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\:ml-48 { + margin-left: 12rem; } - .\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\:ml-52 { + margin-left: 13rem; } - .\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\:ml-56 { + margin-left: 14rem; } - .\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\:ml-60 { + margin-left: 15rem; } - .\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\:ml-64 { + margin-left: 16rem; } - .\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\:ml-72 { + margin-left: 18rem; } - .\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\:ml-80 { + margin-left: 20rem; } - .\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\:ml-96 { + margin-left: 24rem; } - .\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\:ml-auto { + margin-left: auto; } - .\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\:ml-px { + margin-left: 1px; } - .\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\:ml-0\.5 { + margin-left: 0.125rem; } - .\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\:ml-1\.5 { + margin-left: 0.375rem; } - .\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\:ml-2\.5 { + margin-left: 0.625rem; } - .\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\:ml-3\.5 { + margin-left: 0.875rem; } - .\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\:-ml-0 { + margin-left: 0px; } - .\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\:-ml-1 { + margin-left: -0.25rem; } - .\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\:-ml-2 { + margin-left: -0.5rem; } - .\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\:-ml-3 { + margin-left: -0.75rem; } - .\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\:-ml-4 { + margin-left: -1rem; } - .\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\:-ml-5 { + margin-left: -1.25rem; } - .\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\:-ml-6 { + margin-left: -1.5rem; } - .\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\:-ml-7 { + margin-left: -1.75rem; } - .\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\:-ml-8 { + margin-left: -2rem; } - .\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\:-ml-9 { + margin-left: -2.25rem; } - .\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\:-ml-10 { + margin-left: -2.5rem; } - .\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\:-ml-11 { + margin-left: -2.75rem; } - .\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\:-ml-12 { + margin-left: -3rem; } - .\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\:-ml-14 { + margin-left: -3.5rem; } - .\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\:-ml-16 { + margin-left: -4rem; } - .\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\:-ml-20 { + margin-left: -5rem; } - .\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\:-ml-24 { + margin-left: -6rem; } - .\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\:-ml-28 { + margin-left: -7rem; } - .\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\:-ml-32 { + margin-left: -8rem; } - .\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\:-ml-36 { + margin-left: -9rem; } - .\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\:-ml-40 { + margin-left: -10rem; } - .\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\:-ml-44 { + margin-left: -11rem; } - .\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\:-ml-48 { + margin-left: -12rem; } - .\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\:-ml-52 { + margin-left: -13rem; } - .\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\:-ml-56 { + margin-left: -14rem; } - .\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\:-ml-60 { + margin-left: -15rem; } - .\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\:-ml-64 { + margin-left: -16rem; } - .\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\:-ml-72 { + margin-left: -18rem; } - .\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\:-ml-80 { + margin-left: -20rem; } - .\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\:-ml-96 { + margin-left: -24rem; } - .\32xl\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:-ml-px { + margin-left: -1px; } - .\32xl\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:-ml-0\.5 { + margin-left: -0.125rem; } - .\32xl\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:-ml-1\.5 { + margin-left: -0.375rem; } - .\32xl\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:-ml-2\.5 { + margin-left: -0.625rem; } - .\32xl\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:-ml-3\.5 { + margin-left: -0.875rem; } - .\32xl\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:box-border { + box-sizing: border-box; } - .\32xl\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:box-content { + box-sizing: content-box; } - .\32xl\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:block { + display: block; } - .\32xl\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:inline-block { + display: inline-block; } - .\32xl\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:inline { + display: inline; } - .\32xl\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:flex { + display: flex; } - .\32xl\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:inline-flex { + display: inline-flex; } - .\32xl\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:table { + display: table; } - .\32xl\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:inline-table { + display: inline-table; } - .\32xl\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:table-caption { + display: table-caption; } - .\32xl\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:table-cell { + display: table-cell; } - .\32xl\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:table-column { + display: table-column; } - .\32xl\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:table-column-group { + display: table-column-group; } - .\32xl\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:table-footer-group { + display: table-footer-group; } - .\32xl\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:table-header-group { + display: table-header-group; } - .\32xl\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:table-row-group { + display: table-row-group; } - .\32xl\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:table-row { + display: table-row; } - .\32xl\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:flow-root { + display: flow-root; } - .\32xl\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:grid { + display: grid; } - .\32xl\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:inline-grid { + display: inline-grid; } - .\32xl\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:contents { + display: contents; } - .\32xl\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:list-item { + display: list-item; } - .\32xl\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:hidden { + display: none; } - .\32xl\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:h-0 { + height: 0px; } - .\32xl\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:h-1 { + height: 0.25rem; } - .\32xl\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:h-2 { + height: 0.5rem; } - .\32xl\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:h-3 { + height: 0.75rem; } - .\32xl\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:h-4 { + height: 1rem; } - .\32xl\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:h-5 { + height: 1.25rem; } - .\32xl\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:h-6 { + height: 1.5rem; } - .\32xl\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:h-7 { + height: 1.75rem; } - .\32xl\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:h-8 { + height: 2rem; } - .\32xl\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:h-9 { + height: 2.25rem; } - .\32xl\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:h-10 { + height: 2.5rem; } - .\32xl\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:h-11 { + height: 2.75rem; } - .\32xl\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:h-12 { + height: 3rem; } - .\32xl\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:h-14 { + height: 3.5rem; } - .\32xl\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:h-16 { + height: 4rem; } - .\32xl\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:h-20 { + height: 5rem; } - .\32xl\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:h-24 { + height: 6rem; } - .\32xl\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:h-28 { + height: 7rem; } - .\32xl\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:h-32 { + height: 8rem; } - .\32xl\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:h-36 { + height: 9rem; } - .\32xl\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:h-40 { + height: 10rem; } - .\32xl\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:h-44 { + height: 11rem; } - .\32xl\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:h-48 { + height: 12rem; } - .\32xl\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:h-52 { + height: 13rem; } - .\32xl\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:h-56 { + height: 14rem; } - .\32xl\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:h-60 { + height: 15rem; } - .\32xl\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:h-64 { + height: 16rem; } - .\32xl\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:h-72 { + height: 18rem; } - .\32xl\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:h-80 { + height: 20rem; } - .\32xl\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:h-96 { + height: 24rem; } - .\32xl\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:h-auto { + height: auto; } - .\32xl\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:h-px { + height: 1px; } - .\32xl\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:h-0\.5 { + height: 0.125rem; } - .\32xl\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:h-1\.5 { + height: 0.375rem; } - .\32xl\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:h-2\.5 { + height: 0.625rem; } - .\32xl\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:h-3\.5 { + height: 0.875rem; } - .\32xl\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:h-1\/2 { + height: 50%; } - .\32xl\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:h-1\/3 { + height: 33.333333%; } - .\32xl\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:h-2\/3 { + height: 66.666667%; } - .\32xl\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:h-1\/4 { + height: 25%; } - .\32xl\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:h-2\/4 { + height: 50%; } - .\32xl\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:h-3\/4 { + height: 75%; } - .\32xl\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:h-1\/5 { + height: 20%; } - .\32xl\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:h-2\/5 { + height: 40%; } - .\32xl\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:h-3\/5 { + height: 60%; } - .\32xl\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:h-4\/5 { + height: 80%; } - .\32xl\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:h-1\/6 { + height: 16.666667%; } - .\32xl\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:h-2\/6 { + height: 33.333333%; } - .\32xl\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:h-3\/6 { + height: 50%; } - .\32xl\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:h-4\/6 { + height: 66.666667%; } - .\32xl\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:h-5\/6 { + height: 83.333333%; } - .\32xl\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:h-full { + height: 100%; } - .\32xl\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:h-screen { + height: 100vh; } - .\32xl\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:max-h-0 { + max-height: 0px; } - .\32xl\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:max-h-1 { + max-height: 0.25rem; } - .\32xl\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:max-h-2 { + max-height: 0.5rem; } - .\32xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .\32xl\:max-h-3 { + max-height: 0.75rem; } - .\32xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .\32xl\:max-h-4 { + max-height: 1rem; } - .\32xl\:hover\:to-black:hover { - --tw-gradient-to: #000; + .\32xl\:max-h-5 { + max-height: 1.25rem; } - .\32xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .\32xl\:max-h-6 { + max-height: 1.5rem; } - .\32xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .\32xl\:max-h-7 { + max-height: 1.75rem; } - .\32xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .\32xl\:max-h-8 { + max-height: 2rem; } - .\32xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .\32xl\:max-h-9 { + max-height: 2.25rem; } - .\32xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .\32xl\:max-h-10 { + max-height: 2.5rem; } - .\32xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .\32xl\:max-h-11 { + max-height: 2.75rem; } - .\32xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .\32xl\:max-h-12 { + max-height: 3rem; } - .\32xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .\32xl\:max-h-14 { + max-height: 3.5rem; } - .\32xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .\32xl\:max-h-16 { + max-height: 4rem; } - .\32xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .\32xl\:max-h-20 { + max-height: 5rem; } - - .\32xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + + .\32xl\:max-h-24 { + max-height: 6rem; } - .\32xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .\32xl\:max-h-28 { + max-height: 7rem; } - .\32xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .\32xl\:max-h-32 { + max-height: 8rem; } - .\32xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .\32xl\:max-h-36 { + max-height: 9rem; } - .\32xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .\32xl\:max-h-40 { + max-height: 10rem; } - .\32xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .\32xl\:max-h-44 { + max-height: 11rem; } - .\32xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .\32xl\:max-h-48 { + max-height: 12rem; } - .\32xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .\32xl\:max-h-52 { + max-height: 13rem; } - .\32xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .\32xl\:max-h-56 { + max-height: 14rem; } - .\32xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .\32xl\:max-h-60 { + max-height: 15rem; } - .\32xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .\32xl\:max-h-64 { + max-height: 16rem; } - .\32xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .\32xl\:max-h-72 { + max-height: 18rem; } - .\32xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .\32xl\:max-h-80 { + max-height: 20rem; } - .\32xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .\32xl\:max-h-96 { + max-height: 24rem; } - .\32xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .\32xl\:max-h-px { + max-height: 1px; } - .\32xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .\32xl\:max-h-0\.5 { + max-height: 0.125rem; } - .\32xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .\32xl\:max-h-1\.5 { + max-height: 0.375rem; } - .\32xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .\32xl\:max-h-2\.5 { + max-height: 0.625rem; } - .\32xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .\32xl\:max-h-3\.5 { + max-height: 0.875rem; } - .\32xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .\32xl\:max-h-full { + max-height: 100%; } - .\32xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .\32xl\:max-h-screen { + max-height: 100vh; } - .\32xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .\32xl\:min-h-0 { + min-height: 0px; } - .\32xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .\32xl\:min-h-full { + min-height: 100%; } - .\32xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .\32xl\:min-h-screen { + min-height: 100vh; } - .\32xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .\32xl\:w-0 { + width: 0px; } - .\32xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .\32xl\:w-1 { + width: 0.25rem; } - .\32xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .\32xl\:w-2 { + width: 0.5rem; } - .\32xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .\32xl\:w-3 { + width: 0.75rem; } - .\32xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .\32xl\:w-4 { + width: 1rem; } - .\32xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .\32xl\:w-5 { + width: 1.25rem; } - .\32xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .\32xl\:w-6 { + width: 1.5rem; } - .\32xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .\32xl\:w-7 { + width: 1.75rem; } - .\32xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .\32xl\:w-8 { + width: 2rem; } - .\32xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .\32xl\:w-9 { + width: 2.25rem; } - .\32xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .\32xl\:w-10 { + width: 2.5rem; } - .\32xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .\32xl\:w-11 { + width: 2.75rem; } - .\32xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .\32xl\:w-12 { + width: 3rem; } - .\32xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .\32xl\:w-14 { + width: 3.5rem; } - .\32xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .\32xl\:w-16 { + width: 4rem; } - .\32xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .\32xl\:w-20 { + width: 5rem; } - .\32xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .\32xl\:w-24 { + width: 6rem; } - .\32xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .\32xl\:w-28 { + width: 7rem; } - .\32xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .\32xl\:w-32 { + width: 8rem; } - .\32xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .\32xl\:w-36 { + width: 9rem; } - .\32xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .\32xl\:w-40 { + width: 10rem; } - .\32xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .\32xl\:w-44 { + width: 11rem; } - .\32xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .\32xl\:w-48 { + width: 12rem; } - .\32xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .\32xl\:w-52 { + width: 13rem; } - .\32xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .\32xl\:w-56 { + width: 14rem; } - .\32xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .\32xl\:w-60 { + width: 15rem; } - .\32xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .\32xl\:w-64 { + width: 16rem; } - .\32xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .\32xl\:w-72 { + width: 18rem; } - .\32xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .\32xl\:w-80 { + width: 20rem; } - .\32xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .\32xl\:w-96 { + width: 24rem; } - .\32xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .\32xl\:w-auto { + width: auto; } - .\32xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .\32xl\:w-px { + width: 1px; } - .\32xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .\32xl\:w-0\.5 { + width: 0.125rem; } - .\32xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .\32xl\:w-1\.5 { + width: 0.375rem; } - .\32xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .\32xl\:w-2\.5 { + width: 0.625rem; } - .\32xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .\32xl\:w-3\.5 { + width: 0.875rem; } - .\32xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .\32xl\:w-1\/2 { + width: 50%; } - .\32xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .\32xl\:w-1\/3 { + width: 33.333333%; } - .\32xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .\32xl\:w-2\/3 { + width: 66.666667%; } - .\32xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .\32xl\:w-1\/4 { + width: 25%; } - .\32xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .\32xl\:w-2\/4 { + width: 50%; } - .\32xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .\32xl\:w-3\/4 { + width: 75%; } - .\32xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .\32xl\:w-1\/5 { + width: 20%; } - .\32xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .\32xl\:w-2\/5 { + width: 40%; } - .\32xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .\32xl\:w-3\/5 { + width: 60%; } - .\32xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .\32xl\:w-4\/5 { + width: 80%; } - .\32xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .\32xl\:w-1\/6 { + width: 16.666667%; } - .\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\:w-2\/6 { + width: 33.333333%; } - .\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\:w-3\/6 { + width: 50%; } - .\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\:w-4\/6 { + width: 66.666667%; } - .\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\:w-5\/6 { + width: 83.333333%; } - .\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\:w-1\/12 { + width: 8.333333%; } - .\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\:w-2\/12 { + width: 16.666667%; } - .\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\:w-3\/12 { + width: 25%; } - .\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\:w-4\/12 { + width: 33.333333%; } - .\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\:w-5\/12 { + width: 41.666667%; } - .\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\:w-6\/12 { + width: 50%; } - .\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\:w-7\/12 { + width: 58.333333%; } - .\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\:w-8\/12 { + width: 66.666667%; } - .\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\:w-9\/12 { + width: 75%; } - .\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\:w-10\/12 { + width: 83.333333%; } - .\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\:w-11\/12 { + width: 91.666667%; } - .\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\:w-full { + width: 100%; } - .\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\:w-screen { + width: 100vw; } - .\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\:w-min { + width: min-content; } - .\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\:w-max { + width: max-content; } - .\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\:min-w-0 { + min-width: 0px; } - .\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\:min-w-full { + min-width: 100%; } - .\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\:min-w-min { + min-width: min-content; } - .\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\:min-w-max { + min-width: max-content; } - .\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\:max-w-0 { + max-width: 0rem; } - .\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\:max-w-none { + max-width: none; } - .\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\:max-w-xs { + max-width: 20rem; } - .\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\:max-w-sm { + max-width: 24rem; } - .\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\:max-w-md { + max-width: 28rem; } - .\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\:max-w-lg { + max-width: 32rem; } - .\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\:max-w-xl { + max-width: 36rem; } - .\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\:max-w-2xl { + max-width: 42rem; } - .\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\:max-w-3xl { + max-width: 48rem; } - .\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\:max-w-4xl { + max-width: 56rem; } - .\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\:max-w-5xl { + max-width: 64rem; } - .\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\:max-w-6xl { + max-width: 72rem; } - .\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\:max-w-7xl { + max-width: 80rem; } - .\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\:max-w-full { + max-width: 100%; } - .\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\:max-w-min { + max-width: min-content; } - .\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\:max-w-max { + max-width: max-content; } - .\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\:max-w-prose { + max-width: 65ch; } - .\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\:max-w-screen-sm { + max-width: 640px; } - .\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\:max-w-screen-md { + max-width: 768px; } - .\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\:max-w-screen-lg { + max-width: 1024px; } - .\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\:max-w-screen-xl { + max-width: 1280px; } - .\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\:max-w-screen-2xl { + max-width: 1536px; } - .\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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .\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\:flex-initial { + flex: 0 1 auto; } - .\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\:flex-none { + flex: none; } - .\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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .\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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .\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\:table-auto { + table-layout: auto; } - .\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\:table-fixed { + table-layout: fixed; } - .\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\:border-collapse { + border-collapse: collapse; } - .\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\:border-separate { + border-collapse: separate; } - .\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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .\32xl\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .\32xl\: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\:transform-none { + transform: none; } - .\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\:origin-center { + transform-origin: center; } - .\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\:origin-top { + transform-origin: top; } - .\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\:origin-top-right { + transform-origin: top right; } - .\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\:origin-right { + transform-origin: right; } - .\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\:origin-bottom-right { + transform-origin: bottom right; } - .\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\:origin-bottom { + transform-origin: bottom; } - .\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\:origin-bottom-left { + transform-origin: bottom left; } - .\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\:origin-left { + transform-origin: left; } - .\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\:origin-top-left { + transform-origin: top left; } - .\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\:translate-x-0 { + --tw-translate-x: 0px; } - .\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\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .\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\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .\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\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .\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\:translate-x-4 { + --tw-translate-x: 1rem; } - .\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\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .\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\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .\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\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .\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\:translate-x-8 { + --tw-translate-x: 2rem; } - .\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\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .\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\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .\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\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .\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\:translate-x-12 { + --tw-translate-x: 3rem; } - .\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\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .\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\:translate-x-16 { + --tw-translate-x: 4rem; } - .\32xl\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:translate-x-20 { + --tw-translate-x: 5rem; } - .\32xl\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:translate-x-24 { + --tw-translate-x: 6rem; } - .\32xl\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:translate-x-28 { + --tw-translate-x: 7rem; } - .\32xl\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:translate-x-32 { + --tw-translate-x: 8rem; } - .\32xl\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:translate-x-36 { + --tw-translate-x: 9rem; } - .\32xl\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:translate-x-40 { + --tw-translate-x: 10rem; } - .\32xl\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:translate-x-44 { + --tw-translate-x: 11rem; } - .\32xl\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:translate-x-48 { + --tw-translate-x: 12rem; } - .\32xl\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:translate-x-52 { + --tw-translate-x: 13rem; } - .\32xl\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:translate-x-56 { + --tw-translate-x: 14rem; } - .\32xl\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:translate-x-60 { + --tw-translate-x: 15rem; } - .\32xl\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:translate-x-64 { + --tw-translate-x: 16rem; } - .\32xl\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:translate-x-72 { + --tw-translate-x: 18rem; } - .\32xl\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:translate-x-80 { + --tw-translate-x: 20rem; } - .\32xl\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:translate-x-96 { + --tw-translate-x: 24rem; } - .\32xl\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:translate-x-px { + --tw-translate-x: 1px; } - .\32xl\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .\32xl\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .\32xl\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .\32xl\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .\32xl\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:-translate-x-0 { + --tw-translate-x: 0px; } - .\32xl\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .\32xl\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .\32xl\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .\32xl\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:-translate-x-4 { + --tw-translate-x: -1rem; } - .\32xl\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .\32xl\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .\32xl\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .\32xl\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:-translate-x-8 { + --tw-translate-x: -2rem; } - .\32xl\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .\32xl\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .\32xl\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .\32xl\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:-translate-x-12 { + --tw-translate-x: -3rem; } - .\32xl\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .\32xl\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:-translate-x-16 { + --tw-translate-x: -4rem; } - .\32xl\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:-translate-x-20 { + --tw-translate-x: -5rem; } - .\32xl\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:-translate-x-24 { + --tw-translate-x: -6rem; } - .\32xl\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:-translate-x-28 { + --tw-translate-x: -7rem; } - .\32xl\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:-translate-x-32 { + --tw-translate-x: -8rem; } - .\32xl\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:-translate-x-36 { + --tw-translate-x: -9rem; } - .\32xl\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:-translate-x-40 { + --tw-translate-x: -10rem; } - .\32xl\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:-translate-x-44 { + --tw-translate-x: -11rem; } - .\32xl\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:-translate-x-48 { + --tw-translate-x: -12rem; } - .\32xl\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:-translate-x-52 { + --tw-translate-x: -13rem; } - .\32xl\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:-translate-x-56 { + --tw-translate-x: -14rem; } - .\32xl\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:-translate-x-60 { + --tw-translate-x: -15rem; } - .\32xl\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:-translate-x-64 { + --tw-translate-x: -16rem; } - .\32xl\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:-translate-x-72 { + --tw-translate-x: -18rem; } - .\32xl\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:-translate-x-80 { + --tw-translate-x: -20rem; } - .\32xl\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:-translate-x-96 { + --tw-translate-x: -24rem; } - .\32xl\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:-translate-x-px { + --tw-translate-x: -1px; } - .\32xl\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .\32xl\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .\32xl\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .\32xl\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .\32xl\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .\32xl\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .\32xl\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .\32xl\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .\32xl\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .\32xl\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .\32xl\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:translate-x-full { + --tw-translate-x: 100%; } - .\32xl\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .\32xl\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .\32xl\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .\32xl\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .\32xl\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .\32xl\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .\32xl\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:-translate-x-full { + --tw-translate-x: -100%; } - .\32xl\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:translate-y-0 { + --tw-translate-y: 0px; } - .\32xl\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .\32xl\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .\32xl\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .\32xl\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:translate-y-4 { + --tw-translate-y: 1rem; } - .\32xl\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .\32xl\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .\32xl\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .\32xl\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:translate-y-8 { + --tw-translate-y: 2rem; } - .\32xl\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .\32xl\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .\32xl\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .\32xl\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:translate-y-12 { + --tw-translate-y: 3rem; } - .\32xl\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .\32xl\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:translate-y-16 { + --tw-translate-y: 4rem; } - .\32xl\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .\32xl\:translate-y-20 { + --tw-translate-y: 5rem; } - .\32xl\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .\32xl\:translate-y-24 { + --tw-translate-y: 6rem; } - .\32xl\:focus\:to-black:focus { - --tw-gradient-to: #000; + .\32xl\:translate-y-28 { + --tw-translate-y: 7rem; } - .\32xl\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .\32xl\:translate-y-32 { + --tw-translate-y: 8rem; } - .\32xl\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .\32xl\:translate-y-36 { + --tw-translate-y: 9rem; } - .\32xl\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .\32xl\:translate-y-40 { + --tw-translate-y: 10rem; } - .\32xl\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .\32xl\:translate-y-44 { + --tw-translate-y: 11rem; } - .\32xl\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .\32xl\:translate-y-48 { + --tw-translate-y: 12rem; } - .\32xl\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .\32xl\:translate-y-52 { + --tw-translate-y: 13rem; } - .\32xl\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .\32xl\:translate-y-56 { + --tw-translate-y: 14rem; } - .\32xl\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .\32xl\:translate-y-60 { + --tw-translate-y: 15rem; } - .\32xl\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .\32xl\:translate-y-64 { + --tw-translate-y: 16rem; } - .\32xl\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .\32xl\:translate-y-72 { + --tw-translate-y: 18rem; } - .\32xl\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .\32xl\:translate-y-80 { + --tw-translate-y: 20rem; } - .\32xl\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .\32xl\:translate-y-96 { + --tw-translate-y: 24rem; } - .\32xl\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .\32xl\:translate-y-px { + --tw-translate-y: 1px; } - .\32xl\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .\32xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .\32xl\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .\32xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .\32xl\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .\32xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .\32xl\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .\32xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .\32xl\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .\32xl\:-translate-y-0 { + --tw-translate-y: 0px; } - .\32xl\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .\32xl\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .\32xl\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .\32xl\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .\32xl\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .\32xl\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .\32xl\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .\32xl\:-translate-y-4 { + --tw-translate-y: -1rem; } - .\32xl\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .\32xl\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .\32xl\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .\32xl\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .\32xl\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .\32xl\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .\32xl\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .\32xl\:-translate-y-8 { + --tw-translate-y: -2rem; } - .\32xl\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .\32xl\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .\32xl\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .\32xl\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .\32xl\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .\32xl\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .\32xl\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .\32xl\:-translate-y-12 { + --tw-translate-y: -3rem; } - .\32xl\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .\32xl\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .\32xl\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .\32xl\:-translate-y-16 { + --tw-translate-y: -4rem; } - .\32xl\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .\32xl\:-translate-y-20 { + --tw-translate-y: -5rem; } - .\32xl\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .\32xl\:-translate-y-24 { + --tw-translate-y: -6rem; } - .\32xl\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .\32xl\:-translate-y-28 { + --tw-translate-y: -7rem; } - .\32xl\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .\32xl\:-translate-y-32 { + --tw-translate-y: -8rem; } - .\32xl\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .\32xl\:-translate-y-36 { + --tw-translate-y: -9rem; } - .\32xl\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .\32xl\:-translate-y-40 { + --tw-translate-y: -10rem; } - .\32xl\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .\32xl\:-translate-y-44 { + --tw-translate-y: -11rem; } - .\32xl\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .\32xl\:-translate-y-48 { + --tw-translate-y: -12rem; } - .\32xl\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .\32xl\:-translate-y-52 { + --tw-translate-y: -13rem; } - .\32xl\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .\32xl\:-translate-y-56 { + --tw-translate-y: -14rem; } - .\32xl\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .\32xl\:-translate-y-60 { + --tw-translate-y: -15rem; } - .\32xl\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .\32xl\:-translate-y-64 { + --tw-translate-y: -16rem; } - .\32xl\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .\32xl\:-translate-y-72 { + --tw-translate-y: -18rem; } - .\32xl\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .\32xl\:-translate-y-80 { + --tw-translate-y: -20rem; } - .\32xl\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .\32xl\:-translate-y-96 { + --tw-translate-y: -24rem; } - .\32xl\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .\32xl\:-translate-y-px { + --tw-translate-y: -1px; } - .\32xl\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .\32xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .\32xl\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .\32xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .\32xl\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .\32xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .\32xl\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .\32xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .\32xl\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .\32xl\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .\32xl\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .\32xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .\32xl\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .\32xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .\32xl\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .\32xl\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .\32xl\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .\32xl\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .\32xl\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .\32xl\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .\32xl\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .\32xl\:translate-y-full { + --tw-translate-y: 100%; } - .\32xl\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .\32xl\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .\32xl\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .\32xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .\32xl\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .\32xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .\32xl\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .\32xl\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .\32xl\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .\32xl\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .\32xl\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .\32xl\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .\32xl\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .\32xl\:-translate-y-full { + --tw-translate-y: -100%; } - .\32xl\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .\32xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .\32xl\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .\32xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .\32xl\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .\32xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .\32xl\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .\32xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .\32xl\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .\32xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .\32xl\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .\32xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .\32xl\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .\32xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .\32xl\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .\32xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .\32xl\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .\32xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .\32xl\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .\32xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .\32xl\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .\32xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .\32xl\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .\32xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .\32xl\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .\32xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .\32xl\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .\32xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .\32xl\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .\32xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .\32xl\:bg-bottom { - background-position: bottom; + .\32xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .\32xl\:bg-center { - background-position: center; + .\32xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .\32xl\:bg-left { - background-position: left; + .\32xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .\32xl\:bg-left-bottom { - background-position: left bottom; + .\32xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .\32xl\:bg-left-top { - background-position: left top; + .\32xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .\32xl\:bg-right { - background-position: right; + .\32xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .\32xl\:bg-right-bottom { - background-position: right bottom; + .\32xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .\32xl\:bg-right-top { - background-position: right top; + .\32xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .\32xl\:bg-top { - background-position: top; + .\32xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .\32xl\:bg-repeat { - background-repeat: repeat; + .\32xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .\32xl\:bg-no-repeat { - background-repeat: no-repeat; + .\32xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .\32xl\:bg-repeat-x { - background-repeat: repeat-x; + .\32xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .\32xl\:bg-repeat-y { - background-repeat: repeat-y; + .\32xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .\32xl\:bg-repeat-round { - background-repeat: round; + .\32xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .\32xl\:bg-repeat-space { - background-repeat: space; + .\32xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .\32xl\:bg-auto { - background-size: auto; + .\32xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .\32xl\:bg-cover { - background-size: cover; + .\32xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .\32xl\:bg-contain { - background-size: contain; + .\32xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .\32xl\:bg-origin-border { - background-origin: border-box; + .\32xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .\32xl\:bg-origin-padding { - background-origin: padding-box; + .\32xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .\32xl\:bg-origin-content { - background-origin: content-box; + .\32xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .\32xl\:border-collapse { - border-collapse: collapse; + .\32xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .\32xl\:border-separate { - border-collapse: separate; + .\32xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .\32xl\:border-transparent { - border-color: transparent; + .\32xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .\32xl\:border-current { - border-color: currentColor; + .\32xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .\32xl\:border-black { - border-color: #000; + .\32xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .\32xl\:border-white { - border-color: #fff; + .\32xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .\32xl\:border-gray-50 { - border-color: #f9fafb; + .\32xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .\32xl\:border-gray-100 { - border-color: #f3f4f6; + .\32xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .\32xl\:border-gray-200 { - border-color: #e5e7eb; + .\32xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .\32xl\:border-gray-300 { - border-color: #d1d5db; + .\32xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .\32xl\:border-gray-400 { - border-color: #9ca3af; + .\32xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .\32xl\:border-gray-500 { - border-color: #6b7280; + .\32xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .\32xl\:border-gray-600 { - border-color: #4b5563; + .\32xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .\32xl\:border-gray-700 { - border-color: #374151; + .\32xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .\32xl\:border-gray-800 { - border-color: #1f2937; + .\32xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .\32xl\:border-gray-900 { - border-color: #111827; + .\32xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .\32xl\:border-red-50 { - border-color: #fef2f2; + .\32xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .\32xl\:border-red-100 { - border-color: #fee2e2; + .\32xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .\32xl\:border-red-200 { - border-color: #fecaca; + .\32xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .\32xl\:border-red-300 { - border-color: #fca5a5; + .\32xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .\32xl\:border-red-400 { - border-color: #f87171; + .\32xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .\32xl\:border-red-500 { - border-color: #ef4444; + .\32xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .\32xl\:border-red-600 { - border-color: #dc2626; + .\32xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .\32xl\:border-red-700 { - border-color: #b91c1c; + .\32xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .\32xl\:border-red-800 { - border-color: #991b1b; + .\32xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .\32xl\:border-red-900 { - border-color: #7f1d1d; + .\32xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .\32xl\:border-yellow-50 { - border-color: #fffbeb; + .\32xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .\32xl\:border-yellow-100 { - border-color: #fef3c7; + .\32xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .\32xl\:border-yellow-200 { - border-color: #fde68a; + .\32xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .\32xl\:border-yellow-300 { - border-color: #fcd34d; + .\32xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .\32xl\:border-yellow-400 { - border-color: #fbbf24; + .\32xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .\32xl\:border-yellow-500 { - border-color: #f59e0b; + .\32xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .\32xl\:border-yellow-600 { - border-color: #d97706; + .\32xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .\32xl\:border-yellow-700 { - border-color: #b45309; + .\32xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .\32xl\:border-yellow-800 { - border-color: #92400e; + .\32xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .\32xl\:border-yellow-900 { - border-color: #78350f; + .\32xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .\32xl\:border-green-50 { - border-color: #ecfdf5; + .\32xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .\32xl\:border-green-100 { - border-color: #d1fae5; + .\32xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .\32xl\:border-green-200 { - border-color: #a7f3d0; + .\32xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .\32xl\:border-green-300 { - border-color: #6ee7b7; + .\32xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .\32xl\:border-green-400 { - border-color: #34d399; + .\32xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .\32xl\:border-green-500 { - border-color: #10b981; + .\32xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .\32xl\:border-green-600 { - border-color: #059669; + .\32xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .\32xl\:border-green-700 { - border-color: #047857; + .\32xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .\32xl\:border-green-800 { - border-color: #065f46; + .\32xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .\32xl\:border-green-900 { - border-color: #064e3b; + .\32xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .\32xl\:border-blue-50 { - border-color: #eff6ff; + .\32xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .\32xl\:border-blue-100 { - border-color: #dbeafe; + .\32xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .\32xl\:border-blue-200 { - border-color: #bfdbfe; + .\32xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .\32xl\:border-blue-300 { - border-color: #93c5fd; + .\32xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .\32xl\:border-blue-400 { - border-color: #60a5fa; + .\32xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .\32xl\:border-blue-500 { - border-color: #3b82f6; + .\32xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .\32xl\:border-blue-600 { - border-color: #2563eb; + .\32xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .\32xl\:border-blue-700 { - border-color: #1d4ed8; + .\32xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .\32xl\:border-blue-800 { - border-color: #1e40af; + .\32xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .\32xl\:border-blue-900 { - border-color: #1e3a8a; + .\32xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .\32xl\:border-indigo-50 { - border-color: #eef2ff; + .\32xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .\32xl\:border-indigo-100 { - border-color: #e0e7ff; + .\32xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .\32xl\:border-indigo-200 { - border-color: #c7d2fe; + .\32xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .\32xl\:border-indigo-300 { - border-color: #a5b4fc; + .\32xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .\32xl\:border-indigo-400 { - border-color: #818cf8; + .\32xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .\32xl\:border-indigo-500 { - border-color: #6366f1; + .\32xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .\32xl\:border-indigo-600 { - border-color: #4f46e5; + .\32xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .\32xl\:border-indigo-700 { - border-color: #4338ca; + .\32xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .\32xl\:border-indigo-800 { - border-color: #3730a3; + .\32xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .\32xl\:border-indigo-900 { - border-color: #312e81; + .\32xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .\32xl\:border-purple-50 { - border-color: #f5f3ff; + .\32xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .\32xl\:border-purple-100 { - border-color: #ede9fe; + .\32xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .\32xl\:border-purple-200 { - border-color: #ddd6fe; + .\32xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .\32xl\:border-purple-300 { - border-color: #c4b5fd; + .\32xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .\32xl\:border-purple-400 { - border-color: #a78bfa; + .\32xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .\32xl\:border-purple-500 { - border-color: #8b5cf6; + .\32xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .\32xl\:border-purple-600 { - border-color: #7c3aed; + .\32xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .\32xl\:border-purple-700 { - border-color: #6d28d9; + .\32xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .\32xl\:border-purple-800 { - border-color: #5b21b6; + .\32xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .\32xl\:border-purple-900 { - border-color: #4c1d95; + .\32xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .\32xl\:border-pink-50 { - border-color: #fdf2f8; + .\32xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .\32xl\:border-pink-100 { - border-color: #fce7f3; + .\32xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .\32xl\:border-pink-200 { - border-color: #fbcfe8; + .\32xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .\32xl\:border-pink-300 { - border-color: #f9a8d4; + .\32xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .\32xl\:border-pink-400 { - border-color: #f472b6; + .\32xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .\32xl\:border-pink-500 { - border-color: #ec4899; + .\32xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .\32xl\:border-pink-600 { - border-color: #db2777; + .\32xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .\32xl\:border-pink-700 { - border-color: #be185d; + .\32xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .\32xl\:border-pink-800 { - border-color: #9d174d; + .\32xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .\32xl\:border-pink-900 { - border-color: #831843; + .\32xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .group:hover .\32xl\:group-hover\:border-transparent { - border-color: transparent; + .\32xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .group:hover .\32xl\:group-hover\:border-current { - border-color: currentColor; + .\32xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .group:hover .\32xl\:group-hover\:border-black { - border-color: #000; + .\32xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .group:hover .\32xl\:group-hover\:border-white { - border-color: #fff; + .\32xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .group:hover .\32xl\:group-hover\:border-gray-50 { - border-color: #f9fafb; + .\32xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .group:hover .\32xl\:group-hover\:border-gray-100 { - border-color: #f3f4f6; + .\32xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .group:hover .\32xl\:group-hover\:border-gray-200 { - border-color: #e5e7eb; + .\32xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .group:hover .\32xl\:group-hover\:border-gray-300 { - border-color: #d1d5db; + .\32xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .group:hover .\32xl\:group-hover\:border-gray-400 { - border-color: #9ca3af; + .\32xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .group:hover .\32xl\:group-hover\:border-gray-500 { - border-color: #6b7280; + .\32xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .group:hover .\32xl\:group-hover\:border-gray-600 { - border-color: #4b5563; + .\32xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .group:hover .\32xl\:group-hover\:border-gray-700 { - border-color: #374151; + .\32xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .group:hover .\32xl\:group-hover\:border-gray-800 { - border-color: #1f2937; + .\32xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .group:hover .\32xl\:group-hover\:border-gray-900 { - border-color: #111827; + .\32xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .group:hover .\32xl\:group-hover\:border-red-50 { - border-color: #fef2f2; + .\32xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .group:hover .\32xl\:group-hover\:border-red-100 { - border-color: #fee2e2; + .\32xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .group:hover .\32xl\:group-hover\:border-red-200 { - border-color: #fecaca; + .\32xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .group:hover .\32xl\:group-hover\:border-red-300 { - border-color: #fca5a5; + .\32xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .group:hover .\32xl\:group-hover\:border-red-400 { - border-color: #f87171; + .\32xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .group:hover .\32xl\:group-hover\:border-red-500 { - border-color: #ef4444; + .\32xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .group:hover .\32xl\:group-hover\:border-red-600 { - border-color: #dc2626; + .\32xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .group:hover .\32xl\:group-hover\:border-red-700 { - border-color: #b91c1c; + .\32xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .group:hover .\32xl\:group-hover\:border-red-800 { - border-color: #991b1b; + .\32xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .group:hover .\32xl\:group-hover\:border-red-900 { - border-color: #7f1d1d; + .\32xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .group:hover .\32xl\:group-hover\:border-yellow-50 { - border-color: #fffbeb; + .\32xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .group:hover .\32xl\:group-hover\:border-yellow-100 { - border-color: #fef3c7; + .\32xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .group:hover .\32xl\:group-hover\:border-yellow-200 { - border-color: #fde68a; + .\32xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .group:hover .\32xl\:group-hover\:border-yellow-300 { - border-color: #fcd34d; + .\32xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .group:hover .\32xl\:group-hover\:border-yellow-400 { - border-color: #fbbf24; + .\32xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .group:hover .\32xl\:group-hover\:border-yellow-500 { - border-color: #f59e0b; + .\32xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .group:hover .\32xl\:group-hover\:border-yellow-600 { - border-color: #d97706; + .\32xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .group:hover .\32xl\:group-hover\:border-yellow-700 { - border-color: #b45309; + .\32xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .group:hover .\32xl\:group-hover\:border-yellow-800 { - border-color: #92400e; + .\32xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .group:hover .\32xl\:group-hover\:border-yellow-900 { - border-color: #78350f; + .\32xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .group:hover .\32xl\:group-hover\:border-green-50 { - border-color: #ecfdf5; + .\32xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .group:hover .\32xl\:group-hover\:border-green-100 { - border-color: #d1fae5; + .\32xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .group:hover .\32xl\:group-hover\:border-green-200 { - border-color: #a7f3d0; + .\32xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .group:hover .\32xl\:group-hover\:border-green-300 { - border-color: #6ee7b7; + .\32xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .group:hover .\32xl\:group-hover\:border-green-400 { - border-color: #34d399; + .\32xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .group:hover .\32xl\:group-hover\:border-green-500 { - border-color: #10b981; + .\32xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .group:hover .\32xl\:group-hover\:border-green-600 { - border-color: #059669; + .\32xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .group:hover .\32xl\:group-hover\:border-green-700 { - border-color: #047857; + .\32xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .group:hover .\32xl\:group-hover\:border-green-800 { - border-color: #065f46; + .\32xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .group:hover .\32xl\:group-hover\:border-green-900 { - border-color: #064e3b; + .\32xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .group:hover .\32xl\:group-hover\:border-blue-50 { - border-color: #eff6ff; + .\32xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .group:hover .\32xl\:group-hover\:border-blue-100 { - border-color: #dbeafe; + .\32xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .group:hover .\32xl\:group-hover\:border-blue-200 { - border-color: #bfdbfe; + .\32xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .\32xl\:group-hover\:border-blue-300 { - border-color: #93c5fd; + .\32xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .group:hover .\32xl\:group-hover\:border-blue-400 { - border-color: #60a5fa; + .\32xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .group:hover .\32xl\:group-hover\:border-blue-500 { - border-color: #3b82f6; + .\32xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .group:hover .\32xl\:group-hover\:border-blue-600 { - border-color: #2563eb; + .\32xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .group:hover .\32xl\:group-hover\:border-blue-700 { - border-color: #1d4ed8; + .\32xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .group:hover .\32xl\:group-hover\:border-blue-800 { - border-color: #1e40af; + .\32xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .group:hover .\32xl\:group-hover\:border-blue-900 { - border-color: #1e3a8a; + .\32xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .group:hover .\32xl\:group-hover\:border-indigo-50 { - border-color: #eef2ff; + .\32xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .\32xl\:group-hover\:border-indigo-100 { - border-color: #e0e7ff; + .\32xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .\32xl\:group-hover\:border-indigo-200 { - border-color: #c7d2fe; + .\32xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .\32xl\:group-hover\:border-indigo-300 { - border-color: #a5b4fc; + .\32xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .\32xl\:group-hover\:border-indigo-400 { - border-color: #818cf8; + .\32xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .\32xl\:group-hover\:border-indigo-500 { - border-color: #6366f1; + .\32xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .\32xl\:group-hover\:border-indigo-600 { - border-color: #4f46e5; + .\32xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .\32xl\:group-hover\:border-indigo-700 { - border-color: #4338ca; + .\32xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .\32xl\:group-hover\:border-indigo-800 { - border-color: #3730a3; + .\32xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .\32xl\:group-hover\:border-indigo-900 { - border-color: #312e81; + .\32xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .\32xl\:group-hover\:border-purple-50 { - border-color: #f5f3ff; + .\32xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .\32xl\:group-hover\:border-purple-100 { - border-color: #ede9fe; + .\32xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .\32xl\:group-hover\:border-purple-200 { - border-color: #ddd6fe; + .\32xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .\32xl\:group-hover\:border-purple-300 { - border-color: #c4b5fd; + .\32xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .\32xl\:group-hover\:border-purple-400 { - border-color: #a78bfa; + .\32xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .\32xl\:group-hover\:border-purple-500 { - border-color: #8b5cf6; + .\32xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .\32xl\:group-hover\:border-purple-600 { - border-color: #7c3aed; + .\32xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .\32xl\:group-hover\:border-purple-700 { - border-color: #6d28d9; + .\32xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .\32xl\:group-hover\:border-purple-800 { - border-color: #5b21b6; + .\32xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .\32xl\:group-hover\:border-purple-900 { - border-color: #4c1d95; + .\32xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .\32xl\:group-hover\:border-pink-50 { - border-color: #fdf2f8; + .\32xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .\32xl\:group-hover\:border-pink-100 { - border-color: #fce7f3; + .\32xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .\32xl\:group-hover\:border-pink-200 { - border-color: #fbcfe8; + .\32xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .\32xl\:group-hover\:border-pink-300 { - border-color: #f9a8d4; + .\32xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .\32xl\:group-hover\:border-pink-400 { - border-color: #f472b6; + .\32xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .\32xl\:group-hover\:border-pink-500 { - border-color: #ec4899; + .\32xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .\32xl\:group-hover\:border-pink-600 { - border-color: #db2777; + .\32xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .\32xl\:group-hover\:border-pink-700 { - border-color: #be185d; + .\32xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .\32xl\:group-hover\:border-pink-800 { - border-color: #9d174d; + .\32xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .\32xl\:group-hover\:border-pink-900 { - border-color: #831843; + .\32xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .\32xl\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .\32xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .\32xl\:focus-within\:border-current:focus-within { - border-color: currentColor; + .\32xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .\32xl\:focus-within\:border-black:focus-within { - border-color: #000; + .\32xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .\32xl\:focus-within\:border-white:focus-within { - border-color: #fff; + .\32xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .\32xl\:focus-within\:border-gray-50:focus-within { - border-color: #f9fafb; + .\32xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .\32xl\:focus-within\:border-gray-100:focus-within { - border-color: #f3f4f6; + .\32xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .\32xl\:focus-within\:border-gray-200:focus-within { - border-color: #e5e7eb; + .\32xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - .\32xl\:focus-within\:border-gray-300:focus-within { - border-color: #d1d5db; + .\32xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .\32xl\:focus-within\:border-gray-400:focus-within { - border-color: #9ca3af; + .\32xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .\32xl\:focus-within\:border-gray-500:focus-within { - border-color: #6b7280; + .\32xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .\32xl\:focus-within\:border-gray-600:focus-within { - border-color: #4b5563; + .\32xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .\32xl\:focus-within\:border-gray-700:focus-within { - border-color: #374151; + .\32xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .\32xl\:focus-within\:border-gray-800:focus-within { - border-color: #1f2937; + .\32xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .\32xl\:focus-within\:border-gray-900:focus-within { - border-color: #111827; + .\32xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .\32xl\:focus-within\:border-red-50:focus-within { - border-color: #fef2f2; + .\32xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .\32xl\:focus-within\:border-red-100:focus-within { - border-color: #fee2e2; + .\32xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .\32xl\:focus-within\:border-red-200:focus-within { - border-color: #fecaca; + .\32xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .\32xl\:focus-within\:border-red-300:focus-within { - border-color: #fca5a5; + .\32xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .\32xl\:focus-within\:border-red-400:focus-within { - border-color: #f87171; + .\32xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .\32xl\:focus-within\:border-red-500:focus-within { - border-color: #ef4444; + .\32xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .\32xl\:focus-within\:border-red-600:focus-within { - border-color: #dc2626; + .\32xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .\32xl\:focus-within\:border-red-700:focus-within { - border-color: #b91c1c; + .\32xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .\32xl\:focus-within\:border-red-800:focus-within { - border-color: #991b1b; + .\32xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .\32xl\:focus-within\:border-red-900:focus-within { - border-color: #7f1d1d; + .\32xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .\32xl\:focus-within\:border-yellow-50:focus-within { - border-color: #fffbeb; + .\32xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .\32xl\:focus-within\:border-yellow-100:focus-within { - border-color: #fef3c7; + .\32xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .\32xl\:focus-within\:border-yellow-200:focus-within { - border-color: #fde68a; + .\32xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .\32xl\:focus-within\:border-yellow-300:focus-within { - border-color: #fcd34d; + .\32xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .\32xl\:focus-within\:border-yellow-400:focus-within { - border-color: #fbbf24; + .\32xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .\32xl\:focus-within\:border-yellow-500:focus-within { - border-color: #f59e0b; + .\32xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .\32xl\:focus-within\:border-yellow-600:focus-within { - border-color: #d97706; + .\32xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .\32xl\:focus-within\:border-yellow-700:focus-within { - border-color: #b45309; + .\32xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .\32xl\:focus-within\:border-yellow-800:focus-within { - border-color: #92400e; + .\32xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .\32xl\:focus-within\:border-yellow-900:focus-within { - border-color: #78350f; + .\32xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .\32xl\:focus-within\:border-green-50:focus-within { - border-color: #ecfdf5; + .\32xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .\32xl\:focus-within\:border-green-100:focus-within { - border-color: #d1fae5; + .\32xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .\32xl\:focus-within\:border-green-200:focus-within { - border-color: #a7f3d0; + .\32xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .\32xl\:focus-within\:border-green-300:focus-within { - border-color: #6ee7b7; + .\32xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .\32xl\:focus-within\:border-green-400:focus-within { - border-color: #34d399; + .\32xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .\32xl\:focus-within\:border-green-500:focus-within { - border-color: #10b981; + .\32xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .\32xl\:focus-within\:border-green-600:focus-within { - border-color: #059669; + .\32xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .\32xl\:focus-within\:border-green-700:focus-within { - border-color: #047857; + .\32xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .\32xl\:focus-within\:border-green-800:focus-within { - border-color: #065f46; + .\32xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .\32xl\:focus-within\:border-green-900:focus-within { - border-color: #064e3b; + .\32xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .\32xl\:focus-within\:border-blue-50:focus-within { - border-color: #eff6ff; + .\32xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .\32xl\:focus-within\:border-blue-100:focus-within { - border-color: #dbeafe; + .\32xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .\32xl\:focus-within\:border-blue-200:focus-within { - border-color: #bfdbfe; + .\32xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .\32xl\:focus-within\:border-blue-300:focus-within { - border-color: #93c5fd; + .\32xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .\32xl\:focus-within\:border-blue-400:focus-within { - border-color: #60a5fa; + .\32xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .\32xl\:focus-within\:border-blue-500:focus-within { - border-color: #3b82f6; + .\32xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .\32xl\:focus-within\:border-blue-600:focus-within { - border-color: #2563eb; + .\32xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .\32xl\:focus-within\:border-blue-700:focus-within { - border-color: #1d4ed8; + .\32xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .\32xl\:focus-within\:border-blue-800:focus-within { - border-color: #1e40af; + .\32xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .\32xl\:focus-within\:border-blue-900:focus-within { - border-color: #1e3a8a; + .\32xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .\32xl\:focus-within\:border-indigo-50:focus-within { - border-color: #eef2ff; + .\32xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .\32xl\:focus-within\:border-indigo-100:focus-within { - border-color: #e0e7ff; + .\32xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .\32xl\:focus-within\:border-indigo-200:focus-within { - border-color: #c7d2fe; + .\32xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .\32xl\:focus-within\:border-indigo-300:focus-within { - border-color: #a5b4fc; + .\32xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .\32xl\:focus-within\:border-indigo-400:focus-within { - border-color: #818cf8; + .\32xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .\32xl\:focus-within\:border-indigo-500:focus-within { - border-color: #6366f1; + .\32xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .\32xl\:focus-within\:border-indigo-600:focus-within { - border-color: #4f46e5; + .\32xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .\32xl\:focus-within\:border-indigo-700:focus-within { - border-color: #4338ca; + .\32xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .\32xl\:focus-within\:border-indigo-800:focus-within { - border-color: #3730a3; + .\32xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .\32xl\:focus-within\:border-indigo-900:focus-within { - border-color: #312e81; + .\32xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .\32xl\:focus-within\:border-purple-50:focus-within { - border-color: #f5f3ff; + .\32xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .\32xl\:focus-within\:border-purple-100:focus-within { - border-color: #ede9fe; + .\32xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .\32xl\:focus-within\:border-purple-200:focus-within { - border-color: #ddd6fe; + .\32xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .\32xl\:focus-within\:border-purple-300:focus-within { - border-color: #c4b5fd; + .\32xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .\32xl\:focus-within\:border-purple-400:focus-within { - border-color: #a78bfa; + .\32xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .\32xl\:focus-within\:border-purple-500:focus-within { - border-color: #8b5cf6; + .\32xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .\32xl\:focus-within\:border-purple-600:focus-within { - border-color: #7c3aed; + .\32xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .\32xl\:focus-within\:border-purple-700:focus-within { - border-color: #6d28d9; + .\32xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .\32xl\:focus-within\:border-purple-800:focus-within { - border-color: #5b21b6; + .\32xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .\32xl\:focus-within\:border-purple-900:focus-within { - border-color: #4c1d95; + .\32xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .\32xl\:focus-within\:border-pink-50:focus-within { - border-color: #fdf2f8; + .\32xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .\32xl\:focus-within\:border-pink-100:focus-within { - border-color: #fce7f3; + .\32xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .\32xl\:focus-within\:border-pink-200:focus-within { - border-color: #fbcfe8; + .\32xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .\32xl\:focus-within\:border-pink-300:focus-within { - border-color: #f9a8d4; + .\32xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .\32xl\:focus-within\:border-pink-400:focus-within { - border-color: #f472b6; + .\32xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .\32xl\:focus-within\:border-pink-500:focus-within { - border-color: #ec4899; + .\32xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .\32xl\:focus-within\:border-pink-600:focus-within { - border-color: #db2777; + .\32xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .\32xl\:focus-within\:border-pink-700:focus-within { - border-color: #be185d; + .\32xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .\32xl\:focus-within\:border-pink-800:focus-within { - border-color: #9d174d; + .\32xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .\32xl\:focus-within\:border-pink-900:focus-within { - border-color: #831843; + .\32xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .\32xl\:hover\:border-transparent:hover { - border-color: transparent; + .\32xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .\32xl\:hover\:border-current:hover { - border-color: currentColor; + .\32xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .\32xl\:hover\:border-black:hover { - border-color: #000; + .\32xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .\32xl\:hover\:border-white:hover { - border-color: #fff; + .\32xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .\32xl\:hover\:border-gray-50:hover { - border-color: #f9fafb; + .\32xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .\32xl\:hover\:border-gray-100:hover { - border-color: #f3f4f6; + .\32xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .\32xl\:hover\:border-gray-200:hover { - border-color: #e5e7eb; + .\32xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .\32xl\:hover\:border-gray-300:hover { - border-color: #d1d5db; + .\32xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .\32xl\:hover\:border-gray-400:hover { - border-color: #9ca3af; + .\32xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .\32xl\:hover\:border-gray-500:hover { - border-color: #6b7280; + .\32xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .\32xl\:hover\:border-gray-600:hover { - border-color: #4b5563; + .\32xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .\32xl\:hover\:border-gray-700:hover { - border-color: #374151; + .\32xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .\32xl\:hover\:border-gray-800:hover { - border-color: #1f2937; + .\32xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .\32xl\:hover\:border-gray-900:hover { - border-color: #111827; + .\32xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .\32xl\:hover\:border-red-50:hover { - border-color: #fef2f2; + .\32xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .\32xl\:hover\:border-red-100:hover { - border-color: #fee2e2; + .\32xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .\32xl\:hover\:border-red-200:hover { - border-color: #fecaca; + .\32xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .\32xl\:hover\:border-red-300:hover { - border-color: #fca5a5; + .\32xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .\32xl\:hover\:border-red-400:hover { - border-color: #f87171; + .\32xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .\32xl\:hover\:border-red-500:hover { - border-color: #ef4444; + .\32xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .\32xl\:hover\:border-red-600:hover { - border-color: #dc2626; + .\32xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .\32xl\:hover\:border-red-700:hover { - border-color: #b91c1c; + .\32xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .\32xl\:hover\:border-red-800:hover { - border-color: #991b1b; + .\32xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .\32xl\:hover\:border-red-900:hover { - border-color: #7f1d1d; + .\32xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .\32xl\:hover\:border-yellow-50:hover { - border-color: #fffbeb; + .\32xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .\32xl\:hover\:border-yellow-100:hover { - border-color: #fef3c7; + .\32xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .\32xl\:hover\:border-yellow-200:hover { - border-color: #fde68a; + .\32xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .\32xl\:hover\:border-yellow-300:hover { - border-color: #fcd34d; + .\32xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .\32xl\:hover\:border-yellow-400:hover { - border-color: #fbbf24; + .\32xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .\32xl\:hover\:border-yellow-500:hover { - border-color: #f59e0b; + .\32xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .\32xl\:hover\:border-yellow-600:hover { - border-color: #d97706; + .\32xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .\32xl\:hover\:border-yellow-700:hover { - border-color: #b45309; + .\32xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .\32xl\:hover\:border-yellow-800:hover { - border-color: #92400e; + .\32xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .\32xl\:hover\:border-yellow-900:hover { - border-color: #78350f; + .\32xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .\32xl\:hover\:border-green-50:hover { - border-color: #ecfdf5; + .\32xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .\32xl\:hover\:border-green-100:hover { - border-color: #d1fae5; + .\32xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .\32xl\:hover\:border-green-200:hover { - border-color: #a7f3d0; + .\32xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .\32xl\:hover\:border-green-300:hover { - border-color: #6ee7b7; + .\32xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .\32xl\:hover\:border-green-400:hover { - border-color: #34d399; + .\32xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .\32xl\:hover\:border-green-500:hover { - border-color: #10b981; + .\32xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .\32xl\:hover\:border-green-600:hover { - border-color: #059669; + .\32xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .\32xl\:hover\:border-green-700:hover { - border-color: #047857; + .\32xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .\32xl\:hover\:border-green-800:hover { - border-color: #065f46; + .\32xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .\32xl\:hover\:border-green-900:hover { - border-color: #064e3b; + .\32xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .\32xl\:hover\:border-blue-50:hover { - border-color: #eff6ff; + .\32xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .\32xl\:hover\:border-blue-100:hover { - border-color: #dbeafe; + .\32xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .\32xl\:hover\:border-blue-200:hover { - border-color: #bfdbfe; + .\32xl\:rotate-0 { + --tw-rotate: 0deg; } - .\32xl\:hover\:border-blue-300:hover { - border-color: #93c5fd; + .\32xl\:rotate-1 { + --tw-rotate: 1deg; } - .\32xl\:hover\:border-blue-400:hover { - border-color: #60a5fa; + .\32xl\:rotate-2 { + --tw-rotate: 2deg; } - .\32xl\:hover\:border-blue-500:hover { - border-color: #3b82f6; + .\32xl\:rotate-3 { + --tw-rotate: 3deg; } - .\32xl\:hover\:border-blue-600:hover { - border-color: #2563eb; + .\32xl\:rotate-6 { + --tw-rotate: 6deg; } - .\32xl\:hover\:border-blue-700:hover { - border-color: #1d4ed8; + .\32xl\:rotate-12 { + --tw-rotate: 12deg; } - .\32xl\:hover\:border-blue-800:hover { - border-color: #1e40af; + .\32xl\:rotate-45 { + --tw-rotate: 45deg; } - .\32xl\:hover\:border-blue-900:hover { - border-color: #1e3a8a; + .\32xl\:rotate-90 { + --tw-rotate: 90deg; } - .\32xl\:hover\:border-indigo-50:hover { - border-color: #eef2ff; + .\32xl\:rotate-180 { + --tw-rotate: 180deg; } - .\32xl\:hover\:border-indigo-100:hover { - border-color: #e0e7ff; + .\32xl\:-rotate-180 { + --tw-rotate: -180deg; } - .\32xl\:hover\:border-indigo-200:hover { - border-color: #c7d2fe; + .\32xl\:-rotate-90 { + --tw-rotate: -90deg; } - .\32xl\:hover\:border-indigo-300:hover { - border-color: #a5b4fc; + .\32xl\:-rotate-45 { + --tw-rotate: -45deg; } - .\32xl\:hover\:border-indigo-400:hover { - border-color: #818cf8; + .\32xl\:-rotate-12 { + --tw-rotate: -12deg; } - .\32xl\:hover\:border-indigo-500:hover { - border-color: #6366f1; + .\32xl\:-rotate-6 { + --tw-rotate: -6deg; } - .\32xl\:hover\:border-indigo-600:hover { - border-color: #4f46e5; + .\32xl\:-rotate-3 { + --tw-rotate: -3deg; } - .\32xl\:hover\:border-indigo-700:hover { - border-color: #4338ca; + .\32xl\:-rotate-2 { + --tw-rotate: -2deg; } - .\32xl\:hover\:border-indigo-800:hover { - border-color: #3730a3; + .\32xl\:-rotate-1 { + --tw-rotate: -1deg; } - .\32xl\:hover\:border-indigo-900:hover { - border-color: #312e81; + .\32xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .\32xl\:hover\:border-purple-50:hover { - border-color: #f5f3ff; + .\32xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .\32xl\:hover\:border-purple-100:hover { - border-color: #ede9fe; + .\32xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .\32xl\:hover\:border-purple-200:hover { - border-color: #ddd6fe; + .\32xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .\32xl\:hover\:border-purple-300:hover { - border-color: #c4b5fd; + .\32xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .\32xl\:hover\:border-purple-400:hover { - border-color: #a78bfa; + .\32xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .\32xl\:hover\:border-purple-500:hover { - border-color: #8b5cf6; + .\32xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .\32xl\:hover\:border-purple-600:hover { - border-color: #7c3aed; + .\32xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .\32xl\:hover\:border-purple-700:hover { - border-color: #6d28d9; + .\32xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .\32xl\:hover\:border-purple-800:hover { - border-color: #5b21b6; + .\32xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .\32xl\:hover\:border-purple-900:hover { - border-color: #4c1d95; + .\32xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .\32xl\:hover\:border-pink-50:hover { - border-color: #fdf2f8; + .\32xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .\32xl\:hover\:border-pink-100:hover { - border-color: #fce7f3; + .\32xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .\32xl\:hover\:border-pink-200:hover { - border-color: #fbcfe8; + .\32xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .\32xl\:hover\:border-pink-300:hover { - border-color: #f9a8d4; + .\32xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .\32xl\:hover\:border-pink-400:hover { - border-color: #f472b6; + .\32xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .\32xl\:hover\:border-pink-500:hover { - border-color: #ec4899; + .\32xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .\32xl\:hover\:border-pink-600:hover { - border-color: #db2777; + .\32xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .\32xl\:hover\:border-pink-700:hover { - border-color: #be185d; + .\32xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .\32xl\:hover\:border-pink-800:hover { - border-color: #9d174d; + .\32xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .\32xl\:hover\:border-pink-900:hover { - border-color: #831843; + .\32xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .\32xl\:focus\:border-transparent:focus { - border-color: transparent; + .\32xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .\32xl\:focus\:border-current:focus { - border-color: currentColor; + .\32xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .\32xl\:focus\:border-black:focus { - border-color: #000; + .\32xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .\32xl\:focus\:border-white:focus { - border-color: #fff; + .\32xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .\32xl\:focus\:border-gray-50:focus { - border-color: #f9fafb; + .\32xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .\32xl\:focus\:border-gray-100:focus { - border-color: #f3f4f6; + .\32xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .\32xl\:focus\:border-gray-200:focus { - border-color: #e5e7eb; + .\32xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .\32xl\:focus\:border-gray-300:focus { - border-color: #d1d5db; + .\32xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .\32xl\:focus\:border-gray-400:focus { - border-color: #9ca3af; + .\32xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .\32xl\:focus\:border-gray-500:focus { - border-color: #6b7280; + .\32xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .\32xl\:focus\:border-gray-600:focus { - border-color: #4b5563; + .\32xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .\32xl\:focus\:border-gray-700:focus { - border-color: #374151; + .\32xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .\32xl\:focus\:border-gray-800:focus { - border-color: #1f2937; + .\32xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .\32xl\:focus\:border-gray-900:focus { - border-color: #111827; + .\32xl\:skew-x-0 { + --tw-skew-x: 0deg; } - .\32xl\:focus\:border-red-50:focus { - border-color: #fef2f2; + .\32xl\:skew-x-1 { + --tw-skew-x: 1deg; } - .\32xl\:focus\:border-red-100:focus { - border-color: #fee2e2; + .\32xl\:skew-x-2 { + --tw-skew-x: 2deg; } - .\32xl\:focus\:border-red-200:focus { - border-color: #fecaca; + .\32xl\:skew-x-3 { + --tw-skew-x: 3deg; } - .\32xl\:focus\:border-red-300:focus { - border-color: #fca5a5; + .\32xl\:skew-x-6 { + --tw-skew-x: 6deg; } - .\32xl\:focus\:border-red-400:focus { - border-color: #f87171; + .\32xl\:skew-x-12 { + --tw-skew-x: 12deg; } - .\32xl\:focus\:border-red-500:focus { - border-color: #ef4444; + .\32xl\:-skew-x-12 { + --tw-skew-x: -12deg; } - .\32xl\:focus\:border-red-600:focus { - border-color: #dc2626; + .\32xl\:-skew-x-6 { + --tw-skew-x: -6deg; } - .\32xl\:focus\:border-red-700:focus { - border-color: #b91c1c; + .\32xl\:-skew-x-3 { + --tw-skew-x: -3deg; } - .\32xl\:focus\:border-red-800:focus { - border-color: #991b1b; + .\32xl\:-skew-x-2 { + --tw-skew-x: -2deg; } - .\32xl\:focus\:border-red-900:focus { - border-color: #7f1d1d; + .\32xl\:-skew-x-1 { + --tw-skew-x: -1deg; } - .\32xl\:focus\:border-yellow-50:focus { - border-color: #fffbeb; + .\32xl\:skew-y-0 { + --tw-skew-y: 0deg; } - .\32xl\:focus\:border-yellow-100:focus { - border-color: #fef3c7; + .\32xl\:skew-y-1 { + --tw-skew-y: 1deg; } - .\32xl\:focus\:border-yellow-200:focus { - border-color: #fde68a; + .\32xl\:skew-y-2 { + --tw-skew-y: 2deg; } - .\32xl\:focus\:border-yellow-300:focus { - border-color: #fcd34d; + .\32xl\:skew-y-3 { + --tw-skew-y: 3deg; } - .\32xl\:focus\:border-yellow-400:focus { - border-color: #fbbf24; + .\32xl\:skew-y-6 { + --tw-skew-y: 6deg; } - .\32xl\:focus\:border-yellow-500:focus { - border-color: #f59e0b; + .\32xl\:skew-y-12 { + --tw-skew-y: 12deg; } - .\32xl\:focus\:border-yellow-600:focus { - border-color: #d97706; + .\32xl\:-skew-y-12 { + --tw-skew-y: -12deg; } - .\32xl\:focus\:border-yellow-700:focus { - border-color: #b45309; + .\32xl\:-skew-y-6 { + --tw-skew-y: -6deg; } - .\32xl\:focus\:border-yellow-800:focus { - border-color: #92400e; + .\32xl\:-skew-y-3 { + --tw-skew-y: -3deg; } - .\32xl\:focus\:border-yellow-900:focus { - border-color: #78350f; + .\32xl\:-skew-y-2 { + --tw-skew-y: -2deg; } - .\32xl\:focus\:border-green-50:focus { - border-color: #ecfdf5; + .\32xl\:-skew-y-1 { + --tw-skew-y: -1deg; } - .\32xl\:focus\:border-green-100:focus { - border-color: #d1fae5; + .\32xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .\32xl\:focus\:border-green-200:focus { - border-color: #a7f3d0; + .\32xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .\32xl\:focus\:border-green-300:focus { - border-color: #6ee7b7; + .\32xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .\32xl\:focus\:border-green-400:focus { - border-color: #34d399; + .\32xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .\32xl\:focus\:border-green-500:focus { - border-color: #10b981; + .\32xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .\32xl\:focus\:border-green-600:focus { - border-color: #059669; + .\32xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .\32xl\:focus\:border-green-700:focus { - border-color: #047857; + .\32xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .\32xl\:focus\:border-green-800:focus { - border-color: #065f46; + .\32xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .\32xl\:focus\:border-green-900:focus { - border-color: #064e3b; + .\32xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .\32xl\:focus\:border-blue-50:focus { - border-color: #eff6ff; + .\32xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .\32xl\:focus\:border-blue-100:focus { - border-color: #dbeafe; + .\32xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .\32xl\:focus\:border-blue-200:focus { - border-color: #bfdbfe; + .\32xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .\32xl\:focus\:border-blue-300:focus { - border-color: #93c5fd; + .\32xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .\32xl\:focus\:border-blue-400:focus { - border-color: #60a5fa; + .\32xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .\32xl\:focus\:border-blue-500:focus { - border-color: #3b82f6; + .\32xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .\32xl\:focus\:border-blue-600:focus { - border-color: #2563eb; + .\32xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .\32xl\:focus\:border-blue-700:focus { - border-color: #1d4ed8; + .\32xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .\32xl\:focus\:border-blue-800:focus { - border-color: #1e40af; + .\32xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .\32xl\:focus\:border-blue-900:focus { - border-color: #1e3a8a; + .\32xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .\32xl\:focus\:border-indigo-50:focus { - border-color: #eef2ff; + .\32xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .\32xl\:focus\:border-indigo-100:focus { - border-color: #e0e7ff; + .\32xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .\32xl\:focus\:border-indigo-200:focus { - border-color: #c7d2fe; + .\32xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .\32xl\:focus\:border-indigo-300:focus { - border-color: #a5b4fc; + .\32xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .\32xl\:focus\:border-indigo-400:focus { - border-color: #818cf8; + .\32xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .\32xl\:focus\:border-indigo-500:focus { - border-color: #6366f1; + .\32xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .\32xl\:focus\:border-indigo-600:focus { - border-color: #4f46e5; + .\32xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .\32xl\:focus\:border-indigo-700:focus { - border-color: #4338ca; + .\32xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .\32xl\:focus\:border-indigo-800:focus { - border-color: #3730a3; + .\32xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .\32xl\:focus\:border-indigo-900:focus { - border-color: #312e81; + .\32xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .\32xl\:focus\:border-purple-50:focus { - border-color: #f5f3ff; + .\32xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .\32xl\:focus\:border-purple-100:focus { - border-color: #ede9fe; + .\32xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .\32xl\:focus\:border-purple-200:focus { - border-color: #ddd6fe; + .\32xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .\32xl\:focus\:border-purple-300:focus { - border-color: #c4b5fd; + .\32xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .\32xl\:focus\:border-purple-400:focus { - border-color: #a78bfa; + .\32xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .\32xl\:focus\:border-purple-500:focus { - border-color: #8b5cf6; + .\32xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .\32xl\:focus\:border-purple-600:focus { - border-color: #7c3aed; + .\32xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .\32xl\:focus\:border-purple-700:focus { - border-color: #6d28d9; + .\32xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .\32xl\:focus\:border-purple-800:focus { - border-color: #5b21b6; + .\32xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .\32xl\:focus\:border-purple-900:focus { - border-color: #4c1d95; + .\32xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .\32xl\:focus\:border-pink-50:focus { - border-color: #fdf2f8; + .\32xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .\32xl\:focus\:border-pink-100:focus { - border-color: #fce7f3; + .\32xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .\32xl\:focus\:border-pink-200:focus { - border-color: #fbcfe8; + .\32xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .\32xl\:focus\:border-pink-300:focus { - border-color: #f9a8d4; + .\32xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .\32xl\:focus\:border-pink-400:focus { - border-color: #f472b6; + .\32xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .\32xl\:focus\:border-pink-500:focus { - border-color: #ec4899; + .\32xl\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:focus\:border-pink-600:focus { - border-color: #db2777; + .\32xl\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:focus\:border-pink-700:focus { - border-color: #be185d; + .\32xl\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:focus\:border-pink-800:focus { - border-color: #9d174d; + .\32xl\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:focus\:border-pink-900:focus { - border-color: #831843; + .\32xl\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:rounded-none { - border-radius: 0px; + .\32xl\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:rounded-sm { - border-radius: 0.125rem; + .\32xl\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:rounded { - border-radius: 0.25rem; + .\32xl\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:rounded-md { - border-radius: 0.375rem; + .\32xl\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:rounded-lg { - border-radius: 0.5rem; + .\32xl\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:rounded-xl { - border-radius: 0.75rem; + .\32xl\:scale-x-0 { + --tw-scale-x: 0; } - .\32xl\:rounded-2xl { - border-radius: 1rem; + .\32xl\:scale-x-50 { + --tw-scale-x: .5; } - .\32xl\:rounded-3xl { - border-radius: 1.5rem; + .\32xl\:scale-x-75 { + --tw-scale-x: .75; } - .\32xl\:rounded-full { - border-radius: 9999px; + .\32xl\:scale-x-90 { + --tw-scale-x: .9; } - .\32xl\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .\32xl\:scale-x-95 { + --tw-scale-x: .95; } - .\32xl\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .\32xl\:scale-x-100 { + --tw-scale-x: 1; } - .\32xl\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .\32xl\:scale-x-105 { + --tw-scale-x: 1.05; } - .\32xl\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .\32xl\:scale-x-110 { + --tw-scale-x: 1.1; } - .\32xl\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .\32xl\:scale-x-125 { + --tw-scale-x: 1.25; } - .\32xl\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .\32xl\:scale-x-150 { + --tw-scale-x: 1.5; } - .\32xl\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .\32xl\:scale-y-0 { + --tw-scale-y: 0; } - .\32xl\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .\32xl\:scale-y-50 { + --tw-scale-y: .5; } - .\32xl\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .\32xl\:scale-y-75 { + --tw-scale-y: .75; } - .\32xl\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .\32xl\:scale-y-90 { + --tw-scale-y: .9; } - .\32xl\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .\32xl\:scale-y-95 { + --tw-scale-y: .95; } - .\32xl\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .\32xl\:scale-y-100 { + --tw-scale-y: 1; } - .\32xl\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .\32xl\:scale-y-105 { + --tw-scale-y: 1.05; } - .\32xl\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .\32xl\:scale-y-110 { + --tw-scale-y: 1.1; } - .\32xl\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .\32xl\:scale-y-125 { + --tw-scale-y: 1.25; } - .\32xl\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .\32xl\:scale-y-150 { + --tw-scale-y: 1.5; } - .\32xl\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .\32xl\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .\32xl\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .\32xl\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .\32xl\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .\32xl\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .\32xl\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .\32xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .\32xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .\32xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .\32xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .\32xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .\32xl\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .\32xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .\32xl\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .\32xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .\32xl\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .\32xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .\32xl\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .\32xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .\32xl\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .\32xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .\32xl\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .\32xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .\32xl\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .\32xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .\32xl\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .\32xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .\32xl\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .\32xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .\32xl\:rounded-tl-none { - border-top-left-radius: 0px; + .\32xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .\32xl\:rounded-tr-none { - border-top-right-radius: 0px; + .\32xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .\32xl\:rounded-br-none { - border-bottom-right-radius: 0px; + .\32xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .\32xl\:rounded-bl-none { - border-bottom-left-radius: 0px; + .\32xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .\32xl\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .\32xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .\32xl\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .\32xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .\32xl\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .\32xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .\32xl\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .\32xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .\32xl\:rounded-tl { - border-top-left-radius: 0.25rem; + .\32xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .\32xl\:rounded-tr { - border-top-right-radius: 0.25rem; + .\32xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .\32xl\:rounded-br { - border-bottom-right-radius: 0.25rem; + .\32xl\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .\32xl\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .\32xl\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .\32xl\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .\32xl\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .\32xl\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .\32xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .\32xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .\32xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .\32xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .\32xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .\32xl\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .\32xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .\32xl\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .\32xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .\32xl\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .\32xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .\32xl\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .\32xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .\32xl\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .\32xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .\32xl\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .\32xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .\32xl\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .\32xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .\32xl\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .\32xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .\32xl\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .\32xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .\32xl\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .\32xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .\32xl\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .\32xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .\32xl\:rounded-tl-full { - border-top-left-radius: 9999px; + .\32xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .\32xl\:rounded-tr-full { - border-top-right-radius: 9999px; + .\32xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .\32xl\:rounded-br-full { - border-bottom-right-radius: 9999px; + .\32xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .\32xl\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .\32xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .\32xl\:border-solid { - border-style: solid; + .\32xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .\32xl\:border-dashed { - border-style: dashed; + .\32xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .\32xl\:border-dotted { - border-style: dotted; + .\32xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .\32xl\:border-double { - border-style: double; + .\32xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .\32xl\:border-none { - border-style: none; + .\32xl\:animate-none { + animation: none; } - .\32xl\:border-0 { - border-width: 0px; + .\32xl\:animate-spin { + animation: spin 1s linear infinite; } - .\32xl\:border-2 { - border-width: 2px; + .\32xl\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .\32xl\:border-4 { - border-width: 4px; + .\32xl\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .\32xl\:border-8 { - border-width: 8px; + .\32xl\:animate-bounce { + animation: bounce 1s infinite; } - .\32xl\:border { - border-width: 1px; + .\32xl\:cursor-auto { + cursor: auto; } - .\32xl\:border-t-0 { - border-top-width: 0px; + .\32xl\:cursor-default { + cursor: default; } - .\32xl\:border-r-0 { - border-right-width: 0px; + .\32xl\:cursor-pointer { + cursor: pointer; } - .\32xl\:border-b-0 { - border-bottom-width: 0px; + .\32xl\:cursor-wait { + cursor: wait; } - .\32xl\:border-l-0 { - border-left-width: 0px; + .\32xl\:cursor-text { + cursor: text; } - .\32xl\:border-t-2 { - border-top-width: 2px; + .\32xl\:cursor-move { + cursor: move; } - .\32xl\:border-r-2 { - border-right-width: 2px; + .\32xl\:cursor-help { + cursor: help; } - .\32xl\:border-b-2 { - border-bottom-width: 2px; + .\32xl\:cursor-not-allowed { + cursor: not-allowed; } - .\32xl\:border-l-2 { - border-left-width: 2px; + .\32xl\:select-none { + user-select: none; } - .\32xl\:border-t-4 { - border-top-width: 4px; + .\32xl\:select-text { + user-select: text; } - .\32xl\:border-r-4 { - border-right-width: 4px; + .\32xl\:select-all { + user-select: all; } - .\32xl\:border-b-4 { - border-bottom-width: 4px; + .\32xl\:select-auto { + user-select: auto; } - .\32xl\:border-l-4 { - border-left-width: 4px; + .\32xl\:resize-none { + resize: none; } - .\32xl\:border-t-8 { - border-top-width: 8px; + .\32xl\:resize-y { + resize: vertical; } - .\32xl\:border-r-8 { - border-right-width: 8px; + .\32xl\:resize-x { + resize: horizontal; } - .\32xl\:border-b-8 { - border-bottom-width: 8px; + .\32xl\:resize { + resize: both; } - .\32xl\:border-l-8 { - border-left-width: 8px; + .\32xl\:list-inside { + list-style-position: inside; } - .\32xl\:border-t { - border-top-width: 1px; + .\32xl\:list-outside { + list-style-position: outside; } - .\32xl\:border-r { - border-right-width: 1px; + .\32xl\:list-none { + list-style-type: none; } - .\32xl\:border-b { - border-bottom-width: 1px; + .\32xl\:list-disc { + list-style-type: disc; } - .\32xl\:border-l { - border-left-width: 1px; + .\32xl\:list-decimal { + list-style-type: decimal; } - .\32xl\:decoration-slice { - box-decoration-break: slice; + .\32xl\:appearance-none { + appearance: none; } - .\32xl\:decoration-clone { - box-decoration-break: clone; + .\32xl\:auto-cols-auto { + grid-auto-columns: auto; } - .\32xl\:box-border { - box-sizing: border-box; + .\32xl\:auto-cols-min { + grid-auto-columns: min-content; } - .\32xl\:box-content { - box-sizing: content-box; + .\32xl\:auto-cols-max { + grid-auto-columns: max-content; } - .\32xl\:cursor-auto { - cursor: auto; + .\32xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .\32xl\:cursor-default { - cursor: default; + .\32xl\:grid-flow-row { + grid-auto-flow: row; } - .\32xl\:cursor-pointer { - cursor: pointer; + .\32xl\:grid-flow-col { + grid-auto-flow: column; } - .\32xl\:cursor-wait { - cursor: wait; + .\32xl\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .\32xl\:cursor-text { - cursor: text; + .\32xl\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .\32xl\:cursor-move { - cursor: move; + .\32xl\:auto-rows-auto { + grid-auto-rows: auto; } - .\32xl\:cursor-help { - cursor: help; + .\32xl\:auto-rows-min { + grid-auto-rows: min-content; } - .\32xl\:cursor-not-allowed { - cursor: not-allowed; + .\32xl\:auto-rows-max { + grid-auto-rows: max-content; } - .\32xl\:block { - display: block; + .\32xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .\32xl\:inline-block { - display: inline-block; + .\32xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .\32xl\:inline { - display: inline; + .\32xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .\32xl\:flex { - display: flex; + .\32xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .\32xl\:inline-flex { - display: inline-flex; + .\32xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .\32xl\:table { - display: table; + .\32xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .\32xl\:inline-table { - display: inline-table; + .\32xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .\32xl\:table-caption { - display: table-caption; + .\32xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .\32xl\:table-cell { - display: table-cell; + .\32xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .\32xl\:table-column { - display: table-column; + .\32xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .\32xl\:table-column-group { - display: table-column-group; + .\32xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .\32xl\:table-footer-group { - display: table-footer-group; + .\32xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .\32xl\:table-header-group { - display: table-header-group; + .\32xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .\32xl\:table-row-group { - display: table-row-group; + .\32xl\:grid-cols-none { + grid-template-columns: none; } - .\32xl\:table-row { - display: table-row; + .\32xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .\32xl\:flow-root { - display: flow-root; + .\32xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .\32xl\:grid { - display: grid; + .\32xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .\32xl\:inline-grid { - display: inline-grid; + .\32xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .\32xl\:contents { - display: contents; + .\32xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .\32xl\:list-item { - display: list-item; + .\32xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .\32xl\:hidden { - display: none; + .\32xl\:grid-rows-none { + grid-template-rows: none; } .\32xl\:flex-row { @@ -142320,22 +143107,6 @@ video { flex-wrap: nowrap; } - .\32xl\:place-items-start { - place-items: start; - } - - .\32xl\:place-items-end { - place-items: end; - } - - .\32xl\:place-items-center { - place-items: center; - } - - .\32xl\:place-items-stretch { - place-items: stretch; - } - .\32xl\:place-content-center { place-content: center; } @@ -142364,44 +143135,20 @@ video { place-content: stretch; } - .\32xl\:place-self-auto { - place-self: auto; - } - - .\32xl\:place-self-start { - place-self: start; - } - - .\32xl\:place-self-end { - place-self: end; - } - - .\32xl\:place-self-center { - place-self: center; - } - - .\32xl\:place-self-stretch { - place-self: stretch; - } - - .\32xl\:items-start { - align-items: flex-start; - } - - .\32xl\:items-end { - align-items: flex-end; + .\32xl\:place-items-start { + place-items: start; } - .\32xl\:items-center { - align-items: center; + .\32xl\:place-items-end { + place-items: end; } - .\32xl\:items-baseline { - align-items: baseline; + .\32xl\:place-items-center { + place-items: center; } - .\32xl\:items-stretch { - align-items: stretch; + .\32xl\:place-items-stretch { + place-items: stretch; } .\32xl\:content-center { @@ -142428,24 +143175,48 @@ video { align-content: space-evenly; } - .\32xl\:self-auto { - align-self: auto; + .\32xl\:items-start { + align-items: flex-start; } - .\32xl\:self-start { - align-self: flex-start; + .\32xl\:items-end { + align-items: flex-end; } - .\32xl\:self-end { - align-self: flex-end; + .\32xl\:items-center { + align-items: center; } - .\32xl\:self-center { - align-self: center; + .\32xl\:items-baseline { + align-items: baseline; } - .\32xl\:self-stretch { - align-self: stretch; + .\32xl\:items-stretch { + align-items: stretch; + } + + .\32xl\:justify-start { + justify-content: flex-start; + } + + .\32xl\:justify-end { + justify-content: flex-end; + } + + .\32xl\:justify-center { + justify-content: center; + } + + .\32xl\:justify-between { + justify-content: space-between; + } + + .\32xl\:justify-around { + justify-content: space-around; + } + + .\32xl\:justify-evenly { + justify-content: space-evenly; } .\32xl\:justify-items-start { @@ -142464,10885 +143235,10587 @@ video { justify-items: stretch; } - .\32xl\:justify-start { - justify-content: flex-start; + .\32xl\:gap-0 { + gap: 0px; } - .\32xl\:justify-end { - justify-content: flex-end; + .\32xl\:gap-1 { + gap: 0.25rem; } - .\32xl\:justify-center { - justify-content: center; + .\32xl\:gap-2 { + gap: 0.5rem; } - .\32xl\:justify-between { - justify-content: space-between; + .\32xl\:gap-3 { + gap: 0.75rem; } - .\32xl\:justify-around { - justify-content: space-around; + .\32xl\:gap-4 { + gap: 1rem; } - .\32xl\:justify-evenly { - justify-content: space-evenly; + .\32xl\:gap-5 { + gap: 1.25rem; } - .\32xl\:justify-self-auto { - justify-self: auto; + .\32xl\:gap-6 { + gap: 1.5rem; } - .\32xl\:justify-self-start { - justify-self: start; + .\32xl\:gap-7 { + gap: 1.75rem; } - .\32xl\:justify-self-end { - justify-self: end; + .\32xl\:gap-8 { + gap: 2rem; } - .\32xl\:justify-self-center { - justify-self: center; + .\32xl\:gap-9 { + gap: 2.25rem; } - .\32xl\:justify-self-stretch { - justify-self: stretch; + .\32xl\:gap-10 { + gap: 2.5rem; } - .\32xl\:flex-1 { - flex: 1 1 0%; + .\32xl\:gap-11 { + gap: 2.75rem; } - .\32xl\:flex-auto { - flex: 1 1 auto; + .\32xl\:gap-12 { + gap: 3rem; } - .\32xl\:flex-initial { - flex: 0 1 auto; + .\32xl\:gap-14 { + gap: 3.5rem; } - .\32xl\:flex-none { - flex: none; + .\32xl\:gap-16 { + gap: 4rem; } - .\32xl\:flex-grow-0 { - flex-grow: 0; + .\32xl\:gap-20 { + gap: 5rem; } - .\32xl\:flex-grow { - flex-grow: 1; + .\32xl\:gap-24 { + gap: 6rem; } - .\32xl\:flex-shrink-0 { - flex-shrink: 0; + .\32xl\:gap-28 { + gap: 7rem; } - .\32xl\:flex-shrink { - flex-shrink: 1; + .\32xl\:gap-32 { + gap: 8rem; } - .\32xl\:order-1 { - order: 1; + .\32xl\:gap-36 { + gap: 9rem; } - .\32xl\:order-2 { - order: 2; + .\32xl\:gap-40 { + gap: 10rem; } - .\32xl\:order-3 { - order: 3; + .\32xl\:gap-44 { + gap: 11rem; } - .\32xl\:order-4 { - order: 4; + .\32xl\:gap-48 { + gap: 12rem; } - .\32xl\:order-5 { - order: 5; + .\32xl\:gap-52 { + gap: 13rem; } - .\32xl\:order-6 { - order: 6; + .\32xl\:gap-56 { + gap: 14rem; } - .\32xl\:order-7 { - order: 7; + .\32xl\:gap-60 { + gap: 15rem; } - .\32xl\:order-8 { - order: 8; + .\32xl\:gap-64 { + gap: 16rem; } - .\32xl\:order-9 { - order: 9; + .\32xl\:gap-72 { + gap: 18rem; } - .\32xl\:order-10 { - order: 10; + .\32xl\:gap-80 { + gap: 20rem; } - .\32xl\:order-11 { - order: 11; + .\32xl\:gap-96 { + gap: 24rem; } - .\32xl\:order-12 { - order: 12; + .\32xl\:gap-px { + gap: 1px; } - .\32xl\:order-first { - order: -9999; + .\32xl\:gap-0\.5 { + gap: 0.125rem; } - .\32xl\:order-last { - order: 9999; + .\32xl\:gap-1\.5 { + gap: 0.375rem; } - .\32xl\:order-none { - order: 0; + .\32xl\:gap-2\.5 { + gap: 0.625rem; } - .\32xl\:float-right { - float: right; + .\32xl\:gap-3\.5 { + gap: 0.875rem; } - .\32xl\:float-left { - float: left; + .\32xl\:gap-x-0 { + column-gap: 0px; } - .\32xl\:float-none { - float: none; + .\32xl\:gap-x-1 { + column-gap: 0.25rem; } - .\32xl\:clear-left { - clear: left; + .\32xl\:gap-x-2 { + column-gap: 0.5rem; } - .\32xl\:clear-right { - clear: right; + .\32xl\:gap-x-3 { + column-gap: 0.75rem; } - .\32xl\:clear-both { - clear: both; + .\32xl\:gap-x-4 { + column-gap: 1rem; } - .\32xl\:clear-none { - clear: none; + .\32xl\:gap-x-5 { + column-gap: 1.25rem; } - .\32xl\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .\32xl\:gap-x-6 { + column-gap: 1.5rem; } - .\32xl\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .\32xl\:gap-x-7 { + column-gap: 1.75rem; } - .\32xl\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .\32xl\:gap-x-8 { + column-gap: 2rem; } - .\32xl\:font-thin { - font-weight: 100; + .\32xl\:gap-x-9 { + column-gap: 2.25rem; } - .\32xl\:font-extralight { - font-weight: 200; + .\32xl\:gap-x-10 { + column-gap: 2.5rem; } - .\32xl\:font-light { - font-weight: 300; + .\32xl\:gap-x-11 { + column-gap: 2.75rem; } - .\32xl\:font-normal { - font-weight: 400; + .\32xl\:gap-x-12 { + column-gap: 3rem; + } + + .\32xl\:gap-x-14 { + column-gap: 3.5rem; } - .\32xl\:font-medium { - font-weight: 500; + .\32xl\:gap-x-16 { + column-gap: 4rem; } - .\32xl\:font-semibold { - font-weight: 600; + .\32xl\:gap-x-20 { + column-gap: 5rem; } - .\32xl\:font-bold { - font-weight: 700; + .\32xl\:gap-x-24 { + column-gap: 6rem; } - .\32xl\:font-extrabold { - font-weight: 800; + .\32xl\:gap-x-28 { + column-gap: 7rem; } - .\32xl\:font-black { - font-weight: 900; + .\32xl\:gap-x-32 { + column-gap: 8rem; } - .\32xl\:h-0 { - height: 0px; + .\32xl\:gap-x-36 { + column-gap: 9rem; } - .\32xl\:h-1 { - height: 0.25rem; + .\32xl\:gap-x-40 { + column-gap: 10rem; } - .\32xl\:h-2 { - height: 0.5rem; + .\32xl\:gap-x-44 { + column-gap: 11rem; } - .\32xl\:h-3 { - height: 0.75rem; + .\32xl\:gap-x-48 { + column-gap: 12rem; } - .\32xl\:h-4 { - height: 1rem; + .\32xl\:gap-x-52 { + column-gap: 13rem; } - .\32xl\:h-5 { - height: 1.25rem; + .\32xl\:gap-x-56 { + column-gap: 14rem; } - .\32xl\:h-6 { - height: 1.5rem; + .\32xl\:gap-x-60 { + column-gap: 15rem; } - .\32xl\:h-7 { - height: 1.75rem; + .\32xl\:gap-x-64 { + column-gap: 16rem; } - .\32xl\:h-8 { - height: 2rem; + .\32xl\:gap-x-72 { + column-gap: 18rem; } - .\32xl\:h-9 { - height: 2.25rem; + .\32xl\:gap-x-80 { + column-gap: 20rem; } - .\32xl\:h-10 { - height: 2.5rem; + .\32xl\:gap-x-96 { + column-gap: 24rem; } - .\32xl\:h-11 { - height: 2.75rem; + .\32xl\:gap-x-px { + column-gap: 1px; } - .\32xl\:h-12 { - height: 3rem; + .\32xl\:gap-x-0\.5 { + column-gap: 0.125rem; } - .\32xl\:h-14 { - height: 3.5rem; + .\32xl\:gap-x-1\.5 { + column-gap: 0.375rem; } - .\32xl\:h-16 { - height: 4rem; + .\32xl\:gap-x-2\.5 { + column-gap: 0.625rem; } - .\32xl\:h-20 { - height: 5rem; + .\32xl\:gap-x-3\.5 { + column-gap: 0.875rem; } - .\32xl\:h-24 { - height: 6rem; + .\32xl\:gap-y-0 { + row-gap: 0px; } - .\32xl\:h-28 { - height: 7rem; + .\32xl\:gap-y-1 { + row-gap: 0.25rem; } - .\32xl\:h-32 { - height: 8rem; + .\32xl\:gap-y-2 { + row-gap: 0.5rem; } - .\32xl\:h-36 { - height: 9rem; + .\32xl\:gap-y-3 { + row-gap: 0.75rem; } - .\32xl\:h-40 { - height: 10rem; + .\32xl\:gap-y-4 { + row-gap: 1rem; } - .\32xl\:h-44 { - height: 11rem; + .\32xl\:gap-y-5 { + row-gap: 1.25rem; } - .\32xl\:h-48 { - height: 12rem; + .\32xl\:gap-y-6 { + row-gap: 1.5rem; } - .\32xl\:h-52 { - height: 13rem; + .\32xl\:gap-y-7 { + row-gap: 1.75rem; } - .\32xl\:h-56 { - height: 14rem; + .\32xl\:gap-y-8 { + row-gap: 2rem; } - .\32xl\:h-60 { - height: 15rem; + .\32xl\:gap-y-9 { + row-gap: 2.25rem; } - .\32xl\:h-64 { - height: 16rem; + .\32xl\:gap-y-10 { + row-gap: 2.5rem; } - .\32xl\:h-72 { - height: 18rem; + .\32xl\:gap-y-11 { + row-gap: 2.75rem; } - .\32xl\:h-80 { - height: 20rem; + .\32xl\:gap-y-12 { + row-gap: 3rem; } - .\32xl\:h-96 { - height: 24rem; + .\32xl\:gap-y-14 { + row-gap: 3.5rem; } - .\32xl\:h-auto { - height: auto; + .\32xl\:gap-y-16 { + row-gap: 4rem; } - .\32xl\:h-px { - height: 1px; + .\32xl\:gap-y-20 { + row-gap: 5rem; } - .\32xl\:h-0\.5 { - height: 0.125rem; + .\32xl\:gap-y-24 { + row-gap: 6rem; } - .\32xl\:h-1\.5 { - height: 0.375rem; + .\32xl\:gap-y-28 { + row-gap: 7rem; } - .\32xl\:h-2\.5 { - height: 0.625rem; + .\32xl\:gap-y-32 { + row-gap: 8rem; } - .\32xl\:h-3\.5 { - height: 0.875rem; + .\32xl\:gap-y-36 { + row-gap: 9rem; } - .\32xl\:h-1\/2 { - height: 50%; + .\32xl\:gap-y-40 { + row-gap: 10rem; } - .\32xl\:h-1\/3 { - height: 33.333333%; + .\32xl\:gap-y-44 { + row-gap: 11rem; } - .\32xl\:h-2\/3 { - height: 66.666667%; + .\32xl\:gap-y-48 { + row-gap: 12rem; } - .\32xl\:h-1\/4 { - height: 25%; + .\32xl\:gap-y-52 { + row-gap: 13rem; } - .\32xl\:h-2\/4 { - height: 50%; + .\32xl\:gap-y-56 { + row-gap: 14rem; } - .\32xl\:h-3\/4 { - height: 75%; + .\32xl\:gap-y-60 { + row-gap: 15rem; } - .\32xl\:h-1\/5 { - height: 20%; + .\32xl\:gap-y-64 { + row-gap: 16rem; } - .\32xl\:h-2\/5 { - height: 40%; + .\32xl\:gap-y-72 { + row-gap: 18rem; } - .\32xl\:h-3\/5 { - height: 60%; + .\32xl\:gap-y-80 { + row-gap: 20rem; } - .\32xl\:h-4\/5 { - height: 80%; + .\32xl\:gap-y-96 { + row-gap: 24rem; } - .\32xl\:h-1\/6 { - height: 16.666667%; + .\32xl\:gap-y-px { + row-gap: 1px; } - .\32xl\:h-2\/6 { - height: 33.333333%; + .\32xl\:gap-y-0\.5 { + row-gap: 0.125rem; } - .\32xl\:h-3\/6 { - height: 50%; + .\32xl\:gap-y-1\.5 { + row-gap: 0.375rem; } - .\32xl\:h-4\/6 { - height: 66.666667%; + .\32xl\:gap-y-2\.5 { + row-gap: 0.625rem; } - .\32xl\:h-5\/6 { - height: 83.333333%; + .\32xl\:gap-y-3\.5 { + row-gap: 0.875rem; } - .\32xl\:h-full { - height: 100%; + .\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\:h-screen { - height: 100vh; + .\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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .\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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .\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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .\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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .\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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .\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\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .\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\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .\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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .\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\:text-5xl { - font-size: 3rem; - line-height: 1; + .\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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .\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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .\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\:text-8xl { - font-size: 6rem; - line-height: 1; + .\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\:text-9xl { - font-size: 8rem; - line-height: 1; + .\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\:leading-3 { - line-height: .75rem; + .\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\:leading-4 { - line-height: 1rem; + .\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\:leading-5 { - line-height: 1.25rem; + .\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\:leading-6 { - line-height: 1.5rem; + .\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\:leading-7 { - line-height: 1.75rem; + .\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\:leading-8 { - line-height: 2rem; + .\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\:leading-9 { - line-height: 2.25rem; + .\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\:leading-10 { - line-height: 2.5rem; + .\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\:leading-none { - line-height: 1; + .\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\:leading-tight { - line-height: 1.25; + .\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\:leading-snug { - line-height: 1.375; + .\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\:leading-normal { - line-height: 1.5; + .\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\:leading-relaxed { - line-height: 1.625; + .\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\:leading-loose { - line-height: 2; + .\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\:list-inside { - list-style-position: inside; + .\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\:list-outside { - list-style-position: outside; + .\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\:list-none { - list-style-type: none; + .\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\:list-disc { - list-style-type: disc; + .\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\:list-decimal { - list-style-type: decimal; + .\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\:m-0 { - margin: 0px; + .\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\:m-1 { - margin: 0.25rem; + .\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\:m-2 { - margin: 0.5rem; + .\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\:m-3 { - margin: 0.75rem; + .\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\:m-4 { - margin: 1rem; + .\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\:m-5 { - margin: 1.25rem; + .\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\:m-6 { - margin: 1.5rem; + .\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\:m-7 { - margin: 1.75rem; + .\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\:m-8 { - margin: 2rem; + .\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\:m-9 { - margin: 2.25rem; + .\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\:m-10 { - margin: 2.5rem; + .\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\:m-11 { - margin: 2.75rem; + .\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\:m-12 { - margin: 3rem; + .\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\:m-14 { - margin: 3.5rem; + .\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\:m-16 { - margin: 4rem; + .\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\:m-20 { - margin: 5rem; + .\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\:m-24 { - margin: 6rem; + .\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\:m-28 { - margin: 7rem; + .\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\:m-32 { - margin: 8rem; + .\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\:m-36 { - margin: 9rem; + .\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\:m-40 { - margin: 10rem; + .\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\:m-44 { - margin: 11rem; + .\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\:m-48 { - margin: 12rem; + .\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\:m-52 { - margin: 13rem; + .\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\:m-56 { - margin: 14rem; + .\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\:m-60 { - margin: 15rem; + .\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\:m-64 { - margin: 16rem; + .\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\:m-72 { - margin: 18rem; + .\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\:m-80 { - margin: 20rem; + .\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\:m-96 { - margin: 24rem; + .\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\:m-auto { - margin: auto; + .\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\:m-px { - margin: 1px; + .\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\:m-0\.5 { - margin: 0.125rem; + .\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\:m-1\.5 { - margin: 0.375rem; + .\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\:m-2\.5 { - margin: 0.625rem; + .\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\:m-3\.5 { - margin: 0.875rem; + .\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\:-m-0 { - margin: 0px; + .\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\:-m-1 { - margin: -0.25rem; + .\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\:-m-2 { - margin: -0.5rem; + .\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\:-m-3 { - margin: -0.75rem; + .\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\:-m-4 { - margin: -1rem; + .\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\:-m-5 { - margin: -1.25rem; + .\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\:-m-6 { - margin: -1.5rem; + .\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\:-m-7 { - margin: -1.75rem; + .\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\:-m-8 { - margin: -2rem; + .\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\:-m-9 { - margin: -2.25rem; + .\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\:-m-10 { - margin: -2.5rem; + .\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\:-m-11 { - margin: -2.75rem; + .\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\:-m-12 { - margin: -3rem; + .\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\:-m-14 { - margin: -3.5rem; + .\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\:-m-16 { - margin: -4rem; + .\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\:-m-20 { - margin: -5rem; + .\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\:-m-24 { - margin: -6rem; + .\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\:-m-28 { - margin: -7rem; + .\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\:-m-32 { - margin: -8rem; + .\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\:-m-36 { - margin: -9rem; + .\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\:-m-40 { - margin: -10rem; + .\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\:-m-44 { - margin: -11rem; + .\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\:-m-48 { - margin: -12rem; + .\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\:-m-52 { - margin: -13rem; + .\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\:-m-56 { - margin: -14rem; + .\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\:-m-60 { - margin: -15rem; + .\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\:-m-64 { - margin: -16rem; + .\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\:-m-72 { - margin: -18rem; + .\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\:-m-80 { - margin: -20rem; + .\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\:-m-96 { - margin: -24rem; + .\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\:-m-px { - margin: -1px; + .\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\:-m-0\.5 { - margin: -0.125rem; + .\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\:-m-1\.5 { - margin: -0.375rem; + .\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\:-m-2\.5 { - margin: -0.625rem; + .\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\:-m-3\.5 { - margin: -0.875rem; + .\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\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .\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\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .\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\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .\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\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .\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\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .\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\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .\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\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .\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\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .\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\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .\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\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .\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\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .\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\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .\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\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .\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\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .\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\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .\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\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .\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\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .\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\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .\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\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .\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\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .\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\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .\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\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .\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\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .\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\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .\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\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .\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\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .\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\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .\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\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .\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\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .\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\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .\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\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .\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\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .\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\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .\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\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .\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\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .\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\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .\32xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .\32xl\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .\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\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .\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\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .\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\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .\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\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .\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\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .\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\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .\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\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .\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\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .\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\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .\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\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .\32xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .\32xl\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .\32xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .\32xl\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .\32xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .\32xl\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .\32xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .\32xl\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .\32xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + border-color: #000; } - .\32xl\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + border-color: #fff; } - .\32xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .\32xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9fafb; } - .\32xl\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #f3f4f6; } - .\32xl\:my-auto { - margin-top: auto; - margin-bottom: auto; + .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #e5e7eb; } - .\32xl\:mx-auto { - margin-left: auto; - margin-right: auto; + .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1d5db; } - .\32xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #9ca3af; } - .\32xl\:mx-px { - margin-left: 1px; - margin-right: 1px; + .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6b7280; } - .\32xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4b5563; } - .\32xl\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #374151; } - .\32xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1f2937; } - .\32xl\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #111827; } - .\32xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .\32xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef2f2; } - .\32xl\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fee2e2; } - .\32xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fecaca; } - .\32xl\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fca5a5; } - .\32xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f87171; } - .\32xl\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ef4444; } - .\32xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #dc2626; } - .\32xl\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b91c1c; } - .\32xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #991b1b; } - .\32xl\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #7f1d1d; } - .\32xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .\32xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fffbeb; } - .\32xl\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fef3c7; } - .\32xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fde68a; } - .\32xl\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #fcd34d; } - .\32xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbbf24; } - .\32xl\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #f59e0b; } - .\32xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #d97706; } - .\32xl\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #b45309; } - .\32xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #92400e; } - .\32xl\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #78350f; } - .\32xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .\32xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #ecfdf5; } - .\32xl\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #d1fae5; } - .\32xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #a7f3d0; } - .\32xl\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #6ee7b7; } - .\32xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #34d399; } - .\32xl\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #10b981; } - .\32xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #059669; } - .\32xl\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #047857; } - .\32xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #065f46; } - .\32xl\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #064e3b; } - .\32xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .\32xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eff6ff; } - .\32xl\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #dbeafe; } - .\32xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #bfdbfe; } - .\32xl\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #93c5fd; } - .\32xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #60a5fa; } - .\32xl\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #3b82f6; } - .\32xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #2563eb; } - .\32xl\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #1d4ed8; } - .\32xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e40af; } - .\32xl\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #1e3a8a; } - .\32xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .\32xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #eef2ff; } - .\32xl\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #e0e7ff; } - .\32xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #c7d2fe; } - .\32xl\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #a5b4fc; } - .\32xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #818cf8; } - .\32xl\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #6366f1; } - .\32xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #4f46e5; } - .\32xl\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #4338ca; } - .\32xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #3730a3; } - .\32xl\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #312e81; } - .\32xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .\32xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #f5f3ff; } - .\32xl\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .\32xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #ede9fe; } - .\32xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .\32xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #ddd6fe; } - .\32xl\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .\32xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #c4b5fd; } - .\32xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .\32xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #a78bfa; } - .\32xl\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .\32xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #8b5cf6; } - .\32xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .\32xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #7c3aed; } - .\32xl\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .\32xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #6d28d9; } - .\32xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .\32xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #5b21b6; } - .\32xl\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .\32xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #4c1d95; } - .\32xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .\32xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + border-color: #fdf2f8; } - .\32xl\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .\32xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + border-color: #fce7f3; } - .\32xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .\32xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + border-color: #fbcfe8; } - .\32xl\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .\32xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + border-color: #f9a8d4; } - .\32xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .\32xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + border-color: #f472b6; } - .\32xl\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .\32xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + border-color: #ec4899; } - .\32xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .\32xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + border-color: #db2777; } - .\32xl\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .\32xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + border-color: #be185d; } - .\32xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .\32xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + border-color: #9d174d; } - .\32xl\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .\32xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + border-color: #831843; } - .\32xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .\32xl\:place-self-auto { + place-self: auto; } - .\32xl\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .\32xl\:place-self-start { + place-self: start; } - .\32xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .\32xl\:place-self-end { + place-self: end; } - .\32xl\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .\32xl\:place-self-center { + place-self: center; } - .\32xl\:mt-0 { - margin-top: 0px; + .\32xl\:place-self-stretch { + place-self: stretch; } - .\32xl\:mr-0 { - margin-right: 0px; + .\32xl\:self-auto { + align-self: auto; } - .\32xl\:mb-0 { - margin-bottom: 0px; + .\32xl\:self-start { + align-self: flex-start; } - .\32xl\:ml-0 { - margin-left: 0px; + .\32xl\:self-end { + align-self: flex-end; } - .\32xl\:mt-1 { - margin-top: 0.25rem; + .\32xl\:self-center { + align-self: center; } - .\32xl\:mr-1 { - margin-right: 0.25rem; + .\32xl\:self-stretch { + align-self: stretch; } - .\32xl\:mb-1 { - margin-bottom: 0.25rem; + .\32xl\:justify-self-auto { + justify-self: auto; } - .\32xl\:ml-1 { - margin-left: 0.25rem; + .\32xl\:justify-self-start { + justify-self: start; } - .\32xl\:mt-2 { - margin-top: 0.5rem; + .\32xl\:justify-self-end { + justify-self: end; } - .\32xl\:mr-2 { - margin-right: 0.5rem; + .\32xl\:justify-self-center { + justify-self: center; } - .\32xl\:mb-2 { - margin-bottom: 0.5rem; + .\32xl\:justify-self-stretch { + justify-self: stretch; } - .\32xl\:ml-2 { - margin-left: 0.5rem; + .\32xl\:overflow-auto { + overflow: auto; } - .\32xl\:mt-3 { - margin-top: 0.75rem; + .\32xl\:overflow-hidden { + overflow: hidden; } - .\32xl\:mr-3 { - margin-right: 0.75rem; + .\32xl\:overflow-visible { + overflow: visible; } - .\32xl\:mb-3 { - margin-bottom: 0.75rem; + .\32xl\:overflow-scroll { + overflow: scroll; } - .\32xl\:ml-3 { - margin-left: 0.75rem; + .\32xl\:overflow-x-auto { + overflow-x: auto; } - .\32xl\:mt-4 { - margin-top: 1rem; + .\32xl\:overflow-y-auto { + overflow-y: auto; } - .\32xl\:mr-4 { - margin-right: 1rem; + .\32xl\:overflow-x-hidden { + overflow-x: hidden; } - .\32xl\:mb-4 { - margin-bottom: 1rem; + .\32xl\:overflow-y-hidden { + overflow-y: hidden; } - .\32xl\:ml-4 { - margin-left: 1rem; + .\32xl\:overflow-x-visible { + overflow-x: visible; } - .\32xl\:mt-5 { - margin-top: 1.25rem; + .\32xl\:overflow-y-visible { + overflow-y: visible; } - .\32xl\:mr-5 { - margin-right: 1.25rem; + .\32xl\:overflow-x-scroll { + overflow-x: scroll; } - .\32xl\:mb-5 { - margin-bottom: 1.25rem; + .\32xl\:overflow-y-scroll { + overflow-y: scroll; } - .\32xl\:ml-5 { - margin-left: 1.25rem; + .\32xl\:overscroll-auto { + overscroll-behavior: auto; } - .\32xl\:mt-6 { - margin-top: 1.5rem; + .\32xl\:overscroll-contain { + overscroll-behavior: contain; } - .\32xl\:mr-6 { - margin-right: 1.5rem; + .\32xl\:overscroll-none { + overscroll-behavior: none; } - .\32xl\:mb-6 { - margin-bottom: 1.5rem; + .\32xl\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .\32xl\:ml-6 { - margin-left: 1.5rem; + .\32xl\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .\32xl\:mt-7 { - margin-top: 1.75rem; + .\32xl\:overscroll-y-none { + overscroll-behavior-y: none; } - .\32xl\:mr-7 { - margin-right: 1.75rem; + .\32xl\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .\32xl\:mb-7 { - margin-bottom: 1.75rem; + .\32xl\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .\32xl\:ml-7 { - margin-left: 1.75rem; + .\32xl\:overscroll-x-none { + overscroll-behavior-x: none; } - .\32xl\:mt-8 { - margin-top: 2rem; + .\32xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .\32xl\:mr-8 { - margin-right: 2rem; + .\32xl\:overflow-ellipsis { + text-overflow: ellipsis; } - .\32xl\:mb-8 { - margin-bottom: 2rem; + .\32xl\:overflow-clip { + text-overflow: clip; } - .\32xl\:ml-8 { - margin-left: 2rem; + .\32xl\:whitespace-normal { + white-space: normal; } - .\32xl\:mt-9 { - margin-top: 2.25rem; + .\32xl\:whitespace-nowrap { + white-space: nowrap; } - .\32xl\:mr-9 { - margin-right: 2.25rem; + .\32xl\:whitespace-pre { + white-space: pre; } - .\32xl\:mb-9 { - margin-bottom: 2.25rem; + .\32xl\:whitespace-pre-line { + white-space: pre-line; } - .\32xl\:ml-9 { - margin-left: 2.25rem; + .\32xl\:whitespace-pre-wrap { + white-space: pre-wrap; } - .\32xl\:mt-10 { - margin-top: 2.5rem; + .\32xl\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .\32xl\:mr-10 { - margin-right: 2.5rem; + .\32xl\:break-words { + overflow-wrap: break-word; } - .\32xl\:mb-10 { - margin-bottom: 2.5rem; + .\32xl\:break-all { + word-break: break-all; } - .\32xl\:ml-10 { - margin-left: 2.5rem; + .\32xl\:rounded-none { + border-radius: 0px; } - .\32xl\:mt-11 { - margin-top: 2.75rem; + .\32xl\:rounded-sm { + border-radius: 0.125rem; } - .\32xl\:mr-11 { - margin-right: 2.75rem; + .\32xl\:rounded { + border-radius: 0.25rem; } - .\32xl\:mb-11 { - margin-bottom: 2.75rem; + .\32xl\:rounded-md { + border-radius: 0.375rem; } - .\32xl\:ml-11 { - margin-left: 2.75rem; + .\32xl\:rounded-lg { + border-radius: 0.5rem; } - .\32xl\:mt-12 { - margin-top: 3rem; + .\32xl\:rounded-xl { + border-radius: 0.75rem; } - .\32xl\:mr-12 { - margin-right: 3rem; + .\32xl\:rounded-2xl { + border-radius: 1rem; } - .\32xl\:mb-12 { - margin-bottom: 3rem; + .\32xl\:rounded-3xl { + border-radius: 1.5rem; } - .\32xl\:ml-12 { - margin-left: 3rem; + .\32xl\:rounded-full { + border-radius: 9999px; } - .\32xl\:mt-14 { - margin-top: 3.5rem; + .\32xl\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .\32xl\:mr-14 { - margin-right: 3.5rem; + .\32xl\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .\32xl\:mb-14 { - margin-bottom: 3.5rem; + .\32xl\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .\32xl\:ml-14 { - margin-left: 3.5rem; + .\32xl\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .\32xl\:mt-16 { - margin-top: 4rem; + .\32xl\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .\32xl\:mr-16 { - margin-right: 4rem; + .\32xl\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .\32xl\:mb-16 { - margin-bottom: 4rem; + .\32xl\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .\32xl\:ml-16 { - margin-left: 4rem; + .\32xl\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .\32xl\:mt-20 { - margin-top: 5rem; + .\32xl\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .\32xl\:mr-20 { - margin-right: 5rem; + .\32xl\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .\32xl\:mb-20 { - margin-bottom: 5rem; + .\32xl\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .\32xl\:ml-20 { - margin-left: 5rem; + .\32xl\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .\32xl\:mt-24 { - margin-top: 6rem; + .\32xl\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .\32xl\:mr-24 { - margin-right: 6rem; + .\32xl\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .\32xl\:mb-24 { - margin-bottom: 6rem; + .\32xl\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .\32xl\:ml-24 { - margin-left: 6rem; + .\32xl\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .\32xl\:mt-28 { - margin-top: 7rem; + .\32xl\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .\32xl\:mr-28 { - margin-right: 7rem; + .\32xl\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .\32xl\:mb-28 { - margin-bottom: 7rem; + .\32xl\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .\32xl\:ml-28 { - margin-left: 7rem; + .\32xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .\32xl\:mt-32 { - margin-top: 8rem; + .\32xl\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .\32xl\:mr-32 { - margin-right: 8rem; + .\32xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .\32xl\:mb-32 { - margin-bottom: 8rem; + .\32xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .\32xl\:ml-32 { - margin-left: 8rem; + .\32xl\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .\32xl\:mt-36 { - margin-top: 9rem; + .\32xl\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .\32xl\:mr-36 { - margin-right: 9rem; + .\32xl\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .\32xl\:mb-36 { - margin-bottom: 9rem; + .\32xl\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .\32xl\:ml-36 { - margin-left: 9rem; + .\32xl\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .\32xl\:mt-40 { - margin-top: 10rem; + .\32xl\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .\32xl\:mr-40 { - margin-right: 10rem; + .\32xl\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .\32xl\:mb-40 { - margin-bottom: 10rem; + .\32xl\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .\32xl\:ml-40 { - margin-left: 10rem; + .\32xl\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .\32xl\:mt-44 { - margin-top: 11rem; + .\32xl\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .\32xl\:mr-44 { - margin-right: 11rem; + .\32xl\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .\32xl\:mb-44 { - margin-bottom: 11rem; + .\32xl\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .\32xl\:ml-44 { - margin-left: 11rem; + .\32xl\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .\32xl\:mt-48 { - margin-top: 12rem; + .\32xl\:rounded-tl-none { + border-top-left-radius: 0px; } - .\32xl\:mr-48 { - margin-right: 12rem; + .\32xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .\32xl\:mb-48 { - margin-bottom: 12rem; + .\32xl\:rounded-tl { + border-top-left-radius: 0.25rem; } - .\32xl\:ml-48 { - margin-left: 12rem; + .\32xl\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .\32xl\:mt-52 { - margin-top: 13rem; + .\32xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .\32xl\:mr-52 { - margin-right: 13rem; + .\32xl\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .\32xl\:mb-52 { - margin-bottom: 13rem; + .\32xl\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .\32xl\:ml-52 { - margin-left: 13rem; + .\32xl\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .\32xl\:mt-56 { - margin-top: 14rem; + .\32xl\:rounded-tl-full { + border-top-left-radius: 9999px; } - .\32xl\:mr-56 { - margin-right: 14rem; + .\32xl\:rounded-tr-none { + border-top-right-radius: 0px; } - .\32xl\:mb-56 { - margin-bottom: 14rem; + .\32xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .\32xl\:ml-56 { - margin-left: 14rem; + .\32xl\:rounded-tr { + border-top-right-radius: 0.25rem; } - .\32xl\:mt-60 { - margin-top: 15rem; + .\32xl\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .\32xl\:mr-60 { - margin-right: 15rem; + .\32xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .\32xl\:mb-60 { - margin-bottom: 15rem; + .\32xl\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .\32xl\:ml-60 { - margin-left: 15rem; + .\32xl\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .\32xl\:mt-64 { - margin-top: 16rem; + .\32xl\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .\32xl\:mr-64 { - margin-right: 16rem; + .\32xl\:rounded-tr-full { + border-top-right-radius: 9999px; } - .\32xl\:mb-64 { - margin-bottom: 16rem; + .\32xl\:rounded-br-none { + border-bottom-right-radius: 0px; } - .\32xl\:ml-64 { - margin-left: 16rem; + .\32xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .\32xl\:mt-72 { - margin-top: 18rem; + .\32xl\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .\32xl\:mr-72 { - margin-right: 18rem; + .\32xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .\32xl\:mb-72 { - margin-bottom: 18rem; + .\32xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .\32xl\:ml-72 { - margin-left: 18rem; + .\32xl\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .\32xl\:mt-80 { - margin-top: 20rem; + .\32xl\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .\32xl\:mr-80 { - margin-right: 20rem; + .\32xl\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .\32xl\:mb-80 { - margin-bottom: 20rem; + .\32xl\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .\32xl\:ml-80 { - margin-left: 20rem; + .\32xl\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .\32xl\:mt-96 { - margin-top: 24rem; + .\32xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .\32xl\:mr-96 { - margin-right: 24rem; + .\32xl\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .\32xl\:mb-96 { - margin-bottom: 24rem; + .\32xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .\32xl\:ml-96 { - margin-left: 24rem; + .\32xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .\32xl\:mt-auto { - margin-top: auto; + .\32xl\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .\32xl\:mr-auto { - margin-right: auto; + .\32xl\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .\32xl\:mb-auto { - margin-bottom: auto; + .\32xl\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .\32xl\:ml-auto { - margin-left: auto; + .\32xl\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .\32xl\:mt-px { - margin-top: 1px; + .\32xl\:border-0 { + border-width: 0px; } - .\32xl\:mr-px { - margin-right: 1px; + .\32xl\:border-2 { + border-width: 2px; } - .\32xl\:mb-px { - margin-bottom: 1px; + .\32xl\:border-4 { + border-width: 4px; } - .\32xl\:ml-px { - margin-left: 1px; + .\32xl\:border-8 { + border-width: 8px; } - .\32xl\:mt-0\.5 { - margin-top: 0.125rem; + .\32xl\:border { + border-width: 1px; } - .\32xl\:mr-0\.5 { - margin-right: 0.125rem; + .\32xl\:border-t-0 { + border-top-width: 0px; } - .\32xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .\32xl\:border-t-2 { + border-top-width: 2px; } - .\32xl\:ml-0\.5 { - margin-left: 0.125rem; + .\32xl\:border-t-4 { + border-top-width: 4px; } - .\32xl\:mt-1\.5 { - margin-top: 0.375rem; + .\32xl\:border-t-8 { + border-top-width: 8px; } - .\32xl\:mr-1\.5 { - margin-right: 0.375rem; + .\32xl\:border-t { + border-top-width: 1px; } - .\32xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .\32xl\:border-r-0 { + border-right-width: 0px; } - .\32xl\:ml-1\.5 { - margin-left: 0.375rem; + .\32xl\:border-r-2 { + border-right-width: 2px; } - .\32xl\:mt-2\.5 { - margin-top: 0.625rem; + .\32xl\:border-r-4 { + border-right-width: 4px; } - .\32xl\:mr-2\.5 { - margin-right: 0.625rem; + .\32xl\:border-r-8 { + border-right-width: 8px; } - .\32xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .\32xl\:border-r { + border-right-width: 1px; } - .\32xl\:ml-2\.5 { - margin-left: 0.625rem; + .\32xl\:border-b-0 { + border-bottom-width: 0px; } - .\32xl\:mt-3\.5 { - margin-top: 0.875rem; + .\32xl\:border-b-2 { + border-bottom-width: 2px; } - .\32xl\:mr-3\.5 { - margin-right: 0.875rem; + .\32xl\:border-b-4 { + border-bottom-width: 4px; } - .\32xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .\32xl\:border-b-8 { + border-bottom-width: 8px; } - .\32xl\:ml-3\.5 { - margin-left: 0.875rem; + .\32xl\:border-b { + border-bottom-width: 1px; } - .\32xl\:-mt-0 { - margin-top: 0px; + .\32xl\:border-l-0 { + border-left-width: 0px; } - .\32xl\:-mr-0 { - margin-right: 0px; + .\32xl\:border-l-2 { + border-left-width: 2px; } - .\32xl\:-mb-0 { - margin-bottom: 0px; + .\32xl\:border-l-4 { + border-left-width: 4px; } - .\32xl\:-ml-0 { - margin-left: 0px; + .\32xl\:border-l-8 { + border-left-width: 8px; } - .\32xl\:-mt-1 { - margin-top: -0.25rem; + .\32xl\:border-l { + border-left-width: 1px; } - .\32xl\:-mr-1 { - margin-right: -0.25rem; + .\32xl\:border-solid { + border-style: solid; } - .\32xl\:-mb-1 { - margin-bottom: -0.25rem; + .\32xl\:border-dashed { + border-style: dashed; } - .\32xl\:-ml-1 { - margin-left: -0.25rem; + .\32xl\:border-dotted { + border-style: dotted; } - .\32xl\:-mt-2 { - margin-top: -0.5rem; + .\32xl\:border-double { + border-style: double; } - .\32xl\:-mr-2 { - margin-right: -0.5rem; + .\32xl\:border-none { + border-style: none; } - .\32xl\:-mb-2 { - margin-bottom: -0.5rem; + .\32xl\:border-transparent { + border-color: transparent; } - .\32xl\:-ml-2 { - margin-left: -0.5rem; + .\32xl\:border-current { + border-color: currentColor; } - .\32xl\:-mt-3 { - margin-top: -0.75rem; + .\32xl\:border-black { + border-color: #000; } - .\32xl\:-mr-3 { - margin-right: -0.75rem; + .\32xl\:border-white { + border-color: #fff; } - .\32xl\:-mb-3 { - margin-bottom: -0.75rem; + .\32xl\:border-gray-50 { + border-color: #f9fafb; } - .\32xl\:-ml-3 { - margin-left: -0.75rem; + .\32xl\:border-gray-100 { + border-color: #f3f4f6; } - .\32xl\:-mt-4 { - margin-top: -1rem; + .\32xl\:border-gray-200 { + border-color: #e5e7eb; } - .\32xl\:-mr-4 { - margin-right: -1rem; + .\32xl\:border-gray-300 { + border-color: #d1d5db; } - .\32xl\:-mb-4 { - margin-bottom: -1rem; + .\32xl\:border-gray-400 { + border-color: #9ca3af; } - .\32xl\:-ml-4 { - margin-left: -1rem; + .\32xl\:border-gray-500 { + border-color: #6b7280; } - .\32xl\:-mt-5 { - margin-top: -1.25rem; + .\32xl\:border-gray-600 { + border-color: #4b5563; } - .\32xl\:-mr-5 { - margin-right: -1.25rem; + .\32xl\:border-gray-700 { + border-color: #374151; } - .\32xl\:-mb-5 { - margin-bottom: -1.25rem; + .\32xl\:border-gray-800 { + border-color: #1f2937; } - .\32xl\:-ml-5 { - margin-left: -1.25rem; + .\32xl\:border-gray-900 { + border-color: #111827; } - .\32xl\:-mt-6 { - margin-top: -1.5rem; + .\32xl\:border-red-50 { + border-color: #fef2f2; } - .\32xl\:-mr-6 { - margin-right: -1.5rem; + .\32xl\:border-red-100 { + border-color: #fee2e2; } - .\32xl\:-mb-6 { - margin-bottom: -1.5rem; + .\32xl\:border-red-200 { + border-color: #fecaca; } - .\32xl\:-ml-6 { - margin-left: -1.5rem; + .\32xl\:border-red-300 { + border-color: #fca5a5; } - .\32xl\:-mt-7 { - margin-top: -1.75rem; + .\32xl\:border-red-400 { + border-color: #f87171; } - .\32xl\:-mr-7 { - margin-right: -1.75rem; + .\32xl\:border-red-500 { + border-color: #ef4444; } - .\32xl\:-mb-7 { - margin-bottom: -1.75rem; + .\32xl\:border-red-600 { + border-color: #dc2626; } - .\32xl\:-ml-7 { - margin-left: -1.75rem; + .\32xl\:border-red-700 { + border-color: #b91c1c; } - .\32xl\:-mt-8 { - margin-top: -2rem; + .\32xl\:border-red-800 { + border-color: #991b1b; } - .\32xl\:-mr-8 { - margin-right: -2rem; + .\32xl\:border-red-900 { + border-color: #7f1d1d; } - .\32xl\:-mb-8 { - margin-bottom: -2rem; + .\32xl\:border-yellow-50 { + border-color: #fffbeb; } - .\32xl\:-ml-8 { - margin-left: -2rem; + .\32xl\:border-yellow-100 { + border-color: #fef3c7; } - .\32xl\:-mt-9 { - margin-top: -2.25rem; + .\32xl\:border-yellow-200 { + border-color: #fde68a; } - .\32xl\:-mr-9 { - margin-right: -2.25rem; + .\32xl\:border-yellow-300 { + border-color: #fcd34d; } - .\32xl\:-mb-9 { - margin-bottom: -2.25rem; + .\32xl\:border-yellow-400 { + border-color: #fbbf24; } - .\32xl\:-ml-9 { - margin-left: -2.25rem; + .\32xl\:border-yellow-500 { + border-color: #f59e0b; } - .\32xl\:-mt-10 { - margin-top: -2.5rem; + .\32xl\:border-yellow-600 { + border-color: #d97706; } - .\32xl\:-mr-10 { - margin-right: -2.5rem; + .\32xl\:border-yellow-700 { + border-color: #b45309; } - .\32xl\:-mb-10 { - margin-bottom: -2.5rem; + .\32xl\:border-yellow-800 { + border-color: #92400e; } - .\32xl\:-ml-10 { - margin-left: -2.5rem; + .\32xl\:border-yellow-900 { + border-color: #78350f; } - .\32xl\:-mt-11 { - margin-top: -2.75rem; + .\32xl\:border-green-50 { + border-color: #ecfdf5; } - .\32xl\:-mr-11 { - margin-right: -2.75rem; + .\32xl\:border-green-100 { + border-color: #d1fae5; } - .\32xl\:-mb-11 { - margin-bottom: -2.75rem; + .\32xl\:border-green-200 { + border-color: #a7f3d0; } - .\32xl\:-ml-11 { - margin-left: -2.75rem; + .\32xl\:border-green-300 { + border-color: #6ee7b7; } - .\32xl\:-mt-12 { - margin-top: -3rem; + .\32xl\:border-green-400 { + border-color: #34d399; } - .\32xl\:-mr-12 { - margin-right: -3rem; + .\32xl\:border-green-500 { + border-color: #10b981; } - .\32xl\:-mb-12 { - margin-bottom: -3rem; + .\32xl\:border-green-600 { + border-color: #059669; } - .\32xl\:-ml-12 { - margin-left: -3rem; + .\32xl\:border-green-700 { + border-color: #047857; } - .\32xl\:-mt-14 { - margin-top: -3.5rem; + .\32xl\:border-green-800 { + border-color: #065f46; } - .\32xl\:-mr-14 { - margin-right: -3.5rem; + .\32xl\:border-green-900 { + border-color: #064e3b; } - .\32xl\:-mb-14 { - margin-bottom: -3.5rem; + .\32xl\:border-blue-50 { + border-color: #eff6ff; } - .\32xl\:-ml-14 { - margin-left: -3.5rem; + .\32xl\:border-blue-100 { + border-color: #dbeafe; } - .\32xl\:-mt-16 { - margin-top: -4rem; + .\32xl\:border-blue-200 { + border-color: #bfdbfe; } - .\32xl\:-mr-16 { - margin-right: -4rem; + .\32xl\:border-blue-300 { + border-color: #93c5fd; } - .\32xl\:-mb-16 { - margin-bottom: -4rem; + .\32xl\:border-blue-400 { + border-color: #60a5fa; } - .\32xl\:-ml-16 { - margin-left: -4rem; + .\32xl\:border-blue-500 { + border-color: #3b82f6; } - .\32xl\:-mt-20 { - margin-top: -5rem; + .\32xl\:border-blue-600 { + border-color: #2563eb; } - .\32xl\:-mr-20 { - margin-right: -5rem; + .\32xl\:border-blue-700 { + border-color: #1d4ed8; } - .\32xl\:-mb-20 { - margin-bottom: -5rem; + .\32xl\:border-blue-800 { + border-color: #1e40af; } - .\32xl\:-ml-20 { - margin-left: -5rem; + .\32xl\:border-blue-900 { + border-color: #1e3a8a; } - .\32xl\:-mt-24 { - margin-top: -6rem; + .\32xl\:border-indigo-50 { + border-color: #eef2ff; } - .\32xl\:-mr-24 { - margin-right: -6rem; + .\32xl\:border-indigo-100 { + border-color: #e0e7ff; } - .\32xl\:-mb-24 { - margin-bottom: -6rem; + .\32xl\:border-indigo-200 { + border-color: #c7d2fe; } - .\32xl\:-ml-24 { - margin-left: -6rem; + .\32xl\:border-indigo-300 { + border-color: #a5b4fc; } - .\32xl\:-mt-28 { - margin-top: -7rem; + .\32xl\:border-indigo-400 { + border-color: #818cf8; } - .\32xl\:-mr-28 { - margin-right: -7rem; + .\32xl\:border-indigo-500 { + border-color: #6366f1; } - .\32xl\:-mb-28 { - margin-bottom: -7rem; + .\32xl\:border-indigo-600 { + border-color: #4f46e5; } - .\32xl\:-ml-28 { - margin-left: -7rem; + .\32xl\:border-indigo-700 { + border-color: #4338ca; } - .\32xl\:-mt-32 { - margin-top: -8rem; + .\32xl\:border-indigo-800 { + border-color: #3730a3; } - .\32xl\:-mr-32 { - margin-right: -8rem; + .\32xl\:border-indigo-900 { + border-color: #312e81; } - .\32xl\:-mb-32 { - margin-bottom: -8rem; + .\32xl\:border-purple-50 { + border-color: #f5f3ff; } - .\32xl\:-ml-32 { - margin-left: -8rem; + .\32xl\:border-purple-100 { + border-color: #ede9fe; } - .\32xl\:-mt-36 { - margin-top: -9rem; + .\32xl\:border-purple-200 { + border-color: #ddd6fe; } - .\32xl\:-mr-36 { - margin-right: -9rem; + .\32xl\:border-purple-300 { + border-color: #c4b5fd; } - .\32xl\:-mb-36 { - margin-bottom: -9rem; + .\32xl\:border-purple-400 { + border-color: #a78bfa; } - .\32xl\:-ml-36 { - margin-left: -9rem; + .\32xl\:border-purple-500 { + border-color: #8b5cf6; } - .\32xl\:-mt-40 { - margin-top: -10rem; + .\32xl\:border-purple-600 { + border-color: #7c3aed; } - .\32xl\:-mr-40 { - margin-right: -10rem; + .\32xl\:border-purple-700 { + border-color: #6d28d9; } - .\32xl\:-mb-40 { - margin-bottom: -10rem; + .\32xl\:border-purple-800 { + border-color: #5b21b6; } - .\32xl\:-ml-40 { - margin-left: -10rem; + .\32xl\:border-purple-900 { + border-color: #4c1d95; } - .\32xl\:-mt-44 { - margin-top: -11rem; + .\32xl\:border-pink-50 { + border-color: #fdf2f8; } - .\32xl\:-mr-44 { - margin-right: -11rem; + .\32xl\:border-pink-100 { + border-color: #fce7f3; } - .\32xl\:-mb-44 { - margin-bottom: -11rem; + .\32xl\:border-pink-200 { + border-color: #fbcfe8; } - .\32xl\:-ml-44 { - margin-left: -11rem; + .\32xl\:border-pink-300 { + border-color: #f9a8d4; } - .\32xl\:-mt-48 { - margin-top: -12rem; + .\32xl\:border-pink-400 { + border-color: #f472b6; } - .\32xl\:-mr-48 { - margin-right: -12rem; + .\32xl\:border-pink-500 { + border-color: #ec4899; } - .\32xl\:-mb-48 { - margin-bottom: -12rem; + .\32xl\:border-pink-600 { + border-color: #db2777; } - .\32xl\:-ml-48 { - margin-left: -12rem; + .\32xl\:border-pink-700 { + border-color: #be185d; } - .\32xl\:-mt-52 { - margin-top: -13rem; + .\32xl\:border-pink-800 { + border-color: #9d174d; } - .\32xl\:-mr-52 { - margin-right: -13rem; + .\32xl\:border-pink-900 { + border-color: #831843; } - .\32xl\:-mb-52 { - margin-bottom: -13rem; + .group:hover .\32xl\:group-hover\:border-transparent { + border-color: transparent; } - .\32xl\:-ml-52 { - margin-left: -13rem; + .group:hover .\32xl\:group-hover\:border-current { + border-color: currentColor; } - .\32xl\:-mt-56 { - margin-top: -14rem; + .group:hover .\32xl\:group-hover\:border-black { + border-color: #000; } - .\32xl\:-mr-56 { - margin-right: -14rem; + .group:hover .\32xl\:group-hover\:border-white { + border-color: #fff; } - .\32xl\:-mb-56 { - margin-bottom: -14rem; + .group:hover .\32xl\:group-hover\:border-gray-50 { + border-color: #f9fafb; } - .\32xl\:-ml-56 { - margin-left: -14rem; + .group:hover .\32xl\:group-hover\:border-gray-100 { + border-color: #f3f4f6; } - .\32xl\:-mt-60 { - margin-top: -15rem; + .group:hover .\32xl\:group-hover\:border-gray-200 { + border-color: #e5e7eb; } - .\32xl\:-mr-60 { - margin-right: -15rem; + .group:hover .\32xl\:group-hover\:border-gray-300 { + border-color: #d1d5db; } - .\32xl\:-mb-60 { - margin-bottom: -15rem; + .group:hover .\32xl\:group-hover\:border-gray-400 { + border-color: #9ca3af; } - .\32xl\:-ml-60 { - margin-left: -15rem; + .group:hover .\32xl\:group-hover\:border-gray-500 { + border-color: #6b7280; } - .\32xl\:-mt-64 { - margin-top: -16rem; + .group:hover .\32xl\:group-hover\:border-gray-600 { + border-color: #4b5563; } - .\32xl\:-mr-64 { - margin-right: -16rem; + .group:hover .\32xl\:group-hover\:border-gray-700 { + border-color: #374151; } - .\32xl\:-mb-64 { - margin-bottom: -16rem; + .group:hover .\32xl\:group-hover\:border-gray-800 { + border-color: #1f2937; } - .\32xl\:-ml-64 { - margin-left: -16rem; + .group:hover .\32xl\:group-hover\:border-gray-900 { + border-color: #111827; } - .\32xl\:-mt-72 { - margin-top: -18rem; + .group:hover .\32xl\:group-hover\:border-red-50 { + border-color: #fef2f2; } - .\32xl\:-mr-72 { - margin-right: -18rem; + .group:hover .\32xl\:group-hover\:border-red-100 { + border-color: #fee2e2; } - .\32xl\:-mb-72 { - margin-bottom: -18rem; + .group:hover .\32xl\:group-hover\:border-red-200 { + border-color: #fecaca; } - .\32xl\:-ml-72 { - margin-left: -18rem; + .group:hover .\32xl\:group-hover\:border-red-300 { + border-color: #fca5a5; } - .\32xl\:-mt-80 { - margin-top: -20rem; + .group:hover .\32xl\:group-hover\:border-red-400 { + border-color: #f87171; } - .\32xl\:-mr-80 { - margin-right: -20rem; + .group:hover .\32xl\:group-hover\:border-red-500 { + border-color: #ef4444; } - .\32xl\:-mb-80 { - margin-bottom: -20rem; + .group:hover .\32xl\:group-hover\:border-red-600 { + border-color: #dc2626; } - .\32xl\:-ml-80 { - margin-left: -20rem; + .group:hover .\32xl\:group-hover\:border-red-700 { + border-color: #b91c1c; } - .\32xl\:-mt-96 { - margin-top: -24rem; + .group:hover .\32xl\:group-hover\:border-red-800 { + border-color: #991b1b; } - .\32xl\:-mr-96 { - margin-right: -24rem; + .group:hover .\32xl\:group-hover\:border-red-900 { + border-color: #7f1d1d; } - .\32xl\:-mb-96 { - margin-bottom: -24rem; + .group:hover .\32xl\:group-hover\:border-yellow-50 { + border-color: #fffbeb; } - .\32xl\:-ml-96 { - margin-left: -24rem; + .group:hover .\32xl\:group-hover\:border-yellow-100 { + border-color: #fef3c7; } - .\32xl\:-mt-px { - margin-top: -1px; + .group:hover .\32xl\:group-hover\:border-yellow-200 { + border-color: #fde68a; } - .\32xl\:-mr-px { - margin-right: -1px; + .group:hover .\32xl\:group-hover\:border-yellow-300 { + border-color: #fcd34d; } - .\32xl\:-mb-px { - margin-bottom: -1px; + .group:hover .\32xl\:group-hover\:border-yellow-400 { + border-color: #fbbf24; } - .\32xl\:-ml-px { - margin-left: -1px; + .group:hover .\32xl\:group-hover\:border-yellow-500 { + border-color: #f59e0b; } - .\32xl\:-mt-0\.5 { - margin-top: -0.125rem; + .group:hover .\32xl\:group-hover\:border-yellow-600 { + border-color: #d97706; } - .\32xl\:-mr-0\.5 { - margin-right: -0.125rem; + .group:hover .\32xl\:group-hover\:border-yellow-700 { + border-color: #b45309; } - .\32xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .group:hover .\32xl\:group-hover\:border-yellow-800 { + border-color: #92400e; } - .\32xl\:-ml-0\.5 { - margin-left: -0.125rem; + .group:hover .\32xl\:group-hover\:border-yellow-900 { + border-color: #78350f; } - .\32xl\:-mt-1\.5 { - margin-top: -0.375rem; + .group:hover .\32xl\:group-hover\:border-green-50 { + border-color: #ecfdf5; } - .\32xl\:-mr-1\.5 { - margin-right: -0.375rem; + .group:hover .\32xl\:group-hover\:border-green-100 { + border-color: #d1fae5; } - .\32xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .group:hover .\32xl\:group-hover\:border-green-200 { + border-color: #a7f3d0; } - .\32xl\:-ml-1\.5 { - margin-left: -0.375rem; + .group:hover .\32xl\:group-hover\:border-green-300 { + border-color: #6ee7b7; } - .\32xl\:-mt-2\.5 { - margin-top: -0.625rem; + .group:hover .\32xl\:group-hover\:border-green-400 { + border-color: #34d399; } - .\32xl\:-mr-2\.5 { - margin-right: -0.625rem; + .group:hover .\32xl\:group-hover\:border-green-500 { + border-color: #10b981; } - .\32xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .group:hover .\32xl\:group-hover\:border-green-600 { + border-color: #059669; } - .\32xl\:-ml-2\.5 { - margin-left: -0.625rem; + .group:hover .\32xl\:group-hover\:border-green-700 { + border-color: #047857; } - .\32xl\:-mt-3\.5 { - margin-top: -0.875rem; + .group:hover .\32xl\:group-hover\:border-green-800 { + border-color: #065f46; } - .\32xl\:-mr-3\.5 { - margin-right: -0.875rem; + .group:hover .\32xl\:group-hover\:border-green-900 { + border-color: #064e3b; } - .\32xl\:-mb-3\.5 { - margin-bottom: -0.875rem; + .group:hover .\32xl\:group-hover\:border-blue-50 { + border-color: #eff6ff; } - .\32xl\:-ml-3\.5 { - margin-left: -0.875rem; + .group:hover .\32xl\:group-hover\:border-blue-100 { + border-color: #dbeafe; } - .\32xl\:max-h-0 { - max-height: 0px; + .group:hover .\32xl\:group-hover\:border-blue-200 { + border-color: #bfdbfe; } - .\32xl\:max-h-1 { - max-height: 0.25rem; + .group:hover .\32xl\:group-hover\:border-blue-300 { + border-color: #93c5fd; } - .\32xl\:max-h-2 { - max-height: 0.5rem; + .group:hover .\32xl\:group-hover\:border-blue-400 { + border-color: #60a5fa; } - .\32xl\:max-h-3 { - max-height: 0.75rem; + .group:hover .\32xl\:group-hover\:border-blue-500 { + border-color: #3b82f6; } - .\32xl\:max-h-4 { - max-height: 1rem; + .group:hover .\32xl\:group-hover\:border-blue-600 { + border-color: #2563eb; } - .\32xl\:max-h-5 { - max-height: 1.25rem; + .group:hover .\32xl\:group-hover\:border-blue-700 { + border-color: #1d4ed8; } - .\32xl\:max-h-6 { - max-height: 1.5rem; + .group:hover .\32xl\:group-hover\:border-blue-800 { + border-color: #1e40af; } - .\32xl\:max-h-7 { - max-height: 1.75rem; + .group:hover .\32xl\:group-hover\:border-blue-900 { + border-color: #1e3a8a; } - .\32xl\:max-h-8 { - max-height: 2rem; + .group:hover .\32xl\:group-hover\:border-indigo-50 { + border-color: #eef2ff; } - .\32xl\:max-h-9 { - max-height: 2.25rem; + .group:hover .\32xl\:group-hover\:border-indigo-100 { + border-color: #e0e7ff; } - .\32xl\:max-h-10 { - max-height: 2.5rem; + .group:hover .\32xl\:group-hover\:border-indigo-200 { + border-color: #c7d2fe; } - .\32xl\:max-h-11 { - max-height: 2.75rem; + .group:hover .\32xl\:group-hover\:border-indigo-300 { + border-color: #a5b4fc; } - .\32xl\:max-h-12 { - max-height: 3rem; + .group:hover .\32xl\:group-hover\:border-indigo-400 { + border-color: #818cf8; } - .\32xl\:max-h-14 { - max-height: 3.5rem; + .group:hover .\32xl\:group-hover\:border-indigo-500 { + border-color: #6366f1; } - .\32xl\:max-h-16 { - max-height: 4rem; + .group:hover .\32xl\:group-hover\:border-indigo-600 { + border-color: #4f46e5; } - .\32xl\:max-h-20 { - max-height: 5rem; + .group:hover .\32xl\:group-hover\:border-indigo-700 { + border-color: #4338ca; } - .\32xl\:max-h-24 { - max-height: 6rem; + .group:hover .\32xl\:group-hover\:border-indigo-800 { + border-color: #3730a3; } - .\32xl\:max-h-28 { - max-height: 7rem; + .group:hover .\32xl\:group-hover\:border-indigo-900 { + border-color: #312e81; } - .\32xl\:max-h-32 { - max-height: 8rem; + .group:hover .\32xl\:group-hover\:border-purple-50 { + border-color: #f5f3ff; } - .\32xl\:max-h-36 { - max-height: 9rem; + .group:hover .\32xl\:group-hover\:border-purple-100 { + border-color: #ede9fe; } - .\32xl\:max-h-40 { - max-height: 10rem; + .group:hover .\32xl\:group-hover\:border-purple-200 { + border-color: #ddd6fe; } - .\32xl\:max-h-44 { - max-height: 11rem; + .group:hover .\32xl\:group-hover\:border-purple-300 { + border-color: #c4b5fd; } - .\32xl\:max-h-48 { - max-height: 12rem; + .group:hover .\32xl\:group-hover\:border-purple-400 { + border-color: #a78bfa; } - .\32xl\:max-h-52 { - max-height: 13rem; + .group:hover .\32xl\:group-hover\:border-purple-500 { + border-color: #8b5cf6; } - .\32xl\:max-h-56 { - max-height: 14rem; + .group:hover .\32xl\:group-hover\:border-purple-600 { + border-color: #7c3aed; } - .\32xl\:max-h-60 { - max-height: 15rem; + .group:hover .\32xl\:group-hover\:border-purple-700 { + border-color: #6d28d9; } - .\32xl\:max-h-64 { - max-height: 16rem; + .group:hover .\32xl\:group-hover\:border-purple-800 { + border-color: #5b21b6; } - .\32xl\:max-h-72 { - max-height: 18rem; + .group:hover .\32xl\:group-hover\:border-purple-900 { + border-color: #4c1d95; } - .\32xl\:max-h-80 { - max-height: 20rem; + .group:hover .\32xl\:group-hover\:border-pink-50 { + border-color: #fdf2f8; } - .\32xl\:max-h-96 { - max-height: 24rem; + .group:hover .\32xl\:group-hover\:border-pink-100 { + border-color: #fce7f3; } - .\32xl\:max-h-px { - max-height: 1px; + .group:hover .\32xl\:group-hover\:border-pink-200 { + border-color: #fbcfe8; } - .\32xl\:max-h-0\.5 { - max-height: 0.125rem; + .group:hover .\32xl\:group-hover\:border-pink-300 { + border-color: #f9a8d4; } - .\32xl\:max-h-1\.5 { - max-height: 0.375rem; + .group:hover .\32xl\:group-hover\:border-pink-400 { + border-color: #f472b6; } - .\32xl\:max-h-2\.5 { - max-height: 0.625rem; + .group:hover .\32xl\:group-hover\:border-pink-500 { + border-color: #ec4899; } - .\32xl\:max-h-3\.5 { - max-height: 0.875rem; + .group:hover .\32xl\:group-hover\:border-pink-600 { + border-color: #db2777; } - .\32xl\:max-h-full { - max-height: 100%; + .group:hover .\32xl\:group-hover\:border-pink-700 { + border-color: #be185d; } - .\32xl\:max-h-screen { - max-height: 100vh; + .group:hover .\32xl\:group-hover\:border-pink-800 { + border-color: #9d174d; } - .\32xl\:max-w-0 { - max-width: 0rem; + .group:hover .\32xl\:group-hover\:border-pink-900 { + border-color: #831843; } - .\32xl\:max-w-none { - max-width: none; + .\32xl\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .\32xl\:max-w-xs { - max-width: 20rem; + .\32xl\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .\32xl\:max-w-sm { - max-width: 24rem; + .\32xl\:focus-within\:border-black:focus-within { + border-color: #000; } - .\32xl\:max-w-md { - max-width: 28rem; + .\32xl\:focus-within\:border-white:focus-within { + border-color: #fff; } - .\32xl\:max-w-lg { - max-width: 32rem; + .\32xl\:focus-within\:border-gray-50:focus-within { + border-color: #f9fafb; } - .\32xl\:max-w-xl { - max-width: 36rem; + .\32xl\:focus-within\:border-gray-100:focus-within { + border-color: #f3f4f6; } - .\32xl\:max-w-2xl { - max-width: 42rem; + .\32xl\:focus-within\:border-gray-200:focus-within { + border-color: #e5e7eb; } - .\32xl\:max-w-3xl { - max-width: 48rem; + .\32xl\:focus-within\:border-gray-300:focus-within { + border-color: #d1d5db; } - .\32xl\:max-w-4xl { - max-width: 56rem; + .\32xl\:focus-within\:border-gray-400:focus-within { + border-color: #9ca3af; } - .\32xl\:max-w-5xl { - max-width: 64rem; + .\32xl\:focus-within\:border-gray-500:focus-within { + border-color: #6b7280; } - .\32xl\:max-w-6xl { - max-width: 72rem; + .\32xl\:focus-within\:border-gray-600:focus-within { + border-color: #4b5563; } - .\32xl\:max-w-7xl { - max-width: 80rem; + .\32xl\:focus-within\:border-gray-700:focus-within { + border-color: #374151; } - .\32xl\:max-w-full { - max-width: 100%; + .\32xl\:focus-within\:border-gray-800:focus-within { + border-color: #1f2937; } - .\32xl\:max-w-min { - max-width: min-content; + .\32xl\:focus-within\:border-gray-900:focus-within { + border-color: #111827; } - .\32xl\:max-w-max { - max-width: max-content; + .\32xl\:focus-within\:border-red-50:focus-within { + border-color: #fef2f2; } - .\32xl\:max-w-prose { - max-width: 65ch; + .\32xl\:focus-within\:border-red-100:focus-within { + border-color: #fee2e2; } - .\32xl\:max-w-screen-sm { - max-width: 640px; + .\32xl\:focus-within\:border-red-200:focus-within { + border-color: #fecaca; } - .\32xl\:max-w-screen-md { - max-width: 768px; + .\32xl\:focus-within\:border-red-300:focus-within { + border-color: #fca5a5; } - .\32xl\:max-w-screen-lg { - max-width: 1024px; + .\32xl\:focus-within\:border-red-400:focus-within { + border-color: #f87171; } - .\32xl\:max-w-screen-xl { - max-width: 1280px; + .\32xl\:focus-within\:border-red-500:focus-within { + border-color: #ef4444; } - .\32xl\:max-w-screen-2xl { - max-width: 1536px; + .\32xl\:focus-within\:border-red-600:focus-within { + border-color: #dc2626; } - .\32xl\:min-h-0 { - min-height: 0px; + .\32xl\:focus-within\:border-red-700:focus-within { + border-color: #b91c1c; } - .\32xl\:min-h-full { - min-height: 100%; + .\32xl\:focus-within\:border-red-800:focus-within { + border-color: #991b1b; } - .\32xl\:min-h-screen { - min-height: 100vh; + .\32xl\:focus-within\:border-red-900:focus-within { + border-color: #7f1d1d; } - .\32xl\:min-w-0 { - min-width: 0px; + .\32xl\:focus-within\:border-yellow-50:focus-within { + border-color: #fffbeb; } - .\32xl\:min-w-full { - min-width: 100%; + .\32xl\:focus-within\:border-yellow-100:focus-within { + border-color: #fef3c7; } - .\32xl\:min-w-min { - min-width: min-content; + .\32xl\:focus-within\:border-yellow-200:focus-within { + border-color: #fde68a; } - .\32xl\:min-w-max { - min-width: max-content; + .\32xl\:focus-within\:border-yellow-300:focus-within { + border-color: #fcd34d; } - .\32xl\:object-contain { - object-fit: contain; + .\32xl\:focus-within\:border-yellow-400:focus-within { + border-color: #fbbf24; } - .\32xl\:object-cover { - object-fit: cover; + .\32xl\:focus-within\:border-yellow-500:focus-within { + border-color: #f59e0b; } - .\32xl\:object-fill { - object-fit: fill; + .\32xl\:focus-within\:border-yellow-600:focus-within { + border-color: #d97706; } - .\32xl\:object-none { - object-fit: none; + .\32xl\:focus-within\:border-yellow-700:focus-within { + border-color: #b45309; } - .\32xl\:object-scale-down { - object-fit: scale-down; + .\32xl\:focus-within\:border-yellow-800:focus-within { + border-color: #92400e; } - .\32xl\:object-bottom { - object-position: bottom; + .\32xl\:focus-within\:border-yellow-900:focus-within { + border-color: #78350f; } - .\32xl\:object-center { - object-position: center; + .\32xl\:focus-within\:border-green-50:focus-within { + border-color: #ecfdf5; } - .\32xl\:object-left { - object-position: left; + .\32xl\:focus-within\:border-green-100:focus-within { + border-color: #d1fae5; } - .\32xl\:object-left-bottom { - object-position: left bottom; + .\32xl\:focus-within\:border-green-200:focus-within { + border-color: #a7f3d0; } - .\32xl\:object-left-top { - object-position: left top; + .\32xl\:focus-within\:border-green-300:focus-within { + border-color: #6ee7b7; } - .\32xl\:object-right { - object-position: right; + .\32xl\:focus-within\:border-green-400:focus-within { + border-color: #34d399; } - .\32xl\:object-right-bottom { - object-position: right bottom; + .\32xl\:focus-within\:border-green-500:focus-within { + border-color: #10b981; } - .\32xl\:object-right-top { - object-position: right top; + .\32xl\:focus-within\:border-green-600:focus-within { + border-color: #059669; } - .\32xl\:object-top { - object-position: top; + .\32xl\:focus-within\:border-green-700:focus-within { + border-color: #047857; } - .\32xl\:opacity-0 { - opacity: 0; + .\32xl\:focus-within\:border-green-800:focus-within { + border-color: #065f46; } - .\32xl\:opacity-5 { - opacity: 0.05; + .\32xl\:focus-within\:border-green-900:focus-within { + border-color: #064e3b; } - .\32xl\:opacity-10 { - opacity: 0.1; + .\32xl\:focus-within\:border-blue-50:focus-within { + border-color: #eff6ff; } - .\32xl\:opacity-20 { - opacity: 0.2; + .\32xl\:focus-within\:border-blue-100:focus-within { + border-color: #dbeafe; } - .\32xl\:opacity-25 { - opacity: 0.25; + .\32xl\:focus-within\:border-blue-200:focus-within { + border-color: #bfdbfe; } - .\32xl\:opacity-30 { - opacity: 0.3; + .\32xl\:focus-within\:border-blue-300:focus-within { + border-color: #93c5fd; } - .\32xl\:opacity-40 { - opacity: 0.4; + .\32xl\:focus-within\:border-blue-400:focus-within { + border-color: #60a5fa; } - .\32xl\:opacity-50 { - opacity: 0.5; + .\32xl\:focus-within\:border-blue-500:focus-within { + border-color: #3b82f6; } - .\32xl\:opacity-60 { - opacity: 0.6; + .\32xl\:focus-within\:border-blue-600:focus-within { + border-color: #2563eb; } - .\32xl\:opacity-70 { - opacity: 0.7; + .\32xl\:focus-within\:border-blue-700:focus-within { + border-color: #1d4ed8; } - .\32xl\:opacity-75 { - opacity: 0.75; + .\32xl\:focus-within\:border-blue-800:focus-within { + border-color: #1e40af; } - .\32xl\:opacity-80 { - opacity: 0.8; + .\32xl\:focus-within\:border-blue-900:focus-within { + border-color: #1e3a8a; } - .\32xl\:opacity-90 { - opacity: 0.9; + .\32xl\:focus-within\:border-indigo-50:focus-within { + border-color: #eef2ff; } - .\32xl\:opacity-95 { - opacity: 0.95; + .\32xl\:focus-within\:border-indigo-100:focus-within { + border-color: #e0e7ff; } - .\32xl\:opacity-100 { - opacity: 1; + .\32xl\:focus-within\:border-indigo-200:focus-within { + border-color: #c7d2fe; } - .group:hover .\32xl\:group-hover\:opacity-0 { - opacity: 0; + .\32xl\:focus-within\:border-indigo-300:focus-within { + border-color: #a5b4fc; } - .group:hover .\32xl\:group-hover\:opacity-5 { - opacity: 0.05; + .\32xl\:focus-within\:border-indigo-400:focus-within { + border-color: #818cf8; } - .group:hover .\32xl\:group-hover\:opacity-10 { - opacity: 0.1; + .\32xl\:focus-within\:border-indigo-500:focus-within { + border-color: #6366f1; } - .group:hover .\32xl\:group-hover\:opacity-20 { - opacity: 0.2; + .\32xl\:focus-within\:border-indigo-600:focus-within { + border-color: #4f46e5; } - .group:hover .\32xl\:group-hover\:opacity-25 { - opacity: 0.25; + .\32xl\:focus-within\:border-indigo-700:focus-within { + border-color: #4338ca; } - .group:hover .\32xl\:group-hover\:opacity-30 { - opacity: 0.3; + .\32xl\:focus-within\:border-indigo-800:focus-within { + border-color: #3730a3; } - .group:hover .\32xl\:group-hover\:opacity-40 { - opacity: 0.4; + .\32xl\:focus-within\:border-indigo-900:focus-within { + border-color: #312e81; } - .group:hover .\32xl\:group-hover\:opacity-50 { - opacity: 0.5; + .\32xl\:focus-within\:border-purple-50:focus-within { + border-color: #f5f3ff; } - .group:hover .\32xl\:group-hover\:opacity-60 { - opacity: 0.6; + .\32xl\:focus-within\:border-purple-100:focus-within { + border-color: #ede9fe; } - .group:hover .\32xl\:group-hover\:opacity-70 { - opacity: 0.7; + .\32xl\:focus-within\:border-purple-200:focus-within { + border-color: #ddd6fe; } - .group:hover .\32xl\:group-hover\:opacity-75 { - opacity: 0.75; + .\32xl\:focus-within\:border-purple-300:focus-within { + border-color: #c4b5fd; } - .group:hover .\32xl\:group-hover\:opacity-80 { - opacity: 0.8; + .\32xl\:focus-within\:border-purple-400:focus-within { + border-color: #a78bfa; } - .group:hover .\32xl\:group-hover\:opacity-90 { - opacity: 0.9; + .\32xl\:focus-within\:border-purple-500:focus-within { + border-color: #8b5cf6; } - .group:hover .\32xl\:group-hover\:opacity-95 { - opacity: 0.95; + .\32xl\:focus-within\:border-purple-600:focus-within { + border-color: #7c3aed; } - .group:hover .\32xl\:group-hover\:opacity-100 { - opacity: 1; + .\32xl\:focus-within\:border-purple-700:focus-within { + border-color: #6d28d9; } - .\32xl\:focus-within\:opacity-0:focus-within { - opacity: 0; + .\32xl\:focus-within\:border-purple-800:focus-within { + border-color: #5b21b6; } - .\32xl\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .\32xl\:focus-within\:border-purple-900:focus-within { + border-color: #4c1d95; } - .\32xl\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .\32xl\:focus-within\:border-pink-50:focus-within { + border-color: #fdf2f8; } - .\32xl\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .\32xl\:focus-within\:border-pink-100:focus-within { + border-color: #fce7f3; } - .\32xl\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .\32xl\:focus-within\:border-pink-200:focus-within { + border-color: #fbcfe8; } - .\32xl\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .\32xl\:focus-within\:border-pink-300:focus-within { + border-color: #f9a8d4; } - .\32xl\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .\32xl\:focus-within\:border-pink-400:focus-within { + border-color: #f472b6; } - .\32xl\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .\32xl\:focus-within\:border-pink-500:focus-within { + border-color: #ec4899; } - .\32xl\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .\32xl\:focus-within\:border-pink-600:focus-within { + border-color: #db2777; } - .\32xl\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .\32xl\:focus-within\:border-pink-700:focus-within { + border-color: #be185d; } - .\32xl\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .\32xl\:focus-within\:border-pink-800:focus-within { + border-color: #9d174d; } - .\32xl\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .\32xl\:focus-within\:border-pink-900:focus-within { + border-color: #831843; } - .\32xl\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .\32xl\:hover\:border-transparent:hover { + border-color: transparent; } - .\32xl\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .\32xl\:hover\:border-current:hover { + border-color: currentColor; } - .\32xl\:focus-within\:opacity-100:focus-within { - opacity: 1; + .\32xl\:hover\:border-black:hover { + border-color: #000; } - .\32xl\:hover\:opacity-0:hover { - opacity: 0; + .\32xl\:hover\:border-white:hover { + border-color: #fff; } - .\32xl\:hover\:opacity-5:hover { - opacity: 0.05; + .\32xl\:hover\:border-gray-50:hover { + border-color: #f9fafb; } - .\32xl\:hover\:opacity-10:hover { - opacity: 0.1; + .\32xl\:hover\:border-gray-100:hover { + border-color: #f3f4f6; } - .\32xl\:hover\:opacity-20:hover { - opacity: 0.2; + .\32xl\:hover\:border-gray-200:hover { + border-color: #e5e7eb; } - .\32xl\:hover\:opacity-25:hover { - opacity: 0.25; + .\32xl\:hover\:border-gray-300:hover { + border-color: #d1d5db; } - .\32xl\:hover\:opacity-30:hover { - opacity: 0.3; + .\32xl\:hover\:border-gray-400:hover { + border-color: #9ca3af; } - .\32xl\:hover\:opacity-40:hover { - opacity: 0.4; + .\32xl\:hover\:border-gray-500:hover { + border-color: #6b7280; } - .\32xl\:hover\:opacity-50:hover { - opacity: 0.5; + .\32xl\:hover\:border-gray-600:hover { + border-color: #4b5563; } - .\32xl\:hover\:opacity-60:hover { - opacity: 0.6; + .\32xl\:hover\:border-gray-700:hover { + border-color: #374151; } - .\32xl\:hover\:opacity-70:hover { - opacity: 0.7; + .\32xl\:hover\:border-gray-800:hover { + border-color: #1f2937; } - .\32xl\:hover\:opacity-75:hover { - opacity: 0.75; + .\32xl\:hover\:border-gray-900:hover { + border-color: #111827; } - .\32xl\:hover\:opacity-80:hover { - opacity: 0.8; + .\32xl\:hover\:border-red-50:hover { + border-color: #fef2f2; } - .\32xl\:hover\:opacity-90:hover { - opacity: 0.9; + .\32xl\:hover\:border-red-100:hover { + border-color: #fee2e2; } - .\32xl\:hover\:opacity-95:hover { - opacity: 0.95; + .\32xl\:hover\:border-red-200:hover { + border-color: #fecaca; } - .\32xl\:hover\:opacity-100:hover { - opacity: 1; + .\32xl\:hover\:border-red-300:hover { + border-color: #fca5a5; } - .\32xl\:focus\:opacity-0:focus { - opacity: 0; + .\32xl\:hover\:border-red-400:hover { + border-color: #f87171; } - .\32xl\:focus\:opacity-5:focus { - opacity: 0.05; + .\32xl\:hover\:border-red-500:hover { + border-color: #ef4444; } - .\32xl\:focus\:opacity-10:focus { - opacity: 0.1; + .\32xl\:hover\:border-red-600:hover { + border-color: #dc2626; } - .\32xl\:focus\:opacity-20:focus { - opacity: 0.2; + .\32xl\:hover\:border-red-700:hover { + border-color: #b91c1c; } - .\32xl\:focus\:opacity-25:focus { - opacity: 0.25; + .\32xl\:hover\:border-red-800:hover { + border-color: #991b1b; } - .\32xl\:focus\:opacity-30:focus { - opacity: 0.3; + .\32xl\:hover\:border-red-900:hover { + border-color: #7f1d1d; } - .\32xl\:focus\:opacity-40:focus { - opacity: 0.4; + .\32xl\:hover\:border-yellow-50:hover { + border-color: #fffbeb; } - .\32xl\:focus\:opacity-50:focus { - opacity: 0.5; + .\32xl\:hover\:border-yellow-100:hover { + border-color: #fef3c7; } - .\32xl\:focus\:opacity-60:focus { - opacity: 0.6; + .\32xl\:hover\:border-yellow-200:hover { + border-color: #fde68a; } - .\32xl\:focus\:opacity-70:focus { - opacity: 0.7; + .\32xl\:hover\:border-yellow-300:hover { + border-color: #fcd34d; } - .\32xl\:focus\:opacity-75:focus { - opacity: 0.75; + .\32xl\:hover\:border-yellow-400:hover { + border-color: #fbbf24; } - .\32xl\:focus\:opacity-80:focus { - opacity: 0.8; + .\32xl\:hover\:border-yellow-500:hover { + border-color: #f59e0b; } - .\32xl\:focus\:opacity-90:focus { - opacity: 0.9; + .\32xl\:hover\:border-yellow-600:hover { + border-color: #d97706; } - .\32xl\:focus\:opacity-95:focus { - opacity: 0.95; + .\32xl\:hover\:border-yellow-700:hover { + border-color: #b45309; } - .\32xl\:focus\:opacity-100:focus { - opacity: 1; + .\32xl\:hover\:border-yellow-800:hover { + border-color: #92400e; } - .\32xl\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .\32xl\:hover\:border-yellow-900:hover { + border-color: #78350f; } - .\32xl\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .\32xl\:hover\:border-green-50:hover { + border-color: #ecfdf5; } - .\32xl\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .\32xl\:hover\:border-green-100:hover { + border-color: #d1fae5; } - .\32xl\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .\32xl\:hover\:border-green-200:hover { + border-color: #a7f3d0; } - .\32xl\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .\32xl\:hover\:border-green-300:hover { + border-color: #6ee7b7; } - .\32xl\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .\32xl\:hover\:border-green-400:hover { + border-color: #34d399; } - .\32xl\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .\32xl\:hover\:border-green-500:hover { + border-color: #10b981; } - .\32xl\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .\32xl\:hover\:border-green-600:hover { + border-color: #059669; } - .\32xl\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .\32xl\:hover\:border-green-700:hover { + border-color: #047857; } - .\32xl\:overflow-auto { - overflow: auto; + .\32xl\:hover\:border-green-800:hover { + border-color: #065f46; } - .\32xl\:overflow-hidden { - overflow: hidden; + .\32xl\:hover\:border-green-900:hover { + border-color: #064e3b; } - .\32xl\:overflow-visible { - overflow: visible; + .\32xl\:hover\:border-blue-50:hover { + border-color: #eff6ff; } - .\32xl\:overflow-scroll { - overflow: scroll; + .\32xl\:hover\:border-blue-100:hover { + border-color: #dbeafe; } - .\32xl\:overflow-x-auto { - overflow-x: auto; + .\32xl\:hover\:border-blue-200:hover { + border-color: #bfdbfe; } - .\32xl\:overflow-y-auto { - overflow-y: auto; + .\32xl\:hover\:border-blue-300:hover { + border-color: #93c5fd; } - .\32xl\:overflow-x-hidden { - overflow-x: hidden; + .\32xl\:hover\:border-blue-400:hover { + border-color: #60a5fa; } - .\32xl\:overflow-y-hidden { - overflow-y: hidden; + .\32xl\:hover\:border-blue-500:hover { + border-color: #3b82f6; } - .\32xl\:overflow-x-visible { - overflow-x: visible; + .\32xl\:hover\:border-blue-600:hover { + border-color: #2563eb; } - .\32xl\:overflow-y-visible { - overflow-y: visible; + .\32xl\:hover\:border-blue-700:hover { + border-color: #1d4ed8; } - .\32xl\:overflow-x-scroll { - overflow-x: scroll; + .\32xl\:hover\:border-blue-800:hover { + border-color: #1e40af; } - .\32xl\:overflow-y-scroll { - overflow-y: scroll; + .\32xl\:hover\:border-blue-900:hover { + border-color: #1e3a8a; } - .\32xl\:overscroll-auto { - overscroll-behavior: auto; + .\32xl\:hover\:border-indigo-50:hover { + border-color: #eef2ff; } - .\32xl\:overscroll-contain { - overscroll-behavior: contain; + .\32xl\:hover\:border-indigo-100:hover { + border-color: #e0e7ff; } - .\32xl\:overscroll-none { - overscroll-behavior: none; + .\32xl\:hover\:border-indigo-200:hover { + border-color: #c7d2fe; } - .\32xl\:overscroll-y-auto { - overscroll-behavior-y: auto; + .\32xl\:hover\:border-indigo-300:hover { + border-color: #a5b4fc; } - .\32xl\:overscroll-y-contain { - overscroll-behavior-y: contain; + .\32xl\:hover\:border-indigo-400:hover { + border-color: #818cf8; } - .\32xl\:overscroll-y-none { - overscroll-behavior-y: none; + .\32xl\:hover\:border-indigo-500:hover { + border-color: #6366f1; } - .\32xl\:overscroll-x-auto { - overscroll-behavior-x: auto; + .\32xl\:hover\:border-indigo-600:hover { + border-color: #4f46e5; } - .\32xl\:overscroll-x-contain { - overscroll-behavior-x: contain; + .\32xl\:hover\:border-indigo-700:hover { + border-color: #4338ca; } - .\32xl\:overscroll-x-none { - overscroll-behavior-x: none; + .\32xl\:hover\:border-indigo-800:hover { + border-color: #3730a3; } - .\32xl\:p-0 { - padding: 0px; + .\32xl\:hover\:border-indigo-900:hover { + border-color: #312e81; } - .\32xl\:p-1 { - padding: 0.25rem; + .\32xl\:hover\:border-purple-50:hover { + border-color: #f5f3ff; } - .\32xl\:p-2 { - padding: 0.5rem; + .\32xl\:hover\:border-purple-100:hover { + border-color: #ede9fe; } - .\32xl\:p-3 { - padding: 0.75rem; + .\32xl\:hover\:border-purple-200:hover { + border-color: #ddd6fe; } - .\32xl\:p-4 { - padding: 1rem; + .\32xl\:hover\:border-purple-300:hover { + border-color: #c4b5fd; } - .\32xl\:p-5 { - padding: 1.25rem; + .\32xl\:hover\:border-purple-400:hover { + border-color: #a78bfa; } - .\32xl\:p-6 { - padding: 1.5rem; + .\32xl\:hover\:border-purple-500:hover { + border-color: #8b5cf6; } - .\32xl\:p-7 { - padding: 1.75rem; + .\32xl\:hover\:border-purple-600:hover { + border-color: #7c3aed; } - .\32xl\:p-8 { - padding: 2rem; + .\32xl\:hover\:border-purple-700:hover { + border-color: #6d28d9; } - .\32xl\:p-9 { - padding: 2.25rem; + .\32xl\:hover\:border-purple-800:hover { + border-color: #5b21b6; } - .\32xl\:p-10 { - padding: 2.5rem; + .\32xl\:hover\:border-purple-900:hover { + border-color: #4c1d95; } - .\32xl\:p-11 { - padding: 2.75rem; + .\32xl\:hover\:border-pink-50:hover { + border-color: #fdf2f8; } - .\32xl\:p-12 { - padding: 3rem; + .\32xl\:hover\:border-pink-100:hover { + border-color: #fce7f3; } - .\32xl\:p-14 { - padding: 3.5rem; + .\32xl\:hover\:border-pink-200:hover { + border-color: #fbcfe8; } - .\32xl\:p-16 { - padding: 4rem; + .\32xl\:hover\:border-pink-300:hover { + border-color: #f9a8d4; } - .\32xl\:p-20 { - padding: 5rem; + .\32xl\:hover\:border-pink-400:hover { + border-color: #f472b6; } - .\32xl\:p-24 { - padding: 6rem; + .\32xl\:hover\:border-pink-500:hover { + border-color: #ec4899; } - .\32xl\:p-28 { - padding: 7rem; + .\32xl\:hover\:border-pink-600:hover { + border-color: #db2777; } - .\32xl\:p-32 { - padding: 8rem; + .\32xl\:hover\:border-pink-700:hover { + border-color: #be185d; } - .\32xl\:p-36 { - padding: 9rem; + .\32xl\:hover\:border-pink-800:hover { + border-color: #9d174d; } - .\32xl\:p-40 { - padding: 10rem; + .\32xl\:hover\:border-pink-900:hover { + border-color: #831843; } - .\32xl\:p-44 { - padding: 11rem; + .\32xl\:focus\:border-transparent:focus { + border-color: transparent; } - .\32xl\:p-48 { - padding: 12rem; + .\32xl\:focus\:border-current:focus { + border-color: currentColor; } - .\32xl\:p-52 { - padding: 13rem; + .\32xl\:focus\:border-black:focus { + border-color: #000; } - .\32xl\:p-56 { - padding: 14rem; + .\32xl\:focus\:border-white:focus { + border-color: #fff; } - .\32xl\:p-60 { - padding: 15rem; + .\32xl\:focus\:border-gray-50:focus { + border-color: #f9fafb; } - .\32xl\:p-64 { - padding: 16rem; + .\32xl\:focus\:border-gray-100:focus { + border-color: #f3f4f6; } - .\32xl\:p-72 { - padding: 18rem; + .\32xl\:focus\:border-gray-200:focus { + border-color: #e5e7eb; } - .\32xl\:p-80 { - padding: 20rem; + .\32xl\:focus\:border-gray-300:focus { + border-color: #d1d5db; } - .\32xl\:p-96 { - padding: 24rem; + .\32xl\:focus\:border-gray-400:focus { + border-color: #9ca3af; } - .\32xl\:p-px { - padding: 1px; + .\32xl\:focus\:border-gray-500:focus { + border-color: #6b7280; } - .\32xl\:p-0\.5 { - padding: 0.125rem; + .\32xl\:focus\:border-gray-600:focus { + border-color: #4b5563; } - .\32xl\:p-1\.5 { - padding: 0.375rem; + .\32xl\:focus\:border-gray-700:focus { + border-color: #374151; } - .\32xl\:p-2\.5 { - padding: 0.625rem; + .\32xl\:focus\:border-gray-800:focus { + border-color: #1f2937; } - .\32xl\:p-3\.5 { - padding: 0.875rem; + .\32xl\:focus\:border-gray-900:focus { + border-color: #111827; } - .\32xl\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .\32xl\:focus\:border-red-50:focus { + border-color: #fef2f2; } - .\32xl\:px-0 { - padding-left: 0px; - padding-right: 0px; + .\32xl\:focus\:border-red-100:focus { + border-color: #fee2e2; } - .\32xl\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .\32xl\:focus\:border-red-200:focus { + border-color: #fecaca; } - .\32xl\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .\32xl\:focus\:border-red-300:focus { + border-color: #fca5a5; } - .\32xl\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .\32xl\:focus\:border-red-400:focus { + border-color: #f87171; } - .\32xl\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .\32xl\:focus\:border-red-500:focus { + border-color: #ef4444; } - .\32xl\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .\32xl\:focus\:border-red-600:focus { + border-color: #dc2626; } - .\32xl\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .\32xl\:focus\:border-red-700:focus { + border-color: #b91c1c; } - .\32xl\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .\32xl\:focus\:border-red-800:focus { + border-color: #991b1b; } - .\32xl\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .\32xl\:focus\:border-red-900:focus { + border-color: #7f1d1d; } - .\32xl\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .\32xl\:focus\:border-yellow-50:focus { + border-color: #fffbeb; } - .\32xl\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .\32xl\:focus\:border-yellow-100:focus { + border-color: #fef3c7; } - .\32xl\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .\32xl\:focus\:border-yellow-200:focus { + border-color: #fde68a; } - .\32xl\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .\32xl\:focus\:border-yellow-300:focus { + border-color: #fcd34d; } - .\32xl\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .\32xl\:focus\:border-yellow-400:focus { + border-color: #fbbf24; } - .\32xl\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .\32xl\:focus\:border-yellow-500:focus { + border-color: #f59e0b; } - .\32xl\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .\32xl\:focus\:border-yellow-600:focus { + border-color: #d97706; } - .\32xl\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .\32xl\:focus\:border-yellow-700:focus { + border-color: #b45309; } - .\32xl\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .\32xl\:focus\:border-yellow-800:focus { + border-color: #92400e; } - .\32xl\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .\32xl\:focus\:border-yellow-900:focus { + border-color: #78350f; } - .\32xl\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .\32xl\:focus\:border-green-50:focus { + border-color: #ecfdf5; } - .\32xl\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .\32xl\:focus\:border-green-100:focus { + border-color: #d1fae5; } - .\32xl\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .\32xl\:focus\:border-green-200:focus { + border-color: #a7f3d0; } - .\32xl\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .\32xl\:focus\:border-green-300:focus { + border-color: #6ee7b7; } - .\32xl\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .\32xl\:focus\:border-green-400:focus { + border-color: #34d399; } - .\32xl\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .\32xl\:focus\:border-green-500:focus { + border-color: #10b981; } - .\32xl\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .\32xl\:focus\:border-green-600:focus { + border-color: #059669; } - .\32xl\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .\32xl\:focus\:border-green-700:focus { + border-color: #047857; } - .\32xl\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .\32xl\:focus\:border-green-800:focus { + border-color: #065f46; } - .\32xl\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .\32xl\:focus\:border-green-900:focus { + border-color: #064e3b; } - .\32xl\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .\32xl\:focus\:border-blue-50:focus { + border-color: #eff6ff; } - .\32xl\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .\32xl\:focus\:border-blue-100:focus { + border-color: #dbeafe; } - .\32xl\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .\32xl\:focus\:border-blue-200:focus { + border-color: #bfdbfe; } - .\32xl\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .\32xl\:focus\:border-blue-300:focus { + border-color: #93c5fd; } - .\32xl\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .\32xl\:focus\:border-blue-400:focus { + border-color: #60a5fa; } - .\32xl\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .\32xl\:focus\:border-blue-500:focus { + border-color: #3b82f6; } - .\32xl\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .\32xl\:focus\:border-blue-600:focus { + border-color: #2563eb; } - .\32xl\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .\32xl\:focus\:border-blue-700:focus { + border-color: #1d4ed8; } - .\32xl\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .\32xl\:focus\:border-blue-800:focus { + border-color: #1e40af; } - .\32xl\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .\32xl\:focus\:border-blue-900:focus { + border-color: #1e3a8a; } - .\32xl\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .\32xl\:focus\:border-indigo-50:focus { + border-color: #eef2ff; } - .\32xl\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .\32xl\:focus\:border-indigo-100:focus { + border-color: #e0e7ff; } - .\32xl\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .\32xl\:focus\:border-indigo-200:focus { + border-color: #c7d2fe; } - .\32xl\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .\32xl\:focus\:border-indigo-300:focus { + border-color: #a5b4fc; } - .\32xl\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .\32xl\:focus\:border-indigo-400:focus { + border-color: #818cf8; } - .\32xl\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .\32xl\:focus\:border-indigo-500:focus { + border-color: #6366f1; } - .\32xl\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .\32xl\:focus\:border-indigo-600:focus { + border-color: #4f46e5; } - .\32xl\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .\32xl\:focus\:border-indigo-700:focus { + border-color: #4338ca; } - .\32xl\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .\32xl\:focus\:border-indigo-800:focus { + border-color: #3730a3; } - .\32xl\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .\32xl\:focus\:border-indigo-900:focus { + border-color: #312e81; } - .\32xl\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .\32xl\:focus\:border-purple-50:focus { + border-color: #f5f3ff; } - .\32xl\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .\32xl\:focus\:border-purple-100:focus { + border-color: #ede9fe; } - .\32xl\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .\32xl\:focus\:border-purple-200:focus { + border-color: #ddd6fe; } - .\32xl\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .\32xl\:focus\:border-purple-300:focus { + border-color: #c4b5fd; } - .\32xl\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .\32xl\:focus\:border-purple-400:focus { + border-color: #a78bfa; } - .\32xl\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .\32xl\:focus\:border-purple-500:focus { + border-color: #8b5cf6; } - .\32xl\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .\32xl\:focus\:border-purple-600:focus { + border-color: #7c3aed; } - .\32xl\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .\32xl\:focus\:border-purple-700:focus { + border-color: #6d28d9; } - .\32xl\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .\32xl\:focus\:border-purple-800:focus { + border-color: #5b21b6; } - .\32xl\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .\32xl\:focus\:border-purple-900:focus { + border-color: #4c1d95; } - .\32xl\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .\32xl\:focus\:border-pink-50:focus { + border-color: #fdf2f8; } - .\32xl\:px-px { - padding-left: 1px; - padding-right: 1px; + .\32xl\:focus\:border-pink-100:focus { + border-color: #fce7f3; } - .\32xl\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .\32xl\:focus\:border-pink-200:focus { + border-color: #fbcfe8; } - .\32xl\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .\32xl\:focus\:border-pink-300:focus { + border-color: #f9a8d4; } - .\32xl\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .\32xl\:focus\:border-pink-400:focus { + border-color: #f472b6; } - .\32xl\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .\32xl\:focus\:border-pink-500:focus { + border-color: #ec4899; } - .\32xl\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .\32xl\:focus\:border-pink-600:focus { + border-color: #db2777; } - .\32xl\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .\32xl\:focus\:border-pink-700:focus { + border-color: #be185d; } - .\32xl\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .\32xl\:focus\:border-pink-800:focus { + border-color: #9d174d; } - .\32xl\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .\32xl\:focus\:border-pink-900:focus { + border-color: #831843; } - .\32xl\:pt-0 { - padding-top: 0px; + .\32xl\:bg-transparent { + background-color: transparent; } - .\32xl\:pr-0 { - padding-right: 0px; + .\32xl\:bg-current { + background-color: currentColor; } - .\32xl\:pb-0 { - padding-bottom: 0px; + .\32xl\:bg-black { + background-color: #000; } - .\32xl\:pl-0 { - padding-left: 0px; + .\32xl\:bg-white { + background-color: #fff; } - .\32xl\:pt-1 { - padding-top: 0.25rem; + .\32xl\:bg-gray-50 { + background-color: #f9fafb; } - .\32xl\:pr-1 { - padding-right: 0.25rem; + .\32xl\:bg-gray-100 { + background-color: #f3f4f6; } - .\32xl\:pb-1 { - padding-bottom: 0.25rem; + .\32xl\:bg-gray-200 { + background-color: #e5e7eb; } - .\32xl\:pl-1 { - padding-left: 0.25rem; + .\32xl\:bg-gray-300 { + background-color: #d1d5db; } - .\32xl\:pt-2 { - padding-top: 0.5rem; + .\32xl\:bg-gray-400 { + background-color: #9ca3af; } - .\32xl\:pr-2 { - padding-right: 0.5rem; + .\32xl\:bg-gray-500 { + background-color: #6b7280; } - .\32xl\:pb-2 { - padding-bottom: 0.5rem; + .\32xl\:bg-gray-600 { + background-color: #4b5563; } - .\32xl\:pl-2 { - padding-left: 0.5rem; + .\32xl\:bg-gray-700 { + background-color: #374151; } - .\32xl\:pt-3 { - padding-top: 0.75rem; + .\32xl\:bg-gray-800 { + background-color: #1f2937; } - .\32xl\:pr-3 { - padding-right: 0.75rem; + .\32xl\:bg-gray-900 { + background-color: #111827; } - .\32xl\:pb-3 { - padding-bottom: 0.75rem; + .\32xl\:bg-red-50 { + background-color: #fef2f2; } - .\32xl\:pl-3 { - padding-left: 0.75rem; + .\32xl\:bg-red-100 { + background-color: #fee2e2; } - .\32xl\:pt-4 { - padding-top: 1rem; + .\32xl\:bg-red-200 { + background-color: #fecaca; } - .\32xl\:pr-4 { - padding-right: 1rem; + .\32xl\:bg-red-300 { + background-color: #fca5a5; } - .\32xl\:pb-4 { - padding-bottom: 1rem; + .\32xl\:bg-red-400 { + background-color: #f87171; } - .\32xl\:pl-4 { - padding-left: 1rem; + .\32xl\:bg-red-500 { + background-color: #ef4444; } - .\32xl\:pt-5 { - padding-top: 1.25rem; + .\32xl\:bg-red-600 { + background-color: #dc2626; } - .\32xl\:pr-5 { - padding-right: 1.25rem; + .\32xl\:bg-red-700 { + background-color: #b91c1c; } - .\32xl\:pb-5 { - padding-bottom: 1.25rem; + .\32xl\:bg-red-800 { + background-color: #991b1b; } - .\32xl\:pl-5 { - padding-left: 1.25rem; + .\32xl\:bg-red-900 { + background-color: #7f1d1d; } - .\32xl\:pt-6 { - padding-top: 1.5rem; + .\32xl\:bg-yellow-50 { + background-color: #fffbeb; } - .\32xl\:pr-6 { - padding-right: 1.5rem; + .\32xl\:bg-yellow-100 { + background-color: #fef3c7; } - .\32xl\:pb-6 { - padding-bottom: 1.5rem; + .\32xl\:bg-yellow-200 { + background-color: #fde68a; } - .\32xl\:pl-6 { - padding-left: 1.5rem; + .\32xl\:bg-yellow-300 { + background-color: #fcd34d; } - .\32xl\:pt-7 { - padding-top: 1.75rem; + .\32xl\:bg-yellow-400 { + background-color: #fbbf24; } - .\32xl\:pr-7 { - padding-right: 1.75rem; + .\32xl\:bg-yellow-500 { + background-color: #f59e0b; } - .\32xl\:pb-7 { - padding-bottom: 1.75rem; + .\32xl\:bg-yellow-600 { + background-color: #d97706; } - .\32xl\:pl-7 { - padding-left: 1.75rem; + .\32xl\:bg-yellow-700 { + background-color: #b45309; } - .\32xl\:pt-8 { - padding-top: 2rem; + .\32xl\:bg-yellow-800 { + background-color: #92400e; } - .\32xl\:pr-8 { - padding-right: 2rem; + .\32xl\:bg-yellow-900 { + background-color: #78350f; } - .\32xl\:pb-8 { - padding-bottom: 2rem; + .\32xl\:bg-green-50 { + background-color: #ecfdf5; } - .\32xl\:pl-8 { - padding-left: 2rem; + .\32xl\:bg-green-100 { + background-color: #d1fae5; } - .\32xl\:pt-9 { - padding-top: 2.25rem; + .\32xl\:bg-green-200 { + background-color: #a7f3d0; } - .\32xl\:pr-9 { - padding-right: 2.25rem; + .\32xl\:bg-green-300 { + background-color: #6ee7b7; } - .\32xl\:pb-9 { - padding-bottom: 2.25rem; + .\32xl\:bg-green-400 { + background-color: #34d399; } - .\32xl\:pl-9 { - padding-left: 2.25rem; + .\32xl\:bg-green-500 { + background-color: #10b981; } - .\32xl\:pt-10 { - padding-top: 2.5rem; + .\32xl\:bg-green-600 { + background-color: #059669; } - .\32xl\:pr-10 { - padding-right: 2.5rem; + .\32xl\:bg-green-700 { + background-color: #047857; } - .\32xl\:pb-10 { - padding-bottom: 2.5rem; + .\32xl\:bg-green-800 { + background-color: #065f46; } - .\32xl\:pl-10 { - padding-left: 2.5rem; + .\32xl\:bg-green-900 { + background-color: #064e3b; } - .\32xl\:pt-11 { - padding-top: 2.75rem; + .\32xl\:bg-blue-50 { + background-color: #eff6ff; } - .\32xl\:pr-11 { - padding-right: 2.75rem; + .\32xl\:bg-blue-100 { + background-color: #dbeafe; } - .\32xl\:pb-11 { - padding-bottom: 2.75rem; + .\32xl\:bg-blue-200 { + background-color: #bfdbfe; } - .\32xl\:pl-11 { - padding-left: 2.75rem; + .\32xl\:bg-blue-300 { + background-color: #93c5fd; } - .\32xl\:pt-12 { - padding-top: 3rem; + .\32xl\:bg-blue-400 { + background-color: #60a5fa; } - .\32xl\:pr-12 { - padding-right: 3rem; + .\32xl\:bg-blue-500 { + background-color: #3b82f6; } - .\32xl\:pb-12 { - padding-bottom: 3rem; + .\32xl\:bg-blue-600 { + background-color: #2563eb; } - .\32xl\:pl-12 { - padding-left: 3rem; + .\32xl\:bg-blue-700 { + background-color: #1d4ed8; } - .\32xl\:pt-14 { - padding-top: 3.5rem; + .\32xl\:bg-blue-800 { + background-color: #1e40af; } - .\32xl\:pr-14 { - padding-right: 3.5rem; + .\32xl\:bg-blue-900 { + background-color: #1e3a8a; } - .\32xl\:pb-14 { - padding-bottom: 3.5rem; + .\32xl\:bg-indigo-50 { + background-color: #eef2ff; } - .\32xl\:pl-14 { - padding-left: 3.5rem; + .\32xl\:bg-indigo-100 { + background-color: #e0e7ff; } - .\32xl\:pt-16 { - padding-top: 4rem; + .\32xl\:bg-indigo-200 { + background-color: #c7d2fe; } - .\32xl\:pr-16 { - padding-right: 4rem; + .\32xl\:bg-indigo-300 { + background-color: #a5b4fc; } - .\32xl\:pb-16 { - padding-bottom: 4rem; + .\32xl\:bg-indigo-400 { + background-color: #818cf8; } - .\32xl\:pl-16 { - padding-left: 4rem; + .\32xl\:bg-indigo-500 { + background-color: #6366f1; } - .\32xl\:pt-20 { - padding-top: 5rem; + .\32xl\:bg-indigo-600 { + background-color: #4f46e5; } - .\32xl\:pr-20 { - padding-right: 5rem; + .\32xl\:bg-indigo-700 { + background-color: #4338ca; } - .\32xl\:pb-20 { - padding-bottom: 5rem; + .\32xl\:bg-indigo-800 { + background-color: #3730a3; } - .\32xl\:pl-20 { - padding-left: 5rem; + .\32xl\:bg-indigo-900 { + background-color: #312e81; } - .\32xl\:pt-24 { - padding-top: 6rem; + .\32xl\:bg-purple-50 { + background-color: #f5f3ff; } - .\32xl\:pr-24 { - padding-right: 6rem; + .\32xl\:bg-purple-100 { + background-color: #ede9fe; } - .\32xl\:pb-24 { - padding-bottom: 6rem; + .\32xl\:bg-purple-200 { + background-color: #ddd6fe; } - .\32xl\:pl-24 { - padding-left: 6rem; + .\32xl\:bg-purple-300 { + background-color: #c4b5fd; } - .\32xl\:pt-28 { - padding-top: 7rem; + .\32xl\:bg-purple-400 { + background-color: #a78bfa; } - .\32xl\:pr-28 { - padding-right: 7rem; + .\32xl\:bg-purple-500 { + background-color: #8b5cf6; } - .\32xl\:pb-28 { - padding-bottom: 7rem; + .\32xl\:bg-purple-600 { + background-color: #7c3aed; } - .\32xl\:pl-28 { - padding-left: 7rem; + .\32xl\:bg-purple-700 { + background-color: #6d28d9; } - .\32xl\:pt-32 { - padding-top: 8rem; + .\32xl\:bg-purple-800 { + background-color: #5b21b6; } - .\32xl\:pr-32 { - padding-right: 8rem; + .\32xl\:bg-purple-900 { + background-color: #4c1d95; } - .\32xl\:pb-32 { - padding-bottom: 8rem; + .\32xl\:bg-pink-50 { + background-color: #fdf2f8; } - .\32xl\:pl-32 { - padding-left: 8rem; + .\32xl\:bg-pink-100 { + background-color: #fce7f3; } - .\32xl\:pt-36 { - padding-top: 9rem; + .\32xl\:bg-pink-200 { + background-color: #fbcfe8; } - .\32xl\:pr-36 { - padding-right: 9rem; + .\32xl\:bg-pink-300 { + background-color: #f9a8d4; } - .\32xl\:pb-36 { - padding-bottom: 9rem; + .\32xl\:bg-pink-400 { + background-color: #f472b6; } - .\32xl\:pl-36 { - padding-left: 9rem; + .\32xl\:bg-pink-500 { + background-color: #ec4899; } - .\32xl\:pt-40 { - padding-top: 10rem; + .\32xl\:bg-pink-600 { + background-color: #db2777; } - .\32xl\:pr-40 { - padding-right: 10rem; + .\32xl\:bg-pink-700 { + background-color: #be185d; } - .\32xl\:pb-40 { - padding-bottom: 10rem; + .\32xl\:bg-pink-800 { + background-color: #9d174d; } - .\32xl\:pl-40 { - padding-left: 10rem; + .\32xl\:bg-pink-900 { + background-color: #831843; } - .\32xl\:pt-44 { - padding-top: 11rem; + .group:hover .\32xl\:group-hover\:bg-transparent { + background-color: transparent; } - .\32xl\:pr-44 { - padding-right: 11rem; + .group:hover .\32xl\:group-hover\:bg-current { + background-color: currentColor; } - .\32xl\:pb-44 { - padding-bottom: 11rem; + .group:hover .\32xl\:group-hover\:bg-black { + background-color: #000; } - .\32xl\:pl-44 { - padding-left: 11rem; + .group:hover .\32xl\:group-hover\:bg-white { + background-color: #fff; } - .\32xl\:pt-48 { - padding-top: 12rem; + .group:hover .\32xl\:group-hover\:bg-gray-50 { + background-color: #f9fafb; } - .\32xl\:pr-48 { - padding-right: 12rem; + .group:hover .\32xl\:group-hover\:bg-gray-100 { + background-color: #f3f4f6; } - .\32xl\:pb-48 { - padding-bottom: 12rem; + .group:hover .\32xl\:group-hover\:bg-gray-200 { + background-color: #e5e7eb; } - .\32xl\:pl-48 { - padding-left: 12rem; + .group:hover .\32xl\:group-hover\:bg-gray-300 { + background-color: #d1d5db; } - .\32xl\:pt-52 { - padding-top: 13rem; + .group:hover .\32xl\:group-hover\:bg-gray-400 { + background-color: #9ca3af; } - .\32xl\:pr-52 { - padding-right: 13rem; + .group:hover .\32xl\:group-hover\:bg-gray-500 { + background-color: #6b7280; } - .\32xl\:pb-52 { - padding-bottom: 13rem; + .group:hover .\32xl\:group-hover\:bg-gray-600 { + background-color: #4b5563; } - .\32xl\:pl-52 { - padding-left: 13rem; + .group:hover .\32xl\:group-hover\:bg-gray-700 { + background-color: #374151; } - .\32xl\:pt-56 { - padding-top: 14rem; + .group:hover .\32xl\:group-hover\:bg-gray-800 { + background-color: #1f2937; } - .\32xl\:pr-56 { - padding-right: 14rem; + .group:hover .\32xl\:group-hover\:bg-gray-900 { + background-color: #111827; } - .\32xl\:pb-56 { - padding-bottom: 14rem; + .group:hover .\32xl\:group-hover\:bg-red-50 { + background-color: #fef2f2; } - .\32xl\:pl-56 { - padding-left: 14rem; + .group:hover .\32xl\:group-hover\:bg-red-100 { + background-color: #fee2e2; } - .\32xl\:pt-60 { - padding-top: 15rem; + .group:hover .\32xl\:group-hover\:bg-red-200 { + background-color: #fecaca; } - .\32xl\:pr-60 { - padding-right: 15rem; + .group:hover .\32xl\:group-hover\:bg-red-300 { + background-color: #fca5a5; } - .\32xl\:pb-60 { - padding-bottom: 15rem; + .group:hover .\32xl\:group-hover\:bg-red-400 { + background-color: #f87171; } - .\32xl\:pl-60 { - padding-left: 15rem; + .group:hover .\32xl\:group-hover\:bg-red-500 { + background-color: #ef4444; } - .\32xl\:pt-64 { - padding-top: 16rem; + .group:hover .\32xl\:group-hover\:bg-red-600 { + background-color: #dc2626; } - .\32xl\:pr-64 { - padding-right: 16rem; + .group:hover .\32xl\:group-hover\:bg-red-700 { + background-color: #b91c1c; } - .\32xl\:pb-64 { - padding-bottom: 16rem; + .group:hover .\32xl\:group-hover\:bg-red-800 { + background-color: #991b1b; } - .\32xl\:pl-64 { - padding-left: 16rem; + .group:hover .\32xl\:group-hover\:bg-red-900 { + background-color: #7f1d1d; } - .\32xl\:pt-72 { - padding-top: 18rem; + .group:hover .\32xl\:group-hover\:bg-yellow-50 { + background-color: #fffbeb; } - .\32xl\:pr-72 { - padding-right: 18rem; + .group:hover .\32xl\:group-hover\:bg-yellow-100 { + background-color: #fef3c7; } - .\32xl\:pb-72 { - padding-bottom: 18rem; + .group:hover .\32xl\:group-hover\:bg-yellow-200 { + background-color: #fde68a; } - .\32xl\:pl-72 { - padding-left: 18rem; + .group:hover .\32xl\:group-hover\:bg-yellow-300 { + background-color: #fcd34d; } - .\32xl\:pt-80 { - padding-top: 20rem; + .group:hover .\32xl\:group-hover\:bg-yellow-400 { + background-color: #fbbf24; } - .\32xl\:pr-80 { - padding-right: 20rem; + .group:hover .\32xl\:group-hover\:bg-yellow-500 { + background-color: #f59e0b; } - .\32xl\:pb-80 { - padding-bottom: 20rem; + .group:hover .\32xl\:group-hover\:bg-yellow-600 { + background-color: #d97706; } - .\32xl\:pl-80 { - padding-left: 20rem; + .group:hover .\32xl\:group-hover\:bg-yellow-700 { + background-color: #b45309; } - .\32xl\:pt-96 { - padding-top: 24rem; + .group:hover .\32xl\:group-hover\:bg-yellow-800 { + background-color: #92400e; } - .\32xl\:pr-96 { - padding-right: 24rem; + .group:hover .\32xl\:group-hover\:bg-yellow-900 { + background-color: #78350f; } - .\32xl\:pb-96 { - padding-bottom: 24rem; + .group:hover .\32xl\:group-hover\:bg-green-50 { + background-color: #ecfdf5; } - .\32xl\:pl-96 { - padding-left: 24rem; + .group:hover .\32xl\:group-hover\:bg-green-100 { + background-color: #d1fae5; } - .\32xl\:pt-px { - padding-top: 1px; + .group:hover .\32xl\:group-hover\:bg-green-200 { + background-color: #a7f3d0; } - .\32xl\:pr-px { - padding-right: 1px; + .group:hover .\32xl\:group-hover\:bg-green-300 { + background-color: #6ee7b7; } - .\32xl\:pb-px { - padding-bottom: 1px; + .group:hover .\32xl\:group-hover\:bg-green-400 { + background-color: #34d399; } - .\32xl\:pl-px { - padding-left: 1px; + .group:hover .\32xl\:group-hover\:bg-green-500 { + background-color: #10b981; } - .\32xl\:pt-0\.5 { - padding-top: 0.125rem; + .group:hover .\32xl\:group-hover\:bg-green-600 { + background-color: #059669; } - .\32xl\:pr-0\.5 { - padding-right: 0.125rem; + .group:hover .\32xl\:group-hover\:bg-green-700 { + background-color: #047857; } - .\32xl\:pb-0\.5 { - padding-bottom: 0.125rem; + .group:hover .\32xl\:group-hover\:bg-green-800 { + background-color: #065f46; } - .\32xl\:pl-0\.5 { - padding-left: 0.125rem; + .group:hover .\32xl\:group-hover\:bg-green-900 { + background-color: #064e3b; } - .\32xl\:pt-1\.5 { - padding-top: 0.375rem; + .group:hover .\32xl\:group-hover\:bg-blue-50 { + background-color: #eff6ff; } - .\32xl\:pr-1\.5 { - padding-right: 0.375rem; + .group:hover .\32xl\:group-hover\:bg-blue-100 { + background-color: #dbeafe; } - .\32xl\:pb-1\.5 { - padding-bottom: 0.375rem; + .group:hover .\32xl\:group-hover\:bg-blue-200 { + background-color: #bfdbfe; } - .\32xl\:pl-1\.5 { - padding-left: 0.375rem; + .group:hover .\32xl\:group-hover\:bg-blue-300 { + background-color: #93c5fd; } - .\32xl\:pt-2\.5 { - padding-top: 0.625rem; + .group:hover .\32xl\:group-hover\:bg-blue-400 { + background-color: #60a5fa; } - .\32xl\:pr-2\.5 { - padding-right: 0.625rem; + .group:hover .\32xl\:group-hover\:bg-blue-500 { + background-color: #3b82f6; } - .\32xl\:pb-2\.5 { - padding-bottom: 0.625rem; + .group:hover .\32xl\:group-hover\:bg-blue-600 { + background-color: #2563eb; } - .\32xl\:pl-2\.5 { - padding-left: 0.625rem; + .group:hover .\32xl\:group-hover\:bg-blue-700 { + background-color: #1d4ed8; } - .\32xl\:pt-3\.5 { - padding-top: 0.875rem; + .group:hover .\32xl\:group-hover\:bg-blue-800 { + background-color: #1e40af; } - .\32xl\:pr-3\.5 { - padding-right: 0.875rem; + .group:hover .\32xl\:group-hover\:bg-blue-900 { + background-color: #1e3a8a; } - .\32xl\:pb-3\.5 { - padding-bottom: 0.875rem; + .group:hover .\32xl\:group-hover\:bg-indigo-50 { + background-color: #eef2ff; } - .\32xl\:pl-3\.5 { - padding-left: 0.875rem; + .group:hover .\32xl\:group-hover\:bg-indigo-100 { + background-color: #e0e7ff; } - .\32xl\:placeholder-transparent::placeholder { - color: transparent; + .group:hover .\32xl\:group-hover\:bg-indigo-200 { + background-color: #c7d2fe; } - .\32xl\:placeholder-current::placeholder { - color: currentColor; + .group:hover .\32xl\:group-hover\:bg-indigo-300 { + background-color: #a5b4fc; } - .\32xl\:placeholder-black::placeholder { - color: #000; + .group:hover .\32xl\:group-hover\:bg-indigo-400 { + background-color: #818cf8; } - .\32xl\:placeholder-white::placeholder { - color: #fff; + .group:hover .\32xl\:group-hover\:bg-indigo-500 { + background-color: #6366f1; } - .\32xl\:placeholder-gray-50::placeholder { - color: #f9fafb; + .group:hover .\32xl\:group-hover\:bg-indigo-600 { + background-color: #4f46e5; } - .\32xl\:placeholder-gray-100::placeholder { - color: #f3f4f6; + .group:hover .\32xl\:group-hover\:bg-indigo-700 { + background-color: #4338ca; } - .\32xl\:placeholder-gray-200::placeholder { - color: #e5e7eb; + .group:hover .\32xl\:group-hover\:bg-indigo-800 { + background-color: #3730a3; } - .\32xl\:placeholder-gray-300::placeholder { - color: #d1d5db; + .group:hover .\32xl\:group-hover\:bg-indigo-900 { + background-color: #312e81; } - .\32xl\:placeholder-gray-400::placeholder { - color: #9ca3af; + .group:hover .\32xl\:group-hover\:bg-purple-50 { + background-color: #f5f3ff; } - .\32xl\:placeholder-gray-500::placeholder { - color: #6b7280; + .group:hover .\32xl\:group-hover\:bg-purple-100 { + background-color: #ede9fe; } - .\32xl\:placeholder-gray-600::placeholder { - color: #4b5563; + .group:hover .\32xl\:group-hover\:bg-purple-200 { + background-color: #ddd6fe; } - .\32xl\:placeholder-gray-700::placeholder { - color: #374151; + .group:hover .\32xl\:group-hover\:bg-purple-300 { + background-color: #c4b5fd; } - .\32xl\:placeholder-gray-800::placeholder { - color: #1f2937; + .group:hover .\32xl\:group-hover\:bg-purple-400 { + background-color: #a78bfa; } - .\32xl\:placeholder-gray-900::placeholder { - color: #111827; + .group:hover .\32xl\:group-hover\:bg-purple-500 { + background-color: #8b5cf6; } - .\32xl\:placeholder-red-50::placeholder { - color: #fef2f2; + .group:hover .\32xl\:group-hover\:bg-purple-600 { + background-color: #7c3aed; } - .\32xl\:placeholder-red-100::placeholder { - color: #fee2e2; + .group:hover .\32xl\:group-hover\:bg-purple-700 { + background-color: #6d28d9; } - .\32xl\:placeholder-red-200::placeholder { - color: #fecaca; + .group:hover .\32xl\:group-hover\:bg-purple-800 { + background-color: #5b21b6; } - .\32xl\:placeholder-red-300::placeholder { - color: #fca5a5; + .group:hover .\32xl\:group-hover\:bg-purple-900 { + background-color: #4c1d95; } - .\32xl\:placeholder-red-400::placeholder { - color: #f87171; + .group:hover .\32xl\:group-hover\:bg-pink-50 { + background-color: #fdf2f8; } - .\32xl\:placeholder-red-500::placeholder { - color: #ef4444; + .group:hover .\32xl\:group-hover\:bg-pink-100 { + background-color: #fce7f3; } - .\32xl\:placeholder-red-600::placeholder { - color: #dc2626; + .group:hover .\32xl\:group-hover\:bg-pink-200 { + background-color: #fbcfe8; } - .\32xl\:placeholder-red-700::placeholder { - color: #b91c1c; + .group:hover .\32xl\:group-hover\:bg-pink-300 { + background-color: #f9a8d4; } - .\32xl\:placeholder-red-800::placeholder { - color: #991b1b; + .group:hover .\32xl\:group-hover\:bg-pink-400 { + background-color: #f472b6; } - .\32xl\:placeholder-red-900::placeholder { - color: #7f1d1d; + .group:hover .\32xl\:group-hover\:bg-pink-500 { + background-color: #ec4899; } - .\32xl\:placeholder-yellow-50::placeholder { - color: #fffbeb; + .group:hover .\32xl\:group-hover\:bg-pink-600 { + background-color: #db2777; } - .\32xl\:placeholder-yellow-100::placeholder { - color: #fef3c7; + .group:hover .\32xl\:group-hover\:bg-pink-700 { + background-color: #be185d; } - .\32xl\:placeholder-yellow-200::placeholder { - color: #fde68a; + .group:hover .\32xl\:group-hover\:bg-pink-800 { + background-color: #9d174d; } - .\32xl\:placeholder-yellow-300::placeholder { - color: #fcd34d; + .group:hover .\32xl\:group-hover\:bg-pink-900 { + background-color: #831843; } - .\32xl\:placeholder-yellow-400::placeholder { - color: #fbbf24; + .\32xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .\32xl\:placeholder-yellow-500::placeholder { - color: #f59e0b; + .\32xl\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .\32xl\:placeholder-yellow-600::placeholder { - color: #d97706; + .\32xl\:focus-within\:bg-black:focus-within { + background-color: #000; } - .\32xl\:placeholder-yellow-700::placeholder { - color: #b45309; + .\32xl\:focus-within\:bg-white:focus-within { + background-color: #fff; } - .\32xl\:placeholder-yellow-800::placeholder { - color: #92400e; + .\32xl\:focus-within\:bg-gray-50:focus-within { + background-color: #f9fafb; } - .\32xl\:placeholder-yellow-900::placeholder { - color: #78350f; + .\32xl\:focus-within\:bg-gray-100:focus-within { + background-color: #f3f4f6; } - .\32xl\:placeholder-green-50::placeholder { - color: #ecfdf5; + .\32xl\:focus-within\:bg-gray-200:focus-within { + background-color: #e5e7eb; } - .\32xl\:placeholder-green-100::placeholder { - color: #d1fae5; + .\32xl\:focus-within\:bg-gray-300:focus-within { + background-color: #d1d5db; } - .\32xl\:placeholder-green-200::placeholder { - color: #a7f3d0; + .\32xl\:focus-within\:bg-gray-400:focus-within { + background-color: #9ca3af; } - .\32xl\:placeholder-green-300::placeholder { - color: #6ee7b7; + .\32xl\:focus-within\:bg-gray-500:focus-within { + background-color: #6b7280; } - .\32xl\:placeholder-green-400::placeholder { - color: #34d399; + .\32xl\:focus-within\:bg-gray-600:focus-within { + background-color: #4b5563; } - .\32xl\:placeholder-green-500::placeholder { - color: #10b981; + .\32xl\:focus-within\:bg-gray-700:focus-within { + background-color: #374151; } - .\32xl\:placeholder-green-600::placeholder { - color: #059669; + .\32xl\:focus-within\:bg-gray-800:focus-within { + background-color: #1f2937; } - .\32xl\:placeholder-green-700::placeholder { - color: #047857; + .\32xl\:focus-within\:bg-gray-900:focus-within { + background-color: #111827; } - .\32xl\:placeholder-green-800::placeholder { - color: #065f46; + .\32xl\:focus-within\:bg-red-50:focus-within { + background-color: #fef2f2; } - .\32xl\:placeholder-green-900::placeholder { - color: #064e3b; + .\32xl\:focus-within\:bg-red-100:focus-within { + background-color: #fee2e2; } - .\32xl\:placeholder-blue-50::placeholder { - color: #eff6ff; + .\32xl\:focus-within\:bg-red-200:focus-within { + background-color: #fecaca; } - .\32xl\:placeholder-blue-100::placeholder { - color: #dbeafe; + .\32xl\:focus-within\:bg-red-300:focus-within { + background-color: #fca5a5; } - .\32xl\:placeholder-blue-200::placeholder { - color: #bfdbfe; + .\32xl\:focus-within\:bg-red-400:focus-within { + background-color: #f87171; } - .\32xl\:placeholder-blue-300::placeholder { - color: #93c5fd; + .\32xl\:focus-within\:bg-red-500:focus-within { + background-color: #ef4444; } - .\32xl\:placeholder-blue-400::placeholder { - color: #60a5fa; + .\32xl\:focus-within\:bg-red-600:focus-within { + background-color: #dc2626; } - .\32xl\:placeholder-blue-500::placeholder { - color: #3b82f6; + .\32xl\:focus-within\:bg-red-700:focus-within { + background-color: #b91c1c; } - .\32xl\:placeholder-blue-600::placeholder { - color: #2563eb; + .\32xl\:focus-within\:bg-red-800:focus-within { + background-color: #991b1b; } - .\32xl\:placeholder-blue-700::placeholder { - color: #1d4ed8; + .\32xl\:focus-within\:bg-red-900:focus-within { + background-color: #7f1d1d; } - .\32xl\:placeholder-blue-800::placeholder { - color: #1e40af; + .\32xl\:focus-within\:bg-yellow-50:focus-within { + background-color: #fffbeb; } - .\32xl\:placeholder-blue-900::placeholder { - color: #1e3a8a; + .\32xl\:focus-within\:bg-yellow-100:focus-within { + background-color: #fef3c7; } - .\32xl\:placeholder-indigo-50::placeholder { - color: #eef2ff; + .\32xl\:focus-within\:bg-yellow-200:focus-within { + background-color: #fde68a; } - .\32xl\:placeholder-indigo-100::placeholder { - color: #e0e7ff; + .\32xl\:focus-within\:bg-yellow-300:focus-within { + background-color: #fcd34d; } - .\32xl\:placeholder-indigo-200::placeholder { - color: #c7d2fe; + .\32xl\:focus-within\:bg-yellow-400:focus-within { + background-color: #fbbf24; } - .\32xl\:placeholder-indigo-300::placeholder { - color: #a5b4fc; + .\32xl\:focus-within\:bg-yellow-500:focus-within { + background-color: #f59e0b; } - .\32xl\:placeholder-indigo-400::placeholder { - color: #818cf8; + .\32xl\:focus-within\:bg-yellow-600:focus-within { + background-color: #d97706; } - .\32xl\:placeholder-indigo-500::placeholder { - color: #6366f1; + .\32xl\:focus-within\:bg-yellow-700:focus-within { + background-color: #b45309; } - .\32xl\:placeholder-indigo-600::placeholder { - color: #4f46e5; + .\32xl\:focus-within\:bg-yellow-800:focus-within { + background-color: #92400e; } - .\32xl\:placeholder-indigo-700::placeholder { - color: #4338ca; + .\32xl\:focus-within\:bg-yellow-900:focus-within { + background-color: #78350f; } - .\32xl\:placeholder-indigo-800::placeholder { - color: #3730a3; + .\32xl\:focus-within\:bg-green-50:focus-within { + background-color: #ecfdf5; } - .\32xl\:placeholder-indigo-900::placeholder { - color: #312e81; + .\32xl\:focus-within\:bg-green-100:focus-within { + background-color: #d1fae5; } - .\32xl\:placeholder-purple-50::placeholder { - color: #f5f3ff; + .\32xl\:focus-within\:bg-green-200:focus-within { + background-color: #a7f3d0; } - .\32xl\:placeholder-purple-100::placeholder { - color: #ede9fe; + .\32xl\:focus-within\:bg-green-300:focus-within { + background-color: #6ee7b7; } - .\32xl\:placeholder-purple-200::placeholder { - color: #ddd6fe; + .\32xl\:focus-within\:bg-green-400:focus-within { + background-color: #34d399; } - .\32xl\:placeholder-purple-300::placeholder { - color: #c4b5fd; + .\32xl\:focus-within\:bg-green-500:focus-within { + background-color: #10b981; } - .\32xl\:placeholder-purple-400::placeholder { - color: #a78bfa; + .\32xl\:focus-within\:bg-green-600:focus-within { + background-color: #059669; } - .\32xl\:placeholder-purple-500::placeholder { - color: #8b5cf6; + .\32xl\:focus-within\:bg-green-700:focus-within { + background-color: #047857; } - .\32xl\:placeholder-purple-600::placeholder { - color: #7c3aed; + .\32xl\:focus-within\:bg-green-800:focus-within { + background-color: #065f46; } - .\32xl\:placeholder-purple-700::placeholder { - color: #6d28d9; + .\32xl\:focus-within\:bg-green-900:focus-within { + background-color: #064e3b; } - .\32xl\:placeholder-purple-800::placeholder { - color: #5b21b6; + .\32xl\:focus-within\:bg-blue-50:focus-within { + background-color: #eff6ff; } - .\32xl\:placeholder-purple-900::placeholder { - color: #4c1d95; + .\32xl\:focus-within\:bg-blue-100:focus-within { + background-color: #dbeafe; } - .\32xl\:placeholder-pink-50::placeholder { - color: #fdf2f8; + .\32xl\:focus-within\:bg-blue-200:focus-within { + background-color: #bfdbfe; } - .\32xl\:placeholder-pink-100::placeholder { - color: #fce7f3; + .\32xl\:focus-within\:bg-blue-300:focus-within { + background-color: #93c5fd; } - .\32xl\:placeholder-pink-200::placeholder { - color: #fbcfe8; + .\32xl\:focus-within\:bg-blue-400:focus-within { + background-color: #60a5fa; } - .\32xl\:placeholder-pink-300::placeholder { - color: #f9a8d4; + .\32xl\:focus-within\:bg-blue-500:focus-within { + background-color: #3b82f6; } - .\32xl\:placeholder-pink-400::placeholder { - color: #f472b6; + .\32xl\:focus-within\:bg-blue-600:focus-within { + background-color: #2563eb; } - .\32xl\:placeholder-pink-500::placeholder { - color: #ec4899; + .\32xl\:focus-within\:bg-blue-700:focus-within { + background-color: #1d4ed8; } - .\32xl\:placeholder-pink-600::placeholder { - color: #db2777; + .\32xl\:focus-within\:bg-blue-800:focus-within { + background-color: #1e40af; } - .\32xl\:placeholder-pink-700::placeholder { - color: #be185d; + .\32xl\:focus-within\:bg-blue-900:focus-within { + background-color: #1e3a8a; } - .\32xl\:placeholder-pink-800::placeholder { - color: #9d174d; + .\32xl\:focus-within\:bg-indigo-50:focus-within { + background-color: #eef2ff; } - .\32xl\:placeholder-pink-900::placeholder { - color: #831843; + .\32xl\:focus-within\:bg-indigo-100:focus-within { + background-color: #e0e7ff; } - .\32xl\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .\32xl\:focus-within\:bg-indigo-200:focus-within { + background-color: #c7d2fe; } - .\32xl\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .\32xl\:focus-within\:bg-indigo-300:focus-within { + background-color: #a5b4fc; } - .\32xl\:focus\:placeholder-black:focus::placeholder { - color: #000; + .\32xl\:focus-within\:bg-indigo-400:focus-within { + background-color: #818cf8; } - .\32xl\:focus\:placeholder-white:focus::placeholder { - color: #fff; + .\32xl\:focus-within\:bg-indigo-500:focus-within { + background-color: #6366f1; } - .\32xl\:focus\:placeholder-gray-50:focus::placeholder { - color: #f9fafb; + .\32xl\:focus-within\:bg-indigo-600:focus-within { + background-color: #4f46e5; } - .\32xl\:focus\:placeholder-gray-100:focus::placeholder { - color: #f3f4f6; + .\32xl\:focus-within\:bg-indigo-700:focus-within { + background-color: #4338ca; } - .\32xl\:focus\:placeholder-gray-200:focus::placeholder { - color: #e5e7eb; + .\32xl\:focus-within\:bg-indigo-800:focus-within { + background-color: #3730a3; } - .\32xl\:focus\:placeholder-gray-300:focus::placeholder { - color: #d1d5db; + .\32xl\:focus-within\:bg-indigo-900:focus-within { + background-color: #312e81; } - .\32xl\:focus\:placeholder-gray-400:focus::placeholder { - color: #9ca3af; + .\32xl\:focus-within\:bg-purple-50:focus-within { + background-color: #f5f3ff; } - .\32xl\:focus\:placeholder-gray-500:focus::placeholder { - color: #6b7280; + .\32xl\:focus-within\:bg-purple-100:focus-within { + background-color: #ede9fe; } - .\32xl\:focus\:placeholder-gray-600:focus::placeholder { - color: #4b5563; + .\32xl\:focus-within\:bg-purple-200:focus-within { + background-color: #ddd6fe; } - .\32xl\:focus\:placeholder-gray-700:focus::placeholder { - color: #374151; + .\32xl\:focus-within\:bg-purple-300:focus-within { + background-color: #c4b5fd; } - .\32xl\:focus\:placeholder-gray-800:focus::placeholder { - color: #1f2937; + .\32xl\:focus-within\:bg-purple-400:focus-within { + background-color: #a78bfa; } - .\32xl\:focus\:placeholder-gray-900:focus::placeholder { - color: #111827; + .\32xl\:focus-within\:bg-purple-500:focus-within { + background-color: #8b5cf6; } - .\32xl\:focus\:placeholder-red-50:focus::placeholder { - color: #fef2f2; + .\32xl\:focus-within\:bg-purple-600:focus-within { + background-color: #7c3aed; } - .\32xl\:focus\:placeholder-red-100:focus::placeholder { - color: #fee2e2; + .\32xl\:focus-within\:bg-purple-700:focus-within { + background-color: #6d28d9; } - .\32xl\:focus\:placeholder-red-200:focus::placeholder { - color: #fecaca; + .\32xl\:focus-within\:bg-purple-800:focus-within { + background-color: #5b21b6; } - .\32xl\:focus\:placeholder-red-300:focus::placeholder { - color: #fca5a5; + .\32xl\:focus-within\:bg-purple-900:focus-within { + background-color: #4c1d95; } - .\32xl\:focus\:placeholder-red-400:focus::placeholder { - color: #f87171; + .\32xl\:focus-within\:bg-pink-50:focus-within { + background-color: #fdf2f8; } - .\32xl\:focus\:placeholder-red-500:focus::placeholder { - color: #ef4444; + .\32xl\:focus-within\:bg-pink-100:focus-within { + background-color: #fce7f3; } - .\32xl\:focus\:placeholder-red-600:focus::placeholder { - color: #dc2626; + .\32xl\:focus-within\:bg-pink-200:focus-within { + background-color: #fbcfe8; } - .\32xl\:focus\:placeholder-red-700:focus::placeholder { - color: #b91c1c; + .\32xl\:focus-within\:bg-pink-300:focus-within { + background-color: #f9a8d4; } - .\32xl\:focus\:placeholder-red-800:focus::placeholder { - color: #991b1b; + .\32xl\:focus-within\:bg-pink-400:focus-within { + background-color: #f472b6; } - .\32xl\:focus\:placeholder-red-900:focus::placeholder { - color: #7f1d1d; + .\32xl\:focus-within\:bg-pink-500:focus-within { + background-color: #ec4899; } - .\32xl\:focus\:placeholder-yellow-50:focus::placeholder { - color: #fffbeb; + .\32xl\:focus-within\:bg-pink-600:focus-within { + background-color: #db2777; } - .\32xl\:focus\:placeholder-yellow-100:focus::placeholder { - color: #fef3c7; + .\32xl\:focus-within\:bg-pink-700:focus-within { + background-color: #be185d; } - .\32xl\:focus\:placeholder-yellow-200:focus::placeholder { - color: #fde68a; + .\32xl\:focus-within\:bg-pink-800:focus-within { + background-color: #9d174d; } - .\32xl\:focus\:placeholder-yellow-300:focus::placeholder { - color: #fcd34d; + .\32xl\:focus-within\:bg-pink-900:focus-within { + background-color: #831843; } - .\32xl\:focus\:placeholder-yellow-400:focus::placeholder { - color: #fbbf24; + .\32xl\:hover\:bg-transparent:hover { + background-color: transparent; } - .\32xl\:focus\:placeholder-yellow-500:focus::placeholder { - color: #f59e0b; + .\32xl\:hover\:bg-current:hover { + background-color: currentColor; } - .\32xl\:focus\:placeholder-yellow-600:focus::placeholder { - color: #d97706; + .\32xl\:hover\:bg-black:hover { + background-color: #000; } - .\32xl\:focus\:placeholder-yellow-700:focus::placeholder { - color: #b45309; + .\32xl\:hover\:bg-white:hover { + background-color: #fff; } - .\32xl\:focus\:placeholder-yellow-800:focus::placeholder { - color: #92400e; + .\32xl\:hover\:bg-gray-50:hover { + background-color: #f9fafb; } - .\32xl\:focus\:placeholder-yellow-900:focus::placeholder { - color: #78350f; + .\32xl\:hover\:bg-gray-100:hover { + background-color: #f3f4f6; } - .\32xl\:focus\:placeholder-green-50:focus::placeholder { - color: #ecfdf5; + .\32xl\:hover\:bg-gray-200:hover { + background-color: #e5e7eb; } - .\32xl\:focus\:placeholder-green-100:focus::placeholder { - color: #d1fae5; + .\32xl\:hover\:bg-gray-300:hover { + background-color: #d1d5db; } - .\32xl\:focus\:placeholder-green-200:focus::placeholder { - color: #a7f3d0; + .\32xl\:hover\:bg-gray-400:hover { + background-color: #9ca3af; } - .\32xl\:focus\:placeholder-green-300:focus::placeholder { - color: #6ee7b7; + .\32xl\:hover\:bg-gray-500:hover { + background-color: #6b7280; } - .\32xl\:focus\:placeholder-green-400:focus::placeholder { - color: #34d399; + .\32xl\:hover\:bg-gray-600:hover { + background-color: #4b5563; } - .\32xl\:focus\:placeholder-green-500:focus::placeholder { - color: #10b981; + .\32xl\:hover\:bg-gray-700:hover { + background-color: #374151; } - .\32xl\:focus\:placeholder-green-600:focus::placeholder { - color: #059669; + .\32xl\:hover\:bg-gray-800:hover { + background-color: #1f2937; } - .\32xl\:focus\:placeholder-green-700:focus::placeholder { - color: #047857; + .\32xl\:hover\:bg-gray-900:hover { + background-color: #111827; } - .\32xl\:focus\:placeholder-green-800:focus::placeholder { - color: #065f46; + .\32xl\:hover\:bg-red-50:hover { + background-color: #fef2f2; } - .\32xl\:focus\:placeholder-green-900:focus::placeholder { - color: #064e3b; + .\32xl\:hover\:bg-red-100:hover { + background-color: #fee2e2; } - .\32xl\:focus\:placeholder-blue-50:focus::placeholder { - color: #eff6ff; + .\32xl\:hover\:bg-red-200:hover { + background-color: #fecaca; } - .\32xl\:focus\:placeholder-blue-100:focus::placeholder { - color: #dbeafe; + .\32xl\:hover\:bg-red-300:hover { + background-color: #fca5a5; } - .\32xl\:focus\:placeholder-blue-200:focus::placeholder { - color: #bfdbfe; + .\32xl\:hover\:bg-red-400:hover { + background-color: #f87171; } - .\32xl\:focus\:placeholder-blue-300:focus::placeholder { - color: #93c5fd; + .\32xl\:hover\:bg-red-500:hover { + background-color: #ef4444; } - .\32xl\:focus\:placeholder-blue-400:focus::placeholder { - color: #60a5fa; + .\32xl\:hover\:bg-red-600:hover { + background-color: #dc2626; } - .\32xl\:focus\:placeholder-blue-500:focus::placeholder { - color: #3b82f6; + .\32xl\:hover\:bg-red-700:hover { + background-color: #b91c1c; } - .\32xl\:focus\:placeholder-blue-600:focus::placeholder { - color: #2563eb; + .\32xl\:hover\:bg-red-800:hover { + background-color: #991b1b; } - .\32xl\:focus\:placeholder-blue-700:focus::placeholder { - color: #1d4ed8; + .\32xl\:hover\:bg-red-900:hover { + background-color: #7f1d1d; } - .\32xl\:focus\:placeholder-blue-800:focus::placeholder { - color: #1e40af; + .\32xl\:hover\:bg-yellow-50:hover { + background-color: #fffbeb; } - .\32xl\:focus\:placeholder-blue-900:focus::placeholder { - color: #1e3a8a; + .\32xl\:hover\:bg-yellow-100:hover { + background-color: #fef3c7; } - .\32xl\:focus\:placeholder-indigo-50:focus::placeholder { - color: #eef2ff; + .\32xl\:hover\:bg-yellow-200:hover { + background-color: #fde68a; } - .\32xl\:focus\:placeholder-indigo-100:focus::placeholder { - color: #e0e7ff; + .\32xl\:hover\:bg-yellow-300:hover { + background-color: #fcd34d; } - .\32xl\:focus\:placeholder-indigo-200:focus::placeholder { - color: #c7d2fe; + .\32xl\:hover\:bg-yellow-400:hover { + background-color: #fbbf24; } - .\32xl\:focus\:placeholder-indigo-300:focus::placeholder { - color: #a5b4fc; + .\32xl\:hover\:bg-yellow-500:hover { + background-color: #f59e0b; } - .\32xl\:focus\:placeholder-indigo-400:focus::placeholder { - color: #818cf8; + .\32xl\:hover\:bg-yellow-600:hover { + background-color: #d97706; } - .\32xl\:focus\:placeholder-indigo-500:focus::placeholder { - color: #6366f1; + .\32xl\:hover\:bg-yellow-700:hover { + background-color: #b45309; } - .\32xl\:focus\:placeholder-indigo-600:focus::placeholder { - color: #4f46e5; + .\32xl\:hover\:bg-yellow-800:hover { + background-color: #92400e; } - .\32xl\:focus\:placeholder-indigo-700:focus::placeholder { - color: #4338ca; + .\32xl\:hover\:bg-yellow-900:hover { + background-color: #78350f; } - .\32xl\:focus\:placeholder-indigo-800:focus::placeholder { - color: #3730a3; + .\32xl\:hover\:bg-green-50:hover { + background-color: #ecfdf5; } - .\32xl\:focus\:placeholder-indigo-900:focus::placeholder { - color: #312e81; + .\32xl\:hover\:bg-green-100:hover { + background-color: #d1fae5; } - .\32xl\:focus\:placeholder-purple-50:focus::placeholder { - color: #f5f3ff; + .\32xl\:hover\:bg-green-200:hover { + background-color: #a7f3d0; } - .\32xl\:focus\:placeholder-purple-100:focus::placeholder { - color: #ede9fe; + .\32xl\:hover\:bg-green-300:hover { + background-color: #6ee7b7; } - .\32xl\:focus\:placeholder-purple-200:focus::placeholder { - color: #ddd6fe; + .\32xl\:hover\:bg-green-400:hover { + background-color: #34d399; } - .\32xl\:focus\:placeholder-purple-300:focus::placeholder { - color: #c4b5fd; + .\32xl\:hover\:bg-green-500:hover { + background-color: #10b981; } - .\32xl\:focus\:placeholder-purple-400:focus::placeholder { - color: #a78bfa; + .\32xl\:hover\:bg-green-600:hover { + background-color: #059669; } - .\32xl\:focus\:placeholder-purple-500:focus::placeholder { - color: #8b5cf6; + .\32xl\:hover\:bg-green-700:hover { + background-color: #047857; } - .\32xl\:focus\:placeholder-purple-600:focus::placeholder { - color: #7c3aed; + .\32xl\:hover\:bg-green-800:hover { + background-color: #065f46; } - .\32xl\:focus\:placeholder-purple-700:focus::placeholder { - color: #6d28d9; + .\32xl\:hover\:bg-green-900:hover { + background-color: #064e3b; } - .\32xl\:focus\:placeholder-purple-800:focus::placeholder { - color: #5b21b6; + .\32xl\:hover\:bg-blue-50:hover { + background-color: #eff6ff; } - .\32xl\:focus\:placeholder-purple-900:focus::placeholder { - color: #4c1d95; + .\32xl\:hover\:bg-blue-100:hover { + background-color: #dbeafe; } - .\32xl\:focus\:placeholder-pink-50:focus::placeholder { - color: #fdf2f8; + .\32xl\:hover\:bg-blue-200:hover { + background-color: #bfdbfe; } - .\32xl\:focus\:placeholder-pink-100:focus::placeholder { - color: #fce7f3; + .\32xl\:hover\:bg-blue-300:hover { + background-color: #93c5fd; } - .\32xl\:focus\:placeholder-pink-200:focus::placeholder { - color: #fbcfe8; + .\32xl\:hover\:bg-blue-400:hover { + background-color: #60a5fa; } - .\32xl\:focus\:placeholder-pink-300:focus::placeholder { - color: #f9a8d4; + .\32xl\:hover\:bg-blue-500:hover { + background-color: #3b82f6; } - .\32xl\:focus\:placeholder-pink-400:focus::placeholder { - color: #f472b6; + .\32xl\:hover\:bg-blue-600:hover { + background-color: #2563eb; } - .\32xl\:focus\:placeholder-pink-500:focus::placeholder { - color: #ec4899; + .\32xl\:hover\:bg-blue-700:hover { + background-color: #1d4ed8; } - .\32xl\:focus\:placeholder-pink-600:focus::placeholder { - color: #db2777; + .\32xl\:hover\:bg-blue-800:hover { + background-color: #1e40af; } - .\32xl\:focus\:placeholder-pink-700:focus::placeholder { - color: #be185d; + .\32xl\:hover\:bg-blue-900:hover { + background-color: #1e3a8a; } - .\32xl\:focus\:placeholder-pink-800:focus::placeholder { - color: #9d174d; + .\32xl\:hover\:bg-indigo-50:hover { + background-color: #eef2ff; } - .\32xl\:focus\:placeholder-pink-900:focus::placeholder { - color: #831843; + .\32xl\:hover\:bg-indigo-100:hover { + background-color: #e0e7ff; } - .\32xl\:pointer-events-none { - pointer-events: none; + .\32xl\:hover\:bg-indigo-200:hover { + background-color: #c7d2fe; } - .\32xl\:pointer-events-auto { - pointer-events: auto; + .\32xl\:hover\:bg-indigo-300:hover { + background-color: #a5b4fc; } - .\32xl\:static { - position: static; + .\32xl\:hover\:bg-indigo-400:hover { + background-color: #818cf8; } - .\32xl\:fixed { - position: fixed; + .\32xl\:hover\:bg-indigo-500:hover { + background-color: #6366f1; } - .\32xl\:absolute { - position: absolute; + .\32xl\:hover\:bg-indigo-600:hover { + background-color: #4f46e5; } - .\32xl\:relative { - position: relative; + .\32xl\:hover\:bg-indigo-700:hover { + background-color: #4338ca; } - .\32xl\:sticky { - position: sticky; + .\32xl\:hover\:bg-indigo-800:hover { + background-color: #3730a3; } - .\32xl\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .\32xl\:hover\:bg-indigo-900:hover { + background-color: #312e81; } - .\32xl\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .\32xl\:hover\:bg-purple-50:hover { + background-color: #f5f3ff; } - .\32xl\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .\32xl\:hover\:bg-purple-100:hover { + background-color: #ede9fe; } - .\32xl\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .\32xl\:hover\:bg-purple-200:hover { + background-color: #ddd6fe; } - .\32xl\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .\32xl\:hover\:bg-purple-300:hover { + background-color: #c4b5fd; } - .\32xl\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .\32xl\:hover\:bg-purple-400:hover { + background-color: #a78bfa; } - .\32xl\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .\32xl\:hover\:bg-purple-500:hover { + background-color: #8b5cf6; } - .\32xl\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .\32xl\:hover\:bg-purple-600:hover { + background-color: #7c3aed; } - .\32xl\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .\32xl\:hover\:bg-purple-700:hover { + background-color: #6d28d9; } - .\32xl\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .\32xl\:hover\:bg-purple-800:hover { + background-color: #5b21b6; } - .\32xl\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .\32xl\:hover\:bg-purple-900:hover { + background-color: #4c1d95; } - .\32xl\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .\32xl\:hover\:bg-pink-50:hover { + background-color: #fdf2f8; } - .\32xl\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .\32xl\:hover\:bg-pink-100:hover { + background-color: #fce7f3; } - .\32xl\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .\32xl\:hover\:bg-pink-200:hover { + background-color: #fbcfe8; } - .\32xl\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .\32xl\:hover\:bg-pink-300:hover { + background-color: #f9a8d4; } - .\32xl\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .\32xl\:hover\:bg-pink-400:hover { + background-color: #f472b6; } - .\32xl\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .\32xl\:hover\:bg-pink-500:hover { + background-color: #ec4899; } - .\32xl\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .\32xl\:hover\:bg-pink-600:hover { + background-color: #db2777; } - .\32xl\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .\32xl\:hover\:bg-pink-700:hover { + background-color: #be185d; } - .\32xl\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .\32xl\:hover\:bg-pink-800:hover { + background-color: #9d174d; } - .\32xl\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .\32xl\:hover\:bg-pink-900:hover { + background-color: #831843; } - .\32xl\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .\32xl\:focus\:bg-transparent:focus { + background-color: transparent; } - .\32xl\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .\32xl\:focus\:bg-current:focus { + background-color: currentColor; } - .\32xl\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .\32xl\:focus\:bg-black:focus { + background-color: #000; } - .\32xl\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .\32xl\:focus\:bg-white:focus { + background-color: #fff; } - .\32xl\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .\32xl\:focus\:bg-gray-50:focus { + background-color: #f9fafb; } - .\32xl\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .\32xl\:focus\:bg-gray-100:focus { + background-color: #f3f4f6; } - .\32xl\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .\32xl\:focus\:bg-gray-200:focus { + background-color: #e5e7eb; } - .\32xl\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .\32xl\:focus\:bg-gray-300:focus { + background-color: #d1d5db; } - .\32xl\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .\32xl\:focus\:bg-gray-400:focus { + background-color: #9ca3af; } - .\32xl\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .\32xl\:focus\:bg-gray-500:focus { + background-color: #6b7280; } - .\32xl\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .\32xl\:focus\:bg-gray-600:focus { + background-color: #4b5563; } - .\32xl\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .\32xl\:focus\:bg-gray-700:focus { + background-color: #374151; } - .\32xl\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .\32xl\:focus\:bg-gray-800:focus { + background-color: #1f2937; } - .\32xl\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .\32xl\:focus\:bg-gray-900:focus { + background-color: #111827; } - .\32xl\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .\32xl\:focus\:bg-red-50:focus { + background-color: #fef2f2; } - .\32xl\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .\32xl\:focus\:bg-red-100:focus { + background-color: #fee2e2; } - .\32xl\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .\32xl\:focus\:bg-red-200:focus { + background-color: #fecaca; } - .\32xl\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .\32xl\:focus\:bg-red-300:focus { + background-color: #fca5a5; } - .\32xl\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .\32xl\:focus\:bg-red-400:focus { + background-color: #f87171; } - .\32xl\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .\32xl\:focus\:bg-red-500:focus { + background-color: #ef4444; } - .\32xl\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .\32xl\:focus\:bg-red-600:focus { + background-color: #dc2626; } - .\32xl\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .\32xl\:focus\:bg-red-700:focus { + background-color: #b91c1c; } - .\32xl\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .\32xl\:focus\:bg-red-800:focus { + background-color: #991b1b; } - .\32xl\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .\32xl\:focus\:bg-red-900:focus { + background-color: #7f1d1d; } - .\32xl\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .\32xl\:focus\:bg-yellow-50:focus { + background-color: #fffbeb; } - .\32xl\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .\32xl\:focus\:bg-yellow-100:focus { + background-color: #fef3c7; } - .\32xl\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .\32xl\:focus\:bg-yellow-200:focus { + background-color: #fde68a; } - .\32xl\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .\32xl\:focus\:bg-yellow-300:focus { + background-color: #fcd34d; } - .\32xl\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .\32xl\:focus\:bg-yellow-400:focus { + background-color: #fbbf24; } - .\32xl\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .\32xl\:focus\:bg-yellow-500:focus { + background-color: #f59e0b; } - .\32xl\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .\32xl\:focus\:bg-yellow-600:focus { + background-color: #d97706; } - .\32xl\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .\32xl\:focus\:bg-yellow-700:focus { + background-color: #b45309; } - .\32xl\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .\32xl\:focus\:bg-yellow-800:focus { + background-color: #92400e; } - .\32xl\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .\32xl\:focus\:bg-yellow-900:focus { + background-color: #78350f; } - .\32xl\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .\32xl\:focus\:bg-green-50:focus { + background-color: #ecfdf5; } - .\32xl\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .\32xl\:focus\:bg-green-100:focus { + background-color: #d1fae5; } - .\32xl\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .\32xl\:focus\:bg-green-200:focus { + background-color: #a7f3d0; } - .\32xl\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .\32xl\:focus\:bg-green-300:focus { + background-color: #6ee7b7; } - .\32xl\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .\32xl\:focus\:bg-green-400:focus { + background-color: #34d399; } - .\32xl\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .\32xl\:focus\:bg-green-500:focus { + background-color: #10b981; } - .\32xl\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .\32xl\:focus\:bg-green-600:focus { + background-color: #059669; } - .\32xl\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .\32xl\:focus\:bg-green-700:focus { + background-color: #047857; } - .\32xl\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .\32xl\:focus\:bg-green-800:focus { + background-color: #065f46; } - .\32xl\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .\32xl\:focus\:bg-green-900:focus { + background-color: #064e3b; } - .\32xl\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .\32xl\:focus\:bg-blue-50:focus { + background-color: #eff6ff; } - .\32xl\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .\32xl\:focus\:bg-blue-100:focus { + background-color: #dbeafe; } - .\32xl\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .\32xl\:focus\:bg-blue-200:focus { + background-color: #bfdbfe; } - .\32xl\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .\32xl\:focus\:bg-blue-300:focus { + background-color: #93c5fd; } - .\32xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .\32xl\:focus\:bg-blue-400:focus { + background-color: #60a5fa; } - .\32xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .\32xl\:focus\:bg-blue-500:focus { + background-color: #3b82f6; } - .\32xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .\32xl\:focus\:bg-blue-600:focus { + background-color: #2563eb; } - .\32xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .\32xl\:focus\:bg-blue-700:focus { + background-color: #1d4ed8; } - .\32xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .\32xl\:focus\:bg-blue-800:focus { + background-color: #1e40af; } - .\32xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .\32xl\:focus\:bg-blue-900:focus { + background-color: #1e3a8a; } - .\32xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .\32xl\:focus\:bg-indigo-50:focus { + background-color: #eef2ff; } - .\32xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .\32xl\:focus\:bg-indigo-100:focus { + background-color: #e0e7ff; } - .\32xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .\32xl\:focus\:bg-indigo-200:focus { + background-color: #c7d2fe; } - .\32xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .\32xl\:focus\:bg-indigo-300:focus { + background-color: #a5b4fc; } - .\32xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .\32xl\:focus\:bg-indigo-400:focus { + background-color: #818cf8; } - .\32xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .\32xl\:focus\:bg-indigo-500:focus { + background-color: #6366f1; } - .\32xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .\32xl\:focus\:bg-indigo-600:focus { + background-color: #4f46e5; } - .\32xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .\32xl\:focus\:bg-indigo-700:focus { + background-color: #4338ca; } - .\32xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .\32xl\:focus\:bg-indigo-800:focus { + background-color: #3730a3; } - .\32xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .\32xl\:focus\:bg-indigo-900:focus { + background-color: #312e81; } - .\32xl\:inset-y-0 { - top: 0px; - bottom: 0px; + .\32xl\:focus\:bg-purple-50:focus { + background-color: #f5f3ff; } - .\32xl\:inset-x-0 { - right: 0px; - left: 0px; + .\32xl\:focus\:bg-purple-100:focus { + background-color: #ede9fe; } - .\32xl\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .\32xl\:focus\:bg-purple-200:focus { + background-color: #ddd6fe; } - .\32xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .\32xl\:focus\:bg-purple-300:focus { + background-color: #c4b5fd; } - .\32xl\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .\32xl\:focus\:bg-purple-400:focus { + background-color: #a78bfa; } - .\32xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .\32xl\:focus\:bg-purple-500:focus { + background-color: #8b5cf6; } - .\32xl\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .\32xl\:focus\:bg-purple-600:focus { + background-color: #7c3aed; } - .\32xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .\32xl\:focus\:bg-purple-700:focus { + background-color: #6d28d9; } - .\32xl\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .\32xl\:focus\:bg-purple-800:focus { + background-color: #5b21b6; } - .\32xl\:inset-x-4 { - right: 1rem; - left: 1rem; + .\32xl\:focus\:bg-purple-900:focus { + background-color: #4c1d95; } - .\32xl\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .\32xl\:focus\:bg-pink-50:focus { + background-color: #fdf2f8; } - .\32xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .\32xl\:focus\:bg-pink-100:focus { + background-color: #fce7f3; } - .\32xl\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .\32xl\:focus\:bg-pink-200:focus { + background-color: #fbcfe8; } - .\32xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .\32xl\:focus\:bg-pink-300:focus { + background-color: #f9a8d4; } - .\32xl\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .\32xl\:focus\:bg-pink-400:focus { + background-color: #f472b6; } - .\32xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .\32xl\:focus\:bg-pink-500:focus { + background-color: #ec4899; } - .\32xl\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .\32xl\:focus\:bg-pink-600:focus { + background-color: #db2777; } - .\32xl\:inset-x-8 { - right: 2rem; - left: 2rem; + .\32xl\:focus\:bg-pink-700:focus { + background-color: #be185d; } - .\32xl\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .\32xl\:focus\:bg-pink-800:focus { + background-color: #9d174d; } - .\32xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .\32xl\:focus\:bg-pink-900:focus { + background-color: #831843; } - .\32xl\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .\32xl\:bg-none { + background-image: none; } - .\32xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .\32xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .\32xl\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .\32xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .\32xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .\32xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .\32xl\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .\32xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .\32xl\:inset-x-12 { - right: 3rem; - left: 3rem; + .\32xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .\32xl\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .\32xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .\32xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .\32xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .\32xl\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .\32xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .\32xl\:inset-x-16 { - right: 4rem; - left: 4rem; + .\32xl\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .\32xl\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:inset-x-20 { - right: 5rem; - left: 5rem; + .\32xl\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .\32xl\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:inset-x-24 { - right: 6rem; - left: 6rem; + .\32xl\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .\32xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:inset-x-28 { - right: 7rem; - left: 7rem; + .\32xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .\32xl\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:inset-x-32 { - right: 8rem; - left: 8rem; + .\32xl\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .\32xl\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:inset-x-36 { - right: 9rem; - left: 9rem; + .\32xl\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .\32xl\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:inset-x-40 { - right: 10rem; - left: 10rem; + .\32xl\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .\32xl\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:inset-x-44 { - right: 11rem; - left: 11rem; + .\32xl\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .\32xl\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:inset-x-48 { - right: 12rem; - left: 12rem; + .\32xl\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .\32xl\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:inset-x-52 { - right: 13rem; - left: 13rem; + .\32xl\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .\32xl\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:inset-x-56 { - right: 14rem; - left: 14rem; + .\32xl\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .\32xl\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:inset-x-60 { - right: 15rem; - left: 15rem; + .\32xl\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .\32xl\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:inset-x-64 { - right: 16rem; - left: 16rem; + .\32xl\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .\32xl\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:inset-x-72 { - right: 18rem; - left: 18rem; + .\32xl\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .\32xl\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:inset-x-80 { - right: 20rem; - left: 20rem; + .\32xl\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .\32xl\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:inset-x-96 { - right: 24rem; - left: 24rem; + .\32xl\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:inset-y-auto { - top: auto; - bottom: auto; + .\32xl\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:inset-x-auto { - right: auto; - left: auto; + .\32xl\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:inset-y-px { - top: 1px; - bottom: 1px; + .\32xl\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:inset-x-px { - right: 1px; - left: 1px; + .\32xl\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .\32xl\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .\32xl\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .\32xl\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .\32xl\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .\32xl\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .\32xl\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .\32xl\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .\32xl\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:-inset-y-0 { - top: 0px; - bottom: 0px; + .\32xl\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:-inset-x-0 { - right: 0px; - left: 0px; + .\32xl\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .\32xl\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .\32xl\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .\32xl\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .\32xl\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .\32xl\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .\32xl\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .\32xl\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:-inset-x-4 { - right: -1rem; - left: -1rem; + .\32xl\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .\32xl\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .\32xl\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .\32xl\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .\32xl\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .\32xl\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .\32xl\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .\32xl\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:-inset-x-8 { - right: -2rem; - left: -2rem; + .\32xl\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .\32xl\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .\32xl\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .\32xl\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .\32xl\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .\32xl\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .\32xl\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .\32xl\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:-inset-x-12 { - right: -3rem; - left: -3rem; + .\32xl\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .\32xl\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .\32xl\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .\32xl\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:-inset-x-16 { - right: -4rem; - left: -4rem; + .\32xl\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .\32xl\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:-inset-x-20 { - right: -5rem; - left: -5rem; + .\32xl\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .\32xl\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:-inset-x-24 { - right: -6rem; - left: -6rem; + .\32xl\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .\32xl\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:-inset-x-28 { - right: -7rem; - left: -7rem; + .\32xl\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .\32xl\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:-inset-x-32 { - right: -8rem; - left: -8rem; + .\32xl\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .\32xl\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:-inset-x-36 { - right: -9rem; - left: -9rem; + .\32xl\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .\32xl\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:-inset-x-40 { - right: -10rem; - left: -10rem; + .\32xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .\32xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-inset-x-44 { - right: -11rem; - left: -11rem; + .\32xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .\32xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-inset-x-48 { - right: -12rem; - left: -12rem; + .\32xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .\32xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:-inset-x-52 { - right: -13rem; - left: -13rem; + .\32xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .\32xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:-inset-x-56 { - right: -14rem; - left: -14rem; + .\32xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .\32xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:-inset-x-60 { - right: -15rem; - left: -15rem; + .\32xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .\32xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:-inset-x-64 { - right: -16rem; - left: -16rem; + .\32xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .\32xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:-inset-x-72 { - right: -18rem; - left: -18rem; + .\32xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .\32xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:-inset-x-80 { - right: -20rem; - left: -20rem; + .\32xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .\32xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:-inset-x-96 { - right: -24rem; - left: -24rem; + .\32xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:-inset-y-px { - top: -1px; - bottom: -1px; + .\32xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:-inset-x-px { - right: -1px; - left: -1px; + .\32xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .\32xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .\32xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .\32xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .\32xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .\32xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .\32xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .\32xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .\32xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .\32xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:inset-x-1\/2 { - right: 50%; - left: 50%; + .\32xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .\32xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .\32xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .\32xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .\32xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .\32xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:inset-x-1\/4 { - right: 25%; - left: 25%; + .\32xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .\32xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:inset-x-2\/4 { - right: 50%; - left: 50%; + .\32xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .\32xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:inset-x-3\/4 { - right: 75%; - left: 75%; + .\32xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:inset-y-full { - top: 100%; - bottom: 100%; + .\32xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:inset-x-full { - right: 100%; - left: 100%; + .\32xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .\32xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .\32xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .\32xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .\32xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .\32xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .\32xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .\32xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .\32xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .\32xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .\32xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .\32xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .\32xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:-inset-y-full { - top: -100%; - bottom: -100%; + .\32xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:-inset-x-full { - right: -100%; - left: -100%; + .\32xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:top-0 { - top: 0px; + .\32xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:right-0 { - right: 0px; + .\32xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:bottom-0 { - bottom: 0px; + .\32xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:left-0 { - left: 0px; + .\32xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:top-1 { - top: 0.25rem; + .\32xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:right-1 { - right: 0.25rem; + .\32xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:bottom-1 { - bottom: 0.25rem; + .\32xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:left-1 { - left: 0.25rem; + .\32xl\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:top-2 { - top: 0.5rem; + .\32xl\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:right-2 { - right: 0.5rem; + .\32xl\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:bottom-2 { - bottom: 0.5rem; + .\32xl\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:left-2 { - left: 0.5rem; + .\32xl\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:top-3 { - top: 0.75rem; + .\32xl\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:right-3 { - right: 0.75rem; + .\32xl\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:bottom-3 { - bottom: 0.75rem; + .\32xl\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:left-3 { - left: 0.75rem; + .\32xl\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:top-4 { - top: 1rem; + .\32xl\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:right-4 { - right: 1rem; + .\32xl\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:bottom-4 { - bottom: 1rem; + .\32xl\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:left-4 { - left: 1rem; + .\32xl\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:top-5 { - top: 1.25rem; + .\32xl\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:right-5 { - right: 1.25rem; + .\32xl\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:bottom-5 { - bottom: 1.25rem; + .\32xl\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:left-5 { - left: 1.25rem; + .\32xl\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:top-6 { - top: 1.5rem; + .\32xl\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:right-6 { - right: 1.5rem; + .\32xl\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:bottom-6 { - bottom: 1.5rem; + .\32xl\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:left-6 { - left: 1.5rem; + .\32xl\:to-transparent { + --tw-gradient-to: transparent; } - .\32xl\:top-7 { - top: 1.75rem; + .\32xl\:to-current { + --tw-gradient-to: currentColor; } - .\32xl\:right-7 { - right: 1.75rem; + .\32xl\:to-black { + --tw-gradient-to: #000; } - .\32xl\:bottom-7 { - bottom: 1.75rem; + .\32xl\:to-white { + --tw-gradient-to: #fff; } - .\32xl\:left-7 { - left: 1.75rem; + .\32xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .\32xl\:top-8 { - top: 2rem; + .\32xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .\32xl\:right-8 { - right: 2rem; + .\32xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .\32xl\:bottom-8 { - bottom: 2rem; + .\32xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .\32xl\:left-8 { - left: 2rem; + .\32xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .\32xl\:top-9 { - top: 2.25rem; + .\32xl\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .\32xl\:right-9 { - right: 2.25rem; + .\32xl\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .\32xl\:bottom-9 { - bottom: 2.25rem; + .\32xl\:to-gray-700 { + --tw-gradient-to: #374151; } - .\32xl\:left-9 { - left: 2.25rem; + .\32xl\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .\32xl\:top-10 { - top: 2.5rem; + .\32xl\:to-gray-900 { + --tw-gradient-to: #111827; } - .\32xl\:right-10 { - right: 2.5rem; + .\32xl\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .\32xl\:bottom-10 { - bottom: 2.5rem; + .\32xl\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .\32xl\:left-10 { - left: 2.5rem; + .\32xl\:to-red-200 { + --tw-gradient-to: #fecaca; } - .\32xl\:top-11 { - top: 2.75rem; + .\32xl\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .\32xl\:right-11 { - right: 2.75rem; + .\32xl\:to-red-400 { + --tw-gradient-to: #f87171; } - .\32xl\:bottom-11 { - bottom: 2.75rem; + .\32xl\:to-red-500 { + --tw-gradient-to: #ef4444; } - .\32xl\:left-11 { - left: 2.75rem; + .\32xl\:to-red-600 { + --tw-gradient-to: #dc2626; } - .\32xl\:top-12 { - top: 3rem; + .\32xl\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .\32xl\:right-12 { - right: 3rem; + .\32xl\:to-red-800 { + --tw-gradient-to: #991b1b; } - .\32xl\:bottom-12 { - bottom: 3rem; + .\32xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .\32xl\:left-12 { - left: 3rem; + .\32xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .\32xl\:top-14 { - top: 3.5rem; + .\32xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .\32xl\:right-14 { - right: 3.5rem; + .\32xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .\32xl\:bottom-14 { - bottom: 3.5rem; + .\32xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .\32xl\:left-14 { - left: 3.5rem; + .\32xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .\32xl\:top-16 { - top: 4rem; + .\32xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .\32xl\:right-16 { - right: 4rem; + .\32xl\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .\32xl\:bottom-16 { - bottom: 4rem; + .\32xl\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .\32xl\:left-16 { - left: 4rem; + .\32xl\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .\32xl\:top-20 { - top: 5rem; + .\32xl\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .\32xl\:right-20 { - right: 5rem; + .\32xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .\32xl\:bottom-20 { - bottom: 5rem; + .\32xl\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .\32xl\:left-20 { - left: 5rem; + .\32xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .\32xl\:top-24 { - top: 6rem; + .\32xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .\32xl\:right-24 { - right: 6rem; + .\32xl\:to-green-400 { + --tw-gradient-to: #34d399; } - .\32xl\:bottom-24 { - bottom: 6rem; + .\32xl\:to-green-500 { + --tw-gradient-to: #10b981; } - .\32xl\:left-24 { - left: 6rem; + .\32xl\:to-green-600 { + --tw-gradient-to: #059669; } - .\32xl\:top-28 { - top: 7rem; + .\32xl\:to-green-700 { + --tw-gradient-to: #047857; } - .\32xl\:right-28 { - right: 7rem; + .\32xl\:to-green-800 { + --tw-gradient-to: #065f46; } - .\32xl\:bottom-28 { - bottom: 7rem; + .\32xl\:to-green-900 { + --tw-gradient-to: #064e3b; } - .\32xl\:left-28 { - left: 7rem; + .\32xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .\32xl\:top-32 { - top: 8rem; + .\32xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .\32xl\:right-32 { - right: 8rem; + .\32xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .\32xl\:bottom-32 { - bottom: 8rem; + .\32xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .\32xl\:left-32 { - left: 8rem; + .\32xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .\32xl\:top-36 { - top: 9rem; + .\32xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .\32xl\:right-36 { - right: 9rem; + .\32xl\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .\32xl\:bottom-36 { - bottom: 9rem; + .\32xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .\32xl\:left-36 { - left: 9rem; + .\32xl\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .\32xl\:top-40 { - top: 10rem; + .\32xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .\32xl\:right-40 { - right: 10rem; + .\32xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .\32xl\:bottom-40 { - bottom: 10rem; + .\32xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .\32xl\:left-40 { - left: 10rem; + .\32xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .\32xl\:top-44 { - top: 11rem; + .\32xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .\32xl\:right-44 { - right: 11rem; + .\32xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .\32xl\:bottom-44 { - bottom: 11rem; + .\32xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .\32xl\:left-44 { - left: 11rem; + .\32xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .\32xl\:top-48 { - top: 12rem; + .\32xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .\32xl\:right-48 { - right: 12rem; + .\32xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .\32xl\:bottom-48 { - bottom: 12rem; + .\32xl\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .\32xl\:left-48 { - left: 12rem; + .\32xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .\32xl\:top-52 { - top: 13rem; + .\32xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .\32xl\:right-52 { - right: 13rem; + .\32xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .\32xl\:bottom-52 { - bottom: 13rem; + .\32xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .\32xl\:left-52 { - left: 13rem; + .\32xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .\32xl\:top-56 { - top: 14rem; + .\32xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .\32xl\:right-56 { - right: 14rem; + .\32xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .\32xl\:bottom-56 { - bottom: 14rem; + .\32xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .\32xl\:left-56 { - left: 14rem; + .\32xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .\32xl\:top-60 { - top: 15rem; + .\32xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .\32xl\:right-60 { - right: 15rem; + .\32xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .\32xl\:bottom-60 { - bottom: 15rem; + .\32xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .\32xl\:left-60 { - left: 15rem; + .\32xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .\32xl\:top-64 { - top: 16rem; + .\32xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .\32xl\:right-64 { - right: 16rem; + .\32xl\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .\32xl\:bottom-64 { - bottom: 16rem; + .\32xl\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .\32xl\:left-64 { - left: 16rem; + .\32xl\:to-pink-600 { + --tw-gradient-to: #db2777; } - .\32xl\:top-72 { - top: 18rem; + .\32xl\:to-pink-700 { + --tw-gradient-to: #be185d; } - .\32xl\:right-72 { - right: 18rem; + .\32xl\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .\32xl\:bottom-72 { - bottom: 18rem; + .\32xl\:to-pink-900 { + --tw-gradient-to: #831843; } - .\32xl\:left-72 { - left: 18rem; + .\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\:top-80 { - top: 20rem; + .\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\:right-80 { - right: 20rem; + .\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\:bottom-80 { - bottom: 20rem; + .\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\:left-80 { - left: 20rem; + .\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\:top-96 { - top: 24rem; + .\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\:right-96 { - right: 24rem; + .\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\:bottom-96 { - bottom: 24rem; + .\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\:left-96 { - left: 24rem; + .\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\:top-auto { - top: auto; + .\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\:right-auto { - right: auto; + .\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\:bottom-auto { - bottom: auto; + .\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\:left-auto { - left: auto; + .\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\:top-px { - top: 1px; + .\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\:right-px { - right: 1px; + .\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\:bottom-px { - bottom: 1px; + .\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\:left-px { - left: 1px; + .\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\:top-0\.5 { - top: 0.125rem; + .\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\:right-0\.5 { - right: 0.125rem; + .\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\:bottom-0\.5 { - bottom: 0.125rem; + .\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\:left-0\.5 { - left: 0.125rem; + .\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\:top-1\.5 { - top: 0.375rem; + .\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\:right-1\.5 { - right: 0.375rem; + .\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\:bottom-1\.5 { - bottom: 0.375rem; + .\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\:left-1\.5 { - left: 0.375rem; + .\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\:top-2\.5 { - top: 0.625rem; + .\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\:right-2\.5 { - right: 0.625rem; + .\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\:bottom-2\.5 { - bottom: 0.625rem; + .\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\:left-2\.5 { - left: 0.625rem; + .\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\:top-3\.5 { - top: 0.875rem; + .\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\:right-3\.5 { - right: 0.875rem; + .\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\:bottom-3\.5 { - bottom: 0.875rem; + .\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\:left-3\.5 { - left: 0.875rem; + .\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\:-top-0 { - top: 0px; + .\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\:-right-0 { - right: 0px; + .\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\:-bottom-0 { - bottom: 0px; + .\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\:-left-0 { - left: 0px; + .\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\:-top-1 { - top: -0.25rem; + .\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\:-right-1 { - right: -0.25rem; + .\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\:-bottom-1 { - bottom: -0.25rem; + .\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\:-left-1 { - left: -0.25rem; + .\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\:-top-2 { - top: -0.5rem; + .\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\:-right-2 { - right: -0.5rem; + .\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\:-bottom-2 { - bottom: -0.5rem; + .\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\:-left-2 { - left: -0.5rem; + .\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\:-top-3 { - top: -0.75rem; + .\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\:-right-3 { - right: -0.75rem; + .\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\:-bottom-3 { - bottom: -0.75rem; + .\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\:-left-3 { - left: -0.75rem; + .\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\:-top-4 { - top: -1rem; + .\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\:-right-4 { - right: -1rem; + .\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\:-bottom-4 { - bottom: -1rem; + .\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\:-left-4 { - left: -1rem; + .\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\:-top-5 { - top: -1.25rem; + .\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\:-right-5 { - right: -1.25rem; + .\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\:-bottom-5 { - bottom: -1.25rem; + .\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\:-left-5 { - left: -1.25rem; + .\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\:-top-6 { - top: -1.5rem; + .\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\:-right-6 { - right: -1.5rem; + .\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\:-bottom-6 { - bottom: -1.5rem; + .\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\:-left-6 { - left: -1.5rem; + .\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\:-top-7 { - top: -1.75rem; + .\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\:-right-7 { - right: -1.75rem; + .\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\:-bottom-7 { - bottom: -1.75rem; + .\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\:-left-7 { - left: -1.75rem; + .\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\:-top-8 { - top: -2rem; + .\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\:-right-8 { - right: -2rem; + .\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\:-bottom-8 { - bottom: -2rem; + .\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\:-left-8 { - left: -2rem; + .\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\:-top-9 { - top: -2.25rem; + .\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\:-right-9 { - right: -2.25rem; + .\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\:-bottom-9 { - bottom: -2.25rem; + .\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\:-left-9 { - left: -2.25rem; + .\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\:-top-10 { - top: -2.5rem; + .\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\:-right-10 { - right: -2.5rem; + .\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\:-bottom-10 { - bottom: -2.5rem; + .\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\:-left-10 { - left: -2.5rem; + .\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\:-top-11 { - top: -2.75rem; + .\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\:-right-11 { - right: -2.75rem; + .\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\:-bottom-11 { - bottom: -2.75rem; + .\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\:-left-11 { - left: -2.75rem; + .\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\:-top-12 { - top: -3rem; + .\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\:-right-12 { - right: -3rem; + .\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\:-bottom-12 { - bottom: -3rem; + .\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\:-left-12 { - left: -3rem; + .\32xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-top-14 { - top: -3.5rem; + .\32xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-right-14 { - right: -3.5rem; + .\32xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-bottom-14 { - bottom: -3.5rem; + .\32xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-left-14 { - left: -3.5rem; + .\32xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:-top-16 { - top: -4rem; + .\32xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:-right-16 { - right: -4rem; + .\32xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:-bottom-16 { - bottom: -4rem; + .\32xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:-left-16 { - left: -4rem; + .\32xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:-top-20 { - top: -5rem; + .\32xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:-right-20 { - right: -5rem; + .\32xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:-bottom-20 { - bottom: -5rem; + .\32xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:-left-20 { - left: -5rem; + .\32xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:-top-24 { - top: -6rem; + .\32xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:-right-24 { - right: -6rem; + .\32xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:-bottom-24 { - bottom: -6rem; + .\32xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:-left-24 { - left: -6rem; + .\32xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:-top-28 { - top: -7rem; + .\32xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:-right-28 { - right: -7rem; + .\32xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:-bottom-28 { - bottom: -7rem; + .\32xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:-left-28 { - left: -7rem; + .\32xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:-top-32 { - top: -8rem; + .\32xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:-right-32 { - right: -8rem; + .\32xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:-bottom-32 { - bottom: -8rem; + .\32xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:-left-32 { - left: -8rem; + .\32xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:-top-36 { - top: -9rem; + .\32xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:-right-36 { - right: -9rem; + .\32xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:-bottom-36 { - bottom: -9rem; + .\32xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:-left-36 { - left: -9rem; + .\32xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:-top-40 { - top: -10rem; + .\32xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:-right-40 { - right: -10rem; + .\32xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:-bottom-40 { - bottom: -10rem; + .\32xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:-left-40 { - left: -10rem; + .\32xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:-top-44 { - top: -11rem; + .\32xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:-right-44 { - right: -11rem; + .\32xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:-bottom-44 { - bottom: -11rem; + .\32xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:-left-44 { - left: -11rem; + .\32xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:-top-48 { - top: -12rem; + .\32xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:-right-48 { - right: -12rem; + .\32xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:-bottom-48 { - bottom: -12rem; + .\32xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:-left-48 { - left: -12rem; + .\32xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:-top-52 { - top: -13rem; + .\32xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:-right-52 { - right: -13rem; + .\32xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:-bottom-52 { - bottom: -13rem; + .\32xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:-left-52 { - left: -13rem; + .\32xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:-top-56 { - top: -14rem; + .\32xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:-right-56 { - right: -14rem; + .\32xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:-bottom-56 { - bottom: -14rem; + .\32xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:-left-56 { - left: -14rem; + .\32xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:-top-60 { - top: -15rem; + .\32xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:-right-60 { - right: -15rem; + .\32xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:-bottom-60 { - bottom: -15rem; + .\32xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:-left-60 { - left: -15rem; + .\32xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:-top-64 { - top: -16rem; + .\32xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:-right-64 { - right: -16rem; + .\32xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:-bottom-64 { - bottom: -16rem; + .\32xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:-left-64 { - left: -16rem; + .\32xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:-top-72 { - top: -18rem; + .\32xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:-right-72 { - right: -18rem; + .\32xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:-bottom-72 { - bottom: -18rem; + .\32xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:-left-72 { - left: -18rem; + .\32xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:-top-80 { - top: -20rem; + .\32xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:-right-80 { - right: -20rem; + .\32xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:-bottom-80 { - bottom: -20rem; + .\32xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:-left-80 { - left: -20rem; + .\32xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:-top-96 { - top: -24rem; + .\32xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:-right-96 { - right: -24rem; + .\32xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:-bottom-96 { - bottom: -24rem; + .\32xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:-left-96 { - left: -24rem; + .\32xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:-top-px { - top: -1px; + .\32xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:-right-px { - right: -1px; + .\32xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:-bottom-px { - bottom: -1px; + .\32xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:-left-px { - left: -1px; + .\32xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:-top-0\.5 { - top: -0.125rem; + .\32xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:-right-0\.5 { - right: -0.125rem; + .\32xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:-bottom-0\.5 { - bottom: -0.125rem; + .\32xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:-left-0\.5 { - left: -0.125rem; + .\32xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:-top-1\.5 { - top: -0.375rem; + .\32xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:-right-1\.5 { - right: -0.375rem; + .\32xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:-bottom-1\.5 { - bottom: -0.375rem; + .\32xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:-left-1\.5 { - left: -0.375rem; + .\32xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:-top-2\.5 { - top: -0.625rem; + .\32xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:-right-2\.5 { - right: -0.625rem; + .\32xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:-bottom-2\.5 { - bottom: -0.625rem; + .\32xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:-left-2\.5 { - left: -0.625rem; + .\32xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .\32xl\:-top-3\.5 { - top: -0.875rem; + .\32xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .\32xl\:-right-3\.5 { - right: -0.875rem; + .\32xl\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .\32xl\:-bottom-3\.5 { - bottom: -0.875rem; + .\32xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .\32xl\:-left-3\.5 { - left: -0.875rem; + .\32xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .\32xl\:top-1\/2 { - top: 50%; + .\32xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .\32xl\:right-1\/2 { - right: 50%; + .\32xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .\32xl\:bottom-1\/2 { - bottom: 50%; + .\32xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .\32xl\:left-1\/2 { - left: 50%; + .\32xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .\32xl\:top-1\/3 { - top: 33.333333%; + .\32xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .\32xl\:right-1\/3 { - right: 33.333333%; + .\32xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .\32xl\:bottom-1\/3 { - bottom: 33.333333%; + .\32xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .\32xl\:left-1\/3 { - left: 33.333333%; + .\32xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .\32xl\:top-2\/3 { - top: 66.666667%; + .\32xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .\32xl\:right-2\/3 { - right: 66.666667%; + .\32xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .\32xl\:bottom-2\/3 { - bottom: 66.666667%; + .\32xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .\32xl\:left-2\/3 { - left: 66.666667%; + .\32xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .\32xl\:top-1\/4 { - top: 25%; + .\32xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .\32xl\:right-1\/4 { - right: 25%; + .\32xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .\32xl\:bottom-1\/4 { - bottom: 25%; + .\32xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .\32xl\:left-1\/4 { - left: 25%; + .\32xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .\32xl\:top-2\/4 { - top: 50%; + .\32xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .\32xl\:right-2\/4 { - right: 50%; + .\32xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .\32xl\:bottom-2\/4 { - bottom: 50%; + .\32xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .\32xl\:left-2\/4 { - left: 50%; + .\32xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .\32xl\:top-3\/4 { - top: 75%; + .\32xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .\32xl\:right-3\/4 { - right: 75%; + .\32xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .\32xl\:bottom-3\/4 { - bottom: 75%; + .\32xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .\32xl\:left-3\/4 { - left: 75%; + .\32xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .\32xl\:top-full { - top: 100%; + .\32xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .\32xl\:right-full { - right: 100%; + .\32xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .\32xl\:bottom-full { - bottom: 100%; + .\32xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .\32xl\:left-full { - left: 100%; + .\32xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .\32xl\:-top-1\/2 { - top: -50%; + .\32xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .\32xl\:-right-1\/2 { - right: -50%; + .\32xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .\32xl\:-bottom-1\/2 { - bottom: -50%; + .\32xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .\32xl\:-left-1\/2 { - left: -50%; + .\32xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .\32xl\:-top-1\/3 { - top: -33.333333%; + .\32xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .\32xl\:-right-1\/3 { - right: -33.333333%; + .\32xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .\32xl\:-bottom-1\/3 { - bottom: -33.333333%; + .\32xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .\32xl\:-left-1\/3 { - left: -33.333333%; + .\32xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .\32xl\:-top-2\/3 { - top: -66.666667%; + .\32xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .\32xl\:-right-2\/3 { - right: -66.666667%; + .\32xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .\32xl\:-bottom-2\/3 { - bottom: -66.666667%; + .\32xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .\32xl\:-left-2\/3 { - left: -66.666667%; + .\32xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .\32xl\:-top-1\/4 { - top: -25%; + .\32xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .\32xl\:-right-1\/4 { - right: -25%; + .\32xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .\32xl\:-bottom-1\/4 { - bottom: -25%; + .\32xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .\32xl\:-left-1\/4 { - left: -25%; + .\32xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .\32xl\:-top-2\/4 { - top: -50%; + .\32xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .\32xl\:-right-2\/4 { - right: -50%; + .\32xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .\32xl\:-bottom-2\/4 { - bottom: -50%; + .\32xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .\32xl\:-left-2\/4 { - left: -50%; + .\32xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .\32xl\:-top-3\/4 { - top: -75%; + .\32xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .\32xl\:-right-3\/4 { - right: -75%; + .\32xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .\32xl\:-bottom-3\/4 { - bottom: -75%; + .\32xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .\32xl\:-left-3\/4 { - left: -75%; + .\32xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .\32xl\:-top-full { - top: -100%; + .\32xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .\32xl\:-right-full { - right: -100%; + .\32xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .\32xl\:-bottom-full { - bottom: -100%; + .\32xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .\32xl\:-left-full { - left: -100%; + .\32xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .\32xl\:resize-none { - resize: none; + .\32xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .\32xl\:resize-y { - resize: vertical; + .\32xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .\32xl\:resize-x { - resize: horizontal; + .\32xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .\32xl\:resize { - resize: both; + .\32xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .\32xl\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .\32xl\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .\32xl\: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); + .\32xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .\32xl\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .\32xl\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .\32xl\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .\32xl\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .\32xl\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .\32xl\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .\32xl\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .\32xl\:group-hover\: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); + .\32xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .\32xl\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .\32xl\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .\32xl\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .\32xl\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .\32xl\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .\32xl\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .\32xl\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .\32xl\:focus-within\:shadow-md:focus-within { - --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); + .\32xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .\32xl\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:shadow-md:hover { - --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); + .\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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:focus\:shadow-md:focus { - --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); + .\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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-inset { - --tw-ring-inset: inset; + .\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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .\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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .\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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .\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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .\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\:ring-offset-black { - --tw-ring-offset-color: #000; + .\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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .\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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .\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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .\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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .\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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .\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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .\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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .\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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .\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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .\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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .\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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .\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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .\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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .\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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .\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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .\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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .\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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .\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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .\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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .\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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .\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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .\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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .\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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .\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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .\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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .\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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .\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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .\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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .\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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .\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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .\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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .\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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .\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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .\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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .\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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .\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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .\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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .\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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .\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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .\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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .\32xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .\32xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .\32xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .\32xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .\32xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .\32xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .\32xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .\32xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .\32xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .\32xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .\32xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .\32xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .\32xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .\32xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .\32xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .\32xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .\32xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .\32xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .\32xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .\32xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .\32xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .\32xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .\32xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .\32xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .\32xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .\32xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .\32xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .\32xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .\32xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .\32xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .\32xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .\32xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .\32xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .\32xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .\32xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .\32xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .\32xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .\32xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .\32xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .\32xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .\32xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .\32xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .\32xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .\32xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .\32xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .\32xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .\32xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .\32xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .\32xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .\32xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .\32xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .\32xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .\32xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .\32xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .\32xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .\32xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .\32xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .\32xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .\32xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .\32xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .\32xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .\32xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .\32xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .\32xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .\32xl\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .\32xl\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .\32xl\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .\32xl\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .\32xl\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .\32xl\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .\32xl\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .\32xl\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .\32xl\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .\32xl\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .\32xl\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .\32xl\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .\32xl\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - - .\32xl\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + + .\32xl\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .\32xl\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .\32xl\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .\32xl\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .\32xl\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .\32xl\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .\32xl\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .\32xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .\32xl\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .\32xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .\32xl\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .\32xl\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .\32xl\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .\32xl\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .\32xl\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .\32xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .\32xl\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .\32xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .\32xl\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .\32xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .\32xl\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .\32xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .\32xl\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .\32xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .\32xl\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .\32xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .\32xl\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .\32xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .\32xl\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .\32xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .\32xl\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .\32xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .\32xl\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .\32xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .\32xl\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .\32xl\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .\32xl\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .\32xl\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .\32xl\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .\32xl\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .\32xl\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .\32xl\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .\32xl\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .\32xl\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .\32xl\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .\32xl\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .\32xl\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .\32xl\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .\32xl\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .\32xl\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .\32xl\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .\32xl\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .\32xl\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .\32xl\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .\32xl\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .\32xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .\32xl\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .\32xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .\32xl\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .\32xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .\32xl\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .\32xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .\32xl\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .\32xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .\32xl\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .\32xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .\32xl\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .\32xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .\32xl\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .\32xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .\32xl\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .\32xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .\32xl\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .\32xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .\32xl\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .\32xl\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .\32xl\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .\32xl\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .\32xl\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .\32xl\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .\32xl\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .\32xl\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .\32xl\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .\32xl\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .\32xl\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .\32xl\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .\32xl\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .\32xl\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .\32xl\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .\32xl\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .\32xl\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .\32xl\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .\32xl\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .\32xl\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .\32xl\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .\32xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .\32xl\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .\32xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .\32xl\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .\32xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .\32xl\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .\32xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .\32xl\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .\32xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .\32xl\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .\32xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .\32xl\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .\32xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .\32xl\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .\32xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .\32xl\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .\32xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .\32xl\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .\32xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .\32xl\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .\32xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .\32xl\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .\32xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .\32xl\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .\32xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .\32xl\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .\32xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .\32xl\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .\32xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .\32xl\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .\32xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .\32xl\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .\32xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .\32xl\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .\32xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .\32xl\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .\32xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .\32xl\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .\32xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .\32xl\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .\32xl\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .\32xl\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .\32xl\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .\32xl\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .\32xl\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .\32xl\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .\32xl\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .\32xl\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .\32xl\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .\32xl\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .\32xl\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .\32xl\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .\32xl\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .\32xl\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .\32xl\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .\32xl\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .\32xl\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .\32xl\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .\32xl\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .\32xl\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .\32xl\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .\32xl\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .\32xl\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .\32xl\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .\32xl\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .\32xl\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .\32xl\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .\32xl\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .\32xl\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .\32xl\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .\32xl\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .\32xl\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .\32xl\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .\32xl\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .\32xl\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .\32xl\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .\32xl\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .\32xl\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .\32xl\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .\32xl\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .\32xl\:decoration-slice { + box-decoration-break: slice; } - .\32xl\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .\32xl\:decoration-clone { + box-decoration-break: clone; } - .\32xl\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .\32xl\:bg-auto { + background-size: auto; } - .\32xl\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .\32xl\:bg-cover { + background-size: cover; } - .\32xl\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .\32xl\:bg-contain { + background-size: contain; } - .\32xl\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .\32xl\:bg-fixed { + background-attachment: fixed; } - .\32xl\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .\32xl\:bg-local { + background-attachment: local; } - .\32xl\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .\32xl\:bg-scroll { + background-attachment: scroll; } - .\32xl\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .\32xl\:bg-clip-border { + background-clip: border-box; } - .\32xl\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .\32xl\:bg-clip-padding { + background-clip: padding-box; } - .\32xl\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .\32xl\:bg-clip-content { + background-clip: content-box; } - .\32xl\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .\32xl\:bg-clip-text { + background-clip: text; } - .\32xl\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .\32xl\:bg-bottom { + background-position: bottom; } - .\32xl\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .\32xl\:bg-center { + background-position: center; } - .\32xl\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .\32xl\:bg-left { + background-position: left; } - .\32xl\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .\32xl\:bg-left-bottom { + background-position: left bottom; } - .\32xl\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .\32xl\:bg-left-top { + background-position: left top; } - .\32xl\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .\32xl\:bg-right { + background-position: right; } - .\32xl\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .\32xl\:bg-right-bottom { + background-position: right bottom; } - .\32xl\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .\32xl\:bg-right-top { + background-position: right top; } - .\32xl\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .\32xl\:bg-top { + background-position: top; } - .\32xl\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .\32xl\:bg-repeat { + background-repeat: repeat; } - .\32xl\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .\32xl\:bg-no-repeat { + background-repeat: no-repeat; } - .\32xl\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .\32xl\:bg-repeat-x { + background-repeat: repeat-x; } - .\32xl\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .\32xl\:bg-repeat-y { + background-repeat: repeat-y; } - .\32xl\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .\32xl\:bg-repeat-round { + background-repeat: round; } - .\32xl\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .\32xl\:bg-repeat-space { + background-repeat: space; } - .\32xl\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .\32xl\:bg-origin-border { + background-origin: border-box; } - .\32xl\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .\32xl\:bg-origin-padding { + background-origin: padding-box; } - .\32xl\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .\32xl\:bg-origin-content { + background-origin: content-box; } - .\32xl\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .\32xl\:fill-current { + fill: currentColor; } - .\32xl\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .\32xl\:stroke-current { + stroke: currentColor; } - .\32xl\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .\32xl\:stroke-0 { + stroke-width: 0; } - .\32xl\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .\32xl\:stroke-1 { + stroke-width: 1; } - .\32xl\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .\32xl\:stroke-2 { + stroke-width: 2; } - .\32xl\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .\32xl\:object-contain { + object-fit: contain; } - .\32xl\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .\32xl\:object-cover { + object-fit: cover; } - .\32xl\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .\32xl\:object-fill { + object-fit: fill; } - .\32xl\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .\32xl\:object-none { + object-fit: none; } - .\32xl\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .\32xl\:object-scale-down { + object-fit: scale-down; } - .\32xl\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .\32xl\:object-bottom { + object-position: bottom; } - .\32xl\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .\32xl\:object-center { + object-position: center; } - .\32xl\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .\32xl\:object-left { + object-position: left; } - .\32xl\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .\32xl\:object-left-bottom { + object-position: left bottom; } - .\32xl\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .\32xl\:object-left-top { + object-position: left top; } - .\32xl\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .\32xl\:object-right { + object-position: right; } - .\32xl\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .\32xl\:object-right-bottom { + object-position: right bottom; } - .\32xl\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .\32xl\:object-right-top { + object-position: right top; } - .\32xl\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .\32xl\:object-top { + object-position: top; } - .\32xl\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .\32xl\:p-0 { + padding: 0px; } - .\32xl\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .\32xl\:p-1 { + padding: 0.25rem; } - .\32xl\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .\32xl\:p-2 { + padding: 0.5rem; } - .\32xl\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .\32xl\:p-3 { + padding: 0.75rem; } - .\32xl\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .\32xl\:p-4 { + padding: 1rem; } - .\32xl\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .\32xl\:p-5 { + padding: 1.25rem; } - .\32xl\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .\32xl\:p-6 { + padding: 1.5rem; } - .\32xl\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .\32xl\:p-7 { + padding: 1.75rem; } - .\32xl\:ring-transparent { - --tw-ring-color: transparent; + .\32xl\:p-8 { + padding: 2rem; } - .\32xl\:ring-current { - --tw-ring-color: currentColor; + .\32xl\:p-9 { + padding: 2.25rem; } - .\32xl\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .\32xl\:p-10 { + padding: 2.5rem; } - .\32xl\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .\32xl\:p-11 { + padding: 2.75rem; } - .\32xl\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .\32xl\:p-12 { + padding: 3rem; } - .\32xl\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .\32xl\:p-14 { + padding: 3.5rem; } - .\32xl\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .\32xl\:p-16 { + padding: 4rem; } - .\32xl\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .\32xl\:p-20 { + padding: 5rem; } - .\32xl\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .\32xl\:p-24 { + padding: 6rem; } - .\32xl\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .\32xl\:p-28 { + padding: 7rem; } - .\32xl\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .\32xl\:p-32 { + padding: 8rem; } - .\32xl\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .\32xl\:p-36 { + padding: 9rem; } - .\32xl\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .\32xl\:p-40 { + padding: 10rem; } - .\32xl\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .\32xl\:p-44 { + padding: 11rem; } - .\32xl\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .\32xl\:p-48 { + padding: 12rem; } - .\32xl\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .\32xl\:p-52 { + padding: 13rem; } - .\32xl\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .\32xl\:p-56 { + padding: 14rem; } - .\32xl\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .\32xl\:p-60 { + padding: 15rem; } - .\32xl\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .\32xl\:p-64 { + padding: 16rem; } - .\32xl\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .\32xl\:p-72 { + padding: 18rem; } - .\32xl\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .\32xl\:p-80 { + padding: 20rem; } - .\32xl\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .\32xl\:p-96 { + padding: 24rem; } - .\32xl\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .\32xl\:p-px { + padding: 1px; } - .\32xl\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .\32xl\:p-0\.5 { + padding: 0.125rem; } - .\32xl\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .\32xl\:p-1\.5 { + padding: 0.375rem; } - .\32xl\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .\32xl\:p-2\.5 { + padding: 0.625rem; } - .\32xl\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .\32xl\:p-3\.5 { + padding: 0.875rem; } - .\32xl\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .\32xl\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .\32xl\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .\32xl\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .\32xl\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .\32xl\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .\32xl\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .\32xl\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .\32xl\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .\32xl\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .\32xl\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .\32xl\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .\32xl\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .\32xl\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .\32xl\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .\32xl\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .\32xl\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .\32xl\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .\32xl\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .\32xl\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .\32xl\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .\32xl\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .\32xl\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .\32xl\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .\32xl\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .\32xl\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .\32xl\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .\32xl\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .\32xl\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .\32xl\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .\32xl\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .\32xl\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .\32xl\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .\32xl\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .\32xl\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .\32xl\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .\32xl\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .\32xl\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .\32xl\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .\32xl\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .\32xl\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .\32xl\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .\32xl\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .\32xl\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .\32xl\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .\32xl\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .\32xl\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .\32xl\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .\32xl\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .\32xl\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .\32xl\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .\32xl\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .\32xl\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .\32xl\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .\32xl\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .\32xl\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .\32xl\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .\32xl\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .\32xl\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .\32xl\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .\32xl\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .\32xl\:px-px { + padding-left: 1px; + padding-right: 1px; } - .\32xl\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .\32xl\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .\32xl\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .\32xl\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .\32xl\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .\32xl\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .\32xl\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .\32xl\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .\32xl\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .\32xl\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .\32xl\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .\32xl\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .\32xl\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .\32xl\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .\32xl\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .\32xl\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .\32xl\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .\32xl\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .\32xl\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .\32xl\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .\32xl\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .\32xl\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .\32xl\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .\32xl\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .\32xl\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .\32xl\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .\32xl\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .\32xl\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .\32xl\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .\32xl\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .\32xl\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .\32xl\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .\32xl\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .\32xl\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .\32xl\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .\32xl\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .\32xl\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .\32xl\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .\32xl\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .\32xl\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .\32xl\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .\32xl\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .\32xl\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .\32xl\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .\32xl\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .\32xl\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .\32xl\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .\32xl\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .\32xl\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .\32xl\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .\32xl\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .\32xl\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .\32xl\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .\32xl\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .\32xl\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .\32xl\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .\32xl\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .\32xl\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .\32xl\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .\32xl\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .\32xl\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .\32xl\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .\32xl\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .\32xl\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .\32xl\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .\32xl\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .\32xl\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .\32xl\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .\32xl\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .\32xl\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .\32xl\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .\32xl\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .\32xl\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .\32xl\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .\32xl\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .\32xl\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .\32xl\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .\32xl\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .\32xl\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .\32xl\:pt-0 { + padding-top: 0px; } - .\32xl\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .\32xl\:pt-1 { + padding-top: 0.25rem; } - .\32xl\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .\32xl\:pt-2 { + padding-top: 0.5rem; } - .\32xl\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .\32xl\:pt-3 { + padding-top: 0.75rem; } - .\32xl\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .\32xl\:pt-4 { + padding-top: 1rem; } - .\32xl\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .\32xl\:pt-5 { + padding-top: 1.25rem; } - .\32xl\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .\32xl\:pt-6 { + padding-top: 1.5rem; } - .\32xl\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .\32xl\:pt-7 { + padding-top: 1.75rem; } - .\32xl\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .\32xl\:pt-8 { + padding-top: 2rem; } - .\32xl\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .\32xl\:pt-9 { + padding-top: 2.25rem; } - .\32xl\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .\32xl\:pt-10 { + padding-top: 2.5rem; } - .\32xl\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .\32xl\:pt-11 { + padding-top: 2.75rem; } - .\32xl\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .\32xl\:pt-12 { + padding-top: 3rem; } - .\32xl\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .\32xl\:pt-14 { + padding-top: 3.5rem; } - .\32xl\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .\32xl\:pt-16 { + padding-top: 4rem; } - .\32xl\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .\32xl\:pt-20 { + padding-top: 5rem; } - .\32xl\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .\32xl\:pt-24 { + padding-top: 6rem; } - .\32xl\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .\32xl\:pt-28 { + padding-top: 7rem; } - .\32xl\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .\32xl\:pt-32 { + padding-top: 8rem; } - .\32xl\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .\32xl\:pt-36 { + padding-top: 9rem; } - .\32xl\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .\32xl\:pt-40 { + padding-top: 10rem; } - .\32xl\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .\32xl\:pt-44 { + padding-top: 11rem; } - .\32xl\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .\32xl\:pt-48 { + padding-top: 12rem; } - .\32xl\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .\32xl\:pt-52 { + padding-top: 13rem; } - .\32xl\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .\32xl\:pt-56 { + padding-top: 14rem; } - .\32xl\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .\32xl\:pt-60 { + padding-top: 15rem; } - .\32xl\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .\32xl\:pt-64 { + padding-top: 16rem; } - .\32xl\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .\32xl\:pt-72 { + padding-top: 18rem; } - .\32xl\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .\32xl\:pt-80 { + padding-top: 20rem; } - .\32xl\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .\32xl\:pt-96 { + padding-top: 24rem; } - .\32xl\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .\32xl\:pt-px { + padding-top: 1px; } - .\32xl\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .\32xl\:pt-0\.5 { + padding-top: 0.125rem; } - .\32xl\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .\32xl\:pt-1\.5 { + padding-top: 0.375rem; } - .\32xl\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .\32xl\:pt-2\.5 { + padding-top: 0.625rem; } - .\32xl\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .\32xl\:pt-3\.5 { + padding-top: 0.875rem; } - .\32xl\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .\32xl\:pr-0 { + padding-right: 0px; } - .\32xl\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .\32xl\:pr-1 { + padding-right: 0.25rem; } - .\32xl\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .\32xl\:pr-2 { + padding-right: 0.5rem; } - .\32xl\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .\32xl\:pr-3 { + padding-right: 0.75rem; } - .\32xl\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .\32xl\:pr-4 { + padding-right: 1rem; } - .\32xl\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .\32xl\:pr-5 { + padding-right: 1.25rem; } - .\32xl\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .\32xl\:pr-6 { + padding-right: 1.5rem; } - .\32xl\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .\32xl\:pr-7 { + padding-right: 1.75rem; } - .\32xl\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .\32xl\:pr-8 { + padding-right: 2rem; } - .\32xl\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .\32xl\:pr-9 { + padding-right: 2.25rem; } - .\32xl\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .\32xl\:pr-10 { + padding-right: 2.5rem; } - .\32xl\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .\32xl\:pr-11 { + padding-right: 2.75rem; } - .\32xl\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .\32xl\:pr-12 { + padding-right: 3rem; } - .\32xl\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .\32xl\:pr-14 { + padding-right: 3.5rem; } - .\32xl\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .\32xl\:pr-16 { + padding-right: 4rem; } - .\32xl\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .\32xl\:pr-20 { + padding-right: 5rem; } - .\32xl\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .\32xl\:pr-24 { + padding-right: 6rem; } - .\32xl\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .\32xl\:pr-28 { + padding-right: 7rem; } - .\32xl\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .\32xl\:pr-32 { + padding-right: 8rem; } - .\32xl\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .\32xl\:pr-36 { + padding-right: 9rem; } - .\32xl\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .\32xl\:pr-40 { + padding-right: 10rem; } - .\32xl\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .\32xl\:pr-44 { + padding-right: 11rem; } - .\32xl\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .\32xl\:pr-48 { + padding-right: 12rem; } - .\32xl\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .\32xl\:pr-52 { + padding-right: 13rem; } - .\32xl\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .\32xl\:pr-56 { + padding-right: 14rem; } - .\32xl\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .\32xl\:pr-60 { + padding-right: 15rem; } - .\32xl\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .\32xl\:pr-64 { + padding-right: 16rem; } - .\32xl\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .\32xl\:pr-72 { + padding-right: 18rem; } - .\32xl\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .\32xl\:pr-80 { + padding-right: 20rem; } - .\32xl\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .\32xl\:pr-96 { + padding-right: 24rem; } - .\32xl\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .\32xl\:pr-px { + padding-right: 1px; } - .\32xl\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .\32xl\:pr-0\.5 { + padding-right: 0.125rem; } - .\32xl\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .\32xl\:pr-1\.5 { + padding-right: 0.375rem; } - .\32xl\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .\32xl\:pr-2\.5 { + padding-right: 0.625rem; } - .\32xl\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .\32xl\:pr-3\.5 { + padding-right: 0.875rem; } - .\32xl\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .\32xl\:pb-0 { + padding-bottom: 0px; } - .\32xl\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .\32xl\:pb-1 { + padding-bottom: 0.25rem; } - .\32xl\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .\32xl\:pb-2 { + padding-bottom: 0.5rem; } - .\32xl\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .\32xl\:pb-3 { + padding-bottom: 0.75rem; } - .\32xl\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .\32xl\:pb-4 { + padding-bottom: 1rem; } - .\32xl\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .\32xl\:pb-5 { + padding-bottom: 1.25rem; } - .\32xl\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .\32xl\:pb-6 { + padding-bottom: 1.5rem; } - .\32xl\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .\32xl\:pb-7 { + padding-bottom: 1.75rem; } - .\32xl\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .\32xl\:pb-8 { + padding-bottom: 2rem; } - .\32xl\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .\32xl\:pb-9 { + padding-bottom: 2.25rem; } - .\32xl\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .\32xl\:pb-10 { + padding-bottom: 2.5rem; } - .\32xl\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .\32xl\:pb-11 { + padding-bottom: 2.75rem; } - .\32xl\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .\32xl\:pb-12 { + padding-bottom: 3rem; } - .\32xl\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .\32xl\:pb-14 { + padding-bottom: 3.5rem; } - .\32xl\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .\32xl\:pb-16 { + padding-bottom: 4rem; } - .\32xl\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .\32xl\:pb-20 { + padding-bottom: 5rem; } - .\32xl\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .\32xl\:pb-24 { + padding-bottom: 6rem; } - .\32xl\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .\32xl\:pb-28 { + padding-bottom: 7rem; } - .\32xl\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .\32xl\:pb-32 { + padding-bottom: 8rem; } - .\32xl\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .\32xl\:pb-36 { + padding-bottom: 9rem; } - .\32xl\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .\32xl\:pb-40 { + padding-bottom: 10rem; } - .\32xl\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .\32xl\:pb-44 { + padding-bottom: 11rem; } - .\32xl\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .\32xl\:pb-48 { + padding-bottom: 12rem; } - .\32xl\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .\32xl\:pb-52 { + padding-bottom: 13rem; } - .\32xl\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .\32xl\:pb-56 { + padding-bottom: 14rem; } - .\32xl\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .\32xl\:pb-60 { + padding-bottom: 15rem; } - .\32xl\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .\32xl\:pb-64 { + padding-bottom: 16rem; } - .\32xl\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .\32xl\:pb-72 { + padding-bottom: 18rem; } - .\32xl\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .\32xl\:pb-80 { + padding-bottom: 20rem; } - .\32xl\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .\32xl\:pb-96 { + padding-bottom: 24rem; } - .\32xl\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .\32xl\:pb-px { + padding-bottom: 1px; } - .\32xl\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .\32xl\:pb-0\.5 { + padding-bottom: 0.125rem; } - .\32xl\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .\32xl\:pb-1\.5 { + padding-bottom: 0.375rem; } - .\32xl\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .\32xl\:pb-2\.5 { + padding-bottom: 0.625rem; } - .\32xl\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .\32xl\:pb-3\.5 { + padding-bottom: 0.875rem; } - .\32xl\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .\32xl\:pl-0 { + padding-left: 0px; } - .\32xl\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .\32xl\:pl-1 { + padding-left: 0.25rem; } - .\32xl\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .\32xl\:pl-2 { + padding-left: 0.5rem; } - .\32xl\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .\32xl\:pl-3 { + padding-left: 0.75rem; } - .\32xl\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .\32xl\:pl-4 { + padding-left: 1rem; } - .\32xl\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .\32xl\:pl-5 { + padding-left: 1.25rem; } - .\32xl\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .\32xl\:pl-6 { + padding-left: 1.5rem; } - .\32xl\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .\32xl\:pl-7 { + padding-left: 1.75rem; } - .\32xl\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .\32xl\:pl-8 { + padding-left: 2rem; } - .\32xl\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .\32xl\:pl-9 { + padding-left: 2.25rem; } - .\32xl\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .\32xl\:pl-10 { + padding-left: 2.5rem; } - .\32xl\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .\32xl\:pl-11 { + padding-left: 2.75rem; } - .\32xl\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .\32xl\:pl-12 { + padding-left: 3rem; } - .\32xl\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .\32xl\:pl-14 { + padding-left: 3.5rem; } - .\32xl\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .\32xl\:pl-16 { + padding-left: 4rem; } - .\32xl\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .\32xl\:pl-20 { + padding-left: 5rem; } - .\32xl\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .\32xl\:pl-24 { + padding-left: 6rem; } - .\32xl\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .\32xl\:pl-28 { + padding-left: 7rem; } - .\32xl\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .\32xl\:pl-32 { + padding-left: 8rem; } - .\32xl\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .\32xl\:pl-36 { + padding-left: 9rem; } - .\32xl\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .\32xl\:pl-40 { + padding-left: 10rem; } - .\32xl\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .\32xl\:pl-44 { + padding-left: 11rem; } - .\32xl\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .\32xl\:pl-48 { + padding-left: 12rem; } - .\32xl\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .\32xl\:pl-52 { + padding-left: 13rem; } - .\32xl\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .\32xl\:pl-56 { + padding-left: 14rem; } - .\32xl\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .\32xl\:pl-60 { + padding-left: 15rem; } - .\32xl\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .\32xl\:pl-64 { + padding-left: 16rem; } - .\32xl\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .\32xl\:pl-72 { + padding-left: 18rem; } - .\32xl\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .\32xl\:pl-80 { + padding-left: 20rem; } - .\32xl\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .\32xl\:pl-96 { + padding-left: 24rem; } - .\32xl\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .\32xl\:pl-px { + padding-left: 1px; } - .\32xl\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .\32xl\:pl-0\.5 { + padding-left: 0.125rem; } - .\32xl\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .\32xl\:pl-1\.5 { + padding-left: 0.375rem; } - .\32xl\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .\32xl\:pl-2\.5 { + padding-left: 0.625rem; } - .\32xl\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .\32xl\:pl-3\.5 { + padding-left: 0.875rem; } - .\32xl\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .\32xl\:text-left { + text-align: left; } - .\32xl\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .\32xl\:text-center { + text-align: center; } - .\32xl\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .\32xl\:text-right { + text-align: right; } - .\32xl\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .\32xl\:text-justify { + text-align: justify; } - .\32xl\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .\32xl\:align-baseline { + vertical-align: baseline; } - .\32xl\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .\32xl\:align-top { + vertical-align: top; } - .\32xl\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .\32xl\:align-middle { + vertical-align: middle; } - .\32xl\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .\32xl\:align-bottom { + vertical-align: bottom; } - .\32xl\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .\32xl\:align-text-top { + vertical-align: text-top; } - .\32xl\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .\32xl\:align-text-bottom { + vertical-align: text-bottom; } - .\32xl\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .\32xl\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .\32xl\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .\32xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .\32xl\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .\32xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .\32xl\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .\32xl\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .\32xl\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .\32xl\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .\32xl\:ring-opacity-0 { - --tw-ring-opacity: 0; + .\32xl\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .\32xl\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .\32xl\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .\32xl\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .\32xl\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .\32xl\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .\32xl\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .\32xl\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .\32xl\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .\32xl\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .\32xl\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .\32xl\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .\32xl\:text-5xl { + font-size: 3rem; + line-height: 1; } - .\32xl\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .\32xl\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .\32xl\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .\32xl\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .\32xl\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .\32xl\:text-8xl { + font-size: 6rem; + line-height: 1; } - .\32xl\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .\32xl\:text-9xl { + font-size: 8rem; + line-height: 1; } - .\32xl\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .\32xl\:font-thin { + font-weight: 100; } - .\32xl\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .\32xl\:font-extralight { + font-weight: 200; } - .\32xl\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .\32xl\:font-light { + font-weight: 300; } - .\32xl\:ring-opacity-100 { - --tw-ring-opacity: 1; + .\32xl\:font-normal { + font-weight: 400; } - .\32xl\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .\32xl\:font-medium { + font-weight: 500; } - .\32xl\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .\32xl\:font-semibold { + font-weight: 600; } - .\32xl\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .\32xl\:font-bold { + font-weight: 700; } - .\32xl\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .\32xl\:font-extrabold { + font-weight: 800; } - .\32xl\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .\32xl\:font-black { + font-weight: 900; } - .\32xl\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .\32xl\:uppercase { + text-transform: uppercase; } - .\32xl\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .\32xl\:lowercase { + text-transform: lowercase; } - .\32xl\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .\32xl\:capitalize { + text-transform: capitalize; } - .\32xl\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .\32xl\:normal-case { + text-transform: none; } - .\32xl\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .\32xl\:italic { + font-style: italic; } - .\32xl\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .\32xl\:not-italic { + font-style: normal; } - .\32xl\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .\32xl\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .\32xl\:normal-nums { + font-variant-numeric: normal; } - .\32xl\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .\32xl\:ordinal { + --tw-ordinal: ordinal; } - .\32xl\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .\32xl\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .\32xl\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .\32xl\:lining-nums { + --tw-numeric-figure: lining-nums; } - .\32xl\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .\32xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .\32xl\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .\32xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .\32xl\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .\32xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .\32xl\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .\32xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .\32xl\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .\32xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .\32xl\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .\32xl\:leading-3 { + line-height: .75rem; } - .\32xl\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .\32xl\:leading-4 { + line-height: 1rem; } - .\32xl\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .\32xl\:leading-5 { + line-height: 1.25rem; } - .\32xl\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .\32xl\:leading-6 { + line-height: 1.5rem; } - .\32xl\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .\32xl\:leading-7 { + line-height: 1.75rem; } - .\32xl\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .\32xl\:leading-8 { + line-height: 2rem; } - .\32xl\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .\32xl\:leading-9 { + line-height: 2.25rem; } - .\32xl\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .\32xl\:leading-10 { + line-height: 2.5rem; } - .\32xl\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .\32xl\:leading-none { + line-height: 1; } - .\32xl\:fill-current { - fill: currentColor; + .\32xl\:leading-tight { + line-height: 1.25; } - .\32xl\:stroke-current { - stroke: currentColor; + .\32xl\:leading-snug { + line-height: 1.375; } - .\32xl\:stroke-0 { - stroke-width: 0; + .\32xl\:leading-normal { + line-height: 1.5; } - .\32xl\:stroke-1 { - stroke-width: 1; + .\32xl\:leading-relaxed { + line-height: 1.625; } - .\32xl\:stroke-2 { - stroke-width: 2; + .\32xl\:leading-loose { + line-height: 2; } - .\32xl\:table-auto { - table-layout: auto; + .\32xl\:tracking-tighter { + letter-spacing: -0.05em; } - .\32xl\:table-fixed { - table-layout: fixed; + .\32xl\:tracking-tight { + letter-spacing: -0.025em; } - .\32xl\:text-left { - text-align: left; + .\32xl\:tracking-normal { + letter-spacing: 0em; } - .\32xl\:text-center { - text-align: center; + .\32xl\:tracking-wide { + letter-spacing: 0.025em; } - .\32xl\:text-right { - text-align: right; + .\32xl\:tracking-wider { + letter-spacing: 0.05em; } - .\32xl\:text-justify { - text-align: justify; + .\32xl\:tracking-widest { + letter-spacing: 0.1em; } .\32xl\:text-transparent { @@ -155025,44 +155498,6 @@ video { color: #831843; } - .\32xl\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .\32xl\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .\32xl\:overflow-clip { - text-overflow: clip; - } - - .\32xl\:italic { - font-style: italic; - } - - .\32xl\:not-italic { - font-style: normal; - } - - .\32xl\:uppercase { - text-transform: uppercase; - } - - .\32xl\:lowercase { - text-transform: lowercase; - } - - .\32xl\:capitalize { - text-transform: capitalize; - } - - .\32xl\:normal-case { - text-transform: none; - } - .\32xl\:underline { text-decoration: underline; } @@ -155133,4526 +155568,3971 @@ video { -moz-osx-font-smoothing: auto; } - .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); - } - - .\32xl\:normal-nums { - font-variant-numeric: normal; - } - - .\32xl\:ordinal { - --tw-ordinal: ordinal; - } - - .\32xl\:slashed-zero { - --tw-slashed-zero: slashed-zero; - } - - .\32xl\:lining-nums { - --tw-numeric-figure: lining-nums; - } - - .\32xl\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; - } - - .\32xl\:proportional-nums { - --tw-numeric-spacing: proportional-nums; - } - - .\32xl\:tabular-nums { - --tw-numeric-spacing: tabular-nums; - } - - .\32xl\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; - } - - .\32xl\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; - } - - .\32xl\:tracking-tighter { - letter-spacing: -0.05em; - } - - .\32xl\:tracking-tight { - letter-spacing: -0.025em; - } - - .\32xl\:tracking-normal { - letter-spacing: 0em; - } - - .\32xl\:tracking-wide { - letter-spacing: 0.025em; - } - - .\32xl\:tracking-wider { - letter-spacing: 0.05em; - } - - .\32xl\:tracking-widest { - letter-spacing: 0.1em; - } - - .\32xl\:select-none { - user-select: none; - } - - .\32xl\:select-text { - user-select: text; - } - - .\32xl\:select-all { - user-select: all; - } - - .\32xl\:select-auto { - user-select: auto; - } - - .\32xl\:align-baseline { - vertical-align: baseline; - } - - .\32xl\:align-top { - vertical-align: top; - } - - .\32xl\:align-middle { - vertical-align: middle; - } - - .\32xl\:align-bottom { - vertical-align: bottom; - } - - .\32xl\:align-text-top { - vertical-align: text-top; - } - - .\32xl\:align-text-bottom { - vertical-align: text-bottom; - } - - .\32xl\:visible { - visibility: visible; - } - - .\32xl\:invisible { - visibility: hidden; - } - - .\32xl\:whitespace-normal { - white-space: normal; - } - - .\32xl\:whitespace-nowrap { - white-space: nowrap; - } - - .\32xl\:whitespace-pre { - white-space: pre; - } - - .\32xl\:whitespace-pre-line { - white-space: pre-line; - } - - .\32xl\:whitespace-pre-wrap { - white-space: pre-wrap; - } - - .\32xl\:break-normal { - overflow-wrap: normal; - word-break: normal; - } - - .\32xl\:break-words { - overflow-wrap: break-word; - } - - .\32xl\:break-all { - word-break: break-all; - } - - .\32xl\:w-0 { - width: 0px; - } - - .\32xl\:w-1 { - width: 0.25rem; - } - - .\32xl\:w-2 { - width: 0.5rem; - } - - .\32xl\:w-3 { - width: 0.75rem; - } - - .\32xl\:w-4 { - width: 1rem; - } - - .\32xl\:w-5 { - width: 1.25rem; - } - - .\32xl\:w-6 { - width: 1.5rem; - } - - .\32xl\:w-7 { - width: 1.75rem; - } - - .\32xl\:w-8 { - width: 2rem; - } - - .\32xl\:w-9 { - width: 2.25rem; - } - - .\32xl\:w-10 { - width: 2.5rem; - } - - .\32xl\:w-11 { - width: 2.75rem; - } - - .\32xl\:w-12 { - width: 3rem; - } - - .\32xl\:w-14 { - width: 3.5rem; - } - - .\32xl\:w-16 { - width: 4rem; - } - - .\32xl\:w-20 { - width: 5rem; - } - - .\32xl\:w-24 { - width: 6rem; - } - - .\32xl\:w-28 { - width: 7rem; - } - - .\32xl\:w-32 { - width: 8rem; - } - - .\32xl\:w-36 { - width: 9rem; - } - - .\32xl\:w-40 { - width: 10rem; - } - - .\32xl\:w-44 { - width: 11rem; - } - - .\32xl\:w-48 { - width: 12rem; - } - - .\32xl\:w-52 { - width: 13rem; - } - - .\32xl\:w-56 { - width: 14rem; - } - - .\32xl\:w-60 { - width: 15rem; - } - - .\32xl\:w-64 { - width: 16rem; - } - - .\32xl\:w-72 { - width: 18rem; - } - - .\32xl\:w-80 { - width: 20rem; - } - - .\32xl\:w-96 { - width: 24rem; - } - - .\32xl\:w-auto { - width: auto; - } - - .\32xl\:w-px { - width: 1px; - } - - .\32xl\:w-0\.5 { - width: 0.125rem; - } - - .\32xl\:w-1\.5 { - width: 0.375rem; - } - - .\32xl\:w-2\.5 { - width: 0.625rem; - } - - .\32xl\:w-3\.5 { - width: 0.875rem; - } - - .\32xl\:w-1\/2 { - width: 50%; - } - - .\32xl\:w-1\/3 { - width: 33.333333%; - } - - .\32xl\:w-2\/3 { - width: 66.666667%; - } - - .\32xl\:w-1\/4 { - width: 25%; - } - - .\32xl\:w-2\/4 { - width: 50%; - } - - .\32xl\:w-3\/4 { - width: 75%; - } - - .\32xl\:w-1\/5 { - width: 20%; - } - - .\32xl\:w-2\/5 { - width: 40%; - } - - .\32xl\:w-3\/5 { - width: 60%; - } - - .\32xl\:w-4\/5 { - width: 80%; - } - - .\32xl\:w-1\/6 { - width: 16.666667%; - } - - .\32xl\:w-2\/6 { - width: 33.333333%; - } - - .\32xl\:w-3\/6 { - width: 50%; - } - - .\32xl\:w-4\/6 { - width: 66.666667%; - } - - .\32xl\:w-5\/6 { - width: 83.333333%; - } - - .\32xl\:w-1\/12 { - width: 8.333333%; - } - - .\32xl\:w-2\/12 { - width: 16.666667%; - } - - .\32xl\:w-3\/12 { - width: 25%; - } - - .\32xl\:w-4\/12 { - width: 33.333333%; - } - - .\32xl\:w-5\/12 { - width: 41.666667%; - } - - .\32xl\:w-6\/12 { - width: 50%; - } - - .\32xl\:w-7\/12 { - width: 58.333333%; - } - - .\32xl\:w-8\/12 { - width: 66.666667%; - } - - .\32xl\:w-9\/12 { - width: 75%; - } - - .\32xl\:w-10\/12 { - width: 83.333333%; - } - - .\32xl\:w-11\/12 { - width: 91.666667%; - } - - .\32xl\:w-full { - width: 100%; - } - - .\32xl\:w-screen { - width: 100vw; - } - - .\32xl\:w-min { - width: min-content; - } - - .\32xl\:w-max { - width: max-content; - } - - .\32xl\:z-0 { - z-index: 0; - } - - .\32xl\:z-10 { - z-index: 10; - } - - .\32xl\:z-20 { - z-index: 20; - } - - .\32xl\:z-30 { - z-index: 30; - } - - .\32xl\:z-40 { - z-index: 40; - } - - .\32xl\:z-50 { - z-index: 50; - } - - .\32xl\:z-auto { - z-index: auto; - } - - .\32xl\:focus-within\:z-0:focus-within { - z-index: 0; - } - - .\32xl\:focus-within\:z-10:focus-within { - z-index: 10; - } - - .\32xl\:focus-within\:z-20:focus-within { - z-index: 20; - } - - .\32xl\:focus-within\:z-30:focus-within { - z-index: 30; - } - - .\32xl\:focus-within\:z-40:focus-within { - z-index: 40; - } - - .\32xl\:focus-within\:z-50:focus-within { - z-index: 50; - } - - .\32xl\:focus-within\:z-auto:focus-within { - z-index: auto; - } - - .\32xl\:focus\:z-0:focus { - z-index: 0; - } - - .\32xl\:focus\:z-10:focus { - z-index: 10; - } - - .\32xl\:focus\:z-20:focus { - z-index: 20; - } - - .\32xl\:focus\:z-30:focus { - z-index: 30; - } - - .\32xl\:focus\:z-40:focus { - z-index: 40; - } - - .\32xl\:focus\:z-50:focus { - z-index: 50; - } - - .\32xl\:focus\:z-auto:focus { - z-index: auto; - } - - .\32xl\:isolate { - isolation: isolate; - } - - .\32xl\:isolation-auto { - isolation: auto; - } - - .\32xl\:gap-0 { - gap: 0px; - } - - .\32xl\:gap-1 { - gap: 0.25rem; - } - - .\32xl\:gap-2 { - gap: 0.5rem; - } - - .\32xl\:gap-3 { - gap: 0.75rem; - } - - .\32xl\:gap-4 { - gap: 1rem; - } - - .\32xl\:gap-5 { - gap: 1.25rem; - } - - .\32xl\:gap-6 { - gap: 1.5rem; - } - - .\32xl\:gap-7 { - gap: 1.75rem; - } - - .\32xl\:gap-8 { - gap: 2rem; - } - - .\32xl\:gap-9 { - gap: 2.25rem; - } - - .\32xl\:gap-10 { - gap: 2.5rem; - } - - .\32xl\:gap-11 { - gap: 2.75rem; - } - - .\32xl\:gap-12 { - gap: 3rem; - } - - .\32xl\:gap-14 { - gap: 3.5rem; - } - - .\32xl\:gap-16 { - gap: 4rem; - } - - .\32xl\:gap-20 { - gap: 5rem; - } - - .\32xl\:gap-24 { - gap: 6rem; - } - - .\32xl\:gap-28 { - gap: 7rem; - } - - .\32xl\:gap-32 { - gap: 8rem; - } - - .\32xl\:gap-36 { - gap: 9rem; - } - - .\32xl\:gap-40 { - gap: 10rem; - } - - .\32xl\:gap-44 { - gap: 11rem; - } - - .\32xl\:gap-48 { - gap: 12rem; - } - - .\32xl\:gap-52 { - gap: 13rem; - } - - .\32xl\:gap-56 { - gap: 14rem; - } - - .\32xl\:gap-60 { - gap: 15rem; - } - - .\32xl\:gap-64 { - gap: 16rem; - } - - .\32xl\:gap-72 { - gap: 18rem; - } - - .\32xl\:gap-80 { - gap: 20rem; - } - - .\32xl\:gap-96 { - gap: 24rem; - } - - .\32xl\:gap-px { - gap: 1px; - } - - .\32xl\:gap-0\.5 { - gap: 0.125rem; - } - - .\32xl\:gap-1\.5 { - gap: 0.375rem; - } - - .\32xl\:gap-2\.5 { - gap: 0.625rem; - } - - .\32xl\:gap-3\.5 { - gap: 0.875rem; - } - - .\32xl\:gap-x-0 { - column-gap: 0px; - } - - .\32xl\:gap-x-1 { - column-gap: 0.25rem; - } - - .\32xl\:gap-x-2 { - column-gap: 0.5rem; - } - - .\32xl\:gap-x-3 { - column-gap: 0.75rem; - } - - .\32xl\:gap-x-4 { - column-gap: 1rem; - } - - .\32xl\:gap-x-5 { - column-gap: 1.25rem; - } - - .\32xl\:gap-x-6 { - column-gap: 1.5rem; - } - - .\32xl\:gap-x-7 { - column-gap: 1.75rem; - } - - .\32xl\:gap-x-8 { - column-gap: 2rem; - } - - .\32xl\:gap-x-9 { - column-gap: 2.25rem; - } - - .\32xl\:gap-x-10 { - column-gap: 2.5rem; - } - - .\32xl\:gap-x-11 { - column-gap: 2.75rem; - } - - .\32xl\:gap-x-12 { - column-gap: 3rem; - } - - .\32xl\:gap-x-14 { - column-gap: 3.5rem; - } - - .\32xl\:gap-x-16 { - column-gap: 4rem; - } - - .\32xl\:gap-x-20 { - column-gap: 5rem; - } - - .\32xl\:gap-x-24 { - column-gap: 6rem; - } - - .\32xl\:gap-x-28 { - column-gap: 7rem; - } - - .\32xl\:gap-x-32 { - column-gap: 8rem; - } - - .\32xl\:gap-x-36 { - column-gap: 9rem; - } - - .\32xl\:gap-x-40 { - column-gap: 10rem; - } - - .\32xl\:gap-x-44 { - column-gap: 11rem; - } - - .\32xl\:gap-x-48 { - column-gap: 12rem; - } - - .\32xl\:gap-x-52 { - column-gap: 13rem; - } - - .\32xl\:gap-x-56 { - column-gap: 14rem; - } - - .\32xl\:gap-x-60 { - column-gap: 15rem; - } - - .\32xl\:gap-x-64 { - column-gap: 16rem; - } - - .\32xl\:gap-x-72 { - column-gap: 18rem; - } - - .\32xl\:gap-x-80 { - column-gap: 20rem; - } - - .\32xl\:gap-x-96 { - column-gap: 24rem; - } - - .\32xl\:gap-x-px { - column-gap: 1px; - } - - .\32xl\:gap-x-0\.5 { - column-gap: 0.125rem; - } - - .\32xl\:gap-x-1\.5 { - column-gap: 0.375rem; - } - - .\32xl\:gap-x-2\.5 { - column-gap: 0.625rem; - } - - .\32xl\:gap-x-3\.5 { - column-gap: 0.875rem; - } - - .\32xl\:gap-y-0 { - row-gap: 0px; - } - - .\32xl\:gap-y-1 { - row-gap: 0.25rem; - } - - .\32xl\:gap-y-2 { - row-gap: 0.5rem; - } - - .\32xl\:gap-y-3 { - row-gap: 0.75rem; - } - - .\32xl\:gap-y-4 { - row-gap: 1rem; - } - - .\32xl\:gap-y-5 { - row-gap: 1.25rem; - } - - .\32xl\:gap-y-6 { - row-gap: 1.5rem; - } - - .\32xl\:gap-y-7 { - row-gap: 1.75rem; - } - - .\32xl\:gap-y-8 { - row-gap: 2rem; - } - - .\32xl\:gap-y-9 { - row-gap: 2.25rem; - } - - .\32xl\:gap-y-10 { - row-gap: 2.5rem; - } - - .\32xl\:gap-y-11 { - row-gap: 2.75rem; + .\32xl\:placeholder-transparent::placeholder { + color: transparent; } - .\32xl\:gap-y-12 { - row-gap: 3rem; + .\32xl\:placeholder-current::placeholder { + color: currentColor; } - .\32xl\:gap-y-14 { - row-gap: 3.5rem; + .\32xl\:placeholder-black::placeholder { + color: #000; } - .\32xl\:gap-y-16 { - row-gap: 4rem; + .\32xl\:placeholder-white::placeholder { + color: #fff; } - .\32xl\:gap-y-20 { - row-gap: 5rem; + .\32xl\:placeholder-gray-50::placeholder { + color: #f9fafb; } - .\32xl\:gap-y-24 { - row-gap: 6rem; + .\32xl\:placeholder-gray-100::placeholder { + color: #f3f4f6; } - .\32xl\:gap-y-28 { - row-gap: 7rem; + .\32xl\:placeholder-gray-200::placeholder { + color: #e5e7eb; } - .\32xl\:gap-y-32 { - row-gap: 8rem; + .\32xl\:placeholder-gray-300::placeholder { + color: #d1d5db; } - .\32xl\:gap-y-36 { - row-gap: 9rem; + .\32xl\:placeholder-gray-400::placeholder { + color: #9ca3af; } - .\32xl\:gap-y-40 { - row-gap: 10rem; + .\32xl\:placeholder-gray-500::placeholder { + color: #6b7280; } - .\32xl\:gap-y-44 { - row-gap: 11rem; + .\32xl\:placeholder-gray-600::placeholder { + color: #4b5563; } - .\32xl\:gap-y-48 { - row-gap: 12rem; + .\32xl\:placeholder-gray-700::placeholder { + color: #374151; } - .\32xl\:gap-y-52 { - row-gap: 13rem; + .\32xl\:placeholder-gray-800::placeholder { + color: #1f2937; } - .\32xl\:gap-y-56 { - row-gap: 14rem; + .\32xl\:placeholder-gray-900::placeholder { + color: #111827; } - .\32xl\:gap-y-60 { - row-gap: 15rem; + .\32xl\:placeholder-red-50::placeholder { + color: #fef2f2; } - .\32xl\:gap-y-64 { - row-gap: 16rem; + .\32xl\:placeholder-red-100::placeholder { + color: #fee2e2; } - .\32xl\:gap-y-72 { - row-gap: 18rem; + .\32xl\:placeholder-red-200::placeholder { + color: #fecaca; } - .\32xl\:gap-y-80 { - row-gap: 20rem; + .\32xl\:placeholder-red-300::placeholder { + color: #fca5a5; } - .\32xl\:gap-y-96 { - row-gap: 24rem; + .\32xl\:placeholder-red-400::placeholder { + color: #f87171; } - .\32xl\:gap-y-px { - row-gap: 1px; + .\32xl\:placeholder-red-500::placeholder { + color: #ef4444; } - .\32xl\:gap-y-0\.5 { - row-gap: 0.125rem; + .\32xl\:placeholder-red-600::placeholder { + color: #dc2626; } - .\32xl\:gap-y-1\.5 { - row-gap: 0.375rem; + .\32xl\:placeholder-red-700::placeholder { + color: #b91c1c; } - .\32xl\:gap-y-2\.5 { - row-gap: 0.625rem; + .\32xl\:placeholder-red-800::placeholder { + color: #991b1b; } - .\32xl\:gap-y-3\.5 { - row-gap: 0.875rem; + .\32xl\:placeholder-red-900::placeholder { + color: #7f1d1d; } - .\32xl\:grid-flow-row { - grid-auto-flow: row; + .\32xl\:placeholder-yellow-50::placeholder { + color: #fffbeb; } - .\32xl\:grid-flow-col { - grid-auto-flow: column; + .\32xl\:placeholder-yellow-100::placeholder { + color: #fef3c7; } - .\32xl\:grid-flow-row-dense { - grid-auto-flow: row dense; + .\32xl\:placeholder-yellow-200::placeholder { + color: #fde68a; } - .\32xl\:grid-flow-col-dense { - grid-auto-flow: column dense; + .\32xl\:placeholder-yellow-300::placeholder { + color: #fcd34d; } - .\32xl\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .\32xl\:placeholder-yellow-400::placeholder { + color: #fbbf24; } - .\32xl\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .\32xl\:placeholder-yellow-500::placeholder { + color: #f59e0b; } - .\32xl\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .\32xl\:placeholder-yellow-600::placeholder { + color: #d97706; } - .\32xl\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .\32xl\:placeholder-yellow-700::placeholder { + color: #b45309; } - .\32xl\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .\32xl\:placeholder-yellow-800::placeholder { + color: #92400e; } - .\32xl\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .\32xl\:placeholder-yellow-900::placeholder { + color: #78350f; } - .\32xl\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .\32xl\:placeholder-green-50::placeholder { + color: #ecfdf5; } - .\32xl\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .\32xl\:placeholder-green-100::placeholder { + color: #d1fae5; } - .\32xl\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .\32xl\:placeholder-green-200::placeholder { + color: #a7f3d0; } - .\32xl\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .\32xl\:placeholder-green-300::placeholder { + color: #6ee7b7; } - .\32xl\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .\32xl\:placeholder-green-400::placeholder { + color: #34d399; } - .\32xl\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .\32xl\:placeholder-green-500::placeholder { + color: #10b981; } - .\32xl\:grid-cols-none { - grid-template-columns: none; + .\32xl\:placeholder-green-600::placeholder { + color: #059669; } - .\32xl\:auto-cols-auto { - grid-auto-columns: auto; + .\32xl\:placeholder-green-700::placeholder { + color: #047857; } - .\32xl\:auto-cols-min { - grid-auto-columns: min-content; + .\32xl\:placeholder-green-800::placeholder { + color: #065f46; } - .\32xl\:auto-cols-max { - grid-auto-columns: max-content; + .\32xl\:placeholder-green-900::placeholder { + color: #064e3b; } - .\32xl\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .\32xl\:placeholder-blue-50::placeholder { + color: #eff6ff; } - .\32xl\:col-auto { - grid-column: auto; + .\32xl\:placeholder-blue-100::placeholder { + color: #dbeafe; } - .\32xl\:col-span-1 { - grid-column: span 1 / span 1; + .\32xl\:placeholder-blue-200::placeholder { + color: #bfdbfe; } - .\32xl\:col-span-2 { - grid-column: span 2 / span 2; + .\32xl\:placeholder-blue-300::placeholder { + color: #93c5fd; } - .\32xl\:col-span-3 { - grid-column: span 3 / span 3; + .\32xl\:placeholder-blue-400::placeholder { + color: #60a5fa; } - .\32xl\:col-span-4 { - grid-column: span 4 / span 4; + .\32xl\:placeholder-blue-500::placeholder { + color: #3b82f6; } - .\32xl\:col-span-5 { - grid-column: span 5 / span 5; + .\32xl\:placeholder-blue-600::placeholder { + color: #2563eb; } - .\32xl\:col-span-6 { - grid-column: span 6 / span 6; + .\32xl\:placeholder-blue-700::placeholder { + color: #1d4ed8; } - .\32xl\:col-span-7 { - grid-column: span 7 / span 7; + .\32xl\:placeholder-blue-800::placeholder { + color: #1e40af; } - .\32xl\:col-span-8 { - grid-column: span 8 / span 8; + .\32xl\:placeholder-blue-900::placeholder { + color: #1e3a8a; } - .\32xl\:col-span-9 { - grid-column: span 9 / span 9; + .\32xl\:placeholder-indigo-50::placeholder { + color: #eef2ff; } - .\32xl\:col-span-10 { - grid-column: span 10 / span 10; + .\32xl\:placeholder-indigo-100::placeholder { + color: #e0e7ff; } - .\32xl\:col-span-11 { - grid-column: span 11 / span 11; + .\32xl\:placeholder-indigo-200::placeholder { + color: #c7d2fe; } - .\32xl\:col-span-12 { - grid-column: span 12 / span 12; + .\32xl\:placeholder-indigo-300::placeholder { + color: #a5b4fc; } - .\32xl\:col-span-full { - grid-column: 1 / -1; + .\32xl\:placeholder-indigo-400::placeholder { + color: #818cf8; } - .\32xl\:col-start-1 { - grid-column-start: 1; + .\32xl\:placeholder-indigo-500::placeholder { + color: #6366f1; } - .\32xl\:col-start-2 { - grid-column-start: 2; + .\32xl\:placeholder-indigo-600::placeholder { + color: #4f46e5; } - .\32xl\:col-start-3 { - grid-column-start: 3; + .\32xl\:placeholder-indigo-700::placeholder { + color: #4338ca; } - .\32xl\:col-start-4 { - grid-column-start: 4; + .\32xl\:placeholder-indigo-800::placeholder { + color: #3730a3; } - .\32xl\:col-start-5 { - grid-column-start: 5; + .\32xl\:placeholder-indigo-900::placeholder { + color: #312e81; } - .\32xl\:col-start-6 { - grid-column-start: 6; + .\32xl\:placeholder-purple-50::placeholder { + color: #f5f3ff; } - .\32xl\:col-start-7 { - grid-column-start: 7; + .\32xl\:placeholder-purple-100::placeholder { + color: #ede9fe; } - .\32xl\:col-start-8 { - grid-column-start: 8; + .\32xl\:placeholder-purple-200::placeholder { + color: #ddd6fe; } - .\32xl\:col-start-9 { - grid-column-start: 9; + .\32xl\:placeholder-purple-300::placeholder { + color: #c4b5fd; } - .\32xl\:col-start-10 { - grid-column-start: 10; + .\32xl\:placeholder-purple-400::placeholder { + color: #a78bfa; } - .\32xl\:col-start-11 { - grid-column-start: 11; + .\32xl\:placeholder-purple-500::placeholder { + color: #8b5cf6; } - .\32xl\:col-start-12 { - grid-column-start: 12; + .\32xl\:placeholder-purple-600::placeholder { + color: #7c3aed; } - .\32xl\:col-start-13 { - grid-column-start: 13; + .\32xl\:placeholder-purple-700::placeholder { + color: #6d28d9; } - .\32xl\:col-start-auto { - grid-column-start: auto; + .\32xl\:placeholder-purple-800::placeholder { + color: #5b21b6; } - .\32xl\:col-end-1 { - grid-column-end: 1; + .\32xl\:placeholder-purple-900::placeholder { + color: #4c1d95; } - .\32xl\:col-end-2 { - grid-column-end: 2; + .\32xl\:placeholder-pink-50::placeholder { + color: #fdf2f8; } - .\32xl\:col-end-3 { - grid-column-end: 3; + .\32xl\:placeholder-pink-100::placeholder { + color: #fce7f3; } - .\32xl\:col-end-4 { - grid-column-end: 4; + .\32xl\:placeholder-pink-200::placeholder { + color: #fbcfe8; } - .\32xl\:col-end-5 { - grid-column-end: 5; + .\32xl\:placeholder-pink-300::placeholder { + color: #f9a8d4; } - .\32xl\:col-end-6 { - grid-column-end: 6; + .\32xl\:placeholder-pink-400::placeholder { + color: #f472b6; } - .\32xl\:col-end-7 { - grid-column-end: 7; + .\32xl\:placeholder-pink-500::placeholder { + color: #ec4899; } - .\32xl\:col-end-8 { - grid-column-end: 8; + .\32xl\:placeholder-pink-600::placeholder { + color: #db2777; } - .\32xl\:col-end-9 { - grid-column-end: 9; + .\32xl\:placeholder-pink-700::placeholder { + color: #be185d; } - .\32xl\:col-end-10 { - grid-column-end: 10; + .\32xl\:placeholder-pink-800::placeholder { + color: #9d174d; } - .\32xl\:col-end-11 { - grid-column-end: 11; + .\32xl\:placeholder-pink-900::placeholder { + color: #831843; } - .\32xl\:col-end-12 { - grid-column-end: 12; + .\32xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .\32xl\:col-end-13 { - grid-column-end: 13; + .\32xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .\32xl\:col-end-auto { - grid-column-end: auto; + .\32xl\:focus\:placeholder-black:focus::placeholder { + color: #000; } - .\32xl\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-white:focus::placeholder { + color: #fff; } - .\32xl\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-gray-50:focus::placeholder { + color: #f9fafb; } - .\32xl\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-gray-100:focus::placeholder { + color: #f3f4f6; } - .\32xl\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-gray-200:focus::placeholder { + color: #e5e7eb; } - .\32xl\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-gray-300:focus::placeholder { + color: #d1d5db; } - .\32xl\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-gray-400:focus::placeholder { + color: #9ca3af; } - .\32xl\:grid-rows-none { - grid-template-rows: none; + .\32xl\:focus\:placeholder-gray-500:focus::placeholder { + color: #6b7280; } - .\32xl\:auto-rows-auto { - grid-auto-rows: auto; + .\32xl\:focus\:placeholder-gray-600:focus::placeholder { + color: #4b5563; } - .\32xl\:auto-rows-min { - grid-auto-rows: min-content; + .\32xl\:focus\:placeholder-gray-700:focus::placeholder { + color: #374151; } - .\32xl\:auto-rows-max { - grid-auto-rows: max-content; + .\32xl\:focus\:placeholder-gray-800:focus::placeholder { + color: #1f2937; } - .\32xl\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .\32xl\:focus\:placeholder-gray-900:focus::placeholder { + color: #111827; } - .\32xl\:row-auto { - grid-row: auto; + .\32xl\:focus\:placeholder-red-50:focus::placeholder { + color: #fef2f2; } - .\32xl\:row-span-1 { - grid-row: span 1 / span 1; + .\32xl\:focus\:placeholder-red-100:focus::placeholder { + color: #fee2e2; } - .\32xl\:row-span-2 { - grid-row: span 2 / span 2; + .\32xl\:focus\:placeholder-red-200:focus::placeholder { + color: #fecaca; } - .\32xl\:row-span-3 { - grid-row: span 3 / span 3; + .\32xl\:focus\:placeholder-red-300:focus::placeholder { + color: #fca5a5; } - .\32xl\:row-span-4 { - grid-row: span 4 / span 4; + .\32xl\:focus\:placeholder-red-400:focus::placeholder { + color: #f87171; } - .\32xl\:row-span-5 { - grid-row: span 5 / span 5; + .\32xl\:focus\:placeholder-red-500:focus::placeholder { + color: #ef4444; } - .\32xl\:row-span-6 { - grid-row: span 6 / span 6; + .\32xl\:focus\:placeholder-red-600:focus::placeholder { + color: #dc2626; } - .\32xl\:row-span-full { - grid-row: 1 / -1; + .\32xl\:focus\:placeholder-red-700:focus::placeholder { + color: #b91c1c; } - .\32xl\:row-start-1 { - grid-row-start: 1; + .\32xl\:focus\:placeholder-red-800:focus::placeholder { + color: #991b1b; } - .\32xl\:row-start-2 { - grid-row-start: 2; + .\32xl\:focus\:placeholder-red-900:focus::placeholder { + color: #7f1d1d; } - .\32xl\:row-start-3 { - grid-row-start: 3; + .\32xl\:focus\:placeholder-yellow-50:focus::placeholder { + color: #fffbeb; } - .\32xl\:row-start-4 { - grid-row-start: 4; + .\32xl\:focus\:placeholder-yellow-100:focus::placeholder { + color: #fef3c7; } - .\32xl\:row-start-5 { - grid-row-start: 5; + .\32xl\:focus\:placeholder-yellow-200:focus::placeholder { + color: #fde68a; } - .\32xl\:row-start-6 { - grid-row-start: 6; + .\32xl\:focus\:placeholder-yellow-300:focus::placeholder { + color: #fcd34d; } - .\32xl\:row-start-7 { - grid-row-start: 7; + .\32xl\:focus\:placeholder-yellow-400:focus::placeholder { + color: #fbbf24; } - .\32xl\:row-start-auto { - grid-row-start: auto; + .\32xl\:focus\:placeholder-yellow-500:focus::placeholder { + color: #f59e0b; } - .\32xl\:row-end-1 { - grid-row-end: 1; + .\32xl\:focus\:placeholder-yellow-600:focus::placeholder { + color: #d97706; } - .\32xl\:row-end-2 { - grid-row-end: 2; + .\32xl\:focus\:placeholder-yellow-700:focus::placeholder { + color: #b45309; } - .\32xl\:row-end-3 { - grid-row-end: 3; + .\32xl\:focus\:placeholder-yellow-800:focus::placeholder { + color: #92400e; } - .\32xl\:row-end-4 { - grid-row-end: 4; + .\32xl\:focus\:placeholder-yellow-900:focus::placeholder { + color: #78350f; } - .\32xl\:row-end-5 { - grid-row-end: 5; + .\32xl\:focus\:placeholder-green-50:focus::placeholder { + color: #ecfdf5; } - .\32xl\:row-end-6 { - grid-row-end: 6; + .\32xl\:focus\:placeholder-green-100:focus::placeholder { + color: #d1fae5; } - .\32xl\:row-end-7 { - grid-row-end: 7; + .\32xl\:focus\:placeholder-green-200:focus::placeholder { + color: #a7f3d0; } - .\32xl\:row-end-auto { - grid-row-end: auto; + .\32xl\:focus\:placeholder-green-300:focus::placeholder { + color: #6ee7b7; } - .\32xl\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .\32xl\:focus\:placeholder-green-400:focus::placeholder { + color: #34d399; } - .\32xl\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .\32xl\:focus\:placeholder-green-500:focus::placeholder { + color: #10b981; } - .\32xl\:transform-none { - transform: none; + .\32xl\:focus\:placeholder-green-600:focus::placeholder { + color: #059669; } - .\32xl\:origin-center { - transform-origin: center; + .\32xl\:focus\:placeholder-green-700:focus::placeholder { + color: #047857; } - .\32xl\:origin-top { - transform-origin: top; + .\32xl\:focus\:placeholder-green-800:focus::placeholder { + color: #065f46; } - .\32xl\:origin-top-right { - transform-origin: top right; + .\32xl\:focus\:placeholder-green-900:focus::placeholder { + color: #064e3b; } - .\32xl\:origin-right { - transform-origin: right; + .\32xl\:focus\:placeholder-blue-50:focus::placeholder { + color: #eff6ff; } - .\32xl\:origin-bottom-right { - transform-origin: bottom right; + .\32xl\:focus\:placeholder-blue-100:focus::placeholder { + color: #dbeafe; } - .\32xl\:origin-bottom { - transform-origin: bottom; + .\32xl\:focus\:placeholder-blue-200:focus::placeholder { + color: #bfdbfe; } - .\32xl\:origin-bottom-left { - transform-origin: bottom left; + .\32xl\:focus\:placeholder-blue-300:focus::placeholder { + color: #93c5fd; } - .\32xl\:origin-left { - transform-origin: left; + .\32xl\:focus\:placeholder-blue-400:focus::placeholder { + color: #60a5fa; } - .\32xl\:origin-top-left { - transform-origin: top left; + .\32xl\:focus\:placeholder-blue-500:focus::placeholder { + color: #3b82f6; } - .\32xl\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .\32xl\:focus\:placeholder-blue-600:focus::placeholder { + color: #2563eb; } - .\32xl\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .\32xl\:focus\:placeholder-blue-700:focus::placeholder { + color: #1d4ed8; } - .\32xl\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .\32xl\:focus\:placeholder-blue-800:focus::placeholder { + color: #1e40af; } - .\32xl\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .\32xl\:focus\:placeholder-blue-900:focus::placeholder { + color: #1e3a8a; } - .\32xl\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .\32xl\:focus\:placeholder-indigo-50:focus::placeholder { + color: #eef2ff; } - .\32xl\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .\32xl\:focus\:placeholder-indigo-100:focus::placeholder { + color: #e0e7ff; } - .\32xl\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .\32xl\:focus\:placeholder-indigo-200:focus::placeholder { + color: #c7d2fe; } - .\32xl\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .\32xl\:focus\:placeholder-indigo-300:focus::placeholder { + color: #a5b4fc; } - .\32xl\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .\32xl\:focus\:placeholder-indigo-400:focus::placeholder { + color: #818cf8; } - .\32xl\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .\32xl\:focus\:placeholder-indigo-500:focus::placeholder { + color: #6366f1; } - .\32xl\:scale-x-0 { - --tw-scale-x: 0; + .\32xl\:focus\:placeholder-indigo-600:focus::placeholder { + color: #4f46e5; } - .\32xl\:scale-x-50 { - --tw-scale-x: .5; + .\32xl\:focus\:placeholder-indigo-700:focus::placeholder { + color: #4338ca; } - .\32xl\:scale-x-75 { - --tw-scale-x: .75; + .\32xl\:focus\:placeholder-indigo-800:focus::placeholder { + color: #3730a3; } - .\32xl\:scale-x-90 { - --tw-scale-x: .9; + .\32xl\:focus\:placeholder-indigo-900:focus::placeholder { + color: #312e81; } - .\32xl\:scale-x-95 { - --tw-scale-x: .95; + .\32xl\:focus\:placeholder-purple-50:focus::placeholder { + color: #f5f3ff; } - .\32xl\:scale-x-100 { - --tw-scale-x: 1; + .\32xl\:focus\:placeholder-purple-100:focus::placeholder { + color: #ede9fe; } - .\32xl\:scale-x-105 { - --tw-scale-x: 1.05; + .\32xl\:focus\:placeholder-purple-200:focus::placeholder { + color: #ddd6fe; } - .\32xl\:scale-x-110 { - --tw-scale-x: 1.1; + .\32xl\:focus\:placeholder-purple-300:focus::placeholder { + color: #c4b5fd; } - .\32xl\:scale-x-125 { - --tw-scale-x: 1.25; + .\32xl\:focus\:placeholder-purple-400:focus::placeholder { + color: #a78bfa; } - .\32xl\:scale-x-150 { - --tw-scale-x: 1.5; + .\32xl\:focus\:placeholder-purple-500:focus::placeholder { + color: #8b5cf6; } - .\32xl\:scale-y-0 { - --tw-scale-y: 0; + .\32xl\:focus\:placeholder-purple-600:focus::placeholder { + color: #7c3aed; } - .\32xl\:scale-y-50 { - --tw-scale-y: .5; + .\32xl\:focus\:placeholder-purple-700:focus::placeholder { + color: #6d28d9; } - .\32xl\:scale-y-75 { - --tw-scale-y: .75; + .\32xl\:focus\:placeholder-purple-800:focus::placeholder { + color: #5b21b6; } - .\32xl\:scale-y-90 { - --tw-scale-y: .9; + .\32xl\:focus\:placeholder-purple-900:focus::placeholder { + color: #4c1d95; } - .\32xl\:scale-y-95 { - --tw-scale-y: .95; + .\32xl\:focus\:placeholder-pink-50:focus::placeholder { + color: #fdf2f8; } - .\32xl\:scale-y-100 { - --tw-scale-y: 1; + .\32xl\:focus\:placeholder-pink-100:focus::placeholder { + color: #fce7f3; } - .\32xl\:scale-y-105 { - --tw-scale-y: 1.05; + .\32xl\:focus\:placeholder-pink-200:focus::placeholder { + color: #fbcfe8; } - .\32xl\:scale-y-110 { - --tw-scale-y: 1.1; + .\32xl\:focus\:placeholder-pink-300:focus::placeholder { + color: #f9a8d4; } - .\32xl\:scale-y-125 { - --tw-scale-y: 1.25; + .\32xl\:focus\:placeholder-pink-400:focus::placeholder { + color: #f472b6; } - .\32xl\:scale-y-150 { - --tw-scale-y: 1.5; + .\32xl\:focus\:placeholder-pink-500:focus::placeholder { + color: #ec4899; } - .\32xl\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .\32xl\:focus\:placeholder-pink-600:focus::placeholder { + color: #db2777; } - .\32xl\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .\32xl\:focus\:placeholder-pink-700:focus::placeholder { + color: #be185d; } - .\32xl\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .\32xl\:focus\:placeholder-pink-800:focus::placeholder { + color: #9d174d; } - .\32xl\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .\32xl\:focus\:placeholder-pink-900:focus::placeholder { + color: #831843; } - .\32xl\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .\32xl\:opacity-0 { + opacity: 0; } - .\32xl\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .\32xl\:opacity-5 { + opacity: 0.05; } - .\32xl\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .\32xl\:opacity-10 { + opacity: 0.1; } - .\32xl\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .\32xl\:opacity-20 { + opacity: 0.2; } - .\32xl\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .\32xl\:opacity-25 { + opacity: 0.25; } - .\32xl\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .\32xl\:opacity-30 { + opacity: 0.3; } - .\32xl\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .\32xl\:opacity-40 { + opacity: 0.4; } - .\32xl\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .\32xl\:opacity-50 { + opacity: 0.5; } - .\32xl\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .\32xl\:opacity-60 { + opacity: 0.6; } - .\32xl\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .\32xl\:opacity-70 { + opacity: 0.7; } - .\32xl\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .\32xl\:opacity-75 { + opacity: 0.75; } - .\32xl\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .\32xl\:opacity-80 { + opacity: 0.8; } - .\32xl\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .\32xl\:opacity-90 { + opacity: 0.9; } - .\32xl\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .\32xl\:opacity-95 { + opacity: 0.95; } - .\32xl\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .\32xl\:opacity-100 { + opacity: 1; } - .\32xl\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .group:hover .\32xl\:group-hover\:opacity-0 { + opacity: 0; } - .\32xl\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .group:hover .\32xl\:group-hover\:opacity-5 { + opacity: 0.05; } - .\32xl\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .group:hover .\32xl\:group-hover\:opacity-10 { + opacity: 0.1; } - .\32xl\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .group:hover .\32xl\:group-hover\:opacity-20 { + opacity: 0.2; } - .\32xl\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .group:hover .\32xl\:group-hover\:opacity-25 { + opacity: 0.25; } - .\32xl\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .group:hover .\32xl\:group-hover\:opacity-30 { + opacity: 0.3; } - .\32xl\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .group:hover .\32xl\:group-hover\:opacity-40 { + opacity: 0.4; } - .\32xl\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .group:hover .\32xl\:group-hover\:opacity-50 { + opacity: 0.5; } - .\32xl\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .group:hover .\32xl\:group-hover\:opacity-60 { + opacity: 0.6; } - .\32xl\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .group:hover .\32xl\:group-hover\:opacity-70 { + opacity: 0.7; } - .\32xl\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .group:hover .\32xl\:group-hover\:opacity-75 { + opacity: 0.75; } - .\32xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .group:hover .\32xl\:group-hover\:opacity-80 { + opacity: 0.8; } - .\32xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .group:hover .\32xl\:group-hover\:opacity-90 { + opacity: 0.9; } - .\32xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .group:hover .\32xl\:group-hover\:opacity-95 { + opacity: 0.95; } - .\32xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .group:hover .\32xl\:group-hover\:opacity-100 { + opacity: 1; } - .\32xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .\32xl\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .\32xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .\32xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .\32xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .\32xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .\32xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .\32xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .\32xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .\32xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .\32xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .\32xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .\32xl\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .\32xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .\32xl\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .\32xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .\32xl\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .\32xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .\32xl\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .\32xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .\32xl\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .\32xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .\32xl\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .\32xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .\32xl\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .\32xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .\32xl\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .\32xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .\32xl\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .\32xl\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .\32xl\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .\32xl\:hover\:opacity-0:hover { + opacity: 0; } - .\32xl\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .\32xl\:hover\:opacity-5:hover { + opacity: 0.05; } - .\32xl\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .\32xl\:hover\:opacity-10:hover { + opacity: 0.1; } - .\32xl\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .\32xl\:hover\:opacity-20:hover { + opacity: 0.2; } - .\32xl\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .\32xl\:hover\:opacity-25:hover { + opacity: 0.25; } - .\32xl\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .\32xl\:hover\:opacity-30:hover { + opacity: 0.3; } - .\32xl\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .\32xl\:hover\:opacity-40:hover { + opacity: 0.4; } - .\32xl\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .\32xl\:hover\:opacity-50:hover { + opacity: 0.5; } - .\32xl\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .\32xl\:hover\:opacity-60:hover { + opacity: 0.6; } - .\32xl\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .\32xl\:hover\:opacity-70:hover { + opacity: 0.7; } - .\32xl\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .\32xl\:hover\:opacity-75:hover { + opacity: 0.75; } - .\32xl\:rotate-0 { - --tw-rotate: 0deg; + .\32xl\:hover\:opacity-80:hover { + opacity: 0.8; } - .\32xl\:rotate-1 { - --tw-rotate: 1deg; + .\32xl\:hover\:opacity-90:hover { + opacity: 0.9; } - .\32xl\:rotate-2 { - --tw-rotate: 2deg; + .\32xl\:hover\:opacity-95:hover { + opacity: 0.95; } - .\32xl\:rotate-3 { - --tw-rotate: 3deg; + .\32xl\:hover\:opacity-100:hover { + opacity: 1; } - .\32xl\:rotate-6 { - --tw-rotate: 6deg; + .\32xl\:focus\:opacity-0:focus { + opacity: 0; } - .\32xl\:rotate-12 { - --tw-rotate: 12deg; + .\32xl\:focus\:opacity-5:focus { + opacity: 0.05; } - .\32xl\:rotate-45 { - --tw-rotate: 45deg; + .\32xl\:focus\:opacity-10:focus { + opacity: 0.1; } - .\32xl\:rotate-90 { - --tw-rotate: 90deg; + .\32xl\:focus\:opacity-20:focus { + opacity: 0.2; } - .\32xl\:rotate-180 { - --tw-rotate: 180deg; + .\32xl\:focus\:opacity-25:focus { + opacity: 0.25; } - .\32xl\:-rotate-180 { - --tw-rotate: -180deg; + .\32xl\:focus\:opacity-30:focus { + opacity: 0.3; } - .\32xl\:-rotate-90 { - --tw-rotate: -90deg; + .\32xl\:focus\:opacity-40:focus { + opacity: 0.4; } - .\32xl\:-rotate-45 { - --tw-rotate: -45deg; + .\32xl\:focus\:opacity-50:focus { + opacity: 0.5; } - .\32xl\:-rotate-12 { - --tw-rotate: -12deg; + .\32xl\:focus\:opacity-60:focus { + opacity: 0.6; } - .\32xl\:-rotate-6 { - --tw-rotate: -6deg; + .\32xl\:focus\:opacity-70:focus { + opacity: 0.7; } - .\32xl\:-rotate-3 { - --tw-rotate: -3deg; + .\32xl\:focus\:opacity-75:focus { + opacity: 0.75; } - .\32xl\:-rotate-2 { - --tw-rotate: -2deg; + .\32xl\:focus\:opacity-80:focus { + opacity: 0.8; } - .\32xl\:-rotate-1 { - --tw-rotate: -1deg; + .\32xl\:focus\:opacity-90:focus { + opacity: 0.9; } - .\32xl\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .\32xl\:focus\:opacity-95:focus { + opacity: 0.95; } - .\32xl\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .\32xl\:focus\:opacity-100:focus { + opacity: 1; } - .\32xl\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .\32xl\:bg-blend-normal { + background-blend-mode: normal; } - .\32xl\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .\32xl\:bg-blend-multiply { + background-blend-mode: multiply; } - .\32xl\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .\32xl\:bg-blend-screen { + background-blend-mode: screen; } - .\32xl\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .\32xl\:bg-blend-overlay { + background-blend-mode: overlay; } - .\32xl\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .\32xl\:bg-blend-darken { + background-blend-mode: darken; } - .\32xl\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .\32xl\:bg-blend-lighten { + background-blend-mode: lighten; } - .\32xl\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .\32xl\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .\32xl\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .\32xl\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .\32xl\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .\32xl\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .\32xl\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .\32xl\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .\32xl\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .\32xl\:bg-blend-difference { + background-blend-mode: difference; } - .\32xl\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .\32xl\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .\32xl\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .\32xl\:bg-blend-hue { + background-blend-mode: hue; } - .\32xl\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .\32xl\:bg-blend-saturation { + background-blend-mode: saturation; } - .\32xl\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .\32xl\:bg-blend-color { + background-blend-mode: color; } - .\32xl\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .\32xl\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .\32xl\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .\32xl\:mix-blend-normal { + mix-blend-mode: normal; } - .\32xl\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .\32xl\:mix-blend-multiply { + mix-blend-mode: multiply; } - .\32xl\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .\32xl\:mix-blend-screen { + mix-blend-mode: screen; } - .\32xl\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .\32xl\:mix-blend-overlay { + mix-blend-mode: overlay; } - .\32xl\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .\32xl\:mix-blend-darken { + mix-blend-mode: darken; } - .\32xl\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .\32xl\:mix-blend-lighten { + mix-blend-mode: lighten; } - .\32xl\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .\32xl\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .\32xl\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .\32xl\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .\32xl\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .\32xl\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .\32xl\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .\32xl\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .\32xl\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .\32xl\:mix-blend-difference { + mix-blend-mode: difference; } - .\32xl\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .\32xl\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .\32xl\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .\32xl\:mix-blend-hue { + mix-blend-mode: hue; } - .\32xl\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .\32xl\:mix-blend-saturation { + mix-blend-mode: saturation; } - .\32xl\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .\32xl\:mix-blend-color { + mix-blend-mode: color; } - .\32xl\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .\32xl\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .\32xl\:translate-x-0 { - --tw-translate-x: 0px; + .\32xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-1 { - --tw-translate-x: 0.25rem; + .\32xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-2 { - --tw-translate-x: 0.5rem; + .\32xl\: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); } - .\32xl\:translate-x-3 { - --tw-translate-x: 0.75rem; + .\32xl\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-4 { - --tw-translate-x: 1rem; + .\32xl\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-5 { - --tw-translate-x: 1.25rem; + .\32xl\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-6 { - --tw-translate-x: 1.5rem; + .\32xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-7 { - --tw-translate-x: 1.75rem; + .\32xl\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-8 { - --tw-translate-x: 2rem; + .group:hover .\32xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-9 { - --tw-translate-x: 2.25rem; + .group:hover .\32xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-10 { - --tw-translate-x: 2.5rem; + .group:hover .\32xl\:group-hover\: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); } - .\32xl\:translate-x-11 { - --tw-translate-x: 2.75rem; + .group:hover .\32xl\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-12 { - --tw-translate-x: 3rem; + .group:hover .\32xl\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-14 { - --tw-translate-x: 3.5rem; + .group:hover .\32xl\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-16 { - --tw-translate-x: 4rem; + .group:hover .\32xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-20 { - --tw-translate-x: 5rem; + .group:hover .\32xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-24 { - --tw-translate-x: 6rem; + .\32xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-28 { - --tw-translate-x: 7rem; + .\32xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-32 { - --tw-translate-x: 8rem; + .\32xl\:focus-within\:shadow-md:focus-within { + --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); } - .\32xl\:translate-x-36 { - --tw-translate-x: 9rem; + .\32xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-40 { - --tw-translate-x: 10rem; + .\32xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-44 { - --tw-translate-x: 11rem; + .\32xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-48 { - --tw-translate-x: 12rem; + .\32xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-52 { - --tw-translate-x: 13rem; + .\32xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-56 { - --tw-translate-x: 14rem; + .\32xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-60 { - --tw-translate-x: 15rem; + .\32xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-64 { - --tw-translate-x: 16rem; + .\32xl\:hover\:shadow-md:hover { + --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); } - .\32xl\:translate-x-72 { - --tw-translate-x: 18rem; + .\32xl\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-80 { - --tw-translate-x: 20rem; + .\32xl\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-96 { - --tw-translate-x: 24rem; + .\32xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-px { - --tw-translate-x: 1px; + .\32xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .\32xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .\32xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .\32xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .\32xl\:focus\:shadow-md:focus { + --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); } - .\32xl\:-translate-x-0 { - --tw-translate-x: 0px; + .\32xl\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .\32xl\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .\32xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .\32xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-4 { - --tw-translate-x: -1rem; + .\32xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .\32xl\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .\32xl\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .\32xl\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .\32xl\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .\32xl\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .\32xl\:-translate-x-8 { - --tw-translate-x: -2rem; + .\32xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .\32xl\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .\32xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .\32xl\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .\32xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .\32xl\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .\32xl\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .\32xl\:-translate-x-12 { - --tw-translate-x: -3rem; + .\32xl\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .\32xl\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .\32xl\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .\32xl\:-translate-x-16 { - --tw-translate-x: -4rem; + .\32xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-20 { - --tw-translate-x: -5rem; + .\32xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-24 { - --tw-translate-x: -6rem; + .\32xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-28 { - --tw-translate-x: -7rem; + .\32xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-32 { - --tw-translate-x: -8rem; + .\32xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-36 { - --tw-translate-x: -9rem; + .\32xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-40 { - --tw-translate-x: -10rem; + .\32xl\:ring-inset { + --tw-ring-inset: inset; } - .\32xl\:-translate-x-44 { - --tw-translate-x: -11rem; + .\32xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-48 { - --tw-translate-x: -12rem; + .\32xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-52 { - --tw-translate-x: -13rem; + .\32xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-56 { - --tw-translate-x: -14rem; + .\32xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-60 { - --tw-translate-x: -15rem; + .\32xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-64 { - --tw-translate-x: -16rem; + .\32xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-72 { - --tw-translate-x: -18rem; + .\32xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .\32xl\:-translate-x-80 { - --tw-translate-x: -20rem; + .\32xl\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-96 { - --tw-translate-x: -24rem; + .\32xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-px { - --tw-translate-x: -1px; + .\32xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .\32xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .\32xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .\32xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .\32xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .\32xl\:translate-x-1\/2 { - --tw-translate-x: 50%; + .\32xl\:ring-transparent { + --tw-ring-color: transparent; } - .\32xl\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .\32xl\:ring-current { + --tw-ring-color: currentColor; } - .\32xl\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .\32xl\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .\32xl\:translate-x-1\/4 { - --tw-translate-x: 25%; + .\32xl\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .\32xl\:translate-x-2\/4 { - --tw-translate-x: 50%; + .\32xl\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .\32xl\:translate-x-3\/4 { - --tw-translate-x: 75%; + .\32xl\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .\32xl\:translate-x-full { - --tw-translate-x: 100%; + .\32xl\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .\32xl\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .\32xl\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .\32xl\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .\32xl\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .\32xl\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .\32xl\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-full { - --tw-translate-x: -100%; + .\32xl\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .\32xl\:translate-y-0 { - --tw-translate-y: 0px; + .\32xl\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1 { - --tw-translate-y: 0.25rem; + .\32xl\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .\32xl\:translate-y-2 { - --tw-translate-y: 0.5rem; + .\32xl\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .\32xl\:translate-y-3 { - --tw-translate-y: 0.75rem; + .\32xl\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .\32xl\:translate-y-4 { - --tw-translate-y: 1rem; + .\32xl\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .\32xl\:translate-y-5 { - --tw-translate-y: 1.25rem; + .\32xl\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .\32xl\:translate-y-6 { - --tw-translate-y: 1.5rem; + .\32xl\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .\32xl\:translate-y-7 { - --tw-translate-y: 1.75rem; + .\32xl\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .\32xl\:translate-y-8 { - --tw-translate-y: 2rem; + .\32xl\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .\32xl\:translate-y-9 { - --tw-translate-y: 2.25rem; + .\32xl\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .\32xl\:translate-y-10 { - --tw-translate-y: 2.5rem; + .\32xl\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .\32xl\:translate-y-11 { - --tw-translate-y: 2.75rem; + .\32xl\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .\32xl\:translate-y-12 { - --tw-translate-y: 3rem; + .\32xl\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .\32xl\:translate-y-14 { - --tw-translate-y: 3.5rem; + .\32xl\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .\32xl\:translate-y-16 { - --tw-translate-y: 4rem; + .\32xl\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .\32xl\:translate-y-20 { - --tw-translate-y: 5rem; + .\32xl\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .\32xl\:translate-y-24 { - --tw-translate-y: 6rem; + .\32xl\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .\32xl\:translate-y-28 { - --tw-translate-y: 7rem; + .\32xl\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .\32xl\:translate-y-32 { - --tw-translate-y: 8rem; + .\32xl\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .\32xl\:translate-y-36 { - --tw-translate-y: 9rem; + .\32xl\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .\32xl\:translate-y-40 { - --tw-translate-y: 10rem; + .\32xl\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .\32xl\:translate-y-44 { - --tw-translate-y: 11rem; + .\32xl\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .\32xl\:translate-y-48 { - --tw-translate-y: 12rem; + .\32xl\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .\32xl\:translate-y-52 { - --tw-translate-y: 13rem; + .\32xl\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .\32xl\:translate-y-56 { - --tw-translate-y: 14rem; + .\32xl\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .\32xl\:translate-y-60 { - --tw-translate-y: 15rem; + .\32xl\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .\32xl\:translate-y-64 { - --tw-translate-y: 16rem; + .\32xl\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .\32xl\:translate-y-72 { - --tw-translate-y: 18rem; + .\32xl\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .\32xl\:translate-y-80 { - --tw-translate-y: 20rem; + .\32xl\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .\32xl\:translate-y-96 { - --tw-translate-y: 24rem; + .\32xl\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .\32xl\:translate-y-px { - --tw-translate-y: 1px; + .\32xl\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .\32xl\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .\32xl\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .\32xl\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .\32xl\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .\32xl\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .\32xl\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .\32xl\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-0 { - --tw-translate-y: 0px; + .\32xl\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .\32xl\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .\32xl\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .\32xl\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-4 { - --tw-translate-y: -1rem; + .\32xl\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .\32xl\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .\32xl\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .\32xl\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-8 { - --tw-translate-y: -2rem; + .\32xl\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .\32xl\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .\32xl\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .\32xl\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-12 { - --tw-translate-y: -3rem; + .\32xl\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .\32xl\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-16 { - --tw-translate-y: -4rem; + .\32xl\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-20 { - --tw-translate-y: -5rem; + .\32xl\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-24 { - --tw-translate-y: -6rem; + .\32xl\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-28 { - --tw-translate-y: -7rem; + .\32xl\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-32 { - --tw-translate-y: -8rem; + .\32xl\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-36 { - --tw-translate-y: -9rem; + .\32xl\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-40 { - --tw-translate-y: -10rem; + .\32xl\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-44 { - --tw-translate-y: -11rem; + .\32xl\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-48 { - --tw-translate-y: -12rem; + .\32xl\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-52 { - --tw-translate-y: -13rem; + .\32xl\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-56 { - --tw-translate-y: -14rem; + .\32xl\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-60 { - --tw-translate-y: -15rem; + .\32xl\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-64 { - --tw-translate-y: -16rem; + .\32xl\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-72 { - --tw-translate-y: -18rem; + .\32xl\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-80 { - --tw-translate-y: -20rem; + .\32xl\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-96 { - --tw-translate-y: -24rem; + .\32xl\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-px { - --tw-translate-y: -1px; + .\32xl\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .\32xl\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .\32xl\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .\32xl\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .\32xl\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1\/2 { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .\32xl\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .\32xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .\32xl\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .\32xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1\/4 { - --tw-translate-y: 25%; + .\32xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .\32xl\:translate-y-2\/4 { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .\32xl\:translate-y-3\/4 { - --tw-translate-y: 75%; + .\32xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .\32xl\:translate-y-full { - --tw-translate-y: 100%; + .\32xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .\32xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .\32xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .\32xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .\32xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-full { - --tw-translate-y: -100%; + .\32xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .\32xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .\32xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .\32xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .\32xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .\32xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .\32xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .\32xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .\32xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .\32xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .\32xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .\32xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .\32xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .\32xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .\32xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .\32xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .\32xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .\32xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .\32xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .\32xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .\32xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .\32xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .\32xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .\32xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .\32xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .\32xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .\32xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .\32xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .\32xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .\32xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .\32xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .\32xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .\32xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .\32xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .\32xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .\32xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .\32xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .\32xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .\32xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .\32xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .\32xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .\32xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .\32xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .\32xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .\32xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .\32xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .\32xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .\32xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .\32xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .\32xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .\32xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .\32xl\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .\32xl\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .\32xl\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .\32xl\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .\32xl\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .\32xl\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .\32xl\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .\32xl\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .\32xl\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .\32xl\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .\32xl\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .\32xl\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .\32xl\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .\32xl\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .\32xl\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .\32xl\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .\32xl\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .\32xl\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .\32xl\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .\32xl\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .\32xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .\32xl\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .\32xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .\32xl\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .\32xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .\32xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .\32xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .\32xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .\32xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .\32xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .\32xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .\32xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .\32xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .\32xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .\32xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .\32xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .\32xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .\32xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .\32xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .\32xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .\32xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .\32xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .\32xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .\32xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .\32xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .\32xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .\32xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .\32xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .\32xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .\32xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .\32xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .\32xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .\32xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .\32xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .\32xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .\32xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .\32xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .\32xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .\32xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .\32xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .\32xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .\32xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .\32xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .\32xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .\32xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .\32xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .\32xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .\32xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .\32xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .\32xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .\32xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .\32xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .\32xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .\32xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .\32xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .\32xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .\32xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .\32xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .\32xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .\32xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .\32xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .\32xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .\32xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .\32xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .\32xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .\32xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .\32xl\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .\32xl\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .\32xl\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .\32xl\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .\32xl\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .\32xl\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .\32xl\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .\32xl\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .\32xl\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .\32xl\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .\32xl\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .\32xl\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .\32xl\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .\32xl\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .\32xl\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .\32xl\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .\32xl\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .\32xl\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .\32xl\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .\32xl\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .\32xl\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .\32xl\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .\32xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .\32xl\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .\32xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .\32xl\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .\32xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .\32xl\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .\32xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .\32xl\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .\32xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .\32xl\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .\32xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .\32xl\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .\32xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .\32xl\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .\32xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .\32xl\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .\32xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .\32xl\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .\32xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .\32xl\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .\32xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .\32xl\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .\32xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .\32xl\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .\32xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .\32xl\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .\32xl\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .\32xl\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .\32xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .\32xl\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + .\32xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .\32xl\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .\32xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .\32xl\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .\32xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .\32xl\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .\32xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .\32xl\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .\32xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .\32xl\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .\32xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .\32xl\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .\32xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .\32xl\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .\32xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .\32xl\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .\32xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .\32xl\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .\32xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .\32xl\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .\32xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .\32xl\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .\32xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .\32xl\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .\32xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .\32xl\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .\32xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .\32xl\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .\32xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .\32xl\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .\32xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .\32xl\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .\32xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .\32xl\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .\32xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .\32xl\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .\32xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .\32xl\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .\32xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .\32xl\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .\32xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .\32xl\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .\32xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .\32xl\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .\32xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .\32xl\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .\32xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .\32xl\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .\32xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .\32xl\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .\32xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .\32xl\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .\32xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .\32xl\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .\32xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .\32xl\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .\32xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .\32xl\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .\32xl\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .\32xl\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .\32xl\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .\32xl\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .\32xl\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .\32xl\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .\32xl\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .\32xl\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .\32xl\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .\32xl\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .\32xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .\32xl\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .\32xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .\32xl\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .\32xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .\32xl\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .\32xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .\32xl\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .\32xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .\32xl\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .\32xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .\32xl\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .\32xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .\32xl\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .\32xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .\32xl\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .\32xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .\32xl\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .\32xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .\32xl\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .\32xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .\32xl\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .\32xl\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .\32xl\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .\32xl\:ring-offset-black { + --tw-ring-offset-color: #000; } - .\32xl\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .\32xl\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .\32xl\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .\32xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .\32xl\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .\32xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .\32xl\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .\32xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .\32xl\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .\32xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .\32xl\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .\32xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .\32xl\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .\32xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .\32xl\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .\32xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .\32xl\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .\32xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .\32xl\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .\32xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .\32xl\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .\32xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .\32xl\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .\32xl\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .\32xl\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .\32xl\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .\32xl\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .\32xl\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .\32xl\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .\32xl\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .\32xl\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .\32xl\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .\32xl\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .\32xl\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .\32xl\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .\32xl\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .\32xl\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .\32xl\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .\32xl\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .\32xl\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .\32xl\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .\32xl\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .\32xl\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .\32xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .\32xl\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .\32xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .\32xl\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .\32xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .\32xl\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .\32xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .\32xl\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .\32xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .\32xl\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .\32xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .\32xl\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .\32xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .\32xl\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .\32xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .\32xl\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .\32xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .\32xl\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .\32xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .\32xl\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .\32xl\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .\32xl\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .\32xl\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .\32xl\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .\32xl\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .\32xl\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .\32xl\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .\32xl\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .\32xl\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .\32xl\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .\32xl\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .\32xl\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .\32xl\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .\32xl\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .\32xl\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .\32xl\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .\32xl\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .\32xl\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .\32xl\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .\32xl\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .\32xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .\32xl\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .\32xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .\32xl\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .\32xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .\32xl\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .\32xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .\32xl\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .\32xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .\32xl\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .\32xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .\32xl\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .\32xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .\32xl\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .\32xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .\32xl\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .\32xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .\32xl\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .\32xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .\32xl\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .\32xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .\32xl\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .\32xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .\32xl\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .\32xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .\32xl\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .\32xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .\32xl\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .\32xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .\32xl\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .\32xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .\32xl\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .\32xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .\32xl\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .\32xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .\32xl\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .\32xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .\32xl\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .\32xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .\32xl\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .\32xl\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .\32xl\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .\32xl\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .\32xl\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .\32xl\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .\32xl\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .\32xl\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .\32xl\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .\32xl\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .\32xl\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .\32xl\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .\32xl\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .\32xl\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .\32xl\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .\32xl\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .\32xl\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .\32xl\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .\32xl\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .\32xl\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .\32xl\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .\32xl\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .\32xl\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .\32xl\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .\32xl\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .\32xl\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .\32xl\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .\32xl\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .\32xl\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .\32xl\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .\32xl\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .\32xl\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .\32xl\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .\32xl\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .\32xl\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .\32xl\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .\32xl\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .\32xl\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .\32xl\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .\32xl\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .\32xl\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .\32xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .\32xl\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .\32xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .\32xl\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .\32xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .\32xl\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .\32xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .\32xl\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .\32xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .\32xl\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .\32xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .\32xl\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .\32xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .\32xl\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .\32xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .\32xl\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .\32xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .\32xl\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .\32xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .\32xl\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .\32xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .\32xl\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .\32xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .\32xl\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .\32xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .\32xl\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .\32xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .\32xl\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .\32xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .\32xl\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .\32xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .\32xl\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .\32xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .\32xl\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .\32xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .\32xl\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .\32xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .\32xl\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .\32xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .\32xl\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .\32xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .\32xl\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .\32xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .\32xl\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .\32xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .\32xl\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .\32xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .\32xl\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .\32xl\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .\32xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .\32xl\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .\32xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .\32xl\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .\32xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .\32xl\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .\32xl\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .\32xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .\32xl\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .\32xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .\32xl\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .\32xl\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .\32xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .\32xl\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .\32xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .\32xl\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .\32xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - .\32xl\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .\32xl\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .\32xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .\32xl\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .\32xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .\32xl\:skew-x-0 { - --tw-skew-x: 0deg; + .\32xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .\32xl\:skew-x-1 { - --tw-skew-x: 1deg; + .\32xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .\32xl\:skew-x-2 { - --tw-skew-x: 2deg; + .\32xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .\32xl\:skew-x-3 { - --tw-skew-x: 3deg; + .\32xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .\32xl\:skew-x-6 { - --tw-skew-x: 6deg; + .\32xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .\32xl\:skew-x-12 { - --tw-skew-x: 12deg; + .\32xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .\32xl\:-skew-x-12 { - --tw-skew-x: -12deg; + .\32xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .\32xl\:-skew-x-6 { - --tw-skew-x: -6deg; + .\32xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .\32xl\:-skew-x-3 { - --tw-skew-x: -3deg; + .\32xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .\32xl\:-skew-x-2 { - --tw-skew-x: -2deg; + .\32xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .\32xl\:-skew-x-1 { - --tw-skew-x: -1deg; + .\32xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .\32xl\:skew-y-0 { - --tw-skew-y: 0deg; + .\32xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .\32xl\:skew-y-1 { - --tw-skew-y: 1deg; + .\32xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .\32xl\:skew-y-2 { - --tw-skew-y: 2deg; + .\32xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .\32xl\:skew-y-3 { - --tw-skew-y: 3deg; + .\32xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .\32xl\:skew-y-6 { - --tw-skew-y: 6deg; + .\32xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .\32xl\:skew-y-12 { - --tw-skew-y: 12deg; + .\32xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .\32xl\:-skew-y-12 { - --tw-skew-y: -12deg; + .\32xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .\32xl\:-skew-y-6 { - --tw-skew-y: -6deg; + .\32xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .\32xl\:-skew-y-3 { - --tw-skew-y: -3deg; + .\32xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .\32xl\:-skew-y-2 { - --tw-skew-y: -2deg; + .\32xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .\32xl\:-skew-y-1 { - --tw-skew-y: -1deg; + .\32xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .\32xl\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .\32xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .\32xl\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .\32xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .\32xl\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .\32xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .\32xl\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .\32xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .\32xl\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .\32xl\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .\32xl\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .\32xl\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .\32xl\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .\32xl\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .\32xl\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .\32xl\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .\32xl\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .\32xl\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .\32xl\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .\32xl\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .\32xl\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .\32xl\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .\32xl\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .\32xl\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .\32xl\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .\32xl\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .\32xl\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .\32xl\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .\32xl\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .\32xl\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .\32xl\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .\32xl\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .\32xl\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .\32xl\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .\32xl\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .\32xl\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .\32xl\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + .\32xl\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .\32xl\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + .\32xl\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .\32xl\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + .\32xl\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .\32xl\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + .\32xl\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .\32xl\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + .\32xl\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .\32xl\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .\32xl\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .\32xl\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .\32xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .\32xl\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .\32xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .\32xl\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .\32xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .\32xl\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .\32xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .\32xl\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .\32xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .\32xl\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .\32xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .\32xl\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .\32xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .\32xl\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .\32xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .\32xl\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .\32xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .\32xl\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .\32xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .\32xl\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .\32xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .\32xl\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .\32xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .\32xl\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .\32xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .\32xl\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .\32xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .\32xl\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .\32xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .\32xl\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .\32xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .\32xl\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .\32xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .\32xl\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .\32xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .\32xl\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .\32xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .\32xl\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .\32xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .\32xl\:transition-none { - transition-property: none; + .\32xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .\32xl\:transition-all { - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .\32xl\:transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .\32xl\:transition-colors { - transition-property: background-color, border-color, color, fill, stroke; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .\32xl\:transition-opacity { - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .\32xl\:transition-shadow { - transition-property: box-shadow; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .\32xl\:transition-transform { - transition-property: transform; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .\32xl\:ease-linear { - transition-timing-function: linear; + .\32xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .\32xl\:ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + .\32xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .\32xl\:ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + .\32xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .\32xl\:ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + .\32xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .\32xl\:duration-75 { - transition-duration: 75ms; + .\32xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .\32xl\:duration-100 { - transition-duration: 100ms; + .\32xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .\32xl\:duration-150 { - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .\32xl\:duration-200 { - transition-duration: 200ms; + .\32xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .\32xl\:duration-300 { - transition-duration: 300ms; + .\32xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .\32xl\:duration-500 { - transition-duration: 500ms; + .\32xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .\32xl\:duration-700 { - transition-duration: 700ms; + .\32xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .\32xl\:duration-1000 { - transition-duration: 1000ms; + .\32xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .\32xl\:delay-75 { - transition-delay: 75ms; + .\32xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .\32xl\:delay-100 { - transition-delay: 100ms; + .\32xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .\32xl\:delay-150 { - transition-delay: 150ms; + .\32xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .\32xl\:delay-200 { - transition-delay: 200ms; + .\32xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .\32xl\:delay-300 { - transition-delay: 300ms; + .\32xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .\32xl\:delay-500 { - transition-delay: 500ms; + .\32xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .\32xl\:delay-700 { - transition-delay: 700ms; + .\32xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .\32xl\:delay-1000 { - transition-delay: 1000ms; + .\32xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .\32xl\:animate-none { - animation: none; + .\32xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .\32xl\:animate-spin { - animation: spin 1s linear infinite; + .\32xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .\32xl\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .\32xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .\32xl\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .\32xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .\32xl\:animate-bounce { - animation: bounce 1s infinite; + .\32xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .\32xl\:mix-blend-normal { - mix-blend-mode: normal; + .\32xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .\32xl\:mix-blend-multiply { - mix-blend-mode: multiply; + .\32xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .\32xl\:mix-blend-screen { - mix-blend-mode: screen; + .\32xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .\32xl\:mix-blend-overlay { - mix-blend-mode: overlay; + .\32xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .\32xl\:mix-blend-darken { - mix-blend-mode: darken; + .\32xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .\32xl\:mix-blend-lighten { - mix-blend-mode: lighten; + .\32xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .\32xl\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .\32xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .\32xl\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .\32xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .\32xl\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .\32xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .\32xl\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .\32xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .\32xl\:mix-blend-difference { - mix-blend-mode: difference; + .\32xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .\32xl\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .\32xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .\32xl\:mix-blend-hue { - mix-blend-mode: hue; + .\32xl\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .\32xl\:mix-blend-saturation { - mix-blend-mode: saturation; + .\32xl\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .\32xl\:mix-blend-color { - mix-blend-mode: color; + .\32xl\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .\32xl\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .\32xl\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .\32xl\:bg-blend-normal { - background-blend-mode: normal; + .\32xl\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .\32xl\:bg-blend-multiply { - background-blend-mode: multiply; + .\32xl\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .\32xl\:bg-blend-screen { - background-blend-mode: screen; + .\32xl\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .\32xl\:bg-blend-overlay { - background-blend-mode: overlay; + .\32xl\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .\32xl\:bg-blend-darken { - background-blend-mode: darken; + .\32xl\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .\32xl\:bg-blend-lighten { - background-blend-mode: lighten; + .\32xl\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .\32xl\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .\32xl\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .\32xl\:bg-blend-color-burn { - background-blend-mode: color-burn; + .\32xl\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .\32xl\:bg-blend-hard-light { - background-blend-mode: hard-light; + .\32xl\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .\32xl\:bg-blend-soft-light { - background-blend-mode: soft-light; + .\32xl\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .\32xl\:bg-blend-difference { - background-blend-mode: difference; + .\32xl\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .\32xl\:bg-blend-exclusion { - background-blend-mode: exclusion; + .\32xl\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .\32xl\:bg-blend-hue { - background-blend-mode: hue; + .\32xl\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .\32xl\:bg-blend-saturation { - background-blend-mode: saturation; + .\32xl\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .\32xl\:bg-blend-color { - background-blend-mode: color; + .\32xl\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .\32xl\:bg-blend-luminosity { - background-blend-mode: luminosity; + .\32xl\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } .\32xl\:filter { @@ -160069,6 +159949,126 @@ video { --tw-backdrop-sepia: sepia(100%); } + .\32xl\:transition-none { + transition-property: none; + } + + .\32xl\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:delay-75 { + transition-delay: 75ms; + } + + .\32xl\:delay-100 { + transition-delay: 100ms; + } + + .\32xl\:delay-150 { + transition-delay: 150ms; + } + + .\32xl\:delay-200 { + transition-delay: 200ms; + } + + .\32xl\:delay-300 { + transition-delay: 300ms; + } + + .\32xl\:delay-500 { + transition-delay: 500ms; + } + + .\32xl\:delay-700 { + transition-delay: 700ms; + } + + .\32xl\:delay-1000 { + transition-delay: 1000ms; + } + + .\32xl\:duration-75 { + transition-duration: 75ms; + } + + .\32xl\:duration-100 { + transition-duration: 100ms; + } + + .\32xl\:duration-150 { + transition-duration: 150ms; + } + + .\32xl\:duration-200 { + transition-duration: 200ms; + } + + .\32xl\:duration-300 { + transition-duration: 300ms; + } + + .\32xl\:duration-500 { + transition-duration: 500ms; + } + + .\32xl\:duration-700 { + transition-duration: 700ms; + } + + .\32xl\:duration-1000 { + transition-duration: 1000ms; + } + + .\32xl\:ease-linear { + transition-timing-function: linear; + } + + .\32xl\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .\32xl\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .\32xl\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + .\32xl\:example { font-weight: 700; color: #ef4444; diff --git a/__tests__/fixtures/tailwind-output-with-explicit-screen-utilities.css b/tests/fixtures/tailwind-output-with-explicit-screen-utilities.css similarity index 100% rename from __tests__/fixtures/tailwind-output-with-explicit-screen-utilities.css rename to tests/fixtures/tailwind-output-with-explicit-screen-utilities.css diff --git a/__tests__/fixtures/tailwind-output.css b/tests/fixtures/tailwind-output.css similarity index 100% rename from __tests__/fixtures/tailwind-output.css rename to tests/fixtures/tailwind-output.css index 02c2ca013c6f..5c234b57f7f5 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/tests/fixtures/tailwind-output.css @@ -573,10199 +573,9355 @@ video { } } -.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)); +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } -.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))); +.not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } -.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)); +.focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } -.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))); +.focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } -.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)); +.focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } -.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))); +.focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } -.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)); +.pointer-events-none { + pointer-events: none; } -.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))); +.pointer-events-auto { + pointer-events: auto; } -.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)); +.visible { + visibility: visible; } -.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))); +.invisible { + visibility: hidden; } -.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)); +.static { + position: static; } -.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))); +.fixed { + position: fixed; } -.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)); +.absolute { + position: absolute; } -.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))); +.relative { + position: relative; } -.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)); +.sticky { + position: sticky; } -.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))); +.inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } -.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)); +.inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } -.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))); +.inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } -.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)); +.inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } -.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))); +.inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } -.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)); +.inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } -.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))); +.inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } -.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)); +.inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } -.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))); +.inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } -.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)); +.inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } -.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))); +.inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } -.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)); +.inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } -.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))); +.inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } -.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)); +.inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } -.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))); +.inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } -.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)); +.inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } -.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))); +.inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } -.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)); +.inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } -.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))); +.inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } -.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)); +.inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } -.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))); +.inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } -.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)); +.inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } -.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))); +.inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } -.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)); +.inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } -.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))); +.inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } -.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)); +.inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } -.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))); +.inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } -.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)); +.inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } -.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))); +.inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } -.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)); +.inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } -.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))); +.inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } -.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)); +.inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } -.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))); +.inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } -.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)); +.inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } -.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))); +.inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } -.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)); +.inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } -.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))); +.-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } -.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)); +.-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } -.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))); +.-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } -.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)); +.-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } -.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))); +.-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } -.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)); +.-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } -.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))); +.-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } -.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)); +.-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } -.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))); +.-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } -.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)); +.-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } -.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))); +.-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } -.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)); +.-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } -.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))); +.-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } -.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)); +.-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } -.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))); +.-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } -.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)); +.-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } -.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))); +.-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } -.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)); +.-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } -.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))); +.-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } -.-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)); +.-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } -.-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))); +.-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } -.-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)); +.-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } -.-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))); +.-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } -.-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)); +.-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } -.-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))); +.-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } -.-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)); +.-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } -.-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))); +.-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } -.-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)); +.-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } -.-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))); +.-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } -.-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)); +.-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } -.-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))); +.-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } -.-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)); +.-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } -.-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))); +.-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } -.-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)); +.-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } -.-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))); +.-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } -.-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)); +.inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } -.-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))); +.inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } -.-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)); +.inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } -.-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))); +.inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } -.-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)); +.inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } -.-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))); +.inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } -.-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)); +.inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } -.-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))); +.-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } -.-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)); +.-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } -.-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))); +.-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } -.-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)); +.-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } -.-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))); +.-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } -.-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)); +.-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } -.-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))); +.-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } -.-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)); +.inset-y-0 { + top: 0px; + bottom: 0px; } -.-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))); +.inset-x-0 { + right: 0px; + left: 0px; } -.-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)); +.inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } -.-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))); +.inset-x-1 { + right: 0.25rem; + left: 0.25rem; } -.-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)); +.inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } -.-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))); +.inset-x-2 { + right: 0.5rem; + left: 0.5rem; } -.-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)); +.inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } -.-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))); +.inset-x-3 { + right: 0.75rem; + left: 0.75rem; } -.-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)); +.inset-y-4 { + top: 1rem; + bottom: 1rem; } -.-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))); +.inset-x-4 { + right: 1rem; + left: 1rem; } -.-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)); +.inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } -.-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))); +.inset-x-5 { + right: 1.25rem; + left: 1.25rem; } -.-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)); +.inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } -.-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))); +.inset-x-6 { + right: 1.5rem; + left: 1.5rem; } -.-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)); +.inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } -.-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))); +.inset-x-7 { + right: 1.75rem; + left: 1.75rem; } -.-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)); +.inset-y-8 { + top: 2rem; + bottom: 2rem; } -.-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)); +.inset-x-8 { + right: 2rem; + left: 2rem; } -.-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))); +.inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } -.-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)); +.inset-x-9 { + right: 2.25rem; + left: 2.25rem; } -.-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))); +.inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } -.-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)); +.inset-x-10 { + right: 2.5rem; + left: 2.5rem; } -.-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))); +.inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } -.-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)); +.inset-x-11 { + right: 2.75rem; + left: 2.75rem; } -.-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))); +.inset-y-12 { + top: 3rem; + bottom: 3rem; } -.-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)); +.inset-x-12 { + right: 3rem; + left: 3rem; } -.-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))); +.inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } -.-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)); +.inset-x-14 { + right: 3.5rem; + left: 3.5rem; } -.-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))); +.inset-y-16 { + top: 4rem; + bottom: 4rem; } -.-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)); +.inset-x-16 { + right: 4rem; + left: 4rem; } -.-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))); +.inset-y-20 { + top: 5rem; + bottom: 5rem; } -.-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)); +.inset-x-20 { + right: 5rem; + left: 5rem; } -.-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))); +.inset-y-24 { + top: 6rem; + bottom: 6rem; } -.-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)); +.inset-x-24 { + right: 6rem; + left: 6rem; } -.-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))); +.inset-y-28 { + top: 7rem; + bottom: 7rem; } -.-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)); +.inset-x-28 { + right: 7rem; + left: 7rem; } -.-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))); +.inset-y-32 { + top: 8rem; + bottom: 8rem; } -.-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)); +.inset-x-32 { + right: 8rem; + left: 8rem; } -.-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))); +.inset-y-36 { + top: 9rem; + bottom: 9rem; } -.space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; +.inset-x-36 { + right: 9rem; + left: 9rem; } -.space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; +.inset-y-40 { + top: 10rem; + bottom: 10rem; } -.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)); +.inset-x-40 { + right: 10rem; + left: 10rem; } -.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))); +.inset-y-44 { + top: 11rem; + bottom: 11rem; } -.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)); +.inset-x-44 { + right: 11rem; + left: 11rem; } -.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))); +.inset-y-48 { + top: 12rem; + bottom: 12rem; } -.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)); +.inset-x-48 { + right: 12rem; + left: 12rem; } -.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))); +.inset-y-52 { + top: 13rem; + bottom: 13rem; } -.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)); +.inset-x-52 { + right: 13rem; + left: 13rem; } -.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))); +.inset-y-56 { + top: 14rem; + bottom: 14rem; } -.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)); +.inset-x-56 { + right: 14rem; + left: 14rem; } -.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))); +.inset-y-60 { + top: 15rem; + bottom: 15rem; } -.divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; +.inset-x-60 { + right: 15rem; + left: 15rem; } -.divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; +.inset-y-64 { + top: 16rem; + bottom: 16rem; } -.divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; +.inset-x-64 { + right: 16rem; + left: 16rem; } -.divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; +.inset-y-72 { + top: 18rem; + bottom: 18rem; } -.divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); +.inset-x-72 { + right: 18rem; + left: 18rem; } -.divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); +.inset-y-80 { + top: 20rem; + bottom: 20rem; } -.divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); +.inset-x-80 { + right: 20rem; + left: 20rem; } -.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); +.inset-y-96 { + top: 24rem; + bottom: 24rem; } -.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); +.inset-x-96 { + right: 24rem; + left: 24rem; } -.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); +.inset-y-auto { + top: auto; + bottom: auto; } -.divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); +.inset-x-auto { + right: auto; + left: auto; } -.divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); +.inset-y-px { + top: 1px; + bottom: 1px; } -.divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); +.inset-x-px { + right: 1px; + left: 1px; } -.divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); +.inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } -.divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); +.inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } -.divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); +.inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } -.divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); +.inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } -.divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); +.inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } -.divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); +.inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } -.divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); +.inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } -.divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); +.inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } -.divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); +.-inset-y-0 { + top: 0px; + bottom: 0px; } -.divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); +.-inset-x-0 { + right: 0px; + left: 0px; } -.divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); +.-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } -.divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); +.-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } -.divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); +.-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } -.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); +.-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } -.divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); +.-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } -.divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); +.-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } -.divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); +.-inset-y-4 { + top: -1rem; + bottom: -1rem; } -.divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); +.-inset-x-4 { + right: -1rem; + left: -1rem; } -.divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); +.-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } -.divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); +.-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } -.divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); +.-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } -.divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); +.-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } -.divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); +.-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } -.divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); +.-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } -.divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); +.-inset-y-8 { + top: -2rem; + bottom: -2rem; } -.divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); +.-inset-x-8 { + right: -2rem; + left: -2rem; } -.divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); +.-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } -.divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); +.-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } -.divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); +.-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } -.divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); +.-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } -.divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); +.-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } -.divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); +.-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } -.divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); +.-inset-y-12 { + top: -3rem; + bottom: -3rem; } -.divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); +.-inset-x-12 { + right: -3rem; + left: -3rem; } -.divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); +.-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } -.divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); +.-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } -.divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); +.-inset-y-16 { + top: -4rem; + bottom: -4rem; } -.divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); +.-inset-x-16 { + right: -4rem; + left: -4rem; } -.divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); +.-inset-y-20 { + top: -5rem; + bottom: -5rem; } -.divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); +.-inset-x-20 { + right: -5rem; + left: -5rem; } -.divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); +.-inset-y-24 { + top: -6rem; + bottom: -6rem; } -.divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); +.-inset-x-24 { + right: -6rem; + left: -6rem; } -.divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); +.-inset-y-28 { + top: -7rem; + bottom: -7rem; } -.divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); +.-inset-x-28 { + right: -7rem; + left: -7rem; } -.divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); +.-inset-y-32 { + top: -8rem; + bottom: -8rem; } -.divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); +.-inset-x-32 { + right: -8rem; + left: -8rem; } -.divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); +.-inset-y-36 { + top: -9rem; + bottom: -9rem; } -.divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); +.-inset-x-36 { + right: -9rem; + left: -9rem; } -.divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); +.-inset-y-40 { + top: -10rem; + bottom: -10rem; } -.divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); +.-inset-x-40 { + right: -10rem; + left: -10rem; } -.divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); +.-inset-y-44 { + top: -11rem; + bottom: -11rem; } -.divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); +.-inset-x-44 { + right: -11rem; + left: -11rem; } -.divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); +.-inset-y-48 { + top: -12rem; + bottom: -12rem; } -.divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); +.-inset-x-48 { + right: -12rem; + left: -12rem; } -.divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); +.-inset-y-52 { + top: -13rem; + bottom: -13rem; } -.divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); +.-inset-x-52 { + right: -13rem; + left: -13rem; } -.divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); +.-inset-y-56 { + top: -14rem; + bottom: -14rem; } -.divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); +.-inset-x-56 { + right: -14rem; + left: -14rem; } -.divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); +.-inset-y-60 { + top: -15rem; + bottom: -15rem; } -.divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); +.-inset-x-60 { + right: -15rem; + left: -15rem; } -.divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); +.-inset-y-64 { + top: -16rem; + bottom: -16rem; } -.divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); +.-inset-x-64 { + right: -16rem; + left: -16rem; } -.divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); +.-inset-y-72 { + top: -18rem; + bottom: -18rem; } -.divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); +.-inset-x-72 { + right: -18rem; + left: -18rem; } -.divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); +.-inset-y-80 { + top: -20rem; + bottom: -20rem; } -.divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); +.-inset-x-80 { + right: -20rem; + left: -20rem; } -.divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); +.-inset-y-96 { + top: -24rem; + bottom: -24rem; } -.divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); +.-inset-x-96 { + right: -24rem; + left: -24rem; } -.divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); +.-inset-y-px { + top: -1px; + bottom: -1px; } -.divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); +.-inset-x-px { + right: -1px; + left: -1px; } -.divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); +.-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } -.divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); +.-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } -.divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); +.-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } -.divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; +.-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } -.divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; +.-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } -.divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; +.-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } -.divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; +.-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } -.divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; +.-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } -.divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; +.inset-y-1\/2 { + top: 50%; + bottom: 50%; } -.divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; +.inset-x-1\/2 { + right: 50%; + left: 50%; } -.divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; +.inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } -.divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; +.inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } -.divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; +.inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } -.divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; +.inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } -.divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; +.inset-y-1\/4 { + top: 25%; + bottom: 25%; } -.divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; +.inset-x-1\/4 { + right: 25%; + left: 25%; } -.divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; +.inset-y-2\/4 { + top: 50%; + bottom: 50%; } -.divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; +.inset-x-2\/4 { + right: 50%; + left: 50%; } -.divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; +.inset-y-3\/4 { + top: 75%; + bottom: 75%; } -.divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; +.inset-x-3\/4 { + right: 75%; + left: 75%; } -.divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; +.inset-y-full { + top: 100%; + bottom: 100%; } -.divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; +.inset-x-full { + right: 100%; + left: 100%; } -.divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; +.-inset-y-1\/2 { + top: -50%; + bottom: -50%; } -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; +.-inset-x-1\/2 { + right: -50%; + left: -50%; } -.not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; +.-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } -.focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; +.-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } -.focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; +.-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } -.focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; +.-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } -.focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; +.-inset-y-1\/4 { + top: -25%; + bottom: -25%; } -.appearance-none { - appearance: none; +.-inset-x-1\/4 { + right: -25%; + left: -25%; } -.bg-fixed { - background-attachment: fixed; +.-inset-y-2\/4 { + top: -50%; + bottom: -50%; } -.bg-local { - background-attachment: local; +.-inset-x-2\/4 { + right: -50%; + left: -50%; } -.bg-scroll { - background-attachment: scroll; +.-inset-y-3\/4 { + top: -75%; + bottom: -75%; } -.bg-clip-border { - background-clip: border-box; +.-inset-x-3\/4 { + right: -75%; + left: -75%; } -.bg-clip-padding { - background-clip: padding-box; +.-inset-y-full { + top: -100%; + bottom: -100%; } -.bg-clip-content { - background-clip: content-box; +.-inset-x-full { + right: -100%; + left: -100%; } -.bg-clip-text { - background-clip: text; +.top-0 { + top: 0px; } -.bg-transparent { - background-color: transparent; +.right-0 { + right: 0px; } -.bg-current { - background-color: currentColor; +.bottom-0 { + bottom: 0px; } -.bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +.left-0 { + left: 0px; } -.bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +.top-1 { + top: 0.25rem; } -.bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +.right-1 { + right: 0.25rem; } -.bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +.bottom-1 { + bottom: 0.25rem; } -.bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +.left-1 { + left: 0.25rem; } -.bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +.top-2 { + top: 0.5rem; } -.bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +.right-2 { + right: 0.5rem; } -.bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +.bottom-2 { + bottom: 0.5rem; } -.bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +.left-2 { + left: 0.5rem; } -.bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +.top-3 { + top: 0.75rem; } -.bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +.right-3 { + right: 0.75rem; } -.bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +.bottom-3 { + bottom: 0.75rem; } -.bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); +.left-3 { + left: 0.75rem; } -.bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); +.top-4 { + top: 1rem; } -.bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); +.right-4 { + right: 1rem; } -.bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); +.bottom-4 { + bottom: 1rem; } -.bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); +.left-4 { + left: 1rem; } -.bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); +.top-5 { + top: 1.25rem; } -.bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); +.right-5 { + right: 1.25rem; } -.bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); +.bottom-5 { + bottom: 1.25rem; } -.bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); +.left-5 { + left: 1.25rem; } -.bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); +.top-6 { + top: 1.5rem; } -.bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); +.right-6 { + right: 1.5rem; } -.bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); +.bottom-6 { + bottom: 1.5rem; } -.bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); +.left-6 { + left: 1.5rem; } -.bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); +.top-7 { + top: 1.75rem; } -.bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); +.right-7 { + right: 1.75rem; } -.bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +.bottom-7 { + bottom: 1.75rem; } -.bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); +.left-7 { + left: 1.75rem; } -.bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); +.top-8 { + top: 2rem; } -.bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); +.right-8 { + right: 2rem; } -.bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); +.bottom-8 { + bottom: 2rem; } -.bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); +.left-8 { + left: 2rem; } -.bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); +.top-9 { + top: 2.25rem; } -.bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); +.right-9 { + right: 2.25rem; } -.bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); +.bottom-9 { + bottom: 2.25rem; } -.bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); +.left-9 { + left: 2.25rem; } -.bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); +.top-10 { + top: 2.5rem; } -.bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); +.right-10 { + right: 2.5rem; } -.bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); +.bottom-10 { + bottom: 2.5rem; } -.bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); +.left-10 { + left: 2.5rem; } -.bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); +.top-11 { + top: 2.75rem; } -.bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); +.right-11 { + right: 2.75rem; } -.bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); +.bottom-11 { + bottom: 2.75rem; } -.bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); +.left-11 { + left: 2.75rem; } -.bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); +.top-12 { + top: 3rem; } -.bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); +.right-12 { + right: 3rem; } -.bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +.bottom-12 { + bottom: 3rem; } -.bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); +.left-12 { + left: 3rem; } -.bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); +.top-14 { + top: 3.5rem; } -.bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); +.right-14 { + right: 3.5rem; } -.bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); +.bottom-14 { + bottom: 3.5rem; } -.bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); +.left-14 { + left: 3.5rem; } -.bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); +.top-16 { + top: 4rem; } -.bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); +.right-16 { + right: 4rem; } -.bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); +.bottom-16 { + bottom: 4rem; } -.bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); +.left-16 { + left: 4rem; } -.bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); +.top-20 { + top: 5rem; } -.bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); +.right-20 { + right: 5rem; } -.bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); +.bottom-20 { + bottom: 5rem; } -.bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); +.left-20 { + left: 5rem; } -.bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); +.top-24 { + top: 6rem; } -.bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); +.right-24 { + right: 6rem; } -.bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); +.bottom-24 { + bottom: 6rem; } -.bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); +.left-24 { + left: 6rem; } -.bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); +.top-28 { + top: 7rem; } -.bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); +.right-28 { + right: 7rem; } -.bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); +.bottom-28 { + bottom: 7rem; } -.bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); +.left-28 { + left: 7rem; } -.bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); +.top-32 { + top: 8rem; } -.bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); +.right-32 { + right: 8rem; } -.bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); +.bottom-32 { + bottom: 8rem; } -.bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); +.left-32 { + left: 8rem; } -.bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); +.top-36 { + top: 9rem; } -.bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); +.right-36 { + right: 9rem; } -.bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); +.bottom-36 { + bottom: 9rem; } -.bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); +.left-36 { + left: 9rem; } -.bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); +.top-40 { + top: 10rem; } -.bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); +.right-40 { + right: 10rem; } -.bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); +.bottom-40 { + bottom: 10rem; } -.bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); +.left-40 { + left: 10rem; } -.bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); +.top-44 { + top: 11rem; } -.group:hover .group-hover\:bg-transparent { - background-color: transparent; +.right-44 { + right: 11rem; } -.group:hover .group-hover\:bg-current { - background-color: currentColor; +.bottom-44 { + bottom: 11rem; } -.group:hover .group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +.left-44 { + left: 11rem; } -.group:hover .group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +.top-48 { + top: 12rem; } -.group:hover .group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +.right-48 { + right: 12rem; } -.group:hover .group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +.bottom-48 { + bottom: 12rem; } -.group:hover .group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +.left-48 { + left: 12rem; } -.group:hover .group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +.top-52 { + top: 13rem; } -.group:hover .group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +.right-52 { + right: 13rem; } -.group:hover .group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +.bottom-52 { + bottom: 13rem; } -.group:hover .group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +.left-52 { + left: 13rem; } -.group:hover .group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +.top-56 { + top: 14rem; } -.group:hover .group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +.right-56 { + right: 14rem; } -.group:hover .group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +.bottom-56 { + bottom: 14rem; } -.group:hover .group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); +.left-56 { + left: 14rem; } -.group:hover .group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); +.top-60 { + top: 15rem; } -.group:hover .group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); +.right-60 { + right: 15rem; } -.group:hover .group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); +.bottom-60 { + bottom: 15rem; } -.group:hover .group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); +.left-60 { + left: 15rem; } -.group:hover .group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); +.top-64 { + top: 16rem; } -.group:hover .group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); +.right-64 { + right: 16rem; } -.group:hover .group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); +.bottom-64 { + bottom: 16rem; } -.group:hover .group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); +.left-64 { + left: 16rem; } -.group:hover .group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); +.top-72 { + top: 18rem; } -.group:hover .group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); +.right-72 { + right: 18rem; } -.group:hover .group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); +.bottom-72 { + bottom: 18rem; } -.group:hover .group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); +.left-72 { + left: 18rem; } -.group:hover .group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); +.top-80 { + top: 20rem; } -.group:hover .group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); +.right-80 { + right: 20rem; } -.group:hover .group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +.bottom-80 { + bottom: 20rem; } -.group:hover .group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); +.left-80 { + left: 20rem; } -.group:hover .group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); +.top-96 { + top: 24rem; } -.group:hover .group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); +.right-96 { + right: 24rem; } -.group:hover .group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); +.bottom-96 { + bottom: 24rem; } -.group:hover .group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); +.left-96 { + left: 24rem; } -.group:hover .group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); +.top-auto { + top: auto; } -.group:hover .group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); +.right-auto { + right: auto; } -.group:hover .group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); +.bottom-auto { + bottom: auto; } -.group:hover .group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); +.left-auto { + left: auto; } -.group:hover .group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); +.top-px { + top: 1px; } -.group:hover .group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); +.right-px { + right: 1px; } -.group:hover .group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); +.bottom-px { + bottom: 1px; } -.group:hover .group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); +.left-px { + left: 1px; } -.group:hover .group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); +.top-0\.5 { + top: 0.125rem; } -.group:hover .group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); +.right-0\.5 { + right: 0.125rem; } -.group:hover .group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); +.bottom-0\.5 { + bottom: 0.125rem; } -.group:hover .group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); +.left-0\.5 { + left: 0.125rem; } -.group:hover .group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); +.top-1\.5 { + top: 0.375rem; } -.group:hover .group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); +.right-1\.5 { + right: 0.375rem; } -.group:hover .group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +.bottom-1\.5 { + bottom: 0.375rem; } -.group:hover .group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); +.left-1\.5 { + left: 0.375rem; } -.group:hover .group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); +.top-2\.5 { + top: 0.625rem; } -.group:hover .group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); +.right-2\.5 { + right: 0.625rem; } -.group:hover .group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); +.bottom-2\.5 { + bottom: 0.625rem; } -.group:hover .group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); +.left-2\.5 { + left: 0.625rem; } -.group:hover .group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); +.top-3\.5 { + top: 0.875rem; } -.group:hover .group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); +.right-3\.5 { + right: 0.875rem; } -.group:hover .group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); +.bottom-3\.5 { + bottom: 0.875rem; } -.group:hover .group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); +.left-3\.5 { + left: 0.875rem; } -.group:hover .group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); +.-top-0 { + top: 0px; } -.group:hover .group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); +.-right-0 { + right: 0px; } -.group:hover .group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); +.-bottom-0 { + bottom: 0px; } -.group:hover .group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); +.-left-0 { + left: 0px; } -.group:hover .group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); +.-top-1 { + top: -0.25rem; } -.group:hover .group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); +.-right-1 { + right: -0.25rem; } -.group:hover .group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); +.-bottom-1 { + bottom: -0.25rem; } -.group:hover .group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); +.-left-1 { + left: -0.25rem; } -.group:hover .group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); +.-top-2 { + top: -0.5rem; } -.group:hover .group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); +.-right-2 { + right: -0.5rem; } -.group:hover .group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); +.-bottom-2 { + bottom: -0.5rem; } -.group:hover .group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); +.-left-2 { + left: -0.5rem; } -.group:hover .group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); +.-top-3 { + top: -0.75rem; } -.group:hover .group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); +.-right-3 { + right: -0.75rem; } -.group:hover .group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); +.-bottom-3 { + bottom: -0.75rem; } -.group:hover .group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); +.-left-3 { + left: -0.75rem; } -.group:hover .group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); +.-top-4 { + top: -1rem; } -.group:hover .group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); +.-right-4 { + right: -1rem; } -.group:hover .group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); +.-bottom-4 { + bottom: -1rem; } -.group:hover .group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); +.-left-4 { + left: -1rem; } -.group:hover .group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); +.-top-5 { + top: -1.25rem; } -.group:hover .group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); +.-right-5 { + right: -1.25rem; } -.group:hover .group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); +.-bottom-5 { + bottom: -1.25rem; } -.group:hover .group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); +.-left-5 { + left: -1.25rem; } -.group:hover .group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); +.-top-6 { + top: -1.5rem; } -.focus-within\:bg-transparent:focus-within { - background-color: transparent; +.-right-6 { + right: -1.5rem; } -.focus-within\:bg-current:focus-within { - background-color: currentColor; +.-bottom-6 { + bottom: -1.5rem; } -.focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +.-left-6 { + left: -1.5rem; } -.focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +.-top-7 { + top: -1.75rem; } -.focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +.-right-7 { + right: -1.75rem; } -.focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +.-bottom-7 { + bottom: -1.75rem; } -.focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +.-left-7 { + left: -1.75rem; } -.focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +.-top-8 { + top: -2rem; } -.focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +.-right-8 { + right: -2rem; } -.focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +.-bottom-8 { + bottom: -2rem; } -.focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +.-left-8 { + left: -2rem; } -.focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +.-top-9 { + top: -2.25rem; } -.focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +.-right-9 { + right: -2.25rem; } -.focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +.-bottom-9 { + bottom: -2.25rem; } -.focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); +.-left-9 { + left: -2.25rem; } -.focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); +.-top-10 { + top: -2.5rem; } -.focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); +.-right-10 { + right: -2.5rem; } -.focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); +.-bottom-10 { + bottom: -2.5rem; } -.focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); +.-left-10 { + left: -2.5rem; } -.focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); +.-top-11 { + top: -2.75rem; } -.focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); +.-right-11 { + right: -2.75rem; } -.focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); +.-bottom-11 { + bottom: -2.75rem; } -.focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); +.-left-11 { + left: -2.75rem; } -.focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); +.-top-12 { + top: -3rem; } -.focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); +.-right-12 { + right: -3rem; } -.focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); +.-bottom-12 { + bottom: -3rem; } -.focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); +.-left-12 { + left: -3rem; } -.focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); +.-top-14 { + top: -3.5rem; } -.focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); +.-right-14 { + right: -3.5rem; } -.focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +.-bottom-14 { + bottom: -3.5rem; } -.focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); +.-left-14 { + left: -3.5rem; } -.focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); +.-top-16 { + top: -4rem; } -.focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); +.-right-16 { + right: -4rem; } -.focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); +.-bottom-16 { + bottom: -4rem; } -.focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); +.-left-16 { + left: -4rem; } -.focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); +.-top-20 { + top: -5rem; } -.focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); +.-right-20 { + right: -5rem; } -.focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); +.-bottom-20 { + bottom: -5rem; } -.focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); +.-left-20 { + left: -5rem; } -.focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); +.-top-24 { + top: -6rem; } -.focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); +.-right-24 { + right: -6rem; } -.focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); +.-bottom-24 { + bottom: -6rem; } -.focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); +.-left-24 { + left: -6rem; } -.focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); +.-top-28 { + top: -7rem; } -.focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); +.-right-28 { + right: -7rem; } -.focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); +.-bottom-28 { + bottom: -7rem; } -.focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); +.-left-28 { + left: -7rem; } -.focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); +.-top-32 { + top: -8rem; } -.focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); +.-right-32 { + right: -8rem; } -.focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +.-bottom-32 { + bottom: -8rem; } -.focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); +.-left-32 { + left: -8rem; } -.focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); +.-top-36 { + top: -9rem; } -.focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); +.-right-36 { + right: -9rem; } -.focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); +.-bottom-36 { + bottom: -9rem; } -.focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); +.-left-36 { + left: -9rem; } -.focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); +.-top-40 { + top: -10rem; } -.focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); +.-right-40 { + right: -10rem; } -.focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); +.-bottom-40 { + bottom: -10rem; } -.focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); +.-left-40 { + left: -10rem; } -.focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); +.-top-44 { + top: -11rem; } -.focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); +.-right-44 { + right: -11rem; } -.focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); +.-bottom-44 { + bottom: -11rem; } -.focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); +.-left-44 { + left: -11rem; } -.focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); +.-top-48 { + top: -12rem; } -.focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); +.-right-48 { + right: -12rem; } -.focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); +.-bottom-48 { + bottom: -12rem; } -.focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); +.-left-48 { + left: -12rem; } -.focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); +.-top-52 { + top: -13rem; } -.focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); +.-right-52 { + right: -13rem; } -.focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); +.-bottom-52 { + bottom: -13rem; } -.focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); +.-left-52 { + left: -13rem; } -.focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); +.-top-56 { + top: -14rem; } -.focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); +.-right-56 { + right: -14rem; } -.focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); +.-bottom-56 { + bottom: -14rem; } -.focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); +.-left-56 { + left: -14rem; } -.focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); +.-top-60 { + top: -15rem; } -.focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); +.-right-60 { + right: -15rem; } -.focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); +.-bottom-60 { + bottom: -15rem; } -.focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); +.-left-60 { + left: -15rem; } -.focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); +.-top-64 { + top: -16rem; } -.focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); +.-right-64 { + right: -16rem; } -.focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); +.-bottom-64 { + bottom: -16rem; } -.focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); +.-left-64 { + left: -16rem; } -.focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); +.-top-72 { + top: -18rem; } -.hover\:bg-transparent:hover { - background-color: transparent; +.-right-72 { + right: -18rem; } -.hover\:bg-current:hover { - background-color: currentColor; +.-bottom-72 { + bottom: -18rem; } -.hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +.-left-72 { + left: -18rem; } -.hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +.-top-80 { + top: -20rem; } -.hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +.-right-80 { + right: -20rem; } -.hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +.-bottom-80 { + bottom: -20rem; } -.hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +.-left-80 { + left: -20rem; } -.hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +.-top-96 { + top: -24rem; } -.hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +.-right-96 { + right: -24rem; } -.hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +.-bottom-96 { + bottom: -24rem; } -.hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +.-left-96 { + left: -24rem; } -.hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +.-top-px { + top: -1px; } -.hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +.-right-px { + right: -1px; } -.hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +.-bottom-px { + bottom: -1px; } -.hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); +.-left-px { + left: -1px; } -.hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); +.-top-0\.5 { + top: -0.125rem; } -.hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); +.-right-0\.5 { + right: -0.125rem; } -.hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); +.-bottom-0\.5 { + bottom: -0.125rem; } -.hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); +.-left-0\.5 { + left: -0.125rem; } -.hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); +.-top-1\.5 { + top: -0.375rem; } -.hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); +.-right-1\.5 { + right: -0.375rem; } -.hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); +.-bottom-1\.5 { + bottom: -0.375rem; } -.hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); +.-left-1\.5 { + left: -0.375rem; } -.hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); +.-top-2\.5 { + top: -0.625rem; } -.hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); +.-right-2\.5 { + right: -0.625rem; } -.hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); +.-bottom-2\.5 { + bottom: -0.625rem; } -.hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); +.-left-2\.5 { + left: -0.625rem; } -.hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); +.-top-3\.5 { + top: -0.875rem; } -.hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); +.-right-3\.5 { + right: -0.875rem; } -.hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +.-bottom-3\.5 { + bottom: -0.875rem; } -.hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); +.-left-3\.5 { + left: -0.875rem; } -.hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); +.top-1\/2 { + top: 50%; } -.hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); +.right-1\/2 { + right: 50%; } -.hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); +.bottom-1\/2 { + bottom: 50%; } -.hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); +.left-1\/2 { + left: 50%; } -.hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); +.top-1\/3 { + top: 33.333333%; } -.hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); +.right-1\/3 { + right: 33.333333%; } -.hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); +.bottom-1\/3 { + bottom: 33.333333%; } -.hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); +.left-1\/3 { + left: 33.333333%; } -.hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); +.top-2\/3 { + top: 66.666667%; } -.hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); +.right-2\/3 { + right: 66.666667%; } -.hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); +.bottom-2\/3 { + bottom: 66.666667%; } -.hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); +.left-2\/3 { + left: 66.666667%; } -.hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); +.top-1\/4 { + top: 25%; } -.hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); +.right-1\/4 { + right: 25%; } -.hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); +.bottom-1\/4 { + bottom: 25%; } -.hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); +.left-1\/4 { + left: 25%; } -.hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); +.top-2\/4 { + top: 50%; } -.hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); +.right-2\/4 { + right: 50%; } -.hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +.bottom-2\/4 { + bottom: 50%; } -.hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); +.left-2\/4 { + left: 50%; } -.hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); +.top-3\/4 { + top: 75%; } -.hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); +.right-3\/4 { + right: 75%; } -.hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); +.bottom-3\/4 { + bottom: 75%; } -.hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); +.left-3\/4 { + left: 75%; } -.hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); +.top-full { + top: 100%; } -.hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); +.right-full { + right: 100%; } -.hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); +.bottom-full { + bottom: 100%; } -.hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); +.left-full { + left: 100%; } -.hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); +.-top-1\/2 { + top: -50%; } -.hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); +.-right-1\/2 { + right: -50%; } -.hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); +.-bottom-1\/2 { + bottom: -50%; } -.hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); +.-left-1\/2 { + left: -50%; } -.hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); +.-top-1\/3 { + top: -33.333333%; } -.hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); +.-right-1\/3 { + right: -33.333333%; } -.hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); +.-bottom-1\/3 { + bottom: -33.333333%; } -.hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); +.-left-1\/3 { + left: -33.333333%; } -.hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); +.-top-2\/3 { + top: -66.666667%; } -.hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); +.-right-2\/3 { + right: -66.666667%; } -.hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); +.-bottom-2\/3 { + bottom: -66.666667%; } -.hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); +.-left-2\/3 { + left: -66.666667%; } -.hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); +.-top-1\/4 { + top: -25%; } -.hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); +.-right-1\/4 { + right: -25%; } -.hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); +.-bottom-1\/4 { + bottom: -25%; } -.hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); +.-left-1\/4 { + left: -25%; } -.hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); +.-top-2\/4 { + top: -50%; } -.hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); +.-right-2\/4 { + right: -50%; } -.hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); +.-bottom-2\/4 { + bottom: -50%; } -.hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); +.-left-2\/4 { + left: -50%; } -.hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); +.-top-3\/4 { + top: -75%; } -.hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); +.-right-3\/4 { + right: -75%; } -.hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); +.-bottom-3\/4 { + bottom: -75%; } -.hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); +.-left-3\/4 { + left: -75%; } -.hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); +.-top-full { + top: -100%; } -.focus\:bg-transparent:focus { - background-color: transparent; +.-right-full { + right: -100%; } -.focus\:bg-current:focus { - background-color: currentColor; +.-bottom-full { + bottom: -100%; } -.focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +.-left-full { + left: -100%; } -.focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +.isolate { + isolation: isolate; } -.focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +.isolation-auto { + isolation: auto; } -.focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +.z-0 { + z-index: 0; } -.focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +.z-10 { + z-index: 10; } -.focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +.z-20 { + z-index: 20; } -.focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +.z-30 { + z-index: 30; } -.focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +.z-40 { + z-index: 40; } -.focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +.z-50 { + z-index: 50; } -.focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +.z-auto { + z-index: auto; } -.focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +.focus-within\:z-0:focus-within { + z-index: 0; } -.focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +.focus-within\:z-10:focus-within { + z-index: 10; } -.focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); +.focus-within\:z-20:focus-within { + z-index: 20; } -.focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); +.focus-within\:z-30:focus-within { + z-index: 30; } -.focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); +.focus-within\:z-40:focus-within { + z-index: 40; } -.focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); +.focus-within\:z-50:focus-within { + z-index: 50; } -.focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); +.focus-within\:z-auto:focus-within { + z-index: auto; } -.focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); +.focus\:z-0:focus { + z-index: 0; } -.focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); +.focus\:z-10:focus { + z-index: 10; } -.focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); +.focus\:z-20:focus { + z-index: 20; } -.focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); +.focus\:z-30:focus { + z-index: 30; } -.focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); +.focus\:z-40:focus { + z-index: 40; } -.focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); +.focus\:z-50:focus { + z-index: 50; } -.focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); +.focus\:z-auto:focus { + z-index: auto; } -.focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); +.order-1 { + order: 1; } -.focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); +.order-2 { + order: 2; } -.focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); +.order-3 { + order: 3; } -.focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +.order-4 { + order: 4; } -.focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); +.order-5 { + order: 5; } -.focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); +.order-6 { + order: 6; } -.focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); +.order-7 { + order: 7; } -.focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); +.order-8 { + order: 8; } -.focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); +.order-9 { + order: 9; } -.focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); +.order-10 { + order: 10; } -.focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); +.order-11 { + order: 11; } -.focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); +.order-12 { + order: 12; } -.focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); +.order-first { + order: -9999; } -.focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); +.order-last { + order: 9999; } -.focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); +.order-none { + order: 0; } -.focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); +.col-auto { + grid-column: auto; } -.focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); +.col-span-1 { + grid-column: span 1 / span 1; } -.focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); +.col-span-2 { + grid-column: span 2 / span 2; } -.focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); +.col-span-3 { + grid-column: span 3 / span 3; } -.focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); +.col-span-4 { + grid-column: span 4 / span 4; } -.focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); +.col-span-5 { + grid-column: span 5 / span 5; } -.focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); +.col-span-6 { + grid-column: span 6 / span 6; } -.focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); +.col-span-7 { + grid-column: span 7 / span 7; } -.focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +.col-span-8 { + grid-column: span 8 / span 8; } -.focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); +.col-span-9 { + grid-column: span 9 / span 9; } -.focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); +.col-span-10 { + grid-column: span 10 / span 10; } -.focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); +.col-span-11 { + grid-column: span 11 / span 11; } -.focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); +.col-span-12 { + grid-column: span 12 / span 12; } -.focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); +.col-span-full { + grid-column: 1 / -1; } -.focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); +.col-start-1 { + grid-column-start: 1; } -.focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); +.col-start-2 { + grid-column-start: 2; } -.focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); +.col-start-3 { + grid-column-start: 3; } -.focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); +.col-start-4 { + grid-column-start: 4; } -.focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); +.col-start-5 { + grid-column-start: 5; } -.focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); +.col-start-6 { + grid-column-start: 6; } -.focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); +.col-start-7 { + grid-column-start: 7; } -.focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); +.col-start-8 { + grid-column-start: 8; } -.focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); +.col-start-9 { + grid-column-start: 9; } -.focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); +.col-start-10 { + grid-column-start: 10; } -.focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); +.col-start-11 { + grid-column-start: 11; } -.focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); +.col-start-12 { + grid-column-start: 12; } -.focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); +.col-start-13 { + grid-column-start: 13; } -.focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); +.col-start-auto { + grid-column-start: auto; } -.focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); +.col-end-1 { + grid-column-end: 1; } -.focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); +.col-end-2 { + grid-column-end: 2; } -.focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); +.col-end-3 { + grid-column-end: 3; } -.focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); +.col-end-4 { + grid-column-end: 4; } -.focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); +.col-end-5 { + grid-column-end: 5; } -.focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); +.col-end-6 { + grid-column-end: 6; } -.focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); +.col-end-7 { + grid-column-end: 7; } -.focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); +.col-end-8 { + grid-column-end: 8; } -.focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); +.col-end-9 { + grid-column-end: 9; } -.focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); +.col-end-10 { + grid-column-end: 10; } -.focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); +.col-end-11 { + grid-column-end: 11; } -.focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); +.col-end-12 { + grid-column-end: 12; } -.focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); +.col-end-13 { + grid-column-end: 13; } -.focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); +.col-end-auto { + grid-column-end: auto; } -.focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); +.row-auto { + grid-row: auto; } -.bg-none { - background-image: none; +.row-span-1 { + grid-row: span 1 / span 1; } -.bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); +.row-span-2 { + grid-row: span 2 / span 2; } -.bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); +.row-span-3 { + grid-row: span 3 / span 3; } -.bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); +.row-span-4 { + grid-row: span 4 / span 4; } -.bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); +.row-span-5 { + grid-row: span 5 / span 5; } -.bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); +.row-span-6 { + grid-row: span 6 / span 6; } -.bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); +.row-span-full { + grid-row: 1 / -1; } -.bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); +.row-start-1 { + grid-row-start: 1; } -.bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); +.row-start-2 { + grid-row-start: 2; } -.from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.row-start-3 { + grid-row-start: 3; } -.from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.row-start-4 { + grid-row-start: 4; } -.from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.row-start-5 { + grid-row-start: 5; } -.from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.row-start-6 { + grid-row-start: 6; } -.from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.row-start-7 { + grid-row-start: 7; } -.from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.row-start-auto { + grid-row-start: auto; } -.from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.row-end-1 { + grid-row-end: 1; } -.from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.row-end-2 { + grid-row-end: 2; } -.from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.row-end-3 { + grid-row-end: 3; } -.from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.row-end-4 { + grid-row-end: 4; } -.from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.row-end-5 { + grid-row-end: 5; } -.from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.row-end-6 { + grid-row-end: 6; } -.from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.row-end-7 { + grid-row-end: 7; } -.from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.row-end-auto { + grid-row-end: auto; } -.from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.float-right { + float: right; } -.from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.float-left { + float: left; } -.from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.float-none { + float: none; } -.from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.clear-left { + clear: left; } -.from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.clear-right { + clear: right; } -.from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.clear-both { + clear: both; } -.from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.clear-none { + clear: none; } -.from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.m-0 { + margin: 0px; } -.from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.m-1 { + margin: 0.25rem; } -.from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.m-2 { + margin: 0.5rem; } -.from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.m-3 { + margin: 0.75rem; } -.from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.m-4 { + margin: 1rem; } -.from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.m-5 { + margin: 1.25rem; } -.from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.m-6 { + margin: 1.5rem; } -.from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.m-7 { + margin: 1.75rem; } -.from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.m-8 { + margin: 2rem; } -.from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.m-9 { + margin: 2.25rem; } -.from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.m-10 { + margin: 2.5rem; } -.from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.m-11 { + margin: 2.75rem; } -.from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.m-12 { + margin: 3rem; } -.from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.m-14 { + margin: 3.5rem; } -.from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.m-16 { + margin: 4rem; } -.from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.m-20 { + margin: 5rem; } -.from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.m-24 { + margin: 6rem; } -.from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.m-28 { + margin: 7rem; } -.from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.m-32 { + margin: 8rem; } -.from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.m-36 { + margin: 9rem; } -.from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.m-40 { + margin: 10rem; } -.from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.m-44 { + margin: 11rem; } -.from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.m-48 { + margin: 12rem; } -.from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.m-52 { + margin: 13rem; } -.from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.m-56 { + margin: 14rem; } -.from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.m-60 { + margin: 15rem; } -.from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.m-64 { + margin: 16rem; } -.from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.m-72 { + margin: 18rem; } -.from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.m-80 { + margin: 20rem; } -.from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.m-96 { + margin: 24rem; } -.from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.m-auto { + margin: auto; } -.from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.m-px { + margin: 1px; } -.from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.m-0\.5 { + margin: 0.125rem; } -.from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.m-1\.5 { + margin: 0.375rem; } -.from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.m-2\.5 { + margin: 0.625rem; } -.from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.m-3\.5 { + margin: 0.875rem; } -.from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.-m-0 { + margin: 0px; } -.from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.-m-1 { + margin: -0.25rem; } -.from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.-m-2 { + margin: -0.5rem; } -.from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.-m-3 { + margin: -0.75rem; } -.from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.-m-4 { + margin: -1rem; } -.from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.-m-5 { + margin: -1.25rem; } -.from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.-m-6 { + margin: -1.5rem; } -.from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.-m-7 { + margin: -1.75rem; } -.from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.-m-8 { + margin: -2rem; } -.from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.-m-9 { + margin: -2.25rem; } -.from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.-m-10 { + margin: -2.5rem; } -.from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.-m-11 { + margin: -2.75rem; } -.from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.-m-12 { + margin: -3rem; } -.from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.-m-14 { + margin: -3.5rem; } -.from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.-m-16 { + margin: -4rem; } -.from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.-m-20 { + margin: -5rem; } -.from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.-m-24 { + margin: -6rem; } -.from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.-m-28 { + margin: -7rem; } -.from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.-m-32 { + margin: -8rem; } -.from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.-m-36 { + margin: -9rem; } -.from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.-m-40 { + margin: -10rem; } -.from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.-m-44 { + margin: -11rem; } -.from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.-m-48 { + margin: -12rem; } -.from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.-m-52 { + margin: -13rem; } -.from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.-m-56 { + margin: -14rem; } -.from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.-m-60 { + margin: -15rem; } -.from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.-m-64 { + margin: -16rem; } -.via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-m-72 { + margin: -18rem; } -.via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-m-80 { + margin: -20rem; } -.via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-m-96 { + margin: -24rem; } -.via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-m-px { + margin: -1px; } -.via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.-m-0\.5 { + margin: -0.125rem; } -.via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.-m-1\.5 { + margin: -0.375rem; } -.via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.-m-2\.5 { + margin: -0.625rem; } -.via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.-m-3\.5 { + margin: -0.875rem; } -.via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.mx-0 { + margin-left: 0px; + margin-right: 0px; } -.via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } -.via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } -.via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } -.via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.mx-4 { + margin-left: 1rem; + margin-right: 1rem; } -.via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } -.via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } -.via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } -.via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.mx-8 { + margin-left: 2rem; + margin-right: 2rem; } -.via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } -.via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } -.via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } -.via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.mx-12 { + margin-left: 3rem; + margin-right: 3rem; } -.via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } -.via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.mx-16 { + margin-left: 4rem; + margin-right: 4rem; } -.via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.mx-20 { + margin-left: 5rem; + margin-right: 5rem; } -.via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.mx-24 { + margin-left: 6rem; + margin-right: 6rem; } -.via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.mx-28 { + margin-left: 7rem; + margin-right: 7rem; } -.via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.mx-32 { + margin-left: 8rem; + margin-right: 8rem; } -.via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.mx-36 { + margin-left: 9rem; + margin-right: 9rem; } -.via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.mx-40 { + margin-left: 10rem; + margin-right: 10rem; } -.via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.mx-44 { + margin-left: 11rem; + margin-right: 11rem; } -.via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.mx-48 { + margin-left: 12rem; + margin-right: 12rem; } -.via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.mx-52 { + margin-left: 13rem; + margin-right: 13rem; } -.via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.mx-56 { + margin-left: 14rem; + margin-right: 14rem; } -.via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.mx-60 { + margin-left: 15rem; + margin-right: 15rem; } -.via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.mx-64 { + margin-left: 16rem; + margin-right: 16rem; } -.via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.mx-72 { + margin-left: 18rem; + margin-right: 18rem; } -.via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.mx-80 { + margin-left: 20rem; + margin-right: 20rem; } -.via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.mx-96 { + margin-left: 24rem; + margin-right: 24rem; } -.via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.mx-auto { + margin-left: auto; + margin-right: auto; } -.via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.mx-px { + margin-left: 1px; + margin-right: 1px; } -.via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } -.via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } -.via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } -.via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } -.via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.-mx-0 { + margin-left: 0px; + margin-right: 0px; } -.via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } -.via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } -.via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } -.via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } -.via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } -.via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } -.via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } -.via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } -.via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } -.via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } -.via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } -.via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } -.via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } -.via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } -.via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } -.via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } -.via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } -.via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } -.via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } -.via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } -.via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } -.via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } -.via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } -.via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } -.via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } -.via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } -.via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } -.via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } -.via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } -.via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.-mx-px { + margin-left: -1px; + margin-right: -1px; } -.via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } -.via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } -.via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } -.via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } -.via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.my-0 { + margin-top: 0px; + margin-bottom: 0px; } -.via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } -.via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } -.via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } -.via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } -.to-transparent { - --tw-gradient-to: transparent; +.my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } -.to-current { - --tw-gradient-to: currentColor; +.my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } -.to-black { - --tw-gradient-to: #000; +.my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } -.to-white { - --tw-gradient-to: #fff; +.my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } -.to-gray-50 { - --tw-gradient-to: #f9fafb; +.my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } -.to-gray-100 { - --tw-gradient-to: #f3f4f6; +.my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } -.to-gray-200 { - --tw-gradient-to: #e5e7eb; +.my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } -.to-gray-300 { - --tw-gradient-to: #d1d5db; +.my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } -.to-gray-400 { - --tw-gradient-to: #9ca3af; +.my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } -.to-gray-500 { - --tw-gradient-to: #6b7280; +.my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } -.to-gray-600 { - --tw-gradient-to: #4b5563; +.my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } -.to-gray-700 { - --tw-gradient-to: #374151; +.my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } -.to-gray-800 { - --tw-gradient-to: #1f2937; +.my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } -.to-gray-900 { - --tw-gradient-to: #111827; +.my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } -.to-red-50 { - --tw-gradient-to: #fef2f2; +.my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } -.to-red-100 { - --tw-gradient-to: #fee2e2; +.my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } -.to-red-200 { - --tw-gradient-to: #fecaca; +.my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } -.to-red-300 { - --tw-gradient-to: #fca5a5; +.my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } -.to-red-400 { - --tw-gradient-to: #f87171; +.my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } -.to-red-500 { - --tw-gradient-to: #ef4444; +.my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } -.to-red-600 { - --tw-gradient-to: #dc2626; +.my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } -.to-red-700 { - --tw-gradient-to: #b91c1c; +.my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } -.to-red-800 { - --tw-gradient-to: #991b1b; +.my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } -.to-red-900 { - --tw-gradient-to: #7f1d1d; +.my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } -.to-yellow-50 { - --tw-gradient-to: #fffbeb; +.my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } -.to-yellow-100 { - --tw-gradient-to: #fef3c7; +.my-auto { + margin-top: auto; + margin-bottom: auto; } -.to-yellow-200 { - --tw-gradient-to: #fde68a; +.my-px { + margin-top: 1px; + margin-bottom: 1px; } -.to-yellow-300 { - --tw-gradient-to: #fcd34d; +.my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } -.to-yellow-400 { - --tw-gradient-to: #fbbf24; +.my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } -.to-yellow-500 { - --tw-gradient-to: #f59e0b; +.my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } -.to-yellow-600 { - --tw-gradient-to: #d97706; +.my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } -.to-yellow-700 { - --tw-gradient-to: #b45309; +.-my-0 { + margin-top: 0px; + margin-bottom: 0px; } -.to-yellow-800 { - --tw-gradient-to: #92400e; +.-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } -.to-yellow-900 { - --tw-gradient-to: #78350f; +.-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } -.to-green-50 { - --tw-gradient-to: #ecfdf5; +.-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } -.to-green-100 { - --tw-gradient-to: #d1fae5; +.-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } -.to-green-200 { - --tw-gradient-to: #a7f3d0; +.-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } -.to-green-300 { - --tw-gradient-to: #6ee7b7; +.-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } -.to-green-400 { - --tw-gradient-to: #34d399; +.-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } -.to-green-500 { - --tw-gradient-to: #10b981; +.-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } -.to-green-600 { - --tw-gradient-to: #059669; +.-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } -.to-green-700 { - --tw-gradient-to: #047857; +.-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } -.to-green-800 { - --tw-gradient-to: #065f46; +.-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } -.to-green-900 { - --tw-gradient-to: #064e3b; +.-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } -.to-blue-50 { - --tw-gradient-to: #eff6ff; +.-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } -.to-blue-100 { - --tw-gradient-to: #dbeafe; +.-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } -.to-blue-200 { - --tw-gradient-to: #bfdbfe; +.-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } -.to-blue-300 { - --tw-gradient-to: #93c5fd; +.-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } -.to-blue-400 { - --tw-gradient-to: #60a5fa; +.-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } -.to-blue-500 { - --tw-gradient-to: #3b82f6; +.-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } -.to-blue-600 { - --tw-gradient-to: #2563eb; +.-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } -.to-blue-700 { - --tw-gradient-to: #1d4ed8; +.-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } -.to-blue-800 { - --tw-gradient-to: #1e40af; +.-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } -.to-blue-900 { - --tw-gradient-to: #1e3a8a; +.-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } -.to-indigo-50 { - --tw-gradient-to: #eef2ff; +.-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } -.to-indigo-100 { - --tw-gradient-to: #e0e7ff; +.-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } -.to-indigo-200 { - --tw-gradient-to: #c7d2fe; +.-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } -.to-indigo-300 { - --tw-gradient-to: #a5b4fc; +.-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } -.to-indigo-400 { - --tw-gradient-to: #818cf8; +.-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } -.to-indigo-500 { - --tw-gradient-to: #6366f1; +.-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } -.to-indigo-600 { - --tw-gradient-to: #4f46e5; +.-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } -.to-indigo-700 { - --tw-gradient-to: #4338ca; +.-my-px { + margin-top: -1px; + margin-bottom: -1px; } -.to-indigo-800 { - --tw-gradient-to: #3730a3; +.-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } -.to-indigo-900 { - --tw-gradient-to: #312e81; +.-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } -.to-purple-50 { - --tw-gradient-to: #f5f3ff; +.-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } -.to-purple-100 { - --tw-gradient-to: #ede9fe; +.-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } -.to-purple-200 { - --tw-gradient-to: #ddd6fe; +.mt-0 { + margin-top: 0px; } -.to-purple-300 { - --tw-gradient-to: #c4b5fd; +.mt-1 { + margin-top: 0.25rem; } -.to-purple-400 { - --tw-gradient-to: #a78bfa; +.mt-2 { + margin-top: 0.5rem; } -.to-purple-500 { - --tw-gradient-to: #8b5cf6; +.mt-3 { + margin-top: 0.75rem; } -.to-purple-600 { - --tw-gradient-to: #7c3aed; +.mt-4 { + margin-top: 1rem; } -.to-purple-700 { - --tw-gradient-to: #6d28d9; +.mt-5 { + margin-top: 1.25rem; } -.to-purple-800 { - --tw-gradient-to: #5b21b6; +.mt-6 { + margin-top: 1.5rem; } -.to-purple-900 { - --tw-gradient-to: #4c1d95; +.mt-7 { + margin-top: 1.75rem; } -.to-pink-50 { - --tw-gradient-to: #fdf2f8; +.mt-8 { + margin-top: 2rem; } -.to-pink-100 { - --tw-gradient-to: #fce7f3; +.mt-9 { + margin-top: 2.25rem; } -.to-pink-200 { - --tw-gradient-to: #fbcfe8; +.mt-10 { + margin-top: 2.5rem; } -.to-pink-300 { - --tw-gradient-to: #f9a8d4; +.mt-11 { + margin-top: 2.75rem; } -.to-pink-400 { - --tw-gradient-to: #f472b6; +.mt-12 { + margin-top: 3rem; } -.to-pink-500 { - --tw-gradient-to: #ec4899; +.mt-14 { + margin-top: 3.5rem; } -.to-pink-600 { - --tw-gradient-to: #db2777; +.mt-16 { + margin-top: 4rem; } -.to-pink-700 { - --tw-gradient-to: #be185d; +.mt-20 { + margin-top: 5rem; } -.to-pink-800 { - --tw-gradient-to: #9d174d; +.mt-24 { + margin-top: 6rem; } -.to-pink-900 { - --tw-gradient-to: #831843; +.mt-28 { + margin-top: 7rem; } -.hover\:from-transparent:hover { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mt-32 { + margin-top: 8rem; } -.hover\:from-current:hover { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mt-36 { + margin-top: 9rem; } -.hover\:from-black:hover { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mt-40 { + margin-top: 10rem; } -.hover\:from-white:hover { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mt-44 { + margin-top: 11rem; } -.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)); +.mt-48 { + margin-top: 12rem; } -.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)); +.mt-52 { + margin-top: 13rem; } -.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)); +.mt-56 { + margin-top: 14rem; } -.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)); +.mt-60 { + margin-top: 15rem; } -.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)); +.mt-64 { + margin-top: 16rem; } -.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)); +.mt-72 { + margin-top: 18rem; } -.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)); +.mt-80 { + margin-top: 20rem; } -.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)); +.mt-96 { + margin-top: 24rem; } -.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)); +.mt-auto { + margin-top: auto; } -.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)); +.mt-px { + margin-top: 1px; } -.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)); +.mt-0\.5 { + margin-top: 0.125rem; } -.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)); +.mt-1\.5 { + margin-top: 0.375rem; } -.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)); +.mt-2\.5 { + margin-top: 0.625rem; } -.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)); +.mt-3\.5 { + margin-top: 0.875rem; } -.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)); +.-mt-0 { + margin-top: 0px; } -.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)); +.-mt-1 { + margin-top: -0.25rem; } -.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)); +.-mt-2 { + margin-top: -0.5rem; } -.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)); +.-mt-3 { + margin-top: -0.75rem; } -.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)); +.-mt-4 { + margin-top: -1rem; } -.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)); +.-mt-5 { + margin-top: -1.25rem; } -.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)); +.-mt-6 { + margin-top: -1.5rem; } -.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)); +.-mt-7 { + margin-top: -1.75rem; } -.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)); +.-mt-8 { + margin-top: -2rem; } -.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)); +.-mt-9 { + margin-top: -2.25rem; } -.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)); +.-mt-10 { + margin-top: -2.5rem; } -.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)); +.-mt-11 { + margin-top: -2.75rem; } -.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)); +.-mt-12 { + margin-top: -3rem; } -.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)); +.-mt-14 { + margin-top: -3.5rem; } -.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)); +.-mt-16 { + margin-top: -4rem; } -.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)); +.-mt-20 { + margin-top: -5rem; } -.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)); +.-mt-24 { + margin-top: -6rem; } -.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)); +.-mt-28 { + margin-top: -7rem; } -.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)); +.-mt-32 { + margin-top: -8rem; } -.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)); +.-mt-36 { + margin-top: -9rem; } -.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)); +.-mt-40 { + margin-top: -10rem; } -.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)); +.-mt-44 { + margin-top: -11rem; } -.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)); +.-mt-48 { + margin-top: -12rem; } -.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)); +.-mt-52 { + margin-top: -13rem; } -.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)); +.-mt-56 { + margin-top: -14rem; } -.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)); +.-mt-60 { + margin-top: -15rem; } -.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)); +.-mt-64 { + margin-top: -16rem; } -.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)); +.-mt-72 { + margin-top: -18rem; } -.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)); +.-mt-80 { + margin-top: -20rem; } -.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)); +.-mt-96 { + margin-top: -24rem; } -.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)); +.-mt-px { + margin-top: -1px; } -.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)); +.-mt-0\.5 { + margin-top: -0.125rem; } -.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)); +.-mt-1\.5 { + margin-top: -0.375rem; } -.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)); +.-mt-2\.5 { + margin-top: -0.625rem; } -.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)); +.-mt-3\.5 { + margin-top: -0.875rem; } -.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)); +.mr-0 { + margin-right: 0px; } -.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)); +.mr-1 { + margin-right: 0.25rem; } -.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)); +.mr-2 { + margin-right: 0.5rem; } -.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)); +.mr-3 { + margin-right: 0.75rem; } -.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)); +.mr-4 { + margin-right: 1rem; } -.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)); +.mr-5 { + margin-right: 1.25rem; } -.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)); +.mr-6 { + margin-right: 1.5rem; } -.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)); +.mr-7 { + margin-right: 1.75rem; } -.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)); +.mr-8 { + margin-right: 2rem; } -.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)); +.mr-9 { + margin-right: 2.25rem; } -.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)); +.mr-10 { + margin-right: 2.5rem; } -.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)); +.mr-11 { + margin-right: 2.75rem; } -.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)); +.mr-12 { + margin-right: 3rem; } -.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)); +.mr-14 { + margin-right: 3.5rem; } -.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)); +.mr-16 { + margin-right: 4rem; } -.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)); +.mr-20 { + margin-right: 5rem; } -.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)); +.mr-24 { + margin-right: 6rem; } -.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)); +.mr-28 { + margin-right: 7rem; } -.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)); +.mr-32 { + margin-right: 8rem; } -.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)); +.mr-36 { + margin-right: 9rem; } -.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)); +.mr-40 { + margin-right: 10rem; } -.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)); +.mr-44 { + margin-right: 11rem; } -.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)); +.mr-48 { + margin-right: 12rem; } -.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)); +.mr-52 { + margin-right: 13rem; } -.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)); +.mr-56 { + margin-right: 14rem; } -.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)); +.mr-60 { + margin-right: 15rem; } -.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)); +.mr-64 { + margin-right: 16rem; } -.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)); +.mr-72 { + margin-right: 18rem; } -.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)); +.mr-80 { + margin-right: 20rem; } -.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)); +.mr-96 { + margin-right: 24rem; } -.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)); +.mr-auto { + margin-right: auto; } -.hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mr-px { + margin-right: 1px; } -.hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mr-0\.5 { + margin-right: 0.125rem; } -.hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.mr-1\.5 { + margin-right: 0.375rem; } -.hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.mr-2\.5 { + margin-right: 0.625rem; } -.hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.mr-3\.5 { + margin-right: 0.875rem; } -.hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.-mr-0 { + margin-right: 0px; } -.hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.-mr-1 { + margin-right: -0.25rem; } -.hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.-mr-2 { + margin-right: -0.5rem; } -.hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.-mr-3 { + margin-right: -0.75rem; } -.hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.-mr-4 { + margin-right: -1rem; } -.hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.-mr-5 { + margin-right: -1.25rem; } -.hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.-mr-6 { + margin-right: -1.5rem; } -.hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.-mr-7 { + margin-right: -1.75rem; } -.hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.-mr-8 { + margin-right: -2rem; } -.hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.-mr-9 { + margin-right: -2.25rem; } -.hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.-mr-10 { + margin-right: -2.5rem; } -.hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.-mr-11 { + margin-right: -2.75rem; } -.hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.-mr-12 { + margin-right: -3rem; } -.hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.-mr-14 { + margin-right: -3.5rem; } -.hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.-mr-16 { + margin-right: -4rem; } -.hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.-mr-20 { + margin-right: -5rem; } -.hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.-mr-24 { + margin-right: -6rem; } -.hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.-mr-28 { + margin-right: -7rem; } -.hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.-mr-32 { + margin-right: -8rem; } -.hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.-mr-36 { + margin-right: -9rem; } -.hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.-mr-40 { + margin-right: -10rem; } -.hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.-mr-44 { + margin-right: -11rem; } -.hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.-mr-48 { + margin-right: -12rem; } -.hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.-mr-52 { + margin-right: -13rem; } -.hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.-mr-56 { + margin-right: -14rem; } -.hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.-mr-60 { + margin-right: -15rem; } -.hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.-mr-64 { + margin-right: -16rem; } -.hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.-mr-72 { + margin-right: -18rem; } -.hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.-mr-80 { + margin-right: -20rem; } -.hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.-mr-96 { + margin-right: -24rem; } -.hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.-mr-px { + margin-right: -1px; } -.hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.-mr-0\.5 { + margin-right: -0.125rem; } -.hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.-mr-1\.5 { + margin-right: -0.375rem; } -.hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.-mr-2\.5 { + margin-right: -0.625rem; } -.hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.-mr-3\.5 { + margin-right: -0.875rem; } -.hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.mb-0 { + margin-bottom: 0px; } -.hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.mb-1 { + margin-bottom: 0.25rem; } -.hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.mb-2 { + margin-bottom: 0.5rem; } -.hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.mb-3 { + margin-bottom: 0.75rem; } -.hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.mb-4 { + margin-bottom: 1rem; } -.hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.mb-5 { + margin-bottom: 1.25rem; } -.hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.mb-6 { + margin-bottom: 1.5rem; } -.hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.mb-7 { + margin-bottom: 1.75rem; } -.hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.mb-8 { + margin-bottom: 2rem; } -.hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.mb-9 { + margin-bottom: 2.25rem; } -.hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.mb-10 { + margin-bottom: 2.5rem; } -.hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.mb-11 { + margin-bottom: 2.75rem; } -.hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.mb-12 { + margin-bottom: 3rem; } -.hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.mb-14 { + margin-bottom: 3.5rem; } -.hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.mb-16 { + margin-bottom: 4rem; } -.hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.mb-20 { + margin-bottom: 5rem; } -.hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.mb-24 { + margin-bottom: 6rem; } -.hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.mb-28 { + margin-bottom: 7rem; } -.hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.mb-32 { + margin-bottom: 8rem; } -.hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.mb-36 { + margin-bottom: 9rem; } -.hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.mb-40 { + margin-bottom: 10rem; } -.hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.mb-44 { + margin-bottom: 11rem; } -.hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.mb-48 { + margin-bottom: 12rem; } -.hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.mb-52 { + margin-bottom: 13rem; } -.hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.mb-56 { + margin-bottom: 14rem; } -.hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.mb-60 { + margin-bottom: 15rem; } -.hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.mb-64 { + margin-bottom: 16rem; } -.hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.mb-72 { + margin-bottom: 18rem; } -.hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.mb-80 { + margin-bottom: 20rem; } -.hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.mb-96 { + margin-bottom: 24rem; } -.hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.mb-auto { + margin-bottom: auto; } -.hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.mb-px { + margin-bottom: 1px; } -.hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.mb-0\.5 { + margin-bottom: 0.125rem; } -.hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.mb-1\.5 { + margin-bottom: 0.375rem; } -.hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.mb-2\.5 { + margin-bottom: 0.625rem; } -.hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.mb-3\.5 { + margin-bottom: 0.875rem; } -.hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.-mb-0 { + margin-bottom: 0px; } -.hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.-mb-1 { + margin-bottom: -0.25rem; } -.hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.-mb-2 { + margin-bottom: -0.5rem; } -.hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.-mb-3 { + margin-bottom: -0.75rem; } -.hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.-mb-4 { + margin-bottom: -1rem; } -.hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.-mb-5 { + margin-bottom: -1.25rem; } -.hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.-mb-6 { + margin-bottom: -1.5rem; } -.hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.-mb-7 { + margin-bottom: -1.75rem; } -.hover\:to-transparent:hover { - --tw-gradient-to: transparent; +.-mb-8 { + margin-bottom: -2rem; } -.hover\:to-current:hover { - --tw-gradient-to: currentColor; +.-mb-9 { + margin-bottom: -2.25rem; } -.hover\:to-black:hover { - --tw-gradient-to: #000; +.-mb-10 { + margin-bottom: -2.5rem; } -.hover\:to-white:hover { - --tw-gradient-to: #fff; +.-mb-11 { + margin-bottom: -2.75rem; } -.hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; +.-mb-12 { + margin-bottom: -3rem; } -.hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; +.-mb-14 { + margin-bottom: -3.5rem; } -.hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; +.-mb-16 { + margin-bottom: -4rem; } -.hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; +.-mb-20 { + margin-bottom: -5rem; } -.hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; +.-mb-24 { + margin-bottom: -6rem; } -.hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; +.-mb-28 { + margin-bottom: -7rem; } -.hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; -} +.-mb-32 { + margin-bottom: -8rem; +} -.hover\:to-gray-700:hover { - --tw-gradient-to: #374151; +.-mb-36 { + margin-bottom: -9rem; } -.hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; +.-mb-40 { + margin-bottom: -10rem; } -.hover\:to-gray-900:hover { - --tw-gradient-to: #111827; +.-mb-44 { + margin-bottom: -11rem; } -.hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; +.-mb-48 { + margin-bottom: -12rem; } -.hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; +.-mb-52 { + margin-bottom: -13rem; } -.hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; +.-mb-56 { + margin-bottom: -14rem; } -.hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; +.-mb-60 { + margin-bottom: -15rem; } -.hover\:to-red-400:hover { - --tw-gradient-to: #f87171; +.-mb-64 { + margin-bottom: -16rem; } -.hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; +.-mb-72 { + margin-bottom: -18rem; } -.hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; +.-mb-80 { + margin-bottom: -20rem; } -.hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; +.-mb-96 { + margin-bottom: -24rem; } -.hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; +.-mb-px { + margin-bottom: -1px; } -.hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; +.-mb-0\.5 { + margin-bottom: -0.125rem; } -.hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; +.-mb-1\.5 { + margin-bottom: -0.375rem; } -.hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; +.-mb-2\.5 { + margin-bottom: -0.625rem; } -.hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; +.-mb-3\.5 { + margin-bottom: -0.875rem; } -.hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; +.ml-0 { + margin-left: 0px; } -.hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; +.ml-1 { + margin-left: 0.25rem; } -.hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; +.ml-2 { + margin-left: 0.5rem; } -.hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; +.ml-3 { + margin-left: 0.75rem; } -.hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; +.ml-4 { + margin-left: 1rem; } -.hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; +.ml-5 { + margin-left: 1.25rem; } -.hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; +.ml-6 { + margin-left: 1.5rem; } -.hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; +.ml-7 { + margin-left: 1.75rem; } -.hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; +.ml-8 { + margin-left: 2rem; } -.hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; +.ml-9 { + margin-left: 2.25rem; } -.hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; +.ml-10 { + margin-left: 2.5rem; } -.hover\:to-green-400:hover { - --tw-gradient-to: #34d399; +.ml-11 { + margin-left: 2.75rem; } -.hover\:to-green-500:hover { - --tw-gradient-to: #10b981; +.ml-12 { + margin-left: 3rem; } -.hover\:to-green-600:hover { - --tw-gradient-to: #059669; +.ml-14 { + margin-left: 3.5rem; } -.hover\:to-green-700:hover { - --tw-gradient-to: #047857; +.ml-16 { + margin-left: 4rem; } -.hover\:to-green-800:hover { - --tw-gradient-to: #065f46; +.ml-20 { + margin-left: 5rem; } -.hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; +.ml-24 { + margin-left: 6rem; } -.hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; +.ml-28 { + margin-left: 7rem; } -.hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; +.ml-32 { + margin-left: 8rem; } -.hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; +.ml-36 { + margin-left: 9rem; } -.hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; +.ml-40 { + margin-left: 10rem; } -.hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; +.ml-44 { + margin-left: 11rem; } -.hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; +.ml-48 { + margin-left: 12rem; } -.hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; +.ml-52 { + margin-left: 13rem; } -.hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; +.ml-56 { + margin-left: 14rem; } -.hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; +.ml-60 { + margin-left: 15rem; } -.hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; +.ml-64 { + margin-left: 16rem; } -.hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; +.ml-72 { + margin-left: 18rem; } -.hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; +.ml-80 { + margin-left: 20rem; } -.hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; +.ml-96 { + margin-left: 24rem; } -.hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; +.ml-auto { + margin-left: auto; } -.hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; +.ml-px { + margin-left: 1px; } -.hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; +.ml-0\.5 { + margin-left: 0.125rem; } -.hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; +.ml-1\.5 { + margin-left: 0.375rem; } -.hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; +.ml-2\.5 { + margin-left: 0.625rem; } -.hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; +.ml-3\.5 { + margin-left: 0.875rem; } -.hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; +.-ml-0 { + margin-left: 0px; } -.hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; +.-ml-1 { + margin-left: -0.25rem; } -.hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; +.-ml-2 { + margin-left: -0.5rem; } -.hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; +.-ml-3 { + margin-left: -0.75rem; } -.hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; +.-ml-4 { + margin-left: -1rem; } -.hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; +.-ml-5 { + margin-left: -1.25rem; } -.hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; +.-ml-6 { + margin-left: -1.5rem; } -.hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; +.-ml-7 { + margin-left: -1.75rem; } -.hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; +.-ml-8 { + margin-left: -2rem; } -.hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; +.-ml-9 { + margin-left: -2.25rem; } -.hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; +.-ml-10 { + margin-left: -2.5rem; } -.hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; +.-ml-11 { + margin-left: -2.75rem; } -.hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; +.-ml-12 { + margin-left: -3rem; } -.hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; +.-ml-14 { + margin-left: -3.5rem; } -.hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; +.-ml-16 { + margin-left: -4rem; } -.hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; +.-ml-20 { + margin-left: -5rem; } -.hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; +.-ml-24 { + margin-left: -6rem; } -.hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; +.-ml-28 { + margin-left: -7rem; } -.hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; +.-ml-32 { + margin-left: -8rem; } -.hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; +.-ml-36 { + margin-left: -9rem; } -.hover\:to-pink-900:hover { - --tw-gradient-to: #831843; +.-ml-40 { + margin-left: -10rem; } -.focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-ml-44 { + margin-left: -11rem; } -.focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-ml-48 { + margin-left: -12rem; } -.focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.-ml-52 { + margin-left: -13rem; } -.focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.-ml-56 { + margin-left: -14rem; } -.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)); +.-ml-60 { + margin-left: -15rem; } -.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)); +.-ml-64 { + margin-left: -16rem; } -.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)); +.-ml-72 { + margin-left: -18rem; } -.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)); +.-ml-80 { + margin-left: -20rem; } -.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)); +.-ml-96 { + margin-left: -24rem; } -.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)); +.-ml-px { + margin-left: -1px; } -.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)); +.-ml-0\.5 { + margin-left: -0.125rem; } -.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)); +.-ml-1\.5 { + margin-left: -0.375rem; } -.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)); +.-ml-2\.5 { + margin-left: -0.625rem; } -.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)); +.-ml-3\.5 { + margin-left: -0.875rem; } -.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)); +.box-border { + box-sizing: border-box; } -.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)); +.box-content { + box-sizing: content-box; } -.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)); +.block { + display: block; } -.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)); +.inline-block { + display: inline-block; } -.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)); +.inline { + display: inline; } -.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)); +.flex { + display: flex; } -.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)); +.inline-flex { + display: inline-flex; } -.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)); +.table { + display: table; } -.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)); +.inline-table { + display: inline-table; } -.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)); +.table-caption { + display: table-caption; } -.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)); +.table-cell { + display: table-cell; } -.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)); +.table-column { + display: table-column; } -.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)); +.table-column-group { + display: table-column-group; } -.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)); +.table-footer-group { + display: table-footer-group; } -.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)); +.table-header-group { + display: table-header-group; } -.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)); +.table-row-group { + display: table-row-group; } -.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)); +.table-row { + display: table-row; } -.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)); +.flow-root { + display: flow-root; } -.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)); +.grid { + display: grid; } -.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)); +.inline-grid { + display: inline-grid; } -.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)); +.contents { + display: contents; } -.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)); +.list-item { + display: list-item; } -.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)); +.hidden { + display: none; } -.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)); +.h-0 { + height: 0px; } -.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)); +.h-1 { + height: 0.25rem; } -.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)); +.h-2 { + height: 0.5rem; } -.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)); +.h-3 { + height: 0.75rem; } -.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)); +.h-4 { + height: 1rem; } -.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)); +.h-5 { + height: 1.25rem; } -.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)); +.h-6 { + height: 1.5rem; } -.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)); +.h-7 { + height: 1.75rem; } -.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)); +.h-8 { + height: 2rem; } -.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)); +.h-9 { + height: 2.25rem; } -.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)); +.h-10 { + height: 2.5rem; } -.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)); +.h-11 { + height: 2.75rem; } -.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)); +.h-12 { + height: 3rem; } -.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)); +.h-14 { + height: 3.5rem; } -.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)); +.h-16 { + height: 4rem; } -.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)); +.h-20 { + height: 5rem; } -.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)); +.h-24 { + height: 6rem; } -.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)); +.h-28 { + height: 7rem; } -.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)); +.h-32 { + height: 8rem; } -.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)); +.h-36 { + height: 9rem; } -.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)); +.h-40 { + height: 10rem; } -.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)); +.h-44 { + height: 11rem; } -.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)); +.h-48 { + height: 12rem; } -.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)); +.h-52 { + height: 13rem; } -.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)); +.h-56 { + height: 14rem; } -.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)); +.h-60 { + height: 15rem; } -.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)); +.h-64 { + height: 16rem; } -.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)); +.h-72 { + height: 18rem; } -.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)); +.h-80 { + height: 20rem; } -.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)); +.h-96 { + height: 24rem; } -.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)); +.h-auto { + height: auto; } -.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)); +.h-px { + height: 1px; } -.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)); +.h-0\.5 { + height: 0.125rem; } -.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)); +.h-1\.5 { + height: 0.375rem; } -.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)); +.h-2\.5 { + height: 0.625rem; } -.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)); +.h-3\.5 { + height: 0.875rem; } -.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)); +.h-1\/2 { + height: 50%; } -.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)); +.h-1\/3 { + height: 33.333333%; } -.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)); +.h-2\/3 { + height: 66.666667%; } -.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)); +.h-1\/4 { + height: 25%; } -.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)); +.h-2\/4 { + height: 50%; } -.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)); +.h-3\/4 { + height: 75%; } -.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)); +.h-1\/5 { + height: 20%; } -.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)); +.h-2\/5 { + height: 40%; } -.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)); +.h-3\/5 { + height: 60%; } -.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)); +.h-4\/5 { + height: 80%; } -.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)); +.h-1\/6 { + height: 16.666667%; } -.focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.h-2\/6 { + height: 33.333333%; } -.focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.h-3\/6 { + height: 50%; } -.focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.h-4\/6 { + height: 66.666667%; } -.focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.h-5\/6 { + height: 83.333333%; } -.focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.h-full { + height: 100%; } -.focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.h-screen { + height: 100vh; } -.focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.max-h-0 { + max-height: 0px; } -.focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.max-h-1 { + max-height: 0.25rem; } -.focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.max-h-2 { + max-height: 0.5rem; } -.focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.max-h-3 { + max-height: 0.75rem; } -.focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.max-h-4 { + max-height: 1rem; } -.focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.max-h-5 { + max-height: 1.25rem; } -.focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.max-h-6 { + max-height: 1.5rem; } -.focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.max-h-7 { + max-height: 1.75rem; } -.focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.max-h-8 { + max-height: 2rem; } -.focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.max-h-9 { + max-height: 2.25rem; } -.focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.max-h-10 { + max-height: 2.5rem; } -.focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.max-h-11 { + max-height: 2.75rem; } -.focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.max-h-12 { + max-height: 3rem; } -.focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.max-h-14 { + max-height: 3.5rem; } -.focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.max-h-16 { + max-height: 4rem; } -.focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.max-h-20 { + max-height: 5rem; } -.focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.max-h-24 { + max-height: 6rem; } -.focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.max-h-28 { + max-height: 7rem; } -.focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.max-h-32 { + max-height: 8rem; } -.focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.max-h-36 { + max-height: 9rem; } -.focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.max-h-40 { + max-height: 10rem; } -.focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.max-h-44 { + max-height: 11rem; } -.focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.max-h-48 { + max-height: 12rem; } -.focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.max-h-52 { + max-height: 13rem; } -.focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.max-h-56 { + max-height: 14rem; } -.focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.max-h-60 { + max-height: 15rem; } -.focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.max-h-64 { + max-height: 16rem; } -.focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.max-h-72 { + max-height: 18rem; } -.focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.max-h-80 { + max-height: 20rem; } -.focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.max-h-96 { + max-height: 24rem; } -.focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.max-h-px { + max-height: 1px; } -.focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.max-h-0\.5 { + max-height: 0.125rem; } -.focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.max-h-1\.5 { + max-height: 0.375rem; } -.focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.max-h-2\.5 { + max-height: 0.625rem; } -.focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.max-h-3\.5 { + max-height: 0.875rem; } -.focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.max-h-full { + max-height: 100%; } -.focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.max-h-screen { + max-height: 100vh; } -.focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.min-h-0 { + min-height: 0px; } -.focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.min-h-full { + min-height: 100%; } -.focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.min-h-screen { + min-height: 100vh; } -.focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.w-0 { + width: 0px; } -.focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.w-1 { + width: 0.25rem; } -.focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.w-2 { + width: 0.5rem; } -.focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.w-3 { + width: 0.75rem; } -.focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.w-4 { + width: 1rem; } -.focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.w-5 { + width: 1.25rem; } -.focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.w-6 { + width: 1.5rem; } -.focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.w-7 { + width: 1.75rem; } -.focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.w-8 { + width: 2rem; } -.focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.w-9 { + width: 2.25rem; } -.focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.w-10 { + width: 2.5rem; } -.focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.w-11 { + width: 2.75rem; } -.focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.w-12 { + width: 3rem; } -.focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.w-14 { + width: 3.5rem; } -.focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.w-16 { + width: 4rem; } -.focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.w-20 { + width: 5rem; } -.focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.w-24 { + width: 6rem; } -.focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.w-28 { + width: 7rem; } -.focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.w-32 { + width: 8rem; } -.focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.w-36 { + width: 9rem; } -.focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.w-40 { + width: 10rem; } -.focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.w-44 { + width: 11rem; } -.focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.w-48 { + width: 12rem; } -.focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.w-52 { + width: 13rem; } -.focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.w-56 { + width: 14rem; } -.focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.w-60 { + width: 15rem; } -.focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.w-64 { + width: 16rem; } -.focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.w-72 { + width: 18rem; } -.focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.w-80 { + width: 20rem; } -.focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.w-96 { + width: 24rem; } -.focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.w-auto { + width: auto; } -.focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.w-px { + width: 1px; } -.focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.w-0\.5 { + width: 0.125rem; } -.focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.w-1\.5 { + width: 0.375rem; } -.focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.w-2\.5 { + width: 0.625rem; } -.focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.w-3\.5 { + width: 0.875rem; } -.focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.w-1\/2 { + width: 50%; } -.focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.w-1\/3 { + width: 33.333333%; } -.focus\:to-transparent:focus { - --tw-gradient-to: transparent; +.w-2\/3 { + width: 66.666667%; } -.focus\:to-current:focus { - --tw-gradient-to: currentColor; +.w-1\/4 { + width: 25%; } -.focus\:to-black:focus { - --tw-gradient-to: #000; +.w-2\/4 { + width: 50%; } -.focus\:to-white:focus { - --tw-gradient-to: #fff; +.w-3\/4 { + width: 75%; } -.focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; +.w-1\/5 { + width: 20%; } -.focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; +.w-2\/5 { + width: 40%; } -.focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; +.w-3\/5 { + width: 60%; } -.focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; +.w-4\/5 { + width: 80%; } -.focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; +.w-1\/6 { + width: 16.666667%; } -.focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; +.w-2\/6 { + width: 33.333333%; } -.focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; +.w-3\/6 { + width: 50%; } -.focus\:to-gray-700:focus { - --tw-gradient-to: #374151; +.w-4\/6 { + width: 66.666667%; } -.focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; +.w-5\/6 { + width: 83.333333%; } -.focus\:to-gray-900:focus { - --tw-gradient-to: #111827; +.w-1\/12 { + width: 8.333333%; } -.focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; +.w-2\/12 { + width: 16.666667%; } -.focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; +.w-3\/12 { + width: 25%; } -.focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; +.w-4\/12 { + width: 33.333333%; } -.focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; +.w-5\/12 { + width: 41.666667%; } -.focus\:to-red-400:focus { - --tw-gradient-to: #f87171; +.w-6\/12 { + width: 50%; } -.focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; +.w-7\/12 { + width: 58.333333%; } -.focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; +.w-8\/12 { + width: 66.666667%; } -.focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; +.w-9\/12 { + width: 75%; } -.focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; +.w-10\/12 { + width: 83.333333%; } -.focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; +.w-11\/12 { + width: 91.666667%; } -.focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; +.w-full { + width: 100%; } -.focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; +.w-screen { + width: 100vw; } -.focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; +.w-min { + width: min-content; } -.focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; +.w-max { + width: max-content; } -.focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; +.min-w-0 { + min-width: 0px; } -.focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; +.min-w-full { + min-width: 100%; } -.focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; +.min-w-min { + min-width: min-content; } -.focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; +.min-w-max { + min-width: max-content; } -.focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; +.max-w-0 { + max-width: 0rem; } -.focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; +.max-w-none { + max-width: none; } -.focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; +.max-w-xs { + max-width: 20rem; } -.focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; +.max-w-sm { + max-width: 24rem; } -.focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; +.max-w-md { + max-width: 28rem; } -.focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; +.max-w-lg { + max-width: 32rem; } -.focus\:to-green-400:focus { - --tw-gradient-to: #34d399; +.max-w-xl { + max-width: 36rem; } -.focus\:to-green-500:focus { - --tw-gradient-to: #10b981; +.max-w-2xl { + max-width: 42rem; } -.focus\:to-green-600:focus { - --tw-gradient-to: #059669; +.max-w-3xl { + max-width: 48rem; } -.focus\:to-green-700:focus { - --tw-gradient-to: #047857; +.max-w-4xl { + max-width: 56rem; } -.focus\:to-green-800:focus { - --tw-gradient-to: #065f46; +.max-w-5xl { + max-width: 64rem; } -.focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; +.max-w-6xl { + max-width: 72rem; } -.focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; +.max-w-7xl { + max-width: 80rem; } -.focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; +.max-w-full { + max-width: 100%; } -.focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; +.max-w-min { + max-width: min-content; } -.focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; +.max-w-max { + max-width: max-content; } -.focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; +.max-w-prose { + max-width: 65ch; } -.focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; +.max-w-screen-sm { + max-width: 640px; } -.focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; +.max-w-screen-md { + max-width: 768px; } -.focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; +.max-w-screen-lg { + max-width: 1024px; } -.focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; +.max-w-screen-xl { + max-width: 1280px; } -.focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; +.max-w-screen-2xl { + max-width: 1536px; } -.focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; +.flex-1 { + flex: 1 1 0%; } -.focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; +.flex-auto { + flex: 1 1 auto; } -.focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; +.flex-initial { + flex: 0 1 auto; } -.focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; +.flex-none { + flex: none; } -.focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; +.flex-shrink-0 { + flex-shrink: 0; } -.focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; +.flex-shrink { + flex-shrink: 1; } -.focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; +.flex-grow-0 { + flex-grow: 0; } -.focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; +.flex-grow { + flex-grow: 1; } -.focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; +.table-auto { + table-layout: auto; } -.focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; +.table-fixed { + table-layout: fixed; } -.focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; +.border-collapse { + border-collapse: collapse; } -.focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; +.border-separate { + border-collapse: separate; } -.focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; +.transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } -.focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; +.transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } -.focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; +.transform-none { + transform: none; } -.focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; +.origin-center { + transform-origin: center; } -.focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; +.origin-top { + transform-origin: top; } -.focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; +.origin-top-right { + transform-origin: top right; } -.focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; +.origin-right { + transform-origin: right; } -.focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; +.origin-bottom-right { + transform-origin: bottom right; } -.focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; +.origin-bottom { + transform-origin: bottom; } -.focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; +.origin-bottom-left { + transform-origin: bottom left; } -.focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; +.origin-left { + transform-origin: left; } -.focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; +.origin-top-left { + transform-origin: top left; } -.focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; +.translate-x-0 { + --tw-translate-x: 0px; } -.focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; +.translate-x-1 { + --tw-translate-x: 0.25rem; } -.focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; +.translate-x-2 { + --tw-translate-x: 0.5rem; } -.focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; +.translate-x-3 { + --tw-translate-x: 0.75rem; } -.focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; +.translate-x-4 { + --tw-translate-x: 1rem; } -.focus\:to-pink-900:focus { - --tw-gradient-to: #831843; +.translate-x-5 { + --tw-translate-x: 1.25rem; } -.bg-opacity-0 { - --tw-bg-opacity: 0; +.translate-x-6 { + --tw-translate-x: 1.5rem; } -.bg-opacity-5 { - --tw-bg-opacity: 0.05; +.translate-x-7 { + --tw-translate-x: 1.75rem; } -.bg-opacity-10 { - --tw-bg-opacity: 0.1; +.translate-x-8 { + --tw-translate-x: 2rem; } -.bg-opacity-20 { - --tw-bg-opacity: 0.2; +.translate-x-9 { + --tw-translate-x: 2.25rem; } -.bg-opacity-25 { - --tw-bg-opacity: 0.25; +.translate-x-10 { + --tw-translate-x: 2.5rem; } -.bg-opacity-30 { - --tw-bg-opacity: 0.3; +.translate-x-11 { + --tw-translate-x: 2.75rem; } -.bg-opacity-40 { - --tw-bg-opacity: 0.4; +.translate-x-12 { + --tw-translate-x: 3rem; } -.bg-opacity-50 { - --tw-bg-opacity: 0.5; +.translate-x-14 { + --tw-translate-x: 3.5rem; } -.bg-opacity-60 { - --tw-bg-opacity: 0.6; +.translate-x-16 { + --tw-translate-x: 4rem; } -.bg-opacity-70 { - --tw-bg-opacity: 0.7; +.translate-x-20 { + --tw-translate-x: 5rem; } -.bg-opacity-75 { - --tw-bg-opacity: 0.75; +.translate-x-24 { + --tw-translate-x: 6rem; } -.bg-opacity-80 { - --tw-bg-opacity: 0.8; +.translate-x-28 { + --tw-translate-x: 7rem; } -.bg-opacity-90 { - --tw-bg-opacity: 0.9; +.translate-x-32 { + --tw-translate-x: 8rem; } -.bg-opacity-95 { - --tw-bg-opacity: 0.95; +.translate-x-36 { + --tw-translate-x: 9rem; } -.bg-opacity-100 { - --tw-bg-opacity: 1; +.translate-x-40 { + --tw-translate-x: 10rem; } -.group:hover .group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; +.translate-x-44 { + --tw-translate-x: 11rem; } -.group:hover .group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; +.translate-x-48 { + --tw-translate-x: 12rem; } -.group:hover .group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; +.translate-x-52 { + --tw-translate-x: 13rem; } -.group:hover .group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; +.translate-x-56 { + --tw-translate-x: 14rem; } -.group:hover .group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; +.translate-x-60 { + --tw-translate-x: 15rem; } -.group:hover .group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; +.translate-x-64 { + --tw-translate-x: 16rem; } -.group:hover .group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; +.translate-x-72 { + --tw-translate-x: 18rem; } -.group:hover .group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; +.translate-x-80 { + --tw-translate-x: 20rem; } -.group:hover .group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; +.translate-x-96 { + --tw-translate-x: 24rem; } -.group:hover .group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; +.translate-x-px { + --tw-translate-x: 1px; } -.group:hover .group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; +.translate-x-0\.5 { + --tw-translate-x: 0.125rem; } -.group:hover .group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; +.translate-x-1\.5 { + --tw-translate-x: 0.375rem; } -.group:hover .group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; +.translate-x-2\.5 { + --tw-translate-x: 0.625rem; } -.group:hover .group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; +.translate-x-3\.5 { + --tw-translate-x: 0.875rem; } -.group:hover .group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; +.-translate-x-0 { + --tw-translate-x: 0px; } -.focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; +.-translate-x-1 { + --tw-translate-x: -0.25rem; } -.focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; +.-translate-x-2 { + --tw-translate-x: -0.5rem; } -.focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; +.-translate-x-3 { + --tw-translate-x: -0.75rem; } -.focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; +.-translate-x-4 { + --tw-translate-x: -1rem; } -.focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; +.-translate-x-5 { + --tw-translate-x: -1.25rem; } -.focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; +.-translate-x-6 { + --tw-translate-x: -1.5rem; } -.focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; +.-translate-x-7 { + --tw-translate-x: -1.75rem; } -.focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; +.-translate-x-8 { + --tw-translate-x: -2rem; } -.focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; +.-translate-x-9 { + --tw-translate-x: -2.25rem; } -.focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; +.-translate-x-10 { + --tw-translate-x: -2.5rem; } -.focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; +.-translate-x-11 { + --tw-translate-x: -2.75rem; } -.focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; +.-translate-x-12 { + --tw-translate-x: -3rem; } -.focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; +.-translate-x-14 { + --tw-translate-x: -3.5rem; } -.focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; +.-translate-x-16 { + --tw-translate-x: -4rem; } -.focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; +.-translate-x-20 { + --tw-translate-x: -5rem; } -.hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; +.-translate-x-24 { + --tw-translate-x: -6rem; } -.hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; +.-translate-x-28 { + --tw-translate-x: -7rem; } -.hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; +.-translate-x-32 { + --tw-translate-x: -8rem; } -.hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; +.-translate-x-36 { + --tw-translate-x: -9rem; } -.hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; +.-translate-x-40 { + --tw-translate-x: -10rem; } -.hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; +.-translate-x-44 { + --tw-translate-x: -11rem; } -.hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; +.-translate-x-48 { + --tw-translate-x: -12rem; } -.hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; +.-translate-x-52 { + --tw-translate-x: -13rem; } -.hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; +.-translate-x-56 { + --tw-translate-x: -14rem; } -.hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; +.-translate-x-60 { + --tw-translate-x: -15rem; } -.hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; +.-translate-x-64 { + --tw-translate-x: -16rem; } -.hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; +.-translate-x-72 { + --tw-translate-x: -18rem; } -.hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; +.-translate-x-80 { + --tw-translate-x: -20rem; } -.hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; +.-translate-x-96 { + --tw-translate-x: -24rem; } -.hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; +.-translate-x-px { + --tw-translate-x: -1px; } -.focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; +.-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } -.focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; +.-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } -.focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; +.-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } -.focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; +.-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } -.focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; +.translate-x-1\/2 { + --tw-translate-x: 50%; } -.focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; +.translate-x-1\/3 { + --tw-translate-x: 33.333333%; } -.focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; +.translate-x-2\/3 { + --tw-translate-x: 66.666667%; } -.focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; +.translate-x-1\/4 { + --tw-translate-x: 25%; } -.focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; +.translate-x-2\/4 { + --tw-translate-x: 50%; } -.focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; +.translate-x-3\/4 { + --tw-translate-x: 75%; } -.focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; +.translate-x-full { + --tw-translate-x: 100%; } -.focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; +.-translate-x-1\/2 { + --tw-translate-x: -50%; } -.focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; +.-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } -.focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; +.-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } -.focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; +.-translate-x-1\/4 { + --tw-translate-x: -25%; } -.bg-bottom { - background-position: bottom; +.-translate-x-2\/4 { + --tw-translate-x: -50%; } -.bg-center { - background-position: center; +.-translate-x-3\/4 { + --tw-translate-x: -75%; } -.bg-left { - background-position: left; +.-translate-x-full { + --tw-translate-x: -100%; } -.bg-left-bottom { - background-position: left bottom; +.translate-y-0 { + --tw-translate-y: 0px; } -.bg-left-top { - background-position: left top; +.translate-y-1 { + --tw-translate-y: 0.25rem; } -.bg-right { - background-position: right; +.translate-y-2 { + --tw-translate-y: 0.5rem; } -.bg-right-bottom { - background-position: right bottom; +.translate-y-3 { + --tw-translate-y: 0.75rem; } -.bg-right-top { - background-position: right top; +.translate-y-4 { + --tw-translate-y: 1rem; } -.bg-top { - background-position: top; +.translate-y-5 { + --tw-translate-y: 1.25rem; } -.bg-repeat { - background-repeat: repeat; +.translate-y-6 { + --tw-translate-y: 1.5rem; } -.bg-no-repeat { - background-repeat: no-repeat; +.translate-y-7 { + --tw-translate-y: 1.75rem; } -.bg-repeat-x { - background-repeat: repeat-x; +.translate-y-8 { + --tw-translate-y: 2rem; } -.bg-repeat-y { - background-repeat: repeat-y; +.translate-y-9 { + --tw-translate-y: 2.25rem; } -.bg-repeat-round { - background-repeat: round; +.translate-y-10 { + --tw-translate-y: 2.5rem; } -.bg-repeat-space { - background-repeat: space; +.translate-y-11 { + --tw-translate-y: 2.75rem; } -.bg-auto { - background-size: auto; +.translate-y-12 { + --tw-translate-y: 3rem; } -.bg-cover { - background-size: cover; +.translate-y-14 { + --tw-translate-y: 3.5rem; } -.bg-contain { - background-size: contain; +.translate-y-16 { + --tw-translate-y: 4rem; } -.bg-origin-border { - background-origin: border-box; +.translate-y-20 { + --tw-translate-y: 5rem; } -.bg-origin-padding { - background-origin: padding-box; +.translate-y-24 { + --tw-translate-y: 6rem; } -.bg-origin-content { - background-origin: content-box; +.translate-y-28 { + --tw-translate-y: 7rem; } -.border-collapse { - border-collapse: collapse; +.translate-y-32 { + --tw-translate-y: 8rem; } -.border-separate { - border-collapse: separate; +.translate-y-36 { + --tw-translate-y: 9rem; } -.border-transparent { - border-color: transparent; +.translate-y-40 { + --tw-translate-y: 10rem; } -.border-current { - border-color: currentColor; +.translate-y-44 { + --tw-translate-y: 11rem; } -.border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +.translate-y-48 { + --tw-translate-y: 12rem; } -.border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +.translate-y-52 { + --tw-translate-y: 13rem; } -.border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +.translate-y-56 { + --tw-translate-y: 14rem; } -.border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +.translate-y-60 { + --tw-translate-y: 15rem; } -.border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +.translate-y-64 { + --tw-translate-y: 16rem; } -.border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +.translate-y-72 { + --tw-translate-y: 18rem; } -.border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +.translate-y-80 { + --tw-translate-y: 20rem; } -.border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +.translate-y-96 { + --tw-translate-y: 24rem; } -.border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +.translate-y-px { + --tw-translate-y: 1px; } -.border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +.translate-y-0\.5 { + --tw-translate-y: 0.125rem; } -.border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +.translate-y-1\.5 { + --tw-translate-y: 0.375rem; } -.border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +.translate-y-2\.5 { + --tw-translate-y: 0.625rem; } -.border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); +.translate-y-3\.5 { + --tw-translate-y: 0.875rem; } -.border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); +.-translate-y-0 { + --tw-translate-y: 0px; } -.border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); +.-translate-y-1 { + --tw-translate-y: -0.25rem; } -.border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); +.-translate-y-2 { + --tw-translate-y: -0.5rem; } -.border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); +.-translate-y-3 { + --tw-translate-y: -0.75rem; } -.border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); +.-translate-y-4 { + --tw-translate-y: -1rem; } -.border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); +.-translate-y-5 { + --tw-translate-y: -1.25rem; } -.border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); +.-translate-y-6 { + --tw-translate-y: -1.5rem; } -.border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); +.-translate-y-7 { + --tw-translate-y: -1.75rem; } -.border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); +.-translate-y-8 { + --tw-translate-y: -2rem; } -.border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); +.-translate-y-9 { + --tw-translate-y: -2.25rem; } -.border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); +.-translate-y-10 { + --tw-translate-y: -2.5rem; } -.border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); +.-translate-y-11 { + --tw-translate-y: -2.75rem; } -.border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); +.-translate-y-12 { + --tw-translate-y: -3rem; } -.border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); +.-translate-y-14 { + --tw-translate-y: -3.5rem; } -.border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +.-translate-y-16 { + --tw-translate-y: -4rem; } -.border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); +.-translate-y-20 { + --tw-translate-y: -5rem; } -.border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); +.-translate-y-24 { + --tw-translate-y: -6rem; } -.border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); +.-translate-y-28 { + --tw-translate-y: -7rem; } -.border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); +.-translate-y-32 { + --tw-translate-y: -8rem; } -.border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); +.-translate-y-36 { + --tw-translate-y: -9rem; } -.border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); +.-translate-y-40 { + --tw-translate-y: -10rem; } -.border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); +.-translate-y-44 { + --tw-translate-y: -11rem; } -.border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); +.-translate-y-48 { + --tw-translate-y: -12rem; } -.border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); +.-translate-y-52 { + --tw-translate-y: -13rem; } -.border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); +.-translate-y-56 { + --tw-translate-y: -14rem; } -.border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); +.-translate-y-60 { + --tw-translate-y: -15rem; } -.border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); +.-translate-y-64 { + --tw-translate-y: -16rem; } -.border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); +.-translate-y-72 { + --tw-translate-y: -18rem; } -.border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); +.-translate-y-80 { + --tw-translate-y: -20rem; } -.border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); +.-translate-y-96 { + --tw-translate-y: -24rem; } -.border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); +.-translate-y-px { + --tw-translate-y: -1px; } -.border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); +.-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } -.border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); +.-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } -.border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); +.-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } -.border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +.-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } -.border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); +.translate-y-1\/2 { + --tw-translate-y: 50%; } -.border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); +.translate-y-1\/3 { + --tw-translate-y: 33.333333%; } -.border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); +.translate-y-2\/3 { + --tw-translate-y: 66.666667%; } -.border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); +.translate-y-1\/4 { + --tw-translate-y: 25%; } -.border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); +.translate-y-2\/4 { + --tw-translate-y: 50%; } -.border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); +.translate-y-3\/4 { + --tw-translate-y: 75%; } -.border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); +.translate-y-full { + --tw-translate-y: 100%; } -.border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); +.-translate-y-1\/2 { + --tw-translate-y: -50%; } -.border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); +.-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } -.border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); +.-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } -.border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); +.-translate-y-1\/4 { + --tw-translate-y: -25%; } -.border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); +.-translate-y-2\/4 { + --tw-translate-y: -50%; } -.border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); +.-translate-y-3\/4 { + --tw-translate-y: -75%; } -.border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); +.-translate-y-full { + --tw-translate-y: -100%; } -.border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); +.hover\:translate-x-0:hover { + --tw-translate-x: 0px; } -.border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); +.hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } -.border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); +.hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } -.border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); +.hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } -.border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); +.hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } -.border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); +.hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } -.border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); +.hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } -.border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); +.hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } -.border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); +.hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } -.border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); +.hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } -.border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); +.hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } -.border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); +.hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } -.border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); +.hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } -.border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); +.hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } -.border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); +.hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } -.border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); +.hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } -.border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); +.hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } -.border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); +.hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } -.border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); +.hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } -.border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); +.hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } -.group:hover .group-hover\:border-transparent { - border-color: transparent; +.hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } -.group:hover .group-hover\:border-current { - border-color: currentColor; +.hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } -.group:hover .group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +.hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } -.group:hover .group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +.hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } -.group:hover .group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +.hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } -.group:hover .group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +.hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } -.group:hover .group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +.hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } -.group:hover .group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +.hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } -.group:hover .group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +.hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } -.group:hover .group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +.hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } -.group:hover .group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +.hover\:translate-x-px:hover { + --tw-translate-x: 1px; } -.group:hover .group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +.hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } -.group:hover .group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +.hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } -.group:hover .group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +.hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } -.group:hover .group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); +.hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } -.group:hover .group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); +.hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } -.group:hover .group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); +.hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } -.group:hover .group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); +.hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } -.group:hover .group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); +.hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } -.group:hover .group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); +.hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } -.group:hover .group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); +.hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } -.group:hover .group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); +.hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } -.group:hover .group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); +.hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } -.group:hover .group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); +.hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } -.group:hover .group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); +.hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } -.group:hover .group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); +.hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } -.group:hover .group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); +.hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } -.group:hover .group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); +.hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } -.group:hover .group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); +.hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } -.group:hover .group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +.hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } -.group:hover .group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); +.hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } -.group:hover .group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); +.hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } -.group:hover .group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); +.hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } -.group:hover .group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); +.hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } -.group:hover .group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); +.hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } -.group:hover .group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); +.hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } -.group:hover .group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); +.hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } -.group:hover .group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); +.hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } -.group:hover .group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); +.hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } -.group:hover .group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); +.hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } -.group:hover .group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); +.hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } -.group:hover .group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); +.hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } -.group:hover .group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); +.hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } -.group:hover .group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); +.hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } -.group:hover .group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); +.hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } -.group:hover .group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); +.hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } -.group:hover .group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); +.hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } -.group:hover .group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); +.hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } -.group:hover .group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); +.hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } -.group:hover .group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +.hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } -.group:hover .group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); +.hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } -.group:hover .group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); +.hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } -.group:hover .group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); +.hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } -.group:hover .group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); +.hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } -.group:hover .group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); +.hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } -.group:hover .group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); +.hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } -.group:hover .group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); +.hover\:translate-x-full:hover { + --tw-translate-x: 100%; } -.group:hover .group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); +.hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } -.group:hover .group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); +.hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } -.group:hover .group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); +.hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } -.group:hover .group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); +.hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } -.group:hover .group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); +.hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } -.group:hover .group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); +.hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } -.group:hover .group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); +.hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } -.group:hover .group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); +.hover\:translate-y-0:hover { + --tw-translate-y: 0px; } -.group:hover .group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); +.hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } -.group:hover .group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); +.hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } -.group:hover .group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); +.hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } -.group:hover .group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); +.hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } -.group:hover .group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); +.hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } -.group:hover .group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); +.hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } -.group:hover .group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); +.hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } -.group:hover .group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); +.hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } -.group:hover .group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); +.hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } -.group:hover .group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); +.hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } -.group:hover .group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); +.hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } -.group:hover .group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); +.hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } -.group:hover .group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); +.hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } -.group:hover .group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); +.hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } -.group:hover .group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); +.hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } -.group:hover .group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); +.hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } -.group:hover .group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); +.hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } -.group:hover .group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); +.hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } -.group:hover .group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); +.hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } -.focus-within\:border-transparent:focus-within { - border-color: transparent; +.hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } -.focus-within\:border-current:focus-within { - border-color: currentColor; +.hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } -.focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +.hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } -.focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +.hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } -.focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +.hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } -.focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +.hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } -.focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +.hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } -.focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +.hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } -.focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +.hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } -.focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +.hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } -.focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +.hover\:translate-y-px:hover { + --tw-translate-y: 1px; } -.focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +.hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } -.focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +.hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } -.focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +.hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } -.focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); +.hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } -.focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); +.hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } -.focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); +.hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } -.focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); +.hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } -.focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); +.hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } -.focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); +.hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } -.focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); +.hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } -.focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); +.hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } -.focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); +.hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } -.focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); +.hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } -.focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); +.hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } -.focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); +.hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } -.focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); +.hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } -.focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); +.hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } -.focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); +.hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } -.focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +.hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } -.focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); +.hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } -.focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); +.hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } -.focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); +.hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } -.focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); +.hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } -.focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); +.hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } -.focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); +.hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } -.focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); +.hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } -.focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); +.hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } -.focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); +.hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } -.focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); +.hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } -.focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); +.hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } -.focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); +.hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } -.focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); +.hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } -.focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); +.hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } -.focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); +.hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } -.focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); +.hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } -.focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); +.hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } -.focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); +.hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } -.focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); +.hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } -.focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +.hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } -.focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); +.hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } -.focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); +.hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } -.focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); +.hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } -.focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); +.hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } -.focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); +.hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } -.focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); +.hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } -.focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); +.hover\:translate-y-full:hover { + --tw-translate-y: 100%; } -.focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); +.hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } -.focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); +.hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } -.focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); +.hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } -.focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); +.hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } -.focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); +.hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } -.focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); +.hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } -.focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); +.hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } -.focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); +.focus\:translate-x-0:focus { + --tw-translate-x: 0px; } -.focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); +.focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } -.focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); +.focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } -.focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); +.focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } -.focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); +.focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } -.focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); +.focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } -.focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); +.focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } -.focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); +.focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } -.focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); +.focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } -.focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); +.focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } -.focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); +.focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } -.focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); +.focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } -.focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); +.focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } -.focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); +.focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } -.focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); +.focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } -.focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); +.focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } -.focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); +.focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } -.focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); +.focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } -.focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); +.focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } -.focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); +.focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } -.hover\:border-transparent:hover { - border-color: transparent; +.focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } -.hover\:border-current:hover { - border-color: currentColor; +.focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } -.hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +.focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } -.hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +.focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } -.hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +.focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } -.hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +.focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } -.hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +.focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } -.hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +.focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } -.hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +.focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } -.hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +.focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } -.hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +.focus\:translate-x-px:focus { + --tw-translate-x: 1px; } -.hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +.focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } -.hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +.focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } -.hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +.focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } -.hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); +.focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } -.hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); +.focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } -.hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); +.focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } -.hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); +.focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } -.hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); +.focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } -.hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); +.focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } -.hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); +.focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } -.hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); +.focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } -.hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); +.focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } -.hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); +.focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } -.hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); +.focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } -.hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); +.focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } -.hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); +.focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } -.hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); +.focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } -.hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); +.focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } -.hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +.focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } -.hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); +.focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } -.hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); +.focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } -.hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); +.focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } -.hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); +.focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } -.hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); +.focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } -.hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); +.focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } -.hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); +.focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } -.hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); +.focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } -.hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); +.focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } -.hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); +.focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } -.hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); +.focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } -.hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); +.focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } -.hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); +.focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } -.hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); +.focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } -.hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); +.focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } -.hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); +.focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } -.hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); +.focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } -.hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); +.focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } -.hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); +.focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } -.hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +.focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } -.hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); +.focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } -.hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); +.focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } -.hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); +.focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } -.hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); +.focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } -.hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); +.focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } -.hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); +.focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } -.hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); +.focus\:translate-x-full:focus { + --tw-translate-x: 100%; } -.hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); +.focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } -.hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); +.focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } -.hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); +.focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } -.hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); +.focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } -.hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); +.focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } -.hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); +.focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } -.hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); +.focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } -.hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); +.focus\:translate-y-0:focus { + --tw-translate-y: 0px; } -.hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); +.focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } -.hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); +.focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } -.hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); +.focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } -.hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); +.focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } -.hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); +.focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } -.hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); +.focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } -.hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); +.focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } -.hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); +.focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } -.hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); +.focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } -.hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); +.focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } -.hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); +.focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } -.hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); +.focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } -.hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); +.focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } -.hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); +.focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } -.hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); +.focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } -.hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); +.focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } -.hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); +.focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } -.hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); +.focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } -.hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); +.focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } -.focus\:border-transparent:focus { - border-color: transparent; +.focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } -.focus\:border-current:focus { - border-color: currentColor; +.focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } -.focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +.focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } -.focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +.focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } -.focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +.focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } -.focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +.focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } -.focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +.focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } -.focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +.focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } -.focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +.focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } -.focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +.focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } -.focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +.focus\:translate-y-px:focus { + --tw-translate-y: 1px; } -.focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +.focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } -.focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +.focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } -.focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +.focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } -.focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); +.focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } -.focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); +.focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } -.focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); +.focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } -.focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); +.focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } -.focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); +.focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } -.focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); +.focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } -.focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); +.focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } -.focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); +.focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } -.focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); +.focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } -.focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); +.focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } -.focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); +.focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } -.focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); +.focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } -.focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); +.focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } -.focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); +.focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } -.focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); +.focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } -.focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +.focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } -.focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); +.focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } -.focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); +.focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } -.focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); +.focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } -.focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); +.focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } -.focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); +.focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } -.focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); +.focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } -.focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); +.focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } -.focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); +.focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } -.focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); +.focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } -.focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); +.focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } -.focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); +.focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } -.focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); +.focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } -.focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); +.focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } -.focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); +.focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } -.focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); +.focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } -.focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); +.focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } -.focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); +.focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } -.focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); +.focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } -.focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); +.focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } -.focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +.focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } -.focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); +.focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } -.focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); +.focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } -.focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); +.focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } -.focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); +.focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } -.focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); +.focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } -.focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); +.focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } -.focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); +.focus\:translate-y-full:focus { + --tw-translate-y: 100%; } -.focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); +.focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } -.focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); +.focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } -.focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); +.focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } -.focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); +.focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } -.focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); +.focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } -.focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); +.focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } -.focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); +.focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } -.focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); +.rotate-0 { + --tw-rotate: 0deg; } -.focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); +.rotate-1 { + --tw-rotate: 1deg; } -.focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); +.rotate-2 { + --tw-rotate: 2deg; } -.focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); +.rotate-3 { + --tw-rotate: 3deg; } -.focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); +.rotate-6 { + --tw-rotate: 6deg; } -.focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); +.rotate-12 { + --tw-rotate: 12deg; } -.focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); +.rotate-45 { + --tw-rotate: 45deg; } -.focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); +.rotate-90 { + --tw-rotate: 90deg; } -.focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); +.rotate-180 { + --tw-rotate: 180deg; } -.focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); +.-rotate-180 { + --tw-rotate: -180deg; } -.focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); +.-rotate-90 { + --tw-rotate: -90deg; } -.focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); +.-rotate-45 { + --tw-rotate: -45deg; } -.focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); +.-rotate-12 { + --tw-rotate: -12deg; } -.focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); +.-rotate-6 { + --tw-rotate: -6deg; } -.focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); +.-rotate-3 { + --tw-rotate: -3deg; } -.focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); +.-rotate-2 { + --tw-rotate: -2deg; } -.focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); +.-rotate-1 { + --tw-rotate: -1deg; } -.focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); +.hover\:rotate-0:hover { + --tw-rotate: 0deg; } -.focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); +.hover\:rotate-1:hover { + --tw-rotate: 1deg; } -.focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); +.hover\:rotate-2:hover { + --tw-rotate: 2deg; } -.border-opacity-0 { - --tw-border-opacity: 0; +.hover\:rotate-3:hover { + --tw-rotate: 3deg; } -.border-opacity-5 { - --tw-border-opacity: 0.05; +.hover\:rotate-6:hover { + --tw-rotate: 6deg; } -.border-opacity-10 { - --tw-border-opacity: 0.1; +.hover\:rotate-12:hover { + --tw-rotate: 12deg; } -.border-opacity-20 { - --tw-border-opacity: 0.2; +.hover\:rotate-45:hover { + --tw-rotate: 45deg; } -.border-opacity-25 { - --tw-border-opacity: 0.25; +.hover\:rotate-90:hover { + --tw-rotate: 90deg; } -.border-opacity-30 { - --tw-border-opacity: 0.3; +.hover\:rotate-180:hover { + --tw-rotate: 180deg; } -.border-opacity-40 { - --tw-border-opacity: 0.4; +.hover\:-rotate-180:hover { + --tw-rotate: -180deg; } -.border-opacity-50 { - --tw-border-opacity: 0.5; +.hover\:-rotate-90:hover { + --tw-rotate: -90deg; } -.border-opacity-60 { - --tw-border-opacity: 0.6; +.hover\:-rotate-45:hover { + --tw-rotate: -45deg; } -.border-opacity-70 { - --tw-border-opacity: 0.7; +.hover\:-rotate-12:hover { + --tw-rotate: -12deg; } -.border-opacity-75 { - --tw-border-opacity: 0.75; +.hover\:-rotate-6:hover { + --tw-rotate: -6deg; } -.border-opacity-80 { - --tw-border-opacity: 0.8; +.hover\:-rotate-3:hover { + --tw-rotate: -3deg; } -.border-opacity-90 { - --tw-border-opacity: 0.9; +.hover\:-rotate-2:hover { + --tw-rotate: -2deg; } -.border-opacity-95 { - --tw-border-opacity: 0.95; +.hover\:-rotate-1:hover { + --tw-rotate: -1deg; } -.border-opacity-100 { - --tw-border-opacity: 1; +.focus\:rotate-0:focus { + --tw-rotate: 0deg; } -.group:hover .group-hover\:border-opacity-0 { - --tw-border-opacity: 0; +.focus\:rotate-1:focus { + --tw-rotate: 1deg; } -.group:hover .group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; +.focus\:rotate-2:focus { + --tw-rotate: 2deg; } -.group:hover .group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; +.focus\:rotate-3:focus { + --tw-rotate: 3deg; } -.group:hover .group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; +.focus\:rotate-6:focus { + --tw-rotate: 6deg; } -.group:hover .group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; +.focus\:rotate-12:focus { + --tw-rotate: 12deg; } -.group:hover .group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; +.focus\:rotate-45:focus { + --tw-rotate: 45deg; } -.group:hover .group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; +.focus\:rotate-90:focus { + --tw-rotate: 90deg; } -.group:hover .group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; +.focus\:rotate-180:focus { + --tw-rotate: 180deg; } -.group:hover .group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; +.focus\:-rotate-180:focus { + --tw-rotate: -180deg; } -.group:hover .group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; +.focus\:-rotate-90:focus { + --tw-rotate: -90deg; } -.group:hover .group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; +.focus\:-rotate-45:focus { + --tw-rotate: -45deg; } -.group:hover .group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; +.focus\:-rotate-12:focus { + --tw-rotate: -12deg; } -.group:hover .group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; +.focus\:-rotate-6:focus { + --tw-rotate: -6deg; } -.group:hover .group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; +.focus\:-rotate-3:focus { + --tw-rotate: -3deg; } -.group:hover .group-hover\:border-opacity-100 { - --tw-border-opacity: 1; +.focus\:-rotate-2:focus { + --tw-rotate: -2deg; } -.focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; +.focus\:-rotate-1:focus { + --tw-rotate: -1deg; } -.focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; +.skew-x-0 { + --tw-skew-x: 0deg; } -.focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; +.skew-x-1 { + --tw-skew-x: 1deg; } -.focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; +.skew-x-2 { + --tw-skew-x: 2deg; } -.focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; +.skew-x-3 { + --tw-skew-x: 3deg; } -.focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; +.skew-x-6 { + --tw-skew-x: 6deg; } -.focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; +.skew-x-12 { + --tw-skew-x: 12deg; } -.focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; +.-skew-x-12 { + --tw-skew-x: -12deg; } -.focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; +.-skew-x-6 { + --tw-skew-x: -6deg; } -.focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; +.-skew-x-3 { + --tw-skew-x: -3deg; } -.focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; +.-skew-x-2 { + --tw-skew-x: -2deg; } -.focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; +.-skew-x-1 { + --tw-skew-x: -1deg; } -.focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; +.skew-y-0 { + --tw-skew-y: 0deg; } -.focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; +.skew-y-1 { + --tw-skew-y: 1deg; } -.focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; +.skew-y-2 { + --tw-skew-y: 2deg; } -.hover\:border-opacity-0:hover { - --tw-border-opacity: 0; +.skew-y-3 { + --tw-skew-y: 3deg; } -.hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; +.skew-y-6 { + --tw-skew-y: 6deg; } -.hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; +.skew-y-12 { + --tw-skew-y: 12deg; } -.hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; +.-skew-y-12 { + --tw-skew-y: -12deg; } -.hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; +.-skew-y-6 { + --tw-skew-y: -6deg; } -.hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; +.-skew-y-3 { + --tw-skew-y: -3deg; } -.hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; +.-skew-y-2 { + --tw-skew-y: -2deg; } -.hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; +.-skew-y-1 { + --tw-skew-y: -1deg; } -.hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; +.hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } -.hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; +.hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } -.hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; +.hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } -.hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; +.hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } -.hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; +.hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } -.hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; +.hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } -.hover\:border-opacity-100:hover { - --tw-border-opacity: 1; +.hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } -.focus\:border-opacity-0:focus { - --tw-border-opacity: 0; +.hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } -.focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; +.hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } -.focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; +.hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } -.focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; +.hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } -.focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; +.hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } -.focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; +.hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } -.focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; +.hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } -.focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; +.hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } -.focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; +.hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } -.focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; +.hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } -.focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; +.hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } -.focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; +.hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } -.focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; +.hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } -.focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; +.hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } -.focus\:border-opacity-100:focus { - --tw-border-opacity: 1; +.hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } -.rounded-none { - border-radius: 0px; +.focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } -.rounded-sm { - border-radius: 0.125rem; +.focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } -.rounded { - border-radius: 0.25rem; +.focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } -.rounded-md { - border-radius: 0.375rem; +.focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } -.rounded-lg { - border-radius: 0.5rem; +.focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } -.rounded-xl { - border-radius: 0.75rem; +.focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } -.rounded-2xl { - border-radius: 1rem; +.focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } -.rounded-3xl { - border-radius: 1.5rem; +.focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } -.rounded-full { - border-radius: 9999px; +.focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } -.rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; +.focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } -.rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; +.focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } -.rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; +.focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } -.rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; +.focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } -.rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; +.focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } -.rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; +.focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } -.rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; +.focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } -.rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; +.focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } -.rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; +.focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } -.rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; +.focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } -.rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; +.focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } -.rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; +.focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } -.rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; +.focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } -.rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; +.scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } -.rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; +.scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } -.rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; +.scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } -.rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; +.scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } -.rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; +.scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } -.rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; +.scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } -.rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; +.scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; +.scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; +.scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; +.scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; +.scale-x-0 { + --tw-scale-x: 0; } -.rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; +.scale-x-50 { + --tw-scale-x: .5; } -.rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; +.scale-x-75 { + --tw-scale-x: .75; } -.rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; +.scale-x-90 { + --tw-scale-x: .9; } -.rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; +.scale-x-95 { + --tw-scale-x: .95; } -.rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; +.scale-x-100 { + --tw-scale-x: 1; } -.rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; +.scale-x-105 { + --tw-scale-x: 1.05; } -.rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; +.scale-x-110 { + --tw-scale-x: 1.1; } -.rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; +.scale-x-125 { + --tw-scale-x: 1.25; } -.rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; +.scale-x-150 { + --tw-scale-x: 1.5; } -.rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; +.scale-y-0 { + --tw-scale-y: 0; } -.rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; +.scale-y-50 { + --tw-scale-y: .5; } -.rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; +.scale-y-75 { + --tw-scale-y: .75; } -.rounded-tl-none { - border-top-left-radius: 0px; +.scale-y-90 { + --tw-scale-y: .9; } -.rounded-tr-none { - border-top-right-radius: 0px; +.scale-y-95 { + --tw-scale-y: .95; } -.rounded-br-none { - border-bottom-right-radius: 0px; +.scale-y-100 { + --tw-scale-y: 1; } -.rounded-bl-none { - border-bottom-left-radius: 0px; +.scale-y-105 { + --tw-scale-y: 1.05; } -.rounded-tl-sm { - border-top-left-radius: 0.125rem; +.scale-y-110 { + --tw-scale-y: 1.1; } -.rounded-tr-sm { - border-top-right-radius: 0.125rem; +.scale-y-125 { + --tw-scale-y: 1.25; } -.rounded-br-sm { - border-bottom-right-radius: 0.125rem; +.scale-y-150 { + --tw-scale-y: 1.5; } -.rounded-bl-sm { - border-bottom-left-radius: 0.125rem; +.hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } -.rounded-tl { - border-top-left-radius: 0.25rem; +.hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } -.rounded-tr { - border-top-right-radius: 0.25rem; +.hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } -.rounded-br { - border-bottom-right-radius: 0.25rem; +.hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } -.rounded-bl { - border-bottom-left-radius: 0.25rem; +.hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } -.rounded-tl-md { - border-top-left-radius: 0.375rem; +.hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } -.rounded-tr-md { - border-top-right-radius: 0.375rem; +.hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.rounded-br-md { - border-bottom-right-radius: 0.375rem; +.hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.rounded-bl-md { - border-bottom-left-radius: 0.375rem; +.hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.rounded-tl-lg { - border-top-left-radius: 0.5rem; +.hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.rounded-tr-lg { - border-top-right-radius: 0.5rem; +.hover\:scale-x-0:hover { + --tw-scale-x: 0; } -.rounded-br-lg { - border-bottom-right-radius: 0.5rem; +.hover\:scale-x-50:hover { + --tw-scale-x: .5; } -.rounded-bl-lg { - border-bottom-left-radius: 0.5rem; +.hover\:scale-x-75:hover { + --tw-scale-x: .75; } -.rounded-tl-xl { - border-top-left-radius: 0.75rem; +.hover\:scale-x-90:hover { + --tw-scale-x: .9; } -.rounded-tr-xl { - border-top-right-radius: 0.75rem; +.hover\:scale-x-95:hover { + --tw-scale-x: .95; } -.rounded-br-xl { - border-bottom-right-radius: 0.75rem; +.hover\:scale-x-100:hover { + --tw-scale-x: 1; } -.rounded-bl-xl { - border-bottom-left-radius: 0.75rem; +.hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } -.rounded-tl-2xl { - border-top-left-radius: 1rem; +.hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } -.rounded-tr-2xl { - border-top-right-radius: 1rem; +.hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } -.rounded-br-2xl { - border-bottom-right-radius: 1rem; +.hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } -.rounded-bl-2xl { - border-bottom-left-radius: 1rem; +.hover\:scale-y-0:hover { + --tw-scale-y: 0; } -.rounded-tl-3xl { - border-top-left-radius: 1.5rem; +.hover\:scale-y-50:hover { + --tw-scale-y: .5; } -.rounded-tr-3xl { - border-top-right-radius: 1.5rem; +.hover\:scale-y-75:hover { + --tw-scale-y: .75; } -.rounded-br-3xl { - border-bottom-right-radius: 1.5rem; +.hover\:scale-y-90:hover { + --tw-scale-y: .9; } -.rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; +.hover\:scale-y-95:hover { + --tw-scale-y: .95; } -.rounded-tl-full { - border-top-left-radius: 9999px; +.hover\:scale-y-100:hover { + --tw-scale-y: 1; } -.rounded-tr-full { - border-top-right-radius: 9999px; +.hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } -.rounded-br-full { - border-bottom-right-radius: 9999px; +.hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } -.rounded-bl-full { - border-bottom-left-radius: 9999px; +.hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } -.border-solid { - border-style: solid; +.hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } -.border-dashed { - border-style: dashed; +.focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } -.border-dotted { - border-style: dotted; +.focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } -.border-double { - border-style: double; +.focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } -.border-none { - border-style: none; +.focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } -.border-0 { - border-width: 0px; +.focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } -.border-2 { - border-width: 2px; +.focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } -.border-4 { - border-width: 4px; +.focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.border-8 { - border-width: 8px; +.focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.border { - border-width: 1px; +.focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.border-t-0 { - border-top-width: 0px; +.focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.border-r-0 { - border-right-width: 0px; +.focus\:scale-x-0:focus { + --tw-scale-x: 0; } -.border-b-0 { - border-bottom-width: 0px; +.focus\:scale-x-50:focus { + --tw-scale-x: .5; } -.border-l-0 { - border-left-width: 0px; +.focus\:scale-x-75:focus { + --tw-scale-x: .75; } -.border-t-2 { - border-top-width: 2px; +.focus\:scale-x-90:focus { + --tw-scale-x: .9; } -.border-r-2 { - border-right-width: 2px; +.focus\:scale-x-95:focus { + --tw-scale-x: .95; } -.border-b-2 { - border-bottom-width: 2px; +.focus\:scale-x-100:focus { + --tw-scale-x: 1; } -.border-l-2 { - border-left-width: 2px; +.focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } -.border-t-4 { - border-top-width: 4px; +.focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } -.border-r-4 { - border-right-width: 4px; +.focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } -.border-b-4 { - border-bottom-width: 4px; +.focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } -.border-l-4 { - border-left-width: 4px; +.focus\:scale-y-0:focus { + --tw-scale-y: 0; } -.border-t-8 { - border-top-width: 8px; +.focus\:scale-y-50:focus { + --tw-scale-y: .5; } -.border-r-8 { - border-right-width: 8px; +.focus\:scale-y-75:focus { + --tw-scale-y: .75; } -.border-b-8 { - border-bottom-width: 8px; +.focus\:scale-y-90:focus { + --tw-scale-y: .9; } -.border-l-8 { - border-left-width: 8px; +.focus\:scale-y-95:focus { + --tw-scale-y: .95; } -.border-t { - border-top-width: 1px; +.focus\:scale-y-100:focus { + --tw-scale-y: 1; } -.border-r { - border-right-width: 1px; +.focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } -.border-b { - border-bottom-width: 1px; +.focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } -.border-l { - border-left-width: 1px; +.focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } -.decoration-slice { - box-decoration-break: slice; +.focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } -.decoration-clone { - box-decoration-break: clone; +@keyframes spin { + to { + transform: rotate(360deg); + } } -.box-border { - box-sizing: border-box; +@keyframes ping { + 75%, 100% { + transform: scale(2); + opacity: 0; + } } -.box-content { - box-sizing: content-box; +@keyframes pulse { + 50% { + opacity: .5; + } +} + +@keyframes bounce { + 0%, 100% { + transform: translateY(-25%); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50% { + transform: none; + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} + +.animate-none { + animation: none; +} + +.animate-spin { + animation: spin 1s linear infinite; +} + +.animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; +} + +.animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; +} + +.animate-bounce { + animation: bounce 1s infinite; } .cursor-auto { @@ -10800,88 +9956,188 @@ video { cursor: not-allowed; } -.block { - display: block; +.select-none { + user-select: none; } -.inline-block { - display: inline-block; +.select-text { + user-select: text; } -.inline { - display: inline; +.select-all { + user-select: all; } -.flex { - display: flex; +.select-auto { + user-select: auto; } -.inline-flex { - display: inline-flex; +.resize-none { + resize: none; } -.table { - display: table; +.resize-y { + resize: vertical; } -.inline-table { - display: inline-table; +.resize-x { + resize: horizontal; } -.table-caption { - display: table-caption; +.resize { + resize: both; } -.table-cell { - display: table-cell; +.list-inside { + list-style-position: inside; } -.table-column { - display: table-column; +.list-outside { + list-style-position: outside; } -.table-column-group { - display: table-column-group; +.list-none { + list-style-type: none; } -.table-footer-group { - display: table-footer-group; +.list-disc { + list-style-type: disc; } -.table-header-group { - display: table-header-group; +.list-decimal { + list-style-type: decimal; } -.table-row-group { - display: table-row-group; +.appearance-none { + appearance: none; } -.table-row { - display: table-row; +.auto-cols-auto { + grid-auto-columns: auto; } -.flow-root { - display: flow-root; +.auto-cols-min { + grid-auto-columns: min-content; } -.grid { - display: grid; +.auto-cols-max { + grid-auto-columns: max-content; } -.inline-grid { - display: inline-grid; +.auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } -.contents { - display: contents; +.grid-flow-row { + grid-auto-flow: row; } -.list-item { - display: list-item; +.grid-flow-col { + grid-auto-flow: column; } -.hidden { - display: none; +.grid-flow-row-dense { + grid-auto-flow: row dense; +} + +.grid-flow-col-dense { + grid-auto-flow: column dense; +} + +.auto-rows-auto { + grid-auto-rows: auto; +} + +.auto-rows-min { + grid-auto-rows: min-content; +} + +.auto-rows-max { + grid-auto-rows: max-content; +} + +.auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); +} + +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); +} + +.grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); +} + +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); +} + +.grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); +} + +.grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); +} + +.grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); +} + +.grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); +} + +.grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); +} + +.grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); +} + +.grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); +} + +.grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); +} + +.grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); +} + +.grid-cols-none { + grid-template-columns: none; +} + +.grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); +} + +.grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); +} + +.grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); +} + +.grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); +} + +.grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); +} + +.grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); +} + +.grid-rows-none { + grid-template-rows: none; } .flex-row { @@ -10912,22 +10168,6 @@ video { flex-wrap: nowrap; } -.place-items-start { - place-items: start; -} - -.place-items-end { - place-items: end; -} - -.place-items-center { - place-items: center; -} - -.place-items-stretch { - place-items: stretch; -} - .place-content-center { place-content: center; } @@ -10956,44 +10196,20 @@ video { place-content: stretch; } -.place-self-auto { - place-self: auto; -} - -.place-self-start { - place-self: start; -} - -.place-self-end { - place-self: end; -} - -.place-self-center { - place-self: center; -} - -.place-self-stretch { - place-self: stretch; -} - -.items-start { - align-items: flex-start; -} - -.items-end { - align-items: flex-end; +.place-items-start { + place-items: start; } -.items-center { - align-items: center; +.place-items-end { + place-items: end; } -.items-baseline { - align-items: baseline; +.place-items-center { + place-items: center; } -.items-stretch { - align-items: stretch; +.place-items-stretch { + place-items: stretch; } .content-center { @@ -11020,40 +10236,24 @@ video { align-content: space-evenly; } -.self-auto { - align-self: auto; -} - -.self-start { - align-self: flex-start; -} - -.self-end { - align-self: flex-end; -} - -.self-center { - align-self: center; -} - -.self-stretch { - align-self: stretch; +.items-start { + align-items: flex-start; } -.justify-items-start { - justify-items: start; +.items-end { + align-items: flex-end; } -.justify-items-end { - justify-items: end; +.items-center { + align-items: center; } -.justify-items-center { - justify-items: center; +.items-baseline { + align-items: baseline; } -.justify-items-stretch { - justify-items: stretch; +.items-stretch { + align-items: stretch; } .justify-start { @@ -11080,11142 +10280,11863 @@ video { justify-content: space-evenly; } -.justify-self-auto { - justify-self: auto; +.justify-items-start { + justify-items: start; } -.justify-self-start { - justify-self: start; +.justify-items-end { + justify-items: end; } -.justify-self-end { - justify-self: end; +.justify-items-center { + justify-items: center; } -.justify-self-center { - justify-self: center; +.justify-items-stretch { + justify-items: stretch; } -.justify-self-stretch { - justify-self: stretch; +.gap-0 { + gap: 0px; } -.flex-1 { - flex: 1 1 0%; +.gap-1 { + gap: 0.25rem; } -.flex-auto { - flex: 1 1 auto; +.gap-2 { + gap: 0.5rem; } -.flex-initial { - flex: 0 1 auto; +.gap-3 { + gap: 0.75rem; } -.flex-none { - flex: none; +.gap-4 { + gap: 1rem; } -.flex-grow-0 { - flex-grow: 0; +.gap-5 { + gap: 1.25rem; } -.flex-grow { - flex-grow: 1; +.gap-6 { + gap: 1.5rem; } -.flex-shrink-0 { - flex-shrink: 0; +.gap-7 { + gap: 1.75rem; } -.flex-shrink { - flex-shrink: 1; +.gap-8 { + gap: 2rem; } -.order-1 { - order: 1; +.gap-9 { + gap: 2.25rem; } -.order-2 { - order: 2; +.gap-10 { + gap: 2.5rem; } -.order-3 { - order: 3; +.gap-11 { + gap: 2.75rem; } -.order-4 { - order: 4; +.gap-12 { + gap: 3rem; } -.order-5 { - order: 5; +.gap-14 { + gap: 3.5rem; } -.order-6 { - order: 6; +.gap-16 { + gap: 4rem; } -.order-7 { - order: 7; +.gap-20 { + gap: 5rem; } -.order-8 { - order: 8; +.gap-24 { + gap: 6rem; } -.order-9 { - order: 9; +.gap-28 { + gap: 7rem; } -.order-10 { - order: 10; +.gap-32 { + gap: 8rem; } -.order-11 { - order: 11; +.gap-36 { + gap: 9rem; } -.order-12 { - order: 12; +.gap-40 { + gap: 10rem; } -.order-first { - order: -9999; +.gap-44 { + gap: 11rem; } -.order-last { - order: 9999; +.gap-48 { + gap: 12rem; } -.order-none { - order: 0; +.gap-52 { + gap: 13rem; } -.float-right { - float: right; +.gap-56 { + gap: 14rem; } -.float-left { - float: left; +.gap-60 { + gap: 15rem; } -.float-none { - float: none; +.gap-64 { + gap: 16rem; } -.clear-left { - clear: left; +.gap-72 { + gap: 18rem; } -.clear-right { - clear: right; +.gap-80 { + gap: 20rem; } -.clear-both { - clear: both; +.gap-96 { + gap: 24rem; } -.clear-none { - clear: none; +.gap-px { + gap: 1px; } -.font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +.gap-0\.5 { + gap: 0.125rem; } -.font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; +.gap-1\.5 { + gap: 0.375rem; } -.font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +.gap-2\.5 { + gap: 0.625rem; } -.font-thin { - font-weight: 100; +.gap-3\.5 { + gap: 0.875rem; } -.font-extralight { - font-weight: 200; +.gap-x-0 { + column-gap: 0px; } -.font-light { - font-weight: 300; +.gap-x-1 { + column-gap: 0.25rem; } -.font-normal { - font-weight: 400; +.gap-x-2 { + column-gap: 0.5rem; } -.font-medium { - font-weight: 500; +.gap-x-3 { + column-gap: 0.75rem; } -.font-semibold { - font-weight: 600; +.gap-x-4 { + column-gap: 1rem; } -.font-bold { - font-weight: 700; +.gap-x-5 { + column-gap: 1.25rem; } -.font-extrabold { - font-weight: 800; +.gap-x-6 { + column-gap: 1.5rem; } -.font-black { - font-weight: 900; +.gap-x-7 { + column-gap: 1.75rem; } -.h-0 { - height: 0px; +.gap-x-8 { + column-gap: 2rem; } -.h-1 { - height: 0.25rem; +.gap-x-9 { + column-gap: 2.25rem; } -.h-2 { - height: 0.5rem; +.gap-x-10 { + column-gap: 2.5rem; } -.h-3 { - height: 0.75rem; +.gap-x-11 { + column-gap: 2.75rem; } -.h-4 { - height: 1rem; +.gap-x-12 { + column-gap: 3rem; } -.h-5 { - height: 1.25rem; +.gap-x-14 { + column-gap: 3.5rem; } -.h-6 { - height: 1.5rem; +.gap-x-16 { + column-gap: 4rem; } -.h-7 { - height: 1.75rem; +.gap-x-20 { + column-gap: 5rem; } -.h-8 { - height: 2rem; +.gap-x-24 { + column-gap: 6rem; } -.h-9 { - height: 2.25rem; +.gap-x-28 { + column-gap: 7rem; } -.h-10 { - height: 2.5rem; +.gap-x-32 { + column-gap: 8rem; } -.h-11 { - height: 2.75rem; +.gap-x-36 { + column-gap: 9rem; } -.h-12 { - height: 3rem; +.gap-x-40 { + column-gap: 10rem; } -.h-14 { - height: 3.5rem; +.gap-x-44 { + column-gap: 11rem; } -.h-16 { - height: 4rem; +.gap-x-48 { + column-gap: 12rem; } -.h-20 { - height: 5rem; +.gap-x-52 { + column-gap: 13rem; } -.h-24 { - height: 6rem; +.gap-x-56 { + column-gap: 14rem; } -.h-28 { - height: 7rem; +.gap-x-60 { + column-gap: 15rem; } -.h-32 { - height: 8rem; +.gap-x-64 { + column-gap: 16rem; } -.h-36 { - height: 9rem; +.gap-x-72 { + column-gap: 18rem; } -.h-40 { - height: 10rem; +.gap-x-80 { + column-gap: 20rem; } -.h-44 { - height: 11rem; +.gap-x-96 { + column-gap: 24rem; } -.h-48 { - height: 12rem; +.gap-x-px { + column-gap: 1px; } -.h-52 { - height: 13rem; +.gap-x-0\.5 { + column-gap: 0.125rem; } -.h-56 { - height: 14rem; +.gap-x-1\.5 { + column-gap: 0.375rem; } -.h-60 { - height: 15rem; +.gap-x-2\.5 { + column-gap: 0.625rem; } -.h-64 { - height: 16rem; +.gap-x-3\.5 { + column-gap: 0.875rem; } -.h-72 { - height: 18rem; +.gap-y-0 { + row-gap: 0px; } -.h-80 { - height: 20rem; +.gap-y-1 { + row-gap: 0.25rem; } -.h-96 { - height: 24rem; +.gap-y-2 { + row-gap: 0.5rem; } -.h-auto { - height: auto; +.gap-y-3 { + row-gap: 0.75rem; } -.h-px { - height: 1px; +.gap-y-4 { + row-gap: 1rem; } -.h-0\.5 { - height: 0.125rem; +.gap-y-5 { + row-gap: 1.25rem; } -.h-1\.5 { - height: 0.375rem; +.gap-y-6 { + row-gap: 1.5rem; } -.h-2\.5 { - height: 0.625rem; +.gap-y-7 { + row-gap: 1.75rem; } -.h-3\.5 { - height: 0.875rem; +.gap-y-8 { + row-gap: 2rem; } -.h-1\/2 { - height: 50%; +.gap-y-9 { + row-gap: 2.25rem; } -.h-1\/3 { - height: 33.333333%; +.gap-y-10 { + row-gap: 2.5rem; } -.h-2\/3 { - height: 66.666667%; +.gap-y-11 { + row-gap: 2.75rem; } -.h-1\/4 { - height: 25%; +.gap-y-12 { + row-gap: 3rem; } -.h-2\/4 { - height: 50%; +.gap-y-14 { + row-gap: 3.5rem; } -.h-3\/4 { - height: 75%; +.gap-y-16 { + row-gap: 4rem; } -.h-1\/5 { - height: 20%; +.gap-y-20 { + row-gap: 5rem; } -.h-2\/5 { - height: 40%; +.gap-y-24 { + row-gap: 6rem; } -.h-3\/5 { - height: 60%; +.gap-y-28 { + row-gap: 7rem; } -.h-4\/5 { - height: 80%; +.gap-y-32 { + row-gap: 8rem; } -.h-1\/6 { - height: 16.666667%; +.gap-y-36 { + row-gap: 9rem; } -.h-2\/6 { - height: 33.333333%; +.gap-y-40 { + row-gap: 10rem; } -.h-3\/6 { - height: 50%; +.gap-y-44 { + row-gap: 11rem; } -.h-4\/6 { - height: 66.666667%; +.gap-y-48 { + row-gap: 12rem; } -.h-5\/6 { - height: 83.333333%; +.gap-y-52 { + row-gap: 13rem; } -.h-full { - height: 100%; +.gap-y-56 { + row-gap: 14rem; } -.h-screen { - height: 100vh; +.gap-y-60 { + row-gap: 15rem; } -.text-xs { - font-size: 0.75rem; - line-height: 1rem; +.gap-y-64 { + row-gap: 16rem; } -.text-sm { - font-size: 0.875rem; - line-height: 1.25rem; +.gap-y-72 { + row-gap: 18rem; } -.text-base { - font-size: 1rem; - line-height: 1.5rem; +.gap-y-80 { + row-gap: 20rem; } -.text-lg { - font-size: 1.125rem; - line-height: 1.75rem; +.gap-y-96 { + row-gap: 24rem; } -.text-xl { - font-size: 1.25rem; - line-height: 1.75rem; +.gap-y-px { + row-gap: 1px; } -.text-2xl { - font-size: 1.5rem; - line-height: 2rem; +.gap-y-0\.5 { + row-gap: 0.125rem; } -.text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; +.gap-y-1\.5 { + row-gap: 0.375rem; } -.text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; +.gap-y-2\.5 { + row-gap: 0.625rem; } -.text-5xl { - font-size: 3rem; - line-height: 1; +.gap-y-3\.5 { + row-gap: 0.875rem; } -.text-6xl { - font-size: 3.75rem; - line-height: 1; +.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)); } -.text-7xl { - font-size: 4.5rem; - line-height: 1; +.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))); } -.text-8xl { - font-size: 6rem; - line-height: 1; +.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)); } -.text-9xl { - font-size: 8rem; - line-height: 1; +.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))); } -.leading-3 { - line-height: .75rem; +.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)); } -.leading-4 { - line-height: 1rem; +.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))); } -.leading-5 { - line-height: 1.25rem; +.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)); } -.leading-6 { - line-height: 1.5rem; +.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))); } -.leading-7 { - line-height: 1.75rem; +.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)); } -.leading-8 { - line-height: 2rem; +.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))); } -.leading-9 { - line-height: 2.25rem; +.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)); } -.leading-10 { - line-height: 2.5rem; +.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))); } -.leading-none { - line-height: 1; +.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)); } -.leading-tight { - line-height: 1.25; +.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))); } -.leading-snug { - line-height: 1.375; +.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)); } -.leading-normal { - line-height: 1.5; +.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))); } -.leading-relaxed { - line-height: 1.625; +.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)); } -.leading-loose { - line-height: 2; +.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))); } -.list-inside { - list-style-position: inside; +.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)); } -.list-outside { - list-style-position: outside; +.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))); } -.list-none { - list-style-type: none; +.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)); } -.list-disc { - list-style-type: disc; +.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))); } -.list-decimal { - list-style-type: decimal; +.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)); } -.m-0 { - margin: 0px; +.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))); } -.m-1 { - margin: 0.25rem; +.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)); } -.m-2 { - margin: 0.5rem; +.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))); } -.m-3 { - margin: 0.75rem; +.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)); } -.m-4 { - margin: 1rem; +.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))); } -.m-5 { - margin: 1.25rem; +.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)); } -.m-6 { - margin: 1.5rem; +.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))); } -.m-7 { - margin: 1.75rem; +.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)); } -.m-8 { - margin: 2rem; +.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))); } -.m-9 { - margin: 2.25rem; +.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)); } -.m-10 { - margin: 2.5rem; +.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))); } -.m-11 { - margin: 2.75rem; +.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)); } -.m-12 { - margin: 3rem; +.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))); } -.m-14 { - margin: 3.5rem; +.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)); } -.m-16 { - margin: 4rem; +.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))); } -.m-20 { - margin: 5rem; +.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)); } -.m-24 { - margin: 6rem; +.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))); } -.m-28 { - margin: 7rem; +.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)); } -.m-32 { - margin: 8rem; +.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))); } -.m-36 { - margin: 9rem; +.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)); } -.m-40 { - margin: 10rem; +.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))); } -.m-44 { - margin: 11rem; +.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)); } -.m-48 { - margin: 12rem; +.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))); } -.m-52 { - margin: 13rem; +.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)); } -.m-56 { - margin: 14rem; +.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))); } -.m-60 { - margin: 15rem; +.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)); } -.m-64 { - margin: 16rem; +.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))); } -.m-72 { - margin: 18rem; +.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)); } -.m-80 { - margin: 20rem; +.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))); } -.m-96 { - margin: 24rem; +.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)); } -.m-auto { - margin: auto; +.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))); } -.m-px { - margin: 1px; +.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)); } -.m-0\.5 { - margin: 0.125rem; +.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))); } -.m-1\.5 { - margin: 0.375rem; +.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)); } -.m-2\.5 { - margin: 0.625rem; +.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))); } -.m-3\.5 { - margin: 0.875rem; +.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)); } -.-m-0 { - margin: 0px; +.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))); } -.-m-1 { - margin: -0.25rem; +.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)); } -.-m-2 { - margin: -0.5rem; +.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))); } -.-m-3 { - margin: -0.75rem; +.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)); } -.-m-4 { - margin: -1rem; +.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))); } -.-m-5 { - margin: -1.25rem; +.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)); } -.-m-6 { - margin: -1.5rem; +.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))); } -.-m-7 { - margin: -1.75rem; +.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)); } -.-m-8 { - margin: -2rem; +.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))); } -.-m-9 { - margin: -2.25rem; +.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)); } -.-m-10 { - margin: -2.5rem; +.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))); } -.-m-11 { - margin: -2.75rem; +.-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)); } -.-m-12 { - margin: -3rem; +.-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))); } -.-m-14 { - margin: -3.5rem; +.-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)); } -.-m-16 { - margin: -4rem; +.-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))); } -.-m-20 { - margin: -5rem; +.-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)); } -.-m-24 { - margin: -6rem; +.-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))); } -.-m-28 { - margin: -7rem; +.-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)); } -.-m-32 { - margin: -8rem; +.-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))); } -.-m-36 { - margin: -9rem; +.-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)); } -.-m-40 { - margin: -10rem; +.-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))); } -.-m-44 { - margin: -11rem; +.-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)); } -.-m-48 { - margin: -12rem; +.-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))); } -.-m-52 { - margin: -13rem; +.-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)); } -.-m-56 { - margin: -14rem; +.-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))); } -.-m-60 { - margin: -15rem; +.-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)); } -.-m-64 { - margin: -16rem; +.-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))); } -.-m-72 { - margin: -18rem; +.-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)); } -.-m-80 { - margin: -20rem; +.-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))); } -.-m-96 { - margin: -24rem; +.-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)); } -.-m-px { - margin: -1px; +.-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))); } -.-m-0\.5 { - margin: -0.125rem; +.-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)); } -.-m-1\.5 { - margin: -0.375rem; +.-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))); } -.-m-2\.5 { - margin: -0.625rem; +.-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)); } -.-m-3\.5 { - margin: -0.875rem; +.-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))); } -.my-0 { - margin-top: 0px; - margin-bottom: 0px; +.-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)); } -.mx-0 { - margin-left: 0px; - margin-right: 0px; +.-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))); } -.my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; +.-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)); } -.mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; +.-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))); } -.my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; +.-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)); } -.mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; +.-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))); } -.my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; +.-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)); } -.mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; +.-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))); } -.my-4 { - margin-top: 1rem; - margin-bottom: 1rem; +.-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)); } -.mx-4 { - margin-left: 1rem; - margin-right: 1rem; +.-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))); } -.my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; +.-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)); } -.mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; +.-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))); } -.my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; +.-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)); } -.mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; +.-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))); } -.my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; +.-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)); } -.mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; +.-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))); } -.my-8 { - margin-top: 2rem; - margin-bottom: 2rem; +.-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)); } -.mx-8 { - margin-left: 2rem; - margin-right: 2rem; +.-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))); } -.my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; +.-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)); } -.mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; +.-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))); } -.my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; +.-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)); } -.mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; +.-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))); } -.my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; +.-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)); } -.mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; +.-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))); } -.my-12 { - margin-top: 3rem; - margin-bottom: 3rem; +.-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)); } -.mx-12 { - margin-left: 3rem; - margin-right: 3rem; +.-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))); } -.my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; +.-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)); } -.mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; +.-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))); } -.my-16 { - margin-top: 4rem; - margin-bottom: 4rem; +.-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)); } -.mx-16 { - margin-left: 4rem; - margin-right: 4rem; +.-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))); } -.my-20 { - margin-top: 5rem; - margin-bottom: 5rem; +.-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)); } -.mx-20 { - margin-left: 5rem; - margin-right: 5rem; +.-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))); } -.my-24 { - margin-top: 6rem; - margin-bottom: 6rem; +.-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)); } -.mx-24 { - margin-left: 6rem; - margin-right: 6rem; +.-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))); } -.my-28 { - margin-top: 7rem; - margin-bottom: 7rem; +.-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)); } -.mx-28 { - margin-left: 7rem; - margin-right: 7rem; +.-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))); } -.my-32 { - margin-top: 8rem; - margin-bottom: 8rem; +.-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)); } -.mx-32 { - margin-left: 8rem; - margin-right: 8rem; +.-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))); } -.my-36 { - margin-top: 9rem; - margin-bottom: 9rem; +.-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)); } -.mx-36 { - margin-left: 9rem; - margin-right: 9rem; +.-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))); } -.my-40 { - margin-top: 10rem; - margin-bottom: 10rem; +.-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)); } -.mx-40 { - margin-left: 10rem; - margin-right: 10rem; +.-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))); } -.my-44 { - margin-top: 11rem; - margin-bottom: 11rem; +.-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)); } -.mx-44 { - margin-left: 11rem; - margin-right: 11rem; +.-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))); } -.my-48 { - margin-top: 12rem; - margin-bottom: 12rem; +.-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)); } -.mx-48 { - margin-left: 12rem; - margin-right: 12rem; +.-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))); } -.my-52 { - margin-top: 13rem; - margin-bottom: 13rem; +.space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } -.mx-52 { - margin-left: 13rem; - margin-right: 13rem; +.space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } -.my-56 { - margin-top: 14rem; - margin-bottom: 14rem; +.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)); } -.mx-56 { - margin-left: 14rem; - margin-right: 14rem; +.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))); } -.my-60 { - margin-top: 15rem; - margin-bottom: 15rem; +.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)); } -.mx-60 { - margin-left: 15rem; - margin-right: 15rem; +.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))); } -.my-64 { - margin-top: 16rem; - margin-bottom: 16rem; +.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)); } -.mx-64 { - margin-left: 16rem; - margin-right: 16rem; +.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))); } -.my-72 { - margin-top: 18rem; - margin-bottom: 18rem; +.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)); } -.mx-72 { - margin-left: 18rem; - margin-right: 18rem; +.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))); } -.my-80 { - margin-top: 20rem; - margin-bottom: 20rem; +.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)); } -.mx-80 { - margin-left: 20rem; - margin-right: 20rem; +.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))); } -.my-96 { - margin-top: 24rem; - margin-bottom: 24rem; +.divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } -.mx-96 { - margin-left: 24rem; - margin-right: 24rem; +.divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } -.my-auto { - margin-top: auto; - margin-bottom: auto; +.divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } -.mx-auto { - margin-left: auto; - margin-right: auto; +.divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } -.my-px { - margin-top: 1px; - margin-bottom: 1px; +.divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } -.mx-px { - margin-left: 1px; - margin-right: 1px; +.divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } -.my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; +.divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } -.mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; +.divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } -.my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; +.divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } -.mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; +.divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } -.my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; +.divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } -.mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; +.divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } -.my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; +.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } -.mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; +.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } -.-my-0 { - margin-top: 0px; - margin-bottom: 0px; +.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } -.-mx-0 { - margin-left: 0px; - margin-right: 0px; +.divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } -.-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; +.divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } -.-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; +.divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } -.-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; +.divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } -.-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; +.divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } -.-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; +.divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } -.-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; +.divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } -.-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; +.divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } -.-mx-4 { - margin-left: -1rem; - margin-right: -1rem; +.divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } -.-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; +.divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } -.-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; +.divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } -.-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; +.divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } -.-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; +.divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } -.-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; +.divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } -.-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; +.divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } -.-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; +.divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } -.-mx-8 { - margin-left: -2rem; - margin-right: -2rem; +.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } -.-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; +.divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } -.-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; +.divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } -.-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; +.divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } -.-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; +.divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } -.-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; +.divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } -.-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; +.divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } -.-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; +.divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } -.-mx-12 { - margin-left: -3rem; - margin-right: -3rem; +.divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } -.-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; +.divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } -.-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; +.divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } -.-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; +.divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } -.-mx-16 { - margin-left: -4rem; - margin-right: -4rem; +.divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } -.-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; +.divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } -.-mx-20 { - margin-left: -5rem; - margin-right: -5rem; +.divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } -.-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; +.divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } -.-mx-24 { - margin-left: -6rem; - margin-right: -6rem; +.divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } -.-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; +.divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } -.-mx-28 { - margin-left: -7rem; - margin-right: -7rem; +.divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } -.-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; +.divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } -.-mx-32 { - margin-left: -8rem; - margin-right: -8rem; +.divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } -.-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; +.divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } -.-mx-36 { - margin-left: -9rem; - margin-right: -9rem; +.divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } -.-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; +.divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } -.-mx-40 { - margin-left: -10rem; - margin-right: -10rem; +.divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } -.-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; +.divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } -.-mx-44 { - margin-left: -11rem; - margin-right: -11rem; +.divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } -.-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; +.divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } -.-mx-48 { - margin-left: -12rem; - margin-right: -12rem; +.divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } -.-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; +.divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } -.-mx-52 { - margin-left: -13rem; - margin-right: -13rem; +.divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } -.-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; +.divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } -.-mx-56 { - margin-left: -14rem; - margin-right: -14rem; +.divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } -.-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; +.divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } -.-mx-60 { - margin-left: -15rem; - margin-right: -15rem; +.divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } -.-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; +.divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } -.-mx-64 { - margin-left: -16rem; - margin-right: -16rem; +.divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } -.-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; +.divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } -.-mx-72 { - margin-left: -18rem; - margin-right: -18rem; +.divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } -.-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; +.divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } -.-mx-80 { - margin-left: -20rem; - margin-right: -20rem; +.divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } -.-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; +.divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } -.-mx-96 { - margin-left: -24rem; - margin-right: -24rem; +.divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } -.-my-px { - margin-top: -1px; - margin-bottom: -1px; +.divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } -.-mx-px { - margin-left: -1px; - margin-right: -1px; +.divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } -.-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; +.divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } -.-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; +.divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } -.-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; +.divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } -.-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; +.divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } -.-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; +.divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } -.-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; +.divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } -.-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; +.divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } -.-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; +.divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } -.mt-0 { - margin-top: 0px; +.divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } -.mr-0 { - margin-right: 0px; +.divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } -.mb-0 { - margin-bottom: 0px; +.divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } -.ml-0 { - margin-left: 0px; +.divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } -.mt-1 { - margin-top: 0.25rem; +.divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } -.mr-1 { - margin-right: 0.25rem; +.divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } -.mb-1 { - margin-bottom: 0.25rem; +.divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } -.ml-1 { - margin-left: 0.25rem; +.divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } -.mt-2 { - margin-top: 0.5rem; +.divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } -.mr-2 { - margin-right: 0.5rem; +.divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } -.mb-2 { - margin-bottom: 0.5rem; +.divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } -.ml-2 { - margin-left: 0.5rem; +.divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } -.mt-3 { - margin-top: 0.75rem; +.divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } -.mr-3 { - margin-right: 0.75rem; +.divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } -.mb-3 { - margin-bottom: 0.75rem; +.divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } -.ml-3 { - margin-left: 0.75rem; +.divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } -.mt-4 { - margin-top: 1rem; +.divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } -.mr-4 { - margin-right: 1rem; +.divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } -.mb-4 { - margin-bottom: 1rem; +.divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } -.ml-4 { - margin-left: 1rem; +.divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } -.mt-5 { - margin-top: 1.25rem; +.divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } -.mr-5 { - margin-right: 1.25rem; +.divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } -.mb-5 { - margin-bottom: 1.25rem; +.place-self-auto { + place-self: auto; } -.ml-5 { - margin-left: 1.25rem; +.place-self-start { + place-self: start; } -.mt-6 { - margin-top: 1.5rem; +.place-self-end { + place-self: end; } -.mr-6 { - margin-right: 1.5rem; +.place-self-center { + place-self: center; } -.mb-6 { - margin-bottom: 1.5rem; +.place-self-stretch { + place-self: stretch; } -.ml-6 { - margin-left: 1.5rem; +.self-auto { + align-self: auto; } -.mt-7 { - margin-top: 1.75rem; +.self-start { + align-self: flex-start; } -.mr-7 { - margin-right: 1.75rem; +.self-end { + align-self: flex-end; } -.mb-7 { - margin-bottom: 1.75rem; +.self-center { + align-self: center; } -.ml-7 { - margin-left: 1.75rem; +.self-stretch { + align-self: stretch; } -.mt-8 { - margin-top: 2rem; +.justify-self-auto { + justify-self: auto; } -.mr-8 { - margin-right: 2rem; +.justify-self-start { + justify-self: start; } -.mb-8 { - margin-bottom: 2rem; +.justify-self-end { + justify-self: end; } -.ml-8 { - margin-left: 2rem; +.justify-self-center { + justify-self: center; } -.mt-9 { - margin-top: 2.25rem; +.justify-self-stretch { + justify-self: stretch; } -.mr-9 { - margin-right: 2.25rem; +.overflow-auto { + overflow: auto; } -.mb-9 { - margin-bottom: 2.25rem; +.overflow-hidden { + overflow: hidden; } -.ml-9 { - margin-left: 2.25rem; +.overflow-visible { + overflow: visible; } -.mt-10 { - margin-top: 2.5rem; +.overflow-scroll { + overflow: scroll; } -.mr-10 { - margin-right: 2.5rem; +.overflow-x-auto { + overflow-x: auto; } -.mb-10 { - margin-bottom: 2.5rem; +.overflow-y-auto { + overflow-y: auto; } -.ml-10 { - margin-left: 2.5rem; +.overflow-x-hidden { + overflow-x: hidden; } -.mt-11 { - margin-top: 2.75rem; +.overflow-y-hidden { + overflow-y: hidden; } -.mr-11 { - margin-right: 2.75rem; +.overflow-x-visible { + overflow-x: visible; } -.mb-11 { - margin-bottom: 2.75rem; +.overflow-y-visible { + overflow-y: visible; } -.ml-11 { - margin-left: 2.75rem; +.overflow-x-scroll { + overflow-x: scroll; } -.mt-12 { - margin-top: 3rem; +.overflow-y-scroll { + overflow-y: scroll; } -.mr-12 { - margin-right: 3rem; +.overscroll-auto { + overscroll-behavior: auto; } -.mb-12 { - margin-bottom: 3rem; +.overscroll-contain { + overscroll-behavior: contain; } -.ml-12 { - margin-left: 3rem; +.overscroll-none { + overscroll-behavior: none; } -.mt-14 { - margin-top: 3.5rem; +.overscroll-y-auto { + overscroll-behavior-y: auto; } -.mr-14 { - margin-right: 3.5rem; +.overscroll-y-contain { + overscroll-behavior-y: contain; } -.mb-14 { - margin-bottom: 3.5rem; +.overscroll-y-none { + overscroll-behavior-y: none; } -.ml-14 { - margin-left: 3.5rem; +.overscroll-x-auto { + overscroll-behavior-x: auto; } -.mt-16 { - margin-top: 4rem; -} - -.mr-16 { - margin-right: 4rem; +.overscroll-x-contain { + overscroll-behavior-x: contain; } -.mb-16 { - margin-bottom: 4rem; +.overscroll-x-none { + overscroll-behavior-x: none; } -.ml-16 { - margin-left: 4rem; +.truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } -.mt-20 { - margin-top: 5rem; +.overflow-ellipsis { + text-overflow: ellipsis; } -.mr-20 { - margin-right: 5rem; +.overflow-clip { + text-overflow: clip; } -.mb-20 { - margin-bottom: 5rem; +.whitespace-normal { + white-space: normal; } -.ml-20 { - margin-left: 5rem; +.whitespace-nowrap { + white-space: nowrap; } -.mt-24 { - margin-top: 6rem; +.whitespace-pre { + white-space: pre; } -.mr-24 { - margin-right: 6rem; +.whitespace-pre-line { + white-space: pre-line; } -.mb-24 { - margin-bottom: 6rem; +.whitespace-pre-wrap { + white-space: pre-wrap; } -.ml-24 { - margin-left: 6rem; +.break-normal { + overflow-wrap: normal; + word-break: normal; } -.mt-28 { - margin-top: 7rem; +.break-words { + overflow-wrap: break-word; } -.mr-28 { - margin-right: 7rem; +.break-all { + word-break: break-all; } -.mb-28 { - margin-bottom: 7rem; +.rounded-none { + border-radius: 0px; } -.ml-28 { - margin-left: 7rem; +.rounded-sm { + border-radius: 0.125rem; } -.mt-32 { - margin-top: 8rem; +.rounded { + border-radius: 0.25rem; } -.mr-32 { - margin-right: 8rem; +.rounded-md { + border-radius: 0.375rem; } -.mb-32 { - margin-bottom: 8rem; +.rounded-lg { + border-radius: 0.5rem; } -.ml-32 { - margin-left: 8rem; +.rounded-xl { + border-radius: 0.75rem; } -.mt-36 { - margin-top: 9rem; +.rounded-2xl { + border-radius: 1rem; } -.mr-36 { - margin-right: 9rem; +.rounded-3xl { + border-radius: 1.5rem; } -.mb-36 { - margin-bottom: 9rem; +.rounded-full { + border-radius: 9999px; } -.ml-36 { - margin-left: 9rem; +.rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } -.mt-40 { - margin-top: 10rem; +.rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } -.mr-40 { - margin-right: 10rem; +.rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } -.mb-40 { - margin-bottom: 10rem; +.rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } -.ml-40 { - margin-left: 10rem; +.rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } -.mt-44 { - margin-top: 11rem; +.rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } -.mr-44 { - margin-right: 11rem; +.rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } -.mb-44 { - margin-bottom: 11rem; +.rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } -.ml-44 { - margin-left: 11rem; +.rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } -.mt-48 { - margin-top: 12rem; +.rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } -.mr-48 { - margin-right: 12rem; +.rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } -.mb-48 { - margin-bottom: 12rem; +.rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } -.ml-48 { - margin-left: 12rem; +.rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } -.mt-52 { - margin-top: 13rem; +.rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } -.mr-52 { - margin-right: 13rem; +.rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } -.mb-52 { - margin-bottom: 13rem; +.rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } -.ml-52 { - margin-left: 13rem; +.rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } -.mt-56 { - margin-top: 14rem; +.rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } -.mr-56 { - margin-right: 14rem; +.rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } -.mb-56 { - margin-bottom: 14rem; +.rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } -.ml-56 { - margin-left: 14rem; +.rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } -.mt-60 { - margin-top: 15rem; +.rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } -.mr-60 { - margin-right: 15rem; +.rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } -.mb-60 { - margin-bottom: 15rem; +.rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } -.ml-60 { - margin-left: 15rem; +.rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } -.mt-64 { - margin-top: 16rem; +.rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } -.mr-64 { - margin-right: 16rem; +.rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } -.mb-64 { - margin-bottom: 16rem; +.rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } -.ml-64 { - margin-left: 16rem; +.rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } -.mt-72 { - margin-top: 18rem; +.rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } -.mr-72 { - margin-right: 18rem; +.rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } -.mb-72 { - margin-bottom: 18rem; +.rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } -.ml-72 { - margin-left: 18rem; +.rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } -.mt-80 { - margin-top: 20rem; +.rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } -.mr-80 { - margin-right: 20rem; +.rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } -.mb-80 { - margin-bottom: 20rem; +.rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } -.ml-80 { - margin-left: 20rem; +.rounded-tl-none { + border-top-left-radius: 0px; } -.mt-96 { - margin-top: 24rem; +.rounded-tl-sm { + border-top-left-radius: 0.125rem; } -.mr-96 { - margin-right: 24rem; +.rounded-tl { + border-top-left-radius: 0.25rem; } -.mb-96 { - margin-bottom: 24rem; +.rounded-tl-md { + border-top-left-radius: 0.375rem; } -.ml-96 { - margin-left: 24rem; +.rounded-tl-lg { + border-top-left-radius: 0.5rem; } -.mt-auto { - margin-top: auto; +.rounded-tl-xl { + border-top-left-radius: 0.75rem; } -.mr-auto { - margin-right: auto; +.rounded-tl-2xl { + border-top-left-radius: 1rem; } -.mb-auto { - margin-bottom: auto; +.rounded-tl-3xl { + border-top-left-radius: 1.5rem; } -.ml-auto { - margin-left: auto; +.rounded-tl-full { + border-top-left-radius: 9999px; } -.mt-px { - margin-top: 1px; +.rounded-tr-none { + border-top-right-radius: 0px; } -.mr-px { - margin-right: 1px; +.rounded-tr-sm { + border-top-right-radius: 0.125rem; } -.mb-px { - margin-bottom: 1px; +.rounded-tr { + border-top-right-radius: 0.25rem; } -.ml-px { - margin-left: 1px; +.rounded-tr-md { + border-top-right-radius: 0.375rem; } -.mt-0\.5 { - margin-top: 0.125rem; +.rounded-tr-lg { + border-top-right-radius: 0.5rem; } -.mr-0\.5 { - margin-right: 0.125rem; +.rounded-tr-xl { + border-top-right-radius: 0.75rem; } -.mb-0\.5 { - margin-bottom: 0.125rem; +.rounded-tr-2xl { + border-top-right-radius: 1rem; } -.ml-0\.5 { - margin-left: 0.125rem; +.rounded-tr-3xl { + border-top-right-radius: 1.5rem; } -.mt-1\.5 { - margin-top: 0.375rem; +.rounded-tr-full { + border-top-right-radius: 9999px; } -.mr-1\.5 { - margin-right: 0.375rem; +.rounded-br-none { + border-bottom-right-radius: 0px; } -.mb-1\.5 { - margin-bottom: 0.375rem; +.rounded-br-sm { + border-bottom-right-radius: 0.125rem; } -.ml-1\.5 { - margin-left: 0.375rem; +.rounded-br { + border-bottom-right-radius: 0.25rem; } -.mt-2\.5 { - margin-top: 0.625rem; +.rounded-br-md { + border-bottom-right-radius: 0.375rem; } -.mr-2\.5 { - margin-right: 0.625rem; +.rounded-br-lg { + border-bottom-right-radius: 0.5rem; } -.mb-2\.5 { - margin-bottom: 0.625rem; +.rounded-br-xl { + border-bottom-right-radius: 0.75rem; } -.ml-2\.5 { - margin-left: 0.625rem; +.rounded-br-2xl { + border-bottom-right-radius: 1rem; } -.mt-3\.5 { - margin-top: 0.875rem; +.rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } -.mr-3\.5 { - margin-right: 0.875rem; +.rounded-br-full { + border-bottom-right-radius: 9999px; } -.mb-3\.5 { - margin-bottom: 0.875rem; +.rounded-bl-none { + border-bottom-left-radius: 0px; } -.ml-3\.5 { - margin-left: 0.875rem; +.rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } -.-mt-0 { - margin-top: 0px; +.rounded-bl { + border-bottom-left-radius: 0.25rem; } -.-mr-0 { - margin-right: 0px; +.rounded-bl-md { + border-bottom-left-radius: 0.375rem; } -.-mb-0 { - margin-bottom: 0px; +.rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } -.-ml-0 { - margin-left: 0px; +.rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } -.-mt-1 { - margin-top: -0.25rem; +.rounded-bl-2xl { + border-bottom-left-radius: 1rem; } -.-mr-1 { - margin-right: -0.25rem; +.rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } -.-mb-1 { - margin-bottom: -0.25rem; +.rounded-bl-full { + border-bottom-left-radius: 9999px; } -.-ml-1 { - margin-left: -0.25rem; +.border-0 { + border-width: 0px; } -.-mt-2 { - margin-top: -0.5rem; +.border-2 { + border-width: 2px; } -.-mr-2 { - margin-right: -0.5rem; +.border-4 { + border-width: 4px; } -.-mb-2 { - margin-bottom: -0.5rem; +.border-8 { + border-width: 8px; } -.-ml-2 { - margin-left: -0.5rem; +.border { + border-width: 1px; } -.-mt-3 { - margin-top: -0.75rem; +.border-t-0 { + border-top-width: 0px; } -.-mr-3 { - margin-right: -0.75rem; +.border-t-2 { + border-top-width: 2px; } -.-mb-3 { - margin-bottom: -0.75rem; +.border-t-4 { + border-top-width: 4px; } -.-ml-3 { - margin-left: -0.75rem; +.border-t-8 { + border-top-width: 8px; } -.-mt-4 { - margin-top: -1rem; +.border-t { + border-top-width: 1px; } -.-mr-4 { - margin-right: -1rem; +.border-r-0 { + border-right-width: 0px; } -.-mb-4 { - margin-bottom: -1rem; +.border-r-2 { + border-right-width: 2px; } -.-ml-4 { - margin-left: -1rem; +.border-r-4 { + border-right-width: 4px; } -.-mt-5 { - margin-top: -1.25rem; +.border-r-8 { + border-right-width: 8px; } -.-mr-5 { - margin-right: -1.25rem; +.border-r { + border-right-width: 1px; } -.-mb-5 { - margin-bottom: -1.25rem; +.border-b-0 { + border-bottom-width: 0px; } -.-ml-5 { - margin-left: -1.25rem; +.border-b-2 { + border-bottom-width: 2px; } -.-mt-6 { - margin-top: -1.5rem; +.border-b-4 { + border-bottom-width: 4px; } -.-mr-6 { - margin-right: -1.5rem; +.border-b-8 { + border-bottom-width: 8px; } -.-mb-6 { - margin-bottom: -1.5rem; +.border-b { + border-bottom-width: 1px; } -.-ml-6 { - margin-left: -1.5rem; +.border-l-0 { + border-left-width: 0px; } -.-mt-7 { - margin-top: -1.75rem; +.border-l-2 { + border-left-width: 2px; } -.-mr-7 { - margin-right: -1.75rem; +.border-l-4 { + border-left-width: 4px; } -.-mb-7 { - margin-bottom: -1.75rem; +.border-l-8 { + border-left-width: 8px; } -.-ml-7 { - margin-left: -1.75rem; +.border-l { + border-left-width: 1px; } -.-mt-8 { - margin-top: -2rem; +.border-solid { + border-style: solid; } -.-mr-8 { - margin-right: -2rem; +.border-dashed { + border-style: dashed; } -.-mb-8 { - margin-bottom: -2rem; +.border-dotted { + border-style: dotted; } -.-ml-8 { - margin-left: -2rem; +.border-double { + border-style: double; } -.-mt-9 { - margin-top: -2.25rem; +.border-none { + border-style: none; } -.-mr-9 { - margin-right: -2.25rem; +.border-transparent { + border-color: transparent; } -.-mb-9 { - margin-bottom: -2.25rem; +.border-current { + border-color: currentColor; } -.-ml-9 { - margin-left: -2.25rem; +.border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } -.-mt-10 { - margin-top: -2.5rem; +.border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } -.-mr-10 { - margin-right: -2.5rem; +.border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } -.-mb-10 { - margin-bottom: -2.5rem; +.border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } -.-ml-10 { - margin-left: -2.5rem; +.border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } -.-mt-11 { - margin-top: -2.75rem; +.border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } -.-mr-11 { - margin-right: -2.75rem; +.border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } -.-mb-11 { - margin-bottom: -2.75rem; +.border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } -.-ml-11 { - margin-left: -2.75rem; +.border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } -.-mt-12 { - margin-top: -3rem; +.border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } -.-mr-12 { - margin-right: -3rem; +.border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } -.-mb-12 { - margin-bottom: -3rem; +.border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } -.-ml-12 { - margin-left: -3rem; +.border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } -.-mt-14 { - margin-top: -3.5rem; +.border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } -.-mr-14 { - margin-right: -3.5rem; +.border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } -.-mb-14 { - margin-bottom: -3.5rem; +.border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } -.-ml-14 { - margin-left: -3.5rem; +.border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } -.-mt-16 { - margin-top: -4rem; +.border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } -.-mr-16 { - margin-right: -4rem; +.border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } -.-mb-16 { - margin-bottom: -4rem; +.border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } -.-ml-16 { - margin-left: -4rem; +.border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } -.-mt-20 { - margin-top: -5rem; +.border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } -.-mr-20 { - margin-right: -5rem; +.border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } -.-mb-20 { - margin-bottom: -5rem; +.border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } -.-ml-20 { - margin-left: -5rem; +.border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } -.-mt-24 { - margin-top: -6rem; +.border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } -.-mr-24 { - margin-right: -6rem; +.border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } -.-mb-24 { - margin-bottom: -6rem; +.border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } -.-ml-24 { - margin-left: -6rem; +.border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } -.-mt-28 { - margin-top: -7rem; +.border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } -.-mr-28 { - margin-right: -7rem; +.border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } -.-mb-28 { - margin-bottom: -7rem; +.border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } -.-ml-28 { - margin-left: -7rem; +.border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } -.-mt-32 { - margin-top: -8rem; +.border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } -.-mr-32 { - margin-right: -8rem; +.border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } -.-mb-32 { - margin-bottom: -8rem; +.border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } -.-ml-32 { - margin-left: -8rem; +.border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } -.-mt-36 { - margin-top: -9rem; +.border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } -.-mr-36 { - margin-right: -9rem; +.border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } -.-mb-36 { - margin-bottom: -9rem; +.border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } -.-ml-36 { - margin-left: -9rem; +.border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } -.-mt-40 { - margin-top: -10rem; +.border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } -.-mr-40 { - margin-right: -10rem; +.border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } -.-mb-40 { - margin-bottom: -10rem; +.border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } -.-ml-40 { - margin-left: -10rem; +.border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } -.-mt-44 { - margin-top: -11rem; +.border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } -.-mr-44 { - margin-right: -11rem; +.border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } -.-mb-44 { - margin-bottom: -11rem; +.border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } -.-ml-44 { - margin-left: -11rem; +.border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } -.-mt-48 { - margin-top: -12rem; +.border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } -.-mr-48 { - margin-right: -12rem; +.border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } -.-mb-48 { - margin-bottom: -12rem; +.border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } -.-ml-48 { - margin-left: -12rem; +.border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } -.-mt-52 { - margin-top: -13rem; +.border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } -.-mr-52 { - margin-right: -13rem; +.border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } -.-mb-52 { - margin-bottom: -13rem; +.border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } -.-ml-52 { - margin-left: -13rem; +.border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } -.-mt-56 { - margin-top: -14rem; +.border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } -.-mr-56 { - margin-right: -14rem; +.border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } -.-mb-56 { - margin-bottom: -14rem; +.border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } -.-ml-56 { - margin-left: -14rem; +.border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } -.-mt-60 { - margin-top: -15rem; +.border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } -.-mr-60 { - margin-right: -15rem; +.border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } -.-mb-60 { - margin-bottom: -15rem; +.border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } -.-ml-60 { - margin-left: -15rem; +.border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } -.-mt-64 { - margin-top: -16rem; +.border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } -.-mr-64 { - margin-right: -16rem; +.border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } -.-mb-64 { - margin-bottom: -16rem; +.border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } -.-ml-64 { - margin-left: -16rem; +.border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } -.-mt-72 { - margin-top: -18rem; +.border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } -.-mr-72 { - margin-right: -18rem; +.border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } -.-mb-72 { - margin-bottom: -18rem; +.border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } -.-ml-72 { - margin-left: -18rem; +.border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } -.-mt-80 { - margin-top: -20rem; +.border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } -.-mr-80 { - margin-right: -20rem; +.border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } -.-mb-80 { - margin-bottom: -20rem; +.border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } -.-ml-80 { - margin-left: -20rem; +.border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } -.-mt-96 { - margin-top: -24rem; +.border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } -.-mr-96 { - margin-right: -24rem; +.border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } -.-mb-96 { - margin-bottom: -24rem; +.border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } -.-ml-96 { - margin-left: -24rem; +.border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } -.-mt-px { - margin-top: -1px; +.border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } -.-mr-px { - margin-right: -1px; +.group:hover .group-hover\:border-transparent { + border-color: transparent; } -.-mb-px { - margin-bottom: -1px; +.group:hover .group-hover\:border-current { + border-color: currentColor; } -.-ml-px { - margin-left: -1px; +.group:hover .group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } -.-mt-0\.5 { - margin-top: -0.125rem; +.group:hover .group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } -.-mr-0\.5 { - margin-right: -0.125rem; +.group:hover .group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } -.-mb-0\.5 { - margin-bottom: -0.125rem; +.group:hover .group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } -.-ml-0\.5 { - margin-left: -0.125rem; +.group:hover .group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } -.-mt-1\.5 { - margin-top: -0.375rem; +.group:hover .group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } -.-mr-1\.5 { - margin-right: -0.375rem; +.group:hover .group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } -.-mb-1\.5 { - margin-bottom: -0.375rem; +.group:hover .group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } -.-ml-1\.5 { - margin-left: -0.375rem; +.group:hover .group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } -.-mt-2\.5 { - margin-top: -0.625rem; +.group:hover .group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } -.-mr-2\.5 { - margin-right: -0.625rem; +.group:hover .group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } -.-mb-2\.5 { - margin-bottom: -0.625rem; +.group:hover .group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } -.-ml-2\.5 { - margin-left: -0.625rem; +.group:hover .group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } -.-mt-3\.5 { - margin-top: -0.875rem; +.group:hover .group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } -.-mr-3\.5 { - margin-right: -0.875rem; +.group:hover .group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } -.-mb-3\.5 { - margin-bottom: -0.875rem; +.group:hover .group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } -.-ml-3\.5 { - margin-left: -0.875rem; +.group:hover .group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } -.max-h-0 { - max-height: 0px; +.group:hover .group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } -.max-h-1 { - max-height: 0.25rem; +.group:hover .group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } -.max-h-2 { - max-height: 0.5rem; +.group:hover .group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } -.max-h-3 { - max-height: 0.75rem; +.group:hover .group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } -.max-h-4 { - max-height: 1rem; +.group:hover .group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } -.max-h-5 { - max-height: 1.25rem; +.group:hover .group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } -.max-h-6 { - max-height: 1.5rem; +.group:hover .group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } -.max-h-7 { - max-height: 1.75rem; +.group:hover .group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } -.max-h-8 { - max-height: 2rem; +.group:hover .group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } -.max-h-9 { - max-height: 2.25rem; +.group:hover .group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } -.max-h-10 { - max-height: 2.5rem; +.group:hover .group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } -.max-h-11 { - max-height: 2.75rem; +.group:hover .group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } -.max-h-12 { - max-height: 3rem; +.group:hover .group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } -.max-h-14 { - max-height: 3.5rem; +.group:hover .group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } -.max-h-16 { - max-height: 4rem; +.group:hover .group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } -.max-h-20 { - max-height: 5rem; +.group:hover .group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } -.max-h-24 { - max-height: 6rem; +.group:hover .group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } -.max-h-28 { - max-height: 7rem; +.group:hover .group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } -.max-h-32 { - max-height: 8rem; +.group:hover .group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } -.max-h-36 { - max-height: 9rem; +.group:hover .group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } -.max-h-40 { - max-height: 10rem; +.group:hover .group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } -.max-h-44 { - max-height: 11rem; +.group:hover .group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } -.max-h-48 { - max-height: 12rem; +.group:hover .group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } -.max-h-52 { - max-height: 13rem; +.group:hover .group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } -.max-h-56 { - max-height: 14rem; +.group:hover .group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } -.max-h-60 { - max-height: 15rem; +.group:hover .group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } -.max-h-64 { - max-height: 16rem; +.group:hover .group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } -.max-h-72 { - max-height: 18rem; +.group:hover .group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } -.max-h-80 { - max-height: 20rem; +.group:hover .group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } -.max-h-96 { - max-height: 24rem; +.group:hover .group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } -.max-h-px { - max-height: 1px; +.group:hover .group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } -.max-h-0\.5 { - max-height: 0.125rem; +.group:hover .group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } -.max-h-1\.5 { - max-height: 0.375rem; +.group:hover .group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } -.max-h-2\.5 { - max-height: 0.625rem; +.group:hover .group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } -.max-h-3\.5 { - max-height: 0.875rem; +.group:hover .group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } -.max-h-full { - max-height: 100%; +.group:hover .group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } -.max-h-screen { - max-height: 100vh; +.group:hover .group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } -.max-w-0 { - max-width: 0rem; +.group:hover .group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } -.max-w-none { - max-width: none; +.group:hover .group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } -.max-w-xs { - max-width: 20rem; +.group:hover .group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } -.max-w-sm { - max-width: 24rem; +.group:hover .group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } -.max-w-md { - max-width: 28rem; +.group:hover .group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } -.max-w-lg { - max-width: 32rem; +.group:hover .group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } -.max-w-xl { - max-width: 36rem; +.group:hover .group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } -.max-w-2xl { - max-width: 42rem; +.group:hover .group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } -.max-w-3xl { - max-width: 48rem; +.group:hover .group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } -.max-w-4xl { - max-width: 56rem; +.group:hover .group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } -.max-w-5xl { - max-width: 64rem; +.group:hover .group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } -.max-w-6xl { - max-width: 72rem; +.group:hover .group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } -.max-w-7xl { - max-width: 80rem; +.group:hover .group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } -.max-w-full { - max-width: 100%; +.group:hover .group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } -.max-w-min { - max-width: min-content; +.group:hover .group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } -.max-w-max { - max-width: max-content; +.group:hover .group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } -.max-w-prose { - max-width: 65ch; +.group:hover .group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } -.max-w-screen-sm { - max-width: 640px; +.group:hover .group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } -.max-w-screen-md { - max-width: 768px; +.group:hover .group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } -.max-w-screen-lg { - max-width: 1024px; +.group:hover .group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } -.max-w-screen-xl { - max-width: 1280px; +.group:hover .group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } -.max-w-screen-2xl { - max-width: 1536px; +.group:hover .group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } -.min-h-0 { - min-height: 0px; +.group:hover .group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } -.min-h-full { - min-height: 100%; +.group:hover .group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } -.min-h-screen { - min-height: 100vh; +.group:hover .group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } -.min-w-0 { - min-width: 0px; +.group:hover .group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } -.min-w-full { - min-width: 100%; +.group:hover .group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } -.min-w-min { - min-width: min-content; +.group:hover .group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } -.min-w-max { - min-width: max-content; +.focus-within\:border-transparent:focus-within { + border-color: transparent; } -.object-contain { - object-fit: contain; +.focus-within\:border-current:focus-within { + border-color: currentColor; } -.object-cover { - object-fit: cover; +.focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } -.object-fill { - object-fit: fill; +.focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } -.object-none { - object-fit: none; +.focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } -.object-scale-down { - object-fit: scale-down; +.focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } -.object-bottom { - object-position: bottom; +.focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } -.object-center { - object-position: center; +.focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } -.object-left { - object-position: left; +.focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } -.object-left-bottom { - object-position: left bottom; +.focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } -.object-left-top { - object-position: left top; +.focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } -.object-right { - object-position: right; +.focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } -.object-right-bottom { - object-position: right bottom; +.focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } -.object-right-top { - object-position: right top; +.focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } -.object-top { - object-position: top; +.focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } -.opacity-0 { - opacity: 0; +.focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } -.opacity-5 { - opacity: 0.05; +.focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } -.opacity-10 { - opacity: 0.1; +.focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } -.opacity-20 { - opacity: 0.2; +.focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } -.opacity-25 { - opacity: 0.25; +.focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } -.opacity-30 { - opacity: 0.3; +.focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } -.opacity-40 { - opacity: 0.4; +.focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } -.opacity-50 { - opacity: 0.5; +.focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } -.opacity-60 { - opacity: 0.6; +.focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } -.opacity-70 { - opacity: 0.7; +.focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } -.opacity-75 { - opacity: 0.75; +.focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } -.opacity-80 { - opacity: 0.8; +.focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } -.opacity-90 { - opacity: 0.9; +.focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } -.opacity-95 { - opacity: 0.95; +.focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } -.opacity-100 { - opacity: 1; +.focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-0 { - opacity: 0; +.focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-5 { - opacity: 0.05; +.focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-10 { - opacity: 0.1; +.focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-20 { - opacity: 0.2; +.focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-25 { - opacity: 0.25; +.focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-30 { - opacity: 0.3; +.focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-40 { - opacity: 0.4; +.focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-50 { - opacity: 0.5; +.focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-60 { - opacity: 0.6; +.focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-70 { - opacity: 0.7; +.focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-75 { - opacity: 0.75; +.focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-80 { - opacity: 0.8; +.focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-90 { - opacity: 0.9; +.focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-95 { - opacity: 0.95; +.focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } -.group:hover .group-hover\:opacity-100 { - opacity: 1; +.focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } -.focus-within\:opacity-0:focus-within { - opacity: 0; +.focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } -.focus-within\:opacity-5:focus-within { - opacity: 0.05; +.focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } -.focus-within\:opacity-10:focus-within { - opacity: 0.1; +.focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } -.focus-within\:opacity-20:focus-within { - opacity: 0.2; +.focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } -.focus-within\:opacity-25:focus-within { - opacity: 0.25; +.focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } -.focus-within\:opacity-30:focus-within { - opacity: 0.3; +.focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } -.focus-within\:opacity-40:focus-within { - opacity: 0.4; +.focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } -.focus-within\:opacity-50:focus-within { - opacity: 0.5; +.focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } -.focus-within\:opacity-60:focus-within { - opacity: 0.6; +.focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } -.focus-within\:opacity-70:focus-within { - opacity: 0.7; +.focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } -.focus-within\:opacity-75:focus-within { - opacity: 0.75; +.focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } -.focus-within\:opacity-80:focus-within { - opacity: 0.8; +.focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } -.focus-within\:opacity-90:focus-within { - opacity: 0.9; +.focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } -.focus-within\:opacity-95:focus-within { - opacity: 0.95; +.focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } -.focus-within\:opacity-100:focus-within { - opacity: 1; +.focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } -.hover\:opacity-0:hover { - opacity: 0; +.focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } -.hover\:opacity-5:hover { - opacity: 0.05; +.focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } -.hover\:opacity-10:hover { - opacity: 0.1; +.focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } -.hover\:opacity-20:hover { - opacity: 0.2; +.focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } -.hover\:opacity-25:hover { - opacity: 0.25; +.focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } -.hover\:opacity-30:hover { - opacity: 0.3; +.focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } -.hover\:opacity-40:hover { - opacity: 0.4; +.focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } -.hover\:opacity-50:hover { - opacity: 0.5; +.focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } -.hover\:opacity-60:hover { - opacity: 0.6; +.focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } -.hover\:opacity-70:hover { - opacity: 0.7; +.focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } -.hover\:opacity-75:hover { - opacity: 0.75; +.focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } -.hover\:opacity-80:hover { - opacity: 0.8; +.focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } -.hover\:opacity-90:hover { - opacity: 0.9; +.focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } -.hover\:opacity-95:hover { - opacity: 0.95; +.focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } -.hover\:opacity-100:hover { - opacity: 1; +.focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } -.focus\:opacity-0:focus { - opacity: 0; +.focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } -.focus\:opacity-5:focus { - opacity: 0.05; +.focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } -.focus\:opacity-10:focus { - opacity: 0.1; +.focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } -.focus\:opacity-20:focus { - opacity: 0.2; +.focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } -.focus\:opacity-25:focus { - opacity: 0.25; +.focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } -.focus\:opacity-30:focus { - opacity: 0.3; +.focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } -.focus\:opacity-40:focus { - opacity: 0.4; +.focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } -.focus\:opacity-50:focus { - opacity: 0.5; +.focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } -.focus\:opacity-60:focus { - opacity: 0.6; +.focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } -.focus\:opacity-70:focus { - opacity: 0.7; +.hover\:border-transparent:hover { + border-color: transparent; } -.focus\:opacity-75:focus { - opacity: 0.75; +.hover\:border-current:hover { + border-color: currentColor; } -.focus\:opacity-80:focus { - opacity: 0.8; +.hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } -.focus\:opacity-90:focus { - opacity: 0.9; +.hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } -.focus\:opacity-95:focus { - opacity: 0.95; +.hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } -.focus\:opacity-100:focus { - opacity: 1; +.hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } -.outline-none { - outline: 2px solid transparent; - outline-offset: 2px; +.hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } -.outline-white { - outline: 2px dotted white; - outline-offset: 2px; +.hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } -.outline-black { - outline: 2px dotted black; - outline-offset: 2px; +.hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } -.focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; +.hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } -.focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; +.hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } -.focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; +.hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } -.focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; +.hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } -.focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; +.hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } -.focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; +.hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } -.overflow-auto { - overflow: auto; +.hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } -.overflow-hidden { - overflow: hidden; +.hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } -.overflow-visible { - overflow: visible; +.hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } -.overflow-scroll { - overflow: scroll; +.hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } -.overflow-x-auto { - overflow-x: auto; +.hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } -.overflow-y-auto { - overflow-y: auto; +.hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } -.overflow-x-hidden { - overflow-x: hidden; +.hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } -.overflow-y-hidden { - overflow-y: hidden; +.hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } -.overflow-x-visible { - overflow-x: visible; +.hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } -.overflow-y-visible { - overflow-y: visible; +.hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } -.overflow-x-scroll { - overflow-x: scroll; +.hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } -.overflow-y-scroll { - overflow-y: scroll; +.hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } -.overscroll-auto { - overscroll-behavior: auto; +.hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } -.overscroll-contain { - overscroll-behavior: contain; +.hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } -.overscroll-none { - overscroll-behavior: none; +.hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } -.overscroll-y-auto { - overscroll-behavior-y: auto; +.hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } -.overscroll-y-contain { - overscroll-behavior-y: contain; +.hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } -.overscroll-y-none { - overscroll-behavior-y: none; +.hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } -.overscroll-x-auto { - overscroll-behavior-x: auto; +.hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } -.overscroll-x-contain { - overscroll-behavior-x: contain; +.hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } -.overscroll-x-none { - overscroll-behavior-x: none; +.hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } -.p-0 { - padding: 0px; +.hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } -.p-1 { - padding: 0.25rem; +.hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } -.p-2 { - padding: 0.5rem; +.hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } -.p-3 { - padding: 0.75rem; +.hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } -.p-4 { - padding: 1rem; +.hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } -.p-5 { - padding: 1.25rem; +.hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } -.p-6 { - padding: 1.5rem; +.hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } -.p-7 { - padding: 1.75rem; +.hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } -.p-8 { - padding: 2rem; +.hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } -.p-9 { - padding: 2.25rem; +.hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } -.p-10 { - padding: 2.5rem; +.hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } -.p-11 { - padding: 2.75rem; +.hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } -.p-12 { - padding: 3rem; +.hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } -.p-14 { - padding: 3.5rem; +.hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } -.p-16 { - padding: 4rem; -} - -.p-20 { - padding: 5rem; +.hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } -.p-24 { - padding: 6rem; +.hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } -.p-28 { - padding: 7rem; +.hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } -.p-32 { - padding: 8rem; +.hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } -.p-36 { - padding: 9rem; +.hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } -.p-40 { - padding: 10rem; +.hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } -.p-44 { - padding: 11rem; +.hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } -.p-48 { - padding: 12rem; +.hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } -.p-52 { - padding: 13rem; +.hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } -.p-56 { - padding: 14rem; +.hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } -.p-60 { - padding: 15rem; +.hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } -.p-64 { - padding: 16rem; +.hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } -.p-72 { - padding: 18rem; +.hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } -.p-80 { - padding: 20rem; +.hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } -.p-96 { - padding: 24rem; +.hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } -.p-px { - padding: 1px; +.hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } -.p-0\.5 { - padding: 0.125rem; +.hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } -.p-1\.5 { - padding: 0.375rem; +.hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } -.p-2\.5 { - padding: 0.625rem; +.hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } -.p-3\.5 { - padding: 0.875rem; +.hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } -.py-0 { - padding-top: 0px; - padding-bottom: 0px; +.hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } -.px-0 { - padding-left: 0px; - padding-right: 0px; +.hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } -.py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; +.hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } -.px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; +.hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } -.py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; +.hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } -.px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; +.hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } -.py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; +.hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } -.px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; +.hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } -.py-4 { - padding-top: 1rem; - padding-bottom: 1rem; +.hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } -.px-4 { - padding-left: 1rem; - padding-right: 1rem; +.hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } -.py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; +.hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } -.px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; +.hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } -.py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; +.hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } -.px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; +.hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } -.py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; +.focus\:border-transparent:focus { + border-color: transparent; } -.px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; +.focus\:border-current:focus { + border-color: currentColor; } -.py-8 { - padding-top: 2rem; - padding-bottom: 2rem; +.focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } -.px-8 { - padding-left: 2rem; - padding-right: 2rem; +.focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } -.py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; +.focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } -.px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; +.focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } -.py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; +.focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } -.px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; +.focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } -.py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; +.focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } -.px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; +.focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } -.py-12 { - padding-top: 3rem; - padding-bottom: 3rem; +.focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } -.px-12 { - padding-left: 3rem; - padding-right: 3rem; +.focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } -.py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; +.focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } -.px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; +.focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } -.py-16 { - padding-top: 4rem; - padding-bottom: 4rem; +.focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } -.px-16 { - padding-left: 4rem; - padding-right: 4rem; +.focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } -.py-20 { - padding-top: 5rem; - padding-bottom: 5rem; +.focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } -.px-20 { - padding-left: 5rem; - padding-right: 5rem; +.focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } -.py-24 { - padding-top: 6rem; - padding-bottom: 6rem; +.focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } -.px-24 { - padding-left: 6rem; - padding-right: 6rem; +.focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } -.py-28 { - padding-top: 7rem; - padding-bottom: 7rem; +.focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } -.px-28 { - padding-left: 7rem; - padding-right: 7rem; +.focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } -.py-32 { - padding-top: 8rem; - padding-bottom: 8rem; +.focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } -.px-32 { - padding-left: 8rem; - padding-right: 8rem; +.focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } -.py-36 { - padding-top: 9rem; - padding-bottom: 9rem; +.focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } -.px-36 { - padding-left: 9rem; - padding-right: 9rem; +.focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } -.py-40 { - padding-top: 10rem; - padding-bottom: 10rem; +.focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } -.px-40 { - padding-left: 10rem; - padding-right: 10rem; +.focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } -.py-44 { - padding-top: 11rem; - padding-bottom: 11rem; +.focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } -.px-44 { - padding-left: 11rem; - padding-right: 11rem; +.focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } -.py-48 { - padding-top: 12rem; - padding-bottom: 12rem; +.focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } -.px-48 { - padding-left: 12rem; - padding-right: 12rem; +.focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } -.py-52 { - padding-top: 13rem; - padding-bottom: 13rem; +.focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } -.px-52 { - padding-left: 13rem; - padding-right: 13rem; +.focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } -.py-56 { - padding-top: 14rem; - padding-bottom: 14rem; +.focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } -.px-56 { - padding-left: 14rem; - padding-right: 14rem; +.focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } -.py-60 { - padding-top: 15rem; - padding-bottom: 15rem; +.focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } -.px-60 { - padding-left: 15rem; - padding-right: 15rem; +.focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } -.py-64 { - padding-top: 16rem; - padding-bottom: 16rem; +.focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } -.px-64 { - padding-left: 16rem; - padding-right: 16rem; +.focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } -.py-72 { - padding-top: 18rem; - padding-bottom: 18rem; +.focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } -.px-72 { - padding-left: 18rem; - padding-right: 18rem; +.focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } -.py-80 { - padding-top: 20rem; - padding-bottom: 20rem; +.focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } -.px-80 { - padding-left: 20rem; - padding-right: 20rem; +.focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } -.py-96 { - padding-top: 24rem; - padding-bottom: 24rem; +.focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } -.px-96 { - padding-left: 24rem; - padding-right: 24rem; +.focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } -.py-px { - padding-top: 1px; - padding-bottom: 1px; +.focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } -.px-px { - padding-left: 1px; - padding-right: 1px; +.focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } -.py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; +.focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } -.px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; +.focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } -.py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; +.focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } -.px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; +.focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } -.py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; +.focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } -.px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; +.focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } -.py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; +.focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } -.px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; +.focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } -.pt-0 { - padding-top: 0px; +.focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } -.pr-0 { - padding-right: 0px; +.focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } -.pb-0 { - padding-bottom: 0px; +.focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } -.pl-0 { - padding-left: 0px; +.focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } -.pt-1 { - padding-top: 0.25rem; +.focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } -.pr-1 { - padding-right: 0.25rem; +.focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } -.pb-1 { - padding-bottom: 0.25rem; +.focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } -.pl-1 { - padding-left: 0.25rem; +.focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } -.pt-2 { - padding-top: 0.5rem; +.focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } -.pr-2 { - padding-right: 0.5rem; +.focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } -.pb-2 { - padding-bottom: 0.5rem; +.focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } -.pl-2 { - padding-left: 0.5rem; +.focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } -.pt-3 { - padding-top: 0.75rem; +.focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } -.pr-3 { - padding-right: 0.75rem; +.focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } -.pb-3 { - padding-bottom: 0.75rem; +.focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } -.pl-3 { - padding-left: 0.75rem; +.focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } -.pt-4 { - padding-top: 1rem; +.focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } -.pr-4 { - padding-right: 1rem; +.focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } -.pb-4 { - padding-bottom: 1rem; +.focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } -.pl-4 { - padding-left: 1rem; +.focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } -.pt-5 { - padding-top: 1.25rem; +.focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } -.pr-5 { - padding-right: 1.25rem; +.focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } -.pb-5 { - padding-bottom: 1.25rem; +.focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } -.pl-5 { - padding-left: 1.25rem; +.focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } -.pt-6 { - padding-top: 1.5rem; +.focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } -.pr-6 { - padding-right: 1.5rem; +.focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } -.pb-6 { - padding-bottom: 1.5rem; +.focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } -.pl-6 { - padding-left: 1.5rem; +.focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } -.pt-7 { - padding-top: 1.75rem; +.border-opacity-0 { + --tw-border-opacity: 0; } -.pr-7 { - padding-right: 1.75rem; +.border-opacity-5 { + --tw-border-opacity: 0.05; } -.pb-7 { - padding-bottom: 1.75rem; +.border-opacity-10 { + --tw-border-opacity: 0.1; } -.pl-7 { - padding-left: 1.75rem; +.border-opacity-20 { + --tw-border-opacity: 0.2; } -.pt-8 { - padding-top: 2rem; +.border-opacity-25 { + --tw-border-opacity: 0.25; } -.pr-8 { - padding-right: 2rem; +.border-opacity-30 { + --tw-border-opacity: 0.3; } -.pb-8 { - padding-bottom: 2rem; +.border-opacity-40 { + --tw-border-opacity: 0.4; } -.pl-8 { - padding-left: 2rem; +.border-opacity-50 { + --tw-border-opacity: 0.5; } -.pt-9 { - padding-top: 2.25rem; +.border-opacity-60 { + --tw-border-opacity: 0.6; } -.pr-9 { - padding-right: 2.25rem; +.border-opacity-70 { + --tw-border-opacity: 0.7; } -.pb-9 { - padding-bottom: 2.25rem; +.border-opacity-75 { + --tw-border-opacity: 0.75; } -.pl-9 { - padding-left: 2.25rem; +.border-opacity-80 { + --tw-border-opacity: 0.8; } -.pt-10 { - padding-top: 2.5rem; +.border-opacity-90 { + --tw-border-opacity: 0.9; } -.pr-10 { - padding-right: 2.5rem; +.border-opacity-95 { + --tw-border-opacity: 0.95; } -.pb-10 { - padding-bottom: 2.5rem; +.border-opacity-100 { + --tw-border-opacity: 1; } -.pl-10 { - padding-left: 2.5rem; +.group:hover .group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } -.pt-11 { - padding-top: 2.75rem; +.group:hover .group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } -.pr-11 { - padding-right: 2.75rem; +.group:hover .group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } -.pb-11 { - padding-bottom: 2.75rem; +.group:hover .group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } -.pl-11 { - padding-left: 2.75rem; +.group:hover .group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } -.pt-12 { - padding-top: 3rem; +.group:hover .group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } -.pr-12 { - padding-right: 3rem; +.group:hover .group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } -.pb-12 { - padding-bottom: 3rem; +.group:hover .group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } -.pl-12 { - padding-left: 3rem; +.group:hover .group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } -.pt-14 { - padding-top: 3.5rem; +.group:hover .group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } -.pr-14 { - padding-right: 3.5rem; +.group:hover .group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } -.pb-14 { - padding-bottom: 3.5rem; +.group:hover .group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } -.pl-14 { - padding-left: 3.5rem; +.group:hover .group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } -.pt-16 { - padding-top: 4rem; +.group:hover .group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } -.pr-16 { - padding-right: 4rem; +.group:hover .group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } -.pb-16 { - padding-bottom: 4rem; +.focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } -.pl-16 { - padding-left: 4rem; +.focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } -.pt-20 { - padding-top: 5rem; +.focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } -.pr-20 { - padding-right: 5rem; +.focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } -.pb-20 { - padding-bottom: 5rem; +.focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } -.pl-20 { - padding-left: 5rem; +.focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } -.pt-24 { - padding-top: 6rem; +.focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } -.pr-24 { - padding-right: 6rem; +.focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } -.pb-24 { - padding-bottom: 6rem; +.focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } -.pl-24 { - padding-left: 6rem; +.focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } -.pt-28 { - padding-top: 7rem; +.focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } -.pr-28 { - padding-right: 7rem; +.focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } -.pb-28 { - padding-bottom: 7rem; +.focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } -.pl-28 { - padding-left: 7rem; +.focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } -.pt-32 { - padding-top: 8rem; +.focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } -.pr-32 { - padding-right: 8rem; +.hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } -.pb-32 { - padding-bottom: 8rem; +.hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } -.pl-32 { - padding-left: 8rem; +.hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } -.pt-36 { - padding-top: 9rem; +.hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } -.pr-36 { - padding-right: 9rem; +.hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } -.pb-36 { - padding-bottom: 9rem; +.hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } -.pl-36 { - padding-left: 9rem; +.hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } -.pt-40 { - padding-top: 10rem; +.hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } -.pr-40 { - padding-right: 10rem; +.hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } -.pb-40 { - padding-bottom: 10rem; +.hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } -.pl-40 { - padding-left: 10rem; +.hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } -.pt-44 { - padding-top: 11rem; +.hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } -.pr-44 { - padding-right: 11rem; +.hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } -.pb-44 { - padding-bottom: 11rem; +.hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } -.pl-44 { - padding-left: 11rem; +.hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } -.pt-48 { - padding-top: 12rem; +.focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } -.pr-48 { - padding-right: 12rem; +.focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } -.pb-48 { - padding-bottom: 12rem; +.focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } -.pl-48 { - padding-left: 12rem; +.focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } -.pt-52 { - padding-top: 13rem; +.focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } -.pr-52 { - padding-right: 13rem; +.focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } -.pb-52 { - padding-bottom: 13rem; +.focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } -.pl-52 { - padding-left: 13rem; +.focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } -.pt-56 { - padding-top: 14rem; +.focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } -.pr-56 { - padding-right: 14rem; +.focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } -.pb-56 { - padding-bottom: 14rem; +.focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } -.pl-56 { - padding-left: 14rem; +.focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } -.pt-60 { - padding-top: 15rem; +.focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } -.pr-60 { - padding-right: 15rem; +.focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } -.pb-60 { - padding-bottom: 15rem; +.focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } -.pl-60 { - padding-left: 15rem; +.bg-transparent { + background-color: transparent; } -.pt-64 { - padding-top: 16rem; +.bg-current { + background-color: currentColor; } -.pr-64 { - padding-right: 16rem; +.bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } -.pb-64 { - padding-bottom: 16rem; +.bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } -.pl-64 { - padding-left: 16rem; +.bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } -.pt-72 { - padding-top: 18rem; +.bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } -.pr-72 { - padding-right: 18rem; +.bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } -.pb-72 { - padding-bottom: 18rem; +.bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } -.pl-72 { - padding-left: 18rem; +.bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } -.pt-80 { - padding-top: 20rem; +.bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } -.pr-80 { - padding-right: 20rem; +.bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } -.pb-80 { - padding-bottom: 20rem; +.bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } -.pl-80 { - padding-left: 20rem; +.bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } -.pt-96 { - padding-top: 24rem; +.bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } -.pr-96 { - padding-right: 24rem; +.bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } -.pb-96 { - padding-bottom: 24rem; +.bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } -.pl-96 { - padding-left: 24rem; +.bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } -.pt-px { - padding-top: 1px; +.bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } -.pr-px { - padding-right: 1px; +.bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } -.pb-px { - padding-bottom: 1px; +.bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } -.pl-px { - padding-left: 1px; +.bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } -.pt-0\.5 { - padding-top: 0.125rem; +.bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } -.pr-0\.5 { - padding-right: 0.125rem; +.bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } -.pb-0\.5 { - padding-bottom: 0.125rem; +.bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } -.pl-0\.5 { - padding-left: 0.125rem; +.bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } -.pt-1\.5 { - padding-top: 0.375rem; +.bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } -.pr-1\.5 { - padding-right: 0.375rem; +.bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } -.pb-1\.5 { - padding-bottom: 0.375rem; +.bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } -.pl-1\.5 { - padding-left: 0.375rem; +.bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } -.pt-2\.5 { - padding-top: 0.625rem; +.bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } -.pr-2\.5 { - padding-right: 0.625rem; +.bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } -.pb-2\.5 { - padding-bottom: 0.625rem; +.bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } -.pl-2\.5 { - padding-left: 0.625rem; +.bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } -.pt-3\.5 { - padding-top: 0.875rem; +.bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } -.pr-3\.5 { - padding-right: 0.875rem; +.bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } -.pb-3\.5 { - padding-bottom: 0.875rem; +.bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } -.pl-3\.5 { - padding-left: 0.875rem; +.bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } -.placeholder-transparent::placeholder { - color: transparent; +.bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } -.placeholder-current::placeholder { - color: currentColor; +.bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } -.placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +.bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } -.placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +.bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } -.placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +.bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } -.placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +.bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } -.placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +.bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } -.placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +.bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } -.placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +.bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } -.placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +.bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } -.placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +.bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } -.placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +.bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } -.placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +.bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } -.placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +.bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } -.placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); +.bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } -.placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); +.bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } -.placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); +.bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } -.placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); +.bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } -.placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); +.bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } -.placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); +.bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } -.placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); +.bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } -.placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); +.bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } -.placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); +.bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } -.placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); +.bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } -.placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); +.bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } -.placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); +.bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } -.placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); +.bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } -.placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); +.bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } -.placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); +.bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } -.placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +.bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } -.placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); +.bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } -.placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); +.bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } -.placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); +.bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } -.placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); +.bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } -.placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); +.bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } -.placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); +.bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } -.placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); +.bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } -.placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); +.bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } -.placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); +.bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } -.placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); +.bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } -.placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); +.bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } -.placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); +.bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } -.placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); +.bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } -.placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); +.bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } -.placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); +.bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } -.placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); +.bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } -.placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); +.bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } -.placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-transparent { + background-color: transparent; } -.placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-current { + background-color: currentColor; } -.placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } -.placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } -.placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } -.placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } -.placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } -.placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } -.placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } -.placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } -.placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } -.placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } -.placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } -.placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } -.placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } -.placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } -.placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } -.placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } -.placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } -.placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } -.placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } -.placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } -.placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } -.placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } -.placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } -.placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } -.placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } -.placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } -.placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } -.placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } -.placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } -.placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } -.placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } -.placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } -.placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } -.placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } -.placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } -.focus\:placeholder-transparent:focus::placeholder { - color: transparent; +.group:hover .group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } -.focus\:placeholder-current:focus::placeholder { - color: currentColor; +.group:hover .group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } -.focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } -.focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } -.focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } -.focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } -.focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } -.focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } -.focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } -.focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } -.focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } -.focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } -.focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } -.focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } -.focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } -.focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } -.focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } -.focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } -.focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } -.focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } -.focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } -.focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } -.focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); +.group:hover .group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); +.focus-within\:bg-transparent:focus-within { + background-color: transparent; } -.focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); +.focus-within\:bg-current:focus-within { + background-color: currentColor; } -.focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +.focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); +.focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } -.focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); +.focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } -.focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); +.focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } -.focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); +.focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); +.focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); +.focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } -.focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); +.focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } -.placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; +.focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } -.placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; +.focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } -.placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; +.focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } -.placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; +.focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } -.placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; +.focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } -.placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; +.focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } -.placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; +.focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } -.placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; +.focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } -.placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; +.focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } -.placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; +.focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } -.placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; +.focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } -.placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; +.focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } -.placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; +.focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } -.placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; +.focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } -.placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; +.focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; +.focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; +.focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; +.focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; +.focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; +.focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; +.focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; +.focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; +.focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; +.focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; +.focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; +.focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; +.focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; +.focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; +.focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } -.focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; +.focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } -.pointer-events-none { - pointer-events: none; +.focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } -.pointer-events-auto { - pointer-events: auto; +.focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } -.static { - position: static; +.focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } -.fixed { - position: fixed; +.focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } -.absolute { - position: absolute; +.focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } -.relative { - position: relative; +.focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } -.sticky { - position: sticky; +.focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } -.inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; +.focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } -.inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; +.focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } -.inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; +.focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } -.inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; +.focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } -.inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; +.focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } -.inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; +.focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } -.inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; +.focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } -.inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; +.focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } -.inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; +.focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } -.inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; +.focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } -.inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; +.hover\:bg-transparent:hover { + background-color: transparent; } -.inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; +.hover\:bg-current:hover { + background-color: currentColor; } -.inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; +.hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } -.inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; +.hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } -.inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; +.hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } -.inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; +.hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } -.inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; +.hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } -.inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; +.hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } -.inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; +.hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } -.inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; +.hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } -.inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; +.hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } -.inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; +.hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } -.inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; +.hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } -.inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; +.hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } -.inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; +.hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } -.inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; +.hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } -.inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; +.hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } -.inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; +.hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } -.inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; +.hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } -.inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; +.hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } -.inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; +.hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } -.inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; +.hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } -.inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; +.hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } -.inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; +.hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } -.inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; +.hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } -.inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; +.hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } -.-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; +.hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } -.-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; +.hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } -.-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; +.hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } -.-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; +.hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } -.-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; +.hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } -.-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; +.hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } -.-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; +.hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } -.-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; +.hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } -.-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; +.hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } -.-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; +.hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } -.-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; +.hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } -.-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; +.hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } -.-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; +.hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } -.-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; +.hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } -.-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; +.hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } -.-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; +.hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } -.-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; +.hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } -.-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; +.hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } -.-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; +.hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } -.-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; +.hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } -.-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; +.hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } -.-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; +.hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } -.-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; +.hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } -.-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; +.hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } -.-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; +.hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } -.-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; +.hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } -.-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; +.hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } -.-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; +.hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } -.-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; +.hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } -.-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; +.hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } -.-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; +.hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } -.-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; +.hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } -.-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; +.hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } -.-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; +.hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } -.-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; +.hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } -.inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; +.hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } -.inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; +.hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } -.inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; +.hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } -.inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; +.hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } -.inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; +.hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } -.inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; +.hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } -.inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; +.hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } -.-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; +.hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } -.-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; +.hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } -.-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; +.hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } -.-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; +.hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } -.-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; +.hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } -.-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; +.hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } -.-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; +.hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } -.inset-y-0 { - top: 0px; - bottom: 0px; +.hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } -.inset-x-0 { - right: 0px; - left: 0px; +.hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } -.inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; +.hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } -.inset-x-1 { - right: 0.25rem; - left: 0.25rem; +.hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } -.inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; +.hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } -.inset-x-2 { - right: 0.5rem; - left: 0.5rem; +.hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } -.inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; +.hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } -.inset-x-3 { - right: 0.75rem; - left: 0.75rem; +.hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } -.inset-y-4 { - top: 1rem; - bottom: 1rem; +.hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } -.inset-x-4 { - right: 1rem; - left: 1rem; +.focus\:bg-transparent:focus { + background-color: transparent; } -.inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; +.focus\:bg-current:focus { + background-color: currentColor; } -.inset-x-5 { - right: 1.25rem; - left: 1.25rem; +.focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } -.inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; +.focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } -.inset-x-6 { - right: 1.5rem; - left: 1.5rem; +.focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } -.inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; +.focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } -.inset-x-7 { - right: 1.75rem; - left: 1.75rem; +.focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } -.inset-y-8 { - top: 2rem; - bottom: 2rem; +.focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } -.inset-x-8 { - right: 2rem; - left: 2rem; +.focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } -.inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; +.focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } -.inset-x-9 { - right: 2.25rem; - left: 2.25rem; +.focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } -.inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; +.focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } -.inset-x-10 { - right: 2.5rem; - left: 2.5rem; +.focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } -.inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; +.focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } -.inset-x-11 { - right: 2.75rem; - left: 2.75rem; +.focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } -.inset-y-12 { - top: 3rem; - bottom: 3rem; +.focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } -.inset-x-12 { - right: 3rem; - left: 3rem; +.focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } -.inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; +.focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } -.inset-x-14 { - right: 3.5rem; - left: 3.5rem; +.focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } -.inset-y-16 { - top: 4rem; - bottom: 4rem; +.focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } -.inset-x-16 { - right: 4rem; - left: 4rem; +.focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } -.inset-y-20 { - top: 5rem; - bottom: 5rem; +.focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } -.inset-x-20 { - right: 5rem; - left: 5rem; +.focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } -.inset-y-24 { - top: 6rem; - bottom: 6rem; +.focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } -.inset-x-24 { - right: 6rem; - left: 6rem; +.focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } -.inset-y-28 { - top: 7rem; - bottom: 7rem; +.focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } -.inset-x-28 { - right: 7rem; - left: 7rem; +.focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } -.inset-y-32 { - top: 8rem; - bottom: 8rem; +.focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } -.inset-x-32 { - right: 8rem; - left: 8rem; +.focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } -.inset-y-36 { - top: 9rem; - bottom: 9rem; +.focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } -.inset-x-36 { - right: 9rem; - left: 9rem; +.focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } -.inset-y-40 { - top: 10rem; - bottom: 10rem; +.focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } -.inset-x-40 { - right: 10rem; - left: 10rem; +.focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } -.inset-y-44 { - top: 11rem; - bottom: 11rem; +.focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } -.inset-x-44 { - right: 11rem; - left: 11rem; +.focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } -.inset-y-48 { - top: 12rem; - bottom: 12rem; +.focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } -.inset-x-48 { - right: 12rem; - left: 12rem; +.focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } -.inset-y-52 { - top: 13rem; - bottom: 13rem; +.focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } -.inset-x-52 { - right: 13rem; - left: 13rem; +.focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } -.inset-y-56 { - top: 14rem; - bottom: 14rem; +.focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } -.inset-x-56 { - right: 14rem; - left: 14rem; +.focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } -.inset-y-60 { - top: 15rem; - bottom: 15rem; +.focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } -.inset-x-60 { - right: 15rem; - left: 15rem; +.focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } -.inset-y-64 { - top: 16rem; - bottom: 16rem; +.focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } -.inset-x-64 { - right: 16rem; - left: 16rem; +.focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } -.inset-y-72 { - top: 18rem; - bottom: 18rem; +.focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } -.inset-x-72 { - right: 18rem; - left: 18rem; +.focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } -.inset-y-80 { - top: 20rem; - bottom: 20rem; +.focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } -.inset-x-80 { - right: 20rem; - left: 20rem; +.focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } -.inset-y-96 { - top: 24rem; - bottom: 24rem; +.focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } -.inset-x-96 { - right: 24rem; - left: 24rem; +.focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } -.inset-y-auto { - top: auto; - bottom: auto; +.focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } -.inset-x-auto { - right: auto; - left: auto; +.focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } -.inset-y-px { - top: 1px; - bottom: 1px; +.focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } -.inset-x-px { - right: 1px; - left: 1px; +.focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } -.inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; +.focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } -.inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; +.focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } -.inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; +.focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } -.inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; +.focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } -.inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; +.focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } -.inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; +.focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } -.inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; +.focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } -.inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; +.focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } -.-inset-y-0 { - top: 0px; - bottom: 0px; +.focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } -.-inset-x-0 { - right: 0px; - left: 0px; +.focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } -.-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; +.focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } -.-inset-x-1 { - right: -0.25rem; - left: -0.25rem; +.focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } -.-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; +.focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } -.-inset-x-2 { - right: -0.5rem; - left: -0.5rem; +.focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } -.-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; +.focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } -.-inset-x-3 { - right: -0.75rem; - left: -0.75rem; +.focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } -.-inset-y-4 { - top: -1rem; - bottom: -1rem; +.focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } -.-inset-x-4 { - right: -1rem; - left: -1rem; +.focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } -.-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; +.focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } -.-inset-x-5 { - right: -1.25rem; - left: -1.25rem; +.focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } -.-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; +.focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } -.-inset-x-6 { - right: -1.5rem; - left: -1.5rem; +.focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } -.-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; +.focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } -.-inset-x-7 { - right: -1.75rem; - left: -1.75rem; +.focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } -.-inset-y-8 { - top: -2rem; - bottom: -2rem; +.focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } -.-inset-x-8 { - right: -2rem; - left: -2rem; +.focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } -.-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; +.focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } -.-inset-x-9 { - right: -2.25rem; - left: -2.25rem; +.focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } -.-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; +.focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } -.-inset-x-10 { - right: -2.5rem; - left: -2.5rem; +.bg-opacity-0 { + --tw-bg-opacity: 0; } -.-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; +.bg-opacity-5 { + --tw-bg-opacity: 0.05; } -.-inset-x-11 { - right: -2.75rem; - left: -2.75rem; +.bg-opacity-10 { + --tw-bg-opacity: 0.1; } -.-inset-y-12 { - top: -3rem; - bottom: -3rem; +.bg-opacity-20 { + --tw-bg-opacity: 0.2; } -.-inset-x-12 { - right: -3rem; - left: -3rem; +.bg-opacity-25 { + --tw-bg-opacity: 0.25; } -.-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; +.bg-opacity-30 { + --tw-bg-opacity: 0.3; } -.-inset-x-14 { - right: -3.5rem; - left: -3.5rem; +.bg-opacity-40 { + --tw-bg-opacity: 0.4; } -.-inset-y-16 { - top: -4rem; - bottom: -4rem; +.bg-opacity-50 { + --tw-bg-opacity: 0.5; } -.-inset-x-16 { - right: -4rem; - left: -4rem; +.bg-opacity-60 { + --tw-bg-opacity: 0.6; } -.-inset-y-20 { - top: -5rem; - bottom: -5rem; +.bg-opacity-70 { + --tw-bg-opacity: 0.7; } -.-inset-x-20 { - right: -5rem; - left: -5rem; +.bg-opacity-75 { + --tw-bg-opacity: 0.75; } -.-inset-y-24 { - top: -6rem; - bottom: -6rem; +.bg-opacity-80 { + --tw-bg-opacity: 0.8; } -.-inset-x-24 { - right: -6rem; - left: -6rem; +.bg-opacity-90 { + --tw-bg-opacity: 0.9; } -.-inset-y-28 { - top: -7rem; - bottom: -7rem; +.bg-opacity-95 { + --tw-bg-opacity: 0.95; } -.-inset-x-28 { - right: -7rem; - left: -7rem; +.bg-opacity-100 { + --tw-bg-opacity: 1; } -.-inset-y-32 { - top: -8rem; - bottom: -8rem; +.group:hover .group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } -.-inset-x-32 { - right: -8rem; - left: -8rem; +.group:hover .group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } -.-inset-y-36 { - top: -9rem; - bottom: -9rem; +.group:hover .group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } -.-inset-x-36 { - right: -9rem; - left: -9rem; +.group:hover .group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } -.-inset-y-40 { - top: -10rem; - bottom: -10rem; +.group:hover .group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } -.-inset-x-40 { - right: -10rem; - left: -10rem; +.group:hover .group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } -.-inset-y-44 { - top: -11rem; - bottom: -11rem; +.group:hover .group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } -.-inset-x-44 { - right: -11rem; - left: -11rem; +.group:hover .group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } -.-inset-y-48 { - top: -12rem; - bottom: -12rem; +.group:hover .group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } -.-inset-x-48 { - right: -12rem; - left: -12rem; +.group:hover .group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } -.-inset-y-52 { - top: -13rem; - bottom: -13rem; +.group:hover .group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } -.-inset-x-52 { - right: -13rem; - left: -13rem; +.group:hover .group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } -.-inset-y-56 { - top: -14rem; - bottom: -14rem; +.group:hover .group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } -.-inset-x-56 { - right: -14rem; - left: -14rem; +.group:hover .group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } -.-inset-y-60 { - top: -15rem; - bottom: -15rem; +.group:hover .group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } -.-inset-x-60 { - right: -15rem; - left: -15rem; +.focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } -.-inset-y-64 { - top: -16rem; - bottom: -16rem; +.focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } -.-inset-x-64 { - right: -16rem; - left: -16rem; +.focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } -.-inset-y-72 { - top: -18rem; - bottom: -18rem; +.focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } -.-inset-x-72 { - right: -18rem; - left: -18rem; +.focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } -.-inset-y-80 { - top: -20rem; - bottom: -20rem; +.focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } -.-inset-x-80 { - right: -20rem; - left: -20rem; +.focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } -.-inset-y-96 { - top: -24rem; - bottom: -24rem; +.focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } -.-inset-x-96 { - right: -24rem; - left: -24rem; +.focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } -.-inset-y-px { - top: -1px; - bottom: -1px; +.focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } -.-inset-x-px { - right: -1px; - left: -1px; +.focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } -.-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; +.focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } -.-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; +.focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } -.-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; +.focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } -.-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; +.focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } -.-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; +.hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } -.-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; +.hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } -.-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; +.hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } -.-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; +.hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } -.inset-y-1\/2 { - top: 50%; - bottom: 50%; +.hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } -.inset-x-1\/2 { - right: 50%; - left: 50%; +.hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } -.inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; +.hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } -.inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; +.hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } -.inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; +.hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } -.inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; +.hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } -.inset-y-1\/4 { - top: 25%; - bottom: 25%; +.hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } -.inset-x-1\/4 { - right: 25%; - left: 25%; +.hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } -.inset-y-2\/4 { - top: 50%; - bottom: 50%; +.hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } -.inset-x-2\/4 { - right: 50%; - left: 50%; +.hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } -.inset-y-3\/4 { - top: 75%; - bottom: 75%; +.hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } -.inset-x-3\/4 { - right: 75%; - left: 75%; +.focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } -.inset-y-full { - top: 100%; - bottom: 100%; +.focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } -.inset-x-full { - right: 100%; - left: 100%; +.focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } -.-inset-y-1\/2 { - top: -50%; - bottom: -50%; +.focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } -.-inset-x-1\/2 { - right: -50%; - left: -50%; +.focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } -.-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; +.focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } -.-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; +.focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } -.-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; +.focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } -.-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; +.focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } -.-inset-y-1\/4 { - top: -25%; - bottom: -25%; +.focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } -.-inset-x-1\/4 { - right: -25%; - left: -25%; +.focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } -.-inset-y-2\/4 { - top: -50%; - bottom: -50%; +.focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } -.-inset-x-2\/4 { - right: -50%; - left: -50%; +.focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } -.-inset-y-3\/4 { - top: -75%; - bottom: -75%; +.focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } -.-inset-x-3\/4 { - right: -75%; - left: -75%; +.focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } -.-inset-y-full { - top: -100%; - bottom: -100%; +.bg-none { + background-image: none; } -.-inset-x-full { - right: -100%; - left: -100%; +.bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } -.top-0 { - top: 0px; +.bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } -.right-0 { - right: 0px; +.bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } -.bottom-0 { - bottom: 0px; +.bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } -.left-0 { - left: 0px; +.bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } -.top-1 { - top: 0.25rem; +.bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } -.right-1 { - right: 0.25rem; +.bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } -.bottom-1 { - bottom: 0.25rem; +.bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } -.left-1 { - left: 0.25rem; +.from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.top-2 { - top: 0.5rem; +.from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.right-2 { - right: 0.5rem; +.from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.bottom-2 { - bottom: 0.5rem; +.from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.left-2 { - left: 0.5rem; +.from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.top-3 { - top: 0.75rem; +.from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.right-3 { - right: 0.75rem; +.from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.bottom-3 { - bottom: 0.75rem; +.from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.left-3 { - left: 0.75rem; +.from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.top-4 { - top: 1rem; +.from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.right-4 { - right: 1rem; +.from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.bottom-4 { - bottom: 1rem; +.from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.left-4 { - left: 1rem; +.from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.top-5 { - top: 1.25rem; +.from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.right-5 { - right: 1.25rem; +.from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.bottom-5 { - bottom: 1.25rem; +.from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.left-5 { - left: 1.25rem; +.from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.top-6 { - top: 1.5rem; +.from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.right-6 { - right: 1.5rem; +.from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.bottom-6 { - bottom: 1.5rem; +.from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.left-6 { - left: 1.5rem; +.from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.top-7 { - top: 1.75rem; +.from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.right-7 { - right: 1.75rem; +.from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.bottom-7 { - bottom: 1.75rem; +.from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.left-7 { - left: 1.75rem; +.from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.top-8 { - top: 2rem; +.from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.right-8 { - right: 2rem; +.from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.bottom-8 { - bottom: 2rem; +.from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.left-8 { - left: 2rem; +.from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.top-9 { - top: 2.25rem; +.from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.right-9 { - right: 2.25rem; +.from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.bottom-9 { - bottom: 2.25rem; +.from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.left-9 { - left: 2.25rem; +.from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.top-10 { - top: 2.5rem; +.from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.right-10 { - right: 2.5rem; +.from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.bottom-10 { - bottom: 2.5rem; +.from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.left-10 { - left: 2.5rem; +.from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.top-11 { - top: 2.75rem; +.from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.right-11 { - right: 2.75rem; +.from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.bottom-11 { - bottom: 2.75rem; +.from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.left-11 { - left: 2.75rem; +.from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.top-12 { - top: 3rem; +.from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.right-12 { - right: 3rem; +.from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.bottom-12 { - bottom: 3rem; +.from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.left-12 { - left: 3rem; +.from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.top-14 { - top: 3.5rem; +.from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.right-14 { - right: 3.5rem; +.from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.bottom-14 { - bottom: 3.5rem; +.from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.left-14 { - left: 3.5rem; +.from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.top-16 { - top: 4rem; +.from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.right-16 { - right: 4rem; +.from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.bottom-16 { - bottom: 4rem; +.from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.left-16 { - left: 4rem; +.from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.top-20 { - top: 5rem; +.from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.right-20 { - right: 5rem; +.from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.bottom-20 { - bottom: 5rem; +.from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.left-20 { - left: 5rem; +.from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.top-24 { - top: 6rem; +.from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.right-24 { - right: 6rem; +.from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.bottom-24 { - bottom: 6rem; +.from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.left-24 { - left: 6rem; +.from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.top-28 { - top: 7rem; +.from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.right-28 { - right: 7rem; +.from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.bottom-28 { - bottom: 7rem; +.from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.left-28 { - left: 7rem; +.from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.top-32 { - top: 8rem; +.from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.right-32 { - right: 8rem; +.from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.bottom-32 { - bottom: 8rem; +.from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.left-32 { - left: 8rem; +.from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.top-36 { - top: 9rem; +.from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.right-36 { - right: 9rem; +.from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.bottom-36 { - bottom: 9rem; +.from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.left-36 { - left: 9rem; +.from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.top-40 { - top: 10rem; +.from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.right-40 { - right: 10rem; +.from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.bottom-40 { - bottom: 10rem; +.from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.left-40 { - left: 10rem; +.from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.top-44 { - top: 11rem; +.from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.right-44 { - right: 11rem; +.from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.bottom-44 { - bottom: 11rem; +.from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.left-44 { - left: 11rem; +.from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.top-48 { - top: 12rem; +.from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.right-48 { - right: 12rem; +.from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.bottom-48 { - bottom: 12rem; +.from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.left-48 { - left: 12rem; +.via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.top-52 { - top: 13rem; +.via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.right-52 { - right: 13rem; +.via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.bottom-52 { - bottom: 13rem; +.via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.left-52 { - left: 13rem; +.via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.top-56 { - top: 14rem; +.via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.right-56 { - right: 14rem; +.via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.bottom-56 { - bottom: 14rem; +.via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.left-56 { - left: 14rem; +.via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.top-60 { - top: 15rem; +.via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.right-60 { - right: 15rem; +.via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.bottom-60 { - bottom: 15rem; +.via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.left-60 { - left: 15rem; +.via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.top-64 { - top: 16rem; +.via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.right-64 { - right: 16rem; +.via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.bottom-64 { - bottom: 16rem; +.via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.left-64 { - left: 16rem; +.via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.top-72 { - top: 18rem; +.via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.right-72 { - right: 18rem; +.via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.bottom-72 { - bottom: 18rem; +.via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.left-72 { - left: 18rem; +.via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.top-80 { - top: 20rem; +.via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.right-80 { - right: 20rem; +.via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.bottom-80 { - bottom: 20rem; +.via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.left-80 { - left: 20rem; +.via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.top-96 { - top: 24rem; +.via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.right-96 { - right: 24rem; +.via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.bottom-96 { - bottom: 24rem; +.via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.left-96 { - left: 24rem; +.via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.top-auto { - top: auto; +.via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.right-auto { - right: auto; +.via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.bottom-auto { - bottom: auto; +.via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.left-auto { - left: auto; +.via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.top-px { - top: 1px; +.via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.right-px { - right: 1px; +.via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.bottom-px { - bottom: 1px; +.via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.left-px { - left: 1px; +.via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.top-0\.5 { - top: 0.125rem; +.via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.right-0\.5 { - right: 0.125rem; +.via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.bottom-0\.5 { - bottom: 0.125rem; +.via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.left-0\.5 { - left: 0.125rem; +.via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.top-1\.5 { - top: 0.375rem; +.via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.right-1\.5 { - right: 0.375rem; +.via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.bottom-1\.5 { - bottom: 0.375rem; +.via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.left-1\.5 { - left: 0.375rem; +.via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.top-2\.5 { - top: 0.625rem; +.via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.right-2\.5 { - right: 0.625rem; +.via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.bottom-2\.5 { - bottom: 0.625rem; +.via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.left-2\.5 { - left: 0.625rem; +.via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.top-3\.5 { - top: 0.875rem; +.via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.right-3\.5 { - right: 0.875rem; +.via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.bottom-3\.5 { - bottom: 0.875rem; +.via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.left-3\.5 { - left: 0.875rem; +.via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.-top-0 { - top: 0px; +.via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.-right-0 { - right: 0px; +.via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.-bottom-0 { - bottom: 0px; +.via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.-left-0 { - left: 0px; +.via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.-top-1 { - top: -0.25rem; +.via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.-right-1 { - right: -0.25rem; +.via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.-bottom-1 { - bottom: -0.25rem; +.via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.-left-1 { - left: -0.25rem; +.via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.-top-2 { - top: -0.5rem; +.via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.-right-2 { - right: -0.5rem; +.via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.-bottom-2 { - bottom: -0.5rem; +.via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.-left-2 { - left: -0.5rem; +.via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.-top-3 { - top: -0.75rem; +.via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.-right-3 { - right: -0.75rem; +.via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.-bottom-3 { - bottom: -0.75rem; +.via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.-left-3 { - left: -0.75rem; +.via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.-top-4 { - top: -1rem; +.via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.-right-4 { - right: -1rem; +.via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.-bottom-4 { - bottom: -1rem; +.via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.-left-4 { - left: -1rem; +.via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.-top-5 { - top: -1.25rem; +.via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.-right-5 { - right: -1.25rem; +.via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.-bottom-5 { - bottom: -1.25rem; +.via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.-left-5 { - left: -1.25rem; +.via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.-top-6 { - top: -1.5rem; +.via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.-right-6 { - right: -1.5rem; +.via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.-bottom-6 { - bottom: -1.5rem; +.via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.-left-6 { - left: -1.5rem; +.via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.-top-7 { - top: -1.75rem; +.via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.-right-7 { - right: -1.75rem; +.via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.-bottom-7 { - bottom: -1.75rem; +.via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.-left-7 { - left: -1.75rem; +.to-transparent { + --tw-gradient-to: transparent; } -.-top-8 { - top: -2rem; +.to-current { + --tw-gradient-to: currentColor; } -.-right-8 { - right: -2rem; +.to-black { + --tw-gradient-to: #000; } -.-bottom-8 { - bottom: -2rem; +.to-white { + --tw-gradient-to: #fff; } -.-left-8 { - left: -2rem; +.to-gray-50 { + --tw-gradient-to: #f9fafb; } -.-top-9 { - top: -2.25rem; +.to-gray-100 { + --tw-gradient-to: #f3f4f6; } -.-right-9 { - right: -2.25rem; +.to-gray-200 { + --tw-gradient-to: #e5e7eb; } -.-bottom-9 { - bottom: -2.25rem; +.to-gray-300 { + --tw-gradient-to: #d1d5db; } -.-left-9 { - left: -2.25rem; +.to-gray-400 { + --tw-gradient-to: #9ca3af; } -.-top-10 { - top: -2.5rem; +.to-gray-500 { + --tw-gradient-to: #6b7280; } -.-right-10 { - right: -2.5rem; +.to-gray-600 { + --tw-gradient-to: #4b5563; } -.-bottom-10 { - bottom: -2.5rem; +.to-gray-700 { + --tw-gradient-to: #374151; } -.-left-10 { - left: -2.5rem; +.to-gray-800 { + --tw-gradient-to: #1f2937; } -.-top-11 { - top: -2.75rem; +.to-gray-900 { + --tw-gradient-to: #111827; } -.-right-11 { - right: -2.75rem; +.to-red-50 { + --tw-gradient-to: #fef2f2; } -.-bottom-11 { - bottom: -2.75rem; +.to-red-100 { + --tw-gradient-to: #fee2e2; } -.-left-11 { - left: -2.75rem; +.to-red-200 { + --tw-gradient-to: #fecaca; } -.-top-12 { - top: -3rem; +.to-red-300 { + --tw-gradient-to: #fca5a5; } -.-right-12 { - right: -3rem; +.to-red-400 { + --tw-gradient-to: #f87171; } -.-bottom-12 { - bottom: -3rem; +.to-red-500 { + --tw-gradient-to: #ef4444; } -.-left-12 { - left: -3rem; +.to-red-600 { + --tw-gradient-to: #dc2626; } -.-top-14 { - top: -3.5rem; +.to-red-700 { + --tw-gradient-to: #b91c1c; } -.-right-14 { - right: -3.5rem; +.to-red-800 { + --tw-gradient-to: #991b1b; } -.-bottom-14 { - bottom: -3.5rem; +.to-red-900 { + --tw-gradient-to: #7f1d1d; } -.-left-14 { - left: -3.5rem; +.to-yellow-50 { + --tw-gradient-to: #fffbeb; } -.-top-16 { - top: -4rem; +.to-yellow-100 { + --tw-gradient-to: #fef3c7; } -.-right-16 { - right: -4rem; +.to-yellow-200 { + --tw-gradient-to: #fde68a; } -.-bottom-16 { - bottom: -4rem; +.to-yellow-300 { + --tw-gradient-to: #fcd34d; } -.-left-16 { - left: -4rem; +.to-yellow-400 { + --tw-gradient-to: #fbbf24; } -.-top-20 { - top: -5rem; +.to-yellow-500 { + --tw-gradient-to: #f59e0b; } -.-right-20 { - right: -5rem; +.to-yellow-600 { + --tw-gradient-to: #d97706; } -.-bottom-20 { - bottom: -5rem; +.to-yellow-700 { + --tw-gradient-to: #b45309; } -.-left-20 { - left: -5rem; +.to-yellow-800 { + --tw-gradient-to: #92400e; } -.-top-24 { - top: -6rem; +.to-yellow-900 { + --tw-gradient-to: #78350f; } -.-right-24 { - right: -6rem; +.to-green-50 { + --tw-gradient-to: #ecfdf5; } -.-bottom-24 { - bottom: -6rem; +.to-green-100 { + --tw-gradient-to: #d1fae5; } -.-left-24 { - left: -6rem; +.to-green-200 { + --tw-gradient-to: #a7f3d0; } -.-top-28 { - top: -7rem; +.to-green-300 { + --tw-gradient-to: #6ee7b7; } -.-right-28 { - right: -7rem; +.to-green-400 { + --tw-gradient-to: #34d399; } -.-bottom-28 { - bottom: -7rem; +.to-green-500 { + --tw-gradient-to: #10b981; } -.-left-28 { - left: -7rem; +.to-green-600 { + --tw-gradient-to: #059669; } -.-top-32 { - top: -8rem; +.to-green-700 { + --tw-gradient-to: #047857; } -.-right-32 { - right: -8rem; +.to-green-800 { + --tw-gradient-to: #065f46; } -.-bottom-32 { - bottom: -8rem; +.to-green-900 { + --tw-gradient-to: #064e3b; } -.-left-32 { - left: -8rem; +.to-blue-50 { + --tw-gradient-to: #eff6ff; } -.-top-36 { - top: -9rem; +.to-blue-100 { + --tw-gradient-to: #dbeafe; } -.-right-36 { - right: -9rem; +.to-blue-200 { + --tw-gradient-to: #bfdbfe; } -.-bottom-36 { - bottom: -9rem; +.to-blue-300 { + --tw-gradient-to: #93c5fd; } -.-left-36 { - left: -9rem; +.to-blue-400 { + --tw-gradient-to: #60a5fa; } -.-top-40 { - top: -10rem; +.to-blue-500 { + --tw-gradient-to: #3b82f6; } -.-right-40 { - right: -10rem; +.to-blue-600 { + --tw-gradient-to: #2563eb; } -.-bottom-40 { - bottom: -10rem; +.to-blue-700 { + --tw-gradient-to: #1d4ed8; } -.-left-40 { - left: -10rem; +.to-blue-800 { + --tw-gradient-to: #1e40af; } -.-top-44 { - top: -11rem; +.to-blue-900 { + --tw-gradient-to: #1e3a8a; } -.-right-44 { - right: -11rem; +.to-indigo-50 { + --tw-gradient-to: #eef2ff; } -.-bottom-44 { - bottom: -11rem; +.to-indigo-100 { + --tw-gradient-to: #e0e7ff; } -.-left-44 { - left: -11rem; +.to-indigo-200 { + --tw-gradient-to: #c7d2fe; } -.-top-48 { - top: -12rem; +.to-indigo-300 { + --tw-gradient-to: #a5b4fc; } -.-right-48 { - right: -12rem; +.to-indigo-400 { + --tw-gradient-to: #818cf8; } -.-bottom-48 { - bottom: -12rem; +.to-indigo-500 { + --tw-gradient-to: #6366f1; } -.-left-48 { - left: -12rem; +.to-indigo-600 { + --tw-gradient-to: #4f46e5; } -.-top-52 { - top: -13rem; +.to-indigo-700 { + --tw-gradient-to: #4338ca; } -.-right-52 { - right: -13rem; +.to-indigo-800 { + --tw-gradient-to: #3730a3; } -.-bottom-52 { - bottom: -13rem; +.to-indigo-900 { + --tw-gradient-to: #312e81; } -.-left-52 { - left: -13rem; +.to-purple-50 { + --tw-gradient-to: #f5f3ff; } -.-top-56 { - top: -14rem; +.to-purple-100 { + --tw-gradient-to: #ede9fe; } -.-right-56 { - right: -14rem; +.to-purple-200 { + --tw-gradient-to: #ddd6fe; } -.-bottom-56 { - bottom: -14rem; +.to-purple-300 { + --tw-gradient-to: #c4b5fd; } -.-left-56 { - left: -14rem; +.to-purple-400 { + --tw-gradient-to: #a78bfa; } -.-top-60 { - top: -15rem; +.to-purple-500 { + --tw-gradient-to: #8b5cf6; } -.-right-60 { - right: -15rem; +.to-purple-600 { + --tw-gradient-to: #7c3aed; } -.-bottom-60 { - bottom: -15rem; +.to-purple-700 { + --tw-gradient-to: #6d28d9; } -.-left-60 { - left: -15rem; +.to-purple-800 { + --tw-gradient-to: #5b21b6; } -.-top-64 { - top: -16rem; +.to-purple-900 { + --tw-gradient-to: #4c1d95; } -.-right-64 { - right: -16rem; +.to-pink-50 { + --tw-gradient-to: #fdf2f8; } -.-bottom-64 { - bottom: -16rem; +.to-pink-100 { + --tw-gradient-to: #fce7f3; } -.-left-64 { - left: -16rem; +.to-pink-200 { + --tw-gradient-to: #fbcfe8; } -.-top-72 { - top: -18rem; +.to-pink-300 { + --tw-gradient-to: #f9a8d4; } -.-right-72 { - right: -18rem; +.to-pink-400 { + --tw-gradient-to: #f472b6; } -.-bottom-72 { - bottom: -18rem; +.to-pink-500 { + --tw-gradient-to: #ec4899; } -.-left-72 { - left: -18rem; +.to-pink-600 { + --tw-gradient-to: #db2777; } -.-top-80 { - top: -20rem; +.to-pink-700 { + --tw-gradient-to: #be185d; } -.-right-80 { - right: -20rem; +.to-pink-800 { + --tw-gradient-to: #9d174d; } -.-bottom-80 { - bottom: -20rem; +.to-pink-900 { + --tw-gradient-to: #831843; } -.-left-80 { - left: -20rem; +.hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.-top-96 { - top: -24rem; +.hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.-right-96 { - right: -24rem; +.hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.-bottom-96 { - bottom: -24rem; +.hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.-left-96 { - left: -24rem; +.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)); } -.-top-px { - top: -1px; +.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)); } -.-right-px { - right: -1px; +.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)); } -.-bottom-px { - bottom: -1px; +.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)); } -.-left-px { - left: -1px; +.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)); } -.-top-0\.5 { - top: -0.125rem; +.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)); } -.-right-0\.5 { - right: -0.125rem; +.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)); } -.-bottom-0\.5 { - bottom: -0.125rem; +.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)); } -.-left-0\.5 { - left: -0.125rem; +.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)); } -.-top-1\.5 { - top: -0.375rem; +.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)); } -.-right-1\.5 { - right: -0.375rem; +.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)); } -.-bottom-1\.5 { - bottom: -0.375rem; +.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)); } -.-left-1\.5 { - left: -0.375rem; +.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)); } -.-top-2\.5 { - top: -0.625rem; +.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)); } -.-right-2\.5 { - right: -0.625rem; +.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)); } -.-bottom-2\.5 { - bottom: -0.625rem; +.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)); } -.-left-2\.5 { - left: -0.625rem; +.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)); } -.-top-3\.5 { - top: -0.875rem; +.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)); } -.-right-3\.5 { - right: -0.875rem; +.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)); } -.-bottom-3\.5 { - bottom: -0.875rem; +.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)); } -.-left-3\.5 { - left: -0.875rem; +.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)); } -.top-1\/2 { - top: 50%; +.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)); } -.right-1\/2 { - right: 50%; +.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)); } -.bottom-1\/2 { - bottom: 50%; +.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)); } -.left-1\/2 { - left: 50%; +.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)); } -.top-1\/3 { - top: 33.333333%; +.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)); } -.right-1\/3 { - right: 33.333333%; +.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)); } -.bottom-1\/3 { - bottom: 33.333333%; +.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)); } -.left-1\/3 { - left: 33.333333%; +.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)); } -.top-2\/3 { - top: 66.666667%; +.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)); } -.right-2\/3 { - right: 66.666667%; +.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)); } -.bottom-2\/3 { - bottom: 66.666667%; +.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)); } -.left-2\/3 { - left: 66.666667%; +.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)); } -.top-1\/4 { - top: 25%; +.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)); } -.right-1\/4 { - right: 25%; +.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)); } -.bottom-1\/4 { - bottom: 25%; +.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)); } -.left-1\/4 { - left: 25%; +.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)); } -.top-2\/4 { - top: 50%; +.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)); } -.right-2\/4 { - right: 50%; +.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)); } -.bottom-2\/4 { - bottom: 50%; +.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)); } -.left-2\/4 { - left: 50%; +.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)); } -.top-3\/4 { - top: 75%; +.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)); } -.right-3\/4 { - right: 75%; +.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)); } -.bottom-3\/4 { - bottom: 75%; +.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)); } -.left-3\/4 { - left: 75%; +.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)); } -.top-full { - top: 100%; +.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)); } -.right-full { - right: 100%; +.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)); } -.bottom-full { - bottom: 100%; +.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)); } -.left-full { - left: 100%; +.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)); } -.-top-1\/2 { - top: -50%; +.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)); } -.-right-1\/2 { - right: -50%; +.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)); } -.-bottom-1\/2 { - bottom: -50%; +.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)); } -.-left-1\/2 { - left: -50%; +.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)); } -.-top-1\/3 { - top: -33.333333%; +.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)); } -.-right-1\/3 { - right: -33.333333%; +.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)); } -.-bottom-1\/3 { - bottom: -33.333333%; +.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)); } -.-left-1\/3 { - left: -33.333333%; +.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)); } -.-top-2\/3 { - top: -66.666667%; +.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)); } -.-right-2\/3 { - right: -66.666667%; +.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)); } -.-bottom-2\/3 { - bottom: -66.666667%; +.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)); } -.-left-2\/3 { - left: -66.666667%; +.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)); } -.-top-1\/4 { - top: -25%; +.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)); } -.-right-1\/4 { - right: -25%; +.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)); } -.-bottom-1\/4 { - bottom: -25%; +.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)); } -.-left-1\/4 { - left: -25%; +.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)); } -.-top-2\/4 { - top: -50%; +.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)); } -.-right-2\/4 { - right: -50%; +.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)); } -.-bottom-2\/4 { - bottom: -50%; +.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)); } -.-left-2\/4 { - left: -50%; +.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)); } -.-top-3\/4 { - top: -75%; +.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)); } -.-right-3\/4 { - right: -75%; +.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)); } -.-bottom-3\/4 { - bottom: -75%; +.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)); } -.-left-3\/4 { - left: -75%; +.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)); } -.-top-full { - top: -100%; +.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)); } -.-right-full { - right: -100%; +.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)); } -.-bottom-full { - bottom: -100%; +.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)); } -.-left-full { - left: -100%; +.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)); } -.resize-none { - resize: none; +.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)); } -.resize-y { - resize: vertical; +.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)); } -.resize-x { - resize: horizontal; +.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)); } -.resize { - resize: both; +.hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -* { - --tw-shadow: 0 0 #0000; +.hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.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); +.hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.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); +.hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.group:hover .group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.group:hover .group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.group:hover .group-hover\: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); +.hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.group:hover .group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.group:hover .group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.group:hover .group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.group:hover .group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.group:hover .group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.focus-within\:shadow-md:focus-within { - --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); +.hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.hover\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.hover\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.hover\:shadow-md:hover { - --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); +.hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.hover\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.hover\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.hover\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.hover\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.hover\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.focus\:shadow-md:focus { - --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); +.hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +.hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -* { - --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgba(59, 130, 246, 0.5); - --tw-ring-offset-shadow: 0 0 #0000; - --tw-ring-shadow: 0 0 #0000; +.hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.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); +.hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.ring-inset { - --tw-ring-inset: inset; +.hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; +.hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +.hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.focus\:ring-inset:focus { - --tw-ring-inset: inset; +.hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.ring-offset-transparent { - --tw-ring-offset-color: transparent; +.hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.ring-offset-current { - --tw-ring-offset-color: currentColor; +.hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.ring-offset-black { - --tw-ring-offset-color: #000; +.hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.ring-offset-white { - --tw-ring-offset-color: #fff; +.hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; +.hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; +.hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; +.hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; +.hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; +.hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; +.hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; +.hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.ring-offset-gray-700 { - --tw-ring-offset-color: #374151; +.hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; +.hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.ring-offset-gray-900 { - --tw-ring-offset-color: #111827; +.hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; +.hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; +.hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; +.hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; +.hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.ring-offset-red-400 { - --tw-ring-offset-color: #f87171; +.hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; +.hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; +.hover\:to-transparent:hover { + --tw-gradient-to: transparent; } -.ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; +.hover\:to-current:hover { + --tw-gradient-to: currentColor; } -.ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; +.hover\:to-black:hover { + --tw-gradient-to: #000; } -.ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; +.hover\:to-white:hover { + --tw-gradient-to: #fff; } -.ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; +.hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } -.ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; +.hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } -.ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; +.hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } -.ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; +.hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } -.ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; +.hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } -.ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; +.hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } -.ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; +.hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } -.ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; +.hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } -.ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; +.hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } -.ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; +.hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } -.ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; +.hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } -.ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; +.hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } -.ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; +.hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } -.ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; +.hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } -.ring-offset-green-400 { - --tw-ring-offset-color: #34d399; +.hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } -.ring-offset-green-500 { - --tw-ring-offset-color: #10b981; +.hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } -.ring-offset-green-600 { - --tw-ring-offset-color: #059669; +.hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } -.ring-offset-green-700 { - --tw-ring-offset-color: #047857; +.hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } -.ring-offset-green-800 { - --tw-ring-offset-color: #065f46; +.hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } -.ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; +.hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } -.ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; +.hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } -.ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; +.hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } -.ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; +.hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } -.ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; +.hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } -.ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; +.hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } -.ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; +.hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } -.ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; +.hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } -.ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; +.hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } -.ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; +.hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } -.ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; +.hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } -.ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; +.hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } -.ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; +.hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } -.ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; +.hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } -.ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; +.hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } -.ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; +.hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } -.ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; +.hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } -.ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; +.hover\:to-green-600:hover { + --tw-gradient-to: #059669; } -.ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; +.hover\:to-green-700:hover { + --tw-gradient-to: #047857; } -.ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; +.hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } -.ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; +.hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } -.ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; +.hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } -.ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; +.hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } -.ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; +.hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } -.ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; +.hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } -.ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; +.hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } -.ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; +.hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } -.ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; +.hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } -.ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; +.hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } -.ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; +.hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } -.ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; +.hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } -.ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; +.hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } -.ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; +.hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } -.ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; +.hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } -.ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; +.hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } -.ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; +.hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } -.ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; -} +.hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; +} -.ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; +.hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } -.ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; +.hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } -.ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; +.hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } -.ring-offset-pink-900 { - --tw-ring-offset-color: #831843; +.hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } -.focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; +.hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } -.focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; +.hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } -.focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; +.hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } -.focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; +.hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } -.focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; +.hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } -.focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; +.hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } -.focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; +.hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } -.focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; +.hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } -.focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; +.hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } -.focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; +.hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } -.focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; +.hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } -.focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; +.hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } -.focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; +.hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } -.focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; +.hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } -.focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; +.hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } -.focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; +.hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } -.focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; +.hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } -.focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; +.hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } -.focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; +.hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } -.focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; +.hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } -.focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; +.focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; +.focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; +.focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; +.focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; +.focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; +.focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; +.focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; +.focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; +.focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; +.focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; +.focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; +.focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; +.focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; +.focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; +.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)); } -.focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; +.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)); } -.focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; +.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)); } -.focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; +.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)); } -.focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; +.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)); } -.focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; +.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)); } -.focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; +.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)); } -.focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; +.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)); } -.focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; +.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)); } -.focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; +.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)); } -.focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; +.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)); } -.focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; +.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)); } -.focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; +.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)); } -.focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; +.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)); } -.focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; +.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)); } -.focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; +.focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; +.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)); } -.focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; +.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)); } -.focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; +.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)); } -.focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; +.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)); } -.focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; +.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)); } -.focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; +.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)); } -.focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; +.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)); } -.focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; +.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)); } -.focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; +.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)); } -.focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; +.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)); } -.focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; +.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)); } -.focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; +.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)); } -.focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; +.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)); } -.focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; +.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)); } -.focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; +.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)); } -.focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; +.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)); } -.focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; +.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)); } -.focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; +.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)); } -.focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; +.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)); } -.focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; +.focus\:from-blue-500:focus { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; +.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)); } -.focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; +.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)); } -.focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; +.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)); } -.focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; +.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)); } -.focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; +.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)); } -.focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; +.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)); } -.focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; +.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)); } -.focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; +.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)); } -.focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; +.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)); } -.focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; +.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)); } -.focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; +.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)); } -.focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; +.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)); } -.focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; +.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)); } -.focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; +.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)); } -.focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; +.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)); } -.focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; +.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)); } -.focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; +.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)); } -.focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; +.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)); } -.focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; +.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)); } -.focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; +.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)); } -.focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; +.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)); } -.focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; +.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)); } -.focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; +.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)); } -.focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; +.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)); } -.focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; +.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)); } -.focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; +.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)); } -.focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; +.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)); } -.focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; +.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)); } -.focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; +.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)); } -.focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; +.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)); } -.focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; +.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)); } -.focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; +.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)); } -.focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; +.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)); } -.focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; +.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)); } -.focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; +.focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; +.focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; +.focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; +.focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; +.focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; +.focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; +.focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; +.focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; +.focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; +.focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; +.focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; +.focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; +.focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; +.focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; +.focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; +.focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; +.focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; +.focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; +.focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; +.focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; +.focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; +.focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; +.focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; +.focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; +.focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; +.focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; +.focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; +.focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; +.focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; +.focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; +.focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; +.focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; +.focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; +.focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; +.focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; +.focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; +.focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; +.focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; +.focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; +.focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; +.focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; +.focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; +.focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; +.focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; +.focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; +.focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; +.focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; +.focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; +.focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; +.focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; +.focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; +.focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; +.focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; +.focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; +.focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; +.focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; +.focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; +.focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; +.focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; +.focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; +.focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; +.focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; +.focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; +.focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.ring-offset-0 { - --tw-ring-offset-width: 0px; +.focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.ring-offset-1 { - --tw-ring-offset-width: 1px; +.focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.ring-offset-2 { - --tw-ring-offset-width: 2px; +.focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.ring-offset-4 { - --tw-ring-offset-width: 4px; +.focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.ring-offset-8 { - --tw-ring-offset-width: 8px; +.focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; +.focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; +.focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; +.focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; +.focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; +.focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; +.focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; +.focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; +.focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; +.focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; +.focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.ring-transparent { - --tw-ring-color: transparent; +.focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.ring-current { - --tw-ring-color: currentColor; +.focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +.focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +.focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +.focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +.focus\:to-transparent:focus { + --tw-gradient-to: transparent; } -.ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +.focus\:to-current:focus { + --tw-gradient-to: currentColor; } -.ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +.focus\:to-black:focus { + --tw-gradient-to: #000; } -.ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +.focus\:to-white:focus { + --tw-gradient-to: #fff; } -.ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +.focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } -.ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +.focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } -.ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +.focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } -.ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +.focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } -.ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +.focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } -.ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); +.focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } -.ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); +.focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } -.ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); +.focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } -.ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); +.focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } -.ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); +.focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } -.ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); +.focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } -.ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); +.focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } -.ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); +.focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } -.ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); +.focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } -.ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); +.focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } -.ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); +.focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } -.ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); +.focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } -.ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); +.focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } -.ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); +.focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } -.ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); +.focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } -.ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +.focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } -.ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); +.focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } -.ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); +.focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } -.ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); +.focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } -.ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); +.focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } -.ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); +.focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } -.ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); +.focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } -.ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); +.focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } -.ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); +.focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } -.ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); +.focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } -.ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); +.focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } -.ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); +.focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } -.ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); +.focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } -.ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); +.focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } -.ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); +.focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } -.ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); +.focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } -.ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); +.focus\:to-green-600:focus { + --tw-gradient-to: #059669; } -.ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); +.focus\:to-green-700:focus { + --tw-gradient-to: #047857; } -.ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); +.focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } -.ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); +.focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } -.ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +.focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } -.ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); +.focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } -.ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); +.focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } -.ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); +.focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } -.ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); +.focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } -.ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); +.focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } -.ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); +.focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } -.ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); +.focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } -.ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); +.focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } -.ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); +.focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } -.ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); +.focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } -.ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); +.focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } -.ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); +.focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } -.ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); +.focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } -.ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); +.focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } -.ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); +.focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } -.ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); +.focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } -.ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); +.focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } -.ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); +.focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } -.ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); +.focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } -.ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); +.focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } -.ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); +.focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } -.ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); +.focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } -.ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); +.focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } -.ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); +.focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } -.ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); +.focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } -.ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); +.focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } -.ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); +.focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } -.ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); +.focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } -.ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); +.focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } -.ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); +.focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } -.ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); +.focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } -.ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); +.focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } -.ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); +.focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } -.ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); +.focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } -.focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; +.focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } -.focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; +.focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } -.focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +.focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } -.focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +.focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } -.focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +.focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } -.focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +.decoration-slice { + box-decoration-break: slice; } -.focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +.decoration-clone { + box-decoration-break: clone; } -.focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +.bg-auto { + background-size: auto; } -.focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +.bg-cover { + background-size: cover; } -.focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +.bg-contain { + background-size: contain; } -.focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +.bg-fixed { + background-attachment: fixed; } -.focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +.bg-local { + background-attachment: local; } -.focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +.bg-scroll { + background-attachment: scroll; } -.focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +.bg-clip-border { + background-clip: border-box; } -.focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); +.bg-clip-padding { + background-clip: padding-box; } -.focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); +.bg-clip-content { + background-clip: content-box; } -.focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); +.bg-clip-text { + background-clip: text; } -.focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); +.bg-bottom { + background-position: bottom; } -.focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); +.bg-center { + background-position: center; } -.focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); +.bg-left { + background-position: left; } -.focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); +.bg-left-bottom { + background-position: left bottom; } -.focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); +.bg-left-top { + background-position: left top; } -.focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); +.bg-right { + background-position: right; } -.focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); +.bg-right-bottom { + background-position: right bottom; } -.focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); +.bg-right-top { + background-position: right top; } -.focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); +.bg-top { + background-position: top; } -.focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); +.bg-repeat { + background-repeat: repeat; } -.focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); +.bg-no-repeat { + background-repeat: no-repeat; } -.focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); +.bg-repeat-x { + background-repeat: repeat-x; } -.focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +.bg-repeat-y { + background-repeat: repeat-y; } -.focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); +.bg-repeat-round { + background-repeat: round; } -.focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); +.bg-repeat-space { + background-repeat: space; } -.focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); +.bg-origin-border { + background-origin: border-box; } -.focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); +.bg-origin-padding { + background-origin: padding-box; } -.focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); +.bg-origin-content { + background-origin: content-box; } -.focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); +.fill-current { + fill: currentColor; } -.focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); +.stroke-current { + stroke: currentColor; } -.focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); +.stroke-0 { + stroke-width: 0; } -.focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); +.stroke-1 { + stroke-width: 1; } -.focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); +.stroke-2 { + stroke-width: 2; } -.focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); +.object-contain { + object-fit: contain; } -.focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); +.object-cover { + object-fit: cover; } -.focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); +.object-fill { + object-fit: fill; } -.focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); +.object-none { + object-fit: none; } -.focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); +.object-scale-down { + object-fit: scale-down; } -.focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); +.object-bottom { + object-position: bottom; } -.focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); +.object-center { + object-position: center; } -.focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); +.object-left { + object-position: left; } -.focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); +.object-left-bottom { + object-position: left bottom; } -.focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +.object-left-top { + object-position: left top; } -.focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); +.object-right { + object-position: right; } -.focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); +.object-right-bottom { + object-position: right bottom; } -.focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); +.object-right-top { + object-position: right top; } -.focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); +.object-top { + object-position: top; } -.focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); +.p-0 { + padding: 0px; } -.focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); +.p-1 { + padding: 0.25rem; } -.focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); +.p-2 { + padding: 0.5rem; } -.focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); +.p-3 { + padding: 0.75rem; } -.focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); +.p-4 { + padding: 1rem; } -.focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); +.p-5 { + padding: 1.25rem; } -.focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); +.p-6 { + padding: 1.5rem; } -.focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); +.p-7 { + padding: 1.75rem; } -.focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); +.p-8 { + padding: 2rem; } -.focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); +.p-9 { + padding: 2.25rem; } -.focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); +.p-10 { + padding: 2.5rem; } -.focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); +.p-11 { + padding: 2.75rem; } -.focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); +.p-12 { + padding: 3rem; } -.focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); +.p-14 { + padding: 3.5rem; } -.focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); +.p-16 { + padding: 4rem; } -.focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); +.p-20 { + padding: 5rem; } -.focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); +.p-24 { + padding: 6rem; } -.focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); +.p-28 { + padding: 7rem; } -.focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); +.p-32 { + padding: 8rem; } -.focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); +.p-36 { + padding: 9rem; } -.focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); +.p-40 { + padding: 10rem; } -.focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); +.p-44 { + padding: 11rem; } -.focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); +.p-48 { + padding: 12rem; } -.focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); +.p-52 { + padding: 13rem; } -.focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); +.p-56 { + padding: 14rem; } -.focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); +.p-60 { + padding: 15rem; } -.focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); +.p-64 { + padding: 16rem; } -.focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); +.p-72 { + padding: 18rem; } -.focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); +.p-80 { + padding: 20rem; } -.focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); +.p-96 { + padding: 24rem; } -.focus\:ring-transparent:focus { - --tw-ring-color: transparent; +.p-px { + padding: 1px; } -.focus\:ring-current:focus { - --tw-ring-color: currentColor; +.p-0\.5 { + padding: 0.125rem; } -.focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +.p-1\.5 { + padding: 0.375rem; } -.focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +.p-2\.5 { + padding: 0.625rem; } -.focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +.p-3\.5 { + padding: 0.875rem; } -.focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +.px-0 { + padding-left: 0px; + padding-right: 0px; } -.focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +.px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } -.focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +.px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } -.focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +.px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } -.focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +.px-4 { + padding-left: 1rem; + padding-right: 1rem; } -.focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +.px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } -.focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +.px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } -.focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +.px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } -.focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +.px-8 { + padding-left: 2rem; + padding-right: 2rem; } -.focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); +.px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } -.focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); +.px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } -.focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); +.px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } -.focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); +.px-12 { + padding-left: 3rem; + padding-right: 3rem; } -.focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); +.px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } -.focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); +.px-16 { + padding-left: 4rem; + padding-right: 4rem; } -.focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); +.px-20 { + padding-left: 5rem; + padding-right: 5rem; } -.focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); +.px-24 { + padding-left: 6rem; + padding-right: 6rem; } -.focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); +.px-28 { + padding-left: 7rem; + padding-right: 7rem; } -.focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); +.px-32 { + padding-left: 8rem; + padding-right: 8rem; } -.focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); +.px-36 { + padding-left: 9rem; + padding-right: 9rem; } -.focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); +.px-40 { + padding-left: 10rem; + padding-right: 10rem; } -.focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); +.px-44 { + padding-left: 11rem; + padding-right: 11rem; } -.focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); +.px-48 { + padding-left: 12rem; + padding-right: 12rem; } -.focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); +.px-52 { + padding-left: 13rem; + padding-right: 13rem; } -.focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +.px-56 { + padding-left: 14rem; + padding-right: 14rem; } -.focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); +.px-60 { + padding-left: 15rem; + padding-right: 15rem; } -.focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); +.px-64 { + padding-left: 16rem; + padding-right: 16rem; } -.focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); +.px-72 { + padding-left: 18rem; + padding-right: 18rem; } -.focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); +.px-80 { + padding-left: 20rem; + padding-right: 20rem; } -.focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); +.px-96 { + padding-left: 24rem; + padding-right: 24rem; } -.focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); +.px-px { + padding-left: 1px; + padding-right: 1px; } -.focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); +.px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } -.focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); +.px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } -.focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); +.px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } -.focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); +.px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } -.focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); +.py-0 { + padding-top: 0px; + padding-bottom: 0px; } -.focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); +.py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } -.focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); +.py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } -.focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); +.py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } -.focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); +.py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } -.focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); +.py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } -.focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); +.py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } -.focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); +.py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } -.focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); +.py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } -.focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +.py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } -.focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); +.py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } -.focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); +.py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } -.focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); +.py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } -.focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); +.py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } -.focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); +.py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } -.focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); +.py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } -.focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); +.py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } -.focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); +.py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } -.focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); +.py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } -.focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); +.py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } -.focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); +.py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } -.focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); +.py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } -.focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); +.py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } -.focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); +.py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } -.focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); +.py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } -.focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); +.py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } -.focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); +.py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } -.focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); +.py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } -.focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); +.py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } -.focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); +.py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } -.focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); +.py-px { + padding-top: 1px; + padding-bottom: 1px; } -.focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); +.py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } -.focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); +.py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } -.focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); +.py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } -.focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); +.py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } -.focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); +.pt-0 { + padding-top: 0px; } -.focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); +.pt-1 { + padding-top: 0.25rem; } -.focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); +.pt-2 { + padding-top: 0.5rem; } -.focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); +.pt-3 { + padding-top: 0.75rem; } -.focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); +.pt-4 { + padding-top: 1rem; } -.focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); +.pt-5 { + padding-top: 1.25rem; } -.focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); +.pt-6 { + padding-top: 1.5rem; } -.focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); +.pt-7 { + padding-top: 1.75rem; } -.focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); +.pt-8 { + padding-top: 2rem; } -.ring-opacity-0 { - --tw-ring-opacity: 0; +.pt-9 { + padding-top: 2.25rem; } -.ring-opacity-5 { - --tw-ring-opacity: 0.05; +.pt-10 { + padding-top: 2.5rem; } -.ring-opacity-10 { - --tw-ring-opacity: 0.1; +.pt-11 { + padding-top: 2.75rem; } -.ring-opacity-20 { - --tw-ring-opacity: 0.2; +.pt-12 { + padding-top: 3rem; } -.ring-opacity-25 { - --tw-ring-opacity: 0.25; +.pt-14 { + padding-top: 3.5rem; } -.ring-opacity-30 { - --tw-ring-opacity: 0.3; +.pt-16 { + padding-top: 4rem; } -.ring-opacity-40 { - --tw-ring-opacity: 0.4; +.pt-20 { + padding-top: 5rem; } -.ring-opacity-50 { - --tw-ring-opacity: 0.5; +.pt-24 { + padding-top: 6rem; } -.ring-opacity-60 { - --tw-ring-opacity: 0.6; +.pt-28 { + padding-top: 7rem; } -.ring-opacity-70 { - --tw-ring-opacity: 0.7; +.pt-32 { + padding-top: 8rem; } -.ring-opacity-75 { - --tw-ring-opacity: 0.75; +.pt-36 { + padding-top: 9rem; } -.ring-opacity-80 { - --tw-ring-opacity: 0.8; +.pt-40 { + padding-top: 10rem; } -.ring-opacity-90 { - --tw-ring-opacity: 0.9; +.pt-44 { + padding-top: 11rem; } -.ring-opacity-95 { - --tw-ring-opacity: 0.95; +.pt-48 { + padding-top: 12rem; } -.ring-opacity-100 { - --tw-ring-opacity: 1; +.pt-52 { + padding-top: 13rem; } -.focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; +.pt-56 { + padding-top: 14rem; } -.focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; +.pt-60 { + padding-top: 15rem; } -.focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; +.pt-64 { + padding-top: 16rem; } -.focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; +.pt-72 { + padding-top: 18rem; } -.focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; +.pt-80 { + padding-top: 20rem; } -.focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; +.pt-96 { + padding-top: 24rem; } -.focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; +.pt-px { + padding-top: 1px; } -.focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; +.pt-0\.5 { + padding-top: 0.125rem; } -.focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; +.pt-1\.5 { + padding-top: 0.375rem; } -.focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; +.pt-2\.5 { + padding-top: 0.625rem; } -.focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; +.pt-3\.5 { + padding-top: 0.875rem; } -.focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; +.pr-0 { + padding-right: 0px; } -.focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; +.pr-1 { + padding-right: 0.25rem; } -.focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; +.pr-2 { + padding-right: 0.5rem; } -.focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; +.pr-3 { + padding-right: 0.75rem; } -.focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; +.pr-4 { + padding-right: 1rem; } -.focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; +.pr-5 { + padding-right: 1.25rem; } -.focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; +.pr-6 { + padding-right: 1.5rem; } -.focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; +.pr-7 { + padding-right: 1.75rem; } -.focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; +.pr-8 { + padding-right: 2rem; } -.focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; +.pr-9 { + padding-right: 2.25rem; } -.focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; +.pr-10 { + padding-right: 2.5rem; } -.focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; +.pr-11 { + padding-right: 2.75rem; } -.focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; +.pr-12 { + padding-right: 3rem; } -.focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; +.pr-14 { + padding-right: 3.5rem; } -.focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; +.pr-16 { + padding-right: 4rem; } -.focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; +.pr-20 { + padding-right: 5rem; } -.focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; +.pr-24 { + padding-right: 6rem; } -.focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; +.pr-28 { + padding-right: 7rem; } -.focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; +.pr-32 { + padding-right: 8rem; } -.fill-current { - fill: currentColor; +.pr-36 { + padding-right: 9rem; } -.stroke-current { - stroke: currentColor; +.pr-40 { + padding-right: 10rem; } -.stroke-0 { - stroke-width: 0; +.pr-44 { + padding-right: 11rem; } -.stroke-1 { - stroke-width: 1; +.pr-48 { + padding-right: 12rem; } -.stroke-2 { - stroke-width: 2; +.pr-52 { + padding-right: 13rem; } -.table-auto { - table-layout: auto; +.pr-56 { + padding-right: 14rem; } -.table-fixed { - table-layout: fixed; +.pr-60 { + padding-right: 15rem; +} + +.pr-64 { + padding-right: 16rem; +} + +.pr-72 { + padding-right: 18rem; +} + +.pr-80 { + padding-right: 20rem; +} + +.pr-96 { + padding-right: 24rem; +} + +.pr-px { + padding-right: 1px; +} + +.pr-0\.5 { + padding-right: 0.125rem; +} + +.pr-1\.5 { + padding-right: 0.375rem; +} + +.pr-2\.5 { + padding-right: 0.625rem; +} + +.pr-3\.5 { + padding-right: 0.875rem; +} + +.pb-0 { + padding-bottom: 0px; +} + +.pb-1 { + padding-bottom: 0.25rem; +} + +.pb-2 { + padding-bottom: 0.5rem; +} + +.pb-3 { + padding-bottom: 0.75rem; +} + +.pb-4 { + padding-bottom: 1rem; +} + +.pb-5 { + padding-bottom: 1.25rem; +} + +.pb-6 { + padding-bottom: 1.5rem; +} + +.pb-7 { + padding-bottom: 1.75rem; +} + +.pb-8 { + padding-bottom: 2rem; +} + +.pb-9 { + padding-bottom: 2.25rem; +} + +.pb-10 { + padding-bottom: 2.5rem; +} + +.pb-11 { + padding-bottom: 2.75rem; +} + +.pb-12 { + padding-bottom: 3rem; +} + +.pb-14 { + padding-bottom: 3.5rem; +} + +.pb-16 { + padding-bottom: 4rem; +} + +.pb-20 { + padding-bottom: 5rem; +} + +.pb-24 { + padding-bottom: 6rem; +} + +.pb-28 { + padding-bottom: 7rem; +} + +.pb-32 { + padding-bottom: 8rem; +} + +.pb-36 { + padding-bottom: 9rem; +} + +.pb-40 { + padding-bottom: 10rem; +} + +.pb-44 { + padding-bottom: 11rem; +} + +.pb-48 { + padding-bottom: 12rem; +} + +.pb-52 { + padding-bottom: 13rem; +} + +.pb-56 { + padding-bottom: 14rem; +} + +.pb-60 { + padding-bottom: 15rem; +} + +.pb-64 { + padding-bottom: 16rem; +} + +.pb-72 { + padding-bottom: 18rem; +} + +.pb-80 { + padding-bottom: 20rem; +} + +.pb-96 { + padding-bottom: 24rem; +} + +.pb-px { + padding-bottom: 1px; +} + +.pb-0\.5 { + padding-bottom: 0.125rem; +} + +.pb-1\.5 { + padding-bottom: 0.375rem; +} + +.pb-2\.5 { + padding-bottom: 0.625rem; +} + +.pb-3\.5 { + padding-bottom: 0.875rem; +} + +.pl-0 { + padding-left: 0px; +} + +.pl-1 { + padding-left: 0.25rem; +} + +.pl-2 { + padding-left: 0.5rem; +} + +.pl-3 { + padding-left: 0.75rem; +} + +.pl-4 { + padding-left: 1rem; +} + +.pl-5 { + padding-left: 1.25rem; +} + +.pl-6 { + padding-left: 1.5rem; +} + +.pl-7 { + padding-left: 1.75rem; +} + +.pl-8 { + padding-left: 2rem; +} + +.pl-9 { + padding-left: 2.25rem; +} + +.pl-10 { + padding-left: 2.5rem; +} + +.pl-11 { + padding-left: 2.75rem; +} + +.pl-12 { + padding-left: 3rem; +} + +.pl-14 { + padding-left: 3.5rem; +} + +.pl-16 { + padding-left: 4rem; +} + +.pl-20 { + padding-left: 5rem; +} + +.pl-24 { + padding-left: 6rem; +} + +.pl-28 { + padding-left: 7rem; +} + +.pl-32 { + padding-left: 8rem; +} + +.pl-36 { + padding-left: 9rem; +} + +.pl-40 { + padding-left: 10rem; +} + +.pl-44 { + padding-left: 11rem; +} + +.pl-48 { + padding-left: 12rem; +} + +.pl-52 { + padding-left: 13rem; +} + +.pl-56 { + padding-left: 14rem; +} + +.pl-60 { + padding-left: 15rem; +} + +.pl-64 { + padding-left: 16rem; +} + +.pl-72 { + padding-left: 18rem; +} + +.pl-80 { + padding-left: 20rem; +} + +.pl-96 { + padding-left: 24rem; +} + +.pl-px { + padding-left: 1px; +} + +.pl-0\.5 { + padding-left: 0.125rem; +} + +.pl-1\.5 { + padding-left: 0.375rem; +} + +.pl-2\.5 { + padding-left: 0.625rem; +} + +.pl-3\.5 { + padding-left: 0.875rem; } .text-left { @@ -22234,6 +22155,292 @@ video { text-align: justify; } +.align-baseline { + vertical-align: baseline; +} + +.align-top { + vertical-align: top; +} + +.align-middle { + vertical-align: middle; +} + +.align-bottom { + vertical-align: bottom; +} + +.align-text-top { + vertical-align: text-top; +} + +.align-text-bottom { + vertical-align: text-bottom; +} + +.font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} + +.font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; +} + +.font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +.text-xs { + font-size: 0.75rem; + line-height: 1rem; +} + +.text-sm { + font-size: 0.875rem; + line-height: 1.25rem; +} + +.text-base { + font-size: 1rem; + line-height: 1.5rem; +} + +.text-lg { + font-size: 1.125rem; + line-height: 1.75rem; +} + +.text-xl { + font-size: 1.25rem; + line-height: 1.75rem; +} + +.text-2xl { + font-size: 1.5rem; + line-height: 2rem; +} + +.text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; +} + +.text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; +} + +.text-5xl { + font-size: 3rem; + line-height: 1; +} + +.text-6xl { + font-size: 3.75rem; + line-height: 1; +} + +.text-7xl { + font-size: 4.5rem; + line-height: 1; +} + +.text-8xl { + font-size: 6rem; + line-height: 1; +} + +.text-9xl { + font-size: 8rem; + line-height: 1; +} + +.font-thin { + font-weight: 100; +} + +.font-extralight { + font-weight: 200; +} + +.font-light { + font-weight: 300; +} + +.font-normal { + font-weight: 400; +} + +.font-medium { + font-weight: 500; +} + +.font-semibold { + font-weight: 600; +} + +.font-bold { + font-weight: 700; +} + +.font-extrabold { + font-weight: 800; +} + +.font-black { + font-weight: 900; +} + +.uppercase { + text-transform: uppercase; +} + +.lowercase { + text-transform: lowercase; +} + +.capitalize { + text-transform: capitalize; +} + +.normal-case { + text-transform: none; +} + +.italic { + font-style: italic; +} + +.not-italic { + font-style: normal; +} + +.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); +} + +.normal-nums { + font-variant-numeric: normal; +} + +.ordinal { + --tw-ordinal: ordinal; +} + +.slashed-zero { + --tw-slashed-zero: slashed-zero; +} + +.lining-nums { + --tw-numeric-figure: lining-nums; +} + +.oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; +} + +.proportional-nums { + --tw-numeric-spacing: proportional-nums; +} + +.tabular-nums { + --tw-numeric-spacing: tabular-nums; +} + +.diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; +} + +.stacked-fractions { + --tw-numeric-fraction: stacked-fractions; +} + +.leading-3 { + line-height: .75rem; +} + +.leading-4 { + line-height: 1rem; +} + +.leading-5 { + line-height: 1.25rem; +} + +.leading-6 { + line-height: 1.5rem; +} + +.leading-7 { + line-height: 1.75rem; +} + +.leading-8 { + line-height: 2rem; +} + +.leading-9 { + line-height: 2.25rem; +} + +.leading-10 { + line-height: 2.5rem; +} + +.leading-none { + line-height: 1; +} + +.leading-tight { + line-height: 1.25; +} + +.leading-snug { + line-height: 1.375; +} + +.leading-normal { + line-height: 1.5; +} + +.leading-relaxed { + line-height: 1.625; +} + +.leading-loose { + line-height: 2; +} + +.tracking-tighter { + letter-spacing: -0.05em; +} + +.tracking-tight { + letter-spacing: -0.025em; +} + +.tracking-normal { + letter-spacing: 0em; +} + +.tracking-wide { + letter-spacing: 0.025em; +} + +.tracking-wider { + letter-spacing: 0.05em; +} + +.tracking-widest { + letter-spacing: 0.1em; +} + .text-transparent { color: transparent; } @@ -24624,44 +24831,6 @@ video { --tw-text-opacity: 1; } -.truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.overflow-ellipsis { - text-overflow: ellipsis; -} - -.overflow-clip { - text-overflow: clip; -} - -.italic { - font-style: italic; -} - -.not-italic { - font-style: normal; -} - -.uppercase { - text-transform: uppercase; -} - -.lowercase { - text-transform: lowercase; -} - -.capitalize { - text-transform: capitalize; -} - -.normal-case { - text-transform: none; -} - .underline { text-decoration: underline; } @@ -24732,4557 +24901,4268 @@ video { -moz-osx-font-smoothing: auto; } -.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); +.placeholder-transparent::placeholder { + color: transparent; } -.normal-nums { - font-variant-numeric: normal; +.placeholder-current::placeholder { + color: currentColor; } -.ordinal { - --tw-ordinal: ordinal; +.placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } -.slashed-zero { - --tw-slashed-zero: slashed-zero; +.placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } -.lining-nums { - --tw-numeric-figure: lining-nums; +.placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } -.oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; +.placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } -.proportional-nums { - --tw-numeric-spacing: proportional-nums; +.placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } -.tabular-nums { - --tw-numeric-spacing: tabular-nums; +.placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } -.diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; +.placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } -.stacked-fractions { - --tw-numeric-fraction: stacked-fractions; +.placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } -.tracking-tighter { - letter-spacing: -0.05em; +.placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } -.tracking-tight { - letter-spacing: -0.025em; +.placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } -.tracking-normal { - letter-spacing: 0em; +.placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } -.tracking-wide { - letter-spacing: 0.025em; +.placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } -.tracking-wider { - letter-spacing: 0.05em; +.placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } -.tracking-widest { - letter-spacing: 0.1em; +.placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } -.select-none { - user-select: none; +.placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } -.select-text { - user-select: text; +.placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } -.select-all { - user-select: all; +.placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } -.select-auto { - user-select: auto; +.placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } -.align-baseline { - vertical-align: baseline; +.placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } -.align-top { - vertical-align: top; +.placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } -.align-middle { - vertical-align: middle; +.placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } -.align-bottom { - vertical-align: bottom; +.placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } -.align-text-top { - vertical-align: text-top; +.placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } -.align-text-bottom { - vertical-align: text-bottom; +.placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } -.visible { - visibility: visible; +.placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } -.invisible { - visibility: hidden; +.placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } -.whitespace-normal { - white-space: normal; +.placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } -.whitespace-nowrap { - white-space: nowrap; +.placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } -.whitespace-pre { - white-space: pre; +.placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } -.whitespace-pre-line { - white-space: pre-line; +.placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } -.whitespace-pre-wrap { - white-space: pre-wrap; +.placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } -.break-normal { - overflow-wrap: normal; - word-break: normal; +.placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } -.break-words { - overflow-wrap: break-word; +.placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } -.break-all { - word-break: break-all; +.placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } -.w-0 { - width: 0px; +.placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } -.w-1 { - width: 0.25rem; +.placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } -.w-2 { - width: 0.5rem; +.placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } -.w-3 { - width: 0.75rem; +.placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } -.w-4 { - width: 1rem; +.placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } -.w-5 { - width: 1.25rem; +.placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } -.w-6 { - width: 1.5rem; +.placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } -.w-7 { - width: 1.75rem; +.placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } -.w-8 { - width: 2rem; +.placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } -.w-9 { - width: 2.25rem; +.placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } -.w-10 { - width: 2.5rem; +.placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } -.w-11 { - width: 2.75rem; +.placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } -.w-12 { - width: 3rem; +.placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } -.w-14 { - width: 3.5rem; +.placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } -.w-16 { - width: 4rem; +.placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } -.w-20 { - width: 5rem; +.placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } -.w-24 { - width: 6rem; +.placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } -.w-28 { - width: 7rem; +.placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } -.w-32 { - width: 8rem; +.placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } -.w-36 { - width: 9rem; +.placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } -.w-40 { - width: 10rem; +.placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } -.w-44 { - width: 11rem; +.placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } -.w-48 { - width: 12rem; +.placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } -.w-52 { - width: 13rem; +.placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } -.w-56 { - width: 14rem; +.placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } -.w-60 { - width: 15rem; +.placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } -.w-64 { - width: 16rem; +.placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } -.w-72 { - width: 18rem; +.placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } -.w-80 { - width: 20rem; +.placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } -.w-96 { - width: 24rem; +.placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } -.w-auto { - width: auto; +.placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } -.w-px { - width: 1px; +.placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } -.w-0\.5 { - width: 0.125rem; +.placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } -.w-1\.5 { - width: 0.375rem; +.placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } -.w-2\.5 { - width: 0.625rem; +.placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } -.w-3\.5 { - width: 0.875rem; +.placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } -.w-1\/2 { - width: 50%; +.placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } -.w-1\/3 { - width: 33.333333%; +.placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } -.w-2\/3 { - width: 66.666667%; +.placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } -.w-1\/4 { - width: 25%; +.placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } -.w-2\/4 { - width: 50%; +.placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } -.w-3\/4 { - width: 75%; +.placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } -.w-1\/5 { - width: 20%; +.placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } -.w-2\/5 { - width: 40%; +.placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } -.w-3\/5 { - width: 60%; +.placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } -.w-4\/5 { - width: 80%; +.placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } -.w-1\/6 { - width: 16.666667%; +.placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } -.w-2\/6 { - width: 33.333333%; +.placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } -.w-3\/6 { - width: 50%; +.focus\:placeholder-transparent:focus::placeholder { + color: transparent; } -.w-4\/6 { - width: 66.666667%; +.focus\:placeholder-current:focus::placeholder { + color: currentColor; } -.w-5\/6 { - width: 83.333333%; +.focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } -.w-1\/12 { - width: 8.333333%; +.focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } -.w-2\/12 { - width: 16.666667%; +.focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } -.w-3\/12 { - width: 25%; +.focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } -.w-4\/12 { - width: 33.333333%; +.focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } -.w-5\/12 { - width: 41.666667%; +.focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } -.w-6\/12 { - width: 50%; +.focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } -.w-7\/12 { - width: 58.333333%; +.focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } -.w-8\/12 { - width: 66.666667%; +.focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } -.w-9\/12 { - width: 75%; +.focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } -.w-10\/12 { - width: 83.333333%; +.focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } -.w-11\/12 { - width: 91.666667%; +.focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } -.w-full { - width: 100%; +.focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } -.w-screen { - width: 100vw; +.focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } -.w-min { - width: min-content; +.focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } -.w-max { - width: max-content; +.focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } -.z-0 { - z-index: 0; +.focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } -.z-10 { - z-index: 10; +.focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } -.z-20 { - z-index: 20; +.focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } -.z-30 { - z-index: 30; +.focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } -.z-40 { - z-index: 40; +.focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } -.z-50 { - z-index: 50; +.focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } -.z-auto { - z-index: auto; +.focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } -.focus-within\:z-0:focus-within { - z-index: 0; +.focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } -.focus-within\:z-10:focus-within { - z-index: 10; +.focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } -.focus-within\:z-20:focus-within { - z-index: 20; +.focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } -.focus-within\:z-30:focus-within { - z-index: 30; +.focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } -.focus-within\:z-40:focus-within { - z-index: 40; +.focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } -.focus-within\:z-50:focus-within { - z-index: 50; +.focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } -.focus-within\:z-auto:focus-within { - z-index: auto; +.focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } -.focus\:z-0:focus { - z-index: 0; +.focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } -.focus\:z-10:focus { - z-index: 10; +.focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } -.focus\:z-20:focus { - z-index: 20; +.focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } -.focus\:z-30:focus { - z-index: 30; +.focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } -.focus\:z-40:focus { - z-index: 40; +.focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } -.focus\:z-50:focus { - z-index: 50; +.focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } -.focus\:z-auto:focus { - z-index: auto; +.focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } -.isolate { - isolation: isolate; +.focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } -.isolation-auto { - isolation: auto; +.focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } -.gap-0 { - gap: 0px; +.focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } -.gap-1 { - gap: 0.25rem; +.focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } -.gap-2 { - gap: 0.5rem; +.focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } -.gap-3 { - gap: 0.75rem; +.focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } -.gap-4 { - gap: 1rem; +.focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } -.gap-5 { - gap: 1.25rem; +.focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } -.gap-6 { - gap: 1.5rem; +.focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } -.gap-7 { - gap: 1.75rem; +.focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } -.gap-8 { - gap: 2rem; +.focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } -.gap-9 { - gap: 2.25rem; +.focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } -.gap-10 { - gap: 2.5rem; +.focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } -.gap-11 { - gap: 2.75rem; +.focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } -.gap-12 { - gap: 3rem; +.focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } -.gap-14 { - gap: 3.5rem; +.focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } -.gap-16 { - gap: 4rem; +.focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } -.gap-20 { - gap: 5rem; +.focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } -.gap-24 { - gap: 6rem; +.focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } -.gap-28 { - gap: 7rem; +.focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } -.gap-32 { - gap: 8rem; +.focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } -.gap-36 { - gap: 9rem; +.focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } -.gap-40 { - gap: 10rem; +.focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } -.gap-44 { - gap: 11rem; +.focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } -.gap-48 { - gap: 12rem; +.focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } -.gap-52 { - gap: 13rem; +.focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } -.gap-56 { - gap: 14rem; +.focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } -.gap-60 { - gap: 15rem; +.focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } -.gap-64 { - gap: 16rem; +.focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } -.gap-72 { - gap: 18rem; +.focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } -.gap-80 { - gap: 20rem; +.focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } -.gap-96 { - gap: 24rem; +.focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } -.gap-px { - gap: 1px; +.focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } -.gap-0\.5 { - gap: 0.125rem; +.focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } -.gap-1\.5 { - gap: 0.375rem; +.focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } -.gap-2\.5 { - gap: 0.625rem; +.focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } -.gap-3\.5 { - gap: 0.875rem; +.focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } -.gap-x-0 { - column-gap: 0px; +.focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } -.gap-x-1 { - column-gap: 0.25rem; +.focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } -.gap-x-2 { - column-gap: 0.5rem; +.focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } -.gap-x-3 { - column-gap: 0.75rem; +.focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } -.gap-x-4 { - column-gap: 1rem; +.focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } -.gap-x-5 { - column-gap: 1.25rem; +.focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } -.gap-x-6 { - column-gap: 1.5rem; +.focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } -.gap-x-7 { - column-gap: 1.75rem; +.focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } -.gap-x-8 { - column-gap: 2rem; +.placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } -.gap-x-9 { - column-gap: 2.25rem; +.placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } -.gap-x-10 { - column-gap: 2.5rem; +.placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } -.gap-x-11 { - column-gap: 2.75rem; +.placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } -.gap-x-12 { - column-gap: 3rem; +.placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } -.gap-x-14 { - column-gap: 3.5rem; +.placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } -.gap-x-16 { - column-gap: 4rem; +.placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } -.gap-x-20 { - column-gap: 5rem; +.placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } -.gap-x-24 { - column-gap: 6rem; +.placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } -.gap-x-28 { - column-gap: 7rem; +.placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } -.gap-x-32 { - column-gap: 8rem; +.placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } -.gap-x-36 { - column-gap: 9rem; +.placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } -.gap-x-40 { - column-gap: 10rem; +.placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } -.gap-x-44 { - column-gap: 11rem; +.placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } -.gap-x-48 { - column-gap: 12rem; +.placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } -.gap-x-52 { - column-gap: 13rem; +.focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } -.gap-x-56 { - column-gap: 14rem; +.focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } -.gap-x-60 { - column-gap: 15rem; +.focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } -.gap-x-64 { - column-gap: 16rem; +.focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } -.gap-x-72 { - column-gap: 18rem; +.focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } -.gap-x-80 { - column-gap: 20rem; +.focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } -.gap-x-96 { - column-gap: 24rem; +.focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } -.gap-x-px { - column-gap: 1px; +.focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } -.gap-x-0\.5 { - column-gap: 0.125rem; +.focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } -.gap-x-1\.5 { - column-gap: 0.375rem; +.focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } -.gap-x-2\.5 { - column-gap: 0.625rem; +.focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } -.gap-x-3\.5 { - column-gap: 0.875rem; +.focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } -.gap-y-0 { - row-gap: 0px; +.focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } -.gap-y-1 { - row-gap: 0.25rem; +.focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } -.gap-y-2 { - row-gap: 0.5rem; +.focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } -.gap-y-3 { - row-gap: 0.75rem; +.opacity-0 { + opacity: 0; } -.gap-y-4 { - row-gap: 1rem; +.opacity-5 { + opacity: 0.05; } -.gap-y-5 { - row-gap: 1.25rem; +.opacity-10 { + opacity: 0.1; } -.gap-y-6 { - row-gap: 1.5rem; +.opacity-20 { + opacity: 0.2; } -.gap-y-7 { - row-gap: 1.75rem; +.opacity-25 { + opacity: 0.25; } -.gap-y-8 { - row-gap: 2rem; +.opacity-30 { + opacity: 0.3; } -.gap-y-9 { - row-gap: 2.25rem; +.opacity-40 { + opacity: 0.4; } -.gap-y-10 { - row-gap: 2.5rem; +.opacity-50 { + opacity: 0.5; } -.gap-y-11 { - row-gap: 2.75rem; +.opacity-60 { + opacity: 0.6; } -.gap-y-12 { - row-gap: 3rem; +.opacity-70 { + opacity: 0.7; } -.gap-y-14 { - row-gap: 3.5rem; +.opacity-75 { + opacity: 0.75; } -.gap-y-16 { - row-gap: 4rem; +.opacity-80 { + opacity: 0.8; } -.gap-y-20 { - row-gap: 5rem; +.opacity-90 { + opacity: 0.9; } -.gap-y-24 { - row-gap: 6rem; +.opacity-95 { + opacity: 0.95; } -.gap-y-28 { - row-gap: 7rem; +.opacity-100 { + opacity: 1; } -.gap-y-32 { - row-gap: 8rem; +.group:hover .group-hover\:opacity-0 { + opacity: 0; } -.gap-y-36 { - row-gap: 9rem; +.group:hover .group-hover\:opacity-5 { + opacity: 0.05; } -.gap-y-40 { - row-gap: 10rem; +.group:hover .group-hover\:opacity-10 { + opacity: 0.1; } -.gap-y-44 { - row-gap: 11rem; +.group:hover .group-hover\:opacity-20 { + opacity: 0.2; } -.gap-y-48 { - row-gap: 12rem; +.group:hover .group-hover\:opacity-25 { + opacity: 0.25; } -.gap-y-52 { - row-gap: 13rem; +.group:hover .group-hover\:opacity-30 { + opacity: 0.3; } -.gap-y-56 { - row-gap: 14rem; +.group:hover .group-hover\:opacity-40 { + opacity: 0.4; } -.gap-y-60 { - row-gap: 15rem; +.group:hover .group-hover\:opacity-50 { + opacity: 0.5; } -.gap-y-64 { - row-gap: 16rem; +.group:hover .group-hover\:opacity-60 { + opacity: 0.6; } -.gap-y-72 { - row-gap: 18rem; +.group:hover .group-hover\:opacity-70 { + opacity: 0.7; } -.gap-y-80 { - row-gap: 20rem; +.group:hover .group-hover\:opacity-75 { + opacity: 0.75; } -.gap-y-96 { - row-gap: 24rem; +.group:hover .group-hover\:opacity-80 { + opacity: 0.8; } -.gap-y-px { - row-gap: 1px; +.group:hover .group-hover\:opacity-90 { + opacity: 0.9; } -.gap-y-0\.5 { - row-gap: 0.125rem; +.group:hover .group-hover\:opacity-95 { + opacity: 0.95; } -.gap-y-1\.5 { - row-gap: 0.375rem; +.group:hover .group-hover\:opacity-100 { + opacity: 1; } -.gap-y-2\.5 { - row-gap: 0.625rem; +.focus-within\:opacity-0:focus-within { + opacity: 0; } -.gap-y-3\.5 { - row-gap: 0.875rem; +.focus-within\:opacity-5:focus-within { + opacity: 0.05; } -.grid-flow-row { - grid-auto-flow: row; +.focus-within\:opacity-10:focus-within { + opacity: 0.1; } -.grid-flow-col { - grid-auto-flow: column; +.focus-within\:opacity-20:focus-within { + opacity: 0.2; } -.grid-flow-row-dense { - grid-auto-flow: row dense; +.focus-within\:opacity-25:focus-within { + opacity: 0.25; } -.grid-flow-col-dense { - grid-auto-flow: column dense; +.focus-within\:opacity-30:focus-within { + opacity: 0.3; } -.grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); +.focus-within\:opacity-40:focus-within { + opacity: 0.4; } -.grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); +.focus-within\:opacity-50:focus-within { + opacity: 0.5; } -.grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); +.focus-within\:opacity-60:focus-within { + opacity: 0.6; } -.grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); +.focus-within\:opacity-70:focus-within { + opacity: 0.7; } -.grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); +.focus-within\:opacity-75:focus-within { + opacity: 0.75; } -.grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); +.focus-within\:opacity-80:focus-within { + opacity: 0.8; } -.grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); +.focus-within\:opacity-90:focus-within { + opacity: 0.9; } -.grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); +.focus-within\:opacity-95:focus-within { + opacity: 0.95; } -.grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); +.focus-within\:opacity-100:focus-within { + opacity: 1; } -.grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); +.hover\:opacity-0:hover { + opacity: 0; } -.grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); +.hover\:opacity-5:hover { + opacity: 0.05; } -.grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); +.hover\:opacity-10:hover { + opacity: 0.1; } -.grid-cols-none { - grid-template-columns: none; +.hover\:opacity-20:hover { + opacity: 0.2; } -.auto-cols-auto { - grid-auto-columns: auto; +.hover\:opacity-25:hover { + opacity: 0.25; } -.auto-cols-min { - grid-auto-columns: min-content; +.hover\:opacity-30:hover { + opacity: 0.3; } -.auto-cols-max { - grid-auto-columns: max-content; +.hover\:opacity-40:hover { + opacity: 0.4; } -.auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); +.hover\:opacity-50:hover { + opacity: 0.5; } -.col-auto { - grid-column: auto; +.hover\:opacity-60:hover { + opacity: 0.6; } -.col-span-1 { - grid-column: span 1 / span 1; +.hover\:opacity-70:hover { + opacity: 0.7; } -.col-span-2 { - grid-column: span 2 / span 2; +.hover\:opacity-75:hover { + opacity: 0.75; } -.col-span-3 { - grid-column: span 3 / span 3; +.hover\:opacity-80:hover { + opacity: 0.8; } -.col-span-4 { - grid-column: span 4 / span 4; +.hover\:opacity-90:hover { + opacity: 0.9; } -.col-span-5 { - grid-column: span 5 / span 5; +.hover\:opacity-95:hover { + opacity: 0.95; } -.col-span-6 { - grid-column: span 6 / span 6; +.hover\:opacity-100:hover { + opacity: 1; } -.col-span-7 { - grid-column: span 7 / span 7; +.focus\:opacity-0:focus { + opacity: 0; } -.col-span-8 { - grid-column: span 8 / span 8; +.focus\:opacity-5:focus { + opacity: 0.05; } -.col-span-9 { - grid-column: span 9 / span 9; +.focus\:opacity-10:focus { + opacity: 0.1; } -.col-span-10 { - grid-column: span 10 / span 10; +.focus\:opacity-20:focus { + opacity: 0.2; } -.col-span-11 { - grid-column: span 11 / span 11; +.focus\:opacity-25:focus { + opacity: 0.25; } -.col-span-12 { - grid-column: span 12 / span 12; +.focus\:opacity-30:focus { + opacity: 0.3; } -.col-span-full { - grid-column: 1 / -1; +.focus\:opacity-40:focus { + opacity: 0.4; } -.col-start-1 { - grid-column-start: 1; +.focus\:opacity-50:focus { + opacity: 0.5; } -.col-start-2 { - grid-column-start: 2; +.focus\:opacity-60:focus { + opacity: 0.6; } -.col-start-3 { - grid-column-start: 3; +.focus\:opacity-70:focus { + opacity: 0.7; } -.col-start-4 { - grid-column-start: 4; +.focus\:opacity-75:focus { + opacity: 0.75; } -.col-start-5 { - grid-column-start: 5; +.focus\:opacity-80:focus { + opacity: 0.8; } -.col-start-6 { - grid-column-start: 6; +.focus\:opacity-90:focus { + opacity: 0.9; } -.col-start-7 { - grid-column-start: 7; +.focus\:opacity-95:focus { + opacity: 0.95; } -.col-start-8 { - grid-column-start: 8; +.focus\:opacity-100:focus { + opacity: 1; } -.col-start-9 { - grid-column-start: 9; +.bg-blend-normal { + background-blend-mode: normal; } -.col-start-10 { - grid-column-start: 10; +.bg-blend-multiply { + background-blend-mode: multiply; } -.col-start-11 { - grid-column-start: 11; +.bg-blend-screen { + background-blend-mode: screen; } -.col-start-12 { - grid-column-start: 12; +.bg-blend-overlay { + background-blend-mode: overlay; } -.col-start-13 { - grid-column-start: 13; +.bg-blend-darken { + background-blend-mode: darken; } -.col-start-auto { - grid-column-start: auto; +.bg-blend-lighten { + background-blend-mode: lighten; } -.col-end-1 { - grid-column-end: 1; +.bg-blend-color-dodge { + background-blend-mode: color-dodge; } -.col-end-2 { - grid-column-end: 2; +.bg-blend-color-burn { + background-blend-mode: color-burn; } -.col-end-3 { - grid-column-end: 3; +.bg-blend-hard-light { + background-blend-mode: hard-light; } -.col-end-4 { - grid-column-end: 4; +.bg-blend-soft-light { + background-blend-mode: soft-light; } -.col-end-5 { - grid-column-end: 5; +.bg-blend-difference { + background-blend-mode: difference; } -.col-end-6 { - grid-column-end: 6; +.bg-blend-exclusion { + background-blend-mode: exclusion; } -.col-end-7 { - grid-column-end: 7; +.bg-blend-hue { + background-blend-mode: hue; } -.col-end-8 { - grid-column-end: 8; +.bg-blend-saturation { + background-blend-mode: saturation; } -.col-end-9 { - grid-column-end: 9; +.bg-blend-color { + background-blend-mode: color; } -.col-end-10 { - grid-column-end: 10; +.bg-blend-luminosity { + background-blend-mode: luminosity; } -.col-end-11 { - grid-column-end: 11; +.mix-blend-normal { + mix-blend-mode: normal; } -.col-end-12 { - grid-column-end: 12; +.mix-blend-multiply { + mix-blend-mode: multiply; } -.col-end-13 { - grid-column-end: 13; +.mix-blend-screen { + mix-blend-mode: screen; } -.col-end-auto { - grid-column-end: auto; +.mix-blend-overlay { + mix-blend-mode: overlay; } -.grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); +.mix-blend-darken { + mix-blend-mode: darken; } -.grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); +.mix-blend-lighten { + mix-blend-mode: lighten; } -.grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); +.mix-blend-color-dodge { + mix-blend-mode: color-dodge; } -.grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); +.mix-blend-color-burn { + mix-blend-mode: color-burn; } -.grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); +.mix-blend-hard-light { + mix-blend-mode: hard-light; } -.grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); +.mix-blend-soft-light { + mix-blend-mode: soft-light; } -.grid-rows-none { - grid-template-rows: none; +.mix-blend-difference { + mix-blend-mode: difference; } -.auto-rows-auto { - grid-auto-rows: auto; +.mix-blend-exclusion { + mix-blend-mode: exclusion; } -.auto-rows-min { - grid-auto-rows: min-content; +.mix-blend-hue { + mix-blend-mode: hue; } -.auto-rows-max { - grid-auto-rows: max-content; +.mix-blend-saturation { + mix-blend-mode: saturation; } -.auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); +.mix-blend-color { + mix-blend-mode: color; } -.row-auto { - grid-row: auto; +.mix-blend-luminosity { + mix-blend-mode: luminosity; } -.row-span-1 { - grid-row: span 1 / span 1; +* { + --tw-shadow: 0 0 #0000; } -.row-span-2 { - grid-row: span 2 / span 2; +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-3 { - grid-row: span 3 / span 3; +.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); } -.row-span-4 { - grid-row: span 4 / span 4; +.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); } -.row-span-5 { - grid-row: span 5 / span 5; +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-6 { - grid-row: span 6 / span 6; +.shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-span-full { - grid-row: 1 / -1; +.shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-1 { - grid-row-start: 1; +.shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-2 { - grid-row-start: 2; +.shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-3 { - grid-row-start: 3; +.group:hover .group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-4 { - grid-row-start: 4; +.group:hover .group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-5 { - grid-row-start: 5; +.group:hover .group-hover\: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); } -.row-start-6 { - grid-row-start: 6; +.group:hover .group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-7 { - grid-row-start: 7; +.group:hover .group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-start-auto { - grid-row-start: auto; +.group:hover .group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-1 { - grid-row-end: 1; +.group:hover .group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-2 { - grid-row-end: 2; +.group:hover .group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-3 { - grid-row-end: 3; +.focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-4 { - grid-row-end: 4; +.focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-5 { - grid-row-end: 5; +.focus-within\:shadow-md:focus-within { + --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); } -.row-end-6 { - grid-row-end: 6; +.focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-7 { - grid-row-end: 7; +.focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.row-end-auto { - grid-row-end: auto; +.focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +.focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +.focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.transform-none { - transform: none; +.hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-center { - transform-origin: center; +.hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-top { - transform-origin: top; +.hover\:shadow-md:hover { + --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); } -.origin-top-right { - transform-origin: top right; +.hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-right { - transform-origin: right; +.hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-bottom-right { - transform-origin: bottom right; +.hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-bottom { - transform-origin: bottom; +.hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-bottom-left { - transform-origin: bottom left; +.hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-left { - transform-origin: left; +.focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.origin-top-left { - transform-origin: top left; +.focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; +.focus\:shadow-md:focus { + --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); } -.scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; +.focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; +.focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; +.focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; +.focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; +.focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; +.outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } -.scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; +.outline-white { + outline: 2px dotted white; + outline-offset: 2px; } -.scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; +.outline-black { + outline: 2px dotted black; + outline-offset: 2px; } -.scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; +.focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } -.scale-x-0 { - --tw-scale-x: 0; +.focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } -.scale-x-50 { - --tw-scale-x: .5; +.focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } -.scale-x-75 { - --tw-scale-x: .75; +.focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } -.scale-x-90 { - --tw-scale-x: .9; +.focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } -.scale-x-95 { - --tw-scale-x: .95; +.focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } -.scale-x-100 { - --tw-scale-x: 1; +* { + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgba(59, 130, 246, 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; } -.scale-x-105 { - --tw-scale-x: 1.05; +.ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-x-110 { - --tw-scale-x: 1.1; +.ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-x-125 { - --tw-scale-x: 1.25; +.ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-x-150 { - --tw-scale-x: 1.5; +.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); } -.scale-y-0 { - --tw-scale-y: 0; +.ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-50 { - --tw-scale-y: .5; +.ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-75 { - --tw-scale-y: .75; +.ring-inset { + --tw-ring-inset: inset; } -.scale-y-90 { - --tw-scale-y: .9; +.focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-95 { - --tw-scale-y: .95; +.focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-100 { - --tw-scale-y: 1; +.focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-105 { - --tw-scale-y: 1.05; +.focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-110 { - --tw-scale-y: 1.1; +.focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-125 { - --tw-scale-y: 1.25; +.focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.scale-y-150 { - --tw-scale-y: 1.5; +.focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } -.hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; +.focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; +.focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; +.focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; +.focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; +.focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; +.focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; +.focus\:ring-inset:focus { + --tw-ring-inset: inset; } -.hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; +.ring-transparent { + --tw-ring-color: transparent; } -.hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; +.ring-current { + --tw-ring-color: currentColor; } -.hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; +.ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } -.hover\:scale-x-0:hover { - --tw-scale-x: 0; +.ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } -.hover\:scale-x-50:hover { - --tw-scale-x: .5; +.ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } -.hover\:scale-x-75:hover { - --tw-scale-x: .75; +.ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } -.hover\:scale-x-90:hover { - --tw-scale-x: .9; +.ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } -.hover\:scale-x-95:hover { - --tw-scale-x: .95; +.ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } -.hover\:scale-x-100:hover { - --tw-scale-x: 1; +.ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } -.hover\:scale-x-105:hover { - --tw-scale-x: 1.05; +.ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } -.hover\:scale-x-110:hover { - --tw-scale-x: 1.1; +.ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } -.hover\:scale-x-125:hover { - --tw-scale-x: 1.25; +.ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } -.hover\:scale-x-150:hover { - --tw-scale-x: 1.5; +.ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } -.hover\:scale-y-0:hover { - --tw-scale-y: 0; +.ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } -.hover\:scale-y-50:hover { - --tw-scale-y: .5; +.ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } -.hover\:scale-y-75:hover { - --tw-scale-y: .75; +.ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } -.hover\:scale-y-90:hover { - --tw-scale-y: .9; +.ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } -.hover\:scale-y-95:hover { - --tw-scale-y: .95; +.ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } -.hover\:scale-y-100:hover { - --tw-scale-y: 1; +.ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } -.hover\:scale-y-105:hover { - --tw-scale-y: 1.05; +.ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } -.hover\:scale-y-110:hover { - --tw-scale-y: 1.1; +.ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } -.hover\:scale-y-125:hover { - --tw-scale-y: 1.25; +.ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } -.hover\:scale-y-150:hover { - --tw-scale-y: 1.5; +.ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } -.focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; +.ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } -.focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; +.ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } -.focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; +.ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } -.focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; +.ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } -.focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; +.ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } -.focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; +.ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } -.focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; +.ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } -.focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; +.ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } -.focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; +.ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } -.focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; +.ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } -.focus\:scale-x-0:focus { - --tw-scale-x: 0; +.ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } -.focus\:scale-x-50:focus { - --tw-scale-x: .5; +.ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } -.focus\:scale-x-75:focus { - --tw-scale-x: .75; +.ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } -.focus\:scale-x-90:focus { - --tw-scale-x: .9; +.ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } -.focus\:scale-x-95:focus { - --tw-scale-x: .95; +.ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } -.focus\:scale-x-100:focus { - --tw-scale-x: 1; +.ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } -.focus\:scale-x-105:focus { - --tw-scale-x: 1.05; +.ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } -.focus\:scale-x-110:focus { - --tw-scale-x: 1.1; +.ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } -.focus\:scale-x-125:focus { - --tw-scale-x: 1.25; +.ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } -.focus\:scale-x-150:focus { - --tw-scale-x: 1.5; +.ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } -.focus\:scale-y-0:focus { - --tw-scale-y: 0; +.ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } -.focus\:scale-y-50:focus { - --tw-scale-y: .5; +.ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } -.focus\:scale-y-75:focus { - --tw-scale-y: .75; +.ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } -.focus\:scale-y-90:focus { - --tw-scale-y: .9; +.ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } -.focus\:scale-y-95:focus { - --tw-scale-y: .95; +.ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } -.focus\:scale-y-100:focus { - --tw-scale-y: 1; +.ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } -.focus\:scale-y-105:focus { - --tw-scale-y: 1.05; +.ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } -.focus\:scale-y-110:focus { - --tw-scale-y: 1.1; +.ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } -.focus\:scale-y-125:focus { - --tw-scale-y: 1.25; +.ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } -.focus\:scale-y-150:focus { - --tw-scale-y: 1.5; +.ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } -.rotate-0 { - --tw-rotate: 0deg; +.ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } -.rotate-1 { - --tw-rotate: 1deg; +.ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } -.rotate-2 { - --tw-rotate: 2deg; +.ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } -.rotate-3 { - --tw-rotate: 3deg; +.ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } -.rotate-6 { - --tw-rotate: 6deg; +.ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } -.rotate-12 { - --tw-rotate: 12deg; +.ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } -.rotate-45 { - --tw-rotate: 45deg; +.ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } -.rotate-90 { - --tw-rotate: 90deg; +.ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } -.rotate-180 { - --tw-rotate: 180deg; +.ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } -.-rotate-180 { - --tw-rotate: -180deg; +.ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } -.-rotate-90 { - --tw-rotate: -90deg; +.ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } -.-rotate-45 { - --tw-rotate: -45deg; +.ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } -.-rotate-12 { - --tw-rotate: -12deg; +.ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } -.-rotate-6 { - --tw-rotate: -6deg; +.ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } -.-rotate-3 { - --tw-rotate: -3deg; +.ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } -.-rotate-2 { - --tw-rotate: -2deg; +.ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } -.-rotate-1 { - --tw-rotate: -1deg; +.ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } -.hover\:rotate-0:hover { - --tw-rotate: 0deg; +.ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } -.hover\:rotate-1:hover { - --tw-rotate: 1deg; +.ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } -.hover\:rotate-2:hover { - --tw-rotate: 2deg; +.ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } -.hover\:rotate-3:hover { - --tw-rotate: 3deg; +.ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } -.hover\:rotate-6:hover { - --tw-rotate: 6deg; +.ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } -.hover\:rotate-12:hover { - --tw-rotate: 12deg; +.ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } -.hover\:rotate-45:hover { - --tw-rotate: 45deg; +.ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } -.hover\:rotate-90:hover { - --tw-rotate: 90deg; +.ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } -.hover\:rotate-180:hover { - --tw-rotate: 180deg; +.ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } -.hover\:-rotate-180:hover { - --tw-rotate: -180deg; +.ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } -.hover\:-rotate-90:hover { - --tw-rotate: -90deg; +.ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } -.hover\:-rotate-45:hover { - --tw-rotate: -45deg; +.ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } -.hover\:-rotate-12:hover { - --tw-rotate: -12deg; +.ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } -.hover\:-rotate-6:hover { - --tw-rotate: -6deg; +.ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } -.hover\:-rotate-3:hover { - --tw-rotate: -3deg; +.focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } -.hover\:-rotate-2:hover { - --tw-rotate: -2deg; +.focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } -.hover\:-rotate-1:hover { - --tw-rotate: -1deg; +.focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } -.focus\:rotate-0:focus { - --tw-rotate: 0deg; +.focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } -.focus\:rotate-1:focus { - --tw-rotate: 1deg; +.focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } -.focus\:rotate-2:focus { - --tw-rotate: 2deg; +.focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } -.focus\:rotate-3:focus { - --tw-rotate: 3deg; +.focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } -.focus\:rotate-6:focus { - --tw-rotate: 6deg; +.focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } -.focus\:rotate-12:focus { - --tw-rotate: 12deg; +.focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } -.focus\:rotate-45:focus { - --tw-rotate: 45deg; +.focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } -.focus\:rotate-90:focus { - --tw-rotate: 90deg; +.focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } -.focus\:rotate-180:focus { - --tw-rotate: 180deg; +.focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } -.focus\:-rotate-180:focus { - --tw-rotate: -180deg; +.focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } -.focus\:-rotate-90:focus { - --tw-rotate: -90deg; +.focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } -.focus\:-rotate-45:focus { - --tw-rotate: -45deg; +.focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } -.focus\:-rotate-12:focus { - --tw-rotate: -12deg; +.focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } -.focus\:-rotate-6:focus { - --tw-rotate: -6deg; +.focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } -.focus\:-rotate-3:focus { - --tw-rotate: -3deg; +.focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } -.focus\:-rotate-2:focus { - --tw-rotate: -2deg; +.focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } -.focus\:-rotate-1:focus { - --tw-rotate: -1deg; +.focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } -.translate-x-0 { - --tw-translate-x: 0px; +.focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } -.translate-x-1 { - --tw-translate-x: 0.25rem; +.focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } -.translate-x-2 { - --tw-translate-x: 0.5rem; +.focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } -.translate-x-3 { - --tw-translate-x: 0.75rem; +.focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } -.translate-x-4 { - --tw-translate-x: 1rem; +.focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } -.translate-x-5 { - --tw-translate-x: 1.25rem; +.focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } -.translate-x-6 { - --tw-translate-x: 1.5rem; +.focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } -.translate-x-7 { - --tw-translate-x: 1.75rem; +.focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } -.translate-x-8 { - --tw-translate-x: 2rem; +.focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } -.translate-x-9 { - --tw-translate-x: 2.25rem; +.focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } -.translate-x-10 { - --tw-translate-x: 2.5rem; +.focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } -.translate-x-11 { - --tw-translate-x: 2.75rem; +.focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } -.translate-x-12 { - --tw-translate-x: 3rem; +.focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } -.translate-x-14 { - --tw-translate-x: 3.5rem; +.focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } -.translate-x-16 { - --tw-translate-x: 4rem; +.focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } -.translate-x-20 { - --tw-translate-x: 5rem; +.focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } -.translate-x-24 { - --tw-translate-x: 6rem; +.focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } -.translate-x-28 { - --tw-translate-x: 7rem; +.focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } -.translate-x-32 { - --tw-translate-x: 8rem; +.focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } -.translate-x-36 { - --tw-translate-x: 9rem; +.focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } -.translate-x-40 { - --tw-translate-x: 10rem; +.focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } -.translate-x-44 { - --tw-translate-x: 11rem; +.focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } -.translate-x-48 { - --tw-translate-x: 12rem; +.focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } -.translate-x-52 { - --tw-translate-x: 13rem; +.focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } -.translate-x-56 { - --tw-translate-x: 14rem; +.focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } -.translate-x-60 { - --tw-translate-x: 15rem; +.focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } -.translate-x-64 { - --tw-translate-x: 16rem; +.focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } -.translate-x-72 { - --tw-translate-x: 18rem; +.focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } -.translate-x-80 { - --tw-translate-x: 20rem; +.focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } -.translate-x-96 { - --tw-translate-x: 24rem; +.focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } -.translate-x-px { - --tw-translate-x: 1px; +.focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } -.translate-x-0\.5 { - --tw-translate-x: 0.125rem; +.focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } -.translate-x-1\.5 { - --tw-translate-x: 0.375rem; +.focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } -.translate-x-2\.5 { - --tw-translate-x: 0.625rem; +.focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } -.translate-x-3\.5 { - --tw-translate-x: 0.875rem; +.focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } -.-translate-x-0 { - --tw-translate-x: 0px; +.focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } -.-translate-x-1 { - --tw-translate-x: -0.25rem; +.focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } -.-translate-x-2 { - --tw-translate-x: -0.5rem; +.focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } -.-translate-x-3 { - --tw-translate-x: -0.75rem; +.focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } -.-translate-x-4 { - --tw-translate-x: -1rem; +.focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } -.-translate-x-5 { - --tw-translate-x: -1.25rem; +.focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } -.-translate-x-6 { - --tw-translate-x: -1.5rem; +.focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } -.-translate-x-7 { - --tw-translate-x: -1.75rem; +.focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } -.-translate-x-8 { - --tw-translate-x: -2rem; +.focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } -.-translate-x-9 { - --tw-translate-x: -2.25rem; +.focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } -.-translate-x-10 { - --tw-translate-x: -2.5rem; +.focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } -.-translate-x-11 { - --tw-translate-x: -2.75rem; +.focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } -.-translate-x-12 { - --tw-translate-x: -3rem; +.focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } -.-translate-x-14 { - --tw-translate-x: -3.5rem; +.focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } -.-translate-x-16 { - --tw-translate-x: -4rem; +.focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } -.-translate-x-20 { - --tw-translate-x: -5rem; +.focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } -.-translate-x-24 { - --tw-translate-x: -6rem; +.focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } -.-translate-x-28 { - --tw-translate-x: -7rem; +.focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } -.-translate-x-32 { - --tw-translate-x: -8rem; +.focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } -.-translate-x-36 { - --tw-translate-x: -9rem; +.focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } -.-translate-x-40 { - --tw-translate-x: -10rem; +.focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } -.-translate-x-44 { - --tw-translate-x: -11rem; +.focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } -.-translate-x-48 { - --tw-translate-x: -12rem; +.focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } -.-translate-x-52 { - --tw-translate-x: -13rem; +.focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } -.-translate-x-56 { - --tw-translate-x: -14rem; +.focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } -.-translate-x-60 { - --tw-translate-x: -15rem; +.focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } -.-translate-x-64 { - --tw-translate-x: -16rem; +.focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } -.-translate-x-72 { - --tw-translate-x: -18rem; +.focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } -.-translate-x-80 { - --tw-translate-x: -20rem; +.focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } -.-translate-x-96 { - --tw-translate-x: -24rem; +.focus\:ring-transparent:focus { + --tw-ring-color: transparent; } -.-translate-x-px { - --tw-translate-x: -1px; +.focus\:ring-current:focus { + --tw-ring-color: currentColor; } -.-translate-x-0\.5 { - --tw-translate-x: -0.125rem; +.focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } -.-translate-x-1\.5 { - --tw-translate-x: -0.375rem; +.focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } -.-translate-x-2\.5 { - --tw-translate-x: -0.625rem; +.focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } -.-translate-x-3\.5 { - --tw-translate-x: -0.875rem; +.focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } -.translate-x-1\/2 { - --tw-translate-x: 50%; +.focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } -.translate-x-1\/3 { - --tw-translate-x: 33.333333%; +.focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } -.translate-x-2\/3 { - --tw-translate-x: 66.666667%; +.focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } -.translate-x-1\/4 { - --tw-translate-x: 25%; +.focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } -.translate-x-2\/4 { - --tw-translate-x: 50%; +.focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } -.translate-x-3\/4 { - --tw-translate-x: 75%; +.focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } -.translate-x-full { - --tw-translate-x: 100%; +.focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } -.-translate-x-1\/2 { - --tw-translate-x: -50%; +.focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } -.-translate-x-1\/3 { - --tw-translate-x: -33.333333%; +.focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } -.-translate-x-2\/3 { - --tw-translate-x: -66.666667%; +.focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } -.-translate-x-1\/4 { - --tw-translate-x: -25%; +.focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } -.-translate-x-2\/4 { - --tw-translate-x: -50%; +.focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } -.-translate-x-3\/4 { - --tw-translate-x: -75%; +.focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } -.-translate-x-full { - --tw-translate-x: -100%; +.focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } -.translate-y-0 { - --tw-translate-y: 0px; +.focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } -.translate-y-1 { - --tw-translate-y: 0.25rem; +.focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } -.translate-y-2 { - --tw-translate-y: 0.5rem; +.focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } -.translate-y-3 { - --tw-translate-y: 0.75rem; +.focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } -.translate-y-4 { - --tw-translate-y: 1rem; +.focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } -.translate-y-5 { - --tw-translate-y: 1.25rem; +.focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } -.translate-y-6 { - --tw-translate-y: 1.5rem; +.focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } -.translate-y-7 { - --tw-translate-y: 1.75rem; +.focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } -.translate-y-8 { - --tw-translate-y: 2rem; +.focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } -.translate-y-9 { - --tw-translate-y: 2.25rem; +.focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } -.translate-y-10 { - --tw-translate-y: 2.5rem; +.focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } -.translate-y-11 { - --tw-translate-y: 2.75rem; +.focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } -.translate-y-12 { - --tw-translate-y: 3rem; +.focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } -.translate-y-14 { - --tw-translate-y: 3.5rem; +.focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } -.translate-y-16 { - --tw-translate-y: 4rem; +.focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } -.translate-y-20 { - --tw-translate-y: 5rem; +.focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } -.translate-y-24 { - --tw-translate-y: 6rem; +.focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } -.translate-y-28 { - --tw-translate-y: 7rem; +.focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } -.translate-y-32 { - --tw-translate-y: 8rem; +.focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } -.translate-y-36 { - --tw-translate-y: 9rem; +.focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } -.translate-y-40 { - --tw-translate-y: 10rem; +.focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } -.translate-y-44 { - --tw-translate-y: 11rem; +.focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } -.translate-y-48 { - --tw-translate-y: 12rem; +.focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } -.translate-y-52 { - --tw-translate-y: 13rem; +.focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } -.translate-y-56 { - --tw-translate-y: 14rem; +.focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } -.translate-y-60 { - --tw-translate-y: 15rem; +.focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } -.translate-y-64 { - --tw-translate-y: 16rem; +.focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } -.translate-y-72 { - --tw-translate-y: 18rem; +.focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } -.translate-y-80 { - --tw-translate-y: 20rem; +.focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } -.translate-y-96 { - --tw-translate-y: 24rem; +.focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } -.translate-y-px { - --tw-translate-y: 1px; +.focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } -.translate-y-0\.5 { - --tw-translate-y: 0.125rem; +.focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } -.translate-y-1\.5 { - --tw-translate-y: 0.375rem; +.focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } -.translate-y-2\.5 { - --tw-translate-y: 0.625rem; +.focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } -.translate-y-3\.5 { - --tw-translate-y: 0.875rem; +.focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } -.-translate-y-0 { - --tw-translate-y: 0px; +.focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } -.-translate-y-1 { - --tw-translate-y: -0.25rem; +.focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } -.-translate-y-2 { - --tw-translate-y: -0.5rem; +.focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } -.-translate-y-3 { - --tw-translate-y: -0.75rem; +.focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } -.-translate-y-4 { - --tw-translate-y: -1rem; +.focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } -.-translate-y-5 { - --tw-translate-y: -1.25rem; +.focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } -.-translate-y-6 { - --tw-translate-y: -1.5rem; +.focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } -.-translate-y-7 { - --tw-translate-y: -1.75rem; +.focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } -.-translate-y-8 { - --tw-translate-y: -2rem; +.focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } -.-translate-y-9 { - --tw-translate-y: -2.25rem; +.focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } -.-translate-y-10 { - --tw-translate-y: -2.5rem; +.focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } -.-translate-y-11 { - --tw-translate-y: -2.75rem; +.focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } -.-translate-y-12 { - --tw-translate-y: -3rem; +.focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } -.-translate-y-14 { - --tw-translate-y: -3.5rem; +.focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } -.-translate-y-16 { - --tw-translate-y: -4rem; +.focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } -.-translate-y-20 { - --tw-translate-y: -5rem; +.focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } -.-translate-y-24 { - --tw-translate-y: -6rem; +.focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } -.-translate-y-28 { - --tw-translate-y: -7rem; +.focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } -.-translate-y-32 { - --tw-translate-y: -8rem; +.focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } -.-translate-y-36 { - --tw-translate-y: -9rem; +.focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } -.-translate-y-40 { - --tw-translate-y: -10rem; +.focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } -.-translate-y-44 { - --tw-translate-y: -11rem; +.focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } -.-translate-y-48 { - --tw-translate-y: -12rem; -} - -.-translate-y-52 { - --tw-translate-y: -13rem; +.focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } -.-translate-y-56 { - --tw-translate-y: -14rem; +.focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } -.-translate-y-60 { - --tw-translate-y: -15rem; +.focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } -.-translate-y-64 { - --tw-translate-y: -16rem; +.focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } -.-translate-y-72 { - --tw-translate-y: -18rem; +.focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } -.-translate-y-80 { - --tw-translate-y: -20rem; +.focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } -.-translate-y-96 { - --tw-translate-y: -24rem; +.focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } -.-translate-y-px { - --tw-translate-y: -1px; +.ring-opacity-0 { + --tw-ring-opacity: 0; } -.-translate-y-0\.5 { - --tw-translate-y: -0.125rem; +.ring-opacity-5 { + --tw-ring-opacity: 0.05; } -.-translate-y-1\.5 { - --tw-translate-y: -0.375rem; +.ring-opacity-10 { + --tw-ring-opacity: 0.1; } -.-translate-y-2\.5 { - --tw-translate-y: -0.625rem; +.ring-opacity-20 { + --tw-ring-opacity: 0.2; } -.-translate-y-3\.5 { - --tw-translate-y: -0.875rem; +.ring-opacity-25 { + --tw-ring-opacity: 0.25; } -.translate-y-1\/2 { - --tw-translate-y: 50%; +.ring-opacity-30 { + --tw-ring-opacity: 0.3; } -.translate-y-1\/3 { - --tw-translate-y: 33.333333%; +.ring-opacity-40 { + --tw-ring-opacity: 0.4; } -.translate-y-2\/3 { - --tw-translate-y: 66.666667%; +.ring-opacity-50 { + --tw-ring-opacity: 0.5; } -.translate-y-1\/4 { - --tw-translate-y: 25%; +.ring-opacity-60 { + --tw-ring-opacity: 0.6; } -.translate-y-2\/4 { - --tw-translate-y: 50%; +.ring-opacity-70 { + --tw-ring-opacity: 0.7; } -.translate-y-3\/4 { - --tw-translate-y: 75%; +.ring-opacity-75 { + --tw-ring-opacity: 0.75; } -.translate-y-full { - --tw-translate-y: 100%; +.ring-opacity-80 { + --tw-ring-opacity: 0.8; } -.-translate-y-1\/2 { - --tw-translate-y: -50%; +.ring-opacity-90 { + --tw-ring-opacity: 0.9; } -.-translate-y-1\/3 { - --tw-translate-y: -33.333333%; +.ring-opacity-95 { + --tw-ring-opacity: 0.95; } -.-translate-y-2\/3 { - --tw-translate-y: -66.666667%; +.ring-opacity-100 { + --tw-ring-opacity: 1; } -.-translate-y-1\/4 { - --tw-translate-y: -25%; +.focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } -.-translate-y-2\/4 { - --tw-translate-y: -50%; +.focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } -.-translate-y-3\/4 { - --tw-translate-y: -75%; +.focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } -.-translate-y-full { - --tw-translate-y: -100%; +.focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } -.hover\:translate-x-0:hover { - --tw-translate-x: 0px; +.focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } -.hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; +.focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } -.hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; +.focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } -.hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; +.focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } -.hover\:translate-x-4:hover { - --tw-translate-x: 1rem; +.focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } -.hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; +.focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } -.hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; +.focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } -.hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; +.focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } -.hover\:translate-x-8:hover { - --tw-translate-x: 2rem; +.focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } -.hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; +.focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } -.hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; +.focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } -.hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; +.focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } -.hover\:translate-x-12:hover { - --tw-translate-x: 3rem; +.focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } -.hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; +.focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } -.hover\:translate-x-16:hover { - --tw-translate-x: 4rem; +.focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } -.hover\:translate-x-20:hover { - --tw-translate-x: 5rem; +.focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } -.hover\:translate-x-24:hover { - --tw-translate-x: 6rem; +.focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } -.hover\:translate-x-28:hover { - --tw-translate-x: 7rem; +.focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } -.hover\:translate-x-32:hover { - --tw-translate-x: 8rem; +.focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } -.hover\:translate-x-36:hover { - --tw-translate-x: 9rem; +.focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } -.hover\:translate-x-40:hover { - --tw-translate-x: 10rem; +.focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } -.hover\:translate-x-44:hover { - --tw-translate-x: 11rem; +.focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } -.hover\:translate-x-48:hover { - --tw-translate-x: 12rem; +.focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } -.hover\:translate-x-52:hover { - --tw-translate-x: 13rem; +.focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } -.hover\:translate-x-56:hover { - --tw-translate-x: 14rem; +.focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } -.hover\:translate-x-60:hover { - --tw-translate-x: 15rem; +.focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } -.hover\:translate-x-64:hover { - --tw-translate-x: 16rem; +.ring-offset-0 { + --tw-ring-offset-width: 0px; } -.hover\:translate-x-72:hover { - --tw-translate-x: 18rem; +.ring-offset-1 { + --tw-ring-offset-width: 1px; } -.hover\:translate-x-80:hover { - --tw-translate-x: 20rem; +.ring-offset-2 { + --tw-ring-offset-width: 2px; } -.hover\:translate-x-96:hover { - --tw-translate-x: 24rem; +.ring-offset-4 { + --tw-ring-offset-width: 4px; } -.hover\:translate-x-px:hover { - --tw-translate-x: 1px; +.ring-offset-8 { + --tw-ring-offset-width: 8px; } -.hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; +.focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } -.hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; +.focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } -.hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; +.focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } -.hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; +.focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } -.hover\:-translate-x-0:hover { - --tw-translate-x: 0px; +.focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } -.hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; +.focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } -.hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; +.focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } -.hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; +.focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } -.hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; +.focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } -.hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; +.focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } -.hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; +.ring-offset-transparent { + --tw-ring-offset-color: transparent; } -.hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; +.ring-offset-current { + --tw-ring-offset-color: currentColor; } -.hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; +.ring-offset-black { + --tw-ring-offset-color: #000; } -.hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; +.ring-offset-white { + --tw-ring-offset-color: #fff; } -.hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; +.ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } -.hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; +.ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } -.hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; +.ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } -.hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; +.ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } -.hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; +.ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } -.hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; +.ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } -.hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; +.ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } -.hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; +.ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } -.hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; +.ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } -.hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; +.ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } -.hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; +.ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } -.hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; +.ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } -.hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; +.ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } -.hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; +.ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } -.hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; +.ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } -.hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; +.ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } -.hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; +.ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } -.hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; +.ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } -.hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; +.ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } -.hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; +.ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } -.hover\:-translate-x-px:hover { - --tw-translate-x: -1px; +.ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } -.hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; +.ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } -.hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; +.ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } -.hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; +.ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } -.hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; +.ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } -.hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; +.ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } -.hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; +.ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } -.hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; +.ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } -.hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; +.ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } -.hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; +.ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } -.hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; +.ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } -.hover\:translate-x-full:hover { - --tw-translate-x: 100%; +.ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } -.hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; +.ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } -.hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; +.ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } -.hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; +.ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } -.hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; +.ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } -.hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; +.ring-offset-green-600 { + --tw-ring-offset-color: #059669; } -.hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; +.ring-offset-green-700 { + --tw-ring-offset-color: #047857; } -.hover\:-translate-x-full:hover { - --tw-translate-x: -100%; +.ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } -.hover\:translate-y-0:hover { - --tw-translate-y: 0px; +.ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } -.hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; +.ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } -.hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; +.ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } -.hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; +.ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } -.hover\:translate-y-4:hover { - --tw-translate-y: 1rem; +.ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } -.hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; +.ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } -.hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; +.ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } -.hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; +.ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } -.hover\:translate-y-8:hover { - --tw-translate-y: 2rem; +.ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } -.hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; +.ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } -.hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; +.ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } -.hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; +.ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } -.hover\:translate-y-12:hover { - --tw-translate-y: 3rem; +.ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } -.hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; +.ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } -.hover\:translate-y-16:hover { - --tw-translate-y: 4rem; +.ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } -.hover\:translate-y-20:hover { - --tw-translate-y: 5rem; +.ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } -.hover\:translate-y-24:hover { - --tw-translate-y: 6rem; +.ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } -.hover\:translate-y-28:hover { - --tw-translate-y: 7rem; +.ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } -.hover\:translate-y-32:hover { - --tw-translate-y: 8rem; +.ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } -.hover\:translate-y-36:hover { - --tw-translate-y: 9rem; +.ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } -.hover\:translate-y-40:hover { - --tw-translate-y: 10rem; +.ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } -.hover\:translate-y-44:hover { - --tw-translate-y: 11rem; +.ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } -.hover\:translate-y-48:hover { - --tw-translate-y: 12rem; +.ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } -.hover\:translate-y-52:hover { - --tw-translate-y: 13rem; +.ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } -.hover\:translate-y-56:hover { - --tw-translate-y: 14rem; +.ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } -.hover\:translate-y-60:hover { - --tw-translate-y: 15rem; +.ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } -.hover\:translate-y-64:hover { - --tw-translate-y: 16rem; +.ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } -.hover\:translate-y-72:hover { - --tw-translate-y: 18rem; +.ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } -.hover\:translate-y-80:hover { - --tw-translate-y: 20rem; +.ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } -.hover\:translate-y-96:hover { - --tw-translate-y: 24rem; +.ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } -.hover\:translate-y-px:hover { - --tw-translate-y: 1px; +.ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } -.hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; +.ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } -.hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; +.ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } -.hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; +.ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } -.hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; +.ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } -.hover\:-translate-y-0:hover { - --tw-translate-y: 0px; +.ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } -.hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; +.ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } -.hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; +.ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } -.hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; +.ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } -.hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; +.ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } -.hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; +.ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } -.hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; +.focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } -.hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; +.focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } -.hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; +.focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } -.hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; +.focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } -.hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; +.focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } -.hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; +.focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } -.hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; +.focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } -.hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; +.focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } -.hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; +.focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } -.hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; +.focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } -.hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; +.focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } -.hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; +.focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } -.hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; +.focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } -.hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; +.focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } -.hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; +.focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } -.hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; +.focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } -.hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; +.focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } -.hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; +.focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } -.hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; +.focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } -.hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; +.focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } -.hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; +.focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } -.hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; +.focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } -.hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; +.focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } -.hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; +.focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } -.hover\:-translate-y-px:hover { - --tw-translate-y: -1px; +.focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } -.hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; +.focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } -.hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; +.focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } -.hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; +.focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } -.hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; +.focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } -.hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; +.focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } -.hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; +.focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } -.hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; +.focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } -.hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; +.focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } -.hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; +.focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } -.hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; +.focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } -.hover\:translate-y-full:hover { - --tw-translate-y: 100%; +.focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } -.hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; +.focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } -.hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; +.focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } -.hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; +.focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } -.hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; +.focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } -.hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; +.focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } -.hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; +.focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } -.hover\:-translate-y-full:hover { - --tw-translate-y: -100%; +.focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } -.focus\:translate-x-0:focus { - --tw-translate-x: 0px; +.focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } -.focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; +.focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } -.focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; +.focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } -.focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; +.focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } -.focus\:translate-x-4:focus { - --tw-translate-x: 1rem; +.focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } -.focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; +.focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } -.focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; +.focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } -.focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; +.focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } -.focus\:translate-x-8:focus { - --tw-translate-x: 2rem; +.focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } -.focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; +.focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } -.focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; +.focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } -.focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; +.focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } -.focus\:translate-x-12:focus { - --tw-translate-x: 3rem; +.focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } -.focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; +.focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } -.focus\:translate-x-16:focus { - --tw-translate-x: 4rem; +.focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } -.focus\:translate-x-20:focus { - --tw-translate-x: 5rem; +.focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } -.focus\:translate-x-24:focus { - --tw-translate-x: 6rem; +.focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } -.focus\:translate-x-28:focus { - --tw-translate-x: 7rem; +.focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } -.focus\:translate-x-32:focus { - --tw-translate-x: 8rem; +.focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } -.focus\:translate-x-36:focus { - --tw-translate-x: 9rem; +.focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } -.focus\:translate-x-40:focus { - --tw-translate-x: 10rem; +.focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } -.focus\:translate-x-44:focus { - --tw-translate-x: 11rem; +.focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } -.focus\:translate-x-48:focus { - --tw-translate-x: 12rem; +.focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } -.focus\:translate-x-52:focus { - --tw-translate-x: 13rem; +.focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } -.focus\:translate-x-56:focus { - --tw-translate-x: 14rem; +.focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } -.focus\:translate-x-60:focus { - --tw-translate-x: 15rem; +.focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } -.focus\:translate-x-64:focus { - --tw-translate-x: 16rem; +.focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } -.focus\:translate-x-72:focus { - --tw-translate-x: 18rem; +.focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } -.focus\:translate-x-80:focus { - --tw-translate-x: 20rem; +.focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } -.focus\:translate-x-96:focus { - --tw-translate-x: 24rem; +.focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } -.focus\:translate-x-px:focus { - --tw-translate-x: 1px; +.focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } -.focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; +.focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } -.focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; +.focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } -.focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; +.focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } -.focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; +.focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } -.focus\:-translate-x-0:focus { - --tw-translate-x: 0px; +.focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } -.focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; +.focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } -.focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; +.focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } -.focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; +.focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } -.focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; +.focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } -.focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; +.focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } -.focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; +.focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } -.focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; +.focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } -.focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; +.focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } -.focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; +.focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } -.focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; +.focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } -.focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; +.focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } -.focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; +.focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } -.focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; +.focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } -.focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; +.focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } -.focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; +.focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } -.focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; +.focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } -.focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; +.focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } -.focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; +.focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } -.focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; +.focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } -.focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; +.focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } -.focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; +.focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } -.focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; +.focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } -.focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; +.focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } -.focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; +.focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } -.focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; -} - -.focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; -} - -.focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; -} - -.focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; -} - -.focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; -} - -.focus\:-translate-x-px:focus { - --tw-translate-x: -1px; -} - -.focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; -} - -.focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; -} - -.focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; -} - -.focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; -} - -.focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; -} - -.focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; -} - -.focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; -} - -.focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; -} - -.focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; -} - -.focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; -} - -.focus\:translate-x-full:focus { - --tw-translate-x: 100%; -} - -.focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; -} - -.focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; -} - -.focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; -} - -.focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; -} - -.focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; -} - -.focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; -} - -.focus\:-translate-x-full:focus { - --tw-translate-x: -100%; -} - -.focus\:translate-y-0:focus { - --tw-translate-y: 0px; -} - -.focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; -} - -.focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; -} - -.focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; -} - -.focus\:translate-y-4:focus { - --tw-translate-y: 1rem; -} - -.focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; -} - -.focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; -} - -.focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; -} - -.focus\:translate-y-8:focus { - --tw-translate-y: 2rem; -} - -.focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; -} - -.focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; -} - -.focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; -} - -.focus\:translate-y-12:focus { - --tw-translate-y: 3rem; -} - -.focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; -} - -.focus\:translate-y-16:focus { - --tw-translate-y: 4rem; -} - -.focus\:translate-y-20:focus { - --tw-translate-y: 5rem; -} - -.focus\:translate-y-24:focus { - --tw-translate-y: 6rem; -} - -.focus\:translate-y-28:focus { - --tw-translate-y: 7rem; -} - -.focus\:translate-y-32:focus { - --tw-translate-y: 8rem; -} - -.focus\:translate-y-36:focus { - --tw-translate-y: 9rem; -} - -.focus\:translate-y-40:focus { - --tw-translate-y: 10rem; -} - -.focus\:translate-y-44:focus { - --tw-translate-y: 11rem; -} - -.focus\:translate-y-48:focus { - --tw-translate-y: 12rem; -} - -.focus\:translate-y-52:focus { - --tw-translate-y: 13rem; -} - -.focus\:translate-y-56:focus { - --tw-translate-y: 14rem; -} - -.focus\:translate-y-60:focus { - --tw-translate-y: 15rem; -} - -.focus\:translate-y-64:focus { - --tw-translate-y: 16rem; -} - -.focus\:translate-y-72:focus { - --tw-translate-y: 18rem; -} - -.focus\:translate-y-80:focus { - --tw-translate-y: 20rem; -} - -.focus\:translate-y-96:focus { - --tw-translate-y: 24rem; -} - -.focus\:translate-y-px:focus { - --tw-translate-y: 1px; -} - -.focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; -} - -.focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; -} - -.focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; -} - -.focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; -} - -.focus\:-translate-y-0:focus { - --tw-translate-y: 0px; -} - -.focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; -} - -.focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; -} - -.focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; -} - -.focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; -} - -.focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; -} - -.focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; -} - -.focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; -} - -.focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; -} - -.focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; -} - -.focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; -} - -.focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; -} - -.focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; -} - -.focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; -} - -.focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; -} - -.focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; -} - -.focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; -} - -.focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; -} - -.focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; -} - -.focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; -} - -.focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; -} - -.focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; -} - -.focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; -} - -.focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; -} - -.focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; -} - -.focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; -} - -.focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; -} - -.focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; -} - -.focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; -} - -.focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; -} - -.focus\:-translate-y-px:focus { - --tw-translate-y: -1px; -} - -.focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; -} - -.focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; -} - -.focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; -} - -.focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; -} - -.focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; -} - -.focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; -} - -.focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; -} - -.focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; -} - -.focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; -} - -.focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; -} - -.focus\:translate-y-full:focus { - --tw-translate-y: 100%; -} - -.focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; -} - -.focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; -} - -.focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; -} - -.focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; -} - -.focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; -} - -.focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; -} - -.focus\:-translate-y-full:focus { - --tw-translate-y: -100%; -} - -.skew-x-0 { - --tw-skew-x: 0deg; -} - -.skew-x-1 { - --tw-skew-x: 1deg; -} - -.skew-x-2 { - --tw-skew-x: 2deg; -} - -.skew-x-3 { - --tw-skew-x: 3deg; -} - -.skew-x-6 { - --tw-skew-x: 6deg; -} - -.skew-x-12 { - --tw-skew-x: 12deg; -} - -.-skew-x-12 { - --tw-skew-x: -12deg; -} - -.-skew-x-6 { - --tw-skew-x: -6deg; -} - -.-skew-x-3 { - --tw-skew-x: -3deg; -} - -.-skew-x-2 { - --tw-skew-x: -2deg; -} - -.-skew-x-1 { - --tw-skew-x: -1deg; -} - -.skew-y-0 { - --tw-skew-y: 0deg; -} - -.skew-y-1 { - --tw-skew-y: 1deg; -} - -.skew-y-2 { - --tw-skew-y: 2deg; -} - -.skew-y-3 { - --tw-skew-y: 3deg; -} - -.skew-y-6 { - --tw-skew-y: 6deg; -} - -.skew-y-12 { - --tw-skew-y: 12deg; -} - -.-skew-y-12 { - --tw-skew-y: -12deg; -} - -.-skew-y-6 { - --tw-skew-y: -6deg; -} - -.-skew-y-3 { - --tw-skew-y: -3deg; -} - -.-skew-y-2 { - --tw-skew-y: -2deg; -} - -.-skew-y-1 { - --tw-skew-y: -1deg; -} - -.hover\:skew-x-0:hover { - --tw-skew-x: 0deg; -} - -.hover\:skew-x-1:hover { - --tw-skew-x: 1deg; -} - -.hover\:skew-x-2:hover { - --tw-skew-x: 2deg; -} - -.hover\:skew-x-3:hover { - --tw-skew-x: 3deg; -} - -.hover\:skew-x-6:hover { - --tw-skew-x: 6deg; -} - -.hover\:skew-x-12:hover { - --tw-skew-x: 12deg; -} - -.hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; -} - -.hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; -} - -.hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; -} - -.hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; -} - -.hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; -} - -.hover\:skew-y-0:hover { - --tw-skew-y: 0deg; -} - -.hover\:skew-y-1:hover { - --tw-skew-y: 1deg; -} - -.hover\:skew-y-2:hover { - --tw-skew-y: 2deg; -} - -.hover\:skew-y-3:hover { - --tw-skew-y: 3deg; -} - -.hover\:skew-y-6:hover { - --tw-skew-y: 6deg; -} - -.hover\:skew-y-12:hover { - --tw-skew-y: 12deg; -} - -.hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; -} - -.hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; -} - -.hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; -} - -.hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; -} - -.hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; -} - -.focus\:skew-x-0:focus { - --tw-skew-x: 0deg; -} - -.focus\:skew-x-1:focus { - --tw-skew-x: 1deg; -} - -.focus\:skew-x-2:focus { - --tw-skew-x: 2deg; -} - -.focus\:skew-x-3:focus { - --tw-skew-x: 3deg; -} - -.focus\:skew-x-6:focus { - --tw-skew-x: 6deg; -} - -.focus\:skew-x-12:focus { - --tw-skew-x: 12deg; -} - -.focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; -} - -.focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; -} - -.focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; -} - -.focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; -} - -.focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; -} - -.focus\:skew-y-0:focus { - --tw-skew-y: 0deg; -} - -.focus\:skew-y-1:focus { - --tw-skew-y: 1deg; -} - -.focus\:skew-y-2:focus { - --tw-skew-y: 2deg; -} - -.focus\:skew-y-3:focus { - --tw-skew-y: 3deg; -} - -.focus\:skew-y-6:focus { - --tw-skew-y: 6deg; -} - -.focus\:skew-y-12:focus { - --tw-skew-y: 12deg; -} - -.focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; -} - -.focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; -} - -.focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; -} - -.focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; -} - -.focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; -} - -.transition-none { - transition-property: none; -} - -.transition-all { - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; -} - -.transition-colors { - transition-property: background-color, border-color, color, fill, stroke; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; +.focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } -.transition-opacity { - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; +.focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } -.transition-shadow { - transition-property: box-shadow; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; +.focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } -.transition-transform { - transition-property: transform; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; +.focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } -.ease-linear { - transition-timing-function: linear; +.focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } -.ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +.focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } -.ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +.focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } -.ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +.focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } -.duration-75 { - transition-duration: 75ms; +.focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } -.duration-100 { - transition-duration: 100ms; +.focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } -.duration-150 { - transition-duration: 150ms; +.focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } -.duration-200 { - transition-duration: 200ms; +.focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } -.duration-300 { - transition-duration: 300ms; +.focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } -.duration-500 { - transition-duration: 500ms; +.focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } -.duration-700 { - transition-duration: 700ms; +.focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } -.duration-1000 { - transition-duration: 1000ms; +.focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } -.delay-75 { - transition-delay: 75ms; +.focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } -.delay-100 { - transition-delay: 100ms; +.focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } -.delay-150 { - transition-delay: 150ms; +.focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } -.delay-200 { - transition-delay: 200ms; +.focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } -.delay-300 { - transition-delay: 300ms; +.focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } -.delay-500 { - transition-delay: 500ms; +.focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } -.delay-700 { - transition-delay: 700ms; +.focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } -.delay-1000 { - transition-delay: 1000ms; +.focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } -@keyframes spin { - to { - transform: rotate(360deg); - } +.focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } -@keyframes ping { - 75%, 100% { - transform: scale(2); - opacity: 0; - } +.focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } -@keyframes pulse { - 50% { - opacity: .5; - } +.focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } -@keyframes bounce { - 0%, 100% { - transform: translateY(-25%); - animation-timing-function: cubic-bezier(0.8,0,1,1); - } - - 50% { - transform: none; - animation-timing-function: cubic-bezier(0,0,0.2,1); - } +.focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } -.animate-none { - animation: none; +.focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } -.animate-spin { - animation: spin 1s linear infinite; +.focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } -.animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; +.focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } -.animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; +.focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } -.animate-bounce { - animation: bounce 1s infinite; +.focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } -.mix-blend-normal { - mix-blend-mode: normal; +.focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } -.mix-blend-multiply { - mix-blend-mode: multiply; +.focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } -.mix-blend-screen { - mix-blend-mode: screen; +.focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } -.mix-blend-overlay { - mix-blend-mode: overlay; +.focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } -.mix-blend-darken { - mix-blend-mode: darken; +.focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } -.mix-blend-lighten { - mix-blend-mode: lighten; +.focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } -.mix-blend-color-dodge { - mix-blend-mode: color-dodge; +.focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } -.mix-blend-color-burn { - mix-blend-mode: color-burn; +.focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } -.mix-blend-hard-light { - mix-blend-mode: hard-light; +.focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } -.mix-blend-soft-light { - mix-blend-mode: soft-light; +.focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } -.mix-blend-difference { - mix-blend-mode: difference; +.focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } -.mix-blend-exclusion { - mix-blend-mode: exclusion; +.focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } -.mix-blend-hue { - mix-blend-mode: hue; +.focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } -.mix-blend-saturation { - mix-blend-mode: saturation; +.focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } -.mix-blend-color { - mix-blend-mode: color; +.focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } -.mix-blend-luminosity { - mix-blend-mode: luminosity; +.focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } -.bg-blend-normal { - background-blend-mode: normal; +.focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } -.bg-blend-multiply { - background-blend-mode: multiply; +.focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } -.bg-blend-screen { - background-blend-mode: screen; +.focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } -.bg-blend-overlay { - background-blend-mode: overlay; +.focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } -.bg-blend-darken { - background-blend-mode: darken; +.focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } -.bg-blend-lighten { - background-blend-mode: lighten; +.focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } -.bg-blend-color-dodge { - background-blend-mode: color-dodge; +.focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } -.bg-blend-color-burn { - background-blend-mode: color-burn; +.focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } -.bg-blend-hard-light { - background-blend-mode: hard-light; +.focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } -.bg-blend-soft-light { - background-blend-mode: soft-light; +.focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } -.bg-blend-difference { - background-blend-mode: difference; +.focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } -.bg-blend-exclusion { - background-blend-mode: exclusion; +.focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } -.bg-blend-hue { - background-blend-mode: hue; +.focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } -.bg-blend-saturation { - background-blend-mode: saturation; +.focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } -.bg-blend-color { - background-blend-mode: color; +.focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } -.bg-blend-luminosity { - background-blend-mode: luminosity; +.focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } .filter { @@ -29791,27 +29671,147 @@ video { --tw-backdrop-sepia: sepia(100%); } -.example { - font-weight: 700; - color: #ef4444; +.transition-none { + transition-property: none; } -@media (min-width: 640px) { - .sm\:container { - width: 100%; - } +.transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} - @media (min-width: 640px) { - .sm\:container { - max-width: 640px; - } - } +.transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} - @media (min-width: 768px) { - .sm\:container { - max-width: 768px; - } - } +.transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.delay-75 { + transition-delay: 75ms; +} + +.delay-100 { + transition-delay: 100ms; +} + +.delay-150 { + transition-delay: 150ms; +} + +.delay-200 { + transition-delay: 200ms; +} + +.delay-300 { + transition-delay: 300ms; +} + +.delay-500 { + transition-delay: 500ms; +} + +.delay-700 { + transition-delay: 700ms; +} + +.delay-1000 { + transition-delay: 1000ms; +} + +.duration-75 { + transition-duration: 75ms; +} + +.duration-100 { + transition-duration: 100ms; +} + +.duration-150 { + transition-duration: 150ms; +} + +.duration-200 { + transition-duration: 200ms; +} + +.duration-300 { + transition-duration: 300ms; +} + +.duration-500 { + transition-duration: 500ms; +} + +.duration-700 { + transition-duration: 700ms; +} + +.duration-1000 { + transition-duration: 1000ms; +} + +.ease-linear { + transition-timing-function: linear; +} + +.ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +} + +.ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +} + +.ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} + +.example { + font-weight: 700; + color: #ef4444; +} + +@media (min-width: 640px) { + .sm\:container { + width: 100%; + } + + @media (min-width: 640px) { + .sm\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .sm\:container { + max-width: 768px; + } + } @media (min-width: 1024px) { .sm\:container { @@ -29825,21658 +29825,21847 @@ video { } } - @media (min-width: 1536px) { - .sm\:container { - max-width: 1536px; - } + @media (min-width: 1536px) { + .sm\:container { + max-width: 1536px; + } + } + + .sm\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:pointer-events-none { + pointer-events: none; + } + + .sm\:pointer-events-auto { + pointer-events: auto; + } + + .sm\:visible { + visibility: visible; + } + + .sm\:invisible { + visibility: hidden; + } + + .sm\:static { + position: static; + } + + .sm\:fixed { + position: fixed; + } + + .sm\:absolute { + position: absolute; + } + + .sm\:relative { + position: relative; + } + + .sm\:sticky { + position: sticky; + } + + .sm\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .sm\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .sm\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .sm\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; + } + + .sm\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; + } + + .sm\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; + } + + .sm\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; + } + + .sm\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; + } + + .sm\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; + } + + .sm\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; + } + + .sm\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; + } + + .sm\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; + } + + .sm\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; + } + + .sm\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .sm\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; + } + + .sm\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; + } + + .sm\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; + } + + .sm\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; + } + + .sm\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; + } + + .sm\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; + } + + .sm\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; + } + + .sm\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; + } + + .sm\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; + } + + .sm\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; + } + + .sm\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; + } + + .sm\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; + } + + .sm\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; + } + + .sm\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; + } + + .sm\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; + } + + .sm\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; + } + + .sm\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .sm\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; + } + + .sm\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .sm\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .sm\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .sm\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .sm\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .sm\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .sm\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .sm\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; + } + + .sm\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; + } + + .sm\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; + } + + .sm\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; + } + + .sm\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; + } + + .sm\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; + } + + .sm\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; + } + + .sm\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; + } + + .sm\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; + } + + .sm\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; + } + + .sm\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .sm\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; + } + + .sm\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; + } + + .sm\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; + } + + .sm\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; + } + + .sm\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; + } + + .sm\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; + } + + .sm\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; + } + + .sm\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; + } + + .sm\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; + } + + .sm\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; + } + + .sm\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; + } + + .sm\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; + } + + .sm\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; + } + + .sm\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; + } + + .sm\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; + } + + .sm\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; + } + + .sm\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .sm\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .sm\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .sm\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .sm\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .sm\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .sm\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .sm\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .sm\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .sm\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .sm\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .sm\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .sm\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .sm\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .sm\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .sm\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .sm\:inset-x-0 { + right: 0px; + left: 0px; + } + + .sm\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .sm\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .sm\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .sm\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .sm\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .sm\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; + } + + .sm\:inset-y-4 { + top: 1rem; + bottom: 1rem; + } + + .sm\:inset-x-4 { + right: 1rem; + left: 1rem; + } + + .sm\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; + } + + .sm\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; + } + + .sm\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; + } + + .sm\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; + } + + .sm\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; + } + + .sm\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; + } + + .sm\:inset-y-8 { + top: 2rem; + bottom: 2rem; + } + + .sm\:inset-x-8 { + right: 2rem; + left: 2rem; + } + + .sm\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; + } + + .sm\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; + } + + .sm\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; + } + + .sm\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; + } + + .sm\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; + } + + .sm\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; + } + + .sm\:inset-y-12 { + top: 3rem; + bottom: 3rem; + } + + .sm\:inset-x-12 { + right: 3rem; + left: 3rem; + } + + .sm\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .sm\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .sm\:inset-y-16 { + top: 4rem; + bottom: 4rem; + } + + .sm\:inset-x-16 { + right: 4rem; + left: 4rem; + } + + .sm\:inset-y-20 { + top: 5rem; + bottom: 5rem; + } + + .sm\:inset-x-20 { + right: 5rem; + left: 5rem; + } + + .sm\:inset-y-24 { + top: 6rem; + bottom: 6rem; + } + + .sm\:inset-x-24 { + right: 6rem; + left: 6rem; + } + + .sm\:inset-y-28 { + top: 7rem; + bottom: 7rem; + } + + .sm\:inset-x-28 { + right: 7rem; + left: 7rem; + } + + .sm\:inset-y-32 { + top: 8rem; + bottom: 8rem; + } + + .sm\:inset-x-32 { + right: 8rem; + left: 8rem; + } + + .sm\:inset-y-36 { + top: 9rem; + bottom: 9rem; + } + + .sm\:inset-x-36 { + right: 9rem; + left: 9rem; + } + + .sm\:inset-y-40 { + top: 10rem; + bottom: 10rem; + } + + .sm\:inset-x-40 { + right: 10rem; + left: 10rem; + } + + .sm\:inset-y-44 { + top: 11rem; + bottom: 11rem; + } + + .sm\:inset-x-44 { + right: 11rem; + left: 11rem; + } + + .sm\:inset-y-48 { + top: 12rem; + bottom: 12rem; + } + + .sm\:inset-x-48 { + right: 12rem; + left: 12rem; + } + + .sm\:inset-y-52 { + top: 13rem; + bottom: 13rem; + } + + .sm\:inset-x-52 { + right: 13rem; + left: 13rem; + } + + .sm\:inset-y-56 { + top: 14rem; + bottom: 14rem; + } + + .sm\:inset-x-56 { + right: 14rem; + left: 14rem; + } + + .sm\:inset-y-60 { + top: 15rem; + bottom: 15rem; + } + + .sm\:inset-x-60 { + right: 15rem; + left: 15rem; + } + + .sm\:inset-y-64 { + top: 16rem; + bottom: 16rem; + } + + .sm\:inset-x-64 { + right: 16rem; + left: 16rem; + } + + .sm\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .sm\: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\:inset-x-72 { + right: 18rem; + left: 18rem; } - .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\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .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\:inset-x-80 { + right: 20rem; + left: 20rem; } - .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\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .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\:inset-x-96 { + right: 24rem; + left: 24rem; } - .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\:inset-y-auto { + top: auto; + bottom: auto; } - .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\:inset-x-auto { + right: auto; + left: auto; } - .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\:inset-y-px { + top: 1px; + bottom: 1px; } - .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\:inset-x-px { + right: 1px; + left: 1px; } - .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\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .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\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .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\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .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\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .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\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .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\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .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\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .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\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .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\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .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\:-inset-x-0 { + right: 0px; + left: 0px; } - .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\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .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\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .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\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .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\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .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\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .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\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .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\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .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\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .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\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .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\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } - .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\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - .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\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - .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\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - .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\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - .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\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - .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\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .sm\:right-6 { + right: 1.5rem; } - .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .sm\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .sm\:right-9 { + right: 2.25rem; } - .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .sm\:bottom-9 { + bottom: 2.25rem; } - .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .sm\:left-9 { + left: 2.25rem; } - .sm\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .sm\:top-10 { + top: 2.5rem; } - .sm\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + .sm\:right-10 { + right: 2.5rem; } - .sm\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + .sm\:bottom-10 { + bottom: 2.5rem; } - .sm\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + .sm\:left-10 { + left: 2.5rem; } - .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + .sm\:top-11 { + top: 2.75rem; } - .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + .sm\:right-11 { + right: 2.75rem; } - .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + .sm\:bottom-11 { + bottom: 2.75rem; } - .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + .sm\:left-11 { + left: 2.75rem; } - .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + .sm\:top-12 { + top: 3rem; } - .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + .sm\:right-12 { + right: 3rem; } - .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + .sm\:bottom-12 { + bottom: 3rem; } - .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + .sm\:left-12 { + left: 3rem; } - .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + .sm\:top-14 { + top: 3.5rem; } - .sm\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); + .sm\:right-14 { + right: 3.5rem; } - .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); + .sm\:bottom-14 { + bottom: 3.5rem; } - .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); + .sm\:left-14 { + left: 3.5rem; } - .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); + .sm\:top-16 { + top: 4rem; } - .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); + .sm\:right-16 { + right: 4rem; } - .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); + .sm\:bottom-16 { + bottom: 4rem; } - .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); + .sm\:left-16 { + left: 4rem; } - .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); + .sm\:top-20 { + top: 5rem; } - .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); + .sm\:right-20 { + right: 5rem; } - .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); + .sm\:bottom-20 { + bottom: 5rem; } - .sm\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); + .sm\:left-20 { + left: 5rem; } - .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); + .sm\:top-24 { + top: 6rem; } - .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); + .sm\:right-24 { + right: 6rem; } - .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); + .sm\:bottom-24 { + bottom: 6rem; } - .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); + .sm\:left-24 { + left: 6rem; } - .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + .sm\:top-28 { + top: 7rem; } - .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); + .sm\:right-28 { + right: 7rem; } - .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); + .sm\:bottom-28 { + bottom: 7rem; } - .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); + .sm\:left-28 { + left: 7rem; } - .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); + .sm\:top-32 { + top: 8rem; } - .sm\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); + .sm\:right-32 { + right: 8rem; } - .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); + .sm\:bottom-32 { + bottom: 8rem; } - .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); + .sm\:left-32 { + left: 8rem; } - .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); + .sm\:top-36 { + top: 9rem; } - .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); + .sm\:right-36 { + right: 9rem; } - .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); + .sm\:bottom-36 { + bottom: 9rem; } - .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); + .sm\:left-36 { + left: 9rem; } - .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); + .sm\:top-40 { + top: 10rem; } - .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); + .sm\:right-40 { + right: 10rem; } - .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); + .sm\:bottom-40 { + bottom: 10rem; } - .sm\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); + .sm\:left-40 { + left: 10rem; } - .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); + .sm\:top-44 { + top: 11rem; } - .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); + .sm\:right-44 { + right: 11rem; } - .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); + .sm\:bottom-44 { + bottom: 11rem; } - .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); + .sm\:left-44 { + left: 11rem; } - .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + .sm\:top-48 { + top: 12rem; } - .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); + .sm\:right-48 { + right: 12rem; } - .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); + .sm\:bottom-48 { + bottom: 12rem; } - .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); + .sm\:left-48 { + left: 12rem; } - .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); + .sm\:top-52 { + top: 13rem; } - .sm\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); + .sm\:right-52 { + right: 13rem; } - .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); + .sm\:bottom-52 { + bottom: 13rem; } - .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); + .sm\:left-52 { + left: 13rem; } - .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); + .sm\:top-56 { + top: 14rem; } - .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); + .sm\:right-56 { + right: 14rem; } - .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); + .sm\:bottom-56 { + bottom: 14rem; } - .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); + .sm\:left-56 { + left: 14rem; } - .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); + .sm\:top-60 { + top: 15rem; } - .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); + .sm\:right-60 { + right: 15rem; } - .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); + .sm\:bottom-60 { + bottom: 15rem; } - .sm\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); + .sm\:left-60 { + left: 15rem; } - .sm\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); + .sm\:top-64 { + top: 16rem; } - .sm\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); + .sm\:right-64 { + right: 16rem; } - .sm\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); + .sm\:bottom-64 { + bottom: 16rem; } - .sm\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); + .sm\:left-64 { + left: 16rem; } - .sm\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); + .sm\:top-72 { + top: 18rem; } - .sm\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); + .sm\:right-72 { + right: 18rem; } - .sm\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); + .sm\:bottom-72 { + bottom: 18rem; } - .sm\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); + .sm\:left-72 { + left: 18rem; } - .sm\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); + .sm\:top-80 { + top: 20rem; } - .sm\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); + .sm\:right-80 { + right: 20rem; } - .sm\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); + .sm\:bottom-80 { + bottom: 20rem; } - .sm\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); + .sm\:left-80 { + left: 20rem; } - .sm\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); + .sm\:top-96 { + top: 24rem; } - .sm\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); + .sm\:right-96 { + right: 24rem; } - .sm\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); + .sm\:bottom-96 { + bottom: 24rem; } - .sm\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); + .sm\:left-96 { + left: 24rem; } - .sm\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); + .sm\:top-auto { + top: auto; } - .sm\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); + .sm\:right-auto { + right: auto; } - .sm\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); + .sm\:bottom-auto { + bottom: auto; } - .sm\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .sm\:left-auto { + left: auto; } - .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .sm\:top-px { + top: 1px; } - .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .sm\:right-px { + right: 1px; } - .sm\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .sm\:bottom-px { + bottom: 1px; } - .sm\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .sm\:left-px { + left: 1px; } - .sm\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; + .sm\:top-0\.5 { + top: 0.125rem; } - .sm\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; + .sm\:right-0\.5 { + right: 0.125rem; } - .sm\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; + .sm\:bottom-0\.5 { + bottom: 0.125rem; } - .sm\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; + .sm\:left-0\.5 { + left: 0.125rem; } - .sm\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; + .sm\:top-1\.5 { + top: 0.375rem; } - .sm\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; + .sm\:right-1\.5 { + right: 0.375rem; } - .sm\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; + .sm\:bottom-1\.5 { + bottom: 0.375rem; } - .sm\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; + .sm\:left-1\.5 { + left: 0.375rem; } - .sm\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; + .sm\:top-2\.5 { + top: 0.625rem; } - .sm\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; + .sm\:right-2\.5 { + right: 0.625rem; } - .sm\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; + .sm\:bottom-2\.5 { + bottom: 0.625rem; } - .sm\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; + .sm\:left-2\.5 { + left: 0.625rem; } - .sm\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; + .sm\:top-3\.5 { + top: 0.875rem; } - .sm\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; + .sm\:right-3\.5 { + right: 0.875rem; } - .sm\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; + .sm\:bottom-3\.5 { + bottom: 0.875rem; } - .sm\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .sm\:left-3\.5 { + left: 0.875rem; } - .sm\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .sm\:-top-0 { + top: 0px; } - .sm\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .sm\:-right-0 { + right: 0px; } - .sm\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .sm\:-bottom-0 { + bottom: 0px; } - .sm\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .sm\:-left-0 { + left: 0px; } - .sm\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .sm\:-top-1 { + top: -0.25rem; } - .sm\:appearance-none { - appearance: none; + .sm\:-right-1 { + right: -0.25rem; } - .sm\:bg-fixed { - background-attachment: fixed; + .sm\:-bottom-1 { + bottom: -0.25rem; } - .sm\:bg-local { - background-attachment: local; + .sm\:-left-1 { + left: -0.25rem; } - .sm\:bg-scroll { - background-attachment: scroll; + .sm\:-top-2 { + top: -0.5rem; } - .sm\:bg-clip-border { - background-clip: border-box; + .sm\:-right-2 { + right: -0.5rem; } - .sm\:bg-clip-padding { - background-clip: padding-box; + .sm\:-bottom-2 { + bottom: -0.5rem; } - .sm\:bg-clip-content { - background-clip: content-box; + .sm\:-left-2 { + left: -0.5rem; } - .sm\:bg-clip-text { - background-clip: text; + .sm\:-top-3 { + top: -0.75rem; } - .sm\:bg-transparent { - background-color: transparent; + .sm\:-right-3 { + right: -0.75rem; } - .sm\:bg-current { - background-color: currentColor; + .sm\:-bottom-3 { + bottom: -0.75rem; } - .sm\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .sm\:-left-3 { + left: -0.75rem; } - .sm\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .sm\:-top-4 { + top: -1rem; } - .sm\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .sm\:-right-4 { + right: -1rem; } - .sm\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .sm\:-bottom-4 { + bottom: -1rem; } - .sm\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .sm\:-left-4 { + left: -1rem; } - .sm\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .sm\:-top-5 { + top: -1.25rem; } - .sm\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .sm\:-right-5 { + right: -1.25rem; } - .sm\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .sm\:-bottom-5 { + bottom: -1.25rem; } - .sm\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .sm\:-left-5 { + left: -1.25rem; } - .sm\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .sm\:-top-6 { + top: -1.5rem; } - .sm\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .sm\:-right-6 { + right: -1.5rem; } - .sm\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .sm\:-bottom-6 { + bottom: -1.5rem; } - .sm\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .sm\:-left-6 { + left: -1.5rem; } - .sm\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .sm\:-top-7 { + top: -1.75rem; } - .sm\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .sm\:-right-7 { + right: -1.75rem; } - .sm\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .sm\:-bottom-7 { + bottom: -1.75rem; } - .sm\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .sm\:-left-7 { + left: -1.75rem; } - .sm\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .sm\:-top-8 { + top: -2rem; } - .sm\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .sm\:-right-8 { + right: -2rem; } - .sm\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .sm\:-bottom-8 { + bottom: -2rem; } - .sm\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .sm\:-left-8 { + left: -2rem; } - .sm\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .sm\:-top-9 { + top: -2.25rem; } - .sm\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .sm\:-right-9 { + right: -2.25rem; } - .sm\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .sm\:-bottom-9 { + bottom: -2.25rem; } - .sm\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .sm\:-left-9 { + left: -2.25rem; } - .sm\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .sm\:-top-10 { + top: -2.5rem; } - .sm\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .sm\:-right-10 { + right: -2.5rem; } - .sm\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .sm\:-bottom-10 { + bottom: -2.5rem; } - .sm\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .sm\:-left-10 { + left: -2.5rem; } - .sm\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .sm\:-top-11 { + top: -2.75rem; } - .sm\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .sm\:-right-11 { + right: -2.75rem; } - .sm\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .sm\:-bottom-11 { + bottom: -2.75rem; } - .sm\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .sm\:-left-11 { + left: -2.75rem; } - .sm\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .sm\:-top-12 { + top: -3rem; } - .sm\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .sm\:-right-12 { + right: -3rem; } - .sm\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .sm\:-bottom-12 { + bottom: -3rem; } - .sm\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .sm\:-left-12 { + left: -3rem; } - .sm\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .sm\:-top-14 { + top: -3.5rem; } - .sm\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .sm\:-right-14 { + right: -3.5rem; } - .sm\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .sm\:-bottom-14 { + bottom: -3.5rem; } - .sm\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .sm\:-left-14 { + left: -3.5rem; } - .sm\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .sm\:-top-16 { + top: -4rem; } - .sm\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .sm\:-right-16 { + right: -4rem; } - .sm\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .sm\:-bottom-16 { + bottom: -4rem; } - .sm\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .sm\:-left-16 { + left: -4rem; } - .sm\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .sm\:-top-20 { + top: -5rem; } - .sm\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .sm\:-right-20 { + right: -5rem; } - .sm\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .sm\:-bottom-20 { + bottom: -5rem; } - .sm\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .sm\:-left-20 { + left: -5rem; } - .sm\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .sm\:-top-24 { + top: -6rem; } - .sm\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .sm\:-right-24 { + right: -6rem; } - .sm\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .sm\:-bottom-24 { + bottom: -6rem; } - .sm\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .sm\:-left-24 { + left: -6rem; } - .sm\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .sm\:-top-28 { + top: -7rem; } - .sm\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .sm\:-right-28 { + right: -7rem; } - .sm\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .sm\:-bottom-28 { + bottom: -7rem; } - .sm\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .sm\:-left-28 { + left: -7rem; } - .sm\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .sm\:-top-32 { + top: -8rem; } - .sm\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .sm\:-right-32 { + right: -8rem; } - .sm\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .sm\:-bottom-32 { + bottom: -8rem; } - .sm\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .sm\:-left-32 { + left: -8rem; } - .sm\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .sm\:-top-36 { + top: -9rem; } - .sm\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .sm\:-right-36 { + right: -9rem; } - .sm\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .sm\:-bottom-36 { + bottom: -9rem; } - .sm\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .sm\:-left-36 { + left: -9rem; } - .sm\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .sm\:-top-40 { + top: -10rem; } - .sm\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .sm\:-right-40 { + right: -10rem; } - .sm\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .sm\:-bottom-40 { + bottom: -10rem; } - .sm\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .sm\:-left-40 { + left: -10rem; } - .sm\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .sm\:-top-44 { + top: -11rem; } - .sm\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .sm\:-right-44 { + right: -11rem; } - .sm\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .sm\:-bottom-44 { + bottom: -11rem; } - .sm\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .sm\:-left-44 { + left: -11rem; } - .sm\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .sm\:-top-48 { + top: -12rem; } - .sm\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .sm\:-right-48 { + right: -12rem; } - .sm\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .sm\:-bottom-48 { + bottom: -12rem; } - .sm\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .sm\:-left-48 { + left: -12rem; } - .sm\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .sm\:-top-52 { + top: -13rem; } - .sm\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .sm\:-right-52 { + right: -13rem; } - .sm\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .sm\:-bottom-52 { + bottom: -13rem; + } + + .sm\:-left-52 { + left: -13rem; } - .sm\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .sm\:-top-56 { + top: -14rem; } - .sm\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .sm\:-right-56 { + right: -14rem; } - .group:hover .sm\:group-hover\:bg-transparent { - background-color: transparent; + .sm\:-bottom-56 { + bottom: -14rem; } - .group:hover .sm\:group-hover\:bg-current { - background-color: currentColor; + .sm\:-left-56 { + left: -14rem; } - .group:hover .sm\:group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .sm\:-top-60 { + top: -15rem; } - .group:hover .sm\:group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .sm\:-right-60 { + right: -15rem; } - .group:hover .sm\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .sm\:-bottom-60 { + bottom: -15rem; } - .group:hover .sm\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .sm\:-left-60 { + left: -15rem; } - .group:hover .sm\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .sm\:-top-64 { + top: -16rem; } - .group:hover .sm\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .sm\:-right-64 { + right: -16rem; } - .group:hover .sm\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .sm\:-bottom-64 { + bottom: -16rem; } - .group:hover .sm\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .sm\:-left-64 { + left: -16rem; } - .group:hover .sm\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .sm\:-top-72 { + top: -18rem; } - .group:hover .sm\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .sm\:-right-72 { + right: -18rem; } - .group:hover .sm\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .sm\:-bottom-72 { + bottom: -18rem; } - .group:hover .sm\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .sm\:-left-72 { + left: -18rem; } - .group:hover .sm\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .sm\:-top-80 { + top: -20rem; } - .group:hover .sm\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .sm\:-right-80 { + right: -20rem; } - .group:hover .sm\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .sm\:-bottom-80 { + bottom: -20rem; } - .group:hover .sm\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .sm\:-left-80 { + left: -20rem; } - .group:hover .sm\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .sm\:-top-96 { + top: -24rem; } - .group:hover .sm\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .sm\:-right-96 { + right: -24rem; } - .group:hover .sm\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .sm\:-bottom-96 { + bottom: -24rem; } - .group:hover .sm\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .sm\:-left-96 { + left: -24rem; } - .group:hover .sm\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .sm\:-top-px { + top: -1px; } - .group:hover .sm\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .sm\:-right-px { + right: -1px; } - .group:hover .sm\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .sm\:-bottom-px { + bottom: -1px; } - .group:hover .sm\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .sm\:-left-px { + left: -1px; } - .group:hover .sm\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .sm\:-top-0\.5 { + top: -0.125rem; } - .group:hover .sm\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .sm\:-right-0\.5 { + right: -0.125rem; } - .group:hover .sm\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .sm\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .sm\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .sm\:-left-0\.5 { + left: -0.125rem; } - .group:hover .sm\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .sm\:-top-1\.5 { + top: -0.375rem; } - .group:hover .sm\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .sm\:-right-1\.5 { + right: -0.375rem; } - .group:hover .sm\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .sm\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .sm\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .sm\:-left-1\.5 { + left: -0.375rem; } - .group:hover .sm\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .sm\:-top-2\.5 { + top: -0.625rem; } - .group:hover .sm\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .sm\:-right-2\.5 { + right: -0.625rem; } - .group:hover .sm\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .sm\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .sm\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .sm\:-left-2\.5 { + left: -0.625rem; } - .group:hover .sm\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .sm\:-top-3\.5 { + top: -0.875rem; } - .group:hover .sm\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .sm\:-right-3\.5 { + right: -0.875rem; } - .group:hover .sm\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .sm\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .sm\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .sm\:-left-3\.5 { + left: -0.875rem; } - .group:hover .sm\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .sm\:top-1\/2 { + top: 50%; } - .group:hover .sm\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .sm\:right-1\/2 { + right: 50%; } - .group:hover .sm\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .sm\:bottom-1\/2 { + bottom: 50%; } - .group:hover .sm\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .sm\:left-1\/2 { + left: 50%; } - .group:hover .sm\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .sm\:top-1\/3 { + top: 33.333333%; } - .group:hover .sm\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .sm\:right-1\/3 { + right: 33.333333%; } - .group:hover .sm\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .sm\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .sm\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .sm\:left-1\/3 { + left: 33.333333%; } - .group:hover .sm\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .sm\:top-2\/3 { + top: 66.666667%; } - .group:hover .sm\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .sm\:right-2\/3 { + right: 66.666667%; } - .group:hover .sm\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .sm\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .sm\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .sm\:left-2\/3 { + left: 66.666667%; } - .group:hover .sm\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .sm\:top-1\/4 { + top: 25%; } - .group:hover .sm\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .sm\:right-1\/4 { + right: 25%; } - .group:hover .sm\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .sm\:bottom-1\/4 { + bottom: 25%; } - .group:hover .sm\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .sm\:left-1\/4 { + left: 25%; } - .group:hover .sm\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .sm\:top-2\/4 { + top: 50%; } - .group:hover .sm\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .sm\:right-2\/4 { + right: 50%; } - .group:hover .sm\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .sm\:bottom-2\/4 { + bottom: 50%; } - .group:hover .sm\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .sm\:left-2\/4 { + left: 50%; } - .group:hover .sm\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .sm\:top-3\/4 { + top: 75%; } - .group:hover .sm\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .sm\:right-3\/4 { + right: 75%; } - .group:hover .sm\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .sm\:bottom-3\/4 { + bottom: 75%; } - .group:hover .sm\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .sm\:left-3\/4 { + left: 75%; } - .group:hover .sm\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .sm\:top-full { + top: 100%; } - .group:hover .sm\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .sm\:right-full { + right: 100%; } - .group:hover .sm\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .sm\:bottom-full { + bottom: 100%; } - .group:hover .sm\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .sm\:left-full { + left: 100%; } - .group:hover .sm\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .sm\:-top-1\/2 { + top: -50%; } - .group:hover .sm\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .sm\:-right-1\/2 { + right: -50%; } - .group:hover .sm\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .sm\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .sm\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .sm\:-left-1\/2 { + left: -50%; } - .group:hover .sm\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .sm\:-top-1\/3 { + top: -33.333333%; } - .group:hover .sm\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .sm\:-right-1\/3 { + right: -33.333333%; } - .group:hover .sm\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .sm\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .sm\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .sm\:-left-1\/3 { + left: -33.333333%; } - .group:hover .sm\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .sm\:-top-2\/3 { + top: -66.666667%; } - .group:hover .sm\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .sm\:-right-2\/3 { + right: -66.666667%; } - .group:hover .sm\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .sm\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .sm\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .sm\:-left-2\/3 { + left: -66.666667%; } - .group:hover .sm\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .sm\:-top-1\/4 { + top: -25%; } - .group:hover .sm\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .sm\:-right-1\/4 { + right: -25%; } - .sm\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .sm\:-bottom-1\/4 { + bottom: -25%; } - .sm\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .sm\:-left-1\/4 { + left: -25%; } - .sm\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .sm\:-top-2\/4 { + top: -50%; } - .sm\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .sm\:-right-2\/4 { + right: -50%; } - .sm\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .sm\:-bottom-2\/4 { + bottom: -50%; } - .sm\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .sm\:-left-2\/4 { + left: -50%; } - .sm\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .sm\:-top-3\/4 { + top: -75%; } - .sm\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .sm\:-right-3\/4 { + right: -75%; } - .sm\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .sm\:-bottom-3\/4 { + bottom: -75%; } - .sm\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .sm\:-left-3\/4 { + left: -75%; } - .sm\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .sm\:-top-full { + top: -100%; } - .sm\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .sm\:-right-full { + right: -100%; } - .sm\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .sm\:-bottom-full { + bottom: -100%; } - .sm\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .sm\:-left-full { + left: -100%; } - .sm\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .sm\:isolate { + isolation: isolate; } - .sm\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .sm\:isolation-auto { + isolation: auto; } - .sm\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .sm\:z-0 { + z-index: 0; } - .sm\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .sm\:z-10 { + z-index: 10; } - .sm\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .sm\:z-20 { + z-index: 20; } - .sm\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .sm\:z-30 { + z-index: 30; } - .sm\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .sm\:z-40 { + z-index: 40; } - .sm\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .sm\:z-50 { + z-index: 50; } - .sm\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .sm\:z-auto { + z-index: auto; } - .sm\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .sm\:focus-within\:z-0:focus-within { + z-index: 0; } - .sm\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .sm\:focus-within\:z-10:focus-within { + z-index: 10; } - .sm\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .sm\:focus-within\:z-20:focus-within { + z-index: 20; } - .sm\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .sm\:focus-within\:z-30:focus-within { + z-index: 30; } - .sm\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .sm\:focus-within\:z-40:focus-within { + z-index: 40; } - .sm\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .sm\:focus-within\:z-50:focus-within { + z-index: 50; } - .sm\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .sm\:focus-within\:z-auto:focus-within { + z-index: auto; } - .sm\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .sm\:focus\:z-0:focus { + z-index: 0; } - .sm\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .sm\:focus\:z-10:focus { + z-index: 10; } - .sm\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .sm\:focus\:z-20:focus { + z-index: 20; } - .sm\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .sm\:focus\:z-30:focus { + z-index: 30; } - .sm\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .sm\:focus\:z-40:focus { + z-index: 40; } - .sm\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .sm\:focus\:z-50:focus { + z-index: 50; } - .sm\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .sm\:focus\:z-auto:focus { + z-index: auto; } - .sm\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .sm\:order-1 { + order: 1; } - .sm\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .sm\:order-2 { + order: 2; } - .sm\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .sm\:order-3 { + order: 3; } - .sm\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .sm\:order-4 { + order: 4; } - .sm\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .sm\:order-5 { + order: 5; } - .sm\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .sm\:order-6 { + order: 6; } - .sm\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .sm\:order-7 { + order: 7; } - .sm\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .sm\:order-8 { + order: 8; } - .sm\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .sm\:order-9 { + order: 9; } - .sm\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .sm\:order-10 { + order: 10; } - .sm\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .sm\:order-11 { + order: 11; } - .sm\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .sm\:order-12 { + order: 12; } - .sm\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .sm\:order-first { + order: -9999; } - .sm\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .sm\:order-last { + order: 9999; } - .sm\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .sm\:order-none { + order: 0; } - .sm\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .sm\:col-auto { + grid-column: auto; } - .sm\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .sm\:col-span-1 { + grid-column: span 1 / span 1; } - .sm\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .sm\:col-span-2 { + grid-column: span 2 / span 2; } - .sm\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .sm\:col-span-3 { + grid-column: span 3 / span 3; } - .sm\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .sm\:col-span-4 { + grid-column: span 4 / span 4; } - .sm\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .sm\:col-span-5 { + grid-column: span 5 / span 5; } - .sm\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .sm\:col-span-6 { + grid-column: span 6 / span 6; } - .sm\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .sm\:col-span-7 { + grid-column: span 7 / span 7; } - .sm\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .sm\:col-span-8 { + grid-column: span 8 / span 8; } - .sm\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .sm\:col-span-9 { + grid-column: span 9 / span 9; } - .sm\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .sm\:col-span-10 { + grid-column: span 10 / span 10; } - .sm\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .sm\:col-span-11 { + grid-column: span 11 / span 11; } - .sm\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .sm\:col-span-12 { + grid-column: span 12 / span 12; } - .sm\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .sm\:col-span-full { + grid-column: 1 / -1; } - .sm\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .sm\:col-start-1 { + grid-column-start: 1; } - .sm\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .sm\:col-start-2 { + grid-column-start: 2; } - .sm\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .sm\:col-start-3 { + grid-column-start: 3; } - .sm\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .sm\:col-start-4 { + grid-column-start: 4; } - .sm\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .sm\:col-start-5 { + grid-column-start: 5; } - .sm\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .sm\:col-start-6 { + grid-column-start: 6; } - .sm\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .sm\:col-start-7 { + grid-column-start: 7; } - .sm\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .sm\:col-start-8 { + grid-column-start: 8; } - .sm\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .sm\:col-start-9 { + grid-column-start: 9; } - .sm\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .sm\:col-start-10 { + grid-column-start: 10; } - .sm\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .sm\:col-start-11 { + grid-column-start: 11; } - .sm\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .sm\:col-start-12 { + grid-column-start: 12; } - .sm\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .sm\:col-start-13 { + grid-column-start: 13; } - .sm\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .sm\:col-start-auto { + grid-column-start: auto; } - .sm\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .sm\:col-end-1 { + grid-column-end: 1; } - .sm\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .sm\:col-end-2 { + grid-column-end: 2; } - .sm\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .sm\:col-end-3 { + grid-column-end: 3; } - .sm\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .sm\:col-end-4 { + grid-column-end: 4; } - .sm\:hover\:bg-transparent:hover { - background-color: transparent; + .sm\:col-end-5 { + grid-column-end: 5; } - .sm\:hover\:bg-current:hover { - background-color: currentColor; + .sm\:col-end-6 { + grid-column-end: 6; } - .sm\:hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .sm\:col-end-7 { + grid-column-end: 7; } - .sm\:hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .sm\:col-end-8 { + grid-column-end: 8; } - .sm\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .sm\:col-end-9 { + grid-column-end: 9; } - .sm\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .sm\:col-end-10 { + grid-column-end: 10; } - .sm\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .sm\:col-end-11 { + grid-column-end: 11; } - .sm\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .sm\:col-end-12 { + grid-column-end: 12; } - .sm\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .sm\:col-end-13 { + grid-column-end: 13; } - .sm\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .sm\:col-end-auto { + grid-column-end: auto; } - .sm\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .sm\:row-auto { + grid-row: auto; } - .sm\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .sm\:row-span-1 { + grid-row: span 1 / span 1; } - .sm\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .sm\:row-span-2 { + grid-row: span 2 / span 2; } - .sm\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .sm\:row-span-3 { + grid-row: span 3 / span 3; } - .sm\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .sm\:row-span-4 { + grid-row: span 4 / span 4; } - .sm\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .sm\:row-span-5 { + grid-row: span 5 / span 5; } - .sm\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .sm\:row-span-6 { + grid-row: span 6 / span 6; } - .sm\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .sm\:row-span-full { + grid-row: 1 / -1; } - .sm\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .sm\:row-start-1 { + grid-row-start: 1; } - .sm\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .sm\:row-start-2 { + grid-row-start: 2; } - .sm\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .sm\:row-start-3 { + grid-row-start: 3; } - .sm\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .sm\:row-start-4 { + grid-row-start: 4; } - .sm\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .sm\:row-start-5 { + grid-row-start: 5; } - .sm\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .sm\:row-start-6 { + grid-row-start: 6; } - .sm\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .sm\:row-start-7 { + grid-row-start: 7; } - .sm\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .sm\:row-start-auto { + grid-row-start: auto; } - .sm\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .sm\:row-end-1 { + grid-row-end: 1; } - .sm\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .sm\:row-end-2 { + grid-row-end: 2; } - .sm\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .sm\:row-end-3 { + grid-row-end: 3; } - .sm\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .sm\:row-end-4 { + grid-row-end: 4; } - .sm\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .sm\:row-end-5 { + grid-row-end: 5; } - .sm\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .sm\:row-end-6 { + grid-row-end: 6; } - .sm\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .sm\:row-end-7 { + grid-row-end: 7; } - .sm\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .sm\:row-end-auto { + grid-row-end: auto; } - .sm\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .sm\:float-right { + float: right; } - .sm\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .sm\:float-left { + float: left; } - .sm\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .sm\:float-none { + float: none; } - .sm\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .sm\:clear-left { + clear: left; } - .sm\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .sm\:clear-right { + clear: right; } - .sm\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .sm\:clear-both { + clear: both; } - .sm\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .sm\:clear-none { + clear: none; } - .sm\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .sm\:m-0 { + margin: 0px; } - .sm\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .sm\:m-1 { + margin: 0.25rem; } - .sm\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .sm\:m-2 { + margin: 0.5rem; } - .sm\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .sm\:m-3 { + margin: 0.75rem; } - .sm\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .sm\:m-4 { + margin: 1rem; } - .sm\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .sm\:m-5 { + margin: 1.25rem; } - .sm\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .sm\:m-6 { + margin: 1.5rem; } - .sm\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .sm\:m-7 { + margin: 1.75rem; } - .sm\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .sm\:m-8 { + margin: 2rem; } - .sm\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .sm\:m-9 { + margin: 2.25rem; } - .sm\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .sm\:m-10 { + margin: 2.5rem; } - .sm\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .sm\:m-11 { + margin: 2.75rem; } - .sm\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .sm\:m-12 { + margin: 3rem; } - .sm\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .sm\:m-14 { + margin: 3.5rem; } - .sm\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .sm\:m-16 { + margin: 4rem; } - .sm\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .sm\:m-20 { + margin: 5rem; } - .sm\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .sm\:m-24 { + margin: 6rem; } - .sm\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .sm\:m-28 { + margin: 7rem; } - .sm\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .sm\:m-32 { + margin: 8rem; } - .sm\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .sm\:m-36 { + margin: 9rem; } - .sm\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .sm\:m-40 { + margin: 10rem; } - .sm\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .sm\:m-44 { + margin: 11rem; } - .sm\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .sm\:m-48 { + margin: 12rem; } - .sm\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .sm\:m-52 { + margin: 13rem; } - .sm\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .sm\:m-56 { + margin: 14rem; } - .sm\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .sm\:m-60 { + margin: 15rem; } - .sm\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .sm\:m-64 { + margin: 16rem; } - .sm\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .sm\:m-72 { + margin: 18rem; } - .sm\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .sm\:m-80 { + margin: 20rem; } - .sm\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .sm\:m-96 { + margin: 24rem; } - .sm\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .sm\:m-auto { + margin: auto; } - .sm\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .sm\:m-px { + margin: 1px; } - .sm\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .sm\:m-0\.5 { + margin: 0.125rem; } - .sm\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .sm\:m-1\.5 { + margin: 0.375rem; } - .sm\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .sm\:m-2\.5 { + margin: 0.625rem; } - .sm\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .sm\:m-3\.5 { + margin: 0.875rem; } - .sm\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .sm\:-m-0 { + margin: 0px; } - .sm\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .sm\:-m-1 { + margin: -0.25rem; } - .sm\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .sm\:-m-2 { + margin: -0.5rem; } - .sm\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .sm\:-m-3 { + margin: -0.75rem; } - .sm\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .sm\:-m-4 { + margin: -1rem; } - .sm\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .sm\:-m-5 { + margin: -1.25rem; } - .sm\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .sm\:-m-6 { + margin: -1.5rem; } - .sm\:focus\:bg-transparent:focus { - background-color: transparent; + .sm\:-m-7 { + margin: -1.75rem; } - .sm\:focus\:bg-current:focus { - background-color: currentColor; + .sm\:-m-8 { + margin: -2rem; } - .sm\:focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .sm\:-m-9 { + margin: -2.25rem; } - .sm\:focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .sm\:-m-10 { + margin: -2.5rem; } - .sm\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .sm\:-m-11 { + margin: -2.75rem; } - .sm\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .sm\:-m-12 { + margin: -3rem; } - .sm\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .sm\:-m-14 { + margin: -3.5rem; } - .sm\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .sm\:-m-16 { + margin: -4rem; } - .sm\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .sm\:-m-20 { + margin: -5rem; } - .sm\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .sm\:-m-24 { + margin: -6rem; } - .sm\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .sm\:-m-28 { + margin: -7rem; } - .sm\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .sm\:-m-32 { + margin: -8rem; } - .sm\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .sm\:-m-36 { + margin: -9rem; } - .sm\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .sm\:-m-40 { + margin: -10rem; } - .sm\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .sm\:-m-44 { + margin: -11rem; } - .sm\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .sm\:-m-48 { + margin: -12rem; } - .sm\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .sm\:-m-52 { + margin: -13rem; } - .sm\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .sm\:-m-56 { + margin: -14rem; } - .sm\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .sm\:-m-60 { + margin: -15rem; } - .sm\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .sm\:-m-64 { + margin: -16rem; } - .sm\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .sm\:-m-72 { + margin: -18rem; } - .sm\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .sm\:-m-80 { + margin: -20rem; } - .sm\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .sm\:-m-96 { + margin: -24rem; } - .sm\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .sm\:-m-px { + margin: -1px; } - .sm\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .sm\:-m-0\.5 { + margin: -0.125rem; } - .sm\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .sm\:-m-1\.5 { + margin: -0.375rem; } - .sm\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .sm\:-m-2\.5 { + margin: -0.625rem; } - .sm\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .sm\:-m-3\.5 { + margin: -0.875rem; } - .sm\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .sm\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .sm\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .sm\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .sm\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .sm\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .sm\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .sm\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .sm\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .sm\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .sm\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .sm\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .sm\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .sm\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .sm\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .sm\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .sm\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .sm\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .sm\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .sm\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .sm\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .sm\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .sm\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .sm\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .sm\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .sm\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .sm\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .sm\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .sm\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .sm\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .sm\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .sm\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .sm\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .sm\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .sm\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .sm\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .sm\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .sm\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .sm\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .sm\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .sm\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .sm\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .sm\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .sm\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .sm\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .sm\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .sm\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .sm\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .sm\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .sm\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .sm\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .sm\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .sm\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .sm\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .sm\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .sm\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .sm\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .sm\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .sm\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .sm\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .sm\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .sm\:mx-auto { + margin-left: auto; + margin-right: auto; } - .sm\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .sm\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .sm\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .sm\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .sm\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .sm\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .sm\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .sm\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .sm\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .sm\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .sm\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .sm\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .sm\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .sm\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .sm\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .sm\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .sm\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .sm\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .sm\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .sm\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .sm\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .sm\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .sm\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .sm\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .sm\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .sm\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .sm\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .sm\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .sm\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .sm\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .sm\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .sm\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .sm\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .sm\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .sm\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .sm\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .sm\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .sm\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .sm\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .sm\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .sm\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .sm\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .sm\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .sm\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .sm\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .sm\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .sm\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .sm\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .sm\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .sm\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .sm\:bg-none { - background-image: none; + .sm\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .sm\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .sm\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .sm\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .sm\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .sm\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .sm\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .sm\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .sm\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .sm\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .sm\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .sm\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .sm\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .sm\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .sm\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .sm\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .sm\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .sm\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .sm\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .sm\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .sm\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .sm\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .sm\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .sm\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .sm\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .sm\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .sm\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .sm\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .sm\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .sm\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .sm\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .sm\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .sm\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .sm\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .sm\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .sm\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .sm\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .sm\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .sm\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .sm\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .sm\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .sm\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .sm\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .sm\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .sm\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .sm\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .sm\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .sm\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .sm\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .sm\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .sm\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .sm\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .sm\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .sm\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .sm\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .sm\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .sm\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .sm\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .sm\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .sm\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .sm\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .sm\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .sm\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .sm\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .sm\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .sm\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .sm\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .sm\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .sm\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .sm\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .sm\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .sm\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .sm\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .sm\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .sm\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .sm\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .sm\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .sm\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .sm\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .sm\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .sm\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .sm\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .sm\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .sm\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .sm\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .sm\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .sm\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .sm\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .sm\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .sm\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .sm\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .sm\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .sm\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .sm\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .sm\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:mt-0 { + margin-top: 0px; } - .sm\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:mt-1 { + margin-top: 0.25rem; } - .sm\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:mt-2 { + margin-top: 0.5rem; } - .sm\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:mt-3 { + margin-top: 0.75rem; } - .sm\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:mt-4 { + margin-top: 1rem; } - .sm\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:mt-5 { + margin-top: 1.25rem; } - .sm\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:mt-6 { + margin-top: 1.5rem; } - .sm\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:mt-7 { + margin-top: 1.75rem; } - .sm\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:mt-8 { + margin-top: 2rem; } - .sm\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:mt-9 { + margin-top: 2.25rem; } - .sm\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:mt-10 { + margin-top: 2.5rem; } - .sm\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:mt-11 { + margin-top: 2.75rem; } - .sm\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:mt-12 { + margin-top: 3rem; } - .sm\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:mt-14 { + margin-top: 3.5rem; } - .sm\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:mt-16 { + margin-top: 4rem; } - .sm\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:mt-20 { + margin-top: 5rem; } - .sm\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:mt-24 { + margin-top: 6rem; } - .sm\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:mt-28 { + margin-top: 7rem; } - .sm\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:mt-32 { + margin-top: 8rem; } - .sm\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:mt-36 { + margin-top: 9rem; } - .sm\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:mt-40 { + margin-top: 10rem; } - .sm\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:mt-44 { + margin-top: 11rem; } - .sm\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:mt-48 { + margin-top: 12rem; } - .sm\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:mt-52 { + margin-top: 13rem; } - .sm\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:mt-56 { + margin-top: 14rem; } - .sm\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:mt-60 { + margin-top: 15rem; } - .sm\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:mt-64 { + margin-top: 16rem; } - .sm\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:mt-72 { + margin-top: 18rem; } - .sm\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:mt-80 { + margin-top: 20rem; } - .sm\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:mt-96 { + margin-top: 24rem; } - .sm\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:mt-auto { + margin-top: auto; } - .sm\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:mt-px { + margin-top: 1px; } - .sm\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:mt-0\.5 { + margin-top: 0.125rem; } - .sm\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:mt-1\.5 { + margin-top: 0.375rem; } - .sm\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:mt-2\.5 { + margin-top: 0.625rem; } - .sm\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:mt-3\.5 { + margin-top: 0.875rem; } - .sm\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:-mt-0 { + margin-top: 0px; } - .sm\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:-mt-1 { + margin-top: -0.25rem; } - .sm\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:-mt-2 { + margin-top: -0.5rem; } - .sm\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:-mt-3 { + margin-top: -0.75rem; } - .sm\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:-mt-4 { + margin-top: -1rem; } - .sm\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:-mt-5 { + margin-top: -1.25rem; } - .sm\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:-mt-6 { + margin-top: -1.5rem; } - .sm\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:-mt-7 { + margin-top: -1.75rem; } - .sm\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:-mt-8 { + margin-top: -2rem; } - .sm\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:-mt-9 { + margin-top: -2.25rem; } - .sm\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:-mt-10 { + margin-top: -2.5rem; } - .sm\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:-mt-11 { + margin-top: -2.75rem; } - .sm\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:-mt-12 { + margin-top: -3rem; } - .sm\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:-mt-14 { + margin-top: -3.5rem; } - .sm\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:-mt-16 { + margin-top: -4rem; } - .sm\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:-mt-20 { + margin-top: -5rem; } - .sm\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:-mt-24 { + margin-top: -6rem; } - .sm\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:-mt-28 { + margin-top: -7rem; } - .sm\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:-mt-32 { + margin-top: -8rem; } - .sm\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:-mt-36 { + margin-top: -9rem; } - .sm\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:-mt-40 { + margin-top: -10rem; } - .sm\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:-mt-44 { + margin-top: -11rem; } - .sm\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:-mt-48 { + margin-top: -12rem; } - .sm\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:-mt-52 { + margin-top: -13rem; } - .sm\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:-mt-56 { + margin-top: -14rem; } - .sm\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:-mt-60 { + margin-top: -15rem; } - .sm\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:-mt-64 { + margin-top: -16rem; } - .sm\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:-mt-72 { + margin-top: -18rem; } - .sm\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:-mt-80 { + margin-top: -20rem; } - .sm\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:-mt-96 { + margin-top: -24rem; } - .sm\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:-mt-px { + margin-top: -1px; } - .sm\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:-mt-0\.5 { + margin-top: -0.125rem; } - .sm\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:-mt-1\.5 { + margin-top: -0.375rem; } - .sm\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:-mt-2\.5 { + margin-top: -0.625rem; } - .sm\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:-mt-3\.5 { + margin-top: -0.875rem; } - .sm\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:mr-0 { + margin-right: 0px; } - .sm\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:mr-1 { + margin-right: 0.25rem; } - .sm\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:mr-2 { + margin-right: 0.5rem; } - .sm\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:mr-3 { + margin-right: 0.75rem; } - .sm\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:mr-4 { + margin-right: 1rem; } - .sm\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:mr-5 { + margin-right: 1.25rem; } - .sm\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:mr-6 { + margin-right: 1.5rem; } - .sm\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:mr-7 { + margin-right: 1.75rem; } - .sm\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:mr-8 { + margin-right: 2rem; } - .sm\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:mr-9 { + margin-right: 2.25rem; } - .sm\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:mr-10 { + margin-right: 2.5rem; } - .sm\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:mr-11 { + margin-right: 2.75rem; } - .sm\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:mr-12 { + margin-right: 3rem; } - .sm\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:mr-14 { + margin-right: 3.5rem; } - .sm\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:mr-16 { + margin-right: 4rem; } - .sm\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:mr-20 { + margin-right: 5rem; } - .sm\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:mr-24 { + margin-right: 6rem; } - .sm\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:mr-28 { + margin-right: 7rem; } - .sm\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:mr-32 { + margin-right: 8rem; } - .sm\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:mr-36 { + margin-right: 9rem; } - .sm\:to-transparent { - --tw-gradient-to: transparent; + .sm\:mr-40 { + margin-right: 10rem; } - .sm\:to-current { - --tw-gradient-to: currentColor; + .sm\:mr-44 { + margin-right: 11rem; } - .sm\:to-black { - --tw-gradient-to: #000; + .sm\:mr-48 { + margin-right: 12rem; } - .sm\:to-white { - --tw-gradient-to: #fff; + .sm\:mr-52 { + margin-right: 13rem; } - .sm\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .sm\:mr-56 { + margin-right: 14rem; } - .sm\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .sm\:mr-60 { + margin-right: 15rem; } - .sm\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .sm\:mr-64 { + margin-right: 16rem; } - .sm\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .sm\:mr-72 { + margin-right: 18rem; } - .sm\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .sm\:mr-80 { + margin-right: 20rem; } - .sm\:to-gray-500 { - --tw-gradient-to: #6b7280; + .sm\:mr-96 { + margin-right: 24rem; } - .sm\:to-gray-600 { - --tw-gradient-to: #4b5563; + .sm\:mr-auto { + margin-right: auto; } - .sm\:to-gray-700 { - --tw-gradient-to: #374151; + .sm\:mr-px { + margin-right: 1px; } - .sm\:to-gray-800 { - --tw-gradient-to: #1f2937; + .sm\:mr-0\.5 { + margin-right: 0.125rem; } - .sm\:to-gray-900 { - --tw-gradient-to: #111827; + .sm\:mr-1\.5 { + margin-right: 0.375rem; } - .sm\:to-red-50 { - --tw-gradient-to: #fef2f2; + .sm\:mr-2\.5 { + margin-right: 0.625rem; } - .sm\:to-red-100 { - --tw-gradient-to: #fee2e2; + .sm\:mr-3\.5 { + margin-right: 0.875rem; } - .sm\:to-red-200 { - --tw-gradient-to: #fecaca; + .sm\:-mr-0 { + margin-right: 0px; } - .sm\:to-red-300 { - --tw-gradient-to: #fca5a5; + .sm\:-mr-1 { + margin-right: -0.25rem; } - .sm\:to-red-400 { - --tw-gradient-to: #f87171; + .sm\:-mr-2 { + margin-right: -0.5rem; } - .sm\:to-red-500 { - --tw-gradient-to: #ef4444; + .sm\:-mr-3 { + margin-right: -0.75rem; } - .sm\:to-red-600 { - --tw-gradient-to: #dc2626; + .sm\:-mr-4 { + margin-right: -1rem; } - .sm\:to-red-700 { - --tw-gradient-to: #b91c1c; + .sm\:-mr-5 { + margin-right: -1.25rem; } - .sm\:to-red-800 { - --tw-gradient-to: #991b1b; + .sm\:-mr-6 { + margin-right: -1.5rem; } - .sm\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .sm\:-mr-7 { + margin-right: -1.75rem; } - .sm\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .sm\:-mr-8 { + margin-right: -2rem; } - .sm\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .sm\:-mr-9 { + margin-right: -2.25rem; } - .sm\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .sm\:-mr-10 { + margin-right: -2.5rem; } - .sm\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .sm\:-mr-11 { + margin-right: -2.75rem; } - .sm\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .sm\:-mr-12 { + margin-right: -3rem; } - .sm\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .sm\:-mr-14 { + margin-right: -3.5rem; } - .sm\:to-yellow-600 { - --tw-gradient-to: #d97706; + .sm\:-mr-16 { + margin-right: -4rem; } - .sm\:to-yellow-700 { - --tw-gradient-to: #b45309; + .sm\:-mr-20 { + margin-right: -5rem; } - .sm\:to-yellow-800 { - --tw-gradient-to: #92400e; + .sm\:-mr-24 { + margin-right: -6rem; } - .sm\:to-yellow-900 { - --tw-gradient-to: #78350f; + .sm\:-mr-28 { + margin-right: -7rem; } - .sm\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .sm\:-mr-32 { + margin-right: -8rem; } - .sm\:to-green-100 { - --tw-gradient-to: #d1fae5; + .sm\:-mr-36 { + margin-right: -9rem; } - .sm\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .sm\:-mr-40 { + margin-right: -10rem; } - .sm\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .sm\:-mr-44 { + margin-right: -11rem; } - .sm\:to-green-400 { - --tw-gradient-to: #34d399; + .sm\:-mr-48 { + margin-right: -12rem; } - .sm\:to-green-500 { - --tw-gradient-to: #10b981; + .sm\:-mr-52 { + margin-right: -13rem; } - .sm\:to-green-600 { - --tw-gradient-to: #059669; + .sm\:-mr-56 { + margin-right: -14rem; } - .sm\:to-green-700 { - --tw-gradient-to: #047857; + .sm\:-mr-60 { + margin-right: -15rem; } - .sm\:to-green-800 { - --tw-gradient-to: #065f46; + .sm\:-mr-64 { + margin-right: -16rem; } - .sm\:to-green-900 { - --tw-gradient-to: #064e3b; + .sm\:-mr-72 { + margin-right: -18rem; } - .sm\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .sm\:-mr-80 { + margin-right: -20rem; } - .sm\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .sm\:-mr-96 { + margin-right: -24rem; } - .sm\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .sm\:-mr-px { + margin-right: -1px; } - .sm\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .sm\:-mr-0\.5 { + margin-right: -0.125rem; } - .sm\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .sm\:-mr-1\.5 { + margin-right: -0.375rem; } - .sm\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .sm\:-mr-2\.5 { + margin-right: -0.625rem; } - .sm\:to-blue-600 { - --tw-gradient-to: #2563eb; + .sm\:-mr-3\.5 { + margin-right: -0.875rem; } - .sm\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .sm\:mb-0 { + margin-bottom: 0px; } - .sm\:to-blue-800 { - --tw-gradient-to: #1e40af; + .sm\:mb-1 { + margin-bottom: 0.25rem; } - .sm\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .sm\:mb-2 { + margin-bottom: 0.5rem; } - .sm\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .sm\:mb-3 { + margin-bottom: 0.75rem; } - .sm\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .sm\:mb-4 { + margin-bottom: 1rem; } - .sm\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .sm\:mb-5 { + margin-bottom: 1.25rem; } - .sm\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .sm\:mb-6 { + margin-bottom: 1.5rem; } - .sm\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .sm\:mb-7 { + margin-bottom: 1.75rem; } - .sm\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .sm\:mb-8 { + margin-bottom: 2rem; } - .sm\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .sm\:mb-9 { + margin-bottom: 2.25rem; } - .sm\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .sm\:mb-10 { + margin-bottom: 2.5rem; } - .sm\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .sm\:mb-11 { + margin-bottom: 2.75rem; } - .sm\:to-indigo-900 { - --tw-gradient-to: #312e81; + .sm\:mb-12 { + margin-bottom: 3rem; } - .sm\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .sm\:mb-14 { + margin-bottom: 3.5rem; } - .sm\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .sm\:mb-16 { + margin-bottom: 4rem; } - .sm\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .sm\:mb-20 { + margin-bottom: 5rem; } - .sm\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .sm\:mb-24 { + margin-bottom: 6rem; } - .sm\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .sm\:mb-28 { + margin-bottom: 7rem; } - .sm\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .sm\:mb-32 { + margin-bottom: 8rem; } - .sm\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .sm\:mb-36 { + margin-bottom: 9rem; } - .sm\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .sm\:mb-40 { + margin-bottom: 10rem; } - .sm\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .sm\:mb-44 { + margin-bottom: 11rem; } - .sm\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .sm\:mb-48 { + margin-bottom: 12rem; } - .sm\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .sm\:mb-52 { + margin-bottom: 13rem; } - .sm\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .sm\:mb-56 { + margin-bottom: 14rem; } - .sm\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .sm\:mb-60 { + margin-bottom: 15rem; } - .sm\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .sm\:mb-64 { + margin-bottom: 16rem; } - .sm\:to-pink-400 { - --tw-gradient-to: #f472b6; + .sm\:mb-72 { + margin-bottom: 18rem; } - .sm\:to-pink-500 { - --tw-gradient-to: #ec4899; + .sm\:mb-80 { + margin-bottom: 20rem; } - .sm\:to-pink-600 { - --tw-gradient-to: #db2777; + .sm\:mb-96 { + margin-bottom: 24rem; } - .sm\:to-pink-700 { - --tw-gradient-to: #be185d; + .sm\:mb-auto { + margin-bottom: auto; } - .sm\:to-pink-800 { - --tw-gradient-to: #9d174d; + .sm\:mb-px { + margin-bottom: 1px; } - .sm\:to-pink-900 { - --tw-gradient-to: #831843; + .sm\:mb-0\.5 { + margin-bottom: 0.125rem; } - .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\:mb-1\.5 { + margin-bottom: 0.375rem; } - .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\:mb-2\.5 { + margin-bottom: 0.625rem; } - .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\:mb-3\.5 { + margin-bottom: 0.875rem; } - .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\:-mb-0 { + margin-bottom: 0px; } - .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\:-mb-1 { + margin-bottom: -0.25rem; } - .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\:-mb-2 { + margin-bottom: -0.5rem; } - .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\:-mb-3 { + margin-bottom: -0.75rem; } - .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\:-mb-4 { + margin-bottom: -1rem; } - .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\:-mb-5 { + margin-bottom: -1.25rem; } - .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\:-mb-6 { + margin-bottom: -1.5rem; } - .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\:-mb-7 { + margin-bottom: -1.75rem; } - .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\:-mb-8 { + margin-bottom: -2rem; } - .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\:-mb-9 { + margin-bottom: -2.25rem; } - .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\:-mb-10 { + margin-bottom: -2.5rem; } - .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\:-mb-11 { + margin-bottom: -2.75rem; } - .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\:-mb-12 { + margin-bottom: -3rem; } - .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\:-mb-14 { + margin-bottom: -3.5rem; } - .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\:-mb-16 { + margin-bottom: -4rem; } - .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\:-mb-20 { + margin-bottom: -5rem; } - .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\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .sm\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:-ml-10 { + margin-left: -2.5rem; } - .sm\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:-ml-11 { + margin-left: -2.75rem; } - .sm\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:-ml-12 { + margin-left: -3rem; } - .sm\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:-ml-14 { + margin-left: -3.5rem; } - .sm\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:-ml-16 { + margin-left: -4rem; } - .sm\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:-ml-20 { + margin-left: -5rem; } - .sm\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:-ml-24 { + margin-left: -6rem; } - .sm\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:-ml-28 { + margin-left: -7rem; } - .sm\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:-ml-32 { + margin-left: -8rem; } - .sm\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:-ml-36 { + margin-left: -9rem; } - .sm\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:-ml-40 { + margin-left: -10rem; } - .sm\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:-ml-44 { + margin-left: -11rem; } - .sm\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:-ml-48 { + margin-left: -12rem; } - .sm\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:-ml-52 { + margin-left: -13rem; } - .sm\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:-ml-56 { + margin-left: -14rem; } - .sm\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:-ml-60 { + margin-left: -15rem; } - .sm\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:-ml-64 { + margin-left: -16rem; } - .sm\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:-ml-72 { + margin-left: -18rem; } - .sm\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:-ml-80 { + margin-left: -20rem; } - .sm\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:-ml-96 { + margin-left: -24rem; } - .sm\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:-ml-px { + margin-left: -1px; } - .sm\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:-ml-0\.5 { + margin-left: -0.125rem; } - .sm\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:-ml-1\.5 { + margin-left: -0.375rem; } - .sm\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:-ml-2\.5 { + margin-left: -0.625rem; } - .sm\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:-ml-3\.5 { + margin-left: -0.875rem; } - .sm\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:box-border { + box-sizing: border-box; } - .sm\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:box-content { + box-sizing: content-box; } - .sm\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:block { + display: block; } - .sm\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:inline-block { + display: inline-block; } - .sm\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:inline { + display: inline; } - .sm\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:flex { + display: flex; } - .sm\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:inline-flex { + display: inline-flex; } - .sm\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:table { + display: table; } - .sm\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:inline-table { + display: inline-table; } - .sm\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:table-caption { + display: table-caption; } - .sm\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:table-cell { + display: table-cell; } - .sm\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:table-column { + display: table-column; } - .sm\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:table-column-group { + display: table-column-group; } - .sm\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:table-footer-group { + display: table-footer-group; } - .sm\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:table-header-group { + display: table-header-group; } - .sm\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:table-row-group { + display: table-row-group; } - .sm\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:table-row { + display: table-row; } - .sm\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:flow-root { + display: flow-root; } - .sm\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:grid { + display: grid; } - .sm\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:inline-grid { + display: inline-grid; } - .sm\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:contents { + display: contents; } - .sm\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:list-item { + display: list-item; } - .sm\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:hidden { + display: none; } - .sm\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:h-0 { + height: 0px; } - .sm\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:h-1 { + height: 0.25rem; } - .sm\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:h-2 { + height: 0.5rem; } - .sm\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:h-3 { + height: 0.75rem; } - .sm\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:h-4 { + height: 1rem; } - .sm\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:h-5 { + height: 1.25rem; } - .sm\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:h-6 { + height: 1.5rem; } - .sm\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:h-7 { + height: 1.75rem; } - .sm\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:h-8 { + height: 2rem; } - .sm\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:h-9 { + height: 2.25rem; } - .sm\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:h-10 { + height: 2.5rem; } - .sm\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:h-11 { + height: 2.75rem; } - .sm\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:h-12 { + height: 3rem; } - .sm\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:h-14 { + height: 3.5rem; } - .sm\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:h-16 { + height: 4rem; } - .sm\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:h-20 { + height: 5rem; } - .sm\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:h-24 { + height: 6rem; } - .sm\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:h-28 { + height: 7rem; } - .sm\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:h-32 { + height: 8rem; } - .sm\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:h-36 { + height: 9rem; } - .sm\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:h-40 { + height: 10rem; } - .sm\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:h-44 { + height: 11rem; } - .sm\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:h-48 { + height: 12rem; } - .sm\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:h-52 { + height: 13rem; } - .sm\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:h-56 { + height: 14rem; } - .sm\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:h-60 { + height: 15rem; } - .sm\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:h-64 { + height: 16rem; } - .sm\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:h-72 { + height: 18rem; } - .sm\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:h-80 { + height: 20rem; } - .sm\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:h-96 { + height: 24rem; } - .sm\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:h-auto { + height: auto; } - .sm\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:h-px { + height: 1px; } - .sm\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:h-0\.5 { + height: 0.125rem; } - .sm\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:h-1\.5 { + height: 0.375rem; } - .sm\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:h-2\.5 { + height: 0.625rem; } - .sm\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:h-3\.5 { + height: 0.875rem; } - .sm\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .sm\:h-1\/2 { + height: 50%; } - .sm\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .sm\:h-1\/3 { + height: 33.333333%; } - .sm\:hover\:to-black:hover { - --tw-gradient-to: #000; + .sm\:h-2\/3 { + height: 66.666667%; } - .sm\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .sm\:h-1\/4 { + height: 25%; } - .sm\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .sm\:h-2\/4 { + height: 50%; } - .sm\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .sm\:h-3\/4 { + height: 75%; } - .sm\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .sm\:h-1\/5 { + height: 20%; } - .sm\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .sm\:h-2\/5 { + height: 40%; } - .sm\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .sm\:h-3\/5 { + height: 60%; } - .sm\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .sm\:h-4\/5 { + height: 80%; } - .sm\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .sm\:h-1\/6 { + height: 16.666667%; } - .sm\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .sm\:h-2\/6 { + height: 33.333333%; } - .sm\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .sm\:h-3\/6 { + height: 50%; } - .sm\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .sm\:h-4\/6 { + height: 66.666667%; } - .sm\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .sm\:h-5\/6 { + height: 83.333333%; } - .sm\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .sm\:h-full { + height: 100%; } - .sm\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .sm\:h-screen { + height: 100vh; } - .sm\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .sm\:max-h-0 { + max-height: 0px; } - .sm\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .sm\:max-h-1 { + max-height: 0.25rem; } - .sm\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .sm\:max-h-2 { + max-height: 0.5rem; } - .sm\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .sm\:max-h-3 { + max-height: 0.75rem; } - .sm\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .sm\:max-h-4 { + max-height: 1rem; } - .sm\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .sm\:max-h-5 { + max-height: 1.25rem; } - .sm\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .sm\:max-h-6 { + max-height: 1.5rem; } - .sm\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .sm\:max-h-7 { + max-height: 1.75rem; } - .sm\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .sm\:max-h-8 { + max-height: 2rem; } - .sm\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .sm\:max-h-9 { + max-height: 2.25rem; } - .sm\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .sm\:max-h-10 { + max-height: 2.5rem; } - .sm\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .sm\:max-h-11 { + max-height: 2.75rem; } - .sm\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .sm\:max-h-12 { + max-height: 3rem; } - .sm\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .sm\:max-h-14 { + max-height: 3.5rem; } - .sm\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .sm\:max-h-16 { + max-height: 4rem; } - .sm\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .sm\:max-h-20 { + max-height: 5rem; } - .sm\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .sm\:max-h-24 { + max-height: 6rem; } - .sm\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .sm\:max-h-28 { + max-height: 7rem; } - .sm\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .sm\:max-h-32 { + max-height: 8rem; } - .sm\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .sm\:max-h-36 { + max-height: 9rem; } - .sm\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .sm\:max-h-40 { + max-height: 10rem; } - .sm\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .sm\:max-h-44 { + max-height: 11rem; } - .sm\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .sm\:max-h-48 { + max-height: 12rem; } - .sm\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .sm\:max-h-52 { + max-height: 13rem; } - .sm\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .sm\:max-h-56 { + max-height: 14rem; } - .sm\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .sm\:max-h-60 { + max-height: 15rem; } - .sm\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .sm\:max-h-64 { + max-height: 16rem; } - .sm\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .sm\:max-h-72 { + max-height: 18rem; } - .sm\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .sm\:max-h-80 { + max-height: 20rem; } - .sm\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .sm\:max-h-96 { + max-height: 24rem; } - .sm\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .sm\:max-h-px { + max-height: 1px; } - .sm\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .sm\:max-h-0\.5 { + max-height: 0.125rem; } - .sm\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .sm\:max-h-1\.5 { + max-height: 0.375rem; } - .sm\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .sm\:max-h-2\.5 { + max-height: 0.625rem; } - .sm\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .sm\:max-h-3\.5 { + max-height: 0.875rem; } - .sm\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .sm\:max-h-full { + max-height: 100%; } - .sm\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .sm\:max-h-screen { + max-height: 100vh; } - .sm\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .sm\:min-h-0 { + min-height: 0px; } - .sm\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .sm\:min-h-full { + min-height: 100%; } - .sm\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .sm\:min-h-screen { + min-height: 100vh; } - .sm\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .sm\:w-0 { + width: 0px; } - .sm\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .sm\:w-1 { + width: 0.25rem; } - .sm\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .sm\:w-2 { + width: 0.5rem; } - .sm\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .sm\:w-3 { + width: 0.75rem; } - .sm\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .sm\:w-4 { + width: 1rem; } - .sm\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .sm\:w-5 { + width: 1.25rem; } - .sm\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .sm\:w-6 { + width: 1.5rem; } - .sm\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .sm\:w-7 { + width: 1.75rem; } - .sm\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .sm\:w-8 { + width: 2rem; } - .sm\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .sm\:w-9 { + width: 2.25rem; } - .sm\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .sm\:w-10 { + width: 2.5rem; } - .sm\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .sm\:w-11 { + width: 2.75rem; } - .sm\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .sm\:w-12 { + width: 3rem; } - .sm\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .sm\:w-14 { + width: 3.5rem; } - .sm\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .sm\:w-16 { + width: 4rem; } - .sm\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .sm\:w-20 { + width: 5rem; } - .sm\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .sm\:w-24 { + width: 6rem; } - .sm\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .sm\:w-28 { + width: 7rem; } - .sm\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .sm\:w-32 { + width: 8rem; } - .sm\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .sm\:w-36 { + width: 9rem; } - .sm\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .sm\:w-40 { + width: 10rem; } - .sm\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .sm\:w-44 { + width: 11rem; } - .sm\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .sm\:w-48 { + width: 12rem; } - .sm\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .sm\:w-52 { + width: 13rem; } - .sm\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .sm\:w-56 { + width: 14rem; } - .sm\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .sm\:w-60 { + width: 15rem; } - .sm\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .sm\:w-64 { + width: 16rem; } - .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\:w-72 { + width: 18rem; } - .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\:w-80 { + width: 20rem; } - .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\:w-96 { + width: 24rem; } - .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\:w-auto { + width: auto; } - .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\:w-px { + width: 1px; } - .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\:w-0\.5 { + width: 0.125rem; } - .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\:w-1\.5 { + width: 0.375rem; } - .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\:w-2\.5 { + width: 0.625rem; } - .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\:w-3\.5 { + width: 0.875rem; } - .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\:w-1\/2 { + width: 50%; } - .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\:w-1\/3 { + width: 33.333333%; } - .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\:w-2\/3 { + width: 66.666667%; } - .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\:w-1\/4 { + width: 25%; } - .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\:w-2\/4 { + width: 50%; } - .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\:w-3\/4 { + width: 75%; } - .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\:w-1\/5 { + width: 20%; } - .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\:w-2\/5 { + width: 40%; } - .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\:w-3\/5 { + width: 60%; } - .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\:w-4\/5 { + width: 80%; } - .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\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .sm\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .sm\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .sm\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:origin-bottom-right { + transform-origin: bottom right; } - .sm\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:origin-bottom { + transform-origin: bottom; } - .sm\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:origin-bottom-left { + transform-origin: bottom left; } - .sm\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:origin-left { + transform-origin: left; } - .sm\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:origin-top-left { + transform-origin: top left; } - .sm\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:translate-x-0 { + --tw-translate-x: 0px; } - .sm\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .sm\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .sm\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .sm\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:translate-x-4 { + --tw-translate-x: 1rem; } - .sm\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .sm\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .sm\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .sm\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:translate-x-8 { + --tw-translate-x: 2rem; } - .sm\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .sm\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .sm\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .sm\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:translate-x-12 { + --tw-translate-x: 3rem; } - .sm\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .sm\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:translate-x-16 { + --tw-translate-x: 4rem; } - .sm\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:translate-x-20 { + --tw-translate-x: 5rem; } - .sm\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:translate-x-24 { + --tw-translate-x: 6rem; } - .sm\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:translate-x-28 { + --tw-translate-x: 7rem; } - .sm\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:translate-x-32 { + --tw-translate-x: 8rem; } - .sm\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:translate-x-36 { + --tw-translate-x: 9rem; } - .sm\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:translate-x-40 { + --tw-translate-x: 10rem; } - .sm\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:translate-x-44 { + --tw-translate-x: 11rem; } - .sm\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:translate-x-48 { + --tw-translate-x: 12rem; } - .sm\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:translate-x-52 { + --tw-translate-x: 13rem; } - .sm\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:translate-x-56 { + --tw-translate-x: 14rem; } - .sm\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:translate-x-60 { + --tw-translate-x: 15rem; } - .sm\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:translate-x-64 { + --tw-translate-x: 16rem; } - .sm\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:translate-x-72 { + --tw-translate-x: 18rem; } - .sm\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:translate-x-80 { + --tw-translate-x: 20rem; } - .sm\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:translate-x-96 { + --tw-translate-x: 24rem; } - .sm\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:translate-x-px { + --tw-translate-x: 1px; } - .sm\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .sm\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .sm\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .sm\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .sm\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:-translate-x-0 { + --tw-translate-x: 0px; } - .sm\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .sm\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .sm\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .sm\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:-translate-x-4 { + --tw-translate-x: -1rem; } - .sm\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .sm\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .sm\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .sm\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:-translate-x-8 { + --tw-translate-x: -2rem; } - .sm\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .sm\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .sm\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .sm\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:-translate-x-12 { + --tw-translate-x: -3rem; } - .sm\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .sm\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:-translate-x-16 { + --tw-translate-x: -4rem; } - .sm\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:-translate-x-20 { + --tw-translate-x: -5rem; } - .sm\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:-translate-x-24 { + --tw-translate-x: -6rem; } - .sm\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:-translate-x-28 { + --tw-translate-x: -7rem; } - .sm\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:-translate-x-32 { + --tw-translate-x: -8rem; } - .sm\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:-translate-x-36 { + --tw-translate-x: -9rem; } - .sm\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:-translate-x-40 { + --tw-translate-x: -10rem; } - .sm\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:-translate-x-44 { + --tw-translate-x: -11rem; } - .sm\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:-translate-x-48 { + --tw-translate-x: -12rem; } - .sm\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:-translate-x-52 { + --tw-translate-x: -13rem; } - .sm\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:-translate-x-56 { + --tw-translate-x: -14rem; } - .sm\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:-translate-x-60 { + --tw-translate-x: -15rem; } - .sm\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:-translate-x-64 { + --tw-translate-x: -16rem; } - .sm\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:-translate-x-72 { + --tw-translate-x: -18rem; } - .sm\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:-translate-x-80 { + --tw-translate-x: -20rem; } - .sm\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:-translate-x-96 { + --tw-translate-x: -24rem; } - .sm\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:-translate-x-px { + --tw-translate-x: -1px; } - .sm\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .sm\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .sm\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .sm\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .sm\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .sm\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .sm\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .sm\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .sm\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .sm\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .sm\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:translate-x-full { + --tw-translate-x: 100%; } - .sm\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .sm\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .sm\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .sm\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .sm\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .sm\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .sm\:focus\:to-black:focus { - --tw-gradient-to: #000; + .sm\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .sm\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .sm\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .sm\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .sm\:-translate-x-full { + --tw-translate-x: -100%; } - .sm\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .sm\:translate-y-0 { + --tw-translate-y: 0px; } - .sm\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .sm\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .sm\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .sm\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .sm\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .sm\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .sm\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .sm\:translate-y-4 { + --tw-translate-y: 1rem; } - .sm\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .sm\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .sm\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .sm\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .sm\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .sm\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .sm\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .sm\:translate-y-8 { + --tw-translate-y: 2rem; } - .sm\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .sm\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .sm\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .sm\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .sm\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .sm\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .sm\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .sm\:translate-y-12 { + --tw-translate-y: 3rem; } - .sm\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .sm\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .sm\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .sm\:translate-y-16 { + --tw-translate-y: 4rem; } - .sm\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .sm\:translate-y-20 { + --tw-translate-y: 5rem; } - .sm\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .sm\:translate-y-24 { + --tw-translate-y: 6rem; } - .sm\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .sm\:translate-y-28 { + --tw-translate-y: 7rem; } - .sm\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .sm\:translate-y-32 { + --tw-translate-y: 8rem; } - .sm\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .sm\:translate-y-36 { + --tw-translate-y: 9rem; } - .sm\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .sm\:translate-y-40 { + --tw-translate-y: 10rem; } - .sm\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .sm\:translate-y-44 { + --tw-translate-y: 11rem; } - .sm\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .sm\:translate-y-48 { + --tw-translate-y: 12rem; } - .sm\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .sm\:translate-y-52 { + --tw-translate-y: 13rem; } - .sm\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .sm\:translate-y-56 { + --tw-translate-y: 14rem; } - .sm\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .sm\:translate-y-60 { + --tw-translate-y: 15rem; } - .sm\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .sm\:translate-y-64 { + --tw-translate-y: 16rem; } - .sm\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .sm\:translate-y-72 { + --tw-translate-y: 18rem; } - .sm\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .sm\:translate-y-80 { + --tw-translate-y: 20rem; } - .sm\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .sm\:translate-y-96 { + --tw-translate-y: 24rem; } - .sm\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .sm\:translate-y-px { + --tw-translate-y: 1px; } - .sm\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .sm\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .sm\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .sm\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .sm\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .sm\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .sm\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .sm\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .sm\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .sm\:-translate-y-0 { + --tw-translate-y: 0px; } - .sm\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .sm\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .sm\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .sm\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .sm\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .sm\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .sm\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .sm\:-translate-y-4 { + --tw-translate-y: -1rem; } - .sm\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .sm\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .sm\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .sm\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .sm\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .sm\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .sm\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .sm\:-translate-y-8 { + --tw-translate-y: -2rem; } - .sm\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .sm\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .sm\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .sm\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .sm\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .sm\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .sm\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .sm\:-translate-y-12 { + --tw-translate-y: -3rem; } - .sm\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .sm\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .sm\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .sm\:-translate-y-16 { + --tw-translate-y: -4rem; } - .sm\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .sm\:-translate-y-20 { + --tw-translate-y: -5rem; } - .sm\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .sm\:-translate-y-24 { + --tw-translate-y: -6rem; } - .sm\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .sm\:-translate-y-28 { + --tw-translate-y: -7rem; } - .sm\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .sm\:-translate-y-32 { + --tw-translate-y: -8rem; } - .sm\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .sm\:-translate-y-36 { + --tw-translate-y: -9rem; } - .sm\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .sm\:-translate-y-40 { + --tw-translate-y: -10rem; } - .sm\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .sm\:-translate-y-44 { + --tw-translate-y: -11rem; } - .sm\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .sm\:-translate-y-48 { + --tw-translate-y: -12rem; } - .sm\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .sm\:-translate-y-52 { + --tw-translate-y: -13rem; } - .sm\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .sm\:-translate-y-56 { + --tw-translate-y: -14rem; } - .sm\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .sm\:-translate-y-60 { + --tw-translate-y: -15rem; } - .sm\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .sm\:-translate-y-64 { + --tw-translate-y: -16rem; } - .sm\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .sm\:-translate-y-72 { + --tw-translate-y: -18rem; } - .sm\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .sm\:-translate-y-80 { + --tw-translate-y: -20rem; } - .sm\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .sm\:-translate-y-96 { + --tw-translate-y: -24rem; } - .sm\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .sm\:-translate-y-px { + --tw-translate-y: -1px; } - .sm\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .sm\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .sm\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .sm\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .sm\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .sm\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .sm\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .sm\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .sm\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .sm\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .sm\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .sm\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .sm\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .sm\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .sm\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .sm\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .sm\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .sm\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .sm\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .sm\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .sm\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .sm\:translate-y-full { + --tw-translate-y: 100%; } - .sm\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .sm\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .sm\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .sm\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .sm\:bg-opacity-0 { - --tw-bg-opacity: 0; + .sm\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .sm\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .sm\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .sm\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .sm\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .sm\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .sm\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .sm\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .sm\:-translate-y-full { + --tw-translate-y: -100%; } - .sm\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .sm\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .sm\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .sm\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .sm\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .sm\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .sm\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .sm\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .sm\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .sm\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .sm\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .sm\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .sm\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .sm\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .sm\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .sm\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .sm\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .sm\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .sm\:bg-opacity-100 { - --tw-bg-opacity: 1; + .sm\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .group:hover .sm\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; + .sm\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .group:hover .sm\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .sm\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .group:hover .sm\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .sm\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .group:hover .sm\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .sm\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .group:hover .sm\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .sm\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .group:hover .sm\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .sm\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .group:hover .sm\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .sm\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .group:hover .sm\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .sm\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .group:hover .sm\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .sm\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .group:hover .sm\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .sm\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .group:hover .sm\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .sm\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .group:hover .sm\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .sm\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .group:hover .sm\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .sm\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .group:hover .sm\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .sm\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .group:hover .sm\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; + .sm\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .sm\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; + .sm\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .sm\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; + .sm\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .sm\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; + .sm\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .sm\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; + .sm\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .sm\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; + .sm\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .sm\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; + .sm\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .sm\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; + .sm\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .sm\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; + .sm\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .sm\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; + .sm\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .sm\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; + .sm\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .sm\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; + .sm\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .sm\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; + .sm\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .sm\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; + .sm\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .sm\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; + .sm\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .sm\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; + .sm\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .sm\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; + .sm\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .sm\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; + .sm\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .sm\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; + .sm\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .sm\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; + .sm\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .sm\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; + .sm\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .sm\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; + .sm\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .sm\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; + .sm\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .sm\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; + .sm\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .sm\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; + .sm\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .sm\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; + .sm\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .sm\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; + .sm\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .sm\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; + .sm\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .sm\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; + .sm\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .sm\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; + .sm\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .sm\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; + .sm\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .sm\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; + .sm\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .sm\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; + .sm\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .sm\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; + .sm\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .sm\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; + .sm\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .sm\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; + .sm\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .sm\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; + .sm\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .sm\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; + .sm\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .sm\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; + .sm\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .sm\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; + .sm\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .sm\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; + .sm\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .sm\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; + .sm\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .sm\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; + .sm\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .sm\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; + .sm\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .sm\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; + .sm\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .sm\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; + .sm\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .sm\:bg-bottom { - background-position: bottom; + .sm\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .sm\:bg-center { - background-position: center; + .sm\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .sm\:bg-left { - background-position: left; + .sm\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .sm\:bg-left-bottom { - background-position: left bottom; + .sm\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .sm\:bg-left-top { - background-position: left top; + .sm\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .sm\:bg-right { - background-position: right; + .sm\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .sm\:bg-right-bottom { - background-position: right bottom; + .sm\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .sm\:bg-right-top { - background-position: right top; + .sm\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .sm\:bg-top { - background-position: top; + .sm\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .sm\:bg-repeat { - background-repeat: repeat; + .sm\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .sm\:bg-no-repeat { - background-repeat: no-repeat; + .sm\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .sm\:bg-repeat-x { - background-repeat: repeat-x; + .sm\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .sm\:bg-repeat-y { - background-repeat: repeat-y; + .sm\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .sm\:bg-repeat-round { - background-repeat: round; + .sm\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .sm\:bg-repeat-space { - background-repeat: space; + .sm\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .sm\:bg-auto { - background-size: auto; + .sm\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .sm\:bg-cover { - background-size: cover; + .sm\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .sm\:bg-contain { - background-size: contain; + .sm\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .sm\:bg-origin-border { - background-origin: border-box; + .sm\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .sm\:bg-origin-padding { - background-origin: padding-box; + .sm\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .sm\:bg-origin-content { - background-origin: content-box; + .sm\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .sm\:border-collapse { - border-collapse: collapse; + .sm\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .sm\:border-separate { - border-collapse: separate; + .sm\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .sm\:border-transparent { - border-color: transparent; + .sm\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .sm\:border-current { - border-color: currentColor; + .sm\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .sm\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .sm\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .sm\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .sm\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .sm\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .sm\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .sm\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .sm\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .sm\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .sm\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .sm\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .sm\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .sm\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .sm\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .sm\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .sm\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .sm\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .sm\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .sm\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .sm\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .sm\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .sm\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .sm\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .sm\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .sm\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .sm\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .sm\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .sm\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .sm\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .sm\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .sm\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .sm\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .sm\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .sm\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .sm\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .sm\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .sm\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .sm\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .sm\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .sm\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .sm\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .sm\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .sm\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .sm\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .sm\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .sm\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .sm\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .sm\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .sm\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .sm\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .sm\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .sm\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .sm\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .sm\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .sm\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .sm\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .sm\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .sm\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .sm\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .sm\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .sm\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .sm\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .sm\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .sm\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .sm\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .sm\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .sm\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .sm\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .sm\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .sm\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .sm\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .sm\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .sm\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .sm\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .sm\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .sm\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .sm\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .sm\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .sm\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .sm\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .sm\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .sm\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .sm\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .sm\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .sm\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .sm\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .sm\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .sm\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .sm\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .sm\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .sm\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .sm\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .sm\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .sm\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .sm\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .sm\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .sm\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .sm\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .sm\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .sm\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .sm\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .sm\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .sm\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .sm\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .sm\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .sm\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .sm\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .sm\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .sm\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .sm\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .sm\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .sm\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .sm\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .sm\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .sm\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .sm\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .sm\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .sm\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .sm\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .sm\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .sm\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .sm\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .sm\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .sm\:group-hover\:border-transparent { - border-color: transparent; + .sm\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .sm\:group-hover\:border-current { - border-color: currentColor; + .sm\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .sm\:group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .sm\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .sm\:group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .sm\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .sm\:group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .sm\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .sm\:group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .sm\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .sm\:group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .sm\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .sm\:group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .sm\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .sm\:group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .sm\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .sm\:group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .sm\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .sm\:group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .sm\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .sm\:group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .sm\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .sm\:group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .sm\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .sm\:group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .sm\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .sm\:group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .sm\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .sm\:group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .sm\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .sm\:group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .sm\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .sm\:group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .sm\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .sm\:group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .sm\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .sm\:group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .sm\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .sm\:group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .sm\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .sm\:group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .sm\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .sm\:group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .sm\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .sm\:group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .sm\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .sm\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .sm\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .sm\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .sm\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .sm\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .sm\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .sm\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .group:hover .sm\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .group:hover .sm\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .group:hover .sm\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .group:hover .sm\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .group:hover .sm\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .group:hover .sm\:group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .group:hover .sm\:group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - - .group:hover .sm\:group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + + .sm\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .group:hover .sm\:group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .group:hover .sm\:group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .group:hover .sm\:group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .group:hover .sm\:group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .group:hover .sm\:group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .group:hover .sm\:group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .group:hover .sm\:group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .group:hover .sm\:group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .group:hover .sm\:group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .group:hover .sm\:group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .group:hover .sm\:group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .group:hover .sm\:group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .group:hover .sm\:group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .group:hover .sm\:group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .group:hover .sm\:group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .group:hover .sm\:group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .group:hover .sm\:group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .group:hover .sm\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .group:hover .sm\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .group:hover .sm\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .group:hover .sm\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .group:hover .sm\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .group:hover .sm\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .group:hover .sm\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .group:hover .sm\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .sm\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .group:hover .sm\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .sm\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .group:hover .sm\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .sm\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .group:hover .sm\:group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .sm\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .group:hover .sm\:group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .sm\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .group:hover .sm\:group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .sm\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .group:hover .sm\:group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .sm\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .group:hover .sm\:group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .group:hover .sm\:group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .group:hover .sm\:group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .group:hover .sm\:group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .group:hover .sm\:group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .group:hover .sm\:group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .group:hover .sm\:group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .sm\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .group:hover .sm\:group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .sm\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .group:hover .sm\:group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .sm\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .group:hover .sm\:group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .sm\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .group:hover .sm\:group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .sm\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .group:hover .sm\:group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .sm\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .group:hover .sm\:group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .sm\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .group:hover .sm\:group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .sm\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .group:hover .sm\:group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .sm\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .group:hover .sm\:group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .sm\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .sm\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .sm\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .sm\:focus-within\:border-current:focus-within { - border-color: currentColor; + .sm\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .sm\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .sm\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .sm\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .sm\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .sm\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .sm\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .sm\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .sm\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .sm\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .sm\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .sm\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .sm\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .sm\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .sm\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .sm\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .sm\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .sm\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .sm\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .sm\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .sm\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .sm\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .sm\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .sm\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .sm\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .sm\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .sm\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .sm\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .sm\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .sm\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .sm\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .sm\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .sm\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .sm\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .sm\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .sm\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .sm\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .sm\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .sm\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .sm\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .sm\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .sm\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .sm\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .sm\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .sm\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .sm\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .sm\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .sm\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .sm\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .sm\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .sm\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .sm\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .sm\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .sm\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .sm\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .sm\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .sm\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .sm\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .sm\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .sm\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .sm\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .sm\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .sm\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .sm\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .sm\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .sm\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .sm\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .sm\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .sm\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .sm\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .sm\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .sm\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .sm\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .sm\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .sm\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .sm\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .sm\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .sm\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .sm\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .sm\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .sm\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .sm\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .sm\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .sm\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .sm\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .sm\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .sm\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .sm\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .sm\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .sm\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .sm\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .sm\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .sm\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .sm\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .sm\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .sm\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .sm\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .sm\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .sm\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .sm\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .sm\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .sm\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .sm\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .sm\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .sm\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .sm\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .sm\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .sm\:rotate-0 { + --tw-rotate: 0deg; } - .sm\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .sm\:rotate-1 { + --tw-rotate: 1deg; } - .sm\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .sm\:rotate-2 { + --tw-rotate: 2deg; } - .sm\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .sm\:rotate-3 { + --tw-rotate: 3deg; } - .sm\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .sm\:rotate-6 { + --tw-rotate: 6deg; } - .sm\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .sm\:rotate-12 { + --tw-rotate: 12deg; } - .sm\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .sm\:rotate-45 { + --tw-rotate: 45deg; } - .sm\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .sm\:rotate-90 { + --tw-rotate: 90deg; } - .sm\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .sm\:rotate-180 { + --tw-rotate: 180deg; } - .sm\:hover\:border-transparent:hover { - border-color: transparent; + .sm\:-rotate-180 { + --tw-rotate: -180deg; } - .sm\:hover\:border-current:hover { - border-color: currentColor; + .sm\:-rotate-90 { + --tw-rotate: -90deg; } - .sm\:hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .sm\:-rotate-45 { + --tw-rotate: -45deg; } - .sm\:hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .sm\:-rotate-12 { + --tw-rotate: -12deg; } - .sm\:hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .sm\:-rotate-6 { + --tw-rotate: -6deg; } - .sm\:hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .sm\:-rotate-3 { + --tw-rotate: -3deg; } - .sm\:hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .sm\:-rotate-2 { + --tw-rotate: -2deg; } - .sm\:hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .sm\:-rotate-1 { + --tw-rotate: -1deg; } - .sm\:hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .sm\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .sm\:hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .sm\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .sm\:hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .sm\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .sm\:hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .sm\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .sm\:hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .sm\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .sm\:hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .sm\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .sm\:hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .sm\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .sm\:hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .sm\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .sm\:hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .sm\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .sm\:hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .sm\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .sm\:hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .sm\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .sm\:hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .sm\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .sm\:hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .sm\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .sm\:hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .sm\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .sm\:hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .sm\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .sm\:hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .sm\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .sm\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .sm\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .sm\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .sm\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .sm\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .sm\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .sm\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .sm\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .sm\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .sm\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .sm\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .sm\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .sm\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .sm\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .sm\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .sm\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .sm\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .sm\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .sm\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .sm\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .sm\:hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .sm\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .sm\:hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .sm\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .sm\:hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .sm\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .sm\:hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .sm\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .sm\:hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .sm\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .sm\:hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .sm\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .sm\:hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .sm\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .sm\:hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .sm\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .sm\:hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .sm\:skew-x-0 { + --tw-skew-x: 0deg; } - .sm\:hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .sm\:skew-x-1 { + --tw-skew-x: 1deg; } - .sm\:hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .sm\:skew-x-2 { + --tw-skew-x: 2deg; } - .sm\:hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .sm\:skew-x-3 { + --tw-skew-x: 3deg; } - .sm\:hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .sm\:skew-x-6 { + --tw-skew-x: 6deg; } - .sm\:hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .sm\:skew-x-12 { + --tw-skew-x: 12deg; } - .sm\:hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .sm\:-skew-x-12 { + --tw-skew-x: -12deg; } - .sm\:hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .sm\:-skew-x-6 { + --tw-skew-x: -6deg; } - .sm\:hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .sm\:-skew-x-3 { + --tw-skew-x: -3deg; } - .sm\:hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .sm\:-skew-x-2 { + --tw-skew-x: -2deg; } - .sm\:hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .sm\:-skew-x-1 { + --tw-skew-x: -1deg; } - .sm\:hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .sm\:skew-y-0 { + --tw-skew-y: 0deg; } - .sm\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .sm\:skew-y-1 { + --tw-skew-y: 1deg; } - .sm\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .sm\:skew-y-2 { + --tw-skew-y: 2deg; } - .sm\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .sm\:skew-y-3 { + --tw-skew-y: 3deg; } - .sm\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .sm\:skew-y-6 { + --tw-skew-y: 6deg; } - .sm\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .sm\:skew-y-12 { + --tw-skew-y: 12deg; } - .sm\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .sm\:-skew-y-12 { + --tw-skew-y: -12deg; } - .sm\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .sm\:-skew-y-6 { + --tw-skew-y: -6deg; } - .sm\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .sm\:-skew-y-3 { + --tw-skew-y: -3deg; } - .sm\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .sm\:-skew-y-2 { + --tw-skew-y: -2deg; } - .sm\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .sm\:-skew-y-1 { + --tw-skew-y: -1deg; } - .sm\:hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .sm\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .sm\:hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .sm\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .sm\:hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .sm\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .sm\:hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .sm\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .sm\:hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .sm\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .sm\:hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .sm\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .sm\:hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .sm\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .sm\:hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .sm\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .sm\:hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .sm\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .sm\:hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .sm\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .sm\:hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .sm\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .sm\:hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .sm\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .sm\:hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .sm\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .sm\:hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .sm\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .sm\:hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .sm\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .sm\:hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .sm\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .sm\:hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .sm\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .sm\:hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .sm\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .sm\:hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .sm\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .sm\:hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .sm\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .sm\:focus\:border-transparent:focus { - border-color: transparent; + .sm\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .sm\:focus\:border-current:focus { - border-color: currentColor; + .sm\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .sm\:focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .sm\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .sm\:focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .sm\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .sm\:focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .sm\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .sm\:focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .sm\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .sm\:focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .sm\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .sm\:focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .sm\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .sm\:focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .sm\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .sm\:focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .sm\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .sm\:focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .sm\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .sm\:focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .sm\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .sm\:focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .sm\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .sm\:focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .sm\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .sm\:focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .sm\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .sm\:focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .sm\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .sm\:focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .sm\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .sm\:focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .sm\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .sm\:focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .sm\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .sm\:focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .sm\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .sm\:focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .sm\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .sm\:focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .sm\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .sm\:focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .sm\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .sm\:focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .sm\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .sm\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .sm\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .sm\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .sm\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .sm\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .sm\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .sm\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .sm\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .sm\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .sm\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .sm\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .sm\:scale-x-0 { + --tw-scale-x: 0; } - .sm\:focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .sm\:scale-x-50 { + --tw-scale-x: .5; } - .sm\:focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .sm\:scale-x-75 { + --tw-scale-x: .75; } - .sm\:focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .sm\:scale-x-90 { + --tw-scale-x: .9; } - .sm\:focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .sm\:scale-x-95 { + --tw-scale-x: .95; } - .sm\:focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .sm\:scale-x-100 { + --tw-scale-x: 1; } - .sm\:focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .sm\:scale-x-105 { + --tw-scale-x: 1.05; } - .sm\:focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .sm\:scale-x-110 { + --tw-scale-x: 1.1; } - .sm\:focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .sm\:scale-x-125 { + --tw-scale-x: 1.25; } - .sm\:focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .sm\:scale-x-150 { + --tw-scale-x: 1.5; } - .sm\:focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .sm\:scale-y-0 { + --tw-scale-y: 0; } - .sm\:focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .sm\:scale-y-50 { + --tw-scale-y: .5; } - .sm\:focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .sm\:scale-y-75 { + --tw-scale-y: .75; } - .sm\:focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .sm\:scale-y-90 { + --tw-scale-y: .9; } - .sm\:focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .sm\:scale-y-95 { + --tw-scale-y: .95; } - .sm\:focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .sm\:scale-y-100 { + --tw-scale-y: 1; } - .sm\:focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .sm\:scale-y-105 { + --tw-scale-y: 1.05; } - .sm\:focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .sm\:scale-y-110 { + --tw-scale-y: 1.1; } - .sm\:focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .sm\:scale-y-125 { + --tw-scale-y: 1.25; } - .sm\:focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .sm\:scale-y-150 { + --tw-scale-y: 1.5; } - .sm\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .sm\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .sm\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .sm\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .sm\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .sm\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .sm\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .sm\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .sm\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .sm\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .sm\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .sm\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .sm\:focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .sm\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .sm\:focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .sm\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .sm\:focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .sm\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .sm\:focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .sm\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .sm\:focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .sm\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .sm\:focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .sm\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .sm\:focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .sm\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .sm\:focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .sm\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .sm\:focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .sm\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .sm\:focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .sm\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .sm\:focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .sm\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .sm\:focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .sm\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .sm\:focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .sm\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .sm\:focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .sm\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .sm\:focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .sm\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .sm\:focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .sm\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .sm\:focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .sm\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .sm\:focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .sm\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .sm\:focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .sm\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .sm\:border-opacity-0 { - --tw-border-opacity: 0; + .sm\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:border-opacity-5 { - --tw-border-opacity: 0.05; + .sm\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:border-opacity-10 { - --tw-border-opacity: 0.1; + .sm\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:border-opacity-20 { - --tw-border-opacity: 0.2; + .sm\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:border-opacity-25 { - --tw-border-opacity: 0.25; + .sm\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:border-opacity-30 { - --tw-border-opacity: 0.3; + .sm\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:border-opacity-40 { - --tw-border-opacity: 0.4; + .sm\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:border-opacity-50 { - --tw-border-opacity: 0.5; + .sm\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:border-opacity-60 { - --tw-border-opacity: 0.6; + .sm\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:border-opacity-70 { - --tw-border-opacity: 0.7; + .sm\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:border-opacity-75 { - --tw-border-opacity: 0.75; + .sm\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .sm\:border-opacity-80 { - --tw-border-opacity: 0.8; + .sm\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .sm\:border-opacity-90 { - --tw-border-opacity: 0.9; + .sm\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .sm\:border-opacity-95 { - --tw-border-opacity: 0.95; + .sm\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .sm\:border-opacity-100 { - --tw-border-opacity: 1; + .sm\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .group:hover .sm\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0; + .sm\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .group:hover .sm\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; + .sm\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .group:hover .sm\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; + .sm\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .group:hover .sm\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; + .sm\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .group:hover .sm\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; + .sm\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .group:hover .sm\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; + .sm\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .group:hover .sm\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; + .sm\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .group:hover .sm\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; + .sm\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .group:hover .sm\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; + .sm\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .group:hover .sm\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; + .sm\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .group:hover .sm\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; + .sm\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .group:hover .sm\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; + .sm\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .group:hover .sm\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; + .sm\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .group:hover .sm\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; + .sm\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .group:hover .sm\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1; + .sm\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .sm\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; + .sm\:animate-none { + animation: none; } - .sm\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; + .sm\:animate-spin { + animation: spin 1s linear infinite; } - .sm\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; + .sm\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .sm\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; + .sm\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .sm\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; + .sm\:animate-bounce { + animation: bounce 1s infinite; } - .sm\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; + .sm\:cursor-auto { + cursor: auto; } - .sm\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; + .sm\:cursor-default { + cursor: default; } - .sm\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; + .sm\:cursor-pointer { + cursor: pointer; } - .sm\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; + .sm\:cursor-wait { + cursor: wait; } - .sm\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; + .sm\:cursor-text { + cursor: text; } - .sm\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; + .sm\:cursor-move { + cursor: move; } - .sm\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; + .sm\:cursor-help { + cursor: help; } - .sm\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; + .sm\:cursor-not-allowed { + cursor: not-allowed; } - .sm\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; + .sm\:select-none { + user-select: none; } - .sm\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; + .sm\:select-text { + user-select: text; } - .sm\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0; + .sm\:select-all { + user-select: all; } - .sm\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; + .sm\:select-auto { + user-select: auto; } - .sm\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; + .sm\:resize-none { + resize: none; } - .sm\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; + .sm\:resize-y { + resize: vertical; } - .sm\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; + .sm\:resize-x { + resize: horizontal; } - .sm\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; + .sm\:resize { + resize: both; } - .sm\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; + .sm\:list-inside { + list-style-position: inside; } - .sm\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; + .sm\:list-outside { + list-style-position: outside; } - .sm\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; + .sm\:list-none { + list-style-type: none; } - .sm\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; + .sm\:list-disc { + list-style-type: disc; } - .sm\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; + .sm\:list-decimal { + list-style-type: decimal; } - .sm\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; + .sm\:appearance-none { + appearance: none; } - .sm\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; + .sm\:auto-cols-auto { + grid-auto-columns: auto; } - .sm\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; + .sm\:auto-cols-min { + grid-auto-columns: min-content; } - .sm\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1; + .sm\:auto-cols-max { + grid-auto-columns: max-content; } - .sm\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0; + .sm\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .sm\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; + .sm\:grid-flow-row { + grid-auto-flow: row; } - .sm\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; + .sm\:grid-flow-col { + grid-auto-flow: column; } - .sm\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; + .sm\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .sm\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; + .sm\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .sm\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; + .sm\:auto-rows-auto { + grid-auto-rows: auto; } - .sm\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; + .sm\:auto-rows-min { + grid-auto-rows: min-content; } - .sm\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; + .sm\:auto-rows-max { + grid-auto-rows: max-content; } - .sm\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; + .sm\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .sm\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; + .sm\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .sm\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; + .sm\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .sm\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; + .sm\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .sm\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; + .sm\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .sm\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; + .sm\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .sm\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1; + .sm\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .sm\:rounded-none { - border-radius: 0px; + .sm\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .sm\:rounded-sm { - border-radius: 0.125rem; + .sm\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .sm\:rounded { - border-radius: 0.25rem; + .sm\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .sm\:rounded-md { - border-radius: 0.375rem; + .sm\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .sm\:rounded-lg { - border-radius: 0.5rem; + .sm\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .sm\:rounded-xl { - border-radius: 0.75rem; + .sm\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .sm\:rounded-2xl { - border-radius: 1rem; + .sm\:grid-cols-none { + grid-template-columns: none; } - .sm\:rounded-3xl { - border-radius: 1.5rem; + .sm\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .sm\:rounded-full { - border-radius: 9999px; + .sm\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .sm\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .sm\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .sm\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .sm\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .sm\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .sm\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .sm\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .sm\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .sm\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .sm\:grid-rows-none { + grid-template-rows: none; } - .sm\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .sm\:flex-row { + flex-direction: row; } - .sm\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .sm\:flex-row-reverse { + flex-direction: row-reverse; } - .sm\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .sm\:flex-col { + flex-direction: column; } - .sm\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .sm\:flex-col-reverse { + flex-direction: column-reverse; } - .sm\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .sm\:flex-wrap { + flex-wrap: wrap; } - .sm\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .sm\:flex-wrap-reverse { + flex-wrap: wrap-reverse; } - .sm\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .sm\:flex-nowrap { + flex-wrap: nowrap; } - .sm\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .sm\:place-content-center { + place-content: center; } - .sm\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .sm\:place-content-start { + place-content: start; } - .sm\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .sm\:place-content-end { + place-content: end; } - .sm\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .sm\:place-content-between { + place-content: space-between; } - .sm\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .sm\:place-content-around { + place-content: space-around; } - .sm\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .sm\:place-content-evenly { + place-content: space-evenly; } - .sm\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .sm\:place-content-stretch { + place-content: stretch; } - .sm\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .sm\:place-items-start { + place-items: start; } - .sm\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .sm\:place-items-end { + place-items: end; } - .sm\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .sm\:place-items-center { + place-items: center; } - .sm\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .sm\:place-items-stretch { + place-items: stretch; } - .sm\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .sm\:content-center { + align-content: center; } - .sm\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .sm\:content-start { + align-content: flex-start; } - .sm\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .sm\:content-end { + align-content: flex-end; } - .sm\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .sm\:content-between { + align-content: space-between; } - .sm\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .sm\:content-around { + align-content: space-around; } - .sm\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .sm\:content-evenly { + align-content: space-evenly; } - .sm\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .sm\:items-start { + align-items: flex-start; } - .sm\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .sm\:items-end { + align-items: flex-end; } - .sm\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .sm\:items-center { + align-items: center; } - .sm\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .sm\:items-baseline { + align-items: baseline; } - .sm\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .sm\:items-stretch { + align-items: stretch; } - .sm\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .sm\:justify-start { + justify-content: flex-start; } - .sm\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .sm\:justify-end { + justify-content: flex-end; } - .sm\:rounded-tl-none { - border-top-left-radius: 0px; + .sm\:justify-center { + justify-content: center; } - .sm\:rounded-tr-none { - border-top-right-radius: 0px; + .sm\:justify-between { + justify-content: space-between; + } + + .sm\:justify-around { + justify-content: space-around; } - .sm\:rounded-br-none { - border-bottom-right-radius: 0px; + .sm\:justify-evenly { + justify-content: space-evenly; } - .sm\:rounded-bl-none { - border-bottom-left-radius: 0px; + .sm\:justify-items-start { + justify-items: start; } - .sm\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .sm\:justify-items-end { + justify-items: end; } - .sm\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .sm\:justify-items-center { + justify-items: center; } - .sm\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .sm\:justify-items-stretch { + justify-items: stretch; } - .sm\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .sm\:gap-0 { + gap: 0px; } - .sm\:rounded-tl { - border-top-left-radius: 0.25rem; + .sm\:gap-1 { + gap: 0.25rem; } - .sm\:rounded-tr { - border-top-right-radius: 0.25rem; + .sm\:gap-2 { + gap: 0.5rem; } - .sm\:rounded-br { - border-bottom-right-radius: 0.25rem; + .sm\:gap-3 { + gap: 0.75rem; } - .sm\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .sm\:gap-4 { + gap: 1rem; } - .sm\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .sm\:gap-5 { + gap: 1.25rem; } - .sm\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .sm\:gap-6 { + gap: 1.5rem; } - .sm\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .sm\:gap-7 { + gap: 1.75rem; } - .sm\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .sm\:gap-8 { + gap: 2rem; } - .sm\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .sm\:gap-9 { + gap: 2.25rem; } - .sm\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .sm\:gap-10 { + gap: 2.5rem; } - .sm\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .sm\:gap-11 { + gap: 2.75rem; } - .sm\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .sm\:gap-12 { + gap: 3rem; } - .sm\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .sm\:gap-14 { + gap: 3.5rem; } - .sm\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .sm\:gap-16 { + gap: 4rem; } - .sm\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .sm\:gap-20 { + gap: 5rem; } - .sm\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .sm\:gap-24 { + gap: 6rem; } - .sm\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .sm\:gap-28 { + gap: 7rem; } - .sm\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .sm\:gap-32 { + gap: 8rem; } - .sm\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .sm\:gap-36 { + gap: 9rem; } - .sm\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .sm\:gap-40 { + gap: 10rem; } - .sm\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .sm\:gap-44 { + gap: 11rem; } - .sm\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .sm\:gap-48 { + gap: 12rem; } - .sm\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .sm\:gap-52 { + gap: 13rem; } - .sm\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .sm\:gap-56 { + gap: 14rem; } - .sm\:rounded-tl-full { - border-top-left-radius: 9999px; + .sm\:gap-60 { + gap: 15rem; } - .sm\:rounded-tr-full { - border-top-right-radius: 9999px; + .sm\:gap-64 { + gap: 16rem; } - .sm\:rounded-br-full { - border-bottom-right-radius: 9999px; + .sm\:gap-72 { + gap: 18rem; } - .sm\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .sm\:gap-80 { + gap: 20rem; } - .sm\:border-solid { - border-style: solid; + .sm\:gap-96 { + gap: 24rem; } - .sm\:border-dashed { - border-style: dashed; + .sm\:gap-px { + gap: 1px; } - .sm\:border-dotted { - border-style: dotted; + .sm\:gap-0\.5 { + gap: 0.125rem; } - .sm\:border-double { - border-style: double; + .sm\:gap-1\.5 { + gap: 0.375rem; } - .sm\:border-none { - border-style: none; + .sm\:gap-2\.5 { + gap: 0.625rem; } - .sm\:border-0 { - border-width: 0px; + .sm\:gap-3\.5 { + gap: 0.875rem; } - .sm\:border-2 { - border-width: 2px; + .sm\:gap-x-0 { + column-gap: 0px; } - .sm\:border-4 { - border-width: 4px; + .sm\:gap-x-1 { + column-gap: 0.25rem; } - .sm\:border-8 { - border-width: 8px; + .sm\:gap-x-2 { + column-gap: 0.5rem; } - .sm\:border { - border-width: 1px; + .sm\:gap-x-3 { + column-gap: 0.75rem; } - .sm\:border-t-0 { - border-top-width: 0px; + .sm\:gap-x-4 { + column-gap: 1rem; } - .sm\:border-r-0 { - border-right-width: 0px; + .sm\:gap-x-5 { + column-gap: 1.25rem; } - .sm\:border-b-0 { - border-bottom-width: 0px; + .sm\:gap-x-6 { + column-gap: 1.5rem; } - .sm\:border-l-0 { - border-left-width: 0px; + .sm\:gap-x-7 { + column-gap: 1.75rem; } - .sm\:border-t-2 { - border-top-width: 2px; + .sm\:gap-x-8 { + column-gap: 2rem; } - .sm\:border-r-2 { - border-right-width: 2px; + .sm\:gap-x-9 { + column-gap: 2.25rem; } - .sm\:border-b-2 { - border-bottom-width: 2px; + .sm\:gap-x-10 { + column-gap: 2.5rem; } - .sm\:border-l-2 { - border-left-width: 2px; + .sm\:gap-x-11 { + column-gap: 2.75rem; } - .sm\:border-t-4 { - border-top-width: 4px; + .sm\:gap-x-12 { + column-gap: 3rem; } - .sm\:border-r-4 { - border-right-width: 4px; + .sm\:gap-x-14 { + column-gap: 3.5rem; } - .sm\:border-b-4 { - border-bottom-width: 4px; + .sm\:gap-x-16 { + column-gap: 4rem; } - .sm\:border-l-4 { - border-left-width: 4px; + .sm\:gap-x-20 { + column-gap: 5rem; } - .sm\:border-t-8 { - border-top-width: 8px; + .sm\:gap-x-24 { + column-gap: 6rem; } - .sm\:border-r-8 { - border-right-width: 8px; + .sm\:gap-x-28 { + column-gap: 7rem; } - .sm\:border-b-8 { - border-bottom-width: 8px; + .sm\:gap-x-32 { + column-gap: 8rem; } - .sm\:border-l-8 { - border-left-width: 8px; + .sm\:gap-x-36 { + column-gap: 9rem; } - .sm\:border-t { - border-top-width: 1px; + .sm\:gap-x-40 { + column-gap: 10rem; } - .sm\:border-r { - border-right-width: 1px; + .sm\:gap-x-44 { + column-gap: 11rem; } - .sm\:border-b { - border-bottom-width: 1px; + .sm\:gap-x-48 { + column-gap: 12rem; } - .sm\:border-l { - border-left-width: 1px; + .sm\:gap-x-52 { + column-gap: 13rem; } - .sm\:decoration-slice { - box-decoration-break: slice; + .sm\:gap-x-56 { + column-gap: 14rem; } - .sm\:decoration-clone { - box-decoration-break: clone; + .sm\:gap-x-60 { + column-gap: 15rem; } - .sm\:box-border { - box-sizing: border-box; + .sm\:gap-x-64 { + column-gap: 16rem; } - .sm\:box-content { - box-sizing: content-box; + .sm\:gap-x-72 { + column-gap: 18rem; } - .sm\:cursor-auto { - cursor: auto; + .sm\:gap-x-80 { + column-gap: 20rem; } - .sm\:cursor-default { - cursor: default; + .sm\:gap-x-96 { + column-gap: 24rem; } - .sm\:cursor-pointer { - cursor: pointer; + .sm\:gap-x-px { + column-gap: 1px; } - .sm\:cursor-wait { - cursor: wait; + .sm\:gap-x-0\.5 { + column-gap: 0.125rem; } - .sm\:cursor-text { - cursor: text; + .sm\:gap-x-1\.5 { + column-gap: 0.375rem; } - .sm\:cursor-move { - cursor: move; + .sm\:gap-x-2\.5 { + column-gap: 0.625rem; } - .sm\:cursor-help { - cursor: help; + .sm\:gap-x-3\.5 { + column-gap: 0.875rem; } - .sm\:cursor-not-allowed { - cursor: not-allowed; + .sm\:gap-y-0 { + row-gap: 0px; } - .sm\:block { - display: block; + .sm\:gap-y-1 { + row-gap: 0.25rem; } - .sm\:inline-block { - display: inline-block; + .sm\:gap-y-2 { + row-gap: 0.5rem; } - .sm\:inline { - display: inline; + .sm\:gap-y-3 { + row-gap: 0.75rem; } - .sm\:flex { - display: flex; + .sm\:gap-y-4 { + row-gap: 1rem; } - .sm\:inline-flex { - display: inline-flex; + .sm\:gap-y-5 { + row-gap: 1.25rem; } - .sm\:table { - display: table; + .sm\:gap-y-6 { + row-gap: 1.5rem; } - .sm\:inline-table { - display: inline-table; + .sm\:gap-y-7 { + row-gap: 1.75rem; } - .sm\:table-caption { - display: table-caption; + .sm\:gap-y-8 { + row-gap: 2rem; } - .sm\:table-cell { - display: table-cell; + .sm\:gap-y-9 { + row-gap: 2.25rem; } - .sm\:table-column { - display: table-column; + .sm\:gap-y-10 { + row-gap: 2.5rem; } - .sm\:table-column-group { - display: table-column-group; + .sm\:gap-y-11 { + row-gap: 2.75rem; } - .sm\:table-footer-group { - display: table-footer-group; + .sm\:gap-y-12 { + row-gap: 3rem; } - .sm\:table-header-group { - display: table-header-group; + .sm\:gap-y-14 { + row-gap: 3.5rem; } - .sm\:table-row-group { - display: table-row-group; + .sm\:gap-y-16 { + row-gap: 4rem; } - .sm\:table-row { - display: table-row; + .sm\:gap-y-20 { + row-gap: 5rem; } - .sm\:flow-root { - display: flow-root; + .sm\:gap-y-24 { + row-gap: 6rem; } - .sm\:grid { - display: grid; + .sm\:gap-y-28 { + row-gap: 7rem; } - .sm\:inline-grid { - display: inline-grid; + .sm\:gap-y-32 { + row-gap: 8rem; } - .sm\:contents { - display: contents; + .sm\:gap-y-36 { + row-gap: 9rem; } - .sm\:list-item { - display: list-item; + .sm\:gap-y-40 { + row-gap: 10rem; } - .sm\:hidden { - display: none; + .sm\:gap-y-44 { + row-gap: 11rem; } - .sm\:flex-row { - flex-direction: row; + .sm\:gap-y-48 { + row-gap: 12rem; } - .sm\:flex-row-reverse { - flex-direction: row-reverse; + .sm\:gap-y-52 { + row-gap: 13rem; } - .sm\:flex-col { - flex-direction: column; + .sm\:gap-y-56 { + row-gap: 14rem; } - .sm\:flex-col-reverse { - flex-direction: column-reverse; + .sm\:gap-y-60 { + row-gap: 15rem; } - .sm\:flex-wrap { - flex-wrap: wrap; + .sm\:gap-y-64 { + row-gap: 16rem; } - .sm\:flex-wrap-reverse { - flex-wrap: wrap-reverse; + .sm\:gap-y-72 { + row-gap: 18rem; } - .sm\:flex-nowrap { - flex-wrap: nowrap; + .sm\:gap-y-80 { + row-gap: 20rem; } - .sm\:place-items-start { - place-items: start; + .sm\:gap-y-96 { + row-gap: 24rem; } - .sm\:place-items-end { - place-items: end; + .sm\:gap-y-px { + row-gap: 1px; } - .sm\:place-items-center { - place-items: center; + .sm\:gap-y-0\.5 { + row-gap: 0.125rem; } - .sm\:place-items-stretch { - place-items: stretch; + .sm\:gap-y-1\.5 { + row-gap: 0.375rem; } - .sm\:place-content-center { - place-content: center; + .sm\:gap-y-2\.5 { + row-gap: 0.625rem; } - .sm\:place-content-start { - place-content: start; + .sm\:gap-y-3\.5 { + row-gap: 0.875rem; } - .sm\:place-content-end { - place-content: end; + .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\:place-content-between { - place-content: space-between; + .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\:place-content-around { - place-content: space-around; + .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\:place-content-evenly { - place-content: space-evenly; + .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\:place-content-stretch { - place-content: stretch; + .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\:place-self-auto { - place-self: auto; + .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\:place-self-start { - place-self: start; + .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\:place-self-end { - place-self: end; + .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\:place-self-center { - place-self: center; + .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\:place-self-stretch { - place-self: stretch; + .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\:items-start { - align-items: flex-start; + .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\:items-end { - align-items: flex-end; + .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\:items-center { - align-items: center; + .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\:items-baseline { - align-items: baseline; + .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\:items-stretch { - align-items: stretch; + .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\:content-center { - align-content: center; + .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\:content-start { - align-content: flex-start; + .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\:content-end { - align-content: flex-end; + .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\:content-between { - align-content: space-between; + .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\:content-around { - align-content: space-around; + .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\:content-evenly { - align-content: space-evenly; + .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\:self-auto { - align-self: auto; + .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\:self-start { - align-self: flex-start; + .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\:self-end { - align-self: flex-end; + .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\:self-center { - align-self: center; + .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\:self-stretch { - align-self: stretch; + .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\:justify-items-start { - justify-items: start; + .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\:justify-items-end { - justify-items: end; + .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\:justify-items-center { - justify-items: center; + .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\:justify-items-stretch { - justify-items: stretch; + .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\:justify-start { - justify-content: flex-start; + .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\:justify-end { - justify-content: flex-end; + .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\:justify-center { - justify-content: center; + .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\:justify-between { - justify-content: space-between; + .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\:justify-around { - justify-content: space-around; + .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\:justify-evenly { - justify-content: space-evenly; + .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\:justify-self-auto { - justify-self: auto; + .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\:justify-self-start { - justify-self: start; + .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\:justify-self-end { - justify-self: end; + .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\:justify-self-center { - justify-self: center; + .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\:justify-self-stretch { - justify-self: stretch; + .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\:flex-1 { - flex: 1 1 0%; + .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\:flex-auto { - flex: 1 1 auto; + .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\:flex-initial { - flex: 0 1 auto; + .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\:flex-none { - flex: none; + .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\:flex-grow-0 { - flex-grow: 0; + .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\:flex-grow { - flex-grow: 1; + .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\:flex-shrink-0 { - flex-shrink: 0; + .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\:flex-shrink { - flex-shrink: 1; + .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\:order-1 { - order: 1; + .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\:order-2 { - order: 2; + .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\:order-3 { - order: 3; + .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\:order-4 { - order: 4; + .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\:order-5 { - order: 5; + .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\:order-6 { - order: 6; + .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\:order-7 { - order: 7; + .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\:order-8 { - order: 8; + .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\:order-9 { - order: 9; + .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\:order-10 { - order: 10; + .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\:order-11 { - order: 11; + .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\:order-12 { - order: 12; + .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\:order-first { - order: -9999; + .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\:order-last { - order: 9999; + .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\:order-none { - order: 0; + .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\:float-right { - float: right; + .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\:float-left { - float: left; + .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\:float-none { - float: none; + .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\:clear-left { - clear: left; + .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\:clear-right { - clear: right; + .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\:clear-both { - clear: both; + .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\:clear-none { - clear: none; + .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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .sm\:-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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .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\:font-thin { - font-weight: 100; + .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\:font-extralight { - font-weight: 200; + .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\:font-light { - font-weight: 300; + .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\:font-normal { - font-weight: 400; + .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\:font-medium { - font-weight: 500; + .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\:font-semibold { - font-weight: 600; + .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\:font-bold { - font-weight: 700; + .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\:font-extrabold { - font-weight: 800; + .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\:font-black { - font-weight: 900; + .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\:h-0 { - height: 0px; + .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\:h-1 { - height: 0.25rem; + .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\:h-2 { - height: 0.5rem; + .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\:h-3 { - height: 0.75rem; + .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\:h-4 { - height: 1rem; + .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\:h-5 { - height: 1.25rem; + .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\:h-6 { - height: 1.5rem; + .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\:h-7 { - height: 1.75rem; + .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\:h-8 { - height: 2rem; + .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\:h-9 { - height: 2.25rem; + .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\:h-10 { - height: 2.5rem; + .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\:h-11 { - height: 2.75rem; + .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\:h-12 { - height: 3rem; + .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\:h-14 { - height: 3.5rem; + .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\:h-16 { - height: 4rem; + .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\:h-20 { - height: 5rem; + .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\:h-24 { - height: 6rem; + .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\:h-28 { - height: 7rem; + .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\:h-32 { - height: 8rem; + .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\:h-36 { - height: 9rem; + .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\:h-40 { - height: 10rem; + .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\:h-44 { - height: 11rem; + .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\:h-48 { - height: 12rem; + .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\:h-52 { - height: 13rem; + .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\:h-56 { - height: 14rem; + .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\:h-60 { - height: 15rem; + .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\:h-64 { - height: 16rem; + .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\:h-72 { - height: 18rem; + .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\:h-80 { - height: 20rem; + .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\:h-96 { - height: 24rem; + .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\:h-auto { - height: auto; + .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\:h-px { - height: 1px; + .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\:h-0\.5 { - height: 0.125rem; + .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\:h-1\.5 { - height: 0.375rem; + .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\:h-2\.5 { - height: 0.625rem; + .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\:h-3\.5 { - height: 0.875rem; + .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\:h-1\/2 { - height: 50%; + .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\:h-1\/3 { - height: 33.333333%; + .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\:h-2\/3 { - height: 66.666667%; + .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\:h-1\/4 { - height: 25%; + .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\:h-2\/4 { - height: 50%; + .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\:h-3\/4 { - height: 75%; + .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\:h-1\/5 { - height: 20%; + .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\:h-2\/5 { - height: 40%; + .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\:h-3\/5 { - height: 60%; + .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\:h-4\/5 { - height: 80%; + .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\:h-1\/6 { - height: 16.666667%; + .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\:h-2\/6 { - height: 33.333333%; + .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\:h-3\/6 { - height: 50%; + .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\:h-4\/6 { - height: 66.666667%; + .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\:h-5\/6 { - height: 83.333333%; + .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\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .sm\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .sm\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .sm\:leading-7 { - line-height: 1.75rem; + .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .sm\:leading-8 { - line-height: 2rem; + .sm\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .sm\:leading-9 { - line-height: 2.25rem; + .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .sm\:leading-10 { - line-height: 2.5rem; + .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .sm\:leading-none { - line-height: 1; + .sm\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .sm\:leading-tight { - line-height: 1.25; + .sm\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .sm\:leading-snug { - line-height: 1.375; + .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .sm\:leading-normal { - line-height: 1.5; + .sm\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .sm\:leading-relaxed { - line-height: 1.625; + .sm\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } - .sm\:leading-loose { - line-height: 2; + .sm\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } - .sm\:list-inside { - list-style-position: inside; + .sm\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } - .sm\:list-outside { - list-style-position: outside; + .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } - .sm\:list-none { - list-style-type: none; + .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } - .sm\:list-disc { - list-style-type: disc; + .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } - .sm\:list-decimal { - list-style-type: decimal; + .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } - .sm\:m-0 { - margin: 0px; + .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } - .sm\:m-1 { - margin: 0.25rem; + .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } - .sm\:m-2 { - margin: 0.5rem; + .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } - .sm\:m-3 { - margin: 0.75rem; + .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } - .sm\:m-4 { - margin: 1rem; + .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } - .sm\:m-5 { - margin: 1.25rem; + .sm\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } - .sm\:m-6 { - margin: 1.5rem; + .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } - .sm\:m-7 { - margin: 1.75rem; + .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } - .sm\:m-8 { - margin: 2rem; + .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } - .sm\:m-9 { - margin: 2.25rem; + .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } - .sm\:m-10 { - margin: 2.5rem; + .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } - .sm\:m-11 { - margin: 2.75rem; + .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } - .sm\:m-12 { - margin: 3rem; + .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } - .sm\:m-14 { - margin: 3.5rem; + .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } - .sm\:m-16 { - margin: 4rem; + .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } - .sm\:m-20 { - margin: 5rem; + .sm\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } - .sm\:m-24 { - margin: 6rem; + .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } - .sm\:m-28 { - margin: 7rem; + .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } - .sm\:m-32 { - margin: 8rem; + .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } - .sm\:m-36 { - margin: 9rem; + .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } - .sm\:m-40 { - margin: 10rem; + .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } - .sm\:m-44 { - margin: 11rem; + .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } - .sm\:m-48 { - margin: 12rem; + .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } - .sm\:m-52 { - margin: 13rem; + .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } - .sm\:m-56 { - margin: 14rem; + .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } - .sm\:m-60 { - margin: 15rem; + .sm\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } - .sm\:m-64 { - margin: 16rem; + .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } - .sm\:m-72 { - margin: 18rem; + .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } - .sm\:m-80 { - margin: 20rem; + .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } - .sm\:m-96 { - margin: 24rem; + .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } - .sm\:m-auto { - margin: auto; + .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } - .sm\:m-px { - margin: 1px; + .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } - .sm\:m-0\.5 { - margin: 0.125rem; + .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } - .sm\:m-1\.5 { - margin: 0.375rem; + .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } - .sm\:m-2\.5 { - margin: 0.625rem; + .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } - .sm\:m-3\.5 { - margin: 0.875rem; + .sm\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } - .sm\:-m-0 { - margin: 0px; + .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } - .sm\:-m-1 { - margin: -0.25rem; + .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } - .sm\:-m-2 { - margin: -0.5rem; + .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } - .sm\:-m-3 { - margin: -0.75rem; + .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } - .sm\:-m-4 { - margin: -1rem; + .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } - .sm\:-m-5 { - margin: -1.25rem; + .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } - .sm\:-m-6 { - margin: -1.5rem; + .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } - .sm\:-m-7 { - margin: -1.75rem; + .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } - .sm\:-m-8 { - margin: -2rem; + .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } - .sm\:-m-9 { - margin: -2.25rem; + .sm\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } - .sm\:-m-10 { - margin: -2.5rem; + .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } - .sm\:-m-11 { - margin: -2.75rem; + .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } - .sm\:-m-12 { - margin: -3rem; + .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } - .sm\:-m-14 { - margin: -3.5rem; + .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } - .sm\:-m-16 { - margin: -4rem; + .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } - .sm\:-m-20 { - margin: -5rem; + .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } - .sm\:-m-24 { - margin: -6rem; + .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } - .sm\:-m-28 { - margin: -7rem; + .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } - .sm\:-m-32 { - margin: -8rem; + .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } - .sm\:-m-36 { - margin: -9rem; + .sm\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } - .sm\:-m-40 { - margin: -10rem; + .sm\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } - .sm\:-m-44 { - margin: -11rem; + .sm\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } - .sm\:-m-48 { - margin: -12rem; + .sm\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } - .sm\:-m-52 { - margin: -13rem; + .sm\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } - .sm\:-m-56 { - margin: -14rem; + .sm\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } - .sm\:-m-60 { - margin: -15rem; + .sm\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } - .sm\:-m-64 { - margin: -16rem; + .sm\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } - .sm\:-m-72 { - margin: -18rem; + .sm\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } - .sm\:-m-80 { - margin: -20rem; + .sm\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } - .sm\:-m-96 { - margin: -24rem; + .sm\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } - .sm\:-m-px { - margin: -1px; + .sm\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } - .sm\:-m-0\.5 { - margin: -0.125rem; + .sm\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } - .sm\:-m-1\.5 { - margin: -0.375rem; + .sm\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } - .sm\:-m-2\.5 { - margin: -0.625rem; + .sm\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } - .sm\:-m-3\.5 { - margin: -0.875rem; + .sm\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } - .sm\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .sm\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } - .sm\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .sm\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } - .sm\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .sm\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } - .sm\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .sm\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } - .sm\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .sm\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } - .sm\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .sm\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } - .sm\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .sm\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } - .sm\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .sm\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } - .sm\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .sm\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } - .sm\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .sm\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } - .sm\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .sm\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } - .sm\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .sm\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } - .sm\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .sm\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } - .sm\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .sm\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } - .sm\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .sm\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } - .sm\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .sm\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } - .sm\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .sm\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } - .sm\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .sm\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } - .sm\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .sm\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } - .sm\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .sm\:place-self-auto { + place-self: auto; } - .sm\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .sm\:place-self-start { + place-self: start; } - .sm\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .sm\:place-self-end { + place-self: end; } - .sm\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .sm\:place-self-center { + place-self: center; } - .sm\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .sm\:place-self-stretch { + place-self: stretch; } - .sm\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .sm\:self-auto { + align-self: auto; } - .sm\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .sm\:self-start { + align-self: flex-start; } - .sm\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .sm\:self-end { + align-self: flex-end; } - .sm\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .sm\:self-center { + align-self: center; } - .sm\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .sm\:self-stretch { + align-self: stretch; } - .sm\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .sm\:justify-self-auto { + justify-self: auto; } - .sm\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .sm\:justify-self-start { + justify-self: start; } - .sm\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .sm\:justify-self-end { + justify-self: end; } - .sm\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .sm\:justify-self-center { + justify-self: center; } - .sm\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .sm\:justify-self-stretch { + justify-self: stretch; } - .sm\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .sm\:overflow-auto { + overflow: auto; } - .sm\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .sm\:overflow-hidden { + overflow: hidden; } - .sm\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .sm\:overflow-visible { + overflow: visible; } - .sm\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .sm\:overflow-scroll { + overflow: scroll; } - .sm\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .sm\:overflow-x-auto { + overflow-x: auto; } - .sm\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .sm\:overflow-y-auto { + overflow-y: auto; } - .sm\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .sm\:overflow-x-hidden { + overflow-x: hidden; } - .sm\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .sm\:overflow-y-hidden { + overflow-y: hidden; } - .sm\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .sm\:overflow-x-visible { + overflow-x: visible; } - .sm\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .sm\:overflow-y-visible { + overflow-y: visible; } - .sm\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .sm\:overflow-x-scroll { + overflow-x: scroll; } - .sm\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .sm\:overflow-y-scroll { + overflow-y: scroll; } - .sm\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .sm\:overscroll-auto { + overscroll-behavior: auto; } - .sm\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .sm\:overscroll-contain { + overscroll-behavior: contain; } - .sm\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .sm\:overscroll-none { + overscroll-behavior: none; } - .sm\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .sm\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .sm\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .sm\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .sm\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .sm\:overscroll-y-none { + overscroll-behavior-y: none; } - .sm\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .sm\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .sm\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .sm\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .sm\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .sm\:overscroll-x-none { + overscroll-behavior-x: none; } - .sm\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .sm\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .sm\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .sm\:overflow-ellipsis { + text-overflow: ellipsis; } - .sm\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .sm\:overflow-clip { + text-overflow: clip; } - .sm\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .sm\:whitespace-normal { + white-space: normal; } - .sm\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .sm\:whitespace-nowrap { + white-space: nowrap; } - .sm\:my-auto { - margin-top: auto; - margin-bottom: auto; + .sm\:whitespace-pre { + white-space: pre; } - .sm\:mx-auto { - margin-left: auto; - margin-right: auto; + .sm\:whitespace-pre-line { + white-space: pre-line; } - .sm\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .sm\:whitespace-pre-wrap { + white-space: pre-wrap; } - .sm\:mx-px { - margin-left: 1px; - margin-right: 1px; + .sm\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .sm\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .sm\:break-words { + overflow-wrap: break-word; } - .sm\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .sm\:break-all { + word-break: break-all; } - .sm\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .sm\:rounded-none { + border-radius: 0px; } - .sm\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .sm\:rounded-sm { + border-radius: 0.125rem; } - .sm\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .sm\:rounded { + border-radius: 0.25rem; } - .sm\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .sm\:rounded-md { + border-radius: 0.375rem; } - .sm\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .sm\:rounded-lg { + border-radius: 0.5rem; } - .sm\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .sm\:rounded-xl { + border-radius: 0.75rem; } - .sm\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .sm\:rounded-2xl { + border-radius: 1rem; } - .sm\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .sm\:rounded-3xl { + border-radius: 1.5rem; } - .sm\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .sm\:rounded-full { + border-radius: 9999px; } - .sm\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .sm\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .sm\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .sm\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .sm\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .sm\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .sm\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .sm\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .sm\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .sm\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .sm\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .sm\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .sm\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .sm\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .sm\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .sm\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .sm\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .sm\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .sm\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .sm\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .sm\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .sm\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .sm\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .sm\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .sm\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .sm\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .sm\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .sm\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .sm\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .sm\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .sm\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .sm\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .sm\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .sm\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .sm\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .sm\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .sm\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .sm\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .sm\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .sm\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .sm\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .sm\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .sm\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .sm\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .sm\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .sm\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .sm\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .sm\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .sm\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .sm\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .sm\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .sm\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .sm\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .sm\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .sm\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .sm\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .sm\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .sm\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .sm\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .sm\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .sm\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .sm\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .sm\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .sm\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .sm\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .sm\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .sm\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .sm\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .sm\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .sm\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .sm\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .sm\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .sm\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .sm\:rounded-tl-none { + border-top-left-radius: 0px; } - .sm\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .sm\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .sm\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .sm\:rounded-tl { + border-top-left-radius: 0.25rem; } - .sm\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .sm\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .sm\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .sm\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .sm\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .sm\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .sm\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .sm\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .sm\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .sm\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .sm\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .sm\:rounded-tl-full { + border-top-left-radius: 9999px; } - .sm\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .sm\:rounded-tr-none { + border-top-right-radius: 0px; } - .sm\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .sm\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .sm\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .sm\:rounded-tr { + border-top-right-radius: 0.25rem; } - .sm\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .sm\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .sm\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .sm\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .sm\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .sm\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .sm\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .sm\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .sm\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .sm\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .sm\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .sm\:rounded-tr-full { + border-top-right-radius: 9999px; } - .sm\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .sm\:rounded-br-none { + border-bottom-right-radius: 0px; } - .sm\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .sm\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .sm\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .sm\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .sm\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .sm\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .sm\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .sm\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .sm\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .sm\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .sm\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .sm\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .sm\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .sm\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .sm\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .sm\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .sm\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .sm\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .sm\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .sm\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .sm\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .sm\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .sm\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .sm\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .sm\:mt-0 { - margin-top: 0px; + .sm\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .sm\:mr-0 { - margin-right: 0px; + .sm\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .sm\:mb-0 { - margin-bottom: 0px; + .sm\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .sm\:ml-0 { - margin-left: 0px; + .sm\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .sm\:mt-1 { - margin-top: 0.25rem; + .sm\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .sm\:mr-1 { - margin-right: 0.25rem; + .sm\:border-0 { + border-width: 0px; } - .sm\:mb-1 { - margin-bottom: 0.25rem; + .sm\:border-2 { + border-width: 2px; } - .sm\:ml-1 { - margin-left: 0.25rem; + .sm\:border-4 { + border-width: 4px; } - .sm\:mt-2 { - margin-top: 0.5rem; + .sm\:border-8 { + border-width: 8px; } - .sm\:mr-2 { - margin-right: 0.5rem; + .sm\:border { + border-width: 1px; } - .sm\:mb-2 { - margin-bottom: 0.5rem; + .sm\:border-t-0 { + border-top-width: 0px; } - .sm\:ml-2 { - margin-left: 0.5rem; + .sm\:border-t-2 { + border-top-width: 2px; } - .sm\:mt-3 { - margin-top: 0.75rem; + .sm\:border-t-4 { + border-top-width: 4px; } - .sm\:mr-3 { - margin-right: 0.75rem; + .sm\:border-t-8 { + border-top-width: 8px; } - .sm\:mb-3 { - margin-bottom: 0.75rem; + .sm\:border-t { + border-top-width: 1px; } - .sm\:ml-3 { - margin-left: 0.75rem; + .sm\:border-r-0 { + border-right-width: 0px; } - .sm\:mt-4 { - margin-top: 1rem; + .sm\:border-r-2 { + border-right-width: 2px; } - .sm\:mr-4 { - margin-right: 1rem; + .sm\:border-r-4 { + border-right-width: 4px; } - .sm\:mb-4 { - margin-bottom: 1rem; + .sm\:border-r-8 { + border-right-width: 8px; } - .sm\:ml-4 { - margin-left: 1rem; + .sm\:border-r { + border-right-width: 1px; } - .sm\:mt-5 { - margin-top: 1.25rem; + .sm\:border-b-0 { + border-bottom-width: 0px; } - .sm\:mr-5 { - margin-right: 1.25rem; + .sm\:border-b-2 { + border-bottom-width: 2px; } - .sm\:mb-5 { - margin-bottom: 1.25rem; + .sm\:border-b-4 { + border-bottom-width: 4px; } - .sm\:ml-5 { - margin-left: 1.25rem; + .sm\:border-b-8 { + border-bottom-width: 8px; } - .sm\:mt-6 { - margin-top: 1.5rem; + .sm\:border-b { + border-bottom-width: 1px; } - .sm\:mr-6 { - margin-right: 1.5rem; + .sm\:border-l-0 { + border-left-width: 0px; } - .sm\:mb-6 { - margin-bottom: 1.5rem; + .sm\:border-l-2 { + border-left-width: 2px; } - .sm\:ml-6 { - margin-left: 1.5rem; + .sm\:border-l-4 { + border-left-width: 4px; } - .sm\:mt-7 { - margin-top: 1.75rem; + .sm\:border-l-8 { + border-left-width: 8px; } - .sm\:mr-7 { - margin-right: 1.75rem; + .sm\:border-l { + border-left-width: 1px; } - .sm\:mb-7 { - margin-bottom: 1.75rem; + .sm\:border-solid { + border-style: solid; } - .sm\:ml-7 { - margin-left: 1.75rem; + .sm\:border-dashed { + border-style: dashed; } - .sm\:mt-8 { - margin-top: 2rem; + .sm\:border-dotted { + border-style: dotted; } - .sm\:mr-8 { - margin-right: 2rem; + .sm\:border-double { + border-style: double; } - .sm\:mb-8 { - margin-bottom: 2rem; + .sm\:border-none { + border-style: none; } - .sm\:ml-8 { - margin-left: 2rem; + .sm\:border-transparent { + border-color: transparent; } - .sm\:mt-9 { - margin-top: 2.25rem; + .sm\:border-current { + border-color: currentColor; } - .sm\:mr-9 { - margin-right: 2.25rem; + .sm\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .sm\:mb-9 { - margin-bottom: 2.25rem; + .sm\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .sm\:ml-9 { - margin-left: 2.25rem; + .sm\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .sm\:mt-10 { - margin-top: 2.5rem; + .sm\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .sm\:mr-10 { - margin-right: 2.5rem; + .sm\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .sm\:mb-10 { - margin-bottom: 2.5rem; + .sm\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .sm\:ml-10 { - margin-left: 2.5rem; + .sm\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .sm\:mt-11 { - margin-top: 2.75rem; + .sm\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .sm\:mr-11 { - margin-right: 2.75rem; + .sm\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .sm\:mb-11 { - margin-bottom: 2.75rem; + .sm\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .sm\:ml-11 { - margin-left: 2.75rem; + .sm\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .sm\:mt-12 { - margin-top: 3rem; + .sm\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .sm\:mr-12 { - margin-right: 3rem; + .sm\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .sm\:mb-12 { - margin-bottom: 3rem; + .sm\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .sm\:ml-12 { - margin-left: 3rem; + .sm\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .sm\:mt-14 { - margin-top: 3.5rem; + .sm\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .sm\:mr-14 { - margin-right: 3.5rem; + .sm\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .sm\:mb-14 { - margin-bottom: 3.5rem; + .sm\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .sm\:ml-14 { - margin-left: 3.5rem; + .sm\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .sm\:mt-16 { - margin-top: 4rem; + .sm\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .sm\:mr-16 { - margin-right: 4rem; + .sm\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .sm\:mb-16 { - margin-bottom: 4rem; + .sm\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .sm\:ml-16 { - margin-left: 4rem; + .sm\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .sm\:mt-20 { - margin-top: 5rem; + .sm\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .sm\:mr-20 { - margin-right: 5rem; + .sm\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .sm\:mb-20 { - margin-bottom: 5rem; + .sm\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .sm\:ml-20 { - margin-left: 5rem; + .sm\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .sm\:mt-24 { - margin-top: 6rem; + .sm\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .sm\:mr-24 { - margin-right: 6rem; + .sm\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .sm\:mb-24 { - margin-bottom: 6rem; + .sm\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .sm\:ml-24 { - margin-left: 6rem; + .sm\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .sm\:mt-28 { - margin-top: 7rem; + .sm\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .sm\:mr-28 { - margin-right: 7rem; + .sm\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .sm\:mb-28 { - margin-bottom: 7rem; + .sm\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .sm\:ml-28 { - margin-left: 7rem; + .sm\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .sm\:mt-32 { - margin-top: 8rem; + .sm\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .sm\:mr-32 { - margin-right: 8rem; + .sm\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .sm\:mb-32 { - margin-bottom: 8rem; + .sm\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .sm\:ml-32 { - margin-left: 8rem; + .sm\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .sm\:mt-36 { - margin-top: 9rem; + .sm\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .sm\:mr-36 { - margin-right: 9rem; + .sm\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .sm\:mb-36 { - margin-bottom: 9rem; + .sm\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .sm\:ml-36 { - margin-left: 9rem; + .sm\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .sm\:mt-40 { - margin-top: 10rem; + .sm\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .sm\:mr-40 { - margin-right: 10rem; + .sm\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .sm\:mb-40 { - margin-bottom: 10rem; + .sm\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .sm\:ml-40 { - margin-left: 10rem; + .sm\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .sm\:mt-44 { - margin-top: 11rem; + .sm\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .sm\:mr-44 { - margin-right: 11rem; + .sm\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .sm\:mb-44 { - margin-bottom: 11rem; + .sm\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .sm\:ml-44 { - margin-left: 11rem; + .sm\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .sm\:mt-48 { - margin-top: 12rem; + .sm\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .sm\:mr-48 { - margin-right: 12rem; + .sm\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .sm\:mb-48 { - margin-bottom: 12rem; + .sm\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .sm\:ml-48 { - margin-left: 12rem; + .sm\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .sm\:mt-52 { - margin-top: 13rem; + .sm\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .sm\:mr-52 { - margin-right: 13rem; + .sm\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .sm\:mb-52 { - margin-bottom: 13rem; + .sm\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .sm\:ml-52 { - margin-left: 13rem; + .sm\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .sm\:mt-56 { - margin-top: 14rem; + .sm\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .sm\:mr-56 { - margin-right: 14rem; + .sm\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .sm\:mb-56 { - margin-bottom: 14rem; + .sm\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .sm\:ml-56 { - margin-left: 14rem; + .sm\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .sm\:mt-60 { - margin-top: 15rem; + .sm\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .sm\:mr-60 { - margin-right: 15rem; + .sm\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .sm\:mb-60 { - margin-bottom: 15rem; + .sm\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .sm\:ml-60 { - margin-left: 15rem; + .sm\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .sm\:mt-64 { - margin-top: 16rem; + .sm\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .sm\:mr-64 { - margin-right: 16rem; + .sm\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .sm\:mb-64 { - margin-bottom: 16rem; + .sm\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .sm\:ml-64 { - margin-left: 16rem; + .sm\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .sm\:mt-72 { - margin-top: 18rem; + .sm\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .sm\:mr-72 { - margin-right: 18rem; + .sm\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .sm\:mb-72 { - margin-bottom: 18rem; + .sm\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .sm\:ml-72 { - margin-left: 18rem; + .sm\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .sm\:mt-80 { - margin-top: 20rem; + .sm\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + } + + .sm\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .sm\:mr-80 { - margin-right: 20rem; + .sm\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .sm\:mb-80 { - margin-bottom: 20rem; + .sm\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .sm\:ml-80 { - margin-left: 20rem; + .sm\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .sm\:mt-96 { - margin-top: 24rem; + .sm\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .sm\:mr-96 { - margin-right: 24rem; + .sm\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .sm\:mb-96 { - margin-bottom: 24rem; + .group:hover .sm\:group-hover\:border-transparent { + border-color: transparent; } - .sm\:ml-96 { - margin-left: 24rem; + .group:hover .sm\:group-hover\:border-current { + border-color: currentColor; } - .sm\:mt-auto { - margin-top: auto; + .group:hover .sm\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .sm\:mr-auto { - margin-right: auto; + .group:hover .sm\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .sm\:mb-auto { - margin-bottom: auto; + .group:hover .sm\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .sm\:ml-auto { - margin-left: auto; + .group:hover .sm\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .sm\:mt-px { - margin-top: 1px; + .group:hover .sm\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .sm\:mr-px { - margin-right: 1px; + .group:hover .sm\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .sm\:mb-px { - margin-bottom: 1px; + .group:hover .sm\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .sm\:ml-px { - margin-left: 1px; + .group:hover .sm\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .sm\:mt-0\.5 { - margin-top: 0.125rem; + .group:hover .sm\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .sm\:mr-0\.5 { - margin-right: 0.125rem; + .group:hover .sm\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .sm\:mb-0\.5 { - margin-bottom: 0.125rem; + .group:hover .sm\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .sm\:ml-0\.5 { - margin-left: 0.125rem; + .group:hover .sm\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .sm\:mt-1\.5 { - margin-top: 0.375rem; + .group:hover .sm\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .sm\:mr-1\.5 { - margin-right: 0.375rem; + .group:hover .sm\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .sm\:mb-1\.5 { - margin-bottom: 0.375rem; + .group:hover .sm\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .sm\:ml-1\.5 { - margin-left: 0.375rem; + .group:hover .sm\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .sm\:mt-2\.5 { - margin-top: 0.625rem; + .group:hover .sm\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .sm\:mr-2\.5 { - margin-right: 0.625rem; + .group:hover .sm\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .sm\:mb-2\.5 { - margin-bottom: 0.625rem; + .group:hover .sm\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .sm\:ml-2\.5 { - margin-left: 0.625rem; + .group:hover .sm\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .sm\:mt-3\.5 { - margin-top: 0.875rem; + .group:hover .sm\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .sm\:mr-3\.5 { - margin-right: 0.875rem; + .group:hover .sm\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .sm\:mb-3\.5 { - margin-bottom: 0.875rem; + .group:hover .sm\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .sm\:ml-3\.5 { - margin-left: 0.875rem; + .group:hover .sm\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .sm\:-mt-0 { - margin-top: 0px; + .group:hover .sm\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .sm\:-mr-0 { - margin-right: 0px; + .group:hover .sm\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .sm\:-mb-0 { - margin-bottom: 0px; + .group:hover .sm\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .sm\:-ml-0 { - margin-left: 0px; + .group:hover .sm\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .sm\:-mt-1 { - margin-top: -0.25rem; + .group:hover .sm\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .sm\:-mr-1 { - margin-right: -0.25rem; + .group:hover .sm\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .sm\:-mb-1 { - margin-bottom: -0.25rem; + .group:hover .sm\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .sm\:-ml-1 { - margin-left: -0.25rem; + .group:hover .sm\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .sm\:-mt-2 { - margin-top: -0.5rem; + .group:hover .sm\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .sm\:-mr-2 { - margin-right: -0.5rem; + .group:hover .sm\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .sm\:-mb-2 { - margin-bottom: -0.5rem; + .group:hover .sm\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .sm\:-ml-2 { - margin-left: -0.5rem; + .group:hover .sm\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .sm\:-mt-3 { - margin-top: -0.75rem; + .group:hover .sm\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .sm\:-mr-3 { - margin-right: -0.75rem; + .group:hover .sm\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .sm\:-mb-3 { - margin-bottom: -0.75rem; + .group:hover .sm\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .sm\:-ml-3 { - margin-left: -0.75rem; + .group:hover .sm\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .sm\:-mt-4 { - margin-top: -1rem; + .group:hover .sm\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .sm\:-mr-4 { - margin-right: -1rem; + .group:hover .sm\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .sm\:-mb-4 { - margin-bottom: -1rem; + .group:hover .sm\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .sm\:-ml-4 { - margin-left: -1rem; + .group:hover .sm\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .sm\:-mt-5 { - margin-top: -1.25rem; + .group:hover .sm\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .sm\:-mr-5 { - margin-right: -1.25rem; + .group:hover .sm\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .sm\:-mb-5 { - margin-bottom: -1.25rem; + .group:hover .sm\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .sm\:-ml-5 { - margin-left: -1.25rem; + .group:hover .sm\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .sm\:-mt-6 { - margin-top: -1.5rem; + .group:hover .sm\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .sm\:-mr-6 { - margin-right: -1.5rem; + .group:hover .sm\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .sm\:-mb-6 { - margin-bottom: -1.5rem; + .group:hover .sm\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .sm\:-ml-6 { - margin-left: -1.5rem; + .group:hover .sm\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .sm\:-mt-7 { - margin-top: -1.75rem; + .group:hover .sm\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .sm\:-mr-7 { - margin-right: -1.75rem; + .group:hover .sm\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .sm\:-mb-7 { - margin-bottom: -1.75rem; + .group:hover .sm\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .sm\:-ml-7 { - margin-left: -1.75rem; + .group:hover .sm\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .sm\:-mt-8 { - margin-top: -2rem; + .group:hover .sm\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .sm\:-mr-8 { - margin-right: -2rem; + .group:hover .sm\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .sm\:-mb-8 { - margin-bottom: -2rem; + .group:hover .sm\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .sm\:-ml-8 { - margin-left: -2rem; + .group:hover .sm\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .sm\:-mt-9 { - margin-top: -2.25rem; + .group:hover .sm\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .sm\:-mr-9 { - margin-right: -2.25rem; + .group:hover .sm\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .sm\:-mb-9 { - margin-bottom: -2.25rem; + .group:hover .sm\:group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .sm\:-ml-9 { - margin-left: -2.25rem; + .group:hover .sm\:group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .sm\:-mt-10 { - margin-top: -2.5rem; + .group:hover .sm\:group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .sm\:-mr-10 { - margin-right: -2.5rem; + .group:hover .sm\:group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .sm\:-mb-10 { - margin-bottom: -2.5rem; + .group:hover .sm\:group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .sm\:-ml-10 { - margin-left: -2.5rem; + .group:hover .sm\:group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .sm\:-mt-11 { - margin-top: -2.75rem; + .group:hover .sm\:group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .sm\:-mr-11 { - margin-right: -2.75rem; + .group:hover .sm\:group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .sm\:-mb-11 { - margin-bottom: -2.75rem; + .group:hover .sm\:group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .sm\:-ml-11 { - margin-left: -2.75rem; + .group:hover .sm\:group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .sm\:-mt-12 { - margin-top: -3rem; + .group:hover .sm\:group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .sm\:-mr-12 { - margin-right: -3rem; + .group:hover .sm\:group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .sm\:-mb-12 { - margin-bottom: -3rem; + .group:hover .sm\:group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .sm\:-ml-12 { - margin-left: -3rem; + .group:hover .sm\:group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .sm\:-mt-14 { - margin-top: -3.5rem; + .group:hover .sm\:group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .sm\:-mr-14 { - margin-right: -3.5rem; + .group:hover .sm\:group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .sm\:-mb-14 { - margin-bottom: -3.5rem; + .group:hover .sm\:group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .sm\:-ml-14 { - margin-left: -3.5rem; + .group:hover .sm\:group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .sm\:-mt-16 { - margin-top: -4rem; + .group:hover .sm\:group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .sm\:-mr-16 { - margin-right: -4rem; + .group:hover .sm\:group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .sm\:-mb-16 { - margin-bottom: -4rem; + .sm\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .sm\:-ml-16 { - margin-left: -4rem; + .sm\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .sm\:-mt-20 { - margin-top: -5rem; + .sm\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .sm\:-mr-20 { - margin-right: -5rem; + .sm\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .sm\:-mb-20 { - margin-bottom: -5rem; + .sm\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .sm\:-ml-20 { - margin-left: -5rem; + .sm\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .sm\:-mt-24 { - margin-top: -6rem; + .sm\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .sm\:-mr-24 { - margin-right: -6rem; + .sm\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .sm\:-mb-24 { - margin-bottom: -6rem; + .sm\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .sm\:-ml-24 { - margin-left: -6rem; + .sm\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .sm\:-mt-28 { - margin-top: -7rem; + .sm\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .sm\:-mr-28 { - margin-right: -7rem; + .sm\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .sm\:-mb-28 { - margin-bottom: -7rem; + .sm\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .sm\:-ml-28 { - margin-left: -7rem; + .sm\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .sm\:-mt-32 { - margin-top: -8rem; + .sm\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .sm\:-mr-32 { - margin-right: -8rem; + .sm\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .sm\:-mb-32 { - margin-bottom: -8rem; + .sm\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .sm\:-ml-32 { - margin-left: -8rem; + .sm\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .sm\:-mt-36 { - margin-top: -9rem; + .sm\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .sm\:-mr-36 { - margin-right: -9rem; + .sm\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .sm\:-mb-36 { - margin-bottom: -9rem; + .sm\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .sm\:-ml-36 { - margin-left: -9rem; + .sm\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .sm\:-mt-40 { - margin-top: -10rem; + .sm\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .sm\:-mr-40 { - margin-right: -10rem; + .sm\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .sm\:-mb-40 { - margin-bottom: -10rem; + .sm\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .sm\:-ml-40 { - margin-left: -10rem; + .sm\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .sm\:-mt-44 { - margin-top: -11rem; + .sm\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .sm\:-mr-44 { - margin-right: -11rem; + .sm\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .sm\:-mb-44 { - margin-bottom: -11rem; + .sm\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .sm\:-ml-44 { - margin-left: -11rem; + .sm\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .sm\:-mt-48 { - margin-top: -12rem; + .sm\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .sm\:-mr-48 { - margin-right: -12rem; + .sm\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .sm\:-mb-48 { - margin-bottom: -12rem; + .sm\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .sm\:-ml-48 { - margin-left: -12rem; + .sm\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .sm\:-mt-52 { - margin-top: -13rem; + .sm\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .sm\:-mr-52 { - margin-right: -13rem; + .sm\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .sm\:-mb-52 { - margin-bottom: -13rem; + .sm\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .sm\:-ml-52 { - margin-left: -13rem; + .sm\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .sm\:-mt-56 { - margin-top: -14rem; + .sm\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .sm\:-mr-56 { - margin-right: -14rem; + .sm\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .sm\:-mb-56 { - margin-bottom: -14rem; + .sm\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .sm\:-ml-56 { - margin-left: -14rem; + .sm\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .sm\:-mt-60 { - margin-top: -15rem; + .sm\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .sm\:-mr-60 { - margin-right: -15rem; + .sm\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .sm\:-mb-60 { - margin-bottom: -15rem; + .sm\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .sm\:-ml-60 { - margin-left: -15rem; + .sm\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .sm\:-mt-64 { - margin-top: -16rem; + .sm\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .sm\:-mr-64 { - margin-right: -16rem; + .sm\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .sm\:-mb-64 { - margin-bottom: -16rem; + .sm\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .sm\:-ml-64 { - margin-left: -16rem; + .sm\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .sm\:-mt-72 { - margin-top: -18rem; + .sm\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .sm\:-mr-72 { - margin-right: -18rem; + .sm\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .sm\:-mb-72 { - margin-bottom: -18rem; + .sm\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .sm\:-ml-72 { - margin-left: -18rem; + .sm\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .sm\:-mt-80 { - margin-top: -20rem; + .sm\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .sm\:-mr-80 { - margin-right: -20rem; + .sm\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .sm\:-mb-80 { - margin-bottom: -20rem; + .sm\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .sm\:-ml-80 { - margin-left: -20rem; + .sm\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .sm\:-mt-96 { - margin-top: -24rem; + .sm\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .sm\:-mr-96 { - margin-right: -24rem; + .sm\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .sm\:-mb-96 { - margin-bottom: -24rem; + .sm\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .sm\:-ml-96 { - margin-left: -24rem; + .sm\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .sm\:-mt-px { - margin-top: -1px; + .sm\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .sm\:-mr-px { - margin-right: -1px; + .sm\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .sm\:-mb-px { - margin-bottom: -1px; + .sm\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .sm\:-ml-px { - margin-left: -1px; + .sm\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .sm\:-mt-0\.5 { - margin-top: -0.125rem; + .sm\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .sm\:-mr-0\.5 { - margin-right: -0.125rem; + .sm\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .sm\:-mb-0\.5 { - margin-bottom: -0.125rem; + .sm\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .sm\:-ml-0\.5 { - margin-left: -0.125rem; + .sm\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .sm\:-mt-1\.5 { - margin-top: -0.375rem; + .sm\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .sm\:-mr-1\.5 { - margin-right: -0.375rem; + .sm\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .sm\:-mb-1\.5 { - margin-bottom: -0.375rem; + .sm\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .sm\:-ml-1\.5 { - margin-left: -0.375rem; + .sm\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .sm\:-mt-2\.5 { - margin-top: -0.625rem; + .sm\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .sm\:-mr-2\.5 { - margin-right: -0.625rem; + .sm\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .sm\:-mb-2\.5 { - margin-bottom: -0.625rem; + .sm\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .sm\:-ml-2\.5 { - margin-left: -0.625rem; + .sm\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .sm\:-mt-3\.5 { - margin-top: -0.875rem; + .sm\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .sm\:-mr-3\.5 { - margin-right: -0.875rem; + .sm\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .sm\:-mb-3\.5 { - margin-bottom: -0.875rem; + .sm\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .sm\:-ml-3\.5 { - margin-left: -0.875rem; + .sm\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .sm\:max-h-0 { - max-height: 0px; + .sm\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .sm\:max-h-1 { - max-height: 0.25rem; + .sm\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .sm\:max-h-2 { - max-height: 0.5rem; + .sm\:hover\:border-transparent:hover { + border-color: transparent; } - .sm\:max-h-3 { - max-height: 0.75rem; + .sm\:hover\:border-current:hover { + border-color: currentColor; } - .sm\:max-h-4 { - max-height: 1rem; + .sm\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .sm\:max-h-5 { - max-height: 1.25rem; + .sm\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .sm\:max-h-6 { - max-height: 1.5rem; + .sm\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .sm\:max-h-7 { - max-height: 1.75rem; + .sm\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .sm\:max-h-8 { - max-height: 2rem; + .sm\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .sm\:max-h-9 { - max-height: 2.25rem; + .sm\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .sm\:max-h-10 { - max-height: 2.5rem; + .sm\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .sm\:max-h-11 { - max-height: 2.75rem; + .sm\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .sm\:max-h-12 { - max-height: 3rem; + .sm\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .sm\:max-h-14 { - max-height: 3.5rem; + .sm\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .sm\:max-h-16 { - max-height: 4rem; + .sm\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .sm\:max-h-20 { - max-height: 5rem; + .sm\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .sm\:max-h-24 { - max-height: 6rem; + .sm\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .sm\:max-h-28 { - max-height: 7rem; + .sm\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .sm\:max-h-32 { - max-height: 8rem; + .sm\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .sm\:max-h-36 { - max-height: 9rem; + .sm\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .sm\:max-h-40 { - max-height: 10rem; + .sm\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .sm\:max-h-44 { - max-height: 11rem; + .sm\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .sm\:max-h-48 { - max-height: 12rem; + .sm\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .sm\:max-h-52 { - max-height: 13rem; + .sm\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .sm\:max-h-56 { - max-height: 14rem; + .sm\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .sm\:max-h-60 { - max-height: 15rem; + .sm\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .sm\:max-h-64 { - max-height: 16rem; + .sm\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .sm\:max-h-72 { - max-height: 18rem; + .sm\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .sm\:max-h-80 { - max-height: 20rem; + .sm\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .sm\:max-h-96 { - max-height: 24rem; + .sm\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .sm\:max-h-px { - max-height: 1px; + .sm\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .sm\:max-h-0\.5 { - max-height: 0.125rem; + .sm\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .sm\:max-h-1\.5 { - max-height: 0.375rem; + .sm\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .sm\:max-h-2\.5 { - max-height: 0.625rem; + .sm\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .sm\:max-h-3\.5 { - max-height: 0.875rem; + .sm\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .sm\:max-h-full { - max-height: 100%; + .sm\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .sm\:max-h-screen { - max-height: 100vh; + .sm\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .sm\:max-w-0 { - max-width: 0rem; + .sm\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .sm\:max-w-none { - max-width: none; + .sm\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .sm\:max-w-xs { - max-width: 20rem; + .sm\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .sm\:max-w-sm { - max-width: 24rem; + .sm\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .sm\:max-w-md { - max-width: 28rem; + .sm\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .sm\:max-w-lg { - max-width: 32rem; + .sm\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .sm\:max-w-xl { - max-width: 36rem; + .sm\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .sm\:max-w-2xl { - max-width: 42rem; + .sm\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .sm\:max-w-3xl { - max-width: 48rem; + .sm\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .sm\:max-w-4xl { - max-width: 56rem; + .sm\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .sm\:max-w-5xl { - max-width: 64rem; + .sm\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .sm\:max-w-6xl { - max-width: 72rem; + .sm\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .sm\:max-w-7xl { - max-width: 80rem; + .sm\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .sm\:max-w-full { - max-width: 100%; + .sm\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .sm\:max-w-min { - max-width: min-content; + .sm\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .sm\:max-w-max { - max-width: max-content; + .sm\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .sm\:max-w-prose { - max-width: 65ch; + .sm\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .sm\:max-w-screen-sm { - max-width: 640px; + .sm\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .sm\:max-w-screen-md { - max-width: 768px; + .sm\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .sm\:max-w-screen-lg { - max-width: 1024px; + .sm\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .sm\:max-w-screen-xl { - max-width: 1280px; + .sm\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .sm\:max-w-screen-2xl { - max-width: 1536px; + .sm\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .sm\:min-h-0 { - min-height: 0px; + .sm\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .sm\:min-h-full { - min-height: 100%; + .sm\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .sm\:min-h-screen { - min-height: 100vh; + .sm\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .sm\:min-w-0 { - min-width: 0px; + .sm\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .sm\:min-w-full { - min-width: 100%; + .sm\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .sm\:min-w-min { - min-width: min-content; + .sm\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .sm\:min-w-max { - min-width: max-content; + .sm\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .sm\:object-contain { - object-fit: contain; + .sm\:hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .sm\:object-cover { - object-fit: cover; + .sm\:hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .sm\:object-fill { - object-fit: fill; + .sm\:hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .sm\:object-none { - object-fit: none; + .sm\:hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .sm\:object-scale-down { - object-fit: scale-down; + .sm\:hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .sm\:object-bottom { - object-position: bottom; + .sm\:hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .sm\:object-center { - object-position: center; + .sm\:hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .sm\:object-left { - object-position: left; + .sm\:hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .sm\:object-left-bottom { - object-position: left bottom; + .sm\:hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .sm\:object-left-top { - object-position: left top; + .sm\:hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .sm\:object-right { - object-position: right; + .sm\:hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .sm\:object-right-bottom { - object-position: right bottom; + .sm\:hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .sm\:object-right-top { - object-position: right top; + .sm\:hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .sm\:object-top { - object-position: top; + .sm\:hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .sm\:opacity-0 { - opacity: 0; + .sm\:hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .sm\:opacity-5 { - opacity: 0.05; + .sm\:hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .sm\:opacity-10 { - opacity: 0.1; + .sm\:hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .sm\:opacity-20 { - opacity: 0.2; + .sm\:hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .sm\:opacity-25 { - opacity: 0.25; + .sm\:hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .sm\:opacity-30 { - opacity: 0.3; + .sm\:hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .sm\:opacity-40 { - opacity: 0.4; + .sm\:focus\:border-transparent:focus { + border-color: transparent; } - .sm\:opacity-50 { - opacity: 0.5; + .sm\:focus\:border-current:focus { + border-color: currentColor; } - .sm\:opacity-60 { - opacity: 0.6; + .sm\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .sm\:opacity-70 { - opacity: 0.7; + .sm\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .sm\:opacity-75 { - opacity: 0.75; + .sm\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .sm\:opacity-80 { - opacity: 0.8; + .sm\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .sm\:opacity-90 { - opacity: 0.9; + .sm\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .sm\:opacity-95 { - opacity: 0.95; + .sm\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .sm\:opacity-100 { - opacity: 1; + .sm\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-0 { - opacity: 0; + .sm\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-5 { - opacity: 0.05; + .sm\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-10 { - opacity: 0.1; + .sm\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-20 { - opacity: 0.2; + .sm\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-25 { - opacity: 0.25; + .sm\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-30 { - opacity: 0.3; + .sm\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-40 { - opacity: 0.4; + .sm\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-50 { - opacity: 0.5; + .sm\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-60 { - opacity: 0.6; + .sm\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-70 { - opacity: 0.7; + .sm\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-75 { - opacity: 0.75; + .sm\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-80 { - opacity: 0.8; + .sm\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-90 { - opacity: 0.9; + .sm\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-95 { - opacity: 0.95; + .sm\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .group:hover .sm\:group-hover\:opacity-100 { - opacity: 1; + .sm\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-0:focus-within { - opacity: 0; + .sm\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .sm\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .sm\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .sm\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .sm\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .sm\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .sm\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .sm\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .sm\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .sm\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .sm\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .sm\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .sm\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .sm\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .sm\:focus-within\:opacity-100:focus-within { - opacity: 1; + .sm\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .sm\:hover\:opacity-0:hover { - opacity: 0; + .sm\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .sm\:hover\:opacity-5:hover { - opacity: 0.05; + .sm\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .sm\:hover\:opacity-10:hover { - opacity: 0.1; + .sm\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .sm\:hover\:opacity-20:hover { - opacity: 0.2; + .sm\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .sm\:hover\:opacity-25:hover { - opacity: 0.25; + .sm\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .sm\:hover\:opacity-30:hover { - opacity: 0.3; + .sm\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .sm\:hover\:opacity-40:hover { - opacity: 0.4; + .sm\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .sm\:hover\:opacity-50:hover { - opacity: 0.5; + .sm\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .sm\:hover\:opacity-60:hover { - opacity: 0.6; + .sm\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .sm\:hover\:opacity-70:hover { - opacity: 0.7; + .sm\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .sm\:hover\:opacity-75:hover { - opacity: 0.75; + .sm\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .sm\:hover\:opacity-80:hover { - opacity: 0.8; + .sm\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .sm\:hover\:opacity-90:hover { - opacity: 0.9; + .sm\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .sm\:hover\:opacity-95:hover { - opacity: 0.95; + .sm\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .sm\:hover\:opacity-100:hover { - opacity: 1; + .sm\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .sm\:focus\:opacity-0:focus { - opacity: 0; + .sm\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .sm\:focus\:opacity-5:focus { - opacity: 0.05; + .sm\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .sm\:focus\:opacity-10:focus { - opacity: 0.1; + .sm\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .sm\:focus\:opacity-20:focus { - opacity: 0.2; + .sm\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .sm\:focus\:opacity-25:focus { - opacity: 0.25; + .sm\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .sm\:focus\:opacity-30:focus { - opacity: 0.3; + .sm\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .sm\:focus\:opacity-40:focus { - opacity: 0.4; + .sm\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .sm\:focus\:opacity-50:focus { - opacity: 0.5; + .sm\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .sm\:focus\:opacity-60:focus { - opacity: 0.6; + .sm\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .sm\:focus\:opacity-70:focus { - opacity: 0.7; + .sm\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .sm\:focus\:opacity-75:focus { - opacity: 0.75; + .sm\:focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .sm\:focus\:opacity-80:focus { - opacity: 0.8; + .sm\:focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .sm\:focus\:opacity-90:focus { - opacity: 0.9; + .sm\:focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .sm\:focus\:opacity-95:focus { - opacity: 0.95; + .sm\:focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .sm\:focus\:opacity-100:focus { - opacity: 1; + .sm\:focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .sm\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .sm\:focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .sm\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .sm\:focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .sm\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .sm\:focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .sm\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .sm\:focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .sm\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .sm\:focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .sm\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .sm\:focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .sm\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .sm\:focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .sm\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .sm\:focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .sm\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .sm\:focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .sm\:overflow-auto { - overflow: auto; + .sm\:focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .sm\:overflow-hidden { - overflow: hidden; + .sm\:focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .sm\:overflow-visible { - overflow: visible; + .sm\:focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .sm\:overflow-scroll { - overflow: scroll; + .sm\:focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .sm\:overflow-x-auto { - overflow-x: auto; + .sm\:focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .sm\:overflow-y-auto { - overflow-y: auto; + .sm\:focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .sm\:overflow-x-hidden { - overflow-x: hidden; + .sm\:border-opacity-0 { + --tw-border-opacity: 0; } - .sm\:overflow-y-hidden { - overflow-y: hidden; + .sm\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .sm\:overflow-x-visible { - overflow-x: visible; + .sm\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .sm\:overflow-y-visible { - overflow-y: visible; + .sm\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .sm\:overflow-x-scroll { - overflow-x: scroll; + .sm\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .sm\:overflow-y-scroll { - overflow-y: scroll; + .sm\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .sm\:overscroll-auto { - overscroll-behavior: auto; + .sm\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .sm\:overscroll-contain { - overscroll-behavior: contain; + .sm\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .sm\:overscroll-none { - overscroll-behavior: none; + .sm\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .sm\:overscroll-y-auto { - overscroll-behavior-y: auto; + .sm\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .sm\:overscroll-y-contain { - overscroll-behavior-y: contain; + .sm\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .sm\:overscroll-y-none { - overscroll-behavior-y: none; + .sm\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .sm\:overscroll-x-auto { - overscroll-behavior-x: auto; + .sm\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .sm\:overscroll-x-contain { - overscroll-behavior-x: contain; + .sm\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .sm\:overscroll-x-none { - overscroll-behavior-x: none; + .sm\:border-opacity-100 { + --tw-border-opacity: 1; } - .sm\:p-0 { - padding: 0px; + .group:hover .sm\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } - .sm\:p-1 { - padding: 0.25rem; + .group:hover .sm\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .sm\:p-2 { - padding: 0.5rem; + .group:hover .sm\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .sm\:p-3 { - padding: 0.75rem; + .group:hover .sm\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .sm\:p-4 { - padding: 1rem; + .group:hover .sm\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .sm\:p-5 { - padding: 1.25rem; + .group:hover .sm\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .sm\:p-6 { - padding: 1.5rem; + .group:hover .sm\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .sm\:p-7 { - padding: 1.75rem; + .group:hover .sm\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .sm\:p-8 { - padding: 2rem; + .group:hover .sm\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .sm\:p-9 { - padding: 2.25rem; + .group:hover .sm\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .sm\:p-10 { - padding: 2.5rem; + .group:hover .sm\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .sm\:p-11 { - padding: 2.75rem; + .group:hover .sm\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .sm\:p-12 { - padding: 3rem; + .group:hover .sm\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .sm\:p-14 { - padding: 3.5rem; + .group:hover .sm\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .sm\:p-16 { - padding: 4rem; + .group:hover .sm\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } - .sm\:p-20 { - padding: 5rem; + .sm\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } - .sm\:p-24 { - padding: 6rem; + .sm\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } - .sm\:p-28 { - padding: 7rem; + .sm\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } - .sm\:p-32 { - padding: 8rem; + .sm\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } - .sm\:p-36 { - padding: 9rem; + .sm\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } - .sm\:p-40 { - padding: 10rem; + .sm\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } - .sm\:p-44 { - padding: 11rem; + .sm\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } - .sm\:p-48 { - padding: 12rem; + .sm\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } - .sm\:p-52 { - padding: 13rem; + .sm\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } - .sm\:p-56 { - padding: 14rem; + .sm\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } - .sm\:p-60 { - padding: 15rem; + .sm\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } - .sm\:p-64 { - padding: 16rem; + .sm\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } - .sm\:p-72 { - padding: 18rem; + .sm\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } - .sm\:p-80 { - padding: 20rem; + .sm\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } - .sm\:p-96 { - padding: 24rem; + .sm\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } - .sm\:p-px { - padding: 1px; + .sm\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } - .sm\:p-0\.5 { - padding: 0.125rem; + .sm\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } - .sm\:p-1\.5 { - padding: 0.375rem; + .sm\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } - .sm\:p-2\.5 { - padding: 0.625rem; + .sm\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } - .sm\:p-3\.5 { - padding: 0.875rem; + .sm\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } - .sm\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .sm\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } - .sm\:px-0 { - padding-left: 0px; - padding-right: 0px; + .sm\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } - .sm\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .sm\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } - .sm\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .sm\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } - .sm\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .sm\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } - .sm\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .sm\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } - .sm\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .sm\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } - .sm\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .sm\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } - .sm\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .sm\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } - .sm\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .sm\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } - .sm\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .sm\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } - .sm\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .sm\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } - .sm\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .sm\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } - .sm\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .sm\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } - .sm\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .sm\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } - .sm\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .sm\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } - .sm\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .sm\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } - .sm\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .sm\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } - .sm\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .sm\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } - .sm\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .sm\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } - .sm\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .sm\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } - .sm\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .sm\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } - .sm\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .sm\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } - .sm\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .sm\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } - .sm\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .sm\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } - .sm\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .sm\:bg-transparent { + background-color: transparent; } - .sm\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .sm\:bg-current { + background-color: currentColor; } - .sm\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .sm\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .sm\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .sm\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .sm\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .sm\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .sm\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .sm\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .sm\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .sm\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .sm\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .sm\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .sm\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .sm\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .sm\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .sm\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .sm\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .sm\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .sm\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .sm\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .sm\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .sm\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .sm\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .sm\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .sm\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .sm\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .sm\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .sm\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .sm\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .sm\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .sm\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .sm\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .sm\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .sm\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .sm\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .sm\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .sm\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .sm\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .sm\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .sm\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .sm\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .sm\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .sm\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .sm\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .sm\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .sm\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .sm\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .sm\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .sm\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .sm\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .sm\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .sm\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .sm\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .sm\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .sm\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .sm\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .sm\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .sm\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .sm\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .sm\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .sm\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .sm\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .sm\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .sm\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .sm\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .sm\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .sm\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .sm\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .sm\:px-px { - padding-left: 1px; - padding-right: 1px; + .sm\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .sm\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .sm\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .sm\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .sm\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .sm\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .sm\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .sm\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .sm\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .sm\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .sm\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .sm\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .sm\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .sm\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .sm\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .sm\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .sm\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .sm\:pt-0 { - padding-top: 0px; + .sm\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .sm\:pr-0 { - padding-right: 0px; + .sm\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .sm\:pb-0 { - padding-bottom: 0px; + .sm\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .sm\:pl-0 { - padding-left: 0px; + .sm\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .sm\:pt-1 { - padding-top: 0.25rem; + .sm\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .sm\:pr-1 { - padding-right: 0.25rem; + .sm\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .sm\:pb-1 { - padding-bottom: 0.25rem; + .sm\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .sm\:pl-1 { - padding-left: 0.25rem; + .sm\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .sm\:pt-2 { - padding-top: 0.5rem; + .sm\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .sm\:pr-2 { - padding-right: 0.5rem; + .sm\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .sm\:pb-2 { - padding-bottom: 0.5rem; + .sm\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .sm\:pl-2 { - padding-left: 0.5rem; + .sm\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .sm\:pt-3 { - padding-top: 0.75rem; + .sm\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .sm\:pr-3 { - padding-right: 0.75rem; + .sm\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .sm\:pb-3 { - padding-bottom: 0.75rem; + .sm\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .sm\:pl-3 { - padding-left: 0.75rem; + .sm\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .sm\:pt-4 { - padding-top: 1rem; + .sm\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .sm\:pr-4 { - padding-right: 1rem; + .sm\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .sm\:pb-4 { - padding-bottom: 1rem; + .sm\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .sm\:pl-4 { - padding-left: 1rem; + .sm\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .sm\:pt-5 { - padding-top: 1.25rem; + .sm\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .sm\:pr-5 { - padding-right: 1.25rem; + .sm\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .sm\:pb-5 { - padding-bottom: 1.25rem; + .sm\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .sm\:pl-5 { - padding-left: 1.25rem; + .sm\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .sm\:pt-6 { - padding-top: 1.5rem; + .sm\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .sm\:pr-6 { - padding-right: 1.5rem; + .sm\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .sm\:pb-6 { - padding-bottom: 1.5rem; + .sm\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .sm\:pl-6 { - padding-left: 1.5rem; + .sm\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .sm\:pt-7 { - padding-top: 1.75rem; + .sm\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .sm\:pr-7 { - padding-right: 1.75rem; + .sm\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .sm\:pb-7 { - padding-bottom: 1.75rem; + .sm\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .sm\:pl-7 { - padding-left: 1.75rem; + .sm\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .sm\:pt-8 { - padding-top: 2rem; + .sm\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .sm\:pr-8 { - padding-right: 2rem; + .sm\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .sm\:pb-8 { - padding-bottom: 2rem; + .sm\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .sm\:pl-8 { - padding-left: 2rem; + .sm\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .sm\:pt-9 { - padding-top: 2.25rem; + .sm\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .sm\:pr-9 { - padding-right: 2.25rem; + .sm\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .sm\:pb-9 { - padding-bottom: 2.25rem; + .sm\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .sm\:pl-9 { - padding-left: 2.25rem; + .group:hover .sm\:group-hover\:bg-transparent { + background-color: transparent; } - .sm\:pt-10 { - padding-top: 2.5rem; + .group:hover .sm\:group-hover\:bg-current { + background-color: currentColor; } - .sm\:pr-10 { - padding-right: 2.5rem; + .group:hover .sm\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .sm\:pb-10 { - padding-bottom: 2.5rem; + .group:hover .sm\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .sm\:pl-10 { - padding-left: 2.5rem; + .group:hover .sm\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .sm\:pt-11 { - padding-top: 2.75rem; + .group:hover .sm\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .sm\:pr-11 { - padding-right: 2.75rem; + .group:hover .sm\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .sm\:pb-11 { - padding-bottom: 2.75rem; + .group:hover .sm\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .sm\:pl-11 { - padding-left: 2.75rem; + .group:hover .sm\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .sm\:pt-12 { - padding-top: 3rem; + .group:hover .sm\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .sm\:pr-12 { - padding-right: 3rem; + .group:hover .sm\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .sm\:pb-12 { - padding-bottom: 3rem; + .group:hover .sm\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .sm\:pl-12 { - padding-left: 3rem; + .group:hover .sm\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .sm\:pt-14 { - padding-top: 3.5rem; + .group:hover .sm\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .sm\:pr-14 { - padding-right: 3.5rem; + .group:hover .sm\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .sm\:pb-14 { - padding-bottom: 3.5rem; + .group:hover .sm\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .sm\:pl-14 { - padding-left: 3.5rem; + .group:hover .sm\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .sm\:pt-16 { - padding-top: 4rem; + .group:hover .sm\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .sm\:pr-16 { - padding-right: 4rem; + .group:hover .sm\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .sm\:pb-16 { - padding-bottom: 4rem; + .group:hover .sm\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .sm\:pl-16 { - padding-left: 4rem; + .group:hover .sm\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .sm\:pt-20 { - padding-top: 5rem; + .group:hover .sm\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .sm\:pr-20 { - padding-right: 5rem; + .group:hover .sm\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .sm\:pb-20 { - padding-bottom: 5rem; + .group:hover .sm\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .sm\:pl-20 { - padding-left: 5rem; + .group:hover .sm\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .sm\:pt-24 { - padding-top: 6rem; + .group:hover .sm\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .sm\:pr-24 { - padding-right: 6rem; + .group:hover .sm\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .sm\:pb-24 { - padding-bottom: 6rem; + .group:hover .sm\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .sm\:pl-24 { - padding-left: 6rem; + .group:hover .sm\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .sm\:pt-28 { - padding-top: 7rem; + .group:hover .sm\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .sm\:pr-28 { - padding-right: 7rem; + .group:hover .sm\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .sm\:pb-28 { - padding-bottom: 7rem; + .group:hover .sm\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .sm\:pl-28 { - padding-left: 7rem; + .group:hover .sm\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .sm\:pt-32 { - padding-top: 8rem; + .group:hover .sm\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .sm\:pr-32 { - padding-right: 8rem; + .group:hover .sm\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .sm\:pb-32 { - padding-bottom: 8rem; + .group:hover .sm\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .sm\:pl-32 { - padding-left: 8rem; + .group:hover .sm\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .sm\:pt-36 { - padding-top: 9rem; + .group:hover .sm\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .sm\:pr-36 { - padding-right: 9rem; + .group:hover .sm\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .sm\:pb-36 { - padding-bottom: 9rem; + .group:hover .sm\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .sm\:pl-36 { - padding-left: 9rem; + .group:hover .sm\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .sm\:pt-40 { - padding-top: 10rem; + .group:hover .sm\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .sm\:pr-40 { - padding-right: 10rem; + .group:hover .sm\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .sm\:pb-40 { - padding-bottom: 10rem; + .group:hover .sm\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .sm\:pl-40 { - padding-left: 10rem; + .group:hover .sm\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .sm\:pt-44 { - padding-top: 11rem; + .group:hover .sm\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .sm\:pr-44 { - padding-right: 11rem; + .group:hover .sm\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .sm\:pb-44 { - padding-bottom: 11rem; + .group:hover .sm\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .sm\:pl-44 { - padding-left: 11rem; + .group:hover .sm\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .sm\:pt-48 { - padding-top: 12rem; + .group:hover .sm\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .sm\:pr-48 { - padding-right: 12rem; + .group:hover .sm\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .sm\:pb-48 { - padding-bottom: 12rem; + .group:hover .sm\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .sm\:pl-48 { - padding-left: 12rem; + .group:hover .sm\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .sm\:pt-52 { - padding-top: 13rem; + .group:hover .sm\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .sm\:pr-52 { - padding-right: 13rem; + .group:hover .sm\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .sm\:pb-52 { - padding-bottom: 13rem; + .group:hover .sm\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .sm\:pl-52 { - padding-left: 13rem; + .group:hover .sm\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .sm\:pt-56 { - padding-top: 14rem; + .group:hover .sm\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .sm\:pr-56 { - padding-right: 14rem; + .group:hover .sm\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .sm\:pb-56 { - padding-bottom: 14rem; + .group:hover .sm\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .sm\:pl-56 { - padding-left: 14rem; + .group:hover .sm\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .sm\:pt-60 { - padding-top: 15rem; + .group:hover .sm\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .sm\:pr-60 { - padding-right: 15rem; + .group:hover .sm\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .sm\:pb-60 { - padding-bottom: 15rem; + .group:hover .sm\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .sm\:pl-60 { - padding-left: 15rem; + .group:hover .sm\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .sm\:pt-64 { - padding-top: 16rem; + .group:hover .sm\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .sm\:pr-64 { - padding-right: 16rem; + .group:hover .sm\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .sm\:pb-64 { - padding-bottom: 16rem; + .group:hover .sm\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .sm\:pl-64 { - padding-left: 16rem; + .group:hover .sm\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .sm\:pt-72 { - padding-top: 18rem; + .group:hover .sm\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .sm\:pr-72 { - padding-right: 18rem; + .group:hover .sm\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .sm\:pb-72 { - padding-bottom: 18rem; + .group:hover .sm\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .sm\:pl-72 { - padding-left: 18rem; + .group:hover .sm\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .sm\:pt-80 { - padding-top: 20rem; + .group:hover .sm\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .sm\:pr-80 { - padding-right: 20rem; + .group:hover .sm\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .sm\:pb-80 { - padding-bottom: 20rem; + .group:hover .sm\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .sm\:pl-80 { - padding-left: 20rem; + .group:hover .sm\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .sm\:pt-96 { - padding-top: 24rem; + .group:hover .sm\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .sm\:pr-96 { - padding-right: 24rem; + .group:hover .sm\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .sm\:pb-96 { - padding-bottom: 24rem; + .group:hover .sm\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .sm\:pl-96 { - padding-left: 24rem; + .group:hover .sm\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .sm\:pt-px { - padding-top: 1px; + .group:hover .sm\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .sm\:pr-px { - padding-right: 1px; + .group:hover .sm\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .sm\:pb-px { - padding-bottom: 1px; + .group:hover .sm\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .sm\:pl-px { - padding-left: 1px; + .sm\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .sm\:pt-0\.5 { - padding-top: 0.125rem; + .sm\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .sm\:pr-0\.5 { - padding-right: 0.125rem; + .sm\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .sm\:pb-0\.5 { - padding-bottom: 0.125rem; + .sm\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .sm\:pl-0\.5 { - padding-left: 0.125rem; + .sm\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .sm\:pt-1\.5 { - padding-top: 0.375rem; + .sm\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .sm\:pr-1\.5 { - padding-right: 0.375rem; + .sm\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .sm\:pb-1\.5 { - padding-bottom: 0.375rem; + .sm\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .sm\:pl-1\.5 { - padding-left: 0.375rem; + .sm\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .sm\:pt-2\.5 { - padding-top: 0.625rem; + .sm\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .sm\:pr-2\.5 { - padding-right: 0.625rem; + .sm\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .sm\:pb-2\.5 { - padding-bottom: 0.625rem; + .sm\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .sm\:pl-2\.5 { - padding-left: 0.625rem; + .sm\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .sm\:pt-3\.5 { - padding-top: 0.875rem; + .sm\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .sm\:pr-3\.5 { - padding-right: 0.875rem; + .sm\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .sm\:pb-3\.5 { - padding-bottom: 0.875rem; + .sm\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .sm\:pl-3\.5 { - padding-left: 0.875rem; + .sm\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .sm\:placeholder-transparent::placeholder { - color: transparent; + .sm\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .sm\:placeholder-current::placeholder { - color: currentColor; + .sm\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .sm\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .sm\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .sm\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .sm\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .sm\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .sm\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .sm\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .sm\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .sm\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .sm\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .sm\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .sm\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .sm\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .sm\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .sm\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .sm\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .sm\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .sm\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .sm\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .sm\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .sm\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .sm\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .sm\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .sm\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .sm\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .sm\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .sm\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-transparent:hover { + background-color: transparent; } - .sm\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-current:hover { + background-color: currentColor; } - .sm\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .sm\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .sm\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .sm\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .sm\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .sm\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-transparent:focus { + background-color: transparent; } - .sm\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-current:focus { + background-color: currentColor; } - .sm\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .sm\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; + .sm\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; + .sm\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; + .sm\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; + .sm\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; + .sm\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; + .sm\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; + .sm\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; + .sm\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; + .sm\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; + .sm\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; + .sm\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; + .sm\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; + .sm\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; + .sm\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .sm\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; + .sm\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; + .sm\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; + .sm\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; + .sm\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; + .sm\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; + .sm\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; + .sm\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; + .sm\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; + .sm\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; + .sm\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; + .sm\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; + .sm\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; + .sm\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; + .sm\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; + .sm\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .sm\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; + .sm\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .sm\:pointer-events-none { - pointer-events: none; + .sm\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .sm\:pointer-events-auto { - pointer-events: auto; + .sm\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .sm\:static { - position: static; + .sm\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .sm\:fixed { - position: fixed; + .sm\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .sm\:absolute { - position: absolute; + .sm\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .sm\:relative { - position: relative; + .sm\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .sm\:sticky { - position: sticky; + .sm\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .sm\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .sm\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .sm\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .sm\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .sm\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .sm\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .sm\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .sm\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .sm\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .sm\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .sm\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .sm\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .sm\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .sm\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .sm\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .sm\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .sm\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .sm\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .sm\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .sm\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .sm\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .sm\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .sm\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .sm\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .sm\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .sm\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .sm\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .sm\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .sm\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .sm\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .sm\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .sm\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .sm\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .sm\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .sm\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .sm\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .sm\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .sm\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .sm\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .sm\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .sm\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .sm\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .sm\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .sm\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .sm\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .sm\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .sm\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .sm\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .sm\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .sm\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .sm\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .sm\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .sm\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .sm\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .sm\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .sm\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .sm\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .sm\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .sm\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .sm\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .sm\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .sm\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .sm\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .sm\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .sm\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .sm\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .sm\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .sm\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .sm\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .sm\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .sm\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .sm\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .sm\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .sm\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .sm\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .sm\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .sm\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .sm\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .sm\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .sm\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .sm\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .sm\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .sm\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .sm\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .sm\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .sm\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .sm\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .sm\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .sm\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .sm\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .sm\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .group:hover .sm\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .sm\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .group:hover .sm\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .sm\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .group:hover .sm\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .sm\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .group:hover .sm\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .sm\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .group:hover .sm\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .sm\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .group:hover .sm\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .sm\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .group:hover .sm\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .sm\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .group:hover .sm\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .sm\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .group:hover .sm\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .sm\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .group:hover .sm\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .sm\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .group:hover .sm\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .sm\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .group:hover .sm\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .sm\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .group:hover .sm\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .sm\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .group:hover .sm\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .sm\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .group:hover .sm\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .sm\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .sm\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } - .sm\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .sm\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } - .sm\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .sm\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } - .sm\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .sm\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } - .sm\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .sm\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } - .sm\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .sm\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } - .sm\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .sm\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } - .sm\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .sm\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } - .sm\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .sm\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } - .sm\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .sm\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } - .sm\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .sm\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } - .sm\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .sm\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } - .sm\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .sm\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } - .sm\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .sm\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } - .sm\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .sm\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } - .sm\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .sm\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } - .sm\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .sm\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } - .sm\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .sm\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } - .sm\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .sm\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } - .sm\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .sm\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } - .sm\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .sm\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } - .sm\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .sm\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } - .sm\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .sm\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } - .sm\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .sm\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } - .sm\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .sm\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } - .sm\:inset-y-0 { - top: 0px; - bottom: 0px; + .sm\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } - .sm\:inset-x-0 { - right: 0px; - left: 0px; + .sm\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } - .sm\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .sm\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } - .sm\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .sm\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } - .sm\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .sm\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } - .sm\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .sm\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } - .sm\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .sm\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } - .sm\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .sm\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } - .sm\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .sm\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } - .sm\:inset-x-4 { - right: 1rem; - left: 1rem; + .sm\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } - .sm\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .sm\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } - .sm\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .sm\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } - .sm\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .sm\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } - .sm\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .sm\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } - .sm\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .sm\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } - .sm\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .sm\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } - .sm\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .sm\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } - .sm\:inset-x-8 { - right: 2rem; - left: 2rem; + .sm\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } - .sm\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .sm\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } - .sm\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .sm\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } - .sm\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .sm\:bg-none { + background-image: none; } - .sm\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .sm\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .sm\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .sm\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .sm\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .sm\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .sm\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .sm\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .sm\:inset-x-12 { - right: 3rem; - left: 3rem; + .sm\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .sm\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .sm\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .sm\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .sm\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .sm\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .sm\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .sm\:inset-x-16 { - right: 4rem; - left: 4rem; + .sm\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .sm\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:inset-x-20 { - right: 5rem; - left: 5rem; + .sm\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .sm\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:inset-x-24 { - right: 6rem; - left: 6rem; + .sm\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .sm\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:inset-x-28 { - right: 7rem; - left: 7rem; + .sm\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .sm\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:inset-x-32 { - right: 8rem; - left: 8rem; + .sm\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .sm\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:inset-x-36 { - right: 9rem; - left: 9rem; + .sm\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .sm\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:inset-x-40 { - right: 10rem; - left: 10rem; + .sm\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .sm\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:inset-x-44 { - right: 11rem; - left: 11rem; + .sm\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .sm\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:inset-x-48 { - right: 12rem; - left: 12rem; + .sm\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .sm\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:inset-x-52 { - right: 13rem; - left: 13rem; + .sm\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .sm\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:inset-x-56 { - right: 14rem; - left: 14rem; + .sm\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .sm\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:inset-x-60 { - right: 15rem; - left: 15rem; + .sm\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .sm\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:inset-x-64 { - right: 16rem; - left: 16rem; + .sm\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .sm\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:inset-x-72 { - right: 18rem; - left: 18rem; + .sm\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .sm\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:inset-x-80 { - right: 20rem; - left: 20rem; + .sm\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .sm\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:inset-x-96 { - right: 24rem; - left: 24rem; + .sm\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:inset-y-auto { - top: auto; - bottom: auto; + .sm\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:inset-x-auto { - right: auto; - left: auto; + .sm\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:inset-y-px { - top: 1px; - bottom: 1px; + .sm\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:inset-x-px { - right: 1px; - left: 1px; + .sm\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .sm\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .sm\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .sm\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .sm\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .sm\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .sm\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .sm\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .sm\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:-inset-y-0 { - top: 0px; - bottom: 0px; + .sm\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:-inset-x-0 { - right: 0px; - left: 0px; + .sm\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .sm\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .sm\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .sm\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .sm\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .sm\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .sm\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .sm\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:-inset-x-4 { - right: -1rem; - left: -1rem; + .sm\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .sm\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .sm\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .sm\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .sm\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .sm\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .sm\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .sm\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:-inset-x-8 { - right: -2rem; - left: -2rem; + .sm\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .sm\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .sm\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .sm\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .sm\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .sm\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .sm\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .sm\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:-inset-x-12 { - right: -3rem; - left: -3rem; + .sm\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .sm\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .sm\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .sm\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:-inset-x-16 { - right: -4rem; - left: -4rem; + .sm\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .sm\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:-inset-x-20 { - right: -5rem; - left: -5rem; + .sm\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .sm\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:-inset-x-24 { - right: -6rem; - left: -6rem; + .sm\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .sm\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:-inset-x-28 { - right: -7rem; - left: -7rem; + .sm\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .sm\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:-inset-x-32 { - right: -8rem; - left: -8rem; + .sm\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .sm\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:-inset-x-36 { - right: -9rem; - left: -9rem; + .sm\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .sm\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:-inset-x-40 { - right: -10rem; - left: -10rem; + .sm\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .sm\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-inset-x-44 { - right: -11rem; - left: -11rem; + .sm\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .sm\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-inset-x-48 { - right: -12rem; - left: -12rem; + .sm\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .sm\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:-inset-x-52 { - right: -13rem; - left: -13rem; + .sm\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .sm\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:-inset-x-56 { - right: -14rem; - left: -14rem; + .sm\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .sm\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:-inset-x-60 { - right: -15rem; - left: -15rem; + .sm\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .sm\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:-inset-x-64 { - right: -16rem; - left: -16rem; + .sm\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .sm\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:-inset-x-72 { - right: -18rem; - left: -18rem; + .sm\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .sm\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:-inset-x-80 { - right: -20rem; - left: -20rem; + .sm\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .sm\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:-inset-x-96 { - right: -24rem; - left: -24rem; + .sm\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:-inset-y-px { - top: -1px; - bottom: -1px; + .sm\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:-inset-x-px { - right: -1px; - left: -1px; + .sm\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .sm\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .sm\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .sm\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .sm\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .sm\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .sm\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .sm\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .sm\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .sm\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:inset-x-1\/2 { - right: 50%; - left: 50%; + .sm\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .sm\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .sm\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .sm\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .sm\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .sm\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:inset-x-1\/4 { - right: 25%; - left: 25%; + .sm\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .sm\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:inset-x-2\/4 { - right: 50%; - left: 50%; + .sm\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .sm\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:inset-x-3\/4 { - right: 75%; - left: 75%; + .sm\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:inset-y-full { - top: 100%; - bottom: 100%; + .sm\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:inset-x-full { - right: 100%; - left: 100%; + .sm\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .sm\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .sm\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .sm\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .sm\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .sm\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .sm\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .sm\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .sm\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .sm\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .sm\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .sm\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .sm\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:-inset-y-full { - top: -100%; - bottom: -100%; + .sm\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:-inset-x-full { - right: -100%; - left: -100%; + .sm\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:top-0 { - top: 0px; + .sm\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:right-0 { - right: 0px; + .sm\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:bottom-0 { - bottom: 0px; + .sm\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:left-0 { - left: 0px; + .sm\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:top-1 { - top: 0.25rem; + .sm\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:right-1 { - right: 0.25rem; + .sm\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:bottom-1 { - bottom: 0.25rem; + .sm\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:left-1 { - left: 0.25rem; + .sm\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:top-2 { - top: 0.5rem; + .sm\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:right-2 { - right: 0.5rem; + .sm\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:bottom-2 { - bottom: 0.5rem; + .sm\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:left-2 { - left: 0.5rem; + .sm\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:top-3 { - top: 0.75rem; + .sm\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:right-3 { - right: 0.75rem; + .sm\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:bottom-3 { - bottom: 0.75rem; + .sm\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:left-3 { - left: 0.75rem; + .sm\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:top-4 { - top: 1rem; + .sm\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:right-4 { - right: 1rem; + .sm\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:bottom-4 { - bottom: 1rem; + .sm\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:left-4 { - left: 1rem; + .sm\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:top-5 { - top: 1.25rem; + .sm\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:right-5 { - right: 1.25rem; + .sm\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:bottom-5 { - bottom: 1.25rem; + .sm\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:left-5 { - left: 1.25rem; + .sm\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:top-6 { - top: 1.5rem; + .sm\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:right-6 { - right: 1.5rem; + .sm\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:bottom-6 { - bottom: 1.5rem; + .sm\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:left-6 { - left: 1.5rem; + .sm\:to-transparent { + --tw-gradient-to: transparent; } - .sm\:top-7 { - top: 1.75rem; + .sm\:to-current { + --tw-gradient-to: currentColor; } - .sm\:right-7 { - right: 1.75rem; + .sm\:to-black { + --tw-gradient-to: #000; } - .sm\:bottom-7 { - bottom: 1.75rem; + .sm\:to-white { + --tw-gradient-to: #fff; } - .sm\:left-7 { - left: 1.75rem; + .sm\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .sm\:top-8 { - top: 2rem; + .sm\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .sm\:right-8 { - right: 2rem; + .sm\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .sm\:bottom-8 { - bottom: 2rem; + .sm\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .sm\:left-8 { - left: 2rem; + .sm\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .sm\:top-9 { - top: 2.25rem; + .sm\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .sm\:right-9 { - right: 2.25rem; + .sm\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .sm\:bottom-9 { - bottom: 2.25rem; + .sm\:to-gray-700 { + --tw-gradient-to: #374151; } - .sm\:left-9 { - left: 2.25rem; + .sm\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .sm\:top-10 { - top: 2.5rem; + .sm\:to-gray-900 { + --tw-gradient-to: #111827; } - .sm\:right-10 { - right: 2.5rem; + .sm\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .sm\:bottom-10 { - bottom: 2.5rem; + .sm\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .sm\:left-10 { - left: 2.5rem; + .sm\:to-red-200 { + --tw-gradient-to: #fecaca; } - .sm\:top-11 { - top: 2.75rem; + .sm\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .sm\:right-11 { - right: 2.75rem; + .sm\:to-red-400 { + --tw-gradient-to: #f87171; } - .sm\:bottom-11 { - bottom: 2.75rem; + .sm\:to-red-500 { + --tw-gradient-to: #ef4444; } - .sm\:left-11 { - left: 2.75rem; + .sm\:to-red-600 { + --tw-gradient-to: #dc2626; } - .sm\:top-12 { - top: 3rem; + .sm\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .sm\:right-12 { - right: 3rem; + .sm\:to-red-800 { + --tw-gradient-to: #991b1b; } - .sm\:bottom-12 { - bottom: 3rem; + .sm\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .sm\:left-12 { - left: 3rem; + .sm\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .sm\:top-14 { - top: 3.5rem; + .sm\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .sm\:right-14 { - right: 3.5rem; + .sm\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .sm\:bottom-14 { - bottom: 3.5rem; + .sm\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .sm\:left-14 { - left: 3.5rem; + .sm\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .sm\:top-16 { - top: 4rem; + .sm\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .sm\:right-16 { - right: 4rem; + .sm\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .sm\:bottom-16 { - bottom: 4rem; + .sm\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .sm\:left-16 { - left: 4rem; + .sm\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .sm\:top-20 { - top: 5rem; + .sm\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .sm\:right-20 { - right: 5rem; + .sm\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .sm\:bottom-20 { - bottom: 5rem; + .sm\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .sm\:left-20 { - left: 5rem; + .sm\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .sm\:top-24 { - top: 6rem; + .sm\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .sm\:right-24 { - right: 6rem; + .sm\:to-green-400 { + --tw-gradient-to: #34d399; } - .sm\:bottom-24 { - bottom: 6rem; + .sm\:to-green-500 { + --tw-gradient-to: #10b981; } - .sm\:left-24 { - left: 6rem; + .sm\:to-green-600 { + --tw-gradient-to: #059669; } - .sm\:top-28 { - top: 7rem; + .sm\:to-green-700 { + --tw-gradient-to: #047857; } - .sm\:right-28 { - right: 7rem; + .sm\:to-green-800 { + --tw-gradient-to: #065f46; } - .sm\:bottom-28 { - bottom: 7rem; + .sm\:to-green-900 { + --tw-gradient-to: #064e3b; } - .sm\:left-28 { - left: 7rem; + .sm\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .sm\:top-32 { - top: 8rem; + .sm\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .sm\:right-32 { - right: 8rem; + .sm\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .sm\:bottom-32 { - bottom: 8rem; + .sm\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .sm\:left-32 { - left: 8rem; + .sm\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .sm\:top-36 { - top: 9rem; + .sm\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .sm\:right-36 { - right: 9rem; + .sm\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .sm\:bottom-36 { - bottom: 9rem; + .sm\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .sm\:left-36 { - left: 9rem; + .sm\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .sm\:top-40 { - top: 10rem; + .sm\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .sm\:right-40 { - right: 10rem; + .sm\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .sm\:bottom-40 { - bottom: 10rem; + .sm\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .sm\:left-40 { - left: 10rem; + .sm\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .sm\:top-44 { - top: 11rem; + .sm\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .sm\:right-44 { - right: 11rem; + .sm\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .sm\:bottom-44 { - bottom: 11rem; + .sm\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .sm\:left-44 { - left: 11rem; + .sm\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .sm\:top-48 { - top: 12rem; + .sm\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .sm\:right-48 { - right: 12rem; + .sm\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .sm\:bottom-48 { - bottom: 12rem; + .sm\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .sm\:left-48 { - left: 12rem; + .sm\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .sm\:top-52 { - top: 13rem; + .sm\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .sm\:right-52 { - right: 13rem; + .sm\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .sm\:bottom-52 { - bottom: 13rem; + .sm\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .sm\:left-52 { - left: 13rem; + .sm\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .sm\:top-56 { - top: 14rem; + .sm\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .sm\:right-56 { - right: 14rem; + .sm\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .sm\:bottom-56 { - bottom: 14rem; + .sm\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .sm\:left-56 { - left: 14rem; + .sm\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .sm\:top-60 { - top: 15rem; + .sm\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .sm\:right-60 { - right: 15rem; + .sm\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .sm\:bottom-60 { - bottom: 15rem; + .sm\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .sm\:left-60 { - left: 15rem; + .sm\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .sm\:top-64 { - top: 16rem; + .sm\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .sm\:right-64 { - right: 16rem; + .sm\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .sm\:bottom-64 { - bottom: 16rem; + .sm\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .sm\:left-64 { - left: 16rem; + .sm\:to-pink-600 { + --tw-gradient-to: #db2777; } - .sm\:top-72 { - top: 18rem; + .sm\:to-pink-700 { + --tw-gradient-to: #be185d; } - .sm\:right-72 { - right: 18rem; + .sm\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .sm\:bottom-72 { - bottom: 18rem; + .sm\:to-pink-900 { + --tw-gradient-to: #831843; } - .sm\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .sm\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-top-14 { - top: -3.5rem; + .sm\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-right-14 { - right: -3.5rem; + .sm\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:-bottom-14 { - bottom: -3.5rem; + .sm\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:-left-14 { - left: -3.5rem; + .sm\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:-top-16 { - top: -4rem; + .sm\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:-right-16 { - right: -4rem; + .sm\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:-bottom-16 { - bottom: -4rem; + .sm\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:-left-16 { - left: -4rem; + .sm\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:-top-20 { - top: -5rem; + .sm\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:-right-20 { - right: -5rem; + .sm\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:-bottom-20 { - bottom: -5rem; + .sm\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:-left-20 { - left: -5rem; + .sm\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:-top-24 { - top: -6rem; + .sm\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:-right-24 { - right: -6rem; + .sm\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:-bottom-24 { - bottom: -6rem; + .sm\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:-left-24 { - left: -6rem; + .sm\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:-top-28 { - top: -7rem; + .sm\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:-right-28 { - right: -7rem; + .sm\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:-bottom-28 { - bottom: -7rem; + .sm\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:-left-28 { - left: -7rem; + .sm\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:-top-32 { - top: -8rem; + .sm\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:-right-32 { - right: -8rem; + .sm\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:-bottom-32 { - bottom: -8rem; + .sm\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:-left-32 { - left: -8rem; + .sm\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:-top-36 { - top: -9rem; + .sm\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:-right-36 { - right: -9rem; + .sm\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:-bottom-36 { - bottom: -9rem; + .sm\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:-left-36 { - left: -9rem; + .sm\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:-top-40 { - top: -10rem; + .sm\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:-right-40 { - right: -10rem; + .sm\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:-bottom-40 { - bottom: -10rem; + .sm\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:-left-40 { - left: -10rem; + .sm\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:-top-44 { - top: -11rem; + .sm\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:-right-44 { - right: -11rem; + .sm\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:-bottom-44 { - bottom: -11rem; + .sm\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:-left-44 { - left: -11rem; + .sm\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:-top-48 { - top: -12rem; + .sm\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:-right-48 { - right: -12rem; + .sm\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:-bottom-48 { - bottom: -12rem; + .sm\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:-left-48 { - left: -12rem; + .sm\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:-top-52 { - top: -13rem; + .sm\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:-right-52 { - right: -13rem; + .sm\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:-bottom-52 { - bottom: -13rem; + .sm\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:-left-52 { - left: -13rem; + .sm\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:-top-56 { - top: -14rem; + .sm\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:-right-56 { - right: -14rem; + .sm\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:-bottom-56 { - bottom: -14rem; + .sm\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:-left-56 { - left: -14rem; + .sm\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:-top-60 { - top: -15rem; + .sm\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:-right-60 { - right: -15rem; + .sm\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:-bottom-60 { - bottom: -15rem; + .sm\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:-left-60 { - left: -15rem; + .sm\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:-top-64 { - top: -16rem; + .sm\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:-right-64 { - right: -16rem; + .sm\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:-bottom-64 { - bottom: -16rem; + .sm\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:-left-64 { - left: -16rem; + .sm\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:-top-72 { - top: -18rem; + .sm\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:-right-72 { - right: -18rem; + .sm\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:-bottom-72 { - bottom: -18rem; + .sm\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:-left-72 { - left: -18rem; + .sm\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:-top-80 { - top: -20rem; + .sm\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:-right-80 { - right: -20rem; + .sm\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:-bottom-80 { - bottom: -20rem; + .sm\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:-left-80 { - left: -20rem; + .sm\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:-top-96 { - top: -24rem; + .sm\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:-right-96 { - right: -24rem; + .sm\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:-bottom-96 { - bottom: -24rem; + .sm\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:-left-96 { - left: -24rem; + .sm\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:-top-px { - top: -1px; + .sm\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:-right-px { - right: -1px; + .sm\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:-bottom-px { - bottom: -1px; + .sm\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:-left-px { - left: -1px; + .sm\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:-top-0\.5 { - top: -0.125rem; + .sm\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:-right-0\.5 { - right: -0.125rem; + .sm\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:-bottom-0\.5 { - bottom: -0.125rem; + .sm\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:-left-0\.5 { - left: -0.125rem; + .sm\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:-top-1\.5 { - top: -0.375rem; + .sm\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:-right-1\.5 { - right: -0.375rem; + .sm\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:-bottom-1\.5 { - bottom: -0.375rem; + .sm\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:-left-1\.5 { - left: -0.375rem; + .sm\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:-top-2\.5 { - top: -0.625rem; + .sm\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:-right-2\.5 { - right: -0.625rem; + .sm\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:-bottom-2\.5 { - bottom: -0.625rem; + .sm\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:-left-2\.5 { - left: -0.625rem; + .sm\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .sm\:-top-3\.5 { - top: -0.875rem; + .sm\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .sm\:-right-3\.5 { - right: -0.875rem; + .sm\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .sm\:-bottom-3\.5 { - bottom: -0.875rem; + .sm\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .sm\:-left-3\.5 { - left: -0.875rem; + .sm\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .sm\:top-1\/2 { - top: 50%; + .sm\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .sm\:right-1\/2 { - right: 50%; + .sm\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .sm\:bottom-1\/2 { - bottom: 50%; + .sm\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .sm\:left-1\/2 { - left: 50%; + .sm\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .sm\:top-1\/3 { - top: 33.333333%; + .sm\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .sm\:right-1\/3 { - right: 33.333333%; + .sm\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .sm\:bottom-1\/3 { - bottom: 33.333333%; + .sm\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .sm\:left-1\/3 { - left: 33.333333%; + .sm\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .sm\:top-2\/3 { - top: 66.666667%; + .sm\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .sm\:right-2\/3 { - right: 66.666667%; + .sm\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .sm\:bottom-2\/3 { - bottom: 66.666667%; + .sm\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .sm\:left-2\/3 { - left: 66.666667%; + .sm\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .sm\:top-1\/4 { - top: 25%; + .sm\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .sm\:right-1\/4 { - right: 25%; + .sm\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .sm\:bottom-1\/4 { - bottom: 25%; + .sm\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .sm\:left-1\/4 { - left: 25%; + .sm\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .sm\:top-2\/4 { - top: 50%; + .sm\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .sm\:right-2\/4 { - right: 50%; + .sm\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .sm\:bottom-2\/4 { - bottom: 50%; + .sm\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .sm\:left-2\/4 { - left: 50%; + .sm\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .sm\:top-3\/4 { - top: 75%; + .sm\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .sm\:right-3\/4 { - right: 75%; + .sm\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .sm\:bottom-3\/4 { - bottom: 75%; + .sm\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .sm\:left-3\/4 { - left: 75%; + .sm\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .sm\:top-full { - top: 100%; + .sm\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .sm\:right-full { - right: 100%; + .sm\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .sm\:bottom-full { - bottom: 100%; + .sm\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .sm\:left-full { - left: 100%; + .sm\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .sm\:-top-1\/2 { - top: -50%; + .sm\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .sm\:-right-1\/2 { - right: -50%; + .sm\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .sm\:-bottom-1\/2 { - bottom: -50%; + .sm\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .sm\:-left-1\/2 { - left: -50%; + .sm\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .sm\:-top-1\/3 { - top: -33.333333%; + .sm\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .sm\:-right-1\/3 { - right: -33.333333%; + .sm\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .sm\:-bottom-1\/3 { - bottom: -33.333333%; + .sm\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .sm\:-left-1\/3 { - left: -33.333333%; + .sm\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .sm\:-top-2\/3 { - top: -66.666667%; + .sm\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .sm\:-right-2\/3 { - right: -66.666667%; + .sm\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .sm\:-bottom-2\/3 { - bottom: -66.666667%; + .sm\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .sm\:-left-2\/3 { - left: -66.666667%; + .sm\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .sm\:-top-1\/4 { - top: -25%; + .sm\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .sm\:-right-1\/4 { - right: -25%; + .sm\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .sm\:-bottom-1\/4 { - bottom: -25%; + .sm\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .sm\:-left-1\/4 { - left: -25%; + .sm\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .sm\:-top-2\/4 { - top: -50%; + .sm\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .sm\:-right-2\/4 { - right: -50%; + .sm\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .sm\:-bottom-2\/4 { - bottom: -50%; + .sm\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .sm\:-left-2\/4 { - left: -50%; + .sm\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .sm\:-top-3\/4 { - top: -75%; + .sm\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .sm\:-right-3\/4 { - right: -75%; + .sm\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .sm\:-bottom-3\/4 { - bottom: -75%; + .sm\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .sm\:-left-3\/4 { - left: -75%; + .sm\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .sm\:-top-full { - top: -100%; + .sm\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .sm\:-right-full { - right: -100%; + .sm\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .sm\:-bottom-full { - bottom: -100%; + .sm\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .sm\:-left-full { - left: -100%; + .sm\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .sm\:resize-none { - resize: none; + .sm\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .sm\:resize-y { - resize: vertical; + .sm\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .sm\:resize-x { - resize: horizontal; + .sm\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .sm\:resize { - resize: both; + .sm\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .sm\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .sm\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .sm\: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); + .sm\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .sm\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .sm\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .sm\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .sm\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .sm\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .sm\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .sm\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .sm\:group-hover\: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); + .sm\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .sm\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .sm\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .sm\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .sm\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .sm\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .sm\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .sm\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .sm\:focus-within\:shadow-md:focus-within { - --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); + .sm\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .sm\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .sm\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .sm\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .sm\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .sm\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .sm\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .sm\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .sm\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .sm\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .sm\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .sm\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .sm\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .sm\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .sm\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .sm\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .sm\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .sm\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .sm\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .sm\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .sm\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .sm\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .sm\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .sm\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .sm\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .sm\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .sm\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .sm\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .sm\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .sm\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .sm\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .sm\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .sm\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .sm\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .sm\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .sm\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .sm\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .sm\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .sm\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .sm\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .sm\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .sm\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .sm\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .sm\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .sm\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .sm\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .sm\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .sm\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .sm\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .sm\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .sm\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .sm\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .sm\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .sm\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .sm\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .sm\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .sm\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .sm\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .sm\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .sm\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .sm\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .sm\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .sm\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .sm\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .sm\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .sm\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .sm\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .sm\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .sm\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .sm\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .sm\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .sm\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .sm\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .sm\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .sm\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .sm\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .sm\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .sm\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .sm\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .sm\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .sm\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .sm\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .sm\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .sm\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .sm\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .sm\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .sm\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .sm\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .sm\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .sm\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .sm\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .sm\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .sm\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .sm\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .sm\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .sm\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .sm\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .sm\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .sm\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .sm\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .sm\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .sm\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .sm\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .sm\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .sm\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .sm\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .sm\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .sm\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .sm\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .sm\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .sm\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .sm\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .sm\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .sm\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .sm\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .sm\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .sm\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .sm\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .sm\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .sm\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .sm\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .sm\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .sm\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .sm\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .sm\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .sm\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .sm\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .sm\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .sm\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .sm\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .sm\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .sm\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .sm\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .sm\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .sm\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .sm\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .sm\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .sm\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .sm\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .sm\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .sm\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .sm\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .sm\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .sm\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .sm\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .sm\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .sm\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .sm\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .sm\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .sm\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .sm\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .sm\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .sm\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .sm\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .sm\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .sm\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .sm\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .sm\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .sm\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .sm\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .sm\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .sm\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .sm\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .sm\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .sm\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .sm\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .sm\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .sm\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .sm\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .sm\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .sm\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .sm\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .sm\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .sm\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .sm\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .sm\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .sm\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .sm\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .sm\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .sm\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .sm\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .sm\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .sm\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .sm\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .sm\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .sm\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .sm\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .sm\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .sm\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .sm\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .sm\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .sm\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .sm\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .sm\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .sm\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .sm\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .sm\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .sm\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .sm\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .sm\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .sm\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .sm\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .sm\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .sm\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .sm\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .sm\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .sm\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .sm\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .sm\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .sm\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .sm\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .sm\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .sm\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .sm\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .sm\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .sm\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .sm\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .sm\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .sm\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .sm\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .sm\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .sm\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .sm\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .sm\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .sm\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .sm\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .sm\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .sm\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .sm\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .sm\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .sm\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .sm\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .sm\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .sm\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .sm\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .sm\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .sm\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .sm\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .sm\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .sm\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .sm\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .sm\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .sm\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .sm\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .sm\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .sm\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .sm\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .sm\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .sm\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .sm\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .sm\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .sm\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .sm\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .sm\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .sm\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .sm\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .sm\:decoration-slice { + box-decoration-break: slice; } - .sm\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .sm\:decoration-clone { + box-decoration-break: clone; } - .sm\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .sm\:bg-auto { + background-size: auto; } - .sm\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .sm\:bg-cover { + background-size: cover; } - .sm\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .sm\:bg-contain { + background-size: contain; } - .sm\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .sm\:bg-fixed { + background-attachment: fixed; } - .sm\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .sm\:bg-local { + background-attachment: local; } - .sm\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .sm\:bg-scroll { + background-attachment: scroll; } - .sm\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .sm\:bg-clip-border { + background-clip: border-box; } - .sm\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .sm\:bg-clip-padding { + background-clip: padding-box; } - .sm\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .sm\:bg-clip-content { + background-clip: content-box; } - .sm\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .sm\:bg-clip-text { + background-clip: text; } - .sm\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .sm\:bg-bottom { + background-position: bottom; } - .sm\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .sm\:bg-center { + background-position: center; } - .sm\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .sm\:bg-left { + background-position: left; } - .sm\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .sm\:bg-left-bottom { + background-position: left bottom; } - .sm\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .sm\:bg-left-top { + background-position: left top; } - .sm\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .sm\:bg-right { + background-position: right; } - .sm\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .sm\:bg-right-bottom { + background-position: right bottom; } - .sm\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .sm\:bg-right-top { + background-position: right top; } - .sm\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .sm\:bg-top { + background-position: top; } - .sm\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .sm\:bg-repeat { + background-repeat: repeat; } - .sm\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .sm\:bg-no-repeat { + background-repeat: no-repeat; } - .sm\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .sm\:bg-repeat-x { + background-repeat: repeat-x; } - .sm\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .sm\:bg-repeat-y { + background-repeat: repeat-y; } - .sm\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .sm\:bg-repeat-round { + background-repeat: round; } - .sm\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .sm\:bg-repeat-space { + background-repeat: space; } - .sm\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .sm\:bg-origin-border { + background-origin: border-box; } - .sm\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .sm\:bg-origin-padding { + background-origin: padding-box; } - .sm\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .sm\:bg-origin-content { + background-origin: content-box; } - .sm\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .sm\:fill-current { + fill: currentColor; } - .sm\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .sm\:stroke-current { + stroke: currentColor; } - .sm\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .sm\:stroke-0 { + stroke-width: 0; } - .sm\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .sm\:stroke-1 { + stroke-width: 1; } - .sm\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .sm\:stroke-2 { + stroke-width: 2; } - .sm\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .sm\:object-contain { + object-fit: contain; } - .sm\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .sm\:object-cover { + object-fit: cover; } - .sm\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .sm\:object-fill { + object-fit: fill; } - .sm\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .sm\:object-none { + object-fit: none; } - .sm\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .sm\:object-scale-down { + object-fit: scale-down; } - .sm\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .sm\:object-bottom { + object-position: bottom; } - .sm\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .sm\:object-center { + object-position: center; } - .sm\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .sm\:object-left { + object-position: left; } - .sm\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .sm\:object-left-bottom { + object-position: left bottom; } - .sm\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .sm\:object-left-top { + object-position: left top; } - .sm\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .sm\:object-right { + object-position: right; } - .sm\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .sm\:object-right-bottom { + object-position: right bottom; } - .sm\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .sm\:object-right-top { + object-position: right top; } - .sm\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .sm\:object-top { + object-position: top; } - .sm\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .sm\:p-0 { + padding: 0px; } - .sm\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .sm\:p-1 { + padding: 0.25rem; } - .sm\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .sm\:p-2 { + padding: 0.5rem; } - .sm\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .sm\:p-3 { + padding: 0.75rem; } - .sm\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .sm\:p-4 { + padding: 1rem; } - .sm\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .sm\:p-5 { + padding: 1.25rem; } - .sm\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .sm\:p-6 { + padding: 1.5rem; } - .sm\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .sm\:p-7 { + padding: 1.75rem; } - .sm\:ring-transparent { - --tw-ring-color: transparent; + .sm\:p-8 { + padding: 2rem; } - .sm\:ring-current { - --tw-ring-color: currentColor; + .sm\:p-9 { + padding: 2.25rem; } - .sm\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .sm\:p-10 { + padding: 2.5rem; } - .sm\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .sm\:p-11 { + padding: 2.75rem; } - .sm\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .sm\:p-12 { + padding: 3rem; } - .sm\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .sm\:p-14 { + padding: 3.5rem; } - .sm\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .sm\:p-16 { + padding: 4rem; } - .sm\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .sm\:p-20 { + padding: 5rem; } - .sm\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .sm\:p-24 { + padding: 6rem; } - .sm\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .sm\:p-28 { + padding: 7rem; } - .sm\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .sm\:p-32 { + padding: 8rem; } - .sm\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .sm\:p-36 { + padding: 9rem; } - .sm\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .sm\:p-40 { + padding: 10rem; } - .sm\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .sm\:p-44 { + padding: 11rem; } - .sm\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .sm\:p-48 { + padding: 12rem; } - .sm\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .sm\:p-52 { + padding: 13rem; } - .sm\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .sm\:p-56 { + padding: 14rem; } - .sm\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .sm\:p-60 { + padding: 15rem; } - .sm\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .sm\:p-64 { + padding: 16rem; } - .sm\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .sm\:p-72 { + padding: 18rem; } - .sm\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .sm\:p-80 { + padding: 20rem; } - .sm\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .sm\:p-96 { + padding: 24rem; } - .sm\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .sm\:p-px { + padding: 1px; } - .sm\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .sm\:p-0\.5 { + padding: 0.125rem; } - .sm\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .sm\:p-1\.5 { + padding: 0.375rem; } - .sm\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .sm\:p-2\.5 { + padding: 0.625rem; } - .sm\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .sm\:p-3\.5 { + padding: 0.875rem; } - .sm\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .sm\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .sm\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .sm\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .sm\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .sm\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .sm\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .sm\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .sm\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .sm\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .sm\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .sm\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .sm\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .sm\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .sm\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .sm\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .sm\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .sm\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .sm\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .sm\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .sm\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .sm\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .sm\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .sm\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .sm\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .sm\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .sm\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .sm\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .sm\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .sm\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .sm\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .sm\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .sm\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .sm\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .sm\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .sm\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .sm\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .sm\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .sm\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .sm\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .sm\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .sm\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .sm\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .sm\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .sm\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .sm\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .sm\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .sm\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .sm\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .sm\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .sm\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .sm\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .sm\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .sm\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .sm\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .sm\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .sm\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .sm\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .sm\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .sm\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .sm\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .sm\:px-px { + padding-left: 1px; + padding-right: 1px; } - .sm\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .sm\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .sm\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .sm\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .sm\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .sm\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .sm\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .sm\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .sm\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .sm\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .sm\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .sm\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .sm\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .sm\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .sm\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .sm\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .sm\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .sm\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .sm\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .sm\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .sm\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .sm\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .sm\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .sm\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .sm\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .sm\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .sm\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .sm\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .sm\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .sm\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .sm\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .sm\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .sm\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .sm\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .sm\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .sm\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .sm\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .sm\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .sm\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .sm\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .sm\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .sm\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .sm\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .sm\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .sm\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .sm\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .sm\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .sm\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .sm\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .sm\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .sm\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .sm\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .sm\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .sm\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .sm\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .sm\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .sm\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .sm\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .sm\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .sm\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .sm\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .sm\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .sm\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .sm\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .sm\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .sm\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .sm\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .sm\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .sm\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .sm\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .sm\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .sm\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .sm\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .sm\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .sm\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .sm\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .sm\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .sm\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .sm\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .sm\:pt-0 { + padding-top: 0px; } - .sm\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .sm\:pt-1 { + padding-top: 0.25rem; } - .sm\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .sm\:pt-2 { + padding-top: 0.5rem; } - .sm\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .sm\:pt-3 { + padding-top: 0.75rem; } - .sm\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .sm\:pt-4 { + padding-top: 1rem; } - .sm\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .sm\:pt-5 { + padding-top: 1.25rem; } - .sm\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .sm\:pt-6 { + padding-top: 1.5rem; } - .sm\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .sm\:pt-7 { + padding-top: 1.75rem; } - .sm\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .sm\:pt-8 { + padding-top: 2rem; } - .sm\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .sm\:pt-9 { + padding-top: 2.25rem; } - .sm\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .sm\:pt-10 { + padding-top: 2.5rem; } - .sm\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .sm\:pt-11 { + padding-top: 2.75rem; } - .sm\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .sm\:pt-12 { + padding-top: 3rem; } - .sm\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .sm\:pt-14 { + padding-top: 3.5rem; } - .sm\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .sm\:pt-16 { + padding-top: 4rem; } - .sm\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .sm\:pt-20 { + padding-top: 5rem; } - .sm\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .sm\:pt-24 { + padding-top: 6rem; } - .sm\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .sm\:pt-28 { + padding-top: 7rem; } - .sm\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .sm\:pt-32 { + padding-top: 8rem; } - .sm\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .sm\:pt-36 { + padding-top: 9rem; } - .sm\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .sm\:pt-40 { + padding-top: 10rem; } - .sm\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .sm\:pt-44 { + padding-top: 11rem; } - .sm\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .sm\:pt-48 { + padding-top: 12rem; } - .sm\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .sm\:pt-52 { + padding-top: 13rem; } - .sm\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .sm\:pt-56 { + padding-top: 14rem; } - .sm\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .sm\:pt-60 { + padding-top: 15rem; } - .sm\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .sm\:pt-64 { + padding-top: 16rem; } - .sm\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .sm\:pt-72 { + padding-top: 18rem; } - .sm\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .sm\:pt-80 { + padding-top: 20rem; } - .sm\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .sm\:pt-96 { + padding-top: 24rem; } - .sm\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .sm\:pt-px { + padding-top: 1px; } - .sm\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .sm\:pt-0\.5 { + padding-top: 0.125rem; } - .sm\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .sm\:pt-1\.5 { + padding-top: 0.375rem; } - .sm\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .sm\:pt-2\.5 { + padding-top: 0.625rem; } - .sm\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .sm\:pt-3\.5 { + padding-top: 0.875rem; } - .sm\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .sm\:pr-0 { + padding-right: 0px; } - .sm\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .sm\:pr-1 { + padding-right: 0.25rem; } - .sm\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .sm\:pr-2 { + padding-right: 0.5rem; } - .sm\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .sm\:pr-3 { + padding-right: 0.75rem; } - .sm\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .sm\:pr-4 { + padding-right: 1rem; } - .sm\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .sm\:pr-5 { + padding-right: 1.25rem; } - .sm\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .sm\:pr-6 { + padding-right: 1.5rem; } - .sm\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .sm\:pr-7 { + padding-right: 1.75rem; } - .sm\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .sm\:pr-8 { + padding-right: 2rem; } - .sm\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .sm\:pr-9 { + padding-right: 2.25rem; } - .sm\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .sm\:pr-10 { + padding-right: 2.5rem; } - .sm\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .sm\:pr-11 { + padding-right: 2.75rem; } - .sm\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .sm\:pr-12 { + padding-right: 3rem; } - .sm\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .sm\:pr-14 { + padding-right: 3.5rem; } - .sm\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .sm\:pr-16 { + padding-right: 4rem; } - .sm\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .sm\:pr-20 { + padding-right: 5rem; } - .sm\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .sm\:pr-24 { + padding-right: 6rem; } - .sm\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .sm\:pr-28 { + padding-right: 7rem; } - .sm\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .sm\:pr-32 { + padding-right: 8rem; } - .sm\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .sm\:pr-36 { + padding-right: 9rem; } - .sm\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .sm\:pr-40 { + padding-right: 10rem; } - .sm\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .sm\:pr-44 { + padding-right: 11rem; } - .sm\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .sm\:pr-48 { + padding-right: 12rem; } - .sm\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .sm\:pr-52 { + padding-right: 13rem; } - .sm\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .sm\:pr-56 { + padding-right: 14rem; } - .sm\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .sm\:pr-60 { + padding-right: 15rem; } - .sm\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .sm\:pr-64 { + padding-right: 16rem; } - .sm\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .sm\:pr-72 { + padding-right: 18rem; } - .sm\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .sm\:pr-80 { + padding-right: 20rem; } - .sm\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .sm\:pr-96 { + padding-right: 24rem; } - .sm\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .sm\:pr-px { + padding-right: 1px; } - .sm\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .sm\:pr-0\.5 { + padding-right: 0.125rem; } - .sm\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .sm\:pr-1\.5 { + padding-right: 0.375rem; } - .sm\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .sm\:pr-2\.5 { + padding-right: 0.625rem; } - .sm\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .sm\:pr-3\.5 { + padding-right: 0.875rem; } - .sm\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .sm\:pb-0 { + padding-bottom: 0px; } - .sm\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .sm\:pb-1 { + padding-bottom: 0.25rem; } - .sm\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .sm\:pb-2 { + padding-bottom: 0.5rem; } - .sm\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .sm\:pb-3 { + padding-bottom: 0.75rem; } - .sm\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .sm\:pb-4 { + padding-bottom: 1rem; } - .sm\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .sm\:pb-5 { + padding-bottom: 1.25rem; } - .sm\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .sm\:pb-6 { + padding-bottom: 1.5rem; } - .sm\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .sm\:pb-7 { + padding-bottom: 1.75rem; } - .sm\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .sm\:pb-8 { + padding-bottom: 2rem; } - .sm\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .sm\:pb-9 { + padding-bottom: 2.25rem; } - .sm\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .sm\:pb-10 { + padding-bottom: 2.5rem; } - .sm\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .sm\:pb-11 { + padding-bottom: 2.75rem; } - .sm\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .sm\:pb-12 { + padding-bottom: 3rem; } - .sm\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .sm\:pb-14 { + padding-bottom: 3.5rem; } - .sm\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .sm\:pb-16 { + padding-bottom: 4rem; } - .sm\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .sm\:pb-20 { + padding-bottom: 5rem; } - .sm\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .sm\:pb-24 { + padding-bottom: 6rem; } - .sm\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .sm\:pb-28 { + padding-bottom: 7rem; } - .sm\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .sm\:pb-32 { + padding-bottom: 8rem; } - .sm\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .sm\:pb-36 { + padding-bottom: 9rem; } - .sm\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .sm\:pb-40 { + padding-bottom: 10rem; } - .sm\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .sm\:pb-44 { + padding-bottom: 11rem; } - .sm\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .sm\:pb-48 { + padding-bottom: 12rem; } - .sm\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .sm\:pb-52 { + padding-bottom: 13rem; } - .sm\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .sm\:pb-56 { + padding-bottom: 14rem; } - .sm\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .sm\:pb-60 { + padding-bottom: 15rem; } - .sm\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .sm\:pb-64 { + padding-bottom: 16rem; } - .sm\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .sm\:pb-72 { + padding-bottom: 18rem; } - .sm\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .sm\:pb-80 { + padding-bottom: 20rem; } - .sm\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .sm\:pb-96 { + padding-bottom: 24rem; } - .sm\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .sm\:pb-px { + padding-bottom: 1px; } - .sm\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .sm\:pb-0\.5 { + padding-bottom: 0.125rem; } - .sm\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .sm\:pb-1\.5 { + padding-bottom: 0.375rem; } - .sm\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .sm\:pb-2\.5 { + padding-bottom: 0.625rem; } - .sm\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .sm\:pb-3\.5 { + padding-bottom: 0.875rem; } - .sm\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .sm\:pl-0 { + padding-left: 0px; } - .sm\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .sm\:pl-1 { + padding-left: 0.25rem; } - .sm\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .sm\:pl-2 { + padding-left: 0.5rem; } - .sm\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .sm\:pl-3 { + padding-left: 0.75rem; } - .sm\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .sm\:pl-4 { + padding-left: 1rem; } - .sm\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .sm\:pl-5 { + padding-left: 1.25rem; } - .sm\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .sm\:pl-6 { + padding-left: 1.5rem; } - .sm\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .sm\:pl-7 { + padding-left: 1.75rem; } - .sm\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .sm\:pl-8 { + padding-left: 2rem; } - .sm\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .sm\:pl-9 { + padding-left: 2.25rem; } - .sm\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .sm\:pl-10 { + padding-left: 2.5rem; } - .sm\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .sm\:pl-11 { + padding-left: 2.75rem; } - .sm\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .sm\:pl-12 { + padding-left: 3rem; } - .sm\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .sm\:pl-14 { + padding-left: 3.5rem; } - .sm\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .sm\:pl-16 { + padding-left: 4rem; } - .sm\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .sm\:pl-20 { + padding-left: 5rem; } - .sm\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .sm\:pl-24 { + padding-left: 6rem; } - .sm\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .sm\:pl-28 { + padding-left: 7rem; } - .sm\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .sm\:pl-32 { + padding-left: 8rem; } - .sm\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .sm\:pl-36 { + padding-left: 9rem; } - .sm\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .sm\:pl-40 { + padding-left: 10rem; } - .sm\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .sm\:pl-44 { + padding-left: 11rem; } - .sm\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .sm\:pl-48 { + padding-left: 12rem; } - .sm\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .sm\:pl-52 { + padding-left: 13rem; } - .sm\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .sm\:pl-56 { + padding-left: 14rem; } - .sm\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .sm\:pl-60 { + padding-left: 15rem; } - .sm\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .sm\:pl-64 { + padding-left: 16rem; } - .sm\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .sm\:pl-72 { + padding-left: 18rem; } - .sm\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .sm\:pl-80 { + padding-left: 20rem; } - .sm\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .sm\:pl-96 { + padding-left: 24rem; } - .sm\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .sm\:pl-px { + padding-left: 1px; } - .sm\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .sm\:pl-0\.5 { + padding-left: 0.125rem; } - .sm\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .sm\:pl-1\.5 { + padding-left: 0.375rem; } - .sm\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .sm\:pl-2\.5 { + padding-left: 0.625rem; } - .sm\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .sm\:pl-3\.5 { + padding-left: 0.875rem; } - .sm\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .sm\:text-left { + text-align: left; } - .sm\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .sm\:text-center { + text-align: center; } - .sm\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .sm\:text-right { + text-align: right; } - .sm\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .sm\:text-justify { + text-align: justify; } - .sm\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .sm\:align-baseline { + vertical-align: baseline; } - .sm\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .sm\:align-top { + vertical-align: top; } - .sm\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .sm\:align-middle { + vertical-align: middle; } - .sm\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .sm\:align-bottom { + vertical-align: bottom; } - .sm\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .sm\:align-text-top { + vertical-align: text-top; } - .sm\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .sm\:align-text-bottom { + vertical-align: text-bottom; } - .sm\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .sm\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .sm\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .sm\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .sm\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .sm\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .sm\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .sm\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .sm\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .sm\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .sm\:ring-opacity-0 { - --tw-ring-opacity: 0; + .sm\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .sm\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .sm\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .sm\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .sm\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .sm\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .sm\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .sm\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .sm\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .sm\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .sm\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .sm\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .sm\:text-5xl { + font-size: 3rem; + line-height: 1; } - .sm\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .sm\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .sm\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .sm\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .sm\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .sm\:text-8xl { + font-size: 6rem; + line-height: 1; } - .sm\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .sm\:text-9xl { + font-size: 8rem; + line-height: 1; } - .sm\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .sm\:font-thin { + font-weight: 100; } - .sm\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .sm\:font-extralight { + font-weight: 200; } - .sm\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .sm\:font-light { + font-weight: 300; } - .sm\:ring-opacity-100 { - --tw-ring-opacity: 1; + .sm\:font-normal { + font-weight: 400; } - .sm\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .sm\:font-medium { + font-weight: 500; } - .sm\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .sm\:font-semibold { + font-weight: 600; } - .sm\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .sm\:font-bold { + font-weight: 700; } - .sm\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .sm\:font-extrabold { + font-weight: 800; } - .sm\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .sm\:font-black { + font-weight: 900; } - .sm\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .sm\:uppercase { + text-transform: uppercase; } - .sm\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .sm\:lowercase { + text-transform: lowercase; } - .sm\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .sm\:capitalize { + text-transform: capitalize; } - .sm\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .sm\:normal-case { + text-transform: none; } - .sm\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .sm\:italic { + font-style: italic; } - .sm\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .sm\:not-italic { + font-style: normal; } - .sm\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .sm\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .sm\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .sm\:normal-nums { + font-variant-numeric: normal; } - .sm\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .sm\:ordinal { + --tw-ordinal: ordinal; } - .sm\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .sm\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .sm\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .sm\:lining-nums { + --tw-numeric-figure: lining-nums; } - .sm\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .sm\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .sm\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .sm\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .sm\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .sm\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .sm\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .sm\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .sm\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .sm\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .sm\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .sm\:leading-3 { + line-height: .75rem; } - .sm\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .sm\:leading-4 { + line-height: 1rem; } - .sm\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .sm\:leading-5 { + line-height: 1.25rem; } - .sm\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .sm\:leading-6 { + line-height: 1.5rem; } - .sm\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .sm\:leading-7 { + line-height: 1.75rem; } - .sm\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .sm\:leading-8 { + line-height: 2rem; } - .sm\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .sm\:leading-9 { + line-height: 2.25rem; } - .sm\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .sm\:leading-10 { + line-height: 2.5rem; } - .sm\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .sm\:leading-none { + line-height: 1; } - .sm\:fill-current { - fill: currentColor; + .sm\:leading-tight { + line-height: 1.25; } - .sm\:stroke-current { - stroke: currentColor; + .sm\:leading-snug { + line-height: 1.375; } - .sm\:stroke-0 { - stroke-width: 0; + .sm\:leading-normal { + line-height: 1.5; } - .sm\:stroke-1 { - stroke-width: 1; + .sm\:leading-relaxed { + line-height: 1.625; } - .sm\:stroke-2 { - stroke-width: 2; + .sm\:leading-loose { + line-height: 2; } - .sm\:table-auto { - table-layout: auto; + .sm\:tracking-tighter { + letter-spacing: -0.05em; } - .sm\:table-fixed { - table-layout: fixed; + .sm\:tracking-tight { + letter-spacing: -0.025em; } - .sm\:text-left { - text-align: left; + .sm\:tracking-normal { + letter-spacing: 0em; } - .sm\:text-center { - text-align: center; + .sm\:tracking-wide { + letter-spacing: 0.025em; } - .sm\:text-right { - text-align: right; + .sm\:tracking-wider { + letter-spacing: 0.05em; } - .sm\:text-justify { - text-align: justify; + .sm\:tracking-widest { + letter-spacing: 0.1em; } .sm\:text-transparent { @@ -53869,44 +54058,6 @@ video { --tw-text-opacity: 1; } - .sm\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .sm\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .sm\:overflow-clip { - text-overflow: clip; - } - - .sm\:italic { - font-style: italic; - } - - .sm\:not-italic { - font-style: normal; - } - - .sm\:uppercase { - text-transform: uppercase; - } - - .sm\:lowercase { - text-transform: lowercase; - } - - .sm\:capitalize { - text-transform: capitalize; - } - - .sm\:normal-case { - text-transform: none; - } - .sm\:underline { text-decoration: underline; } @@ -53977,4258 +54128,4669 @@ video { -moz-osx-font-smoothing: auto; } - .sm\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); - } - - .sm\:normal-nums { - font-variant-numeric: normal; - } - - .sm\:ordinal { - --tw-ordinal: ordinal; - } - - .sm\:slashed-zero { - --tw-slashed-zero: slashed-zero; - } - - .sm\:lining-nums { - --tw-numeric-figure: lining-nums; - } - - .sm\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; - } - - .sm\:proportional-nums { - --tw-numeric-spacing: proportional-nums; - } - - .sm\:tabular-nums { - --tw-numeric-spacing: tabular-nums; - } - - .sm\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; - } - - .sm\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; - } - - .sm\:tracking-tighter { - letter-spacing: -0.05em; - } - - .sm\:tracking-tight { - letter-spacing: -0.025em; - } - - .sm\:tracking-normal { - letter-spacing: 0em; - } - - .sm\:tracking-wide { - letter-spacing: 0.025em; + .sm\:placeholder-transparent::placeholder { + color: transparent; } - .sm\:tracking-wider { - letter-spacing: 0.05em; + .sm\:placeholder-current::placeholder { + color: currentColor; } - .sm\:tracking-widest { - letter-spacing: 0.1em; + .sm\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .sm\:select-none { - user-select: none; + .sm\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .sm\:select-text { - user-select: text; + .sm\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .sm\:select-all { - user-select: all; + .sm\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .sm\:select-auto { - user-select: auto; + .sm\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .sm\:align-baseline { - vertical-align: baseline; + .sm\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .sm\:align-top { - vertical-align: top; + .sm\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .sm\:align-middle { - vertical-align: middle; + .sm\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .sm\:align-bottom { - vertical-align: bottom; + .sm\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .sm\:align-text-top { - vertical-align: text-top; + .sm\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .sm\:align-text-bottom { - vertical-align: text-bottom; + .sm\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .sm\:visible { - visibility: visible; + .sm\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .sm\:invisible { - visibility: hidden; + .sm\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .sm\:whitespace-normal { - white-space: normal; + .sm\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .sm\:whitespace-nowrap { - white-space: nowrap; + .sm\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .sm\:whitespace-pre { - white-space: pre; + .sm\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .sm\:whitespace-pre-line { - white-space: pre-line; + .sm\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .sm\:whitespace-pre-wrap { - white-space: pre-wrap; + .sm\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .sm\:break-normal { - overflow-wrap: normal; - word-break: normal; + .sm\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .sm\:break-words { - overflow-wrap: break-word; + .sm\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .sm\:break-all { - word-break: break-all; + .sm\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .sm\:w-0 { - width: 0px; + .sm\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .sm\:w-1 { - width: 0.25rem; + .sm\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .sm\:w-2 { - width: 0.5rem; + .sm\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .sm\:w-3 { - width: 0.75rem; + .sm\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .sm\:w-4 { - width: 1rem; + .sm\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .sm\:w-5 { - width: 1.25rem; + .sm\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .sm\:w-6 { - width: 1.5rem; + .sm\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .sm\:w-7 { - width: 1.75rem; + .sm\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .sm\:w-8 { - width: 2rem; + .sm\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .sm\:w-9 { - width: 2.25rem; + .sm\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .sm\:w-10 { - width: 2.5rem; + .sm\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .sm\:w-11 { - width: 2.75rem; + .sm\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .sm\:w-12 { - width: 3rem; + .sm\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .sm\:w-14 { - width: 3.5rem; + .sm\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .sm\:w-16 { - width: 4rem; + .sm\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .sm\:w-20 { - width: 5rem; + .sm\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .sm\:w-24 { - width: 6rem; + .sm\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .sm\:w-28 { - width: 7rem; + .sm\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .sm\:w-32 { - width: 8rem; + .sm\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .sm\:w-36 { - width: 9rem; + .sm\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .sm\:w-40 { - width: 10rem; + .sm\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .sm\:w-44 { - width: 11rem; + .sm\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .sm\:w-48 { - width: 12rem; + .sm\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .sm\:w-52 { - width: 13rem; + .sm\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .sm\:w-56 { - width: 14rem; + .sm\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .sm\:w-60 { - width: 15rem; + .sm\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .sm\:w-64 { - width: 16rem; + .sm\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .sm\:w-72 { - width: 18rem; + .sm\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .sm\:w-80 { - width: 20rem; + .sm\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .sm\:w-96 { - width: 24rem; + .sm\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .sm\:w-auto { - width: auto; + .sm\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .sm\:w-px { - width: 1px; + .sm\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .sm\:w-0\.5 { - width: 0.125rem; + .sm\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .sm\:w-1\.5 { - width: 0.375rem; + .sm\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .sm\:w-2\.5 { - width: 0.625rem; + .sm\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .sm\:w-3\.5 { - width: 0.875rem; + .sm\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .sm\:w-1\/2 { - width: 50%; + .sm\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .sm\:w-1\/3 { - width: 33.333333%; + .sm\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .sm\:w-2\/3 { - width: 66.666667%; + .sm\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .sm\:w-1\/4 { - width: 25%; + .sm\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .sm\:w-2\/4 { - width: 50%; + .sm\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .sm\:w-3\/4 { - width: 75%; + .sm\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .sm\:w-1\/5 { - width: 20%; + .sm\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .sm\:w-2\/5 { - width: 40%; + .sm\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .sm\:w-3\/5 { - width: 60%; + .sm\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .sm\:w-4\/5 { - width: 80%; + .sm\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .sm\:w-1\/6 { - width: 16.666667%; + .sm\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .sm\:w-2\/6 { - width: 33.333333%; + .sm\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .sm\:w-3\/6 { - width: 50%; + .sm\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .sm\:w-4\/6 { - width: 66.666667%; + .sm\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .sm\:w-5\/6 { - width: 83.333333%; + .sm\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .sm\:w-1\/12 { - width: 8.333333%; + .sm\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .sm\:w-2\/12 { - width: 16.666667%; + .sm\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .sm\:w-3\/12 { - width: 25%; + .sm\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .sm\:w-4\/12 { - width: 33.333333%; + .sm\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .sm\:w-5\/12 { - width: 41.666667%; + .sm\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .sm\:w-6\/12 { - width: 50%; + .sm\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .sm\:w-7\/12 { - width: 58.333333%; + .sm\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .sm\:w-8\/12 { - width: 66.666667%; + .sm\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .sm\:w-9\/12 { - width: 75%; + .sm\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .sm\:w-10\/12 { - width: 83.333333%; + .sm\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .sm\:w-11\/12 { - width: 91.666667%; + .sm\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .sm\:w-full { - width: 100%; + .sm\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .sm\:w-screen { - width: 100vw; + .sm\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .sm\:w-min { - width: min-content; + .sm\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .sm\:w-max { - width: max-content; + .sm\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .sm\:z-0 { - z-index: 0; + .sm\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .sm\:z-10 { - z-index: 10; + .sm\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .sm\:z-20 { - z-index: 20; + .sm\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .sm\:z-30 { - z-index: 30; + .sm\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .sm\:z-40 { - z-index: 40; + .sm\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .sm\:z-50 { - z-index: 50; + .sm\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .sm\:z-auto { - z-index: auto; + .sm\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-0:focus-within { - z-index: 0; + .sm\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-10:focus-within { - z-index: 10; + .sm\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-20:focus-within { - z-index: 20; + .sm\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-30:focus-within { - z-index: 30; + .sm\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-40:focus-within { - z-index: 40; + .sm\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-50:focus-within { - z-index: 50; + .sm\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .sm\:focus-within\:z-auto:focus-within { - z-index: auto; + .sm\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-0:focus { - z-index: 0; + .sm\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-10:focus { - z-index: 10; + .sm\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-20:focus { - z-index: 20; + .sm\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-30:focus { - z-index: 30; + .sm\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-40:focus { - z-index: 40; + .sm\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-50:focus { - z-index: 50; + .sm\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .sm\:focus\:z-auto:focus { - z-index: auto; + .sm\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .sm\:isolate { - isolation: isolate; + .sm\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .sm\:isolation-auto { - isolation: auto; + .sm\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .sm\:gap-0 { - gap: 0px; + .sm\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .sm\:gap-1 { - gap: 0.25rem; + .sm\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .sm\:gap-2 { - gap: 0.5rem; + .sm\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .sm\:gap-3 { - gap: 0.75rem; + .sm\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .sm\:gap-4 { - gap: 1rem; + .sm\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .sm\:gap-5 { - gap: 1.25rem; + .sm\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .sm\:gap-6 { - gap: 1.5rem; + .sm\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .sm\:gap-7 { - gap: 1.75rem; + .sm\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .sm\:gap-8 { - gap: 2rem; + .sm\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .sm\:gap-9 { - gap: 2.25rem; + .sm\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .sm\:gap-10 { - gap: 2.5rem; + .sm\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .sm\:gap-11 { - gap: 2.75rem; + .sm\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .sm\:gap-12 { - gap: 3rem; + .sm\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .sm\:gap-14 { - gap: 3.5rem; + .sm\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .sm\:gap-16 { - gap: 4rem; + .sm\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .sm\:gap-20 { - gap: 5rem; + .sm\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .sm\:gap-24 { - gap: 6rem; + .sm\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .sm\:gap-28 { - gap: 7rem; + .sm\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .sm\:gap-32 { - gap: 8rem; + .sm\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .sm\:gap-36 { - gap: 9rem; + .sm\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .sm\:gap-40 { - gap: 10rem; + .sm\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .sm\:gap-44 { - gap: 11rem; + .sm\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .sm\:gap-48 { - gap: 12rem; + .sm\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .sm\:gap-52 { - gap: 13rem; + .sm\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .sm\:gap-56 { - gap: 14rem; + .sm\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .sm\:gap-60 { - gap: 15rem; + .sm\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .sm\:gap-64 { - gap: 16rem; + .sm\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .sm\:gap-72 { - gap: 18rem; + .sm\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .sm\:gap-80 { - gap: 20rem; + .sm\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .sm\:gap-96 { - gap: 24rem; + .sm\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .sm\:gap-px { - gap: 1px; + .sm\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .sm\:gap-0\.5 { - gap: 0.125rem; + .sm\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .sm\:gap-1\.5 { - gap: 0.375rem; + .sm\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .sm\:gap-2\.5 { - gap: 0.625rem; + .sm\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .sm\:gap-3\.5 { - gap: 0.875rem; + .sm\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .sm\:gap-x-0 { - column-gap: 0px; + .sm\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .sm\:gap-x-1 { - column-gap: 0.25rem; + .sm\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .sm\:gap-x-2 { - column-gap: 0.5rem; + .sm\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .sm\:gap-x-3 { - column-gap: 0.75rem; + .sm\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .sm\:gap-x-4 { - column-gap: 1rem; + .sm\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .sm\:gap-x-5 { - column-gap: 1.25rem; + .sm\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .sm\:gap-x-6 { - column-gap: 1.5rem; + .sm\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .sm\:gap-x-7 { - column-gap: 1.75rem; + .sm\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .sm\:gap-x-8 { - column-gap: 2rem; + .sm\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .sm\:gap-x-9 { - column-gap: 2.25rem; + .sm\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .sm\:gap-x-10 { - column-gap: 2.5rem; + .sm\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .sm\:gap-x-11 { - column-gap: 2.75rem; + .sm\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .sm\:gap-x-12 { - column-gap: 3rem; + .sm\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .sm\:gap-x-14 { - column-gap: 3.5rem; + .sm\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .sm\:gap-x-16 { - column-gap: 4rem; + .sm\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .sm\:gap-x-20 { - column-gap: 5rem; + .sm\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .sm\:gap-x-24 { - column-gap: 6rem; + .sm\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .sm\:gap-x-28 { - column-gap: 7rem; + .sm\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .sm\:gap-x-32 { - column-gap: 8rem; + .sm\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .sm\:gap-x-36 { - column-gap: 9rem; + .sm\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .sm\:gap-x-40 { - column-gap: 10rem; + .sm\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .sm\:gap-x-44 { - column-gap: 11rem; + .sm\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } - .sm\:gap-x-48 { - column-gap: 12rem; + .sm\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } - .sm\:gap-x-52 { - column-gap: 13rem; + .sm\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } - .sm\:gap-x-56 { - column-gap: 14rem; + .sm\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } - .sm\:gap-x-60 { - column-gap: 15rem; + .sm\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } - .sm\:gap-x-64 { - column-gap: 16rem; + .sm\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } - .sm\:gap-x-72 { - column-gap: 18rem; + .sm\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } - .sm\:gap-x-80 { - column-gap: 20rem; + .sm\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } - .sm\:gap-x-96 { - column-gap: 24rem; + .sm\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } - .sm\:gap-x-px { - column-gap: 1px; + .sm\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } - .sm\:gap-x-0\.5 { - column-gap: 0.125rem; + .sm\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } - .sm\:gap-x-1\.5 { - column-gap: 0.375rem; + .sm\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } - .sm\:gap-x-2\.5 { - column-gap: 0.625rem; + .sm\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } - .sm\:gap-x-3\.5 { - column-gap: 0.875rem; + .sm\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } - .sm\:gap-y-0 { - row-gap: 0px; + .sm\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } - .sm\:gap-y-1 { - row-gap: 0.25rem; + .sm\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } - .sm\:gap-y-2 { - row-gap: 0.5rem; + .sm\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } - .sm\:gap-y-3 { - row-gap: 0.75rem; + .sm\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } - .sm\:gap-y-4 { - row-gap: 1rem; + .sm\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } - .sm\:gap-y-5 { - row-gap: 1.25rem; + .sm\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } - .sm\:gap-y-6 { - row-gap: 1.5rem; + .sm\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } - .sm\:gap-y-7 { - row-gap: 1.75rem; + .sm\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } - .sm\:gap-y-8 { - row-gap: 2rem; + .sm\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } - .sm\:gap-y-9 { - row-gap: 2.25rem; + .sm\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } - .sm\:gap-y-10 { - row-gap: 2.5rem; + .sm\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } - .sm\:gap-y-11 { - row-gap: 2.75rem; + .sm\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } - .sm\:gap-y-12 { - row-gap: 3rem; + .sm\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } - .sm\:gap-y-14 { - row-gap: 3.5rem; + .sm\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } - .sm\:gap-y-16 { - row-gap: 4rem; + .sm\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } - .sm\:gap-y-20 { - row-gap: 5rem; + .sm\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } - .sm\:gap-y-24 { - row-gap: 6rem; + .sm\:opacity-0 { + opacity: 0; } - .sm\:gap-y-28 { - row-gap: 7rem; + .sm\:opacity-5 { + opacity: 0.05; } - .sm\:gap-y-32 { - row-gap: 8rem; + .sm\:opacity-10 { + opacity: 0.1; } - .sm\:gap-y-36 { - row-gap: 9rem; + .sm\:opacity-20 { + opacity: 0.2; } - .sm\:gap-y-40 { - row-gap: 10rem; + .sm\:opacity-25 { + opacity: 0.25; } - .sm\:gap-y-44 { - row-gap: 11rem; + .sm\:opacity-30 { + opacity: 0.3; } - .sm\:gap-y-48 { - row-gap: 12rem; + .sm\:opacity-40 { + opacity: 0.4; } - .sm\:gap-y-52 { - row-gap: 13rem; + .sm\:opacity-50 { + opacity: 0.5; } - .sm\:gap-y-56 { - row-gap: 14rem; + .sm\:opacity-60 { + opacity: 0.6; } - .sm\:gap-y-60 { - row-gap: 15rem; + .sm\:opacity-70 { + opacity: 0.7; } - .sm\:gap-y-64 { - row-gap: 16rem; + .sm\:opacity-75 { + opacity: 0.75; } - .sm\:gap-y-72 { - row-gap: 18rem; + .sm\:opacity-80 { + opacity: 0.8; } - .sm\:gap-y-80 { - row-gap: 20rem; + .sm\:opacity-90 { + opacity: 0.9; } - .sm\:gap-y-96 { - row-gap: 24rem; + .sm\:opacity-95 { + opacity: 0.95; } - .sm\:gap-y-px { - row-gap: 1px; + .sm\:opacity-100 { + opacity: 1; } - .sm\:gap-y-0\.5 { - row-gap: 0.125rem; + .group:hover .sm\:group-hover\:opacity-0 { + opacity: 0; } - .sm\:gap-y-1\.5 { - row-gap: 0.375rem; + .group:hover .sm\:group-hover\:opacity-5 { + opacity: 0.05; } - .sm\:gap-y-2\.5 { - row-gap: 0.625rem; + .group:hover .sm\:group-hover\:opacity-10 { + opacity: 0.1; } - .sm\:gap-y-3\.5 { - row-gap: 0.875rem; + .group:hover .sm\:group-hover\:opacity-20 { + opacity: 0.2; } - .sm\:grid-flow-row { - grid-auto-flow: row; + .group:hover .sm\:group-hover\:opacity-25 { + opacity: 0.25; } - .sm\:grid-flow-col { - grid-auto-flow: column; + .group:hover .sm\:group-hover\:opacity-30 { + opacity: 0.3; } - .sm\:grid-flow-row-dense { - grid-auto-flow: row dense; + .group:hover .sm\:group-hover\:opacity-40 { + opacity: 0.4; } - .sm\:grid-flow-col-dense { - grid-auto-flow: column dense; + .group:hover .sm\:group-hover\:opacity-50 { + opacity: 0.5; } - .sm\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-60 { + opacity: 0.6; } - .sm\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-70 { + opacity: 0.7; } - .sm\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-75 { + opacity: 0.75; } - .sm\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-80 { + opacity: 0.8; } - .sm\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-90 { + opacity: 0.9; } - .sm\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-95 { + opacity: 0.95; } - .sm\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .group:hover .sm\:group-hover\:opacity-100 { + opacity: 1; } - .sm\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .sm\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .sm\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .sm\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .sm\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .sm\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .sm\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .sm\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .sm\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .sm\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .sm\:grid-cols-none { - grid-template-columns: none; + .sm\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .sm\:auto-cols-auto { - grid-auto-columns: auto; + .sm\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .sm\:auto-cols-min { - grid-auto-columns: min-content; + .sm\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .sm\:auto-cols-max { - grid-auto-columns: max-content; + .sm\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .sm\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .sm\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .sm\:col-auto { - grid-column: auto; + .sm\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .sm\:col-span-1 { - grid-column: span 1 / span 1; + .sm\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .sm\:col-span-2 { - grid-column: span 2 / span 2; + .sm\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .sm\:col-span-3 { - grid-column: span 3 / span 3; + .sm\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .sm\:col-span-4 { - grid-column: span 4 / span 4; + .sm\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .sm\:col-span-5 { - grid-column: span 5 / span 5; + .sm\:hover\:opacity-0:hover { + opacity: 0; } - .sm\:col-span-6 { - grid-column: span 6 / span 6; + .sm\:hover\:opacity-5:hover { + opacity: 0.05; } - .sm\:col-span-7 { - grid-column: span 7 / span 7; + .sm\:hover\:opacity-10:hover { + opacity: 0.1; } - .sm\:col-span-8 { - grid-column: span 8 / span 8; + .sm\:hover\:opacity-20:hover { + opacity: 0.2; } - .sm\:col-span-9 { - grid-column: span 9 / span 9; + .sm\:hover\:opacity-25:hover { + opacity: 0.25; } - .sm\:col-span-10 { - grid-column: span 10 / span 10; + .sm\:hover\:opacity-30:hover { + opacity: 0.3; } - .sm\:col-span-11 { - grid-column: span 11 / span 11; + .sm\:hover\:opacity-40:hover { + opacity: 0.4; } - .sm\:col-span-12 { - grid-column: span 12 / span 12; + .sm\:hover\:opacity-50:hover { + opacity: 0.5; } - .sm\:col-span-full { - grid-column: 1 / -1; + .sm\:hover\:opacity-60:hover { + opacity: 0.6; } - .sm\:col-start-1 { - grid-column-start: 1; + .sm\:hover\:opacity-70:hover { + opacity: 0.7; } - .sm\:col-start-2 { - grid-column-start: 2; + .sm\:hover\:opacity-75:hover { + opacity: 0.75; } - .sm\:col-start-3 { - grid-column-start: 3; + .sm\:hover\:opacity-80:hover { + opacity: 0.8; } - .sm\:col-start-4 { - grid-column-start: 4; + .sm\:hover\:opacity-90:hover { + opacity: 0.9; } - .sm\:col-start-5 { - grid-column-start: 5; + .sm\:hover\:opacity-95:hover { + opacity: 0.95; } - .sm\:col-start-6 { - grid-column-start: 6; + .sm\:hover\:opacity-100:hover { + opacity: 1; } - .sm\:col-start-7 { - grid-column-start: 7; + .sm\:focus\:opacity-0:focus { + opacity: 0; } - .sm\:col-start-8 { - grid-column-start: 8; + .sm\:focus\:opacity-5:focus { + opacity: 0.05; } - .sm\:col-start-9 { - grid-column-start: 9; + .sm\:focus\:opacity-10:focus { + opacity: 0.1; } - .sm\:col-start-10 { - grid-column-start: 10; + .sm\:focus\:opacity-20:focus { + opacity: 0.2; } - .sm\:col-start-11 { - grid-column-start: 11; + .sm\:focus\:opacity-25:focus { + opacity: 0.25; } - .sm\:col-start-12 { - grid-column-start: 12; + .sm\:focus\:opacity-30:focus { + opacity: 0.3; } - .sm\:col-start-13 { - grid-column-start: 13; + .sm\:focus\:opacity-40:focus { + opacity: 0.4; } - .sm\:col-start-auto { - grid-column-start: auto; + .sm\:focus\:opacity-50:focus { + opacity: 0.5; } - .sm\:col-end-1 { - grid-column-end: 1; + .sm\:focus\:opacity-60:focus { + opacity: 0.6; } - .sm\:col-end-2 { - grid-column-end: 2; + .sm\:focus\:opacity-70:focus { + opacity: 0.7; } - .sm\:col-end-3 { - grid-column-end: 3; + .sm\:focus\:opacity-75:focus { + opacity: 0.75; } - .sm\:col-end-4 { - grid-column-end: 4; + .sm\:focus\:opacity-80:focus { + opacity: 0.8; } - .sm\:col-end-5 { - grid-column-end: 5; + .sm\:focus\:opacity-90:focus { + opacity: 0.9; } - .sm\:col-end-6 { - grid-column-end: 6; + .sm\:focus\:opacity-95:focus { + opacity: 0.95; } - .sm\:col-end-7 { - grid-column-end: 7; + .sm\:focus\:opacity-100:focus { + opacity: 1; } - .sm\:col-end-8 { - grid-column-end: 8; + .sm\:bg-blend-normal { + background-blend-mode: normal; } - .sm\:col-end-9 { - grid-column-end: 9; + .sm\:bg-blend-multiply { + background-blend-mode: multiply; } - .sm\:col-end-10 { - grid-column-end: 10; + .sm\:bg-blend-screen { + background-blend-mode: screen; } - .sm\:col-end-11 { - grid-column-end: 11; + .sm\:bg-blend-overlay { + background-blend-mode: overlay; } - .sm\:col-end-12 { - grid-column-end: 12; + .sm\:bg-blend-darken { + background-blend-mode: darken; } - .sm\:col-end-13 { - grid-column-end: 13; + .sm\:bg-blend-lighten { + background-blend-mode: lighten; } - .sm\:col-end-auto { - grid-column-end: auto; + .sm\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .sm\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .sm\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .sm\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .sm\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .sm\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .sm\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .sm\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .sm\:bg-blend-difference { + background-blend-mode: difference; } - .sm\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .sm\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .sm\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .sm\:bg-blend-hue { + background-blend-mode: hue; } - .sm\:grid-rows-none { - grid-template-rows: none; + .sm\:bg-blend-saturation { + background-blend-mode: saturation; } - .sm\:auto-rows-auto { - grid-auto-rows: auto; + .sm\:bg-blend-color { + background-blend-mode: color; } - .sm\:auto-rows-min { - grid-auto-rows: min-content; + .sm\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .sm\:auto-rows-max { - grid-auto-rows: max-content; + .sm\:mix-blend-normal { + mix-blend-mode: normal; } - .sm\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .sm\:mix-blend-multiply { + mix-blend-mode: multiply; } - .sm\:row-auto { - grid-row: auto; + .sm\:mix-blend-screen { + mix-blend-mode: screen; } - .sm\:row-span-1 { - grid-row: span 1 / span 1; + .sm\:mix-blend-overlay { + mix-blend-mode: overlay; } - .sm\:row-span-2 { - grid-row: span 2 / span 2; + .sm\:mix-blend-darken { + mix-blend-mode: darken; } - .sm\:row-span-3 { - grid-row: span 3 / span 3; + .sm\:mix-blend-lighten { + mix-blend-mode: lighten; } - .sm\:row-span-4 { - grid-row: span 4 / span 4; + .sm\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .sm\:row-span-5 { - grid-row: span 5 / span 5; + .sm\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .sm\:row-span-6 { - grid-row: span 6 / span 6; + .sm\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .sm\:row-span-full { - grid-row: 1 / -1; + .sm\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .sm\:row-start-1 { - grid-row-start: 1; + .sm\:mix-blend-difference { + mix-blend-mode: difference; } - .sm\:row-start-2 { - grid-row-start: 2; + .sm\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .sm\:row-start-3 { - grid-row-start: 3; + .sm\:mix-blend-hue { + mix-blend-mode: hue; } - .sm\:row-start-4 { - grid-row-start: 4; + .sm\:mix-blend-saturation { + mix-blend-mode: saturation; } - .sm\:row-start-5 { - grid-row-start: 5; + .sm\:mix-blend-color { + mix-blend-mode: color; } - .sm\:row-start-6 { - grid-row-start: 6; + .sm\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .sm\:row-start-7 { - grid-row-start: 7; + .sm\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-start-auto { - grid-row-start: auto; + .sm\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-1 { - grid-row-end: 1; + .sm\: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); } - .sm\:row-end-2 { - grid-row-end: 2; + .sm\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-3 { - grid-row-end: 3; + .sm\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-4 { - grid-row-end: 4; + .sm\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-5 { - grid-row-end: 5; + .sm\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-6 { - grid-row-end: 6; + .sm\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-7 { - grid-row-end: 7; + .group:hover .sm\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:row-end-auto { - grid-row-end: auto; + .group:hover .sm\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .sm\:group-hover\: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); } - .sm\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .sm\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:transform-none { - transform: none; + .group:hover .sm\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-center { - transform-origin: center; + .group:hover .sm\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-top { - transform-origin: top; + .group:hover .sm\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-top-right { - transform-origin: top right; + .group:hover .sm\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-right { - transform-origin: right; + .sm\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-bottom-right { - transform-origin: bottom right; + .sm\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-bottom { - transform-origin: bottom; + .sm\:focus-within\:shadow-md:focus-within { + --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); } - .sm\:origin-bottom-left { - transform-origin: bottom left; + .sm\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-left { - transform-origin: left; + .sm\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:origin-top-left { - transform-origin: top left; + .sm\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .sm\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .sm\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .sm\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .sm\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .sm\:hover\:shadow-md:hover { + --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); } - .sm\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .sm\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .sm\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .sm\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .sm\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .sm\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-0 { - --tw-scale-x: 0; + .sm\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-50 { - --tw-scale-x: .5; + .sm\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-75 { - --tw-scale-x: .75; + .sm\:focus\:shadow-md:focus { + --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); } - .sm\:scale-x-90 { - --tw-scale-x: .9; + .sm\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-95 { - --tw-scale-x: .95; + .sm\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-100 { - --tw-scale-x: 1; + .sm\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-105 { - --tw-scale-x: 1.05; + .sm\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-110 { - --tw-scale-x: 1.1; + .sm\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .sm\:scale-x-125 { - --tw-scale-x: 1.25; + .sm\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .sm\:scale-x-150 { - --tw-scale-x: 1.5; + .sm\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .sm\:scale-y-0 { - --tw-scale-y: 0; + .sm\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .sm\:scale-y-50 { - --tw-scale-y: .5; + .sm\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .sm\:scale-y-75 { - --tw-scale-y: .75; + .sm\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .sm\:scale-y-90 { - --tw-scale-y: .9; + .sm\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .sm\:scale-y-95 { - --tw-scale-y: .95; + .sm\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .sm\:scale-y-100 { - --tw-scale-y: 1; + .sm\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .sm\:scale-y-105 { - --tw-scale-y: 1.05; + .sm\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .sm\:scale-y-110 { - --tw-scale-y: 1.1; + .sm\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:scale-y-125 { - --tw-scale-y: 1.25; + .sm\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:scale-y-150 { - --tw-scale-y: 1.5; + .sm\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .sm\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .sm\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .sm\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .sm\:ring-inset { + --tw-ring-inset: inset; } - .sm\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .sm\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .sm\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .sm\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .sm\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .sm\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .sm\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .sm\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .sm\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .sm\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .sm\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .sm\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .sm\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .sm\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .sm\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .sm\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .sm\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .sm\:ring-transparent { + --tw-ring-color: transparent; } - .sm\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .sm\:ring-current { + --tw-ring-color: currentColor; } - .sm\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .sm\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .sm\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .sm\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .sm\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .sm\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .sm\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .sm\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .sm\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .sm\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .sm\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .sm\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .sm\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .sm\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .sm\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .sm\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .sm\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .sm\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .sm\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .sm\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .sm\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .sm\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .sm\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .sm\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .sm\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .sm\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .sm\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .sm\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .sm\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .sm\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .sm\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .sm\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .sm\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .sm\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .sm\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .sm\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .sm\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .sm\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .sm\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .sm\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .sm\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .sm\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .sm\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .sm\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .sm\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .sm\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .sm\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .sm\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .sm\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .sm\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .sm\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .sm\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .sm\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .sm\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .sm\:rotate-0 { - --tw-rotate: 0deg; + .sm\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .sm\:rotate-1 { - --tw-rotate: 1deg; + .sm\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .sm\:rotate-2 { - --tw-rotate: 2deg; + .sm\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .sm\:rotate-3 { - --tw-rotate: 3deg; + .sm\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .sm\:rotate-6 { - --tw-rotate: 6deg; + .sm\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .sm\:rotate-12 { - --tw-rotate: 12deg; + .sm\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .sm\:rotate-45 { - --tw-rotate: 45deg; + .sm\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .sm\:rotate-90 { - --tw-rotate: 90deg; + .sm\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .sm\:rotate-180 { - --tw-rotate: 180deg; + .sm\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .sm\:-rotate-180 { - --tw-rotate: -180deg; + .sm\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .sm\:-rotate-90 { - --tw-rotate: -90deg; + .sm\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .sm\:-rotate-45 { - --tw-rotate: -45deg; + .sm\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .sm\:-rotate-12 { - --tw-rotate: -12deg; + .sm\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .sm\:-rotate-6 { - --tw-rotate: -6deg; + .sm\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .sm\:-rotate-3 { - --tw-rotate: -3deg; + .sm\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .sm\:-rotate-2 { - --tw-rotate: -2deg; + .sm\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .sm\:-rotate-1 { - --tw-rotate: -1deg; + .sm\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .sm\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .sm\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .sm\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .sm\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .sm\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .sm\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .sm\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .sm\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .sm\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .sm\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .sm\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .sm\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .sm\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .sm\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .sm\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .sm\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .sm\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .sm\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .sm\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .sm\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .sm\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .sm\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .sm\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .sm\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .sm\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .sm\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .sm\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .sm\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .sm\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .sm\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .sm\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .sm\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .sm\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .sm\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .sm\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .sm\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .sm\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .sm\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .sm\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .sm\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .sm\:translate-x-0 { - --tw-translate-x: 0px; + .sm\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .sm\:translate-x-1 { - --tw-translate-x: 0.25rem; + .sm\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .sm\:translate-x-2 { - --tw-translate-x: 0.5rem; + .sm\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .sm\:translate-x-3 { - --tw-translate-x: 0.75rem; + .sm\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .sm\:translate-x-4 { - --tw-translate-x: 1rem; + .sm\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .sm\:translate-x-5 { - --tw-translate-x: 1.25rem; + .sm\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .sm\:translate-x-6 { - --tw-translate-x: 1.5rem; + .sm\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .sm\:translate-x-7 { - --tw-translate-x: 1.75rem; + .sm\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .sm\:translate-x-8 { - --tw-translate-x: 2rem; + .sm\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .sm\:translate-x-9 { - --tw-translate-x: 2.25rem; + .sm\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .sm\:translate-x-10 { - --tw-translate-x: 2.5rem; + .sm\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .sm\:translate-x-11 { - --tw-translate-x: 2.75rem; + .sm\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .sm\:translate-x-12 { - --tw-translate-x: 3rem; + .sm\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .sm\:translate-x-14 { - --tw-translate-x: 3.5rem; + .sm\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .sm\:translate-x-16 { - --tw-translate-x: 4rem; + .sm\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .sm\:translate-x-20 { - --tw-translate-x: 5rem; + .sm\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .sm\:translate-x-24 { - --tw-translate-x: 6rem; + .sm\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .sm\:translate-x-28 { - --tw-translate-x: 7rem; + .sm\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .sm\:translate-x-32 { - --tw-translate-x: 8rem; + .sm\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .sm\:translate-x-36 { - --tw-translate-x: 9rem; + .sm\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .sm\:translate-x-40 { - --tw-translate-x: 10rem; + .sm\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .sm\:translate-x-44 { - --tw-translate-x: 11rem; + .sm\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .sm\:translate-x-48 { - --tw-translate-x: 12rem; + .sm\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .sm\:translate-x-52 { - --tw-translate-x: 13rem; + .sm\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .sm\:translate-x-56 { - --tw-translate-x: 14rem; + .sm\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .sm\:translate-x-60 { - --tw-translate-x: 15rem; + .sm\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .sm\:translate-x-64 { - --tw-translate-x: 16rem; + .sm\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .sm\:translate-x-72 { - --tw-translate-x: 18rem; + .sm\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .sm\:translate-x-80 { - --tw-translate-x: 20rem; + .sm\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .sm\:translate-x-96 { - --tw-translate-x: 24rem; + .sm\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .sm\:translate-x-px { - --tw-translate-x: 1px; + .sm\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .sm\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .sm\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .sm\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .sm\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .sm\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .sm\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .sm\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .sm\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .sm\:-translate-x-0 { - --tw-translate-x: 0px; + .sm\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .sm\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .sm\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .sm\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .sm\:-translate-x-4 { - --tw-translate-x: -1rem; + .sm\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .sm\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .sm\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .sm\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .sm\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .sm\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .sm\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .sm\:-translate-x-8 { - --tw-translate-x: -2rem; + .sm\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .sm\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .sm\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .sm\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .sm\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .sm\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-12 { - --tw-translate-x: -3rem; + .sm\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .sm\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .sm\:-translate-x-16 { - --tw-translate-x: -4rem; + .sm\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .sm\:-translate-x-20 { - --tw-translate-x: -5rem; + .sm\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .sm\:-translate-x-24 { - --tw-translate-x: -6rem; + .sm\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .sm\:-translate-x-28 { - --tw-translate-x: -7rem; + .sm\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .sm\:-translate-x-32 { - --tw-translate-x: -8rem; + .sm\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .sm\:-translate-x-36 { - --tw-translate-x: -9rem; + .sm\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .sm\:-translate-x-40 { - --tw-translate-x: -10rem; + .sm\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-44 { - --tw-translate-x: -11rem; + .sm\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-48 { - --tw-translate-x: -12rem; + .sm\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .sm\:-translate-x-52 { - --tw-translate-x: -13rem; + .sm\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .sm\:-translate-x-56 { - --tw-translate-x: -14rem; + .sm\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .sm\:-translate-x-60 { - --tw-translate-x: -15rem; + .sm\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .sm\:-translate-x-64 { - --tw-translate-x: -16rem; + .sm\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .sm\:-translate-x-72 { - --tw-translate-x: -18rem; + .sm\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .sm\:-translate-x-80 { - --tw-translate-x: -20rem; + .sm\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .sm\:-translate-x-96 { - --tw-translate-x: -24rem; + .sm\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .sm\:-translate-x-px { - --tw-translate-x: -1px; + .sm\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .sm\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .sm\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .sm\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .sm\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .sm\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .sm\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .sm\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .sm\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .sm\:translate-x-1\/2 { - --tw-translate-x: 50%; + .sm\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .sm\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .sm\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .sm\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .sm\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .sm\:translate-x-1\/4 { - --tw-translate-x: 25%; + .sm\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .sm\:translate-x-2\/4 { - --tw-translate-x: 50%; + .sm\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .sm\:translate-x-3\/4 { - --tw-translate-x: 75%; + .sm\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .sm\:translate-x-full { - --tw-translate-x: 100%; + .sm\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .sm\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .sm\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .sm\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .sm\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .sm\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .sm\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .sm\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .sm\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .sm\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .sm\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .sm\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .sm\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .sm\:-translate-x-full { - --tw-translate-x: -100%; + .sm\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .sm\:translate-y-0 { - --tw-translate-y: 0px; + .sm\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .sm\:translate-y-1 { - --tw-translate-y: 0.25rem; + .sm\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .sm\:translate-y-2 { - --tw-translate-y: 0.5rem; + .sm\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .sm\:translate-y-3 { - --tw-translate-y: 0.75rem; + .sm\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .sm\:translate-y-4 { - --tw-translate-y: 1rem; + .sm\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .sm\:translate-y-5 { - --tw-translate-y: 1.25rem; + .sm\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .sm\:translate-y-6 { - --tw-translate-y: 1.5rem; + .sm\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .sm\:translate-y-7 { - --tw-translate-y: 1.75rem; + .sm\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .sm\:translate-y-8 { - --tw-translate-y: 2rem; + .sm\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .sm\:translate-y-9 { - --tw-translate-y: 2.25rem; + .sm\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .sm\:translate-y-10 { - --tw-translate-y: 2.5rem; + .sm\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .sm\:translate-y-11 { - --tw-translate-y: 2.75rem; + .sm\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .sm\:translate-y-12 { - --tw-translate-y: 3rem; + .sm\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .sm\:translate-y-14 { - --tw-translate-y: 3.5rem; + .sm\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .sm\:translate-y-16 { - --tw-translate-y: 4rem; + .sm\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .sm\:translate-y-20 { - --tw-translate-y: 5rem; + .sm\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .sm\:translate-y-24 { - --tw-translate-y: 6rem; + .sm\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .sm\:translate-y-28 { - --tw-translate-y: 7rem; + .sm\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .sm\:translate-y-32 { - --tw-translate-y: 8rem; + .sm\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .sm\:translate-y-36 { - --tw-translate-y: 9rem; + .sm\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .sm\:translate-y-40 { - --tw-translate-y: 10rem; + .sm\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .sm\:translate-y-44 { - --tw-translate-y: 11rem; + .sm\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .sm\:translate-y-48 { - --tw-translate-y: 12rem; + .sm\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .sm\:translate-y-52 { - --tw-translate-y: 13rem; + .sm\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .sm\:translate-y-56 { - --tw-translate-y: 14rem; + .sm\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .sm\:translate-y-60 { - --tw-translate-y: 15rem; + .sm\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .sm\:translate-y-64 { - --tw-translate-y: 16rem; + .sm\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .sm\:translate-y-72 { - --tw-translate-y: 18rem; + .sm\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .sm\:translate-y-80 { - --tw-translate-y: 20rem; + .sm\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .sm\:translate-y-96 { - --tw-translate-y: 24rem; + .sm\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .sm\:translate-y-px { - --tw-translate-y: 1px; + .sm\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .sm\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .sm\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .sm\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .sm\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .sm\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .sm\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .sm\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .sm\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .sm\:-translate-y-0 { - --tw-translate-y: 0px; + .sm\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .sm\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .sm\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .sm\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .sm\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .sm\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .sm\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .sm\:-translate-y-4 { - --tw-translate-y: -1rem; + .sm\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .sm\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .sm\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .sm\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .sm\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .sm\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .sm\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .sm\:-translate-y-8 { - --tw-translate-y: -2rem; + .sm\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .sm\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .sm\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .sm\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .sm\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .sm\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .sm\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .sm\:-translate-y-12 { - --tw-translate-y: -3rem; + .sm\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .sm\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .sm\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .sm\:-translate-y-16 { - --tw-translate-y: -4rem; + .sm\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .sm\:-translate-y-20 { - --tw-translate-y: -5rem; + .sm\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .sm\:-translate-y-24 { - --tw-translate-y: -6rem; + .sm\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .sm\:-translate-y-28 { - --tw-translate-y: -7rem; + .sm\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .sm\:-translate-y-32 { - --tw-translate-y: -8rem; + .sm\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .sm\:-translate-y-36 { - --tw-translate-y: -9rem; + .sm\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .sm\:-translate-y-40 { - --tw-translate-y: -10rem; + .sm\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .sm\:-translate-y-44 { - --tw-translate-y: -11rem; + .sm\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .sm\:-translate-y-48 { - --tw-translate-y: -12rem; + .sm\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .sm\:-translate-y-52 { - --tw-translate-y: -13rem; + .sm\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .sm\:-translate-y-56 { - --tw-translate-y: -14rem; + .sm\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .sm\:-translate-y-60 { - --tw-translate-y: -15rem; + .sm\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .sm\:-translate-y-64 { - --tw-translate-y: -16rem; + .sm\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .sm\:-translate-y-72 { - --tw-translate-y: -18rem; + .sm\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .sm\:-translate-y-80 { - --tw-translate-y: -20rem; + .sm\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .sm\:-translate-y-96 { - --tw-translate-y: -24rem; + .sm\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .sm\:-translate-y-px { - --tw-translate-y: -1px; + .sm\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .sm\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .sm\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .sm\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .sm\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .sm\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .sm\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .sm\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .sm\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .sm\:translate-y-1\/2 { - --tw-translate-y: 50%; + .sm\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .sm\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .sm\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .sm\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .sm\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .sm\:translate-y-1\/4 { - --tw-translate-y: 25%; + .sm\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .sm\:translate-y-2\/4 { - --tw-translate-y: 50%; + .sm\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .sm\:translate-y-3\/4 { - --tw-translate-y: 75%; + .sm\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .sm\:translate-y-full { - --tw-translate-y: 100%; + .sm\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .sm\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .sm\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .sm\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .sm\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .sm\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .sm\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .sm\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .sm\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .sm\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .sm\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .sm\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .sm\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .sm\:-translate-y-full { - --tw-translate-y: -100%; + .sm\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .sm\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .sm\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .sm\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .sm\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .sm\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .sm\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .sm\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .sm\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .sm\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .sm\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .sm\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .sm\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .sm\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .sm\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .sm\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .sm\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .sm\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .sm\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .sm\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .sm\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .sm\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .sm\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .sm\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .sm\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .sm\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .sm\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .sm\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .sm\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .sm\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .sm\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .sm\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .sm\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .sm\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .sm\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .sm\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .sm\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .sm\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .sm\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .sm\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .sm\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .sm\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .sm\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .sm\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .sm\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .sm\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .sm\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .sm\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .sm\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .sm\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .sm\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .sm\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .sm\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .sm\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .sm\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .sm\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .sm\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .sm\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .sm\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .sm\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .sm\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .sm\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .sm\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .sm\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .sm\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .sm\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .sm\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .sm\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .sm\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .sm\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .sm\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .sm\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .sm\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .sm\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .sm\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .sm\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .sm\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .sm\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .sm\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .sm\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .sm\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .sm\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .sm\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .sm\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .sm\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .sm\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .sm\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .sm\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .sm\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .sm\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .sm\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .sm\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .sm\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .sm\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .sm\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .sm\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .sm\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .sm\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .sm\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .sm\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .sm\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .sm\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .sm\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .sm\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .sm\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .sm\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .sm\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .sm\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .sm\:ring-offset-black { + --tw-ring-offset-color: #000; } - .sm\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .sm\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .sm\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .sm\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .sm\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .sm\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .sm\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .sm\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .sm\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .sm\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .sm\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .sm\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .sm\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .sm\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .sm\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .sm\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .sm\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .sm\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .sm\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .sm\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .sm\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .sm\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .sm\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .sm\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .sm\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .sm\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .sm\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .sm\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .sm\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .sm\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .sm\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .sm\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .sm\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .sm\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .sm\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .sm\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .sm\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .sm\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .sm\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .sm\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .sm\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .sm\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .sm\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .sm\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .sm\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .sm\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .sm\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .sm\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .sm\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .sm\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .sm\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .sm\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .sm\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .sm\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .sm\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .sm\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .sm\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .sm\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .sm\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .sm\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .sm\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .sm\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .sm\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .sm\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .sm\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .sm\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .sm\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .sm\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .sm\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .sm\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .sm\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .sm\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .sm\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .sm\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .sm\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .sm\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .sm\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .sm\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .sm\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .sm\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .sm\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .sm\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .sm\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .sm\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .sm\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .sm\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .sm\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .sm\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .sm\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .sm\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .sm\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .sm\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .sm\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .sm\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .sm\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .sm\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .sm\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .sm\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .sm\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .sm\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .sm\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .sm\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .sm\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .sm\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .sm\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .sm\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .sm\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .sm\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .sm\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .sm\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .sm\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .sm\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .sm\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .sm\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .sm\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .sm\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .sm\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .sm\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .sm\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .sm\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .sm\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .sm\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .sm\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .sm\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .sm\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .sm\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .sm\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .sm\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .sm\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .sm\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .sm\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .sm\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .sm\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .sm\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .sm\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .sm\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .sm\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .sm\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .sm\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .sm\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .sm\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .sm\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .sm\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .sm\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .sm\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .sm\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .sm\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .sm\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .sm\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .sm\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .sm\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .sm\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .sm\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .sm\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .sm\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .sm\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .sm\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .sm\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .sm\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .sm\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .sm\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .sm\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .sm\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .sm\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .sm\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .sm\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .sm\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .sm\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .sm\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .sm\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .sm\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .sm\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .sm\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .sm\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .sm\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .sm\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .sm\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .sm\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .sm\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .sm\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .sm\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .sm\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .sm\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .sm\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .sm\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .sm\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .sm\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .sm\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .sm\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .sm\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .sm\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .sm\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .sm\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .sm\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .sm\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .sm\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .sm\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .sm\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .sm\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .sm\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .sm\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .sm\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .sm\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .sm\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .sm\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .sm\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .sm\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .sm\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .sm\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .sm\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .sm\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .sm\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .sm\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .sm\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .sm\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .sm\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .sm\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .sm\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .sm\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .sm\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .sm\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .sm\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .sm\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .sm\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .sm\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .sm\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .sm\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .sm\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .sm\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .sm\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .sm\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .sm\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - - .sm\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + + .sm\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .sm\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .sm\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .sm\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .sm\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .sm\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .sm\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .sm\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .sm\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .sm\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .sm\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .sm\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .sm\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .sm\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .sm\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .sm\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .sm\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .sm\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .sm\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .sm\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .sm\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .sm\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .sm\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .sm\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .sm\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .sm\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .sm\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .sm\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .sm\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .sm\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .sm\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .sm\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .sm\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .sm\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .sm\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .sm\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .sm\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .sm\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .sm\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .sm\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .sm\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .sm\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .sm\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .sm\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .sm\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .sm\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .sm\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .sm\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .sm\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .sm\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .sm\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .sm\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .sm\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .sm\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .sm\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .sm\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .sm\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .sm\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .sm\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .sm\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .sm\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .sm\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .sm\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .sm\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .sm\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .sm\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .sm\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .sm\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .sm\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .sm\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .sm\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .sm\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .sm\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .sm\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .sm\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .sm\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .sm\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .sm\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .sm\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .sm\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .sm\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .sm\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .sm\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .sm\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .sm\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .sm\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .sm\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .sm\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .sm\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .sm\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .sm\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .sm\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .sm\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .sm\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .sm\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .sm\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .sm\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .sm\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .sm\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .sm\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .sm\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .sm\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .sm\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .sm\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .sm\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .sm\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .sm\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .sm\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .sm\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .sm\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .sm\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .sm\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .sm\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .sm\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .sm\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .sm\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .sm\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .sm\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .sm\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .sm\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .sm\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .sm\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .sm\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .sm\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .sm\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .sm\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .sm\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .sm\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .sm\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .sm\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .sm\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .sm\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .sm\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .sm\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .sm\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .sm\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .sm\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .sm\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .sm\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .sm\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .sm\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .sm\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .sm\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .sm\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .sm\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .sm\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .sm\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .sm\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .sm\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .sm\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .sm\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .sm\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .sm\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .sm\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .sm\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .sm\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .sm\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .sm\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .sm\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .sm\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .sm\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .sm\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .sm\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .sm\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .sm\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .sm\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .sm\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .sm\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .sm\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .sm\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .sm\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .sm\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .sm\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .sm\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .sm\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .sm\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .sm\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .sm\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .sm\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .sm\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .sm\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .sm\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .sm\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .sm\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .sm\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .sm\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .sm\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .sm\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .sm\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .sm\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .sm\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .sm\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .sm\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .sm\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .sm\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .sm\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .sm\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .sm\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .sm\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .sm\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .sm\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .sm\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .sm\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .sm\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .sm\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .sm\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .sm\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .sm\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .sm\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .sm\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .sm\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .sm\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .sm\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .sm\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .sm\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .sm\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .sm\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .sm\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .sm\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .sm\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .sm\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .sm\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .sm\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .sm\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .sm\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .sm\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .sm\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .sm\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .sm\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .sm\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .sm\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .sm\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .sm\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .sm\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .sm\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .sm\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .sm\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .sm\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .sm\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .sm\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .sm\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .sm\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .sm\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .sm\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .sm\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .sm\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .sm\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .sm\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .sm\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .sm\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .sm\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .sm\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .sm\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .sm\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .sm\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .sm\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .sm\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .sm\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .sm\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .sm\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .sm\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .sm\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .sm\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .sm\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .sm\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .sm\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .sm\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .sm\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .sm\:filter-none { + filter: none; } - .sm\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .sm\:blur-0 { + --tw-blur: blur(0); } - .sm\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .sm\:blur-sm { + --tw-blur: blur(4px); } - .sm\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .sm\:blur { + --tw-blur: blur(8px); } - .sm\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .sm\:blur-md { + --tw-blur: blur(12px); } - .sm\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .sm\:blur-lg { + --tw-blur: blur(16px); } - .sm\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .sm\:blur-xl { + --tw-blur: blur(24px); } - .sm\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .sm\:blur-2xl { + --tw-blur: blur(40px); } - .sm\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .sm\:blur-3xl { + --tw-blur: blur(64px); } - .sm\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .sm\:brightness-0 { + --tw-brightness: brightness(0); } - .sm\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .sm\:brightness-50 { + --tw-brightness: brightness(.5); } - .sm\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .sm\:brightness-75 { + --tw-brightness: brightness(.75); } - .sm\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .sm\:brightness-90 { + --tw-brightness: brightness(.9); } - .sm\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .sm\:brightness-95 { + --tw-brightness: brightness(.95); } - .sm\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .sm\:brightness-100 { + --tw-brightness: brightness(1); } - .sm\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .sm\:brightness-105 { + --tw-brightness: brightness(1.05); } - .sm\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .sm\:brightness-110 { + --tw-brightness: brightness(1.1); } - .sm\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .sm\:brightness-125 { + --tw-brightness: brightness(1.25); } - .sm\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .sm\:brightness-150 { + --tw-brightness: brightness(1.5); } - .sm\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .sm\:brightness-200 { + --tw-brightness: brightness(2); } - .sm\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .sm\:contrast-0 { + --tw-contrast: contrast(0); } - .sm\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .sm\:contrast-50 { + --tw-contrast: contrast(.5); } - .sm\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .sm\:contrast-75 { + --tw-contrast: contrast(.75); } - .sm\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .sm\:contrast-100 { + --tw-contrast: contrast(1); } - .sm\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .sm\:contrast-125 { + --tw-contrast: contrast(1.25); } - .sm\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .sm\:contrast-150 { + --tw-contrast: contrast(1.5); } - .sm\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .sm\:contrast-200 { + --tw-contrast: contrast(2); } - .sm\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .sm\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .sm\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .sm\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .sm\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .sm\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .sm\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .sm\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .sm\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .sm\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .sm\:skew-x-0 { - --tw-skew-x: 0deg; + .sm\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .sm\:skew-x-1 { - --tw-skew-x: 1deg; + .sm\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .sm\:skew-x-2 { - --tw-skew-x: 2deg; + .sm\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .sm\:skew-x-3 { - --tw-skew-x: 3deg; + .sm\:grayscale { + --tw-grayscale: grayscale(100%); } - .sm\:skew-x-6 { - --tw-skew-x: 6deg; + .sm\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .sm\:skew-x-12 { - --tw-skew-x: 12deg; + .sm\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .sm\:-skew-x-12 { - --tw-skew-x: -12deg; + .sm\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .sm\:-skew-x-6 { - --tw-skew-x: -6deg; + .sm\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .sm\:-skew-x-3 { - --tw-skew-x: -3deg; + .sm\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .sm\:-skew-x-2 { - --tw-skew-x: -2deg; + .sm\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .sm\:-skew-x-1 { - --tw-skew-x: -1deg; + .sm\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .sm\:skew-y-0 { - --tw-skew-y: 0deg; + .sm\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .sm\:skew-y-1 { - --tw-skew-y: 1deg; + .sm\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .sm\:skew-y-2 { - --tw-skew-y: 2deg; + .sm\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .sm\:skew-y-3 { - --tw-skew-y: 3deg; + .sm\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .sm\:skew-y-6 { - --tw-skew-y: 6deg; + .sm\:invert-0 { + --tw-invert: invert(0); } - .sm\:skew-y-12 { - --tw-skew-y: 12deg; + .sm\:invert { + --tw-invert: invert(100%); } - .sm\:-skew-y-12 { - --tw-skew-y: -12deg; + .sm\:saturate-0 { + --tw-saturate: saturate(0); } - .sm\:-skew-y-6 { - --tw-skew-y: -6deg; + .sm\:saturate-50 { + --tw-saturate: saturate(.5); } - .sm\:-skew-y-3 { - --tw-skew-y: -3deg; + .sm\:saturate-100 { + --tw-saturate: saturate(1); } - .sm\:-skew-y-2 { - --tw-skew-y: -2deg; + .sm\:saturate-150 { + --tw-saturate: saturate(1.5); } - .sm\:-skew-y-1 { - --tw-skew-y: -1deg; + .sm\:saturate-200 { + --tw-saturate: saturate(2); } - .sm\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .sm\:sepia-0 { + --tw-sepia: sepia(0); } - .sm\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .sm\:sepia { + --tw-sepia: sepia(100%); } - .sm\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .sm\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .sm\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .sm\:backdrop-filter-none { + backdrop-filter: none; } - .sm\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .sm\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .sm\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .sm\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .sm\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .sm\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .sm\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .sm\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .sm\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .sm\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .sm\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .sm\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .sm\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .sm\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .sm\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .sm\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .sm\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .sm\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .sm\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .sm\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .sm\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .sm\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .sm\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .sm\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .sm\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .sm\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .sm\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .sm\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .sm\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + .sm\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .sm\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + .sm\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .sm\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + .sm\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .sm\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + .sm\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .sm\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + .sm\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .sm\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .sm\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .sm\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .sm\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .sm\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .sm\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .sm\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .sm\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .sm\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .sm\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .sm\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .sm\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .sm\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .sm\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .sm\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .sm\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .sm\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .sm\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .sm\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .sm\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .sm\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .sm\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .sm\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .sm\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .sm\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .sm\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .sm\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .sm\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .sm\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .sm\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .sm\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .sm\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .sm\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .sm\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .sm\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .sm\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .sm\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .sm\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .sm\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .sm\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .sm\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .sm\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } .sm\:transition-none { @@ -58271,6 +58833,70 @@ video { transition-duration: 150ms; } + .sm\:delay-75 { + transition-delay: 75ms; + } + + .sm\:delay-100 { + transition-delay: 100ms; + } + + .sm\:delay-150 { + transition-delay: 150ms; + } + + .sm\:delay-200 { + transition-delay: 200ms; + } + + .sm\:delay-300 { + transition-delay: 300ms; + } + + .sm\:delay-500 { + transition-delay: 500ms; + } + + .sm\:delay-700 { + transition-delay: 700ms; + } + + .sm\:delay-1000 { + transition-delay: 1000ms; + } + + .sm\:duration-75 { + transition-duration: 75ms; + } + + .sm\:duration-100 { + transition-duration: 100ms; + } + + .sm\:duration-150 { + transition-duration: 150ms; + } + + .sm\:duration-200 { + transition-duration: 200ms; + } + + .sm\:duration-300 { + transition-duration: 300ms; + } + + .sm\:duration-500 { + transition-duration: 500ms; + } + + .sm\:duration-700 { + transition-duration: 700ms; + } + + .sm\:duration-1000 { + transition-duration: 1000ms; + } + .sm\:ease-linear { transition-timing-function: linear; } @@ -58287,22319 +58913,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .sm\:duration-75 { - transition-duration: 75ms; + .sm\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 768px) { + .md\:container { + width: 100%; + } + + @media (min-width: 640px) { + .md\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .md\:container { + max-width: 768px; + } } - .sm\:duration-100 { - transition-duration: 100ms; + @media (min-width: 1024px) { + .md\:container { + max-width: 1024px; + } } - .sm\:duration-150 { - transition-duration: 150ms; + @media (min-width: 1280px) { + .md\:container { + max-width: 1280px; + } } - .sm\:duration-200 { - transition-duration: 200ms; + @media (min-width: 1536px) { + .md\:container { + max-width: 1536px; + } } - .sm\:duration-300 { - transition-duration: 300ms; + .md\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\:duration-500 { - transition-duration: 500ms; + .md\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .sm\:duration-700 { - transition-duration: 700ms; + .md\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\:duration-1000 { - transition-duration: 1000ms; + .md\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .sm\:delay-75 { - transition-delay: 75ms; + .md\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .sm\:delay-100 { - transition-delay: 100ms; + .md\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .sm\:delay-150 { - transition-delay: 150ms; + .md\:pointer-events-none { + pointer-events: none; } - .sm\:delay-200 { - transition-delay: 200ms; + .md\:pointer-events-auto { + pointer-events: auto; } - .sm\:delay-300 { - transition-delay: 300ms; + .md\:visible { + visibility: visible; } - .sm\:delay-500 { - transition-delay: 500ms; + .md\:invisible { + visibility: hidden; } - .sm\:delay-700 { - transition-delay: 700ms; + .md\:static { + position: static; } - .sm\:delay-1000 { - transition-delay: 1000ms; + .md\:fixed { + position: fixed; } - .sm\:animate-none { - animation: none; + .md\:absolute { + position: absolute; } - .sm\:animate-spin { - animation: spin 1s linear infinite; + .md\:relative { + position: relative; } - .sm\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .md\:sticky { + position: sticky; } - .sm\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .md\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .sm\:animate-bounce { - animation: bounce 1s infinite; + .md\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .sm\:mix-blend-normal { - mix-blend-mode: normal; + .md\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .sm\:mix-blend-multiply { - mix-blend-mode: multiply; + .md\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .sm\:mix-blend-screen { - mix-blend-mode: screen; + .md\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .sm\:mix-blend-overlay { - mix-blend-mode: overlay; + .md\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .sm\:mix-blend-darken { - mix-blend-mode: darken; + .md\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .sm\:mix-blend-lighten { - mix-blend-mode: lighten; + .md\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .sm\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .md\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .sm\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .md\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .sm\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .md\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .sm\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .md\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .sm\:mix-blend-difference { - mix-blend-mode: difference; + .md\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .sm\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .md\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .sm\:mix-blend-hue { - mix-blend-mode: hue; + .md\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .sm\:mix-blend-saturation { - mix-blend-mode: saturation; + .md\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .sm\:mix-blend-color { - mix-blend-mode: color; + .md\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .sm\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .md\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .sm\:bg-blend-normal { - background-blend-mode: normal; + .md\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .sm\:bg-blend-multiply { - background-blend-mode: multiply; + .md\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .sm\:bg-blend-screen { - background-blend-mode: screen; + .md\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .sm\:bg-blend-overlay { - background-blend-mode: overlay; + .md\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .sm\:bg-blend-darken { - background-blend-mode: darken; + .md\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .sm\:bg-blend-lighten { - background-blend-mode: lighten; + .md\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .sm\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .md\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .sm\:bg-blend-color-burn { - background-blend-mode: color-burn; + .md\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .sm\:bg-blend-hard-light { - background-blend-mode: hard-light; + .md\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .sm\:bg-blend-soft-light { - background-blend-mode: soft-light; + .md\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .sm\:bg-blend-difference { - background-blend-mode: difference; + .md\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .sm\:bg-blend-exclusion { - background-blend-mode: exclusion; + .md\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .sm\:bg-blend-hue { - background-blend-mode: hue; + .md\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .sm\:bg-blend-saturation { - background-blend-mode: saturation; + .md\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .sm\:bg-blend-color { - background-blend-mode: color; + .md\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .sm\:bg-blend-luminosity { - background-blend-mode: luminosity; + .md\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .sm\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .md\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .sm\:filter-none { - filter: none; + .md\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .sm\:blur-0 { - --tw-blur: blur(0); + .md\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .sm\:blur-sm { - --tw-blur: blur(4px); + .md\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .sm\:blur { - --tw-blur: blur(8px); + .md\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .sm\:blur-md { - --tw-blur: blur(12px); + .md\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .sm\:blur-lg { - --tw-blur: blur(16px); + .md\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .sm\:blur-xl { - --tw-blur: blur(24px); + .md\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .sm\:blur-2xl { - --tw-blur: blur(40px); + .md\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .sm\:blur-3xl { - --tw-blur: blur(64px); + .md\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .sm\:brightness-0 { - --tw-brightness: brightness(0); + .md\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .sm\:brightness-50 { - --tw-brightness: brightness(.5); + .md\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .sm\:brightness-75 { - --tw-brightness: brightness(.75); + .md\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .sm\:brightness-90 { - --tw-brightness: brightness(.9); + .md\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .sm\:brightness-95 { - --tw-brightness: brightness(.95); + .md\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .sm\:brightness-100 { - --tw-brightness: brightness(1); + .md\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .sm\:brightness-105 { - --tw-brightness: brightness(1.05); + .md\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .sm\:brightness-110 { - --tw-brightness: brightness(1.1); + .md\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .sm\:brightness-125 { - --tw-brightness: brightness(1.25); + .md\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .sm\:brightness-150 { - --tw-brightness: brightness(1.5); + .md\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .sm\:brightness-200 { - --tw-brightness: brightness(2); + .md\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .sm\:contrast-0 { - --tw-contrast: contrast(0); + .md\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .sm\:contrast-50 { - --tw-contrast: contrast(.5); + .md\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .sm\:contrast-75 { - --tw-contrast: contrast(.75); + .md\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .sm\:contrast-100 { - --tw-contrast: contrast(1); + .md\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .sm\:contrast-125 { - --tw-contrast: contrast(1.25); + .md\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .sm\:contrast-150 { - --tw-contrast: contrast(1.5); + .md\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .sm\:contrast-200 { - --tw-contrast: contrast(2); + .md\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .sm\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .md\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .sm\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .md\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .sm\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .md\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .sm\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .md\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .sm\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .md\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .sm\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .md\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .sm\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .md\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .sm\:grayscale-0 { - --tw-grayscale: grayscale(0); + .md\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .sm\:grayscale { - --tw-grayscale: grayscale(100%); + .md\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .sm\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .md\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .sm\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .md\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .sm\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .md\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .sm\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .md\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .sm\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .md\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .sm\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .md\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .sm\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .md\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .sm\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .md\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .sm\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .md\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .sm\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .md\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .sm\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .md\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .sm\:invert-0 { - --tw-invert: invert(0); + .md\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .sm\:invert { - --tw-invert: invert(100%); + .md\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .sm\:saturate-0 { - --tw-saturate: saturate(0); + .md\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .sm\:saturate-50 { - --tw-saturate: saturate(.5); + .md\:inset-y-0 { + top: 0px; + bottom: 0px; } - .sm\:saturate-100 { - --tw-saturate: saturate(1); + .md\:inset-x-0 { + right: 0px; + left: 0px; } - .sm\:saturate-150 { - --tw-saturate: saturate(1.5); + .md\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .sm\:saturate-200 { - --tw-saturate: saturate(2); + .md\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .sm\:sepia-0 { - --tw-sepia: sepia(0); + .md\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .sm\:sepia { - --tw-sepia: sepia(100%); + .md\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .sm\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .md\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .sm\:backdrop-filter-none { - backdrop-filter: none; + .md\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .sm\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .md\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .sm\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .md\:inset-x-4 { + right: 1rem; + left: 1rem; } - .sm\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .md\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .sm\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .md\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .sm\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .md\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .sm\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .md\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .sm\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .md\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .sm\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .md\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .sm\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .md\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .sm\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .md\:inset-x-8 { + right: 2rem; + left: 2rem; } - .sm\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .md\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .sm\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .md\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .sm\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .md\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .sm\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .md\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .sm\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .md\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .sm\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .md\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .sm\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .md\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .sm\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .md\:inset-x-12 { + right: 3rem; + left: 3rem; } - .sm\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .md\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .sm\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .md\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .sm\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .md\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .sm\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .md\:inset-x-16 { + right: 4rem; + left: 4rem; } - .sm\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .md\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .sm\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .md\:inset-x-20 { + right: 5rem; + left: 5rem; } - .sm\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .md\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .sm\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .md\:inset-x-24 { + right: 6rem; + left: 6rem; } - .sm\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .md\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .sm\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .md\:inset-x-28 { + right: 7rem; + left: 7rem; } - .sm\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .md\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .sm\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .md\:inset-x-32 { + right: 8rem; + left: 8rem; } - .sm\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .md\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .sm\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .md\:inset-x-36 { + right: 9rem; + left: 9rem; } - .sm\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .md\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .sm\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .md\:inset-x-40 { + right: 10rem; + left: 10rem; } - .sm\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .md\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .sm\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .md\:inset-x-44 { + right: 11rem; + left: 11rem; } - .sm\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .md\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .sm\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .md\:inset-x-48 { + right: 12rem; + left: 12rem; } - .sm\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .md\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .sm\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .md\:inset-x-52 { + right: 13rem; + left: 13rem; } - .sm\:example { - font-weight: 700; - color: #ef4444; + .md\:inset-y-56 { + top: 14rem; + bottom: 14rem; } -} -@media (min-width: 768px) { - .md\:container { - width: 100%; + .md\:inset-x-56 { + right: 14rem; + left: 14rem; } - @media (min-width: 640px) { - .md\:container { - max-width: 640px; - } + .md\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - @media (min-width: 768px) { - .md\:container { - max-width: 768px; - } + .md\:inset-x-60 { + right: 15rem; + left: 15rem; } - @media (min-width: 1024px) { - .md\:container { - max-width: 1024px; - } + .md\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - @media (min-width: 1280px) { - .md\:container { - max-width: 1280px; - } + .md\:inset-x-64 { + right: 16rem; + left: 16rem; } - @media (min-width: 1536px) { - .md\:container { - max-width: 1536px; - } + .md\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .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\:inset-x-72 { + right: 18rem; + left: 18rem; } - .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\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .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\:inset-x-80 { + right: 20rem; + left: 20rem; } - .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\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .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\:inset-x-96 { + right: 24rem; + left: 24rem; } - .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\:inset-y-auto { + top: auto; + bottom: auto; } - .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\:inset-x-auto { + right: auto; + left: auto; } - .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\:inset-y-px { + top: 1px; + bottom: 1px; } - .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\:inset-x-px { + right: 1px; + left: 1px; } - .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\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .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\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .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\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .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\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .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\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .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\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .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\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .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\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .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\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .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\:-inset-x-0 { + right: 0px; + left: 0px; } - .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\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .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\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .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\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .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\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .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\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .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\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .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\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .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\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .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\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .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\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } - .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\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - .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\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - .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\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - .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\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - .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\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - .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\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .md\:right-6 { + right: 1.5rem; } - .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .md\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .md\:right-9 { + right: 2.25rem; } - .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .md\:bottom-9 { + bottom: 2.25rem; } - .md\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .md\:left-9 { + left: 2.25rem; } - .md\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .md\:top-10 { + top: 2.5rem; } - .md\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + .md\:right-10 { + right: 2.5rem; } - .md\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + .md\:bottom-10 { + bottom: 2.5rem; } - .md\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + .md\:left-10 { + left: 2.5rem; } - .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + .md\:top-11 { + top: 2.75rem; } - .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + .md\:right-11 { + right: 2.75rem; } - .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + .md\:bottom-11 { + bottom: 2.75rem; } - .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + .md\:left-11 { + left: 2.75rem; } - .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + .md\:top-12 { + top: 3rem; } - .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + .md\:right-12 { + right: 3rem; } - .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + .md\:bottom-12 { + bottom: 3rem; } - .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + .md\:left-12 { + left: 3rem; } - .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + .md\:top-14 { + top: 3.5rem; } - .md\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); + .md\:right-14 { + right: 3.5rem; } - .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); + .md\:bottom-14 { + bottom: 3.5rem; } - .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); + .md\:left-14 { + left: 3.5rem; } - .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); + .md\:top-16 { + top: 4rem; } - .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); + .md\:right-16 { + right: 4rem; } - .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); + .md\:bottom-16 { + bottom: 4rem; } - .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); + .md\:left-16 { + left: 4rem; } - .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); + .md\:top-20 { + top: 5rem; } - .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); + .md\:right-20 { + right: 5rem; } - .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); + .md\:bottom-20 { + bottom: 5rem; } - .md\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); + .md\:left-20 { + left: 5rem; } - .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); + .md\:top-24 { + top: 6rem; } - .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); + .md\:right-24 { + right: 6rem; } - .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); + .md\:bottom-24 { + bottom: 6rem; } - .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); + .md\:left-24 { + left: 6rem; } - .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + .md\:top-28 { + top: 7rem; } - .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); + .md\:right-28 { + right: 7rem; } - .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); + .md\:bottom-28 { + bottom: 7rem; } - .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); + .md\:left-28 { + left: 7rem; } - .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); + .md\:top-32 { + top: 8rem; } - .md\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); + .md\:right-32 { + right: 8rem; } - .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); + .md\:bottom-32 { + bottom: 8rem; } - .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); + .md\:left-32 { + left: 8rem; } - .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); + .md\:top-36 { + top: 9rem; } - .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); + .md\:right-36 { + right: 9rem; } - .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); + .md\:bottom-36 { + bottom: 9rem; } - .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); + .md\:left-36 { + left: 9rem; } - .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); + .md\:top-40 { + top: 10rem; } - .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); + .md\:right-40 { + right: 10rem; } - .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); + .md\:bottom-40 { + bottom: 10rem; } - .md\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); + .md\:left-40 { + left: 10rem; } - .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); + .md\:top-44 { + top: 11rem; } - .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); + .md\:right-44 { + right: 11rem; } - .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); + .md\:bottom-44 { + bottom: 11rem; } - .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); + .md\:left-44 { + left: 11rem; } - .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + .md\:top-48 { + top: 12rem; } - .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); + .md\:right-48 { + right: 12rem; } - .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); + .md\:bottom-48 { + bottom: 12rem; } - .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); + .md\:left-48 { + left: 12rem; } - .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); + .md\:top-52 { + top: 13rem; } - .md\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); + .md\:right-52 { + right: 13rem; } - .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); + .md\:bottom-52 { + bottom: 13rem; } - .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); + .md\:left-52 { + left: 13rem; } - .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); + .md\:top-56 { + top: 14rem; } - .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); + .md\:right-56 { + right: 14rem; } - .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); + .md\:bottom-56 { + bottom: 14rem; } - .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); + .md\:left-56 { + left: 14rem; } - .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); + .md\:top-60 { + top: 15rem; } - .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); + .md\:right-60 { + right: 15rem; } - .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); + .md\:bottom-60 { + bottom: 15rem; } - .md\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); + .md\:left-60 { + left: 15rem; } - .md\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); + .md\:top-64 { + top: 16rem; } - .md\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); + .md\:right-64 { + right: 16rem; } - .md\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); + .md\:bottom-64 { + bottom: 16rem; } - .md\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); + .md\:left-64 { + left: 16rem; } - .md\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); + .md\:top-72 { + top: 18rem; } - .md\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); + .md\:right-72 { + right: 18rem; } - .md\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); + .md\:bottom-72 { + bottom: 18rem; } - .md\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); + .md\:left-72 { + left: 18rem; } - .md\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); + .md\:top-80 { + top: 20rem; } - .md\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); + .md\:right-80 { + right: 20rem; } - .md\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); + .md\:bottom-80 { + bottom: 20rem; } - .md\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); + .md\:left-80 { + left: 20rem; } - .md\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); + .md\:top-96 { + top: 24rem; } - .md\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); + .md\:right-96 { + right: 24rem; } - .md\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); + .md\:bottom-96 { + bottom: 24rem; } - .md\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); + .md\:left-96 { + left: 24rem; } - .md\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); + .md\:top-auto { + top: auto; } - .md\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); + .md\:right-auto { + right: auto; } - .md\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); + .md\:bottom-auto { + bottom: auto; } - .md\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .md\:left-auto { + left: auto; } - .md\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .md\:top-px { + top: 1px; } - .md\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .md\:right-px { + right: 1px; } - .md\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .md\:bottom-px { + bottom: 1px; } - .md\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .md\:left-px { + left: 1px; } - .md\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; + .md\:top-0\.5 { + top: 0.125rem; } - .md\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; + .md\:right-0\.5 { + right: 0.125rem; } - .md\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; + .md\:bottom-0\.5 { + bottom: 0.125rem; } - .md\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; + .md\:left-0\.5 { + left: 0.125rem; } - .md\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; + .md\:top-1\.5 { + top: 0.375rem; } - .md\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; + .md\:right-1\.5 { + right: 0.375rem; } - .md\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; + .md\:bottom-1\.5 { + bottom: 0.375rem; } - .md\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; + .md\:left-1\.5 { + left: 0.375rem; } - .md\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; + .md\:top-2\.5 { + top: 0.625rem; } - .md\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; + .md\:right-2\.5 { + right: 0.625rem; } - .md\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; + .md\:bottom-2\.5 { + bottom: 0.625rem; } - .md\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; + .md\:left-2\.5 { + left: 0.625rem; } - .md\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; + .md\:top-3\.5 { + top: 0.875rem; } - .md\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; + .md\:right-3\.5 { + right: 0.875rem; } - .md\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; + .md\:bottom-3\.5 { + bottom: 0.875rem; } - .md\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .md\:left-3\.5 { + left: 0.875rem; } - .md\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .md\:-top-0 { + top: 0px; } - .md\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .md\:-right-0 { + right: 0px; } - .md\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .md\:-bottom-0 { + bottom: 0px; } - .md\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .md\:-left-0 { + left: 0px; } - .md\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .md\:-top-1 { + top: -0.25rem; } - .md\:appearance-none { - appearance: none; + .md\:-right-1 { + right: -0.25rem; } - .md\:bg-fixed { - background-attachment: fixed; + .md\:-bottom-1 { + bottom: -0.25rem; } - .md\:bg-local { - background-attachment: local; + .md\:-left-1 { + left: -0.25rem; } - .md\:bg-scroll { - background-attachment: scroll; + .md\:-top-2 { + top: -0.5rem; } - .md\:bg-clip-border { - background-clip: border-box; + .md\:-right-2 { + right: -0.5rem; } - .md\:bg-clip-padding { - background-clip: padding-box; + .md\:-bottom-2 { + bottom: -0.5rem; } - .md\:bg-clip-content { - background-clip: content-box; + .md\:-left-2 { + left: -0.5rem; } - .md\:bg-clip-text { - background-clip: text; + .md\:-top-3 { + top: -0.75rem; } - .md\:bg-transparent { - background-color: transparent; + .md\:-right-3 { + right: -0.75rem; } - .md\:bg-current { - background-color: currentColor; + .md\:-bottom-3 { + bottom: -0.75rem; } - .md\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .md\:-left-3 { + left: -0.75rem; } - .md\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .md\:-top-4 { + top: -1rem; } - .md\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .md\:-right-4 { + right: -1rem; } - .md\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .md\:-bottom-4 { + bottom: -1rem; } - .md\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .md\:-left-4 { + left: -1rem; } - .md\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .md\:-top-5 { + top: -1.25rem; } - .md\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .md\:-right-5 { + right: -1.25rem; } - .md\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .md\:-bottom-5 { + bottom: -1.25rem; } - .md\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .md\:-left-5 { + left: -1.25rem; } - .md\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .md\:-top-6 { + top: -1.5rem; } - .md\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .md\:-right-6 { + right: -1.5rem; } - .md\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .md\:-bottom-6 { + bottom: -1.5rem; } - .md\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .md\:-left-6 { + left: -1.5rem; } - .md\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .md\:-top-7 { + top: -1.75rem; } - .md\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .md\:-right-7 { + right: -1.75rem; } - .md\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .md\:-bottom-7 { + bottom: -1.75rem; } - .md\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .md\:-left-7 { + left: -1.75rem; } - .md\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .md\:-top-8 { + top: -2rem; } - .md\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .md\:-right-8 { + right: -2rem; } - .md\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .md\:-bottom-8 { + bottom: -2rem; } - .md\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .md\:-left-8 { + left: -2rem; } - .md\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .md\:-top-9 { + top: -2.25rem; } - .md\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .md\:-right-9 { + right: -2.25rem; } - .md\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .md\:-bottom-9 { + bottom: -2.25rem; } - .md\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .md\:-left-9 { + left: -2.25rem; } - .md\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .md\:-top-10 { + top: -2.5rem; } - .md\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .md\:-right-10 { + right: -2.5rem; } - .md\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .md\:-bottom-10 { + bottom: -2.5rem; } - .md\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .md\:-left-10 { + left: -2.5rem; } - .md\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .md\:-top-11 { + top: -2.75rem; } - .md\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .md\:-right-11 { + right: -2.75rem; } - .md\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .md\:-bottom-11 { + bottom: -2.75rem; } - .md\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .md\:-left-11 { + left: -2.75rem; } - .md\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .md\:-top-12 { + top: -3rem; } - .md\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .md\:-right-12 { + right: -3rem; } - .md\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .md\:-bottom-12 { + bottom: -3rem; } - .md\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .md\:-left-12 { + left: -3rem; } - .md\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .md\:-top-14 { + top: -3.5rem; } - .md\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .md\:-right-14 { + right: -3.5rem; } - .md\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .md\:-bottom-14 { + bottom: -3.5rem; } - .md\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .md\:-left-14 { + left: -3.5rem; } - .md\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .md\:-top-16 { + top: -4rem; } - .md\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .md\:-right-16 { + right: -4rem; } - .md\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .md\:-bottom-16 { + bottom: -4rem; } - .md\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .md\:-left-16 { + left: -4rem; } - .md\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .md\:-top-20 { + top: -5rem; } - .md\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .md\:-right-20 { + right: -5rem; } - .md\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .md\:-bottom-20 { + bottom: -5rem; } - .md\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .md\:-left-20 { + left: -5rem; } - .md\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .md\:-top-24 { + top: -6rem; } - .md\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .md\:-right-24 { + right: -6rem; } - .md\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .md\:-bottom-24 { + bottom: -6rem; } - .md\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .md\:-left-24 { + left: -6rem; } - .md\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .md\:-top-28 { + top: -7rem; } - .md\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .md\:-right-28 { + right: -7rem; } - .md\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .md\:-bottom-28 { + bottom: -7rem; } - .md\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .md\:-left-28 { + left: -7rem; } - .md\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .md\:-top-32 { + top: -8rem; } - .md\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .md\:-right-32 { + right: -8rem; } - .md\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .md\:-bottom-32 { + bottom: -8rem; } - .md\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .md\:-left-32 { + left: -8rem; } - .md\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .md\:-top-36 { + top: -9rem; } - .md\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .md\:-right-36 { + right: -9rem; } - .md\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .md\:-bottom-36 { + bottom: -9rem; } - .md\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .md\:-left-36 { + left: -9rem; } - .md\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .md\:-top-40 { + top: -10rem; } - .md\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .md\:-right-40 { + right: -10rem; } - .md\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .md\:-bottom-40 { + bottom: -10rem; } - .md\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .md\:-left-40 { + left: -10rem; } - .md\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .md\:-top-44 { + top: -11rem; } - .md\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .md\:-right-44 { + right: -11rem; } - .md\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .md\:-bottom-44 { + bottom: -11rem; } - .md\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .md\:-left-44 { + left: -11rem; } - .md\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .md\:-top-48 { + top: -12rem; } - .md\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .md\:-right-48 { + right: -12rem; } - .md\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .md\:-bottom-48 { + bottom: -12rem; } - .md\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .md\:-left-48 { + left: -12rem; } - .md\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .md\:-top-52 { + top: -13rem; } - .md\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .md\:-right-52 { + right: -13rem; } - .md\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .md\:-bottom-52 { + bottom: -13rem; + } + + .md\:-left-52 { + left: -13rem; } - .md\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .md\:-top-56 { + top: -14rem; } - .md\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .md\:-right-56 { + right: -14rem; } - .group:hover .md\:group-hover\:bg-transparent { - background-color: transparent; + .md\:-bottom-56 { + bottom: -14rem; } - .group:hover .md\:group-hover\:bg-current { - background-color: currentColor; + .md\:-left-56 { + left: -14rem; } - .group:hover .md\:group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .md\:-top-60 { + top: -15rem; } - .group:hover .md\:group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .md\:-right-60 { + right: -15rem; } - .group:hover .md\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .md\:-bottom-60 { + bottom: -15rem; } - .group:hover .md\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .md\:-left-60 { + left: -15rem; } - .group:hover .md\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .md\:-top-64 { + top: -16rem; } - .group:hover .md\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .md\:-right-64 { + right: -16rem; } - .group:hover .md\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .md\:-bottom-64 { + bottom: -16rem; } - .group:hover .md\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .md\:-left-64 { + left: -16rem; } - .group:hover .md\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .md\:-top-72 { + top: -18rem; } - .group:hover .md\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .md\:-right-72 { + right: -18rem; } - .group:hover .md\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .md\:-bottom-72 { + bottom: -18rem; } - .group:hover .md\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .md\:-left-72 { + left: -18rem; } - .group:hover .md\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .md\:-top-80 { + top: -20rem; } - .group:hover .md\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .md\:-right-80 { + right: -20rem; } - .group:hover .md\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .md\:-bottom-80 { + bottom: -20rem; } - .group:hover .md\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .md\:-left-80 { + left: -20rem; } - .group:hover .md\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .md\:-top-96 { + top: -24rem; } - .group:hover .md\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .md\:-right-96 { + right: -24rem; } - .group:hover .md\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .md\:-bottom-96 { + bottom: -24rem; } - .group:hover .md\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .md\:-left-96 { + left: -24rem; } - .group:hover .md\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .md\:-top-px { + top: -1px; } - .group:hover .md\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .md\:-right-px { + right: -1px; } - .group:hover .md\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .md\:-bottom-px { + bottom: -1px; } - .group:hover .md\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .md\:-left-px { + left: -1px; } - .group:hover .md\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .md\:-top-0\.5 { + top: -0.125rem; } - .group:hover .md\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .md\:-right-0\.5 { + right: -0.125rem; } - .group:hover .md\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .md\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .md\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .md\:-left-0\.5 { + left: -0.125rem; } - .group:hover .md\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .md\:-top-1\.5 { + top: -0.375rem; } - .group:hover .md\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .md\:-right-1\.5 { + right: -0.375rem; } - .group:hover .md\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .md\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .md\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .md\:-left-1\.5 { + left: -0.375rem; } - .group:hover .md\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .md\:-top-2\.5 { + top: -0.625rem; } - .group:hover .md\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .md\:-right-2\.5 { + right: -0.625rem; } - .group:hover .md\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .md\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .md\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .md\:-left-2\.5 { + left: -0.625rem; } - .group:hover .md\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .md\:-top-3\.5 { + top: -0.875rem; } - .group:hover .md\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .md\:-right-3\.5 { + right: -0.875rem; } - .group:hover .md\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .md\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .md\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .md\:-left-3\.5 { + left: -0.875rem; } - .group:hover .md\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .md\:top-1\/2 { + top: 50%; } - .group:hover .md\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .md\:right-1\/2 { + right: 50%; } - .group:hover .md\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .md\:bottom-1\/2 { + bottom: 50%; } - .group:hover .md\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .md\:left-1\/2 { + left: 50%; } - .group:hover .md\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .md\:top-1\/3 { + top: 33.333333%; } - .group:hover .md\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .md\:right-1\/3 { + right: 33.333333%; } - .group:hover .md\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .md\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .md\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .md\:left-1\/3 { + left: 33.333333%; } - .group:hover .md\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .md\:top-2\/3 { + top: 66.666667%; } - .group:hover .md\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .md\:right-2\/3 { + right: 66.666667%; } - .group:hover .md\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .md\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .md\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .md\:left-2\/3 { + left: 66.666667%; } - .group:hover .md\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .md\:top-1\/4 { + top: 25%; } - .group:hover .md\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .md\:right-1\/4 { + right: 25%; } - .group:hover .md\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .md\:bottom-1\/4 { + bottom: 25%; } - .group:hover .md\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .md\:left-1\/4 { + left: 25%; } - .group:hover .md\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .md\:top-2\/4 { + top: 50%; } - .group:hover .md\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .md\:right-2\/4 { + right: 50%; } - .group:hover .md\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .md\:bottom-2\/4 { + bottom: 50%; } - .group:hover .md\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .md\:left-2\/4 { + left: 50%; } - .group:hover .md\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .md\:top-3\/4 { + top: 75%; } - .group:hover .md\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .md\:right-3\/4 { + right: 75%; } - .group:hover .md\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .md\:bottom-3\/4 { + bottom: 75%; } - .group:hover .md\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .md\:left-3\/4 { + left: 75%; } - .group:hover .md\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .md\:top-full { + top: 100%; } - .group:hover .md\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .md\:right-full { + right: 100%; } - .group:hover .md\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .md\:bottom-full { + bottom: 100%; } - .group:hover .md\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .md\:left-full { + left: 100%; } - .group:hover .md\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .md\:-top-1\/2 { + top: -50%; } - .group:hover .md\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .md\:-right-1\/2 { + right: -50%; } - .group:hover .md\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .md\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .md\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .md\:-left-1\/2 { + left: -50%; } - .group:hover .md\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .md\:-top-1\/3 { + top: -33.333333%; } - .group:hover .md\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .md\:-right-1\/3 { + right: -33.333333%; } - .group:hover .md\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .md\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .md\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .md\:-left-1\/3 { + left: -33.333333%; } - .group:hover .md\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .md\:-top-2\/3 { + top: -66.666667%; } - .group:hover .md\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .md\:-right-2\/3 { + right: -66.666667%; } - .group:hover .md\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .md\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .md\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .md\:-left-2\/3 { + left: -66.666667%; } - .group:hover .md\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .md\:-top-1\/4 { + top: -25%; } - .group:hover .md\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .md\:-right-1\/4 { + right: -25%; } - .md\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .md\:-bottom-1\/4 { + bottom: -25%; } - .md\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .md\:-left-1\/4 { + left: -25%; } - .md\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .md\:-top-2\/4 { + top: -50%; } - .md\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .md\:-right-2\/4 { + right: -50%; } - .md\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .md\:-bottom-2\/4 { + bottom: -50%; } - .md\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .md\:-left-2\/4 { + left: -50%; } - .md\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .md\:-top-3\/4 { + top: -75%; } - .md\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .md\:-right-3\/4 { + right: -75%; } - .md\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .md\:-bottom-3\/4 { + bottom: -75%; } - .md\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .md\:-left-3\/4 { + left: -75%; } - .md\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .md\:-top-full { + top: -100%; } - .md\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .md\:-right-full { + right: -100%; } - .md\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .md\:-bottom-full { + bottom: -100%; } - .md\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .md\:-left-full { + left: -100%; } - .md\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .md\:isolate { + isolation: isolate; } - .md\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .md\:isolation-auto { + isolation: auto; } - .md\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .md\:z-0 { + z-index: 0; } - .md\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .md\:z-10 { + z-index: 10; } - .md\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .md\:z-20 { + z-index: 20; } - .md\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .md\:z-30 { + z-index: 30; } - .md\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .md\:z-40 { + z-index: 40; } - .md\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .md\:z-50 { + z-index: 50; } - .md\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .md\:z-auto { + z-index: auto; } - .md\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .md\:focus-within\:z-0:focus-within { + z-index: 0; } - .md\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .md\:focus-within\:z-10:focus-within { + z-index: 10; } - .md\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .md\:focus-within\:z-20:focus-within { + z-index: 20; } - .md\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .md\:focus-within\:z-30:focus-within { + z-index: 30; } - .md\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .md\:focus-within\:z-40:focus-within { + z-index: 40; } - .md\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .md\:focus-within\:z-50:focus-within { + z-index: 50; } - .md\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .md\:focus-within\:z-auto:focus-within { + z-index: auto; } - .md\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .md\:focus\:z-0:focus { + z-index: 0; } - .md\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .md\:focus\:z-10:focus { + z-index: 10; } - .md\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .md\:focus\:z-20:focus { + z-index: 20; } - .md\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .md\:focus\:z-30:focus { + z-index: 30; } - .md\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .md\:focus\:z-40:focus { + z-index: 40; } - .md\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .md\:focus\:z-50:focus { + z-index: 50; } - .md\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .md\:focus\:z-auto:focus { + z-index: auto; } - .md\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .md\:order-1 { + order: 1; } - .md\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .md\:order-2 { + order: 2; } - .md\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .md\:order-3 { + order: 3; } - .md\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .md\:order-4 { + order: 4; } - .md\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .md\:order-5 { + order: 5; } - .md\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .md\:order-6 { + order: 6; } - .md\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .md\:order-7 { + order: 7; } - .md\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .md\:order-8 { + order: 8; } - .md\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .md\:order-9 { + order: 9; } - .md\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .md\:order-10 { + order: 10; } - .md\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .md\:order-11 { + order: 11; } - .md\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .md\:order-12 { + order: 12; } - .md\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .md\:order-first { + order: -9999; } - .md\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .md\:order-last { + order: 9999; } - .md\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .md\:order-none { + order: 0; } - .md\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .md\:col-auto { + grid-column: auto; } - .md\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .md\:col-span-1 { + grid-column: span 1 / span 1; } - .md\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .md\:col-span-2 { + grid-column: span 2 / span 2; } - .md\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .md\:col-span-3 { + grid-column: span 3 / span 3; } - .md\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .md\:col-span-4 { + grid-column: span 4 / span 4; } - .md\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .md\:col-span-5 { + grid-column: span 5 / span 5; } - .md\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .md\:col-span-6 { + grid-column: span 6 / span 6; } - .md\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .md\:col-span-7 { + grid-column: span 7 / span 7; } - .md\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .md\:col-span-8 { + grid-column: span 8 / span 8; } - .md\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .md\:col-span-9 { + grid-column: span 9 / span 9; } - .md\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .md\:col-span-10 { + grid-column: span 10 / span 10; } - .md\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .md\:col-span-11 { + grid-column: span 11 / span 11; } - .md\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .md\:col-span-12 { + grid-column: span 12 / span 12; } - .md\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .md\:col-span-full { + grid-column: 1 / -1; } - .md\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .md\:col-start-1 { + grid-column-start: 1; } - .md\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .md\:col-start-2 { + grid-column-start: 2; } - .md\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .md\:col-start-3 { + grid-column-start: 3; } - .md\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .md\:col-start-4 { + grid-column-start: 4; } - .md\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .md\:col-start-5 { + grid-column-start: 5; } - .md\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .md\:col-start-6 { + grid-column-start: 6; } - .md\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .md\:col-start-7 { + grid-column-start: 7; } - .md\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .md\:col-start-8 { + grid-column-start: 8; } - .md\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .md\:col-start-9 { + grid-column-start: 9; } - .md\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .md\:col-start-10 { + grid-column-start: 10; } - .md\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .md\:col-start-11 { + grid-column-start: 11; } - .md\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .md\:col-start-12 { + grid-column-start: 12; } - .md\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .md\:col-start-13 { + grid-column-start: 13; } - .md\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .md\:col-start-auto { + grid-column-start: auto; } - .md\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .md\:col-end-1 { + grid-column-end: 1; } - .md\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .md\:col-end-2 { + grid-column-end: 2; } - .md\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .md\:col-end-3 { + grid-column-end: 3; } - .md\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .md\:col-end-4 { + grid-column-end: 4; } - .md\:hover\:bg-transparent:hover { - background-color: transparent; + .md\:col-end-5 { + grid-column-end: 5; } - .md\:hover\:bg-current:hover { - background-color: currentColor; + .md\:col-end-6 { + grid-column-end: 6; } - .md\:hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .md\:col-end-7 { + grid-column-end: 7; } - .md\:hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .md\:col-end-8 { + grid-column-end: 8; } - .md\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .md\:col-end-9 { + grid-column-end: 9; } - .md\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .md\:col-end-10 { + grid-column-end: 10; } - .md\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .md\:col-end-11 { + grid-column-end: 11; } - .md\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .md\:col-end-12 { + grid-column-end: 12; } - .md\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .md\:col-end-13 { + grid-column-end: 13; } - .md\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .md\:col-end-auto { + grid-column-end: auto; } - .md\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .md\:row-auto { + grid-row: auto; } - .md\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .md\:row-span-1 { + grid-row: span 1 / span 1; } - .md\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .md\:row-span-2 { + grid-row: span 2 / span 2; } - .md\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .md\:row-span-3 { + grid-row: span 3 / span 3; } - .md\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .md\:row-span-4 { + grid-row: span 4 / span 4; } - .md\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .md\:row-span-5 { + grid-row: span 5 / span 5; } - .md\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .md\:row-span-6 { + grid-row: span 6 / span 6; } - .md\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .md\:row-span-full { + grid-row: 1 / -1; } - .md\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .md\:row-start-1 { + grid-row-start: 1; } - .md\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .md\:row-start-2 { + grid-row-start: 2; } - .md\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .md\:row-start-3 { + grid-row-start: 3; } - .md\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .md\:row-start-4 { + grid-row-start: 4; } - .md\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .md\:row-start-5 { + grid-row-start: 5; } - .md\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .md\:row-start-6 { + grid-row-start: 6; } - .md\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .md\:row-start-7 { + grid-row-start: 7; } - .md\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .md\:row-start-auto { + grid-row-start: auto; } - .md\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .md\:row-end-1 { + grid-row-end: 1; } - .md\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .md\:row-end-2 { + grid-row-end: 2; } - .md\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .md\:row-end-3 { + grid-row-end: 3; } - .md\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .md\:row-end-4 { + grid-row-end: 4; } - .md\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .md\:row-end-5 { + grid-row-end: 5; } - .md\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .md\:row-end-6 { + grid-row-end: 6; } - .md\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .md\:row-end-7 { + grid-row-end: 7; } - .md\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .md\:row-end-auto { + grid-row-end: auto; } - .md\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .md\:float-right { + float: right; } - .md\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .md\:float-left { + float: left; } - .md\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .md\:float-none { + float: none; } - .md\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .md\:clear-left { + clear: left; } - .md\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .md\:clear-right { + clear: right; } - .md\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .md\:clear-both { + clear: both; } - .md\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .md\:clear-none { + clear: none; } - .md\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .md\:m-0 { + margin: 0px; } - .md\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .md\:m-1 { + margin: 0.25rem; } - .md\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .md\:m-2 { + margin: 0.5rem; } - .md\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .md\:m-3 { + margin: 0.75rem; } - .md\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .md\:m-4 { + margin: 1rem; } - .md\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .md\:m-5 { + margin: 1.25rem; } - .md\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .md\:m-6 { + margin: 1.5rem; } - .md\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .md\:m-7 { + margin: 1.75rem; } - .md\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .md\:m-8 { + margin: 2rem; } - .md\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .md\:m-9 { + margin: 2.25rem; } - .md\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .md\:m-10 { + margin: 2.5rem; } - .md\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .md\:m-11 { + margin: 2.75rem; } - .md\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .md\:m-12 { + margin: 3rem; } - .md\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .md\:m-14 { + margin: 3.5rem; } - .md\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .md\:m-16 { + margin: 4rem; } - .md\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .md\:m-20 { + margin: 5rem; } - .md\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .md\:m-24 { + margin: 6rem; } - .md\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .md\:m-28 { + margin: 7rem; } - .md\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .md\:m-32 { + margin: 8rem; } - .md\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .md\:m-36 { + margin: 9rem; } - .md\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .md\:m-40 { + margin: 10rem; } - .md\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .md\:m-44 { + margin: 11rem; } - .md\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .md\:m-48 { + margin: 12rem; } - .md\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .md\:m-52 { + margin: 13rem; } - .md\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .md\:m-56 { + margin: 14rem; } - .md\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .md\:m-60 { + margin: 15rem; } - .md\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .md\:m-64 { + margin: 16rem; } - .md\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .md\:m-72 { + margin: 18rem; } - .md\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .md\:m-80 { + margin: 20rem; } - .md\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .md\:m-96 { + margin: 24rem; } - .md\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .md\:m-auto { + margin: auto; } - .md\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .md\:m-px { + margin: 1px; } - .md\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .md\:m-0\.5 { + margin: 0.125rem; } - .md\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .md\:m-1\.5 { + margin: 0.375rem; } - .md\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .md\:m-2\.5 { + margin: 0.625rem; } - .md\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .md\:m-3\.5 { + margin: 0.875rem; } - .md\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .md\:-m-0 { + margin: 0px; } - .md\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .md\:-m-1 { + margin: -0.25rem; } - .md\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .md\:-m-2 { + margin: -0.5rem; } - .md\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .md\:-m-3 { + margin: -0.75rem; } - .md\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .md\:-m-4 { + margin: -1rem; } - .md\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .md\:-m-5 { + margin: -1.25rem; } - .md\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .md\:-m-6 { + margin: -1.5rem; } - .md\:focus\:bg-transparent:focus { - background-color: transparent; + .md\:-m-7 { + margin: -1.75rem; } - .md\:focus\:bg-current:focus { - background-color: currentColor; + .md\:-m-8 { + margin: -2rem; } - .md\:focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .md\:-m-9 { + margin: -2.25rem; } - .md\:focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .md\:-m-10 { + margin: -2.5rem; } - .md\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .md\:-m-11 { + margin: -2.75rem; } - .md\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .md\:-m-12 { + margin: -3rem; } - .md\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .md\:-m-14 { + margin: -3.5rem; } - .md\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .md\:-m-16 { + margin: -4rem; } - .md\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .md\:-m-20 { + margin: -5rem; } - .md\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .md\:-m-24 { + margin: -6rem; } - .md\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .md\:-m-28 { + margin: -7rem; } - .md\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .md\:-m-32 { + margin: -8rem; } - .md\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .md\:-m-36 { + margin: -9rem; } - .md\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .md\:-m-40 { + margin: -10rem; } - .md\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .md\:-m-44 { + margin: -11rem; } - .md\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .md\:-m-48 { + margin: -12rem; } - .md\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .md\:-m-52 { + margin: -13rem; } - .md\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .md\:-m-56 { + margin: -14rem; } - .md\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .md\:-m-60 { + margin: -15rem; } - .md\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .md\:-m-64 { + margin: -16rem; } - .md\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .md\:-m-72 { + margin: -18rem; } - .md\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .md\:-m-80 { + margin: -20rem; } - .md\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .md\:-m-96 { + margin: -24rem; } - .md\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .md\:-m-px { + margin: -1px; } - .md\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .md\:-m-0\.5 { + margin: -0.125rem; } - .md\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .md\:-m-1\.5 { + margin: -0.375rem; } - .md\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .md\:-m-2\.5 { + margin: -0.625rem; } - .md\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .md\:-m-3\.5 { + margin: -0.875rem; } - .md\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .md\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .md\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .md\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .md\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .md\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .md\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .md\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .md\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .md\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .md\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .md\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .md\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .md\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .md\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .md\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .md\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .md\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .md\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .md\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .md\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .md\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .md\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .md\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .md\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .md\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .md\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .md\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .md\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .md\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .md\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .md\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .md\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .md\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .md\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .md\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .md\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .md\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .md\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .md\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .md\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .md\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .md\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .md\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .md\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .md\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .md\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .md\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .md\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .md\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .md\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .md\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .md\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .md\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .md\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .md\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .md\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .md\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .md\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .md\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .md\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .md\:mx-auto { + margin-left: auto; + margin-right: auto; } - .md\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .md\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .md\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .md\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .md\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .md\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .md\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .md\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .md\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .md\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .md\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .md\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .md\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .md\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .md\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .md\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .md\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .md\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .md\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .md\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .md\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .md\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .md\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .md\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .md\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .md\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .md\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .md\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .md\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .md\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .md\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .md\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .md\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .md\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .md\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .md\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .md\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .md\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .md\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .md\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .md\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .md\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .md\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .md\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .md\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .md\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .md\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .md\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .md\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .md\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .md\:bg-none { - background-image: none; + .md\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .md\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .md\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .md\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .md\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .md\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .md\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .md\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .md\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .md\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .md\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .md\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .md\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .md\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .md\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .md\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .md\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .md\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .md\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .md\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .md\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .md\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .md\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .md\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .md\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .md\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .md\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .md\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .md\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .md\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .md\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .md\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .md\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .md\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .md\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .md\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .md\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .md\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .md\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .md\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .md\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .md\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .md\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .md\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .md\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .md\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .md\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .md\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .md\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .md\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .md\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .md\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .md\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .md\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .md\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .md\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .md\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .md\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .md\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .md\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .md\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .md\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .md\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .md\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .md\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .md\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .md\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .md\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .md\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .md\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .md\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .md\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .md\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .md\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .md\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .md\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .md\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .md\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .md\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .md\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .md\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .md\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .md\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .md\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .md\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .md\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .md\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .md\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .md\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .md\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .md\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .md\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .md\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .md\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .md\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:mt-0 { + margin-top: 0px; } - .md\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:mt-1 { + margin-top: 0.25rem; } - .md\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:mt-2 { + margin-top: 0.5rem; } - .md\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:mt-3 { + margin-top: 0.75rem; } - .md\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:mt-4 { + margin-top: 1rem; } - .md\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:mt-5 { + margin-top: 1.25rem; } - .md\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:mt-6 { + margin-top: 1.5rem; } - .md\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:mt-7 { + margin-top: 1.75rem; } - .md\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:mt-8 { + margin-top: 2rem; } - .md\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:mt-9 { + margin-top: 2.25rem; } - .md\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:mt-10 { + margin-top: 2.5rem; } - .md\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:mt-11 { + margin-top: 2.75rem; } - .md\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:mt-12 { + margin-top: 3rem; } - .md\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:mt-14 { + margin-top: 3.5rem; } - .md\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:mt-16 { + margin-top: 4rem; } - .md\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:mt-20 { + margin-top: 5rem; } - .md\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:mt-24 { + margin-top: 6rem; } - .md\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:mt-28 { + margin-top: 7rem; } - .md\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:mt-32 { + margin-top: 8rem; } - .md\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:mt-36 { + margin-top: 9rem; } - .md\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:mt-40 { + margin-top: 10rem; } - .md\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:mt-44 { + margin-top: 11rem; } - .md\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:mt-48 { + margin-top: 12rem; } - .md\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:mt-52 { + margin-top: 13rem; } - .md\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:mt-56 { + margin-top: 14rem; } - .md\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:mt-60 { + margin-top: 15rem; } - .md\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:mt-64 { + margin-top: 16rem; } - .md\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:mt-72 { + margin-top: 18rem; } - .md\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:mt-80 { + margin-top: 20rem; } - .md\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:mt-96 { + margin-top: 24rem; } - .md\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:mt-auto { + margin-top: auto; } - .md\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:mt-px { + margin-top: 1px; } - .md\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:mt-0\.5 { + margin-top: 0.125rem; } - .md\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:mt-1\.5 { + margin-top: 0.375rem; } - .md\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:mt-2\.5 { + margin-top: 0.625rem; } - .md\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:mt-3\.5 { + margin-top: 0.875rem; } - .md\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:-mt-0 { + margin-top: 0px; } - .md\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:-mt-1 { + margin-top: -0.25rem; } - .md\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:-mt-2 { + margin-top: -0.5rem; } - .md\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:-mt-3 { + margin-top: -0.75rem; } - .md\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:-mt-4 { + margin-top: -1rem; } - .md\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:-mt-5 { + margin-top: -1.25rem; } - .md\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:-mt-6 { + margin-top: -1.5rem; } - .md\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:-mt-7 { + margin-top: -1.75rem; } - .md\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:-mt-8 { + margin-top: -2rem; } - .md\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:-mt-9 { + margin-top: -2.25rem; } - .md\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:-mt-10 { + margin-top: -2.5rem; } - .md\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:-mt-11 { + margin-top: -2.75rem; } - .md\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:-mt-12 { + margin-top: -3rem; } - .md\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:-mt-14 { + margin-top: -3.5rem; } - .md\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:-mt-16 { + margin-top: -4rem; } - .md\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:-mt-20 { + margin-top: -5rem; } - .md\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:-mt-24 { + margin-top: -6rem; } - .md\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:-mt-28 { + margin-top: -7rem; } - .md\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:-mt-32 { + margin-top: -8rem; } - .md\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:-mt-36 { + margin-top: -9rem; } - .md\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:-mt-40 { + margin-top: -10rem; } - .md\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:-mt-44 { + margin-top: -11rem; } - .md\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:-mt-48 { + margin-top: -12rem; } - .md\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:-mt-52 { + margin-top: -13rem; } - .md\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:-mt-56 { + margin-top: -14rem; } - .md\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:-mt-60 { + margin-top: -15rem; } - .md\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:-mt-64 { + margin-top: -16rem; } - .md\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:-mt-72 { + margin-top: -18rem; } - .md\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:-mt-80 { + margin-top: -20rem; } - .md\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:-mt-96 { + margin-top: -24rem; } - .md\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:-mt-px { + margin-top: -1px; } - .md\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:-mt-0\.5 { + margin-top: -0.125rem; } - .md\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:-mt-1\.5 { + margin-top: -0.375rem; } - .md\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:-mt-2\.5 { + margin-top: -0.625rem; } - .md\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:-mt-3\.5 { + margin-top: -0.875rem; } - .md\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:mr-0 { + margin-right: 0px; } - .md\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:mr-1 { + margin-right: 0.25rem; } - .md\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:mr-2 { + margin-right: 0.5rem; } - .md\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:mr-3 { + margin-right: 0.75rem; } - .md\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:mr-4 { + margin-right: 1rem; } - .md\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:mr-5 { + margin-right: 1.25rem; } - .md\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:mr-6 { + margin-right: 1.5rem; } - .md\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:mr-7 { + margin-right: 1.75rem; } - .md\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:mr-8 { + margin-right: 2rem; } - .md\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:mr-9 { + margin-right: 2.25rem; } - .md\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:mr-10 { + margin-right: 2.5rem; } - .md\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:mr-11 { + margin-right: 2.75rem; } - .md\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:mr-12 { + margin-right: 3rem; } - .md\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:mr-14 { + margin-right: 3.5rem; } - .md\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:mr-16 { + margin-right: 4rem; } - .md\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:mr-20 { + margin-right: 5rem; } - .md\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:mr-24 { + margin-right: 6rem; } - .md\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:mr-28 { + margin-right: 7rem; } - .md\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:mr-32 { + margin-right: 8rem; } - .md\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:mr-36 { + margin-right: 9rem; } - .md\:to-transparent { - --tw-gradient-to: transparent; + .md\:mr-40 { + margin-right: 10rem; } - .md\:to-current { - --tw-gradient-to: currentColor; + .md\:mr-44 { + margin-right: 11rem; } - .md\:to-black { - --tw-gradient-to: #000; + .md\:mr-48 { + margin-right: 12rem; } - .md\:to-white { - --tw-gradient-to: #fff; + .md\:mr-52 { + margin-right: 13rem; } - .md\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .md\:mr-56 { + margin-right: 14rem; } - .md\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .md\:mr-60 { + margin-right: 15rem; } - .md\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .md\:mr-64 { + margin-right: 16rem; } - .md\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .md\:mr-72 { + margin-right: 18rem; } - .md\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .md\:mr-80 { + margin-right: 20rem; } - .md\:to-gray-500 { - --tw-gradient-to: #6b7280; + .md\:mr-96 { + margin-right: 24rem; } - .md\:to-gray-600 { - --tw-gradient-to: #4b5563; + .md\:mr-auto { + margin-right: auto; } - .md\:to-gray-700 { - --tw-gradient-to: #374151; + .md\:mr-px { + margin-right: 1px; } - .md\:to-gray-800 { - --tw-gradient-to: #1f2937; + .md\:mr-0\.5 { + margin-right: 0.125rem; } - .md\:to-gray-900 { - --tw-gradient-to: #111827; + .md\:mr-1\.5 { + margin-right: 0.375rem; } - .md\:to-red-50 { - --tw-gradient-to: #fef2f2; + .md\:mr-2\.5 { + margin-right: 0.625rem; } - .md\:to-red-100 { - --tw-gradient-to: #fee2e2; + .md\:mr-3\.5 { + margin-right: 0.875rem; } - .md\:to-red-200 { - --tw-gradient-to: #fecaca; + .md\:-mr-0 { + margin-right: 0px; } - .md\:to-red-300 { - --tw-gradient-to: #fca5a5; + .md\:-mr-1 { + margin-right: -0.25rem; } - .md\:to-red-400 { - --tw-gradient-to: #f87171; + .md\:-mr-2 { + margin-right: -0.5rem; } - .md\:to-red-500 { - --tw-gradient-to: #ef4444; + .md\:-mr-3 { + margin-right: -0.75rem; } - .md\:to-red-600 { - --tw-gradient-to: #dc2626; + .md\:-mr-4 { + margin-right: -1rem; } - .md\:to-red-700 { - --tw-gradient-to: #b91c1c; + .md\:-mr-5 { + margin-right: -1.25rem; } - .md\:to-red-800 { - --tw-gradient-to: #991b1b; + .md\:-mr-6 { + margin-right: -1.5rem; } - .md\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .md\:-mr-7 { + margin-right: -1.75rem; } - .md\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .md\:-mr-8 { + margin-right: -2rem; } - .md\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .md\:-mr-9 { + margin-right: -2.25rem; } - .md\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .md\:-mr-10 { + margin-right: -2.5rem; } - .md\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .md\:-mr-11 { + margin-right: -2.75rem; } - .md\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .md\:-mr-12 { + margin-right: -3rem; } - .md\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .md\:-mr-14 { + margin-right: -3.5rem; } - .md\:to-yellow-600 { - --tw-gradient-to: #d97706; + .md\:-mr-16 { + margin-right: -4rem; } - .md\:to-yellow-700 { - --tw-gradient-to: #b45309; + .md\:-mr-20 { + margin-right: -5rem; } - .md\:to-yellow-800 { - --tw-gradient-to: #92400e; + .md\:-mr-24 { + margin-right: -6rem; } - .md\:to-yellow-900 { - --tw-gradient-to: #78350f; + .md\:-mr-28 { + margin-right: -7rem; } - .md\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .md\:-mr-32 { + margin-right: -8rem; } - .md\:to-green-100 { - --tw-gradient-to: #d1fae5; + .md\:-mr-36 { + margin-right: -9rem; } - .md\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .md\:-mr-40 { + margin-right: -10rem; } - .md\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .md\:-mr-44 { + margin-right: -11rem; } - .md\:to-green-400 { - --tw-gradient-to: #34d399; + .md\:-mr-48 { + margin-right: -12rem; } - .md\:to-green-500 { - --tw-gradient-to: #10b981; + .md\:-mr-52 { + margin-right: -13rem; } - .md\:to-green-600 { - --tw-gradient-to: #059669; + .md\:-mr-56 { + margin-right: -14rem; } - .md\:to-green-700 { - --tw-gradient-to: #047857; + .md\:-mr-60 { + margin-right: -15rem; } - .md\:to-green-800 { - --tw-gradient-to: #065f46; + .md\:-mr-64 { + margin-right: -16rem; } - .md\:to-green-900 { - --tw-gradient-to: #064e3b; + .md\:-mr-72 { + margin-right: -18rem; } - .md\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .md\:-mr-80 { + margin-right: -20rem; } - .md\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .md\:-mr-96 { + margin-right: -24rem; } - .md\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .md\:-mr-px { + margin-right: -1px; } - .md\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .md\:-mr-0\.5 { + margin-right: -0.125rem; } - .md\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .md\:-mr-1\.5 { + margin-right: -0.375rem; } - .md\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .md\:-mr-2\.5 { + margin-right: -0.625rem; } - .md\:to-blue-600 { - --tw-gradient-to: #2563eb; + .md\:-mr-3\.5 { + margin-right: -0.875rem; } - .md\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .md\:mb-0 { + margin-bottom: 0px; } - .md\:to-blue-800 { - --tw-gradient-to: #1e40af; + .md\:mb-1 { + margin-bottom: 0.25rem; } - .md\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .md\:mb-2 { + margin-bottom: 0.5rem; } - .md\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .md\:mb-3 { + margin-bottom: 0.75rem; } - .md\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .md\:mb-4 { + margin-bottom: 1rem; } - .md\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .md\:mb-5 { + margin-bottom: 1.25rem; } - .md\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .md\:mb-6 { + margin-bottom: 1.5rem; } - .md\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .md\:mb-7 { + margin-bottom: 1.75rem; } - .md\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .md\:mb-8 { + margin-bottom: 2rem; } - .md\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .md\:mb-9 { + margin-bottom: 2.25rem; } - .md\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .md\:mb-10 { + margin-bottom: 2.5rem; } - .md\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .md\:mb-11 { + margin-bottom: 2.75rem; } - .md\:to-indigo-900 { - --tw-gradient-to: #312e81; + .md\:mb-12 { + margin-bottom: 3rem; } - .md\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .md\:mb-14 { + margin-bottom: 3.5rem; } - .md\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .md\:mb-16 { + margin-bottom: 4rem; } - .md\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .md\:mb-20 { + margin-bottom: 5rem; } - .md\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .md\:mb-24 { + margin-bottom: 6rem; } - .md\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .md\:mb-28 { + margin-bottom: 7rem; } - .md\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .md\:mb-32 { + margin-bottom: 8rem; } - .md\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .md\:mb-36 { + margin-bottom: 9rem; } - .md\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .md\:mb-40 { + margin-bottom: 10rem; } - .md\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .md\:mb-44 { + margin-bottom: 11rem; } - .md\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .md\:mb-48 { + margin-bottom: 12rem; } - .md\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .md\:mb-52 { + margin-bottom: 13rem; } - .md\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .md\:mb-56 { + margin-bottom: 14rem; } - .md\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .md\:mb-60 { + margin-bottom: 15rem; } - .md\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .md\:mb-64 { + margin-bottom: 16rem; } - .md\:to-pink-400 { - --tw-gradient-to: #f472b6; + .md\:mb-72 { + margin-bottom: 18rem; } - .md\:to-pink-500 { - --tw-gradient-to: #ec4899; + .md\:mb-80 { + margin-bottom: 20rem; } - .md\:to-pink-600 { - --tw-gradient-to: #db2777; + .md\:mb-96 { + margin-bottom: 24rem; } - .md\:to-pink-700 { - --tw-gradient-to: #be185d; + .md\:mb-auto { + margin-bottom: auto; } - .md\:to-pink-800 { - --tw-gradient-to: #9d174d; + .md\:mb-px { + margin-bottom: 1px; } - .md\:to-pink-900 { - --tw-gradient-to: #831843; + .md\:mb-0\.5 { + margin-bottom: 0.125rem; } - .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\:mb-1\.5 { + margin-bottom: 0.375rem; } - .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\:mb-2\.5 { + margin-bottom: 0.625rem; } - .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\:mb-3\.5 { + margin-bottom: 0.875rem; } - .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\:-mb-0 { + margin-bottom: 0px; } - .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\:-mb-1 { + margin-bottom: -0.25rem; } - .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\:-mb-2 { + margin-bottom: -0.5rem; } - .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\:-mb-3 { + margin-bottom: -0.75rem; } - .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\:-mb-4 { + margin-bottom: -1rem; } - .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\:-mb-5 { + margin-bottom: -1.25rem; } - .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\:-mb-6 { + margin-bottom: -1.5rem; } - .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\:-mb-7 { + margin-bottom: -1.75rem; } - .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\:-mb-8 { + margin-bottom: -2rem; } - .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\:-mb-9 { + margin-bottom: -2.25rem; } - .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\:-mb-10 { + margin-bottom: -2.5rem; } - .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\:-mb-11 { + margin-bottom: -2.75rem; } - .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\:-mb-12 { + margin-bottom: -3rem; } - .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\:-mb-14 { + margin-bottom: -3.5rem; } - .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\:-mb-16 { + margin-bottom: -4rem; } - .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\:-mb-20 { + margin-bottom: -5rem; } - .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\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .md\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:-ml-10 { + margin-left: -2.5rem; } - .md\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:-ml-11 { + margin-left: -2.75rem; } - .md\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:-ml-12 { + margin-left: -3rem; } - .md\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:-ml-14 { + margin-left: -3.5rem; } - .md\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:-ml-16 { + margin-left: -4rem; } - .md\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:-ml-20 { + margin-left: -5rem; } - .md\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:-ml-24 { + margin-left: -6rem; } - .md\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:-ml-28 { + margin-left: -7rem; } - .md\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:-ml-32 { + margin-left: -8rem; } - .md\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:-ml-36 { + margin-left: -9rem; } - .md\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:-ml-40 { + margin-left: -10rem; } - .md\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:-ml-44 { + margin-left: -11rem; } - .md\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:-ml-48 { + margin-left: -12rem; } - .md\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:-ml-52 { + margin-left: -13rem; } - .md\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:-ml-56 { + margin-left: -14rem; } - .md\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:-ml-60 { + margin-left: -15rem; } - .md\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:-ml-64 { + margin-left: -16rem; } - .md\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:-ml-72 { + margin-left: -18rem; } - .md\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:-ml-80 { + margin-left: -20rem; } - .md\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:-ml-96 { + margin-left: -24rem; } - .md\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:-ml-px { + margin-left: -1px; } - .md\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:-ml-0\.5 { + margin-left: -0.125rem; } - .md\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:-ml-1\.5 { + margin-left: -0.375rem; } - .md\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:-ml-2\.5 { + margin-left: -0.625rem; } - .md\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:-ml-3\.5 { + margin-left: -0.875rem; } - .md\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:box-border { + box-sizing: border-box; } - .md\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:box-content { + box-sizing: content-box; } - .md\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:block { + display: block; } - .md\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:inline-block { + display: inline-block; } - .md\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:inline { + display: inline; } - .md\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:flex { + display: flex; } - .md\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:inline-flex { + display: inline-flex; } - .md\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:table { + display: table; } - .md\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:inline-table { + display: inline-table; } - .md\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:table-caption { + display: table-caption; } - .md\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:table-cell { + display: table-cell; } - .md\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:table-column { + display: table-column; } - .md\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:table-column-group { + display: table-column-group; } - .md\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:table-footer-group { + display: table-footer-group; } - .md\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:table-header-group { + display: table-header-group; } - .md\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:table-row-group { + display: table-row-group; } - .md\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:table-row { + display: table-row; } - .md\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:flow-root { + display: flow-root; } - .md\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:grid { + display: grid; } - .md\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:inline-grid { + display: inline-grid; } - .md\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:contents { + display: contents; } - .md\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:list-item { + display: list-item; } - .md\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:hidden { + display: none; } - .md\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:h-0 { + height: 0px; } - .md\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:h-1 { + height: 0.25rem; } - .md\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:h-2 { + height: 0.5rem; } - .md\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:h-3 { + height: 0.75rem; } - .md\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:h-4 { + height: 1rem; } - .md\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:h-5 { + height: 1.25rem; } - .md\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:h-6 { + height: 1.5rem; } - .md\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:h-7 { + height: 1.75rem; } - .md\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:h-8 { + height: 2rem; } - .md\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:h-9 { + height: 2.25rem; } - .md\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:h-10 { + height: 2.5rem; } - .md\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:h-11 { + height: 2.75rem; } - .md\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:h-12 { + height: 3rem; } - .md\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:h-14 { + height: 3.5rem; } - .md\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:h-16 { + height: 4rem; } - .md\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:h-20 { + height: 5rem; } - .md\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:h-24 { + height: 6rem; } - .md\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:h-28 { + height: 7rem; } - .md\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:h-32 { + height: 8rem; } - .md\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:h-36 { + height: 9rem; } - .md\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:h-40 { + height: 10rem; } - .md\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:h-44 { + height: 11rem; } - .md\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:h-48 { + height: 12rem; } - .md\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:h-52 { + height: 13rem; } - .md\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:h-56 { + height: 14rem; } - .md\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:h-60 { + height: 15rem; } - .md\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:h-64 { + height: 16rem; } - .md\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:h-72 { + height: 18rem; } - .md\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:h-80 { + height: 20rem; } - .md\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:h-96 { + height: 24rem; } - .md\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:h-auto { + height: auto; } - .md\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:h-px { + height: 1px; } - .md\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:h-0\.5 { + height: 0.125rem; } - .md\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:h-1\.5 { + height: 0.375rem; } - .md\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:h-2\.5 { + height: 0.625rem; } - .md\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:h-3\.5 { + height: 0.875rem; } - .md\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .md\:h-1\/2 { + height: 50%; } - .md\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .md\:h-1\/3 { + height: 33.333333%; } - .md\:hover\:to-black:hover { - --tw-gradient-to: #000; + .md\:h-2\/3 { + height: 66.666667%; } - .md\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .md\:h-1\/4 { + height: 25%; } - .md\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .md\:h-2\/4 { + height: 50%; } - .md\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .md\:h-3\/4 { + height: 75%; } - .md\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .md\:h-1\/5 { + height: 20%; } - .md\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .md\:h-2\/5 { + height: 40%; } - .md\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .md\:h-3\/5 { + height: 60%; } - .md\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .md\:h-4\/5 { + height: 80%; } - .md\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .md\:h-1\/6 { + height: 16.666667%; } - .md\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .md\:h-2\/6 { + height: 33.333333%; } - .md\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .md\:h-3\/6 { + height: 50%; } - .md\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .md\:h-4\/6 { + height: 66.666667%; } - .md\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .md\:h-5\/6 { + height: 83.333333%; } - .md\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .md\:h-full { + height: 100%; } - .md\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .md\:h-screen { + height: 100vh; } - .md\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .md\:max-h-0 { + max-height: 0px; } - .md\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .md\:max-h-1 { + max-height: 0.25rem; } - .md\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .md\:max-h-2 { + max-height: 0.5rem; } - .md\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .md\:max-h-3 { + max-height: 0.75rem; } - .md\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .md\:max-h-4 { + max-height: 1rem; } - .md\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .md\:max-h-5 { + max-height: 1.25rem; } - .md\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .md\:max-h-6 { + max-height: 1.5rem; } - .md\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .md\:max-h-7 { + max-height: 1.75rem; } - .md\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .md\:max-h-8 { + max-height: 2rem; } - .md\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .md\:max-h-9 { + max-height: 2.25rem; } - .md\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .md\:max-h-10 { + max-height: 2.5rem; } - .md\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .md\:max-h-11 { + max-height: 2.75rem; } - .md\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .md\:max-h-12 { + max-height: 3rem; } - .md\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .md\:max-h-14 { + max-height: 3.5rem; } - .md\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .md\:max-h-16 { + max-height: 4rem; } - .md\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .md\:max-h-20 { + max-height: 5rem; } - .md\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .md\:max-h-24 { + max-height: 6rem; } - .md\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .md\:max-h-28 { + max-height: 7rem; } - .md\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .md\:max-h-32 { + max-height: 8rem; } - .md\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .md\:max-h-36 { + max-height: 9rem; } - .md\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .md\:max-h-40 { + max-height: 10rem; } - .md\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .md\:max-h-44 { + max-height: 11rem; } - .md\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .md\:max-h-48 { + max-height: 12rem; } - .md\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .md\:max-h-52 { + max-height: 13rem; } - .md\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .md\:max-h-56 { + max-height: 14rem; } - .md\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .md\:max-h-60 { + max-height: 15rem; } - .md\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .md\:max-h-64 { + max-height: 16rem; } - .md\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .md\:max-h-72 { + max-height: 18rem; } - .md\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .md\:max-h-80 { + max-height: 20rem; } - .md\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .md\:max-h-96 { + max-height: 24rem; } - .md\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .md\:max-h-px { + max-height: 1px; } - .md\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .md\:max-h-0\.5 { + max-height: 0.125rem; } - .md\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .md\:max-h-1\.5 { + max-height: 0.375rem; } - .md\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .md\:max-h-2\.5 { + max-height: 0.625rem; } - .md\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .md\:max-h-3\.5 { + max-height: 0.875rem; } - .md\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .md\:max-h-full { + max-height: 100%; } - .md\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .md\:max-h-screen { + max-height: 100vh; } - .md\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .md\:min-h-0 { + min-height: 0px; } - .md\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .md\:min-h-full { + min-height: 100%; } - .md\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .md\:min-h-screen { + min-height: 100vh; } - .md\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .md\:w-0 { + width: 0px; } - .md\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .md\:w-1 { + width: 0.25rem; } - .md\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .md\:w-2 { + width: 0.5rem; } - .md\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .md\:w-3 { + width: 0.75rem; } - .md\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .md\:w-4 { + width: 1rem; } - .md\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .md\:w-5 { + width: 1.25rem; } - .md\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .md\:w-6 { + width: 1.5rem; } - .md\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .md\:w-7 { + width: 1.75rem; } - .md\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .md\:w-8 { + width: 2rem; } - .md\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .md\:w-9 { + width: 2.25rem; } - .md\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .md\:w-10 { + width: 2.5rem; } - .md\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .md\:w-11 { + width: 2.75rem; } - .md\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .md\:w-12 { + width: 3rem; } - .md\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .md\:w-14 { + width: 3.5rem; } - .md\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .md\:w-16 { + width: 4rem; } - .md\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .md\:w-20 { + width: 5rem; } - .md\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .md\:w-24 { + width: 6rem; } - .md\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .md\:w-28 { + width: 7rem; } - .md\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .md\:w-32 { + width: 8rem; } - .md\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .md\:w-36 { + width: 9rem; } - .md\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .md\:w-40 { + width: 10rem; } - .md\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .md\:w-44 { + width: 11rem; } - .md\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .md\:w-48 { + width: 12rem; } - .md\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .md\:w-52 { + width: 13rem; } - .md\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .md\:w-56 { + width: 14rem; } - .md\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .md\:w-60 { + width: 15rem; } - .md\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .md\:w-64 { + width: 16rem; } - .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\:w-72 { + width: 18rem; } - .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\:w-80 { + width: 20rem; } - .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\:w-96 { + width: 24rem; } - .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\:w-auto { + width: auto; } - .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\:w-px { + width: 1px; } - .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\:w-0\.5 { + width: 0.125rem; } - .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\:w-1\.5 { + width: 0.375rem; } - .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\:w-2\.5 { + width: 0.625rem; } - .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\:w-3\.5 { + width: 0.875rem; } - .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\:w-1\/2 { + width: 50%; } - .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\:w-1\/3 { + width: 33.333333%; } - .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\:w-2\/3 { + width: 66.666667%; } - .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\:w-1\/4 { + width: 25%; } - .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\:w-2\/4 { + width: 50%; } - .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\:w-3\/4 { + width: 75%; } - .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\:w-1\/5 { + width: 20%; } - .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\:w-2\/5 { + width: 40%; } - .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\:w-3\/5 { + width: 60%; } - .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\:w-4\/5 { + width: 80%; } - .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\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .md\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .md\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .md\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:origin-bottom-right { + transform-origin: bottom right; } - .md\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:origin-bottom { + transform-origin: bottom; } - .md\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:origin-bottom-left { + transform-origin: bottom left; } - .md\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:origin-left { + transform-origin: left; } - .md\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:origin-top-left { + transform-origin: top left; } - .md\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:translate-x-0 { + --tw-translate-x: 0px; } - .md\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .md\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .md\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .md\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:translate-x-4 { + --tw-translate-x: 1rem; } - .md\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .md\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .md\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .md\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:translate-x-8 { + --tw-translate-x: 2rem; } - .md\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .md\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .md\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .md\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:translate-x-12 { + --tw-translate-x: 3rem; } - .md\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .md\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:translate-x-16 { + --tw-translate-x: 4rem; } - .md\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:translate-x-20 { + --tw-translate-x: 5rem; } - .md\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:translate-x-24 { + --tw-translate-x: 6rem; } - .md\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:translate-x-28 { + --tw-translate-x: 7rem; } - .md\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:translate-x-32 { + --tw-translate-x: 8rem; } - .md\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:translate-x-36 { + --tw-translate-x: 9rem; } - .md\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:translate-x-40 { + --tw-translate-x: 10rem; } - .md\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:translate-x-44 { + --tw-translate-x: 11rem; } - .md\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:translate-x-48 { + --tw-translate-x: 12rem; } - .md\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:translate-x-52 { + --tw-translate-x: 13rem; } - .md\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:translate-x-56 { + --tw-translate-x: 14rem; } - .md\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:translate-x-60 { + --tw-translate-x: 15rem; } - .md\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:translate-x-64 { + --tw-translate-x: 16rem; } - .md\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:translate-x-72 { + --tw-translate-x: 18rem; } - .md\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:translate-x-80 { + --tw-translate-x: 20rem; } - .md\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:translate-x-96 { + --tw-translate-x: 24rem; } - .md\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:translate-x-px { + --tw-translate-x: 1px; } - .md\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .md\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .md\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .md\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .md\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:-translate-x-0 { + --tw-translate-x: 0px; } - .md\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .md\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .md\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .md\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:-translate-x-4 { + --tw-translate-x: -1rem; } - .md\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .md\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .md\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .md\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:-translate-x-8 { + --tw-translate-x: -2rem; } - .md\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .md\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .md\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .md\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:-translate-x-12 { + --tw-translate-x: -3rem; } - .md\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .md\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:-translate-x-16 { + --tw-translate-x: -4rem; } - .md\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:-translate-x-20 { + --tw-translate-x: -5rem; } - .md\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:-translate-x-24 { + --tw-translate-x: -6rem; } - .md\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:-translate-x-28 { + --tw-translate-x: -7rem; } - .md\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:-translate-x-32 { + --tw-translate-x: -8rem; } - .md\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:-translate-x-36 { + --tw-translate-x: -9rem; } - .md\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:-translate-x-40 { + --tw-translate-x: -10rem; } - .md\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:-translate-x-44 { + --tw-translate-x: -11rem; } - .md\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:-translate-x-48 { + --tw-translate-x: -12rem; } - .md\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:-translate-x-52 { + --tw-translate-x: -13rem; } - .md\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:-translate-x-56 { + --tw-translate-x: -14rem; } - .md\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:-translate-x-60 { + --tw-translate-x: -15rem; } - .md\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:-translate-x-64 { + --tw-translate-x: -16rem; } - .md\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:-translate-x-72 { + --tw-translate-x: -18rem; } - .md\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:-translate-x-80 { + --tw-translate-x: -20rem; } - .md\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:-translate-x-96 { + --tw-translate-x: -24rem; } - .md\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:-translate-x-px { + --tw-translate-x: -1px; } - .md\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .md\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .md\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .md\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .md\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .md\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .md\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .md\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .md\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .md\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .md\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:translate-x-full { + --tw-translate-x: 100%; } - .md\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .md\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .md\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .md\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .md\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .md\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .md\:focus\:to-black:focus { - --tw-gradient-to: #000; + .md\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .md\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .md\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .md\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .md\:-translate-x-full { + --tw-translate-x: -100%; } - .md\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .md\:translate-y-0 { + --tw-translate-y: 0px; } - .md\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .md\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .md\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .md\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .md\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .md\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .md\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .md\:translate-y-4 { + --tw-translate-y: 1rem; } - .md\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .md\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .md\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .md\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .md\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .md\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .md\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .md\:translate-y-8 { + --tw-translate-y: 2rem; } - .md\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .md\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .md\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .md\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .md\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .md\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .md\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .md\:translate-y-12 { + --tw-translate-y: 3rem; } - .md\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .md\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .md\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .md\:translate-y-16 { + --tw-translate-y: 4rem; } - .md\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .md\:translate-y-20 { + --tw-translate-y: 5rem; } - .md\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .md\:translate-y-24 { + --tw-translate-y: 6rem; } - .md\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .md\:translate-y-28 { + --tw-translate-y: 7rem; } - .md\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .md\:translate-y-32 { + --tw-translate-y: 8rem; } - .md\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .md\:translate-y-36 { + --tw-translate-y: 9rem; } - .md\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .md\:translate-y-40 { + --tw-translate-y: 10rem; } - .md\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .md\:translate-y-44 { + --tw-translate-y: 11rem; } - .md\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .md\:translate-y-48 { + --tw-translate-y: 12rem; } - .md\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .md\:translate-y-52 { + --tw-translate-y: 13rem; } - .md\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .md\:translate-y-56 { + --tw-translate-y: 14rem; } - .md\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .md\:translate-y-60 { + --tw-translate-y: 15rem; } - .md\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .md\:translate-y-64 { + --tw-translate-y: 16rem; } - .md\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .md\:translate-y-72 { + --tw-translate-y: 18rem; } - .md\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .md\:translate-y-80 { + --tw-translate-y: 20rem; } - .md\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .md\:translate-y-96 { + --tw-translate-y: 24rem; } - .md\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .md\:translate-y-px { + --tw-translate-y: 1px; } - .md\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .md\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .md\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .md\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .md\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .md\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .md\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .md\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .md\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .md\:-translate-y-0 { + --tw-translate-y: 0px; } - .md\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .md\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .md\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .md\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .md\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .md\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .md\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .md\:-translate-y-4 { + --tw-translate-y: -1rem; } - .md\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .md\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .md\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .md\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .md\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .md\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .md\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .md\:-translate-y-8 { + --tw-translate-y: -2rem; } - .md\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .md\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .md\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .md\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .md\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .md\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .md\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .md\:-translate-y-12 { + --tw-translate-y: -3rem; } - .md\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .md\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .md\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .md\:-translate-y-16 { + --tw-translate-y: -4rem; } - .md\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .md\:-translate-y-20 { + --tw-translate-y: -5rem; } - .md\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .md\:-translate-y-24 { + --tw-translate-y: -6rem; } - .md\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .md\:-translate-y-28 { + --tw-translate-y: -7rem; } - .md\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .md\:-translate-y-32 { + --tw-translate-y: -8rem; } - .md\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .md\:-translate-y-36 { + --tw-translate-y: -9rem; } - .md\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .md\:-translate-y-40 { + --tw-translate-y: -10rem; } - .md\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .md\:-translate-y-44 { + --tw-translate-y: -11rem; } - .md\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .md\:-translate-y-48 { + --tw-translate-y: -12rem; } - .md\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .md\:-translate-y-52 { + --tw-translate-y: -13rem; } - .md\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .md\:-translate-y-56 { + --tw-translate-y: -14rem; } - .md\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .md\:-translate-y-60 { + --tw-translate-y: -15rem; } - .md\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .md\:-translate-y-64 { + --tw-translate-y: -16rem; } - .md\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .md\:-translate-y-72 { + --tw-translate-y: -18rem; } - .md\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .md\:-translate-y-80 { + --tw-translate-y: -20rem; } - .md\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .md\:-translate-y-96 { + --tw-translate-y: -24rem; } - .md\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .md\:-translate-y-px { + --tw-translate-y: -1px; } - .md\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .md\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .md\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .md\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .md\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .md\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .md\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .md\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .md\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .md\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .md\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .md\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .md\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .md\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .md\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .md\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .md\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .md\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .md\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .md\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .md\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .md\:translate-y-full { + --tw-translate-y: 100%; } - .md\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .md\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .md\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .md\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .md\:bg-opacity-0 { - --tw-bg-opacity: 0; + .md\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .md\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .md\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .md\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .md\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .md\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .md\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .md\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .md\:-translate-y-full { + --tw-translate-y: -100%; } - .md\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .md\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .md\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .md\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .md\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .md\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .md\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .md\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .md\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .md\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .md\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .md\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .md\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .md\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .md\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .md\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .md\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .md\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .md\:bg-opacity-100 { - --tw-bg-opacity: 1; + .md\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .group:hover .md\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; + .md\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .group:hover .md\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .md\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .group:hover .md\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .md\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .group:hover .md\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .md\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .group:hover .md\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .md\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .group:hover .md\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .md\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .group:hover .md\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .md\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .group:hover .md\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .md\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .group:hover .md\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .md\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .group:hover .md\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .md\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .group:hover .md\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .md\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .group:hover .md\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .md\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .group:hover .md\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .md\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .group:hover .md\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .md\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .group:hover .md\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; + .md\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .md\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; + .md\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .md\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; + .md\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .md\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; + .md\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .md\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; + .md\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .md\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; + .md\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .md\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; + .md\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .md\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; + .md\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .md\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; + .md\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .md\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; + .md\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .md\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; + .md\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .md\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; + .md\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .md\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; + .md\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .md\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; + .md\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .md\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; + .md\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .md\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; + .md\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .md\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; + .md\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .md\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; + .md\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .md\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; + .md\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .md\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; + .md\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .md\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; + .md\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .md\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; + .md\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .md\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; + .md\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .md\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; + .md\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .md\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; + .md\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .md\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; + .md\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .md\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; + .md\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .md\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; + .md\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .md\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; + .md\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .md\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; + .md\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .md\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; + .md\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .md\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; + .md\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .md\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; + .md\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .md\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; + .md\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .md\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; + .md\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .md\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; + .md\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .md\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; + .md\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .md\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; + .md\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .md\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; + .md\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .md\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; + .md\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .md\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; + .md\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .md\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; + .md\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .md\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; + .md\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .md\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; + .md\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .md\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; + .md\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .md\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; + .md\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .md\:bg-bottom { - background-position: bottom; + .md\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .md\:bg-center { - background-position: center; + .md\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .md\:bg-left { - background-position: left; + .md\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .md\:bg-left-bottom { - background-position: left bottom; + .md\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .md\:bg-left-top { - background-position: left top; + .md\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .md\:bg-right { - background-position: right; + .md\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .md\:bg-right-bottom { - background-position: right bottom; + .md\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .md\:bg-right-top { - background-position: right top; + .md\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .md\:bg-top { - background-position: top; + .md\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .md\:bg-repeat { - background-repeat: repeat; + .md\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .md\:bg-no-repeat { - background-repeat: no-repeat; + .md\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .md\:bg-repeat-x { - background-repeat: repeat-x; + .md\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .md\:bg-repeat-y { - background-repeat: repeat-y; + .md\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .md\:bg-repeat-round { - background-repeat: round; + .md\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .md\:bg-repeat-space { - background-repeat: space; + .md\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .md\:bg-auto { - background-size: auto; + .md\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .md\:bg-cover { - background-size: cover; + .md\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .md\:bg-contain { - background-size: contain; + .md\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .md\:bg-origin-border { - background-origin: border-box; + .md\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .md\:bg-origin-padding { - background-origin: padding-box; + .md\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .md\:bg-origin-content { - background-origin: content-box; + .md\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .md\:border-collapse { - border-collapse: collapse; + .md\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .md\:border-separate { - border-collapse: separate; + .md\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .md\:border-transparent { - border-color: transparent; + .md\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .md\:border-current { - border-color: currentColor; + .md\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .md\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .md\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .md\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .md\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .md\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .md\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .md\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .md\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .md\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .md\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .md\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .md\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .md\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .md\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .md\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .md\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .md\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .md\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .md\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .md\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .md\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .md\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .md\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .md\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .md\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .md\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .md\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .md\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .md\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .md\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .md\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .md\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .md\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .md\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .md\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .md\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .md\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .md\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .md\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .md\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .md\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .md\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .md\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .md\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .md\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .md\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .md\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .md\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .md\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .md\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .md\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .md\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .md\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .md\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .md\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .md\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .md\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .md\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .md\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .md\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .md\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .md\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .md\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .md\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .md\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .md\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .md\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .md\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .md\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .md\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .md\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .md\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .md\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .md\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .md\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .md\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .md\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .md\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .md\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .md\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .md\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .md\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .md\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .md\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .md\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .md\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .md\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .md\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .md\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .md\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .md\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .md\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .md\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .md\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .md\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .md\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .md\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .md\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .md\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .md\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .md\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .md\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .md\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .md\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .md\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .md\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .md\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .md\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .md\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .md\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .md\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .md\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .md\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .md\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .md\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .md\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .md\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .md\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .md\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .md\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .md\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .md\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .md\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .md\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .md\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .md\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .md\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .md\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .md\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .md\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .md\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .md\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .md\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .md\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .md\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .md\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .md\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .md\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .md\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .md\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .md\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .md\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .md\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .md\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .md\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .md\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .md\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .md\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .md\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .md\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .md\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .md\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .md\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .md\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .md\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .md\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .md\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .md\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .md\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .md\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .md\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .md\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .md\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .md\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .md\:group-hover\:border-transparent { - border-color: transparent; + .md\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .md\:group-hover\:border-current { - border-color: currentColor; + .md\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .md\:group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .md\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .md\:group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .md\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .md\:group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .md\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .md\:group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .md\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .md\:group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .md\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .md\:group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .md\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .md\:group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .md\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .md\:group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .md\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .md\:group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .md\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .md\:group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .md\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .md\:group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .md\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .md\:group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .md\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .md\:group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .md\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .md\:group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .md\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .md\:group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .md\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .md\:group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .md\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .md\:group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .md\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .md\:group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .md\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .md\:group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .md\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .md\:group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .md\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .md\:group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .md\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .md\:group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .md\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .md\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .md\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .md\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .md\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .md\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .md\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .md\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .md\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .md\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .md\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .group:hover .md\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .md\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .group:hover .md\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .md\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .group:hover .md\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .md\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .group:hover .md\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .md\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .group:hover .md\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .md\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .group:hover .md\:group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .md\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .group:hover .md\:group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .md\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - - .group:hover .md\:group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + + .md\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .group:hover .md\:group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .md\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .group:hover .md\:group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .md\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .group:hover .md\:group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .md\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .group:hover .md\:group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .md\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .group:hover .md\:group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .md\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .group:hover .md\:group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .md\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .group:hover .md\:group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .md\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .group:hover .md\:group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .group:hover .md\:group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .group:hover .md\:group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .group:hover .md\:group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .md\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .group:hover .md\:group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .md\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .group:hover .md\:group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .md\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .group:hover .md\:group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .md\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .group:hover .md\:group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .md\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .group:hover .md\:group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .md\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .group:hover .md\:group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .md\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .group:hover .md\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .group:hover .md\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .group:hover .md\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .group:hover .md\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .md\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .group:hover .md\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .md\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .group:hover .md\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .md\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .group:hover .md\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .md\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .group:hover .md\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .md\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .group:hover .md\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .md\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .group:hover .md\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .md\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .group:hover .md\:group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .md\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .group:hover .md\:group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .md\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .group:hover .md\:group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .md\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .group:hover .md\:group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .md\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .group:hover .md\:group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .md\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .group:hover .md\:group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .md\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .group:hover .md\:group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .md\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .group:hover .md\:group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .md\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .group:hover .md\:group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .md\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .group:hover .md\:group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .md\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .group:hover .md\:group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .md\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .group:hover .md\:group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .md\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .group:hover .md\:group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .md\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .group:hover .md\:group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .md\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .group:hover .md\:group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .md\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .group:hover .md\:group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .md\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .group:hover .md\:group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .md\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .group:hover .md\:group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .md\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .group:hover .md\:group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .md\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .group:hover .md\:group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .md\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .md\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .md\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .md\:focus-within\:border-current:focus-within { - border-color: currentColor; + .md\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .md\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .md\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .md\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .md\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .md\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .md\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .md\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .md\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .md\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .md\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .md\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .md\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .md\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .md\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .md\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .md\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .md\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .md\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .md\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .md\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .md\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .md\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .md\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .md\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .md\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .md\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .md\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .md\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .md\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .md\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .md\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .md\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .md\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .md\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .md\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .md\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .md\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .md\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .md\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .md\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .md\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .md\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .md\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .md\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .md\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .md\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .md\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .md\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .md\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .md\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .md\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .md\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .md\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .md\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .md\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .md\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .md\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .md\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .md\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .md\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .md\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .md\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .md\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .md\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .md\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .md\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .md\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .md\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .md\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .md\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .md\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .md\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .md\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .md\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .md\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .md\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .md\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .md\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .md\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .md\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .md\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .md\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .md\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .md\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .md\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .md\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .md\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .md\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .md\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .md\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .md\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .md\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .md\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .md\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .md\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .md\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .md\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .md\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .md\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .md\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .md\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .md\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .md\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .md\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .md\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .md\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .md\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .md\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .md\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .md\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .md\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .md\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .md\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .md\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .md\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .md\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .md\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .md\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .md\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .md\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .md\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .md\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .md\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .md\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .md\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .md\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .md\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .md\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .md\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .md\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .md\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .md\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .md\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .md\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .md\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .md\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .md\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .md\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .md\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .md\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .md\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .md\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .md\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .md\:rotate-0 { + --tw-rotate: 0deg; } - .md\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .md\:rotate-1 { + --tw-rotate: 1deg; } - .md\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .md\:rotate-2 { + --tw-rotate: 2deg; } - .md\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .md\:rotate-3 { + --tw-rotate: 3deg; } - .md\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .md\:rotate-6 { + --tw-rotate: 6deg; } - .md\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .md\:rotate-12 { + --tw-rotate: 12deg; } - .md\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .md\:rotate-45 { + --tw-rotate: 45deg; } - .md\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .md\:rotate-90 { + --tw-rotate: 90deg; } - .md\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .md\:rotate-180 { + --tw-rotate: 180deg; } - .md\:hover\:border-transparent:hover { - border-color: transparent; + .md\:-rotate-180 { + --tw-rotate: -180deg; } - .md\:hover\:border-current:hover { - border-color: currentColor; + .md\:-rotate-90 { + --tw-rotate: -90deg; } - .md\:hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .md\:-rotate-45 { + --tw-rotate: -45deg; } - .md\:hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .md\:-rotate-12 { + --tw-rotate: -12deg; } - .md\:hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .md\:-rotate-6 { + --tw-rotate: -6deg; } - .md\:hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .md\:-rotate-3 { + --tw-rotate: -3deg; } - .md\:hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .md\:-rotate-2 { + --tw-rotate: -2deg; } - .md\:hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .md\:-rotate-1 { + --tw-rotate: -1deg; } - .md\:hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .md\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .md\:hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .md\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .md\:hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .md\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .md\:hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .md\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .md\:hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .md\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .md\:hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .md\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .md\:hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .md\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .md\:hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .md\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .md\:hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .md\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .md\:hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .md\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .md\:hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .md\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .md\:hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .md\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .md\:hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .md\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .md\:hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .md\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .md\:hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .md\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .md\:hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .md\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .md\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .md\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .md\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .md\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .md\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .md\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .md\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .md\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .md\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .md\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .md\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .md\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .md\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .md\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .md\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .md\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .md\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .md\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .md\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .md\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .md\:hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .md\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .md\:hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .md\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .md\:hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .md\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .md\:hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .md\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .md\:hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .md\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .md\:hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .md\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .md\:hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .md\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .md\:hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .md\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .md\:hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .md\:skew-x-0 { + --tw-skew-x: 0deg; } - .md\:hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .md\:skew-x-1 { + --tw-skew-x: 1deg; } - .md\:hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .md\:skew-x-2 { + --tw-skew-x: 2deg; } - .md\:hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .md\:skew-x-3 { + --tw-skew-x: 3deg; } - .md\:hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .md\:skew-x-6 { + --tw-skew-x: 6deg; } - .md\:hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .md\:skew-x-12 { + --tw-skew-x: 12deg; } - .md\:hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .md\:-skew-x-12 { + --tw-skew-x: -12deg; } - .md\:hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .md\:-skew-x-6 { + --tw-skew-x: -6deg; } - .md\:hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .md\:-skew-x-3 { + --tw-skew-x: -3deg; } - .md\:hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .md\:-skew-x-2 { + --tw-skew-x: -2deg; } - .md\:hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .md\:-skew-x-1 { + --tw-skew-x: -1deg; } - .md\:hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .md\:skew-y-0 { + --tw-skew-y: 0deg; } - .md\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .md\:skew-y-1 { + --tw-skew-y: 1deg; } - .md\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .md\:skew-y-2 { + --tw-skew-y: 2deg; } - .md\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .md\:skew-y-3 { + --tw-skew-y: 3deg; } - .md\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .md\:skew-y-6 { + --tw-skew-y: 6deg; } - .md\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .md\:skew-y-12 { + --tw-skew-y: 12deg; } - .md\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .md\:-skew-y-12 { + --tw-skew-y: -12deg; } - .md\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .md\:-skew-y-6 { + --tw-skew-y: -6deg; } - .md\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .md\:-skew-y-3 { + --tw-skew-y: -3deg; } - .md\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .md\:-skew-y-2 { + --tw-skew-y: -2deg; } - .md\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .md\:-skew-y-1 { + --tw-skew-y: -1deg; } - .md\:hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .md\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .md\:hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .md\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .md\:hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .md\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .md\:hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .md\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .md\:hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .md\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .md\:hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .md\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .md\:hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .md\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .md\:hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .md\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .md\:hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .md\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .md\:hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .md\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .md\:hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .md\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .md\:hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .md\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .md\:hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .md\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .md\:hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .md\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .md\:hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .md\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .md\:hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .md\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .md\:hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .md\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .md\:hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .md\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .md\:hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .md\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .md\:hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .md\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .md\:focus\:border-transparent:focus { - border-color: transparent; + .md\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .md\:focus\:border-current:focus { - border-color: currentColor; + .md\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .md\:focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .md\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .md\:focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .md\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .md\:focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .md\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .md\:focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .md\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .md\:focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .md\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .md\:focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .md\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .md\:focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .md\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .md\:focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .md\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .md\:focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .md\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .md\:focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .md\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .md\:focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .md\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .md\:focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .md\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .md\:focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .md\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .md\:focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .md\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .md\:focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .md\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .md\:focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .md\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .md\:focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .md\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .md\:focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .md\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .md\:focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .md\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .md\:focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .md\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .md\:focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .md\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .md\:focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .md\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .md\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .md\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .md\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .md\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .md\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .md\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .md\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .md\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .md\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .md\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .md\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .md\:scale-x-0 { + --tw-scale-x: 0; } - .md\:focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .md\:scale-x-50 { + --tw-scale-x: .5; } - .md\:focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .md\:scale-x-75 { + --tw-scale-x: .75; } - .md\:focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .md\:scale-x-90 { + --tw-scale-x: .9; } - .md\:focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .md\:scale-x-95 { + --tw-scale-x: .95; } - .md\:focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .md\:scale-x-100 { + --tw-scale-x: 1; } - .md\:focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .md\:scale-x-105 { + --tw-scale-x: 1.05; } - .md\:focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .md\:scale-x-110 { + --tw-scale-x: 1.1; } - .md\:focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .md\:scale-x-125 { + --tw-scale-x: 1.25; } - .md\:focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .md\:scale-x-150 { + --tw-scale-x: 1.5; } - .md\:focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .md\:scale-y-0 { + --tw-scale-y: 0; } - .md\:focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .md\:scale-y-50 { + --tw-scale-y: .5; } - .md\:focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .md\:scale-y-75 { + --tw-scale-y: .75; } - .md\:focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .md\:scale-y-90 { + --tw-scale-y: .9; } - .md\:focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .md\:scale-y-95 { + --tw-scale-y: .95; } - .md\:focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .md\:scale-y-100 { + --tw-scale-y: 1; } - .md\:focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .md\:scale-y-105 { + --tw-scale-y: 1.05; } - .md\:focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .md\:scale-y-110 { + --tw-scale-y: 1.1; } - .md\:focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .md\:scale-y-125 { + --tw-scale-y: 1.25; } - .md\:focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .md\:scale-y-150 { + --tw-scale-y: 1.5; } - .md\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .md\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .md\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .md\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .md\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .md\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .md\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .md\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .md\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .md\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .md\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .md\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .md\:focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .md\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .md\:focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .md\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .md\:focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .md\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .md\:focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .md\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .md\:focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .md\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .md\:focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .md\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .md\:focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .md\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .md\:focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .md\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .md\:focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .md\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .md\:focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .md\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .md\:focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .md\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .md\:focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .md\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .md\:focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .md\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .md\:focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .md\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .md\:focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .md\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .md\:focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .md\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .md\:focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .md\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .md\:focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .md\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .md\:focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .md\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .md\:border-opacity-0 { - --tw-border-opacity: 0; + .md\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:border-opacity-5 { - --tw-border-opacity: 0.05; + .md\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:border-opacity-10 { - --tw-border-opacity: 0.1; + .md\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:border-opacity-20 { - --tw-border-opacity: 0.2; + .md\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:border-opacity-25 { - --tw-border-opacity: 0.25; + .md\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:border-opacity-30 { - --tw-border-opacity: 0.3; + .md\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:border-opacity-40 { - --tw-border-opacity: 0.4; + .md\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:border-opacity-50 { - --tw-border-opacity: 0.5; + .md\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:border-opacity-60 { - --tw-border-opacity: 0.6; + .md\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:border-opacity-70 { - --tw-border-opacity: 0.7; + .md\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:border-opacity-75 { - --tw-border-opacity: 0.75; + .md\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .md\:border-opacity-80 { - --tw-border-opacity: 0.8; + .md\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .md\:border-opacity-90 { - --tw-border-opacity: 0.9; + .md\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .md\:border-opacity-95 { - --tw-border-opacity: 0.95; + .md\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .md\:border-opacity-100 { - --tw-border-opacity: 1; + .md\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .group:hover .md\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0; + .md\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .group:hover .md\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; + .md\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .group:hover .md\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; + .md\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .group:hover .md\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; + .md\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .group:hover .md\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; + .md\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .group:hover .md\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; + .md\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .group:hover .md\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; + .md\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .group:hover .md\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; + .md\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .group:hover .md\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; + .md\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .group:hover .md\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; + .md\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .group:hover .md\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; + .md\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .group:hover .md\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; + .md\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .group:hover .md\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; + .md\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .group:hover .md\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; + .md\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .group:hover .md\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1; + .md\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .md\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; + .md\:animate-none { + animation: none; } - .md\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; + .md\:animate-spin { + animation: spin 1s linear infinite; } - .md\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; + .md\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .md\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; + .md\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .md\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; + .md\:animate-bounce { + animation: bounce 1s infinite; } - .md\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; + .md\:cursor-auto { + cursor: auto; } - .md\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; + .md\:cursor-default { + cursor: default; } - .md\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; + .md\:cursor-pointer { + cursor: pointer; } - .md\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; + .md\:cursor-wait { + cursor: wait; } - .md\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; + .md\:cursor-text { + cursor: text; } - .md\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; + .md\:cursor-move { + cursor: move; } - .md\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; + .md\:cursor-help { + cursor: help; } - .md\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; + .md\:cursor-not-allowed { + cursor: not-allowed; } - .md\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; + .md\:select-none { + user-select: none; } - .md\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; + .md\:select-text { + user-select: text; } - .md\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0; + .md\:select-all { + user-select: all; } - .md\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; + .md\:select-auto { + user-select: auto; } - .md\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; + .md\:resize-none { + resize: none; } - .md\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; + .md\:resize-y { + resize: vertical; } - .md\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; + .md\:resize-x { + resize: horizontal; } - .md\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; + .md\:resize { + resize: both; } - .md\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; + .md\:list-inside { + list-style-position: inside; } - .md\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; + .md\:list-outside { + list-style-position: outside; } - .md\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; + .md\:list-none { + list-style-type: none; } - .md\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; + .md\:list-disc { + list-style-type: disc; } - .md\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; + .md\:list-decimal { + list-style-type: decimal; } - .md\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; + .md\:appearance-none { + appearance: none; } - .md\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; + .md\:auto-cols-auto { + grid-auto-columns: auto; } - .md\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; + .md\:auto-cols-min { + grid-auto-columns: min-content; } - .md\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1; + .md\:auto-cols-max { + grid-auto-columns: max-content; } - .md\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0; + .md\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .md\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; + .md\:grid-flow-row { + grid-auto-flow: row; } - .md\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; + .md\:grid-flow-col { + grid-auto-flow: column; } - .md\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; + .md\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .md\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; + .md\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .md\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; + .md\:auto-rows-auto { + grid-auto-rows: auto; } - .md\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; + .md\:auto-rows-min { + grid-auto-rows: min-content; } - .md\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; + .md\:auto-rows-max { + grid-auto-rows: max-content; } - .md\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; + .md\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .md\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; + .md\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .md\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; + .md\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .md\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; + .md\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .md\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; + .md\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .md\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; + .md\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .md\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1; + .md\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .md\:rounded-none { - border-radius: 0px; + .md\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .md\:rounded-sm { - border-radius: 0.125rem; + .md\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .md\:rounded { - border-radius: 0.25rem; + .md\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .md\:rounded-md { - border-radius: 0.375rem; + .md\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .md\:rounded-lg { - border-radius: 0.5rem; + .md\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .md\:rounded-xl { - border-radius: 0.75rem; + .md\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .md\:rounded-2xl { - border-radius: 1rem; + .md\:grid-cols-none { + grid-template-columns: none; } - .md\:rounded-3xl { - border-radius: 1.5rem; + .md\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .md\:rounded-full { - border-radius: 9999px; + .md\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .md\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .md\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .md\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .md\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .md\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .md\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .md\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .md\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .md\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .md\:grid-rows-none { + grid-template-rows: none; } - .md\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .md\:flex-row { + flex-direction: row; } - .md\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .md\:flex-row-reverse { + flex-direction: row-reverse; } - .md\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .md\:flex-col { + flex-direction: column; } - .md\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .md\:flex-col-reverse { + flex-direction: column-reverse; } - .md\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .md\:flex-wrap { + flex-wrap: wrap; } - .md\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .md\:flex-wrap-reverse { + flex-wrap: wrap-reverse; } - .md\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .md\:flex-nowrap { + flex-wrap: nowrap; } - .md\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .md\:place-content-center { + place-content: center; } - .md\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .md\:place-content-start { + place-content: start; } - .md\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .md\:place-content-end { + place-content: end; } - .md\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .md\:place-content-between { + place-content: space-between; } - .md\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .md\:place-content-around { + place-content: space-around; } - .md\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .md\:place-content-evenly { + place-content: space-evenly; } - .md\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .md\:place-content-stretch { + place-content: stretch; } - .md\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .md\:place-items-start { + place-items: start; } - .md\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .md\:place-items-end { + place-items: end; } - .md\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .md\:place-items-center { + place-items: center; } - .md\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .md\:place-items-stretch { + place-items: stretch; } - .md\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .md\:content-center { + align-content: center; } - .md\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .md\:content-start { + align-content: flex-start; } - .md\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .md\:content-end { + align-content: flex-end; } - .md\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .md\:content-between { + align-content: space-between; } - .md\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .md\:content-around { + align-content: space-around; } - .md\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .md\:content-evenly { + align-content: space-evenly; } - .md\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .md\:items-start { + align-items: flex-start; } - .md\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .md\:items-end { + align-items: flex-end; } - .md\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .md\:items-center { + align-items: center; } - .md\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .md\:items-baseline { + align-items: baseline; } - .md\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .md\:items-stretch { + align-items: stretch; } - .md\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .md\:justify-start { + justify-content: flex-start; } - .md\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .md\:justify-end { + justify-content: flex-end; } - .md\:rounded-tl-none { - border-top-left-radius: 0px; + .md\:justify-center { + justify-content: center; } - .md\:rounded-tr-none { - border-top-right-radius: 0px; + .md\:justify-between { + justify-content: space-between; + } + + .md\:justify-around { + justify-content: space-around; } - .md\:rounded-br-none { - border-bottom-right-radius: 0px; + .md\:justify-evenly { + justify-content: space-evenly; } - .md\:rounded-bl-none { - border-bottom-left-radius: 0px; + .md\:justify-items-start { + justify-items: start; } - .md\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .md\:justify-items-end { + justify-items: end; } - .md\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .md\:justify-items-center { + justify-items: center; } - .md\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .md\:justify-items-stretch { + justify-items: stretch; } - .md\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .md\:gap-0 { + gap: 0px; } - .md\:rounded-tl { - border-top-left-radius: 0.25rem; + .md\:gap-1 { + gap: 0.25rem; } - .md\:rounded-tr { - border-top-right-radius: 0.25rem; + .md\:gap-2 { + gap: 0.5rem; } - .md\:rounded-br { - border-bottom-right-radius: 0.25rem; + .md\:gap-3 { + gap: 0.75rem; } - .md\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .md\:gap-4 { + gap: 1rem; } - .md\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .md\:gap-5 { + gap: 1.25rem; } - .md\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .md\:gap-6 { + gap: 1.5rem; } - .md\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .md\:gap-7 { + gap: 1.75rem; } - .md\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .md\:gap-8 { + gap: 2rem; } - .md\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .md\:gap-9 { + gap: 2.25rem; } - .md\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .md\:gap-10 { + gap: 2.5rem; } - .md\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .md\:gap-11 { + gap: 2.75rem; } - .md\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .md\:gap-12 { + gap: 3rem; } - .md\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .md\:gap-14 { + gap: 3.5rem; } - .md\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .md\:gap-16 { + gap: 4rem; } - .md\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .md\:gap-20 { + gap: 5rem; } - .md\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .md\:gap-24 { + gap: 6rem; } - .md\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .md\:gap-28 { + gap: 7rem; } - .md\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .md\:gap-32 { + gap: 8rem; } - .md\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .md\:gap-36 { + gap: 9rem; } - .md\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .md\:gap-40 { + gap: 10rem; } - .md\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .md\:gap-44 { + gap: 11rem; } - .md\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .md\:gap-48 { + gap: 12rem; } - .md\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .md\:gap-52 { + gap: 13rem; } - .md\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .md\:gap-56 { + gap: 14rem; } - .md\:rounded-tl-full { - border-top-left-radius: 9999px; + .md\:gap-60 { + gap: 15rem; } - .md\:rounded-tr-full { - border-top-right-radius: 9999px; + .md\:gap-64 { + gap: 16rem; } - .md\:rounded-br-full { - border-bottom-right-radius: 9999px; + .md\:gap-72 { + gap: 18rem; } - .md\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .md\:gap-80 { + gap: 20rem; } - .md\:border-solid { - border-style: solid; + .md\:gap-96 { + gap: 24rem; } - .md\:border-dashed { - border-style: dashed; + .md\:gap-px { + gap: 1px; } - .md\:border-dotted { - border-style: dotted; + .md\:gap-0\.5 { + gap: 0.125rem; } - .md\:border-double { - border-style: double; + .md\:gap-1\.5 { + gap: 0.375rem; } - .md\:border-none { - border-style: none; + .md\:gap-2\.5 { + gap: 0.625rem; } - .md\:border-0 { - border-width: 0px; + .md\:gap-3\.5 { + gap: 0.875rem; } - .md\:border-2 { - border-width: 2px; + .md\:gap-x-0 { + column-gap: 0px; } - .md\:border-4 { - border-width: 4px; + .md\:gap-x-1 { + column-gap: 0.25rem; } - .md\:border-8 { - border-width: 8px; + .md\:gap-x-2 { + column-gap: 0.5rem; } - .md\:border { - border-width: 1px; + .md\:gap-x-3 { + column-gap: 0.75rem; } - .md\:border-t-0 { - border-top-width: 0px; + .md\:gap-x-4 { + column-gap: 1rem; } - .md\:border-r-0 { - border-right-width: 0px; + .md\:gap-x-5 { + column-gap: 1.25rem; } - .md\:border-b-0 { - border-bottom-width: 0px; + .md\:gap-x-6 { + column-gap: 1.5rem; } - .md\:border-l-0 { - border-left-width: 0px; + .md\:gap-x-7 { + column-gap: 1.75rem; } - .md\:border-t-2 { - border-top-width: 2px; + .md\:gap-x-8 { + column-gap: 2rem; } - .md\:border-r-2 { - border-right-width: 2px; + .md\:gap-x-9 { + column-gap: 2.25rem; } - .md\:border-b-2 { - border-bottom-width: 2px; + .md\:gap-x-10 { + column-gap: 2.5rem; } - .md\:border-l-2 { - border-left-width: 2px; + .md\:gap-x-11 { + column-gap: 2.75rem; } - .md\:border-t-4 { - border-top-width: 4px; + .md\:gap-x-12 { + column-gap: 3rem; } - .md\:border-r-4 { - border-right-width: 4px; + .md\:gap-x-14 { + column-gap: 3.5rem; } - .md\:border-b-4 { - border-bottom-width: 4px; + .md\:gap-x-16 { + column-gap: 4rem; } - .md\:border-l-4 { - border-left-width: 4px; + .md\:gap-x-20 { + column-gap: 5rem; } - .md\:border-t-8 { - border-top-width: 8px; + .md\:gap-x-24 { + column-gap: 6rem; } - .md\:border-r-8 { - border-right-width: 8px; + .md\:gap-x-28 { + column-gap: 7rem; } - .md\:border-b-8 { - border-bottom-width: 8px; + .md\:gap-x-32 { + column-gap: 8rem; } - .md\:border-l-8 { - border-left-width: 8px; + .md\:gap-x-36 { + column-gap: 9rem; } - .md\:border-t { - border-top-width: 1px; + .md\:gap-x-40 { + column-gap: 10rem; } - .md\:border-r { - border-right-width: 1px; + .md\:gap-x-44 { + column-gap: 11rem; } - .md\:border-b { - border-bottom-width: 1px; + .md\:gap-x-48 { + column-gap: 12rem; } - .md\:border-l { - border-left-width: 1px; + .md\:gap-x-52 { + column-gap: 13rem; } - .md\:decoration-slice { - box-decoration-break: slice; + .md\:gap-x-56 { + column-gap: 14rem; } - .md\:decoration-clone { - box-decoration-break: clone; + .md\:gap-x-60 { + column-gap: 15rem; } - .md\:box-border { - box-sizing: border-box; + .md\:gap-x-64 { + column-gap: 16rem; } - .md\:box-content { - box-sizing: content-box; + .md\:gap-x-72 { + column-gap: 18rem; } - .md\:cursor-auto { - cursor: auto; + .md\:gap-x-80 { + column-gap: 20rem; } - .md\:cursor-default { - cursor: default; + .md\:gap-x-96 { + column-gap: 24rem; } - .md\:cursor-pointer { - cursor: pointer; + .md\:gap-x-px { + column-gap: 1px; } - .md\:cursor-wait { - cursor: wait; + .md\:gap-x-0\.5 { + column-gap: 0.125rem; } - .md\:cursor-text { - cursor: text; + .md\:gap-x-1\.5 { + column-gap: 0.375rem; } - .md\:cursor-move { - cursor: move; + .md\:gap-x-2\.5 { + column-gap: 0.625rem; } - .md\:cursor-help { - cursor: help; + .md\:gap-x-3\.5 { + column-gap: 0.875rem; } - .md\:cursor-not-allowed { - cursor: not-allowed; + .md\:gap-y-0 { + row-gap: 0px; } - .md\:block { - display: block; + .md\:gap-y-1 { + row-gap: 0.25rem; } - .md\:inline-block { - display: inline-block; + .md\:gap-y-2 { + row-gap: 0.5rem; } - .md\:inline { - display: inline; + .md\:gap-y-3 { + row-gap: 0.75rem; } - .md\:flex { - display: flex; + .md\:gap-y-4 { + row-gap: 1rem; } - .md\:inline-flex { - display: inline-flex; + .md\:gap-y-5 { + row-gap: 1.25rem; } - .md\:table { - display: table; + .md\:gap-y-6 { + row-gap: 1.5rem; } - .md\:inline-table { - display: inline-table; + .md\:gap-y-7 { + row-gap: 1.75rem; } - .md\:table-caption { - display: table-caption; + .md\:gap-y-8 { + row-gap: 2rem; } - .md\:table-cell { - display: table-cell; + .md\:gap-y-9 { + row-gap: 2.25rem; } - .md\:table-column { - display: table-column; + .md\:gap-y-10 { + row-gap: 2.5rem; } - .md\:table-column-group { - display: table-column-group; + .md\:gap-y-11 { + row-gap: 2.75rem; } - .md\:table-footer-group { - display: table-footer-group; + .md\:gap-y-12 { + row-gap: 3rem; } - .md\:table-header-group { - display: table-header-group; + .md\:gap-y-14 { + row-gap: 3.5rem; } - .md\:table-row-group { - display: table-row-group; + .md\:gap-y-16 { + row-gap: 4rem; } - .md\:table-row { - display: table-row; + .md\:gap-y-20 { + row-gap: 5rem; } - .md\:flow-root { - display: flow-root; + .md\:gap-y-24 { + row-gap: 6rem; } - .md\:grid { - display: grid; + .md\:gap-y-28 { + row-gap: 7rem; } - .md\:inline-grid { - display: inline-grid; + .md\:gap-y-32 { + row-gap: 8rem; } - .md\:contents { - display: contents; + .md\:gap-y-36 { + row-gap: 9rem; } - .md\:list-item { - display: list-item; + .md\:gap-y-40 { + row-gap: 10rem; } - .md\:hidden { - display: none; + .md\:gap-y-44 { + row-gap: 11rem; } - .md\:flex-row { - flex-direction: row; + .md\:gap-y-48 { + row-gap: 12rem; } - .md\:flex-row-reverse { - flex-direction: row-reverse; + .md\:gap-y-52 { + row-gap: 13rem; } - .md\:flex-col { - flex-direction: column; + .md\:gap-y-56 { + row-gap: 14rem; } - .md\:flex-col-reverse { - flex-direction: column-reverse; + .md\:gap-y-60 { + row-gap: 15rem; } - .md\:flex-wrap { - flex-wrap: wrap; + .md\:gap-y-64 { + row-gap: 16rem; } - .md\:flex-wrap-reverse { - flex-wrap: wrap-reverse; + .md\:gap-y-72 { + row-gap: 18rem; } - .md\:flex-nowrap { - flex-wrap: nowrap; + .md\:gap-y-80 { + row-gap: 20rem; } - .md\:place-items-start { - place-items: start; + .md\:gap-y-96 { + row-gap: 24rem; } - .md\:place-items-end { - place-items: end; + .md\:gap-y-px { + row-gap: 1px; } - .md\:place-items-center { - place-items: center; + .md\:gap-y-0\.5 { + row-gap: 0.125rem; } - .md\:place-items-stretch { - place-items: stretch; + .md\:gap-y-1\.5 { + row-gap: 0.375rem; } - .md\:place-content-center { - place-content: center; + .md\:gap-y-2\.5 { + row-gap: 0.625rem; } - .md\:place-content-start { - place-content: start; + .md\:gap-y-3\.5 { + row-gap: 0.875rem; } - .md\:place-content-end { - place-content: end; + .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\:place-content-between { - place-content: space-between; + .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\:place-content-around { - place-content: space-around; + .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\:place-content-evenly { - place-content: space-evenly; + .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\:place-content-stretch { - place-content: stretch; + .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\:place-self-auto { - place-self: auto; + .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\:place-self-start { - place-self: start; + .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\:place-self-end { - place-self: end; + .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\:place-self-center { - place-self: center; + .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\:place-self-stretch { - place-self: stretch; + .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\:items-start { - align-items: flex-start; + .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\:items-end { - align-items: flex-end; + .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\:items-center { - align-items: center; + .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\:items-baseline { - align-items: baseline; + .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\:items-stretch { - align-items: stretch; + .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\:content-center { - align-content: center; + .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\:content-start { - align-content: flex-start; + .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\:content-end { - align-content: flex-end; + .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\:content-between { - align-content: space-between; + .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\:content-around { - align-content: space-around; + .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\:content-evenly { - align-content: space-evenly; + .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\:self-auto { - align-self: auto; + .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\:self-start { - align-self: flex-start; + .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\:self-end { - align-self: flex-end; + .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\:self-center { - align-self: center; + .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\:self-stretch { - align-self: stretch; + .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\:justify-items-start { - justify-items: start; + .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\:justify-items-end { - justify-items: end; + .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\:justify-items-center { - justify-items: center; + .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\:justify-items-stretch { - justify-items: stretch; + .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\:justify-start { - justify-content: flex-start; + .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\:justify-end { - justify-content: flex-end; + .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\:justify-center { - justify-content: center; + .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\:justify-between { - justify-content: space-between; + .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\:justify-around { - justify-content: space-around; + .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\:justify-evenly { - justify-content: space-evenly; + .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\:justify-self-auto { - justify-self: auto; + .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\:justify-self-start { - justify-self: start; + .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\:justify-self-end { - justify-self: end; + .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\:justify-self-center { - justify-self: center; + .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\:justify-self-stretch { - justify-self: stretch; + .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\:flex-1 { - flex: 1 1 0%; + .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\:flex-auto { - flex: 1 1 auto; + .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\:flex-initial { - flex: 0 1 auto; + .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\:flex-none { - flex: none; + .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\:flex-grow-0 { - flex-grow: 0; + .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\:flex-grow { - flex-grow: 1; + .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\:flex-shrink-0 { - flex-shrink: 0; + .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\:flex-shrink { - flex-shrink: 1; + .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\:order-1 { - order: 1; + .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\:order-2 { - order: 2; + .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\:order-3 { - order: 3; + .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\:order-4 { - order: 4; + .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\:order-5 { - order: 5; + .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\:order-6 { - order: 6; + .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\:order-7 { - order: 7; + .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\:order-8 { - order: 8; + .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\:order-9 { - order: 9; + .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\:order-10 { - order: 10; + .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\:order-11 { - order: 11; + .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\:order-12 { - order: 12; + .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\:order-first { - order: -9999; + .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\:order-last { - order: 9999; + .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\:order-none { - order: 0; + .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\:float-right { - float: right; + .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\:float-left { - float: left; + .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\:float-none { - float: none; + .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\:clear-left { - clear: left; + .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\:clear-right { - clear: right; + .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\:clear-both { - clear: both; + .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\:clear-none { - clear: none; + .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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .md\:-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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .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\:font-thin { - font-weight: 100; + .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\:font-extralight { - font-weight: 200; + .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\:font-light { - font-weight: 300; + .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\:font-normal { - font-weight: 400; + .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\:font-medium { - font-weight: 500; + .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\:font-semibold { - font-weight: 600; + .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\:font-bold { - font-weight: 700; + .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\:font-extrabold { - font-weight: 800; + .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\:font-black { - font-weight: 900; + .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\:h-0 { - height: 0px; + .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\:h-1 { - height: 0.25rem; + .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\:h-2 { - height: 0.5rem; + .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\:h-3 { - height: 0.75rem; + .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\:h-4 { - height: 1rem; + .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\:h-5 { - height: 1.25rem; + .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\:h-6 { - height: 1.5rem; + .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\:h-7 { - height: 1.75rem; + .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\:h-8 { - height: 2rem; + .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\:h-9 { - height: 2.25rem; + .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\:h-10 { - height: 2.5rem; + .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\:h-11 { - height: 2.75rem; + .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\:h-12 { - height: 3rem; + .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\:h-14 { - height: 3.5rem; + .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\:h-16 { - height: 4rem; + .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\:h-20 { - height: 5rem; + .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\:h-24 { - height: 6rem; + .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\:h-28 { - height: 7rem; + .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\:h-32 { - height: 8rem; + .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\:h-36 { - height: 9rem; + .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\:h-40 { - height: 10rem; + .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\:h-44 { - height: 11rem; + .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\:h-48 { - height: 12rem; + .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\:h-52 { - height: 13rem; + .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\:h-56 { - height: 14rem; + .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\:h-60 { - height: 15rem; + .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\:h-64 { - height: 16rem; + .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\:h-72 { - height: 18rem; + .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\:h-80 { - height: 20rem; + .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\:h-96 { - height: 24rem; + .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\:h-auto { - height: auto; + .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\:h-px { - height: 1px; + .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\:h-0\.5 { - height: 0.125rem; + .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\:h-1\.5 { - height: 0.375rem; + .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\:h-2\.5 { - height: 0.625rem; + .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\:h-3\.5 { - height: 0.875rem; + .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\:h-1\/2 { - height: 50%; + .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\:h-1\/3 { - height: 33.333333%; + .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\:h-2\/3 { - height: 66.666667%; + .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\:h-1\/4 { - height: 25%; + .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\:h-2\/4 { - height: 50%; + .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\:h-3\/4 { - height: 75%; + .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\:h-1\/5 { - height: 20%; + .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\:h-2\/5 { - height: 40%; + .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\:h-3\/5 { - height: 60%; + .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\:h-4\/5 { - height: 80%; + .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\:h-1\/6 { - height: 16.666667%; + .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\:h-2\/6 { - height: 33.333333%; + .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\:h-3\/6 { - height: 50%; + .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\:h-4\/6 { - height: 66.666667%; + .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\:h-5\/6 { - height: 83.333333%; + .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\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .md\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .md\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .md\:leading-7 { - line-height: 1.75rem; + .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .md\:leading-8 { - line-height: 2rem; + .md\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .md\:leading-9 { - line-height: 2.25rem; + .md\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .md\:leading-10 { - line-height: 2.5rem; + .md\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .md\:leading-none { - line-height: 1; + .md\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .md\:leading-tight { - line-height: 1.25; + .md\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .md\:leading-snug { - line-height: 1.375; + .md\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .md\:leading-normal { - line-height: 1.5; + .md\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .md\:leading-relaxed { - line-height: 1.625; + .md\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } - .md\:leading-loose { - line-height: 2; + .md\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } - .md\:list-inside { - list-style-position: inside; + .md\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } - .md\:list-outside { - list-style-position: outside; + .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } - .md\:list-none { - list-style-type: none; + .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } - .md\:list-disc { - list-style-type: disc; + .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } - .md\:list-decimal { - list-style-type: decimal; + .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } - .md\:m-0 { - margin: 0px; + .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } - .md\:m-1 { - margin: 0.25rem; + .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } - .md\:m-2 { - margin: 0.5rem; + .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } - .md\:m-3 { - margin: 0.75rem; + .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } - .md\:m-4 { - margin: 1rem; + .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } - .md\:m-5 { - margin: 1.25rem; + .md\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } - .md\:m-6 { - margin: 1.5rem; + .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } - .md\:m-7 { - margin: 1.75rem; + .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } - .md\:m-8 { - margin: 2rem; + .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } - .md\:m-9 { - margin: 2.25rem; + .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } - .md\:m-10 { - margin: 2.5rem; + .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } - .md\:m-11 { - margin: 2.75rem; + .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } - .md\:m-12 { - margin: 3rem; + .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } - .md\:m-14 { - margin: 3.5rem; + .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } - .md\:m-16 { - margin: 4rem; + .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } - .md\:m-20 { - margin: 5rem; + .md\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } - .md\:m-24 { - margin: 6rem; + .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } - .md\:m-28 { - margin: 7rem; + .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } - .md\:m-32 { - margin: 8rem; + .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } - .md\:m-36 { - margin: 9rem; + .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } - .md\:m-40 { - margin: 10rem; + .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } - .md\:m-44 { - margin: 11rem; + .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } - .md\:m-48 { - margin: 12rem; + .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } - .md\:m-52 { - margin: 13rem; + .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } - .md\:m-56 { - margin: 14rem; + .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } - .md\:m-60 { - margin: 15rem; + .md\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } - .md\:m-64 { - margin: 16rem; + .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } - .md\:m-72 { - margin: 18rem; + .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } - .md\:m-80 { - margin: 20rem; + .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } - .md\:m-96 { - margin: 24rem; + .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } - .md\:m-auto { - margin: auto; + .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } - .md\:m-px { - margin: 1px; + .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } - .md\:m-0\.5 { - margin: 0.125rem; + .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } - .md\:m-1\.5 { - margin: 0.375rem; + .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } - .md\:m-2\.5 { - margin: 0.625rem; + .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } - .md\:m-3\.5 { - margin: 0.875rem; + .md\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } - .md\:-m-0 { - margin: 0px; + .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } - .md\:-m-1 { - margin: -0.25rem; + .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } - .md\:-m-2 { - margin: -0.5rem; + .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } - .md\:-m-3 { - margin: -0.75rem; + .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } - .md\:-m-4 { - margin: -1rem; + .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } - .md\:-m-5 { - margin: -1.25rem; + .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } - .md\:-m-6 { - margin: -1.5rem; + .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } - .md\:-m-7 { - margin: -1.75rem; + .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } - .md\:-m-8 { - margin: -2rem; + .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } - .md\:-m-9 { - margin: -2.25rem; + .md\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } - .md\:-m-10 { - margin: -2.5rem; + .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } - .md\:-m-11 { - margin: -2.75rem; + .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } - .md\:-m-12 { - margin: -3rem; + .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } - .md\:-m-14 { - margin: -3.5rem; + .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } - .md\:-m-16 { - margin: -4rem; + .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } - .md\:-m-20 { - margin: -5rem; + .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } - .md\:-m-24 { - margin: -6rem; + .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } - .md\:-m-28 { - margin: -7rem; + .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } - .md\:-m-32 { - margin: -8rem; + .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } - .md\:-m-36 { - margin: -9rem; + .md\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } - .md\:-m-40 { - margin: -10rem; + .md\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } - .md\:-m-44 { - margin: -11rem; + .md\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } - .md\:-m-48 { - margin: -12rem; + .md\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } - .md\:-m-52 { - margin: -13rem; + .md\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } - .md\:-m-56 { - margin: -14rem; + .md\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } - .md\:-m-60 { - margin: -15rem; + .md\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } - .md\:-m-64 { - margin: -16rem; + .md\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } - .md\:-m-72 { - margin: -18rem; + .md\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } - .md\:-m-80 { - margin: -20rem; + .md\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } - .md\:-m-96 { - margin: -24rem; + .md\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } - .md\:-m-px { - margin: -1px; + .md\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } - .md\:-m-0\.5 { - margin: -0.125rem; + .md\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } - .md\:-m-1\.5 { - margin: -0.375rem; + .md\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } - .md\:-m-2\.5 { - margin: -0.625rem; + .md\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } - .md\:-m-3\.5 { - margin: -0.875rem; + .md\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } - .md\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .md\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } - .md\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .md\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } - .md\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .md\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } - .md\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .md\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } - .md\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .md\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } - .md\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .md\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } - .md\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .md\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } - .md\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .md\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } - .md\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .md\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } - .md\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .md\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } - .md\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .md\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } - .md\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .md\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } - .md\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .md\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } - .md\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .md\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } - .md\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .md\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } - .md\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .md\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } - .md\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .md\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } - .md\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .md\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } - .md\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .md\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } - .md\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .md\:place-self-auto { + place-self: auto; } - .md\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .md\:place-self-start { + place-self: start; } - .md\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .md\:place-self-end { + place-self: end; } - .md\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .md\:place-self-center { + place-self: center; } - .md\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .md\:place-self-stretch { + place-self: stretch; } - .md\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .md\:self-auto { + align-self: auto; } - .md\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .md\:self-start { + align-self: flex-start; } - .md\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .md\:self-end { + align-self: flex-end; } - .md\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .md\:self-center { + align-self: center; } - .md\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .md\:self-stretch { + align-self: stretch; } - .md\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .md\:justify-self-auto { + justify-self: auto; } - .md\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .md\:justify-self-start { + justify-self: start; } - .md\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .md\:justify-self-end { + justify-self: end; } - .md\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .md\:justify-self-center { + justify-self: center; } - .md\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .md\:justify-self-stretch { + justify-self: stretch; } - .md\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .md\:overflow-auto { + overflow: auto; } - .md\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .md\:overflow-hidden { + overflow: hidden; } - .md\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .md\:overflow-visible { + overflow: visible; } - .md\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .md\:overflow-scroll { + overflow: scroll; } - .md\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .md\:overflow-x-auto { + overflow-x: auto; } - .md\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .md\:overflow-y-auto { + overflow-y: auto; } - .md\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .md\:overflow-x-hidden { + overflow-x: hidden; } - .md\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .md\:overflow-y-hidden { + overflow-y: hidden; } - .md\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .md\:overflow-x-visible { + overflow-x: visible; } - .md\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .md\:overflow-y-visible { + overflow-y: visible; } - .md\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .md\:overflow-x-scroll { + overflow-x: scroll; } - .md\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .md\:overflow-y-scroll { + overflow-y: scroll; } - .md\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .md\:overscroll-auto { + overscroll-behavior: auto; } - .md\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .md\:overscroll-contain { + overscroll-behavior: contain; } - .md\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .md\:overscroll-none { + overscroll-behavior: none; } - .md\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .md\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .md\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .md\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .md\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .md\:overscroll-y-none { + overscroll-behavior-y: none; } - .md\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .md\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .md\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .md\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .md\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .md\:overscroll-x-none { + overscroll-behavior-x: none; } - .md\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .md\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .md\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .md\:overflow-ellipsis { + text-overflow: ellipsis; } - .md\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .md\:overflow-clip { + text-overflow: clip; } - .md\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .md\:whitespace-normal { + white-space: normal; } - .md\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .md\:whitespace-nowrap { + white-space: nowrap; } - .md\:my-auto { - margin-top: auto; - margin-bottom: auto; + .md\:whitespace-pre { + white-space: pre; } - .md\:mx-auto { - margin-left: auto; - margin-right: auto; + .md\:whitespace-pre-line { + white-space: pre-line; } - .md\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .md\:whitespace-pre-wrap { + white-space: pre-wrap; } - .md\:mx-px { - margin-left: 1px; - margin-right: 1px; + .md\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .md\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .md\:break-words { + overflow-wrap: break-word; } - .md\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .md\:break-all { + word-break: break-all; } - .md\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .md\:rounded-none { + border-radius: 0px; } - .md\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .md\:rounded-sm { + border-radius: 0.125rem; } - .md\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .md\:rounded { + border-radius: 0.25rem; } - .md\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .md\:rounded-md { + border-radius: 0.375rem; } - .md\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .md\:rounded-lg { + border-radius: 0.5rem; } - .md\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .md\:rounded-xl { + border-radius: 0.75rem; } - .md\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .md\:rounded-2xl { + border-radius: 1rem; } - .md\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .md\:rounded-3xl { + border-radius: 1.5rem; } - .md\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .md\:rounded-full { + border-radius: 9999px; } - .md\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .md\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .md\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .md\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .md\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .md\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .md\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .md\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .md\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .md\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .md\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .md\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .md\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .md\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .md\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .md\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .md\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .md\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .md\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .md\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .md\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .md\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .md\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .md\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .md\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .md\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .md\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .md\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .md\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .md\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .md\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .md\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .md\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .md\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .md\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .md\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .md\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .md\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .md\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .md\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .md\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .md\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .md\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .md\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .md\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .md\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .md\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .md\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .md\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .md\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .md\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .md\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .md\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .md\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .md\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .md\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .md\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .md\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .md\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .md\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .md\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .md\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .md\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .md\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .md\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .md\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .md\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .md\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .md\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .md\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .md\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .md\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .md\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .md\:rounded-tl-none { + border-top-left-radius: 0px; } - .md\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .md\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .md\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .md\:rounded-tl { + border-top-left-radius: 0.25rem; } - .md\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .md\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .md\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .md\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .md\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .md\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .md\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .md\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .md\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .md\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .md\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .md\:rounded-tl-full { + border-top-left-radius: 9999px; } - .md\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .md\:rounded-tr-none { + border-top-right-radius: 0px; } - .md\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .md\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .md\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .md\:rounded-tr { + border-top-right-radius: 0.25rem; } - .md\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .md\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .md\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .md\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .md\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .md\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .md\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .md\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .md\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .md\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .md\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .md\:rounded-tr-full { + border-top-right-radius: 9999px; } - .md\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .md\:rounded-br-none { + border-bottom-right-radius: 0px; } - .md\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .md\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .md\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .md\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .md\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .md\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .md\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .md\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .md\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .md\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .md\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .md\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .md\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .md\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .md\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .md\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .md\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .md\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .md\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .md\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .md\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .md\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .md\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .md\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .md\:mt-0 { - margin-top: 0px; + .md\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .md\:mr-0 { - margin-right: 0px; + .md\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .md\:mb-0 { - margin-bottom: 0px; + .md\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .md\:ml-0 { - margin-left: 0px; + .md\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .md\:mt-1 { - margin-top: 0.25rem; + .md\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .md\:mr-1 { - margin-right: 0.25rem; + .md\:border-0 { + border-width: 0px; } - .md\:mb-1 { - margin-bottom: 0.25rem; + .md\:border-2 { + border-width: 2px; } - .md\:ml-1 { - margin-left: 0.25rem; + .md\:border-4 { + border-width: 4px; } - .md\:mt-2 { - margin-top: 0.5rem; + .md\:border-8 { + border-width: 8px; } - .md\:mr-2 { - margin-right: 0.5rem; + .md\:border { + border-width: 1px; } - .md\:mb-2 { - margin-bottom: 0.5rem; + .md\:border-t-0 { + border-top-width: 0px; } - .md\:ml-2 { - margin-left: 0.5rem; + .md\:border-t-2 { + border-top-width: 2px; } - .md\:mt-3 { - margin-top: 0.75rem; + .md\:border-t-4 { + border-top-width: 4px; } - .md\:mr-3 { - margin-right: 0.75rem; + .md\:border-t-8 { + border-top-width: 8px; } - .md\:mb-3 { - margin-bottom: 0.75rem; + .md\:border-t { + border-top-width: 1px; } - .md\:ml-3 { - margin-left: 0.75rem; + .md\:border-r-0 { + border-right-width: 0px; } - .md\:mt-4 { - margin-top: 1rem; + .md\:border-r-2 { + border-right-width: 2px; } - .md\:mr-4 { - margin-right: 1rem; + .md\:border-r-4 { + border-right-width: 4px; } - .md\:mb-4 { - margin-bottom: 1rem; + .md\:border-r-8 { + border-right-width: 8px; } - .md\:ml-4 { - margin-left: 1rem; + .md\:border-r { + border-right-width: 1px; } - .md\:mt-5 { - margin-top: 1.25rem; + .md\:border-b-0 { + border-bottom-width: 0px; } - .md\:mr-5 { - margin-right: 1.25rem; + .md\:border-b-2 { + border-bottom-width: 2px; } - .md\:mb-5 { - margin-bottom: 1.25rem; + .md\:border-b-4 { + border-bottom-width: 4px; } - .md\:ml-5 { - margin-left: 1.25rem; + .md\:border-b-8 { + border-bottom-width: 8px; } - .md\:mt-6 { - margin-top: 1.5rem; + .md\:border-b { + border-bottom-width: 1px; } - .md\:mr-6 { - margin-right: 1.5rem; + .md\:border-l-0 { + border-left-width: 0px; } - .md\:mb-6 { - margin-bottom: 1.5rem; + .md\:border-l-2 { + border-left-width: 2px; } - .md\:ml-6 { - margin-left: 1.5rem; + .md\:border-l-4 { + border-left-width: 4px; } - .md\:mt-7 { - margin-top: 1.75rem; + .md\:border-l-8 { + border-left-width: 8px; } - .md\:mr-7 { - margin-right: 1.75rem; + .md\:border-l { + border-left-width: 1px; } - .md\:mb-7 { - margin-bottom: 1.75rem; + .md\:border-solid { + border-style: solid; } - .md\:ml-7 { - margin-left: 1.75rem; + .md\:border-dashed { + border-style: dashed; } - .md\:mt-8 { - margin-top: 2rem; + .md\:border-dotted { + border-style: dotted; } - .md\:mr-8 { - margin-right: 2rem; + .md\:border-double { + border-style: double; } - .md\:mb-8 { - margin-bottom: 2rem; + .md\:border-none { + border-style: none; } - .md\:ml-8 { - margin-left: 2rem; + .md\:border-transparent { + border-color: transparent; } - .md\:mt-9 { - margin-top: 2.25rem; + .md\:border-current { + border-color: currentColor; } - .md\:mr-9 { - margin-right: 2.25rem; + .md\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .md\:mb-9 { - margin-bottom: 2.25rem; + .md\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .md\:ml-9 { - margin-left: 2.25rem; + .md\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .md\:mt-10 { - margin-top: 2.5rem; + .md\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .md\:mr-10 { - margin-right: 2.5rem; + .md\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .md\:mb-10 { - margin-bottom: 2.5rem; + .md\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .md\:ml-10 { - margin-left: 2.5rem; + .md\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .md\:mt-11 { - margin-top: 2.75rem; + .md\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .md\:mr-11 { - margin-right: 2.75rem; + .md\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .md\:mb-11 { - margin-bottom: 2.75rem; + .md\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .md\:ml-11 { - margin-left: 2.75rem; + .md\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .md\:mt-12 { - margin-top: 3rem; + .md\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .md\:mr-12 { - margin-right: 3rem; + .md\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .md\:mb-12 { - margin-bottom: 3rem; + .md\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .md\:ml-12 { - margin-left: 3rem; + .md\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .md\:mt-14 { - margin-top: 3.5rem; + .md\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .md\:mr-14 { - margin-right: 3.5rem; + .md\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .md\:mb-14 { - margin-bottom: 3.5rem; + .md\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .md\:ml-14 { - margin-left: 3.5rem; + .md\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .md\:mt-16 { - margin-top: 4rem; + .md\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .md\:mr-16 { - margin-right: 4rem; + .md\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .md\:mb-16 { - margin-bottom: 4rem; + .md\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .md\:ml-16 { - margin-left: 4rem; + .md\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .md\:mt-20 { - margin-top: 5rem; + .md\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .md\:mr-20 { - margin-right: 5rem; + .md\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .md\:mb-20 { - margin-bottom: 5rem; + .md\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .md\:ml-20 { - margin-left: 5rem; + .md\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .md\:mt-24 { - margin-top: 6rem; + .md\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .md\:mr-24 { - margin-right: 6rem; + .md\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .md\:mb-24 { - margin-bottom: 6rem; + .md\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .md\:ml-24 { - margin-left: 6rem; + .md\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .md\:mt-28 { - margin-top: 7rem; + .md\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .md\:mr-28 { - margin-right: 7rem; + .md\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .md\:mb-28 { - margin-bottom: 7rem; + .md\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .md\:ml-28 { - margin-left: 7rem; + .md\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .md\:mt-32 { - margin-top: 8rem; + .md\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .md\:mr-32 { - margin-right: 8rem; + .md\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .md\:mb-32 { - margin-bottom: 8rem; + .md\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .md\:ml-32 { - margin-left: 8rem; + .md\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .md\:mt-36 { - margin-top: 9rem; + .md\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .md\:mr-36 { - margin-right: 9rem; + .md\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .md\:mb-36 { - margin-bottom: 9rem; + .md\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .md\:ml-36 { - margin-left: 9rem; + .md\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .md\:mt-40 { - margin-top: 10rem; + .md\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .md\:mr-40 { - margin-right: 10rem; + .md\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .md\:mb-40 { - margin-bottom: 10rem; + .md\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .md\:ml-40 { - margin-left: 10rem; + .md\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .md\:mt-44 { - margin-top: 11rem; + .md\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .md\:mr-44 { - margin-right: 11rem; + .md\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .md\:mb-44 { - margin-bottom: 11rem; + .md\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .md\:ml-44 { - margin-left: 11rem; + .md\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .md\:mt-48 { - margin-top: 12rem; + .md\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .md\:mr-48 { - margin-right: 12rem; + .md\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .md\:mb-48 { - margin-bottom: 12rem; + .md\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .md\:ml-48 { - margin-left: 12rem; + .md\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .md\:mt-52 { - margin-top: 13rem; + .md\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .md\:mr-52 { - margin-right: 13rem; + .md\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .md\:mb-52 { - margin-bottom: 13rem; + .md\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .md\:ml-52 { - margin-left: 13rem; + .md\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .md\:mt-56 { - margin-top: 14rem; + .md\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .md\:mr-56 { - margin-right: 14rem; + .md\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .md\:mb-56 { - margin-bottom: 14rem; + .md\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .md\:ml-56 { - margin-left: 14rem; + .md\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .md\:mt-60 { - margin-top: 15rem; + .md\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .md\:mr-60 { - margin-right: 15rem; + .md\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .md\:mb-60 { - margin-bottom: 15rem; + .md\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .md\:ml-60 { - margin-left: 15rem; + .md\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .md\:mt-64 { - margin-top: 16rem; + .md\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .md\:mr-64 { - margin-right: 16rem; + .md\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .md\:mb-64 { - margin-bottom: 16rem; + .md\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .md\:ml-64 { - margin-left: 16rem; + .md\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .md\:mt-72 { - margin-top: 18rem; + .md\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .md\:mr-72 { - margin-right: 18rem; + .md\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .md\:mb-72 { - margin-bottom: 18rem; + .md\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .md\:ml-72 { - margin-left: 18rem; + .md\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .md\:mt-80 { - margin-top: 20rem; + .md\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + } + + .md\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .md\:mr-80 { - margin-right: 20rem; + .md\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .md\:mb-80 { - margin-bottom: 20rem; + .md\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .md\:ml-80 { - margin-left: 20rem; + .md\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .md\:mt-96 { - margin-top: 24rem; + .md\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .md\:mr-96 { - margin-right: 24rem; + .md\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .md\:mb-96 { - margin-bottom: 24rem; + .group:hover .md\:group-hover\:border-transparent { + border-color: transparent; } - .md\:ml-96 { - margin-left: 24rem; + .group:hover .md\:group-hover\:border-current { + border-color: currentColor; } - .md\:mt-auto { - margin-top: auto; + .group:hover .md\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .md\:mr-auto { - margin-right: auto; + .group:hover .md\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .md\:mb-auto { - margin-bottom: auto; + .group:hover .md\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .md\:ml-auto { - margin-left: auto; + .group:hover .md\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .md\:mt-px { - margin-top: 1px; + .group:hover .md\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .md\:mr-px { - margin-right: 1px; + .group:hover .md\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .md\:mb-px { - margin-bottom: 1px; + .group:hover .md\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .md\:ml-px { - margin-left: 1px; + .group:hover .md\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .md\:mt-0\.5 { - margin-top: 0.125rem; + .group:hover .md\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .md\:mr-0\.5 { - margin-right: 0.125rem; + .group:hover .md\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .md\:mb-0\.5 { - margin-bottom: 0.125rem; + .group:hover .md\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .md\:ml-0\.5 { - margin-left: 0.125rem; + .group:hover .md\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .md\:mt-1\.5 { - margin-top: 0.375rem; + .group:hover .md\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .md\:mr-1\.5 { - margin-right: 0.375rem; + .group:hover .md\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .md\:mb-1\.5 { - margin-bottom: 0.375rem; + .group:hover .md\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .md\:ml-1\.5 { - margin-left: 0.375rem; + .group:hover .md\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .md\:mt-2\.5 { - margin-top: 0.625rem; + .group:hover .md\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .md\:mr-2\.5 { - margin-right: 0.625rem; + .group:hover .md\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .md\:mb-2\.5 { - margin-bottom: 0.625rem; + .group:hover .md\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .md\:ml-2\.5 { - margin-left: 0.625rem; + .group:hover .md\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .md\:mt-3\.5 { - margin-top: 0.875rem; + .group:hover .md\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .md\:mr-3\.5 { - margin-right: 0.875rem; + .group:hover .md\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .md\:mb-3\.5 { - margin-bottom: 0.875rem; + .group:hover .md\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .md\:ml-3\.5 { - margin-left: 0.875rem; + .group:hover .md\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .md\:-mt-0 { - margin-top: 0px; + .group:hover .md\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .md\:-mr-0 { - margin-right: 0px; + .group:hover .md\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .md\:-mb-0 { - margin-bottom: 0px; + .group:hover .md\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .md\:-ml-0 { - margin-left: 0px; + .group:hover .md\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .md\:-mt-1 { - margin-top: -0.25rem; + .group:hover .md\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .md\:-mr-1 { - margin-right: -0.25rem; + .group:hover .md\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .md\:-mb-1 { - margin-bottom: -0.25rem; + .group:hover .md\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .md\:-ml-1 { - margin-left: -0.25rem; + .group:hover .md\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .md\:-mt-2 { - margin-top: -0.5rem; + .group:hover .md\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .md\:-mr-2 { - margin-right: -0.5rem; + .group:hover .md\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .md\:-mb-2 { - margin-bottom: -0.5rem; + .group:hover .md\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .md\:-ml-2 { - margin-left: -0.5rem; + .group:hover .md\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .md\:-mt-3 { - margin-top: -0.75rem; + .group:hover .md\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .md\:-mr-3 { - margin-right: -0.75rem; + .group:hover .md\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .md\:-mb-3 { - margin-bottom: -0.75rem; + .group:hover .md\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .md\:-ml-3 { - margin-left: -0.75rem; + .group:hover .md\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .md\:-mt-4 { - margin-top: -1rem; + .group:hover .md\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .md\:-mr-4 { - margin-right: -1rem; + .group:hover .md\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .md\:-mb-4 { - margin-bottom: -1rem; + .group:hover .md\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .md\:-ml-4 { - margin-left: -1rem; + .group:hover .md\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .md\:-mt-5 { - margin-top: -1.25rem; + .group:hover .md\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .md\:-mr-5 { - margin-right: -1.25rem; + .group:hover .md\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .md\:-mb-5 { - margin-bottom: -1.25rem; + .group:hover .md\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .md\:-ml-5 { - margin-left: -1.25rem; + .group:hover .md\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .md\:-mt-6 { - margin-top: -1.5rem; + .group:hover .md\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .md\:-mr-6 { - margin-right: -1.5rem; + .group:hover .md\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .md\:-mb-6 { - margin-bottom: -1.5rem; + .group:hover .md\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .md\:-ml-6 { - margin-left: -1.5rem; + .group:hover .md\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .md\:-mt-7 { - margin-top: -1.75rem; + .group:hover .md\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .md\:-mr-7 { - margin-right: -1.75rem; + .group:hover .md\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .md\:-mb-7 { - margin-bottom: -1.75rem; + .group:hover .md\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .md\:-ml-7 { - margin-left: -1.75rem; + .group:hover .md\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .md\:-mt-8 { - margin-top: -2rem; + .group:hover .md\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .md\:-mr-8 { - margin-right: -2rem; + .group:hover .md\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .md\:-mb-8 { - margin-bottom: -2rem; + .group:hover .md\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .md\:-ml-8 { - margin-left: -2rem; + .group:hover .md\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .md\:-mt-9 { - margin-top: -2.25rem; + .group:hover .md\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .md\:-mr-9 { - margin-right: -2.25rem; + .group:hover .md\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .md\:-mb-9 { - margin-bottom: -2.25rem; + .group:hover .md\:group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .md\:-ml-9 { - margin-left: -2.25rem; + .group:hover .md\:group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .md\:-mt-10 { - margin-top: -2.5rem; + .group:hover .md\:group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .md\:-mr-10 { - margin-right: -2.5rem; + .group:hover .md\:group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .md\:-mb-10 { - margin-bottom: -2.5rem; + .group:hover .md\:group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .md\:-ml-10 { - margin-left: -2.5rem; + .group:hover .md\:group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .md\:-mt-11 { - margin-top: -2.75rem; + .group:hover .md\:group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .md\:-mr-11 { - margin-right: -2.75rem; + .group:hover .md\:group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .md\:-mb-11 { - margin-bottom: -2.75rem; + .group:hover .md\:group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .md\:-ml-11 { - margin-left: -2.75rem; + .group:hover .md\:group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .md\:-mt-12 { - margin-top: -3rem; + .group:hover .md\:group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .md\:-mr-12 { - margin-right: -3rem; + .group:hover .md\:group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .md\:-mb-12 { - margin-bottom: -3rem; + .group:hover .md\:group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .md\:-ml-12 { - margin-left: -3rem; + .group:hover .md\:group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .md\:-mt-14 { - margin-top: -3.5rem; + .group:hover .md\:group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .md\:-mr-14 { - margin-right: -3.5rem; + .group:hover .md\:group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .md\:-mb-14 { - margin-bottom: -3.5rem; + .group:hover .md\:group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .md\:-ml-14 { - margin-left: -3.5rem; + .group:hover .md\:group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .md\:-mt-16 { - margin-top: -4rem; + .group:hover .md\:group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .md\:-mr-16 { - margin-right: -4rem; + .group:hover .md\:group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .md\:-mb-16 { - margin-bottom: -4rem; + .md\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .md\:-ml-16 { - margin-left: -4rem; + .md\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .md\:-mt-20 { - margin-top: -5rem; + .md\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .md\:-mr-20 { - margin-right: -5rem; + .md\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .md\:-mb-20 { - margin-bottom: -5rem; + .md\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .md\:-ml-20 { - margin-left: -5rem; + .md\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .md\:-mt-24 { - margin-top: -6rem; + .md\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .md\:-mr-24 { - margin-right: -6rem; + .md\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .md\:-mb-24 { - margin-bottom: -6rem; + .md\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .md\:-ml-24 { - margin-left: -6rem; + .md\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .md\:-mt-28 { - margin-top: -7rem; + .md\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .md\:-mr-28 { - margin-right: -7rem; + .md\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .md\:-mb-28 { - margin-bottom: -7rem; + .md\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .md\:-ml-28 { - margin-left: -7rem; + .md\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .md\:-mt-32 { - margin-top: -8rem; + .md\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .md\:-mr-32 { - margin-right: -8rem; + .md\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .md\:-mb-32 { - margin-bottom: -8rem; + .md\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .md\:-ml-32 { - margin-left: -8rem; + .md\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .md\:-mt-36 { - margin-top: -9rem; + .md\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .md\:-mr-36 { - margin-right: -9rem; + .md\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .md\:-mb-36 { - margin-bottom: -9rem; + .md\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .md\:-ml-36 { - margin-left: -9rem; + .md\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .md\:-mt-40 { - margin-top: -10rem; + .md\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .md\:-mr-40 { - margin-right: -10rem; + .md\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .md\:-mb-40 { - margin-bottom: -10rem; + .md\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .md\:-ml-40 { - margin-left: -10rem; + .md\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .md\:-mt-44 { - margin-top: -11rem; + .md\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .md\:-mr-44 { - margin-right: -11rem; + .md\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .md\:-mb-44 { - margin-bottom: -11rem; + .md\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .md\:-ml-44 { - margin-left: -11rem; + .md\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .md\:-mt-48 { - margin-top: -12rem; + .md\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .md\:-mr-48 { - margin-right: -12rem; + .md\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .md\:-mb-48 { - margin-bottom: -12rem; + .md\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .md\:-ml-48 { - margin-left: -12rem; + .md\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .md\:-mt-52 { - margin-top: -13rem; + .md\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .md\:-mr-52 { - margin-right: -13rem; + .md\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .md\:-mb-52 { - margin-bottom: -13rem; + .md\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .md\:-ml-52 { - margin-left: -13rem; + .md\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .md\:-mt-56 { - margin-top: -14rem; + .md\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .md\:-mr-56 { - margin-right: -14rem; + .md\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .md\:-mb-56 { - margin-bottom: -14rem; + .md\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .md\:-ml-56 { - margin-left: -14rem; + .md\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .md\:-mt-60 { - margin-top: -15rem; + .md\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .md\:-mr-60 { - margin-right: -15rem; + .md\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .md\:-mb-60 { - margin-bottom: -15rem; + .md\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .md\:-ml-60 { - margin-left: -15rem; + .md\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .md\:-mt-64 { - margin-top: -16rem; + .md\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .md\:-mr-64 { - margin-right: -16rem; + .md\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .md\:-mb-64 { - margin-bottom: -16rem; + .md\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .md\:-ml-64 { - margin-left: -16rem; + .md\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .md\:-mt-72 { - margin-top: -18rem; + .md\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .md\:-mr-72 { - margin-right: -18rem; + .md\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .md\:-mb-72 { - margin-bottom: -18rem; + .md\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .md\:-ml-72 { - margin-left: -18rem; + .md\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .md\:-mt-80 { - margin-top: -20rem; + .md\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .md\:-mr-80 { - margin-right: -20rem; + .md\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .md\:-mb-80 { - margin-bottom: -20rem; + .md\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .md\:-ml-80 { - margin-left: -20rem; + .md\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .md\:-mt-96 { - margin-top: -24rem; + .md\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .md\:-mr-96 { - margin-right: -24rem; + .md\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .md\:-mb-96 { - margin-bottom: -24rem; + .md\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .md\:-ml-96 { - margin-left: -24rem; + .md\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .md\:-mt-px { - margin-top: -1px; + .md\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .md\:-mr-px { - margin-right: -1px; + .md\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .md\:-mb-px { - margin-bottom: -1px; + .md\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .md\:-ml-px { - margin-left: -1px; + .md\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .md\:-mt-0\.5 { - margin-top: -0.125rem; + .md\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .md\:-mr-0\.5 { - margin-right: -0.125rem; + .md\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .md\:-mb-0\.5 { - margin-bottom: -0.125rem; + .md\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .md\:-ml-0\.5 { - margin-left: -0.125rem; + .md\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .md\:-mt-1\.5 { - margin-top: -0.375rem; + .md\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .md\:-mr-1\.5 { - margin-right: -0.375rem; + .md\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .md\:-mb-1\.5 { - margin-bottom: -0.375rem; + .md\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .md\:-ml-1\.5 { - margin-left: -0.375rem; + .md\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .md\:-mt-2\.5 { - margin-top: -0.625rem; + .md\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .md\:-mr-2\.5 { - margin-right: -0.625rem; + .md\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .md\:-mb-2\.5 { - margin-bottom: -0.625rem; + .md\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .md\:-ml-2\.5 { - margin-left: -0.625rem; + .md\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .md\:-mt-3\.5 { - margin-top: -0.875rem; + .md\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .md\:-mr-3\.5 { - margin-right: -0.875rem; + .md\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .md\:-mb-3\.5 { - margin-bottom: -0.875rem; + .md\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .md\:-ml-3\.5 { - margin-left: -0.875rem; + .md\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .md\:max-h-0 { - max-height: 0px; + .md\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .md\:max-h-1 { - max-height: 0.25rem; + .md\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .md\:max-h-2 { - max-height: 0.5rem; + .md\:hover\:border-transparent:hover { + border-color: transparent; } - .md\:max-h-3 { - max-height: 0.75rem; + .md\:hover\:border-current:hover { + border-color: currentColor; } - .md\:max-h-4 { - max-height: 1rem; + .md\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .md\:max-h-5 { - max-height: 1.25rem; + .md\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .md\:max-h-6 { - max-height: 1.5rem; + .md\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .md\:max-h-7 { - max-height: 1.75rem; + .md\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .md\:max-h-8 { - max-height: 2rem; + .md\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .md\:max-h-9 { - max-height: 2.25rem; + .md\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .md\:max-h-10 { - max-height: 2.5rem; + .md\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .md\:max-h-11 { - max-height: 2.75rem; + .md\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .md\:max-h-12 { - max-height: 3rem; + .md\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .md\:max-h-14 { - max-height: 3.5rem; + .md\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .md\:max-h-16 { - max-height: 4rem; + .md\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .md\:max-h-20 { - max-height: 5rem; + .md\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .md\:max-h-24 { - max-height: 6rem; + .md\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .md\:max-h-28 { - max-height: 7rem; + .md\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .md\:max-h-32 { - max-height: 8rem; + .md\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .md\:max-h-36 { - max-height: 9rem; + .md\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .md\:max-h-40 { - max-height: 10rem; + .md\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .md\:max-h-44 { - max-height: 11rem; + .md\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .md\:max-h-48 { - max-height: 12rem; + .md\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .md\:max-h-52 { - max-height: 13rem; + .md\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .md\:max-h-56 { - max-height: 14rem; + .md\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .md\:max-h-60 { - max-height: 15rem; + .md\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .md\:max-h-64 { - max-height: 16rem; + .md\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .md\:max-h-72 { - max-height: 18rem; + .md\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .md\:max-h-80 { - max-height: 20rem; + .md\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .md\:max-h-96 { - max-height: 24rem; + .md\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .md\:max-h-px { - max-height: 1px; + .md\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .md\:max-h-0\.5 { - max-height: 0.125rem; + .md\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .md\:max-h-1\.5 { - max-height: 0.375rem; + .md\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .md\:max-h-2\.5 { - max-height: 0.625rem; + .md\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .md\:max-h-3\.5 { - max-height: 0.875rem; + .md\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .md\:max-h-full { - max-height: 100%; + .md\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .md\:max-h-screen { - max-height: 100vh; + .md\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .md\:max-w-0 { - max-width: 0rem; + .md\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .md\:max-w-none { - max-width: none; + .md\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .md\:max-w-xs { - max-width: 20rem; + .md\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .md\:max-w-sm { - max-width: 24rem; + .md\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .md\:max-w-md { - max-width: 28rem; + .md\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .md\:max-w-lg { - max-width: 32rem; + .md\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .md\:max-w-xl { - max-width: 36rem; + .md\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .md\:max-w-2xl { - max-width: 42rem; + .md\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .md\:max-w-3xl { - max-width: 48rem; + .md\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .md\:max-w-4xl { - max-width: 56rem; + .md\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .md\:max-w-5xl { - max-width: 64rem; + .md\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .md\:max-w-6xl { - max-width: 72rem; + .md\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .md\:max-w-7xl { - max-width: 80rem; + .md\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .md\:max-w-full { - max-width: 100%; + .md\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .md\:max-w-min { - max-width: min-content; + .md\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .md\:max-w-max { - max-width: max-content; + .md\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .md\:max-w-prose { - max-width: 65ch; + .md\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .md\:max-w-screen-sm { - max-width: 640px; + .md\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .md\:max-w-screen-md { - max-width: 768px; + .md\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .md\:max-w-screen-lg { - max-width: 1024px; + .md\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .md\:max-w-screen-xl { - max-width: 1280px; + .md\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .md\:max-w-screen-2xl { - max-width: 1536px; + .md\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .md\:min-h-0 { - min-height: 0px; + .md\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .md\:min-h-full { - min-height: 100%; + .md\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .md\:min-h-screen { - min-height: 100vh; + .md\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .md\:min-w-0 { - min-width: 0px; + .md\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .md\:min-w-full { - min-width: 100%; + .md\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .md\:min-w-min { - min-width: min-content; + .md\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .md\:min-w-max { - min-width: max-content; + .md\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .md\:object-contain { - object-fit: contain; + .md\:hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .md\:object-cover { - object-fit: cover; + .md\:hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .md\:object-fill { - object-fit: fill; + .md\:hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .md\:object-none { - object-fit: none; + .md\:hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .md\:object-scale-down { - object-fit: scale-down; + .md\:hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .md\:object-bottom { - object-position: bottom; + .md\:hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .md\:object-center { - object-position: center; + .md\:hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .md\:object-left { - object-position: left; + .md\:hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .md\:object-left-bottom { - object-position: left bottom; + .md\:hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .md\:object-left-top { - object-position: left top; + .md\:hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .md\:object-right { - object-position: right; + .md\:hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .md\:object-right-bottom { - object-position: right bottom; + .md\:hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .md\:object-right-top { - object-position: right top; + .md\:hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .md\:object-top { - object-position: top; + .md\:hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .md\:opacity-0 { - opacity: 0; + .md\:hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .md\:opacity-5 { - opacity: 0.05; + .md\:hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .md\:opacity-10 { - opacity: 0.1; + .md\:hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .md\:opacity-20 { - opacity: 0.2; + .md\:hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .md\:opacity-25 { - opacity: 0.25; + .md\:hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .md\:opacity-30 { - opacity: 0.3; + .md\:hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .md\:opacity-40 { - opacity: 0.4; + .md\:focus\:border-transparent:focus { + border-color: transparent; } - .md\:opacity-50 { - opacity: 0.5; + .md\:focus\:border-current:focus { + border-color: currentColor; } - .md\:opacity-60 { - opacity: 0.6; + .md\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .md\:opacity-70 { - opacity: 0.7; + .md\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .md\:opacity-75 { - opacity: 0.75; + .md\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .md\:opacity-80 { - opacity: 0.8; + .md\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .md\:opacity-90 { - opacity: 0.9; + .md\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .md\:opacity-95 { - opacity: 0.95; + .md\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .md\:opacity-100 { - opacity: 1; + .md\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-0 { - opacity: 0; + .md\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-5 { - opacity: 0.05; + .md\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-10 { - opacity: 0.1; + .md\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-20 { - opacity: 0.2; + .md\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-25 { - opacity: 0.25; + .md\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-30 { - opacity: 0.3; + .md\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-40 { - opacity: 0.4; + .md\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-50 { - opacity: 0.5; + .md\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-60 { - opacity: 0.6; + .md\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-70 { - opacity: 0.7; + .md\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-75 { - opacity: 0.75; + .md\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-80 { - opacity: 0.8; + .md\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-90 { - opacity: 0.9; + .md\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-95 { - opacity: 0.95; + .md\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .group:hover .md\:group-hover\:opacity-100 { - opacity: 1; + .md\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-0:focus-within { - opacity: 0; + .md\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .md\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .md\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .md\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .md\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .md\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .md\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .md\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .md\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .md\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .md\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .md\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .md\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .md\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .md\:focus-within\:opacity-100:focus-within { - opacity: 1; + .md\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .md\:hover\:opacity-0:hover { - opacity: 0; + .md\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .md\:hover\:opacity-5:hover { - opacity: 0.05; + .md\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .md\:hover\:opacity-10:hover { - opacity: 0.1; + .md\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .md\:hover\:opacity-20:hover { - opacity: 0.2; + .md\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .md\:hover\:opacity-25:hover { - opacity: 0.25; + .md\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .md\:hover\:opacity-30:hover { - opacity: 0.3; + .md\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .md\:hover\:opacity-40:hover { - opacity: 0.4; + .md\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .md\:hover\:opacity-50:hover { - opacity: 0.5; + .md\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .md\:hover\:opacity-60:hover { - opacity: 0.6; + .md\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .md\:hover\:opacity-70:hover { - opacity: 0.7; + .md\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .md\:hover\:opacity-75:hover { - opacity: 0.75; + .md\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .md\:hover\:opacity-80:hover { - opacity: 0.8; + .md\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .md\:hover\:opacity-90:hover { - opacity: 0.9; + .md\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .md\:hover\:opacity-95:hover { - opacity: 0.95; + .md\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .md\:hover\:opacity-100:hover { - opacity: 1; + .md\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .md\:focus\:opacity-0:focus { - opacity: 0; + .md\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .md\:focus\:opacity-5:focus { - opacity: 0.05; + .md\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .md\:focus\:opacity-10:focus { - opacity: 0.1; + .md\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .md\:focus\:opacity-20:focus { - opacity: 0.2; + .md\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .md\:focus\:opacity-25:focus { - opacity: 0.25; + .md\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .md\:focus\:opacity-30:focus { - opacity: 0.3; + .md\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .md\:focus\:opacity-40:focus { - opacity: 0.4; + .md\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .md\:focus\:opacity-50:focus { - opacity: 0.5; + .md\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .md\:focus\:opacity-60:focus { - opacity: 0.6; + .md\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .md\:focus\:opacity-70:focus { - opacity: 0.7; + .md\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .md\:focus\:opacity-75:focus { - opacity: 0.75; + .md\:focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .md\:focus\:opacity-80:focus { - opacity: 0.8; + .md\:focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .md\:focus\:opacity-90:focus { - opacity: 0.9; + .md\:focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .md\:focus\:opacity-95:focus { - opacity: 0.95; + .md\:focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .md\:focus\:opacity-100:focus { - opacity: 1; + .md\:focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .md\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .md\:focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .md\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .md\:focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .md\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .md\:focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .md\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .md\:focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .md\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .md\:focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .md\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .md\:focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .md\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .md\:focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .md\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .md\:focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .md\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .md\:focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .md\:overflow-auto { - overflow: auto; + .md\:focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .md\:overflow-hidden { - overflow: hidden; + .md\:focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .md\:overflow-visible { - overflow: visible; + .md\:focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .md\:overflow-scroll { - overflow: scroll; + .md\:focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .md\:overflow-x-auto { - overflow-x: auto; + .md\:focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .md\:overflow-y-auto { - overflow-y: auto; + .md\:focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .md\:overflow-x-hidden { - overflow-x: hidden; + .md\:border-opacity-0 { + --tw-border-opacity: 0; } - .md\:overflow-y-hidden { - overflow-y: hidden; + .md\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .md\:overflow-x-visible { - overflow-x: visible; + .md\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .md\:overflow-y-visible { - overflow-y: visible; + .md\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .md\:overflow-x-scroll { - overflow-x: scroll; + .md\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .md\:overflow-y-scroll { - overflow-y: scroll; + .md\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .md\:overscroll-auto { - overscroll-behavior: auto; + .md\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .md\:overscroll-contain { - overscroll-behavior: contain; + .md\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .md\:overscroll-none { - overscroll-behavior: none; + .md\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .md\:overscroll-y-auto { - overscroll-behavior-y: auto; + .md\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .md\:overscroll-y-contain { - overscroll-behavior-y: contain; + .md\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .md\:overscroll-y-none { - overscroll-behavior-y: none; + .md\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .md\:overscroll-x-auto { - overscroll-behavior-x: auto; + .md\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .md\:overscroll-x-contain { - overscroll-behavior-x: contain; + .md\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .md\:overscroll-x-none { - overscroll-behavior-x: none; + .md\:border-opacity-100 { + --tw-border-opacity: 1; } - .md\:p-0 { - padding: 0px; + .group:hover .md\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } - .md\:p-1 { - padding: 0.25rem; + .group:hover .md\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .md\:p-2 { - padding: 0.5rem; + .group:hover .md\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .md\:p-3 { - padding: 0.75rem; + .group:hover .md\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .md\:p-4 { - padding: 1rem; + .group:hover .md\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .md\:p-5 { - padding: 1.25rem; + .group:hover .md\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .md\:p-6 { - padding: 1.5rem; + .group:hover .md\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .md\:p-7 { - padding: 1.75rem; + .group:hover .md\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .md\:p-8 { - padding: 2rem; + .group:hover .md\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .md\:p-9 { - padding: 2.25rem; + .group:hover .md\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .md\:p-10 { - padding: 2.5rem; + .group:hover .md\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .md\:p-11 { - padding: 2.75rem; + .group:hover .md\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .md\:p-12 { - padding: 3rem; + .group:hover .md\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .md\:p-14 { - padding: 3.5rem; + .group:hover .md\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .md\:p-16 { - padding: 4rem; + .group:hover .md\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } - .md\:p-20 { - padding: 5rem; + .md\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } - .md\:p-24 { - padding: 6rem; + .md\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } - .md\:p-28 { - padding: 7rem; + .md\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } - .md\:p-32 { - padding: 8rem; + .md\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } - .md\:p-36 { - padding: 9rem; + .md\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } - .md\:p-40 { - padding: 10rem; + .md\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } - .md\:p-44 { - padding: 11rem; + .md\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } - .md\:p-48 { - padding: 12rem; + .md\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } - .md\:p-52 { - padding: 13rem; + .md\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } - .md\:p-56 { - padding: 14rem; + .md\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } - .md\:p-60 { - padding: 15rem; + .md\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } - .md\:p-64 { - padding: 16rem; + .md\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } - .md\:p-72 { - padding: 18rem; + .md\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } - .md\:p-80 { - padding: 20rem; + .md\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } - .md\:p-96 { - padding: 24rem; + .md\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } - .md\:p-px { - padding: 1px; + .md\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } - .md\:p-0\.5 { - padding: 0.125rem; + .md\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } - .md\:p-1\.5 { - padding: 0.375rem; + .md\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } - .md\:p-2\.5 { - padding: 0.625rem; + .md\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } - .md\:p-3\.5 { - padding: 0.875rem; + .md\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } - .md\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .md\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } - .md\:px-0 { - padding-left: 0px; - padding-right: 0px; + .md\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } - .md\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .md\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } - .md\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .md\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } - .md\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .md\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } - .md\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .md\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } - .md\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .md\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } - .md\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .md\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } - .md\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .md\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } - .md\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .md\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } - .md\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .md\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } - .md\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .md\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } - .md\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .md\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } - .md\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .md\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } - .md\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .md\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } - .md\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .md\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } - .md\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .md\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } - .md\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .md\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } - .md\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .md\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } - .md\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .md\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } - .md\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .md\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } - .md\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .md\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } - .md\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .md\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } - .md\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .md\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } - .md\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .md\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } - .md\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .md\:bg-transparent { + background-color: transparent; } - .md\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .md\:bg-current { + background-color: currentColor; } - .md\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .md\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .md\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .md\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .md\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .md\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .md\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .md\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .md\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .md\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .md\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .md\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .md\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .md\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .md\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .md\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .md\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .md\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .md\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .md\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .md\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .md\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .md\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .md\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .md\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .md\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .md\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .md\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .md\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .md\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .md\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .md\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .md\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .md\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .md\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .md\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .md\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .md\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .md\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .md\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .md\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .md\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .md\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .md\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .md\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .md\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .md\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .md\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .md\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .md\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .md\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .md\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .md\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .md\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .md\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .md\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .md\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .md\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .md\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .md\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .md\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .md\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .md\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .md\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .md\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .md\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .md\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .md\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .md\:px-px { - padding-left: 1px; - padding-right: 1px; + .md\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .md\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .md\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .md\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .md\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .md\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .md\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .md\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .md\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .md\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .md\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .md\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .md\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .md\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .md\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .md\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .md\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .md\:pt-0 { - padding-top: 0px; + .md\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .md\:pr-0 { - padding-right: 0px; + .md\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .md\:pb-0 { - padding-bottom: 0px; + .md\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .md\:pl-0 { - padding-left: 0px; + .md\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .md\:pt-1 { - padding-top: 0.25rem; + .md\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .md\:pr-1 { - padding-right: 0.25rem; + .md\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .md\:pb-1 { - padding-bottom: 0.25rem; + .md\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .md\:pl-1 { - padding-left: 0.25rem; + .md\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .md\:pt-2 { - padding-top: 0.5rem; + .md\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .md\:pr-2 { - padding-right: 0.5rem; + .md\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .md\:pb-2 { - padding-bottom: 0.5rem; + .md\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .md\:pl-2 { - padding-left: 0.5rem; + .md\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .md\:pt-3 { - padding-top: 0.75rem; + .md\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .md\:pr-3 { - padding-right: 0.75rem; + .md\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .md\:pb-3 { - padding-bottom: 0.75rem; + .md\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .md\:pl-3 { - padding-left: 0.75rem; + .md\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .md\:pt-4 { - padding-top: 1rem; + .md\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .md\:pr-4 { - padding-right: 1rem; + .md\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .md\:pb-4 { - padding-bottom: 1rem; + .md\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .md\:pl-4 { - padding-left: 1rem; + .md\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .md\:pt-5 { - padding-top: 1.25rem; + .md\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .md\:pr-5 { - padding-right: 1.25rem; + .md\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .md\:pb-5 { - padding-bottom: 1.25rem; + .md\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .md\:pl-5 { - padding-left: 1.25rem; + .md\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .md\:pt-6 { - padding-top: 1.5rem; + .md\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .md\:pr-6 { - padding-right: 1.5rem; + .md\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .md\:pb-6 { - padding-bottom: 1.5rem; + .md\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .md\:pl-6 { - padding-left: 1.5rem; + .md\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .md\:pt-7 { - padding-top: 1.75rem; + .md\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .md\:pr-7 { - padding-right: 1.75rem; + .md\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .md\:pb-7 { - padding-bottom: 1.75rem; + .md\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .md\:pl-7 { - padding-left: 1.75rem; + .md\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .md\:pt-8 { - padding-top: 2rem; + .md\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .md\:pr-8 { - padding-right: 2rem; + .md\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .md\:pb-8 { - padding-bottom: 2rem; + .md\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .md\:pl-8 { - padding-left: 2rem; + .md\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .md\:pt-9 { - padding-top: 2.25rem; + .md\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .md\:pr-9 { - padding-right: 2.25rem; + .md\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .md\:pb-9 { - padding-bottom: 2.25rem; + .md\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .md\:pl-9 { - padding-left: 2.25rem; + .group:hover .md\:group-hover\:bg-transparent { + background-color: transparent; } - .md\:pt-10 { - padding-top: 2.5rem; + .group:hover .md\:group-hover\:bg-current { + background-color: currentColor; } - .md\:pr-10 { - padding-right: 2.5rem; + .group:hover .md\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .md\:pb-10 { - padding-bottom: 2.5rem; + .group:hover .md\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .md\:pl-10 { - padding-left: 2.5rem; + .group:hover .md\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .md\:pt-11 { - padding-top: 2.75rem; + .group:hover .md\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .md\:pr-11 { - padding-right: 2.75rem; + .group:hover .md\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .md\:pb-11 { - padding-bottom: 2.75rem; + .group:hover .md\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .md\:pl-11 { - padding-left: 2.75rem; + .group:hover .md\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .md\:pt-12 { - padding-top: 3rem; + .group:hover .md\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .md\:pr-12 { - padding-right: 3rem; + .group:hover .md\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .md\:pb-12 { - padding-bottom: 3rem; + .group:hover .md\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .md\:pl-12 { - padding-left: 3rem; + .group:hover .md\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .md\:pt-14 { - padding-top: 3.5rem; + .group:hover .md\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .md\:pr-14 { - padding-right: 3.5rem; + .group:hover .md\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .md\:pb-14 { - padding-bottom: 3.5rem; + .group:hover .md\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .md\:pl-14 { - padding-left: 3.5rem; + .group:hover .md\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .md\:pt-16 { - padding-top: 4rem; + .group:hover .md\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .md\:pr-16 { - padding-right: 4rem; + .group:hover .md\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .md\:pb-16 { - padding-bottom: 4rem; + .group:hover .md\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .md\:pl-16 { - padding-left: 4rem; + .group:hover .md\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .md\:pt-20 { - padding-top: 5rem; + .group:hover .md\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .md\:pr-20 { - padding-right: 5rem; + .group:hover .md\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .md\:pb-20 { - padding-bottom: 5rem; + .group:hover .md\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .md\:pl-20 { - padding-left: 5rem; + .group:hover .md\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .md\:pt-24 { - padding-top: 6rem; + .group:hover .md\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .md\:pr-24 { - padding-right: 6rem; + .group:hover .md\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .md\:pb-24 { - padding-bottom: 6rem; + .group:hover .md\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .md\:pl-24 { - padding-left: 6rem; + .group:hover .md\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .md\:pt-28 { - padding-top: 7rem; + .group:hover .md\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .md\:pr-28 { - padding-right: 7rem; + .group:hover .md\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .md\:pb-28 { - padding-bottom: 7rem; + .group:hover .md\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .md\:pl-28 { - padding-left: 7rem; + .group:hover .md\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .md\:pt-32 { - padding-top: 8rem; + .group:hover .md\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .md\:pr-32 { - padding-right: 8rem; + .group:hover .md\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .md\:pb-32 { - padding-bottom: 8rem; + .group:hover .md\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .md\:pl-32 { - padding-left: 8rem; + .group:hover .md\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .md\:pt-36 { - padding-top: 9rem; + .group:hover .md\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .md\:pr-36 { - padding-right: 9rem; + .group:hover .md\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .md\:pb-36 { - padding-bottom: 9rem; + .group:hover .md\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .md\:pl-36 { - padding-left: 9rem; + .group:hover .md\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .md\:pt-40 { - padding-top: 10rem; + .group:hover .md\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .md\:pr-40 { - padding-right: 10rem; + .group:hover .md\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .md\:pb-40 { - padding-bottom: 10rem; + .group:hover .md\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .md\:pl-40 { - padding-left: 10rem; + .group:hover .md\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .md\:pt-44 { - padding-top: 11rem; + .group:hover .md\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .md\:pr-44 { - padding-right: 11rem; + .group:hover .md\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .md\:pb-44 { - padding-bottom: 11rem; + .group:hover .md\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .md\:pl-44 { - padding-left: 11rem; + .group:hover .md\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .md\:pt-48 { - padding-top: 12rem; + .group:hover .md\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .md\:pr-48 { - padding-right: 12rem; + .group:hover .md\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .md\:pb-48 { - padding-bottom: 12rem; + .group:hover .md\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .md\:pl-48 { - padding-left: 12rem; + .group:hover .md\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .md\:pt-52 { - padding-top: 13rem; + .group:hover .md\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .md\:pr-52 { - padding-right: 13rem; + .group:hover .md\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .md\:pb-52 { - padding-bottom: 13rem; + .group:hover .md\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .md\:pl-52 { - padding-left: 13rem; + .group:hover .md\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .md\:pt-56 { - padding-top: 14rem; + .group:hover .md\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .md\:pr-56 { - padding-right: 14rem; + .group:hover .md\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .md\:pb-56 { - padding-bottom: 14rem; + .group:hover .md\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .md\:pl-56 { - padding-left: 14rem; + .group:hover .md\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .md\:pt-60 { - padding-top: 15rem; + .group:hover .md\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .md\:pr-60 { - padding-right: 15rem; + .group:hover .md\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .md\:pb-60 { - padding-bottom: 15rem; + .group:hover .md\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .md\:pl-60 { - padding-left: 15rem; + .group:hover .md\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .md\:pt-64 { - padding-top: 16rem; + .group:hover .md\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .md\:pr-64 { - padding-right: 16rem; + .group:hover .md\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .md\:pb-64 { - padding-bottom: 16rem; + .group:hover .md\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .md\:pl-64 { - padding-left: 16rem; + .group:hover .md\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .md\:pt-72 { - padding-top: 18rem; + .group:hover .md\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .md\:pr-72 { - padding-right: 18rem; + .group:hover .md\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .md\:pb-72 { - padding-bottom: 18rem; + .group:hover .md\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .md\:pl-72 { - padding-left: 18rem; + .group:hover .md\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .md\:pt-80 { - padding-top: 20rem; + .group:hover .md\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .md\:pr-80 { - padding-right: 20rem; + .group:hover .md\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .md\:pb-80 { - padding-bottom: 20rem; + .group:hover .md\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .md\:pl-80 { - padding-left: 20rem; + .group:hover .md\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .md\:pt-96 { - padding-top: 24rem; + .group:hover .md\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .md\:pr-96 { - padding-right: 24rem; + .group:hover .md\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .md\:pb-96 { - padding-bottom: 24rem; + .group:hover .md\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .md\:pl-96 { - padding-left: 24rem; + .group:hover .md\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .md\:pt-px { - padding-top: 1px; + .group:hover .md\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .md\:pr-px { - padding-right: 1px; + .group:hover .md\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .md\:pb-px { - padding-bottom: 1px; + .group:hover .md\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .md\:pl-px { - padding-left: 1px; + .md\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .md\:pt-0\.5 { - padding-top: 0.125rem; + .md\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .md\:pr-0\.5 { - padding-right: 0.125rem; + .md\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .md\:pb-0\.5 { - padding-bottom: 0.125rem; + .md\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .md\:pl-0\.5 { - padding-left: 0.125rem; + .md\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .md\:pt-1\.5 { - padding-top: 0.375rem; + .md\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .md\:pr-1\.5 { - padding-right: 0.375rem; + .md\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .md\:pb-1\.5 { - padding-bottom: 0.375rem; + .md\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .md\:pl-1\.5 { - padding-left: 0.375rem; + .md\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .md\:pt-2\.5 { - padding-top: 0.625rem; + .md\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .md\:pr-2\.5 { - padding-right: 0.625rem; + .md\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .md\:pb-2\.5 { - padding-bottom: 0.625rem; + .md\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .md\:pl-2\.5 { - padding-left: 0.625rem; + .md\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .md\:pt-3\.5 { - padding-top: 0.875rem; + .md\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .md\:pr-3\.5 { - padding-right: 0.875rem; + .md\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .md\:pb-3\.5 { - padding-bottom: 0.875rem; + .md\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .md\:pl-3\.5 { - padding-left: 0.875rem; + .md\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .md\:placeholder-transparent::placeholder { - color: transparent; + .md\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .md\:placeholder-current::placeholder { - color: currentColor; + .md\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .md\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .md\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .md\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .md\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .md\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .md\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .md\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .md\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .md\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .md\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .md\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .md\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .md\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .md\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .md\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .md\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .md\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .md\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .md\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .md\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .md\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .md\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .md\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .md\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .md\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .md\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .md\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .md\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .md\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .md\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .md\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .md\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .md\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .md\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .md\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .md\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .md\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .md\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .md\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .md\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .md\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .md\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .md\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .md\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .md\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .md\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .md\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .md\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .md\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .md\:hover\:bg-transparent:hover { + background-color: transparent; } - .md\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .md\:hover\:bg-current:hover { + background-color: currentColor; } - .md\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .md\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .md\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .md\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .md\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .md\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .md\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .md\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .md\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .md\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .md\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .md\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .md\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .md\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .md\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .md\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .md\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .md\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .md\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .md\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .md\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .md\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .md\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .md\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .md\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .md\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .md\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .md\:focus\:bg-transparent:focus { + background-color: transparent; } - .md\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .md\:focus\:bg-current:focus { + background-color: currentColor; } - .md\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .md\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .md\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .md\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .md\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .md\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .md\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; + .md\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; + .md\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; + .md\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; + .md\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; + .md\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; + .md\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; + .md\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; + .md\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; + .md\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; + .md\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; + .md\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; + .md\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; + .md\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; + .md\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .md\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; + .md\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; + .md\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; + .md\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; + .md\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; + .md\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; + .md\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; + .md\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; + .md\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; + .md\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; + .md\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; + .md\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; + .md\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; + .md\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; + .md\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; + .md\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .md\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; + .md\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .md\:pointer-events-none { - pointer-events: none; + .md\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .md\:pointer-events-auto { - pointer-events: auto; + .md\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .md\:static { - position: static; + .md\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .md\:fixed { - position: fixed; + .md\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .md\:absolute { - position: absolute; + .md\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .md\:relative { - position: relative; + .md\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .md\:sticky { - position: sticky; + .md\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .md\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .md\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .md\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .md\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .md\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .md\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .md\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .md\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .md\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .md\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .md\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .md\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .md\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .md\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .md\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .md\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .md\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .md\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .md\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .md\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .md\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .md\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .md\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .md\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .md\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .md\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .md\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .md\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .md\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .md\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .md\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .md\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .md\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .md\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .md\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .md\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .md\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .md\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .md\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .md\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .md\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .md\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .md\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .md\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .md\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .md\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .md\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .md\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .md\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .md\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .md\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .md\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .md\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .md\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .md\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .md\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .md\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .md\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .md\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .md\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .md\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .md\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .md\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .md\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .md\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .md\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .md\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .md\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .md\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .md\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .md\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .md\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .md\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .md\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .md\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .md\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .md\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .md\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .md\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .md\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .md\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .md\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .md\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .md\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .md\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .md\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .md\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .md\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .md\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .md\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .md\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .group:hover .md\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .md\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .group:hover .md\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .md\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .group:hover .md\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .md\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .group:hover .md\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .md\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .group:hover .md\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .md\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .group:hover .md\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .md\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .group:hover .md\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .md\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .group:hover .md\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .md\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .group:hover .md\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .md\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .group:hover .md\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .md\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .group:hover .md\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .md\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .group:hover .md\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .md\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .group:hover .md\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .md\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .group:hover .md\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .md\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .group:hover .md\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .md\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .md\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } - .md\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .md\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } - .md\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .md\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } - .md\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .md\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } - .md\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .md\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } - .md\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .md\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } - .md\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .md\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } - .md\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .md\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } - .md\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .md\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } - .md\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .md\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } - .md\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .md\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } - .md\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .md\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } - .md\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .md\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } - .md\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .md\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } - .md\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .md\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } - .md\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .md\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } - .md\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .md\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } - .md\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .md\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } - .md\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .md\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } - .md\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .md\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } - .md\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .md\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } - .md\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .md\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } - .md\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .md\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } - .md\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .md\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } - .md\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .md\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } - .md\:inset-y-0 { - top: 0px; - bottom: 0px; + .md\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } - .md\:inset-x-0 { - right: 0px; - left: 0px; + .md\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } - .md\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .md\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } - .md\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .md\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } - .md\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .md\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } - .md\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .md\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } - .md\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .md\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } - .md\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .md\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } - .md\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .md\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } - .md\:inset-x-4 { - right: 1rem; - left: 1rem; + .md\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } - .md\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .md\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } - .md\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .md\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } - .md\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .md\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } - .md\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .md\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } - .md\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .md\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } - .md\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .md\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } - .md\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .md\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } - .md\:inset-x-8 { - right: 2rem; - left: 2rem; + .md\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } - .md\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .md\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } - .md\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .md\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } - .md\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .md\:bg-none { + background-image: none; } - .md\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .md\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .md\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .md\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .md\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .md\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .md\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .md\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .md\:inset-x-12 { - right: 3rem; - left: 3rem; + .md\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .md\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .md\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .md\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .md\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .md\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .md\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .md\:inset-x-16 { - right: 4rem; - left: 4rem; + .md\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .md\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:inset-x-20 { - right: 5rem; - left: 5rem; + .md\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .md\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:inset-x-24 { - right: 6rem; - left: 6rem; + .md\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .md\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:inset-x-28 { - right: 7rem; - left: 7rem; + .md\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .md\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:inset-x-32 { - right: 8rem; - left: 8rem; + .md\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .md\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:inset-x-36 { - right: 9rem; - left: 9rem; + .md\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .md\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:inset-x-40 { - right: 10rem; - left: 10rem; + .md\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .md\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:inset-x-44 { - right: 11rem; - left: 11rem; + .md\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .md\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:inset-x-48 { - right: 12rem; - left: 12rem; + .md\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .md\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:inset-x-52 { - right: 13rem; - left: 13rem; + .md\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .md\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:inset-x-56 { - right: 14rem; - left: 14rem; + .md\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .md\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:inset-x-60 { - right: 15rem; - left: 15rem; + .md\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .md\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:inset-x-64 { - right: 16rem; - left: 16rem; + .md\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .md\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:inset-x-72 { - right: 18rem; - left: 18rem; + .md\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .md\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:inset-x-80 { - right: 20rem; - left: 20rem; + .md\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .md\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:inset-x-96 { - right: 24rem; - left: 24rem; + .md\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:inset-y-auto { - top: auto; - bottom: auto; + .md\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:inset-x-auto { - right: auto; - left: auto; + .md\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:inset-y-px { - top: 1px; - bottom: 1px; + .md\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:inset-x-px { - right: 1px; - left: 1px; + .md\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .md\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .md\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .md\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .md\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .md\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .md\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .md\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .md\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:-inset-y-0 { - top: 0px; - bottom: 0px; + .md\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:-inset-x-0 { - right: 0px; - left: 0px; + .md\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .md\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .md\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .md\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .md\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .md\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .md\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .md\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:-inset-x-4 { - right: -1rem; - left: -1rem; + .md\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .md\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .md\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .md\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .md\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .md\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .md\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .md\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:-inset-x-8 { - right: -2rem; - left: -2rem; + .md\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .md\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .md\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .md\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .md\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .md\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .md\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .md\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:-inset-x-12 { - right: -3rem; - left: -3rem; + .md\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .md\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .md\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .md\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:-inset-x-16 { - right: -4rem; - left: -4rem; + .md\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .md\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:-inset-x-20 { - right: -5rem; - left: -5rem; + .md\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .md\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:-inset-x-24 { - right: -6rem; - left: -6rem; + .md\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .md\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:-inset-x-28 { - right: -7rem; - left: -7rem; + .md\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .md\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:-inset-x-32 { - right: -8rem; - left: -8rem; + .md\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .md\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:-inset-x-36 { - right: -9rem; - left: -9rem; + .md\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .md\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:-inset-x-40 { - right: -10rem; - left: -10rem; + .md\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .md\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-inset-x-44 { - right: -11rem; - left: -11rem; + .md\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .md\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-inset-x-48 { - right: -12rem; - left: -12rem; + .md\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .md\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:-inset-x-52 { - right: -13rem; - left: -13rem; + .md\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .md\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:-inset-x-56 { - right: -14rem; - left: -14rem; + .md\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .md\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:-inset-x-60 { - right: -15rem; - left: -15rem; + .md\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .md\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:-inset-x-64 { - right: -16rem; - left: -16rem; + .md\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .md\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:-inset-x-72 { - right: -18rem; - left: -18rem; + .md\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .md\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:-inset-x-80 { - right: -20rem; - left: -20rem; + .md\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .md\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:-inset-x-96 { - right: -24rem; - left: -24rem; + .md\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:-inset-y-px { - top: -1px; - bottom: -1px; + .md\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:-inset-x-px { - right: -1px; - left: -1px; + .md\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .md\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .md\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .md\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .md\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .md\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .md\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .md\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .md\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .md\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:inset-x-1\/2 { - right: 50%; - left: 50%; + .md\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .md\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .md\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .md\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .md\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .md\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:inset-x-1\/4 { - right: 25%; - left: 25%; + .md\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .md\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:inset-x-2\/4 { - right: 50%; - left: 50%; + .md\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .md\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:inset-x-3\/4 { - right: 75%; - left: 75%; + .md\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:inset-y-full { - top: 100%; - bottom: 100%; + .md\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:inset-x-full { - right: 100%; - left: 100%; + .md\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .md\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .md\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .md\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .md\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .md\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .md\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .md\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .md\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .md\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .md\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .md\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .md\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:-inset-y-full { - top: -100%; - bottom: -100%; + .md\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:-inset-x-full { - right: -100%; - left: -100%; + .md\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:top-0 { - top: 0px; + .md\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:right-0 { - right: 0px; + .md\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:bottom-0 { - bottom: 0px; + .md\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:left-0 { - left: 0px; + .md\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:top-1 { - top: 0.25rem; + .md\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:right-1 { - right: 0.25rem; + .md\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:bottom-1 { - bottom: 0.25rem; + .md\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:left-1 { - left: 0.25rem; + .md\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:top-2 { - top: 0.5rem; + .md\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:right-2 { - right: 0.5rem; + .md\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:bottom-2 { - bottom: 0.5rem; + .md\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:left-2 { - left: 0.5rem; + .md\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:top-3 { - top: 0.75rem; + .md\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:right-3 { - right: 0.75rem; + .md\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:bottom-3 { - bottom: 0.75rem; + .md\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:left-3 { - left: 0.75rem; + .md\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:top-4 { - top: 1rem; + .md\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:right-4 { - right: 1rem; + .md\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:bottom-4 { - bottom: 1rem; + .md\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:left-4 { - left: 1rem; + .md\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:top-5 { - top: 1.25rem; + .md\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:right-5 { - right: 1.25rem; + .md\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:bottom-5 { - bottom: 1.25rem; + .md\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:left-5 { - left: 1.25rem; + .md\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:top-6 { - top: 1.5rem; + .md\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:right-6 { - right: 1.5rem; + .md\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:bottom-6 { - bottom: 1.5rem; + .md\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:left-6 { - left: 1.5rem; + .md\:to-transparent { + --tw-gradient-to: transparent; } - .md\:top-7 { - top: 1.75rem; + .md\:to-current { + --tw-gradient-to: currentColor; } - .md\:right-7 { - right: 1.75rem; + .md\:to-black { + --tw-gradient-to: #000; } - .md\:bottom-7 { - bottom: 1.75rem; + .md\:to-white { + --tw-gradient-to: #fff; } - .md\:left-7 { - left: 1.75rem; + .md\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .md\:top-8 { - top: 2rem; + .md\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .md\:right-8 { - right: 2rem; + .md\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .md\:bottom-8 { - bottom: 2rem; + .md\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .md\:left-8 { - left: 2rem; + .md\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .md\:top-9 { - top: 2.25rem; + .md\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .md\:right-9 { - right: 2.25rem; + .md\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .md\:bottom-9 { - bottom: 2.25rem; + .md\:to-gray-700 { + --tw-gradient-to: #374151; } - .md\:left-9 { - left: 2.25rem; + .md\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .md\:top-10 { - top: 2.5rem; + .md\:to-gray-900 { + --tw-gradient-to: #111827; } - .md\:right-10 { - right: 2.5rem; + .md\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .md\:bottom-10 { - bottom: 2.5rem; + .md\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .md\:left-10 { - left: 2.5rem; + .md\:to-red-200 { + --tw-gradient-to: #fecaca; } - .md\:top-11 { - top: 2.75rem; + .md\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .md\:right-11 { - right: 2.75rem; + .md\:to-red-400 { + --tw-gradient-to: #f87171; } - .md\:bottom-11 { - bottom: 2.75rem; + .md\:to-red-500 { + --tw-gradient-to: #ef4444; } - .md\:left-11 { - left: 2.75rem; + .md\:to-red-600 { + --tw-gradient-to: #dc2626; } - .md\:top-12 { - top: 3rem; + .md\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .md\:right-12 { - right: 3rem; + .md\:to-red-800 { + --tw-gradient-to: #991b1b; } - .md\:bottom-12 { - bottom: 3rem; + .md\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .md\:left-12 { - left: 3rem; + .md\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .md\:top-14 { - top: 3.5rem; + .md\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .md\:right-14 { - right: 3.5rem; + .md\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .md\:bottom-14 { - bottom: 3.5rem; + .md\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .md\:left-14 { - left: 3.5rem; + .md\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .md\:top-16 { - top: 4rem; + .md\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .md\:right-16 { - right: 4rem; + .md\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .md\:bottom-16 { - bottom: 4rem; + .md\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .md\:left-16 { - left: 4rem; + .md\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .md\:top-20 { - top: 5rem; + .md\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .md\:right-20 { - right: 5rem; + .md\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .md\:bottom-20 { - bottom: 5rem; + .md\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .md\:left-20 { - left: 5rem; + .md\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .md\:top-24 { - top: 6rem; + .md\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .md\:right-24 { - right: 6rem; + .md\:to-green-400 { + --tw-gradient-to: #34d399; } - .md\:bottom-24 { - bottom: 6rem; + .md\:to-green-500 { + --tw-gradient-to: #10b981; } - .md\:left-24 { - left: 6rem; + .md\:to-green-600 { + --tw-gradient-to: #059669; } - .md\:top-28 { - top: 7rem; + .md\:to-green-700 { + --tw-gradient-to: #047857; } - .md\:right-28 { - right: 7rem; + .md\:to-green-800 { + --tw-gradient-to: #065f46; } - .md\:bottom-28 { - bottom: 7rem; + .md\:to-green-900 { + --tw-gradient-to: #064e3b; } - .md\:left-28 { - left: 7rem; + .md\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .md\:top-32 { - top: 8rem; + .md\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .md\:right-32 { - right: 8rem; + .md\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .md\:bottom-32 { - bottom: 8rem; + .md\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .md\:left-32 { - left: 8rem; + .md\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .md\:top-36 { - top: 9rem; + .md\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .md\:right-36 { - right: 9rem; + .md\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .md\:bottom-36 { - bottom: 9rem; + .md\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .md\:left-36 { - left: 9rem; + .md\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .md\:top-40 { - top: 10rem; + .md\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .md\:right-40 { - right: 10rem; + .md\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .md\:bottom-40 { - bottom: 10rem; + .md\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .md\:left-40 { - left: 10rem; + .md\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .md\:top-44 { - top: 11rem; + .md\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .md\:right-44 { - right: 11rem; + .md\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .md\:bottom-44 { - bottom: 11rem; + .md\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .md\:left-44 { - left: 11rem; + .md\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .md\:top-48 { - top: 12rem; + .md\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .md\:right-48 { - right: 12rem; + .md\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .md\:bottom-48 { - bottom: 12rem; + .md\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .md\:left-48 { - left: 12rem; + .md\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .md\:top-52 { - top: 13rem; + .md\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .md\:right-52 { - right: 13rem; + .md\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .md\:bottom-52 { - bottom: 13rem; + .md\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .md\:left-52 { - left: 13rem; + .md\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .md\:top-56 { - top: 14rem; + .md\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .md\:right-56 { - right: 14rem; + .md\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .md\:bottom-56 { - bottom: 14rem; + .md\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .md\:left-56 { - left: 14rem; + .md\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .md\:top-60 { - top: 15rem; + .md\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .md\:right-60 { - right: 15rem; + .md\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .md\:bottom-60 { - bottom: 15rem; + .md\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .md\:left-60 { - left: 15rem; + .md\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .md\:top-64 { - top: 16rem; + .md\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .md\:right-64 { - right: 16rem; + .md\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .md\:bottom-64 { - bottom: 16rem; + .md\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .md\:left-64 { - left: 16rem; + .md\:to-pink-600 { + --tw-gradient-to: #db2777; } - .md\:top-72 { - top: 18rem; + .md\:to-pink-700 { + --tw-gradient-to: #be185d; } - .md\:right-72 { - right: 18rem; + .md\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .md\:bottom-72 { - bottom: 18rem; + .md\:to-pink-900 { + --tw-gradient-to: #831843; } - .md\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .md\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-top-14 { - top: -3.5rem; + .md\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-right-14 { - right: -3.5rem; + .md\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:-bottom-14 { - bottom: -3.5rem; + .md\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:-left-14 { - left: -3.5rem; + .md\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:-top-16 { - top: -4rem; + .md\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:-right-16 { - right: -4rem; + .md\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:-bottom-16 { - bottom: -4rem; + .md\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:-left-16 { - left: -4rem; + .md\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:-top-20 { - top: -5rem; + .md\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:-right-20 { - right: -5rem; + .md\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:-bottom-20 { - bottom: -5rem; + .md\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:-left-20 { - left: -5rem; + .md\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:-top-24 { - top: -6rem; + .md\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:-right-24 { - right: -6rem; + .md\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:-bottom-24 { - bottom: -6rem; + .md\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:-left-24 { - left: -6rem; + .md\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:-top-28 { - top: -7rem; + .md\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:-right-28 { - right: -7rem; + .md\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:-bottom-28 { - bottom: -7rem; + .md\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:-left-28 { - left: -7rem; + .md\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:-top-32 { - top: -8rem; + .md\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:-right-32 { - right: -8rem; + .md\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:-bottom-32 { - bottom: -8rem; + .md\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:-left-32 { - left: -8rem; + .md\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:-top-36 { - top: -9rem; + .md\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:-right-36 { - right: -9rem; + .md\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:-bottom-36 { - bottom: -9rem; + .md\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:-left-36 { - left: -9rem; + .md\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:-top-40 { - top: -10rem; + .md\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:-right-40 { - right: -10rem; + .md\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:-bottom-40 { - bottom: -10rem; + .md\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:-left-40 { - left: -10rem; + .md\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:-top-44 { - top: -11rem; + .md\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:-right-44 { - right: -11rem; + .md\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:-bottom-44 { - bottom: -11rem; + .md\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:-left-44 { - left: -11rem; + .md\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:-top-48 { - top: -12rem; + .md\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:-right-48 { - right: -12rem; + .md\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:-bottom-48 { - bottom: -12rem; + .md\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:-left-48 { - left: -12rem; + .md\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:-top-52 { - top: -13rem; + .md\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:-right-52 { - right: -13rem; + .md\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:-bottom-52 { - bottom: -13rem; + .md\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:-left-52 { - left: -13rem; + .md\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:-top-56 { - top: -14rem; + .md\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:-right-56 { - right: -14rem; + .md\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:-bottom-56 { - bottom: -14rem; + .md\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:-left-56 { - left: -14rem; + .md\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:-top-60 { - top: -15rem; + .md\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:-right-60 { - right: -15rem; + .md\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:-bottom-60 { - bottom: -15rem; + .md\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:-left-60 { - left: -15rem; + .md\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:-top-64 { - top: -16rem; + .md\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:-right-64 { - right: -16rem; + .md\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:-bottom-64 { - bottom: -16rem; + .md\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:-left-64 { - left: -16rem; + .md\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:-top-72 { - top: -18rem; + .md\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:-right-72 { - right: -18rem; + .md\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:-bottom-72 { - bottom: -18rem; + .md\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:-left-72 { - left: -18rem; + .md\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:-top-80 { - top: -20rem; + .md\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:-right-80 { - right: -20rem; + .md\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:-bottom-80 { - bottom: -20rem; + .md\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:-left-80 { - left: -20rem; + .md\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:-top-96 { - top: -24rem; + .md\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:-right-96 { - right: -24rem; + .md\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:-bottom-96 { - bottom: -24rem; + .md\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:-left-96 { - left: -24rem; + .md\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:-top-px { - top: -1px; + .md\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:-right-px { - right: -1px; + .md\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:-bottom-px { - bottom: -1px; + .md\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:-left-px { - left: -1px; + .md\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:-top-0\.5 { - top: -0.125rem; + .md\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:-right-0\.5 { - right: -0.125rem; + .md\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:-bottom-0\.5 { - bottom: -0.125rem; + .md\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:-left-0\.5 { - left: -0.125rem; + .md\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:-top-1\.5 { - top: -0.375rem; + .md\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:-right-1\.5 { - right: -0.375rem; + .md\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:-bottom-1\.5 { - bottom: -0.375rem; + .md\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:-left-1\.5 { - left: -0.375rem; + .md\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:-top-2\.5 { - top: -0.625rem; + .md\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:-right-2\.5 { - right: -0.625rem; + .md\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:-bottom-2\.5 { - bottom: -0.625rem; + .md\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:-left-2\.5 { - left: -0.625rem; + .md\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .md\:-top-3\.5 { - top: -0.875rem; + .md\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .md\:-right-3\.5 { - right: -0.875rem; + .md\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .md\:-bottom-3\.5 { - bottom: -0.875rem; + .md\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .md\:-left-3\.5 { - left: -0.875rem; + .md\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .md\:top-1\/2 { - top: 50%; + .md\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .md\:right-1\/2 { - right: 50%; + .md\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .md\:bottom-1\/2 { - bottom: 50%; + .md\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .md\:left-1\/2 { - left: 50%; + .md\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .md\:top-1\/3 { - top: 33.333333%; + .md\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .md\:right-1\/3 { - right: 33.333333%; + .md\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .md\:bottom-1\/3 { - bottom: 33.333333%; + .md\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .md\:left-1\/3 { - left: 33.333333%; + .md\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .md\:top-2\/3 { - top: 66.666667%; + .md\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .md\:right-2\/3 { - right: 66.666667%; + .md\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .md\:bottom-2\/3 { - bottom: 66.666667%; + .md\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .md\:left-2\/3 { - left: 66.666667%; + .md\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .md\:top-1\/4 { - top: 25%; + .md\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .md\:right-1\/4 { - right: 25%; + .md\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .md\:bottom-1\/4 { - bottom: 25%; + .md\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .md\:left-1\/4 { - left: 25%; + .md\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .md\:top-2\/4 { - top: 50%; + .md\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .md\:right-2\/4 { - right: 50%; + .md\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .md\:bottom-2\/4 { - bottom: 50%; + .md\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .md\:left-2\/4 { - left: 50%; + .md\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .md\:top-3\/4 { - top: 75%; + .md\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .md\:right-3\/4 { - right: 75%; + .md\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .md\:bottom-3\/4 { - bottom: 75%; + .md\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .md\:left-3\/4 { - left: 75%; + .md\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .md\:top-full { - top: 100%; + .md\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .md\:right-full { - right: 100%; + .md\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .md\:bottom-full { - bottom: 100%; + .md\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .md\:left-full { - left: 100%; + .md\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .md\:-top-1\/2 { - top: -50%; + .md\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .md\:-right-1\/2 { - right: -50%; + .md\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .md\:-bottom-1\/2 { - bottom: -50%; + .md\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .md\:-left-1\/2 { - left: -50%; + .md\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .md\:-top-1\/3 { - top: -33.333333%; + .md\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .md\:-right-1\/3 { - right: -33.333333%; + .md\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .md\:-bottom-1\/3 { - bottom: -33.333333%; + .md\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .md\:-left-1\/3 { - left: -33.333333%; + .md\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .md\:-top-2\/3 { - top: -66.666667%; + .md\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .md\:-right-2\/3 { - right: -66.666667%; + .md\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .md\:-bottom-2\/3 { - bottom: -66.666667%; + .md\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .md\:-left-2\/3 { - left: -66.666667%; + .md\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .md\:-top-1\/4 { - top: -25%; + .md\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .md\:-right-1\/4 { - right: -25%; + .md\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .md\:-bottom-1\/4 { - bottom: -25%; + .md\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .md\:-left-1\/4 { - left: -25%; + .md\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .md\:-top-2\/4 { - top: -50%; + .md\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .md\:-right-2\/4 { - right: -50%; + .md\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .md\:-bottom-2\/4 { - bottom: -50%; + .md\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .md\:-left-2\/4 { - left: -50%; + .md\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .md\:-top-3\/4 { - top: -75%; + .md\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .md\:-right-3\/4 { - right: -75%; + .md\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .md\:-bottom-3\/4 { - bottom: -75%; + .md\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .md\:-left-3\/4 { - left: -75%; + .md\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .md\:-top-full { - top: -100%; + .md\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .md\:-right-full { - right: -100%; + .md\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .md\:-bottom-full { - bottom: -100%; + .md\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .md\:-left-full { - left: -100%; + .md\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .md\:resize-none { - resize: none; + .md\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .md\:resize-y { - resize: vertical; + .md\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .md\:resize-x { - resize: horizontal; + .md\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .md\:resize { - resize: both; + .md\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .md\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .md\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .md\: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); + .md\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .md\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .md\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .md\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .md\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .md\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .md\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .md\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .md\:group-hover\: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); + .md\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .md\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .md\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .md\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .md\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .md\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .md\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .md\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .md\:focus-within\:shadow-md:focus-within { - --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); + .md\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .md\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .md\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .md\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .md\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .md\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .md\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .md\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .md\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .md\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .md\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .md\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .md\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .md\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .md\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .md\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .md\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .md\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .md\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .md\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .md\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .md\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .md\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .md\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .md\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .md\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .md\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .md\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .md\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .md\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .md\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .md\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .md\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .md\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .md\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .md\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .md\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .md\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .md\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .md\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .md\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .md\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .md\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .md\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .md\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .md\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .md\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .md\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .md\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .md\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .md\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .md\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .md\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .md\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .md\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .md\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .md\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .md\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .md\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .md\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .md\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .md\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .md\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .md\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .md\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .md\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .md\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .md\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .md\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .md\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .md\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .md\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .md\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .md\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .md\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .md\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .md\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .md\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .md\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .md\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .md\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .md\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .md\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .md\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .md\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .md\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .md\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .md\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .md\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .md\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .md\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .md\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .md\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .md\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .md\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .md\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .md\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .md\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .md\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .md\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .md\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .md\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .md\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .md\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .md\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .md\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .md\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .md\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .md\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .md\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .md\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .md\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .md\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .md\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .md\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .md\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .md\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .md\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .md\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .md\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .md\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .md\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .md\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .md\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .md\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .md\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .md\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .md\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .md\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .md\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .md\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .md\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .md\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .md\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .md\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .md\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .md\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .md\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .md\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .md\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .md\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .md\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .md\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .md\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .md\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .md\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .md\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .md\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .md\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .md\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .md\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .md\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .md\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .md\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .md\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .md\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .md\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .md\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .md\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .md\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .md\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .md\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .md\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .md\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .md\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .md\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .md\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .md\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .md\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .md\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .md\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .md\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .md\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .md\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .md\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .md\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .md\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .md\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .md\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .md\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .md\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .md\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .md\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .md\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .md\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .md\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .md\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .md\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .md\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .md\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .md\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .md\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .md\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .md\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .md\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .md\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .md\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .md\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .md\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .md\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .md\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .md\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .md\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .md\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .md\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .md\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .md\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .md\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .md\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .md\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .md\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .md\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .md\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .md\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .md\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .md\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .md\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .md\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .md\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .md\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .md\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .md\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .md\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .md\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .md\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .md\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .md\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .md\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .md\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .md\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .md\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .md\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .md\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .md\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .md\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .md\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .md\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .md\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .md\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .md\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .md\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .md\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .md\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .md\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .md\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .md\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .md\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .md\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .md\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .md\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .md\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .md\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .md\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .md\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .md\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .md\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .md\:decoration-slice { + box-decoration-break: slice; } - .md\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .md\:decoration-clone { + box-decoration-break: clone; } - .md\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .md\:bg-auto { + background-size: auto; } - .md\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .md\:bg-cover { + background-size: cover; } - .md\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .md\:bg-contain { + background-size: contain; } - .md\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .md\:bg-fixed { + background-attachment: fixed; } - .md\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .md\:bg-local { + background-attachment: local; } - .md\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .md\:bg-scroll { + background-attachment: scroll; } - .md\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .md\:bg-clip-border { + background-clip: border-box; } - .md\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .md\:bg-clip-padding { + background-clip: padding-box; } - .md\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .md\:bg-clip-content { + background-clip: content-box; } - .md\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .md\:bg-clip-text { + background-clip: text; } - .md\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .md\:bg-bottom { + background-position: bottom; } - .md\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .md\:bg-center { + background-position: center; } - .md\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .md\:bg-left { + background-position: left; } - .md\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .md\:bg-left-bottom { + background-position: left bottom; } - .md\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .md\:bg-left-top { + background-position: left top; } - .md\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .md\:bg-right { + background-position: right; } - .md\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .md\:bg-right-bottom { + background-position: right bottom; } - .md\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .md\:bg-right-top { + background-position: right top; } - .md\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .md\:bg-top { + background-position: top; } - .md\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .md\:bg-repeat { + background-repeat: repeat; } - .md\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .md\:bg-no-repeat { + background-repeat: no-repeat; } - .md\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .md\:bg-repeat-x { + background-repeat: repeat-x; } - .md\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .md\:bg-repeat-y { + background-repeat: repeat-y; } - .md\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .md\:bg-repeat-round { + background-repeat: round; } - .md\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .md\:bg-repeat-space { + background-repeat: space; } - .md\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .md\:bg-origin-border { + background-origin: border-box; } - .md\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .md\:bg-origin-padding { + background-origin: padding-box; } - .md\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .md\:bg-origin-content { + background-origin: content-box; } - .md\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .md\:fill-current { + fill: currentColor; } - .md\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .md\:stroke-current { + stroke: currentColor; } - .md\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .md\:stroke-0 { + stroke-width: 0; } - .md\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .md\:stroke-1 { + stroke-width: 1; } - .md\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .md\:stroke-2 { + stroke-width: 2; } - .md\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .md\:object-contain { + object-fit: contain; } - .md\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .md\:object-cover { + object-fit: cover; } - .md\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .md\:object-fill { + object-fit: fill; } - .md\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .md\:object-none { + object-fit: none; } - .md\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .md\:object-scale-down { + object-fit: scale-down; } - .md\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .md\:object-bottom { + object-position: bottom; } - .md\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .md\:object-center { + object-position: center; } - .md\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .md\:object-left { + object-position: left; } - .md\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .md\:object-left-bottom { + object-position: left bottom; } - .md\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .md\:object-left-top { + object-position: left top; } - .md\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .md\:object-right { + object-position: right; } - .md\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .md\:object-right-bottom { + object-position: right bottom; } - .md\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .md\:object-right-top { + object-position: right top; } - .md\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .md\:object-top { + object-position: top; } - .md\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .md\:p-0 { + padding: 0px; } - .md\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .md\:p-1 { + padding: 0.25rem; } - .md\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .md\:p-2 { + padding: 0.5rem; } - .md\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .md\:p-3 { + padding: 0.75rem; } - .md\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .md\:p-4 { + padding: 1rem; } - .md\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .md\:p-5 { + padding: 1.25rem; } - .md\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .md\:p-6 { + padding: 1.5rem; } - .md\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .md\:p-7 { + padding: 1.75rem; } - .md\:ring-transparent { - --tw-ring-color: transparent; + .md\:p-8 { + padding: 2rem; } - .md\:ring-current { - --tw-ring-color: currentColor; + .md\:p-9 { + padding: 2.25rem; } - .md\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .md\:p-10 { + padding: 2.5rem; } - .md\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .md\:p-11 { + padding: 2.75rem; } - .md\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .md\:p-12 { + padding: 3rem; } - .md\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .md\:p-14 { + padding: 3.5rem; } - .md\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .md\:p-16 { + padding: 4rem; } - .md\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .md\:p-20 { + padding: 5rem; } - .md\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .md\:p-24 { + padding: 6rem; } - .md\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .md\:p-28 { + padding: 7rem; } - .md\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .md\:p-32 { + padding: 8rem; } - .md\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .md\:p-36 { + padding: 9rem; } - .md\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .md\:p-40 { + padding: 10rem; } - .md\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .md\:p-44 { + padding: 11rem; } - .md\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .md\:p-48 { + padding: 12rem; } - .md\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .md\:p-52 { + padding: 13rem; } - .md\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .md\:p-56 { + padding: 14rem; } - .md\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .md\:p-60 { + padding: 15rem; } - .md\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .md\:p-64 { + padding: 16rem; } - .md\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .md\:p-72 { + padding: 18rem; } - .md\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .md\:p-80 { + padding: 20rem; } - .md\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .md\:p-96 { + padding: 24rem; } - .md\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .md\:p-px { + padding: 1px; } - .md\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .md\:p-0\.5 { + padding: 0.125rem; } - .md\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .md\:p-1\.5 { + padding: 0.375rem; } - .md\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .md\:p-2\.5 { + padding: 0.625rem; } - .md\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .md\:p-3\.5 { + padding: 0.875rem; } - .md\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .md\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .md\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .md\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .md\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .md\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .md\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .md\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .md\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .md\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .md\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .md\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .md\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .md\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .md\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .md\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .md\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .md\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .md\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .md\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .md\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .md\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .md\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .md\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .md\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .md\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .md\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .md\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .md\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .md\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .md\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .md\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .md\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .md\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .md\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .md\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .md\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .md\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .md\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .md\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .md\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .md\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .md\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .md\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .md\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .md\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .md\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .md\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .md\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .md\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .md\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .md\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .md\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .md\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .md\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .md\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .md\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .md\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .md\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .md\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .md\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .md\:px-px { + padding-left: 1px; + padding-right: 1px; } - .md\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .md\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .md\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .md\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .md\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .md\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .md\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .md\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .md\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .md\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .md\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .md\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .md\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .md\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .md\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .md\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .md\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .md\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .md\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .md\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .md\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .md\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .md\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .md\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .md\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .md\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .md\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .md\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .md\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .md\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .md\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .md\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .md\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .md\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .md\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .md\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .md\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .md\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .md\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .md\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .md\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .md\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .md\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .md\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .md\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .md\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .md\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .md\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .md\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .md\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .md\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .md\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .md\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .md\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .md\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .md\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .md\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .md\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .md\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .md\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .md\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .md\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .md\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .md\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .md\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .md\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .md\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .md\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .md\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .md\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .md\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .md\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .md\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .md\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .md\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .md\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .md\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .md\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .md\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .md\:pt-0 { + padding-top: 0px; } - .md\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .md\:pt-1 { + padding-top: 0.25rem; } - .md\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .md\:pt-2 { + padding-top: 0.5rem; } - .md\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .md\:pt-3 { + padding-top: 0.75rem; } - .md\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .md\:pt-4 { + padding-top: 1rem; } - .md\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .md\:pt-5 { + padding-top: 1.25rem; } - .md\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .md\:pt-6 { + padding-top: 1.5rem; } - .md\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .md\:pt-7 { + padding-top: 1.75rem; } - .md\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .md\:pt-8 { + padding-top: 2rem; } - .md\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .md\:pt-9 { + padding-top: 2.25rem; } - .md\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .md\:pt-10 { + padding-top: 2.5rem; } - .md\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .md\:pt-11 { + padding-top: 2.75rem; } - .md\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .md\:pt-12 { + padding-top: 3rem; } - .md\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .md\:pt-14 { + padding-top: 3.5rem; } - .md\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .md\:pt-16 { + padding-top: 4rem; } - .md\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .md\:pt-20 { + padding-top: 5rem; } - .md\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .md\:pt-24 { + padding-top: 6rem; } - .md\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .md\:pt-28 { + padding-top: 7rem; } - .md\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .md\:pt-32 { + padding-top: 8rem; } - .md\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .md\:pt-36 { + padding-top: 9rem; } - .md\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .md\:pt-40 { + padding-top: 10rem; } - .md\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .md\:pt-44 { + padding-top: 11rem; } - .md\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .md\:pt-48 { + padding-top: 12rem; } - .md\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .md\:pt-52 { + padding-top: 13rem; } - .md\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .md\:pt-56 { + padding-top: 14rem; } - .md\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .md\:pt-60 { + padding-top: 15rem; } - .md\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .md\:pt-64 { + padding-top: 16rem; } - .md\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .md\:pt-72 { + padding-top: 18rem; } - .md\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .md\:pt-80 { + padding-top: 20rem; } - .md\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .md\:pt-96 { + padding-top: 24rem; } - .md\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .md\:pt-px { + padding-top: 1px; } - .md\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .md\:pt-0\.5 { + padding-top: 0.125rem; } - .md\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .md\:pt-1\.5 { + padding-top: 0.375rem; } - .md\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .md\:pt-2\.5 { + padding-top: 0.625rem; } - .md\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .md\:pt-3\.5 { + padding-top: 0.875rem; } - .md\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .md\:pr-0 { + padding-right: 0px; } - .md\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .md\:pr-1 { + padding-right: 0.25rem; } - .md\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .md\:pr-2 { + padding-right: 0.5rem; } - .md\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .md\:pr-3 { + padding-right: 0.75rem; } - .md\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .md\:pr-4 { + padding-right: 1rem; } - .md\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .md\:pr-5 { + padding-right: 1.25rem; } - .md\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .md\:pr-6 { + padding-right: 1.5rem; } - .md\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .md\:pr-7 { + padding-right: 1.75rem; } - .md\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .md\:pr-8 { + padding-right: 2rem; } - .md\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .md\:pr-9 { + padding-right: 2.25rem; } - .md\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .md\:pr-10 { + padding-right: 2.5rem; } - .md\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .md\:pr-11 { + padding-right: 2.75rem; } - .md\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .md\:pr-12 { + padding-right: 3rem; } - .md\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .md\:pr-14 { + padding-right: 3.5rem; } - .md\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .md\:pr-16 { + padding-right: 4rem; } - .md\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .md\:pr-20 { + padding-right: 5rem; } - .md\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .md\:pr-24 { + padding-right: 6rem; } - .md\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .md\:pr-28 { + padding-right: 7rem; } - .md\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .md\:pr-32 { + padding-right: 8rem; } - .md\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .md\:pr-36 { + padding-right: 9rem; } - .md\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .md\:pr-40 { + padding-right: 10rem; } - .md\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .md\:pr-44 { + padding-right: 11rem; } - .md\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .md\:pr-48 { + padding-right: 12rem; } - .md\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .md\:pr-52 { + padding-right: 13rem; } - .md\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .md\:pr-56 { + padding-right: 14rem; } - .md\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .md\:pr-60 { + padding-right: 15rem; } - .md\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .md\:pr-64 { + padding-right: 16rem; } - .md\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .md\:pr-72 { + padding-right: 18rem; } - .md\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .md\:pr-80 { + padding-right: 20rem; } - .md\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .md\:pr-96 { + padding-right: 24rem; } - .md\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .md\:pr-px { + padding-right: 1px; } - .md\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .md\:pr-0\.5 { + padding-right: 0.125rem; } - .md\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .md\:pr-1\.5 { + padding-right: 0.375rem; } - .md\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .md\:pr-2\.5 { + padding-right: 0.625rem; } - .md\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .md\:pr-3\.5 { + padding-right: 0.875rem; } - .md\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .md\:pb-0 { + padding-bottom: 0px; } - .md\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .md\:pb-1 { + padding-bottom: 0.25rem; } - .md\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .md\:pb-2 { + padding-bottom: 0.5rem; } - .md\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .md\:pb-3 { + padding-bottom: 0.75rem; } - .md\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .md\:pb-4 { + padding-bottom: 1rem; } - .md\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .md\:pb-5 { + padding-bottom: 1.25rem; } - .md\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .md\:pb-6 { + padding-bottom: 1.5rem; } - .md\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .md\:pb-7 { + padding-bottom: 1.75rem; } - .md\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .md\:pb-8 { + padding-bottom: 2rem; } - .md\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .md\:pb-9 { + padding-bottom: 2.25rem; } - .md\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .md\:pb-10 { + padding-bottom: 2.5rem; } - .md\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .md\:pb-11 { + padding-bottom: 2.75rem; } - .md\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .md\:pb-12 { + padding-bottom: 3rem; } - .md\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .md\:pb-14 { + padding-bottom: 3.5rem; } - .md\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .md\:pb-16 { + padding-bottom: 4rem; } - .md\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .md\:pb-20 { + padding-bottom: 5rem; } - .md\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .md\:pb-24 { + padding-bottom: 6rem; } - .md\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .md\:pb-28 { + padding-bottom: 7rem; } - .md\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .md\:pb-32 { + padding-bottom: 8rem; } - .md\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .md\:pb-36 { + padding-bottom: 9rem; } - .md\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .md\:pb-40 { + padding-bottom: 10rem; } - .md\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .md\:pb-44 { + padding-bottom: 11rem; } - .md\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .md\:pb-48 { + padding-bottom: 12rem; } - .md\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .md\:pb-52 { + padding-bottom: 13rem; } - .md\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .md\:pb-56 { + padding-bottom: 14rem; } - .md\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .md\:pb-60 { + padding-bottom: 15rem; } - .md\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .md\:pb-64 { + padding-bottom: 16rem; } - .md\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .md\:pb-72 { + padding-bottom: 18rem; } - .md\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .md\:pb-80 { + padding-bottom: 20rem; } - .md\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .md\:pb-96 { + padding-bottom: 24rem; } - .md\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .md\:pb-px { + padding-bottom: 1px; } - .md\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .md\:pb-0\.5 { + padding-bottom: 0.125rem; } - .md\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .md\:pb-1\.5 { + padding-bottom: 0.375rem; } - .md\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .md\:pb-2\.5 { + padding-bottom: 0.625rem; } - .md\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .md\:pb-3\.5 { + padding-bottom: 0.875rem; } - .md\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .md\:pl-0 { + padding-left: 0px; } - .md\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .md\:pl-1 { + padding-left: 0.25rem; } - .md\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .md\:pl-2 { + padding-left: 0.5rem; } - .md\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .md\:pl-3 { + padding-left: 0.75rem; } - .md\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .md\:pl-4 { + padding-left: 1rem; } - .md\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .md\:pl-5 { + padding-left: 1.25rem; } - .md\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .md\:pl-6 { + padding-left: 1.5rem; } - .md\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .md\:pl-7 { + padding-left: 1.75rem; } - .md\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .md\:pl-8 { + padding-left: 2rem; } - .md\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .md\:pl-9 { + padding-left: 2.25rem; } - .md\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .md\:pl-10 { + padding-left: 2.5rem; } - .md\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .md\:pl-11 { + padding-left: 2.75rem; } - .md\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .md\:pl-12 { + padding-left: 3rem; } - .md\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .md\:pl-14 { + padding-left: 3.5rem; } - .md\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .md\:pl-16 { + padding-left: 4rem; } - .md\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .md\:pl-20 { + padding-left: 5rem; } - .md\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .md\:pl-24 { + padding-left: 6rem; } - .md\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .md\:pl-28 { + padding-left: 7rem; } - .md\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .md\:pl-32 { + padding-left: 8rem; } - .md\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .md\:pl-36 { + padding-left: 9rem; } - .md\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .md\:pl-40 { + padding-left: 10rem; } - .md\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .md\:pl-44 { + padding-left: 11rem; } - .md\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .md\:pl-48 { + padding-left: 12rem; } - .md\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .md\:pl-52 { + padding-left: 13rem; } - .md\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .md\:pl-56 { + padding-left: 14rem; } - .md\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .md\:pl-60 { + padding-left: 15rem; } - .md\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .md\:pl-64 { + padding-left: 16rem; } - .md\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .md\:pl-72 { + padding-left: 18rem; } - .md\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .md\:pl-80 { + padding-left: 20rem; } - .md\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .md\:pl-96 { + padding-left: 24rem; } - .md\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .md\:pl-px { + padding-left: 1px; } - .md\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .md\:pl-0\.5 { + padding-left: 0.125rem; } - .md\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .md\:pl-1\.5 { + padding-left: 0.375rem; } - .md\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .md\:pl-2\.5 { + padding-left: 0.625rem; } - .md\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .md\:pl-3\.5 { + padding-left: 0.875rem; } - .md\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .md\:text-left { + text-align: left; } - .md\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .md\:text-center { + text-align: center; } - .md\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .md\:text-right { + text-align: right; } - .md\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .md\:text-justify { + text-align: justify; } - .md\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .md\:align-baseline { + vertical-align: baseline; } - .md\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .md\:align-top { + vertical-align: top; } - .md\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .md\:align-middle { + vertical-align: middle; } - .md\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .md\:align-bottom { + vertical-align: bottom; } - .md\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .md\:align-text-top { + vertical-align: text-top; } - .md\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .md\:align-text-bottom { + vertical-align: text-bottom; } - .md\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .md\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .md\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .md\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .md\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .md\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .md\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .md\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .md\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .md\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .md\:ring-opacity-0 { - --tw-ring-opacity: 0; + .md\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .md\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .md\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .md\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .md\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .md\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .md\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .md\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .md\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .md\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .md\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .md\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .md\:text-5xl { + font-size: 3rem; + line-height: 1; } - .md\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .md\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .md\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .md\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .md\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .md\:text-8xl { + font-size: 6rem; + line-height: 1; } - .md\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .md\:text-9xl { + font-size: 8rem; + line-height: 1; } - .md\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .md\:font-thin { + font-weight: 100; } - .md\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .md\:font-extralight { + font-weight: 200; } - .md\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .md\:font-light { + font-weight: 300; } - .md\:ring-opacity-100 { - --tw-ring-opacity: 1; + .md\:font-normal { + font-weight: 400; } - .md\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .md\:font-medium { + font-weight: 500; } - .md\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .md\:font-semibold { + font-weight: 600; } - .md\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .md\:font-bold { + font-weight: 700; } - .md\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .md\:font-extrabold { + font-weight: 800; } - .md\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .md\:font-black { + font-weight: 900; } - .md\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .md\:uppercase { + text-transform: uppercase; } - .md\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .md\:lowercase { + text-transform: lowercase; } - .md\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .md\:capitalize { + text-transform: capitalize; } - .md\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .md\:normal-case { + text-transform: none; } - .md\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .md\:italic { + font-style: italic; } - .md\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .md\:not-italic { + font-style: normal; } - .md\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .md\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .md\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .md\:normal-nums { + font-variant-numeric: normal; } - .md\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .md\:ordinal { + --tw-ordinal: ordinal; } - .md\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .md\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .md\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .md\:lining-nums { + --tw-numeric-figure: lining-nums; } - .md\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .md\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .md\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .md\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .md\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .md\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .md\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .md\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .md\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .md\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .md\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .md\:leading-3 { + line-height: .75rem; } - .md\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .md\:leading-4 { + line-height: 1rem; } - .md\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .md\:leading-5 { + line-height: 1.25rem; } - .md\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .md\:leading-6 { + line-height: 1.5rem; } - .md\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .md\:leading-7 { + line-height: 1.75rem; } - .md\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .md\:leading-8 { + line-height: 2rem; } - .md\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .md\:leading-9 { + line-height: 2.25rem; } - .md\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .md\:leading-10 { + line-height: 2.5rem; } - .md\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .md\:leading-none { + line-height: 1; } - .md\:fill-current { - fill: currentColor; + .md\:leading-tight { + line-height: 1.25; } - .md\:stroke-current { - stroke: currentColor; + .md\:leading-snug { + line-height: 1.375; } - .md\:stroke-0 { - stroke-width: 0; + .md\:leading-normal { + line-height: 1.5; } - .md\:stroke-1 { - stroke-width: 1; + .md\:leading-relaxed { + line-height: 1.625; } - .md\:stroke-2 { - stroke-width: 2; + .md\:leading-loose { + line-height: 2; } - .md\:table-auto { - table-layout: auto; + .md\:tracking-tighter { + letter-spacing: -0.05em; } - .md\:table-fixed { - table-layout: fixed; + .md\:tracking-tight { + letter-spacing: -0.025em; } - .md\:text-left { - text-align: left; + .md\:tracking-normal { + letter-spacing: 0em; } - .md\:text-center { - text-align: center; + .md\:tracking-wide { + letter-spacing: 0.025em; } - .md\:text-right { - text-align: right; + .md\:tracking-wider { + letter-spacing: 0.05em; } - .md\:text-justify { - text-align: justify; + .md\:tracking-widest { + letter-spacing: 0.1em; } .md\:text-transparent { @@ -82992,44 +83181,6 @@ video { --tw-text-opacity: 1; } - .md\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .md\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .md\:overflow-clip { - text-overflow: clip; - } - - .md\:italic { - font-style: italic; - } - - .md\:not-italic { - font-style: normal; - } - - .md\:uppercase { - text-transform: uppercase; - } - - .md\:lowercase { - text-transform: lowercase; - } - - .md\:capitalize { - text-transform: capitalize; - } - - .md\:normal-case { - text-transform: none; - } - .md\:underline { text-decoration: underline; } @@ -83100,4258 +83251,4669 @@ video { -moz-osx-font-smoothing: auto; } - .md\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); - } - - .md\:normal-nums { - font-variant-numeric: normal; - } - - .md\:ordinal { - --tw-ordinal: ordinal; - } - - .md\:slashed-zero { - --tw-slashed-zero: slashed-zero; - } - - .md\:lining-nums { - --tw-numeric-figure: lining-nums; - } - - .md\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; - } - - .md\:proportional-nums { - --tw-numeric-spacing: proportional-nums; - } - - .md\:tabular-nums { - --tw-numeric-spacing: tabular-nums; - } - - .md\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; - } - - .md\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; - } - - .md\:tracking-tighter { - letter-spacing: -0.05em; - } - - .md\:tracking-tight { - letter-spacing: -0.025em; - } - - .md\:tracking-normal { - letter-spacing: 0em; - } - - .md\:tracking-wide { - letter-spacing: 0.025em; + .md\:placeholder-transparent::placeholder { + color: transparent; } - .md\:tracking-wider { - letter-spacing: 0.05em; + .md\:placeholder-current::placeholder { + color: currentColor; } - .md\:tracking-widest { - letter-spacing: 0.1em; + .md\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .md\:select-none { - user-select: none; + .md\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .md\:select-text { - user-select: text; + .md\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .md\:select-all { - user-select: all; + .md\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .md\:select-auto { - user-select: auto; + .md\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .md\:align-baseline { - vertical-align: baseline; + .md\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .md\:align-top { - vertical-align: top; + .md\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .md\:align-middle { - vertical-align: middle; + .md\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .md\:align-bottom { - vertical-align: bottom; + .md\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .md\:align-text-top { - vertical-align: text-top; + .md\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .md\:align-text-bottom { - vertical-align: text-bottom; + .md\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .md\:visible { - visibility: visible; + .md\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .md\:invisible { - visibility: hidden; + .md\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .md\:whitespace-normal { - white-space: normal; + .md\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .md\:whitespace-nowrap { - white-space: nowrap; + .md\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .md\:whitespace-pre { - white-space: pre; + .md\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .md\:whitespace-pre-line { - white-space: pre-line; + .md\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .md\:whitespace-pre-wrap { - white-space: pre-wrap; + .md\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .md\:break-normal { - overflow-wrap: normal; - word-break: normal; + .md\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .md\:break-words { - overflow-wrap: break-word; + .md\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .md\:break-all { - word-break: break-all; + .md\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .md\:w-0 { - width: 0px; + .md\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .md\:w-1 { - width: 0.25rem; + .md\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .md\:w-2 { - width: 0.5rem; + .md\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .md\:w-3 { - width: 0.75rem; + .md\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .md\:w-4 { - width: 1rem; + .md\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .md\:w-5 { - width: 1.25rem; + .md\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .md\:w-6 { - width: 1.5rem; + .md\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .md\:w-7 { - width: 1.75rem; + .md\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .md\:w-8 { - width: 2rem; + .md\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .md\:w-9 { - width: 2.25rem; + .md\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .md\:w-10 { - width: 2.5rem; + .md\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .md\:w-11 { - width: 2.75rem; + .md\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .md\:w-12 { - width: 3rem; + .md\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .md\:w-14 { - width: 3.5rem; + .md\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .md\:w-16 { - width: 4rem; + .md\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .md\:w-20 { - width: 5rem; + .md\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .md\:w-24 { - width: 6rem; + .md\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .md\:w-28 { - width: 7rem; + .md\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .md\:w-32 { - width: 8rem; + .md\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .md\:w-36 { - width: 9rem; + .md\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .md\:w-40 { - width: 10rem; + .md\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .md\:w-44 { - width: 11rem; + .md\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .md\:w-48 { - width: 12rem; + .md\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .md\:w-52 { - width: 13rem; + .md\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .md\:w-56 { - width: 14rem; + .md\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .md\:w-60 { - width: 15rem; + .md\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .md\:w-64 { - width: 16rem; + .md\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .md\:w-72 { - width: 18rem; + .md\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .md\:w-80 { - width: 20rem; + .md\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .md\:w-96 { - width: 24rem; + .md\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .md\:w-auto { - width: auto; + .md\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .md\:w-px { - width: 1px; + .md\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .md\:w-0\.5 { - width: 0.125rem; + .md\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .md\:w-1\.5 { - width: 0.375rem; + .md\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .md\:w-2\.5 { - width: 0.625rem; + .md\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .md\:w-3\.5 { - width: 0.875rem; + .md\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .md\:w-1\/2 { - width: 50%; + .md\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .md\:w-1\/3 { - width: 33.333333%; + .md\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .md\:w-2\/3 { - width: 66.666667%; + .md\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .md\:w-1\/4 { - width: 25%; + .md\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .md\:w-2\/4 { - width: 50%; + .md\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .md\:w-3\/4 { - width: 75%; + .md\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .md\:w-1\/5 { - width: 20%; + .md\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .md\:w-2\/5 { - width: 40%; + .md\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .md\:w-3\/5 { - width: 60%; + .md\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .md\:w-4\/5 { - width: 80%; + .md\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .md\:w-1\/6 { - width: 16.666667%; + .md\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .md\:w-2\/6 { - width: 33.333333%; + .md\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .md\:w-3\/6 { - width: 50%; + .md\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .md\:w-4\/6 { - width: 66.666667%; + .md\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .md\:w-5\/6 { - width: 83.333333%; + .md\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .md\:w-1\/12 { - width: 8.333333%; + .md\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .md\:w-2\/12 { - width: 16.666667%; + .md\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .md\:w-3\/12 { - width: 25%; + .md\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .md\:w-4\/12 { - width: 33.333333%; + .md\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .md\:w-5\/12 { - width: 41.666667%; + .md\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .md\:w-6\/12 { - width: 50%; + .md\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .md\:w-7\/12 { - width: 58.333333%; + .md\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .md\:w-8\/12 { - width: 66.666667%; + .md\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .md\:w-9\/12 { - width: 75%; + .md\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .md\:w-10\/12 { - width: 83.333333%; + .md\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .md\:w-11\/12 { - width: 91.666667%; + .md\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .md\:w-full { - width: 100%; + .md\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .md\:w-screen { - width: 100vw; + .md\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .md\:w-min { - width: min-content; + .md\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .md\:w-max { - width: max-content; + .md\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .md\:z-0 { - z-index: 0; + .md\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .md\:z-10 { - z-index: 10; + .md\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .md\:z-20 { - z-index: 20; + .md\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .md\:z-30 { - z-index: 30; + .md\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .md\:z-40 { - z-index: 40; + .md\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .md\:z-50 { - z-index: 50; + .md\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .md\:z-auto { - z-index: auto; + .md\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-0:focus-within { - z-index: 0; + .md\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-10:focus-within { - z-index: 10; + .md\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-20:focus-within { - z-index: 20; + .md\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-30:focus-within { - z-index: 30; + .md\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-40:focus-within { - z-index: 40; + .md\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-50:focus-within { - z-index: 50; + .md\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .md\:focus-within\:z-auto:focus-within { - z-index: auto; + .md\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .md\:focus\:z-0:focus { - z-index: 0; + .md\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .md\:focus\:z-10:focus { - z-index: 10; + .md\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .md\:focus\:z-20:focus { - z-index: 20; + .md\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .md\:focus\:z-30:focus { - z-index: 30; + .md\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .md\:focus\:z-40:focus { - z-index: 40; + .md\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .md\:focus\:z-50:focus { - z-index: 50; + .md\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .md\:focus\:z-auto:focus { - z-index: auto; + .md\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .md\:isolate { - isolation: isolate; + .md\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .md\:isolation-auto { - isolation: auto; + .md\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .md\:gap-0 { - gap: 0px; + .md\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .md\:gap-1 { - gap: 0.25rem; + .md\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .md\:gap-2 { - gap: 0.5rem; + .md\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .md\:gap-3 { - gap: 0.75rem; + .md\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .md\:gap-4 { - gap: 1rem; + .md\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .md\:gap-5 { - gap: 1.25rem; + .md\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .md\:gap-6 { - gap: 1.5rem; + .md\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .md\:gap-7 { - gap: 1.75rem; + .md\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .md\:gap-8 { - gap: 2rem; + .md\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .md\:gap-9 { - gap: 2.25rem; + .md\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .md\:gap-10 { - gap: 2.5rem; + .md\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .md\:gap-11 { - gap: 2.75rem; + .md\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .md\:gap-12 { - gap: 3rem; + .md\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .md\:gap-14 { - gap: 3.5rem; + .md\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .md\:gap-16 { - gap: 4rem; + .md\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .md\:gap-20 { - gap: 5rem; + .md\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .md\:gap-24 { - gap: 6rem; + .md\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .md\:gap-28 { - gap: 7rem; + .md\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .md\:gap-32 { - gap: 8rem; + .md\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .md\:gap-36 { - gap: 9rem; + .md\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .md\:gap-40 { - gap: 10rem; + .md\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .md\:gap-44 { - gap: 11rem; + .md\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .md\:gap-48 { - gap: 12rem; + .md\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .md\:gap-52 { - gap: 13rem; + .md\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .md\:gap-56 { - gap: 14rem; + .md\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .md\:gap-60 { - gap: 15rem; + .md\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .md\:gap-64 { - gap: 16rem; + .md\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .md\:gap-72 { - gap: 18rem; + .md\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .md\:gap-80 { - gap: 20rem; + .md\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .md\:gap-96 { - gap: 24rem; + .md\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .md\:gap-px { - gap: 1px; + .md\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .md\:gap-0\.5 { - gap: 0.125rem; + .md\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .md\:gap-1\.5 { - gap: 0.375rem; + .md\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .md\:gap-2\.5 { - gap: 0.625rem; + .md\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .md\:gap-3\.5 { - gap: 0.875rem; + .md\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .md\:gap-x-0 { - column-gap: 0px; + .md\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .md\:gap-x-1 { - column-gap: 0.25rem; + .md\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .md\:gap-x-2 { - column-gap: 0.5rem; + .md\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .md\:gap-x-3 { - column-gap: 0.75rem; + .md\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .md\:gap-x-4 { - column-gap: 1rem; + .md\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .md\:gap-x-5 { - column-gap: 1.25rem; + .md\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .md\:gap-x-6 { - column-gap: 1.5rem; + .md\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .md\:gap-x-7 { - column-gap: 1.75rem; + .md\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .md\:gap-x-8 { - column-gap: 2rem; + .md\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .md\:gap-x-9 { - column-gap: 2.25rem; + .md\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .md\:gap-x-10 { - column-gap: 2.5rem; + .md\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .md\:gap-x-11 { - column-gap: 2.75rem; + .md\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .md\:gap-x-12 { - column-gap: 3rem; + .md\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .md\:gap-x-14 { - column-gap: 3.5rem; + .md\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .md\:gap-x-16 { - column-gap: 4rem; + .md\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .md\:gap-x-20 { - column-gap: 5rem; + .md\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .md\:gap-x-24 { - column-gap: 6rem; + .md\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .md\:gap-x-28 { - column-gap: 7rem; + .md\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .md\:gap-x-32 { - column-gap: 8rem; + .md\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .md\:gap-x-36 { - column-gap: 9rem; + .md\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .md\:gap-x-40 { - column-gap: 10rem; + .md\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .md\:gap-x-44 { - column-gap: 11rem; + .md\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } - .md\:gap-x-48 { - column-gap: 12rem; + .md\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } - .md\:gap-x-52 { - column-gap: 13rem; + .md\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } - .md\:gap-x-56 { - column-gap: 14rem; + .md\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } - .md\:gap-x-60 { - column-gap: 15rem; + .md\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } - .md\:gap-x-64 { - column-gap: 16rem; + .md\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } - .md\:gap-x-72 { - column-gap: 18rem; + .md\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } - .md\:gap-x-80 { - column-gap: 20rem; + .md\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } - .md\:gap-x-96 { - column-gap: 24rem; + .md\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } - .md\:gap-x-px { - column-gap: 1px; + .md\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } - .md\:gap-x-0\.5 { - column-gap: 0.125rem; + .md\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } - .md\:gap-x-1\.5 { - column-gap: 0.375rem; + .md\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } - .md\:gap-x-2\.5 { - column-gap: 0.625rem; + .md\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } - .md\:gap-x-3\.5 { - column-gap: 0.875rem; + .md\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } - .md\:gap-y-0 { - row-gap: 0px; + .md\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } - .md\:gap-y-1 { - row-gap: 0.25rem; + .md\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } - .md\:gap-y-2 { - row-gap: 0.5rem; + .md\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } - .md\:gap-y-3 { - row-gap: 0.75rem; + .md\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } - .md\:gap-y-4 { - row-gap: 1rem; + .md\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } - .md\:gap-y-5 { - row-gap: 1.25rem; + .md\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } - .md\:gap-y-6 { - row-gap: 1.5rem; + .md\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } - .md\:gap-y-7 { - row-gap: 1.75rem; + .md\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } - .md\:gap-y-8 { - row-gap: 2rem; + .md\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } - .md\:gap-y-9 { - row-gap: 2.25rem; + .md\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } - .md\:gap-y-10 { - row-gap: 2.5rem; + .md\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } - .md\:gap-y-11 { - row-gap: 2.75rem; + .md\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } - .md\:gap-y-12 { - row-gap: 3rem; + .md\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } - .md\:gap-y-14 { - row-gap: 3.5rem; + .md\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } - .md\:gap-y-16 { - row-gap: 4rem; + .md\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } - .md\:gap-y-20 { - row-gap: 5rem; + .md\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } - .md\:gap-y-24 { - row-gap: 6rem; + .md\:opacity-0 { + opacity: 0; } - .md\:gap-y-28 { - row-gap: 7rem; + .md\:opacity-5 { + opacity: 0.05; } - .md\:gap-y-32 { - row-gap: 8rem; + .md\:opacity-10 { + opacity: 0.1; } - .md\:gap-y-36 { - row-gap: 9rem; + .md\:opacity-20 { + opacity: 0.2; } - .md\:gap-y-40 { - row-gap: 10rem; + .md\:opacity-25 { + opacity: 0.25; } - .md\:gap-y-44 { - row-gap: 11rem; + .md\:opacity-30 { + opacity: 0.3; } - .md\:gap-y-48 { - row-gap: 12rem; + .md\:opacity-40 { + opacity: 0.4; } - .md\:gap-y-52 { - row-gap: 13rem; + .md\:opacity-50 { + opacity: 0.5; } - .md\:gap-y-56 { - row-gap: 14rem; + .md\:opacity-60 { + opacity: 0.6; } - .md\:gap-y-60 { - row-gap: 15rem; + .md\:opacity-70 { + opacity: 0.7; } - .md\:gap-y-64 { - row-gap: 16rem; + .md\:opacity-75 { + opacity: 0.75; } - .md\:gap-y-72 { - row-gap: 18rem; + .md\:opacity-80 { + opacity: 0.8; } - .md\:gap-y-80 { - row-gap: 20rem; + .md\:opacity-90 { + opacity: 0.9; } - .md\:gap-y-96 { - row-gap: 24rem; + .md\:opacity-95 { + opacity: 0.95; } - .md\:gap-y-px { - row-gap: 1px; + .md\:opacity-100 { + opacity: 1; } - .md\:gap-y-0\.5 { - row-gap: 0.125rem; + .group:hover .md\:group-hover\:opacity-0 { + opacity: 0; } - .md\:gap-y-1\.5 { - row-gap: 0.375rem; + .group:hover .md\:group-hover\:opacity-5 { + opacity: 0.05; } - .md\:gap-y-2\.5 { - row-gap: 0.625rem; + .group:hover .md\:group-hover\:opacity-10 { + opacity: 0.1; } - .md\:gap-y-3\.5 { - row-gap: 0.875rem; + .group:hover .md\:group-hover\:opacity-20 { + opacity: 0.2; } - .md\:grid-flow-row { - grid-auto-flow: row; + .group:hover .md\:group-hover\:opacity-25 { + opacity: 0.25; } - .md\:grid-flow-col { - grid-auto-flow: column; + .group:hover .md\:group-hover\:opacity-30 { + opacity: 0.3; } - .md\:grid-flow-row-dense { - grid-auto-flow: row dense; + .group:hover .md\:group-hover\:opacity-40 { + opacity: 0.4; } - .md\:grid-flow-col-dense { - grid-auto-flow: column dense; + .group:hover .md\:group-hover\:opacity-50 { + opacity: 0.5; } - .md\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-60 { + opacity: 0.6; } - .md\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-70 { + opacity: 0.7; } - .md\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-75 { + opacity: 0.75; } - .md\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-80 { + opacity: 0.8; } - .md\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-90 { + opacity: 0.9; } - .md\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-95 { + opacity: 0.95; } - .md\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .group:hover .md\:group-hover\:opacity-100 { + opacity: 1; } - .md\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .md\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .md\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .md\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .md\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .md\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .md\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .md\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .md\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .md\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .md\:grid-cols-none { - grid-template-columns: none; + .md\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .md\:auto-cols-auto { - grid-auto-columns: auto; + .md\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .md\:auto-cols-min { - grid-auto-columns: min-content; + .md\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .md\:auto-cols-max { - grid-auto-columns: max-content; + .md\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .md\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .md\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .md\:col-auto { - grid-column: auto; + .md\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .md\:col-span-1 { - grid-column: span 1 / span 1; + .md\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .md\:col-span-2 { - grid-column: span 2 / span 2; + .md\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .md\:col-span-3 { - grid-column: span 3 / span 3; + .md\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .md\:col-span-4 { - grid-column: span 4 / span 4; + .md\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .md\:col-span-5 { - grid-column: span 5 / span 5; + .md\:hover\:opacity-0:hover { + opacity: 0; } - .md\:col-span-6 { - grid-column: span 6 / span 6; + .md\:hover\:opacity-5:hover { + opacity: 0.05; } - .md\:col-span-7 { - grid-column: span 7 / span 7; + .md\:hover\:opacity-10:hover { + opacity: 0.1; } - .md\:col-span-8 { - grid-column: span 8 / span 8; + .md\:hover\:opacity-20:hover { + opacity: 0.2; } - .md\:col-span-9 { - grid-column: span 9 / span 9; + .md\:hover\:opacity-25:hover { + opacity: 0.25; } - .md\:col-span-10 { - grid-column: span 10 / span 10; + .md\:hover\:opacity-30:hover { + opacity: 0.3; } - .md\:col-span-11 { - grid-column: span 11 / span 11; + .md\:hover\:opacity-40:hover { + opacity: 0.4; } - .md\:col-span-12 { - grid-column: span 12 / span 12; + .md\:hover\:opacity-50:hover { + opacity: 0.5; } - .md\:col-span-full { - grid-column: 1 / -1; + .md\:hover\:opacity-60:hover { + opacity: 0.6; } - .md\:col-start-1 { - grid-column-start: 1; + .md\:hover\:opacity-70:hover { + opacity: 0.7; } - .md\:col-start-2 { - grid-column-start: 2; + .md\:hover\:opacity-75:hover { + opacity: 0.75; } - .md\:col-start-3 { - grid-column-start: 3; + .md\:hover\:opacity-80:hover { + opacity: 0.8; } - .md\:col-start-4 { - grid-column-start: 4; + .md\:hover\:opacity-90:hover { + opacity: 0.9; } - .md\:col-start-5 { - grid-column-start: 5; + .md\:hover\:opacity-95:hover { + opacity: 0.95; } - .md\:col-start-6 { - grid-column-start: 6; + .md\:hover\:opacity-100:hover { + opacity: 1; } - .md\:col-start-7 { - grid-column-start: 7; + .md\:focus\:opacity-0:focus { + opacity: 0; } - .md\:col-start-8 { - grid-column-start: 8; + .md\:focus\:opacity-5:focus { + opacity: 0.05; } - .md\:col-start-9 { - grid-column-start: 9; + .md\:focus\:opacity-10:focus { + opacity: 0.1; } - .md\:col-start-10 { - grid-column-start: 10; + .md\:focus\:opacity-20:focus { + opacity: 0.2; } - .md\:col-start-11 { - grid-column-start: 11; + .md\:focus\:opacity-25:focus { + opacity: 0.25; } - .md\:col-start-12 { - grid-column-start: 12; + .md\:focus\:opacity-30:focus { + opacity: 0.3; } - .md\:col-start-13 { - grid-column-start: 13; + .md\:focus\:opacity-40:focus { + opacity: 0.4; } - .md\:col-start-auto { - grid-column-start: auto; + .md\:focus\:opacity-50:focus { + opacity: 0.5; } - .md\:col-end-1 { - grid-column-end: 1; + .md\:focus\:opacity-60:focus { + opacity: 0.6; } - .md\:col-end-2 { - grid-column-end: 2; + .md\:focus\:opacity-70:focus { + opacity: 0.7; } - .md\:col-end-3 { - grid-column-end: 3; + .md\:focus\:opacity-75:focus { + opacity: 0.75; } - .md\:col-end-4 { - grid-column-end: 4; + .md\:focus\:opacity-80:focus { + opacity: 0.8; } - .md\:col-end-5 { - grid-column-end: 5; + .md\:focus\:opacity-90:focus { + opacity: 0.9; } - .md\:col-end-6 { - grid-column-end: 6; + .md\:focus\:opacity-95:focus { + opacity: 0.95; } - .md\:col-end-7 { - grid-column-end: 7; + .md\:focus\:opacity-100:focus { + opacity: 1; } - .md\:col-end-8 { - grid-column-end: 8; + .md\:bg-blend-normal { + background-blend-mode: normal; } - .md\:col-end-9 { - grid-column-end: 9; + .md\:bg-blend-multiply { + background-blend-mode: multiply; } - .md\:col-end-10 { - grid-column-end: 10; + .md\:bg-blend-screen { + background-blend-mode: screen; } - .md\:col-end-11 { - grid-column-end: 11; + .md\:bg-blend-overlay { + background-blend-mode: overlay; } - .md\:col-end-12 { - grid-column-end: 12; + .md\:bg-blend-darken { + background-blend-mode: darken; } - .md\:col-end-13 { - grid-column-end: 13; + .md\:bg-blend-lighten { + background-blend-mode: lighten; } - .md\:col-end-auto { - grid-column-end: auto; + .md\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .md\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .md\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .md\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .md\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .md\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .md\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .md\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .md\:bg-blend-difference { + background-blend-mode: difference; } - .md\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .md\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .md\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .md\:bg-blend-hue { + background-blend-mode: hue; } - .md\:grid-rows-none { - grid-template-rows: none; + .md\:bg-blend-saturation { + background-blend-mode: saturation; } - .md\:auto-rows-auto { - grid-auto-rows: auto; + .md\:bg-blend-color { + background-blend-mode: color; } - .md\:auto-rows-min { - grid-auto-rows: min-content; + .md\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .md\:auto-rows-max { - grid-auto-rows: max-content; + .md\:mix-blend-normal { + mix-blend-mode: normal; } - .md\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .md\:mix-blend-multiply { + mix-blend-mode: multiply; } - .md\:row-auto { - grid-row: auto; + .md\:mix-blend-screen { + mix-blend-mode: screen; } - .md\:row-span-1 { - grid-row: span 1 / span 1; + .md\:mix-blend-overlay { + mix-blend-mode: overlay; } - .md\:row-span-2 { - grid-row: span 2 / span 2; + .md\:mix-blend-darken { + mix-blend-mode: darken; } - .md\:row-span-3 { - grid-row: span 3 / span 3; + .md\:mix-blend-lighten { + mix-blend-mode: lighten; } - .md\:row-span-4 { - grid-row: span 4 / span 4; + .md\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .md\:row-span-5 { - grid-row: span 5 / span 5; + .md\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .md\:row-span-6 { - grid-row: span 6 / span 6; + .md\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .md\:row-span-full { - grid-row: 1 / -1; + .md\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .md\:row-start-1 { - grid-row-start: 1; + .md\:mix-blend-difference { + mix-blend-mode: difference; } - .md\:row-start-2 { - grid-row-start: 2; + .md\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .md\:row-start-3 { - grid-row-start: 3; + .md\:mix-blend-hue { + mix-blend-mode: hue; } - .md\:row-start-4 { - grid-row-start: 4; + .md\:mix-blend-saturation { + mix-blend-mode: saturation; } - .md\:row-start-5 { - grid-row-start: 5; + .md\:mix-blend-color { + mix-blend-mode: color; } - .md\:row-start-6 { - grid-row-start: 6; + .md\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .md\:row-start-7 { - grid-row-start: 7; + .md\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-start-auto { - grid-row-start: auto; + .md\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-1 { - grid-row-end: 1; + .md\: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); } - .md\:row-end-2 { - grid-row-end: 2; + .md\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-3 { - grid-row-end: 3; + .md\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-4 { - grid-row-end: 4; + .md\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-5 { - grid-row-end: 5; + .md\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-6 { - grid-row-end: 6; + .md\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-7 { - grid-row-end: 7; + .group:hover .md\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:row-end-auto { - grid-row-end: auto; + .group:hover .md\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .md\:group-hover\: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); } - .md\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .md\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:transform-none { - transform: none; + .group:hover .md\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-center { - transform-origin: center; + .group:hover .md\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-top { - transform-origin: top; + .group:hover .md\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-top-right { - transform-origin: top right; + .group:hover .md\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-right { - transform-origin: right; + .md\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-bottom-right { - transform-origin: bottom right; + .md\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-bottom { - transform-origin: bottom; + .md\:focus-within\:shadow-md:focus-within { + --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); } - .md\:origin-bottom-left { - transform-origin: bottom left; + .md\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-left { - transform-origin: left; + .md\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:origin-top-left { - transform-origin: top left; + .md\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .md\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .md\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .md\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .md\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .md\:hover\:shadow-md:hover { + --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); } - .md\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .md\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .md\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .md\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .md\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .md\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-0 { - --tw-scale-x: 0; + .md\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-50 { - --tw-scale-x: .5; + .md\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-75 { - --tw-scale-x: .75; + .md\:focus\:shadow-md:focus { + --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); } - .md\:scale-x-90 { - --tw-scale-x: .9; + .md\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-95 { - --tw-scale-x: .95; + .md\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-100 { - --tw-scale-x: 1; + .md\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-105 { - --tw-scale-x: 1.05; + .md\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-110 { - --tw-scale-x: 1.1; + .md\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .md\:scale-x-125 { - --tw-scale-x: 1.25; + .md\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .md\:scale-x-150 { - --tw-scale-x: 1.5; + .md\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .md\:scale-y-0 { - --tw-scale-y: 0; + .md\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .md\:scale-y-50 { - --tw-scale-y: .5; + .md\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .md\:scale-y-75 { - --tw-scale-y: .75; + .md\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .md\:scale-y-90 { - --tw-scale-y: .9; + .md\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .md\:scale-y-95 { - --tw-scale-y: .95; + .md\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .md\:scale-y-100 { - --tw-scale-y: 1; + .md\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .md\:scale-y-105 { - --tw-scale-y: 1.05; + .md\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .md\:scale-y-110 { - --tw-scale-y: 1.1; + .md\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:scale-y-125 { - --tw-scale-y: 1.25; + .md\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:scale-y-150 { - --tw-scale-y: 1.5; + .md\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .md\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .md\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .md\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .md\:ring-inset { + --tw-ring-inset: inset; } - .md\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .md\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .md\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .md\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .md\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .md\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .md\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .md\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .md\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .md\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .md\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .md\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .md\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .md\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .md\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .md\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .md\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .md\:ring-transparent { + --tw-ring-color: transparent; } - .md\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .md\:ring-current { + --tw-ring-color: currentColor; } - .md\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .md\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .md\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .md\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .md\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .md\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .md\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .md\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .md\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .md\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .md\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .md\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .md\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .md\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .md\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .md\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .md\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .md\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .md\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .md\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .md\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .md\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .md\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .md\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .md\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .md\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .md\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .md\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .md\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .md\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .md\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .md\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .md\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .md\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .md\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .md\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .md\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .md\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .md\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .md\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .md\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .md\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .md\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .md\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .md\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .md\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .md\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .md\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .md\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .md\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .md\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .md\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .md\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .md\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .md\:rotate-0 { - --tw-rotate: 0deg; + .md\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .md\:rotate-1 { - --tw-rotate: 1deg; + .md\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .md\:rotate-2 { - --tw-rotate: 2deg; + .md\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .md\:rotate-3 { - --tw-rotate: 3deg; + .md\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .md\:rotate-6 { - --tw-rotate: 6deg; + .md\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .md\:rotate-12 { - --tw-rotate: 12deg; + .md\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .md\:rotate-45 { - --tw-rotate: 45deg; + .md\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .md\:rotate-90 { - --tw-rotate: 90deg; + .md\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .md\:rotate-180 { - --tw-rotate: 180deg; + .md\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .md\:-rotate-180 { - --tw-rotate: -180deg; + .md\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .md\:-rotate-90 { - --tw-rotate: -90deg; + .md\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .md\:-rotate-45 { - --tw-rotate: -45deg; + .md\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .md\:-rotate-12 { - --tw-rotate: -12deg; + .md\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .md\:-rotate-6 { - --tw-rotate: -6deg; + .md\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .md\:-rotate-3 { - --tw-rotate: -3deg; + .md\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .md\:-rotate-2 { - --tw-rotate: -2deg; + .md\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .md\:-rotate-1 { - --tw-rotate: -1deg; + .md\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .md\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .md\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .md\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .md\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .md\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .md\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .md\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .md\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .md\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .md\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .md\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .md\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .md\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .md\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .md\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .md\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .md\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .md\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .md\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .md\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .md\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .md\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .md\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .md\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .md\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .md\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .md\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .md\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .md\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .md\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .md\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .md\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .md\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .md\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .md\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .md\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .md\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .md\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .md\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .md\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .md\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .md\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .md\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .md\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .md\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .md\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .md\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .md\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .md\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .md\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .md\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .md\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .md\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .md\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .md\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .md\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .md\:translate-x-0 { - --tw-translate-x: 0px; + .md\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .md\:translate-x-1 { - --tw-translate-x: 0.25rem; + .md\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .md\:translate-x-2 { - --tw-translate-x: 0.5rem; + .md\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .md\:translate-x-3 { - --tw-translate-x: 0.75rem; + .md\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .md\:translate-x-4 { - --tw-translate-x: 1rem; + .md\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .md\:translate-x-5 { - --tw-translate-x: 1.25rem; + .md\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .md\:translate-x-6 { - --tw-translate-x: 1.5rem; + .md\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .md\:translate-x-7 { - --tw-translate-x: 1.75rem; + .md\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .md\:translate-x-8 { - --tw-translate-x: 2rem; + .md\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .md\:translate-x-9 { - --tw-translate-x: 2.25rem; + .md\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .md\:translate-x-10 { - --tw-translate-x: 2.5rem; + .md\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .md\:translate-x-11 { - --tw-translate-x: 2.75rem; + .md\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .md\:translate-x-12 { - --tw-translate-x: 3rem; + .md\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .md\:translate-x-14 { - --tw-translate-x: 3.5rem; + .md\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .md\:translate-x-16 { - --tw-translate-x: 4rem; + .md\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .md\:translate-x-20 { - --tw-translate-x: 5rem; + .md\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .md\:translate-x-24 { - --tw-translate-x: 6rem; + .md\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .md\:translate-x-28 { - --tw-translate-x: 7rem; + .md\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .md\:translate-x-32 { - --tw-translate-x: 8rem; + .md\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .md\:translate-x-36 { - --tw-translate-x: 9rem; + .md\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .md\:translate-x-40 { - --tw-translate-x: 10rem; + .md\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .md\:translate-x-44 { - --tw-translate-x: 11rem; + .md\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .md\:translate-x-48 { - --tw-translate-x: 12rem; + .md\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .md\:translate-x-52 { - --tw-translate-x: 13rem; + .md\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .md\:translate-x-56 { - --tw-translate-x: 14rem; + .md\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .md\:translate-x-60 { - --tw-translate-x: 15rem; + .md\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .md\:translate-x-64 { - --tw-translate-x: 16rem; + .md\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .md\:translate-x-72 { - --tw-translate-x: 18rem; + .md\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .md\:translate-x-80 { - --tw-translate-x: 20rem; + .md\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .md\:translate-x-96 { - --tw-translate-x: 24rem; + .md\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .md\:translate-x-px { - --tw-translate-x: 1px; + .md\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .md\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .md\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .md\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .md\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .md\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .md\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .md\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .md\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .md\:-translate-x-0 { - --tw-translate-x: 0px; + .md\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .md\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .md\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .md\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .md\:-translate-x-4 { - --tw-translate-x: -1rem; + .md\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .md\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .md\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .md\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .md\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .md\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .md\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .md\:-translate-x-8 { - --tw-translate-x: -2rem; + .md\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .md\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .md\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .md\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .md\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .md\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-12 { - --tw-translate-x: -3rem; + .md\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .md\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .md\:-translate-x-16 { - --tw-translate-x: -4rem; + .md\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .md\:-translate-x-20 { - --tw-translate-x: -5rem; + .md\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .md\:-translate-x-24 { - --tw-translate-x: -6rem; + .md\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .md\:-translate-x-28 { - --tw-translate-x: -7rem; + .md\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .md\:-translate-x-32 { - --tw-translate-x: -8rem; + .md\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .md\:-translate-x-36 { - --tw-translate-x: -9rem; + .md\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .md\:-translate-x-40 { - --tw-translate-x: -10rem; + .md\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-44 { - --tw-translate-x: -11rem; + .md\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-48 { - --tw-translate-x: -12rem; + .md\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .md\:-translate-x-52 { - --tw-translate-x: -13rem; + .md\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .md\:-translate-x-56 { - --tw-translate-x: -14rem; + .md\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .md\:-translate-x-60 { - --tw-translate-x: -15rem; + .md\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .md\:-translate-x-64 { - --tw-translate-x: -16rem; + .md\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .md\:-translate-x-72 { - --tw-translate-x: -18rem; + .md\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .md\:-translate-x-80 { - --tw-translate-x: -20rem; + .md\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .md\:-translate-x-96 { - --tw-translate-x: -24rem; + .md\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .md\:-translate-x-px { - --tw-translate-x: -1px; + .md\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .md\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .md\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .md\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .md\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .md\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .md\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .md\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .md\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .md\:translate-x-1\/2 { - --tw-translate-x: 50%; + .md\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .md\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .md\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .md\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .md\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .md\:translate-x-1\/4 { - --tw-translate-x: 25%; + .md\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .md\:translate-x-2\/4 { - --tw-translate-x: 50%; + .md\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .md\:translate-x-3\/4 { - --tw-translate-x: 75%; + .md\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .md\:translate-x-full { - --tw-translate-x: 100%; + .md\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .md\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .md\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .md\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .md\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .md\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .md\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .md\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .md\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .md\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .md\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .md\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .md\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .md\:-translate-x-full { - --tw-translate-x: -100%; + .md\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .md\:translate-y-0 { - --tw-translate-y: 0px; + .md\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .md\:translate-y-1 { - --tw-translate-y: 0.25rem; + .md\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .md\:translate-y-2 { - --tw-translate-y: 0.5rem; + .md\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .md\:translate-y-3 { - --tw-translate-y: 0.75rem; + .md\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .md\:translate-y-4 { - --tw-translate-y: 1rem; + .md\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .md\:translate-y-5 { - --tw-translate-y: 1.25rem; + .md\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .md\:translate-y-6 { - --tw-translate-y: 1.5rem; + .md\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .md\:translate-y-7 { - --tw-translate-y: 1.75rem; + .md\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .md\:translate-y-8 { - --tw-translate-y: 2rem; + .md\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .md\:translate-y-9 { - --tw-translate-y: 2.25rem; + .md\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .md\:translate-y-10 { - --tw-translate-y: 2.5rem; + .md\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .md\:translate-y-11 { - --tw-translate-y: 2.75rem; + .md\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .md\:translate-y-12 { - --tw-translate-y: 3rem; + .md\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .md\:translate-y-14 { - --tw-translate-y: 3.5rem; + .md\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .md\:translate-y-16 { - --tw-translate-y: 4rem; + .md\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .md\:translate-y-20 { - --tw-translate-y: 5rem; + .md\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .md\:translate-y-24 { - --tw-translate-y: 6rem; + .md\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .md\:translate-y-28 { - --tw-translate-y: 7rem; + .md\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .md\:translate-y-32 { - --tw-translate-y: 8rem; + .md\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .md\:translate-y-36 { - --tw-translate-y: 9rem; + .md\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .md\:translate-y-40 { - --tw-translate-y: 10rem; + .md\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .md\:translate-y-44 { - --tw-translate-y: 11rem; + .md\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .md\:translate-y-48 { - --tw-translate-y: 12rem; + .md\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .md\:translate-y-52 { - --tw-translate-y: 13rem; + .md\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .md\:translate-y-56 { - --tw-translate-y: 14rem; + .md\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .md\:translate-y-60 { - --tw-translate-y: 15rem; + .md\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .md\:translate-y-64 { - --tw-translate-y: 16rem; + .md\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .md\:translate-y-72 { - --tw-translate-y: 18rem; + .md\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .md\:translate-y-80 { - --tw-translate-y: 20rem; + .md\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .md\:translate-y-96 { - --tw-translate-y: 24rem; + .md\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .md\:translate-y-px { - --tw-translate-y: 1px; + .md\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .md\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .md\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .md\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .md\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .md\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .md\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .md\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .md\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .md\:-translate-y-0 { - --tw-translate-y: 0px; + .md\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .md\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .md\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .md\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .md\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .md\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .md\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .md\:-translate-y-4 { - --tw-translate-y: -1rem; + .md\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .md\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .md\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .md\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .md\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .md\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .md\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .md\:-translate-y-8 { - --tw-translate-y: -2rem; + .md\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .md\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .md\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .md\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .md\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .md\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .md\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .md\:-translate-y-12 { - --tw-translate-y: -3rem; + .md\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .md\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .md\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .md\:-translate-y-16 { - --tw-translate-y: -4rem; + .md\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .md\:-translate-y-20 { - --tw-translate-y: -5rem; + .md\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .md\:-translate-y-24 { - --tw-translate-y: -6rem; + .md\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .md\:-translate-y-28 { - --tw-translate-y: -7rem; + .md\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .md\:-translate-y-32 { - --tw-translate-y: -8rem; + .md\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .md\:-translate-y-36 { - --tw-translate-y: -9rem; + .md\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .md\:-translate-y-40 { - --tw-translate-y: -10rem; + .md\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .md\:-translate-y-44 { - --tw-translate-y: -11rem; + .md\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .md\:-translate-y-48 { - --tw-translate-y: -12rem; + .md\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .md\:-translate-y-52 { - --tw-translate-y: -13rem; + .md\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .md\:-translate-y-56 { - --tw-translate-y: -14rem; + .md\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .md\:-translate-y-60 { - --tw-translate-y: -15rem; + .md\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .md\:-translate-y-64 { - --tw-translate-y: -16rem; + .md\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .md\:-translate-y-72 { - --tw-translate-y: -18rem; + .md\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .md\:-translate-y-80 { - --tw-translate-y: -20rem; + .md\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .md\:-translate-y-96 { - --tw-translate-y: -24rem; + .md\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .md\:-translate-y-px { - --tw-translate-y: -1px; + .md\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .md\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .md\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .md\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .md\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .md\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .md\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .md\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .md\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .md\:translate-y-1\/2 { - --tw-translate-y: 50%; + .md\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .md\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .md\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .md\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .md\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .md\:translate-y-1\/4 { - --tw-translate-y: 25%; + .md\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .md\:translate-y-2\/4 { - --tw-translate-y: 50%; + .md\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .md\:translate-y-3\/4 { - --tw-translate-y: 75%; + .md\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .md\:translate-y-full { - --tw-translate-y: 100%; + .md\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .md\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .md\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .md\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .md\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .md\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .md\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .md\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .md\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .md\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .md\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .md\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .md\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .md\:-translate-y-full { - --tw-translate-y: -100%; + .md\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .md\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .md\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .md\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .md\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .md\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .md\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .md\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .md\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .md\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .md\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .md\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .md\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .md\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .md\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .md\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .md\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .md\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .md\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .md\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .md\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .md\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .md\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .md\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .md\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .md\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .md\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .md\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .md\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .md\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .md\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .md\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .md\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .md\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .md\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .md\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .md\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .md\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .md\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .md\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .md\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .md\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .md\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .md\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .md\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .md\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .md\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .md\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .md\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .md\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .md\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .md\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .md\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .md\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .md\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .md\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .md\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .md\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .md\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .md\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .md\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .md\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .md\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .md\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .md\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .md\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .md\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .md\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .md\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .md\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .md\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .md\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .md\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .md\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .md\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .md\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .md\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .md\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .md\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .md\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .md\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .md\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .md\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .md\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .md\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .md\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .md\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .md\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .md\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .md\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .md\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .md\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .md\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .md\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .md\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .md\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .md\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .md\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .md\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .md\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .md\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .md\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .md\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .md\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .md\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .md\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .md\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .md\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .md\:ring-offset-black { + --tw-ring-offset-color: #000; } - .md\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .md\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .md\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .md\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .md\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .md\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .md\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .md\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .md\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .md\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .md\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .md\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .md\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .md\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .md\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .md\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .md\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .md\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .md\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .md\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .md\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .md\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .md\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .md\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .md\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .md\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .md\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .md\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .md\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .md\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .md\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .md\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .md\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .md\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .md\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .md\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .md\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .md\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .md\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .md\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .md\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .md\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .md\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .md\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .md\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .md\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .md\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .md\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .md\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .md\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .md\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .md\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .md\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .md\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .md\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .md\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .md\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .md\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .md\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .md\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .md\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .md\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .md\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .md\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .md\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .md\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .md\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .md\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .md\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .md\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .md\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .md\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .md\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .md\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .md\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .md\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .md\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .md\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .md\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .md\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .md\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .md\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .md\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .md\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .md\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .md\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .md\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .md\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .md\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .md\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .md\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .md\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .md\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .md\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .md\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .md\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .md\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .md\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .md\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .md\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .md\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .md\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .md\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .md\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .md\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .md\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .md\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .md\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .md\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .md\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .md\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .md\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .md\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .md\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .md\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .md\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .md\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .md\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .md\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .md\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .md\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .md\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .md\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .md\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .md\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .md\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .md\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .md\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .md\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .md\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .md\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .md\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .md\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .md\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .md\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .md\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .md\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .md\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .md\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .md\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .md\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .md\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .md\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .md\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .md\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .md\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .md\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .md\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .md\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .md\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .md\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .md\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .md\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .md\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .md\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .md\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .md\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .md\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .md\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .md\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .md\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .md\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .md\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .md\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .md\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .md\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .md\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .md\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .md\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .md\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .md\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .md\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .md\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .md\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .md\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .md\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .md\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .md\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .md\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .md\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .md\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .md\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .md\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .md\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .md\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .md\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .md\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .md\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .md\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .md\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .md\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .md\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .md\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .md\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .md\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .md\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .md\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .md\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .md\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .md\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .md\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .md\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .md\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .md\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .md\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .md\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .md\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .md\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .md\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .md\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .md\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .md\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .md\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .md\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .md\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .md\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .md\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .md\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .md\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .md\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .md\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .md\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .md\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .md\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .md\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .md\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .md\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .md\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .md\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .md\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .md\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .md\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - - .md\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + + .md\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .md\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .md\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .md\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .md\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .md\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .md\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .md\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .md\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .md\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .md\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .md\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .md\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .md\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .md\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .md\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .md\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .md\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .md\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .md\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .md\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .md\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .md\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .md\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .md\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .md\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .md\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .md\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .md\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .md\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .md\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .md\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .md\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .md\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .md\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .md\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .md\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .md\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .md\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .md\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .md\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .md\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .md\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .md\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .md\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .md\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .md\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .md\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .md\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .md\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .md\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .md\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .md\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .md\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .md\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .md\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .md\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .md\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .md\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .md\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .md\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .md\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .md\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .md\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .md\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .md\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .md\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .md\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .md\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .md\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .md\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .md\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .md\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .md\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .md\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .md\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .md\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .md\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .md\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .md\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .md\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .md\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .md\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .md\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .md\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .md\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .md\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .md\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .md\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .md\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .md\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .md\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .md\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .md\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .md\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .md\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .md\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .md\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .md\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .md\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .md\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .md\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .md\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .md\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .md\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .md\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .md\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .md\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .md\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .md\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .md\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .md\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .md\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .md\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .md\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .md\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .md\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .md\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .md\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .md\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .md\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .md\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .md\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .md\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .md\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .md\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .md\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .md\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .md\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .md\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .md\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .md\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .md\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .md\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .md\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .md\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .md\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .md\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .md\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .md\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .md\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .md\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .md\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .md\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .md\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .md\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .md\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .md\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .md\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .md\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .md\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .md\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .md\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .md\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .md\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .md\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .md\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .md\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .md\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .md\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .md\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .md\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .md\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .md\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .md\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .md\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .md\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .md\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .md\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .md\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .md\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .md\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .md\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .md\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .md\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .md\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .md\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .md\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .md\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .md\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .md\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .md\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .md\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .md\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .md\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .md\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .md\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .md\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .md\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .md\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .md\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .md\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .md\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .md\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .md\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .md\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .md\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .md\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .md\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .md\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .md\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .md\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .md\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .md\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .md\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .md\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .md\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .md\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .md\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .md\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .md\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .md\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .md\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .md\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .md\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .md\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .md\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .md\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .md\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .md\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .md\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .md\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .md\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .md\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .md\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .md\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .md\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .md\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .md\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .md\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .md\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .md\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .md\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .md\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .md\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .md\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .md\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .md\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .md\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .md\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .md\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .md\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .md\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .md\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .md\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .md\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .md\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .md\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .md\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .md\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .md\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .md\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .md\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .md\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .md\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .md\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .md\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .md\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .md\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .md\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .md\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .md\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .md\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .md\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .md\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .md\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .md\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .md\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .md\:filter-none { + filter: none; } - .md\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .md\:blur-0 { + --tw-blur: blur(0); } - .md\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .md\:blur-sm { + --tw-blur: blur(4px); } - .md\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .md\:blur { + --tw-blur: blur(8px); } - .md\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .md\:blur-md { + --tw-blur: blur(12px); } - .md\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .md\:blur-lg { + --tw-blur: blur(16px); } - .md\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .md\:blur-xl { + --tw-blur: blur(24px); } - .md\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .md\:blur-2xl { + --tw-blur: blur(40px); } - .md\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .md\:blur-3xl { + --tw-blur: blur(64px); } - .md\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .md\:brightness-0 { + --tw-brightness: brightness(0); } - .md\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .md\:brightness-50 { + --tw-brightness: brightness(.5); } - .md\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .md\:brightness-75 { + --tw-brightness: brightness(.75); } - .md\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .md\:brightness-90 { + --tw-brightness: brightness(.9); } - .md\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .md\:brightness-95 { + --tw-brightness: brightness(.95); } - .md\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .md\:brightness-100 { + --tw-brightness: brightness(1); } - .md\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .md\:brightness-105 { + --tw-brightness: brightness(1.05); } - .md\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .md\:brightness-110 { + --tw-brightness: brightness(1.1); } - .md\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .md\:brightness-125 { + --tw-brightness: brightness(1.25); } - .md\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .md\:brightness-150 { + --tw-brightness: brightness(1.5); } - .md\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .md\:brightness-200 { + --tw-brightness: brightness(2); } - .md\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .md\:contrast-0 { + --tw-contrast: contrast(0); } - .md\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .md\:contrast-50 { + --tw-contrast: contrast(.5); } - .md\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .md\:contrast-75 { + --tw-contrast: contrast(.75); } - .md\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .md\:contrast-100 { + --tw-contrast: contrast(1); } - .md\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .md\:contrast-125 { + --tw-contrast: contrast(1.25); } - .md\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .md\:contrast-150 { + --tw-contrast: contrast(1.5); } - .md\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .md\:contrast-200 { + --tw-contrast: contrast(2); } - .md\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .md\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .md\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .md\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .md\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .md\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .md\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .md\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .md\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .md\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .md\:skew-x-0 { - --tw-skew-x: 0deg; + .md\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .md\:skew-x-1 { - --tw-skew-x: 1deg; + .md\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .md\:skew-x-2 { - --tw-skew-x: 2deg; + .md\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .md\:skew-x-3 { - --tw-skew-x: 3deg; + .md\:grayscale { + --tw-grayscale: grayscale(100%); } - .md\:skew-x-6 { - --tw-skew-x: 6deg; + .md\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .md\:skew-x-12 { - --tw-skew-x: 12deg; + .md\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .md\:-skew-x-12 { - --tw-skew-x: -12deg; + .md\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .md\:-skew-x-6 { - --tw-skew-x: -6deg; + .md\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .md\:-skew-x-3 { - --tw-skew-x: -3deg; + .md\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .md\:-skew-x-2 { - --tw-skew-x: -2deg; + .md\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .md\:-skew-x-1 { - --tw-skew-x: -1deg; + .md\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .md\:skew-y-0 { - --tw-skew-y: 0deg; + .md\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .md\:skew-y-1 { - --tw-skew-y: 1deg; + .md\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .md\:skew-y-2 { - --tw-skew-y: 2deg; + .md\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .md\:skew-y-3 { - --tw-skew-y: 3deg; + .md\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .md\:skew-y-6 { - --tw-skew-y: 6deg; + .md\:invert-0 { + --tw-invert: invert(0); } - .md\:skew-y-12 { - --tw-skew-y: 12deg; + .md\:invert { + --tw-invert: invert(100%); } - .md\:-skew-y-12 { - --tw-skew-y: -12deg; + .md\:saturate-0 { + --tw-saturate: saturate(0); } - .md\:-skew-y-6 { - --tw-skew-y: -6deg; + .md\:saturate-50 { + --tw-saturate: saturate(.5); } - .md\:-skew-y-3 { - --tw-skew-y: -3deg; + .md\:saturate-100 { + --tw-saturate: saturate(1); } - .md\:-skew-y-2 { - --tw-skew-y: -2deg; + .md\:saturate-150 { + --tw-saturate: saturate(1.5); } - .md\:-skew-y-1 { - --tw-skew-y: -1deg; + .md\:saturate-200 { + --tw-saturate: saturate(2); } - .md\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .md\:sepia-0 { + --tw-sepia: sepia(0); } - .md\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .md\:sepia { + --tw-sepia: sepia(100%); } - .md\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .md\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .md\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .md\:backdrop-filter-none { + backdrop-filter: none; } - .md\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .md\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .md\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .md\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .md\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .md\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .md\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .md\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .md\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .md\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .md\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .md\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .md\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .md\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .md\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .md\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .md\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .md\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .md\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .md\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .md\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .md\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .md\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .md\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .md\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .md\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .md\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .md\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .md\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + .md\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .md\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + .md\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .md\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + .md\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .md\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + .md\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .md\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + .md\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .md\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .md\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .md\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .md\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .md\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .md\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .md\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .md\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .md\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .md\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .md\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .md\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .md\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .md\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .md\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .md\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .md\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .md\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .md\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .md\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .md\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .md\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .md\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .md\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .md\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .md\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .md\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .md\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .md\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .md\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .md\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .md\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .md\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .md\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .md\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .md\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .md\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .md\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .md\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .md\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .md\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .md\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } .md\:transition-none { @@ -87394,6 +87956,70 @@ video { transition-duration: 150ms; } + .md\:delay-75 { + transition-delay: 75ms; + } + + .md\:delay-100 { + transition-delay: 100ms; + } + + .md\:delay-150 { + transition-delay: 150ms; + } + + .md\:delay-200 { + transition-delay: 200ms; + } + + .md\:delay-300 { + transition-delay: 300ms; + } + + .md\:delay-500 { + transition-delay: 500ms; + } + + .md\:delay-700 { + transition-delay: 700ms; + } + + .md\:delay-1000 { + transition-delay: 1000ms; + } + + .md\:duration-75 { + transition-duration: 75ms; + } + + .md\:duration-100 { + transition-duration: 100ms; + } + + .md\:duration-150 { + transition-duration: 150ms; + } + + .md\:duration-200 { + transition-duration: 200ms; + } + + .md\:duration-300 { + transition-duration: 300ms; + } + + .md\:duration-500 { + transition-duration: 500ms; + } + + .md\:duration-700 { + transition-duration: 700ms; + } + + .md\:duration-1000 { + transition-duration: 1000ms; + } + .md\:ease-linear { transition-timing-function: linear; } @@ -87410,22319 +88036,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .md\:duration-75 { - transition-duration: 75ms; + .md\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 1024px) { + .lg\:container { + width: 100%; + } + + @media (min-width: 640px) { + .lg\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .lg\:container { + max-width: 768px; + } } - .md\:duration-100 { - transition-duration: 100ms; + @media (min-width: 1024px) { + .lg\:container { + max-width: 1024px; + } } - .md\:duration-150 { - transition-duration: 150ms; + @media (min-width: 1280px) { + .lg\:container { + max-width: 1280px; + } } - .md\:duration-200 { - transition-duration: 200ms; + @media (min-width: 1536px) { + .lg\:container { + max-width: 1536px; + } } - .md\:duration-300 { - transition-duration: 300ms; + .lg\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .md\:duration-500 { - transition-duration: 500ms; + .lg\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .md\:duration-700 { - transition-duration: 700ms; + .lg\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .md\:duration-1000 { - transition-duration: 1000ms; + .lg\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .md\:delay-75 { - transition-delay: 75ms; + .lg\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .md\:delay-100 { - transition-delay: 100ms; + .lg\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .md\:delay-150 { - transition-delay: 150ms; + .lg\:pointer-events-none { + pointer-events: none; } - .md\:delay-200 { - transition-delay: 200ms; + .lg\:pointer-events-auto { + pointer-events: auto; } - .md\:delay-300 { - transition-delay: 300ms; + .lg\:visible { + visibility: visible; } - .md\:delay-500 { - transition-delay: 500ms; + .lg\:invisible { + visibility: hidden; } - .md\:delay-700 { - transition-delay: 700ms; + .lg\:static { + position: static; } - .md\:delay-1000 { - transition-delay: 1000ms; + .lg\:fixed { + position: fixed; } - .md\:animate-none { - animation: none; + .lg\:absolute { + position: absolute; } - .md\:animate-spin { - animation: spin 1s linear infinite; + .lg\:relative { + position: relative; } - .md\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .lg\:sticky { + position: sticky; } - .md\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .lg\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .md\:animate-bounce { - animation: bounce 1s infinite; + .lg\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .md\:mix-blend-normal { - mix-blend-mode: normal; + .lg\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .md\:mix-blend-multiply { - mix-blend-mode: multiply; + .lg\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .md\:mix-blend-screen { - mix-blend-mode: screen; + .lg\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .md\:mix-blend-overlay { - mix-blend-mode: overlay; + .lg\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .md\:mix-blend-darken { - mix-blend-mode: darken; + .lg\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .md\:mix-blend-lighten { - mix-blend-mode: lighten; + .lg\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .md\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .lg\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .md\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .lg\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .md\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .lg\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .md\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .lg\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .md\:mix-blend-difference { - mix-blend-mode: difference; + .lg\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .md\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .lg\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .md\:mix-blend-hue { - mix-blend-mode: hue; + .lg\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .md\:mix-blend-saturation { - mix-blend-mode: saturation; + .lg\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .md\:mix-blend-color { - mix-blend-mode: color; + .lg\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .md\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .lg\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .md\:bg-blend-normal { - background-blend-mode: normal; + .lg\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .md\:bg-blend-multiply { - background-blend-mode: multiply; + .lg\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .md\:bg-blend-screen { - background-blend-mode: screen; + .lg\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .md\:bg-blend-overlay { - background-blend-mode: overlay; + .lg\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .md\:bg-blend-darken { - background-blend-mode: darken; + .lg\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .md\:bg-blend-lighten { - background-blend-mode: lighten; + .lg\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .md\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .lg\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .md\:bg-blend-color-burn { - background-blend-mode: color-burn; + .lg\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .md\:bg-blend-hard-light { - background-blend-mode: hard-light; + .lg\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .md\:bg-blend-soft-light { - background-blend-mode: soft-light; + .lg\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .md\:bg-blend-difference { - background-blend-mode: difference; + .lg\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .md\:bg-blend-exclusion { - background-blend-mode: exclusion; + .lg\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .md\:bg-blend-hue { - background-blend-mode: hue; + .lg\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .md\:bg-blend-saturation { - background-blend-mode: saturation; + .lg\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .md\:bg-blend-color { - background-blend-mode: color; + .lg\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .md\:bg-blend-luminosity { - background-blend-mode: luminosity; + .lg\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .md\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .lg\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .md\:filter-none { - filter: none; + .lg\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .md\:blur-0 { - --tw-blur: blur(0); + .lg\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .md\:blur-sm { - --tw-blur: blur(4px); + .lg\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .md\:blur { - --tw-blur: blur(8px); + .lg\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .md\:blur-md { - --tw-blur: blur(12px); + .lg\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .md\:blur-lg { - --tw-blur: blur(16px); + .lg\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .md\:blur-xl { - --tw-blur: blur(24px); + .lg\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .md\:blur-2xl { - --tw-blur: blur(40px); + .lg\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .md\:blur-3xl { - --tw-blur: blur(64px); + .lg\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .md\:brightness-0 { - --tw-brightness: brightness(0); + .lg\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .md\:brightness-50 { - --tw-brightness: brightness(.5); + .lg\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .md\:brightness-75 { - --tw-brightness: brightness(.75); + .lg\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .md\:brightness-90 { - --tw-brightness: brightness(.9); + .lg\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .md\:brightness-95 { - --tw-brightness: brightness(.95); + .lg\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .md\:brightness-100 { - --tw-brightness: brightness(1); + .lg\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .md\:brightness-105 { - --tw-brightness: brightness(1.05); + .lg\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .md\:brightness-110 { - --tw-brightness: brightness(1.1); + .lg\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .md\:brightness-125 { - --tw-brightness: brightness(1.25); + .lg\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .md\:brightness-150 { - --tw-brightness: brightness(1.5); + .lg\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .md\:brightness-200 { - --tw-brightness: brightness(2); + .lg\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .md\:contrast-0 { - --tw-contrast: contrast(0); + .lg\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .md\:contrast-50 { - --tw-contrast: contrast(.5); + .lg\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .md\:contrast-75 { - --tw-contrast: contrast(.75); + .lg\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .md\:contrast-100 { - --tw-contrast: contrast(1); + .lg\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .md\:contrast-125 { - --tw-contrast: contrast(1.25); + .lg\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .md\:contrast-150 { - --tw-contrast: contrast(1.5); + .lg\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .md\:contrast-200 { - --tw-contrast: contrast(2); + .lg\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .md\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .lg\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .md\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .lg\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .md\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .lg\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .md\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .lg\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .md\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .lg\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .md\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .lg\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .md\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .lg\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .md\:grayscale-0 { - --tw-grayscale: grayscale(0); + .lg\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .md\:grayscale { - --tw-grayscale: grayscale(100%); + .lg\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .md\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .lg\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .md\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .lg\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .md\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .lg\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .md\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .lg\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .md\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .lg\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .md\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .lg\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .md\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .lg\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .md\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .lg\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .md\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .lg\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .md\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .lg\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .md\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .lg\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .md\:invert-0 { - --tw-invert: invert(0); + .lg\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .md\:invert { - --tw-invert: invert(100%); + .lg\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .md\:saturate-0 { - --tw-saturate: saturate(0); + .lg\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .md\:saturate-50 { - --tw-saturate: saturate(.5); + .lg\:inset-y-0 { + top: 0px; + bottom: 0px; } - .md\:saturate-100 { - --tw-saturate: saturate(1); + .lg\:inset-x-0 { + right: 0px; + left: 0px; } - .md\:saturate-150 { - --tw-saturate: saturate(1.5); + .lg\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .md\:saturate-200 { - --tw-saturate: saturate(2); + .lg\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .md\:sepia-0 { - --tw-sepia: sepia(0); + .lg\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .md\:sepia { - --tw-sepia: sepia(100%); + .lg\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .md\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .lg\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .md\:backdrop-filter-none { - backdrop-filter: none; + .lg\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .md\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .lg\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .md\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .lg\:inset-x-4 { + right: 1rem; + left: 1rem; } - .md\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .lg\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .md\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .lg\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .md\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .lg\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .md\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .lg\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .md\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .lg\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .md\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .lg\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .md\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .lg\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .md\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .lg\:inset-x-8 { + right: 2rem; + left: 2rem; } - .md\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .lg\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .md\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .lg\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .md\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .lg\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .md\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .lg\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .md\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .lg\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .md\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .lg\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .md\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .lg\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .md\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .lg\:inset-x-12 { + right: 3rem; + left: 3rem; } - .md\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .lg\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .md\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .lg\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .md\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .lg\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .md\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .lg\:inset-x-16 { + right: 4rem; + left: 4rem; } - .md\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .lg\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .md\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .lg\:inset-x-20 { + right: 5rem; + left: 5rem; } - .md\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .lg\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .md\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .lg\:inset-x-24 { + right: 6rem; + left: 6rem; } - .md\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .lg\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .md\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .lg\:inset-x-28 { + right: 7rem; + left: 7rem; } - .md\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .lg\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .md\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .lg\:inset-x-32 { + right: 8rem; + left: 8rem; } - .md\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .lg\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .md\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .lg\:inset-x-36 { + right: 9rem; + left: 9rem; } - .md\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .lg\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .md\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .lg\:inset-x-40 { + right: 10rem; + left: 10rem; } - .md\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .lg\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .md\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .lg\:inset-x-44 { + right: 11rem; + left: 11rem; } - .md\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .lg\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .md\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .lg\:inset-x-48 { + right: 12rem; + left: 12rem; } - .md\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .lg\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .md\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .lg\:inset-x-52 { + right: 13rem; + left: 13rem; } - .md\:example { - font-weight: 700; - color: #ef4444; + .lg\:inset-y-56 { + top: 14rem; + bottom: 14rem; } -} -@media (min-width: 1024px) { - .lg\:container { - width: 100%; + .lg\:inset-x-56 { + right: 14rem; + left: 14rem; } - @media (min-width: 640px) { - .lg\:container { - max-width: 640px; - } + .lg\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - @media (min-width: 768px) { - .lg\:container { - max-width: 768px; - } + .lg\:inset-x-60 { + right: 15rem; + left: 15rem; } - @media (min-width: 1024px) { - .lg\:container { - max-width: 1024px; - } + .lg\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - @media (min-width: 1280px) { - .lg\:container { - max-width: 1280px; - } + .lg\:inset-x-64 { + right: 16rem; + left: 16rem; } - @media (min-width: 1536px) { - .lg\:container { - max-width: 1536px; - } + .lg\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .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\:inset-x-72 { + right: 18rem; + left: 18rem; } - .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\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .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\:inset-x-80 { + right: 20rem; + left: 20rem; } - .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\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .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\:inset-x-96 { + right: 24rem; + left: 24rem; } - .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\:inset-y-auto { + top: auto; + bottom: auto; } - .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\:inset-x-auto { + right: auto; + left: auto; } - .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\:inset-y-px { + top: 1px; + bottom: 1px; } - .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\:inset-x-px { + right: 1px; + left: 1px; } - .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\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .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\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .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\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .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\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .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\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .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\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .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\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .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\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .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\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .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\:-inset-x-0 { + right: 0px; + left: 0px; } - .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\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .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\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .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\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .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\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .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\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .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\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .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\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .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\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .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\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .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\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } - .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\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - .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\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - .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\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - .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\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - .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\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - .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\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .lg\:right-6 { + right: 1.5rem; } - .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .lg\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .lg\:right-9 { + right: 2.25rem; } - .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .lg\:bottom-9 { + bottom: 2.25rem; } - .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .lg\:left-9 { + left: 2.25rem; } - .lg\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .lg\:top-10 { + top: 2.5rem; } - .lg\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + .lg\:right-10 { + right: 2.5rem; } - .lg\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + .lg\:bottom-10 { + bottom: 2.5rem; } - .lg\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + .lg\:left-10 { + left: 2.5rem; } - .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + .lg\:top-11 { + top: 2.75rem; } - .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + .lg\:right-11 { + right: 2.75rem; } - .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + .lg\:bottom-11 { + bottom: 2.75rem; } - .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + .lg\:left-11 { + left: 2.75rem; } - .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + .lg\:top-12 { + top: 3rem; } - .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + .lg\:right-12 { + right: 3rem; } - .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + .lg\:bottom-12 { + bottom: 3rem; } - .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + .lg\:left-12 { + left: 3rem; } - .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + .lg\:top-14 { + top: 3.5rem; } - .lg\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); + .lg\:right-14 { + right: 3.5rem; } - .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); + .lg\:bottom-14 { + bottom: 3.5rem; } - .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); + .lg\:left-14 { + left: 3.5rem; } - .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); + .lg\:top-16 { + top: 4rem; } - .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); + .lg\:right-16 { + right: 4rem; } - .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); + .lg\:bottom-16 { + bottom: 4rem; } - .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); + .lg\:left-16 { + left: 4rem; } - .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); + .lg\:top-20 { + top: 5rem; } - .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); + .lg\:right-20 { + right: 5rem; } - .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); + .lg\:bottom-20 { + bottom: 5rem; } - .lg\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); + .lg\:left-20 { + left: 5rem; } - .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); + .lg\:top-24 { + top: 6rem; } - .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); + .lg\:right-24 { + right: 6rem; } - .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); + .lg\:bottom-24 { + bottom: 6rem; } - .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); + .lg\:left-24 { + left: 6rem; } - .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + .lg\:top-28 { + top: 7rem; } - .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); + .lg\:right-28 { + right: 7rem; } - .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); + .lg\:bottom-28 { + bottom: 7rem; } - .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); + .lg\:left-28 { + left: 7rem; } - .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); + .lg\:top-32 { + top: 8rem; } - .lg\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); + .lg\:right-32 { + right: 8rem; } - .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); + .lg\:bottom-32 { + bottom: 8rem; } - .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); + .lg\:left-32 { + left: 8rem; } - .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); + .lg\:top-36 { + top: 9rem; } - .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); + .lg\:right-36 { + right: 9rem; } - .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); + .lg\:bottom-36 { + bottom: 9rem; } - .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); + .lg\:left-36 { + left: 9rem; } - .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); + .lg\:top-40 { + top: 10rem; } - .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); + .lg\:right-40 { + right: 10rem; } - .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); + .lg\:bottom-40 { + bottom: 10rem; } - .lg\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); + .lg\:left-40 { + left: 10rem; } - .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); + .lg\:top-44 { + top: 11rem; } - .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); + .lg\:right-44 { + right: 11rem; } - .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); + .lg\:bottom-44 { + bottom: 11rem; } - .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); + .lg\:left-44 { + left: 11rem; } - .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + .lg\:top-48 { + top: 12rem; } - .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); + .lg\:right-48 { + right: 12rem; } - .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); + .lg\:bottom-48 { + bottom: 12rem; } - .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); + .lg\:left-48 { + left: 12rem; } - .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); + .lg\:top-52 { + top: 13rem; } - .lg\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); + .lg\:right-52 { + right: 13rem; } - .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); + .lg\:bottom-52 { + bottom: 13rem; } - .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); + .lg\:left-52 { + left: 13rem; } - .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); + .lg\:top-56 { + top: 14rem; } - .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); + .lg\:right-56 { + right: 14rem; } - .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); + .lg\:bottom-56 { + bottom: 14rem; } - .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); + .lg\:left-56 { + left: 14rem; } - .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); + .lg\:top-60 { + top: 15rem; } - .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); + .lg\:right-60 { + right: 15rem; } - .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); + .lg\:bottom-60 { + bottom: 15rem; } - .lg\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); + .lg\:left-60 { + left: 15rem; } - .lg\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); + .lg\:top-64 { + top: 16rem; } - .lg\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); + .lg\:right-64 { + right: 16rem; } - .lg\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); + .lg\:bottom-64 { + bottom: 16rem; } - .lg\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); + .lg\:left-64 { + left: 16rem; } - .lg\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); + .lg\:top-72 { + top: 18rem; } - .lg\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); + .lg\:right-72 { + right: 18rem; } - .lg\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); + .lg\:bottom-72 { + bottom: 18rem; } - .lg\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); + .lg\:left-72 { + left: 18rem; } - .lg\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); + .lg\:top-80 { + top: 20rem; } - .lg\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); + .lg\:right-80 { + right: 20rem; } - .lg\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); + .lg\:bottom-80 { + bottom: 20rem; } - .lg\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); + .lg\:left-80 { + left: 20rem; } - .lg\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); + .lg\:top-96 { + top: 24rem; } - .lg\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); + .lg\:right-96 { + right: 24rem; } - .lg\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); + .lg\:bottom-96 { + bottom: 24rem; } - .lg\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); + .lg\:left-96 { + left: 24rem; } - .lg\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); + .lg\:top-auto { + top: auto; } - .lg\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); + .lg\:right-auto { + right: auto; } - .lg\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); + .lg\:bottom-auto { + bottom: auto; } - .lg\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .lg\:left-auto { + left: auto; } - .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .lg\:top-px { + top: 1px; } - .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .lg\:right-px { + right: 1px; } - .lg\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .lg\:bottom-px { + bottom: 1px; } - .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .lg\:left-px { + left: 1px; } - .lg\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; + .lg\:top-0\.5 { + top: 0.125rem; } - .lg\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; + .lg\:right-0\.5 { + right: 0.125rem; } - .lg\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; + .lg\:bottom-0\.5 { + bottom: 0.125rem; } - .lg\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; + .lg\:left-0\.5 { + left: 0.125rem; } - .lg\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; + .lg\:top-1\.5 { + top: 0.375rem; } - .lg\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; + .lg\:right-1\.5 { + right: 0.375rem; } - .lg\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; + .lg\:bottom-1\.5 { + bottom: 0.375rem; } - .lg\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; + .lg\:left-1\.5 { + left: 0.375rem; } - .lg\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; + .lg\:top-2\.5 { + top: 0.625rem; } - .lg\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; + .lg\:right-2\.5 { + right: 0.625rem; } - .lg\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; + .lg\:bottom-2\.5 { + bottom: 0.625rem; } - .lg\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; + .lg\:left-2\.5 { + left: 0.625rem; } - .lg\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; + .lg\:top-3\.5 { + top: 0.875rem; } - .lg\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; + .lg\:right-3\.5 { + right: 0.875rem; } - .lg\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; + .lg\:bottom-3\.5 { + bottom: 0.875rem; } - .lg\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .lg\:left-3\.5 { + left: 0.875rem; } - .lg\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .lg\:-top-0 { + top: 0px; } - .lg\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .lg\:-right-0 { + right: 0px; } - .lg\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .lg\:-bottom-0 { + bottom: 0px; } - .lg\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .lg\:-left-0 { + left: 0px; } - .lg\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .lg\:-top-1 { + top: -0.25rem; } - .lg\:appearance-none { - appearance: none; + .lg\:-right-1 { + right: -0.25rem; } - .lg\:bg-fixed { - background-attachment: fixed; + .lg\:-bottom-1 { + bottom: -0.25rem; } - .lg\:bg-local { - background-attachment: local; + .lg\:-left-1 { + left: -0.25rem; } - .lg\:bg-scroll { - background-attachment: scroll; + .lg\:-top-2 { + top: -0.5rem; } - .lg\:bg-clip-border { - background-clip: border-box; + .lg\:-right-2 { + right: -0.5rem; } - .lg\:bg-clip-padding { - background-clip: padding-box; + .lg\:-bottom-2 { + bottom: -0.5rem; } - .lg\:bg-clip-content { - background-clip: content-box; + .lg\:-left-2 { + left: -0.5rem; } - .lg\:bg-clip-text { - background-clip: text; + .lg\:-top-3 { + top: -0.75rem; } - .lg\:bg-transparent { - background-color: transparent; + .lg\:-right-3 { + right: -0.75rem; } - .lg\:bg-current { - background-color: currentColor; + .lg\:-bottom-3 { + bottom: -0.75rem; } - .lg\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .lg\:-left-3 { + left: -0.75rem; } - .lg\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .lg\:-top-4 { + top: -1rem; } - .lg\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .lg\:-right-4 { + right: -1rem; } - .lg\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .lg\:-bottom-4 { + bottom: -1rem; } - .lg\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .lg\:-left-4 { + left: -1rem; } - .lg\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .lg\:-top-5 { + top: -1.25rem; } - .lg\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .lg\:-right-5 { + right: -1.25rem; } - .lg\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .lg\:-bottom-5 { + bottom: -1.25rem; } - .lg\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .lg\:-left-5 { + left: -1.25rem; } - .lg\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .lg\:-top-6 { + top: -1.5rem; } - .lg\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .lg\:-right-6 { + right: -1.5rem; } - .lg\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .lg\:-bottom-6 { + bottom: -1.5rem; } - .lg\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .lg\:-left-6 { + left: -1.5rem; } - .lg\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .lg\:-top-7 { + top: -1.75rem; } - .lg\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .lg\:-right-7 { + right: -1.75rem; } - .lg\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .lg\:-bottom-7 { + bottom: -1.75rem; } - .lg\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .lg\:-left-7 { + left: -1.75rem; } - .lg\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .lg\:-top-8 { + top: -2rem; } - .lg\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .lg\:-right-8 { + right: -2rem; } - .lg\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .lg\:-bottom-8 { + bottom: -2rem; } - .lg\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .lg\:-left-8 { + left: -2rem; } - .lg\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .lg\:-top-9 { + top: -2.25rem; } - .lg\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .lg\:-right-9 { + right: -2.25rem; } - .lg\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .lg\:-bottom-9 { + bottom: -2.25rem; } - .lg\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .lg\:-left-9 { + left: -2.25rem; } - .lg\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .lg\:-top-10 { + top: -2.5rem; } - .lg\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .lg\:-right-10 { + right: -2.5rem; } - .lg\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .lg\:-bottom-10 { + bottom: -2.5rem; } - .lg\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .lg\:-left-10 { + left: -2.5rem; } - .lg\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .lg\:-top-11 { + top: -2.75rem; } - .lg\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .lg\:-right-11 { + right: -2.75rem; } - .lg\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .lg\:-bottom-11 { + bottom: -2.75rem; } - .lg\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .lg\:-left-11 { + left: -2.75rem; } - .lg\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .lg\:-top-12 { + top: -3rem; } - .lg\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .lg\:-right-12 { + right: -3rem; } - .lg\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .lg\:-bottom-12 { + bottom: -3rem; } - .lg\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .lg\:-left-12 { + left: -3rem; } - .lg\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .lg\:-top-14 { + top: -3.5rem; } - .lg\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .lg\:-right-14 { + right: -3.5rem; } - .lg\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .lg\:-bottom-14 { + bottom: -3.5rem; } - .lg\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .lg\:-left-14 { + left: -3.5rem; } - .lg\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .lg\:-top-16 { + top: -4rem; } - .lg\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .lg\:-right-16 { + right: -4rem; } - .lg\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .lg\:-bottom-16 { + bottom: -4rem; } - .lg\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .lg\:-left-16 { + left: -4rem; } - .lg\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .lg\:-top-20 { + top: -5rem; } - .lg\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .lg\:-right-20 { + right: -5rem; } - .lg\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .lg\:-bottom-20 { + bottom: -5rem; } - .lg\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .lg\:-left-20 { + left: -5rem; } - .lg\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .lg\:-top-24 { + top: -6rem; } - .lg\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .lg\:-right-24 { + right: -6rem; } - .lg\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .lg\:-bottom-24 { + bottom: -6rem; } - .lg\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .lg\:-left-24 { + left: -6rem; } - .lg\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .lg\:-top-28 { + top: -7rem; } - .lg\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .lg\:-right-28 { + right: -7rem; } - .lg\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .lg\:-bottom-28 { + bottom: -7rem; } - .lg\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .lg\:-left-28 { + left: -7rem; } - .lg\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .lg\:-top-32 { + top: -8rem; } - .lg\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .lg\:-right-32 { + right: -8rem; } - .lg\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .lg\:-bottom-32 { + bottom: -8rem; } - .lg\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .lg\:-left-32 { + left: -8rem; } - .lg\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .lg\:-top-36 { + top: -9rem; } - .lg\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .lg\:-right-36 { + right: -9rem; } - .lg\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .lg\:-bottom-36 { + bottom: -9rem; } - .lg\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .lg\:-left-36 { + left: -9rem; } - .lg\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .lg\:-top-40 { + top: -10rem; } - .lg\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .lg\:-right-40 { + right: -10rem; } - .lg\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .lg\:-bottom-40 { + bottom: -10rem; } - .lg\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .lg\:-left-40 { + left: -10rem; } - .lg\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .lg\:-top-44 { + top: -11rem; } - .lg\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .lg\:-right-44 { + right: -11rem; } - .lg\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .lg\:-bottom-44 { + bottom: -11rem; } - .lg\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .lg\:-left-44 { + left: -11rem; } - .lg\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .lg\:-top-48 { + top: -12rem; } - .lg\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .lg\:-right-48 { + right: -12rem; } - .lg\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .lg\:-bottom-48 { + bottom: -12rem; } - .lg\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .lg\:-left-48 { + left: -12rem; } - .lg\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .lg\:-top-52 { + top: -13rem; } - .lg\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .lg\:-right-52 { + right: -13rem; } - .lg\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .lg\:-bottom-52 { + bottom: -13rem; + } + + .lg\:-left-52 { + left: -13rem; } - .lg\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .lg\:-top-56 { + top: -14rem; } - .lg\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .lg\:-right-56 { + right: -14rem; } - .group:hover .lg\:group-hover\:bg-transparent { - background-color: transparent; + .lg\:-bottom-56 { + bottom: -14rem; } - .group:hover .lg\:group-hover\:bg-current { - background-color: currentColor; + .lg\:-left-56 { + left: -14rem; } - .group:hover .lg\:group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .lg\:-top-60 { + top: -15rem; } - .group:hover .lg\:group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .lg\:-right-60 { + right: -15rem; } - .group:hover .lg\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .lg\:-bottom-60 { + bottom: -15rem; } - .group:hover .lg\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .lg\:-left-60 { + left: -15rem; } - .group:hover .lg\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .lg\:-top-64 { + top: -16rem; } - .group:hover .lg\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .lg\:-right-64 { + right: -16rem; } - .group:hover .lg\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .lg\:-bottom-64 { + bottom: -16rem; } - .group:hover .lg\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .lg\:-left-64 { + left: -16rem; } - .group:hover .lg\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .lg\:-top-72 { + top: -18rem; } - .group:hover .lg\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .lg\:-right-72 { + right: -18rem; } - .group:hover .lg\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .lg\:-bottom-72 { + bottom: -18rem; } - .group:hover .lg\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .lg\:-left-72 { + left: -18rem; } - .group:hover .lg\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .lg\:-top-80 { + top: -20rem; } - .group:hover .lg\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .lg\:-right-80 { + right: -20rem; } - .group:hover .lg\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .lg\:-bottom-80 { + bottom: -20rem; } - .group:hover .lg\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .lg\:-left-80 { + left: -20rem; } - .group:hover .lg\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .lg\:-top-96 { + top: -24rem; } - .group:hover .lg\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .lg\:-right-96 { + right: -24rem; } - .group:hover .lg\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .lg\:-bottom-96 { + bottom: -24rem; } - .group:hover .lg\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .lg\:-left-96 { + left: -24rem; } - .group:hover .lg\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .lg\:-top-px { + top: -1px; } - .group:hover .lg\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .lg\:-right-px { + right: -1px; } - .group:hover .lg\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .lg\:-bottom-px { + bottom: -1px; } - .group:hover .lg\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .lg\:-left-px { + left: -1px; } - .group:hover .lg\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .lg\:-top-0\.5 { + top: -0.125rem; } - .group:hover .lg\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .lg\:-right-0\.5 { + right: -0.125rem; } - .group:hover .lg\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .lg\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .lg\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .lg\:-left-0\.5 { + left: -0.125rem; } - .group:hover .lg\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .lg\:-top-1\.5 { + top: -0.375rem; } - .group:hover .lg\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .lg\:-right-1\.5 { + right: -0.375rem; } - .group:hover .lg\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .lg\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .lg\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .lg\:-left-1\.5 { + left: -0.375rem; } - .group:hover .lg\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .lg\:-top-2\.5 { + top: -0.625rem; } - .group:hover .lg\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .lg\:-right-2\.5 { + right: -0.625rem; } - .group:hover .lg\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .lg\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .lg\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .lg\:-left-2\.5 { + left: -0.625rem; } - .group:hover .lg\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .lg\:-top-3\.5 { + top: -0.875rem; } - .group:hover .lg\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .lg\:-right-3\.5 { + right: -0.875rem; } - .group:hover .lg\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .lg\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .lg\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .lg\:-left-3\.5 { + left: -0.875rem; } - .group:hover .lg\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .lg\:top-1\/2 { + top: 50%; } - .group:hover .lg\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .lg\:right-1\/2 { + right: 50%; } - .group:hover .lg\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .lg\:bottom-1\/2 { + bottom: 50%; } - .group:hover .lg\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .lg\:left-1\/2 { + left: 50%; } - .group:hover .lg\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .lg\:top-1\/3 { + top: 33.333333%; } - .group:hover .lg\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .lg\:right-1\/3 { + right: 33.333333%; } - .group:hover .lg\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .lg\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .lg\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .lg\:left-1\/3 { + left: 33.333333%; } - .group:hover .lg\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .lg\:top-2\/3 { + top: 66.666667%; } - .group:hover .lg\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .lg\:right-2\/3 { + right: 66.666667%; } - .group:hover .lg\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .lg\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .lg\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .lg\:left-2\/3 { + left: 66.666667%; } - .group:hover .lg\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .lg\:top-1\/4 { + top: 25%; } - .group:hover .lg\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .lg\:right-1\/4 { + right: 25%; } - .group:hover .lg\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .lg\:bottom-1\/4 { + bottom: 25%; } - .group:hover .lg\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .lg\:left-1\/4 { + left: 25%; } - .group:hover .lg\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .lg\:top-2\/4 { + top: 50%; } - .group:hover .lg\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .lg\:right-2\/4 { + right: 50%; } - .group:hover .lg\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .lg\:bottom-2\/4 { + bottom: 50%; } - .group:hover .lg\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .lg\:left-2\/4 { + left: 50%; } - .group:hover .lg\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .lg\:top-3\/4 { + top: 75%; } - .group:hover .lg\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .lg\:right-3\/4 { + right: 75%; } - .group:hover .lg\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .lg\:bottom-3\/4 { + bottom: 75%; } - .group:hover .lg\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .lg\:left-3\/4 { + left: 75%; } - .group:hover .lg\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .lg\:top-full { + top: 100%; } - .group:hover .lg\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .lg\:right-full { + right: 100%; } - .group:hover .lg\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .lg\:bottom-full { + bottom: 100%; } - .group:hover .lg\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .lg\:left-full { + left: 100%; } - .group:hover .lg\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .lg\:-top-1\/2 { + top: -50%; } - .group:hover .lg\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .lg\:-right-1\/2 { + right: -50%; } - .group:hover .lg\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .lg\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .lg\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .lg\:-left-1\/2 { + left: -50%; } - .group:hover .lg\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .lg\:-top-1\/3 { + top: -33.333333%; } - .group:hover .lg\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .lg\:-right-1\/3 { + right: -33.333333%; } - .group:hover .lg\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .lg\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .lg\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .lg\:-left-1\/3 { + left: -33.333333%; } - .group:hover .lg\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .lg\:-top-2\/3 { + top: -66.666667%; } - .group:hover .lg\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .lg\:-right-2\/3 { + right: -66.666667%; } - .group:hover .lg\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .lg\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .lg\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .lg\:-left-2\/3 { + left: -66.666667%; } - .group:hover .lg\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .lg\:-top-1\/4 { + top: -25%; } - .group:hover .lg\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .lg\:-right-1\/4 { + right: -25%; } - .lg\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .lg\:-bottom-1\/4 { + bottom: -25%; } - .lg\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .lg\:-left-1\/4 { + left: -25%; } - .lg\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .lg\:-top-2\/4 { + top: -50%; } - .lg\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .lg\:-right-2\/4 { + right: -50%; } - .lg\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .lg\:-bottom-2\/4 { + bottom: -50%; } - .lg\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .lg\:-left-2\/4 { + left: -50%; } - .lg\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .lg\:-top-3\/4 { + top: -75%; } - .lg\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .lg\:-right-3\/4 { + right: -75%; } - .lg\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .lg\:-bottom-3\/4 { + bottom: -75%; } - .lg\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .lg\:-left-3\/4 { + left: -75%; } - .lg\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .lg\:-top-full { + top: -100%; } - .lg\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .lg\:-right-full { + right: -100%; } - .lg\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .lg\:-bottom-full { + bottom: -100%; } - .lg\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .lg\:-left-full { + left: -100%; } - .lg\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .lg\:isolate { + isolation: isolate; } - .lg\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .lg\:isolation-auto { + isolation: auto; } - .lg\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .lg\:z-0 { + z-index: 0; } - .lg\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .lg\:z-10 { + z-index: 10; } - .lg\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .lg\:z-20 { + z-index: 20; } - .lg\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .lg\:z-30 { + z-index: 30; } - .lg\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .lg\:z-40 { + z-index: 40; } - .lg\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .lg\:z-50 { + z-index: 50; } - .lg\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .lg\:z-auto { + z-index: auto; } - .lg\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .lg\:focus-within\:z-0:focus-within { + z-index: 0; } - .lg\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .lg\:focus-within\:z-10:focus-within { + z-index: 10; } - .lg\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .lg\:focus-within\:z-20:focus-within { + z-index: 20; } - .lg\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .lg\:focus-within\:z-30:focus-within { + z-index: 30; } - .lg\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .lg\:focus-within\:z-40:focus-within { + z-index: 40; } - .lg\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .lg\:focus-within\:z-50:focus-within { + z-index: 50; } - .lg\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .lg\:focus-within\:z-auto:focus-within { + z-index: auto; } - .lg\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .lg\:focus\:z-0:focus { + z-index: 0; } - .lg\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .lg\:focus\:z-10:focus { + z-index: 10; } - .lg\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .lg\:focus\:z-20:focus { + z-index: 20; } - .lg\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .lg\:focus\:z-30:focus { + z-index: 30; } - .lg\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .lg\:focus\:z-40:focus { + z-index: 40; } - .lg\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .lg\:focus\:z-50:focus { + z-index: 50; } - .lg\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .lg\:focus\:z-auto:focus { + z-index: auto; } - .lg\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .lg\:order-1 { + order: 1; } - .lg\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .lg\:order-2 { + order: 2; } - .lg\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .lg\:order-3 { + order: 3; } - .lg\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .lg\:order-4 { + order: 4; } - .lg\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .lg\:order-5 { + order: 5; } - .lg\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .lg\:order-6 { + order: 6; } - .lg\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .lg\:order-7 { + order: 7; } - .lg\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .lg\:order-8 { + order: 8; } - .lg\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .lg\:order-9 { + order: 9; } - .lg\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .lg\:order-10 { + order: 10; } - .lg\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .lg\:order-11 { + order: 11; } - .lg\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .lg\:order-12 { + order: 12; } - .lg\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .lg\:order-first { + order: -9999; } - .lg\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .lg\:order-last { + order: 9999; } - .lg\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .lg\:order-none { + order: 0; } - .lg\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .lg\:col-auto { + grid-column: auto; } - .lg\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .lg\:col-span-1 { + grid-column: span 1 / span 1; } - .lg\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .lg\:col-span-2 { + grid-column: span 2 / span 2; } - .lg\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .lg\:col-span-3 { + grid-column: span 3 / span 3; } - .lg\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .lg\:col-span-4 { + grid-column: span 4 / span 4; } - .lg\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .lg\:col-span-5 { + grid-column: span 5 / span 5; } - .lg\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .lg\:col-span-6 { + grid-column: span 6 / span 6; } - .lg\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .lg\:col-span-7 { + grid-column: span 7 / span 7; } - .lg\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .lg\:col-span-8 { + grid-column: span 8 / span 8; } - .lg\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .lg\:col-span-9 { + grid-column: span 9 / span 9; } - .lg\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .lg\:col-span-10 { + grid-column: span 10 / span 10; } - .lg\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .lg\:col-span-11 { + grid-column: span 11 / span 11; } - .lg\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .lg\:col-span-12 { + grid-column: span 12 / span 12; } - .lg\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .lg\:col-span-full { + grid-column: 1 / -1; } - .lg\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .lg\:col-start-1 { + grid-column-start: 1; } - .lg\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .lg\:col-start-2 { + grid-column-start: 2; } - .lg\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .lg\:col-start-3 { + grid-column-start: 3; } - .lg\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .lg\:col-start-4 { + grid-column-start: 4; } - .lg\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .lg\:col-start-5 { + grid-column-start: 5; } - .lg\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .lg\:col-start-6 { + grid-column-start: 6; } - .lg\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .lg\:col-start-7 { + grid-column-start: 7; } - .lg\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .lg\:col-start-8 { + grid-column-start: 8; } - .lg\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .lg\:col-start-9 { + grid-column-start: 9; } - .lg\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .lg\:col-start-10 { + grid-column-start: 10; } - .lg\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .lg\:col-start-11 { + grid-column-start: 11; } - .lg\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .lg\:col-start-12 { + grid-column-start: 12; } - .lg\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .lg\:col-start-13 { + grid-column-start: 13; } - .lg\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .lg\:col-start-auto { + grid-column-start: auto; } - .lg\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .lg\:col-end-1 { + grid-column-end: 1; } - .lg\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .lg\:col-end-2 { + grid-column-end: 2; } - .lg\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .lg\:col-end-3 { + grid-column-end: 3; } - .lg\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .lg\:col-end-4 { + grid-column-end: 4; } - .lg\:hover\:bg-transparent:hover { - background-color: transparent; + .lg\:col-end-5 { + grid-column-end: 5; } - .lg\:hover\:bg-current:hover { - background-color: currentColor; + .lg\:col-end-6 { + grid-column-end: 6; } - .lg\:hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .lg\:col-end-7 { + grid-column-end: 7; } - .lg\:hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .lg\:col-end-8 { + grid-column-end: 8; } - .lg\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .lg\:col-end-9 { + grid-column-end: 9; } - .lg\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .lg\:col-end-10 { + grid-column-end: 10; } - .lg\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .lg\:col-end-11 { + grid-column-end: 11; } - .lg\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .lg\:col-end-12 { + grid-column-end: 12; } - .lg\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .lg\:col-end-13 { + grid-column-end: 13; } - .lg\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .lg\:col-end-auto { + grid-column-end: auto; } - .lg\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .lg\:row-auto { + grid-row: auto; } - .lg\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .lg\:row-span-1 { + grid-row: span 1 / span 1; } - .lg\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .lg\:row-span-2 { + grid-row: span 2 / span 2; } - .lg\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .lg\:row-span-3 { + grid-row: span 3 / span 3; } - .lg\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .lg\:row-span-4 { + grid-row: span 4 / span 4; } - .lg\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .lg\:row-span-5 { + grid-row: span 5 / span 5; } - .lg\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .lg\:row-span-6 { + grid-row: span 6 / span 6; } - .lg\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .lg\:row-span-full { + grid-row: 1 / -1; } - .lg\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .lg\:row-start-1 { + grid-row-start: 1; } - .lg\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .lg\:row-start-2 { + grid-row-start: 2; } - .lg\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .lg\:row-start-3 { + grid-row-start: 3; } - .lg\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .lg\:row-start-4 { + grid-row-start: 4; } - .lg\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .lg\:row-start-5 { + grid-row-start: 5; } - .lg\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .lg\:row-start-6 { + grid-row-start: 6; } - .lg\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .lg\:row-start-7 { + grid-row-start: 7; } - .lg\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .lg\:row-start-auto { + grid-row-start: auto; } - .lg\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .lg\:row-end-1 { + grid-row-end: 1; } - .lg\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .lg\:row-end-2 { + grid-row-end: 2; } - .lg\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .lg\:row-end-3 { + grid-row-end: 3; } - .lg\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .lg\:row-end-4 { + grid-row-end: 4; } - .lg\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .lg\:row-end-5 { + grid-row-end: 5; } - .lg\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .lg\:row-end-6 { + grid-row-end: 6; } - .lg\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .lg\:row-end-7 { + grid-row-end: 7; } - .lg\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .lg\:row-end-auto { + grid-row-end: auto; } - .lg\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .lg\:float-right { + float: right; } - .lg\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .lg\:float-left { + float: left; } - .lg\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .lg\:float-none { + float: none; } - .lg\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .lg\:clear-left { + clear: left; } - .lg\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .lg\:clear-right { + clear: right; } - .lg\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .lg\:clear-both { + clear: both; } - .lg\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .lg\:clear-none { + clear: none; } - .lg\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .lg\:m-0 { + margin: 0px; } - .lg\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .lg\:m-1 { + margin: 0.25rem; } - .lg\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .lg\:m-2 { + margin: 0.5rem; } - .lg\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .lg\:m-3 { + margin: 0.75rem; } - .lg\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .lg\:m-4 { + margin: 1rem; } - .lg\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .lg\:m-5 { + margin: 1.25rem; } - .lg\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .lg\:m-6 { + margin: 1.5rem; } - .lg\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .lg\:m-7 { + margin: 1.75rem; } - .lg\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .lg\:m-8 { + margin: 2rem; } - .lg\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .lg\:m-9 { + margin: 2.25rem; } - .lg\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .lg\:m-10 { + margin: 2.5rem; } - .lg\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .lg\:m-11 { + margin: 2.75rem; } - .lg\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .lg\:m-12 { + margin: 3rem; } - .lg\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .lg\:m-14 { + margin: 3.5rem; } - .lg\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .lg\:m-16 { + margin: 4rem; } - .lg\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .lg\:m-20 { + margin: 5rem; } - .lg\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .lg\:m-24 { + margin: 6rem; } - .lg\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .lg\:m-28 { + margin: 7rem; } - .lg\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .lg\:m-32 { + margin: 8rem; } - .lg\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .lg\:m-36 { + margin: 9rem; } - .lg\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .lg\:m-40 { + margin: 10rem; } - .lg\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .lg\:m-44 { + margin: 11rem; } - .lg\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .lg\:m-48 { + margin: 12rem; } - .lg\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .lg\:m-52 { + margin: 13rem; } - .lg\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .lg\:m-56 { + margin: 14rem; } - .lg\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .lg\:m-60 { + margin: 15rem; } - .lg\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .lg\:m-64 { + margin: 16rem; } - .lg\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .lg\:m-72 { + margin: 18rem; } - .lg\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .lg\:m-80 { + margin: 20rem; } - .lg\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .lg\:m-96 { + margin: 24rem; } - .lg\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .lg\:m-auto { + margin: auto; } - .lg\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .lg\:m-px { + margin: 1px; } - .lg\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .lg\:m-0\.5 { + margin: 0.125rem; } - .lg\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .lg\:m-1\.5 { + margin: 0.375rem; } - .lg\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .lg\:m-2\.5 { + margin: 0.625rem; } - .lg\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .lg\:m-3\.5 { + margin: 0.875rem; } - .lg\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .lg\:-m-0 { + margin: 0px; } - .lg\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .lg\:-m-1 { + margin: -0.25rem; } - .lg\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .lg\:-m-2 { + margin: -0.5rem; } - .lg\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .lg\:-m-3 { + margin: -0.75rem; } - .lg\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .lg\:-m-4 { + margin: -1rem; } - .lg\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .lg\:-m-5 { + margin: -1.25rem; } - .lg\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .lg\:-m-6 { + margin: -1.5rem; } - .lg\:focus\:bg-transparent:focus { - background-color: transparent; + .lg\:-m-7 { + margin: -1.75rem; } - .lg\:focus\:bg-current:focus { - background-color: currentColor; + .lg\:-m-8 { + margin: -2rem; } - .lg\:focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .lg\:-m-9 { + margin: -2.25rem; } - .lg\:focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .lg\:-m-10 { + margin: -2.5rem; } - .lg\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .lg\:-m-11 { + margin: -2.75rem; } - .lg\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .lg\:-m-12 { + margin: -3rem; } - .lg\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .lg\:-m-14 { + margin: -3.5rem; } - .lg\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .lg\:-m-16 { + margin: -4rem; } - .lg\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .lg\:-m-20 { + margin: -5rem; } - .lg\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .lg\:-m-24 { + margin: -6rem; } - .lg\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .lg\:-m-28 { + margin: -7rem; } - .lg\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .lg\:-m-32 { + margin: -8rem; } - .lg\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .lg\:-m-36 { + margin: -9rem; } - .lg\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .lg\:-m-40 { + margin: -10rem; } - .lg\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .lg\:-m-44 { + margin: -11rem; } - .lg\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .lg\:-m-48 { + margin: -12rem; } - .lg\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .lg\:-m-52 { + margin: -13rem; } - .lg\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .lg\:-m-56 { + margin: -14rem; } - .lg\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .lg\:-m-60 { + margin: -15rem; } - .lg\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .lg\:-m-64 { + margin: -16rem; } - .lg\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .lg\:-m-72 { + margin: -18rem; } - .lg\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .lg\:-m-80 { + margin: -20rem; } - .lg\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .lg\:-m-96 { + margin: -24rem; } - .lg\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .lg\:-m-px { + margin: -1px; } - .lg\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .lg\:-m-0\.5 { + margin: -0.125rem; } - .lg\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .lg\:-m-1\.5 { + margin: -0.375rem; } - .lg\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .lg\:-m-2\.5 { + margin: -0.625rem; } - .lg\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .lg\:-m-3\.5 { + margin: -0.875rem; } - .lg\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .lg\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .lg\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .lg\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .lg\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .lg\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .lg\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .lg\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .lg\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .lg\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .lg\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .lg\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .lg\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .lg\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .lg\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .lg\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .lg\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .lg\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .lg\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .lg\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .lg\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .lg\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .lg\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .lg\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .lg\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .lg\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .lg\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .lg\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .lg\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .lg\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .lg\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .lg\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .lg\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .lg\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .lg\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .lg\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .lg\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .lg\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .lg\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .lg\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .lg\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .lg\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .lg\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .lg\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .lg\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .lg\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .lg\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .lg\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .lg\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .lg\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .lg\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .lg\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .lg\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .lg\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .lg\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .lg\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .lg\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .lg\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .lg\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .lg\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .lg\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .lg\:mx-auto { + margin-left: auto; + margin-right: auto; } - .lg\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .lg\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .lg\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .lg\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .lg\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .lg\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .lg\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .lg\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .lg\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .lg\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .lg\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .lg\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .lg\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .lg\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .lg\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .lg\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .lg\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .lg\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .lg\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .lg\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .lg\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .lg\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .lg\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .lg\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .lg\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .lg\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .lg\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .lg\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .lg\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .lg\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .lg\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .lg\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .lg\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .lg\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .lg\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .lg\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .lg\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .lg\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .lg\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .lg\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .lg\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .lg\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .lg\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .lg\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .lg\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .lg\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .lg\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .lg\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .lg\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .lg\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .lg\:bg-none { - background-image: none; + .lg\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .lg\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .lg\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .lg\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .lg\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .lg\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .lg\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .lg\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .lg\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .lg\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .lg\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .lg\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .lg\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .lg\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .lg\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .lg\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .lg\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .lg\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .lg\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .lg\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .lg\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .lg\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .lg\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .lg\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .lg\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .lg\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .lg\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .lg\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .lg\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .lg\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .lg\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .lg\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .lg\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .lg\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .lg\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .lg\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .lg\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .lg\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .lg\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .lg\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .lg\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .lg\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .lg\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .lg\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .lg\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .lg\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .lg\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .lg\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .lg\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .lg\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .lg\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .lg\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .lg\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .lg\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .lg\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .lg\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .lg\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .lg\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .lg\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .lg\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .lg\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .lg\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .lg\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .lg\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .lg\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .lg\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .lg\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .lg\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .lg\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .lg\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .lg\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .lg\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .lg\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .lg\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .lg\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .lg\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .lg\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .lg\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .lg\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .lg\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .lg\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .lg\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .lg\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .lg\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .lg\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .lg\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .lg\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .lg\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .lg\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .lg\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .lg\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .lg\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .lg\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .lg\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .lg\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:mt-0 { + margin-top: 0px; } - .lg\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:mt-1 { + margin-top: 0.25rem; } - .lg\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:mt-2 { + margin-top: 0.5rem; } - .lg\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:mt-3 { + margin-top: 0.75rem; } - .lg\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:mt-4 { + margin-top: 1rem; } - .lg\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:mt-5 { + margin-top: 1.25rem; } - .lg\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:mt-6 { + margin-top: 1.5rem; } - .lg\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:mt-7 { + margin-top: 1.75rem; } - .lg\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:mt-8 { + margin-top: 2rem; } - .lg\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:mt-9 { + margin-top: 2.25rem; } - .lg\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:mt-10 { + margin-top: 2.5rem; } - .lg\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:mt-11 { + margin-top: 2.75rem; } - .lg\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:mt-12 { + margin-top: 3rem; } - .lg\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:mt-14 { + margin-top: 3.5rem; } - .lg\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:mt-16 { + margin-top: 4rem; } - .lg\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:mt-20 { + margin-top: 5rem; } - .lg\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:mt-24 { + margin-top: 6rem; } - .lg\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:mt-28 { + margin-top: 7rem; } - .lg\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:mt-32 { + margin-top: 8rem; } - .lg\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:mt-36 { + margin-top: 9rem; } - .lg\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:mt-40 { + margin-top: 10rem; } - .lg\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:mt-44 { + margin-top: 11rem; } - .lg\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:mt-48 { + margin-top: 12rem; } - .lg\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:mt-52 { + margin-top: 13rem; } - .lg\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:mt-56 { + margin-top: 14rem; } - .lg\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:mt-60 { + margin-top: 15rem; } - .lg\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:mt-64 { + margin-top: 16rem; } - .lg\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:mt-72 { + margin-top: 18rem; } - .lg\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:mt-80 { + margin-top: 20rem; } - .lg\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:mt-96 { + margin-top: 24rem; } - .lg\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:mt-auto { + margin-top: auto; } - .lg\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:mt-px { + margin-top: 1px; } - .lg\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:mt-0\.5 { + margin-top: 0.125rem; } - .lg\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:mt-1\.5 { + margin-top: 0.375rem; } - .lg\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:mt-2\.5 { + margin-top: 0.625rem; } - .lg\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:mt-3\.5 { + margin-top: 0.875rem; } - .lg\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:-mt-0 { + margin-top: 0px; } - .lg\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:-mt-1 { + margin-top: -0.25rem; } - .lg\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:-mt-2 { + margin-top: -0.5rem; } - .lg\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:-mt-3 { + margin-top: -0.75rem; } - .lg\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:-mt-4 { + margin-top: -1rem; } - .lg\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:-mt-5 { + margin-top: -1.25rem; } - .lg\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:-mt-6 { + margin-top: -1.5rem; } - .lg\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:-mt-7 { + margin-top: -1.75rem; } - .lg\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:-mt-8 { + margin-top: -2rem; } - .lg\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:-mt-9 { + margin-top: -2.25rem; } - .lg\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:-mt-10 { + margin-top: -2.5rem; } - .lg\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:-mt-11 { + margin-top: -2.75rem; } - .lg\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:-mt-12 { + margin-top: -3rem; } - .lg\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:-mt-14 { + margin-top: -3.5rem; } - .lg\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:-mt-16 { + margin-top: -4rem; } - .lg\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:-mt-20 { + margin-top: -5rem; } - .lg\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:-mt-24 { + margin-top: -6rem; } - .lg\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:-mt-28 { + margin-top: -7rem; } - .lg\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:-mt-32 { + margin-top: -8rem; } - .lg\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:-mt-36 { + margin-top: -9rem; } - .lg\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:-mt-40 { + margin-top: -10rem; } - .lg\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:-mt-44 { + margin-top: -11rem; } - .lg\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:-mt-48 { + margin-top: -12rem; } - .lg\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:-mt-52 { + margin-top: -13rem; } - .lg\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:-mt-56 { + margin-top: -14rem; } - .lg\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:-mt-60 { + margin-top: -15rem; } - .lg\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:-mt-64 { + margin-top: -16rem; } - .lg\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:-mt-72 { + margin-top: -18rem; } - .lg\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:-mt-80 { + margin-top: -20rem; } - .lg\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:-mt-96 { + margin-top: -24rem; } - .lg\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:-mt-px { + margin-top: -1px; } - .lg\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:-mt-0\.5 { + margin-top: -0.125rem; } - .lg\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:-mt-1\.5 { + margin-top: -0.375rem; } - .lg\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:-mt-2\.5 { + margin-top: -0.625rem; } - .lg\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:-mt-3\.5 { + margin-top: -0.875rem; } - .lg\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:mr-0 { + margin-right: 0px; } - .lg\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:mr-1 { + margin-right: 0.25rem; } - .lg\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:mr-2 { + margin-right: 0.5rem; } - .lg\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:mr-3 { + margin-right: 0.75rem; } - .lg\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:mr-4 { + margin-right: 1rem; } - .lg\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:mr-5 { + margin-right: 1.25rem; } - .lg\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:mr-6 { + margin-right: 1.5rem; } - .lg\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:mr-7 { + margin-right: 1.75rem; } - .lg\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:mr-8 { + margin-right: 2rem; } - .lg\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:mr-9 { + margin-right: 2.25rem; } - .lg\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:mr-10 { + margin-right: 2.5rem; } - .lg\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:mr-11 { + margin-right: 2.75rem; } - .lg\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:mr-12 { + margin-right: 3rem; } - .lg\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:mr-14 { + margin-right: 3.5rem; } - .lg\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:mr-16 { + margin-right: 4rem; } - .lg\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:mr-20 { + margin-right: 5rem; } - .lg\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:mr-24 { + margin-right: 6rem; } - .lg\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:mr-28 { + margin-right: 7rem; } - .lg\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:mr-32 { + margin-right: 8rem; } - .lg\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:mr-36 { + margin-right: 9rem; } - .lg\:to-transparent { - --tw-gradient-to: transparent; + .lg\:mr-40 { + margin-right: 10rem; } - .lg\:to-current { - --tw-gradient-to: currentColor; + .lg\:mr-44 { + margin-right: 11rem; } - .lg\:to-black { - --tw-gradient-to: #000; + .lg\:mr-48 { + margin-right: 12rem; } - .lg\:to-white { - --tw-gradient-to: #fff; + .lg\:mr-52 { + margin-right: 13rem; } - .lg\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .lg\:mr-56 { + margin-right: 14rem; } - .lg\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .lg\:mr-60 { + margin-right: 15rem; } - .lg\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .lg\:mr-64 { + margin-right: 16rem; } - .lg\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .lg\:mr-72 { + margin-right: 18rem; } - .lg\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .lg\:mr-80 { + margin-right: 20rem; } - .lg\:to-gray-500 { - --tw-gradient-to: #6b7280; + .lg\:mr-96 { + margin-right: 24rem; } - .lg\:to-gray-600 { - --tw-gradient-to: #4b5563; + .lg\:mr-auto { + margin-right: auto; } - .lg\:to-gray-700 { - --tw-gradient-to: #374151; + .lg\:mr-px { + margin-right: 1px; } - .lg\:to-gray-800 { - --tw-gradient-to: #1f2937; + .lg\:mr-0\.5 { + margin-right: 0.125rem; } - .lg\:to-gray-900 { - --tw-gradient-to: #111827; + .lg\:mr-1\.5 { + margin-right: 0.375rem; } - .lg\:to-red-50 { - --tw-gradient-to: #fef2f2; + .lg\:mr-2\.5 { + margin-right: 0.625rem; } - .lg\:to-red-100 { - --tw-gradient-to: #fee2e2; + .lg\:mr-3\.5 { + margin-right: 0.875rem; } - .lg\:to-red-200 { - --tw-gradient-to: #fecaca; + .lg\:-mr-0 { + margin-right: 0px; } - .lg\:to-red-300 { - --tw-gradient-to: #fca5a5; + .lg\:-mr-1 { + margin-right: -0.25rem; } - .lg\:to-red-400 { - --tw-gradient-to: #f87171; + .lg\:-mr-2 { + margin-right: -0.5rem; } - .lg\:to-red-500 { - --tw-gradient-to: #ef4444; + .lg\:-mr-3 { + margin-right: -0.75rem; } - .lg\:to-red-600 { - --tw-gradient-to: #dc2626; + .lg\:-mr-4 { + margin-right: -1rem; } - .lg\:to-red-700 { - --tw-gradient-to: #b91c1c; + .lg\:-mr-5 { + margin-right: -1.25rem; } - .lg\:to-red-800 { - --tw-gradient-to: #991b1b; + .lg\:-mr-6 { + margin-right: -1.5rem; } - .lg\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .lg\:-mr-7 { + margin-right: -1.75rem; } - .lg\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .lg\:-mr-8 { + margin-right: -2rem; } - .lg\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .lg\:-mr-9 { + margin-right: -2.25rem; } - .lg\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .lg\:-mr-10 { + margin-right: -2.5rem; } - .lg\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .lg\:-mr-11 { + margin-right: -2.75rem; } - .lg\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .lg\:-mr-12 { + margin-right: -3rem; } - .lg\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .lg\:-mr-14 { + margin-right: -3.5rem; } - .lg\:to-yellow-600 { - --tw-gradient-to: #d97706; + .lg\:-mr-16 { + margin-right: -4rem; } - .lg\:to-yellow-700 { - --tw-gradient-to: #b45309; + .lg\:-mr-20 { + margin-right: -5rem; } - .lg\:to-yellow-800 { - --tw-gradient-to: #92400e; + .lg\:-mr-24 { + margin-right: -6rem; } - .lg\:to-yellow-900 { - --tw-gradient-to: #78350f; + .lg\:-mr-28 { + margin-right: -7rem; } - .lg\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .lg\:-mr-32 { + margin-right: -8rem; } - .lg\:to-green-100 { - --tw-gradient-to: #d1fae5; + .lg\:-mr-36 { + margin-right: -9rem; } - .lg\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .lg\:-mr-40 { + margin-right: -10rem; } - .lg\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .lg\:-mr-44 { + margin-right: -11rem; } - .lg\:to-green-400 { - --tw-gradient-to: #34d399; + .lg\:-mr-48 { + margin-right: -12rem; } - .lg\:to-green-500 { - --tw-gradient-to: #10b981; + .lg\:-mr-52 { + margin-right: -13rem; } - .lg\:to-green-600 { - --tw-gradient-to: #059669; + .lg\:-mr-56 { + margin-right: -14rem; } - .lg\:to-green-700 { - --tw-gradient-to: #047857; + .lg\:-mr-60 { + margin-right: -15rem; } - .lg\:to-green-800 { - --tw-gradient-to: #065f46; + .lg\:-mr-64 { + margin-right: -16rem; } - .lg\:to-green-900 { - --tw-gradient-to: #064e3b; + .lg\:-mr-72 { + margin-right: -18rem; } - .lg\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .lg\:-mr-80 { + margin-right: -20rem; } - .lg\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .lg\:-mr-96 { + margin-right: -24rem; } - .lg\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .lg\:-mr-px { + margin-right: -1px; } - .lg\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .lg\:-mr-0\.5 { + margin-right: -0.125rem; } - .lg\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .lg\:-mr-1\.5 { + margin-right: -0.375rem; } - .lg\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .lg\:-mr-2\.5 { + margin-right: -0.625rem; } - .lg\:to-blue-600 { - --tw-gradient-to: #2563eb; + .lg\:-mr-3\.5 { + margin-right: -0.875rem; } - .lg\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .lg\:mb-0 { + margin-bottom: 0px; } - .lg\:to-blue-800 { - --tw-gradient-to: #1e40af; + .lg\:mb-1 { + margin-bottom: 0.25rem; } - .lg\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .lg\:mb-2 { + margin-bottom: 0.5rem; } - .lg\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .lg\:mb-3 { + margin-bottom: 0.75rem; } - .lg\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .lg\:mb-4 { + margin-bottom: 1rem; } - .lg\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .lg\:mb-5 { + margin-bottom: 1.25rem; } - .lg\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .lg\:mb-6 { + margin-bottom: 1.5rem; } - .lg\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .lg\:mb-7 { + margin-bottom: 1.75rem; } - .lg\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .lg\:mb-8 { + margin-bottom: 2rem; } - .lg\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .lg\:mb-9 { + margin-bottom: 2.25rem; } - .lg\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .lg\:mb-10 { + margin-bottom: 2.5rem; } - .lg\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .lg\:mb-11 { + margin-bottom: 2.75rem; } - .lg\:to-indigo-900 { - --tw-gradient-to: #312e81; + .lg\:mb-12 { + margin-bottom: 3rem; } - .lg\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .lg\:mb-14 { + margin-bottom: 3.5rem; } - .lg\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .lg\:mb-16 { + margin-bottom: 4rem; } - .lg\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .lg\:mb-20 { + margin-bottom: 5rem; } - .lg\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .lg\:mb-24 { + margin-bottom: 6rem; } - .lg\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .lg\:mb-28 { + margin-bottom: 7rem; } - .lg\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .lg\:mb-32 { + margin-bottom: 8rem; } - .lg\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .lg\:mb-36 { + margin-bottom: 9rem; } - .lg\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .lg\:mb-40 { + margin-bottom: 10rem; } - .lg\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .lg\:mb-44 { + margin-bottom: 11rem; } - .lg\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .lg\:mb-48 { + margin-bottom: 12rem; } - .lg\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .lg\:mb-52 { + margin-bottom: 13rem; } - .lg\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .lg\:mb-56 { + margin-bottom: 14rem; } - .lg\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .lg\:mb-60 { + margin-bottom: 15rem; } - .lg\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .lg\:mb-64 { + margin-bottom: 16rem; } - .lg\:to-pink-400 { - --tw-gradient-to: #f472b6; + .lg\:mb-72 { + margin-bottom: 18rem; } - .lg\:to-pink-500 { - --tw-gradient-to: #ec4899; + .lg\:mb-80 { + margin-bottom: 20rem; } - .lg\:to-pink-600 { - --tw-gradient-to: #db2777; + .lg\:mb-96 { + margin-bottom: 24rem; } - .lg\:to-pink-700 { - --tw-gradient-to: #be185d; + .lg\:mb-auto { + margin-bottom: auto; } - .lg\:to-pink-800 { - --tw-gradient-to: #9d174d; + .lg\:mb-px { + margin-bottom: 1px; } - .lg\:to-pink-900 { - --tw-gradient-to: #831843; + .lg\:mb-0\.5 { + margin-bottom: 0.125rem; } - .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\:mb-1\.5 { + margin-bottom: 0.375rem; } - .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\:mb-2\.5 { + margin-bottom: 0.625rem; } - .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\:mb-3\.5 { + margin-bottom: 0.875rem; } - .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\:-mb-0 { + margin-bottom: 0px; } - .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\:-mb-1 { + margin-bottom: -0.25rem; } - .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\:-mb-2 { + margin-bottom: -0.5rem; } - .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\:-mb-3 { + margin-bottom: -0.75rem; } - .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\:-mb-4 { + margin-bottom: -1rem; } - .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\:-mb-5 { + margin-bottom: -1.25rem; } - .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\:-mb-6 { + margin-bottom: -1.5rem; } - .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\:-mb-7 { + margin-bottom: -1.75rem; } - .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\:-mb-8 { + margin-bottom: -2rem; } - .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\:-mb-9 { + margin-bottom: -2.25rem; } - .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\:-mb-10 { + margin-bottom: -2.5rem; } - .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\:-mb-11 { + margin-bottom: -2.75rem; } - .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\:-mb-12 { + margin-bottom: -3rem; } - .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\:-mb-14 { + margin-bottom: -3.5rem; } - .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\:-mb-16 { + margin-bottom: -4rem; } - .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\:-mb-20 { + margin-bottom: -5rem; } - .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\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .lg\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:-ml-10 { + margin-left: -2.5rem; } - .lg\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:-ml-11 { + margin-left: -2.75rem; } - .lg\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:-ml-12 { + margin-left: -3rem; } - .lg\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:-ml-14 { + margin-left: -3.5rem; } - .lg\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:-ml-16 { + margin-left: -4rem; } - .lg\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:-ml-20 { + margin-left: -5rem; } - .lg\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:-ml-24 { + margin-left: -6rem; } - .lg\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:-ml-28 { + margin-left: -7rem; } - .lg\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:-ml-32 { + margin-left: -8rem; } - .lg\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:-ml-36 { + margin-left: -9rem; } - .lg\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:-ml-40 { + margin-left: -10rem; } - .lg\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:-ml-44 { + margin-left: -11rem; } - .lg\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:-ml-48 { + margin-left: -12rem; } - .lg\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:-ml-52 { + margin-left: -13rem; } - .lg\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:-ml-56 { + margin-left: -14rem; } - .lg\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:-ml-60 { + margin-left: -15rem; } - .lg\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:-ml-64 { + margin-left: -16rem; } - .lg\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:-ml-72 { + margin-left: -18rem; } - .lg\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:-ml-80 { + margin-left: -20rem; } - .lg\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:-ml-96 { + margin-left: -24rem; } - .lg\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:-ml-px { + margin-left: -1px; } - .lg\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:-ml-0\.5 { + margin-left: -0.125rem; } - .lg\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:-ml-1\.5 { + margin-left: -0.375rem; } - .lg\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:-ml-2\.5 { + margin-left: -0.625rem; } - .lg\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:-ml-3\.5 { + margin-left: -0.875rem; } - .lg\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:box-border { + box-sizing: border-box; } - .lg\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:box-content { + box-sizing: content-box; } - .lg\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:block { + display: block; } - .lg\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:inline-block { + display: inline-block; } - .lg\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:inline { + display: inline; } - .lg\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:flex { + display: flex; } - .lg\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:inline-flex { + display: inline-flex; } - .lg\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:table { + display: table; } - .lg\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:inline-table { + display: inline-table; } - .lg\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:table-caption { + display: table-caption; } - .lg\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:table-cell { + display: table-cell; } - .lg\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:table-column { + display: table-column; } - .lg\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:table-column-group { + display: table-column-group; } - .lg\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:table-footer-group { + display: table-footer-group; } - .lg\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:table-header-group { + display: table-header-group; } - .lg\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:table-row-group { + display: table-row-group; } - .lg\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:table-row { + display: table-row; } - .lg\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:flow-root { + display: flow-root; } - .lg\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:grid { + display: grid; } - .lg\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:inline-grid { + display: inline-grid; } - .lg\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:contents { + display: contents; } - .lg\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:list-item { + display: list-item; } - .lg\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:hidden { + display: none; } - .lg\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:h-0 { + height: 0px; } - .lg\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:h-1 { + height: 0.25rem; } - .lg\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:h-2 { + height: 0.5rem; } - .lg\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:h-3 { + height: 0.75rem; } - .lg\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:h-4 { + height: 1rem; } - .lg\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:h-5 { + height: 1.25rem; } - .lg\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:h-6 { + height: 1.5rem; } - .lg\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:h-7 { + height: 1.75rem; } - .lg\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:h-8 { + height: 2rem; } - .lg\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:h-9 { + height: 2.25rem; } - .lg\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:h-10 { + height: 2.5rem; } - .lg\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:h-11 { + height: 2.75rem; } - .lg\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:h-12 { + height: 3rem; } - .lg\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:h-14 { + height: 3.5rem; } - .lg\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:h-16 { + height: 4rem; } - .lg\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:h-20 { + height: 5rem; } - .lg\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:h-24 { + height: 6rem; } - .lg\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:h-28 { + height: 7rem; } - .lg\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:h-32 { + height: 8rem; } - .lg\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:h-36 { + height: 9rem; } - .lg\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:h-40 { + height: 10rem; } - .lg\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:h-44 { + height: 11rem; } - .lg\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:h-48 { + height: 12rem; } - .lg\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:h-52 { + height: 13rem; } - .lg\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:h-56 { + height: 14rem; } - .lg\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:h-60 { + height: 15rem; } - .lg\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:h-64 { + height: 16rem; } - .lg\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:h-72 { + height: 18rem; } - .lg\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:h-80 { + height: 20rem; } - .lg\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:h-96 { + height: 24rem; } - .lg\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:h-auto { + height: auto; } - .lg\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:h-px { + height: 1px; } - .lg\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:h-0\.5 { + height: 0.125rem; } - .lg\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:h-1\.5 { + height: 0.375rem; } - .lg\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:h-2\.5 { + height: 0.625rem; } - .lg\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:h-3\.5 { + height: 0.875rem; } - .lg\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .lg\:h-1\/2 { + height: 50%; } - .lg\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .lg\:h-1\/3 { + height: 33.333333%; } - .lg\:hover\:to-black:hover { - --tw-gradient-to: #000; + .lg\:h-2\/3 { + height: 66.666667%; } - .lg\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .lg\:h-1\/4 { + height: 25%; } - .lg\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .lg\:h-2\/4 { + height: 50%; } - .lg\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .lg\:h-3\/4 { + height: 75%; } - .lg\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .lg\:h-1\/5 { + height: 20%; } - .lg\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .lg\:h-2\/5 { + height: 40%; } - .lg\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .lg\:h-3\/5 { + height: 60%; } - .lg\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .lg\:h-4\/5 { + height: 80%; } - .lg\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .lg\:h-1\/6 { + height: 16.666667%; } - .lg\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .lg\:h-2\/6 { + height: 33.333333%; } - .lg\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .lg\:h-3\/6 { + height: 50%; } - .lg\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .lg\:h-4\/6 { + height: 66.666667%; } - .lg\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .lg\:h-5\/6 { + height: 83.333333%; } - .lg\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .lg\:h-full { + height: 100%; } - .lg\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .lg\:h-screen { + height: 100vh; } - .lg\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .lg\:max-h-0 { + max-height: 0px; } - .lg\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .lg\:max-h-1 { + max-height: 0.25rem; } - .lg\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .lg\:max-h-2 { + max-height: 0.5rem; } - .lg\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .lg\:max-h-3 { + max-height: 0.75rem; } - .lg\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .lg\:max-h-4 { + max-height: 1rem; } - .lg\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .lg\:max-h-5 { + max-height: 1.25rem; } - .lg\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .lg\:max-h-6 { + max-height: 1.5rem; } - .lg\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .lg\:max-h-7 { + max-height: 1.75rem; } - .lg\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .lg\:max-h-8 { + max-height: 2rem; } - .lg\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .lg\:max-h-9 { + max-height: 2.25rem; } - .lg\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .lg\:max-h-10 { + max-height: 2.5rem; } - .lg\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .lg\:max-h-11 { + max-height: 2.75rem; } - .lg\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .lg\:max-h-12 { + max-height: 3rem; } - .lg\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .lg\:max-h-14 { + max-height: 3.5rem; } - .lg\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .lg\:max-h-16 { + max-height: 4rem; } - .lg\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .lg\:max-h-20 { + max-height: 5rem; } - .lg\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .lg\:max-h-24 { + max-height: 6rem; } - .lg\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .lg\:max-h-28 { + max-height: 7rem; } - .lg\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .lg\:max-h-32 { + max-height: 8rem; } - .lg\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .lg\:max-h-36 { + max-height: 9rem; } - .lg\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .lg\:max-h-40 { + max-height: 10rem; } - .lg\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .lg\:max-h-44 { + max-height: 11rem; } - .lg\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .lg\:max-h-48 { + max-height: 12rem; } - .lg\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .lg\:max-h-52 { + max-height: 13rem; } - .lg\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .lg\:max-h-56 { + max-height: 14rem; } - .lg\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .lg\:max-h-60 { + max-height: 15rem; } - .lg\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .lg\:max-h-64 { + max-height: 16rem; } - .lg\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .lg\:max-h-72 { + max-height: 18rem; } - .lg\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .lg\:max-h-80 { + max-height: 20rem; } - .lg\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .lg\:max-h-96 { + max-height: 24rem; } - .lg\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .lg\:max-h-px { + max-height: 1px; } - .lg\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .lg\:max-h-0\.5 { + max-height: 0.125rem; } - .lg\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .lg\:max-h-1\.5 { + max-height: 0.375rem; } - .lg\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .lg\:max-h-2\.5 { + max-height: 0.625rem; } - .lg\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .lg\:max-h-3\.5 { + max-height: 0.875rem; } - .lg\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .lg\:max-h-full { + max-height: 100%; } - .lg\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .lg\:max-h-screen { + max-height: 100vh; } - .lg\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .lg\:min-h-0 { + min-height: 0px; } - .lg\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .lg\:min-h-full { + min-height: 100%; } - .lg\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .lg\:min-h-screen { + min-height: 100vh; } - .lg\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .lg\:w-0 { + width: 0px; } - .lg\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .lg\:w-1 { + width: 0.25rem; } - .lg\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .lg\:w-2 { + width: 0.5rem; } - .lg\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .lg\:w-3 { + width: 0.75rem; } - .lg\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .lg\:w-4 { + width: 1rem; } - .lg\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .lg\:w-5 { + width: 1.25rem; } - .lg\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .lg\:w-6 { + width: 1.5rem; } - .lg\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .lg\:w-7 { + width: 1.75rem; } - .lg\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .lg\:w-8 { + width: 2rem; } - .lg\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .lg\:w-9 { + width: 2.25rem; } - .lg\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .lg\:w-10 { + width: 2.5rem; } - .lg\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .lg\:w-11 { + width: 2.75rem; } - .lg\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .lg\:w-12 { + width: 3rem; } - .lg\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .lg\:w-14 { + width: 3.5rem; } - .lg\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .lg\:w-16 { + width: 4rem; } - .lg\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .lg\:w-20 { + width: 5rem; } - .lg\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .lg\:w-24 { + width: 6rem; } - .lg\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .lg\:w-28 { + width: 7rem; } - .lg\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .lg\:w-32 { + width: 8rem; } - .lg\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .lg\:w-36 { + width: 9rem; } - .lg\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .lg\:w-40 { + width: 10rem; } - .lg\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .lg\:w-44 { + width: 11rem; } - .lg\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .lg\:w-48 { + width: 12rem; } - .lg\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .lg\:w-52 { + width: 13rem; } - .lg\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .lg\:w-56 { + width: 14rem; } - .lg\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .lg\:w-60 { + width: 15rem; } - .lg\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .lg\:w-64 { + width: 16rem; } - .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\:w-72 { + width: 18rem; } - .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\:w-80 { + width: 20rem; } - .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\:w-96 { + width: 24rem; } - .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\:w-auto { + width: auto; } - .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\:w-px { + width: 1px; } - .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\:w-0\.5 { + width: 0.125rem; } - .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\:w-1\.5 { + width: 0.375rem; } - .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\:w-2\.5 { + width: 0.625rem; } - .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\:w-3\.5 { + width: 0.875rem; } - .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\:w-1\/2 { + width: 50%; } - .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\:w-1\/3 { + width: 33.333333%; } - .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\:w-2\/3 { + width: 66.666667%; } - .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\:w-1\/4 { + width: 25%; } - .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\:w-2\/4 { + width: 50%; } - .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\:w-3\/4 { + width: 75%; } - .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\:w-1\/5 { + width: 20%; } - .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\:w-2\/5 { + width: 40%; } - .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\:w-3\/5 { + width: 60%; } - .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\:w-4\/5 { + width: 80%; } - .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\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .lg\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .lg\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .lg\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:origin-bottom-right { + transform-origin: bottom right; } - .lg\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:origin-bottom { + transform-origin: bottom; } - .lg\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:origin-bottom-left { + transform-origin: bottom left; } - .lg\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:origin-left { + transform-origin: left; } - .lg\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:origin-top-left { + transform-origin: top left; } - .lg\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:translate-x-0 { + --tw-translate-x: 0px; } - .lg\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .lg\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .lg\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .lg\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:translate-x-4 { + --tw-translate-x: 1rem; } - .lg\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .lg\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .lg\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .lg\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:translate-x-8 { + --tw-translate-x: 2rem; } - .lg\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .lg\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .lg\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .lg\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:translate-x-12 { + --tw-translate-x: 3rem; } - .lg\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .lg\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:translate-x-16 { + --tw-translate-x: 4rem; } - .lg\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:translate-x-20 { + --tw-translate-x: 5rem; } - .lg\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:translate-x-24 { + --tw-translate-x: 6rem; } - .lg\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:translate-x-28 { + --tw-translate-x: 7rem; } - .lg\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:translate-x-32 { + --tw-translate-x: 8rem; } - .lg\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:translate-x-36 { + --tw-translate-x: 9rem; } - .lg\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:translate-x-40 { + --tw-translate-x: 10rem; } - .lg\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:translate-x-44 { + --tw-translate-x: 11rem; } - .lg\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:translate-x-48 { + --tw-translate-x: 12rem; } - .lg\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:translate-x-52 { + --tw-translate-x: 13rem; } - .lg\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:translate-x-56 { + --tw-translate-x: 14rem; } - .lg\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:translate-x-60 { + --tw-translate-x: 15rem; } - .lg\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:translate-x-64 { + --tw-translate-x: 16rem; } - .lg\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:translate-x-72 { + --tw-translate-x: 18rem; } - .lg\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:translate-x-80 { + --tw-translate-x: 20rem; } - .lg\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:translate-x-96 { + --tw-translate-x: 24rem; } - .lg\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:translate-x-px { + --tw-translate-x: 1px; } - .lg\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .lg\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .lg\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .lg\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .lg\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:-translate-x-0 { + --tw-translate-x: 0px; } - .lg\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .lg\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .lg\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .lg\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:-translate-x-4 { + --tw-translate-x: -1rem; } - .lg\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .lg\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .lg\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .lg\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:-translate-x-8 { + --tw-translate-x: -2rem; } - .lg\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .lg\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .lg\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .lg\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:-translate-x-12 { + --tw-translate-x: -3rem; } - .lg\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .lg\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:-translate-x-16 { + --tw-translate-x: -4rem; } - .lg\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:-translate-x-20 { + --tw-translate-x: -5rem; } - .lg\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:-translate-x-24 { + --tw-translate-x: -6rem; } - .lg\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:-translate-x-28 { + --tw-translate-x: -7rem; } - .lg\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:-translate-x-32 { + --tw-translate-x: -8rem; } - .lg\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:-translate-x-36 { + --tw-translate-x: -9rem; } - .lg\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:-translate-x-40 { + --tw-translate-x: -10rem; } - .lg\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:-translate-x-44 { + --tw-translate-x: -11rem; } - .lg\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:-translate-x-48 { + --tw-translate-x: -12rem; } - .lg\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:-translate-x-52 { + --tw-translate-x: -13rem; } - .lg\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:-translate-x-56 { + --tw-translate-x: -14rem; } - .lg\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:-translate-x-60 { + --tw-translate-x: -15rem; } - .lg\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:-translate-x-64 { + --tw-translate-x: -16rem; } - .lg\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:-translate-x-72 { + --tw-translate-x: -18rem; } - .lg\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:-translate-x-80 { + --tw-translate-x: -20rem; } - .lg\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:-translate-x-96 { + --tw-translate-x: -24rem; } - .lg\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:-translate-x-px { + --tw-translate-x: -1px; } - .lg\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .lg\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .lg\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .lg\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .lg\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .lg\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .lg\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .lg\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .lg\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .lg\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .lg\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:translate-x-full { + --tw-translate-x: 100%; } - .lg\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .lg\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .lg\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .lg\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .lg\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .lg\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .lg\:focus\:to-black:focus { - --tw-gradient-to: #000; + .lg\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .lg\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .lg\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .lg\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .lg\:-translate-x-full { + --tw-translate-x: -100%; } - .lg\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .lg\:translate-y-0 { + --tw-translate-y: 0px; } - .lg\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .lg\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .lg\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .lg\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .lg\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .lg\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .lg\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .lg\:translate-y-4 { + --tw-translate-y: 1rem; } - .lg\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .lg\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .lg\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .lg\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .lg\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .lg\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .lg\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .lg\:translate-y-8 { + --tw-translate-y: 2rem; } - .lg\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .lg\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .lg\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .lg\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .lg\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .lg\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .lg\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .lg\:translate-y-12 { + --tw-translate-y: 3rem; } - .lg\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .lg\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .lg\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .lg\:translate-y-16 { + --tw-translate-y: 4rem; } - .lg\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .lg\:translate-y-20 { + --tw-translate-y: 5rem; } - .lg\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .lg\:translate-y-24 { + --tw-translate-y: 6rem; } - .lg\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .lg\:translate-y-28 { + --tw-translate-y: 7rem; } - .lg\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .lg\:translate-y-32 { + --tw-translate-y: 8rem; } - .lg\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .lg\:translate-y-36 { + --tw-translate-y: 9rem; } - .lg\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .lg\:translate-y-40 { + --tw-translate-y: 10rem; } - .lg\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .lg\:translate-y-44 { + --tw-translate-y: 11rem; } - .lg\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .lg\:translate-y-48 { + --tw-translate-y: 12rem; } - .lg\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .lg\:translate-y-52 { + --tw-translate-y: 13rem; } - .lg\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .lg\:translate-y-56 { + --tw-translate-y: 14rem; } - .lg\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .lg\:translate-y-60 { + --tw-translate-y: 15rem; } - .lg\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .lg\:translate-y-64 { + --tw-translate-y: 16rem; } - .lg\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .lg\:translate-y-72 { + --tw-translate-y: 18rem; } - .lg\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .lg\:translate-y-80 { + --tw-translate-y: 20rem; } - .lg\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .lg\:translate-y-96 { + --tw-translate-y: 24rem; } - .lg\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .lg\:translate-y-px { + --tw-translate-y: 1px; } - .lg\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .lg\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .lg\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .lg\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .lg\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .lg\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .lg\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .lg\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .lg\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .lg\:-translate-y-0 { + --tw-translate-y: 0px; } - .lg\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .lg\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .lg\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .lg\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .lg\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .lg\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .lg\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .lg\:-translate-y-4 { + --tw-translate-y: -1rem; } - .lg\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .lg\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .lg\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .lg\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .lg\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .lg\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .lg\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .lg\:-translate-y-8 { + --tw-translate-y: -2rem; } - .lg\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .lg\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .lg\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .lg\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .lg\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .lg\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .lg\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .lg\:-translate-y-12 { + --tw-translate-y: -3rem; } - .lg\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .lg\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .lg\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .lg\:-translate-y-16 { + --tw-translate-y: -4rem; } - .lg\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .lg\:-translate-y-20 { + --tw-translate-y: -5rem; } - .lg\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .lg\:-translate-y-24 { + --tw-translate-y: -6rem; } - .lg\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .lg\:-translate-y-28 { + --tw-translate-y: -7rem; } - .lg\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .lg\:-translate-y-32 { + --tw-translate-y: -8rem; } - .lg\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .lg\:-translate-y-36 { + --tw-translate-y: -9rem; } - .lg\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .lg\:-translate-y-40 { + --tw-translate-y: -10rem; } - .lg\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .lg\:-translate-y-44 { + --tw-translate-y: -11rem; } - .lg\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .lg\:-translate-y-48 { + --tw-translate-y: -12rem; } - .lg\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .lg\:-translate-y-52 { + --tw-translate-y: -13rem; } - .lg\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .lg\:-translate-y-56 { + --tw-translate-y: -14rem; } - .lg\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .lg\:-translate-y-60 { + --tw-translate-y: -15rem; } - .lg\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .lg\:-translate-y-64 { + --tw-translate-y: -16rem; } - .lg\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .lg\:-translate-y-72 { + --tw-translate-y: -18rem; } - .lg\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .lg\:-translate-y-80 { + --tw-translate-y: -20rem; } - .lg\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .lg\:-translate-y-96 { + --tw-translate-y: -24rem; } - .lg\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .lg\:-translate-y-px { + --tw-translate-y: -1px; } - .lg\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .lg\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .lg\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .lg\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .lg\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .lg\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .lg\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .lg\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .lg\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .lg\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .lg\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .lg\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .lg\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .lg\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .lg\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .lg\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .lg\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .lg\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .lg\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .lg\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .lg\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .lg\:translate-y-full { + --tw-translate-y: 100%; } - .lg\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .lg\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .lg\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .lg\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .lg\:bg-opacity-0 { - --tw-bg-opacity: 0; + .lg\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .lg\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .lg\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .lg\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .lg\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .lg\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .lg\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .lg\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .lg\:-translate-y-full { + --tw-translate-y: -100%; } - .lg\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .lg\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .lg\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .lg\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .lg\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .lg\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .lg\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .lg\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .lg\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .lg\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .lg\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .lg\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .lg\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .lg\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .lg\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .lg\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .lg\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .lg\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .lg\:bg-opacity-100 { - --tw-bg-opacity: 1; + .lg\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .group:hover .lg\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; + .lg\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .group:hover .lg\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .lg\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .group:hover .lg\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .lg\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .group:hover .lg\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .lg\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .group:hover .lg\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .lg\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .group:hover .lg\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .lg\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .group:hover .lg\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .lg\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .group:hover .lg\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .lg\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .group:hover .lg\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .lg\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .group:hover .lg\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .lg\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .group:hover .lg\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .lg\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .group:hover .lg\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .lg\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .group:hover .lg\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .lg\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .group:hover .lg\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .lg\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .group:hover .lg\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; + .lg\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .lg\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; + .lg\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .lg\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; + .lg\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .lg\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; + .lg\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .lg\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; + .lg\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .lg\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; + .lg\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .lg\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; + .lg\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .lg\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; + .lg\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .lg\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; + .lg\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .lg\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; + .lg\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .lg\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; + .lg\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .lg\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; + .lg\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .lg\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; + .lg\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .lg\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; + .lg\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .lg\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; + .lg\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .lg\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; + .lg\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .lg\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; + .lg\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .lg\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; + .lg\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .lg\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; + .lg\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .lg\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; + .lg\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .lg\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; + .lg\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .lg\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; + .lg\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .lg\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; + .lg\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .lg\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; + .lg\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .lg\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; + .lg\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .lg\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; + .lg\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .lg\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; + .lg\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .lg\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; + .lg\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .lg\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; + .lg\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .lg\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; + .lg\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .lg\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; + .lg\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .lg\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; + .lg\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .lg\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; + .lg\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .lg\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; + .lg\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .lg\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; + .lg\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .lg\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; + .lg\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .lg\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; + .lg\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .lg\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; + .lg\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .lg\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; + .lg\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .lg\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; + .lg\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .lg\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; + .lg\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .lg\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; + .lg\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .lg\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; + .lg\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .lg\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; + .lg\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .lg\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; + .lg\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .lg\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; + .lg\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .lg\:bg-bottom { - background-position: bottom; + .lg\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .lg\:bg-center { - background-position: center; + .lg\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .lg\:bg-left { - background-position: left; + .lg\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .lg\:bg-left-bottom { - background-position: left bottom; + .lg\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .lg\:bg-left-top { - background-position: left top; + .lg\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .lg\:bg-right { - background-position: right; + .lg\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .lg\:bg-right-bottom { - background-position: right bottom; + .lg\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .lg\:bg-right-top { - background-position: right top; + .lg\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .lg\:bg-top { - background-position: top; + .lg\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .lg\:bg-repeat { - background-repeat: repeat; + .lg\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .lg\:bg-no-repeat { - background-repeat: no-repeat; + .lg\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .lg\:bg-repeat-x { - background-repeat: repeat-x; + .lg\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .lg\:bg-repeat-y { - background-repeat: repeat-y; + .lg\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .lg\:bg-repeat-round { - background-repeat: round; + .lg\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .lg\:bg-repeat-space { - background-repeat: space; + .lg\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .lg\:bg-auto { - background-size: auto; + .lg\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .lg\:bg-cover { - background-size: cover; + .lg\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .lg\:bg-contain { - background-size: contain; + .lg\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .lg\:bg-origin-border { - background-origin: border-box; + .lg\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .lg\:bg-origin-padding { - background-origin: padding-box; + .lg\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .lg\:bg-origin-content { - background-origin: content-box; + .lg\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .lg\:border-collapse { - border-collapse: collapse; + .lg\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .lg\:border-separate { - border-collapse: separate; + .lg\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .lg\:border-transparent { - border-color: transparent; + .lg\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .lg\:border-current { - border-color: currentColor; + .lg\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .lg\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .lg\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .lg\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .lg\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .lg\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .lg\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .lg\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .lg\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .lg\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .lg\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .lg\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .lg\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .lg\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .lg\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .lg\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .lg\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .lg\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .lg\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .lg\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .lg\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .lg\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .lg\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .lg\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .lg\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .lg\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .lg\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .lg\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .lg\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .lg\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .lg\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .lg\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .lg\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .lg\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .lg\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .lg\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .lg\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .lg\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .lg\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .lg\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .lg\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .lg\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .lg\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .lg\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .lg\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .lg\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .lg\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .lg\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .lg\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .lg\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .lg\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .lg\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .lg\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .lg\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .lg\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .lg\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .lg\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .lg\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .lg\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .lg\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .lg\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .lg\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .lg\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .lg\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .lg\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .lg\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .lg\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .lg\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .lg\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .lg\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .lg\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .lg\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .lg\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .lg\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .lg\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .lg\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .lg\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .lg\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .lg\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .lg\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .lg\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .lg\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .lg\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .lg\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .lg\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .lg\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .lg\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .lg\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .lg\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .lg\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .lg\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .lg\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .lg\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .lg\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .lg\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .lg\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .lg\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .lg\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .lg\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .lg\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .lg\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .lg\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .lg\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .lg\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .lg\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .lg\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .lg\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .lg\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .lg\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .lg\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .lg\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .lg\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .lg\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .lg\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .lg\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .lg\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .lg\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .lg\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .lg\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .lg\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .lg\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .lg\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .lg\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .lg\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .lg\:group-hover\:border-transparent { - border-color: transparent; + .lg\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .lg\:group-hover\:border-current { - border-color: currentColor; + .lg\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .lg\:group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .lg\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .lg\:group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .lg\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .lg\:group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .lg\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .lg\:group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .lg\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .lg\:group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .lg\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .lg\:group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .lg\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .lg\:group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .lg\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .lg\:group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .lg\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .lg\:group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .lg\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .lg\:group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .lg\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .lg\:group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .lg\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .lg\:group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .lg\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .lg\:group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .lg\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .lg\:group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .lg\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .lg\:group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .lg\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .lg\:group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .lg\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .lg\:group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .lg\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .lg\:group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .lg\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .lg\:group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .lg\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .lg\:group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .lg\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .lg\:group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .lg\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .lg\:group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .lg\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .lg\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .lg\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .lg\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .lg\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .lg\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .lg\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .lg\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .group:hover .lg\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .group:hover .lg\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .group:hover .lg\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .group:hover .lg\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .group:hover .lg\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .group:hover .lg\:group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .group:hover .lg\:group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - - .group:hover .lg\:group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + + .lg\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .group:hover .lg\:group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .group:hover .lg\:group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .group:hover .lg\:group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .group:hover .lg\:group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .group:hover .lg\:group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .group:hover .lg\:group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .group:hover .lg\:group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .group:hover .lg\:group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .group:hover .lg\:group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .group:hover .lg\:group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .group:hover .lg\:group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .group:hover .lg\:group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .group:hover .lg\:group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .group:hover .lg\:group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .group:hover .lg\:group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .group:hover .lg\:group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .group:hover .lg\:group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .group:hover .lg\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .group:hover .lg\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .group:hover .lg\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .group:hover .lg\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .group:hover .lg\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .group:hover .lg\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .group:hover .lg\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .group:hover .lg\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .lg\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .group:hover .lg\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .lg\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .group:hover .lg\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .lg\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .group:hover .lg\:group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .lg\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .group:hover .lg\:group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .lg\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .group:hover .lg\:group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .lg\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .group:hover .lg\:group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .lg\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .group:hover .lg\:group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .group:hover .lg\:group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .group:hover .lg\:group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .group:hover .lg\:group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .group:hover .lg\:group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .group:hover .lg\:group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .group:hover .lg\:group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .lg\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .group:hover .lg\:group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .lg\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .group:hover .lg\:group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .lg\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .group:hover .lg\:group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .lg\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .group:hover .lg\:group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .lg\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .group:hover .lg\:group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .lg\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .group:hover .lg\:group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .lg\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .group:hover .lg\:group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .lg\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .group:hover .lg\:group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .lg\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .group:hover .lg\:group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .lg\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .lg\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .lg\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .lg\:focus-within\:border-current:focus-within { - border-color: currentColor; + .lg\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .lg\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .lg\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .lg\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .lg\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .lg\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .lg\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .lg\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .lg\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .lg\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .lg\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .lg\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .lg\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .lg\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .lg\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .lg\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .lg\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .lg\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .lg\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .lg\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .lg\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .lg\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .lg\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .lg\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .lg\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .lg\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .lg\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .lg\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .lg\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .lg\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .lg\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .lg\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .lg\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .lg\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .lg\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .lg\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .lg\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .lg\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .lg\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .lg\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .lg\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .lg\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .lg\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .lg\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .lg\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .lg\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .lg\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .lg\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .lg\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .lg\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .lg\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .lg\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .lg\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .lg\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .lg\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .lg\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .lg\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .lg\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .lg\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .lg\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .lg\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .lg\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .lg\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .lg\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .lg\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .lg\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .lg\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .lg\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .lg\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .lg\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .lg\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .lg\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .lg\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .lg\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .lg\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .lg\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .lg\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .lg\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .lg\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .lg\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .lg\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .lg\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .lg\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .lg\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .lg\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .lg\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .lg\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .lg\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .lg\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .lg\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .lg\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .lg\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .lg\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .lg\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .lg\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .lg\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .lg\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .lg\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .lg\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .lg\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .lg\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .lg\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .lg\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .lg\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .lg\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .lg\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .lg\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .lg\:rotate-0 { + --tw-rotate: 0deg; } - .lg\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .lg\:rotate-1 { + --tw-rotate: 1deg; } - .lg\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .lg\:rotate-2 { + --tw-rotate: 2deg; } - .lg\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .lg\:rotate-3 { + --tw-rotate: 3deg; } - .lg\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .lg\:rotate-6 { + --tw-rotate: 6deg; } - .lg\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .lg\:rotate-12 { + --tw-rotate: 12deg; } - .lg\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .lg\:rotate-45 { + --tw-rotate: 45deg; } - .lg\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .lg\:rotate-90 { + --tw-rotate: 90deg; } - .lg\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .lg\:rotate-180 { + --tw-rotate: 180deg; } - .lg\:hover\:border-transparent:hover { - border-color: transparent; + .lg\:-rotate-180 { + --tw-rotate: -180deg; } - .lg\:hover\:border-current:hover { - border-color: currentColor; + .lg\:-rotate-90 { + --tw-rotate: -90deg; } - .lg\:hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .lg\:-rotate-45 { + --tw-rotate: -45deg; } - .lg\:hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .lg\:-rotate-12 { + --tw-rotate: -12deg; } - .lg\:hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .lg\:-rotate-6 { + --tw-rotate: -6deg; } - .lg\:hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .lg\:-rotate-3 { + --tw-rotate: -3deg; } - .lg\:hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .lg\:-rotate-2 { + --tw-rotate: -2deg; } - .lg\:hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .lg\:-rotate-1 { + --tw-rotate: -1deg; } - .lg\:hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .lg\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .lg\:hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .lg\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .lg\:hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .lg\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .lg\:hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .lg\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .lg\:hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .lg\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .lg\:hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .lg\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .lg\:hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .lg\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .lg\:hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .lg\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .lg\:hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .lg\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .lg\:hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .lg\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .lg\:hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .lg\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .lg\:hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .lg\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .lg\:hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .lg\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .lg\:hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .lg\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .lg\:hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .lg\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .lg\:hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .lg\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .lg\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .lg\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .lg\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .lg\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .lg\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .lg\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .lg\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .lg\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .lg\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .lg\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .lg\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .lg\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .lg\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .lg\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .lg\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .lg\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .lg\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .lg\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .lg\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .lg\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .lg\:hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .lg\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .lg\:hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .lg\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .lg\:hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .lg\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .lg\:hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .lg\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .lg\:hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .lg\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .lg\:hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .lg\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .lg\:hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .lg\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .lg\:hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .lg\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .lg\:hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .lg\:skew-x-0 { + --tw-skew-x: 0deg; } - .lg\:hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .lg\:skew-x-1 { + --tw-skew-x: 1deg; } - .lg\:hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .lg\:skew-x-2 { + --tw-skew-x: 2deg; } - .lg\:hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .lg\:skew-x-3 { + --tw-skew-x: 3deg; } - .lg\:hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .lg\:skew-x-6 { + --tw-skew-x: 6deg; } - .lg\:hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .lg\:skew-x-12 { + --tw-skew-x: 12deg; } - .lg\:hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .lg\:-skew-x-12 { + --tw-skew-x: -12deg; } - .lg\:hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .lg\:-skew-x-6 { + --tw-skew-x: -6deg; } - .lg\:hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .lg\:-skew-x-3 { + --tw-skew-x: -3deg; } - .lg\:hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .lg\:-skew-x-2 { + --tw-skew-x: -2deg; } - .lg\:hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .lg\:-skew-x-1 { + --tw-skew-x: -1deg; } - .lg\:hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .lg\:skew-y-0 { + --tw-skew-y: 0deg; } - .lg\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .lg\:skew-y-1 { + --tw-skew-y: 1deg; } - .lg\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .lg\:skew-y-2 { + --tw-skew-y: 2deg; } - .lg\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .lg\:skew-y-3 { + --tw-skew-y: 3deg; } - .lg\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .lg\:skew-y-6 { + --tw-skew-y: 6deg; } - .lg\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .lg\:skew-y-12 { + --tw-skew-y: 12deg; } - .lg\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .lg\:-skew-y-12 { + --tw-skew-y: -12deg; } - .lg\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .lg\:-skew-y-6 { + --tw-skew-y: -6deg; } - .lg\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .lg\:-skew-y-3 { + --tw-skew-y: -3deg; } - .lg\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .lg\:-skew-y-2 { + --tw-skew-y: -2deg; } - .lg\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .lg\:-skew-y-1 { + --tw-skew-y: -1deg; } - .lg\:hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .lg\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .lg\:hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .lg\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .lg\:hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .lg\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .lg\:hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .lg\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .lg\:hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .lg\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .lg\:hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .lg\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .lg\:hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .lg\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .lg\:hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .lg\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .lg\:hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .lg\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .lg\:hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .lg\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .lg\:hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .lg\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .lg\:hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .lg\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .lg\:hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .lg\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .lg\:hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .lg\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .lg\:hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .lg\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .lg\:hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .lg\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .lg\:hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .lg\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .lg\:hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .lg\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .lg\:hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .lg\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .lg\:hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .lg\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .lg\:focus\:border-transparent:focus { - border-color: transparent; + .lg\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .lg\:focus\:border-current:focus { - border-color: currentColor; + .lg\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .lg\:focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .lg\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .lg\:focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .lg\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .lg\:focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .lg\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .lg\:focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .lg\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .lg\:focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .lg\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .lg\:focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .lg\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .lg\:focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .lg\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .lg\:focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .lg\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .lg\:focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .lg\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .lg\:focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .lg\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .lg\:focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .lg\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .lg\:focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .lg\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .lg\:focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .lg\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .lg\:focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .lg\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .lg\:focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .lg\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .lg\:focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .lg\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .lg\:focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .lg\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .lg\:focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .lg\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .lg\:focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .lg\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .lg\:focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .lg\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .lg\:focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .lg\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .lg\:focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .lg\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .lg\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .lg\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .lg\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .lg\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .lg\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .lg\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .lg\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .lg\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .lg\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .lg\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .lg\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .lg\:scale-x-0 { + --tw-scale-x: 0; } - .lg\:focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .lg\:scale-x-50 { + --tw-scale-x: .5; } - .lg\:focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .lg\:scale-x-75 { + --tw-scale-x: .75; } - .lg\:focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .lg\:scale-x-90 { + --tw-scale-x: .9; } - .lg\:focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .lg\:scale-x-95 { + --tw-scale-x: .95; } - .lg\:focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .lg\:scale-x-100 { + --tw-scale-x: 1; } - .lg\:focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .lg\:scale-x-105 { + --tw-scale-x: 1.05; } - .lg\:focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .lg\:scale-x-110 { + --tw-scale-x: 1.1; } - .lg\:focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .lg\:scale-x-125 { + --tw-scale-x: 1.25; } - .lg\:focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .lg\:scale-x-150 { + --tw-scale-x: 1.5; } - .lg\:focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .lg\:scale-y-0 { + --tw-scale-y: 0; } - .lg\:focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .lg\:scale-y-50 { + --tw-scale-y: .5; } - .lg\:focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .lg\:scale-y-75 { + --tw-scale-y: .75; } - .lg\:focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .lg\:scale-y-90 { + --tw-scale-y: .9; } - .lg\:focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .lg\:scale-y-95 { + --tw-scale-y: .95; } - .lg\:focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .lg\:scale-y-100 { + --tw-scale-y: 1; } - .lg\:focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .lg\:scale-y-105 { + --tw-scale-y: 1.05; } - .lg\:focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .lg\:scale-y-110 { + --tw-scale-y: 1.1; } - .lg\:focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .lg\:scale-y-125 { + --tw-scale-y: 1.25; } - .lg\:focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .lg\:scale-y-150 { + --tw-scale-y: 1.5; } - .lg\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .lg\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .lg\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .lg\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .lg\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .lg\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .lg\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .lg\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .lg\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .lg\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .lg\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .lg\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .lg\:focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .lg\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .lg\:focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .lg\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .lg\:focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .lg\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .lg\:focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .lg\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .lg\:focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .lg\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .lg\:focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .lg\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .lg\:focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .lg\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .lg\:focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .lg\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .lg\:focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .lg\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .lg\:focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .lg\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .lg\:focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .lg\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .lg\:focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .lg\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .lg\:focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .lg\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .lg\:focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .lg\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .lg\:focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .lg\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .lg\:focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .lg\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .lg\:focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .lg\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .lg\:focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .lg\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .lg\:focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .lg\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .lg\:border-opacity-0 { - --tw-border-opacity: 0; + .lg\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:border-opacity-5 { - --tw-border-opacity: 0.05; + .lg\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:border-opacity-10 { - --tw-border-opacity: 0.1; + .lg\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:border-opacity-20 { - --tw-border-opacity: 0.2; + .lg\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:border-opacity-25 { - --tw-border-opacity: 0.25; + .lg\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:border-opacity-30 { - --tw-border-opacity: 0.3; + .lg\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:border-opacity-40 { - --tw-border-opacity: 0.4; + .lg\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:border-opacity-50 { - --tw-border-opacity: 0.5; + .lg\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:border-opacity-60 { - --tw-border-opacity: 0.6; + .lg\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:border-opacity-70 { - --tw-border-opacity: 0.7; + .lg\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:border-opacity-75 { - --tw-border-opacity: 0.75; + .lg\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .lg\:border-opacity-80 { - --tw-border-opacity: 0.8; + .lg\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .lg\:border-opacity-90 { - --tw-border-opacity: 0.9; + .lg\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .lg\:border-opacity-95 { - --tw-border-opacity: 0.95; + .lg\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .lg\:border-opacity-100 { - --tw-border-opacity: 1; + .lg\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .group:hover .lg\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0; + .lg\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .group:hover .lg\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; + .lg\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .group:hover .lg\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; + .lg\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .group:hover .lg\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; + .lg\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .group:hover .lg\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; + .lg\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .group:hover .lg\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; + .lg\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .group:hover .lg\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; + .lg\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .group:hover .lg\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; + .lg\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .group:hover .lg\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; + .lg\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .group:hover .lg\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; + .lg\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .group:hover .lg\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; + .lg\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .group:hover .lg\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; + .lg\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .group:hover .lg\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; + .lg\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .group:hover .lg\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; + .lg\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .group:hover .lg\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1; + .lg\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .lg\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; + .lg\:animate-none { + animation: none; } - .lg\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; + .lg\:animate-spin { + animation: spin 1s linear infinite; } - .lg\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; + .lg\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .lg\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; + .lg\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .lg\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; + .lg\:animate-bounce { + animation: bounce 1s infinite; } - .lg\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; + .lg\:cursor-auto { + cursor: auto; } - .lg\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; + .lg\:cursor-default { + cursor: default; } - .lg\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; + .lg\:cursor-pointer { + cursor: pointer; } - .lg\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; + .lg\:cursor-wait { + cursor: wait; } - .lg\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; + .lg\:cursor-text { + cursor: text; } - .lg\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; + .lg\:cursor-move { + cursor: move; } - .lg\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; + .lg\:cursor-help { + cursor: help; } - .lg\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; + .lg\:cursor-not-allowed { + cursor: not-allowed; } - .lg\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; + .lg\:select-none { + user-select: none; } - .lg\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; + .lg\:select-text { + user-select: text; } - .lg\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0; + .lg\:select-all { + user-select: all; } - .lg\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; + .lg\:select-auto { + user-select: auto; } - .lg\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; + .lg\:resize-none { + resize: none; } - .lg\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; + .lg\:resize-y { + resize: vertical; } - .lg\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; + .lg\:resize-x { + resize: horizontal; } - .lg\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; + .lg\:resize { + resize: both; } - .lg\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; + .lg\:list-inside { + list-style-position: inside; } - .lg\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; + .lg\:list-outside { + list-style-position: outside; } - .lg\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; + .lg\:list-none { + list-style-type: none; } - .lg\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; + .lg\:list-disc { + list-style-type: disc; } - .lg\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; + .lg\:list-decimal { + list-style-type: decimal; } - .lg\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; + .lg\:appearance-none { + appearance: none; } - .lg\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; + .lg\:auto-cols-auto { + grid-auto-columns: auto; } - .lg\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; + .lg\:auto-cols-min { + grid-auto-columns: min-content; } - .lg\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1; + .lg\:auto-cols-max { + grid-auto-columns: max-content; } - .lg\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0; + .lg\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .lg\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; + .lg\:grid-flow-row { + grid-auto-flow: row; } - .lg\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; + .lg\:grid-flow-col { + grid-auto-flow: column; } - .lg\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; + .lg\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .lg\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; + .lg\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .lg\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; + .lg\:auto-rows-auto { + grid-auto-rows: auto; } - .lg\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; + .lg\:auto-rows-min { + grid-auto-rows: min-content; } - .lg\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; + .lg\:auto-rows-max { + grid-auto-rows: max-content; } - .lg\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; + .lg\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .lg\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; + .lg\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .lg\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; + .lg\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .lg\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; + .lg\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .lg\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; + .lg\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .lg\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; + .lg\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .lg\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1; + .lg\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .lg\:rounded-none { - border-radius: 0px; + .lg\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .lg\:rounded-sm { - border-radius: 0.125rem; + .lg\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .lg\:rounded { - border-radius: 0.25rem; + .lg\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .lg\:rounded-md { - border-radius: 0.375rem; + .lg\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .lg\:rounded-lg { - border-radius: 0.5rem; + .lg\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .lg\:rounded-xl { - border-radius: 0.75rem; + .lg\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .lg\:rounded-2xl { - border-radius: 1rem; + .lg\:grid-cols-none { + grid-template-columns: none; } - .lg\:rounded-3xl { - border-radius: 1.5rem; + .lg\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .lg\:rounded-full { - border-radius: 9999px; + .lg\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .lg\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .lg\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .lg\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .lg\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .lg\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .lg\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .lg\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .lg\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .lg\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .lg\:grid-rows-none { + grid-template-rows: none; } - .lg\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .lg\:flex-row { + flex-direction: row; } - .lg\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .lg\:flex-row-reverse { + flex-direction: row-reverse; } - .lg\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .lg\:flex-col { + flex-direction: column; } - .lg\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .lg\:flex-col-reverse { + flex-direction: column-reverse; } - .lg\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .lg\:flex-wrap { + flex-wrap: wrap; } - .lg\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .lg\:flex-wrap-reverse { + flex-wrap: wrap-reverse; } - .lg\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .lg\:flex-nowrap { + flex-wrap: nowrap; } - .lg\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .lg\:place-content-center { + place-content: center; } - .lg\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .lg\:place-content-start { + place-content: start; } - .lg\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .lg\:place-content-end { + place-content: end; } - .lg\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .lg\:place-content-between { + place-content: space-between; } - .lg\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .lg\:place-content-around { + place-content: space-around; } - .lg\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .lg\:place-content-evenly { + place-content: space-evenly; } - .lg\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .lg\:place-content-stretch { + place-content: stretch; } - .lg\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .lg\:place-items-start { + place-items: start; } - .lg\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .lg\:place-items-end { + place-items: end; } - .lg\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .lg\:place-items-center { + place-items: center; } - .lg\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .lg\:place-items-stretch { + place-items: stretch; } - .lg\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .lg\:content-center { + align-content: center; } - .lg\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .lg\:content-start { + align-content: flex-start; } - .lg\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .lg\:content-end { + align-content: flex-end; } - .lg\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .lg\:content-between { + align-content: space-between; } - .lg\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .lg\:content-around { + align-content: space-around; } - .lg\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .lg\:content-evenly { + align-content: space-evenly; } - .lg\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .lg\:items-start { + align-items: flex-start; } - .lg\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .lg\:items-end { + align-items: flex-end; } - .lg\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .lg\:items-center { + align-items: center; } - .lg\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .lg\:items-baseline { + align-items: baseline; } - .lg\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .lg\:items-stretch { + align-items: stretch; } - .lg\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .lg\:justify-start { + justify-content: flex-start; } - .lg\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .lg\:justify-end { + justify-content: flex-end; } - .lg\:rounded-tl-none { - border-top-left-radius: 0px; + .lg\:justify-center { + justify-content: center; } - .lg\:rounded-tr-none { - border-top-right-radius: 0px; + .lg\:justify-between { + justify-content: space-between; + } + + .lg\:justify-around { + justify-content: space-around; } - .lg\:rounded-br-none { - border-bottom-right-radius: 0px; + .lg\:justify-evenly { + justify-content: space-evenly; } - .lg\:rounded-bl-none { - border-bottom-left-radius: 0px; + .lg\:justify-items-start { + justify-items: start; } - .lg\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .lg\:justify-items-end { + justify-items: end; } - .lg\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .lg\:justify-items-center { + justify-items: center; } - .lg\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .lg\:justify-items-stretch { + justify-items: stretch; } - .lg\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .lg\:gap-0 { + gap: 0px; } - .lg\:rounded-tl { - border-top-left-radius: 0.25rem; + .lg\:gap-1 { + gap: 0.25rem; } - .lg\:rounded-tr { - border-top-right-radius: 0.25rem; + .lg\:gap-2 { + gap: 0.5rem; } - .lg\:rounded-br { - border-bottom-right-radius: 0.25rem; + .lg\:gap-3 { + gap: 0.75rem; } - .lg\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .lg\:gap-4 { + gap: 1rem; } - .lg\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .lg\:gap-5 { + gap: 1.25rem; } - .lg\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .lg\:gap-6 { + gap: 1.5rem; } - .lg\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .lg\:gap-7 { + gap: 1.75rem; } - .lg\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .lg\:gap-8 { + gap: 2rem; } - .lg\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .lg\:gap-9 { + gap: 2.25rem; } - .lg\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .lg\:gap-10 { + gap: 2.5rem; } - .lg\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .lg\:gap-11 { + gap: 2.75rem; } - .lg\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .lg\:gap-12 { + gap: 3rem; } - .lg\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .lg\:gap-14 { + gap: 3.5rem; } - .lg\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .lg\:gap-16 { + gap: 4rem; } - .lg\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .lg\:gap-20 { + gap: 5rem; } - .lg\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .lg\:gap-24 { + gap: 6rem; } - .lg\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .lg\:gap-28 { + gap: 7rem; } - .lg\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .lg\:gap-32 { + gap: 8rem; } - .lg\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .lg\:gap-36 { + gap: 9rem; } - .lg\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .lg\:gap-40 { + gap: 10rem; } - .lg\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .lg\:gap-44 { + gap: 11rem; } - .lg\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .lg\:gap-48 { + gap: 12rem; } - .lg\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .lg\:gap-52 { + gap: 13rem; } - .lg\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .lg\:gap-56 { + gap: 14rem; } - .lg\:rounded-tl-full { - border-top-left-radius: 9999px; + .lg\:gap-60 { + gap: 15rem; } - .lg\:rounded-tr-full { - border-top-right-radius: 9999px; + .lg\:gap-64 { + gap: 16rem; } - .lg\:rounded-br-full { - border-bottom-right-radius: 9999px; + .lg\:gap-72 { + gap: 18rem; } - .lg\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .lg\:gap-80 { + gap: 20rem; } - .lg\:border-solid { - border-style: solid; + .lg\:gap-96 { + gap: 24rem; } - .lg\:border-dashed { - border-style: dashed; + .lg\:gap-px { + gap: 1px; } - .lg\:border-dotted { - border-style: dotted; + .lg\:gap-0\.5 { + gap: 0.125rem; } - .lg\:border-double { - border-style: double; + .lg\:gap-1\.5 { + gap: 0.375rem; } - .lg\:border-none { - border-style: none; + .lg\:gap-2\.5 { + gap: 0.625rem; } - .lg\:border-0 { - border-width: 0px; + .lg\:gap-3\.5 { + gap: 0.875rem; } - .lg\:border-2 { - border-width: 2px; + .lg\:gap-x-0 { + column-gap: 0px; } - .lg\:border-4 { - border-width: 4px; + .lg\:gap-x-1 { + column-gap: 0.25rem; } - .lg\:border-8 { - border-width: 8px; + .lg\:gap-x-2 { + column-gap: 0.5rem; } - .lg\:border { - border-width: 1px; + .lg\:gap-x-3 { + column-gap: 0.75rem; } - .lg\:border-t-0 { - border-top-width: 0px; + .lg\:gap-x-4 { + column-gap: 1rem; } - .lg\:border-r-0 { - border-right-width: 0px; + .lg\:gap-x-5 { + column-gap: 1.25rem; } - .lg\:border-b-0 { - border-bottom-width: 0px; + .lg\:gap-x-6 { + column-gap: 1.5rem; } - .lg\:border-l-0 { - border-left-width: 0px; + .lg\:gap-x-7 { + column-gap: 1.75rem; } - .lg\:border-t-2 { - border-top-width: 2px; + .lg\:gap-x-8 { + column-gap: 2rem; } - .lg\:border-r-2 { - border-right-width: 2px; + .lg\:gap-x-9 { + column-gap: 2.25rem; } - .lg\:border-b-2 { - border-bottom-width: 2px; + .lg\:gap-x-10 { + column-gap: 2.5rem; } - .lg\:border-l-2 { - border-left-width: 2px; + .lg\:gap-x-11 { + column-gap: 2.75rem; } - .lg\:border-t-4 { - border-top-width: 4px; + .lg\:gap-x-12 { + column-gap: 3rem; } - .lg\:border-r-4 { - border-right-width: 4px; + .lg\:gap-x-14 { + column-gap: 3.5rem; } - .lg\:border-b-4 { - border-bottom-width: 4px; + .lg\:gap-x-16 { + column-gap: 4rem; } - .lg\:border-l-4 { - border-left-width: 4px; + .lg\:gap-x-20 { + column-gap: 5rem; } - .lg\:border-t-8 { - border-top-width: 8px; + .lg\:gap-x-24 { + column-gap: 6rem; } - .lg\:border-r-8 { - border-right-width: 8px; + .lg\:gap-x-28 { + column-gap: 7rem; } - .lg\:border-b-8 { - border-bottom-width: 8px; + .lg\:gap-x-32 { + column-gap: 8rem; } - .lg\:border-l-8 { - border-left-width: 8px; + .lg\:gap-x-36 { + column-gap: 9rem; } - .lg\:border-t { - border-top-width: 1px; + .lg\:gap-x-40 { + column-gap: 10rem; } - .lg\:border-r { - border-right-width: 1px; + .lg\:gap-x-44 { + column-gap: 11rem; } - .lg\:border-b { - border-bottom-width: 1px; + .lg\:gap-x-48 { + column-gap: 12rem; } - .lg\:border-l { - border-left-width: 1px; + .lg\:gap-x-52 { + column-gap: 13rem; } - .lg\:decoration-slice { - box-decoration-break: slice; + .lg\:gap-x-56 { + column-gap: 14rem; } - .lg\:decoration-clone { - box-decoration-break: clone; + .lg\:gap-x-60 { + column-gap: 15rem; } - .lg\:box-border { - box-sizing: border-box; + .lg\:gap-x-64 { + column-gap: 16rem; } - .lg\:box-content { - box-sizing: content-box; + .lg\:gap-x-72 { + column-gap: 18rem; } - .lg\:cursor-auto { - cursor: auto; + .lg\:gap-x-80 { + column-gap: 20rem; } - .lg\:cursor-default { - cursor: default; + .lg\:gap-x-96 { + column-gap: 24rem; } - .lg\:cursor-pointer { - cursor: pointer; + .lg\:gap-x-px { + column-gap: 1px; } - .lg\:cursor-wait { - cursor: wait; + .lg\:gap-x-0\.5 { + column-gap: 0.125rem; } - .lg\:cursor-text { - cursor: text; + .lg\:gap-x-1\.5 { + column-gap: 0.375rem; } - .lg\:cursor-move { - cursor: move; + .lg\:gap-x-2\.5 { + column-gap: 0.625rem; } - .lg\:cursor-help { - cursor: help; + .lg\:gap-x-3\.5 { + column-gap: 0.875rem; } - .lg\:cursor-not-allowed { - cursor: not-allowed; + .lg\:gap-y-0 { + row-gap: 0px; } - .lg\:block { - display: block; + .lg\:gap-y-1 { + row-gap: 0.25rem; } - .lg\:inline-block { - display: inline-block; + .lg\:gap-y-2 { + row-gap: 0.5rem; } - .lg\:inline { - display: inline; + .lg\:gap-y-3 { + row-gap: 0.75rem; } - .lg\:flex { - display: flex; + .lg\:gap-y-4 { + row-gap: 1rem; } - .lg\:inline-flex { - display: inline-flex; + .lg\:gap-y-5 { + row-gap: 1.25rem; } - .lg\:table { - display: table; + .lg\:gap-y-6 { + row-gap: 1.5rem; } - .lg\:inline-table { - display: inline-table; + .lg\:gap-y-7 { + row-gap: 1.75rem; } - .lg\:table-caption { - display: table-caption; + .lg\:gap-y-8 { + row-gap: 2rem; } - .lg\:table-cell { - display: table-cell; + .lg\:gap-y-9 { + row-gap: 2.25rem; } - .lg\:table-column { - display: table-column; + .lg\:gap-y-10 { + row-gap: 2.5rem; } - .lg\:table-column-group { - display: table-column-group; + .lg\:gap-y-11 { + row-gap: 2.75rem; } - .lg\:table-footer-group { - display: table-footer-group; + .lg\:gap-y-12 { + row-gap: 3rem; } - .lg\:table-header-group { - display: table-header-group; + .lg\:gap-y-14 { + row-gap: 3.5rem; } - .lg\:table-row-group { - display: table-row-group; + .lg\:gap-y-16 { + row-gap: 4rem; } - .lg\:table-row { - display: table-row; + .lg\:gap-y-20 { + row-gap: 5rem; } - .lg\:flow-root { - display: flow-root; + .lg\:gap-y-24 { + row-gap: 6rem; } - .lg\:grid { - display: grid; + .lg\:gap-y-28 { + row-gap: 7rem; } - .lg\:inline-grid { - display: inline-grid; + .lg\:gap-y-32 { + row-gap: 8rem; } - .lg\:contents { - display: contents; + .lg\:gap-y-36 { + row-gap: 9rem; } - .lg\:list-item { - display: list-item; + .lg\:gap-y-40 { + row-gap: 10rem; } - .lg\:hidden { - display: none; + .lg\:gap-y-44 { + row-gap: 11rem; } - .lg\:flex-row { - flex-direction: row; + .lg\:gap-y-48 { + row-gap: 12rem; } - .lg\:flex-row-reverse { - flex-direction: row-reverse; + .lg\:gap-y-52 { + row-gap: 13rem; } - .lg\:flex-col { - flex-direction: column; + .lg\:gap-y-56 { + row-gap: 14rem; } - .lg\:flex-col-reverse { - flex-direction: column-reverse; + .lg\:gap-y-60 { + row-gap: 15rem; } - .lg\:flex-wrap { - flex-wrap: wrap; + .lg\:gap-y-64 { + row-gap: 16rem; } - .lg\:flex-wrap-reverse { - flex-wrap: wrap-reverse; + .lg\:gap-y-72 { + row-gap: 18rem; } - .lg\:flex-nowrap { - flex-wrap: nowrap; + .lg\:gap-y-80 { + row-gap: 20rem; } - .lg\:place-items-start { - place-items: start; + .lg\:gap-y-96 { + row-gap: 24rem; } - .lg\:place-items-end { - place-items: end; + .lg\:gap-y-px { + row-gap: 1px; } - .lg\:place-items-center { - place-items: center; + .lg\:gap-y-0\.5 { + row-gap: 0.125rem; } - .lg\:place-items-stretch { - place-items: stretch; + .lg\:gap-y-1\.5 { + row-gap: 0.375rem; } - .lg\:place-content-center { - place-content: center; + .lg\:gap-y-2\.5 { + row-gap: 0.625rem; } - .lg\:place-content-start { - place-content: start; + .lg\:gap-y-3\.5 { + row-gap: 0.875rem; } - .lg\:place-content-end { - place-content: end; + .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\:place-content-between { - place-content: space-between; + .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\:place-content-around { - place-content: space-around; + .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\:place-content-evenly { - place-content: space-evenly; + .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\:place-content-stretch { - place-content: stretch; + .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\:place-self-auto { - place-self: auto; + .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\:place-self-start { - place-self: start; + .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\:place-self-end { - place-self: end; + .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\:place-self-center { - place-self: center; + .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\:place-self-stretch { - place-self: stretch; + .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\:items-start { - align-items: flex-start; + .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\:items-end { - align-items: flex-end; + .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\:items-center { - align-items: center; + .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\:items-baseline { - align-items: baseline; + .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\:items-stretch { - align-items: stretch; + .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\:content-center { - align-content: center; + .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\:content-start { - align-content: flex-start; + .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\:content-end { - align-content: flex-end; + .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\:content-between { - align-content: space-between; + .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\:content-around { - align-content: space-around; + .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\:content-evenly { - align-content: space-evenly; + .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\:self-auto { - align-self: auto; + .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\:self-start { - align-self: flex-start; + .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\:self-end { - align-self: flex-end; + .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\:self-center { - align-self: center; + .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\:self-stretch { - align-self: stretch; + .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\:justify-items-start { - justify-items: start; + .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\:justify-items-end { - justify-items: end; + .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\:justify-items-center { - justify-items: center; + .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\:justify-items-stretch { - justify-items: stretch; + .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\:justify-start { - justify-content: flex-start; + .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\:justify-end { - justify-content: flex-end; + .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\:justify-center { - justify-content: center; + .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\:justify-between { - justify-content: space-between; + .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\:justify-around { - justify-content: space-around; + .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\:justify-evenly { - justify-content: space-evenly; + .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\:justify-self-auto { - justify-self: auto; + .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\:justify-self-start { - justify-self: start; + .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\:justify-self-end { - justify-self: end; + .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\:justify-self-center { - justify-self: center; + .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\:justify-self-stretch { - justify-self: stretch; + .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\:flex-1 { - flex: 1 1 0%; + .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\:flex-auto { - flex: 1 1 auto; + .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\:flex-initial { - flex: 0 1 auto; + .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\:flex-none { - flex: none; + .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\:flex-grow-0 { - flex-grow: 0; + .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\:flex-grow { - flex-grow: 1; + .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\:flex-shrink-0 { - flex-shrink: 0; + .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\:flex-shrink { - flex-shrink: 1; + .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\:order-1 { - order: 1; + .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\:order-2 { - order: 2; + .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\:order-3 { - order: 3; + .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\:order-4 { - order: 4; + .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\:order-5 { - order: 5; + .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\:order-6 { - order: 6; + .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\:order-7 { - order: 7; + .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\:order-8 { - order: 8; + .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\:order-9 { - order: 9; + .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\:order-10 { - order: 10; + .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\:order-11 { - order: 11; + .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\:order-12 { - order: 12; + .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\:order-first { - order: -9999; + .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\:order-last { - order: 9999; + .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\:order-none { - order: 0; + .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\:float-right { - float: right; + .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\:float-left { - float: left; + .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\:float-none { - float: none; + .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\:clear-left { - clear: left; + .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\:clear-right { - clear: right; + .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\:clear-both { - clear: both; + .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\:clear-none { - clear: none; + .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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .lg\:-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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .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\:font-thin { - font-weight: 100; + .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\:font-extralight { - font-weight: 200; + .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\:font-light { - font-weight: 300; + .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\:font-normal { - font-weight: 400; + .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\:font-medium { - font-weight: 500; + .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\:font-semibold { - font-weight: 600; + .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\:font-bold { - font-weight: 700; + .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\:font-extrabold { - font-weight: 800; + .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\:font-black { - font-weight: 900; + .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\:h-0 { - height: 0px; + .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\:h-1 { - height: 0.25rem; + .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\:h-2 { - height: 0.5rem; + .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\:h-3 { - height: 0.75rem; + .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\:h-4 { - height: 1rem; + .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\:h-5 { - height: 1.25rem; + .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\:h-6 { - height: 1.5rem; + .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\:h-7 { - height: 1.75rem; + .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\:h-8 { - height: 2rem; + .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\:h-9 { - height: 2.25rem; + .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\:h-10 { - height: 2.5rem; + .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\:h-11 { - height: 2.75rem; + .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\:h-12 { - height: 3rem; + .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\:h-14 { - height: 3.5rem; + .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\:h-16 { - height: 4rem; + .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\:h-20 { - height: 5rem; + .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\:h-24 { - height: 6rem; + .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\:h-28 { - height: 7rem; + .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\:h-32 { - height: 8rem; + .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\:h-36 { - height: 9rem; + .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\:h-40 { - height: 10rem; + .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\:h-44 { - height: 11rem; + .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\:h-48 { - height: 12rem; + .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\:h-52 { - height: 13rem; + .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\:h-56 { - height: 14rem; + .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\:h-60 { - height: 15rem; + .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\:h-64 { - height: 16rem; + .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\:h-72 { - height: 18rem; + .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\:h-80 { - height: 20rem; + .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\:h-96 { - height: 24rem; + .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\:h-auto { - height: auto; + .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\:h-px { - height: 1px; + .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\:h-0\.5 { - height: 0.125rem; + .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\:h-1\.5 { - height: 0.375rem; + .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\:h-2\.5 { - height: 0.625rem; + .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\:h-3\.5 { - height: 0.875rem; + .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\:h-1\/2 { - height: 50%; + .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\:h-1\/3 { - height: 33.333333%; + .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\:h-2\/3 { - height: 66.666667%; + .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\:h-1\/4 { - height: 25%; + .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\:h-2\/4 { - height: 50%; + .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\:h-3\/4 { - height: 75%; + .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\:h-1\/5 { - height: 20%; + .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\:h-2\/5 { - height: 40%; + .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\:h-3\/5 { - height: 60%; + .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\:h-4\/5 { - height: 80%; + .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\:h-1\/6 { - height: 16.666667%; + .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\:h-2\/6 { - height: 33.333333%; + .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\:h-3\/6 { - height: 50%; + .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\:h-4\/6 { - height: 66.666667%; + .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\:h-5\/6 { - height: 83.333333%; + .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\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .lg\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .lg\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .lg\:leading-7 { - line-height: 1.75rem; + .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .lg\:leading-8 { - line-height: 2rem; + .lg\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .lg\:leading-9 { - line-height: 2.25rem; + .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .lg\:leading-10 { - line-height: 2.5rem; + .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .lg\:leading-none { - line-height: 1; + .lg\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .lg\:leading-tight { - line-height: 1.25; + .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .lg\:leading-snug { - line-height: 1.375; + .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .lg\:leading-normal { - line-height: 1.5; + .lg\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .lg\:leading-relaxed { - line-height: 1.625; + .lg\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } - .lg\:leading-loose { - line-height: 2; + .lg\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } - .lg\:list-inside { - list-style-position: inside; + .lg\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } - .lg\:list-outside { - list-style-position: outside; + .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } - .lg\:list-none { - list-style-type: none; + .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } - .lg\:list-disc { - list-style-type: disc; + .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } - .lg\:list-decimal { - list-style-type: decimal; + .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } - .lg\:m-0 { - margin: 0px; + .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } - .lg\:m-1 { - margin: 0.25rem; + .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } - .lg\:m-2 { - margin: 0.5rem; + .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } - .lg\:m-3 { - margin: 0.75rem; + .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } - .lg\:m-4 { - margin: 1rem; + .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } - .lg\:m-5 { - margin: 1.25rem; + .lg\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } - .lg\:m-6 { - margin: 1.5rem; + .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } - .lg\:m-7 { - margin: 1.75rem; + .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } - .lg\:m-8 { - margin: 2rem; + .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } - .lg\:m-9 { - margin: 2.25rem; + .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } - .lg\:m-10 { - margin: 2.5rem; + .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } - .lg\:m-11 { - margin: 2.75rem; + .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } - .lg\:m-12 { - margin: 3rem; + .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } - .lg\:m-14 { - margin: 3.5rem; + .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } - .lg\:m-16 { - margin: 4rem; + .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } - .lg\:m-20 { - margin: 5rem; + .lg\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } - .lg\:m-24 { - margin: 6rem; + .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } - .lg\:m-28 { - margin: 7rem; + .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } - .lg\:m-32 { - margin: 8rem; + .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } - .lg\:m-36 { - margin: 9rem; + .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } - .lg\:m-40 { - margin: 10rem; + .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } - .lg\:m-44 { - margin: 11rem; + .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } - .lg\:m-48 { - margin: 12rem; + .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } - .lg\:m-52 { - margin: 13rem; + .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } - .lg\:m-56 { - margin: 14rem; + .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } - .lg\:m-60 { - margin: 15rem; + .lg\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } - .lg\:m-64 { - margin: 16rem; + .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } - .lg\:m-72 { - margin: 18rem; + .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } - .lg\:m-80 { - margin: 20rem; + .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } - .lg\:m-96 { - margin: 24rem; + .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } - .lg\:m-auto { - margin: auto; + .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } - .lg\:m-px { - margin: 1px; + .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } - .lg\:m-0\.5 { - margin: 0.125rem; + .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } - .lg\:m-1\.5 { - margin: 0.375rem; + .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } - .lg\:m-2\.5 { - margin: 0.625rem; + .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } - .lg\:m-3\.5 { - margin: 0.875rem; + .lg\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } - .lg\:-m-0 { - margin: 0px; + .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } - .lg\:-m-1 { - margin: -0.25rem; + .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } - .lg\:-m-2 { - margin: -0.5rem; + .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } - .lg\:-m-3 { - margin: -0.75rem; + .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } - .lg\:-m-4 { - margin: -1rem; + .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } - .lg\:-m-5 { - margin: -1.25rem; + .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } - .lg\:-m-6 { - margin: -1.5rem; + .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } - .lg\:-m-7 { - margin: -1.75rem; + .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } - .lg\:-m-8 { - margin: -2rem; + .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } - .lg\:-m-9 { - margin: -2.25rem; + .lg\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } - .lg\:-m-10 { - margin: -2.5rem; + .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } - .lg\:-m-11 { - margin: -2.75rem; + .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } - .lg\:-m-12 { - margin: -3rem; + .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } - .lg\:-m-14 { - margin: -3.5rem; + .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } - .lg\:-m-16 { - margin: -4rem; + .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } - .lg\:-m-20 { - margin: -5rem; + .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } - .lg\:-m-24 { - margin: -6rem; + .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } - .lg\:-m-28 { - margin: -7rem; + .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } - .lg\:-m-32 { - margin: -8rem; + .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } - .lg\:-m-36 { - margin: -9rem; + .lg\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } - .lg\:-m-40 { - margin: -10rem; + .lg\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } - .lg\:-m-44 { - margin: -11rem; + .lg\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } - .lg\:-m-48 { - margin: -12rem; + .lg\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } - .lg\:-m-52 { - margin: -13rem; + .lg\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } - .lg\:-m-56 { - margin: -14rem; + .lg\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } - .lg\:-m-60 { - margin: -15rem; + .lg\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } - .lg\:-m-64 { - margin: -16rem; + .lg\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } - .lg\:-m-72 { - margin: -18rem; + .lg\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } - .lg\:-m-80 { - margin: -20rem; + .lg\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } - .lg\:-m-96 { - margin: -24rem; + .lg\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } - .lg\:-m-px { - margin: -1px; + .lg\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } - .lg\:-m-0\.5 { - margin: -0.125rem; + .lg\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } - .lg\:-m-1\.5 { - margin: -0.375rem; + .lg\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } - .lg\:-m-2\.5 { - margin: -0.625rem; + .lg\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } - .lg\:-m-3\.5 { - margin: -0.875rem; + .lg\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } - .lg\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .lg\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } - .lg\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .lg\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } - .lg\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .lg\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } - .lg\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .lg\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } - .lg\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .lg\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } - .lg\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .lg\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } - .lg\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .lg\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } - .lg\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .lg\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } - .lg\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .lg\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } - .lg\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .lg\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } - .lg\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .lg\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } - .lg\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .lg\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } - .lg\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .lg\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } - .lg\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .lg\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } - .lg\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .lg\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } - .lg\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .lg\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } - .lg\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .lg\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } - .lg\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .lg\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } - .lg\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .lg\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } - .lg\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .lg\:place-self-auto { + place-self: auto; } - .lg\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .lg\:place-self-start { + place-self: start; } - .lg\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .lg\:place-self-end { + place-self: end; } - .lg\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .lg\:place-self-center { + place-self: center; } - .lg\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .lg\:place-self-stretch { + place-self: stretch; } - .lg\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .lg\:self-auto { + align-self: auto; } - .lg\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .lg\:self-start { + align-self: flex-start; } - .lg\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .lg\:self-end { + align-self: flex-end; } - .lg\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .lg\:self-center { + align-self: center; } - .lg\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .lg\:self-stretch { + align-self: stretch; } - .lg\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .lg\:justify-self-auto { + justify-self: auto; } - .lg\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .lg\:justify-self-start { + justify-self: start; } - .lg\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .lg\:justify-self-end { + justify-self: end; } - .lg\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .lg\:justify-self-center { + justify-self: center; } - .lg\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .lg\:justify-self-stretch { + justify-self: stretch; } - .lg\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .lg\:overflow-auto { + overflow: auto; } - .lg\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .lg\:overflow-hidden { + overflow: hidden; } - .lg\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .lg\:overflow-visible { + overflow: visible; } - .lg\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .lg\:overflow-scroll { + overflow: scroll; } - .lg\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .lg\:overflow-x-auto { + overflow-x: auto; } - .lg\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .lg\:overflow-y-auto { + overflow-y: auto; } - .lg\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .lg\:overflow-x-hidden { + overflow-x: hidden; } - .lg\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .lg\:overflow-y-hidden { + overflow-y: hidden; } - .lg\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .lg\:overflow-x-visible { + overflow-x: visible; } - .lg\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .lg\:overflow-y-visible { + overflow-y: visible; } - .lg\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .lg\:overflow-x-scroll { + overflow-x: scroll; } - .lg\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .lg\:overflow-y-scroll { + overflow-y: scroll; } - .lg\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .lg\:overscroll-auto { + overscroll-behavior: auto; } - .lg\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .lg\:overscroll-contain { + overscroll-behavior: contain; } - .lg\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .lg\:overscroll-none { + overscroll-behavior: none; } - .lg\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .lg\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .lg\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .lg\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .lg\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .lg\:overscroll-y-none { + overscroll-behavior-y: none; } - .lg\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .lg\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .lg\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .lg\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .lg\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .lg\:overscroll-x-none { + overscroll-behavior-x: none; } - .lg\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .lg\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .lg\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .lg\:overflow-ellipsis { + text-overflow: ellipsis; } - .lg\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .lg\:overflow-clip { + text-overflow: clip; } - .lg\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .lg\:whitespace-normal { + white-space: normal; } - .lg\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .lg\:whitespace-nowrap { + white-space: nowrap; } - .lg\:my-auto { - margin-top: auto; - margin-bottom: auto; + .lg\:whitespace-pre { + white-space: pre; } - .lg\:mx-auto { - margin-left: auto; - margin-right: auto; + .lg\:whitespace-pre-line { + white-space: pre-line; } - .lg\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .lg\:whitespace-pre-wrap { + white-space: pre-wrap; } - .lg\:mx-px { - margin-left: 1px; - margin-right: 1px; + .lg\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .lg\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .lg\:break-words { + overflow-wrap: break-word; } - .lg\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .lg\:break-all { + word-break: break-all; } - .lg\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .lg\:rounded-none { + border-radius: 0px; } - .lg\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .lg\:rounded-sm { + border-radius: 0.125rem; } - .lg\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .lg\:rounded { + border-radius: 0.25rem; } - .lg\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .lg\:rounded-md { + border-radius: 0.375rem; } - .lg\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .lg\:rounded-lg { + border-radius: 0.5rem; } - .lg\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .lg\:rounded-xl { + border-radius: 0.75rem; } - .lg\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .lg\:rounded-2xl { + border-radius: 1rem; } - .lg\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .lg\:rounded-3xl { + border-radius: 1.5rem; } - .lg\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .lg\:rounded-full { + border-radius: 9999px; } - .lg\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .lg\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .lg\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .lg\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .lg\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .lg\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .lg\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .lg\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .lg\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .lg\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .lg\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .lg\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .lg\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .lg\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .lg\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .lg\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .lg\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .lg\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .lg\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .lg\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .lg\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .lg\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .lg\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .lg\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .lg\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .lg\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .lg\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .lg\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .lg\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .lg\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .lg\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .lg\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .lg\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .lg\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .lg\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .lg\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .lg\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .lg\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .lg\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .lg\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .lg\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .lg\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .lg\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .lg\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .lg\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .lg\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .lg\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .lg\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .lg\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .lg\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .lg\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .lg\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .lg\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .lg\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .lg\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .lg\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .lg\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .lg\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .lg\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .lg\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .lg\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .lg\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .lg\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .lg\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .lg\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .lg\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .lg\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .lg\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .lg\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .lg\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .lg\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .lg\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .lg\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .lg\:rounded-tl-none { + border-top-left-radius: 0px; } - .lg\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .lg\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .lg\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .lg\:rounded-tl { + border-top-left-radius: 0.25rem; } - .lg\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .lg\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .lg\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .lg\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .lg\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .lg\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .lg\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .lg\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .lg\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .lg\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .lg\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .lg\:rounded-tl-full { + border-top-left-radius: 9999px; } - .lg\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .lg\:rounded-tr-none { + border-top-right-radius: 0px; } - .lg\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .lg\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .lg\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .lg\:rounded-tr { + border-top-right-radius: 0.25rem; } - .lg\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .lg\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .lg\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .lg\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .lg\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .lg\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .lg\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .lg\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .lg\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .lg\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .lg\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .lg\:rounded-tr-full { + border-top-right-radius: 9999px; } - .lg\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .lg\:rounded-br-none { + border-bottom-right-radius: 0px; } - .lg\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .lg\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .lg\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .lg\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .lg\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .lg\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .lg\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .lg\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .lg\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .lg\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .lg\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .lg\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .lg\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .lg\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .lg\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .lg\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .lg\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .lg\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .lg\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .lg\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .lg\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .lg\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .lg\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .lg\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .lg\:mt-0 { - margin-top: 0px; + .lg\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .lg\:mr-0 { - margin-right: 0px; + .lg\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .lg\:mb-0 { - margin-bottom: 0px; + .lg\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .lg\:ml-0 { - margin-left: 0px; + .lg\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .lg\:mt-1 { - margin-top: 0.25rem; + .lg\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .lg\:mr-1 { - margin-right: 0.25rem; + .lg\:border-0 { + border-width: 0px; } - .lg\:mb-1 { - margin-bottom: 0.25rem; + .lg\:border-2 { + border-width: 2px; } - .lg\:ml-1 { - margin-left: 0.25rem; + .lg\:border-4 { + border-width: 4px; } - .lg\:mt-2 { - margin-top: 0.5rem; + .lg\:border-8 { + border-width: 8px; } - .lg\:mr-2 { - margin-right: 0.5rem; + .lg\:border { + border-width: 1px; } - .lg\:mb-2 { - margin-bottom: 0.5rem; + .lg\:border-t-0 { + border-top-width: 0px; } - .lg\:ml-2 { - margin-left: 0.5rem; + .lg\:border-t-2 { + border-top-width: 2px; } - .lg\:mt-3 { - margin-top: 0.75rem; + .lg\:border-t-4 { + border-top-width: 4px; } - .lg\:mr-3 { - margin-right: 0.75rem; + .lg\:border-t-8 { + border-top-width: 8px; } - .lg\:mb-3 { - margin-bottom: 0.75rem; + .lg\:border-t { + border-top-width: 1px; } - .lg\:ml-3 { - margin-left: 0.75rem; + .lg\:border-r-0 { + border-right-width: 0px; } - .lg\:mt-4 { - margin-top: 1rem; + .lg\:border-r-2 { + border-right-width: 2px; } - .lg\:mr-4 { - margin-right: 1rem; + .lg\:border-r-4 { + border-right-width: 4px; } - .lg\:mb-4 { - margin-bottom: 1rem; + .lg\:border-r-8 { + border-right-width: 8px; } - .lg\:ml-4 { - margin-left: 1rem; + .lg\:border-r { + border-right-width: 1px; } - .lg\:mt-5 { - margin-top: 1.25rem; + .lg\:border-b-0 { + border-bottom-width: 0px; } - .lg\:mr-5 { - margin-right: 1.25rem; + .lg\:border-b-2 { + border-bottom-width: 2px; } - .lg\:mb-5 { - margin-bottom: 1.25rem; + .lg\:border-b-4 { + border-bottom-width: 4px; } - .lg\:ml-5 { - margin-left: 1.25rem; + .lg\:border-b-8 { + border-bottom-width: 8px; } - .lg\:mt-6 { - margin-top: 1.5rem; + .lg\:border-b { + border-bottom-width: 1px; } - .lg\:mr-6 { - margin-right: 1.5rem; + .lg\:border-l-0 { + border-left-width: 0px; } - .lg\:mb-6 { - margin-bottom: 1.5rem; + .lg\:border-l-2 { + border-left-width: 2px; } - .lg\:ml-6 { - margin-left: 1.5rem; + .lg\:border-l-4 { + border-left-width: 4px; } - .lg\:mt-7 { - margin-top: 1.75rem; + .lg\:border-l-8 { + border-left-width: 8px; } - .lg\:mr-7 { - margin-right: 1.75rem; + .lg\:border-l { + border-left-width: 1px; } - .lg\:mb-7 { - margin-bottom: 1.75rem; + .lg\:border-solid { + border-style: solid; } - .lg\:ml-7 { - margin-left: 1.75rem; + .lg\:border-dashed { + border-style: dashed; } - .lg\:mt-8 { - margin-top: 2rem; + .lg\:border-dotted { + border-style: dotted; } - .lg\:mr-8 { - margin-right: 2rem; + .lg\:border-double { + border-style: double; } - .lg\:mb-8 { - margin-bottom: 2rem; + .lg\:border-none { + border-style: none; } - .lg\:ml-8 { - margin-left: 2rem; + .lg\:border-transparent { + border-color: transparent; } - .lg\:mt-9 { - margin-top: 2.25rem; + .lg\:border-current { + border-color: currentColor; } - .lg\:mr-9 { - margin-right: 2.25rem; + .lg\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .lg\:mb-9 { - margin-bottom: 2.25rem; + .lg\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .lg\:ml-9 { - margin-left: 2.25rem; + .lg\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .lg\:mt-10 { - margin-top: 2.5rem; + .lg\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .lg\:mr-10 { - margin-right: 2.5rem; + .lg\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .lg\:mb-10 { - margin-bottom: 2.5rem; + .lg\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .lg\:ml-10 { - margin-left: 2.5rem; + .lg\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .lg\:mt-11 { - margin-top: 2.75rem; + .lg\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .lg\:mr-11 { - margin-right: 2.75rem; + .lg\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .lg\:mb-11 { - margin-bottom: 2.75rem; + .lg\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .lg\:ml-11 { - margin-left: 2.75rem; + .lg\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .lg\:mt-12 { - margin-top: 3rem; + .lg\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .lg\:mr-12 { - margin-right: 3rem; + .lg\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .lg\:mb-12 { - margin-bottom: 3rem; + .lg\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .lg\:ml-12 { - margin-left: 3rem; + .lg\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .lg\:mt-14 { - margin-top: 3.5rem; + .lg\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .lg\:mr-14 { - margin-right: 3.5rem; + .lg\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .lg\:mb-14 { - margin-bottom: 3.5rem; + .lg\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .lg\:ml-14 { - margin-left: 3.5rem; + .lg\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .lg\:mt-16 { - margin-top: 4rem; + .lg\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .lg\:mr-16 { - margin-right: 4rem; + .lg\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .lg\:mb-16 { - margin-bottom: 4rem; + .lg\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .lg\:ml-16 { - margin-left: 4rem; + .lg\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .lg\:mt-20 { - margin-top: 5rem; + .lg\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .lg\:mr-20 { - margin-right: 5rem; + .lg\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .lg\:mb-20 { - margin-bottom: 5rem; + .lg\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .lg\:ml-20 { - margin-left: 5rem; + .lg\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .lg\:mt-24 { - margin-top: 6rem; + .lg\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .lg\:mr-24 { - margin-right: 6rem; + .lg\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .lg\:mb-24 { - margin-bottom: 6rem; + .lg\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .lg\:ml-24 { - margin-left: 6rem; + .lg\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .lg\:mt-28 { - margin-top: 7rem; + .lg\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .lg\:mr-28 { - margin-right: 7rem; + .lg\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .lg\:mb-28 { - margin-bottom: 7rem; + .lg\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .lg\:ml-28 { - margin-left: 7rem; + .lg\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .lg\:mt-32 { - margin-top: 8rem; + .lg\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .lg\:mr-32 { - margin-right: 8rem; + .lg\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .lg\:mb-32 { - margin-bottom: 8rem; + .lg\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .lg\:ml-32 { - margin-left: 8rem; + .lg\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .lg\:mt-36 { - margin-top: 9rem; + .lg\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .lg\:mr-36 { - margin-right: 9rem; + .lg\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .lg\:mb-36 { - margin-bottom: 9rem; + .lg\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .lg\:ml-36 { - margin-left: 9rem; + .lg\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .lg\:mt-40 { - margin-top: 10rem; + .lg\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .lg\:mr-40 { - margin-right: 10rem; + .lg\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .lg\:mb-40 { - margin-bottom: 10rem; + .lg\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .lg\:ml-40 { - margin-left: 10rem; + .lg\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .lg\:mt-44 { - margin-top: 11rem; + .lg\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .lg\:mr-44 { - margin-right: 11rem; + .lg\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .lg\:mb-44 { - margin-bottom: 11rem; + .lg\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .lg\:ml-44 { - margin-left: 11rem; + .lg\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .lg\:mt-48 { - margin-top: 12rem; + .lg\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .lg\:mr-48 { - margin-right: 12rem; + .lg\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .lg\:mb-48 { - margin-bottom: 12rem; + .lg\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .lg\:ml-48 { - margin-left: 12rem; + .lg\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .lg\:mt-52 { - margin-top: 13rem; + .lg\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .lg\:mr-52 { - margin-right: 13rem; + .lg\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .lg\:mb-52 { - margin-bottom: 13rem; + .lg\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .lg\:ml-52 { - margin-left: 13rem; + .lg\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .lg\:mt-56 { - margin-top: 14rem; + .lg\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .lg\:mr-56 { - margin-right: 14rem; + .lg\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .lg\:mb-56 { - margin-bottom: 14rem; + .lg\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .lg\:ml-56 { - margin-left: 14rem; + .lg\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .lg\:mt-60 { - margin-top: 15rem; + .lg\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .lg\:mr-60 { - margin-right: 15rem; + .lg\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .lg\:mb-60 { - margin-bottom: 15rem; + .lg\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .lg\:ml-60 { - margin-left: 15rem; + .lg\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .lg\:mt-64 { - margin-top: 16rem; + .lg\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .lg\:mr-64 { - margin-right: 16rem; + .lg\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .lg\:mb-64 { - margin-bottom: 16rem; + .lg\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .lg\:ml-64 { - margin-left: 16rem; + .lg\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .lg\:mt-72 { - margin-top: 18rem; + .lg\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .lg\:mr-72 { - margin-right: 18rem; + .lg\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .lg\:mb-72 { - margin-bottom: 18rem; + .lg\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .lg\:ml-72 { - margin-left: 18rem; + .lg\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .lg\:mt-80 { - margin-top: 20rem; + .lg\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + } + + .lg\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .lg\:mr-80 { - margin-right: 20rem; + .lg\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .lg\:mb-80 { - margin-bottom: 20rem; + .lg\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .lg\:ml-80 { - margin-left: 20rem; + .lg\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .lg\:mt-96 { - margin-top: 24rem; + .lg\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .lg\:mr-96 { - margin-right: 24rem; + .lg\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .lg\:mb-96 { - margin-bottom: 24rem; + .group:hover .lg\:group-hover\:border-transparent { + border-color: transparent; } - .lg\:ml-96 { - margin-left: 24rem; + .group:hover .lg\:group-hover\:border-current { + border-color: currentColor; } - .lg\:mt-auto { - margin-top: auto; + .group:hover .lg\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .lg\:mr-auto { - margin-right: auto; + .group:hover .lg\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .lg\:mb-auto { - margin-bottom: auto; + .group:hover .lg\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .lg\:ml-auto { - margin-left: auto; + .group:hover .lg\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .lg\:mt-px { - margin-top: 1px; + .group:hover .lg\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .lg\:mr-px { - margin-right: 1px; + .group:hover .lg\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .lg\:mb-px { - margin-bottom: 1px; + .group:hover .lg\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .lg\:ml-px { - margin-left: 1px; + .group:hover .lg\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .lg\:mt-0\.5 { - margin-top: 0.125rem; + .group:hover .lg\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .lg\:mr-0\.5 { - margin-right: 0.125rem; + .group:hover .lg\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .lg\:mb-0\.5 { - margin-bottom: 0.125rem; + .group:hover .lg\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .lg\:ml-0\.5 { - margin-left: 0.125rem; + .group:hover .lg\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .lg\:mt-1\.5 { - margin-top: 0.375rem; + .group:hover .lg\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .lg\:mr-1\.5 { - margin-right: 0.375rem; + .group:hover .lg\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .lg\:mb-1\.5 { - margin-bottom: 0.375rem; + .group:hover .lg\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .lg\:ml-1\.5 { - margin-left: 0.375rem; + .group:hover .lg\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .lg\:mt-2\.5 { - margin-top: 0.625rem; + .group:hover .lg\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .lg\:mr-2\.5 { - margin-right: 0.625rem; + .group:hover .lg\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .lg\:mb-2\.5 { - margin-bottom: 0.625rem; + .group:hover .lg\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .lg\:ml-2\.5 { - margin-left: 0.625rem; + .group:hover .lg\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .lg\:mt-3\.5 { - margin-top: 0.875rem; + .group:hover .lg\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .lg\:mr-3\.5 { - margin-right: 0.875rem; + .group:hover .lg\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .lg\:mb-3\.5 { - margin-bottom: 0.875rem; + .group:hover .lg\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .lg\:ml-3\.5 { - margin-left: 0.875rem; + .group:hover .lg\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .lg\:-mt-0 { - margin-top: 0px; + .group:hover .lg\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .lg\:-mr-0 { - margin-right: 0px; + .group:hover .lg\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .lg\:-mb-0 { - margin-bottom: 0px; + .group:hover .lg\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .lg\:-ml-0 { - margin-left: 0px; + .group:hover .lg\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .lg\:-mt-1 { - margin-top: -0.25rem; + .group:hover .lg\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .lg\:-mr-1 { - margin-right: -0.25rem; + .group:hover .lg\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .lg\:-mb-1 { - margin-bottom: -0.25rem; + .group:hover .lg\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .lg\:-ml-1 { - margin-left: -0.25rem; + .group:hover .lg\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .lg\:-mt-2 { - margin-top: -0.5rem; + .group:hover .lg\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .lg\:-mr-2 { - margin-right: -0.5rem; + .group:hover .lg\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .lg\:-mb-2 { - margin-bottom: -0.5rem; + .group:hover .lg\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .lg\:-ml-2 { - margin-left: -0.5rem; + .group:hover .lg\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .lg\:-mt-3 { - margin-top: -0.75rem; + .group:hover .lg\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .lg\:-mr-3 { - margin-right: -0.75rem; + .group:hover .lg\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .lg\:-mb-3 { - margin-bottom: -0.75rem; + .group:hover .lg\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .lg\:-ml-3 { - margin-left: -0.75rem; + .group:hover .lg\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .lg\:-mt-4 { - margin-top: -1rem; + .group:hover .lg\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .lg\:-mr-4 { - margin-right: -1rem; + .group:hover .lg\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .lg\:-mb-4 { - margin-bottom: -1rem; + .group:hover .lg\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .lg\:-ml-4 { - margin-left: -1rem; + .group:hover .lg\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .lg\:-mt-5 { - margin-top: -1.25rem; + .group:hover .lg\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .lg\:-mr-5 { - margin-right: -1.25rem; + .group:hover .lg\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .lg\:-mb-5 { - margin-bottom: -1.25rem; + .group:hover .lg\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .lg\:-ml-5 { - margin-left: -1.25rem; + .group:hover .lg\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .lg\:-mt-6 { - margin-top: -1.5rem; + .group:hover .lg\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .lg\:-mr-6 { - margin-right: -1.5rem; + .group:hover .lg\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .lg\:-mb-6 { - margin-bottom: -1.5rem; + .group:hover .lg\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .lg\:-ml-6 { - margin-left: -1.5rem; + .group:hover .lg\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .lg\:-mt-7 { - margin-top: -1.75rem; + .group:hover .lg\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .lg\:-mr-7 { - margin-right: -1.75rem; + .group:hover .lg\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .lg\:-mb-7 { - margin-bottom: -1.75rem; + .group:hover .lg\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .lg\:-ml-7 { - margin-left: -1.75rem; + .group:hover .lg\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .lg\:-mt-8 { - margin-top: -2rem; + .group:hover .lg\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .lg\:-mr-8 { - margin-right: -2rem; + .group:hover .lg\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .lg\:-mb-8 { - margin-bottom: -2rem; + .group:hover .lg\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .lg\:-ml-8 { - margin-left: -2rem; + .group:hover .lg\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .lg\:-mt-9 { - margin-top: -2.25rem; + .group:hover .lg\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .lg\:-mr-9 { - margin-right: -2.25rem; + .group:hover .lg\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .lg\:-mb-9 { - margin-bottom: -2.25rem; + .group:hover .lg\:group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .lg\:-ml-9 { - margin-left: -2.25rem; + .group:hover .lg\:group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .lg\:-mt-10 { - margin-top: -2.5rem; + .group:hover .lg\:group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .lg\:-mr-10 { - margin-right: -2.5rem; + .group:hover .lg\:group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .lg\:-mb-10 { - margin-bottom: -2.5rem; + .group:hover .lg\:group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .lg\:-ml-10 { - margin-left: -2.5rem; + .group:hover .lg\:group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .lg\:-mt-11 { - margin-top: -2.75rem; + .group:hover .lg\:group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .lg\:-mr-11 { - margin-right: -2.75rem; + .group:hover .lg\:group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .lg\:-mb-11 { - margin-bottom: -2.75rem; + .group:hover .lg\:group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .lg\:-ml-11 { - margin-left: -2.75rem; + .group:hover .lg\:group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .lg\:-mt-12 { - margin-top: -3rem; + .group:hover .lg\:group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .lg\:-mr-12 { - margin-right: -3rem; + .group:hover .lg\:group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .lg\:-mb-12 { - margin-bottom: -3rem; + .group:hover .lg\:group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .lg\:-ml-12 { - margin-left: -3rem; + .group:hover .lg\:group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .lg\:-mt-14 { - margin-top: -3.5rem; + .group:hover .lg\:group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .lg\:-mr-14 { - margin-right: -3.5rem; + .group:hover .lg\:group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .lg\:-mb-14 { - margin-bottom: -3.5rem; + .group:hover .lg\:group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .lg\:-ml-14 { - margin-left: -3.5rem; + .group:hover .lg\:group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .lg\:-mt-16 { - margin-top: -4rem; + .group:hover .lg\:group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .lg\:-mr-16 { - margin-right: -4rem; + .group:hover .lg\:group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .lg\:-mb-16 { - margin-bottom: -4rem; + .lg\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .lg\:-ml-16 { - margin-left: -4rem; + .lg\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .lg\:-mt-20 { - margin-top: -5rem; + .lg\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .lg\:-mr-20 { - margin-right: -5rem; + .lg\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .lg\:-mb-20 { - margin-bottom: -5rem; + .lg\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .lg\:-ml-20 { - margin-left: -5rem; + .lg\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .lg\:-mt-24 { - margin-top: -6rem; + .lg\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .lg\:-mr-24 { - margin-right: -6rem; + .lg\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .lg\:-mb-24 { - margin-bottom: -6rem; + .lg\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .lg\:-ml-24 { - margin-left: -6rem; + .lg\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .lg\:-mt-28 { - margin-top: -7rem; + .lg\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .lg\:-mr-28 { - margin-right: -7rem; + .lg\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .lg\:-mb-28 { - margin-bottom: -7rem; + .lg\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .lg\:-ml-28 { - margin-left: -7rem; + .lg\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .lg\:-mt-32 { - margin-top: -8rem; + .lg\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .lg\:-mr-32 { - margin-right: -8rem; + .lg\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .lg\:-mb-32 { - margin-bottom: -8rem; + .lg\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .lg\:-ml-32 { - margin-left: -8rem; + .lg\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .lg\:-mt-36 { - margin-top: -9rem; + .lg\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .lg\:-mr-36 { - margin-right: -9rem; + .lg\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .lg\:-mb-36 { - margin-bottom: -9rem; + .lg\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .lg\:-ml-36 { - margin-left: -9rem; + .lg\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .lg\:-mt-40 { - margin-top: -10rem; + .lg\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .lg\:-mr-40 { - margin-right: -10rem; + .lg\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .lg\:-mb-40 { - margin-bottom: -10rem; + .lg\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .lg\:-ml-40 { - margin-left: -10rem; + .lg\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .lg\:-mt-44 { - margin-top: -11rem; + .lg\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .lg\:-mr-44 { - margin-right: -11rem; + .lg\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .lg\:-mb-44 { - margin-bottom: -11rem; + .lg\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .lg\:-ml-44 { - margin-left: -11rem; + .lg\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .lg\:-mt-48 { - margin-top: -12rem; + .lg\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .lg\:-mr-48 { - margin-right: -12rem; + .lg\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .lg\:-mb-48 { - margin-bottom: -12rem; + .lg\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .lg\:-ml-48 { - margin-left: -12rem; + .lg\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .lg\:-mt-52 { - margin-top: -13rem; + .lg\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .lg\:-mr-52 { - margin-right: -13rem; + .lg\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .lg\:-mb-52 { - margin-bottom: -13rem; + .lg\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .lg\:-ml-52 { - margin-left: -13rem; + .lg\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .lg\:-mt-56 { - margin-top: -14rem; + .lg\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .lg\:-mr-56 { - margin-right: -14rem; + .lg\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .lg\:-mb-56 { - margin-bottom: -14rem; + .lg\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .lg\:-ml-56 { - margin-left: -14rem; + .lg\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .lg\:-mt-60 { - margin-top: -15rem; + .lg\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .lg\:-mr-60 { - margin-right: -15rem; + .lg\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .lg\:-mb-60 { - margin-bottom: -15rem; + .lg\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .lg\:-ml-60 { - margin-left: -15rem; + .lg\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .lg\:-mt-64 { - margin-top: -16rem; + .lg\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .lg\:-mr-64 { - margin-right: -16rem; + .lg\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .lg\:-mb-64 { - margin-bottom: -16rem; + .lg\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .lg\:-ml-64 { - margin-left: -16rem; + .lg\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .lg\:-mt-72 { - margin-top: -18rem; + .lg\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .lg\:-mr-72 { - margin-right: -18rem; + .lg\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .lg\:-mb-72 { - margin-bottom: -18rem; + .lg\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .lg\:-ml-72 { - margin-left: -18rem; + .lg\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .lg\:-mt-80 { - margin-top: -20rem; + .lg\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .lg\:-mr-80 { - margin-right: -20rem; + .lg\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .lg\:-mb-80 { - margin-bottom: -20rem; + .lg\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .lg\:-ml-80 { - margin-left: -20rem; + .lg\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .lg\:-mt-96 { - margin-top: -24rem; + .lg\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .lg\:-mr-96 { - margin-right: -24rem; + .lg\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .lg\:-mb-96 { - margin-bottom: -24rem; + .lg\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .lg\:-ml-96 { - margin-left: -24rem; + .lg\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .lg\:-mt-px { - margin-top: -1px; + .lg\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .lg\:-mr-px { - margin-right: -1px; + .lg\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .lg\:-mb-px { - margin-bottom: -1px; + .lg\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .lg\:-ml-px { - margin-left: -1px; + .lg\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .lg\:-mt-0\.5 { - margin-top: -0.125rem; + .lg\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .lg\:-mr-0\.5 { - margin-right: -0.125rem; + .lg\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .lg\:-mb-0\.5 { - margin-bottom: -0.125rem; + .lg\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .lg\:-ml-0\.5 { - margin-left: -0.125rem; + .lg\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .lg\:-mt-1\.5 { - margin-top: -0.375rem; + .lg\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .lg\:-mr-1\.5 { - margin-right: -0.375rem; + .lg\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .lg\:-mb-1\.5 { - margin-bottom: -0.375rem; + .lg\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .lg\:-ml-1\.5 { - margin-left: -0.375rem; + .lg\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .lg\:-mt-2\.5 { - margin-top: -0.625rem; + .lg\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .lg\:-mr-2\.5 { - margin-right: -0.625rem; + .lg\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .lg\:-mb-2\.5 { - margin-bottom: -0.625rem; + .lg\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .lg\:-ml-2\.5 { - margin-left: -0.625rem; + .lg\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .lg\:-mt-3\.5 { - margin-top: -0.875rem; + .lg\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .lg\:-mr-3\.5 { - margin-right: -0.875rem; + .lg\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .lg\:-mb-3\.5 { - margin-bottom: -0.875rem; + .lg\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .lg\:-ml-3\.5 { - margin-left: -0.875rem; + .lg\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .lg\:max-h-0 { - max-height: 0px; + .lg\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .lg\:max-h-1 { - max-height: 0.25rem; + .lg\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .lg\:max-h-2 { - max-height: 0.5rem; + .lg\:hover\:border-transparent:hover { + border-color: transparent; } - .lg\:max-h-3 { - max-height: 0.75rem; + .lg\:hover\:border-current:hover { + border-color: currentColor; } - .lg\:max-h-4 { - max-height: 1rem; + .lg\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .lg\:max-h-5 { - max-height: 1.25rem; + .lg\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .lg\:max-h-6 { - max-height: 1.5rem; + .lg\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .lg\:max-h-7 { - max-height: 1.75rem; + .lg\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .lg\:max-h-8 { - max-height: 2rem; + .lg\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .lg\:max-h-9 { - max-height: 2.25rem; + .lg\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .lg\:max-h-10 { - max-height: 2.5rem; + .lg\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .lg\:max-h-11 { - max-height: 2.75rem; + .lg\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .lg\:max-h-12 { - max-height: 3rem; + .lg\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .lg\:max-h-14 { - max-height: 3.5rem; + .lg\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .lg\:max-h-16 { - max-height: 4rem; + .lg\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .lg\:max-h-20 { - max-height: 5rem; + .lg\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .lg\:max-h-24 { - max-height: 6rem; + .lg\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .lg\:max-h-28 { - max-height: 7rem; + .lg\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .lg\:max-h-32 { - max-height: 8rem; + .lg\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .lg\:max-h-36 { - max-height: 9rem; + .lg\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .lg\:max-h-40 { - max-height: 10rem; + .lg\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .lg\:max-h-44 { - max-height: 11rem; + .lg\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .lg\:max-h-48 { - max-height: 12rem; + .lg\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .lg\:max-h-52 { - max-height: 13rem; + .lg\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .lg\:max-h-56 { - max-height: 14rem; + .lg\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .lg\:max-h-60 { - max-height: 15rem; + .lg\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .lg\:max-h-64 { - max-height: 16rem; + .lg\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .lg\:max-h-72 { - max-height: 18rem; + .lg\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .lg\:max-h-80 { - max-height: 20rem; + .lg\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .lg\:max-h-96 { - max-height: 24rem; + .lg\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .lg\:max-h-px { - max-height: 1px; + .lg\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .lg\:max-h-0\.5 { - max-height: 0.125rem; + .lg\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .lg\:max-h-1\.5 { - max-height: 0.375rem; + .lg\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .lg\:max-h-2\.5 { - max-height: 0.625rem; + .lg\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .lg\:max-h-3\.5 { - max-height: 0.875rem; + .lg\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .lg\:max-h-full { - max-height: 100%; + .lg\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .lg\:max-h-screen { - max-height: 100vh; + .lg\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .lg\:max-w-0 { - max-width: 0rem; + .lg\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .lg\:max-w-none { - max-width: none; + .lg\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .lg\:max-w-xs { - max-width: 20rem; + .lg\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .lg\:max-w-sm { - max-width: 24rem; + .lg\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .lg\:max-w-md { - max-width: 28rem; + .lg\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .lg\:max-w-lg { - max-width: 32rem; + .lg\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .lg\:max-w-xl { - max-width: 36rem; + .lg\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .lg\:max-w-2xl { - max-width: 42rem; + .lg\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .lg\:max-w-3xl { - max-width: 48rem; + .lg\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .lg\:max-w-4xl { - max-width: 56rem; + .lg\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .lg\:max-w-5xl { - max-width: 64rem; + .lg\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .lg\:max-w-6xl { - max-width: 72rem; + .lg\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .lg\:max-w-7xl { - max-width: 80rem; + .lg\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .lg\:max-w-full { - max-width: 100%; + .lg\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .lg\:max-w-min { - max-width: min-content; + .lg\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .lg\:max-w-max { - max-width: max-content; + .lg\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .lg\:max-w-prose { - max-width: 65ch; + .lg\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .lg\:max-w-screen-sm { - max-width: 640px; + .lg\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .lg\:max-w-screen-md { - max-width: 768px; + .lg\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .lg\:max-w-screen-lg { - max-width: 1024px; + .lg\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .lg\:max-w-screen-xl { - max-width: 1280px; + .lg\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .lg\:max-w-screen-2xl { - max-width: 1536px; + .lg\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .lg\:min-h-0 { - min-height: 0px; + .lg\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .lg\:min-h-full { - min-height: 100%; + .lg\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .lg\:min-h-screen { - min-height: 100vh; + .lg\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .lg\:min-w-0 { - min-width: 0px; + .lg\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .lg\:min-w-full { - min-width: 100%; + .lg\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .lg\:min-w-min { - min-width: min-content; + .lg\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .lg\:min-w-max { - min-width: max-content; + .lg\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .lg\:object-contain { - object-fit: contain; + .lg\:hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .lg\:object-cover { - object-fit: cover; + .lg\:hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .lg\:object-fill { - object-fit: fill; + .lg\:hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .lg\:object-none { - object-fit: none; + .lg\:hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .lg\:object-scale-down { - object-fit: scale-down; + .lg\:hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .lg\:object-bottom { - object-position: bottom; + .lg\:hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .lg\:object-center { - object-position: center; + .lg\:hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .lg\:object-left { - object-position: left; + .lg\:hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .lg\:object-left-bottom { - object-position: left bottom; + .lg\:hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .lg\:object-left-top { - object-position: left top; + .lg\:hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .lg\:object-right { - object-position: right; + .lg\:hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .lg\:object-right-bottom { - object-position: right bottom; + .lg\:hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .lg\:object-right-top { - object-position: right top; + .lg\:hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .lg\:object-top { - object-position: top; + .lg\:hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .lg\:opacity-0 { - opacity: 0; + .lg\:hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .lg\:opacity-5 { - opacity: 0.05; + .lg\:hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .lg\:opacity-10 { - opacity: 0.1; + .lg\:hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .lg\:opacity-20 { - opacity: 0.2; + .lg\:hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .lg\:opacity-25 { - opacity: 0.25; + .lg\:hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .lg\:opacity-30 { - opacity: 0.3; + .lg\:hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .lg\:opacity-40 { - opacity: 0.4; + .lg\:focus\:border-transparent:focus { + border-color: transparent; } - .lg\:opacity-50 { - opacity: 0.5; + .lg\:focus\:border-current:focus { + border-color: currentColor; } - .lg\:opacity-60 { - opacity: 0.6; + .lg\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .lg\:opacity-70 { - opacity: 0.7; + .lg\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .lg\:opacity-75 { - opacity: 0.75; + .lg\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .lg\:opacity-80 { - opacity: 0.8; + .lg\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .lg\:opacity-90 { - opacity: 0.9; + .lg\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .lg\:opacity-95 { - opacity: 0.95; + .lg\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .lg\:opacity-100 { - opacity: 1; + .lg\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-0 { - opacity: 0; + .lg\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-5 { - opacity: 0.05; + .lg\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-10 { - opacity: 0.1; + .lg\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-20 { - opacity: 0.2; + .lg\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-25 { - opacity: 0.25; + .lg\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-30 { - opacity: 0.3; + .lg\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-40 { - opacity: 0.4; + .lg\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-50 { - opacity: 0.5; + .lg\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-60 { - opacity: 0.6; + .lg\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-70 { - opacity: 0.7; + .lg\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-75 { - opacity: 0.75; + .lg\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-80 { - opacity: 0.8; + .lg\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-90 { - opacity: 0.9; + .lg\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-95 { - opacity: 0.95; + .lg\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .group:hover .lg\:group-hover\:opacity-100 { - opacity: 1; + .lg\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-0:focus-within { - opacity: 0; + .lg\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .lg\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .lg\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .lg\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .lg\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .lg\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .lg\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .lg\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .lg\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .lg\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .lg\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .lg\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .lg\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .lg\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .lg\:focus-within\:opacity-100:focus-within { - opacity: 1; + .lg\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .lg\:hover\:opacity-0:hover { - opacity: 0; + .lg\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .lg\:hover\:opacity-5:hover { - opacity: 0.05; + .lg\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .lg\:hover\:opacity-10:hover { - opacity: 0.1; + .lg\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .lg\:hover\:opacity-20:hover { - opacity: 0.2; + .lg\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .lg\:hover\:opacity-25:hover { - opacity: 0.25; + .lg\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .lg\:hover\:opacity-30:hover { - opacity: 0.3; + .lg\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .lg\:hover\:opacity-40:hover { - opacity: 0.4; + .lg\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .lg\:hover\:opacity-50:hover { - opacity: 0.5; + .lg\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .lg\:hover\:opacity-60:hover { - opacity: 0.6; + .lg\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .lg\:hover\:opacity-70:hover { - opacity: 0.7; + .lg\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .lg\:hover\:opacity-75:hover { - opacity: 0.75; + .lg\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .lg\:hover\:opacity-80:hover { - opacity: 0.8; + .lg\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .lg\:hover\:opacity-90:hover { - opacity: 0.9; + .lg\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .lg\:hover\:opacity-95:hover { - opacity: 0.95; + .lg\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .lg\:hover\:opacity-100:hover { - opacity: 1; + .lg\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .lg\:focus\:opacity-0:focus { - opacity: 0; + .lg\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .lg\:focus\:opacity-5:focus { - opacity: 0.05; + .lg\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .lg\:focus\:opacity-10:focus { - opacity: 0.1; + .lg\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .lg\:focus\:opacity-20:focus { - opacity: 0.2; + .lg\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .lg\:focus\:opacity-25:focus { - opacity: 0.25; + .lg\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .lg\:focus\:opacity-30:focus { - opacity: 0.3; + .lg\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .lg\:focus\:opacity-40:focus { - opacity: 0.4; + .lg\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .lg\:focus\:opacity-50:focus { - opacity: 0.5; + .lg\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .lg\:focus\:opacity-60:focus { - opacity: 0.6; + .lg\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .lg\:focus\:opacity-70:focus { - opacity: 0.7; + .lg\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .lg\:focus\:opacity-75:focus { - opacity: 0.75; + .lg\:focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .lg\:focus\:opacity-80:focus { - opacity: 0.8; + .lg\:focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .lg\:focus\:opacity-90:focus { - opacity: 0.9; + .lg\:focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .lg\:focus\:opacity-95:focus { - opacity: 0.95; + .lg\:focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .lg\:focus\:opacity-100:focus { - opacity: 1; + .lg\:focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .lg\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .lg\:focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .lg\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .lg\:focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .lg\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .lg\:focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .lg\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .lg\:focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .lg\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .lg\:focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .lg\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .lg\:focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .lg\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .lg\:focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .lg\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .lg\:focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .lg\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .lg\:focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .lg\:overflow-auto { - overflow: auto; + .lg\:focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .lg\:overflow-hidden { - overflow: hidden; + .lg\:focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .lg\:overflow-visible { - overflow: visible; + .lg\:focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .lg\:overflow-scroll { - overflow: scroll; + .lg\:focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .lg\:overflow-x-auto { - overflow-x: auto; + .lg\:focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .lg\:overflow-y-auto { - overflow-y: auto; + .lg\:focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .lg\:overflow-x-hidden { - overflow-x: hidden; + .lg\:border-opacity-0 { + --tw-border-opacity: 0; } - .lg\:overflow-y-hidden { - overflow-y: hidden; + .lg\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .lg\:overflow-x-visible { - overflow-x: visible; + .lg\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .lg\:overflow-y-visible { - overflow-y: visible; + .lg\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .lg\:overflow-x-scroll { - overflow-x: scroll; + .lg\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .lg\:overflow-y-scroll { - overflow-y: scroll; + .lg\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .lg\:overscroll-auto { - overscroll-behavior: auto; + .lg\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .lg\:overscroll-contain { - overscroll-behavior: contain; + .lg\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .lg\:overscroll-none { - overscroll-behavior: none; + .lg\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .lg\:overscroll-y-auto { - overscroll-behavior-y: auto; + .lg\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .lg\:overscroll-y-contain { - overscroll-behavior-y: contain; + .lg\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .lg\:overscroll-y-none { - overscroll-behavior-y: none; + .lg\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .lg\:overscroll-x-auto { - overscroll-behavior-x: auto; + .lg\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .lg\:overscroll-x-contain { - overscroll-behavior-x: contain; + .lg\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .lg\:overscroll-x-none { - overscroll-behavior-x: none; + .lg\:border-opacity-100 { + --tw-border-opacity: 1; } - .lg\:p-0 { - padding: 0px; + .group:hover .lg\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } - .lg\:p-1 { - padding: 0.25rem; + .group:hover .lg\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .lg\:p-2 { - padding: 0.5rem; + .group:hover .lg\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .lg\:p-3 { - padding: 0.75rem; + .group:hover .lg\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .lg\:p-4 { - padding: 1rem; + .group:hover .lg\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .lg\:p-5 { - padding: 1.25rem; + .group:hover .lg\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .lg\:p-6 { - padding: 1.5rem; + .group:hover .lg\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .lg\:p-7 { - padding: 1.75rem; + .group:hover .lg\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .lg\:p-8 { - padding: 2rem; + .group:hover .lg\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .lg\:p-9 { - padding: 2.25rem; + .group:hover .lg\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .lg\:p-10 { - padding: 2.5rem; + .group:hover .lg\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .lg\:p-11 { - padding: 2.75rem; + .group:hover .lg\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .lg\:p-12 { - padding: 3rem; + .group:hover .lg\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .lg\:p-14 { - padding: 3.5rem; + .group:hover .lg\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .lg\:p-16 { - padding: 4rem; + .group:hover .lg\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } - .lg\:p-20 { - padding: 5rem; + .lg\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } - .lg\:p-24 { - padding: 6rem; + .lg\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } - .lg\:p-28 { - padding: 7rem; + .lg\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } - .lg\:p-32 { - padding: 8rem; + .lg\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } - .lg\:p-36 { - padding: 9rem; + .lg\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } - .lg\:p-40 { - padding: 10rem; + .lg\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } - .lg\:p-44 { - padding: 11rem; + .lg\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } - .lg\:p-48 { - padding: 12rem; + .lg\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } - .lg\:p-52 { - padding: 13rem; + .lg\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } - .lg\:p-56 { - padding: 14rem; + .lg\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } - .lg\:p-60 { - padding: 15rem; + .lg\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } - .lg\:p-64 { - padding: 16rem; + .lg\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } - .lg\:p-72 { - padding: 18rem; + .lg\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } - .lg\:p-80 { - padding: 20rem; + .lg\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } - .lg\:p-96 { - padding: 24rem; + .lg\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } - .lg\:p-px { - padding: 1px; + .lg\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } - .lg\:p-0\.5 { - padding: 0.125rem; + .lg\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } - .lg\:p-1\.5 { - padding: 0.375rem; + .lg\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } - .lg\:p-2\.5 { - padding: 0.625rem; + .lg\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } - .lg\:p-3\.5 { - padding: 0.875rem; + .lg\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } - .lg\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .lg\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } - .lg\:px-0 { - padding-left: 0px; - padding-right: 0px; + .lg\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } - .lg\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .lg\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } - .lg\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .lg\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } - .lg\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .lg\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } - .lg\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .lg\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } - .lg\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .lg\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } - .lg\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .lg\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } - .lg\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .lg\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } - .lg\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .lg\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } - .lg\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .lg\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } - .lg\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .lg\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } - .lg\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .lg\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } - .lg\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .lg\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } - .lg\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .lg\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } - .lg\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .lg\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } - .lg\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .lg\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } - .lg\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .lg\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } - .lg\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .lg\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } - .lg\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .lg\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } - .lg\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .lg\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } - .lg\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .lg\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } - .lg\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .lg\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } - .lg\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .lg\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } - .lg\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .lg\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } - .lg\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .lg\:bg-transparent { + background-color: transparent; } - .lg\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .lg\:bg-current { + background-color: currentColor; } - .lg\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .lg\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .lg\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .lg\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .lg\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .lg\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .lg\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .lg\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .lg\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .lg\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .lg\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .lg\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .lg\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .lg\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .lg\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .lg\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .lg\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .lg\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .lg\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .lg\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .lg\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .lg\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .lg\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .lg\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .lg\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .lg\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .lg\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .lg\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .lg\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .lg\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .lg\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .lg\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .lg\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .lg\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .lg\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .lg\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .lg\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .lg\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .lg\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .lg\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .lg\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .lg\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .lg\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .lg\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .lg\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .lg\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .lg\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .lg\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .lg\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .lg\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .lg\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .lg\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .lg\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .lg\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .lg\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .lg\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .lg\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .lg\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .lg\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .lg\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .lg\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .lg\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .lg\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .lg\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .lg\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .lg\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .lg\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .lg\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .lg\:px-px { - padding-left: 1px; - padding-right: 1px; + .lg\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .lg\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .lg\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .lg\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .lg\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .lg\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .lg\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .lg\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .lg\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .lg\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .lg\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .lg\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .lg\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .lg\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .lg\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .lg\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .lg\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .lg\:pt-0 { - padding-top: 0px; + .lg\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .lg\:pr-0 { - padding-right: 0px; + .lg\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .lg\:pb-0 { - padding-bottom: 0px; + .lg\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .lg\:pl-0 { - padding-left: 0px; + .lg\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .lg\:pt-1 { - padding-top: 0.25rem; + .lg\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .lg\:pr-1 { - padding-right: 0.25rem; + .lg\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .lg\:pb-1 { - padding-bottom: 0.25rem; + .lg\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .lg\:pl-1 { - padding-left: 0.25rem; + .lg\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .lg\:pt-2 { - padding-top: 0.5rem; + .lg\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .lg\:pr-2 { - padding-right: 0.5rem; + .lg\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .lg\:pb-2 { - padding-bottom: 0.5rem; + .lg\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .lg\:pl-2 { - padding-left: 0.5rem; + .lg\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .lg\:pt-3 { - padding-top: 0.75rem; + .lg\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .lg\:pr-3 { - padding-right: 0.75rem; + .lg\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .lg\:pb-3 { - padding-bottom: 0.75rem; + .lg\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .lg\:pl-3 { - padding-left: 0.75rem; + .lg\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .lg\:pt-4 { - padding-top: 1rem; + .lg\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .lg\:pr-4 { - padding-right: 1rem; + .lg\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .lg\:pb-4 { - padding-bottom: 1rem; + .lg\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .lg\:pl-4 { - padding-left: 1rem; + .lg\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .lg\:pt-5 { - padding-top: 1.25rem; + .lg\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .lg\:pr-5 { - padding-right: 1.25rem; + .lg\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .lg\:pb-5 { - padding-bottom: 1.25rem; + .lg\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .lg\:pl-5 { - padding-left: 1.25rem; + .lg\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .lg\:pt-6 { - padding-top: 1.5rem; + .lg\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .lg\:pr-6 { - padding-right: 1.5rem; + .lg\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .lg\:pb-6 { - padding-bottom: 1.5rem; + .lg\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .lg\:pl-6 { - padding-left: 1.5rem; + .lg\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .lg\:pt-7 { - padding-top: 1.75rem; + .lg\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .lg\:pr-7 { - padding-right: 1.75rem; + .lg\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .lg\:pb-7 { - padding-bottom: 1.75rem; + .lg\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .lg\:pl-7 { - padding-left: 1.75rem; + .lg\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .lg\:pt-8 { - padding-top: 2rem; + .lg\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .lg\:pr-8 { - padding-right: 2rem; + .lg\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .lg\:pb-8 { - padding-bottom: 2rem; + .lg\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .lg\:pl-8 { - padding-left: 2rem; + .lg\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .lg\:pt-9 { - padding-top: 2.25rem; + .lg\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .lg\:pr-9 { - padding-right: 2.25rem; + .lg\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .lg\:pb-9 { - padding-bottom: 2.25rem; + .lg\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .lg\:pl-9 { - padding-left: 2.25rem; + .group:hover .lg\:group-hover\:bg-transparent { + background-color: transparent; } - .lg\:pt-10 { - padding-top: 2.5rem; + .group:hover .lg\:group-hover\:bg-current { + background-color: currentColor; } - .lg\:pr-10 { - padding-right: 2.5rem; + .group:hover .lg\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .lg\:pb-10 { - padding-bottom: 2.5rem; + .group:hover .lg\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .lg\:pl-10 { - padding-left: 2.5rem; + .group:hover .lg\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .lg\:pt-11 { - padding-top: 2.75rem; + .group:hover .lg\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .lg\:pr-11 { - padding-right: 2.75rem; + .group:hover .lg\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .lg\:pb-11 { - padding-bottom: 2.75rem; + .group:hover .lg\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .lg\:pl-11 { - padding-left: 2.75rem; + .group:hover .lg\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .lg\:pt-12 { - padding-top: 3rem; + .group:hover .lg\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .lg\:pr-12 { - padding-right: 3rem; + .group:hover .lg\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .lg\:pb-12 { - padding-bottom: 3rem; + .group:hover .lg\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .lg\:pl-12 { - padding-left: 3rem; + .group:hover .lg\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .lg\:pt-14 { - padding-top: 3.5rem; + .group:hover .lg\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .lg\:pr-14 { - padding-right: 3.5rem; + .group:hover .lg\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .lg\:pb-14 { - padding-bottom: 3.5rem; + .group:hover .lg\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .lg\:pl-14 { - padding-left: 3.5rem; + .group:hover .lg\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .lg\:pt-16 { - padding-top: 4rem; + .group:hover .lg\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .lg\:pr-16 { - padding-right: 4rem; + .group:hover .lg\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .lg\:pb-16 { - padding-bottom: 4rem; + .group:hover .lg\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .lg\:pl-16 { - padding-left: 4rem; + .group:hover .lg\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .lg\:pt-20 { - padding-top: 5rem; + .group:hover .lg\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .lg\:pr-20 { - padding-right: 5rem; + .group:hover .lg\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .lg\:pb-20 { - padding-bottom: 5rem; + .group:hover .lg\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .lg\:pl-20 { - padding-left: 5rem; + .group:hover .lg\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .lg\:pt-24 { - padding-top: 6rem; + .group:hover .lg\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .lg\:pr-24 { - padding-right: 6rem; + .group:hover .lg\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .lg\:pb-24 { - padding-bottom: 6rem; + .group:hover .lg\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .lg\:pl-24 { - padding-left: 6rem; + .group:hover .lg\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .lg\:pt-28 { - padding-top: 7rem; + .group:hover .lg\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .lg\:pr-28 { - padding-right: 7rem; + .group:hover .lg\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .lg\:pb-28 { - padding-bottom: 7rem; + .group:hover .lg\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .lg\:pl-28 { - padding-left: 7rem; + .group:hover .lg\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .lg\:pt-32 { - padding-top: 8rem; + .group:hover .lg\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .lg\:pr-32 { - padding-right: 8rem; + .group:hover .lg\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .lg\:pb-32 { - padding-bottom: 8rem; + .group:hover .lg\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .lg\:pl-32 { - padding-left: 8rem; + .group:hover .lg\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .lg\:pt-36 { - padding-top: 9rem; + .group:hover .lg\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .lg\:pr-36 { - padding-right: 9rem; + .group:hover .lg\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .lg\:pb-36 { - padding-bottom: 9rem; + .group:hover .lg\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .lg\:pl-36 { - padding-left: 9rem; + .group:hover .lg\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .lg\:pt-40 { - padding-top: 10rem; + .group:hover .lg\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .lg\:pr-40 { - padding-right: 10rem; + .group:hover .lg\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .lg\:pb-40 { - padding-bottom: 10rem; + .group:hover .lg\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .lg\:pl-40 { - padding-left: 10rem; + .group:hover .lg\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .lg\:pt-44 { - padding-top: 11rem; + .group:hover .lg\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .lg\:pr-44 { - padding-right: 11rem; + .group:hover .lg\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .lg\:pb-44 { - padding-bottom: 11rem; + .group:hover .lg\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .lg\:pl-44 { - padding-left: 11rem; + .group:hover .lg\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .lg\:pt-48 { - padding-top: 12rem; + .group:hover .lg\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .lg\:pr-48 { - padding-right: 12rem; + .group:hover .lg\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .lg\:pb-48 { - padding-bottom: 12rem; + .group:hover .lg\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .lg\:pl-48 { - padding-left: 12rem; + .group:hover .lg\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .lg\:pt-52 { - padding-top: 13rem; + .group:hover .lg\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .lg\:pr-52 { - padding-right: 13rem; + .group:hover .lg\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .lg\:pb-52 { - padding-bottom: 13rem; + .group:hover .lg\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .lg\:pl-52 { - padding-left: 13rem; + .group:hover .lg\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .lg\:pt-56 { - padding-top: 14rem; + .group:hover .lg\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .lg\:pr-56 { - padding-right: 14rem; + .group:hover .lg\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .lg\:pb-56 { - padding-bottom: 14rem; + .group:hover .lg\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .lg\:pl-56 { - padding-left: 14rem; + .group:hover .lg\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .lg\:pt-60 { - padding-top: 15rem; + .group:hover .lg\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .lg\:pr-60 { - padding-right: 15rem; + .group:hover .lg\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .lg\:pb-60 { - padding-bottom: 15rem; + .group:hover .lg\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .lg\:pl-60 { - padding-left: 15rem; + .group:hover .lg\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .lg\:pt-64 { - padding-top: 16rem; + .group:hover .lg\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .lg\:pr-64 { - padding-right: 16rem; + .group:hover .lg\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .lg\:pb-64 { - padding-bottom: 16rem; + .group:hover .lg\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .lg\:pl-64 { - padding-left: 16rem; + .group:hover .lg\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .lg\:pt-72 { - padding-top: 18rem; + .group:hover .lg\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .lg\:pr-72 { - padding-right: 18rem; + .group:hover .lg\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .lg\:pb-72 { - padding-bottom: 18rem; + .group:hover .lg\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .lg\:pl-72 { - padding-left: 18rem; + .group:hover .lg\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .lg\:pt-80 { - padding-top: 20rem; + .group:hover .lg\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .lg\:pr-80 { - padding-right: 20rem; + .group:hover .lg\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .lg\:pb-80 { - padding-bottom: 20rem; + .group:hover .lg\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .lg\:pl-80 { - padding-left: 20rem; + .group:hover .lg\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .lg\:pt-96 { - padding-top: 24rem; + .group:hover .lg\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .lg\:pr-96 { - padding-right: 24rem; + .group:hover .lg\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .lg\:pb-96 { - padding-bottom: 24rem; + .group:hover .lg\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .lg\:pl-96 { - padding-left: 24rem; + .group:hover .lg\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .lg\:pt-px { - padding-top: 1px; + .group:hover .lg\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .lg\:pr-px { - padding-right: 1px; + .group:hover .lg\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .lg\:pb-px { - padding-bottom: 1px; + .group:hover .lg\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .lg\:pl-px { - padding-left: 1px; + .lg\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .lg\:pt-0\.5 { - padding-top: 0.125rem; + .lg\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .lg\:pr-0\.5 { - padding-right: 0.125rem; + .lg\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .lg\:pb-0\.5 { - padding-bottom: 0.125rem; + .lg\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .lg\:pl-0\.5 { - padding-left: 0.125rem; + .lg\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .lg\:pt-1\.5 { - padding-top: 0.375rem; + .lg\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .lg\:pr-1\.5 { - padding-right: 0.375rem; + .lg\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .lg\:pb-1\.5 { - padding-bottom: 0.375rem; + .lg\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .lg\:pl-1\.5 { - padding-left: 0.375rem; + .lg\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .lg\:pt-2\.5 { - padding-top: 0.625rem; + .lg\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .lg\:pr-2\.5 { - padding-right: 0.625rem; + .lg\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .lg\:pb-2\.5 { - padding-bottom: 0.625rem; + .lg\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .lg\:pl-2\.5 { - padding-left: 0.625rem; + .lg\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .lg\:pt-3\.5 { - padding-top: 0.875rem; + .lg\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .lg\:pr-3\.5 { - padding-right: 0.875rem; + .lg\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .lg\:pb-3\.5 { - padding-bottom: 0.875rem; + .lg\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .lg\:pl-3\.5 { - padding-left: 0.875rem; + .lg\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .lg\:placeholder-transparent::placeholder { - color: transparent; + .lg\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .lg\:placeholder-current::placeholder { - color: currentColor; + .lg\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .lg\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .lg\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .lg\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .lg\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .lg\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .lg\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .lg\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .lg\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .lg\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .lg\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .lg\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .lg\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .lg\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .lg\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .lg\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .lg\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .lg\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .lg\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .lg\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .lg\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .lg\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .lg\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .lg\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .lg\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .lg\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .lg\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .lg\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-transparent:hover { + background-color: transparent; } - .lg\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-current:hover { + background-color: currentColor; } - .lg\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .lg\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .lg\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .lg\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .lg\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .lg\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-transparent:focus { + background-color: transparent; } - .lg\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-current:focus { + background-color: currentColor; } - .lg\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .lg\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; + .lg\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; + .lg\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; + .lg\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; + .lg\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; + .lg\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; + .lg\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; + .lg\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; + .lg\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; + .lg\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; + .lg\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; + .lg\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; + .lg\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; + .lg\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; + .lg\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .lg\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; + .lg\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; + .lg\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; + .lg\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; + .lg\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; + .lg\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; + .lg\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; + .lg\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; + .lg\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; + .lg\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; + .lg\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; + .lg\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; + .lg\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; + .lg\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; + .lg\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; + .lg\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .lg\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; + .lg\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .lg\:pointer-events-none { - pointer-events: none; + .lg\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .lg\:pointer-events-auto { - pointer-events: auto; + .lg\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .lg\:static { - position: static; + .lg\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .lg\:fixed { - position: fixed; + .lg\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .lg\:absolute { - position: absolute; + .lg\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .lg\:relative { - position: relative; + .lg\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .lg\:sticky { - position: sticky; + .lg\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .lg\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .lg\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .lg\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .lg\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .lg\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .lg\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .lg\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .lg\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .lg\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .lg\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .lg\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .lg\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .lg\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .lg\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .lg\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .lg\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .lg\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .lg\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .lg\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .lg\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .lg\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .lg\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .lg\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .lg\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .lg\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .lg\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .lg\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .lg\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .lg\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .lg\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .lg\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .lg\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .lg\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .lg\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .lg\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .lg\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .lg\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .lg\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .lg\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .lg\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .lg\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .lg\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .lg\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .lg\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .lg\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .lg\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .lg\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .lg\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .lg\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .lg\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .lg\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .lg\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .lg\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .lg\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .lg\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .lg\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .lg\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .lg\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .lg\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .lg\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .lg\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .lg\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .lg\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .lg\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .lg\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .lg\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .lg\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .lg\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .lg\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .lg\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .lg\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .lg\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .lg\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .lg\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .lg\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .lg\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .lg\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .lg\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .lg\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .lg\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .lg\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .lg\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .lg\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .lg\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .lg\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .lg\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .lg\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .lg\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .lg\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .lg\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .lg\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .group:hover .lg\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .lg\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .group:hover .lg\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .lg\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .group:hover .lg\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .lg\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .group:hover .lg\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .lg\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .group:hover .lg\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .lg\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .group:hover .lg\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .lg\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .group:hover .lg\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .lg\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .group:hover .lg\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .lg\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .group:hover .lg\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .lg\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .group:hover .lg\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .lg\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .group:hover .lg\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .lg\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .group:hover .lg\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .lg\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .group:hover .lg\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .lg\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .group:hover .lg\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .lg\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .group:hover .lg\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .lg\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .lg\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } - .lg\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .lg\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } - .lg\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .lg\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } - .lg\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .lg\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } - .lg\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .lg\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } - .lg\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .lg\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } - .lg\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .lg\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } - .lg\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .lg\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } - .lg\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .lg\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } - .lg\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .lg\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } - .lg\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .lg\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } - .lg\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .lg\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } - .lg\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .lg\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } - .lg\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .lg\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } - .lg\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .lg\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } - .lg\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .lg\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } - .lg\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .lg\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } - .lg\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .lg\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } - .lg\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .lg\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } - .lg\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .lg\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } - .lg\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .lg\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } - .lg\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .lg\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } - .lg\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .lg\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } - .lg\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .lg\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } - .lg\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .lg\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } - .lg\:inset-y-0 { - top: 0px; - bottom: 0px; + .lg\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } - .lg\:inset-x-0 { - right: 0px; - left: 0px; + .lg\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } - .lg\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .lg\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } - .lg\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .lg\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } - .lg\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .lg\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } - .lg\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .lg\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } - .lg\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .lg\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } - .lg\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .lg\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } - .lg\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .lg\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } - .lg\:inset-x-4 { - right: 1rem; - left: 1rem; + .lg\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } - .lg\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .lg\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } - .lg\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .lg\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } - .lg\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .lg\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } - .lg\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .lg\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } - .lg\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .lg\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } - .lg\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .lg\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } - .lg\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .lg\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } - .lg\:inset-x-8 { - right: 2rem; - left: 2rem; + .lg\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } - .lg\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .lg\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } - .lg\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .lg\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } - .lg\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .lg\:bg-none { + background-image: none; } - .lg\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .lg\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .lg\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .lg\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .lg\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .lg\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .lg\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .lg\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .lg\:inset-x-12 { - right: 3rem; - left: 3rem; + .lg\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .lg\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .lg\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .lg\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .lg\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .lg\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .lg\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .lg\:inset-x-16 { - right: 4rem; - left: 4rem; + .lg\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .lg\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:inset-x-20 { - right: 5rem; - left: 5rem; + .lg\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .lg\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:inset-x-24 { - right: 6rem; - left: 6rem; + .lg\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .lg\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:inset-x-28 { - right: 7rem; - left: 7rem; + .lg\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .lg\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:inset-x-32 { - right: 8rem; - left: 8rem; + .lg\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .lg\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:inset-x-36 { - right: 9rem; - left: 9rem; + .lg\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .lg\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:inset-x-40 { - right: 10rem; - left: 10rem; + .lg\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .lg\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:inset-x-44 { - right: 11rem; - left: 11rem; + .lg\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .lg\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:inset-x-48 { - right: 12rem; - left: 12rem; + .lg\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .lg\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:inset-x-52 { - right: 13rem; - left: 13rem; + .lg\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .lg\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:inset-x-56 { - right: 14rem; - left: 14rem; + .lg\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .lg\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:inset-x-60 { - right: 15rem; - left: 15rem; + .lg\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .lg\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:inset-x-64 { - right: 16rem; - left: 16rem; + .lg\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .lg\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:inset-x-72 { - right: 18rem; - left: 18rem; + .lg\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .lg\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:inset-x-80 { - right: 20rem; - left: 20rem; + .lg\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .lg\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:inset-x-96 { - right: 24rem; - left: 24rem; + .lg\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:inset-y-auto { - top: auto; - bottom: auto; + .lg\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:inset-x-auto { - right: auto; - left: auto; + .lg\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:inset-y-px { - top: 1px; - bottom: 1px; + .lg\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:inset-x-px { - right: 1px; - left: 1px; + .lg\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .lg\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .lg\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .lg\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .lg\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .lg\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .lg\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .lg\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .lg\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:-inset-y-0 { - top: 0px; - bottom: 0px; + .lg\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:-inset-x-0 { - right: 0px; - left: 0px; + .lg\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .lg\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .lg\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .lg\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .lg\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .lg\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .lg\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .lg\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:-inset-x-4 { - right: -1rem; - left: -1rem; + .lg\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .lg\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .lg\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .lg\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .lg\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .lg\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .lg\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .lg\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:-inset-x-8 { - right: -2rem; - left: -2rem; + .lg\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .lg\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .lg\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .lg\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .lg\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .lg\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .lg\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .lg\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:-inset-x-12 { - right: -3rem; - left: -3rem; + .lg\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .lg\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .lg\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .lg\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:-inset-x-16 { - right: -4rem; - left: -4rem; + .lg\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .lg\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:-inset-x-20 { - right: -5rem; - left: -5rem; + .lg\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .lg\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:-inset-x-24 { - right: -6rem; - left: -6rem; + .lg\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .lg\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:-inset-x-28 { - right: -7rem; - left: -7rem; + .lg\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .lg\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:-inset-x-32 { - right: -8rem; - left: -8rem; + .lg\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .lg\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:-inset-x-36 { - right: -9rem; - left: -9rem; + .lg\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .lg\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:-inset-x-40 { - right: -10rem; - left: -10rem; + .lg\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .lg\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-inset-x-44 { - right: -11rem; - left: -11rem; + .lg\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .lg\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-inset-x-48 { - right: -12rem; - left: -12rem; + .lg\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .lg\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:-inset-x-52 { - right: -13rem; - left: -13rem; + .lg\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .lg\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:-inset-x-56 { - right: -14rem; - left: -14rem; + .lg\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .lg\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:-inset-x-60 { - right: -15rem; - left: -15rem; + .lg\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .lg\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:-inset-x-64 { - right: -16rem; - left: -16rem; + .lg\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .lg\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:-inset-x-72 { - right: -18rem; - left: -18rem; + .lg\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .lg\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:-inset-x-80 { - right: -20rem; - left: -20rem; + .lg\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .lg\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:-inset-x-96 { - right: -24rem; - left: -24rem; + .lg\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:-inset-y-px { - top: -1px; - bottom: -1px; + .lg\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:-inset-x-px { - right: -1px; - left: -1px; + .lg\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .lg\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .lg\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .lg\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .lg\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .lg\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .lg\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .lg\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .lg\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .lg\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:inset-x-1\/2 { - right: 50%; - left: 50%; + .lg\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .lg\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .lg\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .lg\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .lg\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .lg\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:inset-x-1\/4 { - right: 25%; - left: 25%; + .lg\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .lg\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:inset-x-2\/4 { - right: 50%; - left: 50%; + .lg\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .lg\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:inset-x-3\/4 { - right: 75%; - left: 75%; + .lg\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:inset-y-full { - top: 100%; - bottom: 100%; + .lg\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:inset-x-full { - right: 100%; - left: 100%; + .lg\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .lg\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .lg\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .lg\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .lg\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .lg\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .lg\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .lg\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .lg\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .lg\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .lg\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .lg\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .lg\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:-inset-y-full { - top: -100%; - bottom: -100%; + .lg\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:-inset-x-full { - right: -100%; - left: -100%; + .lg\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:top-0 { - top: 0px; + .lg\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:right-0 { - right: 0px; + .lg\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:bottom-0 { - bottom: 0px; + .lg\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:left-0 { - left: 0px; + .lg\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:top-1 { - top: 0.25rem; + .lg\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:right-1 { - right: 0.25rem; + .lg\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:bottom-1 { - bottom: 0.25rem; + .lg\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:left-1 { - left: 0.25rem; + .lg\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:top-2 { - top: 0.5rem; + .lg\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:right-2 { - right: 0.5rem; + .lg\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:bottom-2 { - bottom: 0.5rem; + .lg\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:left-2 { - left: 0.5rem; + .lg\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:top-3 { - top: 0.75rem; + .lg\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:right-3 { - right: 0.75rem; + .lg\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:bottom-3 { - bottom: 0.75rem; + .lg\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:left-3 { - left: 0.75rem; + .lg\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:top-4 { - top: 1rem; + .lg\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:right-4 { - right: 1rem; + .lg\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:bottom-4 { - bottom: 1rem; + .lg\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:left-4 { - left: 1rem; + .lg\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:top-5 { - top: 1.25rem; + .lg\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:right-5 { - right: 1.25rem; + .lg\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:bottom-5 { - bottom: 1.25rem; + .lg\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:left-5 { - left: 1.25rem; + .lg\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:top-6 { - top: 1.5rem; + .lg\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:right-6 { - right: 1.5rem; + .lg\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:bottom-6 { - bottom: 1.5rem; + .lg\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:left-6 { - left: 1.5rem; + .lg\:to-transparent { + --tw-gradient-to: transparent; } - .lg\:top-7 { - top: 1.75rem; + .lg\:to-current { + --tw-gradient-to: currentColor; } - .lg\:right-7 { - right: 1.75rem; + .lg\:to-black { + --tw-gradient-to: #000; } - .lg\:bottom-7 { - bottom: 1.75rem; + .lg\:to-white { + --tw-gradient-to: #fff; } - .lg\:left-7 { - left: 1.75rem; + .lg\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .lg\:top-8 { - top: 2rem; + .lg\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .lg\:right-8 { - right: 2rem; + .lg\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .lg\:bottom-8 { - bottom: 2rem; + .lg\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .lg\:left-8 { - left: 2rem; + .lg\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .lg\:top-9 { - top: 2.25rem; + .lg\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .lg\:right-9 { - right: 2.25rem; + .lg\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .lg\:bottom-9 { - bottom: 2.25rem; + .lg\:to-gray-700 { + --tw-gradient-to: #374151; } - .lg\:left-9 { - left: 2.25rem; + .lg\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .lg\:top-10 { - top: 2.5rem; + .lg\:to-gray-900 { + --tw-gradient-to: #111827; } - .lg\:right-10 { - right: 2.5rem; + .lg\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .lg\:bottom-10 { - bottom: 2.5rem; + .lg\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .lg\:left-10 { - left: 2.5rem; + .lg\:to-red-200 { + --tw-gradient-to: #fecaca; } - .lg\:top-11 { - top: 2.75rem; + .lg\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .lg\:right-11 { - right: 2.75rem; + .lg\:to-red-400 { + --tw-gradient-to: #f87171; } - .lg\:bottom-11 { - bottom: 2.75rem; + .lg\:to-red-500 { + --tw-gradient-to: #ef4444; } - .lg\:left-11 { - left: 2.75rem; + .lg\:to-red-600 { + --tw-gradient-to: #dc2626; } - .lg\:top-12 { - top: 3rem; + .lg\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .lg\:right-12 { - right: 3rem; + .lg\:to-red-800 { + --tw-gradient-to: #991b1b; } - .lg\:bottom-12 { - bottom: 3rem; + .lg\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .lg\:left-12 { - left: 3rem; + .lg\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .lg\:top-14 { - top: 3.5rem; + .lg\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .lg\:right-14 { - right: 3.5rem; + .lg\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .lg\:bottom-14 { - bottom: 3.5rem; + .lg\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .lg\:left-14 { - left: 3.5rem; + .lg\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .lg\:top-16 { - top: 4rem; + .lg\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .lg\:right-16 { - right: 4rem; + .lg\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .lg\:bottom-16 { - bottom: 4rem; + .lg\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .lg\:left-16 { - left: 4rem; + .lg\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .lg\:top-20 { - top: 5rem; + .lg\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .lg\:right-20 { - right: 5rem; + .lg\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .lg\:bottom-20 { - bottom: 5rem; + .lg\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .lg\:left-20 { - left: 5rem; + .lg\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .lg\:top-24 { - top: 6rem; + .lg\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .lg\:right-24 { - right: 6rem; + .lg\:to-green-400 { + --tw-gradient-to: #34d399; } - .lg\:bottom-24 { - bottom: 6rem; + .lg\:to-green-500 { + --tw-gradient-to: #10b981; } - .lg\:left-24 { - left: 6rem; + .lg\:to-green-600 { + --tw-gradient-to: #059669; } - .lg\:top-28 { - top: 7rem; + .lg\:to-green-700 { + --tw-gradient-to: #047857; } - .lg\:right-28 { - right: 7rem; + .lg\:to-green-800 { + --tw-gradient-to: #065f46; } - .lg\:bottom-28 { - bottom: 7rem; + .lg\:to-green-900 { + --tw-gradient-to: #064e3b; } - .lg\:left-28 { - left: 7rem; + .lg\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .lg\:top-32 { - top: 8rem; + .lg\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .lg\:right-32 { - right: 8rem; + .lg\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .lg\:bottom-32 { - bottom: 8rem; + .lg\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .lg\:left-32 { - left: 8rem; + .lg\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .lg\:top-36 { - top: 9rem; + .lg\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .lg\:right-36 { - right: 9rem; + .lg\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .lg\:bottom-36 { - bottom: 9rem; + .lg\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .lg\:left-36 { - left: 9rem; + .lg\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .lg\:top-40 { - top: 10rem; + .lg\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .lg\:right-40 { - right: 10rem; + .lg\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .lg\:bottom-40 { - bottom: 10rem; + .lg\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .lg\:left-40 { - left: 10rem; + .lg\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .lg\:top-44 { - top: 11rem; + .lg\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .lg\:right-44 { - right: 11rem; + .lg\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .lg\:bottom-44 { - bottom: 11rem; + .lg\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .lg\:left-44 { - left: 11rem; + .lg\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .lg\:top-48 { - top: 12rem; + .lg\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .lg\:right-48 { - right: 12rem; + .lg\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .lg\:bottom-48 { - bottom: 12rem; + .lg\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .lg\:left-48 { - left: 12rem; + .lg\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .lg\:top-52 { - top: 13rem; + .lg\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .lg\:right-52 { - right: 13rem; + .lg\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .lg\:bottom-52 { - bottom: 13rem; + .lg\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .lg\:left-52 { - left: 13rem; + .lg\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .lg\:top-56 { - top: 14rem; + .lg\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .lg\:right-56 { - right: 14rem; + .lg\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .lg\:bottom-56 { - bottom: 14rem; + .lg\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .lg\:left-56 { - left: 14rem; + .lg\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .lg\:top-60 { - top: 15rem; + .lg\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .lg\:right-60 { - right: 15rem; + .lg\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .lg\:bottom-60 { - bottom: 15rem; + .lg\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .lg\:left-60 { - left: 15rem; + .lg\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .lg\:top-64 { - top: 16rem; + .lg\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .lg\:right-64 { - right: 16rem; + .lg\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .lg\:bottom-64 { - bottom: 16rem; + .lg\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .lg\:left-64 { - left: 16rem; + .lg\:to-pink-600 { + --tw-gradient-to: #db2777; } - .lg\:top-72 { - top: 18rem; + .lg\:to-pink-700 { + --tw-gradient-to: #be185d; } - .lg\:right-72 { - right: 18rem; + .lg\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .lg\:bottom-72 { - bottom: 18rem; + .lg\:to-pink-900 { + --tw-gradient-to: #831843; } - .lg\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .lg\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-top-14 { - top: -3.5rem; + .lg\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-right-14 { - right: -3.5rem; + .lg\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:-bottom-14 { - bottom: -3.5rem; + .lg\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:-left-14 { - left: -3.5rem; + .lg\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:-top-16 { - top: -4rem; + .lg\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:-right-16 { - right: -4rem; + .lg\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:-bottom-16 { - bottom: -4rem; + .lg\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:-left-16 { - left: -4rem; + .lg\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:-top-20 { - top: -5rem; + .lg\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:-right-20 { - right: -5rem; + .lg\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:-bottom-20 { - bottom: -5rem; + .lg\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:-left-20 { - left: -5rem; + .lg\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:-top-24 { - top: -6rem; + .lg\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:-right-24 { - right: -6rem; + .lg\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:-bottom-24 { - bottom: -6rem; + .lg\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:-left-24 { - left: -6rem; + .lg\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:-top-28 { - top: -7rem; + .lg\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:-right-28 { - right: -7rem; + .lg\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:-bottom-28 { - bottom: -7rem; + .lg\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:-left-28 { - left: -7rem; + .lg\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:-top-32 { - top: -8rem; + .lg\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:-right-32 { - right: -8rem; + .lg\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:-bottom-32 { - bottom: -8rem; + .lg\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:-left-32 { - left: -8rem; + .lg\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:-top-36 { - top: -9rem; + .lg\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:-right-36 { - right: -9rem; + .lg\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:-bottom-36 { - bottom: -9rem; + .lg\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:-left-36 { - left: -9rem; + .lg\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:-top-40 { - top: -10rem; + .lg\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:-right-40 { - right: -10rem; + .lg\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:-bottom-40 { - bottom: -10rem; + .lg\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:-left-40 { - left: -10rem; + .lg\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:-top-44 { - top: -11rem; + .lg\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:-right-44 { - right: -11rem; + .lg\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:-bottom-44 { - bottom: -11rem; + .lg\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:-left-44 { - left: -11rem; + .lg\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:-top-48 { - top: -12rem; + .lg\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:-right-48 { - right: -12rem; + .lg\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:-bottom-48 { - bottom: -12rem; + .lg\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:-left-48 { - left: -12rem; + .lg\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:-top-52 { - top: -13rem; + .lg\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:-right-52 { - right: -13rem; + .lg\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:-bottom-52 { - bottom: -13rem; + .lg\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:-left-52 { - left: -13rem; + .lg\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:-top-56 { - top: -14rem; + .lg\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:-right-56 { - right: -14rem; + .lg\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:-bottom-56 { - bottom: -14rem; + .lg\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:-left-56 { - left: -14rem; + .lg\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:-top-60 { - top: -15rem; + .lg\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:-right-60 { - right: -15rem; + .lg\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:-bottom-60 { - bottom: -15rem; + .lg\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:-left-60 { - left: -15rem; + .lg\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:-top-64 { - top: -16rem; + .lg\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:-right-64 { - right: -16rem; + .lg\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:-bottom-64 { - bottom: -16rem; + .lg\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:-left-64 { - left: -16rem; + .lg\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:-top-72 { - top: -18rem; + .lg\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:-right-72 { - right: -18rem; + .lg\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:-bottom-72 { - bottom: -18rem; + .lg\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:-left-72 { - left: -18rem; + .lg\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:-top-80 { - top: -20rem; + .lg\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:-right-80 { - right: -20rem; + .lg\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:-bottom-80 { - bottom: -20rem; + .lg\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:-left-80 { - left: -20rem; + .lg\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:-top-96 { - top: -24rem; + .lg\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:-right-96 { - right: -24rem; + .lg\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:-bottom-96 { - bottom: -24rem; + .lg\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:-left-96 { - left: -24rem; + .lg\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:-top-px { - top: -1px; + .lg\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:-right-px { - right: -1px; + .lg\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:-bottom-px { - bottom: -1px; + .lg\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:-left-px { - left: -1px; + .lg\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:-top-0\.5 { - top: -0.125rem; + .lg\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:-right-0\.5 { - right: -0.125rem; + .lg\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:-bottom-0\.5 { - bottom: -0.125rem; + .lg\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:-left-0\.5 { - left: -0.125rem; + .lg\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:-top-1\.5 { - top: -0.375rem; + .lg\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:-right-1\.5 { - right: -0.375rem; + .lg\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:-bottom-1\.5 { - bottom: -0.375rem; + .lg\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:-left-1\.5 { - left: -0.375rem; + .lg\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:-top-2\.5 { - top: -0.625rem; + .lg\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:-right-2\.5 { - right: -0.625rem; + .lg\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:-bottom-2\.5 { - bottom: -0.625rem; + .lg\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:-left-2\.5 { - left: -0.625rem; + .lg\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .lg\:-top-3\.5 { - top: -0.875rem; + .lg\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .lg\:-right-3\.5 { - right: -0.875rem; + .lg\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .lg\:-bottom-3\.5 { - bottom: -0.875rem; + .lg\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .lg\:-left-3\.5 { - left: -0.875rem; + .lg\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .lg\:top-1\/2 { - top: 50%; + .lg\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .lg\:right-1\/2 { - right: 50%; + .lg\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .lg\:bottom-1\/2 { - bottom: 50%; + .lg\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .lg\:left-1\/2 { - left: 50%; + .lg\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .lg\:top-1\/3 { - top: 33.333333%; + .lg\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .lg\:right-1\/3 { - right: 33.333333%; + .lg\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .lg\:bottom-1\/3 { - bottom: 33.333333%; + .lg\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .lg\:left-1\/3 { - left: 33.333333%; + .lg\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .lg\:top-2\/3 { - top: 66.666667%; + .lg\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .lg\:right-2\/3 { - right: 66.666667%; + .lg\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .lg\:bottom-2\/3 { - bottom: 66.666667%; + .lg\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .lg\:left-2\/3 { - left: 66.666667%; + .lg\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .lg\:top-1\/4 { - top: 25%; + .lg\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .lg\:right-1\/4 { - right: 25%; + .lg\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .lg\:bottom-1\/4 { - bottom: 25%; + .lg\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .lg\:left-1\/4 { - left: 25%; + .lg\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .lg\:top-2\/4 { - top: 50%; + .lg\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .lg\:right-2\/4 { - right: 50%; + .lg\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .lg\:bottom-2\/4 { - bottom: 50%; + .lg\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .lg\:left-2\/4 { - left: 50%; + .lg\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .lg\:top-3\/4 { - top: 75%; + .lg\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .lg\:right-3\/4 { - right: 75%; + .lg\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .lg\:bottom-3\/4 { - bottom: 75%; + .lg\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .lg\:left-3\/4 { - left: 75%; + .lg\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .lg\:top-full { - top: 100%; + .lg\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .lg\:right-full { - right: 100%; + .lg\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .lg\:bottom-full { - bottom: 100%; + .lg\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .lg\:left-full { - left: 100%; + .lg\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .lg\:-top-1\/2 { - top: -50%; + .lg\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .lg\:-right-1\/2 { - right: -50%; + .lg\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .lg\:-bottom-1\/2 { - bottom: -50%; + .lg\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .lg\:-left-1\/2 { - left: -50%; + .lg\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .lg\:-top-1\/3 { - top: -33.333333%; + .lg\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .lg\:-right-1\/3 { - right: -33.333333%; + .lg\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .lg\:-bottom-1\/3 { - bottom: -33.333333%; + .lg\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .lg\:-left-1\/3 { - left: -33.333333%; + .lg\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .lg\:-top-2\/3 { - top: -66.666667%; + .lg\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .lg\:-right-2\/3 { - right: -66.666667%; + .lg\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .lg\:-bottom-2\/3 { - bottom: -66.666667%; + .lg\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .lg\:-left-2\/3 { - left: -66.666667%; + .lg\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .lg\:-top-1\/4 { - top: -25%; + .lg\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .lg\:-right-1\/4 { - right: -25%; + .lg\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .lg\:-bottom-1\/4 { - bottom: -25%; + .lg\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .lg\:-left-1\/4 { - left: -25%; + .lg\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .lg\:-top-2\/4 { - top: -50%; + .lg\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .lg\:-right-2\/4 { - right: -50%; + .lg\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .lg\:-bottom-2\/4 { - bottom: -50%; + .lg\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .lg\:-left-2\/4 { - left: -50%; + .lg\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .lg\:-top-3\/4 { - top: -75%; + .lg\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .lg\:-right-3\/4 { - right: -75%; + .lg\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .lg\:-bottom-3\/4 { - bottom: -75%; + .lg\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .lg\:-left-3\/4 { - left: -75%; + .lg\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .lg\:-top-full { - top: -100%; + .lg\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .lg\:-right-full { - right: -100%; + .lg\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .lg\:-bottom-full { - bottom: -100%; + .lg\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .lg\:-left-full { - left: -100%; + .lg\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .lg\:resize-none { - resize: none; + .lg\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .lg\:resize-y { - resize: vertical; + .lg\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .lg\:resize-x { - resize: horizontal; + .lg\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .lg\:resize { - resize: both; + .lg\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .lg\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .lg\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .lg\: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); + .lg\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .lg\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .lg\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .lg\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .lg\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .lg\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .lg\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .lg\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .lg\:group-hover\: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); + .lg\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .lg\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .lg\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .lg\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .lg\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .lg\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .lg\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .lg\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .lg\:focus-within\:shadow-md:focus-within { - --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); + .lg\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .lg\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .lg\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .lg\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .lg\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .lg\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .lg\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .lg\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .lg\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .lg\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .lg\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .lg\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .lg\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .lg\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .lg\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .lg\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .lg\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .lg\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .lg\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .lg\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .lg\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .lg\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .lg\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .lg\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .lg\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .lg\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .lg\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .lg\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .lg\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .lg\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .lg\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .lg\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .lg\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .lg\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .lg\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .lg\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .lg\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .lg\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .lg\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .lg\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .lg\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .lg\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .lg\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .lg\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .lg\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .lg\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .lg\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .lg\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .lg\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .lg\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .lg\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .lg\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .lg\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .lg\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .lg\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .lg\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .lg\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .lg\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .lg\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .lg\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .lg\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .lg\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .lg\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .lg\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .lg\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .lg\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .lg\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .lg\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .lg\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .lg\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .lg\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .lg\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .lg\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .lg\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .lg\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .lg\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .lg\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .lg\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .lg\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .lg\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .lg\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .lg\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .lg\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .lg\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .lg\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .lg\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .lg\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .lg\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .lg\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .lg\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .lg\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .lg\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .lg\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .lg\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .lg\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .lg\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .lg\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .lg\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .lg\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .lg\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .lg\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .lg\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .lg\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .lg\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .lg\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .lg\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .lg\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .lg\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .lg\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .lg\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .lg\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .lg\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .lg\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .lg\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .lg\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .lg\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .lg\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .lg\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .lg\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .lg\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .lg\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .lg\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .lg\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .lg\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .lg\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .lg\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .lg\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .lg\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .lg\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .lg\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .lg\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .lg\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .lg\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .lg\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .lg\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .lg\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .lg\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .lg\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .lg\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .lg\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .lg\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .lg\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .lg\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .lg\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .lg\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .lg\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .lg\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .lg\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .lg\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .lg\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .lg\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .lg\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .lg\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .lg\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .lg\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .lg\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .lg\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .lg\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .lg\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .lg\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .lg\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .lg\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .lg\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .lg\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .lg\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .lg\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .lg\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .lg\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .lg\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .lg\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .lg\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .lg\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .lg\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .lg\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .lg\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .lg\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .lg\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .lg\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .lg\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .lg\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .lg\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .lg\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .lg\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .lg\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .lg\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .lg\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .lg\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .lg\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .lg\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .lg\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .lg\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .lg\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .lg\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .lg\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .lg\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .lg\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .lg\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .lg\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .lg\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .lg\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .lg\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .lg\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .lg\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .lg\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .lg\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .lg\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .lg\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .lg\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .lg\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .lg\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .lg\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .lg\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .lg\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .lg\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .lg\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .lg\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .lg\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .lg\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .lg\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .lg\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .lg\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .lg\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .lg\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .lg\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .lg\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .lg\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .lg\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .lg\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .lg\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .lg\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .lg\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .lg\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .lg\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .lg\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .lg\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .lg\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .lg\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .lg\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .lg\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .lg\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .lg\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .lg\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .lg\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .lg\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .lg\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .lg\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .lg\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .lg\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .lg\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .lg\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .lg\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .lg\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .lg\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .lg\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .lg\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .lg\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .lg\:decoration-slice { + box-decoration-break: slice; } - .lg\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .lg\:decoration-clone { + box-decoration-break: clone; } - .lg\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .lg\:bg-auto { + background-size: auto; } - .lg\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .lg\:bg-cover { + background-size: cover; } - .lg\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .lg\:bg-contain { + background-size: contain; } - .lg\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .lg\:bg-fixed { + background-attachment: fixed; } - .lg\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .lg\:bg-local { + background-attachment: local; } - .lg\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .lg\:bg-scroll { + background-attachment: scroll; } - .lg\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .lg\:bg-clip-border { + background-clip: border-box; } - .lg\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .lg\:bg-clip-padding { + background-clip: padding-box; } - .lg\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .lg\:bg-clip-content { + background-clip: content-box; } - .lg\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .lg\:bg-clip-text { + background-clip: text; } - .lg\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .lg\:bg-bottom { + background-position: bottom; } - .lg\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .lg\:bg-center { + background-position: center; } - .lg\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .lg\:bg-left { + background-position: left; } - .lg\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .lg\:bg-left-bottom { + background-position: left bottom; } - .lg\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .lg\:bg-left-top { + background-position: left top; } - .lg\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .lg\:bg-right { + background-position: right; } - .lg\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .lg\:bg-right-bottom { + background-position: right bottom; } - .lg\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .lg\:bg-right-top { + background-position: right top; } - .lg\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .lg\:bg-top { + background-position: top; } - .lg\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .lg\:bg-repeat { + background-repeat: repeat; } - .lg\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .lg\:bg-no-repeat { + background-repeat: no-repeat; } - .lg\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .lg\:bg-repeat-x { + background-repeat: repeat-x; } - .lg\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .lg\:bg-repeat-y { + background-repeat: repeat-y; } - .lg\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .lg\:bg-repeat-round { + background-repeat: round; } - .lg\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .lg\:bg-repeat-space { + background-repeat: space; } - .lg\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .lg\:bg-origin-border { + background-origin: border-box; } - .lg\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .lg\:bg-origin-padding { + background-origin: padding-box; } - .lg\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .lg\:bg-origin-content { + background-origin: content-box; } - .lg\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .lg\:fill-current { + fill: currentColor; } - .lg\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .lg\:stroke-current { + stroke: currentColor; } - .lg\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .lg\:stroke-0 { + stroke-width: 0; } - .lg\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .lg\:stroke-1 { + stroke-width: 1; } - .lg\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .lg\:stroke-2 { + stroke-width: 2; } - .lg\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .lg\:object-contain { + object-fit: contain; } - .lg\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .lg\:object-cover { + object-fit: cover; } - .lg\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .lg\:object-fill { + object-fit: fill; } - .lg\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .lg\:object-none { + object-fit: none; } - .lg\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .lg\:object-scale-down { + object-fit: scale-down; } - .lg\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .lg\:object-bottom { + object-position: bottom; } - .lg\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .lg\:object-center { + object-position: center; } - .lg\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .lg\:object-left { + object-position: left; } - .lg\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .lg\:object-left-bottom { + object-position: left bottom; } - .lg\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .lg\:object-left-top { + object-position: left top; } - .lg\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .lg\:object-right { + object-position: right; } - .lg\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .lg\:object-right-bottom { + object-position: right bottom; } - .lg\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .lg\:object-right-top { + object-position: right top; } - .lg\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .lg\:object-top { + object-position: top; } - .lg\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .lg\:p-0 { + padding: 0px; } - .lg\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .lg\:p-1 { + padding: 0.25rem; } - .lg\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .lg\:p-2 { + padding: 0.5rem; } - .lg\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .lg\:p-3 { + padding: 0.75rem; } - .lg\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .lg\:p-4 { + padding: 1rem; } - .lg\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .lg\:p-5 { + padding: 1.25rem; } - .lg\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .lg\:p-6 { + padding: 1.5rem; } - .lg\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .lg\:p-7 { + padding: 1.75rem; } - .lg\:ring-transparent { - --tw-ring-color: transparent; + .lg\:p-8 { + padding: 2rem; } - .lg\:ring-current { - --tw-ring-color: currentColor; + .lg\:p-9 { + padding: 2.25rem; } - .lg\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .lg\:p-10 { + padding: 2.5rem; } - .lg\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .lg\:p-11 { + padding: 2.75rem; } - .lg\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .lg\:p-12 { + padding: 3rem; } - .lg\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .lg\:p-14 { + padding: 3.5rem; } - .lg\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .lg\:p-16 { + padding: 4rem; } - .lg\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .lg\:p-20 { + padding: 5rem; } - .lg\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .lg\:p-24 { + padding: 6rem; } - .lg\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .lg\:p-28 { + padding: 7rem; } - .lg\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .lg\:p-32 { + padding: 8rem; } - .lg\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .lg\:p-36 { + padding: 9rem; } - .lg\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .lg\:p-40 { + padding: 10rem; } - .lg\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .lg\:p-44 { + padding: 11rem; } - .lg\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .lg\:p-48 { + padding: 12rem; } - .lg\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .lg\:p-52 { + padding: 13rem; } - .lg\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .lg\:p-56 { + padding: 14rem; } - .lg\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .lg\:p-60 { + padding: 15rem; } - .lg\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .lg\:p-64 { + padding: 16rem; } - .lg\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .lg\:p-72 { + padding: 18rem; } - .lg\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .lg\:p-80 { + padding: 20rem; } - .lg\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .lg\:p-96 { + padding: 24rem; } - .lg\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .lg\:p-px { + padding: 1px; } - .lg\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .lg\:p-0\.5 { + padding: 0.125rem; } - .lg\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .lg\:p-1\.5 { + padding: 0.375rem; } - .lg\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .lg\:p-2\.5 { + padding: 0.625rem; } - .lg\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .lg\:p-3\.5 { + padding: 0.875rem; } - .lg\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .lg\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .lg\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .lg\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .lg\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .lg\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .lg\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .lg\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .lg\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .lg\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .lg\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .lg\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .lg\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .lg\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .lg\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .lg\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .lg\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .lg\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .lg\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .lg\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .lg\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .lg\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .lg\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .lg\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .lg\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .lg\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .lg\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .lg\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .lg\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .lg\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .lg\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .lg\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .lg\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .lg\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .lg\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .lg\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .lg\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .lg\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .lg\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .lg\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .lg\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .lg\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .lg\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .lg\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .lg\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .lg\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .lg\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .lg\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .lg\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .lg\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .lg\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .lg\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .lg\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .lg\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .lg\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .lg\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .lg\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .lg\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .lg\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .lg\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .lg\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .lg\:px-px { + padding-left: 1px; + padding-right: 1px; } - .lg\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .lg\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .lg\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .lg\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .lg\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .lg\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .lg\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .lg\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .lg\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .lg\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .lg\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .lg\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .lg\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .lg\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .lg\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .lg\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .lg\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .lg\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .lg\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .lg\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .lg\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .lg\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .lg\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .lg\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .lg\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .lg\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .lg\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .lg\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .lg\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .lg\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .lg\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .lg\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .lg\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .lg\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .lg\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .lg\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .lg\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .lg\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .lg\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .lg\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .lg\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .lg\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .lg\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .lg\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .lg\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .lg\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .lg\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .lg\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .lg\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .lg\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .lg\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .lg\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .lg\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .lg\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .lg\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .lg\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .lg\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .lg\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .lg\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .lg\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .lg\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .lg\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .lg\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .lg\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .lg\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .lg\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .lg\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .lg\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .lg\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .lg\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .lg\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .lg\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .lg\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .lg\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .lg\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .lg\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .lg\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .lg\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .lg\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .lg\:pt-0 { + padding-top: 0px; } - .lg\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .lg\:pt-1 { + padding-top: 0.25rem; } - .lg\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .lg\:pt-2 { + padding-top: 0.5rem; } - .lg\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .lg\:pt-3 { + padding-top: 0.75rem; } - .lg\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .lg\:pt-4 { + padding-top: 1rem; } - .lg\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .lg\:pt-5 { + padding-top: 1.25rem; } - .lg\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .lg\:pt-6 { + padding-top: 1.5rem; } - .lg\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .lg\:pt-7 { + padding-top: 1.75rem; } - .lg\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .lg\:pt-8 { + padding-top: 2rem; } - .lg\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .lg\:pt-9 { + padding-top: 2.25rem; } - .lg\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .lg\:pt-10 { + padding-top: 2.5rem; } - .lg\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .lg\:pt-11 { + padding-top: 2.75rem; } - .lg\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .lg\:pt-12 { + padding-top: 3rem; } - .lg\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .lg\:pt-14 { + padding-top: 3.5rem; } - .lg\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .lg\:pt-16 { + padding-top: 4rem; } - .lg\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .lg\:pt-20 { + padding-top: 5rem; } - .lg\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .lg\:pt-24 { + padding-top: 6rem; } - .lg\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .lg\:pt-28 { + padding-top: 7rem; } - .lg\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .lg\:pt-32 { + padding-top: 8rem; } - .lg\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .lg\:pt-36 { + padding-top: 9rem; } - .lg\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .lg\:pt-40 { + padding-top: 10rem; } - .lg\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .lg\:pt-44 { + padding-top: 11rem; } - .lg\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .lg\:pt-48 { + padding-top: 12rem; } - .lg\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .lg\:pt-52 { + padding-top: 13rem; } - .lg\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .lg\:pt-56 { + padding-top: 14rem; } - .lg\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .lg\:pt-60 { + padding-top: 15rem; } - .lg\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .lg\:pt-64 { + padding-top: 16rem; } - .lg\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .lg\:pt-72 { + padding-top: 18rem; } - .lg\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .lg\:pt-80 { + padding-top: 20rem; } - .lg\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .lg\:pt-96 { + padding-top: 24rem; } - .lg\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .lg\:pt-px { + padding-top: 1px; } - .lg\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .lg\:pt-0\.5 { + padding-top: 0.125rem; } - .lg\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .lg\:pt-1\.5 { + padding-top: 0.375rem; } - .lg\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .lg\:pt-2\.5 { + padding-top: 0.625rem; } - .lg\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .lg\:pt-3\.5 { + padding-top: 0.875rem; } - .lg\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .lg\:pr-0 { + padding-right: 0px; } - .lg\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .lg\:pr-1 { + padding-right: 0.25rem; } - .lg\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .lg\:pr-2 { + padding-right: 0.5rem; } - .lg\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .lg\:pr-3 { + padding-right: 0.75rem; } - .lg\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .lg\:pr-4 { + padding-right: 1rem; } - .lg\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .lg\:pr-5 { + padding-right: 1.25rem; } - .lg\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .lg\:pr-6 { + padding-right: 1.5rem; } - .lg\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .lg\:pr-7 { + padding-right: 1.75rem; } - .lg\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .lg\:pr-8 { + padding-right: 2rem; } - .lg\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .lg\:pr-9 { + padding-right: 2.25rem; } - .lg\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .lg\:pr-10 { + padding-right: 2.5rem; } - .lg\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .lg\:pr-11 { + padding-right: 2.75rem; } - .lg\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .lg\:pr-12 { + padding-right: 3rem; } - .lg\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .lg\:pr-14 { + padding-right: 3.5rem; } - .lg\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .lg\:pr-16 { + padding-right: 4rem; } - .lg\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .lg\:pr-20 { + padding-right: 5rem; } - .lg\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .lg\:pr-24 { + padding-right: 6rem; } - .lg\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .lg\:pr-28 { + padding-right: 7rem; } - .lg\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .lg\:pr-32 { + padding-right: 8rem; } - .lg\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .lg\:pr-36 { + padding-right: 9rem; } - .lg\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .lg\:pr-40 { + padding-right: 10rem; } - .lg\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .lg\:pr-44 { + padding-right: 11rem; } - .lg\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .lg\:pr-48 { + padding-right: 12rem; } - .lg\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .lg\:pr-52 { + padding-right: 13rem; } - .lg\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .lg\:pr-56 { + padding-right: 14rem; } - .lg\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .lg\:pr-60 { + padding-right: 15rem; } - .lg\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .lg\:pr-64 { + padding-right: 16rem; } - .lg\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .lg\:pr-72 { + padding-right: 18rem; } - .lg\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .lg\:pr-80 { + padding-right: 20rem; } - .lg\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .lg\:pr-96 { + padding-right: 24rem; } - .lg\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .lg\:pr-px { + padding-right: 1px; } - .lg\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .lg\:pr-0\.5 { + padding-right: 0.125rem; } - .lg\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .lg\:pr-1\.5 { + padding-right: 0.375rem; } - .lg\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .lg\:pr-2\.5 { + padding-right: 0.625rem; } - .lg\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .lg\:pr-3\.5 { + padding-right: 0.875rem; } - .lg\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .lg\:pb-0 { + padding-bottom: 0px; } - .lg\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .lg\:pb-1 { + padding-bottom: 0.25rem; } - .lg\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .lg\:pb-2 { + padding-bottom: 0.5rem; } - .lg\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .lg\:pb-3 { + padding-bottom: 0.75rem; } - .lg\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .lg\:pb-4 { + padding-bottom: 1rem; } - .lg\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .lg\:pb-5 { + padding-bottom: 1.25rem; } - .lg\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .lg\:pb-6 { + padding-bottom: 1.5rem; } - .lg\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .lg\:pb-7 { + padding-bottom: 1.75rem; } - .lg\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .lg\:pb-8 { + padding-bottom: 2rem; } - .lg\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .lg\:pb-9 { + padding-bottom: 2.25rem; } - .lg\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .lg\:pb-10 { + padding-bottom: 2.5rem; } - .lg\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .lg\:pb-11 { + padding-bottom: 2.75rem; } - .lg\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .lg\:pb-12 { + padding-bottom: 3rem; } - .lg\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .lg\:pb-14 { + padding-bottom: 3.5rem; } - .lg\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .lg\:pb-16 { + padding-bottom: 4rem; } - .lg\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .lg\:pb-20 { + padding-bottom: 5rem; } - .lg\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .lg\:pb-24 { + padding-bottom: 6rem; } - .lg\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .lg\:pb-28 { + padding-bottom: 7rem; } - .lg\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .lg\:pb-32 { + padding-bottom: 8rem; } - .lg\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .lg\:pb-36 { + padding-bottom: 9rem; } - .lg\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .lg\:pb-40 { + padding-bottom: 10rem; } - .lg\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .lg\:pb-44 { + padding-bottom: 11rem; } - .lg\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .lg\:pb-48 { + padding-bottom: 12rem; } - .lg\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .lg\:pb-52 { + padding-bottom: 13rem; } - .lg\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .lg\:pb-56 { + padding-bottom: 14rem; } - .lg\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .lg\:pb-60 { + padding-bottom: 15rem; } - .lg\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .lg\:pb-64 { + padding-bottom: 16rem; } - .lg\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .lg\:pb-72 { + padding-bottom: 18rem; } - .lg\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .lg\:pb-80 { + padding-bottom: 20rem; } - .lg\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .lg\:pb-96 { + padding-bottom: 24rem; } - .lg\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .lg\:pb-px { + padding-bottom: 1px; } - .lg\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .lg\:pb-0\.5 { + padding-bottom: 0.125rem; } - .lg\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .lg\:pb-1\.5 { + padding-bottom: 0.375rem; } - .lg\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .lg\:pb-2\.5 { + padding-bottom: 0.625rem; } - .lg\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .lg\:pb-3\.5 { + padding-bottom: 0.875rem; } - .lg\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .lg\:pl-0 { + padding-left: 0px; } - .lg\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .lg\:pl-1 { + padding-left: 0.25rem; } - .lg\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .lg\:pl-2 { + padding-left: 0.5rem; } - .lg\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .lg\:pl-3 { + padding-left: 0.75rem; } - .lg\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .lg\:pl-4 { + padding-left: 1rem; } - .lg\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .lg\:pl-5 { + padding-left: 1.25rem; } - .lg\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .lg\:pl-6 { + padding-left: 1.5rem; } - .lg\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .lg\:pl-7 { + padding-left: 1.75rem; } - .lg\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .lg\:pl-8 { + padding-left: 2rem; } - .lg\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .lg\:pl-9 { + padding-left: 2.25rem; } - .lg\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .lg\:pl-10 { + padding-left: 2.5rem; } - .lg\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .lg\:pl-11 { + padding-left: 2.75rem; } - .lg\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .lg\:pl-12 { + padding-left: 3rem; } - .lg\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .lg\:pl-14 { + padding-left: 3.5rem; } - .lg\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .lg\:pl-16 { + padding-left: 4rem; } - .lg\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .lg\:pl-20 { + padding-left: 5rem; } - .lg\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .lg\:pl-24 { + padding-left: 6rem; } - .lg\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .lg\:pl-28 { + padding-left: 7rem; } - .lg\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .lg\:pl-32 { + padding-left: 8rem; } - .lg\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .lg\:pl-36 { + padding-left: 9rem; } - .lg\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .lg\:pl-40 { + padding-left: 10rem; } - .lg\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .lg\:pl-44 { + padding-left: 11rem; } - .lg\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .lg\:pl-48 { + padding-left: 12rem; } - .lg\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .lg\:pl-52 { + padding-left: 13rem; } - .lg\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .lg\:pl-56 { + padding-left: 14rem; } - .lg\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .lg\:pl-60 { + padding-left: 15rem; } - .lg\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .lg\:pl-64 { + padding-left: 16rem; } - .lg\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .lg\:pl-72 { + padding-left: 18rem; } - .lg\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .lg\:pl-80 { + padding-left: 20rem; } - .lg\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .lg\:pl-96 { + padding-left: 24rem; } - .lg\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .lg\:pl-px { + padding-left: 1px; } - .lg\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .lg\:pl-0\.5 { + padding-left: 0.125rem; } - .lg\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .lg\:pl-1\.5 { + padding-left: 0.375rem; } - .lg\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .lg\:pl-2\.5 { + padding-left: 0.625rem; } - .lg\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .lg\:pl-3\.5 { + padding-left: 0.875rem; } - .lg\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .lg\:text-left { + text-align: left; } - .lg\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .lg\:text-center { + text-align: center; } - .lg\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .lg\:text-right { + text-align: right; } - .lg\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .lg\:text-justify { + text-align: justify; } - .lg\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .lg\:align-baseline { + vertical-align: baseline; } - .lg\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .lg\:align-top { + vertical-align: top; } - .lg\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .lg\:align-middle { + vertical-align: middle; } - .lg\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .lg\:align-bottom { + vertical-align: bottom; } - .lg\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .lg\:align-text-top { + vertical-align: text-top; } - .lg\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .lg\:align-text-bottom { + vertical-align: text-bottom; } - .lg\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .lg\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .lg\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .lg\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .lg\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .lg\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .lg\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .lg\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .lg\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .lg\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .lg\:ring-opacity-0 { - --tw-ring-opacity: 0; + .lg\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .lg\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .lg\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .lg\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .lg\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .lg\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .lg\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .lg\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .lg\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .lg\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .lg\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .lg\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .lg\:text-5xl { + font-size: 3rem; + line-height: 1; } - .lg\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .lg\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .lg\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .lg\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .lg\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .lg\:text-8xl { + font-size: 6rem; + line-height: 1; } - .lg\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .lg\:text-9xl { + font-size: 8rem; + line-height: 1; } - .lg\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .lg\:font-thin { + font-weight: 100; } - .lg\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .lg\:font-extralight { + font-weight: 200; } - .lg\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .lg\:font-light { + font-weight: 300; } - .lg\:ring-opacity-100 { - --tw-ring-opacity: 1; + .lg\:font-normal { + font-weight: 400; } - .lg\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .lg\:font-medium { + font-weight: 500; } - .lg\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .lg\:font-semibold { + font-weight: 600; } - .lg\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .lg\:font-bold { + font-weight: 700; } - .lg\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .lg\:font-extrabold { + font-weight: 800; } - .lg\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .lg\:font-black { + font-weight: 900; } - .lg\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .lg\:uppercase { + text-transform: uppercase; } - .lg\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .lg\:lowercase { + text-transform: lowercase; } - .lg\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .lg\:capitalize { + text-transform: capitalize; } - .lg\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .lg\:normal-case { + text-transform: none; } - .lg\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .lg\:italic { + font-style: italic; } - .lg\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .lg\:not-italic { + font-style: normal; } - .lg\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .lg\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .lg\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .lg\:normal-nums { + font-variant-numeric: normal; } - .lg\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .lg\:ordinal { + --tw-ordinal: ordinal; } - .lg\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .lg\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .lg\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .lg\:lining-nums { + --tw-numeric-figure: lining-nums; } - .lg\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .lg\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .lg\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .lg\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .lg\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .lg\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .lg\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .lg\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .lg\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .lg\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .lg\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .lg\:leading-3 { + line-height: .75rem; } - .lg\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .lg\:leading-4 { + line-height: 1rem; } - .lg\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .lg\:leading-5 { + line-height: 1.25rem; } - .lg\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .lg\:leading-6 { + line-height: 1.5rem; } - .lg\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .lg\:leading-7 { + line-height: 1.75rem; } - .lg\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .lg\:leading-8 { + line-height: 2rem; } - .lg\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .lg\:leading-9 { + line-height: 2.25rem; } - .lg\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .lg\:leading-10 { + line-height: 2.5rem; } - .lg\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .lg\:leading-none { + line-height: 1; } - .lg\:fill-current { - fill: currentColor; + .lg\:leading-tight { + line-height: 1.25; } - .lg\:stroke-current { - stroke: currentColor; + .lg\:leading-snug { + line-height: 1.375; } - .lg\:stroke-0 { - stroke-width: 0; + .lg\:leading-normal { + line-height: 1.5; } - .lg\:stroke-1 { - stroke-width: 1; + .lg\:leading-relaxed { + line-height: 1.625; } - .lg\:stroke-2 { - stroke-width: 2; + .lg\:leading-loose { + line-height: 2; } - .lg\:table-auto { - table-layout: auto; + .lg\:tracking-tighter { + letter-spacing: -0.05em; } - .lg\:table-fixed { - table-layout: fixed; + .lg\:tracking-tight { + letter-spacing: -0.025em; } - .lg\:text-left { - text-align: left; + .lg\:tracking-normal { + letter-spacing: 0em; } - .lg\:text-center { - text-align: center; + .lg\:tracking-wide { + letter-spacing: 0.025em; } - .lg\:text-right { - text-align: right; + .lg\:tracking-wider { + letter-spacing: 0.05em; } - .lg\:text-justify { - text-align: justify; + .lg\:tracking-widest { + letter-spacing: 0.1em; } .lg\:text-transparent { @@ -112115,44 +112304,6 @@ video { --tw-text-opacity: 1; } - .lg\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .lg\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .lg\:overflow-clip { - text-overflow: clip; - } - - .lg\:italic { - font-style: italic; - } - - .lg\:not-italic { - font-style: normal; - } - - .lg\:uppercase { - text-transform: uppercase; - } - - .lg\:lowercase { - text-transform: lowercase; - } - - .lg\:capitalize { - text-transform: capitalize; - } - - .lg\:normal-case { - text-transform: none; - } - .lg\:underline { text-decoration: underline; } @@ -112223,4258 +112374,4669 @@ video { -moz-osx-font-smoothing: auto; } - .lg\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); - } - - .lg\:normal-nums { - font-variant-numeric: normal; - } - - .lg\:ordinal { - --tw-ordinal: ordinal; - } - - .lg\:slashed-zero { - --tw-slashed-zero: slashed-zero; - } - - .lg\:lining-nums { - --tw-numeric-figure: lining-nums; - } - - .lg\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; - } - - .lg\:proportional-nums { - --tw-numeric-spacing: proportional-nums; - } - - .lg\:tabular-nums { - --tw-numeric-spacing: tabular-nums; - } - - .lg\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; - } - - .lg\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; - } - - .lg\:tracking-tighter { - letter-spacing: -0.05em; - } - - .lg\:tracking-tight { - letter-spacing: -0.025em; - } - - .lg\:tracking-normal { - letter-spacing: 0em; - } - - .lg\:tracking-wide { - letter-spacing: 0.025em; + .lg\:placeholder-transparent::placeholder { + color: transparent; } - .lg\:tracking-wider { - letter-spacing: 0.05em; + .lg\:placeholder-current::placeholder { + color: currentColor; } - .lg\:tracking-widest { - letter-spacing: 0.1em; + .lg\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .lg\:select-none { - user-select: none; + .lg\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .lg\:select-text { - user-select: text; + .lg\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .lg\:select-all { - user-select: all; + .lg\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .lg\:select-auto { - user-select: auto; + .lg\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .lg\:align-baseline { - vertical-align: baseline; + .lg\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .lg\:align-top { - vertical-align: top; + .lg\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .lg\:align-middle { - vertical-align: middle; + .lg\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .lg\:align-bottom { - vertical-align: bottom; + .lg\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .lg\:align-text-top { - vertical-align: text-top; + .lg\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .lg\:align-text-bottom { - vertical-align: text-bottom; + .lg\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .lg\:visible { - visibility: visible; + .lg\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .lg\:invisible { - visibility: hidden; + .lg\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .lg\:whitespace-normal { - white-space: normal; + .lg\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .lg\:whitespace-nowrap { - white-space: nowrap; + .lg\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .lg\:whitespace-pre { - white-space: pre; + .lg\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .lg\:whitespace-pre-line { - white-space: pre-line; + .lg\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .lg\:whitespace-pre-wrap { - white-space: pre-wrap; + .lg\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .lg\:break-normal { - overflow-wrap: normal; - word-break: normal; + .lg\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .lg\:break-words { - overflow-wrap: break-word; + .lg\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .lg\:break-all { - word-break: break-all; + .lg\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .lg\:w-0 { - width: 0px; + .lg\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .lg\:w-1 { - width: 0.25rem; + .lg\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .lg\:w-2 { - width: 0.5rem; + .lg\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .lg\:w-3 { - width: 0.75rem; + .lg\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .lg\:w-4 { - width: 1rem; + .lg\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .lg\:w-5 { - width: 1.25rem; + .lg\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .lg\:w-6 { - width: 1.5rem; + .lg\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .lg\:w-7 { - width: 1.75rem; + .lg\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .lg\:w-8 { - width: 2rem; + .lg\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .lg\:w-9 { - width: 2.25rem; + .lg\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .lg\:w-10 { - width: 2.5rem; + .lg\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .lg\:w-11 { - width: 2.75rem; + .lg\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .lg\:w-12 { - width: 3rem; + .lg\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .lg\:w-14 { - width: 3.5rem; + .lg\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .lg\:w-16 { - width: 4rem; + .lg\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .lg\:w-20 { - width: 5rem; + .lg\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .lg\:w-24 { - width: 6rem; + .lg\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .lg\:w-28 { - width: 7rem; + .lg\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .lg\:w-32 { - width: 8rem; + .lg\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .lg\:w-36 { - width: 9rem; + .lg\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .lg\:w-40 { - width: 10rem; + .lg\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .lg\:w-44 { - width: 11rem; + .lg\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .lg\:w-48 { - width: 12rem; + .lg\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .lg\:w-52 { - width: 13rem; + .lg\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .lg\:w-56 { - width: 14rem; + .lg\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .lg\:w-60 { - width: 15rem; + .lg\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .lg\:w-64 { - width: 16rem; + .lg\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .lg\:w-72 { - width: 18rem; + .lg\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .lg\:w-80 { - width: 20rem; + .lg\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .lg\:w-96 { - width: 24rem; + .lg\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .lg\:w-auto { - width: auto; + .lg\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .lg\:w-px { - width: 1px; + .lg\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .lg\:w-0\.5 { - width: 0.125rem; + .lg\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .lg\:w-1\.5 { - width: 0.375rem; + .lg\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .lg\:w-2\.5 { - width: 0.625rem; + .lg\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .lg\:w-3\.5 { - width: 0.875rem; + .lg\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .lg\:w-1\/2 { - width: 50%; + .lg\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .lg\:w-1\/3 { - width: 33.333333%; + .lg\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .lg\:w-2\/3 { - width: 66.666667%; + .lg\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .lg\:w-1\/4 { - width: 25%; + .lg\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .lg\:w-2\/4 { - width: 50%; + .lg\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .lg\:w-3\/4 { - width: 75%; + .lg\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .lg\:w-1\/5 { - width: 20%; + .lg\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .lg\:w-2\/5 { - width: 40%; + .lg\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .lg\:w-3\/5 { - width: 60%; + .lg\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .lg\:w-4\/5 { - width: 80%; + .lg\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .lg\:w-1\/6 { - width: 16.666667%; + .lg\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .lg\:w-2\/6 { - width: 33.333333%; + .lg\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .lg\:w-3\/6 { - width: 50%; + .lg\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .lg\:w-4\/6 { - width: 66.666667%; + .lg\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .lg\:w-5\/6 { - width: 83.333333%; + .lg\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .lg\:w-1\/12 { - width: 8.333333%; + .lg\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .lg\:w-2\/12 { - width: 16.666667%; + .lg\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .lg\:w-3\/12 { - width: 25%; + .lg\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .lg\:w-4\/12 { - width: 33.333333%; + .lg\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .lg\:w-5\/12 { - width: 41.666667%; + .lg\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .lg\:w-6\/12 { - width: 50%; + .lg\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .lg\:w-7\/12 { - width: 58.333333%; + .lg\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .lg\:w-8\/12 { - width: 66.666667%; + .lg\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .lg\:w-9\/12 { - width: 75%; + .lg\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .lg\:w-10\/12 { - width: 83.333333%; + .lg\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .lg\:w-11\/12 { - width: 91.666667%; + .lg\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .lg\:w-full { - width: 100%; + .lg\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .lg\:w-screen { - width: 100vw; + .lg\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .lg\:w-min { - width: min-content; + .lg\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .lg\:w-max { - width: max-content; + .lg\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .lg\:z-0 { - z-index: 0; + .lg\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .lg\:z-10 { - z-index: 10; + .lg\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .lg\:z-20 { - z-index: 20; + .lg\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .lg\:z-30 { - z-index: 30; + .lg\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .lg\:z-40 { - z-index: 40; + .lg\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .lg\:z-50 { - z-index: 50; + .lg\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .lg\:z-auto { - z-index: auto; + .lg\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-0:focus-within { - z-index: 0; + .lg\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-10:focus-within { - z-index: 10; + .lg\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-20:focus-within { - z-index: 20; + .lg\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-30:focus-within { - z-index: 30; + .lg\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-40:focus-within { - z-index: 40; + .lg\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-50:focus-within { - z-index: 50; + .lg\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .lg\:focus-within\:z-auto:focus-within { - z-index: auto; + .lg\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-0:focus { - z-index: 0; + .lg\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-10:focus { - z-index: 10; + .lg\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-20:focus { - z-index: 20; + .lg\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-30:focus { - z-index: 30; + .lg\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-40:focus { - z-index: 40; + .lg\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-50:focus { - z-index: 50; + .lg\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .lg\:focus\:z-auto:focus { - z-index: auto; + .lg\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .lg\:isolate { - isolation: isolate; + .lg\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .lg\:isolation-auto { - isolation: auto; + .lg\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .lg\:gap-0 { - gap: 0px; + .lg\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .lg\:gap-1 { - gap: 0.25rem; + .lg\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .lg\:gap-2 { - gap: 0.5rem; + .lg\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .lg\:gap-3 { - gap: 0.75rem; + .lg\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .lg\:gap-4 { - gap: 1rem; + .lg\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .lg\:gap-5 { - gap: 1.25rem; + .lg\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .lg\:gap-6 { - gap: 1.5rem; + .lg\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .lg\:gap-7 { - gap: 1.75rem; + .lg\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .lg\:gap-8 { - gap: 2rem; + .lg\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .lg\:gap-9 { - gap: 2.25rem; + .lg\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .lg\:gap-10 { - gap: 2.5rem; + .lg\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .lg\:gap-11 { - gap: 2.75rem; + .lg\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .lg\:gap-12 { - gap: 3rem; + .lg\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .lg\:gap-14 { - gap: 3.5rem; + .lg\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .lg\:gap-16 { - gap: 4rem; + .lg\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .lg\:gap-20 { - gap: 5rem; + .lg\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .lg\:gap-24 { - gap: 6rem; + .lg\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .lg\:gap-28 { - gap: 7rem; + .lg\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .lg\:gap-32 { - gap: 8rem; + .lg\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .lg\:gap-36 { - gap: 9rem; + .lg\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .lg\:gap-40 { - gap: 10rem; + .lg\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .lg\:gap-44 { - gap: 11rem; + .lg\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .lg\:gap-48 { - gap: 12rem; + .lg\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .lg\:gap-52 { - gap: 13rem; + .lg\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .lg\:gap-56 { - gap: 14rem; + .lg\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .lg\:gap-60 { - gap: 15rem; + .lg\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .lg\:gap-64 { - gap: 16rem; + .lg\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .lg\:gap-72 { - gap: 18rem; + .lg\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .lg\:gap-80 { - gap: 20rem; + .lg\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .lg\:gap-96 { - gap: 24rem; + .lg\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .lg\:gap-px { - gap: 1px; + .lg\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .lg\:gap-0\.5 { - gap: 0.125rem; + .lg\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .lg\:gap-1\.5 { - gap: 0.375rem; + .lg\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .lg\:gap-2\.5 { - gap: 0.625rem; + .lg\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .lg\:gap-3\.5 { - gap: 0.875rem; + .lg\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .lg\:gap-x-0 { - column-gap: 0px; + .lg\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .lg\:gap-x-1 { - column-gap: 0.25rem; + .lg\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .lg\:gap-x-2 { - column-gap: 0.5rem; + .lg\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .lg\:gap-x-3 { - column-gap: 0.75rem; + .lg\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .lg\:gap-x-4 { - column-gap: 1rem; + .lg\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .lg\:gap-x-5 { - column-gap: 1.25rem; + .lg\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .lg\:gap-x-6 { - column-gap: 1.5rem; + .lg\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .lg\:gap-x-7 { - column-gap: 1.75rem; + .lg\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .lg\:gap-x-8 { - column-gap: 2rem; + .lg\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .lg\:gap-x-9 { - column-gap: 2.25rem; + .lg\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .lg\:gap-x-10 { - column-gap: 2.5rem; + .lg\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .lg\:gap-x-11 { - column-gap: 2.75rem; + .lg\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .lg\:gap-x-12 { - column-gap: 3rem; + .lg\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .lg\:gap-x-14 { - column-gap: 3.5rem; + .lg\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .lg\:gap-x-16 { - column-gap: 4rem; + .lg\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .lg\:gap-x-20 { - column-gap: 5rem; + .lg\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .lg\:gap-x-24 { - column-gap: 6rem; + .lg\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .lg\:gap-x-28 { - column-gap: 7rem; + .lg\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .lg\:gap-x-32 { - column-gap: 8rem; + .lg\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .lg\:gap-x-36 { - column-gap: 9rem; + .lg\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .lg\:gap-x-40 { - column-gap: 10rem; + .lg\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .lg\:gap-x-44 { - column-gap: 11rem; + .lg\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } - .lg\:gap-x-48 { - column-gap: 12rem; + .lg\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } - .lg\:gap-x-52 { - column-gap: 13rem; + .lg\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } - .lg\:gap-x-56 { - column-gap: 14rem; + .lg\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } - .lg\:gap-x-60 { - column-gap: 15rem; + .lg\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } - .lg\:gap-x-64 { - column-gap: 16rem; + .lg\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } - .lg\:gap-x-72 { - column-gap: 18rem; + .lg\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } - .lg\:gap-x-80 { - column-gap: 20rem; + .lg\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } - .lg\:gap-x-96 { - column-gap: 24rem; + .lg\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } - .lg\:gap-x-px { - column-gap: 1px; + .lg\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } - .lg\:gap-x-0\.5 { - column-gap: 0.125rem; + .lg\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } - .lg\:gap-x-1\.5 { - column-gap: 0.375rem; + .lg\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } - .lg\:gap-x-2\.5 { - column-gap: 0.625rem; + .lg\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } - .lg\:gap-x-3\.5 { - column-gap: 0.875rem; + .lg\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } - .lg\:gap-y-0 { - row-gap: 0px; + .lg\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } - .lg\:gap-y-1 { - row-gap: 0.25rem; + .lg\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } - .lg\:gap-y-2 { - row-gap: 0.5rem; + .lg\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } - .lg\:gap-y-3 { - row-gap: 0.75rem; + .lg\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } - .lg\:gap-y-4 { - row-gap: 1rem; + .lg\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } - .lg\:gap-y-5 { - row-gap: 1.25rem; + .lg\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } - .lg\:gap-y-6 { - row-gap: 1.5rem; + .lg\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } - .lg\:gap-y-7 { - row-gap: 1.75rem; + .lg\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } - .lg\:gap-y-8 { - row-gap: 2rem; + .lg\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } - .lg\:gap-y-9 { - row-gap: 2.25rem; + .lg\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } - .lg\:gap-y-10 { - row-gap: 2.5rem; + .lg\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } - .lg\:gap-y-11 { - row-gap: 2.75rem; + .lg\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } - .lg\:gap-y-12 { - row-gap: 3rem; + .lg\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } - .lg\:gap-y-14 { - row-gap: 3.5rem; + .lg\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } - .lg\:gap-y-16 { - row-gap: 4rem; + .lg\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } - .lg\:gap-y-20 { - row-gap: 5rem; + .lg\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } - .lg\:gap-y-24 { - row-gap: 6rem; + .lg\:opacity-0 { + opacity: 0; } - .lg\:gap-y-28 { - row-gap: 7rem; + .lg\:opacity-5 { + opacity: 0.05; } - .lg\:gap-y-32 { - row-gap: 8rem; + .lg\:opacity-10 { + opacity: 0.1; } - .lg\:gap-y-36 { - row-gap: 9rem; + .lg\:opacity-20 { + opacity: 0.2; } - .lg\:gap-y-40 { - row-gap: 10rem; + .lg\:opacity-25 { + opacity: 0.25; } - .lg\:gap-y-44 { - row-gap: 11rem; + .lg\:opacity-30 { + opacity: 0.3; } - .lg\:gap-y-48 { - row-gap: 12rem; + .lg\:opacity-40 { + opacity: 0.4; } - .lg\:gap-y-52 { - row-gap: 13rem; + .lg\:opacity-50 { + opacity: 0.5; } - .lg\:gap-y-56 { - row-gap: 14rem; + .lg\:opacity-60 { + opacity: 0.6; } - .lg\:gap-y-60 { - row-gap: 15rem; + .lg\:opacity-70 { + opacity: 0.7; } - .lg\:gap-y-64 { - row-gap: 16rem; + .lg\:opacity-75 { + opacity: 0.75; } - .lg\:gap-y-72 { - row-gap: 18rem; + .lg\:opacity-80 { + opacity: 0.8; } - .lg\:gap-y-80 { - row-gap: 20rem; + .lg\:opacity-90 { + opacity: 0.9; } - .lg\:gap-y-96 { - row-gap: 24rem; + .lg\:opacity-95 { + opacity: 0.95; } - .lg\:gap-y-px { - row-gap: 1px; + .lg\:opacity-100 { + opacity: 1; } - .lg\:gap-y-0\.5 { - row-gap: 0.125rem; + .group:hover .lg\:group-hover\:opacity-0 { + opacity: 0; } - .lg\:gap-y-1\.5 { - row-gap: 0.375rem; + .group:hover .lg\:group-hover\:opacity-5 { + opacity: 0.05; } - .lg\:gap-y-2\.5 { - row-gap: 0.625rem; + .group:hover .lg\:group-hover\:opacity-10 { + opacity: 0.1; } - .lg\:gap-y-3\.5 { - row-gap: 0.875rem; + .group:hover .lg\:group-hover\:opacity-20 { + opacity: 0.2; } - .lg\:grid-flow-row { - grid-auto-flow: row; + .group:hover .lg\:group-hover\:opacity-25 { + opacity: 0.25; } - .lg\:grid-flow-col { - grid-auto-flow: column; + .group:hover .lg\:group-hover\:opacity-30 { + opacity: 0.3; } - .lg\:grid-flow-row-dense { - grid-auto-flow: row dense; + .group:hover .lg\:group-hover\:opacity-40 { + opacity: 0.4; } - .lg\:grid-flow-col-dense { - grid-auto-flow: column dense; + .group:hover .lg\:group-hover\:opacity-50 { + opacity: 0.5; } - .lg\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-60 { + opacity: 0.6; } - .lg\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-70 { + opacity: 0.7; } - .lg\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-75 { + opacity: 0.75; } - .lg\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-80 { + opacity: 0.8; } - .lg\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-90 { + opacity: 0.9; } - .lg\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-95 { + opacity: 0.95; } - .lg\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .group:hover .lg\:group-hover\:opacity-100 { + opacity: 1; } - .lg\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .lg\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .lg\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .lg\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .lg\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .lg\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .lg\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .lg\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .lg\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .lg\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .lg\:grid-cols-none { - grid-template-columns: none; + .lg\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .lg\:auto-cols-auto { - grid-auto-columns: auto; + .lg\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .lg\:auto-cols-min { - grid-auto-columns: min-content; + .lg\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .lg\:auto-cols-max { - grid-auto-columns: max-content; + .lg\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .lg\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .lg\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .lg\:col-auto { - grid-column: auto; + .lg\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .lg\:col-span-1 { - grid-column: span 1 / span 1; + .lg\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .lg\:col-span-2 { - grid-column: span 2 / span 2; + .lg\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .lg\:col-span-3 { - grid-column: span 3 / span 3; + .lg\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .lg\:col-span-4 { - grid-column: span 4 / span 4; + .lg\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .lg\:col-span-5 { - grid-column: span 5 / span 5; + .lg\:hover\:opacity-0:hover { + opacity: 0; } - .lg\:col-span-6 { - grid-column: span 6 / span 6; + .lg\:hover\:opacity-5:hover { + opacity: 0.05; } - .lg\:col-span-7 { - grid-column: span 7 / span 7; + .lg\:hover\:opacity-10:hover { + opacity: 0.1; } - .lg\:col-span-8 { - grid-column: span 8 / span 8; + .lg\:hover\:opacity-20:hover { + opacity: 0.2; } - .lg\:col-span-9 { - grid-column: span 9 / span 9; + .lg\:hover\:opacity-25:hover { + opacity: 0.25; } - .lg\:col-span-10 { - grid-column: span 10 / span 10; + .lg\:hover\:opacity-30:hover { + opacity: 0.3; } - .lg\:col-span-11 { - grid-column: span 11 / span 11; + .lg\:hover\:opacity-40:hover { + opacity: 0.4; } - .lg\:col-span-12 { - grid-column: span 12 / span 12; + .lg\:hover\:opacity-50:hover { + opacity: 0.5; } - .lg\:col-span-full { - grid-column: 1 / -1; + .lg\:hover\:opacity-60:hover { + opacity: 0.6; } - .lg\:col-start-1 { - grid-column-start: 1; + .lg\:hover\:opacity-70:hover { + opacity: 0.7; } - .lg\:col-start-2 { - grid-column-start: 2; + .lg\:hover\:opacity-75:hover { + opacity: 0.75; } - .lg\:col-start-3 { - grid-column-start: 3; + .lg\:hover\:opacity-80:hover { + opacity: 0.8; } - .lg\:col-start-4 { - grid-column-start: 4; + .lg\:hover\:opacity-90:hover { + opacity: 0.9; } - .lg\:col-start-5 { - grid-column-start: 5; + .lg\:hover\:opacity-95:hover { + opacity: 0.95; } - .lg\:col-start-6 { - grid-column-start: 6; + .lg\:hover\:opacity-100:hover { + opacity: 1; } - .lg\:col-start-7 { - grid-column-start: 7; + .lg\:focus\:opacity-0:focus { + opacity: 0; } - .lg\:col-start-8 { - grid-column-start: 8; + .lg\:focus\:opacity-5:focus { + opacity: 0.05; } - .lg\:col-start-9 { - grid-column-start: 9; + .lg\:focus\:opacity-10:focus { + opacity: 0.1; } - .lg\:col-start-10 { - grid-column-start: 10; + .lg\:focus\:opacity-20:focus { + opacity: 0.2; } - .lg\:col-start-11 { - grid-column-start: 11; + .lg\:focus\:opacity-25:focus { + opacity: 0.25; } - .lg\:col-start-12 { - grid-column-start: 12; + .lg\:focus\:opacity-30:focus { + opacity: 0.3; } - .lg\:col-start-13 { - grid-column-start: 13; + .lg\:focus\:opacity-40:focus { + opacity: 0.4; } - .lg\:col-start-auto { - grid-column-start: auto; + .lg\:focus\:opacity-50:focus { + opacity: 0.5; } - .lg\:col-end-1 { - grid-column-end: 1; + .lg\:focus\:opacity-60:focus { + opacity: 0.6; } - .lg\:col-end-2 { - grid-column-end: 2; + .lg\:focus\:opacity-70:focus { + opacity: 0.7; } - .lg\:col-end-3 { - grid-column-end: 3; + .lg\:focus\:opacity-75:focus { + opacity: 0.75; } - .lg\:col-end-4 { - grid-column-end: 4; + .lg\:focus\:opacity-80:focus { + opacity: 0.8; } - .lg\:col-end-5 { - grid-column-end: 5; + .lg\:focus\:opacity-90:focus { + opacity: 0.9; } - .lg\:col-end-6 { - grid-column-end: 6; + .lg\:focus\:opacity-95:focus { + opacity: 0.95; } - .lg\:col-end-7 { - grid-column-end: 7; + .lg\:focus\:opacity-100:focus { + opacity: 1; } - .lg\:col-end-8 { - grid-column-end: 8; + .lg\:bg-blend-normal { + background-blend-mode: normal; } - .lg\:col-end-9 { - grid-column-end: 9; + .lg\:bg-blend-multiply { + background-blend-mode: multiply; } - .lg\:col-end-10 { - grid-column-end: 10; + .lg\:bg-blend-screen { + background-blend-mode: screen; } - .lg\:col-end-11 { - grid-column-end: 11; + .lg\:bg-blend-overlay { + background-blend-mode: overlay; } - .lg\:col-end-12 { - grid-column-end: 12; + .lg\:bg-blend-darken { + background-blend-mode: darken; } - .lg\:col-end-13 { - grid-column-end: 13; + .lg\:bg-blend-lighten { + background-blend-mode: lighten; } - .lg\:col-end-auto { - grid-column-end: auto; + .lg\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .lg\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .lg\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .lg\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .lg\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .lg\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .lg\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .lg\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .lg\:bg-blend-difference { + background-blend-mode: difference; } - .lg\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .lg\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .lg\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .lg\:bg-blend-hue { + background-blend-mode: hue; } - .lg\:grid-rows-none { - grid-template-rows: none; + .lg\:bg-blend-saturation { + background-blend-mode: saturation; } - .lg\:auto-rows-auto { - grid-auto-rows: auto; + .lg\:bg-blend-color { + background-blend-mode: color; } - .lg\:auto-rows-min { - grid-auto-rows: min-content; + .lg\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .lg\:auto-rows-max { - grid-auto-rows: max-content; + .lg\:mix-blend-normal { + mix-blend-mode: normal; } - .lg\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .lg\:mix-blend-multiply { + mix-blend-mode: multiply; } - .lg\:row-auto { - grid-row: auto; + .lg\:mix-blend-screen { + mix-blend-mode: screen; } - .lg\:row-span-1 { - grid-row: span 1 / span 1; + .lg\:mix-blend-overlay { + mix-blend-mode: overlay; } - .lg\:row-span-2 { - grid-row: span 2 / span 2; + .lg\:mix-blend-darken { + mix-blend-mode: darken; } - .lg\:row-span-3 { - grid-row: span 3 / span 3; + .lg\:mix-blend-lighten { + mix-blend-mode: lighten; } - .lg\:row-span-4 { - grid-row: span 4 / span 4; + .lg\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .lg\:row-span-5 { - grid-row: span 5 / span 5; + .lg\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .lg\:row-span-6 { - grid-row: span 6 / span 6; + .lg\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .lg\:row-span-full { - grid-row: 1 / -1; + .lg\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .lg\:row-start-1 { - grid-row-start: 1; + .lg\:mix-blend-difference { + mix-blend-mode: difference; } - .lg\:row-start-2 { - grid-row-start: 2; + .lg\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .lg\:row-start-3 { - grid-row-start: 3; + .lg\:mix-blend-hue { + mix-blend-mode: hue; } - .lg\:row-start-4 { - grid-row-start: 4; + .lg\:mix-blend-saturation { + mix-blend-mode: saturation; } - .lg\:row-start-5 { - grid-row-start: 5; + .lg\:mix-blend-color { + mix-blend-mode: color; } - .lg\:row-start-6 { - grid-row-start: 6; + .lg\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .lg\:row-start-7 { - grid-row-start: 7; + .lg\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-start-auto { - grid-row-start: auto; + .lg\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-1 { - grid-row-end: 1; + .lg\: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); } - .lg\:row-end-2 { - grid-row-end: 2; + .lg\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-3 { - grid-row-end: 3; + .lg\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-4 { - grid-row-end: 4; + .lg\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-5 { - grid-row-end: 5; + .lg\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-6 { - grid-row-end: 6; + .lg\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-7 { - grid-row-end: 7; + .group:hover .lg\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:row-end-auto { - grid-row-end: auto; + .group:hover .lg\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .lg\:group-hover\: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); } - .lg\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .lg\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:transform-none { - transform: none; + .group:hover .lg\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-center { - transform-origin: center; + .group:hover .lg\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-top { - transform-origin: top; + .group:hover .lg\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-top-right { - transform-origin: top right; + .group:hover .lg\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-right { - transform-origin: right; + .lg\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-bottom-right { - transform-origin: bottom right; + .lg\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-bottom { - transform-origin: bottom; + .lg\:focus-within\:shadow-md:focus-within { + --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); } - .lg\:origin-bottom-left { - transform-origin: bottom left; + .lg\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-left { - transform-origin: left; + .lg\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:origin-top-left { - transform-origin: top left; + .lg\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .lg\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .lg\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .lg\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .lg\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .lg\:hover\:shadow-md:hover { + --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); } - .lg\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .lg\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .lg\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .lg\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .lg\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .lg\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-0 { - --tw-scale-x: 0; + .lg\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-50 { - --tw-scale-x: .5; + .lg\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-75 { - --tw-scale-x: .75; + .lg\:focus\:shadow-md:focus { + --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); } - .lg\:scale-x-90 { - --tw-scale-x: .9; + .lg\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-95 { - --tw-scale-x: .95; + .lg\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-100 { - --tw-scale-x: 1; + .lg\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-105 { - --tw-scale-x: 1.05; + .lg\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-110 { - --tw-scale-x: 1.1; + .lg\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .lg\:scale-x-125 { - --tw-scale-x: 1.25; + .lg\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .lg\:scale-x-150 { - --tw-scale-x: 1.5; + .lg\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .lg\:scale-y-0 { - --tw-scale-y: 0; + .lg\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .lg\:scale-y-50 { - --tw-scale-y: .5; + .lg\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .lg\:scale-y-75 { - --tw-scale-y: .75; + .lg\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .lg\:scale-y-90 { - --tw-scale-y: .9; + .lg\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .lg\:scale-y-95 { - --tw-scale-y: .95; + .lg\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .lg\:scale-y-100 { - --tw-scale-y: 1; + .lg\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .lg\:scale-y-105 { - --tw-scale-y: 1.05; + .lg\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .lg\:scale-y-110 { - --tw-scale-y: 1.1; + .lg\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:scale-y-125 { - --tw-scale-y: 1.25; + .lg\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:scale-y-150 { - --tw-scale-y: 1.5; + .lg\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .lg\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .lg\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .lg\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .lg\:ring-inset { + --tw-ring-inset: inset; } - .lg\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .lg\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .lg\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .lg\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .lg\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .lg\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .lg\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .lg\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .lg\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .lg\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .lg\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .lg\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .lg\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .lg\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .lg\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .lg\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .lg\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .lg\:ring-transparent { + --tw-ring-color: transparent; } - .lg\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .lg\:ring-current { + --tw-ring-color: currentColor; } - .lg\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .lg\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .lg\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .lg\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .lg\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .lg\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .lg\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .lg\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .lg\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .lg\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .lg\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .lg\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .lg\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .lg\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .lg\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .lg\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .lg\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .lg\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .lg\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .lg\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .lg\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .lg\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .lg\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .lg\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .lg\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .lg\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .lg\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .lg\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .lg\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .lg\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .lg\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .lg\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .lg\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .lg\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .lg\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .lg\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .lg\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .lg\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .lg\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .lg\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .lg\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .lg\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .lg\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .lg\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .lg\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .lg\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .lg\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .lg\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .lg\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .lg\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .lg\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .lg\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .lg\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .lg\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .lg\:rotate-0 { - --tw-rotate: 0deg; + .lg\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .lg\:rotate-1 { - --tw-rotate: 1deg; + .lg\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .lg\:rotate-2 { - --tw-rotate: 2deg; + .lg\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .lg\:rotate-3 { - --tw-rotate: 3deg; + .lg\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .lg\:rotate-6 { - --tw-rotate: 6deg; + .lg\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .lg\:rotate-12 { - --tw-rotate: 12deg; + .lg\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .lg\:rotate-45 { - --tw-rotate: 45deg; + .lg\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .lg\:rotate-90 { - --tw-rotate: 90deg; + .lg\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .lg\:rotate-180 { - --tw-rotate: 180deg; + .lg\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .lg\:-rotate-180 { - --tw-rotate: -180deg; + .lg\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .lg\:-rotate-90 { - --tw-rotate: -90deg; + .lg\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .lg\:-rotate-45 { - --tw-rotate: -45deg; + .lg\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .lg\:-rotate-12 { - --tw-rotate: -12deg; + .lg\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .lg\:-rotate-6 { - --tw-rotate: -6deg; + .lg\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .lg\:-rotate-3 { - --tw-rotate: -3deg; + .lg\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .lg\:-rotate-2 { - --tw-rotate: -2deg; + .lg\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .lg\:-rotate-1 { - --tw-rotate: -1deg; + .lg\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .lg\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .lg\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .lg\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .lg\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .lg\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .lg\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .lg\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .lg\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .lg\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .lg\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .lg\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .lg\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .lg\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .lg\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .lg\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .lg\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .lg\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .lg\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .lg\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .lg\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .lg\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .lg\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .lg\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .lg\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .lg\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .lg\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .lg\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .lg\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .lg\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .lg\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .lg\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .lg\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .lg\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .lg\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .lg\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .lg\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .lg\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .lg\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .lg\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .lg\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .lg\:translate-x-0 { - --tw-translate-x: 0px; + .lg\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .lg\:translate-x-1 { - --tw-translate-x: 0.25rem; + .lg\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .lg\:translate-x-2 { - --tw-translate-x: 0.5rem; + .lg\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .lg\:translate-x-3 { - --tw-translate-x: 0.75rem; + .lg\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .lg\:translate-x-4 { - --tw-translate-x: 1rem; + .lg\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .lg\:translate-x-5 { - --tw-translate-x: 1.25rem; + .lg\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .lg\:translate-x-6 { - --tw-translate-x: 1.5rem; + .lg\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .lg\:translate-x-7 { - --tw-translate-x: 1.75rem; + .lg\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .lg\:translate-x-8 { - --tw-translate-x: 2rem; + .lg\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .lg\:translate-x-9 { - --tw-translate-x: 2.25rem; + .lg\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .lg\:translate-x-10 { - --tw-translate-x: 2.5rem; + .lg\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .lg\:translate-x-11 { - --tw-translate-x: 2.75rem; + .lg\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .lg\:translate-x-12 { - --tw-translate-x: 3rem; + .lg\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .lg\:translate-x-14 { - --tw-translate-x: 3.5rem; + .lg\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .lg\:translate-x-16 { - --tw-translate-x: 4rem; + .lg\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .lg\:translate-x-20 { - --tw-translate-x: 5rem; + .lg\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .lg\:translate-x-24 { - --tw-translate-x: 6rem; + .lg\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .lg\:translate-x-28 { - --tw-translate-x: 7rem; + .lg\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .lg\:translate-x-32 { - --tw-translate-x: 8rem; + .lg\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .lg\:translate-x-36 { - --tw-translate-x: 9rem; + .lg\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .lg\:translate-x-40 { - --tw-translate-x: 10rem; + .lg\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .lg\:translate-x-44 { - --tw-translate-x: 11rem; + .lg\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .lg\:translate-x-48 { - --tw-translate-x: 12rem; + .lg\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .lg\:translate-x-52 { - --tw-translate-x: 13rem; + .lg\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .lg\:translate-x-56 { - --tw-translate-x: 14rem; + .lg\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .lg\:translate-x-60 { - --tw-translate-x: 15rem; + .lg\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .lg\:translate-x-64 { - --tw-translate-x: 16rem; + .lg\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .lg\:translate-x-72 { - --tw-translate-x: 18rem; + .lg\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .lg\:translate-x-80 { - --tw-translate-x: 20rem; + .lg\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .lg\:translate-x-96 { - --tw-translate-x: 24rem; + .lg\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .lg\:translate-x-px { - --tw-translate-x: 1px; + .lg\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .lg\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .lg\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .lg\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .lg\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .lg\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .lg\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .lg\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .lg\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .lg\:-translate-x-0 { - --tw-translate-x: 0px; + .lg\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .lg\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .lg\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .lg\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .lg\:-translate-x-4 { - --tw-translate-x: -1rem; + .lg\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .lg\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .lg\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .lg\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .lg\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .lg\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .lg\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .lg\:-translate-x-8 { - --tw-translate-x: -2rem; + .lg\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .lg\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .lg\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .lg\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .lg\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .lg\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-12 { - --tw-translate-x: -3rem; + .lg\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .lg\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .lg\:-translate-x-16 { - --tw-translate-x: -4rem; + .lg\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .lg\:-translate-x-20 { - --tw-translate-x: -5rem; + .lg\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .lg\:-translate-x-24 { - --tw-translate-x: -6rem; + .lg\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .lg\:-translate-x-28 { - --tw-translate-x: -7rem; + .lg\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .lg\:-translate-x-32 { - --tw-translate-x: -8rem; + .lg\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .lg\:-translate-x-36 { - --tw-translate-x: -9rem; + .lg\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .lg\:-translate-x-40 { - --tw-translate-x: -10rem; + .lg\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-44 { - --tw-translate-x: -11rem; + .lg\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-48 { - --tw-translate-x: -12rem; + .lg\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .lg\:-translate-x-52 { - --tw-translate-x: -13rem; + .lg\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .lg\:-translate-x-56 { - --tw-translate-x: -14rem; + .lg\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .lg\:-translate-x-60 { - --tw-translate-x: -15rem; + .lg\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .lg\:-translate-x-64 { - --tw-translate-x: -16rem; + .lg\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .lg\:-translate-x-72 { - --tw-translate-x: -18rem; + .lg\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .lg\:-translate-x-80 { - --tw-translate-x: -20rem; + .lg\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .lg\:-translate-x-96 { - --tw-translate-x: -24rem; + .lg\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .lg\:-translate-x-px { - --tw-translate-x: -1px; + .lg\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .lg\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .lg\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .lg\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .lg\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .lg\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .lg\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .lg\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .lg\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .lg\:translate-x-1\/2 { - --tw-translate-x: 50%; + .lg\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .lg\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .lg\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .lg\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .lg\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .lg\:translate-x-1\/4 { - --tw-translate-x: 25%; + .lg\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .lg\:translate-x-2\/4 { - --tw-translate-x: 50%; + .lg\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .lg\:translate-x-3\/4 { - --tw-translate-x: 75%; + .lg\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .lg\:translate-x-full { - --tw-translate-x: 100%; + .lg\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .lg\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .lg\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .lg\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .lg\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .lg\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .lg\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .lg\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .lg\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .lg\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .lg\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .lg\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .lg\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .lg\:-translate-x-full { - --tw-translate-x: -100%; + .lg\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .lg\:translate-y-0 { - --tw-translate-y: 0px; + .lg\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .lg\:translate-y-1 { - --tw-translate-y: 0.25rem; + .lg\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .lg\:translate-y-2 { - --tw-translate-y: 0.5rem; + .lg\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .lg\:translate-y-3 { - --tw-translate-y: 0.75rem; + .lg\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .lg\:translate-y-4 { - --tw-translate-y: 1rem; + .lg\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .lg\:translate-y-5 { - --tw-translate-y: 1.25rem; + .lg\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .lg\:translate-y-6 { - --tw-translate-y: 1.5rem; + .lg\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .lg\:translate-y-7 { - --tw-translate-y: 1.75rem; + .lg\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .lg\:translate-y-8 { - --tw-translate-y: 2rem; + .lg\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .lg\:translate-y-9 { - --tw-translate-y: 2.25rem; + .lg\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .lg\:translate-y-10 { - --tw-translate-y: 2.5rem; + .lg\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .lg\:translate-y-11 { - --tw-translate-y: 2.75rem; + .lg\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .lg\:translate-y-12 { - --tw-translate-y: 3rem; + .lg\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .lg\:translate-y-14 { - --tw-translate-y: 3.5rem; + .lg\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .lg\:translate-y-16 { - --tw-translate-y: 4rem; + .lg\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .lg\:translate-y-20 { - --tw-translate-y: 5rem; + .lg\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .lg\:translate-y-24 { - --tw-translate-y: 6rem; + .lg\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .lg\:translate-y-28 { - --tw-translate-y: 7rem; + .lg\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .lg\:translate-y-32 { - --tw-translate-y: 8rem; + .lg\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .lg\:translate-y-36 { - --tw-translate-y: 9rem; + .lg\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .lg\:translate-y-40 { - --tw-translate-y: 10rem; + .lg\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .lg\:translate-y-44 { - --tw-translate-y: 11rem; + .lg\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .lg\:translate-y-48 { - --tw-translate-y: 12rem; + .lg\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .lg\:translate-y-52 { - --tw-translate-y: 13rem; + .lg\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .lg\:translate-y-56 { - --tw-translate-y: 14rem; + .lg\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .lg\:translate-y-60 { - --tw-translate-y: 15rem; + .lg\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .lg\:translate-y-64 { - --tw-translate-y: 16rem; + .lg\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .lg\:translate-y-72 { - --tw-translate-y: 18rem; + .lg\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .lg\:translate-y-80 { - --tw-translate-y: 20rem; + .lg\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .lg\:translate-y-96 { - --tw-translate-y: 24rem; + .lg\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .lg\:translate-y-px { - --tw-translate-y: 1px; + .lg\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .lg\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .lg\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .lg\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .lg\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .lg\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .lg\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .lg\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .lg\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .lg\:-translate-y-0 { - --tw-translate-y: 0px; + .lg\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .lg\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .lg\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .lg\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .lg\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .lg\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .lg\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .lg\:-translate-y-4 { - --tw-translate-y: -1rem; + .lg\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .lg\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .lg\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .lg\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .lg\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .lg\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .lg\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .lg\:-translate-y-8 { - --tw-translate-y: -2rem; + .lg\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .lg\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .lg\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .lg\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .lg\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .lg\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .lg\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .lg\:-translate-y-12 { - --tw-translate-y: -3rem; + .lg\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .lg\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .lg\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .lg\:-translate-y-16 { - --tw-translate-y: -4rem; + .lg\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .lg\:-translate-y-20 { - --tw-translate-y: -5rem; + .lg\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .lg\:-translate-y-24 { - --tw-translate-y: -6rem; + .lg\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .lg\:-translate-y-28 { - --tw-translate-y: -7rem; + .lg\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .lg\:-translate-y-32 { - --tw-translate-y: -8rem; + .lg\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .lg\:-translate-y-36 { - --tw-translate-y: -9rem; + .lg\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .lg\:-translate-y-40 { - --tw-translate-y: -10rem; + .lg\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .lg\:-translate-y-44 { - --tw-translate-y: -11rem; + .lg\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .lg\:-translate-y-48 { - --tw-translate-y: -12rem; + .lg\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .lg\:-translate-y-52 { - --tw-translate-y: -13rem; + .lg\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .lg\:-translate-y-56 { - --tw-translate-y: -14rem; + .lg\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .lg\:-translate-y-60 { - --tw-translate-y: -15rem; + .lg\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .lg\:-translate-y-64 { - --tw-translate-y: -16rem; + .lg\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .lg\:-translate-y-72 { - --tw-translate-y: -18rem; + .lg\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .lg\:-translate-y-80 { - --tw-translate-y: -20rem; + .lg\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .lg\:-translate-y-96 { - --tw-translate-y: -24rem; + .lg\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .lg\:-translate-y-px { - --tw-translate-y: -1px; + .lg\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .lg\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .lg\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .lg\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .lg\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .lg\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .lg\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .lg\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .lg\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .lg\:translate-y-1\/2 { - --tw-translate-y: 50%; + .lg\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .lg\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .lg\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .lg\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .lg\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .lg\:translate-y-1\/4 { - --tw-translate-y: 25%; + .lg\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .lg\:translate-y-2\/4 { - --tw-translate-y: 50%; + .lg\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .lg\:translate-y-3\/4 { - --tw-translate-y: 75%; + .lg\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .lg\:translate-y-full { - --tw-translate-y: 100%; + .lg\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .lg\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .lg\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .lg\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .lg\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .lg\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .lg\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .lg\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .lg\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .lg\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .lg\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .lg\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .lg\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .lg\:-translate-y-full { - --tw-translate-y: -100%; + .lg\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .lg\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .lg\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .lg\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .lg\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .lg\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .lg\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .lg\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .lg\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .lg\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .lg\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .lg\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .lg\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .lg\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .lg\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .lg\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .lg\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .lg\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .lg\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .lg\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .lg\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .lg\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .lg\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .lg\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .lg\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .lg\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .lg\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .lg\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .lg\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .lg\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .lg\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .lg\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .lg\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .lg\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .lg\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .lg\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .lg\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .lg\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .lg\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .lg\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .lg\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .lg\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .lg\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .lg\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .lg\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .lg\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .lg\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .lg\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .lg\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .lg\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .lg\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .lg\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .lg\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .lg\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .lg\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .lg\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .lg\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .lg\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .lg\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .lg\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .lg\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .lg\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .lg\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .lg\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .lg\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .lg\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .lg\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .lg\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .lg\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .lg\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .lg\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .lg\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .lg\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .lg\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .lg\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .lg\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .lg\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .lg\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .lg\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .lg\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .lg\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .lg\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .lg\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .lg\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .lg\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .lg\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .lg\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .lg\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .lg\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .lg\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .lg\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .lg\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .lg\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .lg\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .lg\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .lg\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .lg\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .lg\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .lg\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .lg\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .lg\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .lg\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .lg\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .lg\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .lg\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .lg\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .lg\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .lg\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .lg\:ring-offset-black { + --tw-ring-offset-color: #000; } - .lg\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .lg\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .lg\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .lg\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .lg\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .lg\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .lg\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .lg\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .lg\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .lg\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .lg\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .lg\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .lg\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .lg\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .lg\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .lg\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .lg\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .lg\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .lg\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .lg\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .lg\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .lg\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .lg\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .lg\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .lg\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .lg\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .lg\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .lg\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .lg\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .lg\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .lg\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .lg\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .lg\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .lg\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .lg\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .lg\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .lg\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .lg\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .lg\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .lg\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .lg\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .lg\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .lg\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .lg\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .lg\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .lg\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .lg\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .lg\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .lg\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .lg\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .lg\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .lg\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .lg\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .lg\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .lg\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .lg\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .lg\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .lg\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .lg\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .lg\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .lg\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .lg\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .lg\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .lg\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .lg\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .lg\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .lg\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .lg\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .lg\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .lg\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .lg\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .lg\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .lg\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .lg\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .lg\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .lg\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .lg\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .lg\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .lg\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .lg\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .lg\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .lg\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .lg\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .lg\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .lg\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .lg\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .lg\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .lg\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .lg\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .lg\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .lg\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .lg\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .lg\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .lg\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .lg\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .lg\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .lg\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .lg\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .lg\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .lg\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .lg\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .lg\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .lg\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .lg\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .lg\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .lg\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .lg\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .lg\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .lg\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .lg\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .lg\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .lg\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .lg\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .lg\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .lg\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .lg\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .lg\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .lg\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .lg\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .lg\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .lg\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .lg\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .lg\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .lg\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .lg\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .lg\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .lg\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .lg\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .lg\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .lg\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .lg\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .lg\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .lg\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .lg\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .lg\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .lg\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .lg\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .lg\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .lg\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .lg\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .lg\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .lg\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .lg\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .lg\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .lg\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .lg\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .lg\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .lg\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .lg\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .lg\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .lg\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .lg\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .lg\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .lg\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .lg\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .lg\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .lg\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .lg\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .lg\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .lg\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .lg\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .lg\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .lg\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .lg\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .lg\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .lg\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .lg\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .lg\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .lg\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .lg\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .lg\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .lg\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .lg\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .lg\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .lg\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .lg\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .lg\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .lg\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .lg\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .lg\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .lg\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .lg\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .lg\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .lg\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .lg\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .lg\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .lg\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .lg\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .lg\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .lg\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .lg\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .lg\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .lg\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .lg\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .lg\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .lg\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .lg\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .lg\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .lg\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .lg\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .lg\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .lg\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .lg\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .lg\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .lg\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .lg\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .lg\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .lg\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .lg\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .lg\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .lg\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .lg\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .lg\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .lg\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .lg\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .lg\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .lg\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .lg\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .lg\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .lg\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .lg\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .lg\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .lg\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .lg\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .lg\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .lg\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .lg\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .lg\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .lg\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .lg\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .lg\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .lg\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - - .lg\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + + .lg\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .lg\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .lg\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .lg\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .lg\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .lg\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .lg\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .lg\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .lg\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .lg\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .lg\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .lg\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .lg\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .lg\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .lg\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .lg\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .lg\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .lg\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .lg\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .lg\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .lg\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .lg\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .lg\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .lg\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .lg\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .lg\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .lg\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .lg\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .lg\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .lg\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .lg\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .lg\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .lg\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .lg\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .lg\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .lg\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .lg\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .lg\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .lg\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .lg\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .lg\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .lg\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .lg\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .lg\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .lg\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .lg\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .lg\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .lg\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .lg\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .lg\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .lg\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .lg\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .lg\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .lg\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .lg\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .lg\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .lg\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .lg\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .lg\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .lg\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .lg\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .lg\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .lg\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .lg\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .lg\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .lg\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .lg\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .lg\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .lg\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .lg\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .lg\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .lg\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .lg\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .lg\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .lg\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .lg\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .lg\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .lg\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .lg\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .lg\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .lg\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .lg\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .lg\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .lg\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .lg\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .lg\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .lg\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .lg\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .lg\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .lg\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .lg\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .lg\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .lg\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .lg\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .lg\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .lg\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .lg\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .lg\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .lg\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .lg\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .lg\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .lg\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .lg\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .lg\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .lg\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .lg\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .lg\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .lg\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .lg\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .lg\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .lg\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .lg\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .lg\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .lg\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .lg\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .lg\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .lg\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .lg\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .lg\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .lg\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .lg\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .lg\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .lg\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .lg\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .lg\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .lg\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .lg\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .lg\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .lg\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .lg\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .lg\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .lg\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .lg\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .lg\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .lg\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .lg\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .lg\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .lg\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .lg\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .lg\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .lg\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .lg\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .lg\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .lg\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .lg\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .lg\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .lg\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .lg\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .lg\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .lg\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .lg\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .lg\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .lg\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .lg\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .lg\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .lg\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .lg\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .lg\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .lg\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .lg\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .lg\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .lg\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .lg\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .lg\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .lg\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .lg\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .lg\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .lg\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .lg\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .lg\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .lg\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .lg\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .lg\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .lg\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .lg\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .lg\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .lg\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .lg\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .lg\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .lg\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .lg\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .lg\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .lg\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .lg\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .lg\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .lg\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .lg\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .lg\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .lg\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .lg\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .lg\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .lg\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .lg\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .lg\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .lg\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .lg\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .lg\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .lg\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .lg\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .lg\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .lg\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .lg\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .lg\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .lg\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .lg\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .lg\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .lg\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .lg\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .lg\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .lg\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .lg\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .lg\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .lg\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .lg\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .lg\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .lg\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .lg\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .lg\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .lg\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .lg\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .lg\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .lg\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .lg\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .lg\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .lg\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .lg\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .lg\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .lg\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .lg\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .lg\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .lg\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .lg\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .lg\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .lg\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .lg\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .lg\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .lg\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .lg\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .lg\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .lg\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .lg\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .lg\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .lg\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .lg\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .lg\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .lg\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .lg\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .lg\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .lg\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .lg\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .lg\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .lg\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .lg\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .lg\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .lg\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .lg\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .lg\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .lg\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .lg\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .lg\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .lg\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .lg\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .lg\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .lg\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .lg\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .lg\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .lg\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .lg\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .lg\:filter-none { + filter: none; } - .lg\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .lg\:blur-0 { + --tw-blur: blur(0); } - .lg\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .lg\:blur-sm { + --tw-blur: blur(4px); } - .lg\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .lg\:blur { + --tw-blur: blur(8px); } - .lg\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .lg\:blur-md { + --tw-blur: blur(12px); } - .lg\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .lg\:blur-lg { + --tw-blur: blur(16px); } - .lg\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .lg\:blur-xl { + --tw-blur: blur(24px); } - .lg\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .lg\:blur-2xl { + --tw-blur: blur(40px); } - .lg\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .lg\:blur-3xl { + --tw-blur: blur(64px); } - .lg\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .lg\:brightness-0 { + --tw-brightness: brightness(0); } - .lg\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .lg\:brightness-50 { + --tw-brightness: brightness(.5); } - .lg\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .lg\:brightness-75 { + --tw-brightness: brightness(.75); } - .lg\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .lg\:brightness-90 { + --tw-brightness: brightness(.9); } - .lg\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .lg\:brightness-95 { + --tw-brightness: brightness(.95); } - .lg\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .lg\:brightness-100 { + --tw-brightness: brightness(1); } - .lg\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .lg\:brightness-105 { + --tw-brightness: brightness(1.05); } - .lg\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .lg\:brightness-110 { + --tw-brightness: brightness(1.1); } - .lg\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .lg\:brightness-125 { + --tw-brightness: brightness(1.25); } - .lg\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .lg\:brightness-150 { + --tw-brightness: brightness(1.5); } - .lg\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .lg\:brightness-200 { + --tw-brightness: brightness(2); } - .lg\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .lg\:contrast-0 { + --tw-contrast: contrast(0); } - .lg\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .lg\:contrast-50 { + --tw-contrast: contrast(.5); } - .lg\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .lg\:contrast-75 { + --tw-contrast: contrast(.75); } - .lg\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .lg\:contrast-100 { + --tw-contrast: contrast(1); } - .lg\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .lg\:contrast-125 { + --tw-contrast: contrast(1.25); } - .lg\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .lg\:contrast-150 { + --tw-contrast: contrast(1.5); } - .lg\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .lg\:contrast-200 { + --tw-contrast: contrast(2); } - .lg\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .lg\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .lg\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .lg\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .lg\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .lg\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .lg\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .lg\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .lg\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .lg\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .lg\:skew-x-0 { - --tw-skew-x: 0deg; + .lg\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .lg\:skew-x-1 { - --tw-skew-x: 1deg; + .lg\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .lg\:skew-x-2 { - --tw-skew-x: 2deg; + .lg\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .lg\:skew-x-3 { - --tw-skew-x: 3deg; + .lg\:grayscale { + --tw-grayscale: grayscale(100%); } - .lg\:skew-x-6 { - --tw-skew-x: 6deg; + .lg\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .lg\:skew-x-12 { - --tw-skew-x: 12deg; + .lg\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .lg\:-skew-x-12 { - --tw-skew-x: -12deg; + .lg\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .lg\:-skew-x-6 { - --tw-skew-x: -6deg; + .lg\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .lg\:-skew-x-3 { - --tw-skew-x: -3deg; + .lg\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .lg\:-skew-x-2 { - --tw-skew-x: -2deg; + .lg\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .lg\:-skew-x-1 { - --tw-skew-x: -1deg; + .lg\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .lg\:skew-y-0 { - --tw-skew-y: 0deg; + .lg\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .lg\:skew-y-1 { - --tw-skew-y: 1deg; + .lg\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .lg\:skew-y-2 { - --tw-skew-y: 2deg; + .lg\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .lg\:skew-y-3 { - --tw-skew-y: 3deg; + .lg\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .lg\:skew-y-6 { - --tw-skew-y: 6deg; + .lg\:invert-0 { + --tw-invert: invert(0); } - .lg\:skew-y-12 { - --tw-skew-y: 12deg; + .lg\:invert { + --tw-invert: invert(100%); } - .lg\:-skew-y-12 { - --tw-skew-y: -12deg; + .lg\:saturate-0 { + --tw-saturate: saturate(0); } - .lg\:-skew-y-6 { - --tw-skew-y: -6deg; + .lg\:saturate-50 { + --tw-saturate: saturate(.5); } - .lg\:-skew-y-3 { - --tw-skew-y: -3deg; + .lg\:saturate-100 { + --tw-saturate: saturate(1); } - .lg\:-skew-y-2 { - --tw-skew-y: -2deg; + .lg\:saturate-150 { + --tw-saturate: saturate(1.5); } - .lg\:-skew-y-1 { - --tw-skew-y: -1deg; + .lg\:saturate-200 { + --tw-saturate: saturate(2); } - .lg\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .lg\:sepia-0 { + --tw-sepia: sepia(0); } - .lg\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .lg\:sepia { + --tw-sepia: sepia(100%); } - .lg\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .lg\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .lg\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .lg\:backdrop-filter-none { + backdrop-filter: none; } - .lg\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .lg\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .lg\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .lg\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .lg\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .lg\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .lg\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .lg\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .lg\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .lg\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .lg\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .lg\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .lg\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .lg\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .lg\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .lg\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .lg\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .lg\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .lg\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .lg\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .lg\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .lg\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .lg\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .lg\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .lg\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .lg\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .lg\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .lg\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .lg\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + .lg\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .lg\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + .lg\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .lg\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + .lg\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .lg\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + .lg\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .lg\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + .lg\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .lg\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .lg\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .lg\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .lg\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .lg\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .lg\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .lg\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .lg\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .lg\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .lg\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .lg\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .lg\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .lg\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .lg\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .lg\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .lg\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .lg\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .lg\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .lg\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .lg\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .lg\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .lg\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .lg\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .lg\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .lg\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .lg\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .lg\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .lg\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .lg\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .lg\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .lg\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .lg\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .lg\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .lg\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .lg\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .lg\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .lg\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .lg\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .lg\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .lg\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .lg\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .lg\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } .lg\:transition-none { @@ -116517,6 +117079,70 @@ video { transition-duration: 150ms; } + .lg\:delay-75 { + transition-delay: 75ms; + } + + .lg\:delay-100 { + transition-delay: 100ms; + } + + .lg\:delay-150 { + transition-delay: 150ms; + } + + .lg\:delay-200 { + transition-delay: 200ms; + } + + .lg\:delay-300 { + transition-delay: 300ms; + } + + .lg\:delay-500 { + transition-delay: 500ms; + } + + .lg\:delay-700 { + transition-delay: 700ms; + } + + .lg\:delay-1000 { + transition-delay: 1000ms; + } + + .lg\:duration-75 { + transition-duration: 75ms; + } + + .lg\:duration-100 { + transition-duration: 100ms; + } + + .lg\:duration-150 { + transition-duration: 150ms; + } + + .lg\:duration-200 { + transition-duration: 200ms; + } + + .lg\:duration-300 { + transition-duration: 300ms; + } + + .lg\:duration-500 { + transition-duration: 500ms; + } + + .lg\:duration-700 { + transition-duration: 700ms; + } + + .lg\:duration-1000 { + transition-duration: 1000ms; + } + .lg\:ease-linear { transition-timing-function: linear; } @@ -116533,22319 +117159,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .lg\:duration-75 { - transition-duration: 75ms; + .lg\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 1280px) { + .xl\:container { + width: 100%; + } + + @media (min-width: 640px) { + .xl\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .xl\:container { + max-width: 768px; + } } - .lg\:duration-100 { - transition-duration: 100ms; + @media (min-width: 1024px) { + .xl\:container { + max-width: 1024px; + } } - .lg\:duration-150 { - transition-duration: 150ms; + @media (min-width: 1280px) { + .xl\:container { + max-width: 1280px; + } } - .lg\:duration-200 { - transition-duration: 200ms; + @media (min-width: 1536px) { + .xl\:container { + max-width: 1536px; + } } - .lg\:duration-300 { - transition-duration: 300ms; + .xl\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .lg\:duration-500 { - transition-duration: 500ms; + .xl\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .lg\:duration-700 { - transition-duration: 700ms; + .xl\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .lg\:duration-1000 { - transition-duration: 1000ms; + .xl\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .lg\:delay-75 { - transition-delay: 75ms; + .xl\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .lg\:delay-100 { - transition-delay: 100ms; + .xl\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .lg\:delay-150 { - transition-delay: 150ms; + .xl\:pointer-events-none { + pointer-events: none; } - .lg\:delay-200 { - transition-delay: 200ms; + .xl\:pointer-events-auto { + pointer-events: auto; } - .lg\:delay-300 { - transition-delay: 300ms; + .xl\:visible { + visibility: visible; } - .lg\:delay-500 { - transition-delay: 500ms; + .xl\:invisible { + visibility: hidden; } - .lg\:delay-700 { - transition-delay: 700ms; + .xl\:static { + position: static; } - .lg\:delay-1000 { - transition-delay: 1000ms; + .xl\:fixed { + position: fixed; } - .lg\:animate-none { - animation: none; + .xl\:absolute { + position: absolute; } - .lg\:animate-spin { - animation: spin 1s linear infinite; + .xl\:relative { + position: relative; } - .lg\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .xl\:sticky { + position: sticky; } - .lg\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .xl\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .lg\:animate-bounce { - animation: bounce 1s infinite; + .xl\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .lg\:mix-blend-normal { - mix-blend-mode: normal; + .xl\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .lg\:mix-blend-multiply { - mix-blend-mode: multiply; + .xl\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .lg\:mix-blend-screen { - mix-blend-mode: screen; + .xl\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .lg\:mix-blend-overlay { - mix-blend-mode: overlay; + .xl\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .lg\:mix-blend-darken { - mix-blend-mode: darken; + .xl\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .lg\:mix-blend-lighten { - mix-blend-mode: lighten; + .xl\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .lg\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .xl\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .lg\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .xl\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .lg\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .xl\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .lg\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .xl\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .lg\:mix-blend-difference { - mix-blend-mode: difference; + .xl\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .lg\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .xl\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .lg\:mix-blend-hue { - mix-blend-mode: hue; + .xl\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .lg\:mix-blend-saturation { - mix-blend-mode: saturation; + .xl\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .lg\:mix-blend-color { - mix-blend-mode: color; + .xl\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .lg\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .xl\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .lg\:bg-blend-normal { - background-blend-mode: normal; + .xl\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .lg\:bg-blend-multiply { - background-blend-mode: multiply; + .xl\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .lg\:bg-blend-screen { - background-blend-mode: screen; + .xl\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .lg\:bg-blend-overlay { - background-blend-mode: overlay; + .xl\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .lg\:bg-blend-darken { - background-blend-mode: darken; + .xl\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .lg\:bg-blend-lighten { - background-blend-mode: lighten; + .xl\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .lg\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .xl\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .lg\:bg-blend-color-burn { - background-blend-mode: color-burn; + .xl\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .lg\:bg-blend-hard-light { - background-blend-mode: hard-light; + .xl\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .lg\:bg-blend-soft-light { - background-blend-mode: soft-light; + .xl\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .lg\:bg-blend-difference { - background-blend-mode: difference; + .xl\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .lg\:bg-blend-exclusion { - background-blend-mode: exclusion; + .xl\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .lg\:bg-blend-hue { - background-blend-mode: hue; + .xl\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .lg\:bg-blend-saturation { - background-blend-mode: saturation; + .xl\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .lg\:bg-blend-color { - background-blend-mode: color; + .xl\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .lg\:bg-blend-luminosity { - background-blend-mode: luminosity; + .xl\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .lg\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .xl\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .lg\:filter-none { - filter: none; + .xl\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .lg\:blur-0 { - --tw-blur: blur(0); + .xl\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .lg\:blur-sm { - --tw-blur: blur(4px); + .xl\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .lg\:blur { - --tw-blur: blur(8px); + .xl\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .lg\:blur-md { - --tw-blur: blur(12px); + .xl\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .lg\:blur-lg { - --tw-blur: blur(16px); + .xl\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .lg\:blur-xl { - --tw-blur: blur(24px); + .xl\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .lg\:blur-2xl { - --tw-blur: blur(40px); + .xl\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .lg\:blur-3xl { - --tw-blur: blur(64px); + .xl\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .lg\:brightness-0 { - --tw-brightness: brightness(0); + .xl\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .lg\:brightness-50 { - --tw-brightness: brightness(.5); + .xl\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .lg\:brightness-75 { - --tw-brightness: brightness(.75); + .xl\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .lg\:brightness-90 { - --tw-brightness: brightness(.9); + .xl\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .lg\:brightness-95 { - --tw-brightness: brightness(.95); + .xl\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .lg\:brightness-100 { - --tw-brightness: brightness(1); + .xl\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .lg\:brightness-105 { - --tw-brightness: brightness(1.05); + .xl\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .lg\:brightness-110 { - --tw-brightness: brightness(1.1); + .xl\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .lg\:brightness-125 { - --tw-brightness: brightness(1.25); + .xl\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .lg\:brightness-150 { - --tw-brightness: brightness(1.5); + .xl\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .lg\:brightness-200 { - --tw-brightness: brightness(2); + .xl\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .lg\:contrast-0 { - --tw-contrast: contrast(0); + .xl\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .lg\:contrast-50 { - --tw-contrast: contrast(.5); + .xl\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .lg\:contrast-75 { - --tw-contrast: contrast(.75); + .xl\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .lg\:contrast-100 { - --tw-contrast: contrast(1); + .xl\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .lg\:contrast-125 { - --tw-contrast: contrast(1.25); + .xl\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .lg\:contrast-150 { - --tw-contrast: contrast(1.5); + .xl\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .lg\:contrast-200 { - --tw-contrast: contrast(2); + .xl\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .lg\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .xl\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .lg\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .xl\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .lg\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .xl\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .lg\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .xl\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .lg\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .xl\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .lg\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .xl\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .lg\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .xl\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .lg\:grayscale-0 { - --tw-grayscale: grayscale(0); + .xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .lg\:grayscale { - --tw-grayscale: grayscale(100%); + .xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .lg\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .lg\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .lg\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .lg\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .lg\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .lg\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .lg\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .lg\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .lg\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .lg\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .lg\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .lg\:invert-0 { - --tw-invert: invert(0); + .xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .lg\:invert { - --tw-invert: invert(100%); + .xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .lg\:saturate-0 { - --tw-saturate: saturate(0); + .xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .lg\:saturate-50 { - --tw-saturate: saturate(.5); + .xl\:inset-y-0 { + top: 0px; + bottom: 0px; } - .lg\:saturate-100 { - --tw-saturate: saturate(1); + .xl\:inset-x-0 { + right: 0px; + left: 0px; } - .lg\:saturate-150 { - --tw-saturate: saturate(1.5); + .xl\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .lg\:saturate-200 { - --tw-saturate: saturate(2); + .xl\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .lg\:sepia-0 { - --tw-sepia: sepia(0); + .xl\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .lg\:sepia { - --tw-sepia: sepia(100%); + .xl\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .lg\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .xl\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .lg\:backdrop-filter-none { - backdrop-filter: none; + .xl\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .lg\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .xl\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .lg\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .xl\:inset-x-4 { + right: 1rem; + left: 1rem; } - .lg\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .xl\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .lg\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .xl\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .lg\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .xl\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .lg\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .xl\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .lg\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .xl\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .lg\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .xl\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .lg\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .xl\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .lg\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .xl\:inset-x-8 { + right: 2rem; + left: 2rem; } - .lg\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .xl\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .lg\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .xl\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .lg\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .xl\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .lg\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .xl\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .lg\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .xl\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .lg\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .xl\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .lg\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .xl\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .lg\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .xl\:inset-x-12 { + right: 3rem; + left: 3rem; } - .lg\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .xl\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .lg\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .xl\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .lg\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .xl\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .lg\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .xl\:inset-x-16 { + right: 4rem; + left: 4rem; } - .lg\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .xl\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .lg\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .xl\:inset-x-20 { + right: 5rem; + left: 5rem; } - .lg\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .xl\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .lg\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .xl\:inset-x-24 { + right: 6rem; + left: 6rem; } - .lg\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .xl\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .lg\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .xl\:inset-x-28 { + right: 7rem; + left: 7rem; } - .lg\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .xl\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .lg\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .xl\:inset-x-32 { + right: 8rem; + left: 8rem; } - .lg\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .xl\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .lg\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .xl\:inset-x-36 { + right: 9rem; + left: 9rem; } - .lg\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .xl\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .lg\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .xl\:inset-x-40 { + right: 10rem; + left: 10rem; } - .lg\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .xl\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .lg\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .xl\:inset-x-44 { + right: 11rem; + left: 11rem; } - .lg\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .xl\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .lg\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .xl\:inset-x-48 { + right: 12rem; + left: 12rem; } - .lg\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .xl\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .lg\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .xl\:inset-x-52 { + right: 13rem; + left: 13rem; } - .lg\:example { - font-weight: 700; - color: #ef4444; + .xl\:inset-y-56 { + top: 14rem; + bottom: 14rem; } -} -@media (min-width: 1280px) { - .xl\:container { - width: 100%; + .xl\:inset-x-56 { + right: 14rem; + left: 14rem; } - @media (min-width: 640px) { - .xl\:container { - max-width: 640px; - } + .xl\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - @media (min-width: 768px) { - .xl\:container { - max-width: 768px; - } + .xl\:inset-x-60 { + right: 15rem; + left: 15rem; } - @media (min-width: 1024px) { - .xl\:container { - max-width: 1024px; - } + .xl\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - @media (min-width: 1280px) { - .xl\:container { - max-width: 1280px; - } + .xl\:inset-x-64 { + right: 16rem; + left: 16rem; } - @media (min-width: 1536px) { - .xl\:container { - max-width: 1536px; - } + .xl\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .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\:inset-x-72 { + right: 18rem; + left: 18rem; } - .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\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .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\:inset-x-80 { + right: 20rem; + left: 20rem; } - .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\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .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\:inset-x-96 { + right: 24rem; + left: 24rem; } - .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\:inset-y-auto { + top: auto; + bottom: auto; } - .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\:inset-x-auto { + right: auto; + left: auto; } - .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\:inset-y-px { + top: 1px; + bottom: 1px; } - .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\:inset-x-px { + right: 1px; + left: 1px; } - .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\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .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\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .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\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .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\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .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\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .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\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .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\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .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\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .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\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .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\:-inset-x-0 { + right: 0px; + left: 0px; } - .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\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .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\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .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\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .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\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .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\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .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\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .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\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .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\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .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\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .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\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } - .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\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - .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\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - .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\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - .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\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - .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\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - .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\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .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\:-inset-x-px { + right: -1px; + left: -1px; } - .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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .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\:inset-y-full { + top: 100%; + bottom: 100%; } - .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\:inset-x-full { + right: 100%; + left: 100%; } - .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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .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\:-inset-x-full { + right: -100%; + left: -100%; } - .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\:top-0 { + top: 0px; } - .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\:right-0 { + right: 0px; } - .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\:bottom-0 { + bottom: 0px; } - .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\:left-0 { + left: 0px; } - .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\:top-1 { + top: 0.25rem; } - .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\:right-1 { + right: 0.25rem; } - .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\:bottom-1 { + bottom: 0.25rem; } - .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\:left-1 { + left: 0.25rem; } - .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\:top-2 { + top: 0.5rem; } - .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\:right-2 { + right: 0.5rem; } - .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\:bottom-2 { + bottom: 0.5rem; } - .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\:left-2 { + left: 0.5rem; } - .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\:top-3 { + top: 0.75rem; } - .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\:right-3 { + right: 0.75rem; } - .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\:bottom-3 { + bottom: 0.75rem; } - .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\:left-3 { + left: 0.75rem; } - .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\:top-4 { + top: 1rem; } - .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\:right-4 { + right: 1rem; } - .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\:bottom-4 { + bottom: 1rem; } - .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\:left-4 { + left: 1rem; } - .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\:top-5 { + top: 1.25rem; } - .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\:right-5 { + right: 1.25rem; } - .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\:bottom-5 { + bottom: 1.25rem; } - .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\:left-5 { + left: 1.25rem; } - .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\:top-6 { + top: 1.5rem; } - .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .xl\:right-6 { + right: 1.5rem; } - .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .xl\:bottom-6 { + bottom: 1.5rem; } - .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\:left-6 { + left: 1.5rem; } - .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\:top-7 { + top: 1.75rem; } - .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\:right-7 { + right: 1.75rem; } - .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\:bottom-7 { + bottom: 1.75rem; } - .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\:left-7 { + left: 1.75rem; } - .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\:top-8 { + top: 2rem; } - .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\:right-8 { + right: 2rem; } - .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\:bottom-8 { + bottom: 2rem; } - .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\:left-8 { + left: 2rem; } - .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\:top-9 { + top: 2.25rem; } - .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .xl\:right-9 { + right: 2.25rem; } - .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .xl\:bottom-9 { + bottom: 2.25rem; } - .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .xl\:left-9 { + left: 2.25rem; } - .xl\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .xl\:top-10 { + top: 2.5rem; } - .xl\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + .xl\:right-10 { + right: 2.5rem; } - .xl\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + .xl\:bottom-10 { + bottom: 2.5rem; } - .xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + .xl\:left-10 { + left: 2.5rem; } - .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + .xl\:top-11 { + top: 2.75rem; } - .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + .xl\:right-11 { + right: 2.75rem; } - .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + .xl\:bottom-11 { + bottom: 2.75rem; } - .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + .xl\:left-11 { + left: 2.75rem; } - .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + .xl\:top-12 { + top: 3rem; } - .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + .xl\:right-12 { + right: 3rem; } - .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + .xl\:bottom-12 { + bottom: 3rem; } - .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + .xl\:left-12 { + left: 3rem; } - .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + .xl\:top-14 { + top: 3.5rem; } - .xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); + .xl\:right-14 { + right: 3.5rem; } - .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); + .xl\:bottom-14 { + bottom: 3.5rem; } - .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); + .xl\:left-14 { + left: 3.5rem; } - .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); + .xl\:top-16 { + top: 4rem; } - .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); + .xl\:right-16 { + right: 4rem; } - .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); + .xl\:bottom-16 { + bottom: 4rem; } - .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); + .xl\:left-16 { + left: 4rem; } - .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); + .xl\:top-20 { + top: 5rem; } - .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); + .xl\:right-20 { + right: 5rem; } - .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); + .xl\:bottom-20 { + bottom: 5rem; } - .xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); + .xl\:left-20 { + left: 5rem; } - .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); + .xl\:top-24 { + top: 6rem; } - .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); + .xl\:right-24 { + right: 6rem; } - .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); + .xl\:bottom-24 { + bottom: 6rem; } - .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); + .xl\:left-24 { + left: 6rem; } - .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + .xl\:top-28 { + top: 7rem; } - .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); + .xl\:right-28 { + right: 7rem; } - .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); + .xl\:bottom-28 { + bottom: 7rem; } - .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); + .xl\:left-28 { + left: 7rem; } - .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); + .xl\:top-32 { + top: 8rem; } - .xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); + .xl\:right-32 { + right: 8rem; } - .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); + .xl\:bottom-32 { + bottom: 8rem; } - .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); + .xl\:left-32 { + left: 8rem; } - .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); + .xl\:top-36 { + top: 9rem; } - .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); + .xl\:right-36 { + right: 9rem; } - .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); + .xl\:bottom-36 { + bottom: 9rem; } - .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); + .xl\:left-36 { + left: 9rem; } - .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); + .xl\:top-40 { + top: 10rem; } - .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); + .xl\:right-40 { + right: 10rem; } - .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); + .xl\:bottom-40 { + bottom: 10rem; } - .xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); + .xl\:left-40 { + left: 10rem; } - .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); + .xl\:top-44 { + top: 11rem; } - .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); + .xl\:right-44 { + right: 11rem; } - .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); + .xl\:bottom-44 { + bottom: 11rem; } - .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); + .xl\:left-44 { + left: 11rem; } - .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + .xl\:top-48 { + top: 12rem; } - .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); + .xl\:right-48 { + right: 12rem; } - .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); + .xl\:bottom-48 { + bottom: 12rem; } - .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); + .xl\:left-48 { + left: 12rem; } - .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); + .xl\:top-52 { + top: 13rem; } - .xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); + .xl\:right-52 { + right: 13rem; } - .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); + .xl\:bottom-52 { + bottom: 13rem; } - .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); + .xl\:left-52 { + left: 13rem; } - .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); + .xl\:top-56 { + top: 14rem; } - .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); + .xl\:right-56 { + right: 14rem; } - .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); + .xl\:bottom-56 { + bottom: 14rem; } - .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); + .xl\:left-56 { + left: 14rem; } - .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); + .xl\:top-60 { + top: 15rem; } - .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); + .xl\:right-60 { + right: 15rem; } - .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); + .xl\:bottom-60 { + bottom: 15rem; } - .xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); + .xl\:left-60 { + left: 15rem; } - .xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); + .xl\:top-64 { + top: 16rem; } - .xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); + .xl\:right-64 { + right: 16rem; } - .xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); + .xl\:bottom-64 { + bottom: 16rem; } - .xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); + .xl\:left-64 { + left: 16rem; } - .xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); + .xl\:top-72 { + top: 18rem; } - .xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); + .xl\:right-72 { + right: 18rem; } - .xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); + .xl\:bottom-72 { + bottom: 18rem; } - .xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); + .xl\:left-72 { + left: 18rem; } - .xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); + .xl\:top-80 { + top: 20rem; } - .xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); + .xl\:right-80 { + right: 20rem; } - .xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); + .xl\:bottom-80 { + bottom: 20rem; } - .xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); + .xl\:left-80 { + left: 20rem; } - .xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); + .xl\:top-96 { + top: 24rem; } - .xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); + .xl\:right-96 { + right: 24rem; } - .xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); + .xl\:bottom-96 { + bottom: 24rem; } - .xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); + .xl\:left-96 { + left: 24rem; } - .xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); + .xl\:top-auto { + top: auto; } - .xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); + .xl\:right-auto { + right: auto; } - .xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); + .xl\:bottom-auto { + bottom: auto; } - .xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .xl\:left-auto { + left: auto; } - .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .xl\:top-px { + top: 1px; } - .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .xl\:right-px { + right: 1px; } - .xl\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .xl\:bottom-px { + bottom: 1px; } - .xl\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .xl\:left-px { + left: 1px; } - .xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; + .xl\:top-0\.5 { + top: 0.125rem; } - .xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; + .xl\:right-0\.5 { + right: 0.125rem; } - .xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; + .xl\:bottom-0\.5 { + bottom: 0.125rem; } - .xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; + .xl\:left-0\.5 { + left: 0.125rem; } - .xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; + .xl\:top-1\.5 { + top: 0.375rem; } - .xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; + .xl\:right-1\.5 { + right: 0.375rem; } - .xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; + .xl\:bottom-1\.5 { + bottom: 0.375rem; } - .xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; + .xl\:left-1\.5 { + left: 0.375rem; } - .xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; + .xl\:top-2\.5 { + top: 0.625rem; } - .xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; + .xl\:right-2\.5 { + right: 0.625rem; } - .xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; + .xl\:bottom-2\.5 { + bottom: 0.625rem; } - .xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; + .xl\:left-2\.5 { + left: 0.625rem; } - .xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; + .xl\:top-3\.5 { + top: 0.875rem; } - .xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; + .xl\:right-3\.5 { + right: 0.875rem; } - .xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; + .xl\:bottom-3\.5 { + bottom: 0.875rem; } - .xl\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .xl\:left-3\.5 { + left: 0.875rem; } - .xl\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .xl\:-top-0 { + top: 0px; } - .xl\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .xl\:-right-0 { + right: 0px; } - .xl\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .xl\:-bottom-0 { + bottom: 0px; } - .xl\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .xl\:-left-0 { + left: 0px; } - .xl\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .xl\:-top-1 { + top: -0.25rem; } - .xl\:appearance-none { - appearance: none; + .xl\:-right-1 { + right: -0.25rem; } - .xl\:bg-fixed { - background-attachment: fixed; + .xl\:-bottom-1 { + bottom: -0.25rem; } - .xl\:bg-local { - background-attachment: local; + .xl\:-left-1 { + left: -0.25rem; } - .xl\:bg-scroll { - background-attachment: scroll; + .xl\:-top-2 { + top: -0.5rem; } - .xl\:bg-clip-border { - background-clip: border-box; + .xl\:-right-2 { + right: -0.5rem; } - .xl\:bg-clip-padding { - background-clip: padding-box; + .xl\:-bottom-2 { + bottom: -0.5rem; } - .xl\:bg-clip-content { - background-clip: content-box; + .xl\:-left-2 { + left: -0.5rem; } - .xl\:bg-clip-text { - background-clip: text; + .xl\:-top-3 { + top: -0.75rem; } - .xl\:bg-transparent { - background-color: transparent; + .xl\:-right-3 { + right: -0.75rem; } - .xl\:bg-current { - background-color: currentColor; + .xl\:-bottom-3 { + bottom: -0.75rem; } - .xl\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .xl\:-left-3 { + left: -0.75rem; } - .xl\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .xl\:-top-4 { + top: -1rem; } - .xl\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .xl\:-right-4 { + right: -1rem; } - .xl\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .xl\:-bottom-4 { + bottom: -1rem; } - .xl\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .xl\:-left-4 { + left: -1rem; } - .xl\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .xl\:-top-5 { + top: -1.25rem; } - .xl\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .xl\:-right-5 { + right: -1.25rem; } - .xl\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .xl\:-bottom-5 { + bottom: -1.25rem; } - .xl\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .xl\:-left-5 { + left: -1.25rem; } - .xl\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .xl\:-top-6 { + top: -1.5rem; } - .xl\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .xl\:-right-6 { + right: -1.5rem; } - .xl\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .xl\:-bottom-6 { + bottom: -1.5rem; } - .xl\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .xl\:-left-6 { + left: -1.5rem; } - .xl\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .xl\:-top-7 { + top: -1.75rem; } - .xl\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .xl\:-right-7 { + right: -1.75rem; } - .xl\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .xl\:-bottom-7 { + bottom: -1.75rem; } - .xl\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .xl\:-left-7 { + left: -1.75rem; } - .xl\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .xl\:-top-8 { + top: -2rem; } - .xl\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .xl\:-right-8 { + right: -2rem; } - .xl\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .xl\:-bottom-8 { + bottom: -2rem; } - .xl\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .xl\:-left-8 { + left: -2rem; } - .xl\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .xl\:-top-9 { + top: -2.25rem; } - .xl\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .xl\:-right-9 { + right: -2.25rem; } - .xl\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .xl\:-bottom-9 { + bottom: -2.25rem; } - .xl\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .xl\:-left-9 { + left: -2.25rem; } - .xl\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .xl\:-top-10 { + top: -2.5rem; } - .xl\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .xl\:-right-10 { + right: -2.5rem; } - .xl\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .xl\:-bottom-10 { + bottom: -2.5rem; } - .xl\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .xl\:-left-10 { + left: -2.5rem; } - .xl\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .xl\:-top-11 { + top: -2.75rem; } - .xl\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .xl\:-right-11 { + right: -2.75rem; } - .xl\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .xl\:-bottom-11 { + bottom: -2.75rem; } - .xl\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .xl\:-left-11 { + left: -2.75rem; } - .xl\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .xl\:-top-12 { + top: -3rem; } - .xl\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .xl\:-right-12 { + right: -3rem; } - .xl\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .xl\:-bottom-12 { + bottom: -3rem; } - .xl\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .xl\:-left-12 { + left: -3rem; } - .xl\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .xl\:-top-14 { + top: -3.5rem; } - .xl\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .xl\:-right-14 { + right: -3.5rem; } - .xl\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .xl\:-bottom-14 { + bottom: -3.5rem; } - .xl\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .xl\:-left-14 { + left: -3.5rem; } - .xl\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .xl\:-top-16 { + top: -4rem; } - .xl\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .xl\:-right-16 { + right: -4rem; } - .xl\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .xl\:-bottom-16 { + bottom: -4rem; } - .xl\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .xl\:-left-16 { + left: -4rem; } - .xl\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .xl\:-top-20 { + top: -5rem; } - .xl\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .xl\:-right-20 { + right: -5rem; } - .xl\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .xl\:-bottom-20 { + bottom: -5rem; } - .xl\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .xl\:-left-20 { + left: -5rem; } - .xl\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .xl\:-top-24 { + top: -6rem; } - .xl\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .xl\:-right-24 { + right: -6rem; } - .xl\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .xl\:-bottom-24 { + bottom: -6rem; } - .xl\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .xl\:-left-24 { + left: -6rem; } - .xl\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .xl\:-top-28 { + top: -7rem; } - .xl\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .xl\:-right-28 { + right: -7rem; } - .xl\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .xl\:-bottom-28 { + bottom: -7rem; } - .xl\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .xl\:-left-28 { + left: -7rem; } - .xl\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .xl\:-top-32 { + top: -8rem; } - .xl\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .xl\:-right-32 { + right: -8rem; } - .xl\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .xl\:-bottom-32 { + bottom: -8rem; } - .xl\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .xl\:-left-32 { + left: -8rem; } - .xl\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .xl\:-top-36 { + top: -9rem; } - .xl\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .xl\:-right-36 { + right: -9rem; } - .xl\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .xl\:-bottom-36 { + bottom: -9rem; } - .xl\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .xl\:-left-36 { + left: -9rem; } - .xl\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .xl\:-top-40 { + top: -10rem; } - .xl\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .xl\:-right-40 { + right: -10rem; } - .xl\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .xl\:-bottom-40 { + bottom: -10rem; } - .xl\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .xl\:-left-40 { + left: -10rem; } - .xl\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .xl\:-top-44 { + top: -11rem; } - .xl\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .xl\:-right-44 { + right: -11rem; } - .xl\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .xl\:-bottom-44 { + bottom: -11rem; } - .xl\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .xl\:-left-44 { + left: -11rem; } - .xl\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .xl\:-top-48 { + top: -12rem; } - .xl\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .xl\:-right-48 { + right: -12rem; } - .xl\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .xl\:-bottom-48 { + bottom: -12rem; } - .xl\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .xl\:-left-48 { + left: -12rem; } - .xl\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .xl\:-top-52 { + top: -13rem; } - .xl\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .xl\:-right-52 { + right: -13rem; } - .xl\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .xl\:-bottom-52 { + bottom: -13rem; + } + + .xl\:-left-52 { + left: -13rem; } - .xl\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .xl\:-top-56 { + top: -14rem; } - .xl\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .xl\:-right-56 { + right: -14rem; } - .group:hover .xl\:group-hover\:bg-transparent { - background-color: transparent; + .xl\:-bottom-56 { + bottom: -14rem; } - .group:hover .xl\:group-hover\:bg-current { - background-color: currentColor; + .xl\:-left-56 { + left: -14rem; } - .group:hover .xl\:group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .xl\:-top-60 { + top: -15rem; } - .group:hover .xl\:group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .xl\:-right-60 { + right: -15rem; } - .group:hover .xl\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .xl\:-bottom-60 { + bottom: -15rem; } - .group:hover .xl\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .xl\:-left-60 { + left: -15rem; } - .group:hover .xl\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .xl\:-top-64 { + top: -16rem; } - .group:hover .xl\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .xl\:-right-64 { + right: -16rem; } - .group:hover .xl\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .xl\:-bottom-64 { + bottom: -16rem; } - .group:hover .xl\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .xl\:-left-64 { + left: -16rem; } - .group:hover .xl\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .xl\:-top-72 { + top: -18rem; } - .group:hover .xl\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .xl\:-right-72 { + right: -18rem; } - .group:hover .xl\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .xl\:-bottom-72 { + bottom: -18rem; } - .group:hover .xl\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .xl\:-left-72 { + left: -18rem; } - .group:hover .xl\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .xl\:-top-80 { + top: -20rem; } - .group:hover .xl\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .xl\:-right-80 { + right: -20rem; } - .group:hover .xl\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .xl\:-bottom-80 { + bottom: -20rem; } - .group:hover .xl\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .xl\:-left-80 { + left: -20rem; } - .group:hover .xl\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .xl\:-top-96 { + top: -24rem; } - .group:hover .xl\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .xl\:-right-96 { + right: -24rem; } - .group:hover .xl\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .xl\:-bottom-96 { + bottom: -24rem; } - .group:hover .xl\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .xl\:-left-96 { + left: -24rem; } - .group:hover .xl\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .xl\:-top-px { + top: -1px; } - .group:hover .xl\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .xl\:-right-px { + right: -1px; } - .group:hover .xl\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .xl\:-bottom-px { + bottom: -1px; } - .group:hover .xl\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .xl\:-left-px { + left: -1px; } - .group:hover .xl\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .xl\:-top-0\.5 { + top: -0.125rem; } - .group:hover .xl\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .xl\:-right-0\.5 { + right: -0.125rem; } - .group:hover .xl\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .xl\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .xl\:-left-0\.5 { + left: -0.125rem; } - .group:hover .xl\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .xl\:-top-1\.5 { + top: -0.375rem; } - .group:hover .xl\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .xl\:-right-1\.5 { + right: -0.375rem; } - .group:hover .xl\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .xl\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .xl\:-left-1\.5 { + left: -0.375rem; } - .group:hover .xl\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .xl\:-top-2\.5 { + top: -0.625rem; } - .group:hover .xl\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .xl\:-right-2\.5 { + right: -0.625rem; } - .group:hover .xl\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .xl\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .xl\:-left-2\.5 { + left: -0.625rem; } - .group:hover .xl\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .xl\:-top-3\.5 { + top: -0.875rem; } - .group:hover .xl\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .xl\:-right-3\.5 { + right: -0.875rem; } - .group:hover .xl\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .xl\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .xl\:-left-3\.5 { + left: -0.875rem; } - .group:hover .xl\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .xl\:top-1\/2 { + top: 50%; } - .group:hover .xl\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .xl\:right-1\/2 { + right: 50%; } - .group:hover .xl\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .xl\:bottom-1\/2 { + bottom: 50%; } - .group:hover .xl\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .xl\:left-1\/2 { + left: 50%; } - .group:hover .xl\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .xl\:top-1\/3 { + top: 33.333333%; } - .group:hover .xl\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .xl\:right-1\/3 { + right: 33.333333%; } - .group:hover .xl\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .xl\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .xl\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .xl\:left-1\/3 { + left: 33.333333%; } - .group:hover .xl\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .xl\:top-2\/3 { + top: 66.666667%; } - .group:hover .xl\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .xl\:right-2\/3 { + right: 66.666667%; } - .group:hover .xl\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .xl\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .xl\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .xl\:left-2\/3 { + left: 66.666667%; } - .group:hover .xl\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .xl\:top-1\/4 { + top: 25%; } - .group:hover .xl\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .xl\:right-1\/4 { + right: 25%; } - .group:hover .xl\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .xl\:bottom-1\/4 { + bottom: 25%; } - .group:hover .xl\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .xl\:left-1\/4 { + left: 25%; } - .group:hover .xl\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .xl\:top-2\/4 { + top: 50%; } - .group:hover .xl\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .xl\:right-2\/4 { + right: 50%; } - .group:hover .xl\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .xl\:bottom-2\/4 { + bottom: 50%; } - .group:hover .xl\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .xl\:left-2\/4 { + left: 50%; } - .group:hover .xl\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .xl\:top-3\/4 { + top: 75%; } - .group:hover .xl\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .xl\:right-3\/4 { + right: 75%; } - .group:hover .xl\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .xl\:bottom-3\/4 { + bottom: 75%; } - .group:hover .xl\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .xl\:left-3\/4 { + left: 75%; } - .group:hover .xl\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .xl\:top-full { + top: 100%; } - .group:hover .xl\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .xl\:right-full { + right: 100%; } - .group:hover .xl\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .xl\:bottom-full { + bottom: 100%; } - .group:hover .xl\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .xl\:left-full { + left: 100%; } - .group:hover .xl\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .xl\:-top-1\/2 { + top: -50%; } - .group:hover .xl\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .xl\:-right-1\/2 { + right: -50%; } - .group:hover .xl\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .xl\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .xl\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .xl\:-left-1\/2 { + left: -50%; } - .group:hover .xl\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .xl\:-top-1\/3 { + top: -33.333333%; } - .group:hover .xl\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .xl\:-right-1\/3 { + right: -33.333333%; } - .group:hover .xl\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .xl\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .xl\:-left-1\/3 { + left: -33.333333%; } - .group:hover .xl\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .xl\:-top-2\/3 { + top: -66.666667%; } - .group:hover .xl\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .xl\:-right-2\/3 { + right: -66.666667%; } - .group:hover .xl\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .xl\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .xl\:-left-2\/3 { + left: -66.666667%; } - .group:hover .xl\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .xl\:-top-1\/4 { + top: -25%; } - .group:hover .xl\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .xl\:-right-1\/4 { + right: -25%; } - .xl\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .xl\:-bottom-1\/4 { + bottom: -25%; } - .xl\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .xl\:-left-1\/4 { + left: -25%; } - .xl\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .xl\:-top-2\/4 { + top: -50%; } - .xl\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .xl\:-right-2\/4 { + right: -50%; } - .xl\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .xl\:-bottom-2\/4 { + bottom: -50%; } - .xl\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .xl\:-left-2\/4 { + left: -50%; } - .xl\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .xl\:-top-3\/4 { + top: -75%; } - .xl\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .xl\:-right-3\/4 { + right: -75%; } - .xl\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .xl\:-bottom-3\/4 { + bottom: -75%; } - .xl\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .xl\:-left-3\/4 { + left: -75%; } - .xl\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .xl\:-top-full { + top: -100%; } - .xl\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .xl\:-right-full { + right: -100%; } - .xl\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .xl\:-bottom-full { + bottom: -100%; } - .xl\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .xl\:-left-full { + left: -100%; } - .xl\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .xl\:isolate { + isolation: isolate; } - .xl\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .xl\:isolation-auto { + isolation: auto; } - .xl\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .xl\:z-0 { + z-index: 0; } - .xl\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .xl\:z-10 { + z-index: 10; } - .xl\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .xl\:z-20 { + z-index: 20; } - .xl\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .xl\:z-30 { + z-index: 30; } - .xl\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .xl\:z-40 { + z-index: 40; } - .xl\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .xl\:z-50 { + z-index: 50; } - .xl\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .xl\:z-auto { + z-index: auto; } - .xl\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .xl\:focus-within\:z-0:focus-within { + z-index: 0; } - .xl\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .xl\:focus-within\:z-10:focus-within { + z-index: 10; } - .xl\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .xl\:focus-within\:z-20:focus-within { + z-index: 20; } - .xl\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .xl\:focus-within\:z-30:focus-within { + z-index: 30; } - .xl\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .xl\:focus-within\:z-40:focus-within { + z-index: 40; } - .xl\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .xl\:focus-within\:z-50:focus-within { + z-index: 50; } - .xl\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .xl\:focus-within\:z-auto:focus-within { + z-index: auto; } - .xl\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .xl\:focus\:z-0:focus { + z-index: 0; } - .xl\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .xl\:focus\:z-10:focus { + z-index: 10; } - .xl\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .xl\:focus\:z-20:focus { + z-index: 20; } - .xl\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .xl\:focus\:z-30:focus { + z-index: 30; } - .xl\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .xl\:focus\:z-40:focus { + z-index: 40; } - .xl\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .xl\:focus\:z-50:focus { + z-index: 50; } - .xl\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .xl\:focus\:z-auto:focus { + z-index: auto; } - .xl\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .xl\:order-1 { + order: 1; } - .xl\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .xl\:order-2 { + order: 2; } - .xl\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .xl\:order-3 { + order: 3; } - .xl\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .xl\:order-4 { + order: 4; } - .xl\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .xl\:order-5 { + order: 5; } - .xl\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .xl\:order-6 { + order: 6; } - .xl\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .xl\:order-7 { + order: 7; } - .xl\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .xl\:order-8 { + order: 8; } - .xl\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .xl\:order-9 { + order: 9; } - .xl\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .xl\:order-10 { + order: 10; } - .xl\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .xl\:order-11 { + order: 11; } - .xl\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .xl\:order-12 { + order: 12; } - .xl\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .xl\:order-first { + order: -9999; } - .xl\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .xl\:order-last { + order: 9999; } - .xl\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .xl\:order-none { + order: 0; } - .xl\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .xl\:col-auto { + grid-column: auto; } - .xl\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .xl\:col-span-1 { + grid-column: span 1 / span 1; } - .xl\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .xl\:col-span-2 { + grid-column: span 2 / span 2; } - .xl\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .xl\:col-span-3 { + grid-column: span 3 / span 3; } - .xl\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .xl\:col-span-4 { + grid-column: span 4 / span 4; } - .xl\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .xl\:col-span-5 { + grid-column: span 5 / span 5; } - .xl\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .xl\:col-span-6 { + grid-column: span 6 / span 6; } - .xl\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .xl\:col-span-7 { + grid-column: span 7 / span 7; } - .xl\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .xl\:col-span-8 { + grid-column: span 8 / span 8; } - .xl\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .xl\:col-span-9 { + grid-column: span 9 / span 9; } - .xl\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .xl\:col-span-10 { + grid-column: span 10 / span 10; } - .xl\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .xl\:col-span-11 { + grid-column: span 11 / span 11; } - .xl\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .xl\:col-span-12 { + grid-column: span 12 / span 12; } - .xl\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .xl\:col-span-full { + grid-column: 1 / -1; } - .xl\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .xl\:col-start-1 { + grid-column-start: 1; } - .xl\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .xl\:col-start-2 { + grid-column-start: 2; } - .xl\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .xl\:col-start-3 { + grid-column-start: 3; } - .xl\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .xl\:col-start-4 { + grid-column-start: 4; } - .xl\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .xl\:col-start-5 { + grid-column-start: 5; } - .xl\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .xl\:col-start-6 { + grid-column-start: 6; } - .xl\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .xl\:col-start-7 { + grid-column-start: 7; } - .xl\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .xl\:col-start-8 { + grid-column-start: 8; } - .xl\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .xl\:col-start-9 { + grid-column-start: 9; } - .xl\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .xl\:col-start-10 { + grid-column-start: 10; } - .xl\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .xl\:col-start-11 { + grid-column-start: 11; } - .xl\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .xl\:col-start-12 { + grid-column-start: 12; } - .xl\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .xl\:col-start-13 { + grid-column-start: 13; } - .xl\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .xl\:col-start-auto { + grid-column-start: auto; } - .xl\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .xl\:col-end-1 { + grid-column-end: 1; } - .xl\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .xl\:col-end-2 { + grid-column-end: 2; } - .xl\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .xl\:col-end-3 { + grid-column-end: 3; } - .xl\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .xl\:col-end-4 { + grid-column-end: 4; } - .xl\:hover\:bg-transparent:hover { - background-color: transparent; + .xl\:col-end-5 { + grid-column-end: 5; } - .xl\:hover\:bg-current:hover { - background-color: currentColor; + .xl\:col-end-6 { + grid-column-end: 6; } - .xl\:hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .xl\:col-end-7 { + grid-column-end: 7; } - .xl\:hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .xl\:col-end-8 { + grid-column-end: 8; } - .xl\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .xl\:col-end-9 { + grid-column-end: 9; } - .xl\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .xl\:col-end-10 { + grid-column-end: 10; } - .xl\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .xl\:col-end-11 { + grid-column-end: 11; } - .xl\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .xl\:col-end-12 { + grid-column-end: 12; } - .xl\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .xl\:col-end-13 { + grid-column-end: 13; } - .xl\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .xl\:col-end-auto { + grid-column-end: auto; } - .xl\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .xl\:row-auto { + grid-row: auto; } - .xl\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .xl\:row-span-1 { + grid-row: span 1 / span 1; } - .xl\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .xl\:row-span-2 { + grid-row: span 2 / span 2; } - .xl\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .xl\:row-span-3 { + grid-row: span 3 / span 3; } - .xl\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .xl\:row-span-4 { + grid-row: span 4 / span 4; } - .xl\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .xl\:row-span-5 { + grid-row: span 5 / span 5; } - .xl\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .xl\:row-span-6 { + grid-row: span 6 / span 6; } - .xl\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .xl\:row-span-full { + grid-row: 1 / -1; } - .xl\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .xl\:row-start-1 { + grid-row-start: 1; } - .xl\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .xl\:row-start-2 { + grid-row-start: 2; } - .xl\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .xl\:row-start-3 { + grid-row-start: 3; } - .xl\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .xl\:row-start-4 { + grid-row-start: 4; } - .xl\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .xl\:row-start-5 { + grid-row-start: 5; } - .xl\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .xl\:row-start-6 { + grid-row-start: 6; } - .xl\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .xl\:row-start-7 { + grid-row-start: 7; } - .xl\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .xl\:row-start-auto { + grid-row-start: auto; } - .xl\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .xl\:row-end-1 { + grid-row-end: 1; } - .xl\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .xl\:row-end-2 { + grid-row-end: 2; } - .xl\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .xl\:row-end-3 { + grid-row-end: 3; } - .xl\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .xl\:row-end-4 { + grid-row-end: 4; } - .xl\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .xl\:row-end-5 { + grid-row-end: 5; } - .xl\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .xl\:row-end-6 { + grid-row-end: 6; } - .xl\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .xl\:row-end-7 { + grid-row-end: 7; } - .xl\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .xl\:row-end-auto { + grid-row-end: auto; } - .xl\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .xl\:float-right { + float: right; } - .xl\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .xl\:float-left { + float: left; } - .xl\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .xl\:float-none { + float: none; } - .xl\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .xl\:clear-left { + clear: left; } - .xl\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .xl\:clear-right { + clear: right; } - .xl\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .xl\:clear-both { + clear: both; } - .xl\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .xl\:clear-none { + clear: none; } - .xl\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .xl\:m-0 { + margin: 0px; } - .xl\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .xl\:m-1 { + margin: 0.25rem; } - .xl\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .xl\:m-2 { + margin: 0.5rem; } - .xl\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .xl\:m-3 { + margin: 0.75rem; } - .xl\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .xl\:m-4 { + margin: 1rem; } - .xl\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .xl\:m-5 { + margin: 1.25rem; } - .xl\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .xl\:m-6 { + margin: 1.5rem; } - .xl\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .xl\:m-7 { + margin: 1.75rem; } - .xl\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .xl\:m-8 { + margin: 2rem; } - .xl\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .xl\:m-9 { + margin: 2.25rem; } - .xl\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .xl\:m-10 { + margin: 2.5rem; } - .xl\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .xl\:m-11 { + margin: 2.75rem; } - .xl\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .xl\:m-12 { + margin: 3rem; } - .xl\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .xl\:m-14 { + margin: 3.5rem; } - .xl\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .xl\:m-16 { + margin: 4rem; } - .xl\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .xl\:m-20 { + margin: 5rem; } - .xl\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .xl\:m-24 { + margin: 6rem; } - .xl\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .xl\:m-28 { + margin: 7rem; } - .xl\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .xl\:m-32 { + margin: 8rem; } - .xl\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .xl\:m-36 { + margin: 9rem; } - .xl\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .xl\:m-40 { + margin: 10rem; } - .xl\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .xl\:m-44 { + margin: 11rem; } - .xl\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .xl\:m-48 { + margin: 12rem; } - .xl\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .xl\:m-52 { + margin: 13rem; } - .xl\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .xl\:m-56 { + margin: 14rem; } - .xl\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .xl\:m-60 { + margin: 15rem; } - .xl\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .xl\:m-64 { + margin: 16rem; } - .xl\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .xl\:m-72 { + margin: 18rem; } - .xl\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .xl\:m-80 { + margin: 20rem; } - .xl\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .xl\:m-96 { + margin: 24rem; } - .xl\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .xl\:m-auto { + margin: auto; } - .xl\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .xl\:m-px { + margin: 1px; } - .xl\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .xl\:m-0\.5 { + margin: 0.125rem; } - .xl\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .xl\:m-1\.5 { + margin: 0.375rem; } - .xl\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .xl\:m-2\.5 { + margin: 0.625rem; } - .xl\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .xl\:m-3\.5 { + margin: 0.875rem; } - .xl\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .xl\:-m-0 { + margin: 0px; } - .xl\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .xl\:-m-1 { + margin: -0.25rem; } - .xl\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .xl\:-m-2 { + margin: -0.5rem; } - .xl\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .xl\:-m-3 { + margin: -0.75rem; } - .xl\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .xl\:-m-4 { + margin: -1rem; } - .xl\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .xl\:-m-5 { + margin: -1.25rem; } - .xl\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .xl\:-m-6 { + margin: -1.5rem; } - .xl\:focus\:bg-transparent:focus { - background-color: transparent; + .xl\:-m-7 { + margin: -1.75rem; } - .xl\:focus\:bg-current:focus { - background-color: currentColor; + .xl\:-m-8 { + margin: -2rem; } - .xl\:focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .xl\:-m-9 { + margin: -2.25rem; } - .xl\:focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .xl\:-m-10 { + margin: -2.5rem; } - .xl\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .xl\:-m-11 { + margin: -2.75rem; } - .xl\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .xl\:-m-12 { + margin: -3rem; } - .xl\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .xl\:-m-14 { + margin: -3.5rem; } - .xl\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .xl\:-m-16 { + margin: -4rem; } - .xl\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .xl\:-m-20 { + margin: -5rem; } - .xl\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .xl\:-m-24 { + margin: -6rem; } - .xl\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .xl\:-m-28 { + margin: -7rem; } - .xl\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .xl\:-m-32 { + margin: -8rem; } - .xl\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .xl\:-m-36 { + margin: -9rem; } - .xl\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .xl\:-m-40 { + margin: -10rem; } - .xl\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .xl\:-m-44 { + margin: -11rem; } - .xl\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .xl\:-m-48 { + margin: -12rem; } - .xl\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .xl\:-m-52 { + margin: -13rem; } - .xl\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .xl\:-m-56 { + margin: -14rem; } - .xl\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .xl\:-m-60 { + margin: -15rem; } - .xl\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .xl\:-m-64 { + margin: -16rem; } - .xl\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .xl\:-m-72 { + margin: -18rem; } - .xl\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .xl\:-m-80 { + margin: -20rem; } - .xl\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .xl\:-m-96 { + margin: -24rem; } - .xl\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .xl\:-m-px { + margin: -1px; } - .xl\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .xl\:-m-0\.5 { + margin: -0.125rem; } - .xl\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .xl\:-m-1\.5 { + margin: -0.375rem; } - .xl\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .xl\:-m-2\.5 { + margin: -0.625rem; } - .xl\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .xl\:-m-3\.5 { + margin: -0.875rem; } - .xl\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .xl\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .xl\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .xl\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .xl\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .xl\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .xl\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .xl\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .xl\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .xl\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .xl\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .xl\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .xl\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .xl\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .xl\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .xl\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .xl\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .xl\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .xl\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .xl\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .xl\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .xl\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .xl\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .xl\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .xl\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .xl\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .xl\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .xl\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .xl\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .xl\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .xl\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .xl\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .xl\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .xl\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .xl\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .xl\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .xl\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .xl\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .xl\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .xl\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .xl\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .xl\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .xl\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .xl\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .xl\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .xl\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .xl\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .xl\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .xl\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .xl\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .xl\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .xl\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .xl\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .xl\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .xl\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .xl\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .xl\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .xl\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .xl\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .xl\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .xl\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .xl\:mx-auto { + margin-left: auto; + margin-right: auto; } - .xl\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .xl\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .xl\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .xl\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .xl\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .xl\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .xl\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .xl\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .xl\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .xl\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .xl\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .xl\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .xl\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .xl\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .xl\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .xl\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .xl\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .xl\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .xl\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .xl\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .xl\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .xl\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .xl\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .xl\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .xl\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .xl\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .xl\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .xl\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .xl\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .xl\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .xl\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .xl\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .xl\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .xl\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .xl\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .xl\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .xl\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .xl\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .xl\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .xl\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .xl\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .xl\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .xl\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .xl\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .xl\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .xl\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .xl\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .xl\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .xl\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .xl\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .xl\:bg-none { - background-image: none; + .xl\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .xl\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .xl\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .xl\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .xl\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .xl\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .xl\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .xl\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .xl\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .xl\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .xl\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .xl\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .xl\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .xl\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .xl\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .xl\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .xl\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .xl\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .xl\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .xl\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .xl\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .xl\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .xl\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .xl\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .xl\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .xl\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .xl\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .xl\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .xl\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .xl\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .xl\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .xl\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .xl\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .xl\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .xl\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .xl\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .xl\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .xl\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .xl\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .xl\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .xl\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .xl\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .xl\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .xl\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .xl\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .xl\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .xl\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .xl\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .xl\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .xl\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .xl\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .xl\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .xl\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .xl\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .xl\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .xl\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .xl\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .xl\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .xl\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .xl\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .xl\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .xl\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .xl\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .xl\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .xl\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .xl\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .xl\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .xl\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .xl\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .xl\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .xl\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .xl\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .xl\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .xl\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .xl\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .xl\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .xl\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .xl\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .xl\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .xl\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .xl\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .xl\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .xl\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .xl\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .xl\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .xl\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .xl\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .xl\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .xl\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .xl\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .xl\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .xl\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .xl\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .xl\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .xl\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:mt-0 { + margin-top: 0px; } - .xl\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:mt-1 { + margin-top: 0.25rem; } - .xl\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:mt-2 { + margin-top: 0.5rem; } - .xl\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:mt-3 { + margin-top: 0.75rem; } - .xl\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:mt-4 { + margin-top: 1rem; } - .xl\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:mt-5 { + margin-top: 1.25rem; } - .xl\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:mt-6 { + margin-top: 1.5rem; } - .xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:mt-7 { + margin-top: 1.75rem; } - .xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:mt-8 { + margin-top: 2rem; } - .xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:mt-9 { + margin-top: 2.25rem; } - .xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:mt-10 { + margin-top: 2.5rem; } - .xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:mt-11 { + margin-top: 2.75rem; } - .xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:mt-12 { + margin-top: 3rem; } - .xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:mt-14 { + margin-top: 3.5rem; } - .xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:mt-16 { + margin-top: 4rem; } - .xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:mt-20 { + margin-top: 5rem; } - .xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:mt-24 { + margin-top: 6rem; } - .xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:mt-28 { + margin-top: 7rem; } - .xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:mt-32 { + margin-top: 8rem; } - .xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:mt-36 { + margin-top: 9rem; } - .xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:mt-40 { + margin-top: 10rem; } - .xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:mt-44 { + margin-top: 11rem; } - .xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:mt-48 { + margin-top: 12rem; } - .xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:mt-52 { + margin-top: 13rem; } - .xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:mt-56 { + margin-top: 14rem; } - .xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:mt-60 { + margin-top: 15rem; } - .xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:mt-64 { + margin-top: 16rem; } - .xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:mt-72 { + margin-top: 18rem; } - .xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:mt-80 { + margin-top: 20rem; } - .xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:mt-96 { + margin-top: 24rem; } - .xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:mt-auto { + margin-top: auto; } - .xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:mt-px { + margin-top: 1px; } - .xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:mt-0\.5 { + margin-top: 0.125rem; } - .xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:mt-1\.5 { + margin-top: 0.375rem; } - .xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:mt-2\.5 { + margin-top: 0.625rem; } - .xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:mt-3\.5 { + margin-top: 0.875rem; } - .xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:-mt-0 { + margin-top: 0px; } - .xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:-mt-1 { + margin-top: -0.25rem; } - .xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:-mt-2 { + margin-top: -0.5rem; } - .xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:-mt-3 { + margin-top: -0.75rem; } - .xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:-mt-4 { + margin-top: -1rem; } - .xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:-mt-5 { + margin-top: -1.25rem; } - .xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:-mt-6 { + margin-top: -1.5rem; } - .xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:-mt-7 { + margin-top: -1.75rem; } - .xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:-mt-8 { + margin-top: -2rem; } - .xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:-mt-9 { + margin-top: -2.25rem; } - .xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:-mt-10 { + margin-top: -2.5rem; } - .xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:-mt-11 { + margin-top: -2.75rem; } - .xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:-mt-12 { + margin-top: -3rem; } - .xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:-mt-14 { + margin-top: -3.5rem; } - .xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:-mt-16 { + margin-top: -4rem; } - .xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:-mt-20 { + margin-top: -5rem; } - .xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:-mt-24 { + margin-top: -6rem; } - .xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:-mt-28 { + margin-top: -7rem; } - .xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:-mt-32 { + margin-top: -8rem; } - .xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:-mt-36 { + margin-top: -9rem; } - .xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:-mt-40 { + margin-top: -10rem; } - .xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:-mt-44 { + margin-top: -11rem; } - .xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:-mt-48 { + margin-top: -12rem; } - .xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:-mt-52 { + margin-top: -13rem; } - .xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:-mt-56 { + margin-top: -14rem; } - .xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:-mt-60 { + margin-top: -15rem; } - .xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:-mt-64 { + margin-top: -16rem; } - .xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:-mt-72 { + margin-top: -18rem; } - .xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:-mt-80 { + margin-top: -20rem; } - .xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:-mt-96 { + margin-top: -24rem; } - .xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:-mt-px { + margin-top: -1px; } - .xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:mr-0 { + margin-right: 0px; } - .xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:mr-1 { + margin-right: 0.25rem; } - .xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:mr-2 { + margin-right: 0.5rem; } - .xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:mr-3 { + margin-right: 0.75rem; } - .xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:mr-4 { + margin-right: 1rem; } - .xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:mr-5 { + margin-right: 1.25rem; } - .xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:mr-6 { + margin-right: 1.5rem; } - .xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:mr-7 { + margin-right: 1.75rem; } - .xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:mr-8 { + margin-right: 2rem; } - .xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:mr-9 { + margin-right: 2.25rem; } - .xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:mr-10 { + margin-right: 2.5rem; } - .xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:mr-11 { + margin-right: 2.75rem; } - .xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:mr-12 { + margin-right: 3rem; } - .xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:mr-14 { + margin-right: 3.5rem; } - .xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:mr-16 { + margin-right: 4rem; } - .xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:mr-20 { + margin-right: 5rem; } - .xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:mr-24 { + margin-right: 6rem; } - .xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:mr-28 { + margin-right: 7rem; } - .xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:mr-32 { + margin-right: 8rem; } - .xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:mr-36 { + margin-right: 9rem; } - .xl\:to-transparent { - --tw-gradient-to: transparent; + .xl\:mr-40 { + margin-right: 10rem; } - .xl\:to-current { - --tw-gradient-to: currentColor; + .xl\:mr-44 { + margin-right: 11rem; } - .xl\:to-black { - --tw-gradient-to: #000; + .xl\:mr-48 { + margin-right: 12rem; } - .xl\:to-white { - --tw-gradient-to: #fff; + .xl\:mr-52 { + margin-right: 13rem; } - .xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .xl\:mr-56 { + margin-right: 14rem; } - .xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .xl\:mr-60 { + margin-right: 15rem; } - .xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .xl\:mr-64 { + margin-right: 16rem; } - .xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .xl\:mr-72 { + margin-right: 18rem; } - .xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .xl\:mr-80 { + margin-right: 20rem; } - .xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .xl\:mr-96 { + margin-right: 24rem; } - .xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .xl\:mr-auto { + margin-right: auto; } - .xl\:to-gray-700 { - --tw-gradient-to: #374151; + .xl\:mr-px { + margin-right: 1px; } - .xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .xl\:mr-0\.5 { + margin-right: 0.125rem; } - .xl\:to-gray-900 { - --tw-gradient-to: #111827; + .xl\:mr-1\.5 { + margin-right: 0.375rem; } - .xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .xl\:mr-2\.5 { + margin-right: 0.625rem; } - .xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .xl\:mr-3\.5 { + margin-right: 0.875rem; } - .xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .xl\:-mr-0 { + margin-right: 0px; } - .xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .xl\:-mr-1 { + margin-right: -0.25rem; } - .xl\:to-red-400 { - --tw-gradient-to: #f87171; + .xl\:-mr-2 { + margin-right: -0.5rem; } - .xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .xl\:-mr-3 { + margin-right: -0.75rem; } - .xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .xl\:-mr-4 { + margin-right: -1rem; } - .xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .xl\:-mr-5 { + margin-right: -1.25rem; } - .xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .xl\:-mr-6 { + margin-right: -1.5rem; } - .xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .xl\:-mr-7 { + margin-right: -1.75rem; } - .xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .xl\:-mr-8 { + margin-right: -2rem; } - .xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .xl\:-mr-9 { + margin-right: -2.25rem; } - .xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .xl\:-mr-10 { + margin-right: -2.5rem; } - .xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .xl\:-mr-11 { + margin-right: -2.75rem; } - .xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .xl\:-mr-12 { + margin-right: -3rem; } - .xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .xl\:-mr-14 { + margin-right: -3.5rem; } - .xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .xl\:-mr-16 { + margin-right: -4rem; } - .xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .xl\:-mr-20 { + margin-right: -5rem; } - .xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .xl\:-mr-24 { + margin-right: -6rem; } - .xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .xl\:-mr-28 { + margin-right: -7rem; } - .xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .xl\:-mr-32 { + margin-right: -8rem; } - .xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .xl\:-mr-36 { + margin-right: -9rem; } - .xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .xl\:-mr-40 { + margin-right: -10rem; } - .xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .xl\:-mr-44 { + margin-right: -11rem; } - .xl\:to-green-400 { - --tw-gradient-to: #34d399; + .xl\:-mr-48 { + margin-right: -12rem; } - .xl\:to-green-500 { - --tw-gradient-to: #10b981; + .xl\:-mr-52 { + margin-right: -13rem; } - .xl\:to-green-600 { - --tw-gradient-to: #059669; + .xl\:-mr-56 { + margin-right: -14rem; } - .xl\:to-green-700 { - --tw-gradient-to: #047857; + .xl\:-mr-60 { + margin-right: -15rem; } - .xl\:to-green-800 { - --tw-gradient-to: #065f46; + .xl\:-mr-64 { + margin-right: -16rem; } - .xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .xl\:-mr-72 { + margin-right: -18rem; } - .xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .xl\:-mr-80 { + margin-right: -20rem; } - .xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .xl\:-mr-96 { + margin-right: -24rem; } - .xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .xl\:-mr-px { + margin-right: -1px; } - .xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .xl\:-mr-0\.5 { + margin-right: -0.125rem; } - .xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .xl\:-mr-1\.5 { + margin-right: -0.375rem; } - .xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .xl\:-mr-2\.5 { + margin-right: -0.625rem; } - .xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .xl\:-mr-3\.5 { + margin-right: -0.875rem; } - .xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .xl\:mb-0 { + margin-bottom: 0px; } - .xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .xl\:mb-1 { + margin-bottom: 0.25rem; } - .xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .xl\:mb-2 { + margin-bottom: 0.5rem; } - .xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .xl\:mb-3 { + margin-bottom: 0.75rem; } - .xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .xl\:mb-4 { + margin-bottom: 1rem; } - .xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .xl\:mb-5 { + margin-bottom: 1.25rem; } - .xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .xl\:mb-6 { + margin-bottom: 1.5rem; } - .xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .xl\:mb-7 { + margin-bottom: 1.75rem; } - .xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .xl\:mb-8 { + margin-bottom: 2rem; } - .xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .xl\:mb-9 { + margin-bottom: 2.25rem; } - .xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .xl\:mb-10 { + margin-bottom: 2.5rem; } - .xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .xl\:mb-11 { + margin-bottom: 2.75rem; } - .xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .xl\:mb-12 { + margin-bottom: 3rem; } - .xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .xl\:mb-14 { + margin-bottom: 3.5rem; } - .xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .xl\:mb-16 { + margin-bottom: 4rem; } - .xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .xl\:mb-20 { + margin-bottom: 5rem; } - .xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .xl\:mb-24 { + margin-bottom: 6rem; } - .xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .xl\:mb-28 { + margin-bottom: 7rem; } - .xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .xl\:mb-32 { + margin-bottom: 8rem; } - .xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .xl\:mb-36 { + margin-bottom: 9rem; } - .xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .xl\:mb-40 { + margin-bottom: 10rem; } - .xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .xl\:mb-44 { + margin-bottom: 11rem; } - .xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .xl\:mb-48 { + margin-bottom: 12rem; } - .xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .xl\:mb-52 { + margin-bottom: 13rem; } - .xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .xl\:mb-56 { + margin-bottom: 14rem; } - .xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .xl\:mb-60 { + margin-bottom: 15rem; } - .xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .xl\:mb-64 { + margin-bottom: 16rem; } - .xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .xl\:mb-72 { + margin-bottom: 18rem; } - .xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .xl\:mb-80 { + margin-bottom: 20rem; } - .xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .xl\:mb-96 { + margin-bottom: 24rem; } - .xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .xl\:mb-auto { + margin-bottom: auto; } - .xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .xl\:mb-px { + margin-bottom: 1px; } - .xl\:to-pink-900 { - --tw-gradient-to: #831843; + .xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .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\:mb-1\.5 { + margin-bottom: 0.375rem; } - .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\:mb-2\.5 { + margin-bottom: 0.625rem; } - .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\:mb-3\.5 { + margin-bottom: 0.875rem; } - .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\:-mb-0 { + margin-bottom: 0px; } - .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\:-mb-1 { + margin-bottom: -0.25rem; } - .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\:-mb-2 { + margin-bottom: -0.5rem; } - .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\:-mb-3 { + margin-bottom: -0.75rem; } - .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\:-mb-4 { + margin-bottom: -1rem; } - .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\:-mb-5 { + margin-bottom: -1.25rem; } - .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\:-mb-6 { + margin-bottom: -1.5rem; } - .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\:-mb-7 { + margin-bottom: -1.75rem; } - .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\:-mb-8 { + margin-bottom: -2rem; } - .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\:-mb-9 { + margin-bottom: -2.25rem; } - .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\:-mb-10 { + margin-bottom: -2.5rem; } - .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\:-mb-11 { + margin-bottom: -2.75rem; } - .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\:-mb-12 { + margin-bottom: -3rem; } - .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\:-mb-14 { + margin-bottom: -3.5rem; } - .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\:-mb-16 { + margin-bottom: -4rem; } - .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\:-mb-20 { + margin-bottom: -5rem; } - .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\:-mb-24 { + margin-bottom: -6rem; } - .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\:-mb-28 { + margin-bottom: -7rem; } - .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\:-mb-32 { + margin-bottom: -8rem; } - .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\:-mb-36 { + margin-bottom: -9rem; } - .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\:-mb-40 { + margin-bottom: -10rem; } - .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\:-mb-44 { + margin-bottom: -11rem; } - .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\:-mb-48 { + margin-bottom: -12rem; } - .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\:-mb-52 { + margin-bottom: -13rem; } - .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\:-mb-56 { + margin-bottom: -14rem; } - .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\:-mb-60 { + margin-bottom: -15rem; } - .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\:-mb-64 { + margin-bottom: -16rem; } - .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\:-mb-72 { + margin-bottom: -18rem; } - .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\:-mb-80 { + margin-bottom: -20rem; } - .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\:-mb-96 { + margin-bottom: -24rem; } - .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\:-mb-px { + margin-bottom: -1px; } - .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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .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\:ml-0 { + margin-left: 0px; } - .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\:ml-1 { + margin-left: 0.25rem; } - .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\:ml-2 { + margin-left: 0.5rem; } - .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\:ml-3 { + margin-left: 0.75rem; } - .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\:ml-4 { + margin-left: 1rem; } - .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\:ml-5 { + margin-left: 1.25rem; } - .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\:ml-6 { + margin-left: 1.5rem; } - .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\:ml-7 { + margin-left: 1.75rem; } - .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\:ml-8 { + margin-left: 2rem; } - .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\:ml-9 { + margin-left: 2.25rem; } - .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\:ml-10 { + margin-left: 2.5rem; } - .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\:ml-11 { + margin-left: 2.75rem; } - .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\:ml-12 { + margin-left: 3rem; } - .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\:ml-14 { + margin-left: 3.5rem; } - .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\:ml-16 { + margin-left: 4rem; } - .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\:ml-20 { + margin-left: 5rem; } - .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\:ml-24 { + margin-left: 6rem; } - .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\:ml-28 { + margin-left: 7rem; } - .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\:ml-32 { + margin-left: 8rem; } - .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\:ml-36 { + margin-left: 9rem; } - .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\:ml-40 { + margin-left: 10rem; } - .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\:ml-44 { + margin-left: 11rem; } - .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\:ml-48 { + margin-left: 12rem; } - .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\:ml-52 { + margin-left: 13rem; } - .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\:ml-56 { + margin-left: 14rem; } - .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\:ml-60 { + margin-left: 15rem; } - .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\:ml-64 { + margin-left: 16rem; } - .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\:ml-72 { + margin-left: 18rem; } - .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\:ml-80 { + margin-left: 20rem; } - .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\:ml-96 { + margin-left: 24rem; } - .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\:ml-auto { + margin-left: auto; } - .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\:ml-px { + margin-left: 1px; } - .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\:ml-0\.5 { + margin-left: 0.125rem; } - .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\:ml-1\.5 { + margin-left: 0.375rem; } - .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\:ml-2\.5 { + margin-left: 0.625rem; } - .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\:ml-3\.5 { + margin-left: 0.875rem; } - .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\:-ml-0 { + margin-left: 0px; } - .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\:-ml-1 { + margin-left: -0.25rem; } - .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\:-ml-2 { + margin-left: -0.5rem; } - .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\:-ml-3 { + margin-left: -0.75rem; } - .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\:-ml-4 { + margin-left: -1rem; } - .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\:-ml-5 { + margin-left: -1.25rem; } - .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\:-ml-6 { + margin-left: -1.5rem; } - .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\:-ml-7 { + margin-left: -1.75rem; } - .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\:-ml-8 { + margin-left: -2rem; } - .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\:-ml-9 { + margin-left: -2.25rem; } - .xl\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:-ml-10 { + margin-left: -2.5rem; } - .xl\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:-ml-11 { + margin-left: -2.75rem; } - .xl\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:-ml-12 { + margin-left: -3rem; } - .xl\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:-ml-14 { + margin-left: -3.5rem; } - .xl\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:-ml-16 { + margin-left: -4rem; } - .xl\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:-ml-20 { + margin-left: -5rem; } - .xl\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:-ml-24 { + margin-left: -6rem; } - .xl\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:-ml-28 { + margin-left: -7rem; } - .xl\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:-ml-32 { + margin-left: -8rem; } - .xl\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:-ml-36 { + margin-left: -9rem; } - .xl\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:-ml-40 { + margin-left: -10rem; } - .xl\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:-ml-44 { + margin-left: -11rem; } - .xl\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:-ml-48 { + margin-left: -12rem; } - .xl\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:-ml-52 { + margin-left: -13rem; } - .xl\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:-ml-56 { + margin-left: -14rem; } - .xl\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:-ml-60 { + margin-left: -15rem; } - .xl\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:-ml-64 { + margin-left: -16rem; } - .xl\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:-ml-72 { + margin-left: -18rem; } - .xl\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:-ml-80 { + margin-left: -20rem; } - .xl\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:-ml-96 { + margin-left: -24rem; } - .xl\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:-ml-px { + margin-left: -1px; } - .xl\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:-ml-0\.5 { + margin-left: -0.125rem; } - .xl\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:-ml-1\.5 { + margin-left: -0.375rem; } - .xl\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:-ml-2\.5 { + margin-left: -0.625rem; } - .xl\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:-ml-3\.5 { + margin-left: -0.875rem; } - .xl\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:box-border { + box-sizing: border-box; } - .xl\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:box-content { + box-sizing: content-box; } - .xl\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:block { + display: block; } - .xl\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:inline-block { + display: inline-block; } - .xl\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:inline { + display: inline; } - .xl\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:flex { + display: flex; } - .xl\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:inline-flex { + display: inline-flex; } - .xl\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:table { + display: table; } - .xl\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:inline-table { + display: inline-table; } - .xl\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:table-caption { + display: table-caption; } - .xl\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:table-cell { + display: table-cell; } - .xl\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:table-column { + display: table-column; } - .xl\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:table-column-group { + display: table-column-group; } - .xl\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:table-footer-group { + display: table-footer-group; } - .xl\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:table-header-group { + display: table-header-group; } - .xl\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:table-row-group { + display: table-row-group; } - .xl\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:table-row { + display: table-row; } - .xl\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:flow-root { + display: flow-root; } - .xl\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:grid { + display: grid; } - .xl\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:inline-grid { + display: inline-grid; } - .xl\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:contents { + display: contents; } - .xl\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:list-item { + display: list-item; } - .xl\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:hidden { + display: none; } - .xl\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:h-0 { + height: 0px; } - .xl\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:h-1 { + height: 0.25rem; } - .xl\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:h-2 { + height: 0.5rem; } - .xl\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:h-3 { + height: 0.75rem; } - .xl\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:h-4 { + height: 1rem; } - .xl\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:h-5 { + height: 1.25rem; } - .xl\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:h-6 { + height: 1.5rem; } - .xl\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:h-7 { + height: 1.75rem; } - .xl\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:h-8 { + height: 2rem; } - .xl\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:h-9 { + height: 2.25rem; } - .xl\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:h-10 { + height: 2.5rem; } - .xl\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:h-11 { + height: 2.75rem; } - .xl\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:h-12 { + height: 3rem; } - .xl\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:h-14 { + height: 3.5rem; } - .xl\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:h-16 { + height: 4rem; } - .xl\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:h-20 { + height: 5rem; } - .xl\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:h-24 { + height: 6rem; } - .xl\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:h-28 { + height: 7rem; } - .xl\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:h-32 { + height: 8rem; } - .xl\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:h-36 { + height: 9rem; } - .xl\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:h-40 { + height: 10rem; } - .xl\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:h-44 { + height: 11rem; } - .xl\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:h-48 { + height: 12rem; } - .xl\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:h-52 { + height: 13rem; } - .xl\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:h-56 { + height: 14rem; } - .xl\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:h-60 { + height: 15rem; } - .xl\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:h-64 { + height: 16rem; } - .xl\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:h-72 { + height: 18rem; } - .xl\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:h-80 { + height: 20rem; } - .xl\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:h-96 { + height: 24rem; } - .xl\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:h-auto { + height: auto; } - .xl\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:h-px { + height: 1px; } - .xl\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:h-0\.5 { + height: 0.125rem; } - .xl\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:h-1\.5 { + height: 0.375rem; } - .xl\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:h-2\.5 { + height: 0.625rem; } - .xl\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:h-3\.5 { + height: 0.875rem; } - .xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .xl\:h-1\/2 { + height: 50%; } - .xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .xl\:h-1\/3 { + height: 33.333333%; } - .xl\:hover\:to-black:hover { - --tw-gradient-to: #000; + .xl\:h-2\/3 { + height: 66.666667%; } - .xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .xl\:h-1\/4 { + height: 25%; } - .xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .xl\:h-2\/4 { + height: 50%; } - .xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .xl\:h-3\/4 { + height: 75%; } - .xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .xl\:h-1\/5 { + height: 20%; } - .xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .xl\:h-2\/5 { + height: 40%; } - .xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .xl\:h-3\/5 { + height: 60%; } - .xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .xl\:h-4\/5 { + height: 80%; } - .xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .xl\:h-1\/6 { + height: 16.666667%; } - .xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .xl\:h-2\/6 { + height: 33.333333%; } - .xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .xl\:h-3\/6 { + height: 50%; } - .xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .xl\:h-4\/6 { + height: 66.666667%; } - .xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .xl\:h-5\/6 { + height: 83.333333%; } - .xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .xl\:h-full { + height: 100%; } - .xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .xl\:h-screen { + height: 100vh; } - .xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .xl\:max-h-0 { + max-height: 0px; } - .xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .xl\:max-h-1 { + max-height: 0.25rem; } - .xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .xl\:max-h-2 { + max-height: 0.5rem; } - .xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .xl\:max-h-3 { + max-height: 0.75rem; } - .xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .xl\:max-h-4 { + max-height: 1rem; } - .xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .xl\:max-h-5 { + max-height: 1.25rem; } - .xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .xl\:max-h-6 { + max-height: 1.5rem; } - .xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .xl\:max-h-7 { + max-height: 1.75rem; } - .xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .xl\:max-h-8 { + max-height: 2rem; } - .xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .xl\:max-h-9 { + max-height: 2.25rem; } - .xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .xl\:max-h-10 { + max-height: 2.5rem; } - .xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .xl\:max-h-11 { + max-height: 2.75rem; } - .xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .xl\:max-h-12 { + max-height: 3rem; } - .xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .xl\:max-h-14 { + max-height: 3.5rem; } - .xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .xl\:max-h-16 { + max-height: 4rem; } - .xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .xl\:max-h-20 { + max-height: 5rem; } - .xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .xl\:max-h-24 { + max-height: 6rem; } - .xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .xl\:max-h-28 { + max-height: 7rem; } - .xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .xl\:max-h-32 { + max-height: 8rem; } - .xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .xl\:max-h-36 { + max-height: 9rem; } - .xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .xl\:max-h-40 { + max-height: 10rem; } - .xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .xl\:max-h-44 { + max-height: 11rem; } - .xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .xl\:max-h-48 { + max-height: 12rem; } - .xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .xl\:max-h-52 { + max-height: 13rem; } - .xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .xl\:max-h-56 { + max-height: 14rem; } - .xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .xl\:max-h-60 { + max-height: 15rem; } - .xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .xl\:max-h-64 { + max-height: 16rem; } - .xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .xl\:max-h-72 { + max-height: 18rem; } - .xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .xl\:max-h-80 { + max-height: 20rem; } - .xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .xl\:max-h-96 { + max-height: 24rem; } - .xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .xl\:max-h-px { + max-height: 1px; } - .xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .xl\:max-h-0\.5 { + max-height: 0.125rem; } - .xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .xl\:max-h-1\.5 { + max-height: 0.375rem; } - .xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .xl\:max-h-2\.5 { + max-height: 0.625rem; } - .xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .xl\:max-h-3\.5 { + max-height: 0.875rem; } - .xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .xl\:max-h-full { + max-height: 100%; } - .xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .xl\:max-h-screen { + max-height: 100vh; } - .xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .xl\:min-h-0 { + min-height: 0px; } - .xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .xl\:min-h-full { + min-height: 100%; } - .xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .xl\:min-h-screen { + min-height: 100vh; } - .xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .xl\:w-0 { + width: 0px; } - .xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .xl\:w-1 { + width: 0.25rem; } - .xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .xl\:w-2 { + width: 0.5rem; } - .xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .xl\:w-3 { + width: 0.75rem; } - .xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .xl\:w-4 { + width: 1rem; } - .xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .xl\:w-5 { + width: 1.25rem; } - .xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .xl\:w-6 { + width: 1.5rem; } - .xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .xl\:w-7 { + width: 1.75rem; } - .xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .xl\:w-8 { + width: 2rem; } - .xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .xl\:w-9 { + width: 2.25rem; } - .xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .xl\:w-10 { + width: 2.5rem; } - .xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .xl\:w-11 { + width: 2.75rem; } - .xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .xl\:w-12 { + width: 3rem; } - .xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .xl\:w-14 { + width: 3.5rem; } - .xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .xl\:w-16 { + width: 4rem; } - .xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .xl\:w-20 { + width: 5rem; } - .xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .xl\:w-24 { + width: 6rem; } - .xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .xl\:w-28 { + width: 7rem; } - .xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .xl\:w-32 { + width: 8rem; } - .xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .xl\:w-36 { + width: 9rem; } - .xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .xl\:w-40 { + width: 10rem; } - .xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .xl\:w-44 { + width: 11rem; } - .xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .xl\:w-48 { + width: 12rem; } - .xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .xl\:w-52 { + width: 13rem; } - .xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .xl\:w-56 { + width: 14rem; } - .xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .xl\:w-60 { + width: 15rem; } - .xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .xl\:w-64 { + width: 16rem; } - .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\:w-72 { + width: 18rem; } - .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\:w-80 { + width: 20rem; } - .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\:w-96 { + width: 24rem; } - .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\:w-auto { + width: auto; } - .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\:w-px { + width: 1px; } - .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\:w-0\.5 { + width: 0.125rem; } - .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\:w-1\.5 { + width: 0.375rem; } - .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\:w-2\.5 { + width: 0.625rem; } - .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\:w-3\.5 { + width: 0.875rem; } - .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\:w-1\/2 { + width: 50%; } - .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\:w-1\/3 { + width: 33.333333%; } - .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\:w-2\/3 { + width: 66.666667%; } - .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\:w-1\/4 { + width: 25%; } - .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\:w-2\/4 { + width: 50%; } - .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\:w-3\/4 { + width: 75%; } - .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\:w-1\/5 { + width: 20%; } - .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\:w-2\/5 { + width: 40%; } - .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\:w-3\/5 { + width: 60%; } - .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\:w-4\/5 { + width: 80%; } - .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\:w-1\/6 { + width: 16.666667%; } - .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\:w-2\/6 { + width: 33.333333%; } - .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\:w-3\/6 { + width: 50%; } - .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\:w-4\/6 { + width: 66.666667%; } - .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\:w-5\/6 { + width: 83.333333%; } - .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\:w-1\/12 { + width: 8.333333%; } - .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\:w-2\/12 { + width: 16.666667%; } - .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\:w-3\/12 { + width: 25%; } - .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\:w-4\/12 { + width: 33.333333%; } - .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\:w-5\/12 { + width: 41.666667%; } - .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\:w-6\/12 { + width: 50%; } - .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\:w-7\/12 { + width: 58.333333%; } - .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\:w-8\/12 { + width: 66.666667%; } - .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\:w-9\/12 { + width: 75%; } - .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\:w-10\/12 { + width: 83.333333%; } - .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\:w-11\/12 { + width: 91.666667%; } - .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\:w-full { + width: 100%; } - .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\:w-screen { + width: 100vw; } - .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\:w-min { + width: min-content; } - .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\:w-max { + width: max-content; } - .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\:min-w-0 { + min-width: 0px; } - .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\:min-w-full { + min-width: 100%; } - .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\:min-w-min { + min-width: min-content; } - .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\:min-w-max { + min-width: max-content; } - .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\:max-w-0 { + max-width: 0rem; } - .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\:max-w-none { + max-width: none; } - .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\:max-w-xs { + max-width: 20rem; } - .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\:max-w-sm { + max-width: 24rem; } - .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\:max-w-md { + max-width: 28rem; } - .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\:max-w-lg { + max-width: 32rem; } - .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\:max-w-xl { + max-width: 36rem; } - .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\:max-w-2xl { + max-width: 42rem; } - .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\:max-w-3xl { + max-width: 48rem; } - .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\:max-w-4xl { + max-width: 56rem; } - .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\:max-w-5xl { + max-width: 64rem; } - .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\:max-w-6xl { + max-width: 72rem; } - .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\:max-w-7xl { + max-width: 80rem; } - .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\:max-w-full { + max-width: 100%; } - .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\:max-w-min { + max-width: min-content; } - .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\:max-w-max { + max-width: max-content; } - .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\:max-w-prose { + max-width: 65ch; } - .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\:max-w-screen-sm { + max-width: 640px; } - .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\:max-w-screen-md { + max-width: 768px; } - .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\:max-w-screen-lg { + max-width: 1024px; } - .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\:max-w-screen-xl { + max-width: 1280px; } - .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\:max-w-screen-2xl { + max-width: 1536px; } - .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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .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\:flex-initial { + flex: 0 1 auto; } - .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\:flex-none { + flex: none; } - .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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .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\:table-auto { + table-layout: auto; } - .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\:table-fixed { + table-layout: fixed; } - .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\:border-collapse { + border-collapse: collapse; } - .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\:border-separate { + border-collapse: separate; } - .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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .xl\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .xl\: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\:transform-none { + transform: none; } - .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\:origin-center { + transform-origin: center; } - .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\:origin-top { + transform-origin: top; } - .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\:origin-top-right { + transform-origin: top right; } - .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\:origin-right { + transform-origin: right; } - .xl\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:origin-bottom-right { + transform-origin: bottom right; } - .xl\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:origin-bottom { + transform-origin: bottom; } - .xl\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:origin-bottom-left { + transform-origin: bottom left; } - .xl\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:origin-left { + transform-origin: left; } - .xl\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:origin-top-left { + transform-origin: top left; } - .xl\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:translate-x-0 { + --tw-translate-x: 0px; } - .xl\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .xl\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .xl\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .xl\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:translate-x-4 { + --tw-translate-x: 1rem; } - .xl\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .xl\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .xl\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .xl\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:translate-x-8 { + --tw-translate-x: 2rem; } - .xl\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .xl\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .xl\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .xl\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:translate-x-12 { + --tw-translate-x: 3rem; } - .xl\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .xl\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:translate-x-16 { + --tw-translate-x: 4rem; } - .xl\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:translate-x-20 { + --tw-translate-x: 5rem; } - .xl\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:translate-x-24 { + --tw-translate-x: 6rem; } - .xl\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:translate-x-28 { + --tw-translate-x: 7rem; } - .xl\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:translate-x-32 { + --tw-translate-x: 8rem; } - .xl\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:translate-x-36 { + --tw-translate-x: 9rem; } - .xl\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:translate-x-40 { + --tw-translate-x: 10rem; } - .xl\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:translate-x-44 { + --tw-translate-x: 11rem; } - .xl\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:translate-x-48 { + --tw-translate-x: 12rem; } - .xl\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:translate-x-52 { + --tw-translate-x: 13rem; } - .xl\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:translate-x-56 { + --tw-translate-x: 14rem; } - .xl\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:translate-x-60 { + --tw-translate-x: 15rem; } - .xl\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:translate-x-64 { + --tw-translate-x: 16rem; } - .xl\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:translate-x-72 { + --tw-translate-x: 18rem; } - .xl\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:translate-x-80 { + --tw-translate-x: 20rem; } - .xl\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:translate-x-96 { + --tw-translate-x: 24rem; } - .xl\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:translate-x-px { + --tw-translate-x: 1px; } - .xl\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .xl\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .xl\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .xl\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .xl\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:-translate-x-0 { + --tw-translate-x: 0px; } - .xl\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .xl\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .xl\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .xl\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:-translate-x-4 { + --tw-translate-x: -1rem; } - .xl\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .xl\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .xl\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .xl\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:-translate-x-8 { + --tw-translate-x: -2rem; } - .xl\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .xl\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .xl\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .xl\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:-translate-x-12 { + --tw-translate-x: -3rem; } - .xl\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .xl\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:-translate-x-16 { + --tw-translate-x: -4rem; } - .xl\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:-translate-x-20 { + --tw-translate-x: -5rem; } - .xl\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:-translate-x-24 { + --tw-translate-x: -6rem; } - .xl\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:-translate-x-28 { + --tw-translate-x: -7rem; } - .xl\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:-translate-x-32 { + --tw-translate-x: -8rem; } - .xl\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:-translate-x-36 { + --tw-translate-x: -9rem; } - .xl\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:-translate-x-40 { + --tw-translate-x: -10rem; } - .xl\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:-translate-x-44 { + --tw-translate-x: -11rem; } - .xl\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:-translate-x-48 { + --tw-translate-x: -12rem; } - .xl\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:-translate-x-52 { + --tw-translate-x: -13rem; } - .xl\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:-translate-x-56 { + --tw-translate-x: -14rem; } - .xl\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:-translate-x-60 { + --tw-translate-x: -15rem; } - .xl\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:-translate-x-64 { + --tw-translate-x: -16rem; } - .xl\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:-translate-x-72 { + --tw-translate-x: -18rem; } - .xl\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:-translate-x-80 { + --tw-translate-x: -20rem; } - .xl\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:-translate-x-96 { + --tw-translate-x: -24rem; } - .xl\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:-translate-x-px { + --tw-translate-x: -1px; } - .xl\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .xl\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .xl\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .xl\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .xl\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .xl\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .xl\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .xl\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .xl\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .xl\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .xl\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:translate-x-full { + --tw-translate-x: 100%; } - .xl\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .xl\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .xl\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .xl\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .xl\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .xl\:focus\:to-black:focus { - --tw-gradient-to: #000; + .xl\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .xl\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .xl\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .xl\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .xl\:-translate-x-full { + --tw-translate-x: -100%; } - .xl\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .xl\:translate-y-0 { + --tw-translate-y: 0px; } - .xl\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .xl\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .xl\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .xl\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .xl\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .xl\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .xl\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .xl\:translate-y-4 { + --tw-translate-y: 1rem; } - .xl\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .xl\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .xl\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .xl\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .xl\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .xl\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .xl\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .xl\:translate-y-8 { + --tw-translate-y: 2rem; } - .xl\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .xl\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .xl\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .xl\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .xl\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .xl\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .xl\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .xl\:translate-y-12 { + --tw-translate-y: 3rem; } - .xl\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .xl\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .xl\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .xl\:translate-y-16 { + --tw-translate-y: 4rem; } - .xl\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .xl\:translate-y-20 { + --tw-translate-y: 5rem; } - .xl\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .xl\:translate-y-24 { + --tw-translate-y: 6rem; } - .xl\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .xl\:translate-y-28 { + --tw-translate-y: 7rem; } - .xl\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .xl\:translate-y-32 { + --tw-translate-y: 8rem; } - .xl\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .xl\:translate-y-36 { + --tw-translate-y: 9rem; } - .xl\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .xl\:translate-y-40 { + --tw-translate-y: 10rem; } - .xl\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .xl\:translate-y-44 { + --tw-translate-y: 11rem; } - .xl\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .xl\:translate-y-48 { + --tw-translate-y: 12rem; } - .xl\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .xl\:translate-y-52 { + --tw-translate-y: 13rem; } - .xl\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .xl\:translate-y-56 { + --tw-translate-y: 14rem; } - .xl\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .xl\:translate-y-60 { + --tw-translate-y: 15rem; } - .xl\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .xl\:translate-y-64 { + --tw-translate-y: 16rem; } - .xl\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .xl\:translate-y-72 { + --tw-translate-y: 18rem; } - .xl\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .xl\:translate-y-80 { + --tw-translate-y: 20rem; } - .xl\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .xl\:translate-y-96 { + --tw-translate-y: 24rem; } - .xl\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .xl\:translate-y-px { + --tw-translate-y: 1px; } - .xl\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .xl\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .xl\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .xl\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .xl\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .xl\:-translate-y-0 { + --tw-translate-y: 0px; } - .xl\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .xl\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .xl\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .xl\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .xl\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .xl\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .xl\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .xl\:-translate-y-4 { + --tw-translate-y: -1rem; } - .xl\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .xl\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .xl\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .xl\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .xl\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .xl\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .xl\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .xl\:-translate-y-8 { + --tw-translate-y: -2rem; } - .xl\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .xl\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .xl\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .xl\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .xl\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .xl\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .xl\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .xl\:-translate-y-12 { + --tw-translate-y: -3rem; } - .xl\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .xl\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .xl\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .xl\:-translate-y-16 { + --tw-translate-y: -4rem; } - .xl\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .xl\:-translate-y-20 { + --tw-translate-y: -5rem; } - .xl\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .xl\:-translate-y-24 { + --tw-translate-y: -6rem; } - .xl\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .xl\:-translate-y-28 { + --tw-translate-y: -7rem; } - .xl\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .xl\:-translate-y-32 { + --tw-translate-y: -8rem; } - .xl\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .xl\:-translate-y-36 { + --tw-translate-y: -9rem; } - .xl\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .xl\:-translate-y-40 { + --tw-translate-y: -10rem; } - .xl\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .xl\:-translate-y-44 { + --tw-translate-y: -11rem; } - .xl\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .xl\:-translate-y-48 { + --tw-translate-y: -12rem; } - .xl\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .xl\:-translate-y-52 { + --tw-translate-y: -13rem; } - .xl\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .xl\:-translate-y-56 { + --tw-translate-y: -14rem; } - .xl\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .xl\:-translate-y-60 { + --tw-translate-y: -15rem; } - .xl\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .xl\:-translate-y-64 { + --tw-translate-y: -16rem; } - .xl\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .xl\:-translate-y-72 { + --tw-translate-y: -18rem; } - .xl\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .xl\:-translate-y-80 { + --tw-translate-y: -20rem; } - .xl\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .xl\:-translate-y-96 { + --tw-translate-y: -24rem; } - .xl\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .xl\:-translate-y-px { + --tw-translate-y: -1px; } - .xl\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .xl\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .xl\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .xl\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .xl\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .xl\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .xl\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .xl\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .xl\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .xl\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .xl\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .xl\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .xl\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .xl\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .xl\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .xl\:translate-y-full { + --tw-translate-y: 100%; } - .xl\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .xl\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .xl\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .xl\:bg-opacity-0 { - --tw-bg-opacity: 0; + .xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .xl\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .xl\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .xl\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .xl\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .xl\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .xl\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .xl\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .xl\:-translate-y-full { + --tw-translate-y: -100%; } - .xl\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .xl\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .xl\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .xl\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .xl\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .xl\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .xl\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .xl\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .xl\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .xl\:bg-opacity-100 { - --tw-bg-opacity: 1; + .xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .group:hover .xl\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; + .xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .group:hover .xl\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .group:hover .xl\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .group:hover .xl\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .group:hover .xl\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .group:hover .xl\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .group:hover .xl\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .group:hover .xl\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .group:hover .xl\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .group:hover .xl\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .group:hover .xl\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .group:hover .xl\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .group:hover .xl\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .group:hover .xl\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .group:hover .xl\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; + .xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .xl\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; + .xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .xl\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; + .xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .xl\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; + .xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .xl\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; + .xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .xl\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; + .xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .xl\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; + .xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .xl\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; + .xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .xl\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; + .xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .xl\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; + .xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .xl\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; + .xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .xl\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; + .xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .xl\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; + .xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .xl\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; + .xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .xl\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; + .xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .xl\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; + .xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .xl\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; + .xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .xl\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; + .xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .xl\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; + .xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .xl\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; + .xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .xl\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; + .xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .xl\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; + .xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .xl\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; + .xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .xl\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; + .xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .xl\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; + .xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .xl\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; + .xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .xl\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; + .xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .xl\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; + .xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .xl\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; + .xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .xl\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; + .xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .xl\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; + .xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .xl\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; + .xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .xl\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; + .xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .xl\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; + .xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .xl\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; + .xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .xl\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; + .xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .xl\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; + .xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .xl\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; + .xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .xl\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; + .xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .xl\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; + .xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .xl\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; + .xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .xl\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; + .xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .xl\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; + .xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .xl\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; + .xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .xl\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; + .xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .xl\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; + .xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .xl\:bg-bottom { - background-position: bottom; + .xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .xl\:bg-center { - background-position: center; + .xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .xl\:bg-left { - background-position: left; + .xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .xl\:bg-left-bottom { - background-position: left bottom; + .xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .xl\:bg-left-top { - background-position: left top; + .xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .xl\:bg-right { - background-position: right; + .xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .xl\:bg-right-bottom { - background-position: right bottom; + .xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .xl\:bg-right-top { - background-position: right top; + .xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .xl\:bg-top { - background-position: top; + .xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .xl\:bg-repeat { - background-repeat: repeat; + .xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .xl\:bg-no-repeat { - background-repeat: no-repeat; + .xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .xl\:bg-repeat-x { - background-repeat: repeat-x; + .xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .xl\:bg-repeat-y { - background-repeat: repeat-y; + .xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .xl\:bg-repeat-round { - background-repeat: round; + .xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .xl\:bg-repeat-space { - background-repeat: space; + .xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .xl\:bg-auto { - background-size: auto; + .xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .xl\:bg-cover { - background-size: cover; + .xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .xl\:bg-contain { - background-size: contain; + .xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .xl\:bg-origin-border { - background-origin: border-box; + .xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .xl\:bg-origin-padding { - background-origin: padding-box; + .xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .xl\:bg-origin-content { - background-origin: content-box; + .xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .xl\:border-collapse { - border-collapse: collapse; + .xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .xl\:border-separate { - border-collapse: separate; + .xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .xl\:border-transparent { - border-color: transparent; + .xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .xl\:border-current { - border-color: currentColor; + .xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .xl\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .xl\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .xl\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .xl\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .xl\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .xl\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .xl\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .xl\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .xl\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .xl\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .xl\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .xl\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .xl\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .xl\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .xl\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .xl\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .xl\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .xl\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .xl\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .xl\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .xl\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .xl\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .xl\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .xl\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .xl\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .xl\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .xl\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .xl\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .xl\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .xl\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .xl\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .xl\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .xl\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .xl\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .xl\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .xl\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .xl\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .xl\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .xl\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .xl\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .xl\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .xl\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .xl\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .xl\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .xl\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .xl\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .xl\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .xl\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .xl\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .xl\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .xl\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .xl\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .xl\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .xl\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .xl\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .xl\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .xl\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .xl\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .xl\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .xl\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .xl\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .xl\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .xl\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .xl\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .xl\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .xl\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .xl\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .xl\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .xl\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .xl\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .xl\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .xl\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .xl\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .xl\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .xl\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .xl\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .xl\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .xl\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .xl\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .xl\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .xl\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .xl\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .xl\:group-hover\:border-transparent { - border-color: transparent; + .xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .xl\:group-hover\:border-current { - border-color: currentColor; + .xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .xl\:group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .xl\:group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .xl\:group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .xl\:group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .xl\:group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .xl\:group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .xl\:group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .xl\:group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .xl\:group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .xl\:group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .xl\:group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .xl\:group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .xl\:group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .xl\:group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .xl\:group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .xl\:group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .xl\:group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .xl\:group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .xl\:group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .xl\:group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .xl\:group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .xl\:group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .xl\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .xl\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .xl\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .xl\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .xl\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .group:hover .xl\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .group:hover .xl\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .group:hover .xl\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .group:hover .xl\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .group:hover .xl\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .group:hover .xl\:group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .group:hover .xl\:group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - - .group:hover .xl\:group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + + .xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .group:hover .xl\:group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .group:hover .xl\:group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .group:hover .xl\:group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .group:hover .xl\:group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .group:hover .xl\:group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .group:hover .xl\:group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .group:hover .xl\:group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .group:hover .xl\:group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .group:hover .xl\:group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .group:hover .xl\:group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .group:hover .xl\:group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .group:hover .xl\:group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .group:hover .xl\:group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .group:hover .xl\:group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .group:hover .xl\:group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .group:hover .xl\:group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .group:hover .xl\:group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .group:hover .xl\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .group:hover .xl\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .group:hover .xl\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .group:hover .xl\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .group:hover .xl\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .group:hover .xl\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .group:hover .xl\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .group:hover .xl\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .group:hover .xl\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .group:hover .xl\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .group:hover .xl\:group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .group:hover .xl\:group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .group:hover .xl\:group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .group:hover .xl\:group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .group:hover .xl\:group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .group:hover .xl\:group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .group:hover .xl\:group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .group:hover .xl\:group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .group:hover .xl\:group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .group:hover .xl\:group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .group:hover .xl\:group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .group:hover .xl\:group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .group:hover .xl\:group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .group:hover .xl\:group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .group:hover .xl\:group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .group:hover .xl\:group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .group:hover .xl\:group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .group:hover .xl\:group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .group:hover .xl\:group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .group:hover .xl\:group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .xl\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .xl\:focus-within\:border-current:focus-within { - border-color: currentColor; + .xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .xl\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .xl\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .xl\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .xl\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .xl\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .xl\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .xl\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .xl\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .xl\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .xl\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .xl\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .xl\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .xl\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .xl\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .xl\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .xl\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .xl\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .xl\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .xl\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .xl\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .xl\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .xl\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .xl\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .xl\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .xl\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .xl\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .xl\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .xl\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .xl\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .xl\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .xl\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .xl\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .xl\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .xl\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .xl\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .xl\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .xl\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .xl\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .xl\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .xl\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .xl\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .xl\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .xl\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .xl\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .xl\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .xl\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .xl\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .xl\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .xl\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .xl\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .xl\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .xl\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .xl\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .xl\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .xl\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .xl\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .xl\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .xl\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .xl\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .xl\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .xl\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .xl\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .xl\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .xl\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .xl\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .xl\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .xl\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .xl\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .xl\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .xl\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .xl\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .xl\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .xl\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .xl\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .xl\:rotate-0 { + --tw-rotate: 0deg; } - .xl\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .xl\:rotate-1 { + --tw-rotate: 1deg; } - .xl\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .xl\:rotate-2 { + --tw-rotate: 2deg; } - .xl\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .xl\:rotate-3 { + --tw-rotate: 3deg; } - .xl\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .xl\:rotate-6 { + --tw-rotate: 6deg; } - .xl\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .xl\:rotate-12 { + --tw-rotate: 12deg; } - .xl\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .xl\:rotate-45 { + --tw-rotate: 45deg; } - .xl\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .xl\:rotate-90 { + --tw-rotate: 90deg; } - .xl\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .xl\:rotate-180 { + --tw-rotate: 180deg; } - .xl\:hover\:border-transparent:hover { - border-color: transparent; + .xl\:-rotate-180 { + --tw-rotate: -180deg; } - .xl\:hover\:border-current:hover { - border-color: currentColor; + .xl\:-rotate-90 { + --tw-rotate: -90deg; } - .xl\:hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .xl\:-rotate-45 { + --tw-rotate: -45deg; } - .xl\:hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .xl\:-rotate-12 { + --tw-rotate: -12deg; } - .xl\:hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .xl\:-rotate-6 { + --tw-rotate: -6deg; } - .xl\:hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .xl\:-rotate-3 { + --tw-rotate: -3deg; } - .xl\:hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .xl\:-rotate-2 { + --tw-rotate: -2deg; } - .xl\:hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .xl\:-rotate-1 { + --tw-rotate: -1deg; } - .xl\:hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .xl\:hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .xl\:hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .xl\:hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .xl\:hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .xl\:hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .xl\:hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .xl\:hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .xl\:hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .xl\:hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .xl\:hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .xl\:hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .xl\:hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .xl\:hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .xl\:hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .xl\:hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .xl\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .xl\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .xl\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .xl\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .xl\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .xl\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .xl\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .xl\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .xl\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .xl\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .xl\:hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .xl\:hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .xl\:hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .xl\:hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .xl\:hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .xl\:hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .xl\:hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .xl\:hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .xl\:hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .xl\:skew-x-0 { + --tw-skew-x: 0deg; } - .xl\:hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .xl\:skew-x-1 { + --tw-skew-x: 1deg; } - .xl\:hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .xl\:skew-x-2 { + --tw-skew-x: 2deg; } - .xl\:hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .xl\:skew-x-3 { + --tw-skew-x: 3deg; } - .xl\:hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .xl\:skew-x-6 { + --tw-skew-x: 6deg; } - .xl\:hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .xl\:skew-x-12 { + --tw-skew-x: 12deg; } - .xl\:hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .xl\:-skew-x-12 { + --tw-skew-x: -12deg; } - .xl\:hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .xl\:-skew-x-6 { + --tw-skew-x: -6deg; } - .xl\:hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .xl\:-skew-x-3 { + --tw-skew-x: -3deg; } - .xl\:hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .xl\:-skew-x-2 { + --tw-skew-x: -2deg; } - .xl\:hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .xl\:-skew-x-1 { + --tw-skew-x: -1deg; } - .xl\:hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .xl\:skew-y-0 { + --tw-skew-y: 0deg; } - .xl\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .xl\:skew-y-1 { + --tw-skew-y: 1deg; } - .xl\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .xl\:skew-y-2 { + --tw-skew-y: 2deg; } - .xl\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .xl\:skew-y-3 { + --tw-skew-y: 3deg; } - .xl\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .xl\:skew-y-6 { + --tw-skew-y: 6deg; } - .xl\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .xl\:skew-y-12 { + --tw-skew-y: 12deg; } - .xl\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .xl\:-skew-y-12 { + --tw-skew-y: -12deg; } - .xl\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .xl\:-skew-y-6 { + --tw-skew-y: -6deg; } - .xl\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .xl\:-skew-y-3 { + --tw-skew-y: -3deg; } - .xl\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .xl\:-skew-y-2 { + --tw-skew-y: -2deg; } - .xl\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .xl\:-skew-y-1 { + --tw-skew-y: -1deg; } - .xl\:hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .xl\:hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .xl\:hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .xl\:hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .xl\:hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .xl\:hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .xl\:hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .xl\:hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .xl\:hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .xl\:hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .xl\:hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .xl\:hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .xl\:hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .xl\:hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .xl\:hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .xl\:hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .xl\:hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .xl\:hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .xl\:hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .xl\:hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .xl\:focus\:border-transparent:focus { - border-color: transparent; + .xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .xl\:focus\:border-current:focus { - border-color: currentColor; + .xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .xl\:focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .xl\:focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .xl\:focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .xl\:focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .xl\:focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .xl\:focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .xl\:focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .xl\:focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .xl\:focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .xl\:focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .xl\:focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .xl\:focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .xl\:focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .xl\:focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .xl\:focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .xl\:focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .xl\:focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .xl\:focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .xl\:focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .xl\:focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .xl\:focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .xl\:focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .xl\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .xl\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .xl\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .xl\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .xl\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .xl\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .xl\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .xl\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .xl\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .xl\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .xl\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .xl\:scale-x-0 { + --tw-scale-x: 0; } - .xl\:focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .xl\:scale-x-50 { + --tw-scale-x: .5; } - .xl\:focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .xl\:scale-x-75 { + --tw-scale-x: .75; } - .xl\:focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .xl\:scale-x-90 { + --tw-scale-x: .9; } - .xl\:focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .xl\:scale-x-95 { + --tw-scale-x: .95; } - .xl\:focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .xl\:scale-x-100 { + --tw-scale-x: 1; } - .xl\:focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .xl\:scale-x-105 { + --tw-scale-x: 1.05; } - .xl\:focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .xl\:scale-x-110 { + --tw-scale-x: 1.1; } - .xl\:focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .xl\:scale-x-125 { + --tw-scale-x: 1.25; } - .xl\:focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .xl\:scale-x-150 { + --tw-scale-x: 1.5; } - .xl\:focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .xl\:scale-y-0 { + --tw-scale-y: 0; } - .xl\:focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .xl\:scale-y-50 { + --tw-scale-y: .5; } - .xl\:focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .xl\:scale-y-75 { + --tw-scale-y: .75; } - .xl\:focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .xl\:scale-y-90 { + --tw-scale-y: .9; } - .xl\:focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .xl\:scale-y-95 { + --tw-scale-y: .95; } - .xl\:focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .xl\:scale-y-100 { + --tw-scale-y: 1; } - .xl\:focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .xl\:scale-y-105 { + --tw-scale-y: 1.05; } - .xl\:focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .xl\:scale-y-110 { + --tw-scale-y: 1.1; } - .xl\:focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .xl\:scale-y-125 { + --tw-scale-y: 1.25; } - .xl\:focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .xl\:scale-y-150 { + --tw-scale-y: 1.5; } - .xl\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .xl\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .xl\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .xl\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .xl\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .xl\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .xl\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .xl\:focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .xl\:focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .xl\:focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .xl\:focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .xl\:focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .xl\:focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .xl\:focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .xl\:focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .xl\:focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .xl\:focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .xl\:focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .xl\:focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .xl\:focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .xl\:focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .xl\:focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .xl\:focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .xl\:focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .xl\:focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .xl\:focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .xl\:border-opacity-0 { - --tw-border-opacity: 0; + .xl\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:border-opacity-5 { - --tw-border-opacity: 0.05; + .xl\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:border-opacity-10 { - --tw-border-opacity: 0.1; + .xl\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:border-opacity-20 { - --tw-border-opacity: 0.2; + .xl\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:border-opacity-25 { - --tw-border-opacity: 0.25; + .xl\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:border-opacity-30 { - --tw-border-opacity: 0.3; + .xl\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:border-opacity-40 { - --tw-border-opacity: 0.4; + .xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:border-opacity-50 { - --tw-border-opacity: 0.5; + .xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:border-opacity-60 { - --tw-border-opacity: 0.6; + .xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:border-opacity-70 { - --tw-border-opacity: 0.7; + .xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:border-opacity-75 { - --tw-border-opacity: 0.75; + .xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .xl\:border-opacity-80 { - --tw-border-opacity: 0.8; + .xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .xl\:border-opacity-90 { - --tw-border-opacity: 0.9; + .xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .xl\:border-opacity-95 { - --tw-border-opacity: 0.95; + .xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .xl\:border-opacity-100 { - --tw-border-opacity: 1; + .xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .group:hover .xl\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0; + .xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .group:hover .xl\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; + .xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .group:hover .xl\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; + .xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .group:hover .xl\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; + .xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .group:hover .xl\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; + .xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .group:hover .xl\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; + .xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .group:hover .xl\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; + .xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .group:hover .xl\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; + .xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .group:hover .xl\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; + .xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .group:hover .xl\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; + .xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .group:hover .xl\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; + .xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .group:hover .xl\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; + .xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .group:hover .xl\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; + .xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .group:hover .xl\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; + .xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .group:hover .xl\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1; + .xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .xl\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; + .xl\:animate-none { + animation: none; } - .xl\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; + .xl\:animate-spin { + animation: spin 1s linear infinite; } - .xl\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; + .xl\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .xl\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; + .xl\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .xl\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; + .xl\:animate-bounce { + animation: bounce 1s infinite; } - .xl\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; + .xl\:cursor-auto { + cursor: auto; } - .xl\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; + .xl\:cursor-default { + cursor: default; } - .xl\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; + .xl\:cursor-pointer { + cursor: pointer; } - .xl\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; + .xl\:cursor-wait { + cursor: wait; } - .xl\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; + .xl\:cursor-text { + cursor: text; } - .xl\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; + .xl\:cursor-move { + cursor: move; } - .xl\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; + .xl\:cursor-help { + cursor: help; } - .xl\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; + .xl\:cursor-not-allowed { + cursor: not-allowed; } - .xl\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; + .xl\:select-none { + user-select: none; } - .xl\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; + .xl\:select-text { + user-select: text; } - .xl\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0; + .xl\:select-all { + user-select: all; } - .xl\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; + .xl\:select-auto { + user-select: auto; } - .xl\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; + .xl\:resize-none { + resize: none; } - .xl\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; + .xl\:resize-y { + resize: vertical; } - .xl\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; + .xl\:resize-x { + resize: horizontal; } - .xl\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; + .xl\:resize { + resize: both; } - .xl\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; + .xl\:list-inside { + list-style-position: inside; } - .xl\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; + .xl\:list-outside { + list-style-position: outside; } - .xl\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; + .xl\:list-none { + list-style-type: none; } - .xl\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; + .xl\:list-disc { + list-style-type: disc; } - .xl\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; + .xl\:list-decimal { + list-style-type: decimal; } - .xl\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; + .xl\:appearance-none { + appearance: none; } - .xl\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; + .xl\:auto-cols-auto { + grid-auto-columns: auto; } - .xl\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; + .xl\:auto-cols-min { + grid-auto-columns: min-content; } - .xl\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1; + .xl\:auto-cols-max { + grid-auto-columns: max-content; } - .xl\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0; + .xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .xl\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; + .xl\:grid-flow-row { + grid-auto-flow: row; } - .xl\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; + .xl\:grid-flow-col { + grid-auto-flow: column; } - .xl\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; + .xl\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .xl\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; + .xl\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .xl\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; + .xl\:auto-rows-auto { + grid-auto-rows: auto; } - .xl\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; + .xl\:auto-rows-min { + grid-auto-rows: min-content; } - .xl\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; + .xl\:auto-rows-max { + grid-auto-rows: max-content; } - .xl\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; + .xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .xl\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; + .xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .xl\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; + .xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .xl\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; + .xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .xl\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; + .xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .xl\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; + .xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .xl\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1; + .xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .xl\:rounded-none { - border-radius: 0px; + .xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .xl\:rounded-sm { - border-radius: 0.125rem; + .xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .xl\:rounded { - border-radius: 0.25rem; + .xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .xl\:rounded-md { - border-radius: 0.375rem; + .xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .xl\:rounded-lg { - border-radius: 0.5rem; + .xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .xl\:rounded-xl { - border-radius: 0.75rem; + .xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .xl\:rounded-2xl { - border-radius: 1rem; + .xl\:grid-cols-none { + grid-template-columns: none; } - .xl\:rounded-3xl { - border-radius: 1.5rem; + .xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .xl\:rounded-full { - border-radius: 9999px; + .xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .xl\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .xl\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .xl\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .xl\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .xl\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .xl\:grid-rows-none { + grid-template-rows: none; } - .xl\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .xl\:flex-row { + flex-direction: row; } - .xl\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .xl\:flex-row-reverse { + flex-direction: row-reverse; } - .xl\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .xl\:flex-col { + flex-direction: column; } - .xl\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .xl\:flex-col-reverse { + flex-direction: column-reverse; } - .xl\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .xl\:flex-wrap { + flex-wrap: wrap; } - .xl\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse; } - .xl\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .xl\:flex-nowrap { + flex-wrap: nowrap; } - .xl\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .xl\:place-content-center { + place-content: center; } - .xl\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .xl\:place-content-start { + place-content: start; } - .xl\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .xl\:place-content-end { + place-content: end; } - .xl\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .xl\:place-content-between { + place-content: space-between; } - .xl\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .xl\:place-content-around { + place-content: space-around; } - .xl\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .xl\:place-content-evenly { + place-content: space-evenly; } - .xl\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .xl\:place-content-stretch { + place-content: stretch; } - .xl\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .xl\:place-items-start { + place-items: start; } - .xl\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .xl\:place-items-end { + place-items: end; } - .xl\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .xl\:place-items-center { + place-items: center; } - .xl\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .xl\:place-items-stretch { + place-items: stretch; } - .xl\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .xl\:content-center { + align-content: center; } - .xl\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .xl\:content-start { + align-content: flex-start; } - .xl\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .xl\:content-end { + align-content: flex-end; } - .xl\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .xl\:content-between { + align-content: space-between; } - .xl\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .xl\:content-around { + align-content: space-around; } - .xl\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .xl\:content-evenly { + align-content: space-evenly; } - .xl\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .xl\:items-start { + align-items: flex-start; } - .xl\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .xl\:items-end { + align-items: flex-end; } - .xl\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .xl\:items-center { + align-items: center; } - .xl\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .xl\:items-baseline { + align-items: baseline; } - .xl\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .xl\:items-stretch { + align-items: stretch; } - .xl\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .xl\:justify-start { + justify-content: flex-start; } - .xl\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .xl\:justify-end { + justify-content: flex-end; } - .xl\:rounded-tl-none { - border-top-left-radius: 0px; + .xl\:justify-center { + justify-content: center; } - .xl\:rounded-tr-none { - border-top-right-radius: 0px; + .xl\:justify-between { + justify-content: space-between; + } + + .xl\:justify-around { + justify-content: space-around; } - .xl\:rounded-br-none { - border-bottom-right-radius: 0px; + .xl\:justify-evenly { + justify-content: space-evenly; } - .xl\:rounded-bl-none { - border-bottom-left-radius: 0px; + .xl\:justify-items-start { + justify-items: start; } - .xl\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .xl\:justify-items-end { + justify-items: end; } - .xl\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .xl\:justify-items-center { + justify-items: center; } - .xl\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .xl\:justify-items-stretch { + justify-items: stretch; } - .xl\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .xl\:gap-0 { + gap: 0px; } - .xl\:rounded-tl { - border-top-left-radius: 0.25rem; + .xl\:gap-1 { + gap: 0.25rem; } - .xl\:rounded-tr { - border-top-right-radius: 0.25rem; + .xl\:gap-2 { + gap: 0.5rem; } - .xl\:rounded-br { - border-bottom-right-radius: 0.25rem; + .xl\:gap-3 { + gap: 0.75rem; } - .xl\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .xl\:gap-4 { + gap: 1rem; } - .xl\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .xl\:gap-5 { + gap: 1.25rem; } - .xl\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .xl\:gap-6 { + gap: 1.5rem; } - .xl\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .xl\:gap-7 { + gap: 1.75rem; } - .xl\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .xl\:gap-8 { + gap: 2rem; } - .xl\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .xl\:gap-9 { + gap: 2.25rem; } - .xl\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .xl\:gap-10 { + gap: 2.5rem; } - .xl\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .xl\:gap-11 { + gap: 2.75rem; } - .xl\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .xl\:gap-12 { + gap: 3rem; } - .xl\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .xl\:gap-14 { + gap: 3.5rem; } - .xl\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .xl\:gap-16 { + gap: 4rem; } - .xl\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .xl\:gap-20 { + gap: 5rem; } - .xl\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .xl\:gap-24 { + gap: 6rem; } - .xl\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .xl\:gap-28 { + gap: 7rem; } - .xl\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .xl\:gap-32 { + gap: 8rem; } - .xl\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .xl\:gap-36 { + gap: 9rem; } - .xl\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .xl\:gap-40 { + gap: 10rem; } - .xl\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .xl\:gap-44 { + gap: 11rem; } - .xl\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .xl\:gap-48 { + gap: 12rem; } - .xl\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .xl\:gap-52 { + gap: 13rem; } - .xl\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .xl\:gap-56 { + gap: 14rem; } - .xl\:rounded-tl-full { - border-top-left-radius: 9999px; + .xl\:gap-60 { + gap: 15rem; } - .xl\:rounded-tr-full { - border-top-right-radius: 9999px; + .xl\:gap-64 { + gap: 16rem; } - .xl\:rounded-br-full { - border-bottom-right-radius: 9999px; + .xl\:gap-72 { + gap: 18rem; } - .xl\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .xl\:gap-80 { + gap: 20rem; } - .xl\:border-solid { - border-style: solid; + .xl\:gap-96 { + gap: 24rem; } - .xl\:border-dashed { - border-style: dashed; + .xl\:gap-px { + gap: 1px; } - .xl\:border-dotted { - border-style: dotted; + .xl\:gap-0\.5 { + gap: 0.125rem; } - .xl\:border-double { - border-style: double; + .xl\:gap-1\.5 { + gap: 0.375rem; } - .xl\:border-none { - border-style: none; + .xl\:gap-2\.5 { + gap: 0.625rem; } - .xl\:border-0 { - border-width: 0px; + .xl\:gap-3\.5 { + gap: 0.875rem; } - .xl\:border-2 { - border-width: 2px; + .xl\:gap-x-0 { + column-gap: 0px; } - .xl\:border-4 { - border-width: 4px; + .xl\:gap-x-1 { + column-gap: 0.25rem; } - .xl\:border-8 { - border-width: 8px; + .xl\:gap-x-2 { + column-gap: 0.5rem; } - .xl\:border { - border-width: 1px; + .xl\:gap-x-3 { + column-gap: 0.75rem; } - .xl\:border-t-0 { - border-top-width: 0px; + .xl\:gap-x-4 { + column-gap: 1rem; } - .xl\:border-r-0 { - border-right-width: 0px; + .xl\:gap-x-5 { + column-gap: 1.25rem; } - .xl\:border-b-0 { - border-bottom-width: 0px; + .xl\:gap-x-6 { + column-gap: 1.5rem; } - .xl\:border-l-0 { - border-left-width: 0px; + .xl\:gap-x-7 { + column-gap: 1.75rem; } - .xl\:border-t-2 { - border-top-width: 2px; + .xl\:gap-x-8 { + column-gap: 2rem; } - .xl\:border-r-2 { - border-right-width: 2px; + .xl\:gap-x-9 { + column-gap: 2.25rem; } - .xl\:border-b-2 { - border-bottom-width: 2px; + .xl\:gap-x-10 { + column-gap: 2.5rem; } - .xl\:border-l-2 { - border-left-width: 2px; + .xl\:gap-x-11 { + column-gap: 2.75rem; } - .xl\:border-t-4 { - border-top-width: 4px; + .xl\:gap-x-12 { + column-gap: 3rem; } - .xl\:border-r-4 { - border-right-width: 4px; + .xl\:gap-x-14 { + column-gap: 3.5rem; } - .xl\:border-b-4 { - border-bottom-width: 4px; + .xl\:gap-x-16 { + column-gap: 4rem; } - .xl\:border-l-4 { - border-left-width: 4px; + .xl\:gap-x-20 { + column-gap: 5rem; } - .xl\:border-t-8 { - border-top-width: 8px; + .xl\:gap-x-24 { + column-gap: 6rem; } - .xl\:border-r-8 { - border-right-width: 8px; + .xl\:gap-x-28 { + column-gap: 7rem; } - .xl\:border-b-8 { - border-bottom-width: 8px; + .xl\:gap-x-32 { + column-gap: 8rem; } - .xl\:border-l-8 { - border-left-width: 8px; + .xl\:gap-x-36 { + column-gap: 9rem; } - .xl\:border-t { - border-top-width: 1px; + .xl\:gap-x-40 { + column-gap: 10rem; } - .xl\:border-r { - border-right-width: 1px; + .xl\:gap-x-44 { + column-gap: 11rem; } - .xl\:border-b { - border-bottom-width: 1px; + .xl\:gap-x-48 { + column-gap: 12rem; } - .xl\:border-l { - border-left-width: 1px; + .xl\:gap-x-52 { + column-gap: 13rem; } - .xl\:decoration-slice { - box-decoration-break: slice; + .xl\:gap-x-56 { + column-gap: 14rem; } - .xl\:decoration-clone { - box-decoration-break: clone; + .xl\:gap-x-60 { + column-gap: 15rem; } - .xl\:box-border { - box-sizing: border-box; + .xl\:gap-x-64 { + column-gap: 16rem; } - .xl\:box-content { - box-sizing: content-box; + .xl\:gap-x-72 { + column-gap: 18rem; } - .xl\:cursor-auto { - cursor: auto; + .xl\:gap-x-80 { + column-gap: 20rem; } - .xl\:cursor-default { - cursor: default; + .xl\:gap-x-96 { + column-gap: 24rem; } - .xl\:cursor-pointer { - cursor: pointer; + .xl\:gap-x-px { + column-gap: 1px; } - .xl\:cursor-wait { - cursor: wait; + .xl\:gap-x-0\.5 { + column-gap: 0.125rem; } - .xl\:cursor-text { - cursor: text; + .xl\:gap-x-1\.5 { + column-gap: 0.375rem; } - .xl\:cursor-move { - cursor: move; + .xl\:gap-x-2\.5 { + column-gap: 0.625rem; } - .xl\:cursor-help { - cursor: help; + .xl\:gap-x-3\.5 { + column-gap: 0.875rem; } - .xl\:cursor-not-allowed { - cursor: not-allowed; + .xl\:gap-y-0 { + row-gap: 0px; } - .xl\:block { - display: block; + .xl\:gap-y-1 { + row-gap: 0.25rem; } - .xl\:inline-block { - display: inline-block; + .xl\:gap-y-2 { + row-gap: 0.5rem; } - .xl\:inline { - display: inline; + .xl\:gap-y-3 { + row-gap: 0.75rem; } - .xl\:flex { - display: flex; + .xl\:gap-y-4 { + row-gap: 1rem; } - .xl\:inline-flex { - display: inline-flex; + .xl\:gap-y-5 { + row-gap: 1.25rem; } - .xl\:table { - display: table; + .xl\:gap-y-6 { + row-gap: 1.5rem; } - .xl\:inline-table { - display: inline-table; + .xl\:gap-y-7 { + row-gap: 1.75rem; } - .xl\:table-caption { - display: table-caption; + .xl\:gap-y-8 { + row-gap: 2rem; } - .xl\:table-cell { - display: table-cell; + .xl\:gap-y-9 { + row-gap: 2.25rem; } - .xl\:table-column { - display: table-column; + .xl\:gap-y-10 { + row-gap: 2.5rem; } - .xl\:table-column-group { - display: table-column-group; + .xl\:gap-y-11 { + row-gap: 2.75rem; } - .xl\:table-footer-group { - display: table-footer-group; + .xl\:gap-y-12 { + row-gap: 3rem; } - .xl\:table-header-group { - display: table-header-group; + .xl\:gap-y-14 { + row-gap: 3.5rem; } - .xl\:table-row-group { - display: table-row-group; + .xl\:gap-y-16 { + row-gap: 4rem; } - .xl\:table-row { - display: table-row; + .xl\:gap-y-20 { + row-gap: 5rem; } - .xl\:flow-root { - display: flow-root; + .xl\:gap-y-24 { + row-gap: 6rem; } - .xl\:grid { - display: grid; + .xl\:gap-y-28 { + row-gap: 7rem; } - .xl\:inline-grid { - display: inline-grid; + .xl\:gap-y-32 { + row-gap: 8rem; } - .xl\:contents { - display: contents; + .xl\:gap-y-36 { + row-gap: 9rem; } - .xl\:list-item { - display: list-item; + .xl\:gap-y-40 { + row-gap: 10rem; } - .xl\:hidden { - display: none; + .xl\:gap-y-44 { + row-gap: 11rem; } - .xl\:flex-row { - flex-direction: row; + .xl\:gap-y-48 { + row-gap: 12rem; } - .xl\:flex-row-reverse { - flex-direction: row-reverse; + .xl\:gap-y-52 { + row-gap: 13rem; } - .xl\:flex-col { - flex-direction: column; + .xl\:gap-y-56 { + row-gap: 14rem; } - .xl\:flex-col-reverse { - flex-direction: column-reverse; + .xl\:gap-y-60 { + row-gap: 15rem; } - .xl\:flex-wrap { - flex-wrap: wrap; + .xl\:gap-y-64 { + row-gap: 16rem; } - .xl\:flex-wrap-reverse { - flex-wrap: wrap-reverse; + .xl\:gap-y-72 { + row-gap: 18rem; } - .xl\:flex-nowrap { - flex-wrap: nowrap; + .xl\:gap-y-80 { + row-gap: 20rem; } - .xl\:place-items-start { - place-items: start; + .xl\:gap-y-96 { + row-gap: 24rem; } - .xl\:place-items-end { - place-items: end; + .xl\:gap-y-px { + row-gap: 1px; } - .xl\:place-items-center { - place-items: center; + .xl\:gap-y-0\.5 { + row-gap: 0.125rem; } - .xl\:place-items-stretch { - place-items: stretch; + .xl\:gap-y-1\.5 { + row-gap: 0.375rem; } - .xl\:place-content-center { - place-content: center; + .xl\:gap-y-2\.5 { + row-gap: 0.625rem; } - .xl\:place-content-start { - place-content: start; + .xl\:gap-y-3\.5 { + row-gap: 0.875rem; } - .xl\:place-content-end { - place-content: end; + .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\:place-content-between { - place-content: space-between; + .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\:place-content-around { - place-content: space-around; + .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\:place-content-evenly { - place-content: space-evenly; + .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\:place-content-stretch { - place-content: stretch; + .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\:place-self-auto { - place-self: auto; + .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\:place-self-start { - place-self: start; + .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\:place-self-end { - place-self: end; + .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\:place-self-center { - place-self: center; + .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\:place-self-stretch { - place-self: stretch; + .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\:items-start { - align-items: flex-start; + .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\:items-end { - align-items: flex-end; + .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\:items-center { - align-items: center; + .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\:items-baseline { - align-items: baseline; + .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\:items-stretch { - align-items: stretch; + .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\:content-center { - align-content: center; + .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\:content-start { - align-content: flex-start; + .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\:content-end { - align-content: flex-end; + .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\:content-between { - align-content: space-between; + .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\:content-around { - align-content: space-around; + .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\:content-evenly { - align-content: space-evenly; + .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\:self-auto { - align-self: auto; + .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\:self-start { - align-self: flex-start; + .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\:self-end { - align-self: flex-end; + .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\:self-center { - align-self: center; + .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\:self-stretch { - align-self: stretch; + .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\:justify-items-start { - justify-items: start; + .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\:justify-items-end { - justify-items: end; + .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\:justify-items-center { - justify-items: center; + .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\:justify-items-stretch { - justify-items: stretch; + .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\:justify-start { - justify-content: flex-start; + .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\:justify-end { - justify-content: flex-end; + .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\:justify-center { - justify-content: center; + .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\:justify-between { - justify-content: space-between; + .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\:justify-around { - justify-content: space-around; + .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\:justify-evenly { - justify-content: space-evenly; + .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\:justify-self-auto { - justify-self: auto; + .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\:justify-self-start { - justify-self: start; + .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\:justify-self-end { - justify-self: end; + .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\:justify-self-center { - justify-self: center; + .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\:justify-self-stretch { - justify-self: stretch; + .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\:flex-1 { - flex: 1 1 0%; + .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\:flex-auto { - flex: 1 1 auto; + .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\:flex-initial { - flex: 0 1 auto; + .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\:flex-none { - flex: none; + .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\:flex-grow-0 { - flex-grow: 0; + .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\:flex-grow { - flex-grow: 1; + .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\:flex-shrink-0 { - flex-shrink: 0; + .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\:flex-shrink { - flex-shrink: 1; + .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\:order-1 { - order: 1; + .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\:order-2 { - order: 2; + .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\:order-3 { - order: 3; + .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\:order-4 { - order: 4; + .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\:order-5 { - order: 5; + .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\:order-6 { - order: 6; + .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\:order-7 { - order: 7; + .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\:order-8 { - order: 8; + .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\:order-9 { - order: 9; + .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\:order-10 { - order: 10; + .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\:order-11 { - order: 11; + .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\:order-12 { - order: 12; + .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\:order-first { - order: -9999; + .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\:order-last { - order: 9999; + .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\:order-none { - order: 0; + .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\:float-right { - float: right; + .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\:float-left { - float: left; + .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\:float-none { - float: none; + .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\:clear-left { - clear: left; + .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\:clear-right { - clear: right; + .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\:clear-both { - clear: both; + .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\:clear-none { - clear: none; + .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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .xl\:-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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .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\:font-thin { - font-weight: 100; + .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\:font-extralight { - font-weight: 200; + .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\:font-light { - font-weight: 300; + .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\:font-normal { - font-weight: 400; + .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\:font-medium { - font-weight: 500; + .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\:font-semibold { - font-weight: 600; + .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\:font-bold { - font-weight: 700; + .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\:font-extrabold { - font-weight: 800; + .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\:font-black { - font-weight: 900; + .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\:h-0 { - height: 0px; + .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\:h-1 { - height: 0.25rem; + .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\:h-2 { - height: 0.5rem; + .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\:h-3 { - height: 0.75rem; + .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\:h-4 { - height: 1rem; + .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\:h-5 { - height: 1.25rem; + .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\:h-6 { - height: 1.5rem; + .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\:h-7 { - height: 1.75rem; + .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\:h-8 { - height: 2rem; + .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\:h-9 { - height: 2.25rem; + .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\:h-10 { - height: 2.5rem; + .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\:h-11 { - height: 2.75rem; + .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\:h-12 { - height: 3rem; + .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\:h-14 { - height: 3.5rem; + .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\:h-16 { - height: 4rem; + .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\:h-20 { - height: 5rem; + .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\:h-24 { - height: 6rem; + .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\:h-28 { - height: 7rem; + .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\:h-32 { - height: 8rem; + .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\:h-36 { - height: 9rem; + .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\:h-40 { - height: 10rem; + .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\:h-44 { - height: 11rem; + .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\:h-48 { - height: 12rem; + .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\:h-52 { - height: 13rem; + .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\:h-56 { - height: 14rem; + .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\:h-60 { - height: 15rem; + .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\:h-64 { - height: 16rem; + .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\:h-72 { - height: 18rem; + .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\:h-80 { - height: 20rem; + .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\:h-96 { - height: 24rem; + .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\:h-auto { - height: auto; + .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\:h-px { - height: 1px; + .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\:h-0\.5 { - height: 0.125rem; + .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\:h-1\.5 { - height: 0.375rem; + .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\:h-2\.5 { - height: 0.625rem; + .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\:h-3\.5 { - height: 0.875rem; + .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\:h-1\/2 { - height: 50%; + .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\:h-1\/3 { - height: 33.333333%; + .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\:h-2\/3 { - height: 66.666667%; + .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\:h-1\/4 { - height: 25%; + .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\:h-2\/4 { - height: 50%; + .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\:h-3\/4 { - height: 75%; + .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\:h-1\/5 { - height: 20%; + .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\:h-2\/5 { - height: 40%; + .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\:h-3\/5 { - height: 60%; + .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\:h-4\/5 { - height: 80%; + .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\:h-1\/6 { - height: 16.666667%; + .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\:h-2\/6 { - height: 33.333333%; + .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\:h-3\/6 { - height: 50%; + .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\:h-4\/6 { - height: 66.666667%; + .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\:h-5\/6 { - height: 83.333333%; + .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\:h-full { - height: 100%; + .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\:h-screen { - height: 100vh; + .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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .xl\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .xl\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .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\:text-5xl { - font-size: 3rem; - line-height: 1; + .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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .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\:text-8xl { - font-size: 6rem; - line-height: 1; + .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\:text-9xl { - font-size: 8rem; - line-height: 1; + .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\:leading-3 { - line-height: .75rem; + .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\:leading-4 { - line-height: 1rem; + .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\:leading-5 { - line-height: 1.25rem; + .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\:leading-6 { - line-height: 1.5rem; + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .xl\:leading-7 { - line-height: 1.75rem; + .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .xl\:leading-8 { - line-height: 2rem; + .xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .xl\:leading-9 { - line-height: 2.25rem; + .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .xl\:leading-10 { - line-height: 2.5rem; + .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .xl\:leading-none { - line-height: 1; + .xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .xl\:leading-tight { - line-height: 1.25; + .xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .xl\:leading-snug { - line-height: 1.375; + .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .xl\:leading-normal { - line-height: 1.5; + .xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .xl\:leading-relaxed { - line-height: 1.625; + .xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } - .xl\:leading-loose { - line-height: 2; + .xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } - .xl\:list-inside { - list-style-position: inside; + .xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } - .xl\:list-outside { - list-style-position: outside; + .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } - .xl\:list-none { - list-style-type: none; + .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } - .xl\:list-disc { - list-style-type: disc; + .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } - .xl\:list-decimal { - list-style-type: decimal; + .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } - .xl\:m-0 { - margin: 0px; + .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } - .xl\:m-1 { - margin: 0.25rem; + .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } - .xl\:m-2 { - margin: 0.5rem; + .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } - .xl\:m-3 { - margin: 0.75rem; + .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } - .xl\:m-4 { - margin: 1rem; + .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } - .xl\:m-5 { - margin: 1.25rem; + .xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } - .xl\:m-6 { - margin: 1.5rem; + .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } - .xl\:m-7 { - margin: 1.75rem; + .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } - .xl\:m-8 { - margin: 2rem; + .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } - .xl\:m-9 { - margin: 2.25rem; + .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } - .xl\:m-10 { - margin: 2.5rem; + .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } - .xl\:m-11 { - margin: 2.75rem; + .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } - .xl\:m-12 { - margin: 3rem; + .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } - .xl\:m-14 { - margin: 3.5rem; + .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } - .xl\:m-16 { - margin: 4rem; + .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } - .xl\:m-20 { - margin: 5rem; + .xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } - .xl\:m-24 { - margin: 6rem; + .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } - .xl\:m-28 { - margin: 7rem; + .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } - .xl\:m-32 { - margin: 8rem; + .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } - .xl\:m-36 { - margin: 9rem; + .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } - .xl\:m-40 { - margin: 10rem; + .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } - .xl\:m-44 { - margin: 11rem; + .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } - .xl\:m-48 { - margin: 12rem; + .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } - .xl\:m-52 { - margin: 13rem; + .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } - .xl\:m-56 { - margin: 14rem; + .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } - .xl\:m-60 { - margin: 15rem; + .xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } - .xl\:m-64 { - margin: 16rem; + .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } - .xl\:m-72 { - margin: 18rem; + .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } - .xl\:m-80 { - margin: 20rem; + .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } - .xl\:m-96 { - margin: 24rem; + .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } - .xl\:m-auto { - margin: auto; + .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } - .xl\:m-px { - margin: 1px; + .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } - .xl\:m-0\.5 { - margin: 0.125rem; + .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } - .xl\:m-1\.5 { - margin: 0.375rem; + .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } - .xl\:m-2\.5 { - margin: 0.625rem; + .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } - .xl\:m-3\.5 { - margin: 0.875rem; + .xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } - .xl\:-m-0 { - margin: 0px; + .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } - .xl\:-m-1 { - margin: -0.25rem; + .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } - .xl\:-m-2 { - margin: -0.5rem; + .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } - .xl\:-m-3 { - margin: -0.75rem; + .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } - .xl\:-m-4 { - margin: -1rem; + .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } - .xl\:-m-5 { - margin: -1.25rem; + .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } - .xl\:-m-6 { - margin: -1.5rem; + .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } - .xl\:-m-7 { - margin: -1.75rem; + .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } - .xl\:-m-8 { - margin: -2rem; + .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } - .xl\:-m-9 { - margin: -2.25rem; + .xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } - .xl\:-m-10 { - margin: -2.5rem; + .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } - .xl\:-m-11 { - margin: -2.75rem; + .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } - .xl\:-m-12 { - margin: -3rem; + .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } - .xl\:-m-14 { - margin: -3.5rem; + .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } - .xl\:-m-16 { - margin: -4rem; + .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } - .xl\:-m-20 { - margin: -5rem; + .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } - .xl\:-m-24 { - margin: -6rem; + .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } - .xl\:-m-28 { - margin: -7rem; + .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } - .xl\:-m-32 { - margin: -8rem; + .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } - .xl\:-m-36 { - margin: -9rem; + .xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } - .xl\:-m-40 { - margin: -10rem; + .xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } - .xl\:-m-44 { - margin: -11rem; + .xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } - .xl\:-m-48 { - margin: -12rem; + .xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } - .xl\:-m-52 { - margin: -13rem; + .xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } - .xl\:-m-56 { - margin: -14rem; + .xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } - .xl\:-m-60 { - margin: -15rem; + .xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } - .xl\:-m-64 { - margin: -16rem; + .xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } - .xl\:-m-72 { - margin: -18rem; + .xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } - .xl\:-m-80 { - margin: -20rem; + .xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } - .xl\:-m-96 { - margin: -24rem; + .xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } - .xl\:-m-px { - margin: -1px; + .xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } - .xl\:-m-0\.5 { - margin: -0.125rem; + .xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } - .xl\:-m-1\.5 { - margin: -0.375rem; + .xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } - .xl\:-m-2\.5 { - margin: -0.625rem; + .xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } - .xl\:-m-3\.5 { - margin: -0.875rem; + .xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } - .xl\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } - .xl\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } - .xl\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } - .xl\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } - .xl\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } - .xl\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } - .xl\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } - .xl\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } - .xl\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } - .xl\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } - .xl\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } - .xl\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } - .xl\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } - .xl\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } - .xl\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } - .xl\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } - .xl\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } - .xl\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } - .xl\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } - .xl\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .xl\:place-self-auto { + place-self: auto; } - .xl\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .xl\:place-self-start { + place-self: start; } - .xl\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .xl\:place-self-end { + place-self: end; } - .xl\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .xl\:place-self-center { + place-self: center; } - .xl\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .xl\:place-self-stretch { + place-self: stretch; } - .xl\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .xl\:self-auto { + align-self: auto; } - .xl\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .xl\:self-start { + align-self: flex-start; } - .xl\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .xl\:self-end { + align-self: flex-end; } - .xl\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .xl\:self-center { + align-self: center; } - .xl\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .xl\:self-stretch { + align-self: stretch; } - .xl\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .xl\:justify-self-auto { + justify-self: auto; } - .xl\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .xl\:justify-self-start { + justify-self: start; } - .xl\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .xl\:justify-self-end { + justify-self: end; } - .xl\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .xl\:justify-self-center { + justify-self: center; } - .xl\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .xl\:justify-self-stretch { + justify-self: stretch; } - .xl\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .xl\:overflow-auto { + overflow: auto; } - .xl\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .xl\:overflow-hidden { + overflow: hidden; } - .xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .xl\:overflow-visible { + overflow: visible; } - .xl\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .xl\:overflow-scroll { + overflow: scroll; } - .xl\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .xl\:overflow-x-auto { + overflow-x: auto; } - .xl\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .xl\:overflow-y-auto { + overflow-y: auto; } - .xl\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .xl\:overflow-x-hidden { + overflow-x: hidden; } - .xl\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .xl\:overflow-y-hidden { + overflow-y: hidden; } - .xl\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .xl\:overflow-x-visible { + overflow-x: visible; } - .xl\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .xl\:overflow-y-visible { + overflow-y: visible; } - .xl\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .xl\:overflow-x-scroll { + overflow-x: scroll; } - .xl\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .xl\:overflow-y-scroll { + overflow-y: scroll; } - .xl\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .xl\:overscroll-auto { + overscroll-behavior: auto; } - .xl\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .xl\:overscroll-contain { + overscroll-behavior: contain; } - .xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .xl\:overscroll-none { + overscroll-behavior: none; } - .xl\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .xl\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .xl\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .xl\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .xl\:overscroll-y-none { + overscroll-behavior-y: none; } - .xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .xl\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .xl\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .xl\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .xl\:overscroll-x-none { + overscroll-behavior-x: none; } - .xl\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .xl\:overflow-ellipsis { + text-overflow: ellipsis; } - .xl\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .xl\:overflow-clip { + text-overflow: clip; } - .xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .xl\:whitespace-normal { + white-space: normal; } - .xl\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .xl\:whitespace-nowrap { + white-space: nowrap; } - .xl\:my-auto { - margin-top: auto; - margin-bottom: auto; + .xl\:whitespace-pre { + white-space: pre; } - .xl\:mx-auto { - margin-left: auto; - margin-right: auto; + .xl\:whitespace-pre-line { + white-space: pre-line; } - .xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .xl\:whitespace-pre-wrap { + white-space: pre-wrap; } - .xl\:mx-px { - margin-left: 1px; - margin-right: 1px; + .xl\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .xl\:break-words { + overflow-wrap: break-word; } - .xl\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .xl\:break-all { + word-break: break-all; } - .xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .xl\:rounded-none { + border-radius: 0px; } - .xl\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .xl\:rounded-sm { + border-radius: 0.125rem; } - .xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .xl\:rounded { + border-radius: 0.25rem; } - .xl\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .xl\:rounded-md { + border-radius: 0.375rem; } - .xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .xl\:rounded-lg { + border-radius: 0.5rem; } - .xl\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .xl\:rounded-xl { + border-radius: 0.75rem; } - .xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .xl\:rounded-2xl { + border-radius: 1rem; } - .xl\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .xl\:rounded-3xl { + border-radius: 1.5rem; } - .xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .xl\:rounded-full { + border-radius: 9999px; } - .xl\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .xl\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .xl\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .xl\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .xl\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .xl\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .xl\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .xl\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .xl\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .xl\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .xl\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .xl\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .xl\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .xl\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .xl\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .xl\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .xl\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .xl\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .xl\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .xl\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .xl\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .xl\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .xl\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .xl\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .xl\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .xl\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .xl\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .xl\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .xl\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .xl\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .xl\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .xl\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .xl\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .xl\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .xl\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .xl\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .xl\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .xl\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .xl\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .xl\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .xl\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .xl\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .xl\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .xl\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .xl\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .xl\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .xl\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .xl\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .xl\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .xl\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .xl\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .xl\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .xl\:rounded-tl-none { + border-top-left-radius: 0px; } - .xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .xl\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .xl\:rounded-tl { + border-top-left-radius: 0.25rem; } - .xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .xl\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .xl\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .xl\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .xl\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .xl\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .xl\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .xl\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .xl\:rounded-tl-full { + border-top-left-radius: 9999px; } - .xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .xl\:rounded-tr-none { + border-top-right-radius: 0px; } - .xl\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .xl\:rounded-tr { + border-top-right-radius: 0.25rem; } - .xl\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .xl\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .xl\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .xl\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .xl\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .xl\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .xl\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .xl\:rounded-tr-full { + border-top-right-radius: 9999px; } - .xl\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .xl\:rounded-br-none { + border-bottom-right-radius: 0px; } - .xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .xl\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .xl\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .xl\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .xl\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .xl\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .xl\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .xl\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .xl\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .xl\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .xl\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .xl\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .xl\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .xl\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .xl\:mt-0 { - margin-top: 0px; + .xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .xl\:mr-0 { - margin-right: 0px; + .xl\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .xl\:mb-0 { - margin-bottom: 0px; + .xl\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .xl\:ml-0 { - margin-left: 0px; + .xl\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .xl\:mt-1 { - margin-top: 0.25rem; + .xl\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .xl\:mr-1 { - margin-right: 0.25rem; + .xl\:border-0 { + border-width: 0px; } - .xl\:mb-1 { - margin-bottom: 0.25rem; + .xl\:border-2 { + border-width: 2px; } - .xl\:ml-1 { - margin-left: 0.25rem; + .xl\:border-4 { + border-width: 4px; } - .xl\:mt-2 { - margin-top: 0.5rem; + .xl\:border-8 { + border-width: 8px; } - .xl\:mr-2 { - margin-right: 0.5rem; + .xl\:border { + border-width: 1px; } - .xl\:mb-2 { - margin-bottom: 0.5rem; + .xl\:border-t-0 { + border-top-width: 0px; } - .xl\:ml-2 { - margin-left: 0.5rem; + .xl\:border-t-2 { + border-top-width: 2px; } - .xl\:mt-3 { - margin-top: 0.75rem; + .xl\:border-t-4 { + border-top-width: 4px; } - .xl\:mr-3 { - margin-right: 0.75rem; + .xl\:border-t-8 { + border-top-width: 8px; } - .xl\:mb-3 { - margin-bottom: 0.75rem; + .xl\:border-t { + border-top-width: 1px; } - .xl\:ml-3 { - margin-left: 0.75rem; + .xl\:border-r-0 { + border-right-width: 0px; } - .xl\:mt-4 { - margin-top: 1rem; + .xl\:border-r-2 { + border-right-width: 2px; } - .xl\:mr-4 { - margin-right: 1rem; + .xl\:border-r-4 { + border-right-width: 4px; } - .xl\:mb-4 { - margin-bottom: 1rem; + .xl\:border-r-8 { + border-right-width: 8px; } - .xl\:ml-4 { - margin-left: 1rem; + .xl\:border-r { + border-right-width: 1px; } - .xl\:mt-5 { - margin-top: 1.25rem; + .xl\:border-b-0 { + border-bottom-width: 0px; } - .xl\:mr-5 { - margin-right: 1.25rem; + .xl\:border-b-2 { + border-bottom-width: 2px; } - .xl\:mb-5 { - margin-bottom: 1.25rem; + .xl\:border-b-4 { + border-bottom-width: 4px; } - .xl\:ml-5 { - margin-left: 1.25rem; + .xl\:border-b-8 { + border-bottom-width: 8px; } - .xl\:mt-6 { - margin-top: 1.5rem; + .xl\:border-b { + border-bottom-width: 1px; } - .xl\:mr-6 { - margin-right: 1.5rem; + .xl\:border-l-0 { + border-left-width: 0px; } - .xl\:mb-6 { - margin-bottom: 1.5rem; + .xl\:border-l-2 { + border-left-width: 2px; } - .xl\:ml-6 { - margin-left: 1.5rem; + .xl\:border-l-4 { + border-left-width: 4px; } - .xl\:mt-7 { - margin-top: 1.75rem; + .xl\:border-l-8 { + border-left-width: 8px; } - .xl\:mr-7 { - margin-right: 1.75rem; + .xl\:border-l { + border-left-width: 1px; } - .xl\:mb-7 { - margin-bottom: 1.75rem; + .xl\:border-solid { + border-style: solid; } - .xl\:ml-7 { - margin-left: 1.75rem; + .xl\:border-dashed { + border-style: dashed; } - .xl\:mt-8 { - margin-top: 2rem; + .xl\:border-dotted { + border-style: dotted; } - .xl\:mr-8 { - margin-right: 2rem; + .xl\:border-double { + border-style: double; } - .xl\:mb-8 { - margin-bottom: 2rem; + .xl\:border-none { + border-style: none; } - .xl\:ml-8 { - margin-left: 2rem; + .xl\:border-transparent { + border-color: transparent; } - .xl\:mt-9 { - margin-top: 2.25rem; + .xl\:border-current { + border-color: currentColor; } - .xl\:mr-9 { - margin-right: 2.25rem; + .xl\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .xl\:mb-9 { - margin-bottom: 2.25rem; + .xl\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .xl\:ml-9 { - margin-left: 2.25rem; + .xl\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .xl\:mt-10 { - margin-top: 2.5rem; + .xl\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .xl\:mr-10 { - margin-right: 2.5rem; + .xl\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .xl\:mb-10 { - margin-bottom: 2.5rem; + .xl\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .xl\:ml-10 { - margin-left: 2.5rem; + .xl\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .xl\:mt-11 { - margin-top: 2.75rem; + .xl\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .xl\:mr-11 { - margin-right: 2.75rem; + .xl\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .xl\:mb-11 { - margin-bottom: 2.75rem; + .xl\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .xl\:ml-11 { - margin-left: 2.75rem; + .xl\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .xl\:mt-12 { - margin-top: 3rem; + .xl\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .xl\:mr-12 { - margin-right: 3rem; + .xl\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .xl\:mb-12 { - margin-bottom: 3rem; + .xl\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .xl\:ml-12 { - margin-left: 3rem; + .xl\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .xl\:mt-14 { - margin-top: 3.5rem; + .xl\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .xl\:mr-14 { - margin-right: 3.5rem; + .xl\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .xl\:mb-14 { - margin-bottom: 3.5rem; + .xl\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .xl\:ml-14 { - margin-left: 3.5rem; + .xl\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .xl\:mt-16 { - margin-top: 4rem; + .xl\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .xl\:mr-16 { - margin-right: 4rem; + .xl\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .xl\:mb-16 { - margin-bottom: 4rem; + .xl\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .xl\:ml-16 { - margin-left: 4rem; + .xl\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .xl\:mt-20 { - margin-top: 5rem; + .xl\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .xl\:mr-20 { - margin-right: 5rem; + .xl\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .xl\:mb-20 { - margin-bottom: 5rem; + .xl\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .xl\:ml-20 { - margin-left: 5rem; + .xl\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .xl\:mt-24 { - margin-top: 6rem; + .xl\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .xl\:mr-24 { - margin-right: 6rem; + .xl\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .xl\:mb-24 { - margin-bottom: 6rem; + .xl\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .xl\:ml-24 { - margin-left: 6rem; + .xl\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .xl\:mt-28 { - margin-top: 7rem; + .xl\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .xl\:mr-28 { - margin-right: 7rem; + .xl\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .xl\:mb-28 { - margin-bottom: 7rem; + .xl\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .xl\:ml-28 { - margin-left: 7rem; + .xl\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .xl\:mt-32 { - margin-top: 8rem; + .xl\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .xl\:mr-32 { - margin-right: 8rem; + .xl\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .xl\:mb-32 { - margin-bottom: 8rem; + .xl\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .xl\:ml-32 { - margin-left: 8rem; + .xl\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .xl\:mt-36 { - margin-top: 9rem; + .xl\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .xl\:mr-36 { - margin-right: 9rem; + .xl\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .xl\:mb-36 { - margin-bottom: 9rem; + .xl\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .xl\:ml-36 { - margin-left: 9rem; + .xl\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .xl\:mt-40 { - margin-top: 10rem; + .xl\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .xl\:mr-40 { - margin-right: 10rem; + .xl\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .xl\:mb-40 { - margin-bottom: 10rem; + .xl\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .xl\:ml-40 { - margin-left: 10rem; + .xl\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .xl\:mt-44 { - margin-top: 11rem; + .xl\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .xl\:mr-44 { - margin-right: 11rem; + .xl\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .xl\:mb-44 { - margin-bottom: 11rem; + .xl\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .xl\:ml-44 { - margin-left: 11rem; + .xl\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .xl\:mt-48 { - margin-top: 12rem; + .xl\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .xl\:mr-48 { - margin-right: 12rem; + .xl\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .xl\:mb-48 { - margin-bottom: 12rem; + .xl\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .xl\:ml-48 { - margin-left: 12rem; + .xl\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .xl\:mt-52 { - margin-top: 13rem; + .xl\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .xl\:mr-52 { - margin-right: 13rem; + .xl\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .xl\:mb-52 { - margin-bottom: 13rem; + .xl\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .xl\:ml-52 { - margin-left: 13rem; + .xl\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .xl\:mt-56 { - margin-top: 14rem; + .xl\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .xl\:mr-56 { - margin-right: 14rem; + .xl\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .xl\:mb-56 { - margin-bottom: 14rem; + .xl\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .xl\:ml-56 { - margin-left: 14rem; + .xl\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .xl\:mt-60 { - margin-top: 15rem; + .xl\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .xl\:mr-60 { - margin-right: 15rem; + .xl\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .xl\:mb-60 { - margin-bottom: 15rem; + .xl\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .xl\:ml-60 { - margin-left: 15rem; + .xl\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .xl\:mt-64 { - margin-top: 16rem; + .xl\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .xl\:mr-64 { - margin-right: 16rem; + .xl\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .xl\:mb-64 { - margin-bottom: 16rem; + .xl\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .xl\:ml-64 { - margin-left: 16rem; + .xl\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .xl\:mt-72 { - margin-top: 18rem; + .xl\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .xl\:mr-72 { - margin-right: 18rem; + .xl\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .xl\:mb-72 { - margin-bottom: 18rem; + .xl\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .xl\:ml-72 { - margin-left: 18rem; + .xl\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .xl\:mt-80 { - margin-top: 20rem; + .xl\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + } + + .xl\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .xl\:mr-80 { - margin-right: 20rem; + .xl\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .xl\:mb-80 { - margin-bottom: 20rem; + .xl\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .xl\:ml-80 { - margin-left: 20rem; + .xl\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .xl\:mt-96 { - margin-top: 24rem; + .xl\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .xl\:mr-96 { - margin-right: 24rem; + .xl\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .xl\:mb-96 { - margin-bottom: 24rem; + .group:hover .xl\:group-hover\:border-transparent { + border-color: transparent; } - .xl\:ml-96 { - margin-left: 24rem; + .group:hover .xl\:group-hover\:border-current { + border-color: currentColor; } - .xl\:mt-auto { - margin-top: auto; + .group:hover .xl\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .xl\:mr-auto { - margin-right: auto; + .group:hover .xl\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .xl\:mb-auto { - margin-bottom: auto; + .group:hover .xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .xl\:ml-auto { - margin-left: auto; + .group:hover .xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .xl\:mt-px { - margin-top: 1px; + .group:hover .xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .xl\:mr-px { - margin-right: 1px; + .group:hover .xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .xl\:mb-px { - margin-bottom: 1px; + .group:hover .xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .xl\:ml-px { - margin-left: 1px; + .group:hover .xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .xl\:mt-0\.5 { - margin-top: 0.125rem; + .group:hover .xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .xl\:mr-0\.5 { - margin-right: 0.125rem; + .group:hover .xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .group:hover .xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .xl\:ml-0\.5 { - margin-left: 0.125rem; + .group:hover .xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .xl\:mt-1\.5 { - margin-top: 0.375rem; + .group:hover .xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .xl\:mr-1\.5 { - margin-right: 0.375rem; + .group:hover .xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .group:hover .xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .xl\:ml-1\.5 { - margin-left: 0.375rem; + .group:hover .xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .xl\:mt-2\.5 { - margin-top: 0.625rem; + .group:hover .xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .xl\:mr-2\.5 { - margin-right: 0.625rem; + .group:hover .xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .group:hover .xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .xl\:ml-2\.5 { - margin-left: 0.625rem; + .group:hover .xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .xl\:mt-3\.5 { - margin-top: 0.875rem; + .group:hover .xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .xl\:mr-3\.5 { - margin-right: 0.875rem; + .group:hover .xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .group:hover .xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .xl\:ml-3\.5 { - margin-left: 0.875rem; + .group:hover .xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .xl\:-mt-0 { - margin-top: 0px; + .group:hover .xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .xl\:-mr-0 { - margin-right: 0px; + .group:hover .xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .xl\:-mb-0 { - margin-bottom: 0px; + .group:hover .xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .xl\:-ml-0 { - margin-left: 0px; + .group:hover .xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .xl\:-mt-1 { - margin-top: -0.25rem; + .group:hover .xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .xl\:-mr-1 { - margin-right: -0.25rem; + .group:hover .xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .xl\:-mb-1 { - margin-bottom: -0.25rem; + .group:hover .xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .xl\:-ml-1 { - margin-left: -0.25rem; + .group:hover .xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .xl\:-mt-2 { - margin-top: -0.5rem; + .group:hover .xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .xl\:-mr-2 { - margin-right: -0.5rem; + .group:hover .xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .xl\:-mb-2 { - margin-bottom: -0.5rem; + .group:hover .xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .xl\:-ml-2 { - margin-left: -0.5rem; + .group:hover .xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .xl\:-mt-3 { - margin-top: -0.75rem; + .group:hover .xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .xl\:-mr-3 { - margin-right: -0.75rem; + .group:hover .xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .xl\:-mb-3 { - margin-bottom: -0.75rem; + .group:hover .xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .xl\:-ml-3 { - margin-left: -0.75rem; + .group:hover .xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .xl\:-mt-4 { - margin-top: -1rem; + .group:hover .xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .xl\:-mr-4 { - margin-right: -1rem; + .group:hover .xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .xl\:-mb-4 { - margin-bottom: -1rem; + .group:hover .xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .xl\:-ml-4 { - margin-left: -1rem; + .group:hover .xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .xl\:-mt-5 { - margin-top: -1.25rem; + .group:hover .xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .xl\:-mr-5 { - margin-right: -1.25rem; + .group:hover .xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .xl\:-mb-5 { - margin-bottom: -1.25rem; + .group:hover .xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .xl\:-ml-5 { - margin-left: -1.25rem; + .group:hover .xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .xl\:-mt-6 { - margin-top: -1.5rem; + .group:hover .xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .xl\:-mr-6 { - margin-right: -1.5rem; + .group:hover .xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .xl\:-mb-6 { - margin-bottom: -1.5rem; + .group:hover .xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .xl\:-ml-6 { - margin-left: -1.5rem; + .group:hover .xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .xl\:-mt-7 { - margin-top: -1.75rem; + .group:hover .xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .xl\:-mr-7 { - margin-right: -1.75rem; + .group:hover .xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .xl\:-mb-7 { - margin-bottom: -1.75rem; + .group:hover .xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .xl\:-ml-7 { - margin-left: -1.75rem; + .group:hover .xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .xl\:-mt-8 { - margin-top: -2rem; + .group:hover .xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .xl\:-mr-8 { - margin-right: -2rem; + .group:hover .xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .xl\:-mb-8 { - margin-bottom: -2rem; + .group:hover .xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .xl\:-ml-8 { - margin-left: -2rem; + .group:hover .xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .xl\:-mt-9 { - margin-top: -2.25rem; + .group:hover .xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .xl\:-mr-9 { - margin-right: -2.25rem; + .group:hover .xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .xl\:-mb-9 { - margin-bottom: -2.25rem; + .group:hover .xl\:group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .xl\:-ml-9 { - margin-left: -2.25rem; + .group:hover .xl\:group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .xl\:-mt-10 { - margin-top: -2.5rem; + .group:hover .xl\:group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .xl\:-mr-10 { - margin-right: -2.5rem; + .group:hover .xl\:group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .xl\:-mb-10 { - margin-bottom: -2.5rem; + .group:hover .xl\:group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .xl\:-ml-10 { - margin-left: -2.5rem; + .group:hover .xl\:group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .xl\:-mt-11 { - margin-top: -2.75rem; + .group:hover .xl\:group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .xl\:-mr-11 { - margin-right: -2.75rem; + .group:hover .xl\:group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .xl\:-mb-11 { - margin-bottom: -2.75rem; + .group:hover .xl\:group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .xl\:-ml-11 { - margin-left: -2.75rem; + .group:hover .xl\:group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .xl\:-mt-12 { - margin-top: -3rem; + .group:hover .xl\:group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .xl\:-mr-12 { - margin-right: -3rem; + .group:hover .xl\:group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .xl\:-mb-12 { - margin-bottom: -3rem; + .group:hover .xl\:group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .xl\:-ml-12 { - margin-left: -3rem; + .group:hover .xl\:group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .xl\:-mt-14 { - margin-top: -3.5rem; + .group:hover .xl\:group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .xl\:-mr-14 { - margin-right: -3.5rem; + .group:hover .xl\:group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .xl\:-mb-14 { - margin-bottom: -3.5rem; + .group:hover .xl\:group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .xl\:-ml-14 { - margin-left: -3.5rem; + .group:hover .xl\:group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .xl\:-mt-16 { - margin-top: -4rem; + .group:hover .xl\:group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .xl\:-mr-16 { - margin-right: -4rem; + .group:hover .xl\:group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .xl\:-mb-16 { - margin-bottom: -4rem; + .xl\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .xl\:-ml-16 { - margin-left: -4rem; + .xl\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .xl\:-mt-20 { - margin-top: -5rem; + .xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .xl\:-mr-20 { - margin-right: -5rem; + .xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .xl\:-mb-20 { - margin-bottom: -5rem; + .xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .xl\:-ml-20 { - margin-left: -5rem; + .xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .xl\:-mt-24 { - margin-top: -6rem; + .xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .xl\:-mr-24 { - margin-right: -6rem; + .xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .xl\:-mb-24 { - margin-bottom: -6rem; + .xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .xl\:-ml-24 { - margin-left: -6rem; + .xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .xl\:-mt-28 { - margin-top: -7rem; + .xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .xl\:-mr-28 { - margin-right: -7rem; + .xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .xl\:-mb-28 { - margin-bottom: -7rem; + .xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .xl\:-ml-28 { - margin-left: -7rem; + .xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .xl\:-mt-32 { - margin-top: -8rem; + .xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .xl\:-mr-32 { - margin-right: -8rem; + .xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .xl\:-mb-32 { - margin-bottom: -8rem; + .xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .xl\:-ml-32 { - margin-left: -8rem; + .xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .xl\:-mt-36 { - margin-top: -9rem; + .xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .xl\:-mr-36 { - margin-right: -9rem; + .xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .xl\:-mb-36 { - margin-bottom: -9rem; + .xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .xl\:-ml-36 { - margin-left: -9rem; + .xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .xl\:-mt-40 { - margin-top: -10rem; + .xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .xl\:-mr-40 { - margin-right: -10rem; + .xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .xl\:-mb-40 { - margin-bottom: -10rem; + .xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .xl\:-ml-40 { - margin-left: -10rem; + .xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .xl\:-mt-44 { - margin-top: -11rem; + .xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .xl\:-mr-44 { - margin-right: -11rem; + .xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .xl\:-mb-44 { - margin-bottom: -11rem; + .xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .xl\:-ml-44 { - margin-left: -11rem; + .xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .xl\:-mt-48 { - margin-top: -12rem; + .xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .xl\:-mr-48 { - margin-right: -12rem; + .xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .xl\:-mb-48 { - margin-bottom: -12rem; + .xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .xl\:-ml-48 { - margin-left: -12rem; + .xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .xl\:-mt-52 { - margin-top: -13rem; + .xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .xl\:-mr-52 { - margin-right: -13rem; + .xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .xl\:-mb-52 { - margin-bottom: -13rem; + .xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .xl\:-ml-52 { - margin-left: -13rem; + .xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .xl\:-mt-56 { - margin-top: -14rem; + .xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .xl\:-mr-56 { - margin-right: -14rem; + .xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .xl\:-mb-56 { - margin-bottom: -14rem; + .xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .xl\:-ml-56 { - margin-left: -14rem; + .xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .xl\:-mt-60 { - margin-top: -15rem; + .xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .xl\:-mr-60 { - margin-right: -15rem; + .xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .xl\:-mb-60 { - margin-bottom: -15rem; + .xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .xl\:-ml-60 { - margin-left: -15rem; + .xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .xl\:-mt-64 { - margin-top: -16rem; + .xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .xl\:-mr-64 { - margin-right: -16rem; + .xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .xl\:-mb-64 { - margin-bottom: -16rem; + .xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .xl\:-ml-64 { - margin-left: -16rem; + .xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .xl\:-mt-72 { - margin-top: -18rem; + .xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .xl\:-mr-72 { - margin-right: -18rem; + .xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .xl\:-mb-72 { - margin-bottom: -18rem; + .xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .xl\:-ml-72 { - margin-left: -18rem; + .xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .xl\:-mt-80 { - margin-top: -20rem; + .xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .xl\:-mr-80 { - margin-right: -20rem; + .xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .xl\:-mb-80 { - margin-bottom: -20rem; + .xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .xl\:-ml-80 { - margin-left: -20rem; + .xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .xl\:-mt-96 { - margin-top: -24rem; + .xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .xl\:-mr-96 { - margin-right: -24rem; + .xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .xl\:-mb-96 { - margin-bottom: -24rem; + .xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .xl\:-ml-96 { - margin-left: -24rem; + .xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .xl\:-mt-px { - margin-top: -1px; + .xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .xl\:-mr-px { - margin-right: -1px; + .xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .xl\:-mb-px { - margin-bottom: -1px; + .xl\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .xl\:-ml-px { - margin-left: -1px; + .xl\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .xl\:-mt-0\.5 { - margin-top: -0.125rem; + .xl\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .xl\:-mr-0\.5 { - margin-right: -0.125rem; + .xl\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .xl\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .xl\:-ml-0\.5 { - margin-left: -0.125rem; + .xl\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .xl\:-mt-1\.5 { - margin-top: -0.375rem; + .xl\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .xl\:-mr-1\.5 { - margin-right: -0.375rem; + .xl\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .xl\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .xl\:-ml-1\.5 { - margin-left: -0.375rem; + .xl\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .xl\:-mt-2\.5 { - margin-top: -0.625rem; + .xl\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .xl\:-mr-2\.5 { - margin-right: -0.625rem; + .xl\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .xl\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .xl\:-ml-2\.5 { - margin-left: -0.625rem; + .xl\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .xl\:-mt-3\.5 { - margin-top: -0.875rem; + .xl\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .xl\:-mr-3\.5 { - margin-right: -0.875rem; + .xl\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .xl\:-mb-3\.5 { - margin-bottom: -0.875rem; + .xl\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .xl\:-ml-3\.5 { - margin-left: -0.875rem; + .xl\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .xl\:max-h-0 { - max-height: 0px; + .xl\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .xl\:max-h-1 { - max-height: 0.25rem; + .xl\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .xl\:max-h-2 { - max-height: 0.5rem; + .xl\:hover\:border-transparent:hover { + border-color: transparent; } - .xl\:max-h-3 { - max-height: 0.75rem; + .xl\:hover\:border-current:hover { + border-color: currentColor; } - .xl\:max-h-4 { - max-height: 1rem; + .xl\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .xl\:max-h-5 { - max-height: 1.25rem; + .xl\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .xl\:max-h-6 { - max-height: 1.5rem; + .xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .xl\:max-h-7 { - max-height: 1.75rem; + .xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .xl\:max-h-8 { - max-height: 2rem; + .xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .xl\:max-h-9 { - max-height: 2.25rem; + .xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .xl\:max-h-10 { - max-height: 2.5rem; + .xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .xl\:max-h-11 { - max-height: 2.75rem; + .xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .xl\:max-h-12 { - max-height: 3rem; + .xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .xl\:max-h-14 { - max-height: 3.5rem; + .xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .xl\:max-h-16 { - max-height: 4rem; + .xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .xl\:max-h-20 { - max-height: 5rem; + .xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .xl\:max-h-24 { - max-height: 6rem; + .xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .xl\:max-h-28 { - max-height: 7rem; + .xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .xl\:max-h-32 { - max-height: 8rem; + .xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .xl\:max-h-36 { - max-height: 9rem; + .xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .xl\:max-h-40 { - max-height: 10rem; + .xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .xl\:max-h-44 { - max-height: 11rem; + .xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .xl\:max-h-48 { - max-height: 12rem; + .xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .xl\:max-h-52 { - max-height: 13rem; + .xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .xl\:max-h-56 { - max-height: 14rem; + .xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .xl\:max-h-60 { - max-height: 15rem; + .xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .xl\:max-h-64 { - max-height: 16rem; + .xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .xl\:max-h-72 { - max-height: 18rem; + .xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .xl\:max-h-80 { - max-height: 20rem; + .xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .xl\:max-h-96 { - max-height: 24rem; + .xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .xl\:max-h-px { - max-height: 1px; + .xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .xl\:max-h-0\.5 { - max-height: 0.125rem; + .xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .xl\:max-h-1\.5 { - max-height: 0.375rem; + .xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .xl\:max-h-2\.5 { - max-height: 0.625rem; + .xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .xl\:max-h-3\.5 { - max-height: 0.875rem; + .xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .xl\:max-h-full { - max-height: 100%; + .xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .xl\:max-h-screen { - max-height: 100vh; + .xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .xl\:max-w-0 { - max-width: 0rem; + .xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .xl\:max-w-none { - max-width: none; + .xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .xl\:max-w-xs { - max-width: 20rem; + .xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .xl\:max-w-sm { - max-width: 24rem; + .xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .xl\:max-w-md { - max-width: 28rem; + .xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .xl\:max-w-lg { - max-width: 32rem; + .xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .xl\:max-w-xl { - max-width: 36rem; + .xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .xl\:max-w-2xl { - max-width: 42rem; + .xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .xl\:max-w-3xl { - max-width: 48rem; + .xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .xl\:max-w-4xl { - max-width: 56rem; + .xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .xl\:max-w-5xl { - max-width: 64rem; + .xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .xl\:max-w-6xl { - max-width: 72rem; + .xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .xl\:max-w-7xl { - max-width: 80rem; + .xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .xl\:max-w-full { - max-width: 100%; + .xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .xl\:max-w-min { - max-width: min-content; + .xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .xl\:max-w-max { - max-width: max-content; + .xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .xl\:max-w-prose { - max-width: 65ch; + .xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .xl\:max-w-screen-sm { - max-width: 640px; + .xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .xl\:max-w-screen-md { - max-width: 768px; + .xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .xl\:max-w-screen-lg { - max-width: 1024px; + .xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .xl\:max-w-screen-xl { - max-width: 1280px; + .xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .xl\:max-w-screen-2xl { - max-width: 1536px; + .xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .xl\:min-h-0 { - min-height: 0px; + .xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .xl\:min-h-full { - min-height: 100%; + .xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .xl\:min-h-screen { - min-height: 100vh; + .xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .xl\:min-w-0 { - min-width: 0px; + .xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .xl\:min-w-full { - min-width: 100%; + .xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .xl\:min-w-min { - min-width: min-content; + .xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .xl\:min-w-max { - min-width: max-content; + .xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .xl\:object-contain { - object-fit: contain; + .xl\:hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .xl\:object-cover { - object-fit: cover; + .xl\:hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .xl\:object-fill { - object-fit: fill; + .xl\:hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .xl\:object-none { - object-fit: none; + .xl\:hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .xl\:object-scale-down { - object-fit: scale-down; + .xl\:hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .xl\:object-bottom { - object-position: bottom; + .xl\:hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .xl\:object-center { - object-position: center; + .xl\:hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .xl\:object-left { - object-position: left; + .xl\:hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .xl\:object-left-bottom { - object-position: left bottom; + .xl\:hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .xl\:object-left-top { - object-position: left top; + .xl\:hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .xl\:object-right { - object-position: right; + .xl\:hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .xl\:object-right-bottom { - object-position: right bottom; + .xl\:hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .xl\:object-right-top { - object-position: right top; + .xl\:hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .xl\:object-top { - object-position: top; + .xl\:hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .xl\:opacity-0 { - opacity: 0; + .xl\:hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .xl\:opacity-5 { - opacity: 0.05; + .xl\:hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .xl\:opacity-10 { - opacity: 0.1; + .xl\:hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .xl\:opacity-20 { - opacity: 0.2; + .xl\:hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .xl\:opacity-25 { - opacity: 0.25; + .xl\:hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .xl\:opacity-30 { - opacity: 0.3; + .xl\:hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .xl\:opacity-40 { - opacity: 0.4; + .xl\:focus\:border-transparent:focus { + border-color: transparent; } - .xl\:opacity-50 { - opacity: 0.5; + .xl\:focus\:border-current:focus { + border-color: currentColor; } - .xl\:opacity-60 { - opacity: 0.6; + .xl\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .xl\:opacity-70 { - opacity: 0.7; + .xl\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .xl\:opacity-75 { - opacity: 0.75; + .xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .xl\:opacity-80 { - opacity: 0.8; + .xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .xl\:opacity-90 { - opacity: 0.9; + .xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .xl\:opacity-95 { - opacity: 0.95; + .xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .xl\:opacity-100 { - opacity: 1; + .xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-0 { - opacity: 0; + .xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-5 { - opacity: 0.05; + .xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-10 { - opacity: 0.1; + .xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-20 { - opacity: 0.2; + .xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-25 { - opacity: 0.25; + .xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-30 { - opacity: 0.3; + .xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-40 { - opacity: 0.4; + .xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-50 { - opacity: 0.5; + .xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-60 { - opacity: 0.6; + .xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-70 { - opacity: 0.7; + .xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-75 { - opacity: 0.75; + .xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-80 { - opacity: 0.8; + .xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-90 { - opacity: 0.9; + .xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-95 { - opacity: 0.95; + .xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .group:hover .xl\:group-hover\:opacity-100 { - opacity: 1; + .xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-0:focus-within { - opacity: 0; + .xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .xl\:focus-within\:opacity-100:focus-within { - opacity: 1; + .xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .xl\:hover\:opacity-0:hover { - opacity: 0; + .xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .xl\:hover\:opacity-5:hover { - opacity: 0.05; + .xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .xl\:hover\:opacity-10:hover { - opacity: 0.1; + .xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .xl\:hover\:opacity-20:hover { - opacity: 0.2; + .xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .xl\:hover\:opacity-25:hover { - opacity: 0.25; + .xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .xl\:hover\:opacity-30:hover { - opacity: 0.3; + .xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .xl\:hover\:opacity-40:hover { - opacity: 0.4; + .xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .xl\:hover\:opacity-50:hover { - opacity: 0.5; + .xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .xl\:hover\:opacity-60:hover { - opacity: 0.6; + .xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .xl\:hover\:opacity-70:hover { - opacity: 0.7; + .xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .xl\:hover\:opacity-75:hover { - opacity: 0.75; + .xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .xl\:hover\:opacity-80:hover { - opacity: 0.8; + .xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .xl\:hover\:opacity-90:hover { - opacity: 0.9; + .xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .xl\:hover\:opacity-95:hover { - opacity: 0.95; + .xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .xl\:hover\:opacity-100:hover { - opacity: 1; + .xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .xl\:focus\:opacity-0:focus { - opacity: 0; + .xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .xl\:focus\:opacity-5:focus { - opacity: 0.05; + .xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .xl\:focus\:opacity-10:focus { - opacity: 0.1; + .xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .xl\:focus\:opacity-20:focus { - opacity: 0.2; + .xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .xl\:focus\:opacity-25:focus { - opacity: 0.25; + .xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .xl\:focus\:opacity-30:focus { - opacity: 0.3; + .xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .xl\:focus\:opacity-40:focus { - opacity: 0.4; + .xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .xl\:focus\:opacity-50:focus { - opacity: 0.5; + .xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .xl\:focus\:opacity-60:focus { - opacity: 0.6; + .xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .xl\:focus\:opacity-70:focus { - opacity: 0.7; + .xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .xl\:focus\:opacity-75:focus { - opacity: 0.75; + .xl\:focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .xl\:focus\:opacity-80:focus { - opacity: 0.8; + .xl\:focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .xl\:focus\:opacity-90:focus { - opacity: 0.9; + .xl\:focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .xl\:focus\:opacity-95:focus { - opacity: 0.95; + .xl\:focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .xl\:focus\:opacity-100:focus { - opacity: 1; + .xl\:focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .xl\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .xl\:focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .xl\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .xl\:focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .xl\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .xl\:focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .xl\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .xl\:focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .xl\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .xl\:focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .xl\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .xl\:focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .xl\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .xl\:focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .xl\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .xl\:focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .xl\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .xl\:focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .xl\:overflow-auto { - overflow: auto; + .xl\:focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .xl\:overflow-hidden { - overflow: hidden; + .xl\:focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .xl\:overflow-visible { - overflow: visible; + .xl\:focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .xl\:overflow-scroll { - overflow: scroll; + .xl\:focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .xl\:overflow-x-auto { - overflow-x: auto; + .xl\:focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .xl\:overflow-y-auto { - overflow-y: auto; + .xl\:focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .xl\:overflow-x-hidden { - overflow-x: hidden; + .xl\:border-opacity-0 { + --tw-border-opacity: 0; } - .xl\:overflow-y-hidden { - overflow-y: hidden; + .xl\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .xl\:overflow-x-visible { - overflow-x: visible; + .xl\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .xl\:overflow-y-visible { - overflow-y: visible; + .xl\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .xl\:overflow-x-scroll { - overflow-x: scroll; + .xl\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .xl\:overflow-y-scroll { - overflow-y: scroll; + .xl\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .xl\:overscroll-auto { - overscroll-behavior: auto; + .xl\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .xl\:overscroll-contain { - overscroll-behavior: contain; + .xl\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .xl\:overscroll-none { - overscroll-behavior: none; + .xl\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .xl\:overscroll-y-auto { - overscroll-behavior-y: auto; + .xl\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .xl\:overscroll-y-contain { - overscroll-behavior-y: contain; + .xl\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .xl\:overscroll-y-none { - overscroll-behavior-y: none; + .xl\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .xl\:overscroll-x-auto { - overscroll-behavior-x: auto; + .xl\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .xl\:overscroll-x-contain { - overscroll-behavior-x: contain; + .xl\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .xl\:overscroll-x-none { - overscroll-behavior-x: none; + .xl\:border-opacity-100 { + --tw-border-opacity: 1; } - .xl\:p-0 { - padding: 0px; + .group:hover .xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } - .xl\:p-1 { - padding: 0.25rem; + .group:hover .xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .xl\:p-2 { - padding: 0.5rem; + .group:hover .xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .xl\:p-3 { - padding: 0.75rem; + .group:hover .xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .xl\:p-4 { - padding: 1rem; + .group:hover .xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .xl\:p-5 { - padding: 1.25rem; + .group:hover .xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .xl\:p-6 { - padding: 1.5rem; + .group:hover .xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .xl\:p-7 { - padding: 1.75rem; + .group:hover .xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .xl\:p-8 { - padding: 2rem; + .group:hover .xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .xl\:p-9 { - padding: 2.25rem; + .group:hover .xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .xl\:p-10 { - padding: 2.5rem; + .group:hover .xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .xl\:p-11 { - padding: 2.75rem; + .group:hover .xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .xl\:p-12 { - padding: 3rem; + .group:hover .xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .xl\:p-14 { - padding: 3.5rem; + .group:hover .xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .xl\:p-16 { - padding: 4rem; + .group:hover .xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } - .xl\:p-20 { - padding: 5rem; + .xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } - .xl\:p-24 { - padding: 6rem; + .xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } - .xl\:p-28 { - padding: 7rem; + .xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } - .xl\:p-32 { - padding: 8rem; + .xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } - .xl\:p-36 { - padding: 9rem; + .xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } - .xl\:p-40 { - padding: 10rem; + .xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } - .xl\:p-44 { - padding: 11rem; + .xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } - .xl\:p-48 { - padding: 12rem; + .xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } - .xl\:p-52 { - padding: 13rem; + .xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } - .xl\:p-56 { - padding: 14rem; + .xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } - .xl\:p-60 { - padding: 15rem; + .xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } - .xl\:p-64 { - padding: 16rem; + .xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } - .xl\:p-72 { - padding: 18rem; + .xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } - .xl\:p-80 { - padding: 20rem; + .xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } - .xl\:p-96 { - padding: 24rem; + .xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } - .xl\:p-px { - padding: 1px; + .xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } - .xl\:p-0\.5 { - padding: 0.125rem; + .xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } - .xl\:p-1\.5 { - padding: 0.375rem; + .xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } - .xl\:p-2\.5 { - padding: 0.625rem; + .xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } - .xl\:p-3\.5 { - padding: 0.875rem; + .xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } - .xl\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } - .xl\:px-0 { - padding-left: 0px; - padding-right: 0px; + .xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } - .xl\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } - .xl\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } - .xl\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } - .xl\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } - .xl\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } - .xl\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } - .xl\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } - .xl\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } - .xl\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } - .xl\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } - .xl\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } - .xl\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } - .xl\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } - .xl\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } - .xl\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } - .xl\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } - .xl\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } - .xl\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } - .xl\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } - .xl\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } - .xl\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } - .xl\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } - .xl\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } - .xl\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .xl\:bg-transparent { + background-color: transparent; } - .xl\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .xl\:bg-current { + background-color: currentColor; } - .xl\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .xl\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .xl\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .xl\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .xl\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .xl\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .xl\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .xl\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .xl\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .xl\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .xl\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .xl\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .xl\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .xl\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .xl\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .xl\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .xl\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .xl\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .xl\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .xl\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .xl\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .xl\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .xl\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .xl\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .xl\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .xl\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .xl\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .xl\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .xl\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .xl\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .xl\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .xl\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .xl\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .xl\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .xl\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .xl\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .xl\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .xl\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .xl\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .xl\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .xl\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .xl\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .xl\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .xl\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .xl\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .xl\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .xl\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .xl\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .xl\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .xl\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .xl\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .xl\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .xl\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .xl\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .xl\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .xl\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .xl\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .xl\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .xl\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .xl\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .xl\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .xl\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .xl\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .xl\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .xl\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .xl\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .xl\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .xl\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .xl\:px-px { - padding-left: 1px; - padding-right: 1px; + .xl\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .xl\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .xl\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .xl\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .xl\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .xl\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .xl\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .xl\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .xl\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .xl\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .xl\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .xl\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .xl\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .xl\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .xl\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .xl\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .xl\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .xl\:pt-0 { - padding-top: 0px; + .xl\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .xl\:pr-0 { - padding-right: 0px; + .xl\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .xl\:pb-0 { - padding-bottom: 0px; + .xl\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .xl\:pl-0 { - padding-left: 0px; + .xl\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .xl\:pt-1 { - padding-top: 0.25rem; + .xl\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .xl\:pr-1 { - padding-right: 0.25rem; + .xl\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .xl\:pb-1 { - padding-bottom: 0.25rem; + .xl\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .xl\:pl-1 { - padding-left: 0.25rem; + .xl\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .xl\:pt-2 { - padding-top: 0.5rem; + .xl\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .xl\:pr-2 { - padding-right: 0.5rem; + .xl\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .xl\:pb-2 { - padding-bottom: 0.5rem; + .xl\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .xl\:pl-2 { - padding-left: 0.5rem; + .xl\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .xl\:pt-3 { - padding-top: 0.75rem; + .xl\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .xl\:pr-3 { - padding-right: 0.75rem; + .xl\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .xl\:pb-3 { - padding-bottom: 0.75rem; + .xl\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .xl\:pl-3 { - padding-left: 0.75rem; + .xl\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .xl\:pt-4 { - padding-top: 1rem; + .xl\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .xl\:pr-4 { - padding-right: 1rem; + .xl\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .xl\:pb-4 { - padding-bottom: 1rem; + .xl\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .xl\:pl-4 { - padding-left: 1rem; + .xl\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .xl\:pt-5 { - padding-top: 1.25rem; + .xl\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .xl\:pr-5 { - padding-right: 1.25rem; + .xl\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .xl\:pb-5 { - padding-bottom: 1.25rem; + .xl\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .xl\:pl-5 { - padding-left: 1.25rem; + .xl\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .xl\:pt-6 { - padding-top: 1.5rem; + .xl\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .xl\:pr-6 { - padding-right: 1.5rem; + .xl\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .xl\:pb-6 { - padding-bottom: 1.5rem; + .xl\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .xl\:pl-6 { - padding-left: 1.5rem; + .xl\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .xl\:pt-7 { - padding-top: 1.75rem; + .xl\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .xl\:pr-7 { - padding-right: 1.75rem; + .xl\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .xl\:pb-7 { - padding-bottom: 1.75rem; + .xl\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .xl\:pl-7 { - padding-left: 1.75rem; + .xl\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .xl\:pt-8 { - padding-top: 2rem; + .xl\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .xl\:pr-8 { - padding-right: 2rem; + .xl\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .xl\:pb-8 { - padding-bottom: 2rem; + .xl\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .xl\:pl-8 { - padding-left: 2rem; + .xl\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .xl\:pt-9 { - padding-top: 2.25rem; + .xl\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .xl\:pr-9 { - padding-right: 2.25rem; + .xl\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .xl\:pb-9 { - padding-bottom: 2.25rem; + .xl\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .xl\:pl-9 { - padding-left: 2.25rem; + .group:hover .xl\:group-hover\:bg-transparent { + background-color: transparent; } - .xl\:pt-10 { - padding-top: 2.5rem; + .group:hover .xl\:group-hover\:bg-current { + background-color: currentColor; } - .xl\:pr-10 { - padding-right: 2.5rem; + .group:hover .xl\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .xl\:pb-10 { - padding-bottom: 2.5rem; + .group:hover .xl\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .xl\:pl-10 { - padding-left: 2.5rem; + .group:hover .xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .xl\:pt-11 { - padding-top: 2.75rem; + .group:hover .xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .xl\:pr-11 { - padding-right: 2.75rem; + .group:hover .xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .xl\:pb-11 { - padding-bottom: 2.75rem; + .group:hover .xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .xl\:pl-11 { - padding-left: 2.75rem; + .group:hover .xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .xl\:pt-12 { - padding-top: 3rem; + .group:hover .xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .xl\:pr-12 { - padding-right: 3rem; + .group:hover .xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .xl\:pb-12 { - padding-bottom: 3rem; + .group:hover .xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .xl\:pl-12 { - padding-left: 3rem; + .group:hover .xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .xl\:pt-14 { - padding-top: 3.5rem; + .group:hover .xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .xl\:pr-14 { - padding-right: 3.5rem; + .group:hover .xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .xl\:pb-14 { - padding-bottom: 3.5rem; + .group:hover .xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .xl\:pl-14 { - padding-left: 3.5rem; + .group:hover .xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .xl\:pt-16 { - padding-top: 4rem; + .group:hover .xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .xl\:pr-16 { - padding-right: 4rem; + .group:hover .xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .xl\:pb-16 { - padding-bottom: 4rem; + .group:hover .xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .xl\:pl-16 { - padding-left: 4rem; + .group:hover .xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .xl\:pt-20 { - padding-top: 5rem; + .group:hover .xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .xl\:pr-20 { - padding-right: 5rem; + .group:hover .xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .xl\:pb-20 { - padding-bottom: 5rem; + .group:hover .xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .xl\:pl-20 { - padding-left: 5rem; + .group:hover .xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .xl\:pt-24 { - padding-top: 6rem; + .group:hover .xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .xl\:pr-24 { - padding-right: 6rem; + .group:hover .xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .xl\:pb-24 { - padding-bottom: 6rem; + .group:hover .xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .xl\:pl-24 { - padding-left: 6rem; + .group:hover .xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .xl\:pt-28 { - padding-top: 7rem; + .group:hover .xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .xl\:pr-28 { - padding-right: 7rem; + .group:hover .xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .xl\:pb-28 { - padding-bottom: 7rem; + .group:hover .xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .xl\:pl-28 { - padding-left: 7rem; + .group:hover .xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .xl\:pt-32 { - padding-top: 8rem; + .group:hover .xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .xl\:pr-32 { - padding-right: 8rem; + .group:hover .xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .xl\:pb-32 { - padding-bottom: 8rem; + .group:hover .xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .xl\:pl-32 { - padding-left: 8rem; + .group:hover .xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .xl\:pt-36 { - padding-top: 9rem; + .group:hover .xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .xl\:pr-36 { - padding-right: 9rem; + .group:hover .xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .xl\:pb-36 { - padding-bottom: 9rem; + .group:hover .xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .xl\:pl-36 { - padding-left: 9rem; + .group:hover .xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .xl\:pt-40 { - padding-top: 10rem; + .group:hover .xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .xl\:pr-40 { - padding-right: 10rem; + .group:hover .xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .xl\:pb-40 { - padding-bottom: 10rem; + .group:hover .xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .xl\:pl-40 { - padding-left: 10rem; + .group:hover .xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .xl\:pt-44 { - padding-top: 11rem; + .group:hover .xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .xl\:pr-44 { - padding-right: 11rem; + .group:hover .xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .xl\:pb-44 { - padding-bottom: 11rem; + .group:hover .xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .xl\:pl-44 { - padding-left: 11rem; + .group:hover .xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .xl\:pt-48 { - padding-top: 12rem; + .group:hover .xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .xl\:pr-48 { - padding-right: 12rem; + .group:hover .xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .xl\:pb-48 { - padding-bottom: 12rem; + .group:hover .xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .xl\:pl-48 { - padding-left: 12rem; + .group:hover .xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .xl\:pt-52 { - padding-top: 13rem; + .group:hover .xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .xl\:pr-52 { - padding-right: 13rem; + .group:hover .xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .xl\:pb-52 { - padding-bottom: 13rem; + .group:hover .xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .xl\:pl-52 { - padding-left: 13rem; + .group:hover .xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .xl\:pt-56 { - padding-top: 14rem; + .group:hover .xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .xl\:pr-56 { - padding-right: 14rem; + .group:hover .xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .xl\:pb-56 { - padding-bottom: 14rem; + .group:hover .xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .xl\:pl-56 { - padding-left: 14rem; + .group:hover .xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .xl\:pt-60 { - padding-top: 15rem; + .group:hover .xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .xl\:pr-60 { - padding-right: 15rem; + .group:hover .xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .xl\:pb-60 { - padding-bottom: 15rem; + .group:hover .xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .xl\:pl-60 { - padding-left: 15rem; + .group:hover .xl\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .xl\:pt-64 { - padding-top: 16rem; + .group:hover .xl\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .xl\:pr-64 { - padding-right: 16rem; + .group:hover .xl\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .xl\:pb-64 { - padding-bottom: 16rem; + .group:hover .xl\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .xl\:pl-64 { - padding-left: 16rem; + .group:hover .xl\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .xl\:pt-72 { - padding-top: 18rem; + .group:hover .xl\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .xl\:pr-72 { - padding-right: 18rem; + .group:hover .xl\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .xl\:pb-72 { - padding-bottom: 18rem; + .group:hover .xl\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .xl\:pl-72 { - padding-left: 18rem; + .group:hover .xl\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .xl\:pt-80 { - padding-top: 20rem; + .group:hover .xl\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .xl\:pr-80 { - padding-right: 20rem; + .group:hover .xl\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .xl\:pb-80 { - padding-bottom: 20rem; + .group:hover .xl\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .xl\:pl-80 { - padding-left: 20rem; + .group:hover .xl\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .xl\:pt-96 { - padding-top: 24rem; + .group:hover .xl\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .xl\:pr-96 { - padding-right: 24rem; + .group:hover .xl\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .xl\:pb-96 { - padding-bottom: 24rem; + .group:hover .xl\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .xl\:pl-96 { - padding-left: 24rem; + .group:hover .xl\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .xl\:pt-px { - padding-top: 1px; + .group:hover .xl\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .xl\:pr-px { - padding-right: 1px; + .group:hover .xl\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .xl\:pb-px { - padding-bottom: 1px; + .group:hover .xl\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .xl\:pl-px { - padding-left: 1px; + .xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .xl\:pt-0\.5 { - padding-top: 0.125rem; + .xl\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .xl\:pr-0\.5 { - padding-right: 0.125rem; + .xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .xl\:pb-0\.5 { - padding-bottom: 0.125rem; + .xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .xl\:pl-0\.5 { - padding-left: 0.125rem; + .xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .xl\:pt-1\.5 { - padding-top: 0.375rem; + .xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .xl\:pr-1\.5 { - padding-right: 0.375rem; + .xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .xl\:pb-1\.5 { - padding-bottom: 0.375rem; + .xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .xl\:pl-1\.5 { - padding-left: 0.375rem; + .xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .xl\:pt-2\.5 { - padding-top: 0.625rem; + .xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .xl\:pr-2\.5 { - padding-right: 0.625rem; + .xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .xl\:pb-2\.5 { - padding-bottom: 0.625rem; + .xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .xl\:pl-2\.5 { - padding-left: 0.625rem; + .xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .xl\:pt-3\.5 { - padding-top: 0.875rem; + .xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .xl\:pr-3\.5 { - padding-right: 0.875rem; + .xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .xl\:pb-3\.5 { - padding-bottom: 0.875rem; + .xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .xl\:pl-3\.5 { - padding-left: 0.875rem; + .xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .xl\:placeholder-transparent::placeholder { - color: transparent; + .xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .xl\:placeholder-current::placeholder { - color: currentColor; + .xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .xl\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .xl\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .xl\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .xl\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .xl\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .xl\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .xl\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .xl\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .xl\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .xl\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .xl\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .xl\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .xl\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .xl\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .xl\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .xl\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .xl\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .xl\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .xl\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .xl\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .xl\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .xl\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .xl\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .xl\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .xl\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .xl\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .xl\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-transparent:hover { + background-color: transparent; } - .xl\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-current:hover { + background-color: currentColor; } - .xl\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .xl\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .xl\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .xl\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-transparent:focus { + background-color: transparent; } - .xl\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-current:focus { + background-color: currentColor; } - .xl\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; + .xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; + .xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; + .xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; + .xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; + .xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; + .xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; + .xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; + .xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; + .xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; + .xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; + .xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; + .xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; + .xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; + .xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .xl\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; + .xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; + .xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; + .xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; + .xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; + .xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; + .xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; + .xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; + .xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; + .xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; + .xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; + .xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; + .xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; + .xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; + .xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; + .xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .xl\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; + .xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .xl\:pointer-events-none { - pointer-events: none; + .xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .xl\:pointer-events-auto { - pointer-events: auto; + .xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .xl\:static { - position: static; + .xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .xl\:fixed { - position: fixed; + .xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .xl\:absolute { - position: absolute; + .xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .xl\:relative { - position: relative; + .xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .xl\:sticky { - position: sticky; + .xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .xl\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .xl\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .xl\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .xl\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .xl\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .xl\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .xl\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .xl\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .xl\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .xl\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .xl\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .xl\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .xl\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .xl\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .xl\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .xl\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .xl\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .xl\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .xl\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .xl\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .xl\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .xl\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .xl\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .xl\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .xl\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .xl\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .xl\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .xl\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .xl\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .xl\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .xl\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .xl\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .xl\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .xl\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .xl\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .xl\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .xl\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .xl\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .xl\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .xl\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .xl\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .xl\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .xl\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .xl\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .xl\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .xl\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .xl\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .xl\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .xl\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .xl\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .xl\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .xl\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .xl\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .xl\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .xl\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .xl\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .xl\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .xl\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .xl\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .xl\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .xl\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .xl\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .xl\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .xl\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .xl\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .xl\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .xl\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .xl\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .group:hover .xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .xl\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .group:hover .xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .xl\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .group:hover .xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .xl\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .group:hover .xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .xl\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .group:hover .xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .xl\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .group:hover .xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .xl\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .group:hover .xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .xl\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .group:hover .xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .xl\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .group:hover .xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .xl\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .group:hover .xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .xl\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .group:hover .xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .xl\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .group:hover .xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .xl\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .group:hover .xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .xl\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .group:hover .xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .xl\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .group:hover .xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .xl\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } - .xl\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } - .xl\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } - .xl\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } - .xl\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } - .xl\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } - .xl\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } - .xl\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } - .xl\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } - .xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } - .xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } - .xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } - .xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } - .xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } - .xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } - .xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } - .xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } - .xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } - .xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } - .xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } - .xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } - .xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } - .xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } - .xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } - .xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } - .xl\:inset-y-0 { - top: 0px; - bottom: 0px; + .xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } - .xl\:inset-x-0 { - right: 0px; - left: 0px; + .xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } - .xl\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } - .xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } - .xl\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } - .xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } - .xl\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } - .xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } - .xl\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } - .xl\:inset-x-4 { - right: 1rem; - left: 1rem; + .xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } - .xl\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } - .xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } - .xl\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } - .xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } - .xl\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } - .xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } - .xl\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } - .xl\:inset-x-8 { - right: 2rem; - left: 2rem; + .xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } - .xl\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } - .xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .xl\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } - .xl\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .xl\:bg-none { + background-image: none; } - .xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .xl\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .xl\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .xl\:inset-x-12 { - right: 3rem; - left: 3rem; + .xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .xl\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .xl\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .xl\:inset-x-16 { - right: 4rem; - left: 4rem; + .xl\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .xl\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:inset-x-20 { - right: 5rem; - left: 5rem; + .xl\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .xl\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:inset-x-24 { - right: 6rem; - left: 6rem; + .xl\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:inset-x-28 { - right: 7rem; - left: 7rem; + .xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .xl\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:inset-x-32 { - right: 8rem; - left: 8rem; + .xl\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .xl\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:inset-x-36 { - right: 9rem; - left: 9rem; + .xl\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .xl\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:inset-x-40 { - right: 10rem; - left: 10rem; + .xl\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .xl\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:inset-x-44 { - right: 11rem; - left: 11rem; + .xl\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .xl\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:inset-x-48 { - right: 12rem; - left: 12rem; + .xl\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .xl\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:inset-x-52 { - right: 13rem; - left: 13rem; + .xl\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .xl\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:inset-x-56 { - right: 14rem; - left: 14rem; + .xl\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .xl\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:inset-x-60 { - right: 15rem; - left: 15rem; + .xl\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .xl\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:inset-x-64 { - right: 16rem; - left: 16rem; + .xl\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .xl\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:inset-x-72 { - right: 18rem; - left: 18rem; + .xl\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .xl\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:inset-x-80 { - right: 20rem; - left: 20rem; + .xl\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .xl\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:inset-x-96 { - right: 24rem; - left: 24rem; + .xl\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:inset-y-auto { - top: auto; - bottom: auto; + .xl\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:inset-x-auto { - right: auto; - left: auto; + .xl\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:inset-y-px { - top: 1px; - bottom: 1px; + .xl\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:inset-x-px { - right: 1px; - left: 1px; + .xl\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .xl\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .xl\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .xl\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .xl\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .xl\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .xl\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .xl\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .xl\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:-inset-y-0 { - top: 0px; - bottom: 0px; + .xl\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:-inset-x-0 { - right: 0px; - left: 0px; + .xl\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .xl\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .xl\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .xl\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .xl\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .xl\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .xl\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .xl\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:-inset-x-4 { - right: -1rem; - left: -1rem; + .xl\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .xl\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .xl\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .xl\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .xl\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .xl\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .xl\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .xl\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:-inset-x-8 { - right: -2rem; - left: -2rem; + .xl\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .xl\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .xl\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .xl\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .xl\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .xl\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .xl\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .xl\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:-inset-x-12 { - right: -3rem; - left: -3rem; + .xl\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .xl\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .xl\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .xl\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:-inset-x-16 { - right: -4rem; - left: -4rem; + .xl\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .xl\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:-inset-x-20 { - right: -5rem; - left: -5rem; + .xl\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .xl\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:-inset-x-24 { - right: -6rem; - left: -6rem; + .xl\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .xl\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:-inset-x-28 { - right: -7rem; - left: -7rem; + .xl\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .xl\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:-inset-x-32 { - right: -8rem; - left: -8rem; + .xl\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .xl\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:-inset-x-36 { - right: -9rem; - left: -9rem; + .xl\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .xl\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:-inset-x-40 { - right: -10rem; - left: -10rem; + .xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-inset-x-44 { - right: -11rem; - left: -11rem; + .xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-inset-x-48 { - right: -12rem; - left: -12rem; + .xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:-inset-x-52 { - right: -13rem; - left: -13rem; + .xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:-inset-x-56 { - right: -14rem; - left: -14rem; + .xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:-inset-x-60 { - right: -15rem; - left: -15rem; + .xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:-inset-x-64 { - right: -16rem; - left: -16rem; + .xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:-inset-x-72 { - right: -18rem; - left: -18rem; + .xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:-inset-x-80 { - right: -20rem; - left: -20rem; + .xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:-inset-x-96 { - right: -24rem; - left: -24rem; + .xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:-inset-y-px { - top: -1px; - bottom: -1px; + .xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:-inset-x-px { - right: -1px; - left: -1px; + .xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:inset-x-1\/2 { - right: 50%; - left: 50%; + .xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:inset-x-1\/4 { - right: 25%; - left: 25%; + .xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:inset-x-2\/4 { - right: 50%; - left: 50%; + .xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:inset-x-3\/4 { - right: 75%; - left: 75%; + .xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:inset-y-full { - top: 100%; - bottom: 100%; + .xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:inset-x-full { - right: 100%; - left: 100%; + .xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:-inset-y-full { - top: -100%; - bottom: -100%; + .xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:-inset-x-full { - right: -100%; - left: -100%; + .xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:top-0 { - top: 0px; + .xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:right-0 { - right: 0px; + .xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:bottom-0 { - bottom: 0px; + .xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:left-0 { - left: 0px; + .xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:top-1 { - top: 0.25rem; + .xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:right-1 { - right: 0.25rem; + .xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:bottom-1 { - bottom: 0.25rem; + .xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:left-1 { - left: 0.25rem; + .xl\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:top-2 { - top: 0.5rem; + .xl\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:right-2 { - right: 0.5rem; + .xl\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:bottom-2 { - bottom: 0.5rem; + .xl\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:left-2 { - left: 0.5rem; + .xl\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:top-3 { - top: 0.75rem; + .xl\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:right-3 { - right: 0.75rem; + .xl\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:bottom-3 { - bottom: 0.75rem; + .xl\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:left-3 { - left: 0.75rem; + .xl\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:top-4 { - top: 1rem; + .xl\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:right-4 { - right: 1rem; + .xl\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:bottom-4 { - bottom: 1rem; + .xl\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:left-4 { - left: 1rem; + .xl\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:top-5 { - top: 1.25rem; + .xl\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:right-5 { - right: 1.25rem; + .xl\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:bottom-5 { - bottom: 1.25rem; + .xl\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:left-5 { - left: 1.25rem; + .xl\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:top-6 { - top: 1.5rem; + .xl\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:right-6 { - right: 1.5rem; + .xl\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:bottom-6 { - bottom: 1.5rem; + .xl\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:left-6 { - left: 1.5rem; + .xl\:to-transparent { + --tw-gradient-to: transparent; } - .xl\:top-7 { - top: 1.75rem; + .xl\:to-current { + --tw-gradient-to: currentColor; } - .xl\:right-7 { - right: 1.75rem; + .xl\:to-black { + --tw-gradient-to: #000; } - .xl\:bottom-7 { - bottom: 1.75rem; + .xl\:to-white { + --tw-gradient-to: #fff; } - .xl\:left-7 { - left: 1.75rem; + .xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .xl\:top-8 { - top: 2rem; + .xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .xl\:right-8 { - right: 2rem; + .xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .xl\:bottom-8 { - bottom: 2rem; + .xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .xl\:left-8 { - left: 2rem; + .xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .xl\:top-9 { - top: 2.25rem; + .xl\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .xl\:right-9 { - right: 2.25rem; + .xl\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .xl\:bottom-9 { - bottom: 2.25rem; + .xl\:to-gray-700 { + --tw-gradient-to: #374151; } - .xl\:left-9 { - left: 2.25rem; + .xl\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .xl\:top-10 { - top: 2.5rem; + .xl\:to-gray-900 { + --tw-gradient-to: #111827; } - .xl\:right-10 { - right: 2.5rem; + .xl\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .xl\:bottom-10 { - bottom: 2.5rem; + .xl\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .xl\:left-10 { - left: 2.5rem; + .xl\:to-red-200 { + --tw-gradient-to: #fecaca; } - .xl\:top-11 { - top: 2.75rem; + .xl\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .xl\:right-11 { - right: 2.75rem; + .xl\:to-red-400 { + --tw-gradient-to: #f87171; } - .xl\:bottom-11 { - bottom: 2.75rem; + .xl\:to-red-500 { + --tw-gradient-to: #ef4444; } - .xl\:left-11 { - left: 2.75rem; + .xl\:to-red-600 { + --tw-gradient-to: #dc2626; } - .xl\:top-12 { - top: 3rem; + .xl\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .xl\:right-12 { - right: 3rem; + .xl\:to-red-800 { + --tw-gradient-to: #991b1b; } - .xl\:bottom-12 { - bottom: 3rem; + .xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .xl\:left-12 { - left: 3rem; + .xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .xl\:top-14 { - top: 3.5rem; + .xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .xl\:right-14 { - right: 3.5rem; + .xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .xl\:bottom-14 { - bottom: 3.5rem; + .xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .xl\:left-14 { - left: 3.5rem; + .xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .xl\:top-16 { - top: 4rem; + .xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .xl\:right-16 { - right: 4rem; + .xl\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .xl\:bottom-16 { - bottom: 4rem; + .xl\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .xl\:left-16 { - left: 4rem; + .xl\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .xl\:top-20 { - top: 5rem; + .xl\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .xl\:right-20 { - right: 5rem; + .xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .xl\:bottom-20 { - bottom: 5rem; + .xl\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .xl\:left-20 { - left: 5rem; + .xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .xl\:top-24 { - top: 6rem; + .xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .xl\:right-24 { - right: 6rem; + .xl\:to-green-400 { + --tw-gradient-to: #34d399; } - .xl\:bottom-24 { - bottom: 6rem; + .xl\:to-green-500 { + --tw-gradient-to: #10b981; } - .xl\:left-24 { - left: 6rem; + .xl\:to-green-600 { + --tw-gradient-to: #059669; } - .xl\:top-28 { - top: 7rem; + .xl\:to-green-700 { + --tw-gradient-to: #047857; } - .xl\:right-28 { - right: 7rem; + .xl\:to-green-800 { + --tw-gradient-to: #065f46; } - .xl\:bottom-28 { - bottom: 7rem; + .xl\:to-green-900 { + --tw-gradient-to: #064e3b; } - .xl\:left-28 { - left: 7rem; + .xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .xl\:top-32 { - top: 8rem; + .xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .xl\:right-32 { - right: 8rem; + .xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .xl\:bottom-32 { - bottom: 8rem; + .xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .xl\:left-32 { - left: 8rem; + .xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .xl\:top-36 { - top: 9rem; + .xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .xl\:right-36 { - right: 9rem; + .xl\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .xl\:bottom-36 { - bottom: 9rem; + .xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .xl\:left-36 { - left: 9rem; + .xl\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .xl\:top-40 { - top: 10rem; + .xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .xl\:right-40 { - right: 10rem; + .xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .xl\:bottom-40 { - bottom: 10rem; + .xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .xl\:left-40 { - left: 10rem; + .xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .xl\:top-44 { - top: 11rem; + .xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .xl\:right-44 { - right: 11rem; + .xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .xl\:bottom-44 { - bottom: 11rem; + .xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .xl\:left-44 { - left: 11rem; + .xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .xl\:top-48 { - top: 12rem; + .xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .xl\:right-48 { - right: 12rem; + .xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .xl\:bottom-48 { - bottom: 12rem; + .xl\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .xl\:left-48 { - left: 12rem; + .xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .xl\:top-52 { - top: 13rem; + .xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .xl\:right-52 { - right: 13rem; + .xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .xl\:bottom-52 { - bottom: 13rem; + .xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .xl\:left-52 { - left: 13rem; + .xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .xl\:top-56 { - top: 14rem; + .xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .xl\:right-56 { - right: 14rem; + .xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .xl\:bottom-56 { - bottom: 14rem; + .xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .xl\:left-56 { - left: 14rem; + .xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .xl\:top-60 { - top: 15rem; + .xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .xl\:right-60 { - right: 15rem; + .xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .xl\:bottom-60 { - bottom: 15rem; + .xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .xl\:left-60 { - left: 15rem; + .xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .xl\:top-64 { - top: 16rem; + .xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .xl\:right-64 { - right: 16rem; + .xl\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .xl\:bottom-64 { - bottom: 16rem; + .xl\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .xl\:left-64 { - left: 16rem; + .xl\:to-pink-600 { + --tw-gradient-to: #db2777; } - .xl\:top-72 { - top: 18rem; + .xl\:to-pink-700 { + --tw-gradient-to: #be185d; } - .xl\:right-72 { - right: 18rem; + .xl\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .xl\:bottom-72 { - bottom: 18rem; + .xl\:to-pink-900 { + --tw-gradient-to: #831843; } - .xl\:left-72 { - left: 18rem; + .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\:top-80 { - top: 20rem; + .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\:right-80 { - right: 20rem; + .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\:bottom-80 { - bottom: 20rem; + .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\:left-80 { - left: 20rem; + .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\:top-96 { - top: 24rem; + .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\:right-96 { - right: 24rem; + .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\:bottom-96 { - bottom: 24rem; + .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\:left-96 { - left: 24rem; + .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\:top-auto { - top: auto; + .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\:right-auto { - right: auto; + .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\:bottom-auto { - bottom: auto; + .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\:left-auto { - left: auto; + .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\:top-px { - top: 1px; + .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\:right-px { - right: 1px; + .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\:bottom-px { - bottom: 1px; + .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\:left-px { - left: 1px; + .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\:top-0\.5 { - top: 0.125rem; + .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\:right-0\.5 { - right: 0.125rem; + .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\:bottom-0\.5 { - bottom: 0.125rem; + .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\:left-0\.5 { - left: 0.125rem; + .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\:top-1\.5 { - top: 0.375rem; + .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\:right-1\.5 { - right: 0.375rem; + .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\:bottom-1\.5 { - bottom: 0.375rem; + .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\:left-1\.5 { - left: 0.375rem; + .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\:top-2\.5 { - top: 0.625rem; + .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\:right-2\.5 { - right: 0.625rem; + .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\:bottom-2\.5 { - bottom: 0.625rem; + .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\:left-2\.5 { - left: 0.625rem; + .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\:top-3\.5 { - top: 0.875rem; + .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\:right-3\.5 { - right: 0.875rem; + .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\:bottom-3\.5 { - bottom: 0.875rem; + .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\:left-3\.5 { - left: 0.875rem; + .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\:-top-0 { - top: 0px; + .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\:-right-0 { - right: 0px; + .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\:-bottom-0 { - bottom: 0px; + .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\:-left-0 { - left: 0px; + .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\:-top-1 { - top: -0.25rem; + .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\:-right-1 { - right: -0.25rem; + .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\:-bottom-1 { - bottom: -0.25rem; + .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\:-left-1 { - left: -0.25rem; + .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\:-top-2 { - top: -0.5rem; + .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\:-right-2 { - right: -0.5rem; + .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\:-bottom-2 { - bottom: -0.5rem; + .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\:-left-2 { - left: -0.5rem; + .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\:-top-3 { - top: -0.75rem; + .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\:-right-3 { - right: -0.75rem; + .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\:-bottom-3 { - bottom: -0.75rem; + .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\:-left-3 { - left: -0.75rem; + .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\:-top-4 { - top: -1rem; + .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\:-right-4 { - right: -1rem; + .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\:-bottom-4 { - bottom: -1rem; + .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\:-left-4 { - left: -1rem; + .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\:-top-5 { - top: -1.25rem; + .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\:-right-5 { - right: -1.25rem; + .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\:-bottom-5 { - bottom: -1.25rem; + .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\:-left-5 { - left: -1.25rem; + .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\:-top-6 { - top: -1.5rem; + .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\:-right-6 { - right: -1.5rem; + .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\:-bottom-6 { - bottom: -1.5rem; + .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\:-left-6 { - left: -1.5rem; + .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\:-top-7 { - top: -1.75rem; + .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\:-right-7 { - right: -1.75rem; + .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\:-bottom-7 { - bottom: -1.75rem; + .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\:-left-7 { - left: -1.75rem; + .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\:-top-8 { - top: -2rem; + .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\:-right-8 { - right: -2rem; + .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\:-bottom-8 { - bottom: -2rem; + .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\:-left-8 { - left: -2rem; + .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\:-top-9 { - top: -2.25rem; + .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\:-right-9 { - right: -2.25rem; + .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\:-bottom-9 { - bottom: -2.25rem; + .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\:-left-9 { - left: -2.25rem; + .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\:-top-10 { - top: -2.5rem; + .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\:-right-10 { - right: -2.5rem; + .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\:-bottom-10 { - bottom: -2.5rem; + .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\:-left-10 { - left: -2.5rem; + .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\:-top-11 { - top: -2.75rem; + .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\:-right-11 { - right: -2.75rem; + .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\:-bottom-11 { - bottom: -2.75rem; + .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\:-left-11 { - left: -2.75rem; + .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\:-top-12 { - top: -3rem; + .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\:-right-12 { - right: -3rem; + .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\:-bottom-12 { - bottom: -3rem; + .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\:-left-12 { - left: -3rem; + .xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-top-14 { - top: -3.5rem; + .xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-right-14 { - right: -3.5rem; + .xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:-bottom-14 { - bottom: -3.5rem; + .xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:-left-14 { - left: -3.5rem; + .xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:-top-16 { - top: -4rem; + .xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:-right-16 { - right: -4rem; + .xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:-bottom-16 { - bottom: -4rem; + .xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:-left-16 { - left: -4rem; + .xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:-top-20 { - top: -5rem; + .xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:-right-20 { - right: -5rem; + .xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:-bottom-20 { - bottom: -5rem; + .xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:-left-20 { - left: -5rem; + .xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:-top-24 { - top: -6rem; + .xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:-right-24 { - right: -6rem; + .xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:-bottom-24 { - bottom: -6rem; + .xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:-left-24 { - left: -6rem; + .xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:-top-28 { - top: -7rem; + .xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:-right-28 { - right: -7rem; + .xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:-bottom-28 { - bottom: -7rem; + .xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:-left-28 { - left: -7rem; + .xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:-top-32 { - top: -8rem; + .xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:-right-32 { - right: -8rem; + .xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:-bottom-32 { - bottom: -8rem; + .xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:-left-32 { - left: -8rem; + .xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:-top-36 { - top: -9rem; + .xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:-right-36 { - right: -9rem; + .xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:-bottom-36 { - bottom: -9rem; + .xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:-left-36 { - left: -9rem; + .xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:-top-40 { - top: -10rem; + .xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:-right-40 { - right: -10rem; + .xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:-bottom-40 { - bottom: -10rem; + .xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:-left-40 { - left: -10rem; + .xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:-top-44 { - top: -11rem; + .xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:-right-44 { - right: -11rem; + .xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:-bottom-44 { - bottom: -11rem; + .xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:-left-44 { - left: -11rem; + .xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:-top-48 { - top: -12rem; + .xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:-right-48 { - right: -12rem; + .xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:-bottom-48 { - bottom: -12rem; + .xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:-left-48 { - left: -12rem; + .xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:-top-52 { - top: -13rem; + .xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:-right-52 { - right: -13rem; + .xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:-bottom-52 { - bottom: -13rem; + .xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:-left-52 { - left: -13rem; + .xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:-top-56 { - top: -14rem; + .xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:-right-56 { - right: -14rem; + .xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:-bottom-56 { - bottom: -14rem; + .xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:-left-56 { - left: -14rem; + .xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:-top-60 { - top: -15rem; + .xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:-right-60 { - right: -15rem; + .xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:-bottom-60 { - bottom: -15rem; + .xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:-left-60 { - left: -15rem; + .xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:-top-64 { - top: -16rem; + .xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:-right-64 { - right: -16rem; + .xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:-bottom-64 { - bottom: -16rem; + .xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:-left-64 { - left: -16rem; + .xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:-top-72 { - top: -18rem; + .xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:-right-72 { - right: -18rem; + .xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:-bottom-72 { - bottom: -18rem; + .xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:-left-72 { - left: -18rem; + .xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:-top-80 { - top: -20rem; + .xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:-right-80 { - right: -20rem; + .xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:-bottom-80 { - bottom: -20rem; + .xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:-left-80 { - left: -20rem; + .xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:-top-96 { - top: -24rem; + .xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:-right-96 { - right: -24rem; + .xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:-bottom-96 { - bottom: -24rem; + .xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:-left-96 { - left: -24rem; + .xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:-top-px { - top: -1px; + .xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:-right-px { - right: -1px; + .xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:-bottom-px { - bottom: -1px; + .xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:-left-px { - left: -1px; + .xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:-top-0\.5 { - top: -0.125rem; + .xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:-right-0\.5 { - right: -0.125rem; + .xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:-bottom-0\.5 { - bottom: -0.125rem; + .xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:-left-0\.5 { - left: -0.125rem; + .xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:-top-1\.5 { - top: -0.375rem; + .xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:-right-1\.5 { - right: -0.375rem; + .xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:-bottom-1\.5 { - bottom: -0.375rem; + .xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:-left-1\.5 { - left: -0.375rem; + .xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:-top-2\.5 { - top: -0.625rem; + .xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:-right-2\.5 { - right: -0.625rem; + .xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:-bottom-2\.5 { - bottom: -0.625rem; + .xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:-left-2\.5 { - left: -0.625rem; + .xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .xl\:-top-3\.5 { - top: -0.875rem; + .xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .xl\:-right-3\.5 { - right: -0.875rem; + .xl\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .xl\:-bottom-3\.5 { - bottom: -0.875rem; + .xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .xl\:-left-3\.5 { - left: -0.875rem; + .xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .xl\:top-1\/2 { - top: 50%; + .xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .xl\:right-1\/2 { - right: 50%; + .xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .xl\:bottom-1\/2 { - bottom: 50%; + .xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .xl\:left-1\/2 { - left: 50%; + .xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .xl\:top-1\/3 { - top: 33.333333%; + .xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .xl\:right-1\/3 { - right: 33.333333%; + .xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .xl\:bottom-1\/3 { - bottom: 33.333333%; + .xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .xl\:left-1\/3 { - left: 33.333333%; + .xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .xl\:top-2\/3 { - top: 66.666667%; + .xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .xl\:right-2\/3 { - right: 66.666667%; + .xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .xl\:bottom-2\/3 { - bottom: 66.666667%; + .xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .xl\:left-2\/3 { - left: 66.666667%; + .xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .xl\:top-1\/4 { - top: 25%; + .xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .xl\:right-1\/4 { - right: 25%; + .xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .xl\:bottom-1\/4 { - bottom: 25%; + .xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .xl\:left-1\/4 { - left: 25%; + .xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .xl\:top-2\/4 { - top: 50%; + .xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .xl\:right-2\/4 { - right: 50%; + .xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .xl\:bottom-2\/4 { - bottom: 50%; + .xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .xl\:left-2\/4 { - left: 50%; + .xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .xl\:top-3\/4 { - top: 75%; + .xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .xl\:right-3\/4 { - right: 75%; + .xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .xl\:bottom-3\/4 { - bottom: 75%; + .xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .xl\:left-3\/4 { - left: 75%; + .xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .xl\:top-full { - top: 100%; + .xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .xl\:right-full { - right: 100%; + .xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .xl\:bottom-full { - bottom: 100%; + .xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .xl\:left-full { - left: 100%; + .xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .xl\:-top-1\/2 { - top: -50%; + .xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .xl\:-right-1\/2 { - right: -50%; + .xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .xl\:-bottom-1\/2 { - bottom: -50%; + .xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .xl\:-left-1\/2 { - left: -50%; + .xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .xl\:-top-1\/3 { - top: -33.333333%; + .xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .xl\:-right-1\/3 { - right: -33.333333%; + .xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .xl\:-bottom-1\/3 { - bottom: -33.333333%; + .xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .xl\:-left-1\/3 { - left: -33.333333%; + .xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .xl\:-top-2\/3 { - top: -66.666667%; + .xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .xl\:-right-2\/3 { - right: -66.666667%; + .xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .xl\:-bottom-2\/3 { - bottom: -66.666667%; + .xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .xl\:-left-2\/3 { - left: -66.666667%; + .xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .xl\:-top-1\/4 { - top: -25%; + .xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .xl\:-right-1\/4 { - right: -25%; + .xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .xl\:-bottom-1\/4 { - bottom: -25%; + .xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .xl\:-left-1\/4 { - left: -25%; + .xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .xl\:-top-2\/4 { - top: -50%; + .xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .xl\:-right-2\/4 { - right: -50%; + .xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .xl\:-bottom-2\/4 { - bottom: -50%; + .xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .xl\:-left-2\/4 { - left: -50%; + .xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .xl\:-top-3\/4 { - top: -75%; + .xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .xl\:-right-3\/4 { - right: -75%; + .xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .xl\:-bottom-3\/4 { - bottom: -75%; + .xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .xl\:-left-3\/4 { - left: -75%; + .xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .xl\:-top-full { - top: -100%; + .xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .xl\:-right-full { - right: -100%; + .xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .xl\:-bottom-full { - bottom: -100%; + .xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .xl\:-left-full { - left: -100%; + .xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .xl\:resize-none { - resize: none; + .xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .xl\:resize-y { - resize: vertical; + .xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .xl\:resize-x { - resize: horizontal; + .xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .xl\:resize { - resize: both; + .xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .xl\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .xl\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .xl\: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); + .xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .xl\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .xl\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .xl\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .xl\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .xl\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .xl\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .xl\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .xl\:group-hover\: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); + .xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .xl\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .xl\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .xl\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .xl\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .xl\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .xl\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .xl\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .xl\:focus-within\:shadow-md:focus-within { - --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); + .xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .xl\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:shadow-md:hover { - --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); + .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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:focus\:shadow-md:focus { - --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); + .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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .xl\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\: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\:ring-inset { - --tw-ring-inset: inset; + .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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .xl\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .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\:ring-offset-black { - --tw-ring-offset-color: #000; + .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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .xl\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .xl\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .xl\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .xl\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .xl\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .xl\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .xl\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .xl\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .xl\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .xl\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .xl\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .xl\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .xl\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .xl\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .xl\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .xl\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .xl\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .xl\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .xl\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .xl\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .xl\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .xl\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .xl\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .xl\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .xl\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .xl\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .xl\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .xl\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .xl\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .xl\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .xl\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .xl\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .xl\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .xl\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .xl\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .xl\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .xl\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .xl\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .xl\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .xl\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .xl\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .xl\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .xl\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .xl\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .xl\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .xl\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .xl\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .xl\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .xl\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .xl\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .xl\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .xl\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .xl\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .xl\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .xl\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .xl\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .xl\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .xl\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .xl\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .xl\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .xl\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .xl\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .xl\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .xl\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .xl\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .xl\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .xl\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .xl\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .xl\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .xl\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .xl\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .xl\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .xl\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .xl\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .xl\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .xl\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .xl\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .xl\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .xl\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .xl\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .xl\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .xl\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .xl\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .xl\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .xl\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .xl\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .xl\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .xl\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .xl\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .xl\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .xl\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .xl\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .xl\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .xl\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .xl\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .xl\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .xl\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .xl\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .xl\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .xl\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .xl\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .xl\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .xl\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .xl\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .xl\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .xl\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .xl\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .xl\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .xl\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .xl\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .xl\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .xl\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .xl\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .xl\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .xl\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .xl\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .xl\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .xl\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .xl\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .xl\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .xl\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .xl\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .xl\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .xl\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .xl\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .xl\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .xl\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .xl\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .xl\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .xl\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .xl\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .xl\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .xl\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .xl\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .xl\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .xl\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .xl\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .xl\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .xl\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .xl\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .xl\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .xl\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .xl\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .xl\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .xl\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .xl\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .xl\:decoration-slice { + box-decoration-break: slice; } - .xl\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .xl\:decoration-clone { + box-decoration-break: clone; } - .xl\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .xl\:bg-auto { + background-size: auto; } - .xl\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .xl\:bg-cover { + background-size: cover; } - .xl\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .xl\:bg-contain { + background-size: contain; } - .xl\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .xl\:bg-fixed { + background-attachment: fixed; } - .xl\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .xl\:bg-local { + background-attachment: local; } - .xl\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .xl\:bg-scroll { + background-attachment: scroll; } - .xl\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .xl\:bg-clip-border { + background-clip: border-box; } - .xl\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .xl\:bg-clip-padding { + background-clip: padding-box; } - .xl\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .xl\:bg-clip-content { + background-clip: content-box; } - .xl\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .xl\:bg-clip-text { + background-clip: text; } - .xl\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .xl\:bg-bottom { + background-position: bottom; } - .xl\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .xl\:bg-center { + background-position: center; } - .xl\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .xl\:bg-left { + background-position: left; } - .xl\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .xl\:bg-left-bottom { + background-position: left bottom; } - .xl\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .xl\:bg-left-top { + background-position: left top; } - .xl\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .xl\:bg-right { + background-position: right; } - .xl\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .xl\:bg-right-bottom { + background-position: right bottom; } - .xl\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .xl\:bg-right-top { + background-position: right top; } - .xl\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .xl\:bg-top { + background-position: top; } - .xl\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .xl\:bg-repeat { + background-repeat: repeat; } - .xl\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .xl\:bg-no-repeat { + background-repeat: no-repeat; } - .xl\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .xl\:bg-repeat-x { + background-repeat: repeat-x; } - .xl\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .xl\:bg-repeat-y { + background-repeat: repeat-y; } - .xl\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .xl\:bg-repeat-round { + background-repeat: round; } - .xl\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .xl\:bg-repeat-space { + background-repeat: space; } - .xl\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .xl\:bg-origin-border { + background-origin: border-box; } - .xl\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .xl\:bg-origin-padding { + background-origin: padding-box; } - .xl\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .xl\:bg-origin-content { + background-origin: content-box; } - .xl\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .xl\:fill-current { + fill: currentColor; } - .xl\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .xl\:stroke-current { + stroke: currentColor; } - .xl\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .xl\:stroke-0 { + stroke-width: 0; } - .xl\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .xl\:stroke-1 { + stroke-width: 1; } - .xl\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .xl\:stroke-2 { + stroke-width: 2; } - .xl\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .xl\:object-contain { + object-fit: contain; } - .xl\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .xl\:object-cover { + object-fit: cover; } - .xl\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .xl\:object-fill { + object-fit: fill; } - .xl\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .xl\:object-none { + object-fit: none; } - .xl\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .xl\:object-scale-down { + object-fit: scale-down; } - .xl\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .xl\:object-bottom { + object-position: bottom; } - .xl\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .xl\:object-center { + object-position: center; } - .xl\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .xl\:object-left { + object-position: left; } - .xl\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .xl\:object-left-bottom { + object-position: left bottom; } - .xl\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .xl\:object-left-top { + object-position: left top; } - .xl\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .xl\:object-right { + object-position: right; } - .xl\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .xl\:object-right-bottom { + object-position: right bottom; } - .xl\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .xl\:object-right-top { + object-position: right top; } - .xl\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .xl\:object-top { + object-position: top; } - .xl\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .xl\:p-0 { + padding: 0px; } - .xl\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .xl\:p-1 { + padding: 0.25rem; } - .xl\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .xl\:p-2 { + padding: 0.5rem; } - .xl\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .xl\:p-3 { + padding: 0.75rem; } - .xl\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .xl\:p-4 { + padding: 1rem; } - .xl\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .xl\:p-5 { + padding: 1.25rem; } - .xl\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .xl\:p-6 { + padding: 1.5rem; } - .xl\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .xl\:p-7 { + padding: 1.75rem; } - .xl\:ring-transparent { - --tw-ring-color: transparent; + .xl\:p-8 { + padding: 2rem; } - .xl\:ring-current { - --tw-ring-color: currentColor; + .xl\:p-9 { + padding: 2.25rem; } - .xl\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .xl\:p-10 { + padding: 2.5rem; } - .xl\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .xl\:p-11 { + padding: 2.75rem; } - .xl\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .xl\:p-12 { + padding: 3rem; } - .xl\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .xl\:p-14 { + padding: 3.5rem; } - .xl\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .xl\:p-16 { + padding: 4rem; } - .xl\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .xl\:p-20 { + padding: 5rem; } - .xl\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .xl\:p-24 { + padding: 6rem; } - .xl\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .xl\:p-28 { + padding: 7rem; } - .xl\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .xl\:p-32 { + padding: 8rem; } - .xl\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .xl\:p-36 { + padding: 9rem; } - .xl\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .xl\:p-40 { + padding: 10rem; } - .xl\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .xl\:p-44 { + padding: 11rem; } - .xl\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .xl\:p-48 { + padding: 12rem; } - .xl\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .xl\:p-52 { + padding: 13rem; } - .xl\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .xl\:p-56 { + padding: 14rem; } - .xl\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .xl\:p-60 { + padding: 15rem; } - .xl\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .xl\:p-64 { + padding: 16rem; } - .xl\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .xl\:p-72 { + padding: 18rem; } - .xl\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .xl\:p-80 { + padding: 20rem; } - .xl\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .xl\:p-96 { + padding: 24rem; } - .xl\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .xl\:p-px { + padding: 1px; } - .xl\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .xl\:p-0\.5 { + padding: 0.125rem; } - .xl\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .xl\:p-1\.5 { + padding: 0.375rem; } - .xl\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .xl\:p-2\.5 { + padding: 0.625rem; } - .xl\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .xl\:p-3\.5 { + padding: 0.875rem; } - .xl\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .xl\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .xl\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .xl\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .xl\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .xl\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .xl\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .xl\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .xl\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .xl\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .xl\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .xl\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .xl\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .xl\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .xl\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .xl\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .xl\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .xl\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .xl\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .xl\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .xl\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .xl\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .xl\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .xl\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .xl\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .xl\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .xl\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .xl\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .xl\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .xl\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .xl\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .xl\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .xl\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .xl\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .xl\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .xl\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .xl\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .xl\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .xl\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .xl\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .xl\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .xl\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .xl\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .xl\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .xl\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .xl\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .xl\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .xl\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .xl\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .xl\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .xl\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .xl\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .xl\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .xl\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .xl\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .xl\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .xl\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .xl\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .xl\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .xl\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .xl\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .xl\:px-px { + padding-left: 1px; + padding-right: 1px; } - .xl\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .xl\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .xl\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .xl\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .xl\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .xl\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .xl\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .xl\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .xl\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .xl\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .xl\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .xl\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .xl\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .xl\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .xl\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .xl\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .xl\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .xl\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .xl\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .xl\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .xl\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .xl\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .xl\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .xl\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .xl\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .xl\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .xl\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .xl\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .xl\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .xl\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .xl\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .xl\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .xl\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .xl\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .xl\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .xl\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .xl\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .xl\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .xl\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .xl\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .xl\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .xl\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .xl\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .xl\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .xl\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .xl\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .xl\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .xl\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .xl\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .xl\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .xl\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .xl\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .xl\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .xl\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .xl\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .xl\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .xl\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .xl\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .xl\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .xl\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .xl\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .xl\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .xl\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .xl\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .xl\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .xl\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .xl\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .xl\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .xl\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .xl\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .xl\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .xl\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .xl\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .xl\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .xl\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .xl\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .xl\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .xl\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .xl\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .xl\:pt-0 { + padding-top: 0px; } - .xl\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .xl\:pt-1 { + padding-top: 0.25rem; } - .xl\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .xl\:pt-2 { + padding-top: 0.5rem; } - .xl\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .xl\:pt-3 { + padding-top: 0.75rem; } - .xl\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .xl\:pt-4 { + padding-top: 1rem; } - .xl\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .xl\:pt-5 { + padding-top: 1.25rem; } - .xl\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .xl\:pt-6 { + padding-top: 1.5rem; } - .xl\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .xl\:pt-7 { + padding-top: 1.75rem; } - .xl\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .xl\:pt-8 { + padding-top: 2rem; } - .xl\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .xl\:pt-9 { + padding-top: 2.25rem; } - .xl\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .xl\:pt-10 { + padding-top: 2.5rem; } - .xl\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .xl\:pt-11 { + padding-top: 2.75rem; } - .xl\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .xl\:pt-12 { + padding-top: 3rem; } - .xl\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .xl\:pt-14 { + padding-top: 3.5rem; } - .xl\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .xl\:pt-16 { + padding-top: 4rem; } - .xl\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .xl\:pt-20 { + padding-top: 5rem; } - .xl\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .xl\:pt-24 { + padding-top: 6rem; } - .xl\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .xl\:pt-28 { + padding-top: 7rem; } - .xl\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .xl\:pt-32 { + padding-top: 8rem; } - .xl\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .xl\:pt-36 { + padding-top: 9rem; } - .xl\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .xl\:pt-40 { + padding-top: 10rem; } - .xl\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .xl\:pt-44 { + padding-top: 11rem; } - .xl\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .xl\:pt-48 { + padding-top: 12rem; } - .xl\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .xl\:pt-52 { + padding-top: 13rem; } - .xl\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .xl\:pt-56 { + padding-top: 14rem; } - .xl\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .xl\:pt-60 { + padding-top: 15rem; } - .xl\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .xl\:pt-64 { + padding-top: 16rem; } - .xl\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .xl\:pt-72 { + padding-top: 18rem; } - .xl\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .xl\:pt-80 { + padding-top: 20rem; } - .xl\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .xl\:pt-96 { + padding-top: 24rem; } - .xl\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .xl\:pt-px { + padding-top: 1px; } - .xl\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .xl\:pt-0\.5 { + padding-top: 0.125rem; } - .xl\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .xl\:pt-1\.5 { + padding-top: 0.375rem; } - .xl\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .xl\:pt-2\.5 { + padding-top: 0.625rem; } - .xl\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .xl\:pt-3\.5 { + padding-top: 0.875rem; } - .xl\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .xl\:pr-0 { + padding-right: 0px; } - .xl\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .xl\:pr-1 { + padding-right: 0.25rem; } - .xl\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .xl\:pr-2 { + padding-right: 0.5rem; } - .xl\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .xl\:pr-3 { + padding-right: 0.75rem; } - .xl\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .xl\:pr-4 { + padding-right: 1rem; } - .xl\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .xl\:pr-5 { + padding-right: 1.25rem; } - .xl\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .xl\:pr-6 { + padding-right: 1.5rem; } - .xl\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .xl\:pr-7 { + padding-right: 1.75rem; } - .xl\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .xl\:pr-8 { + padding-right: 2rem; } - .xl\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .xl\:pr-9 { + padding-right: 2.25rem; } - .xl\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .xl\:pr-10 { + padding-right: 2.5rem; } - .xl\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .xl\:pr-11 { + padding-right: 2.75rem; } - .xl\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .xl\:pr-12 { + padding-right: 3rem; } - .xl\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .xl\:pr-14 { + padding-right: 3.5rem; } - .xl\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .xl\:pr-16 { + padding-right: 4rem; } - .xl\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .xl\:pr-20 { + padding-right: 5rem; } - .xl\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .xl\:pr-24 { + padding-right: 6rem; } - .xl\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .xl\:pr-28 { + padding-right: 7rem; } - .xl\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .xl\:pr-32 { + padding-right: 8rem; } - .xl\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .xl\:pr-36 { + padding-right: 9rem; } - .xl\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .xl\:pr-40 { + padding-right: 10rem; } - .xl\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .xl\:pr-44 { + padding-right: 11rem; } - .xl\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .xl\:pr-48 { + padding-right: 12rem; } - .xl\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .xl\:pr-52 { + padding-right: 13rem; } - .xl\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .xl\:pr-56 { + padding-right: 14rem; } - .xl\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .xl\:pr-60 { + padding-right: 15rem; } - .xl\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .xl\:pr-64 { + padding-right: 16rem; } - .xl\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .xl\:pr-72 { + padding-right: 18rem; } - .xl\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .xl\:pr-80 { + padding-right: 20rem; } - .xl\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .xl\:pr-96 { + padding-right: 24rem; } - .xl\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .xl\:pr-px { + padding-right: 1px; } - .xl\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .xl\:pr-0\.5 { + padding-right: 0.125rem; } - .xl\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .xl\:pr-1\.5 { + padding-right: 0.375rem; } - .xl\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .xl\:pr-2\.5 { + padding-right: 0.625rem; } - .xl\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .xl\:pr-3\.5 { + padding-right: 0.875rem; } - .xl\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .xl\:pb-0 { + padding-bottom: 0px; } - .xl\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .xl\:pb-1 { + padding-bottom: 0.25rem; } - .xl\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .xl\:pb-2 { + padding-bottom: 0.5rem; } - .xl\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .xl\:pb-3 { + padding-bottom: 0.75rem; } - .xl\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .xl\:pb-4 { + padding-bottom: 1rem; } - .xl\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .xl\:pb-5 { + padding-bottom: 1.25rem; } - .xl\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .xl\:pb-6 { + padding-bottom: 1.5rem; } - .xl\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .xl\:pb-7 { + padding-bottom: 1.75rem; } - .xl\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .xl\:pb-8 { + padding-bottom: 2rem; } - .xl\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .xl\:pb-9 { + padding-bottom: 2.25rem; } - .xl\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .xl\:pb-10 { + padding-bottom: 2.5rem; } - .xl\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .xl\:pb-11 { + padding-bottom: 2.75rem; } - .xl\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .xl\:pb-12 { + padding-bottom: 3rem; } - .xl\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .xl\:pb-14 { + padding-bottom: 3.5rem; } - .xl\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .xl\:pb-16 { + padding-bottom: 4rem; } - .xl\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .xl\:pb-20 { + padding-bottom: 5rem; } - .xl\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .xl\:pb-24 { + padding-bottom: 6rem; } - .xl\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .xl\:pb-28 { + padding-bottom: 7rem; } - .xl\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .xl\:pb-32 { + padding-bottom: 8rem; } - .xl\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .xl\:pb-36 { + padding-bottom: 9rem; } - .xl\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .xl\:pb-40 { + padding-bottom: 10rem; } - .xl\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .xl\:pb-44 { + padding-bottom: 11rem; } - .xl\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .xl\:pb-48 { + padding-bottom: 12rem; } - .xl\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .xl\:pb-52 { + padding-bottom: 13rem; } - .xl\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .xl\:pb-56 { + padding-bottom: 14rem; } - .xl\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .xl\:pb-60 { + padding-bottom: 15rem; } - .xl\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .xl\:pb-64 { + padding-bottom: 16rem; } - .xl\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .xl\:pb-72 { + padding-bottom: 18rem; } - .xl\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .xl\:pb-80 { + padding-bottom: 20rem; } - .xl\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .xl\:pb-96 { + padding-bottom: 24rem; } - .xl\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .xl\:pb-px { + padding-bottom: 1px; } - .xl\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .xl\:pb-0\.5 { + padding-bottom: 0.125rem; } - .xl\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .xl\:pb-1\.5 { + padding-bottom: 0.375rem; } - .xl\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .xl\:pb-2\.5 { + padding-bottom: 0.625rem; } - .xl\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .xl\:pb-3\.5 { + padding-bottom: 0.875rem; } - .xl\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .xl\:pl-0 { + padding-left: 0px; } - .xl\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .xl\:pl-1 { + padding-left: 0.25rem; } - .xl\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .xl\:pl-2 { + padding-left: 0.5rem; } - .xl\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .xl\:pl-3 { + padding-left: 0.75rem; } - .xl\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .xl\:pl-4 { + padding-left: 1rem; } - .xl\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .xl\:pl-5 { + padding-left: 1.25rem; } - .xl\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .xl\:pl-6 { + padding-left: 1.5rem; } - .xl\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .xl\:pl-7 { + padding-left: 1.75rem; } - .xl\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .xl\:pl-8 { + padding-left: 2rem; } - .xl\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .xl\:pl-9 { + padding-left: 2.25rem; } - .xl\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .xl\:pl-10 { + padding-left: 2.5rem; } - .xl\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .xl\:pl-11 { + padding-left: 2.75rem; } - .xl\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .xl\:pl-12 { + padding-left: 3rem; } - .xl\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .xl\:pl-14 { + padding-left: 3.5rem; } - .xl\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .xl\:pl-16 { + padding-left: 4rem; } - .xl\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .xl\:pl-20 { + padding-left: 5rem; } - .xl\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .xl\:pl-24 { + padding-left: 6rem; } - .xl\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .xl\:pl-28 { + padding-left: 7rem; } - .xl\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .xl\:pl-32 { + padding-left: 8rem; } - .xl\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .xl\:pl-36 { + padding-left: 9rem; } - .xl\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .xl\:pl-40 { + padding-left: 10rem; } - .xl\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .xl\:pl-44 { + padding-left: 11rem; } - .xl\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .xl\:pl-48 { + padding-left: 12rem; } - .xl\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .xl\:pl-52 { + padding-left: 13rem; } - .xl\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .xl\:pl-56 { + padding-left: 14rem; } - .xl\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .xl\:pl-60 { + padding-left: 15rem; } - .xl\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .xl\:pl-64 { + padding-left: 16rem; } - .xl\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .xl\:pl-72 { + padding-left: 18rem; } - .xl\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .xl\:pl-80 { + padding-left: 20rem; } - .xl\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .xl\:pl-96 { + padding-left: 24rem; } - .xl\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .xl\:pl-px { + padding-left: 1px; } - .xl\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .xl\:pl-0\.5 { + padding-left: 0.125rem; } - .xl\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .xl\:pl-1\.5 { + padding-left: 0.375rem; } - .xl\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .xl\:pl-2\.5 { + padding-left: 0.625rem; } - .xl\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .xl\:pl-3\.5 { + padding-left: 0.875rem; } - .xl\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .xl\:text-left { + text-align: left; } - .xl\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .xl\:text-center { + text-align: center; } - .xl\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .xl\:text-right { + text-align: right; } - .xl\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .xl\:text-justify { + text-align: justify; } - .xl\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .xl\:align-baseline { + vertical-align: baseline; } - .xl\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .xl\:align-top { + vertical-align: top; } - .xl\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .xl\:align-middle { + vertical-align: middle; } - .xl\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .xl\:align-bottom { + vertical-align: bottom; } - .xl\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .xl\:align-text-top { + vertical-align: text-top; } - .xl\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .xl\:align-text-bottom { + vertical-align: text-bottom; } - .xl\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .xl\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .xl\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .xl\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .xl\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .xl\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .xl\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .xl\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .xl\:ring-opacity-0 { - --tw-ring-opacity: 0; + .xl\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .xl\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .xl\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .xl\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .xl\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .xl\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .xl\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .xl\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .xl\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .xl\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .xl\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .xl\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .xl\:text-5xl { + font-size: 3rem; + line-height: 1; } - .xl\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .xl\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .xl\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .xl\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .xl\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .xl\:text-8xl { + font-size: 6rem; + line-height: 1; } - .xl\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .xl\:text-9xl { + font-size: 8rem; + line-height: 1; } - .xl\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .xl\:font-thin { + font-weight: 100; } - .xl\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .xl\:font-extralight { + font-weight: 200; } - .xl\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .xl\:font-light { + font-weight: 300; } - .xl\:ring-opacity-100 { - --tw-ring-opacity: 1; + .xl\:font-normal { + font-weight: 400; } - .xl\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .xl\:font-medium { + font-weight: 500; } - .xl\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .xl\:font-semibold { + font-weight: 600; } - .xl\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .xl\:font-bold { + font-weight: 700; } - .xl\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .xl\:font-extrabold { + font-weight: 800; } - .xl\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .xl\:font-black { + font-weight: 900; } - .xl\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .xl\:uppercase { + text-transform: uppercase; } - .xl\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .xl\:lowercase { + text-transform: lowercase; } - .xl\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .xl\:capitalize { + text-transform: capitalize; } - .xl\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .xl\:normal-case { + text-transform: none; } - .xl\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .xl\:italic { + font-style: italic; } - .xl\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .xl\:not-italic { + font-style: normal; } - .xl\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .xl\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .xl\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .xl\:normal-nums { + font-variant-numeric: normal; } - .xl\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .xl\:ordinal { + --tw-ordinal: ordinal; } - .xl\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .xl\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .xl\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .xl\:lining-nums { + --tw-numeric-figure: lining-nums; } - .xl\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .xl\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .xl\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .xl\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .xl\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .xl\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .xl\:leading-3 { + line-height: .75rem; } - .xl\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .xl\:leading-4 { + line-height: 1rem; } - .xl\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .xl\:leading-5 { + line-height: 1.25rem; } - .xl\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .xl\:leading-6 { + line-height: 1.5rem; } - .xl\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .xl\:leading-7 { + line-height: 1.75rem; } - .xl\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .xl\:leading-8 { + line-height: 2rem; } - .xl\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .xl\:leading-9 { + line-height: 2.25rem; } - .xl\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .xl\:leading-10 { + line-height: 2.5rem; } - .xl\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .xl\:leading-none { + line-height: 1; } - .xl\:fill-current { - fill: currentColor; + .xl\:leading-tight { + line-height: 1.25; } - .xl\:stroke-current { - stroke: currentColor; + .xl\:leading-snug { + line-height: 1.375; } - .xl\:stroke-0 { - stroke-width: 0; + .xl\:leading-normal { + line-height: 1.5; } - .xl\:stroke-1 { - stroke-width: 1; + .xl\:leading-relaxed { + line-height: 1.625; } - .xl\:stroke-2 { - stroke-width: 2; + .xl\:leading-loose { + line-height: 2; } - .xl\:table-auto { - table-layout: auto; + .xl\:tracking-tighter { + letter-spacing: -0.05em; } - .xl\:table-fixed { - table-layout: fixed; + .xl\:tracking-tight { + letter-spacing: -0.025em; } - .xl\:text-left { - text-align: left; + .xl\:tracking-normal { + letter-spacing: 0em; } - .xl\:text-center { - text-align: center; + .xl\:tracking-wide { + letter-spacing: 0.025em; } - .xl\:text-right { - text-align: right; + .xl\:tracking-wider { + letter-spacing: 0.05em; } - .xl\:text-justify { - text-align: justify; + .xl\:tracking-widest { + letter-spacing: 0.1em; } .xl\:text-transparent { @@ -141238,44 +141427,6 @@ video { --tw-text-opacity: 1; } - .xl\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .xl\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .xl\:overflow-clip { - text-overflow: clip; - } - - .xl\:italic { - font-style: italic; - } - - .xl\:not-italic { - font-style: normal; - } - - .xl\:uppercase { - text-transform: uppercase; - } - - .xl\:lowercase { - text-transform: lowercase; - } - - .xl\:capitalize { - text-transform: capitalize; - } - - .xl\:normal-case { - text-transform: none; - } - .xl\:underline { text-decoration: underline; } @@ -141346,4258 +141497,4669 @@ video { -moz-osx-font-smoothing: auto; } - .xl\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); - } - - .xl\:normal-nums { - font-variant-numeric: normal; - } - - .xl\:ordinal { - --tw-ordinal: ordinal; - } - - .xl\:slashed-zero { - --tw-slashed-zero: slashed-zero; - } - - .xl\:lining-nums { - --tw-numeric-figure: lining-nums; - } - - .xl\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; - } - - .xl\:proportional-nums { - --tw-numeric-spacing: proportional-nums; - } - - .xl\:tabular-nums { - --tw-numeric-spacing: tabular-nums; - } - - .xl\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; - } - - .xl\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; - } - - .xl\:tracking-tighter { - letter-spacing: -0.05em; - } - - .xl\:tracking-tight { - letter-spacing: -0.025em; - } - - .xl\:tracking-normal { - letter-spacing: 0em; - } - - .xl\:tracking-wide { - letter-spacing: 0.025em; + .xl\:placeholder-transparent::placeholder { + color: transparent; } - .xl\:tracking-wider { - letter-spacing: 0.05em; + .xl\:placeholder-current::placeholder { + color: currentColor; } - .xl\:tracking-widest { - letter-spacing: 0.1em; + .xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .xl\:select-none { - user-select: none; + .xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .xl\:select-text { - user-select: text; + .xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .xl\:select-all { - user-select: all; + .xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .xl\:select-auto { - user-select: auto; + .xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .xl\:align-baseline { - vertical-align: baseline; + .xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .xl\:align-top { - vertical-align: top; + .xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .xl\:align-middle { - vertical-align: middle; + .xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .xl\:align-bottom { - vertical-align: bottom; + .xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .xl\:align-text-top { - vertical-align: text-top; + .xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .xl\:align-text-bottom { - vertical-align: text-bottom; + .xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .xl\:visible { - visibility: visible; + .xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .xl\:invisible { - visibility: hidden; + .xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .xl\:whitespace-normal { - white-space: normal; + .xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .xl\:whitespace-nowrap { - white-space: nowrap; + .xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .xl\:whitespace-pre { - white-space: pre; + .xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .xl\:whitespace-pre-line { - white-space: pre-line; + .xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .xl\:whitespace-pre-wrap { - white-space: pre-wrap; + .xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .xl\:break-normal { - overflow-wrap: normal; - word-break: normal; + .xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .xl\:break-words { - overflow-wrap: break-word; + .xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .xl\:break-all { - word-break: break-all; + .xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .xl\:w-0 { - width: 0px; + .xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .xl\:w-1 { - width: 0.25rem; + .xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .xl\:w-2 { - width: 0.5rem; + .xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .xl\:w-3 { - width: 0.75rem; + .xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .xl\:w-4 { - width: 1rem; + .xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .xl\:w-5 { - width: 1.25rem; + .xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .xl\:w-6 { - width: 1.5rem; + .xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .xl\:w-7 { - width: 1.75rem; + .xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .xl\:w-8 { - width: 2rem; + .xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .xl\:w-9 { - width: 2.25rem; + .xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .xl\:w-10 { - width: 2.5rem; + .xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .xl\:w-11 { - width: 2.75rem; + .xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .xl\:w-12 { - width: 3rem; + .xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .xl\:w-14 { - width: 3.5rem; + .xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .xl\:w-16 { - width: 4rem; + .xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .xl\:w-20 { - width: 5rem; + .xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .xl\:w-24 { - width: 6rem; + .xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .xl\:w-28 { - width: 7rem; + .xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .xl\:w-32 { - width: 8rem; + .xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .xl\:w-36 { - width: 9rem; + .xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .xl\:w-40 { - width: 10rem; + .xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .xl\:w-44 { - width: 11rem; + .xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .xl\:w-48 { - width: 12rem; + .xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .xl\:w-52 { - width: 13rem; + .xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .xl\:w-56 { - width: 14rem; + .xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .xl\:w-60 { - width: 15rem; + .xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .xl\:w-64 { - width: 16rem; + .xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .xl\:w-72 { - width: 18rem; + .xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .xl\:w-80 { - width: 20rem; + .xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .xl\:w-96 { - width: 24rem; + .xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .xl\:w-auto { - width: auto; + .xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .xl\:w-px { - width: 1px; + .xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .xl\:w-0\.5 { - width: 0.125rem; + .xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .xl\:w-1\.5 { - width: 0.375rem; + .xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .xl\:w-2\.5 { - width: 0.625rem; + .xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .xl\:w-3\.5 { - width: 0.875rem; + .xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .xl\:w-1\/2 { - width: 50%; + .xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .xl\:w-1\/3 { - width: 33.333333%; + .xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .xl\:w-2\/3 { - width: 66.666667%; + .xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .xl\:w-1\/4 { - width: 25%; + .xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .xl\:w-2\/4 { - width: 50%; + .xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .xl\:w-3\/4 { - width: 75%; + .xl\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .xl\:w-1\/5 { - width: 20%; + .xl\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .xl\:w-2\/5 { - width: 40%; + .xl\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .xl\:w-3\/5 { - width: 60%; + .xl\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .xl\:w-4\/5 { - width: 80%; + .xl\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .xl\:w-1\/6 { - width: 16.666667%; + .xl\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .xl\:w-2\/6 { - width: 33.333333%; + .xl\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .xl\:w-3\/6 { - width: 50%; + .xl\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .xl\:w-4\/6 { - width: 66.666667%; + .xl\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .xl\:w-5\/6 { - width: 83.333333%; + .xl\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .xl\:w-1\/12 { - width: 8.333333%; + .xl\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .xl\:w-2\/12 { - width: 16.666667%; + .xl\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .xl\:w-3\/12 { - width: 25%; + .xl\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .xl\:w-4\/12 { - width: 33.333333%; + .xl\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .xl\:w-5\/12 { - width: 41.666667%; + .xl\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .xl\:w-6\/12 { - width: 50%; + .xl\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .xl\:w-7\/12 { - width: 58.333333%; + .xl\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .xl\:w-8\/12 { - width: 66.666667%; + .xl\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .xl\:w-9\/12 { - width: 75%; + .xl\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .xl\:w-10\/12 { - width: 83.333333%; + .xl\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .xl\:w-11\/12 { - width: 91.666667%; + .xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .xl\:w-full { - width: 100%; + .xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .xl\:w-screen { - width: 100vw; + .xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .xl\:w-min { - width: min-content; + .xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .xl\:w-max { - width: max-content; + .xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .xl\:z-0 { - z-index: 0; + .xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .xl\:z-10 { - z-index: 10; + .xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .xl\:z-20 { - z-index: 20; + .xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .xl\:z-30 { - z-index: 30; + .xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .xl\:z-40 { - z-index: 40; + .xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .xl\:z-50 { - z-index: 50; + .xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .xl\:z-auto { - z-index: auto; + .xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-0:focus-within { - z-index: 0; + .xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-10:focus-within { - z-index: 10; + .xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-20:focus-within { - z-index: 20; + .xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-30:focus-within { - z-index: 30; + .xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-40:focus-within { - z-index: 40; + .xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-50:focus-within { - z-index: 50; + .xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .xl\:focus-within\:z-auto:focus-within { - z-index: auto; + .xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-0:focus { - z-index: 0; + .xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-10:focus { - z-index: 10; + .xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-20:focus { - z-index: 20; + .xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-30:focus { - z-index: 30; + .xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-40:focus { - z-index: 40; + .xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-50:focus { - z-index: 50; + .xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .xl\:focus\:z-auto:focus { - z-index: auto; + .xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .xl\:isolate { - isolation: isolate; + .xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .xl\:isolation-auto { - isolation: auto; + .xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .xl\:gap-0 { - gap: 0px; + .xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .xl\:gap-1 { - gap: 0.25rem; + .xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .xl\:gap-2 { - gap: 0.5rem; + .xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .xl\:gap-3 { - gap: 0.75rem; + .xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .xl\:gap-4 { - gap: 1rem; + .xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .xl\:gap-5 { - gap: 1.25rem; + .xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .xl\:gap-6 { - gap: 1.5rem; + .xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .xl\:gap-7 { - gap: 1.75rem; + .xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .xl\:gap-8 { - gap: 2rem; + .xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .xl\:gap-9 { - gap: 2.25rem; + .xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .xl\:gap-10 { - gap: 2.5rem; + .xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .xl\:gap-11 { - gap: 2.75rem; + .xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .xl\:gap-12 { - gap: 3rem; + .xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .xl\:gap-14 { - gap: 3.5rem; + .xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .xl\:gap-16 { - gap: 4rem; + .xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .xl\:gap-20 { - gap: 5rem; + .xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .xl\:gap-24 { - gap: 6rem; + .xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .xl\:gap-28 { - gap: 7rem; + .xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .xl\:gap-32 { - gap: 8rem; + .xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .xl\:gap-36 { - gap: 9rem; + .xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .xl\:gap-40 { - gap: 10rem; + .xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .xl\:gap-44 { - gap: 11rem; + .xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .xl\:gap-48 { - gap: 12rem; + .xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .xl\:gap-52 { - gap: 13rem; + .xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .xl\:gap-56 { - gap: 14rem; + .xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .xl\:gap-60 { - gap: 15rem; + .xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .xl\:gap-64 { - gap: 16rem; + .xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .xl\:gap-72 { - gap: 18rem; + .xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .xl\:gap-80 { - gap: 20rem; + .xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .xl\:gap-96 { - gap: 24rem; + .xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .xl\:gap-px { - gap: 1px; + .xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .xl\:gap-0\.5 { - gap: 0.125rem; + .xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .xl\:gap-1\.5 { - gap: 0.375rem; + .xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .xl\:gap-2\.5 { - gap: 0.625rem; + .xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .xl\:gap-3\.5 { - gap: 0.875rem; + .xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .xl\:gap-x-0 { - column-gap: 0px; + .xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .xl\:gap-x-1 { - column-gap: 0.25rem; + .xl\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .xl\:gap-x-2 { - column-gap: 0.5rem; + .xl\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .xl\:gap-x-3 { - column-gap: 0.75rem; + .xl\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .xl\:gap-x-4 { - column-gap: 1rem; + .xl\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .xl\:gap-x-5 { - column-gap: 1.25rem; + .xl\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .xl\:gap-x-6 { - column-gap: 1.5rem; + .xl\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .xl\:gap-x-7 { - column-gap: 1.75rem; + .xl\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .xl\:gap-x-8 { - column-gap: 2rem; + .xl\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .xl\:gap-x-9 { - column-gap: 2.25rem; + .xl\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .xl\:gap-x-10 { - column-gap: 2.5rem; + .xl\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .xl\:gap-x-11 { - column-gap: 2.75rem; + .xl\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .xl\:gap-x-12 { - column-gap: 3rem; + .xl\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .xl\:gap-x-14 { - column-gap: 3.5rem; + .xl\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .xl\:gap-x-16 { - column-gap: 4rem; + .xl\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .xl\:gap-x-20 { - column-gap: 5rem; + .xl\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .xl\:gap-x-24 { - column-gap: 6rem; + .xl\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .xl\:gap-x-28 { - column-gap: 7rem; + .xl\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .xl\:gap-x-32 { - column-gap: 8rem; + .xl\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .xl\:gap-x-36 { - column-gap: 9rem; + .xl\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .xl\:gap-x-40 { - column-gap: 10rem; + .xl\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .xl\:gap-x-44 { - column-gap: 11rem; + .xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } - .xl\:gap-x-48 { - column-gap: 12rem; + .xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } - .xl\:gap-x-52 { - column-gap: 13rem; + .xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } - .xl\:gap-x-56 { - column-gap: 14rem; + .xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } - .xl\:gap-x-60 { - column-gap: 15rem; + .xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } - .xl\:gap-x-64 { - column-gap: 16rem; + .xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } - .xl\:gap-x-72 { - column-gap: 18rem; + .xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } - .xl\:gap-x-80 { - column-gap: 20rem; + .xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } - .xl\:gap-x-96 { - column-gap: 24rem; + .xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } - .xl\:gap-x-px { - column-gap: 1px; + .xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } - .xl\:gap-x-0\.5 { - column-gap: 0.125rem; + .xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } - .xl\:gap-x-1\.5 { - column-gap: 0.375rem; + .xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } - .xl\:gap-x-2\.5 { - column-gap: 0.625rem; + .xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } - .xl\:gap-x-3\.5 { - column-gap: 0.875rem; + .xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } - .xl\:gap-y-0 { - row-gap: 0px; + .xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } - .xl\:gap-y-1 { - row-gap: 0.25rem; + .xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } - .xl\:gap-y-2 { - row-gap: 0.5rem; + .xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } - .xl\:gap-y-3 { - row-gap: 0.75rem; + .xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } - .xl\:gap-y-4 { - row-gap: 1rem; + .xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } - .xl\:gap-y-5 { - row-gap: 1.25rem; + .xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } - .xl\:gap-y-6 { - row-gap: 1.5rem; + .xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } - .xl\:gap-y-7 { - row-gap: 1.75rem; + .xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } - .xl\:gap-y-8 { - row-gap: 2rem; + .xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } - .xl\:gap-y-9 { - row-gap: 2.25rem; + .xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } - .xl\:gap-y-10 { - row-gap: 2.5rem; + .xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } - .xl\:gap-y-11 { - row-gap: 2.75rem; + .xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } - .xl\:gap-y-12 { - row-gap: 3rem; + .xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } - .xl\:gap-y-14 { - row-gap: 3.5rem; + .xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } - .xl\:gap-y-16 { - row-gap: 4rem; + .xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } - .xl\:gap-y-20 { - row-gap: 5rem; + .xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } - .xl\:gap-y-24 { - row-gap: 6rem; + .xl\:opacity-0 { + opacity: 0; } - .xl\:gap-y-28 { - row-gap: 7rem; + .xl\:opacity-5 { + opacity: 0.05; } - .xl\:gap-y-32 { - row-gap: 8rem; + .xl\:opacity-10 { + opacity: 0.1; } - .xl\:gap-y-36 { - row-gap: 9rem; + .xl\:opacity-20 { + opacity: 0.2; } - .xl\:gap-y-40 { - row-gap: 10rem; + .xl\:opacity-25 { + opacity: 0.25; } - .xl\:gap-y-44 { - row-gap: 11rem; + .xl\:opacity-30 { + opacity: 0.3; } - .xl\:gap-y-48 { - row-gap: 12rem; + .xl\:opacity-40 { + opacity: 0.4; } - .xl\:gap-y-52 { - row-gap: 13rem; + .xl\:opacity-50 { + opacity: 0.5; } - .xl\:gap-y-56 { - row-gap: 14rem; + .xl\:opacity-60 { + opacity: 0.6; } - .xl\:gap-y-60 { - row-gap: 15rem; + .xl\:opacity-70 { + opacity: 0.7; } - .xl\:gap-y-64 { - row-gap: 16rem; + .xl\:opacity-75 { + opacity: 0.75; } - .xl\:gap-y-72 { - row-gap: 18rem; + .xl\:opacity-80 { + opacity: 0.8; } - .xl\:gap-y-80 { - row-gap: 20rem; + .xl\:opacity-90 { + opacity: 0.9; } - .xl\:gap-y-96 { - row-gap: 24rem; + .xl\:opacity-95 { + opacity: 0.95; } - .xl\:gap-y-px { - row-gap: 1px; + .xl\:opacity-100 { + opacity: 1; } - .xl\:gap-y-0\.5 { - row-gap: 0.125rem; + .group:hover .xl\:group-hover\:opacity-0 { + opacity: 0; } - .xl\:gap-y-1\.5 { - row-gap: 0.375rem; + .group:hover .xl\:group-hover\:opacity-5 { + opacity: 0.05; } - .xl\:gap-y-2\.5 { - row-gap: 0.625rem; + .group:hover .xl\:group-hover\:opacity-10 { + opacity: 0.1; } - .xl\:gap-y-3\.5 { - row-gap: 0.875rem; + .group:hover .xl\:group-hover\:opacity-20 { + opacity: 0.2; } - .xl\:grid-flow-row { - grid-auto-flow: row; + .group:hover .xl\:group-hover\:opacity-25 { + opacity: 0.25; } - .xl\:grid-flow-col { - grid-auto-flow: column; + .group:hover .xl\:group-hover\:opacity-30 { + opacity: 0.3; } - .xl\:grid-flow-row-dense { - grid-auto-flow: row dense; + .group:hover .xl\:group-hover\:opacity-40 { + opacity: 0.4; } - .xl\:grid-flow-col-dense { - grid-auto-flow: column dense; + .group:hover .xl\:group-hover\:opacity-50 { + opacity: 0.5; } - .xl\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-60 { + opacity: 0.6; } - .xl\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-70 { + opacity: 0.7; } - .xl\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-75 { + opacity: 0.75; } - .xl\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-80 { + opacity: 0.8; } - .xl\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-90 { + opacity: 0.9; } - .xl\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-95 { + opacity: 0.95; } - .xl\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .group:hover .xl\:group-hover\:opacity-100 { + opacity: 1; } - .xl\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .xl\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .xl\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .xl\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .xl\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .xl\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .xl\:grid-cols-none { - grid-template-columns: none; + .xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .xl\:auto-cols-auto { - grid-auto-columns: auto; + .xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .xl\:auto-cols-min { - grid-auto-columns: min-content; + .xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .xl\:auto-cols-max { - grid-auto-columns: max-content; + .xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .xl\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .xl\:col-auto { - grid-column: auto; + .xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .xl\:col-span-1 { - grid-column: span 1 / span 1; + .xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .xl\:col-span-2 { - grid-column: span 2 / span 2; + .xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .xl\:col-span-3 { - grid-column: span 3 / span 3; + .xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .xl\:col-span-4 { - grid-column: span 4 / span 4; + .xl\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .xl\:col-span-5 { - grid-column: span 5 / span 5; + .xl\:hover\:opacity-0:hover { + opacity: 0; } - .xl\:col-span-6 { - grid-column: span 6 / span 6; + .xl\:hover\:opacity-5:hover { + opacity: 0.05; } - .xl\:col-span-7 { - grid-column: span 7 / span 7; + .xl\:hover\:opacity-10:hover { + opacity: 0.1; } - .xl\:col-span-8 { - grid-column: span 8 / span 8; + .xl\:hover\:opacity-20:hover { + opacity: 0.2; } - .xl\:col-span-9 { - grid-column: span 9 / span 9; + .xl\:hover\:opacity-25:hover { + opacity: 0.25; } - .xl\:col-span-10 { - grid-column: span 10 / span 10; + .xl\:hover\:opacity-30:hover { + opacity: 0.3; } - .xl\:col-span-11 { - grid-column: span 11 / span 11; + .xl\:hover\:opacity-40:hover { + opacity: 0.4; } - .xl\:col-span-12 { - grid-column: span 12 / span 12; + .xl\:hover\:opacity-50:hover { + opacity: 0.5; } - .xl\:col-span-full { - grid-column: 1 / -1; + .xl\:hover\:opacity-60:hover { + opacity: 0.6; } - .xl\:col-start-1 { - grid-column-start: 1; + .xl\:hover\:opacity-70:hover { + opacity: 0.7; } - .xl\:col-start-2 { - grid-column-start: 2; + .xl\:hover\:opacity-75:hover { + opacity: 0.75; } - .xl\:col-start-3 { - grid-column-start: 3; + .xl\:hover\:opacity-80:hover { + opacity: 0.8; } - .xl\:col-start-4 { - grid-column-start: 4; + .xl\:hover\:opacity-90:hover { + opacity: 0.9; } - .xl\:col-start-5 { - grid-column-start: 5; + .xl\:hover\:opacity-95:hover { + opacity: 0.95; } - .xl\:col-start-6 { - grid-column-start: 6; + .xl\:hover\:opacity-100:hover { + opacity: 1; } - .xl\:col-start-7 { - grid-column-start: 7; + .xl\:focus\:opacity-0:focus { + opacity: 0; } - .xl\:col-start-8 { - grid-column-start: 8; + .xl\:focus\:opacity-5:focus { + opacity: 0.05; } - .xl\:col-start-9 { - grid-column-start: 9; + .xl\:focus\:opacity-10:focus { + opacity: 0.1; } - .xl\:col-start-10 { - grid-column-start: 10; + .xl\:focus\:opacity-20:focus { + opacity: 0.2; } - .xl\:col-start-11 { - grid-column-start: 11; + .xl\:focus\:opacity-25:focus { + opacity: 0.25; } - .xl\:col-start-12 { - grid-column-start: 12; + .xl\:focus\:opacity-30:focus { + opacity: 0.3; } - .xl\:col-start-13 { - grid-column-start: 13; + .xl\:focus\:opacity-40:focus { + opacity: 0.4; } - .xl\:col-start-auto { - grid-column-start: auto; + .xl\:focus\:opacity-50:focus { + opacity: 0.5; } - .xl\:col-end-1 { - grid-column-end: 1; + .xl\:focus\:opacity-60:focus { + opacity: 0.6; } - .xl\:col-end-2 { - grid-column-end: 2; + .xl\:focus\:opacity-70:focus { + opacity: 0.7; } - .xl\:col-end-3 { - grid-column-end: 3; + .xl\:focus\:opacity-75:focus { + opacity: 0.75; } - .xl\:col-end-4 { - grid-column-end: 4; + .xl\:focus\:opacity-80:focus { + opacity: 0.8; } - .xl\:col-end-5 { - grid-column-end: 5; + .xl\:focus\:opacity-90:focus { + opacity: 0.9; } - .xl\:col-end-6 { - grid-column-end: 6; + .xl\:focus\:opacity-95:focus { + opacity: 0.95; } - .xl\:col-end-7 { - grid-column-end: 7; + .xl\:focus\:opacity-100:focus { + opacity: 1; } - .xl\:col-end-8 { - grid-column-end: 8; + .xl\:bg-blend-normal { + background-blend-mode: normal; } - .xl\:col-end-9 { - grid-column-end: 9; + .xl\:bg-blend-multiply { + background-blend-mode: multiply; } - .xl\:col-end-10 { - grid-column-end: 10; + .xl\:bg-blend-screen { + background-blend-mode: screen; } - .xl\:col-end-11 { - grid-column-end: 11; + .xl\:bg-blend-overlay { + background-blend-mode: overlay; } - .xl\:col-end-12 { - grid-column-end: 12; + .xl\:bg-blend-darken { + background-blend-mode: darken; } - .xl\:col-end-13 { - grid-column-end: 13; + .xl\:bg-blend-lighten { + background-blend-mode: lighten; } - .xl\:col-end-auto { - grid-column-end: auto; + .xl\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .xl\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .xl\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .xl\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .xl\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .xl\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .xl\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .xl\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .xl\:bg-blend-difference { + background-blend-mode: difference; } - .xl\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .xl\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .xl\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .xl\:bg-blend-hue { + background-blend-mode: hue; } - .xl\:grid-rows-none { - grid-template-rows: none; + .xl\:bg-blend-saturation { + background-blend-mode: saturation; } - .xl\:auto-rows-auto { - grid-auto-rows: auto; + .xl\:bg-blend-color { + background-blend-mode: color; } - .xl\:auto-rows-min { - grid-auto-rows: min-content; + .xl\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .xl\:auto-rows-max { - grid-auto-rows: max-content; + .xl\:mix-blend-normal { + mix-blend-mode: normal; } - .xl\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .xl\:mix-blend-multiply { + mix-blend-mode: multiply; } - .xl\:row-auto { - grid-row: auto; + .xl\:mix-blend-screen { + mix-blend-mode: screen; } - .xl\:row-span-1 { - grid-row: span 1 / span 1; + .xl\:mix-blend-overlay { + mix-blend-mode: overlay; } - .xl\:row-span-2 { - grid-row: span 2 / span 2; + .xl\:mix-blend-darken { + mix-blend-mode: darken; } - .xl\:row-span-3 { - grid-row: span 3 / span 3; + .xl\:mix-blend-lighten { + mix-blend-mode: lighten; } - .xl\:row-span-4 { - grid-row: span 4 / span 4; + .xl\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .xl\:row-span-5 { - grid-row: span 5 / span 5; + .xl\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .xl\:row-span-6 { - grid-row: span 6 / span 6; + .xl\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .xl\:row-span-full { - grid-row: 1 / -1; + .xl\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .xl\:row-start-1 { - grid-row-start: 1; + .xl\:mix-blend-difference { + mix-blend-mode: difference; } - .xl\:row-start-2 { - grid-row-start: 2; + .xl\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .xl\:row-start-3 { - grid-row-start: 3; + .xl\:mix-blend-hue { + mix-blend-mode: hue; } - .xl\:row-start-4 { - grid-row-start: 4; + .xl\:mix-blend-saturation { + mix-blend-mode: saturation; } - .xl\:row-start-5 { - grid-row-start: 5; + .xl\:mix-blend-color { + mix-blend-mode: color; } - .xl\:row-start-6 { - grid-row-start: 6; + .xl\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .xl\:row-start-7 { - grid-row-start: 7; + .xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-start-auto { - grid-row-start: auto; + .xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-1 { - grid-row-end: 1; + .xl\: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); } - .xl\:row-end-2 { - grid-row-end: 2; + .xl\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-3 { - grid-row-end: 3; + .xl\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-4 { - grid-row-end: 4; + .xl\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-5 { - grid-row-end: 5; + .xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-6 { - grid-row-end: 6; + .xl\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-7 { - grid-row-end: 7; + .group:hover .xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:row-end-auto { - grid-row-end: auto; + .group:hover .xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .xl\:group-hover\: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); } - .xl\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .group:hover .xl\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:transform-none { - transform: none; + .group:hover .xl\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-center { - transform-origin: center; + .group:hover .xl\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-top { - transform-origin: top; + .group:hover .xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-top-right { - transform-origin: top right; + .group:hover .xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-right { - transform-origin: right; + .xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-bottom-right { - transform-origin: bottom right; + .xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-bottom { - transform-origin: bottom; + .xl\:focus-within\:shadow-md:focus-within { + --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); } - .xl\:origin-bottom-left { - transform-origin: bottom left; + .xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-left { - transform-origin: left; + .xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:origin-top-left { - transform-origin: top left; + .xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .xl\:hover\:shadow-md:hover { + --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); } - .xl\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .xl\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .xl\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-0 { - --tw-scale-x: 0; + .xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-50 { - --tw-scale-x: .5; + .xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-75 { - --tw-scale-x: .75; + .xl\:focus\:shadow-md:focus { + --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); } - .xl\:scale-x-90 { - --tw-scale-x: .9; + .xl\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-95 { - --tw-scale-x: .95; + .xl\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-100 { - --tw-scale-x: 1; + .xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-105 { - --tw-scale-x: 1.05; + .xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-110 { - --tw-scale-x: 1.1; + .xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .xl\:scale-x-125 { - --tw-scale-x: 1.25; + .xl\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .xl\:scale-x-150 { - --tw-scale-x: 1.5; + .xl\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .xl\:scale-y-0 { - --tw-scale-y: 0; + .xl\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .xl\:scale-y-50 { - --tw-scale-y: .5; + .xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .xl\:scale-y-75 { - --tw-scale-y: .75; + .xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .xl\:scale-y-90 { - --tw-scale-y: .9; + .xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .xl\:scale-y-95 { - --tw-scale-y: .95; + .xl\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .xl\:scale-y-100 { - --tw-scale-y: 1; + .xl\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .xl\:scale-y-105 { - --tw-scale-y: 1.05; + .xl\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .xl\:scale-y-110 { - --tw-scale-y: 1.1; + .xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:scale-y-125 { - --tw-scale-y: 1.25; + .xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:scale-y-150 { - --tw-scale-y: 1.5; + .xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .xl\:ring-inset { + --tw-ring-inset: inset; } - .xl\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .xl\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .xl\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .xl\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .xl\:ring-transparent { + --tw-ring-color: transparent; } - .xl\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .xl\:ring-current { + --tw-ring-color: currentColor; } - .xl\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .xl\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .xl\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .xl\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .xl\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .xl\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .xl\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .xl\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .xl\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .xl\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .xl\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .xl\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .xl\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .xl\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .xl\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .xl\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .xl\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .xl\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .xl\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .xl\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .xl\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .xl\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .xl\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .xl\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .xl\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .xl\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .xl\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .xl\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .xl\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .xl\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .xl\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .xl\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .xl\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .xl\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .xl\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .xl\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .xl\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .xl\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .xl\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .xl\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .xl\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .xl\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .xl\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .xl\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .xl\:rotate-0 { - --tw-rotate: 0deg; + .xl\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .xl\:rotate-1 { - --tw-rotate: 1deg; + .xl\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .xl\:rotate-2 { - --tw-rotate: 2deg; + .xl\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .xl\:rotate-3 { - --tw-rotate: 3deg; + .xl\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .xl\:rotate-6 { - --tw-rotate: 6deg; + .xl\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .xl\:rotate-12 { - --tw-rotate: 12deg; + .xl\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .xl\:rotate-45 { - --tw-rotate: 45deg; + .xl\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .xl\:rotate-90 { - --tw-rotate: 90deg; + .xl\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .xl\:rotate-180 { - --tw-rotate: 180deg; + .xl\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .xl\:-rotate-180 { - --tw-rotate: -180deg; + .xl\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .xl\:-rotate-90 { - --tw-rotate: -90deg; + .xl\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .xl\:-rotate-45 { - --tw-rotate: -45deg; + .xl\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .xl\:-rotate-12 { - --tw-rotate: -12deg; + .xl\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .xl\:-rotate-6 { - --tw-rotate: -6deg; + .xl\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .xl\:-rotate-3 { - --tw-rotate: -3deg; + .xl\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .xl\:-rotate-2 { - --tw-rotate: -2deg; + .xl\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .xl\:-rotate-1 { - --tw-rotate: -1deg; + .xl\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .xl\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .xl\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .xl\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .xl\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .xl\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .xl\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .xl\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .xl\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .xl\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .xl\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .xl\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .xl\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .xl\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .xl\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .xl\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .xl\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .xl\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .xl\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .xl\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .xl\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .xl\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .xl\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .xl\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .xl\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .xl\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .xl\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .xl\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .xl\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .xl\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .xl\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .xl\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .xl\:translate-x-0 { - --tw-translate-x: 0px; + .xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .xl\:translate-x-1 { - --tw-translate-x: 0.25rem; + .xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .xl\:translate-x-2 { - --tw-translate-x: 0.5rem; + .xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .xl\:translate-x-3 { - --tw-translate-x: 0.75rem; + .xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .xl\:translate-x-4 { - --tw-translate-x: 1rem; + .xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .xl\:translate-x-5 { - --tw-translate-x: 1.25rem; + .xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .xl\:translate-x-6 { - --tw-translate-x: 1.5rem; + .xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .xl\:translate-x-7 { - --tw-translate-x: 1.75rem; + .xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .xl\:translate-x-8 { - --tw-translate-x: 2rem; + .xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .xl\:translate-x-9 { - --tw-translate-x: 2.25rem; + .xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .xl\:translate-x-10 { - --tw-translate-x: 2.5rem; + .xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .xl\:translate-x-11 { - --tw-translate-x: 2.75rem; + .xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .xl\:translate-x-12 { - --tw-translate-x: 3rem; + .xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .xl\:translate-x-14 { - --tw-translate-x: 3.5rem; + .xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .xl\:translate-x-16 { - --tw-translate-x: 4rem; + .xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .xl\:translate-x-20 { - --tw-translate-x: 5rem; + .xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .xl\:translate-x-24 { - --tw-translate-x: 6rem; + .xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .xl\:translate-x-28 { - --tw-translate-x: 7rem; + .xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .xl\:translate-x-32 { - --tw-translate-x: 8rem; + .xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .xl\:translate-x-36 { - --tw-translate-x: 9rem; + .xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .xl\:translate-x-40 { - --tw-translate-x: 10rem; + .xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .xl\:translate-x-44 { - --tw-translate-x: 11rem; + .xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .xl\:translate-x-48 { - --tw-translate-x: 12rem; + .xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .xl\:translate-x-52 { - --tw-translate-x: 13rem; + .xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .xl\:translate-x-56 { - --tw-translate-x: 14rem; + .xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .xl\:translate-x-60 { - --tw-translate-x: 15rem; + .xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .xl\:translate-x-64 { - --tw-translate-x: 16rem; + .xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .xl\:translate-x-72 { - --tw-translate-x: 18rem; + .xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .xl\:translate-x-80 { - --tw-translate-x: 20rem; + .xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .xl\:translate-x-96 { - --tw-translate-x: 24rem; + .xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .xl\:translate-x-px { - --tw-translate-x: 1px; + .xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .xl\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .xl\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .xl\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .xl\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .xl\:-translate-x-0 { - --tw-translate-x: 0px; + .xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .xl\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .xl\:-translate-x-4 { - --tw-translate-x: -1rem; + .xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .xl\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .xl\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .xl\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .xl\:-translate-x-8 { - --tw-translate-x: -2rem; + .xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .xl\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .xl\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .xl\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .xl\:-translate-x-12 { - --tw-translate-x: -3rem; + .xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .xl\:-translate-x-16 { - --tw-translate-x: -4rem; + .xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .xl\:-translate-x-20 { - --tw-translate-x: -5rem; + .xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .xl\:-translate-x-24 { - --tw-translate-x: -6rem; + .xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .xl\:-translate-x-28 { - --tw-translate-x: -7rem; + .xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .xl\:-translate-x-32 { - --tw-translate-x: -8rem; + .xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .xl\:-translate-x-36 { - --tw-translate-x: -9rem; + .xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .xl\:-translate-x-40 { - --tw-translate-x: -10rem; + .xl\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .xl\:-translate-x-44 { - --tw-translate-x: -11rem; + .xl\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-48 { - --tw-translate-x: -12rem; + .xl\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .xl\:-translate-x-52 { - --tw-translate-x: -13rem; + .xl\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .xl\:-translate-x-56 { - --tw-translate-x: -14rem; + .xl\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .xl\:-translate-x-60 { - --tw-translate-x: -15rem; + .xl\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .xl\:-translate-x-64 { - --tw-translate-x: -16rem; + .xl\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .xl\:-translate-x-72 { - --tw-translate-x: -18rem; + .xl\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .xl\:-translate-x-80 { - --tw-translate-x: -20rem; + .xl\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .xl\:-translate-x-96 { - --tw-translate-x: -24rem; + .xl\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .xl\:-translate-x-px { - --tw-translate-x: -1px; + .xl\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .xl\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .xl\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .xl\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .xl\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .xl\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .xl\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .xl\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .xl\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .xl\:translate-x-1\/2 { - --tw-translate-x: 50%; + .xl\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .xl\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .xl\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .xl\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .xl\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .xl\:translate-x-1\/4 { - --tw-translate-x: 25%; + .xl\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .xl\:translate-x-2\/4 { - --tw-translate-x: 50%; + .xl\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .xl\:translate-x-3\/4 { - --tw-translate-x: 75%; + .xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .xl\:translate-x-full { - --tw-translate-x: 100%; + .xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .xl\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .xl\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .xl\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .xl\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .xl\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .xl\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .xl\:-translate-x-full { - --tw-translate-x: -100%; + .xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .xl\:translate-y-0 { - --tw-translate-y: 0px; + .xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .xl\:translate-y-1 { - --tw-translate-y: 0.25rem; + .xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .xl\:translate-y-2 { - --tw-translate-y: 0.5rem; + .xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .xl\:translate-y-3 { - --tw-translate-y: 0.75rem; + .xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .xl\:translate-y-4 { - --tw-translate-y: 1rem; + .xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .xl\:translate-y-5 { - --tw-translate-y: 1.25rem; + .xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .xl\:translate-y-6 { - --tw-translate-y: 1.5rem; + .xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .xl\:translate-y-7 { - --tw-translate-y: 1.75rem; + .xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .xl\:translate-y-8 { - --tw-translate-y: 2rem; + .xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .xl\:translate-y-9 { - --tw-translate-y: 2.25rem; + .xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .xl\:translate-y-10 { - --tw-translate-y: 2.5rem; + .xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .xl\:translate-y-11 { - --tw-translate-y: 2.75rem; + .xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .xl\:translate-y-12 { - --tw-translate-y: 3rem; + .xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .xl\:translate-y-14 { - --tw-translate-y: 3.5rem; + .xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .xl\:translate-y-16 { - --tw-translate-y: 4rem; + .xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .xl\:translate-y-20 { - --tw-translate-y: 5rem; + .xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .xl\:translate-y-24 { - --tw-translate-y: 6rem; + .xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .xl\:translate-y-28 { - --tw-translate-y: 7rem; + .xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .xl\:translate-y-32 { - --tw-translate-y: 8rem; + .xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .xl\:translate-y-36 { - --tw-translate-y: 9rem; + .xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .xl\:translate-y-40 { - --tw-translate-y: 10rem; + .xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .xl\:translate-y-44 { - --tw-translate-y: 11rem; + .xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .xl\:translate-y-48 { - --tw-translate-y: 12rem; + .xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .xl\:translate-y-52 { - --tw-translate-y: 13rem; + .xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .xl\:translate-y-56 { - --tw-translate-y: 14rem; + .xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .xl\:translate-y-60 { - --tw-translate-y: 15rem; + .xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .xl\:translate-y-64 { - --tw-translate-y: 16rem; + .xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .xl\:translate-y-72 { - --tw-translate-y: 18rem; + .xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .xl\:translate-y-80 { - --tw-translate-y: 20rem; + .xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .xl\:translate-y-96 { - --tw-translate-y: 24rem; + .xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .xl\:translate-y-px { - --tw-translate-y: 1px; + .xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .xl\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .xl\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .xl\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .xl\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .xl\:-translate-y-0 { - --tw-translate-y: 0px; + .xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .xl\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .xl\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .xl\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .xl\:-translate-y-4 { - --tw-translate-y: -1rem; + .xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .xl\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .xl\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .xl\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .xl\:-translate-y-8 { - --tw-translate-y: -2rem; + .xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .xl\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .xl\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .xl\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .xl\:-translate-y-12 { - --tw-translate-y: -3rem; + .xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .xl\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .xl\:-translate-y-16 { - --tw-translate-y: -4rem; + .xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .xl\:-translate-y-20 { - --tw-translate-y: -5rem; + .xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .xl\:-translate-y-24 { - --tw-translate-y: -6rem; + .xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .xl\:-translate-y-28 { - --tw-translate-y: -7rem; + .xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .xl\:-translate-y-32 { - --tw-translate-y: -8rem; + .xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .xl\:-translate-y-36 { - --tw-translate-y: -9rem; + .xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .xl\:-translate-y-40 { - --tw-translate-y: -10rem; + .xl\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .xl\:-translate-y-44 { - --tw-translate-y: -11rem; + .xl\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .xl\:-translate-y-48 { - --tw-translate-y: -12rem; + .xl\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .xl\:-translate-y-52 { - --tw-translate-y: -13rem; + .xl\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .xl\:-translate-y-56 { - --tw-translate-y: -14rem; + .xl\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .xl\:-translate-y-60 { - --tw-translate-y: -15rem; + .xl\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .xl\:-translate-y-64 { - --tw-translate-y: -16rem; + .xl\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .xl\:-translate-y-72 { - --tw-translate-y: -18rem; + .xl\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .xl\:-translate-y-80 { - --tw-translate-y: -20rem; + .xl\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .xl\:-translate-y-96 { - --tw-translate-y: -24rem; + .xl\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .xl\:-translate-y-px { - --tw-translate-y: -1px; + .xl\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .xl\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .xl\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .xl\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .xl\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .xl\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .xl\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .xl\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .xl\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .xl\:translate-y-1\/2 { - --tw-translate-y: 50%; + .xl\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .xl\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .xl\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .xl\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .xl\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .xl\:translate-y-1\/4 { - --tw-translate-y: 25%; + .xl\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .xl\:translate-y-2\/4 { - --tw-translate-y: 50%; + .xl\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .xl\:translate-y-3\/4 { - --tw-translate-y: 75%; + .xl\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .xl\:translate-y-full { - --tw-translate-y: 100%; + .xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .xl\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .xl\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .xl\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .xl\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .xl\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .xl\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .xl\:-translate-y-full { - --tw-translate-y: -100%; + .xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .xl\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .xl\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .xl\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .xl\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .xl\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .xl\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .xl\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .xl\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .xl\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .xl\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .xl\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .xl\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .xl\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .xl\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .xl\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .xl\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .xl\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .xl\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .xl\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .xl\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .xl\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .xl\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .xl\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .xl\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .xl\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .xl\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .xl\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .xl\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .xl\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .xl\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .xl\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .xl\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .xl\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .xl\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .xl\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .xl\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .xl\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .xl\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .xl\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .xl\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .xl\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .xl\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .xl\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .xl\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .xl\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .xl\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .xl\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .xl\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .xl\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .xl\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .xl\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .xl\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .xl\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .xl\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .xl\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .xl\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .xl\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .xl\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .xl\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .xl\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .xl\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .xl\:ring-offset-black { + --tw-ring-offset-color: #000; } - .xl\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .xl\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .xl\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .xl\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .xl\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .xl\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .xl\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .xl\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .xl\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .xl\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .xl\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .xl\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .xl\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .xl\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .xl\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .xl\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .xl\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .xl\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .xl\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .xl\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .xl\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .xl\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .xl\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .xl\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .xl\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .xl\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .xl\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .xl\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .xl\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .xl\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .xl\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .xl\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .xl\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .xl\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .xl\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .xl\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .xl\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .xl\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .xl\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .xl\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .xl\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .xl\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .xl\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .xl\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .xl\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .xl\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .xl\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .xl\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .xl\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .xl\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .xl\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .xl\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .xl\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .xl\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .xl\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .xl\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .xl\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .xl\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .xl\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .xl\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .xl\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .xl\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .xl\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .xl\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .xl\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .xl\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .xl\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .xl\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .xl\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .xl\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .xl\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .xl\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .xl\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .xl\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .xl\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .xl\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .xl\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .xl\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .xl\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .xl\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .xl\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .xl\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .xl\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .xl\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .xl\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .xl\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .xl\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .xl\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .xl\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .xl\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .xl\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .xl\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .xl\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .xl\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .xl\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .xl\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .xl\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .xl\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .xl\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .xl\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .xl\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .xl\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .xl\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .xl\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .xl\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .xl\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .xl\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .xl\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .xl\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .xl\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .xl\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .xl\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .xl\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .xl\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .xl\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .xl\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .xl\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .xl\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .xl\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .xl\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .xl\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .xl\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .xl\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .xl\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .xl\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .xl\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .xl\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .xl\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .xl\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .xl\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .xl\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .xl\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .xl\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .xl\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .xl\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .xl\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .xl\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .xl\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .xl\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .xl\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .xl\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .xl\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .xl\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .xl\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .xl\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .xl\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .xl\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .xl\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .xl\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .xl\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .xl\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .xl\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .xl\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .xl\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .xl\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .xl\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .xl\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - - .xl\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + + .xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .xl\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .xl\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .xl\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .xl\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .xl\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .xl\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .xl\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .xl\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .xl\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .xl\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .xl\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .xl\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .xl\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .xl\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .xl\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .xl\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .xl\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .xl\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .xl\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .xl\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .xl\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .xl\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .xl\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .xl\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .xl\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .xl\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .xl\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .xl\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .xl\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .xl\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .xl\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .xl\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .xl\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .xl\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .xl\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .xl\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .xl\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .xl\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .xl\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .xl\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .xl\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .xl\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .xl\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .xl\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .xl\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .xl\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .xl\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .xl\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .xl\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .xl\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .xl\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .xl\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .xl\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .xl\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .xl\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .xl\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .xl\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .xl\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .xl\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .xl\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .xl\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .xl\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .xl\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .xl\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .xl\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .xl\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .xl\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .xl\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .xl\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .xl\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .xl\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .xl\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .xl\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .xl\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .xl\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .xl\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .xl\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .xl\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .xl\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .xl\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .xl\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .xl\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .xl\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .xl\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .xl\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .xl\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .xl\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .xl\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .xl\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .xl\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .xl\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .xl\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .xl\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .xl\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .xl\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .xl\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .xl\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .xl\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .xl\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .xl\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .xl\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .xl\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .xl\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .xl\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .xl\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .xl\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .xl\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .xl\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .xl\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .xl\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .xl\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .xl\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .xl\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .xl\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .xl\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .xl\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .xl\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .xl\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .xl\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .xl\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .xl\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .xl\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .xl\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .xl\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .xl\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .xl\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .xl\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .xl\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .xl\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .xl\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .xl\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .xl\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .xl\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .xl\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .xl\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .xl\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .xl\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .xl\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .xl\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .xl\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .xl\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .xl\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .xl\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .xl\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .xl\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .xl\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .xl\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .xl\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .xl\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .xl\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .xl\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .xl\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .xl\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .xl\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .xl\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .xl\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .xl\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .xl\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .xl\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .xl\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .xl\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .xl\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .xl\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .xl\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .xl\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .xl\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .xl\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .xl\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .xl\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .xl\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .xl\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .xl\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } - .xl\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .xl\:filter { + --tw-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-sepia: var(--tw-empty,/*!*/ /*!*/); + --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); } - .xl\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .xl\:filter-none { + filter: none; } - .xl\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .xl\:blur-0 { + --tw-blur: blur(0); } - .xl\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .xl\:blur-sm { + --tw-blur: blur(4px); } - .xl\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .xl\:blur { + --tw-blur: blur(8px); } - .xl\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .xl\:blur-md { + --tw-blur: blur(12px); } - .xl\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .xl\:blur-lg { + --tw-blur: blur(16px); } - .xl\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .xl\:blur-xl { + --tw-blur: blur(24px); } - .xl\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .xl\:blur-2xl { + --tw-blur: blur(40px); } - .xl\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .xl\:blur-3xl { + --tw-blur: blur(64px); } - .xl\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .xl\:brightness-0 { + --tw-brightness: brightness(0); } - .xl\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .xl\:brightness-50 { + --tw-brightness: brightness(.5); } - .xl\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .xl\:brightness-75 { + --tw-brightness: brightness(.75); } - .xl\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .xl\:brightness-90 { + --tw-brightness: brightness(.9); } - .xl\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .xl\:brightness-95 { + --tw-brightness: brightness(.95); } - .xl\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .xl\:brightness-100 { + --tw-brightness: brightness(1); } - .xl\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .xl\:brightness-105 { + --tw-brightness: brightness(1.05); } - .xl\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .xl\:brightness-110 { + --tw-brightness: brightness(1.1); } - .xl\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .xl\:brightness-125 { + --tw-brightness: brightness(1.25); } - .xl\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .xl\:brightness-150 { + --tw-brightness: brightness(1.5); } - .xl\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .xl\:brightness-200 { + --tw-brightness: brightness(2); } - .xl\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .xl\:contrast-0 { + --tw-contrast: contrast(0); } - .xl\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .xl\:contrast-50 { + --tw-contrast: contrast(.5); } - .xl\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .xl\:contrast-75 { + --tw-contrast: contrast(.75); } - .xl\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .xl\:contrast-100 { + --tw-contrast: contrast(1); } - .xl\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .xl\:contrast-125 { + --tw-contrast: contrast(1.25); } - .xl\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .xl\:contrast-150 { + --tw-contrast: contrast(1.5); } - .xl\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .xl\:contrast-200 { + --tw-contrast: contrast(2); } - .xl\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .xl\:drop-shadow-sm { + --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); } - .xl\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .xl\:drop-shadow { + --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); } - .xl\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .xl\:drop-shadow-md { + --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); } - .xl\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .xl\:drop-shadow-lg { + --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); } - .xl\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .xl\:drop-shadow-xl { + --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); } - .xl\:skew-x-0 { - --tw-skew-x: 0deg; + .xl\:drop-shadow-2xl { + --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); } - .xl\:skew-x-1 { - --tw-skew-x: 1deg; + .xl\:drop-shadow-none { + --tw-drop-shadow: drop-shadow(0 0 #0000); } - .xl\:skew-x-2 { - --tw-skew-x: 2deg; + .xl\:grayscale-0 { + --tw-grayscale: grayscale(0); } - .xl\:skew-x-3 { - --tw-skew-x: 3deg; + .xl\:grayscale { + --tw-grayscale: grayscale(100%); } - .xl\:skew-x-6 { - --tw-skew-x: 6deg; + .xl\:hue-rotate-0 { + --tw-hue-rotate: hue-rotate(0deg); } - .xl\:skew-x-12 { - --tw-skew-x: 12deg; + .xl\:hue-rotate-15 { + --tw-hue-rotate: hue-rotate(15deg); } - .xl\:-skew-x-12 { - --tw-skew-x: -12deg; + .xl\:hue-rotate-30 { + --tw-hue-rotate: hue-rotate(30deg); } - .xl\:-skew-x-6 { - --tw-skew-x: -6deg; + .xl\:hue-rotate-60 { + --tw-hue-rotate: hue-rotate(60deg); } - .xl\:-skew-x-3 { - --tw-skew-x: -3deg; + .xl\:hue-rotate-90 { + --tw-hue-rotate: hue-rotate(90deg); } - .xl\:-skew-x-2 { - --tw-skew-x: -2deg; + .xl\:hue-rotate-180 { + --tw-hue-rotate: hue-rotate(180deg); } - .xl\:-skew-x-1 { - --tw-skew-x: -1deg; + .xl\:-hue-rotate-180 { + --tw-hue-rotate: hue-rotate(-180deg); } - .xl\:skew-y-0 { - --tw-skew-y: 0deg; + .xl\:-hue-rotate-90 { + --tw-hue-rotate: hue-rotate(-90deg); } - .xl\:skew-y-1 { - --tw-skew-y: 1deg; + .xl\:-hue-rotate-60 { + --tw-hue-rotate: hue-rotate(-60deg); } - .xl\:skew-y-2 { - --tw-skew-y: 2deg; + .xl\:-hue-rotate-30 { + --tw-hue-rotate: hue-rotate(-30deg); } - .xl\:skew-y-3 { - --tw-skew-y: 3deg; + .xl\:-hue-rotate-15 { + --tw-hue-rotate: hue-rotate(-15deg); } - .xl\:skew-y-6 { - --tw-skew-y: 6deg; + .xl\:invert-0 { + --tw-invert: invert(0); } - .xl\:skew-y-12 { - --tw-skew-y: 12deg; + .xl\:invert { + --tw-invert: invert(100%); } - .xl\:-skew-y-12 { - --tw-skew-y: -12deg; + .xl\:saturate-0 { + --tw-saturate: saturate(0); } - .xl\:-skew-y-6 { - --tw-skew-y: -6deg; + .xl\:saturate-50 { + --tw-saturate: saturate(.5); } - .xl\:-skew-y-3 { - --tw-skew-y: -3deg; + .xl\:saturate-100 { + --tw-saturate: saturate(1); } - .xl\:-skew-y-2 { - --tw-skew-y: -2deg; + .xl\:saturate-150 { + --tw-saturate: saturate(1.5); } - .xl\:-skew-y-1 { - --tw-skew-y: -1deg; + .xl\:saturate-200 { + --tw-saturate: saturate(2); } - .xl\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .xl\:sepia-0 { + --tw-sepia: sepia(0); } - .xl\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .xl\:sepia { + --tw-sepia: sepia(100%); } - .xl\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .xl\:backdrop-filter { + --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); + --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); } - .xl\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .xl\:backdrop-filter-none { + backdrop-filter: none; } - .xl\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .xl\:backdrop-brightness-0 { + --tw-backdrop-brightness: brightness(0); } - .xl\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .xl\:backdrop-brightness-50 { + --tw-backdrop-brightness: brightness(.5); } - .xl\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .xl\:backdrop-brightness-75 { + --tw-backdrop-brightness: brightness(.75); } - .xl\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .xl\:backdrop-brightness-90 { + --tw-backdrop-brightness: brightness(.9); } - .xl\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .xl\:backdrop-brightness-95 { + --tw-backdrop-brightness: brightness(.95); } - .xl\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .xl\:backdrop-brightness-100 { + --tw-backdrop-brightness: brightness(1); } - .xl\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .xl\:backdrop-brightness-105 { + --tw-backdrop-brightness: brightness(1.05); } - .xl\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .xl\:backdrop-brightness-110 { + --tw-backdrop-brightness: brightness(1.1); } - .xl\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .xl\:backdrop-brightness-125 { + --tw-backdrop-brightness: brightness(1.25); } - .xl\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .xl\:backdrop-brightness-150 { + --tw-backdrop-brightness: brightness(1.5); } - .xl\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .xl\:backdrop-brightness-200 { + --tw-backdrop-brightness: brightness(2); } - .xl\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .xl\:backdrop-contrast-0 { + --tw-backdrop-contrast: contrast(0); } - .xl\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .xl\:backdrop-contrast-50 { + --tw-backdrop-contrast: contrast(.5); } - .xl\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .xl\:backdrop-contrast-75 { + --tw-backdrop-contrast: contrast(.75); } - .xl\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + .xl\:backdrop-contrast-100 { + --tw-backdrop-contrast: contrast(1); } - .xl\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + .xl\:backdrop-contrast-125 { + --tw-backdrop-contrast: contrast(1.25); } - .xl\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + .xl\:backdrop-contrast-150 { + --tw-backdrop-contrast: contrast(1.5); } - .xl\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + .xl\:backdrop-contrast-200 { + --tw-backdrop-contrast: contrast(2); } - .xl\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + .xl\:backdrop-grayscale-0 { + --tw-backdrop-grayscale: grayscale(0); } - .xl\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .xl\:backdrop-grayscale { + --tw-backdrop-grayscale: grayscale(100%); } - .xl\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .xl\:backdrop-hue-rotate-0 { + --tw-backdrop-hue-rotate: hue-rotate(0deg); } - .xl\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .xl\:backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(15deg); } - .xl\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .xl\:backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(30deg); } - .xl\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .xl\:backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(60deg); } - .xl\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .xl\:backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(90deg); } - .xl\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .xl\:backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(180deg); } - .xl\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .xl\:-backdrop-hue-rotate-180 { + --tw-backdrop-hue-rotate: hue-rotate(-180deg); } - .xl\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .xl\:-backdrop-hue-rotate-90 { + --tw-backdrop-hue-rotate: hue-rotate(-90deg); } - .xl\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .xl\:-backdrop-hue-rotate-60 { + --tw-backdrop-hue-rotate: hue-rotate(-60deg); } - .xl\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .xl\:-backdrop-hue-rotate-30 { + --tw-backdrop-hue-rotate: hue-rotate(-30deg); } - .xl\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .xl\:-backdrop-hue-rotate-15 { + --tw-backdrop-hue-rotate: hue-rotate(-15deg); } - .xl\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .xl\:backdrop-invert-0 { + --tw-backdrop-invert: invert(0); } - .xl\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .xl\:backdrop-invert { + --tw-backdrop-invert: invert(100%); } - .xl\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .xl\:backdrop-saturate-0 { + --tw-backdrop-saturate: saturate(0); } - .xl\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .xl\:backdrop-saturate-50 { + --tw-backdrop-saturate: saturate(.5); } - .xl\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .xl\:backdrop-saturate-100 { + --tw-backdrop-saturate: saturate(1); } - .xl\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .xl\:backdrop-saturate-150 { + --tw-backdrop-saturate: saturate(1.5); } - .xl\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .xl\:backdrop-saturate-200 { + --tw-backdrop-saturate: saturate(2); } - .xl\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .xl\:backdrop-sepia-0 { + --tw-backdrop-sepia: sepia(0); } - .xl\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .xl\:backdrop-sepia { + --tw-backdrop-sepia: sepia(100%); } .xl\:transition-none { @@ -145640,6 +146202,70 @@ video { transition-duration: 150ms; } + .xl\:delay-75 { + transition-delay: 75ms; + } + + .xl\:delay-100 { + transition-delay: 100ms; + } + + .xl\:delay-150 { + transition-delay: 150ms; + } + + .xl\:delay-200 { + transition-delay: 200ms; + } + + .xl\:delay-300 { + transition-delay: 300ms; + } + + .xl\:delay-500 { + transition-delay: 500ms; + } + + .xl\:delay-700 { + transition-delay: 700ms; + } + + .xl\:delay-1000 { + transition-delay: 1000ms; + } + + .xl\:duration-75 { + transition-duration: 75ms; + } + + .xl\:duration-100 { + transition-duration: 100ms; + } + + .xl\:duration-150 { + transition-duration: 150ms; + } + + .xl\:duration-200 { + transition-duration: 200ms; + } + + .xl\:duration-300 { + transition-duration: 300ms; + } + + .xl\:duration-500 { + transition-duration: 500ms; + } + + .xl\:duration-700 { + transition-duration: 700ms; + } + + .xl\:duration-1000 { + transition-duration: 1000ms; + } + .xl\:ease-linear { transition-timing-function: linear; } @@ -145656,22319 +146282,21882 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); } - .xl\:duration-75 { - transition-duration: 75ms; + .xl\:example { + font-weight: 700; + color: #ef4444; + } +} + +@media (min-width: 1536px) { + .\32xl\:container { + width: 100%; + } + + @media (min-width: 640px) { + .\32xl\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .\32xl\:container { + max-width: 768px; + } } - .xl\:duration-100 { - transition-duration: 100ms; + @media (min-width: 1024px) { + .\32xl\:container { + max-width: 1024px; + } } - .xl\:duration-150 { - transition-duration: 150ms; + @media (min-width: 1280px) { + .\32xl\:container { + max-width: 1280px; + } } - .xl\:duration-200 { - transition-duration: 200ms; + @media (min-width: 1536px) { + .\32xl\:container { + max-width: 1536px; + } } - .xl\:duration-300 { - transition-duration: 300ms; + .\32xl\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .xl\:duration-500 { - transition-duration: 500ms; + .\32xl\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .xl\:duration-700 { - transition-duration: 700ms; + .\32xl\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .xl\:duration-1000 { - transition-duration: 1000ms; + .\32xl\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .xl\:delay-75 { - transition-delay: 75ms; + .\32xl\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } - .xl\:delay-100 { - transition-delay: 100ms; + .\32xl\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; } - .xl\:delay-150 { - transition-delay: 150ms; + .\32xl\:pointer-events-none { + pointer-events: none; } - .xl\:delay-200 { - transition-delay: 200ms; + .\32xl\:pointer-events-auto { + pointer-events: auto; } - .xl\:delay-300 { - transition-delay: 300ms; + .\32xl\:visible { + visibility: visible; } - .xl\:delay-500 { - transition-delay: 500ms; + .\32xl\:invisible { + visibility: hidden; } - .xl\:delay-700 { - transition-delay: 700ms; + .\32xl\:static { + position: static; } - .xl\:delay-1000 { - transition-delay: 1000ms; + .\32xl\:fixed { + position: fixed; } - .xl\:animate-none { - animation: none; + .\32xl\:absolute { + position: absolute; } - .xl\:animate-spin { - animation: spin 1s linear infinite; + .\32xl\:relative { + position: relative; } - .xl\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .\32xl\:sticky { + position: sticky; } - .xl\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .\32xl\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .xl\:animate-bounce { - animation: bounce 1s infinite; + .\32xl\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; } - .xl\:mix-blend-normal { - mix-blend-mode: normal; + .\32xl\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; } - .xl\:mix-blend-multiply { - mix-blend-mode: multiply; + .\32xl\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; } - .xl\:mix-blend-screen { - mix-blend-mode: screen; + .\32xl\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; } - .xl\:mix-blend-overlay { - mix-blend-mode: overlay; + .\32xl\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; } - .xl\:mix-blend-darken { - mix-blend-mode: darken; + .\32xl\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; } - .xl\:mix-blend-lighten { - mix-blend-mode: lighten; + .\32xl\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; } - .xl\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .\32xl\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; } - .xl\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .\32xl\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; } - .xl\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .\32xl\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; } - .xl\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .\32xl\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; } - .xl\:mix-blend-difference { - mix-blend-mode: difference; + .\32xl\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; } - .xl\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .\32xl\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; } - .xl\:mix-blend-hue { - mix-blend-mode: hue; + .\32xl\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; } - .xl\:mix-blend-saturation { - mix-blend-mode: saturation; + .\32xl\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; } - .xl\:mix-blend-color { - mix-blend-mode: color; + .\32xl\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; } - .xl\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .\32xl\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; } - .xl\:bg-blend-normal { - background-blend-mode: normal; + .\32xl\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; } - .xl\:bg-blend-multiply { - background-blend-mode: multiply; + .\32xl\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; } - .xl\:bg-blend-screen { - background-blend-mode: screen; + .\32xl\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; } - .xl\:bg-blend-overlay { - background-blend-mode: overlay; + .\32xl\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; } - .xl\:bg-blend-darken { - background-blend-mode: darken; + .\32xl\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; } - .xl\:bg-blend-lighten { - background-blend-mode: lighten; + .\32xl\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; } - .xl\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .\32xl\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; } - .xl\:bg-blend-color-burn { - background-blend-mode: color-burn; + .\32xl\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; } - .xl\:bg-blend-hard-light { - background-blend-mode: hard-light; + .\32xl\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; } - .xl\:bg-blend-soft-light { - background-blend-mode: soft-light; + .\32xl\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; } - .xl\:bg-blend-difference { - background-blend-mode: difference; + .\32xl\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; } - .xl\:bg-blend-exclusion { - background-blend-mode: exclusion; + .\32xl\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; } - .xl\:bg-blend-hue { - background-blend-mode: hue; + .\32xl\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; } - .xl\:bg-blend-saturation { - background-blend-mode: saturation; + .\32xl\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; } - .xl\:bg-blend-color { - background-blend-mode: color; + .\32xl\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; } - .xl\:bg-blend-luminosity { - background-blend-mode: luminosity; + .\32xl\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; } - .xl\:filter { - --tw-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-sepia: var(--tw-empty,/*!*/ /*!*/); - --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/); - filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + .\32xl\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; } - .xl\:filter-none { - filter: none; + .\32xl\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; } - .xl\:blur-0 { - --tw-blur: blur(0); + .\32xl\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; } - .xl\:blur-sm { - --tw-blur: blur(4px); + .\32xl\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; } - .xl\:blur { - --tw-blur: blur(8px); + .\32xl\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; } - .xl\:blur-md { - --tw-blur: blur(12px); + .\32xl\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; } - .xl\:blur-lg { - --tw-blur: blur(16px); + .\32xl\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; } - .xl\:blur-xl { - --tw-blur: blur(24px); + .\32xl\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; } - .xl\:blur-2xl { - --tw-blur: blur(40px); + .\32xl\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; } - .xl\:blur-3xl { - --tw-blur: blur(64px); + .\32xl\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; } - .xl\:brightness-0 { - --tw-brightness: brightness(0); + .\32xl\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; } - .xl\:brightness-50 { - --tw-brightness: brightness(.5); + .\32xl\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; } - .xl\:brightness-75 { - --tw-brightness: brightness(.75); + .\32xl\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; } - .xl\:brightness-90 { - --tw-brightness: brightness(.9); + .\32xl\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; } - .xl\:brightness-95 { - --tw-brightness: brightness(.95); + .\32xl\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; } - .xl\:brightness-100 { - --tw-brightness: brightness(1); + .\32xl\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; } - .xl\:brightness-105 { - --tw-brightness: brightness(1.05); + .\32xl\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; } - .xl\:brightness-110 { - --tw-brightness: brightness(1.1); + .\32xl\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; } - .xl\:brightness-125 { - --tw-brightness: brightness(1.25); + .\32xl\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; } - .xl\:brightness-150 { - --tw-brightness: brightness(1.5); + .\32xl\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; } - .xl\:brightness-200 { - --tw-brightness: brightness(2); + .\32xl\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; } - .xl\:contrast-0 { - --tw-contrast: contrast(0); + .\32xl\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; } - .xl\:contrast-50 { - --tw-contrast: contrast(.5); + .\32xl\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; } - .xl\:contrast-75 { - --tw-contrast: contrast(.75); + .\32xl\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; } - .xl\:contrast-100 { - --tw-contrast: contrast(1); + .\32xl\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; } - .xl\:contrast-125 { - --tw-contrast: contrast(1.25); + .\32xl\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; } - .xl\:contrast-150 { - --tw-contrast: contrast(1.5); + .\32xl\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; } - .xl\:contrast-200 { - --tw-contrast: contrast(2); + .\32xl\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; } - .xl\:drop-shadow-sm { - --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05)); + .\32xl\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; } - .xl\:drop-shadow { - --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06)); + .\32xl\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; } - .xl\:drop-shadow-md { - --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); + .\32xl\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; } - .xl\:drop-shadow-lg { - --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); + .\32xl\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; } - .xl\:drop-shadow-xl { - --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); + .\32xl\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; } - .xl\:drop-shadow-2xl { - --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); + .\32xl\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; } - .xl\:drop-shadow-none { - --tw-drop-shadow: drop-shadow(0 0 #0000); + .\32xl\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; } - .xl\:grayscale-0 { - --tw-grayscale: grayscale(0); + .\32xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; } - .xl\:grayscale { - --tw-grayscale: grayscale(100%); + .\32xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; } - .xl\:hue-rotate-0 { - --tw-hue-rotate: hue-rotate(0deg); + .\32xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .xl\:hue-rotate-15 { - --tw-hue-rotate: hue-rotate(15deg); + .\32xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; } - .xl\:hue-rotate-30 { - --tw-hue-rotate: hue-rotate(30deg); + .\32xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; } - .xl\:hue-rotate-60 { - --tw-hue-rotate: hue-rotate(60deg); + .\32xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; } - .xl\:hue-rotate-90 { - --tw-hue-rotate: hue-rotate(90deg); + .\32xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; } - .xl\:hue-rotate-180 { - --tw-hue-rotate: hue-rotate(180deg); + .\32xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; } - .xl\:-hue-rotate-180 { - --tw-hue-rotate: hue-rotate(-180deg); + .\32xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; } - .xl\:-hue-rotate-90 { - --tw-hue-rotate: hue-rotate(-90deg); + .\32xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .xl\:-hue-rotate-60 { - --tw-hue-rotate: hue-rotate(-60deg); + .\32xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; } - .xl\:-hue-rotate-30 { - --tw-hue-rotate: hue-rotate(-30deg); + .\32xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; } - .xl\:-hue-rotate-15 { - --tw-hue-rotate: hue-rotate(-15deg); + .\32xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; } - .xl\:invert-0 { - --tw-invert: invert(0); + .\32xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; } - .xl\:invert { - --tw-invert: invert(100%); + .\32xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; } - .xl\:saturate-0 { - --tw-saturate: saturate(0); + .\32xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; } - .xl\:saturate-50 { - --tw-saturate: saturate(.5); + .\32xl\:inset-y-0 { + top: 0px; + bottom: 0px; } - .xl\:saturate-100 { - --tw-saturate: saturate(1); + .\32xl\:inset-x-0 { + right: 0px; + left: 0px; } - .xl\:saturate-150 { - --tw-saturate: saturate(1.5); + .\32xl\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; } - .xl\:saturate-200 { - --tw-saturate: saturate(2); + .\32xl\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; } - .xl\:sepia-0 { - --tw-sepia: sepia(0); + .\32xl\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; } - .xl\:sepia { - --tw-sepia: sepia(100%); + .\32xl\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; } - .xl\:backdrop-filter { - --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/); - --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/); - backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + .\32xl\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; } - .xl\:backdrop-filter-none { - backdrop-filter: none; + .\32xl\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; } - .xl\:backdrop-brightness-0 { - --tw-backdrop-brightness: brightness(0); + .\32xl\:inset-y-4 { + top: 1rem; + bottom: 1rem; } - .xl\:backdrop-brightness-50 { - --tw-backdrop-brightness: brightness(.5); + .\32xl\:inset-x-4 { + right: 1rem; + left: 1rem; } - .xl\:backdrop-brightness-75 { - --tw-backdrop-brightness: brightness(.75); + .\32xl\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; } - .xl\:backdrop-brightness-90 { - --tw-backdrop-brightness: brightness(.9); + .\32xl\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; } - .xl\:backdrop-brightness-95 { - --tw-backdrop-brightness: brightness(.95); + .\32xl\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; } - .xl\:backdrop-brightness-100 { - --tw-backdrop-brightness: brightness(1); + .\32xl\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; } - .xl\:backdrop-brightness-105 { - --tw-backdrop-brightness: brightness(1.05); + .\32xl\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; } - .xl\:backdrop-brightness-110 { - --tw-backdrop-brightness: brightness(1.1); + .\32xl\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; } - .xl\:backdrop-brightness-125 { - --tw-backdrop-brightness: brightness(1.25); + .\32xl\:inset-y-8 { + top: 2rem; + bottom: 2rem; } - .xl\:backdrop-brightness-150 { - --tw-backdrop-brightness: brightness(1.5); + .\32xl\:inset-x-8 { + right: 2rem; + left: 2rem; } - .xl\:backdrop-brightness-200 { - --tw-backdrop-brightness: brightness(2); + .\32xl\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; } - .xl\:backdrop-contrast-0 { - --tw-backdrop-contrast: contrast(0); + .\32xl\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; } - .xl\:backdrop-contrast-50 { - --tw-backdrop-contrast: contrast(.5); + .\32xl\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; } - .xl\:backdrop-contrast-75 { - --tw-backdrop-contrast: contrast(.75); + .\32xl\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; } - .xl\:backdrop-contrast-100 { - --tw-backdrop-contrast: contrast(1); + .\32xl\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; } - .xl\:backdrop-contrast-125 { - --tw-backdrop-contrast: contrast(1.25); + .\32xl\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; } - .xl\:backdrop-contrast-150 { - --tw-backdrop-contrast: contrast(1.5); + .\32xl\:inset-y-12 { + top: 3rem; + bottom: 3rem; } - .xl\:backdrop-contrast-200 { - --tw-backdrop-contrast: contrast(2); + .\32xl\:inset-x-12 { + right: 3rem; + left: 3rem; } - .xl\:backdrop-grayscale-0 { - --tw-backdrop-grayscale: grayscale(0); + .\32xl\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; } - .xl\:backdrop-grayscale { - --tw-backdrop-grayscale: grayscale(100%); + .\32xl\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; } - .xl\:backdrop-hue-rotate-0 { - --tw-backdrop-hue-rotate: hue-rotate(0deg); + .\32xl\:inset-y-16 { + top: 4rem; + bottom: 4rem; } - .xl\:backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(15deg); + .\32xl\:inset-x-16 { + right: 4rem; + left: 4rem; } - .xl\:backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(30deg); + .\32xl\:inset-y-20 { + top: 5rem; + bottom: 5rem; } - .xl\:backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(60deg); + .\32xl\:inset-x-20 { + right: 5rem; + left: 5rem; } - .xl\:backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(90deg); + .\32xl\:inset-y-24 { + top: 6rem; + bottom: 6rem; } - .xl\:backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(180deg); + .\32xl\:inset-x-24 { + right: 6rem; + left: 6rem; } - .xl\:-backdrop-hue-rotate-180 { - --tw-backdrop-hue-rotate: hue-rotate(-180deg); + .\32xl\:inset-y-28 { + top: 7rem; + bottom: 7rem; } - .xl\:-backdrop-hue-rotate-90 { - --tw-backdrop-hue-rotate: hue-rotate(-90deg); + .\32xl\:inset-x-28 { + right: 7rem; + left: 7rem; } - .xl\:-backdrop-hue-rotate-60 { - --tw-backdrop-hue-rotate: hue-rotate(-60deg); + .\32xl\:inset-y-32 { + top: 8rem; + bottom: 8rem; } - .xl\:-backdrop-hue-rotate-30 { - --tw-backdrop-hue-rotate: hue-rotate(-30deg); + .\32xl\:inset-x-32 { + right: 8rem; + left: 8rem; } - .xl\:-backdrop-hue-rotate-15 { - --tw-backdrop-hue-rotate: hue-rotate(-15deg); + .\32xl\:inset-y-36 { + top: 9rem; + bottom: 9rem; } - .xl\:backdrop-invert-0 { - --tw-backdrop-invert: invert(0); + .\32xl\:inset-x-36 { + right: 9rem; + left: 9rem; } - .xl\:backdrop-invert { - --tw-backdrop-invert: invert(100%); + .\32xl\:inset-y-40 { + top: 10rem; + bottom: 10rem; } - .xl\:backdrop-saturate-0 { - --tw-backdrop-saturate: saturate(0); + .\32xl\:inset-x-40 { + right: 10rem; + left: 10rem; } - .xl\:backdrop-saturate-50 { - --tw-backdrop-saturate: saturate(.5); + .\32xl\:inset-y-44 { + top: 11rem; + bottom: 11rem; } - .xl\:backdrop-saturate-100 { - --tw-backdrop-saturate: saturate(1); + .\32xl\:inset-x-44 { + right: 11rem; + left: 11rem; } - .xl\:backdrop-saturate-150 { - --tw-backdrop-saturate: saturate(1.5); + .\32xl\:inset-y-48 { + top: 12rem; + bottom: 12rem; } - .xl\:backdrop-saturate-200 { - --tw-backdrop-saturate: saturate(2); + .\32xl\:inset-x-48 { + right: 12rem; + left: 12rem; } - .xl\:backdrop-sepia-0 { - --tw-backdrop-sepia: sepia(0); + .\32xl\:inset-y-52 { + top: 13rem; + bottom: 13rem; } - .xl\:backdrop-sepia { - --tw-backdrop-sepia: sepia(100%); + .\32xl\:inset-x-52 { + right: 13rem; + left: 13rem; } - .xl\:example { - font-weight: 700; - color: #ef4444; + .\32xl\:inset-y-56 { + top: 14rem; + bottom: 14rem; } -} -@media (min-width: 1536px) { - .\32xl\:container { - width: 100%; + .\32xl\:inset-x-56 { + right: 14rem; + left: 14rem; } - @media (min-width: 640px) { - .\32xl\:container { - max-width: 640px; - } + .\32xl\:inset-y-60 { + top: 15rem; + bottom: 15rem; } - @media (min-width: 768px) { - .\32xl\:container { - max-width: 768px; - } + .\32xl\:inset-x-60 { + right: 15rem; + left: 15rem; } - @media (min-width: 1024px) { - .\32xl\:container { - max-width: 1024px; - } + .\32xl\:inset-y-64 { + top: 16rem; + bottom: 16rem; } - @media (min-width: 1280px) { - .\32xl\:container { - max-width: 1280px; - } + .\32xl\:inset-x-64 { + right: 16rem; + left: 16rem; } - @media (min-width: 1536px) { - .\32xl\:container { - max-width: 1536px; - } + .\32xl\:inset-y-72 { + top: 18rem; + bottom: 18rem; } - .\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\:inset-x-72 { + right: 18rem; + left: 18rem; } - .\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\:inset-y-80 { + top: 20rem; + bottom: 20rem; } - .\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\:inset-x-80 { + right: 20rem; + left: 20rem; } - .\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\:inset-y-96 { + top: 24rem; + bottom: 24rem; } - .\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\:inset-x-96 { + right: 24rem; + left: 24rem; } - .\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\:inset-y-auto { + top: auto; + bottom: auto; } - .\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\:inset-x-auto { + right: auto; + left: auto; } - .\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\:inset-y-px { + top: 1px; + bottom: 1px; } - .\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\:inset-x-px { + right: 1px; + left: 1px; } - .\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\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; } - .\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\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; } - .\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\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; } - .\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\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; } - .\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\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; } - .\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\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; } - .\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\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; } - .\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\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; } - .\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\:-inset-y-0 { + top: 0px; + bottom: 0px; } - .\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\:-inset-x-0 { + right: 0px; + left: 0px; } - .\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\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; } - .\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\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; } - .\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\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; } - .\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\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; } - .\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\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; } - .\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\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; } - .\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\:-inset-y-4 { + top: -1rem; + bottom: -1rem; } - .\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\:-inset-x-4 { + right: -1rem; + left: -1rem; } - .\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\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; } - .\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\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; } - .\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\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; } - .\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\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; } - .\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\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; } - .\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\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; } - .\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\:-inset-y-8 { + top: -2rem; + bottom: -2rem; } - .\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\:-inset-x-8 { + right: -2rem; + left: -2rem; } - .\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\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; } - .\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\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; } - .\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\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; } - .\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\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; } - .\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\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; } - .\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\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; } - .\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\:-inset-y-12 { + top: -3rem; + bottom: -3rem; } - .\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\:-inset-x-12 { + right: -3rem; + left: -3rem; } - .\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\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; } - .\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\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; } - .\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\:-inset-y-16 { + top: -4rem; + bottom: -4rem; } - .\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\:-inset-x-16 { + right: -4rem; + left: -4rem; } - .\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\:-inset-y-20 { + top: -5rem; + bottom: -5rem; } - .\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\:-inset-x-20 { + right: -5rem; + left: -5rem; } - .\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\:-inset-y-24 { + top: -6rem; + bottom: -6rem; } - .\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\:-inset-x-24 { + right: -6rem; + left: -6rem; } - .\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\:-inset-y-28 { + top: -7rem; + bottom: -7rem; } - .\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\:-inset-x-28 { + right: -7rem; + left: -7rem; } - .\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\:-inset-y-32 { + top: -8rem; + bottom: -8rem; } - .\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\:-inset-x-32 { + right: -8rem; + left: -8rem; } - .\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\:-inset-y-36 { + top: -9rem; + bottom: -9rem; } - .\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\:-inset-x-36 { + right: -9rem; + left: -9rem; } - .\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\:-inset-y-40 { + top: -10rem; + bottom: -10rem; } - .\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\:-inset-x-40 { + right: -10rem; + left: -10rem; } - .\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\:-inset-y-44 { + top: -11rem; + bottom: -11rem; } - .\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\:-inset-x-44 { + right: -11rem; + left: -11rem; } - .\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\:-inset-y-48 { + top: -12rem; + bottom: -12rem; } - .\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\:-inset-x-48 { + right: -12rem; + left: -12rem; } - .\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\:-inset-y-52 { + top: -13rem; + bottom: -13rem; } - .\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\:-inset-x-52 { + right: -13rem; + left: -13rem; } - .\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\:-inset-y-56 { + top: -14rem; + bottom: -14rem; } - .\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\:-inset-x-56 { + right: -14rem; + left: -14rem; } - .\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\:-inset-y-60 { + top: -15rem; + bottom: -15rem; } - .\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\:-inset-x-60 { + right: -15rem; + left: -15rem; } - .\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\:-inset-y-64 { + top: -16rem; + bottom: -16rem; } - .\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\:-inset-x-64 { + right: -16rem; + left: -16rem; } - .\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\:-inset-y-72 { + top: -18rem; + bottom: -18rem; } - .\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\:-inset-x-72 { + right: -18rem; + left: -18rem; } - .\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\:-inset-y-80 { + top: -20rem; + bottom: -20rem; } - .\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\:-inset-x-80 { + right: -20rem; + left: -20rem; } - .\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\:-inset-y-96 { + top: -24rem; + bottom: -24rem; } - .\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\:-inset-x-96 { + right: -24rem; + left: -24rem; } - .\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\:-inset-y-px { + top: -1px; + bottom: -1px; } - .\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\:-inset-x-px { + right: -1px; + left: -1px; } - .\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\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; } - .\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\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; } - .\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\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; } - .\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\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; } - .\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\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; } - .\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\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; } - .\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\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; } - .\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\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; } - .\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\:inset-y-1\/2 { + top: 50%; + bottom: 50%; } - .\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\:inset-x-1\/2 { + right: 50%; + left: 50%; } - .\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\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; } - .\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\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; } - .\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\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; } - .\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\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; } - .\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\:inset-y-1\/4 { + top: 25%; + bottom: 25%; } - .\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\:inset-x-1\/4 { + right: 25%; + left: 25%; } - .\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\:inset-y-2\/4 { + top: 50%; + bottom: 50%; } - .\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\:inset-x-2\/4 { + right: 50%; + left: 50%; } - .\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\:inset-y-3\/4 { + top: 75%; + bottom: 75%; } - .\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\:inset-x-3\/4 { + right: 75%; + left: 75%; } - .\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\:inset-y-full { + top: 100%; + bottom: 100%; } - .\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\:inset-x-full { + right: 100%; + left: 100%; } - .\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\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; } - .\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\:-inset-x-1\/2 { + right: -50%; + left: -50%; } - .\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\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; } - .\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\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; } - .\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\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; } - .\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\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; } - .\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\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; } - .\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\:-inset-x-1\/4 { + right: -25%; + left: -25%; } - .\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\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; } - .\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\:-inset-x-2\/4 { + right: -50%; + left: -50%; } - .\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\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; } - .\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\:-inset-x-3\/4 { + right: -75%; + left: -75%; } - .\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\:-inset-y-full { + top: -100%; + bottom: -100%; } - .\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\:-inset-x-full { + right: -100%; + left: -100%; } - .\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\:top-0 { + top: 0px; } - .\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\:right-0 { + right: 0px; } - .\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\:bottom-0 { + bottom: 0px; } - .\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\:left-0 { + left: 0px; } - .\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\:top-1 { + top: 0.25rem; } - .\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\:right-1 { + right: 0.25rem; } - .\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\:bottom-1 { + bottom: 0.25rem; } - .\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\:left-1 { + left: 0.25rem; } - .\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\:top-2 { + top: 0.5rem; } - .\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\:right-2 { + right: 0.5rem; } - .\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\:bottom-2 { + bottom: 0.5rem; } - .\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\:left-2 { + left: 0.5rem; } - .\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\:top-3 { + top: 0.75rem; } - .\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\:right-3 { + right: 0.75rem; } - .\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\:bottom-3 { + bottom: 0.75rem; } - .\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\:left-3 { + left: 0.75rem; } - .\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\:top-4 { + top: 1rem; } - .\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\:right-4 { + right: 1rem; } - .\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\:bottom-4 { + bottom: 1rem; } - .\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\:left-4 { + left: 1rem; } - .\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\:top-5 { + top: 1.25rem; } - .\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\:right-5 { + right: 1.25rem; } - .\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\:bottom-5 { + bottom: 1.25rem; } - .\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\:left-5 { + left: 1.25rem; } - .\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\:top-6 { + top: 1.5rem; } - .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 1; + .\32xl\:right-6 { + right: 1.5rem; } - .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 1; + .\32xl\:bottom-6 { + bottom: 1.5rem; } - .\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\:left-6 { + left: 1.5rem; } - .\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\:top-7 { + top: 1.75rem; } - .\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\:right-7 { + right: 1.75rem; } - .\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\:bottom-7 { + bottom: 1.75rem; } - .\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\:left-7 { + left: 1.75rem; } - .\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\:top-8 { + top: 2rem; } - .\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\:right-8 { + right: 2rem; } - .\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\:bottom-8 { + bottom: 2rem; } - .\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\:left-8 { + left: 2rem; } - .\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\:top-9 { + top: 2.25rem; } - .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 1; + .\32xl\:right-9 { + right: 2.25rem; } - .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { - --tw-divide-x-reverse: 1; + .\32xl\:bottom-9 { + bottom: 2.25rem; } - .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { - border-color: transparent; + .\32xl\:left-9 { + left: 2.25rem; } - .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]) { - border-color: currentColor; + .\32xl\:top-10 { + top: 2.5rem; } - .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + .\32xl\:right-10 { + right: 2.5rem; } - .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + .\32xl\:bottom-10 { + bottom: 2.5rem; } - .\32xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + .\32xl\:left-10 { + left: 2.5rem; } - .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + .\32xl\:top-11 { + top: 2.75rem; } - .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + .\32xl\:right-11 { + right: 2.75rem; } - .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + .\32xl\:bottom-11 { + bottom: 2.75rem; } - .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + .\32xl\:left-11 { + left: 2.75rem; } - .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + .\32xl\:top-12 { + top: 3rem; } - .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + .\32xl\:right-12 { + right: 3rem; } - .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + .\32xl\:bottom-12 { + bottom: 3rem; } - .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + .\32xl\:left-12 { + left: 3rem; } - .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + .\32xl\:top-14 { + top: 3.5rem; } - .\32xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); + .\32xl\:right-14 { + right: 3.5rem; } - .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); + .\32xl\:bottom-14 { + bottom: 3.5rem; } - .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); + .\32xl\:left-14 { + left: 3.5rem; } - .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); + .\32xl\:top-16 { + top: 4rem; } - .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); + .\32xl\:right-16 { + right: 4rem; } - .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); + .\32xl\:bottom-16 { + bottom: 4rem; } - .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); + .\32xl\:left-16 { + left: 4rem; } - .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); + .\32xl\:top-20 { + top: 5rem; } - .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); + .\32xl\:right-20 { + right: 5rem; } - .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); + .\32xl\:bottom-20 { + bottom: 5rem; } - .\32xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); + .\32xl\:left-20 { + left: 5rem; } - .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); + .\32xl\:top-24 { + top: 6rem; } - .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); + .\32xl\:right-24 { + right: 6rem; } - .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); + .\32xl\:bottom-24 { + bottom: 6rem; } - .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); + .\32xl\:left-24 { + left: 6rem; } - .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + .\32xl\:top-28 { + top: 7rem; } - .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); + .\32xl\:right-28 { + right: 7rem; } - .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); + .\32xl\:bottom-28 { + bottom: 7rem; } - .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); + .\32xl\:left-28 { + left: 7rem; } - .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); + .\32xl\:top-32 { + top: 8rem; } - .\32xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); + .\32xl\:right-32 { + right: 8rem; } - .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); + .\32xl\:bottom-32 { + bottom: 8rem; } - .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); + .\32xl\:left-32 { + left: 8rem; } - .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); + .\32xl\:top-36 { + top: 9rem; } - .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); + .\32xl\:right-36 { + right: 9rem; } - .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); + .\32xl\:bottom-36 { + bottom: 9rem; } - .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); + .\32xl\:left-36 { + left: 9rem; } - .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); + .\32xl\:top-40 { + top: 10rem; } - .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); + .\32xl\:right-40 { + right: 10rem; } - .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); + .\32xl\:bottom-40 { + bottom: 10rem; } - .\32xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); + .\32xl\:left-40 { + left: 10rem; } - .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); + .\32xl\:top-44 { + top: 11rem; } - .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); + .\32xl\:right-44 { + right: 11rem; } - .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); + .\32xl\:bottom-44 { + bottom: 11rem; } - .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); + .\32xl\:left-44 { + left: 11rem; } - .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + .\32xl\:top-48 { + top: 12rem; } - .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); + .\32xl\:right-48 { + right: 12rem; } - .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); + .\32xl\:bottom-48 { + bottom: 12rem; } - .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); + .\32xl\:left-48 { + left: 12rem; } - .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); + .\32xl\:top-52 { + top: 13rem; } - .\32xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); + .\32xl\:right-52 { + right: 13rem; } - .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); + .\32xl\:bottom-52 { + bottom: 13rem; } - .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); + .\32xl\:left-52 { + left: 13rem; } - .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); + .\32xl\:top-56 { + top: 14rem; } - .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); + .\32xl\:right-56 { + right: 14rem; } - .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); + .\32xl\:bottom-56 { + bottom: 14rem; } - .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); + .\32xl\:left-56 { + left: 14rem; } - .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); + .\32xl\:top-60 { + top: 15rem; } - .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); + .\32xl\:right-60 { + right: 15rem; } - .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); + .\32xl\:bottom-60 { + bottom: 15rem; } - .\32xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); + .\32xl\:left-60 { + left: 15rem; } - .\32xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); + .\32xl\:top-64 { + top: 16rem; } - .\32xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); + .\32xl\:right-64 { + right: 16rem; } - .\32xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); + .\32xl\:bottom-64 { + bottom: 16rem; } - .\32xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); + .\32xl\:left-64 { + left: 16rem; } - .\32xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); + .\32xl\:top-72 { + top: 18rem; } - .\32xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); + .\32xl\:right-72 { + right: 18rem; } - .\32xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); + .\32xl\:bottom-72 { + bottom: 18rem; } - .\32xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); + .\32xl\:left-72 { + left: 18rem; } - .\32xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); + .\32xl\:top-80 { + top: 20rem; } - .\32xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); + .\32xl\:right-80 { + right: 20rem; } - .\32xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); + .\32xl\:bottom-80 { + bottom: 20rem; } - .\32xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); + .\32xl\:left-80 { + left: 20rem; } - .\32xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); + .\32xl\:top-96 { + top: 24rem; } - .\32xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); + .\32xl\:right-96 { + right: 24rem; } - .\32xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); + .\32xl\:bottom-96 { + bottom: 24rem; } - .\32xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); + .\32xl\:left-96 { + left: 24rem; } - .\32xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); + .\32xl\:top-auto { + top: auto; } - .\32xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); + .\32xl\:right-auto { + right: auto; } - .\32xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); + .\32xl\:bottom-auto { + bottom: auto; } - .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { - border-style: solid; + .\32xl\:left-auto { + left: auto; } - .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { - border-style: dashed; + .\32xl\:top-px { + top: 1px; } - .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { - border-style: dotted; + .\32xl\:right-px { + right: 1px; } - .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]) { - border-style: double; + .\32xl\:bottom-px { + bottom: 1px; } - .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]) { - border-style: none; + .\32xl\:left-px { + left: 1px; } - .\32xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0; + .\32xl\:top-0\.5 { + top: 0.125rem; } - .\32xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.05; + .\32xl\:right-0\.5 { + right: 0.125rem; } - .\32xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.1; + .\32xl\:bottom-0\.5 { + bottom: 0.125rem; } - .\32xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.2; + .\32xl\:left-0\.5 { + left: 0.125rem; } - .\32xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.25; + .\32xl\:top-1\.5 { + top: 0.375rem; } - .\32xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.3; + .\32xl\:right-1\.5 { + right: 0.375rem; } - .\32xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.4; + .\32xl\:bottom-1\.5 { + bottom: 0.375rem; } - .\32xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.5; + .\32xl\:left-1\.5 { + left: 0.375rem; } - .\32xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.6; + .\32xl\:top-2\.5 { + top: 0.625rem; } - .\32xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.7; + .\32xl\:right-2\.5 { + right: 0.625rem; } - .\32xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.75; + .\32xl\:bottom-2\.5 { + bottom: 0.625rem; } - .\32xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.8; + .\32xl\:left-2\.5 { + left: 0.625rem; } - .\32xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.9; + .\32xl\:top-3\.5 { + top: 0.875rem; } - .\32xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 0.95; + .\32xl\:right-3\.5 { + right: 0.875rem; } - .\32xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-opacity: 1; + .\32xl\:bottom-3\.5 { + bottom: 0.875rem; } - .\32xl\:sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .\32xl\:left-3\.5 { + left: 0.875rem; } - .\32xl\:not-sr-only { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .\32xl\:-top-0 { + top: 0px; } - .\32xl\:focus-within\:sr-only:focus-within { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .\32xl\:-right-0 { + right: 0px; } - .\32xl\:focus-within\:not-sr-only:focus-within { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .\32xl\:-bottom-0 { + bottom: 0px; } - .\32xl\:focus\:sr-only:focus { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border-width: 0; + .\32xl\:-left-0 { + left: 0px; } - .\32xl\:focus\:not-sr-only:focus { - position: static; - width: auto; - height: auto; - padding: 0; - margin: 0; - overflow: visible; - clip: auto; - white-space: normal; + .\32xl\:-top-1 { + top: -0.25rem; } - .\32xl\:appearance-none { - appearance: none; + .\32xl\:-right-1 { + right: -0.25rem; } - .\32xl\:bg-fixed { - background-attachment: fixed; + .\32xl\:-bottom-1 { + bottom: -0.25rem; } - .\32xl\:bg-local { - background-attachment: local; + .\32xl\:-left-1 { + left: -0.25rem; } - .\32xl\:bg-scroll { - background-attachment: scroll; + .\32xl\:-top-2 { + top: -0.5rem; } - .\32xl\:bg-clip-border { - background-clip: border-box; + .\32xl\:-right-2 { + right: -0.5rem; } - .\32xl\:bg-clip-padding { - background-clip: padding-box; + .\32xl\:-bottom-2 { + bottom: -0.5rem; } - .\32xl\:bg-clip-content { - background-clip: content-box; + .\32xl\:-left-2 { + left: -0.5rem; } - .\32xl\:bg-clip-text { - background-clip: text; + .\32xl\:-top-3 { + top: -0.75rem; } - .\32xl\:bg-transparent { - background-color: transparent; + .\32xl\:-right-3 { + right: -0.75rem; } - .\32xl\:bg-current { - background-color: currentColor; + .\32xl\:-bottom-3 { + bottom: -0.75rem; } - .\32xl\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .\32xl\:-left-3 { + left: -0.75rem; } - .\32xl\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .\32xl\:-top-4 { + top: -1rem; } - .\32xl\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .\32xl\:-right-4 { + right: -1rem; } - .\32xl\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .\32xl\:-bottom-4 { + bottom: -1rem; } - .\32xl\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .\32xl\:-left-4 { + left: -1rem; } - .\32xl\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .\32xl\:-top-5 { + top: -1.25rem; } - .\32xl\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .\32xl\:-right-5 { + right: -1.25rem; } - .\32xl\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .\32xl\:-bottom-5 { + bottom: -1.25rem; } - .\32xl\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .\32xl\:-left-5 { + left: -1.25rem; } - .\32xl\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .\32xl\:-top-6 { + top: -1.5rem; } - .\32xl\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .\32xl\:-right-6 { + right: -1.5rem; } - .\32xl\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .\32xl\:-bottom-6 { + bottom: -1.5rem; } - .\32xl\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .\32xl\:-left-6 { + left: -1.5rem; } - .\32xl\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .\32xl\:-top-7 { + top: -1.75rem; } - .\32xl\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .\32xl\:-right-7 { + right: -1.75rem; } - .\32xl\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .\32xl\:-bottom-7 { + bottom: -1.75rem; } - .\32xl\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .\32xl\:-left-7 { + left: -1.75rem; } - .\32xl\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .\32xl\:-top-8 { + top: -2rem; } - .\32xl\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .\32xl\:-right-8 { + right: -2rem; } - .\32xl\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .\32xl\:-bottom-8 { + bottom: -2rem; } - .\32xl\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .\32xl\:-left-8 { + left: -2rem; } - .\32xl\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .\32xl\:-top-9 { + top: -2.25rem; } - .\32xl\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .\32xl\:-right-9 { + right: -2.25rem; } - .\32xl\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .\32xl\:-bottom-9 { + bottom: -2.25rem; } - .\32xl\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .\32xl\:-left-9 { + left: -2.25rem; } - .\32xl\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .\32xl\:-top-10 { + top: -2.5rem; } - .\32xl\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .\32xl\:-right-10 { + right: -2.5rem; } - .\32xl\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .\32xl\:-bottom-10 { + bottom: -2.5rem; } - .\32xl\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .\32xl\:-left-10 { + left: -2.5rem; } - .\32xl\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .\32xl\:-top-11 { + top: -2.75rem; } - .\32xl\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .\32xl\:-right-11 { + right: -2.75rem; } - .\32xl\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .\32xl\:-bottom-11 { + bottom: -2.75rem; } - .\32xl\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .\32xl\:-left-11 { + left: -2.75rem; } - .\32xl\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .\32xl\:-top-12 { + top: -3rem; } - .\32xl\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .\32xl\:-right-12 { + right: -3rem; } - .\32xl\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .\32xl\:-bottom-12 { + bottom: -3rem; } - .\32xl\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .\32xl\:-left-12 { + left: -3rem; } - .\32xl\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .\32xl\:-top-14 { + top: -3.5rem; } - .\32xl\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .\32xl\:-right-14 { + right: -3.5rem; } - .\32xl\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .\32xl\:-bottom-14 { + bottom: -3.5rem; } - .\32xl\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .\32xl\:-left-14 { + left: -3.5rem; } - .\32xl\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .\32xl\:-top-16 { + top: -4rem; } - .\32xl\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .\32xl\:-right-16 { + right: -4rem; } - .\32xl\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .\32xl\:-bottom-16 { + bottom: -4rem; } - .\32xl\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .\32xl\:-left-16 { + left: -4rem; } - .\32xl\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .\32xl\:-top-20 { + top: -5rem; } - .\32xl\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .\32xl\:-right-20 { + right: -5rem; } - .\32xl\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .\32xl\:-bottom-20 { + bottom: -5rem; } - .\32xl\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .\32xl\:-left-20 { + left: -5rem; } - .\32xl\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .\32xl\:-top-24 { + top: -6rem; } - .\32xl\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .\32xl\:-right-24 { + right: -6rem; } - .\32xl\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .\32xl\:-bottom-24 { + bottom: -6rem; } - .\32xl\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .\32xl\:-left-24 { + left: -6rem; } - .\32xl\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .\32xl\:-top-28 { + top: -7rem; } - .\32xl\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .\32xl\:-right-28 { + right: -7rem; } - .\32xl\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .\32xl\:-bottom-28 { + bottom: -7rem; } - .\32xl\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .\32xl\:-left-28 { + left: -7rem; } - .\32xl\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .\32xl\:-top-32 { + top: -8rem; } - .\32xl\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .\32xl\:-right-32 { + right: -8rem; } - .\32xl\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .\32xl\:-bottom-32 { + bottom: -8rem; } - .\32xl\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .\32xl\:-left-32 { + left: -8rem; } - .\32xl\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .\32xl\:-top-36 { + top: -9rem; } - .\32xl\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .\32xl\:-right-36 { + right: -9rem; } - .\32xl\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .\32xl\:-bottom-36 { + bottom: -9rem; } - .\32xl\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .\32xl\:-left-36 { + left: -9rem; } - .\32xl\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .\32xl\:-top-40 { + top: -10rem; } - .\32xl\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .\32xl\:-right-40 { + right: -10rem; } - .\32xl\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .\32xl\:-bottom-40 { + bottom: -10rem; } - .\32xl\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .\32xl\:-left-40 { + left: -10rem; } - .\32xl\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .\32xl\:-top-44 { + top: -11rem; } - .\32xl\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .\32xl\:-right-44 { + right: -11rem; } - .\32xl\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .\32xl\:-bottom-44 { + bottom: -11rem; } - .\32xl\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .\32xl\:-left-44 { + left: -11rem; } - .\32xl\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .\32xl\:-top-48 { + top: -12rem; } - .\32xl\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .\32xl\:-right-48 { + right: -12rem; } - .\32xl\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .\32xl\:-bottom-48 { + bottom: -12rem; } - .\32xl\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .\32xl\:-left-48 { + left: -12rem; } - .\32xl\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .\32xl\:-top-52 { + top: -13rem; } - .\32xl\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .\32xl\:-right-52 { + right: -13rem; } - .\32xl\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .\32xl\:-bottom-52 { + bottom: -13rem; + } + + .\32xl\:-left-52 { + left: -13rem; } - .\32xl\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .\32xl\:-top-56 { + top: -14rem; } - .\32xl\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .\32xl\:-right-56 { + right: -14rem; } - .group:hover .\32xl\:group-hover\:bg-transparent { - background-color: transparent; + .\32xl\:-bottom-56 { + bottom: -14rem; } - .group:hover .\32xl\:group-hover\:bg-current { - background-color: currentColor; + .\32xl\:-left-56 { + left: -14rem; } - .group:hover .\32xl\:group-hover\:bg-black { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .\32xl\:-top-60 { + top: -15rem; } - .group:hover .\32xl\:group-hover\:bg-white { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .\32xl\:-right-60 { + right: -15rem; } - .group:hover .\32xl\:group-hover\:bg-gray-50 { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .\32xl\:-bottom-60 { + bottom: -15rem; } - .group:hover .\32xl\:group-hover\:bg-gray-100 { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .\32xl\:-left-60 { + left: -15rem; } - .group:hover .\32xl\:group-hover\:bg-gray-200 { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .\32xl\:-top-64 { + top: -16rem; } - .group:hover .\32xl\:group-hover\:bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .\32xl\:-right-64 { + right: -16rem; } - .group:hover .\32xl\:group-hover\:bg-gray-400 { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .\32xl\:-bottom-64 { + bottom: -16rem; } - .group:hover .\32xl\:group-hover\:bg-gray-500 { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .\32xl\:-left-64 { + left: -16rem; } - .group:hover .\32xl\:group-hover\:bg-gray-600 { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .\32xl\:-top-72 { + top: -18rem; } - .group:hover .\32xl\:group-hover\:bg-gray-700 { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .\32xl\:-right-72 { + right: -18rem; } - .group:hover .\32xl\:group-hover\:bg-gray-800 { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .\32xl\:-bottom-72 { + bottom: -18rem; } - .group:hover .\32xl\:group-hover\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .\32xl\:-left-72 { + left: -18rem; } - .group:hover .\32xl\:group-hover\:bg-red-50 { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .\32xl\:-top-80 { + top: -20rem; } - .group:hover .\32xl\:group-hover\:bg-red-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .\32xl\:-right-80 { + right: -20rem; } - .group:hover .\32xl\:group-hover\:bg-red-200 { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .\32xl\:-bottom-80 { + bottom: -20rem; } - .group:hover .\32xl\:group-hover\:bg-red-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .\32xl\:-left-80 { + left: -20rem; } - .group:hover .\32xl\:group-hover\:bg-red-400 { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .\32xl\:-top-96 { + top: -24rem; } - .group:hover .\32xl\:group-hover\:bg-red-500 { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .\32xl\:-right-96 { + right: -24rem; } - .group:hover .\32xl\:group-hover\:bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .\32xl\:-bottom-96 { + bottom: -24rem; } - .group:hover .\32xl\:group-hover\:bg-red-700 { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .\32xl\:-left-96 { + left: -24rem; } - .group:hover .\32xl\:group-hover\:bg-red-800 { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .\32xl\:-top-px { + top: -1px; } - .group:hover .\32xl\:group-hover\:bg-red-900 { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .\32xl\:-right-px { + right: -1px; } - .group:hover .\32xl\:group-hover\:bg-yellow-50 { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .\32xl\:-bottom-px { + bottom: -1px; } - .group:hover .\32xl\:group-hover\:bg-yellow-100 { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .\32xl\:-left-px { + left: -1px; } - .group:hover .\32xl\:group-hover\:bg-yellow-200 { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .\32xl\:-top-0\.5 { + top: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-300 { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .\32xl\:-right-0\.5 { + right: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-400 { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .\32xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-500 { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .\32xl\:-left-0\.5 { + left: -0.125rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-600 { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .\32xl\:-top-1\.5 { + top: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-700 { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .\32xl\:-right-1\.5 { + right: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-800 { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .\32xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .\32xl\:-left-1\.5 { + left: -0.375rem; } - .group:hover .\32xl\:group-hover\:bg-green-50 { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .\32xl\:-top-2\.5 { + top: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-green-100 { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .\32xl\:-right-2\.5 { + right: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-green-200 { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .\32xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-green-300 { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .\32xl\:-left-2\.5 { + left: -0.625rem; } - .group:hover .\32xl\:group-hover\:bg-green-400 { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .\32xl\:-top-3\.5 { + top: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-green-500 { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .\32xl\:-right-3\.5 { + right: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-green-600 { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .\32xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-green-700 { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .\32xl\:-left-3\.5 { + left: -0.875rem; } - .group:hover .\32xl\:group-hover\:bg-green-800 { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .\32xl\:top-1\/2 { + top: 50%; } - .group:hover .\32xl\:group-hover\:bg-green-900 { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .\32xl\:right-1\/2 { + right: 50%; } - .group:hover .\32xl\:group-hover\:bg-blue-50 { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .\32xl\:bottom-1\/2 { + bottom: 50%; } - .group:hover .\32xl\:group-hover\:bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .\32xl\:left-1\/2 { + left: 50%; } - .group:hover .\32xl\:group-hover\:bg-blue-200 { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .\32xl\:top-1\/3 { + top: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-blue-300 { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .\32xl\:right-1\/3 { + right: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-blue-400 { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .\32xl\:bottom-1\/3 { + bottom: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-blue-500 { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .\32xl\:left-1\/3 { + left: 33.333333%; } - .group:hover .\32xl\:group-hover\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .\32xl\:top-2\/3 { + top: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-blue-700 { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .\32xl\:right-2\/3 { + right: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-blue-800 { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .\32xl\:bottom-2\/3 { + bottom: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .\32xl\:left-2\/3 { + left: 66.666667%; } - .group:hover .\32xl\:group-hover\:bg-indigo-50 { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .\32xl\:top-1\/4 { + top: 25%; } - .group:hover .\32xl\:group-hover\:bg-indigo-100 { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .\32xl\:right-1\/4 { + right: 25%; } - .group:hover .\32xl\:group-hover\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .\32xl\:bottom-1\/4 { + bottom: 25%; } - .group:hover .\32xl\:group-hover\:bg-indigo-300 { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .\32xl\:left-1\/4 { + left: 25%; } - .group:hover .\32xl\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .\32xl\:top-2\/4 { + top: 50%; } - .group:hover .\32xl\:group-hover\:bg-indigo-500 { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .\32xl\:right-2\/4 { + right: 50%; } - .group:hover .\32xl\:group-hover\:bg-indigo-600 { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .\32xl\:bottom-2\/4 { + bottom: 50%; } - .group:hover .\32xl\:group-hover\:bg-indigo-700 { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .\32xl\:left-2\/4 { + left: 50%; } - .group:hover .\32xl\:group-hover\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .\32xl\:top-3\/4 { + top: 75%; } - .group:hover .\32xl\:group-hover\:bg-indigo-900 { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .\32xl\:right-3\/4 { + right: 75%; } - .group:hover .\32xl\:group-hover\:bg-purple-50 { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .\32xl\:bottom-3\/4 { + bottom: 75%; } - .group:hover .\32xl\:group-hover\:bg-purple-100 { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .\32xl\:left-3\/4 { + left: 75%; } - .group:hover .\32xl\:group-hover\:bg-purple-200 { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .\32xl\:top-full { + top: 100%; } - .group:hover .\32xl\:group-hover\:bg-purple-300 { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .\32xl\:right-full { + right: 100%; } - .group:hover .\32xl\:group-hover\:bg-purple-400 { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .\32xl\:bottom-full { + bottom: 100%; } - .group:hover .\32xl\:group-hover\:bg-purple-500 { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .\32xl\:left-full { + left: 100%; } - .group:hover .\32xl\:group-hover\:bg-purple-600 { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .\32xl\:-top-1\/2 { + top: -50%; } - .group:hover .\32xl\:group-hover\:bg-purple-700 { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .\32xl\:-right-1\/2 { + right: -50%; } - .group:hover .\32xl\:group-hover\:bg-purple-800 { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .\32xl\:-bottom-1\/2 { + bottom: -50%; } - .group:hover .\32xl\:group-hover\:bg-purple-900 { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .\32xl\:-left-1\/2 { + left: -50%; } - .group:hover .\32xl\:group-hover\:bg-pink-50 { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .\32xl\:-top-1\/3 { + top: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-pink-100 { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .\32xl\:-right-1\/3 { + right: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-pink-200 { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .\32xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-pink-300 { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .\32xl\:-left-1\/3 { + left: -33.333333%; } - .group:hover .\32xl\:group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .\32xl\:-top-2\/3 { + top: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-pink-500 { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .\32xl\:-right-2\/3 { + right: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .\32xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-pink-700 { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .\32xl\:-left-2\/3 { + left: -66.666667%; } - .group:hover .\32xl\:group-hover\:bg-pink-800 { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .\32xl\:-top-1\/4 { + top: -25%; } - .group:hover .\32xl\:group-hover\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .\32xl\:-right-1\/4 { + right: -25%; } - .\32xl\:focus-within\:bg-transparent:focus-within { - background-color: transparent; + .\32xl\:-bottom-1\/4 { + bottom: -25%; } - .\32xl\:focus-within\:bg-current:focus-within { - background-color: currentColor; + .\32xl\:-left-1\/4 { + left: -25%; } - .\32xl\:focus-within\:bg-black:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .\32xl\:-top-2\/4 { + top: -50%; } - .\32xl\:focus-within\:bg-white:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .\32xl\:-right-2\/4 { + right: -50%; } - .\32xl\:focus-within\:bg-gray-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .\32xl\:-bottom-2\/4 { + bottom: -50%; } - .\32xl\:focus-within\:bg-gray-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .\32xl\:-left-2\/4 { + left: -50%; } - .\32xl\:focus-within\:bg-gray-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .\32xl\:-top-3\/4 { + top: -75%; } - .\32xl\:focus-within\:bg-gray-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .\32xl\:-right-3\/4 { + right: -75%; } - .\32xl\:focus-within\:bg-gray-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .\32xl\:-bottom-3\/4 { + bottom: -75%; } - .\32xl\:focus-within\:bg-gray-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .\32xl\:-left-3\/4 { + left: -75%; } - .\32xl\:focus-within\:bg-gray-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .\32xl\:-top-full { + top: -100%; } - .\32xl\:focus-within\:bg-gray-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .\32xl\:-right-full { + right: -100%; } - .\32xl\:focus-within\:bg-gray-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .\32xl\:-bottom-full { + bottom: -100%; } - .\32xl\:focus-within\:bg-gray-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .\32xl\:-left-full { + left: -100%; } - .\32xl\:focus-within\:bg-red-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .\32xl\:isolate { + isolation: isolate; } - .\32xl\:focus-within\:bg-red-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .\32xl\:isolation-auto { + isolation: auto; } - .\32xl\:focus-within\:bg-red-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .\32xl\:z-0 { + z-index: 0; } - .\32xl\:focus-within\:bg-red-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .\32xl\:z-10 { + z-index: 10; } - .\32xl\:focus-within\:bg-red-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .\32xl\:z-20 { + z-index: 20; } - .\32xl\:focus-within\:bg-red-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .\32xl\:z-30 { + z-index: 30; } - .\32xl\:focus-within\:bg-red-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .\32xl\:z-40 { + z-index: 40; } - .\32xl\:focus-within\:bg-red-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .\32xl\:z-50 { + z-index: 50; } - .\32xl\:focus-within\:bg-red-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .\32xl\:z-auto { + z-index: auto; } - .\32xl\:focus-within\:bg-red-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-0:focus-within { + z-index: 0; } - .\32xl\:focus-within\:bg-yellow-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-10:focus-within { + z-index: 10; } - .\32xl\:focus-within\:bg-yellow-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-20:focus-within { + z-index: 20; } - .\32xl\:focus-within\:bg-yellow-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-30:focus-within { + z-index: 30; } - .\32xl\:focus-within\:bg-yellow-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-40:focus-within { + z-index: 40; } - .\32xl\:focus-within\:bg-yellow-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-50:focus-within { + z-index: 50; } - .\32xl\:focus-within\:bg-yellow-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .\32xl\:focus-within\:z-auto:focus-within { + z-index: auto; } - .\32xl\:focus-within\:bg-yellow-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .\32xl\:focus\:z-0:focus { + z-index: 0; } - .\32xl\:focus-within\:bg-yellow-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .\32xl\:focus\:z-10:focus { + z-index: 10; } - .\32xl\:focus-within\:bg-yellow-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .\32xl\:focus\:z-20:focus { + z-index: 20; } - .\32xl\:focus-within\:bg-yellow-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .\32xl\:focus\:z-30:focus { + z-index: 30; } - .\32xl\:focus-within\:bg-green-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .\32xl\:focus\:z-40:focus { + z-index: 40; } - .\32xl\:focus-within\:bg-green-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .\32xl\:focus\:z-50:focus { + z-index: 50; } - .\32xl\:focus-within\:bg-green-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .\32xl\:focus\:z-auto:focus { + z-index: auto; } - .\32xl\:focus-within\:bg-green-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .\32xl\:order-1 { + order: 1; } - .\32xl\:focus-within\:bg-green-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .\32xl\:order-2 { + order: 2; } - .\32xl\:focus-within\:bg-green-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .\32xl\:order-3 { + order: 3; } - .\32xl\:focus-within\:bg-green-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .\32xl\:order-4 { + order: 4; } - .\32xl\:focus-within\:bg-green-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .\32xl\:order-5 { + order: 5; } - .\32xl\:focus-within\:bg-green-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .\32xl\:order-6 { + order: 6; } - .\32xl\:focus-within\:bg-green-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .\32xl\:order-7 { + order: 7; } - .\32xl\:focus-within\:bg-blue-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .\32xl\:order-8 { + order: 8; } - .\32xl\:focus-within\:bg-blue-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .\32xl\:order-9 { + order: 9; } - .\32xl\:focus-within\:bg-blue-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .\32xl\:order-10 { + order: 10; } - .\32xl\:focus-within\:bg-blue-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .\32xl\:order-11 { + order: 11; } - .\32xl\:focus-within\:bg-blue-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .\32xl\:order-12 { + order: 12; } - .\32xl\:focus-within\:bg-blue-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .\32xl\:order-first { + order: -9999; } - .\32xl\:focus-within\:bg-blue-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .\32xl\:order-last { + order: 9999; } - .\32xl\:focus-within\:bg-blue-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .\32xl\:order-none { + order: 0; } - .\32xl\:focus-within\:bg-blue-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .\32xl\:col-auto { + grid-column: auto; } - .\32xl\:focus-within\:bg-blue-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .\32xl\:col-span-1 { + grid-column: span 1 / span 1; } - .\32xl\:focus-within\:bg-indigo-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .\32xl\:col-span-2 { + grid-column: span 2 / span 2; } - .\32xl\:focus-within\:bg-indigo-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .\32xl\:col-span-3 { + grid-column: span 3 / span 3; } - .\32xl\:focus-within\:bg-indigo-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .\32xl\:col-span-4 { + grid-column: span 4 / span 4; } - .\32xl\:focus-within\:bg-indigo-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .\32xl\:col-span-5 { + grid-column: span 5 / span 5; } - .\32xl\:focus-within\:bg-indigo-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .\32xl\:col-span-6 { + grid-column: span 6 / span 6; } - .\32xl\:focus-within\:bg-indigo-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .\32xl\:col-span-7 { + grid-column: span 7 / span 7; } - .\32xl\:focus-within\:bg-indigo-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .\32xl\:col-span-8 { + grid-column: span 8 / span 8; } - .\32xl\:focus-within\:bg-indigo-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .\32xl\:col-span-9 { + grid-column: span 9 / span 9; } - .\32xl\:focus-within\:bg-indigo-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .\32xl\:col-span-10 { + grid-column: span 10 / span 10; } - .\32xl\:focus-within\:bg-indigo-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .\32xl\:col-span-11 { + grid-column: span 11 / span 11; } - .\32xl\:focus-within\:bg-purple-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .\32xl\:col-span-12 { + grid-column: span 12 / span 12; } - .\32xl\:focus-within\:bg-purple-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .\32xl\:col-span-full { + grid-column: 1 / -1; } - .\32xl\:focus-within\:bg-purple-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .\32xl\:col-start-1 { + grid-column-start: 1; } - .\32xl\:focus-within\:bg-purple-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .\32xl\:col-start-2 { + grid-column-start: 2; } - .\32xl\:focus-within\:bg-purple-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .\32xl\:col-start-3 { + grid-column-start: 3; } - .\32xl\:focus-within\:bg-purple-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .\32xl\:col-start-4 { + grid-column-start: 4; } - .\32xl\:focus-within\:bg-purple-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .\32xl\:col-start-5 { + grid-column-start: 5; } - .\32xl\:focus-within\:bg-purple-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .\32xl\:col-start-6 { + grid-column-start: 6; } - .\32xl\:focus-within\:bg-purple-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .\32xl\:col-start-7 { + grid-column-start: 7; } - .\32xl\:focus-within\:bg-purple-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .\32xl\:col-start-8 { + grid-column-start: 8; } - .\32xl\:focus-within\:bg-pink-50:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .\32xl\:col-start-9 { + grid-column-start: 9; } - .\32xl\:focus-within\:bg-pink-100:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .\32xl\:col-start-10 { + grid-column-start: 10; } - .\32xl\:focus-within\:bg-pink-200:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .\32xl\:col-start-11 { + grid-column-start: 11; } - .\32xl\:focus-within\:bg-pink-300:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .\32xl\:col-start-12 { + grid-column-start: 12; } - .\32xl\:focus-within\:bg-pink-400:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .\32xl\:col-start-13 { + grid-column-start: 13; } - .\32xl\:focus-within\:bg-pink-500:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .\32xl\:col-start-auto { + grid-column-start: auto; } - .\32xl\:focus-within\:bg-pink-600:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .\32xl\:col-end-1 { + grid-column-end: 1; } - .\32xl\:focus-within\:bg-pink-700:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .\32xl\:col-end-2 { + grid-column-end: 2; } - .\32xl\:focus-within\:bg-pink-800:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .\32xl\:col-end-3 { + grid-column-end: 3; } - .\32xl\:focus-within\:bg-pink-900:focus-within { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .\32xl\:col-end-4 { + grid-column-end: 4; } - .\32xl\:hover\:bg-transparent:hover { - background-color: transparent; + .\32xl\:col-end-5 { + grid-column-end: 5; } - .\32xl\:hover\:bg-current:hover { - background-color: currentColor; + .\32xl\:col-end-6 { + grid-column-end: 6; } - .\32xl\:hover\:bg-black:hover { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .\32xl\:col-end-7 { + grid-column-end: 7; } - .\32xl\:hover\:bg-white:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .\32xl\:col-end-8 { + grid-column-end: 8; } - .\32xl\:hover\:bg-gray-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .\32xl\:col-end-9 { + grid-column-end: 9; } - .\32xl\:hover\:bg-gray-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .\32xl\:col-end-10 { + grid-column-end: 10; } - .\32xl\:hover\:bg-gray-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .\32xl\:col-end-11 { + grid-column-end: 11; } - .\32xl\:hover\:bg-gray-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .\32xl\:col-end-12 { + grid-column-end: 12; } - .\32xl\:hover\:bg-gray-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .\32xl\:col-end-13 { + grid-column-end: 13; } - .\32xl\:hover\:bg-gray-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .\32xl\:col-end-auto { + grid-column-end: auto; } - .\32xl\:hover\:bg-gray-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .\32xl\:row-auto { + grid-row: auto; } - .\32xl\:hover\:bg-gray-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .\32xl\:row-span-1 { + grid-row: span 1 / span 1; } - .\32xl\:hover\:bg-gray-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .\32xl\:row-span-2 { + grid-row: span 2 / span 2; } - .\32xl\:hover\:bg-gray-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .\32xl\:row-span-3 { + grid-row: span 3 / span 3; } - .\32xl\:hover\:bg-red-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .\32xl\:row-span-4 { + grid-row: span 4 / span 4; } - .\32xl\:hover\:bg-red-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .\32xl\:row-span-5 { + grid-row: span 5 / span 5; } - .\32xl\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .\32xl\:row-span-6 { + grid-row: span 6 / span 6; } - .\32xl\:hover\:bg-red-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .\32xl\:row-span-full { + grid-row: 1 / -1; } - .\32xl\:hover\:bg-red-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .\32xl\:row-start-1 { + grid-row-start: 1; } - .\32xl\:hover\:bg-red-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .\32xl\:row-start-2 { + grid-row-start: 2; } - .\32xl\:hover\:bg-red-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .\32xl\:row-start-3 { + grid-row-start: 3; } - .\32xl\:hover\:bg-red-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .\32xl\:row-start-4 { + grid-row-start: 4; } - .\32xl\:hover\:bg-red-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .\32xl\:row-start-5 { + grid-row-start: 5; } - .\32xl\:hover\:bg-red-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .\32xl\:row-start-6 { + grid-row-start: 6; } - .\32xl\:hover\:bg-yellow-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .\32xl\:row-start-7 { + grid-row-start: 7; } - .\32xl\:hover\:bg-yellow-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .\32xl\:row-start-auto { + grid-row-start: auto; } - .\32xl\:hover\:bg-yellow-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .\32xl\:row-end-1 { + grid-row-end: 1; } - .\32xl\:hover\:bg-yellow-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .\32xl\:row-end-2 { + grid-row-end: 2; } - .\32xl\:hover\:bg-yellow-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .\32xl\:row-end-3 { + grid-row-end: 3; } - .\32xl\:hover\:bg-yellow-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .\32xl\:row-end-4 { + grid-row-end: 4; } - .\32xl\:hover\:bg-yellow-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .\32xl\:row-end-5 { + grid-row-end: 5; } - .\32xl\:hover\:bg-yellow-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .\32xl\:row-end-6 { + grid-row-end: 6; } - .\32xl\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .\32xl\:row-end-7 { + grid-row-end: 7; } - .\32xl\:hover\:bg-yellow-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .\32xl\:row-end-auto { + grid-row-end: auto; } - .\32xl\:hover\:bg-green-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .\32xl\:float-right { + float: right; } - .\32xl\:hover\:bg-green-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .\32xl\:float-left { + float: left; } - .\32xl\:hover\:bg-green-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .\32xl\:float-none { + float: none; } - .\32xl\:hover\:bg-green-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .\32xl\:clear-left { + clear: left; } - .\32xl\:hover\:bg-green-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .\32xl\:clear-right { + clear: right; } - .\32xl\:hover\:bg-green-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .\32xl\:clear-both { + clear: both; } - .\32xl\:hover\:bg-green-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .\32xl\:clear-none { + clear: none; } - .\32xl\:hover\:bg-green-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .\32xl\:m-0 { + margin: 0px; } - .\32xl\:hover\:bg-green-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .\32xl\:m-1 { + margin: 0.25rem; } - .\32xl\:hover\:bg-green-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .\32xl\:m-2 { + margin: 0.5rem; } - .\32xl\:hover\:bg-blue-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .\32xl\:m-3 { + margin: 0.75rem; } - .\32xl\:hover\:bg-blue-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .\32xl\:m-4 { + margin: 1rem; } - .\32xl\:hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .\32xl\:m-5 { + margin: 1.25rem; } - .\32xl\:hover\:bg-blue-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .\32xl\:m-6 { + margin: 1.5rem; } - .\32xl\:hover\:bg-blue-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .\32xl\:m-7 { + margin: 1.75rem; } - .\32xl\:hover\:bg-blue-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .\32xl\:m-8 { + margin: 2rem; } - .\32xl\:hover\:bg-blue-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .\32xl\:m-9 { + margin: 2.25rem; } - .\32xl\:hover\:bg-blue-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .\32xl\:m-10 { + margin: 2.5rem; } - .\32xl\:hover\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .\32xl\:m-11 { + margin: 2.75rem; } - .\32xl\:hover\:bg-blue-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .\32xl\:m-12 { + margin: 3rem; } - .\32xl\:hover\:bg-indigo-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .\32xl\:m-14 { + margin: 3.5rem; } - .\32xl\:hover\:bg-indigo-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .\32xl\:m-16 { + margin: 4rem; } - .\32xl\:hover\:bg-indigo-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .\32xl\:m-20 { + margin: 5rem; } - .\32xl\:hover\:bg-indigo-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .\32xl\:m-24 { + margin: 6rem; } - .\32xl\:hover\:bg-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .\32xl\:m-28 { + margin: 7rem; } - .\32xl\:hover\:bg-indigo-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .\32xl\:m-32 { + margin: 8rem; } - .\32xl\:hover\:bg-indigo-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .\32xl\:m-36 { + margin: 9rem; } - .\32xl\:hover\:bg-indigo-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .\32xl\:m-40 { + margin: 10rem; } - .\32xl\:hover\:bg-indigo-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .\32xl\:m-44 { + margin: 11rem; } - .\32xl\:hover\:bg-indigo-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .\32xl\:m-48 { + margin: 12rem; } - .\32xl\:hover\:bg-purple-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .\32xl\:m-52 { + margin: 13rem; } - .\32xl\:hover\:bg-purple-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .\32xl\:m-56 { + margin: 14rem; } - .\32xl\:hover\:bg-purple-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .\32xl\:m-60 { + margin: 15rem; } - .\32xl\:hover\:bg-purple-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .\32xl\:m-64 { + margin: 16rem; } - .\32xl\:hover\:bg-purple-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .\32xl\:m-72 { + margin: 18rem; } - .\32xl\:hover\:bg-purple-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .\32xl\:m-80 { + margin: 20rem; } - .\32xl\:hover\:bg-purple-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .\32xl\:m-96 { + margin: 24rem; } - .\32xl\:hover\:bg-purple-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .\32xl\:m-auto { + margin: auto; } - .\32xl\:hover\:bg-purple-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .\32xl\:m-px { + margin: 1px; } - .\32xl\:hover\:bg-purple-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .\32xl\:m-0\.5 { + margin: 0.125rem; } - .\32xl\:hover\:bg-pink-50:hover { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .\32xl\:m-1\.5 { + margin: 0.375rem; } - .\32xl\:hover\:bg-pink-100:hover { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .\32xl\:m-2\.5 { + margin: 0.625rem; } - .\32xl\:hover\:bg-pink-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .\32xl\:m-3\.5 { + margin: 0.875rem; } - .\32xl\:hover\:bg-pink-300:hover { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .\32xl\:-m-0 { + margin: 0px; } - .\32xl\:hover\:bg-pink-400:hover { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .\32xl\:-m-1 { + margin: -0.25rem; } - .\32xl\:hover\:bg-pink-500:hover { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .\32xl\:-m-2 { + margin: -0.5rem; } - .\32xl\:hover\:bg-pink-600:hover { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .\32xl\:-m-3 { + margin: -0.75rem; } - .\32xl\:hover\:bg-pink-700:hover { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .\32xl\:-m-4 { + margin: -1rem; } - .\32xl\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .\32xl\:-m-5 { + margin: -1.25rem; } - .\32xl\:hover\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .\32xl\:-m-6 { + margin: -1.5rem; } - .\32xl\:focus\:bg-transparent:focus { - background-color: transparent; + .\32xl\:-m-7 { + margin: -1.75rem; } - .\32xl\:focus\:bg-current:focus { - background-color: currentColor; + .\32xl\:-m-8 { + margin: -2rem; } - .\32xl\:focus\:bg-black:focus { - --tw-bg-opacity: 1; - background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + .\32xl\:-m-9 { + margin: -2.25rem; } - .\32xl\:focus\:bg-white:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + .\32xl\:-m-10 { + margin: -2.5rem; } - .\32xl\:focus\:bg-gray-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + .\32xl\:-m-11 { + margin: -2.75rem; } - .\32xl\:focus\:bg-gray-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + .\32xl\:-m-12 { + margin: -3rem; } - .\32xl\:focus\:bg-gray-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + .\32xl\:-m-14 { + margin: -3.5rem; } - .\32xl\:focus\:bg-gray-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + .\32xl\:-m-16 { + margin: -4rem; } - .\32xl\:focus\:bg-gray-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + .\32xl\:-m-20 { + margin: -5rem; } - .\32xl\:focus\:bg-gray-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + .\32xl\:-m-24 { + margin: -6rem; } - .\32xl\:focus\:bg-gray-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + .\32xl\:-m-28 { + margin: -7rem; } - .\32xl\:focus\:bg-gray-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + .\32xl\:-m-32 { + margin: -8rem; } - .\32xl\:focus\:bg-gray-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + .\32xl\:-m-36 { + margin: -9rem; } - .\32xl\:focus\:bg-gray-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + .\32xl\:-m-40 { + margin: -10rem; } - .\32xl\:focus\:bg-red-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); + .\32xl\:-m-44 { + margin: -11rem; } - .\32xl\:focus\:bg-red-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); + .\32xl\:-m-48 { + margin: -12rem; } - .\32xl\:focus\:bg-red-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); + .\32xl\:-m-52 { + margin: -13rem; } - .\32xl\:focus\:bg-red-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); + .\32xl\:-m-56 { + margin: -14rem; } - .\32xl\:focus\:bg-red-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); + .\32xl\:-m-60 { + margin: -15rem; } - .\32xl\:focus\:bg-red-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); + .\32xl\:-m-64 { + margin: -16rem; } - .\32xl\:focus\:bg-red-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); + .\32xl\:-m-72 { + margin: -18rem; } - .\32xl\:focus\:bg-red-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); + .\32xl\:-m-80 { + margin: -20rem; } - .\32xl\:focus\:bg-red-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); + .\32xl\:-m-96 { + margin: -24rem; } - .\32xl\:focus\:bg-red-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); + .\32xl\:-m-px { + margin: -1px; } - .\32xl\:focus\:bg-yellow-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); + .\32xl\:-m-0\.5 { + margin: -0.125rem; } - .\32xl\:focus\:bg-yellow-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); + .\32xl\:-m-1\.5 { + margin: -0.375rem; } - .\32xl\:focus\:bg-yellow-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); + .\32xl\:-m-2\.5 { + margin: -0.625rem; } - .\32xl\:focus\:bg-yellow-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); + .\32xl\:-m-3\.5 { + margin: -0.875rem; } - .\32xl\:focus\:bg-yellow-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); + .\32xl\:mx-0 { + margin-left: 0px; + margin-right: 0px; } - .\32xl\:focus\:bg-yellow-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + .\32xl\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; } - .\32xl\:focus\:bg-yellow-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); + .\32xl\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; } - .\32xl\:focus\:bg-yellow-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); + .\32xl\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; } - .\32xl\:focus\:bg-yellow-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); + .\32xl\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; } - .\32xl\:focus\:bg-yellow-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); + .\32xl\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; } - .\32xl\:focus\:bg-green-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); + .\32xl\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; } - .\32xl\:focus\:bg-green-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); + .\32xl\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; } - .\32xl\:focus\:bg-green-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); + .\32xl\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; } - .\32xl\:focus\:bg-green-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); + .\32xl\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; } - .\32xl\:focus\:bg-green-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); + .\32xl\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; } - .\32xl\:focus\:bg-green-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); + .\32xl\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; } - .\32xl\:focus\:bg-green-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); + .\32xl\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; } - .\32xl\:focus\:bg-green-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); + .\32xl\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; } - .\32xl\:focus\:bg-green-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); + .\32xl\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; } - .\32xl\:focus\:bg-green-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); + .\32xl\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; } - .\32xl\:focus\:bg-blue-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); + .\32xl\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; } - .\32xl\:focus\:bg-blue-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); + .\32xl\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; } - .\32xl\:focus\:bg-blue-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); + .\32xl\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; } - .\32xl\:focus\:bg-blue-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); + .\32xl\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; } - .\32xl\:focus\:bg-blue-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); + .\32xl\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; } - .\32xl\:focus\:bg-blue-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + .\32xl\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; } - .\32xl\:focus\:bg-blue-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); + .\32xl\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; } - .\32xl\:focus\:bg-blue-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); + .\32xl\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; } - .\32xl\:focus\:bg-blue-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); + .\32xl\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; } - .\32xl\:focus\:bg-blue-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); + .\32xl\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; } - .\32xl\:focus\:bg-indigo-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); + .\32xl\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; } - .\32xl\:focus\:bg-indigo-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); + .\32xl\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; } - .\32xl\:focus\:bg-indigo-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); + .\32xl\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; } - .\32xl\:focus\:bg-indigo-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); + .\32xl\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; } - .\32xl\:focus\:bg-indigo-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); + .\32xl\:mx-auto { + margin-left: auto; + margin-right: auto; } - .\32xl\:focus\:bg-indigo-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); + .\32xl\:mx-px { + margin-left: 1px; + margin-right: 1px; } - .\32xl\:focus\:bg-indigo-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); + .\32xl\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; } - .\32xl\:focus\:bg-indigo-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); + .\32xl\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; } - .\32xl\:focus\:bg-indigo-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); + .\32xl\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; } - .\32xl\:focus\:bg-indigo-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); + .\32xl\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; } - .\32xl\:focus\:bg-purple-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); + .\32xl\:-mx-0 { + margin-left: 0px; + margin-right: 0px; } - .\32xl\:focus\:bg-purple-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); + .\32xl\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; } - .\32xl\:focus\:bg-purple-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); + .\32xl\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; } - .\32xl\:focus\:bg-purple-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); + .\32xl\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; } - .\32xl\:focus\:bg-purple-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); + .\32xl\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; } - .\32xl\:focus\:bg-purple-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); + .\32xl\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; } - .\32xl\:focus\:bg-purple-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); + .\32xl\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; } - .\32xl\:focus\:bg-purple-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); + .\32xl\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; } - .\32xl\:focus\:bg-purple-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); + .\32xl\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; } - .\32xl\:focus\:bg-purple-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); + .\32xl\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; } - .\32xl\:focus\:bg-pink-50:focus { - --tw-bg-opacity: 1; - background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); + .\32xl\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; } - .\32xl\:focus\:bg-pink-100:focus { - --tw-bg-opacity: 1; - background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); + .\32xl\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; } - .\32xl\:focus\:bg-pink-200:focus { - --tw-bg-opacity: 1; - background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); + .\32xl\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; } - .\32xl\:focus\:bg-pink-300:focus { - --tw-bg-opacity: 1; - background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); + .\32xl\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; } - .\32xl\:focus\:bg-pink-400:focus { - --tw-bg-opacity: 1; - background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); + .\32xl\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; } - .\32xl\:focus\:bg-pink-500:focus { - --tw-bg-opacity: 1; - background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); + .\32xl\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; } - .\32xl\:focus\:bg-pink-600:focus { - --tw-bg-opacity: 1; - background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); + .\32xl\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; } - .\32xl\:focus\:bg-pink-700:focus { - --tw-bg-opacity: 1; - background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); + .\32xl\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; } - .\32xl\:focus\:bg-pink-800:focus { - --tw-bg-opacity: 1; - background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); + .\32xl\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; } - .\32xl\:focus\:bg-pink-900:focus { - --tw-bg-opacity: 1; - background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); + .\32xl\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; } - .\32xl\:bg-none { - background-image: none; + .\32xl\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; } - .\32xl\:bg-gradient-to-t { - background-image: linear-gradient(to top, var(--tw-gradient-stops)); + .\32xl\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; } - .\32xl\:bg-gradient-to-tr { - background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + .\32xl\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; } - .\32xl\:bg-gradient-to-r { - background-image: linear-gradient(to right, var(--tw-gradient-stops)); + .\32xl\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; } - .\32xl\:bg-gradient-to-br { - background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + .\32xl\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; } - .\32xl\:bg-gradient-to-b { - background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + .\32xl\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; } - .\32xl\:bg-gradient-to-bl { - background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + .\32xl\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; } - .\32xl\:bg-gradient-to-l { - background-image: linear-gradient(to left, var(--tw-gradient-stops)); + .\32xl\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; } - .\32xl\:bg-gradient-to-tl { - background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + .\32xl\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; } - .\32xl\:from-transparent { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; } - .\32xl\:from-current { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:-mx-px { + margin-left: -1px; + margin-right: -1px; } - .\32xl\:from-black { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; } - .\32xl\:from-white { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; } - .\32xl\:from-gray-50 { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; } - .\32xl\:from-gray-100 { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; } - .\32xl\:from-gray-200 { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .\32xl\:from-gray-300 { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; } - .\32xl\:from-gray-400 { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; } - .\32xl\:from-gray-500 { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; } - .\32xl\:from-gray-600 { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; } - .\32xl\:from-gray-700 { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; } - .\32xl\:from-gray-800 { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; } - .\32xl\:from-gray-900 { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; } - .\32xl\:from-red-50 { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; } - .\32xl\:from-red-100 { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; } - .\32xl\:from-red-200 { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; } - .\32xl\:from-red-300 { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; } - .\32xl\:from-red-400 { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; } - .\32xl\:from-red-500 { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; } - .\32xl\:from-red-600 { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; } - .\32xl\:from-red-700 { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; } - .\32xl\:from-red-800 { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; } - .\32xl\:from-red-900 { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; } - .\32xl\:from-yellow-50 { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; } - .\32xl\:from-yellow-100 { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; } - .\32xl\:from-yellow-200 { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; } - .\32xl\:from-yellow-300 { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; } - .\32xl\:from-yellow-400 { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; } - .\32xl\:from-yellow-500 { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; } - .\32xl\:from-yellow-600 { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; } - .\32xl\:from-yellow-700 { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; } - .\32xl\:from-yellow-800 { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; } - .\32xl\:from-yellow-900 { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; } - .\32xl\:from-green-50 { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; } - .\32xl\:from-green-100 { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; } - .\32xl\:from-green-200 { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:my-auto { + margin-top: auto; + margin-bottom: auto; } - .\32xl\:from-green-300 { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; } - .\32xl\:from-green-400 { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; } - .\32xl\:from-green-500 { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; } - .\32xl\:from-green-600 { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; } - .\32xl\:from-green-700 { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; } - .\32xl\:from-green-800 { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; } - .\32xl\:from-green-900 { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; } - .\32xl\:from-blue-50 { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; } - .\32xl\:from-blue-100 { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; } - .\32xl\:from-blue-200 { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; } - .\32xl\:from-blue-300 { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; } - .\32xl\:from-blue-400 { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; } - .\32xl\:from-blue-500 { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; } - .\32xl\:from-blue-600 { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; } - .\32xl\:from-blue-700 { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; } - .\32xl\:from-blue-800 { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; } - .\32xl\:from-blue-900 { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; } - .\32xl\:from-indigo-50 { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; } - .\32xl\:from-indigo-100 { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; } - .\32xl\:from-indigo-200 { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; } - .\32xl\:from-indigo-300 { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; } - .\32xl\:from-indigo-400 { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; } - .\32xl\:from-indigo-500 { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; } - .\32xl\:from-indigo-600 { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; } - .\32xl\:from-indigo-700 { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; } - .\32xl\:from-indigo-800 { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; } - .\32xl\:from-indigo-900 { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; } - .\32xl\:from-purple-50 { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; } - .\32xl\:from-purple-100 { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; } - .\32xl\:from-purple-200 { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; } - .\32xl\:from-purple-300 { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; } - .\32xl\:from-purple-400 { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; } - .\32xl\:from-purple-500 { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; } - .\32xl\:from-purple-600 { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; } - .\32xl\:from-purple-700 { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; } - .\32xl\:from-purple-800 { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; } - .\32xl\:from-purple-900 { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; } - .\32xl\:from-pink-50 { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; } - .\32xl\:from-pink-100 { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; } - .\32xl\:from-pink-200 { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; } - .\32xl\:from-pink-300 { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:mt-0 { + margin-top: 0px; } - .\32xl\:from-pink-400 { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:mt-1 { + margin-top: 0.25rem; } - .\32xl\:from-pink-500 { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:mt-2 { + margin-top: 0.5rem; } - .\32xl\:from-pink-600 { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:mt-3 { + margin-top: 0.75rem; } - .\32xl\:from-pink-700 { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:mt-4 { + margin-top: 1rem; } - .\32xl\:from-pink-800 { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:mt-5 { + margin-top: 1.25rem; } - .\32xl\:from-pink-900 { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:mt-6 { + margin-top: 1.5rem; } - .\32xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:mt-7 { + margin-top: 1.75rem; } - .\32xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:mt-8 { + margin-top: 2rem; } - .\32xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:mt-9 { + margin-top: 2.25rem; } - .\32xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:mt-10 { + margin-top: 2.5rem; } - .\32xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:mt-11 { + margin-top: 2.75rem; } - .\32xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:mt-12 { + margin-top: 3rem; } - .\32xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:mt-14 { + margin-top: 3.5rem; } - .\32xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:mt-16 { + margin-top: 4rem; } - .\32xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:mt-20 { + margin-top: 5rem; } - .\32xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:mt-24 { + margin-top: 6rem; } - .\32xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:mt-28 { + margin-top: 7rem; } - .\32xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:mt-32 { + margin-top: 8rem; } - .\32xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:mt-36 { + margin-top: 9rem; } - .\32xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:mt-40 { + margin-top: 10rem; } - .\32xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:mt-44 { + margin-top: 11rem; } - .\32xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:mt-48 { + margin-top: 12rem; } - .\32xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:mt-52 { + margin-top: 13rem; } - .\32xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:mt-56 { + margin-top: 14rem; } - .\32xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:mt-60 { + margin-top: 15rem; } - .\32xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:mt-64 { + margin-top: 16rem; } - .\32xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:mt-72 { + margin-top: 18rem; } - .\32xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:mt-80 { + margin-top: 20rem; } - .\32xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:mt-96 { + margin-top: 24rem; } - .\32xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:mt-auto { + margin-top: auto; } - .\32xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:mt-px { + margin-top: 1px; } - .\32xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:mt-0\.5 { + margin-top: 0.125rem; } - .\32xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:mt-1\.5 { + margin-top: 0.375rem; } - .\32xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:mt-2\.5 { + margin-top: 0.625rem; } - .\32xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:mt-3\.5 { + margin-top: 0.875rem; } - .\32xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:-mt-0 { + margin-top: 0px; } - .\32xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:-mt-1 { + margin-top: -0.25rem; } - .\32xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:-mt-2 { + margin-top: -0.5rem; } - .\32xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:-mt-3 { + margin-top: -0.75rem; } - .\32xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:-mt-4 { + margin-top: -1rem; } - .\32xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:-mt-5 { + margin-top: -1.25rem; } - .\32xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:-mt-6 { + margin-top: -1.5rem; } - .\32xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:-mt-7 { + margin-top: -1.75rem; } - .\32xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:-mt-8 { + margin-top: -2rem; } - .\32xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:-mt-9 { + margin-top: -2.25rem; } - .\32xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:-mt-10 { + margin-top: -2.5rem; } - .\32xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:-mt-11 { + margin-top: -2.75rem; } - .\32xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:-mt-12 { + margin-top: -3rem; } - .\32xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:-mt-14 { + margin-top: -3.5rem; } - .\32xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:-mt-16 { + margin-top: -4rem; } - .\32xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:-mt-20 { + margin-top: -5rem; } - .\32xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:-mt-24 { + margin-top: -6rem; } - .\32xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:-mt-28 { + margin-top: -7rem; } - .\32xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:-mt-32 { + margin-top: -8rem; } - .\32xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:-mt-36 { + margin-top: -9rem; } - .\32xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:-mt-40 { + margin-top: -10rem; } - .\32xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:-mt-44 { + margin-top: -11rem; } - .\32xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:-mt-48 { + margin-top: -12rem; } - .\32xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:-mt-52 { + margin-top: -13rem; } - .\32xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:-mt-56 { + margin-top: -14rem; } - .\32xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:-mt-60 { + margin-top: -15rem; } - .\32xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:-mt-64 { + margin-top: -16rem; } - .\32xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:-mt-72 { + margin-top: -18rem; } - .\32xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:-mt-80 { + margin-top: -20rem; } - .\32xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:-mt-96 { + margin-top: -24rem; } - .\32xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:-mt-px { + margin-top: -1px; } - .\32xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:-mt-0\.5 { + margin-top: -0.125rem; } - .\32xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:-mt-1\.5 { + margin-top: -0.375rem; } - .\32xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:-mt-2\.5 { + margin-top: -0.625rem; } - .\32xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:-mt-3\.5 { + margin-top: -0.875rem; } - .\32xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:mr-0 { + margin-right: 0px; } - .\32xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:mr-1 { + margin-right: 0.25rem; } - .\32xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:mr-2 { + margin-right: 0.5rem; } - .\32xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:mr-3 { + margin-right: 0.75rem; } - .\32xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:mr-4 { + margin-right: 1rem; } - .\32xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:mr-5 { + margin-right: 1.25rem; } - .\32xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:mr-6 { + margin-right: 1.5rem; } - .\32xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:mr-7 { + margin-right: 1.75rem; } - .\32xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:mr-8 { + margin-right: 2rem; } - .\32xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:mr-9 { + margin-right: 2.25rem; } - .\32xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:mr-10 { + margin-right: 2.5rem; } - .\32xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:mr-11 { + margin-right: 2.75rem; } - .\32xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:mr-12 { + margin-right: 3rem; } - .\32xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:mr-14 { + margin-right: 3.5rem; } - .\32xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:mr-16 { + margin-right: 4rem; } - .\32xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:mr-20 { + margin-right: 5rem; } - .\32xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:mr-24 { + margin-right: 6rem; } - .\32xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:mr-28 { + margin-right: 7rem; } - .\32xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:mr-32 { + margin-right: 8rem; } - .\32xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:mr-36 { + margin-right: 9rem; } - .\32xl\:to-transparent { - --tw-gradient-to: transparent; + .\32xl\:mr-40 { + margin-right: 10rem; } - .\32xl\:to-current { - --tw-gradient-to: currentColor; + .\32xl\:mr-44 { + margin-right: 11rem; } - .\32xl\:to-black { - --tw-gradient-to: #000; + .\32xl\:mr-48 { + margin-right: 12rem; } - .\32xl\:to-white { - --tw-gradient-to: #fff; + .\32xl\:mr-52 { + margin-right: 13rem; } - .\32xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .\32xl\:mr-56 { + margin-right: 14rem; } - .\32xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .\32xl\:mr-60 { + margin-right: 15rem; } - .\32xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .\32xl\:mr-64 { + margin-right: 16rem; } - .\32xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .\32xl\:mr-72 { + margin-right: 18rem; } - .\32xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .\32xl\:mr-80 { + margin-right: 20rem; } - .\32xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .\32xl\:mr-96 { + margin-right: 24rem; } - .\32xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .\32xl\:mr-auto { + margin-right: auto; } - .\32xl\:to-gray-700 { - --tw-gradient-to: #374151; + .\32xl\:mr-px { + margin-right: 1px; } - .\32xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .\32xl\:mr-0\.5 { + margin-right: 0.125rem; } - .\32xl\:to-gray-900 { - --tw-gradient-to: #111827; + .\32xl\:mr-1\.5 { + margin-right: 0.375rem; } - .\32xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .\32xl\:mr-2\.5 { + margin-right: 0.625rem; } - .\32xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .\32xl\:mr-3\.5 { + margin-right: 0.875rem; } - .\32xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .\32xl\:-mr-0 { + margin-right: 0px; } - .\32xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .\32xl\:-mr-1 { + margin-right: -0.25rem; } - .\32xl\:to-red-400 { - --tw-gradient-to: #f87171; + .\32xl\:-mr-2 { + margin-right: -0.5rem; } - .\32xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .\32xl\:-mr-3 { + margin-right: -0.75rem; } - .\32xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .\32xl\:-mr-4 { + margin-right: -1rem; } - .\32xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .\32xl\:-mr-5 { + margin-right: -1.25rem; } - .\32xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .\32xl\:-mr-6 { + margin-right: -1.5rem; } - .\32xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .\32xl\:-mr-7 { + margin-right: -1.75rem; } - .\32xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .\32xl\:-mr-8 { + margin-right: -2rem; } - .\32xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .\32xl\:-mr-9 { + margin-right: -2.25rem; } - .\32xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .\32xl\:-mr-10 { + margin-right: -2.5rem; } - .\32xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .\32xl\:-mr-11 { + margin-right: -2.75rem; } - .\32xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .\32xl\:-mr-12 { + margin-right: -3rem; } - .\32xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .\32xl\:-mr-14 { + margin-right: -3.5rem; } - .\32xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .\32xl\:-mr-16 { + margin-right: -4rem; } - .\32xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .\32xl\:-mr-20 { + margin-right: -5rem; } - .\32xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .\32xl\:-mr-24 { + margin-right: -6rem; } - .\32xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .\32xl\:-mr-28 { + margin-right: -7rem; } - .\32xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .\32xl\:-mr-32 { + margin-right: -8rem; } - .\32xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .\32xl\:-mr-36 { + margin-right: -9rem; } - .\32xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .\32xl\:-mr-40 { + margin-right: -10rem; } - .\32xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .\32xl\:-mr-44 { + margin-right: -11rem; } - .\32xl\:to-green-400 { - --tw-gradient-to: #34d399; + .\32xl\:-mr-48 { + margin-right: -12rem; } - .\32xl\:to-green-500 { - --tw-gradient-to: #10b981; + .\32xl\:-mr-52 { + margin-right: -13rem; } - .\32xl\:to-green-600 { - --tw-gradient-to: #059669; + .\32xl\:-mr-56 { + margin-right: -14rem; } - .\32xl\:to-green-700 { - --tw-gradient-to: #047857; + .\32xl\:-mr-60 { + margin-right: -15rem; } - .\32xl\:to-green-800 { - --tw-gradient-to: #065f46; + .\32xl\:-mr-64 { + margin-right: -16rem; } - .\32xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .\32xl\:-mr-72 { + margin-right: -18rem; } - .\32xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .\32xl\:-mr-80 { + margin-right: -20rem; } - .\32xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .\32xl\:-mr-96 { + margin-right: -24rem; } - .\32xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .\32xl\:-mr-px { + margin-right: -1px; } - .\32xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .\32xl\:-mr-0\.5 { + margin-right: -0.125rem; } - .\32xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .\32xl\:-mr-1\.5 { + margin-right: -0.375rem; } - .\32xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .\32xl\:-mr-2\.5 { + margin-right: -0.625rem; } - .\32xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .\32xl\:-mr-3\.5 { + margin-right: -0.875rem; } - .\32xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .\32xl\:mb-0 { + margin-bottom: 0px; } - .\32xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .\32xl\:mb-1 { + margin-bottom: 0.25rem; } - .\32xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .\32xl\:mb-2 { + margin-bottom: 0.5rem; } - .\32xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .\32xl\:mb-3 { + margin-bottom: 0.75rem; } - .\32xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .\32xl\:mb-4 { + margin-bottom: 1rem; } - .\32xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .\32xl\:mb-5 { + margin-bottom: 1.25rem; } - .\32xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .\32xl\:mb-6 { + margin-bottom: 1.5rem; } - .\32xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .\32xl\:mb-7 { + margin-bottom: 1.75rem; } - .\32xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .\32xl\:mb-8 { + margin-bottom: 2rem; } - .\32xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .\32xl\:mb-9 { + margin-bottom: 2.25rem; } - .\32xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .\32xl\:mb-10 { + margin-bottom: 2.5rem; } - .\32xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .\32xl\:mb-11 { + margin-bottom: 2.75rem; } - .\32xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .\32xl\:mb-12 { + margin-bottom: 3rem; } - .\32xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .\32xl\:mb-14 { + margin-bottom: 3.5rem; } - .\32xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .\32xl\:mb-16 { + margin-bottom: 4rem; } - .\32xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .\32xl\:mb-20 { + margin-bottom: 5rem; } - .\32xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .\32xl\:mb-24 { + margin-bottom: 6rem; } - .\32xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .\32xl\:mb-28 { + margin-bottom: 7rem; } - .\32xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .\32xl\:mb-32 { + margin-bottom: 8rem; } - .\32xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .\32xl\:mb-36 { + margin-bottom: 9rem; } - .\32xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .\32xl\:mb-40 { + margin-bottom: 10rem; } - .\32xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .\32xl\:mb-44 { + margin-bottom: 11rem; } - .\32xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .\32xl\:mb-48 { + margin-bottom: 12rem; } - .\32xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .\32xl\:mb-52 { + margin-bottom: 13rem; } - .\32xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .\32xl\:mb-56 { + margin-bottom: 14rem; } - .\32xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .\32xl\:mb-60 { + margin-bottom: 15rem; } - .\32xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .\32xl\:mb-64 { + margin-bottom: 16rem; } - .\32xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .\32xl\:mb-72 { + margin-bottom: 18rem; } - .\32xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .\32xl\:mb-80 { + margin-bottom: 20rem; } - .\32xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .\32xl\:mb-96 { + margin-bottom: 24rem; } - .\32xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .\32xl\:mb-auto { + margin-bottom: auto; } - .\32xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .\32xl\:mb-px { + margin-bottom: 1px; } - .\32xl\:to-pink-900 { - --tw-gradient-to: #831843; + .\32xl\:mb-0\.5 { + margin-bottom: 0.125rem; } - .\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\:mb-1\.5 { + margin-bottom: 0.375rem; } - .\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\:mb-2\.5 { + margin-bottom: 0.625rem; } - .\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\:mb-3\.5 { + margin-bottom: 0.875rem; } - .\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\:-mb-0 { + margin-bottom: 0px; } - .\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\:-mb-1 { + margin-bottom: -0.25rem; } - .\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\:-mb-2 { + margin-bottom: -0.5rem; } - .\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\:-mb-3 { + margin-bottom: -0.75rem; } - .\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\:-mb-4 { + margin-bottom: -1rem; } - .\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\:-mb-5 { + margin-bottom: -1.25rem; } - .\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\:-mb-6 { + margin-bottom: -1.5rem; } - .\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\:-mb-7 { + margin-bottom: -1.75rem; } - .\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\:-mb-8 { + margin-bottom: -2rem; } - .\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\:-mb-9 { + margin-bottom: -2.25rem; } - .\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\:-mb-10 { + margin-bottom: -2.5rem; } - .\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\:-mb-11 { + margin-bottom: -2.75rem; } - .\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\:-mb-12 { + margin-bottom: -3rem; } - .\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\:-mb-14 { + margin-bottom: -3.5rem; } - .\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\:-mb-16 { + margin-bottom: -4rem; } - .\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\:-mb-20 { + margin-bottom: -5rem; } - .\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\:-mb-24 { + margin-bottom: -6rem; } - .\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\:-mb-28 { + margin-bottom: -7rem; } - .\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\:-mb-32 { + margin-bottom: -8rem; } - .\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\:-mb-36 { + margin-bottom: -9rem; } - .\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\:-mb-40 { + margin-bottom: -10rem; } - .\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\:-mb-44 { + margin-bottom: -11rem; } - .\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\:-mb-48 { + margin-bottom: -12rem; } - .\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\:-mb-52 { + margin-bottom: -13rem; } - .\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\:-mb-56 { + margin-bottom: -14rem; } - .\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\:-mb-60 { + margin-bottom: -15rem; } - .\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\:-mb-64 { + margin-bottom: -16rem; } - .\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\:-mb-72 { + margin-bottom: -18rem; } - .\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\:-mb-80 { + margin-bottom: -20rem; } - .\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\:-mb-96 { + margin-bottom: -24rem; } - .\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\:-mb-px { + margin-bottom: -1px; } - .\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\:-mb-0\.5 { + margin-bottom: -0.125rem; } - .\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\:-mb-1\.5 { + margin-bottom: -0.375rem; } - .\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\:-mb-2\.5 { + margin-bottom: -0.625rem; } - .\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\:-mb-3\.5 { + margin-bottom: -0.875rem; } - .\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\:ml-0 { + margin-left: 0px; } - .\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\:ml-1 { + margin-left: 0.25rem; } - .\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\:ml-2 { + margin-left: 0.5rem; } - .\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\:ml-3 { + margin-left: 0.75rem; } - .\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\:ml-4 { + margin-left: 1rem; } - .\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\:ml-5 { + margin-left: 1.25rem; } - .\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\:ml-6 { + margin-left: 1.5rem; } - .\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\:ml-7 { + margin-left: 1.75rem; } - .\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\:ml-8 { + margin-left: 2rem; } - .\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\:ml-9 { + margin-left: 2.25rem; } - .\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\:ml-10 { + margin-left: 2.5rem; } - .\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\:ml-11 { + margin-left: 2.75rem; } - .\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\:ml-12 { + margin-left: 3rem; } - .\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\:ml-14 { + margin-left: 3.5rem; } - .\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\:ml-16 { + margin-left: 4rem; } - .\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\:ml-20 { + margin-left: 5rem; } - .\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\:ml-24 { + margin-left: 6rem; } - .\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\:ml-28 { + margin-left: 7rem; } - .\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\:ml-32 { + margin-left: 8rem; } - .\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\:ml-36 { + margin-left: 9rem; } - .\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\:ml-40 { + margin-left: 10rem; } - .\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\:ml-44 { + margin-left: 11rem; } - .\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\:ml-48 { + margin-left: 12rem; } - .\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\:ml-52 { + margin-left: 13rem; } - .\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\:ml-56 { + margin-left: 14rem; } - .\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\:ml-60 { + margin-left: 15rem; } - .\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\:ml-64 { + margin-left: 16rem; } - .\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\:ml-72 { + margin-left: 18rem; } - .\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\:ml-80 { + margin-left: 20rem; } - .\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\:ml-96 { + margin-left: 24rem; } - .\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\:ml-auto { + margin-left: auto; } - .\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\:ml-px { + margin-left: 1px; } - .\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\:ml-0\.5 { + margin-left: 0.125rem; } - .\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\:ml-1\.5 { + margin-left: 0.375rem; } - .\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\:ml-2\.5 { + margin-left: 0.625rem; } - .\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\:ml-3\.5 { + margin-left: 0.875rem; } - .\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\:-ml-0 { + margin-left: 0px; } - .\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\:-ml-1 { + margin-left: -0.25rem; } - .\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\:-ml-2 { + margin-left: -0.5rem; } - .\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\:-ml-3 { + margin-left: -0.75rem; } - .\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\:-ml-4 { + margin-left: -1rem; } - .\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\:-ml-5 { + margin-left: -1.25rem; } - .\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\:-ml-6 { + margin-left: -1.5rem; } - .\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\:-ml-7 { + margin-left: -1.75rem; } - .\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\:-ml-8 { + margin-left: -2rem; } - .\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\:-ml-9 { + margin-left: -2.25rem; } - .\32xl\:hover\:via-transparent:hover { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:-ml-10 { + margin-left: -2.5rem; } - .\32xl\:hover\:via-current:hover { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:-ml-11 { + margin-left: -2.75rem; } - .\32xl\:hover\:via-black:hover { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:-ml-12 { + margin-left: -3rem; } - .\32xl\:hover\:via-white:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:-ml-14 { + margin-left: -3.5rem; } - .\32xl\:hover\:via-gray-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:-ml-16 { + margin-left: -4rem; } - .\32xl\:hover\:via-gray-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:-ml-20 { + margin-left: -5rem; } - .\32xl\:hover\:via-gray-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:-ml-24 { + margin-left: -6rem; } - .\32xl\:hover\:via-gray-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:-ml-28 { + margin-left: -7rem; } - .\32xl\:hover\:via-gray-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:-ml-32 { + margin-left: -8rem; } - .\32xl\:hover\:via-gray-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:-ml-36 { + margin-left: -9rem; } - .\32xl\:hover\:via-gray-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:-ml-40 { + margin-left: -10rem; } - .\32xl\:hover\:via-gray-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:-ml-44 { + margin-left: -11rem; } - .\32xl\:hover\:via-gray-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:-ml-48 { + margin-left: -12rem; } - .\32xl\:hover\:via-gray-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:-ml-52 { + margin-left: -13rem; } - .\32xl\:hover\:via-red-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:-ml-56 { + margin-left: -14rem; } - .\32xl\:hover\:via-red-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:-ml-60 { + margin-left: -15rem; } - .\32xl\:hover\:via-red-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:-ml-64 { + margin-left: -16rem; } - .\32xl\:hover\:via-red-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:-ml-72 { + margin-left: -18rem; } - .\32xl\:hover\:via-red-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:-ml-80 { + margin-left: -20rem; } - .\32xl\:hover\:via-red-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:-ml-96 { + margin-left: -24rem; } - .\32xl\:hover\:via-red-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:-ml-px { + margin-left: -1px; } - .\32xl\:hover\:via-red-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:-ml-0\.5 { + margin-left: -0.125rem; } - .\32xl\:hover\:via-red-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:-ml-1\.5 { + margin-left: -0.375rem; } - .\32xl\:hover\:via-red-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:-ml-2\.5 { + margin-left: -0.625rem; } - .\32xl\:hover\:via-yellow-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:-ml-3\.5 { + margin-left: -0.875rem; } - .\32xl\:hover\:via-yellow-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:box-border { + box-sizing: border-box; } - .\32xl\:hover\:via-yellow-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:box-content { + box-sizing: content-box; } - .\32xl\:hover\:via-yellow-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:block { + display: block; } - .\32xl\:hover\:via-yellow-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:inline-block { + display: inline-block; } - .\32xl\:hover\:via-yellow-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:inline { + display: inline; } - .\32xl\:hover\:via-yellow-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:flex { + display: flex; } - .\32xl\:hover\:via-yellow-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:inline-flex { + display: inline-flex; } - .\32xl\:hover\:via-yellow-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:table { + display: table; } - .\32xl\:hover\:via-yellow-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:inline-table { + display: inline-table; } - .\32xl\:hover\:via-green-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:table-caption { + display: table-caption; } - .\32xl\:hover\:via-green-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:table-cell { + display: table-cell; } - .\32xl\:hover\:via-green-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:table-column { + display: table-column; } - .\32xl\:hover\:via-green-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:table-column-group { + display: table-column-group; } - .\32xl\:hover\:via-green-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:table-footer-group { + display: table-footer-group; } - .\32xl\:hover\:via-green-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:table-header-group { + display: table-header-group; } - .\32xl\:hover\:via-green-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:table-row-group { + display: table-row-group; } - .\32xl\:hover\:via-green-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:table-row { + display: table-row; } - .\32xl\:hover\:via-green-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:flow-root { + display: flow-root; } - .\32xl\:hover\:via-green-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:grid { + display: grid; } - .\32xl\:hover\:via-blue-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:inline-grid { + display: inline-grid; } - .\32xl\:hover\:via-blue-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:contents { + display: contents; } - .\32xl\:hover\:via-blue-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:list-item { + display: list-item; } - .\32xl\:hover\:via-blue-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:hidden { + display: none; } - .\32xl\:hover\:via-blue-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:h-0 { + height: 0px; } - .\32xl\:hover\:via-blue-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:h-1 { + height: 0.25rem; } - .\32xl\:hover\:via-blue-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:h-2 { + height: 0.5rem; } - .\32xl\:hover\:via-blue-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:h-3 { + height: 0.75rem; } - .\32xl\:hover\:via-blue-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:h-4 { + height: 1rem; } - .\32xl\:hover\:via-blue-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:h-5 { + height: 1.25rem; } - .\32xl\:hover\:via-indigo-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:h-6 { + height: 1.5rem; } - .\32xl\:hover\:via-indigo-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:h-7 { + height: 1.75rem; } - .\32xl\:hover\:via-indigo-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:h-8 { + height: 2rem; } - .\32xl\:hover\:via-indigo-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:h-9 { + height: 2.25rem; } - .\32xl\:hover\:via-indigo-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:h-10 { + height: 2.5rem; } - .\32xl\:hover\:via-indigo-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:h-11 { + height: 2.75rem; } - .\32xl\:hover\:via-indigo-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:h-12 { + height: 3rem; } - .\32xl\:hover\:via-indigo-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:h-14 { + height: 3.5rem; } - .\32xl\:hover\:via-indigo-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:h-16 { + height: 4rem; } - .\32xl\:hover\:via-indigo-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:h-20 { + height: 5rem; } - .\32xl\:hover\:via-purple-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:h-24 { + height: 6rem; } - .\32xl\:hover\:via-purple-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:h-28 { + height: 7rem; } - .\32xl\:hover\:via-purple-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:h-32 { + height: 8rem; } - .\32xl\:hover\:via-purple-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:h-36 { + height: 9rem; } - .\32xl\:hover\:via-purple-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:h-40 { + height: 10rem; } - .\32xl\:hover\:via-purple-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:h-44 { + height: 11rem; } - .\32xl\:hover\:via-purple-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:h-48 { + height: 12rem; } - .\32xl\:hover\:via-purple-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:h-52 { + height: 13rem; } - .\32xl\:hover\:via-purple-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:h-56 { + height: 14rem; } - .\32xl\:hover\:via-purple-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:h-60 { + height: 15rem; } - .\32xl\:hover\:via-pink-50:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:h-64 { + height: 16rem; } - .\32xl\:hover\:via-pink-100:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:h-72 { + height: 18rem; } - .\32xl\:hover\:via-pink-200:hover { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:h-80 { + height: 20rem; } - .\32xl\:hover\:via-pink-300:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:h-96 { + height: 24rem; } - .\32xl\:hover\:via-pink-400:hover { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:h-auto { + height: auto; } - .\32xl\:hover\:via-pink-500:hover { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:h-px { + height: 1px; } - .\32xl\:hover\:via-pink-600:hover { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:h-0\.5 { + height: 0.125rem; } - .\32xl\:hover\:via-pink-700:hover { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:h-1\.5 { + height: 0.375rem; } - .\32xl\:hover\:via-pink-800:hover { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:h-2\.5 { + height: 0.625rem; } - .\32xl\:hover\:via-pink-900:hover { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:h-3\.5 { + height: 0.875rem; } - .\32xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; + .\32xl\:h-1\/2 { + height: 50%; } - .\32xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; + .\32xl\:h-1\/3 { + height: 33.333333%; } - .\32xl\:hover\:to-black:hover { - --tw-gradient-to: #000; + .\32xl\:h-2\/3 { + height: 66.666667%; } - .\32xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; + .\32xl\:h-1\/4 { + height: 25%; } - .\32xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; + .\32xl\:h-2\/4 { + height: 50%; } - .\32xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; + .\32xl\:h-3\/4 { + height: 75%; } - .\32xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; + .\32xl\:h-1\/5 { + height: 20%; } - .\32xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; + .\32xl\:h-2\/5 { + height: 40%; } - .\32xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; + .\32xl\:h-3\/5 { + height: 60%; } - .\32xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; + .\32xl\:h-4\/5 { + height: 80%; } - .\32xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; + .\32xl\:h-1\/6 { + height: 16.666667%; } - .\32xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; + .\32xl\:h-2\/6 { + height: 33.333333%; } - .\32xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; + .\32xl\:h-3\/6 { + height: 50%; } - .\32xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; + .\32xl\:h-4\/6 { + height: 66.666667%; } - .\32xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; + .\32xl\:h-5\/6 { + height: 83.333333%; } - .\32xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; + .\32xl\:h-full { + height: 100%; } - .\32xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; + .\32xl\:h-screen { + height: 100vh; } - .\32xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; + .\32xl\:max-h-0 { + max-height: 0px; } - .\32xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; + .\32xl\:max-h-1 { + max-height: 0.25rem; } - .\32xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; + .\32xl\:max-h-2 { + max-height: 0.5rem; } - .\32xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; + .\32xl\:max-h-3 { + max-height: 0.75rem; } - .\32xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; + .\32xl\:max-h-4 { + max-height: 1rem; } - .\32xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; + .\32xl\:max-h-5 { + max-height: 1.25rem; } - .\32xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; + .\32xl\:max-h-6 { + max-height: 1.5rem; } - .\32xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; + .\32xl\:max-h-7 { + max-height: 1.75rem; } - .\32xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; + .\32xl\:max-h-8 { + max-height: 2rem; } - .\32xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; + .\32xl\:max-h-9 { + max-height: 2.25rem; } - .\32xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; + .\32xl\:max-h-10 { + max-height: 2.5rem; } - .\32xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; + .\32xl\:max-h-11 { + max-height: 2.75rem; } - .\32xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; + .\32xl\:max-h-12 { + max-height: 3rem; } - .\32xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; + .\32xl\:max-h-14 { + max-height: 3.5rem; } - .\32xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; + .\32xl\:max-h-16 { + max-height: 4rem; } - .\32xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; + .\32xl\:max-h-20 { + max-height: 5rem; } - .\32xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; + .\32xl\:max-h-24 { + max-height: 6rem; } - .\32xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; + .\32xl\:max-h-28 { + max-height: 7rem; } - .\32xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; + .\32xl\:max-h-32 { + max-height: 8rem; } - .\32xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; + .\32xl\:max-h-36 { + max-height: 9rem; } - .\32xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; + .\32xl\:max-h-40 { + max-height: 10rem; } - .\32xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; + .\32xl\:max-h-44 { + max-height: 11rem; } - .\32xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; + .\32xl\:max-h-48 { + max-height: 12rem; } - .\32xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; + .\32xl\:max-h-52 { + max-height: 13rem; } - .\32xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; + .\32xl\:max-h-56 { + max-height: 14rem; } - .\32xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; + .\32xl\:max-h-60 { + max-height: 15rem; } - .\32xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; + .\32xl\:max-h-64 { + max-height: 16rem; } - .\32xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; + .\32xl\:max-h-72 { + max-height: 18rem; } - .\32xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; + .\32xl\:max-h-80 { + max-height: 20rem; } - .\32xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; + .\32xl\:max-h-96 { + max-height: 24rem; } - .\32xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; + .\32xl\:max-h-px { + max-height: 1px; } - .\32xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; + .\32xl\:max-h-0\.5 { + max-height: 0.125rem; } - .\32xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; + .\32xl\:max-h-1\.5 { + max-height: 0.375rem; } - .\32xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; + .\32xl\:max-h-2\.5 { + max-height: 0.625rem; } - .\32xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; + .\32xl\:max-h-3\.5 { + max-height: 0.875rem; } - .\32xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; + .\32xl\:max-h-full { + max-height: 100%; } - .\32xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; + .\32xl\:max-h-screen { + max-height: 100vh; } - .\32xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; + .\32xl\:min-h-0 { + min-height: 0px; } - .\32xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; + .\32xl\:min-h-full { + min-height: 100%; } - .\32xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; + .\32xl\:min-h-screen { + min-height: 100vh; } - .\32xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; + .\32xl\:w-0 { + width: 0px; } - .\32xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; + .\32xl\:w-1 { + width: 0.25rem; } - .\32xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; + .\32xl\:w-2 { + width: 0.5rem; } - .\32xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; + .\32xl\:w-3 { + width: 0.75rem; } - .\32xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; + .\32xl\:w-4 { + width: 1rem; } - .\32xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; + .\32xl\:w-5 { + width: 1.25rem; } - .\32xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; + .\32xl\:w-6 { + width: 1.5rem; } - .\32xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; + .\32xl\:w-7 { + width: 1.75rem; } - .\32xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; + .\32xl\:w-8 { + width: 2rem; } - .\32xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; + .\32xl\:w-9 { + width: 2.25rem; } - .\32xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; + .\32xl\:w-10 { + width: 2.5rem; } - .\32xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; + .\32xl\:w-11 { + width: 2.75rem; } - .\32xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; + .\32xl\:w-12 { + width: 3rem; } - .\32xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; + .\32xl\:w-14 { + width: 3.5rem; } - .\32xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; + .\32xl\:w-16 { + width: 4rem; } - .\32xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; + .\32xl\:w-20 { + width: 5rem; } - .\32xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; + .\32xl\:w-24 { + width: 6rem; } - .\32xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; + .\32xl\:w-28 { + width: 7rem; } - .\32xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; + .\32xl\:w-32 { + width: 8rem; } - .\32xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; + .\32xl\:w-36 { + width: 9rem; } - .\32xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; + .\32xl\:w-40 { + width: 10rem; } - .\32xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; + .\32xl\:w-44 { + width: 11rem; } - .\32xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; + .\32xl\:w-48 { + width: 12rem; } - .\32xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; + .\32xl\:w-52 { + width: 13rem; } - .\32xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; + .\32xl\:w-56 { + width: 14rem; } - .\32xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; + .\32xl\:w-60 { + width: 15rem; } - .\32xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; + .\32xl\:w-64 { + width: 16rem; } - .\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\:w-72 { + width: 18rem; } - .\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\:w-80 { + width: 20rem; } - .\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\:w-96 { + width: 24rem; } - .\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\:w-auto { + width: auto; } - .\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\:w-px { + width: 1px; } - .\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\:w-0\.5 { + width: 0.125rem; } - .\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\:w-1\.5 { + width: 0.375rem; } - .\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\:w-2\.5 { + width: 0.625rem; } - .\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\:w-3\.5 { + width: 0.875rem; } - .\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\:w-1\/2 { + width: 50%; } - .\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\:w-1\/3 { + width: 33.333333%; } - .\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\:w-2\/3 { + width: 66.666667%; } - .\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\:w-1\/4 { + width: 25%; } - .\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\:w-2\/4 { + width: 50%; } - .\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\:w-3\/4 { + width: 75%; } - .\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\:w-1\/5 { + width: 20%; } - .\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\:w-2\/5 { + width: 40%; } - .\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\:w-3\/5 { + width: 60%; } - .\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\:w-4\/5 { + width: 80%; } - .\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\:w-1\/6 { + width: 16.666667%; } - .\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\:w-2\/6 { + width: 33.333333%; } - .\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\:w-3\/6 { + width: 50%; } - .\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\:w-4\/6 { + width: 66.666667%; } - .\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\:w-5\/6 { + width: 83.333333%; } - .\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\:w-1\/12 { + width: 8.333333%; } - .\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\:w-2\/12 { + width: 16.666667%; } - .\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\:w-3\/12 { + width: 25%; } - .\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\:w-4\/12 { + width: 33.333333%; } - .\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\:w-5\/12 { + width: 41.666667%; } - .\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\:w-6\/12 { + width: 50%; } - .\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\:w-7\/12 { + width: 58.333333%; } - .\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\:w-8\/12 { + width: 66.666667%; } - .\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\:w-9\/12 { + width: 75%; } - .\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\:w-10\/12 { + width: 83.333333%; } - .\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\:w-11\/12 { + width: 91.666667%; } - .\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\:w-full { + width: 100%; } - .\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\:w-screen { + width: 100vw; } - .\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\:w-min { + width: min-content; } - .\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\:w-max { + width: max-content; } - .\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\:min-w-0 { + min-width: 0px; } - .\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\:min-w-full { + min-width: 100%; } - .\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\:min-w-min { + min-width: min-content; } - .\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\:min-w-max { + min-width: max-content; } - .\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\:max-w-0 { + max-width: 0rem; } - .\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\:max-w-none { + max-width: none; } - .\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\:max-w-xs { + max-width: 20rem; } - .\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\:max-w-sm { + max-width: 24rem; } - .\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\:max-w-md { + max-width: 28rem; } - .\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\:max-w-lg { + max-width: 32rem; } - .\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\:max-w-xl { + max-width: 36rem; } - .\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\:max-w-2xl { + max-width: 42rem; } - .\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\:max-w-3xl { + max-width: 48rem; } - .\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\:max-w-4xl { + max-width: 56rem; } - .\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\:max-w-5xl { + max-width: 64rem; } - .\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\:max-w-6xl { + max-width: 72rem; } - .\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\:max-w-7xl { + max-width: 80rem; } - .\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\:max-w-full { + max-width: 100%; } - .\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\:max-w-min { + max-width: min-content; } - .\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\:max-w-max { + max-width: max-content; } - .\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\:max-w-prose { + max-width: 65ch; } - .\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\:max-w-screen-sm { + max-width: 640px; } - .\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\:max-w-screen-md { + max-width: 768px; } - .\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\:max-w-screen-lg { + max-width: 1024px; } - .\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\:max-w-screen-xl { + max-width: 1280px; } - .\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\:max-w-screen-2xl { + max-width: 1536px; } - .\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\:flex-1 { + flex: 1 1 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\:flex-auto { + flex: 1 1 auto; } - .\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\:flex-initial { + flex: 0 1 auto; } - .\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\:flex-none { + flex: none; } - .\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\:flex-shrink-0 { + flex-shrink: 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\:flex-shrink { + flex-shrink: 1; } - .\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\:flex-grow-0 { + flex-grow: 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\:flex-grow { + flex-grow: 1; } - .\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\:table-auto { + table-layout: auto; } - .\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\:table-fixed { + table-layout: fixed; } - .\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\:border-collapse { + border-collapse: collapse; } - .\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\:border-separate { + border-collapse: separate; } - .\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\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .\32xl\: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\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } - .\32xl\: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\:transform-none { + transform: none; } - .\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\:origin-center { + transform-origin: center; } - .\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\:origin-top { + transform-origin: top; } - .\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\:origin-top-right { + transform-origin: top right; } - .\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\:origin-right { + transform-origin: right; } - .\32xl\:focus\:via-transparent:focus { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:origin-bottom-right { + transform-origin: bottom right; } - .\32xl\:focus\:via-current:focus { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:origin-bottom { + transform-origin: bottom; } - .\32xl\:focus\:via-black:focus { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:origin-bottom-left { + transform-origin: bottom left; } - .\32xl\:focus\:via-white:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:origin-left { + transform-origin: left; } - .\32xl\:focus\:via-gray-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:origin-top-left { + transform-origin: top left; } - .\32xl\:focus\:via-gray-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:translate-x-0 { + --tw-translate-x: 0px; } - .\32xl\:focus\:via-gray-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:translate-x-1 { + --tw-translate-x: 0.25rem; } - .\32xl\:focus\:via-gray-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:translate-x-2 { + --tw-translate-x: 0.5rem; } - .\32xl\:focus\:via-gray-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:translate-x-3 { + --tw-translate-x: 0.75rem; } - .\32xl\:focus\:via-gray-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:translate-x-4 { + --tw-translate-x: 1rem; } - .\32xl\:focus\:via-gray-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:translate-x-5 { + --tw-translate-x: 1.25rem; } - .\32xl\:focus\:via-gray-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:translate-x-6 { + --tw-translate-x: 1.5rem; } - .\32xl\:focus\:via-gray-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:translate-x-7 { + --tw-translate-x: 1.75rem; } - .\32xl\:focus\:via-gray-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:translate-x-8 { + --tw-translate-x: 2rem; } - .\32xl\:focus\:via-red-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:translate-x-9 { + --tw-translate-x: 2.25rem; } - .\32xl\:focus\:via-red-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:translate-x-10 { + --tw-translate-x: 2.5rem; } - .\32xl\:focus\:via-red-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:translate-x-11 { + --tw-translate-x: 2.75rem; } - .\32xl\:focus\:via-red-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:translate-x-12 { + --tw-translate-x: 3rem; } - .\32xl\:focus\:via-red-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:translate-x-14 { + --tw-translate-x: 3.5rem; } - .\32xl\:focus\:via-red-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:translate-x-16 { + --tw-translate-x: 4rem; } - .\32xl\:focus\:via-red-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:translate-x-20 { + --tw-translate-x: 5rem; } - .\32xl\:focus\:via-red-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:translate-x-24 { + --tw-translate-x: 6rem; } - .\32xl\:focus\:via-red-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:translate-x-28 { + --tw-translate-x: 7rem; } - .\32xl\:focus\:via-red-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:translate-x-32 { + --tw-translate-x: 8rem; } - .\32xl\:focus\:via-yellow-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:translate-x-36 { + --tw-translate-x: 9rem; } - .\32xl\:focus\:via-yellow-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:translate-x-40 { + --tw-translate-x: 10rem; } - .\32xl\:focus\:via-yellow-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:translate-x-44 { + --tw-translate-x: 11rem; } - .\32xl\:focus\:via-yellow-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:translate-x-48 { + --tw-translate-x: 12rem; } - .\32xl\:focus\:via-yellow-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:translate-x-52 { + --tw-translate-x: 13rem; } - .\32xl\:focus\:via-yellow-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:translate-x-56 { + --tw-translate-x: 14rem; } - .\32xl\:focus\:via-yellow-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:translate-x-60 { + --tw-translate-x: 15rem; } - .\32xl\:focus\:via-yellow-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:translate-x-64 { + --tw-translate-x: 16rem; } - .\32xl\:focus\:via-yellow-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:translate-x-72 { + --tw-translate-x: 18rem; } - .\32xl\:focus\:via-yellow-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:translate-x-80 { + --tw-translate-x: 20rem; } - .\32xl\:focus\:via-green-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:translate-x-96 { + --tw-translate-x: 24rem; } - .\32xl\:focus\:via-green-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:translate-x-px { + --tw-translate-x: 1px; } - .\32xl\:focus\:via-green-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; } - .\32xl\:focus\:via-green-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; } - .\32xl\:focus\:via-green-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; } - .\32xl\:focus\:via-green-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; } - .\32xl\:focus\:via-green-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:-translate-x-0 { + --tw-translate-x: 0px; } - .\32xl\:focus\:via-green-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:-translate-x-1 { + --tw-translate-x: -0.25rem; } - .\32xl\:focus\:via-green-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:-translate-x-2 { + --tw-translate-x: -0.5rem; } - .\32xl\:focus\:via-green-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:-translate-x-3 { + --tw-translate-x: -0.75rem; } - .\32xl\:focus\:via-blue-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:-translate-x-4 { + --tw-translate-x: -1rem; } - .\32xl\:focus\:via-blue-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:-translate-x-5 { + --tw-translate-x: -1.25rem; } - .\32xl\:focus\:via-blue-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:-translate-x-6 { + --tw-translate-x: -1.5rem; } - .\32xl\:focus\:via-blue-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:-translate-x-7 { + --tw-translate-x: -1.75rem; } - .\32xl\:focus\:via-blue-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:-translate-x-8 { + --tw-translate-x: -2rem; } - .\32xl\:focus\:via-blue-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:-translate-x-9 { + --tw-translate-x: -2.25rem; } - .\32xl\:focus\:via-blue-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:-translate-x-10 { + --tw-translate-x: -2.5rem; } - .\32xl\:focus\:via-blue-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:-translate-x-11 { + --tw-translate-x: -2.75rem; } - .\32xl\:focus\:via-blue-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:-translate-x-12 { + --tw-translate-x: -3rem; } - .\32xl\:focus\:via-blue-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:-translate-x-14 { + --tw-translate-x: -3.5rem; } - .\32xl\:focus\:via-indigo-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:-translate-x-16 { + --tw-translate-x: -4rem; } - .\32xl\:focus\:via-indigo-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:-translate-x-20 { + --tw-translate-x: -5rem; } - .\32xl\:focus\:via-indigo-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:-translate-x-24 { + --tw-translate-x: -6rem; } - .\32xl\:focus\:via-indigo-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:-translate-x-28 { + --tw-translate-x: -7rem; } - .\32xl\:focus\:via-indigo-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:-translate-x-32 { + --tw-translate-x: -8rem; } - .\32xl\:focus\:via-indigo-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:-translate-x-36 { + --tw-translate-x: -9rem; } - .\32xl\:focus\:via-indigo-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:-translate-x-40 { + --tw-translate-x: -10rem; } - .\32xl\:focus\:via-indigo-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:-translate-x-44 { + --tw-translate-x: -11rem; } - .\32xl\:focus\:via-indigo-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:-translate-x-48 { + --tw-translate-x: -12rem; } - .\32xl\:focus\:via-indigo-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:-translate-x-52 { + --tw-translate-x: -13rem; } - .\32xl\:focus\:via-purple-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:-translate-x-56 { + --tw-translate-x: -14rem; } - .\32xl\:focus\:via-purple-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:-translate-x-60 { + --tw-translate-x: -15rem; } - .\32xl\:focus\:via-purple-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:-translate-x-64 { + --tw-translate-x: -16rem; } - .\32xl\:focus\:via-purple-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:-translate-x-72 { + --tw-translate-x: -18rem; } - .\32xl\:focus\:via-purple-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:-translate-x-80 { + --tw-translate-x: -20rem; } - .\32xl\:focus\:via-purple-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:-translate-x-96 { + --tw-translate-x: -24rem; } - .\32xl\:focus\:via-purple-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:-translate-x-px { + --tw-translate-x: -1px; } - .\32xl\:focus\:via-purple-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; } - .\32xl\:focus\:via-purple-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; } - .\32xl\:focus\:via-purple-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; } - .\32xl\:focus\:via-pink-50:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; } - .\32xl\:focus\:via-pink-100:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:translate-x-1\/2 { + --tw-translate-x: 50%; } - .\32xl\:focus\:via-pink-200:focus { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; } - .\32xl\:focus\:via-pink-300:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; } - .\32xl\:focus\:via-pink-400:focus { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:translate-x-1\/4 { + --tw-translate-x: 25%; } - .\32xl\:focus\:via-pink-500:focus { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:translate-x-2\/4 { + --tw-translate-x: 50%; } - .\32xl\:focus\:via-pink-600:focus { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:translate-x-3\/4 { + --tw-translate-x: 75%; } - .\32xl\:focus\:via-pink-700:focus { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:translate-x-full { + --tw-translate-x: 100%; } - .\32xl\:focus\:via-pink-800:focus { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:-translate-x-1\/2 { + --tw-translate-x: -50%; } - .\32xl\:focus\:via-pink-900:focus { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; } - .\32xl\:focus\:to-transparent:focus { - --tw-gradient-to: transparent; + .\32xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; } - .\32xl\:focus\:to-current:focus { - --tw-gradient-to: currentColor; + .\32xl\:-translate-x-1\/4 { + --tw-translate-x: -25%; } - .\32xl\:focus\:to-black:focus { - --tw-gradient-to: #000; + .\32xl\:-translate-x-2\/4 { + --tw-translate-x: -50%; } - .\32xl\:focus\:to-white:focus { - --tw-gradient-to: #fff; + .\32xl\:-translate-x-3\/4 { + --tw-translate-x: -75%; } - .\32xl\:focus\:to-gray-50:focus { - --tw-gradient-to: #f9fafb; + .\32xl\:-translate-x-full { + --tw-translate-x: -100%; } - .\32xl\:focus\:to-gray-100:focus { - --tw-gradient-to: #f3f4f6; + .\32xl\:translate-y-0 { + --tw-translate-y: 0px; } - .\32xl\:focus\:to-gray-200:focus { - --tw-gradient-to: #e5e7eb; + .\32xl\:translate-y-1 { + --tw-translate-y: 0.25rem; } - .\32xl\:focus\:to-gray-300:focus { - --tw-gradient-to: #d1d5db; + .\32xl\:translate-y-2 { + --tw-translate-y: 0.5rem; } - .\32xl\:focus\:to-gray-400:focus { - --tw-gradient-to: #9ca3af; + .\32xl\:translate-y-3 { + --tw-translate-y: 0.75rem; } - .\32xl\:focus\:to-gray-500:focus { - --tw-gradient-to: #6b7280; + .\32xl\:translate-y-4 { + --tw-translate-y: 1rem; } - .\32xl\:focus\:to-gray-600:focus { - --tw-gradient-to: #4b5563; + .\32xl\:translate-y-5 { + --tw-translate-y: 1.25rem; } - .\32xl\:focus\:to-gray-700:focus { - --tw-gradient-to: #374151; + .\32xl\:translate-y-6 { + --tw-translate-y: 1.5rem; } - .\32xl\:focus\:to-gray-800:focus { - --tw-gradient-to: #1f2937; + .\32xl\:translate-y-7 { + --tw-translate-y: 1.75rem; } - .\32xl\:focus\:to-gray-900:focus { - --tw-gradient-to: #111827; + .\32xl\:translate-y-8 { + --tw-translate-y: 2rem; } - .\32xl\:focus\:to-red-50:focus { - --tw-gradient-to: #fef2f2; + .\32xl\:translate-y-9 { + --tw-translate-y: 2.25rem; } - .\32xl\:focus\:to-red-100:focus { - --tw-gradient-to: #fee2e2; + .\32xl\:translate-y-10 { + --tw-translate-y: 2.5rem; } - .\32xl\:focus\:to-red-200:focus { - --tw-gradient-to: #fecaca; + .\32xl\:translate-y-11 { + --tw-translate-y: 2.75rem; } - .\32xl\:focus\:to-red-300:focus { - --tw-gradient-to: #fca5a5; + .\32xl\:translate-y-12 { + --tw-translate-y: 3rem; } - .\32xl\:focus\:to-red-400:focus { - --tw-gradient-to: #f87171; + .\32xl\:translate-y-14 { + --tw-translate-y: 3.5rem; } - .\32xl\:focus\:to-red-500:focus { - --tw-gradient-to: #ef4444; + .\32xl\:translate-y-16 { + --tw-translate-y: 4rem; } - .\32xl\:focus\:to-red-600:focus { - --tw-gradient-to: #dc2626; + .\32xl\:translate-y-20 { + --tw-translate-y: 5rem; } - .\32xl\:focus\:to-red-700:focus { - --tw-gradient-to: #b91c1c; + .\32xl\:translate-y-24 { + --tw-translate-y: 6rem; } - .\32xl\:focus\:to-red-800:focus { - --tw-gradient-to: #991b1b; + .\32xl\:translate-y-28 { + --tw-translate-y: 7rem; } - .\32xl\:focus\:to-red-900:focus { - --tw-gradient-to: #7f1d1d; + .\32xl\:translate-y-32 { + --tw-translate-y: 8rem; } - .\32xl\:focus\:to-yellow-50:focus { - --tw-gradient-to: #fffbeb; + .\32xl\:translate-y-36 { + --tw-translate-y: 9rem; } - .\32xl\:focus\:to-yellow-100:focus { - --tw-gradient-to: #fef3c7; + .\32xl\:translate-y-40 { + --tw-translate-y: 10rem; } - .\32xl\:focus\:to-yellow-200:focus { - --tw-gradient-to: #fde68a; + .\32xl\:translate-y-44 { + --tw-translate-y: 11rem; } - .\32xl\:focus\:to-yellow-300:focus { - --tw-gradient-to: #fcd34d; + .\32xl\:translate-y-48 { + --tw-translate-y: 12rem; } - .\32xl\:focus\:to-yellow-400:focus { - --tw-gradient-to: #fbbf24; + .\32xl\:translate-y-52 { + --tw-translate-y: 13rem; } - .\32xl\:focus\:to-yellow-500:focus { - --tw-gradient-to: #f59e0b; + .\32xl\:translate-y-56 { + --tw-translate-y: 14rem; } - .\32xl\:focus\:to-yellow-600:focus { - --tw-gradient-to: #d97706; + .\32xl\:translate-y-60 { + --tw-translate-y: 15rem; } - .\32xl\:focus\:to-yellow-700:focus { - --tw-gradient-to: #b45309; + .\32xl\:translate-y-64 { + --tw-translate-y: 16rem; } - .\32xl\:focus\:to-yellow-800:focus { - --tw-gradient-to: #92400e; + .\32xl\:translate-y-72 { + --tw-translate-y: 18rem; } - .\32xl\:focus\:to-yellow-900:focus { - --tw-gradient-to: #78350f; + .\32xl\:translate-y-80 { + --tw-translate-y: 20rem; } - .\32xl\:focus\:to-green-50:focus { - --tw-gradient-to: #ecfdf5; + .\32xl\:translate-y-96 { + --tw-translate-y: 24rem; } - .\32xl\:focus\:to-green-100:focus { - --tw-gradient-to: #d1fae5; + .\32xl\:translate-y-px { + --tw-translate-y: 1px; } - .\32xl\:focus\:to-green-200:focus { - --tw-gradient-to: #a7f3d0; + .\32xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; } - .\32xl\:focus\:to-green-300:focus { - --tw-gradient-to: #6ee7b7; + .\32xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; } - .\32xl\:focus\:to-green-400:focus { - --tw-gradient-to: #34d399; + .\32xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; } - .\32xl\:focus\:to-green-500:focus { - --tw-gradient-to: #10b981; + .\32xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; } - .\32xl\:focus\:to-green-600:focus { - --tw-gradient-to: #059669; + .\32xl\:-translate-y-0 { + --tw-translate-y: 0px; } - .\32xl\:focus\:to-green-700:focus { - --tw-gradient-to: #047857; + .\32xl\:-translate-y-1 { + --tw-translate-y: -0.25rem; } - .\32xl\:focus\:to-green-800:focus { - --tw-gradient-to: #065f46; + .\32xl\:-translate-y-2 { + --tw-translate-y: -0.5rem; } - .\32xl\:focus\:to-green-900:focus { - --tw-gradient-to: #064e3b; + .\32xl\:-translate-y-3 { + --tw-translate-y: -0.75rem; } - .\32xl\:focus\:to-blue-50:focus { - --tw-gradient-to: #eff6ff; + .\32xl\:-translate-y-4 { + --tw-translate-y: -1rem; } - .\32xl\:focus\:to-blue-100:focus { - --tw-gradient-to: #dbeafe; + .\32xl\:-translate-y-5 { + --tw-translate-y: -1.25rem; } - .\32xl\:focus\:to-blue-200:focus { - --tw-gradient-to: #bfdbfe; + .\32xl\:-translate-y-6 { + --tw-translate-y: -1.5rem; } - .\32xl\:focus\:to-blue-300:focus { - --tw-gradient-to: #93c5fd; + .\32xl\:-translate-y-7 { + --tw-translate-y: -1.75rem; } - .\32xl\:focus\:to-blue-400:focus { - --tw-gradient-to: #60a5fa; + .\32xl\:-translate-y-8 { + --tw-translate-y: -2rem; } - .\32xl\:focus\:to-blue-500:focus { - --tw-gradient-to: #3b82f6; + .\32xl\:-translate-y-9 { + --tw-translate-y: -2.25rem; } - .\32xl\:focus\:to-blue-600:focus { - --tw-gradient-to: #2563eb; + .\32xl\:-translate-y-10 { + --tw-translate-y: -2.5rem; } - .\32xl\:focus\:to-blue-700:focus { - --tw-gradient-to: #1d4ed8; + .\32xl\:-translate-y-11 { + --tw-translate-y: -2.75rem; } - .\32xl\:focus\:to-blue-800:focus { - --tw-gradient-to: #1e40af; + .\32xl\:-translate-y-12 { + --tw-translate-y: -3rem; } - .\32xl\:focus\:to-blue-900:focus { - --tw-gradient-to: #1e3a8a; + .\32xl\:-translate-y-14 { + --tw-translate-y: -3.5rem; } - .\32xl\:focus\:to-indigo-50:focus { - --tw-gradient-to: #eef2ff; + .\32xl\:-translate-y-16 { + --tw-translate-y: -4rem; } - .\32xl\:focus\:to-indigo-100:focus { - --tw-gradient-to: #e0e7ff; + .\32xl\:-translate-y-20 { + --tw-translate-y: -5rem; } - .\32xl\:focus\:to-indigo-200:focus { - --tw-gradient-to: #c7d2fe; + .\32xl\:-translate-y-24 { + --tw-translate-y: -6rem; } - .\32xl\:focus\:to-indigo-300:focus { - --tw-gradient-to: #a5b4fc; + .\32xl\:-translate-y-28 { + --tw-translate-y: -7rem; } - .\32xl\:focus\:to-indigo-400:focus { - --tw-gradient-to: #818cf8; + .\32xl\:-translate-y-32 { + --tw-translate-y: -8rem; } - .\32xl\:focus\:to-indigo-500:focus { - --tw-gradient-to: #6366f1; + .\32xl\:-translate-y-36 { + --tw-translate-y: -9rem; } - .\32xl\:focus\:to-indigo-600:focus { - --tw-gradient-to: #4f46e5; + .\32xl\:-translate-y-40 { + --tw-translate-y: -10rem; } - .\32xl\:focus\:to-indigo-700:focus { - --tw-gradient-to: #4338ca; + .\32xl\:-translate-y-44 { + --tw-translate-y: -11rem; } - .\32xl\:focus\:to-indigo-800:focus { - --tw-gradient-to: #3730a3; + .\32xl\:-translate-y-48 { + --tw-translate-y: -12rem; } - .\32xl\:focus\:to-indigo-900:focus { - --tw-gradient-to: #312e81; + .\32xl\:-translate-y-52 { + --tw-translate-y: -13rem; } - .\32xl\:focus\:to-purple-50:focus { - --tw-gradient-to: #f5f3ff; + .\32xl\:-translate-y-56 { + --tw-translate-y: -14rem; } - .\32xl\:focus\:to-purple-100:focus { - --tw-gradient-to: #ede9fe; + .\32xl\:-translate-y-60 { + --tw-translate-y: -15rem; } - .\32xl\:focus\:to-purple-200:focus { - --tw-gradient-to: #ddd6fe; + .\32xl\:-translate-y-64 { + --tw-translate-y: -16rem; } - .\32xl\:focus\:to-purple-300:focus { - --tw-gradient-to: #c4b5fd; + .\32xl\:-translate-y-72 { + --tw-translate-y: -18rem; } - .\32xl\:focus\:to-purple-400:focus { - --tw-gradient-to: #a78bfa; + .\32xl\:-translate-y-80 { + --tw-translate-y: -20rem; } - .\32xl\:focus\:to-purple-500:focus { - --tw-gradient-to: #8b5cf6; + .\32xl\:-translate-y-96 { + --tw-translate-y: -24rem; } - .\32xl\:focus\:to-purple-600:focus { - --tw-gradient-to: #7c3aed; + .\32xl\:-translate-y-px { + --tw-translate-y: -1px; } - .\32xl\:focus\:to-purple-700:focus { - --tw-gradient-to: #6d28d9; + .\32xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; } - .\32xl\:focus\:to-purple-800:focus { - --tw-gradient-to: #5b21b6; + .\32xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; } - .\32xl\:focus\:to-purple-900:focus { - --tw-gradient-to: #4c1d95; + .\32xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; } - .\32xl\:focus\:to-pink-50:focus { - --tw-gradient-to: #fdf2f8; + .\32xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; } - .\32xl\:focus\:to-pink-100:focus { - --tw-gradient-to: #fce7f3; + .\32xl\:translate-y-1\/2 { + --tw-translate-y: 50%; } - .\32xl\:focus\:to-pink-200:focus { - --tw-gradient-to: #fbcfe8; + .\32xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; } - .\32xl\:focus\:to-pink-300:focus { - --tw-gradient-to: #f9a8d4; + .\32xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; } - .\32xl\:focus\:to-pink-400:focus { - --tw-gradient-to: #f472b6; + .\32xl\:translate-y-1\/4 { + --tw-translate-y: 25%; } - .\32xl\:focus\:to-pink-500:focus { - --tw-gradient-to: #ec4899; + .\32xl\:translate-y-2\/4 { + --tw-translate-y: 50%; } - .\32xl\:focus\:to-pink-600:focus { - --tw-gradient-to: #db2777; + .\32xl\:translate-y-3\/4 { + --tw-translate-y: 75%; } - .\32xl\:focus\:to-pink-700:focus { - --tw-gradient-to: #be185d; + .\32xl\:translate-y-full { + --tw-translate-y: 100%; } - .\32xl\:focus\:to-pink-800:focus { - --tw-gradient-to: #9d174d; + .\32xl\:-translate-y-1\/2 { + --tw-translate-y: -50%; } - .\32xl\:focus\:to-pink-900:focus { - --tw-gradient-to: #831843; + .\32xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; } - .\32xl\:bg-opacity-0 { - --tw-bg-opacity: 0; + .\32xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; } - .\32xl\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .\32xl\:-translate-y-1\/4 { + --tw-translate-y: -25%; } - .\32xl\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .\32xl\:-translate-y-2\/4 { + --tw-translate-y: -50%; } - .\32xl\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .\32xl\:-translate-y-3\/4 { + --tw-translate-y: -75%; } - .\32xl\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .\32xl\:-translate-y-full { + --tw-translate-y: -100%; } - .\32xl\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .\32xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; } - .\32xl\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .\32xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; } - .\32xl\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .\32xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; } - .\32xl\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .\32xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; } - .\32xl\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .\32xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; } - .\32xl\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .\32xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; } - .\32xl\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .\32xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; } - .\32xl\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .\32xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; } - .\32xl\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .\32xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; } - .\32xl\:bg-opacity-100 { - --tw-bg-opacity: 1; + .\32xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-0 { - --tw-bg-opacity: 0; + .\32xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-5 { - --tw-bg-opacity: 0.05; + .\32xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-10 { - --tw-bg-opacity: 0.1; + .\32xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-20 { - --tw-bg-opacity: 0.2; + .\32xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-25 { - --tw-bg-opacity: 0.25; + .\32xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-30 { - --tw-bg-opacity: 0.3; + .\32xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-40 { - --tw-bg-opacity: 0.4; + .\32xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-50 { - --tw-bg-opacity: 0.5; + .\32xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-60 { - --tw-bg-opacity: 0.6; + .\32xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-70 { - --tw-bg-opacity: 0.7; + .\32xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-75 { - --tw-bg-opacity: 0.75; + .\32xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-80 { - --tw-bg-opacity: 0.8; + .\32xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-90 { - --tw-bg-opacity: 0.9; + .\32xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-95 { - --tw-bg-opacity: 0.95; + .\32xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; } - .group:hover .\32xl\:group-hover\:bg-opacity-100 { - --tw-bg-opacity: 1; + .\32xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; } - .\32xl\:focus-within\:bg-opacity-0:focus-within { - --tw-bg-opacity: 0; + .\32xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; } - .\32xl\:focus-within\:bg-opacity-5:focus-within { - --tw-bg-opacity: 0.05; + .\32xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; } - .\32xl\:focus-within\:bg-opacity-10:focus-within { - --tw-bg-opacity: 0.1; + .\32xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; } - .\32xl\:focus-within\:bg-opacity-20:focus-within { - --tw-bg-opacity: 0.2; + .\32xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; } - .\32xl\:focus-within\:bg-opacity-25:focus-within { - --tw-bg-opacity: 0.25; + .\32xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; } - .\32xl\:focus-within\:bg-opacity-30:focus-within { - --tw-bg-opacity: 0.3; + .\32xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; } - .\32xl\:focus-within\:bg-opacity-40:focus-within { - --tw-bg-opacity: 0.4; + .\32xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; } - .\32xl\:focus-within\:bg-opacity-50:focus-within { - --tw-bg-opacity: 0.5; + .\32xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; } - .\32xl\:focus-within\:bg-opacity-60:focus-within { - --tw-bg-opacity: 0.6; + .\32xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; } - .\32xl\:focus-within\:bg-opacity-70:focus-within { - --tw-bg-opacity: 0.7; + .\32xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; } - .\32xl\:focus-within\:bg-opacity-75:focus-within { - --tw-bg-opacity: 0.75; + .\32xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; } - .\32xl\:focus-within\:bg-opacity-80:focus-within { - --tw-bg-opacity: 0.8; + .\32xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; } - .\32xl\:focus-within\:bg-opacity-90:focus-within { - --tw-bg-opacity: 0.9; + .\32xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; } - .\32xl\:focus-within\:bg-opacity-95:focus-within { - --tw-bg-opacity: 0.95; + .\32xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; } - .\32xl\:focus-within\:bg-opacity-100:focus-within { - --tw-bg-opacity: 1; + .\32xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; } - .\32xl\:hover\:bg-opacity-0:hover { - --tw-bg-opacity: 0; + .\32xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; } - .\32xl\:hover\:bg-opacity-5:hover { - --tw-bg-opacity: 0.05; + .\32xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; } - .\32xl\:hover\:bg-opacity-10:hover { - --tw-bg-opacity: 0.1; + .\32xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; } - .\32xl\:hover\:bg-opacity-20:hover { - --tw-bg-opacity: 0.2; + .\32xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; } - .\32xl\:hover\:bg-opacity-25:hover { - --tw-bg-opacity: 0.25; + .\32xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; } - .\32xl\:hover\:bg-opacity-30:hover { - --tw-bg-opacity: 0.3; + .\32xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; } - .\32xl\:hover\:bg-opacity-40:hover { - --tw-bg-opacity: 0.4; + .\32xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; } - .\32xl\:hover\:bg-opacity-50:hover { - --tw-bg-opacity: 0.5; + .\32xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; } - .\32xl\:hover\:bg-opacity-60:hover { - --tw-bg-opacity: 0.6; + .\32xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; } - .\32xl\:hover\:bg-opacity-70:hover { - --tw-bg-opacity: 0.7; + .\32xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; } - .\32xl\:hover\:bg-opacity-75:hover { - --tw-bg-opacity: 0.75; + .\32xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; } - .\32xl\:hover\:bg-opacity-80:hover { - --tw-bg-opacity: 0.8; + .\32xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; } - .\32xl\:hover\:bg-opacity-90:hover { - --tw-bg-opacity: 0.9; + .\32xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; } - .\32xl\:hover\:bg-opacity-95:hover { - --tw-bg-opacity: 0.95; + .\32xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; } - .\32xl\:hover\:bg-opacity-100:hover { - --tw-bg-opacity: 1; + .\32xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; } - .\32xl\:focus\:bg-opacity-0:focus { - --tw-bg-opacity: 0; + .\32xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; } - .\32xl\:focus\:bg-opacity-5:focus { - --tw-bg-opacity: 0.05; + .\32xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; } - .\32xl\:focus\:bg-opacity-10:focus { - --tw-bg-opacity: 0.1; + .\32xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; } - .\32xl\:focus\:bg-opacity-20:focus { - --tw-bg-opacity: 0.2; + .\32xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; } - .\32xl\:focus\:bg-opacity-25:focus { - --tw-bg-opacity: 0.25; + .\32xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; } - .\32xl\:focus\:bg-opacity-30:focus { - --tw-bg-opacity: 0.3; + .\32xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; } - .\32xl\:focus\:bg-opacity-40:focus { - --tw-bg-opacity: 0.4; + .\32xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; } - .\32xl\:focus\:bg-opacity-50:focus { - --tw-bg-opacity: 0.5; + .\32xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; } - .\32xl\:focus\:bg-opacity-60:focus { - --tw-bg-opacity: 0.6; + .\32xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; } - .\32xl\:focus\:bg-opacity-70:focus { - --tw-bg-opacity: 0.7; + .\32xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; } - .\32xl\:focus\:bg-opacity-75:focus { - --tw-bg-opacity: 0.75; + .\32xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; } - .\32xl\:focus\:bg-opacity-80:focus { - --tw-bg-opacity: 0.8; + .\32xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; } - .\32xl\:focus\:bg-opacity-90:focus { - --tw-bg-opacity: 0.9; + .\32xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; } - .\32xl\:focus\:bg-opacity-95:focus { - --tw-bg-opacity: 0.95; + .\32xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; } - .\32xl\:focus\:bg-opacity-100:focus { - --tw-bg-opacity: 1; + .\32xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; } - .\32xl\:bg-bottom { - background-position: bottom; + .\32xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; } - .\32xl\:bg-center { - background-position: center; + .\32xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; } - .\32xl\:bg-left { - background-position: left; + .\32xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; } - .\32xl\:bg-left-bottom { - background-position: left bottom; + .\32xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; } - .\32xl\:bg-left-top { - background-position: left top; + .\32xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; } - .\32xl\:bg-right { - background-position: right; + .\32xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; } - .\32xl\:bg-right-bottom { - background-position: right bottom; + .\32xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; } - .\32xl\:bg-right-top { - background-position: right top; + .\32xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; } - .\32xl\:bg-top { - background-position: top; + .\32xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; } - .\32xl\:bg-repeat { - background-repeat: repeat; + .\32xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; } - .\32xl\:bg-no-repeat { - background-repeat: no-repeat; + .\32xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; } - .\32xl\:bg-repeat-x { - background-repeat: repeat-x; + .\32xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; } - .\32xl\:bg-repeat-y { - background-repeat: repeat-y; + .\32xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; } - .\32xl\:bg-repeat-round { - background-repeat: round; + .\32xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; } - .\32xl\:bg-repeat-space { - background-repeat: space; + .\32xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; } - .\32xl\:bg-auto { - background-size: auto; + .\32xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; } - .\32xl\:bg-cover { - background-size: cover; + .\32xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; } - .\32xl\:bg-contain { - background-size: contain; + .\32xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; } - .\32xl\:bg-origin-border { - background-origin: border-box; + .\32xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; } - .\32xl\:bg-origin-padding { - background-origin: padding-box; + .\32xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; } - .\32xl\:bg-origin-content { - background-origin: content-box; + .\32xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; } - .\32xl\:border-collapse { - border-collapse: collapse; + .\32xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; } - .\32xl\:border-separate { - border-collapse: separate; + .\32xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; } - .\32xl\:border-transparent { - border-color: transparent; + .\32xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; } - .\32xl\:border-current { - border-color: currentColor; + .\32xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; } - .\32xl\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; } - .\32xl\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; } - .\32xl\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; } - .\32xl\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; } - .\32xl\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; } - .\32xl\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; } - .\32xl\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; } - .\32xl\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; } - .\32xl\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; } - .\32xl\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; } - .\32xl\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; } - .\32xl\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; } - .\32xl\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; } - .\32xl\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; } - .\32xl\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; } - .\32xl\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; } - .\32xl\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; } - .\32xl\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; } - .\32xl\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; } - .\32xl\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; } - .\32xl\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; } - .\32xl\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; } - .\32xl\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; } - .\32xl\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; } - .\32xl\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; } - .\32xl\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; } - .\32xl\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; } - .\32xl\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; } - .\32xl\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; } - .\32xl\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; } - .\32xl\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; } - .\32xl\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; } - .\32xl\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; } - .\32xl\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; } - .\32xl\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; } - .\32xl\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; } - .\32xl\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; } - .\32xl\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; } - .\32xl\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; } - .\32xl\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; } - .\32xl\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; } - .\32xl\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; } - .\32xl\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; } - .\32xl\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; } - .\32xl\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; } - .\32xl\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; } - .\32xl\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; } - .\32xl\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; } - .\32xl\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; } - .\32xl\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; } - .\32xl\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; } - .\32xl\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; } - .\32xl\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; } - .\32xl\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; } - .\32xl\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; } - .\32xl\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; } - .\32xl\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; } - .\32xl\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; } - .\32xl\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; } - .\32xl\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; } - .\32xl\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; } - .\32xl\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; } - .\32xl\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; } - .\32xl\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; } - .\32xl\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; } - .\32xl\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .\32xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; } - .\32xl\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; } - .\32xl\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; } - .\32xl\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; } - .\32xl\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; } - .\32xl\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; } - .\32xl\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; } - .\32xl\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .\32xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; } - .\32xl\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; } - .\32xl\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; } - .\32xl\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; } - .\32xl\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; } - .\32xl\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; } - .\32xl\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; } - .\32xl\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; } - .\32xl\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; } - .\32xl\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; } - .group:hover .\32xl\:group-hover\:border-transparent { - border-color: transparent; + .\32xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; } - .group:hover .\32xl\:group-hover\:border-current { - border-color: currentColor; + .\32xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; } - .group:hover .\32xl\:group-hover\:border-black { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; } - .group:hover .\32xl\:group-hover\:border-white { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; } - .group:hover .\32xl\:group-hover\:border-gray-50 { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; } - .group:hover .\32xl\:group-hover\:border-gray-100 { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; } - .group:hover .\32xl\:group-hover\:border-gray-200 { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; } - .group:hover .\32xl\:group-hover\:border-gray-300 { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; } - .group:hover .\32xl\:group-hover\:border-gray-400 { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; } - .group:hover .\32xl\:group-hover\:border-gray-500 { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; } - .group:hover .\32xl\:group-hover\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; } - .group:hover .\32xl\:group-hover\:border-gray-700 { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; } - .group:hover .\32xl\:group-hover\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; } - .group:hover .\32xl\:group-hover\:border-gray-900 { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; } - .group:hover .\32xl\:group-hover\:border-red-50 { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; } - .group:hover .\32xl\:group-hover\:border-red-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; } - .group:hover .\32xl\:group-hover\:border-red-200 { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; } - .group:hover .\32xl\:group-hover\:border-red-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; } - .group:hover .\32xl\:group-hover\:border-red-400 { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; } - .group:hover .\32xl\:group-hover\:border-red-500 { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; } - .group:hover .\32xl\:group-hover\:border-red-600 { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; } - .group:hover .\32xl\:group-hover\:border-red-700 { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; } - .group:hover .\32xl\:group-hover\:border-red-800 { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; } - .group:hover .\32xl\:group-hover\:border-red-900 { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; } - .group:hover .\32xl\:group-hover\:border-yellow-50 { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; } - .group:hover .\32xl\:group-hover\:border-yellow-100 { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; } - .group:hover .\32xl\:group-hover\:border-yellow-200 { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; } - .group:hover .\32xl\:group-hover\:border-yellow-300 { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; } - .group:hover .\32xl\:group-hover\:border-yellow-400 { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; } - .group:hover .\32xl\:group-hover\:border-yellow-500 { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; } - .group:hover .\32xl\:group-hover\:border-yellow-600 { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; } - .group:hover .\32xl\:group-hover\:border-yellow-700 { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; } - .group:hover .\32xl\:group-hover\:border-yellow-800 { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; } - .group:hover .\32xl\:group-hover\:border-yellow-900 { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; } - .group:hover .\32xl\:group-hover\:border-green-50 { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; } - .group:hover .\32xl\:group-hover\:border-green-100 { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; } - - .group:hover .\32xl\:group-hover\:border-green-200 { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + + .\32xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; } - .group:hover .\32xl\:group-hover\:border-green-300 { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; } - .group:hover .\32xl\:group-hover\:border-green-400 { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; } - .group:hover .\32xl\:group-hover\:border-green-500 { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; } - .group:hover .\32xl\:group-hover\:border-green-600 { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; } - .group:hover .\32xl\:group-hover\:border-green-700 { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; } - .group:hover .\32xl\:group-hover\:border-green-800 { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; } - .group:hover .\32xl\:group-hover\:border-green-900 { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; } - .group:hover .\32xl\:group-hover\:border-blue-50 { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; } - .group:hover .\32xl\:group-hover\:border-blue-100 { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; } - .group:hover .\32xl\:group-hover\:border-blue-200 { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; } - .group:hover .\32xl\:group-hover\:border-blue-300 { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; } - .group:hover .\32xl\:group-hover\:border-blue-400 { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; } - .group:hover .\32xl\:group-hover\:border-blue-500 { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; } - .group:hover .\32xl\:group-hover\:border-blue-600 { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; } - .group:hover .\32xl\:group-hover\:border-blue-700 { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; } - .group:hover .\32xl\:group-hover\:border-blue-800 { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; } - .group:hover .\32xl\:group-hover\:border-blue-900 { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; } - .group:hover .\32xl\:group-hover\:border-indigo-50 { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; } - .group:hover .\32xl\:group-hover\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; } - .group:hover .\32xl\:group-hover\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; } - .group:hover .\32xl\:group-hover\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; } - .group:hover .\32xl\:group-hover\:border-indigo-400 { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; } - .group:hover .\32xl\:group-hover\:border-indigo-500 { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; } - .group:hover .\32xl\:group-hover\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; } - .group:hover .\32xl\:group-hover\:border-indigo-700 { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; } - .group:hover .\32xl\:group-hover\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; } - .group:hover .\32xl\:group-hover\:border-indigo-900 { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; } - .group:hover .\32xl\:group-hover\:border-purple-50 { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; } - .group:hover .\32xl\:group-hover\:border-purple-100 { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; } - .group:hover .\32xl\:group-hover\:border-purple-200 { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; } - .group:hover .\32xl\:group-hover\:border-purple-300 { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .\32xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; } - .group:hover .\32xl\:group-hover\:border-purple-400 { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; } - .group:hover .\32xl\:group-hover\:border-purple-500 { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; } - .group:hover .\32xl\:group-hover\:border-purple-600 { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; } - .group:hover .\32xl\:group-hover\:border-purple-700 { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; } - .group:hover .\32xl\:group-hover\:border-purple-800 { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; } - .group:hover .\32xl\:group-hover\:border-purple-900 { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; } - .group:hover .\32xl\:group-hover\:border-pink-50 { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; } - .group:hover .\32xl\:group-hover\:border-pink-100 { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; } - .group:hover .\32xl\:group-hover\:border-pink-200 { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; } - .group:hover .\32xl\:group-hover\:border-pink-300 { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; } - .group:hover .\32xl\:group-hover\:border-pink-400 { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; } - .group:hover .\32xl\:group-hover\:border-pink-500 { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; } - .group:hover .\32xl\:group-hover\:border-pink-600 { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; } - .group:hover .\32xl\:group-hover\:border-pink-700 { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; } - .group:hover .\32xl\:group-hover\:border-pink-800 { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; } - .group:hover .\32xl\:group-hover\:border-pink-900 { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; } - .\32xl\:focus-within\:border-transparent:focus-within { - border-color: transparent; + .\32xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; } - .\32xl\:focus-within\:border-current:focus-within { - border-color: currentColor; + .\32xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; } - .\32xl\:focus-within\:border-black:focus-within { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; } - .\32xl\:focus-within\:border-white:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; } - .\32xl\:focus-within\:border-gray-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; } - .\32xl\:focus-within\:border-gray-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; } - .\32xl\:focus-within\:border-gray-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; } - .\32xl\:focus-within\:border-gray-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; } - .\32xl\:focus-within\:border-gray-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; } - .\32xl\:focus-within\:border-gray-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; } - .\32xl\:focus-within\:border-gray-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; } - .\32xl\:focus-within\:border-gray-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; } - .\32xl\:focus-within\:border-gray-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; } - .\32xl\:focus-within\:border-gray-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; } - .\32xl\:focus-within\:border-red-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; } - .\32xl\:focus-within\:border-red-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; } - .\32xl\:focus-within\:border-red-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; } - .\32xl\:focus-within\:border-red-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; } - .\32xl\:focus-within\:border-red-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; } - .\32xl\:focus-within\:border-red-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; } - .\32xl\:focus-within\:border-red-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; } - .\32xl\:focus-within\:border-red-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; } - .\32xl\:focus-within\:border-red-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; } - .\32xl\:focus-within\:border-red-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; } - .\32xl\:focus-within\:border-yellow-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; } - .\32xl\:focus-within\:border-yellow-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; } - .\32xl\:focus-within\:border-yellow-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; } - .\32xl\:focus-within\:border-yellow-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; } - .\32xl\:focus-within\:border-yellow-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; } - .\32xl\:focus-within\:border-yellow-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; } - .\32xl\:focus-within\:border-yellow-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; } - .\32xl\:focus-within\:border-yellow-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; } - .\32xl\:focus-within\:border-yellow-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; } - .\32xl\:focus-within\:border-yellow-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; } - .\32xl\:focus-within\:border-green-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; } - .\32xl\:focus-within\:border-green-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; } - .\32xl\:focus-within\:border-green-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; } - .\32xl\:focus-within\:border-green-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; } - .\32xl\:focus-within\:border-green-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; } - .\32xl\:focus-within\:border-green-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; } - .\32xl\:focus-within\:border-green-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; } - .\32xl\:focus-within\:border-green-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; } - .\32xl\:focus-within\:border-green-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; } - .\32xl\:focus-within\:border-green-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; } - .\32xl\:focus-within\:border-blue-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; } - .\32xl\:focus-within\:border-blue-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; } - .\32xl\:focus-within\:border-blue-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; } - .\32xl\:focus-within\:border-blue-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; } - .\32xl\:focus-within\:border-blue-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; } - .\32xl\:focus-within\:border-blue-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; } - .\32xl\:focus-within\:border-blue-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; } - .\32xl\:focus-within\:border-blue-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; } - .\32xl\:focus-within\:border-blue-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; } - .\32xl\:focus-within\:border-blue-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; } - .\32xl\:focus-within\:border-indigo-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; } - .\32xl\:focus-within\:border-indigo-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; } - .\32xl\:focus-within\:border-indigo-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; } - .\32xl\:focus-within\:border-indigo-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; } - .\32xl\:focus-within\:border-indigo-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; } - .\32xl\:focus-within\:border-indigo-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; } - .\32xl\:focus-within\:border-indigo-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; } - .\32xl\:focus-within\:border-indigo-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; } - .\32xl\:focus-within\:border-indigo-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; } - .\32xl\:focus-within\:border-indigo-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; } - .\32xl\:focus-within\:border-purple-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; } - .\32xl\:focus-within\:border-purple-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; } - .\32xl\:focus-within\:border-purple-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; } - .\32xl\:focus-within\:border-purple-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .\32xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; } - .\32xl\:focus-within\:border-purple-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; } - .\32xl\:focus-within\:border-purple-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; } - .\32xl\:focus-within\:border-purple-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; } - .\32xl\:focus-within\:border-purple-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; } - .\32xl\:focus-within\:border-purple-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; } - .\32xl\:focus-within\:border-purple-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; } - .\32xl\:focus-within\:border-pink-50:focus-within { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .\32xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; } - .\32xl\:focus-within\:border-pink-100:focus-within { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .\32xl\:rotate-0 { + --tw-rotate: 0deg; } - .\32xl\:focus-within\:border-pink-200:focus-within { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .\32xl\:rotate-1 { + --tw-rotate: 1deg; } - .\32xl\:focus-within\:border-pink-300:focus-within { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .\32xl\:rotate-2 { + --tw-rotate: 2deg; } - .\32xl\:focus-within\:border-pink-400:focus-within { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .\32xl\:rotate-3 { + --tw-rotate: 3deg; } - .\32xl\:focus-within\:border-pink-500:focus-within { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .\32xl\:rotate-6 { + --tw-rotate: 6deg; } - .\32xl\:focus-within\:border-pink-600:focus-within { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .\32xl\:rotate-12 { + --tw-rotate: 12deg; } - .\32xl\:focus-within\:border-pink-700:focus-within { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .\32xl\:rotate-45 { + --tw-rotate: 45deg; } - .\32xl\:focus-within\:border-pink-800:focus-within { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .\32xl\:rotate-90 { + --tw-rotate: 90deg; } - .\32xl\:focus-within\:border-pink-900:focus-within { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .\32xl\:rotate-180 { + --tw-rotate: 180deg; } - .\32xl\:hover\:border-transparent:hover { - border-color: transparent; + .\32xl\:-rotate-180 { + --tw-rotate: -180deg; } - .\32xl\:hover\:border-current:hover { - border-color: currentColor; + .\32xl\:-rotate-90 { + --tw-rotate: -90deg; } - .\32xl\:hover\:border-black:hover { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .\32xl\:-rotate-45 { + --tw-rotate: -45deg; } - .\32xl\:hover\:border-white:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .\32xl\:-rotate-12 { + --tw-rotate: -12deg; } - .\32xl\:hover\:border-gray-50:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .\32xl\:-rotate-6 { + --tw-rotate: -6deg; } - .\32xl\:hover\:border-gray-100:hover { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .\32xl\:-rotate-3 { + --tw-rotate: -3deg; } - .\32xl\:hover\:border-gray-200:hover { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .\32xl\:-rotate-2 { + --tw-rotate: -2deg; } - .\32xl\:hover\:border-gray-300:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .\32xl\:-rotate-1 { + --tw-rotate: -1deg; } - .\32xl\:hover\:border-gray-400:hover { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg; } - .\32xl\:hover\:border-gray-500:hover { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg; } - .\32xl\:hover\:border-gray-600:hover { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg; } - .\32xl\:hover\:border-gray-700:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg; } - .\32xl\:hover\:border-gray-800:hover { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg; } - .\32xl\:hover\:border-gray-900:hover { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg; } - .\32xl\:hover\:border-red-50:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg; } - .\32xl\:hover\:border-red-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg; } - .\32xl\:hover\:border-red-200:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .\32xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg; } - .\32xl\:hover\:border-red-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; } - .\32xl\:hover\:border-red-400:hover { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; } - .\32xl\:hover\:border-red-500:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; } - .\32xl\:hover\:border-red-600:hover { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; } - .\32xl\:hover\:border-red-700:hover { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; } - .\32xl\:hover\:border-red-800:hover { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; } - .\32xl\:hover\:border-red-900:hover { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; } - .\32xl\:hover\:border-yellow-50:hover { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .\32xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; } - .\32xl\:hover\:border-yellow-100:hover { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg; } - .\32xl\:hover\:border-yellow-200:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg; } - .\32xl\:hover\:border-yellow-300:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg; } - .\32xl\:hover\:border-yellow-400:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg; } - .\32xl\:hover\:border-yellow-500:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg; } - .\32xl\:hover\:border-yellow-600:hover { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg; } - .\32xl\:hover\:border-yellow-700:hover { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg; } - .\32xl\:hover\:border-yellow-800:hover { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg; } - .\32xl\:hover\:border-yellow-900:hover { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .\32xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg; } - .\32xl\:hover\:border-green-50:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; } - .\32xl\:hover\:border-green-100:hover { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; } - .\32xl\:hover\:border-green-200:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; } - .\32xl\:hover\:border-green-300:hover { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; } - .\32xl\:hover\:border-green-400:hover { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; } - .\32xl\:hover\:border-green-500:hover { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; } - .\32xl\:hover\:border-green-600:hover { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; } - .\32xl\:hover\:border-green-700:hover { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .\32xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; } - .\32xl\:hover\:border-green-800:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .\32xl\:skew-x-0 { + --tw-skew-x: 0deg; } - .\32xl\:hover\:border-green-900:hover { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .\32xl\:skew-x-1 { + --tw-skew-x: 1deg; } - .\32xl\:hover\:border-blue-50:hover { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .\32xl\:skew-x-2 { + --tw-skew-x: 2deg; } - .\32xl\:hover\:border-blue-100:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .\32xl\:skew-x-3 { + --tw-skew-x: 3deg; } - .\32xl\:hover\:border-blue-200:hover { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .\32xl\:skew-x-6 { + --tw-skew-x: 6deg; } - .\32xl\:hover\:border-blue-300:hover { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .\32xl\:skew-x-12 { + --tw-skew-x: 12deg; } - .\32xl\:hover\:border-blue-400:hover { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .\32xl\:-skew-x-12 { + --tw-skew-x: -12deg; } - .\32xl\:hover\:border-blue-500:hover { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .\32xl\:-skew-x-6 { + --tw-skew-x: -6deg; } - .\32xl\:hover\:border-blue-600:hover { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .\32xl\:-skew-x-3 { + --tw-skew-x: -3deg; } - .\32xl\:hover\:border-blue-700:hover { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .\32xl\:-skew-x-2 { + --tw-skew-x: -2deg; } - .\32xl\:hover\:border-blue-800:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .\32xl\:-skew-x-1 { + --tw-skew-x: -1deg; } - .\32xl\:hover\:border-blue-900:hover { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .\32xl\:skew-y-0 { + --tw-skew-y: 0deg; } - .\32xl\:hover\:border-indigo-50:hover { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .\32xl\:skew-y-1 { + --tw-skew-y: 1deg; } - .\32xl\:hover\:border-indigo-100:hover { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .\32xl\:skew-y-2 { + --tw-skew-y: 2deg; } - .\32xl\:hover\:border-indigo-200:hover { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .\32xl\:skew-y-3 { + --tw-skew-y: 3deg; } - .\32xl\:hover\:border-indigo-300:hover { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .\32xl\:skew-y-6 { + --tw-skew-y: 6deg; } - .\32xl\:hover\:border-indigo-400:hover { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .\32xl\:skew-y-12 { + --tw-skew-y: 12deg; } - .\32xl\:hover\:border-indigo-500:hover { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .\32xl\:-skew-y-12 { + --tw-skew-y: -12deg; } - .\32xl\:hover\:border-indigo-600:hover { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .\32xl\:-skew-y-6 { + --tw-skew-y: -6deg; } - .\32xl\:hover\:border-indigo-700:hover { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .\32xl\:-skew-y-3 { + --tw-skew-y: -3deg; } - .\32xl\:hover\:border-indigo-800:hover { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .\32xl\:-skew-y-2 { + --tw-skew-y: -2deg; } - .\32xl\:hover\:border-indigo-900:hover { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .\32xl\:-skew-y-1 { + --tw-skew-y: -1deg; } - .\32xl\:hover\:border-purple-50:hover { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; } - .\32xl\:hover\:border-purple-100:hover { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; } - .\32xl\:hover\:border-purple-200:hover { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; } - .\32xl\:hover\:border-purple-300:hover { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; } - .\32xl\:hover\:border-purple-400:hover { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; } - .\32xl\:hover\:border-purple-500:hover { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .\32xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; } - .\32xl\:hover\:border-purple-600:hover { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; } - .\32xl\:hover\:border-purple-700:hover { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; } - .\32xl\:hover\:border-purple-800:hover { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; } - .\32xl\:hover\:border-purple-900:hover { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; } - .\32xl\:hover\:border-pink-50:hover { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; } - .\32xl\:hover\:border-pink-100:hover { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; } - .\32xl\:hover\:border-pink-200:hover { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; } - .\32xl\:hover\:border-pink-300:hover { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; } - .\32xl\:hover\:border-pink-400:hover { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; } - .\32xl\:hover\:border-pink-500:hover { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; } - .\32xl\:hover\:border-pink-600:hover { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .\32xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; } - .\32xl\:hover\:border-pink-700:hover { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; } - .\32xl\:hover\:border-pink-800:hover { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; } - .\32xl\:hover\:border-pink-900:hover { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .\32xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; } - .\32xl\:focus\:border-transparent:focus { - border-color: transparent; + .\32xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; } - .\32xl\:focus\:border-current:focus { - border-color: currentColor; + .\32xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; } - .\32xl\:focus\:border-black:focus { - --tw-border-opacity: 1; - border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; } - .\32xl\:focus\:border-white:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; } - .\32xl\:focus\:border-gray-50:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; } - .\32xl\:focus\:border-gray-100:focus { - --tw-border-opacity: 1; - border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; } - .\32xl\:focus\:border-gray-200:focus { - --tw-border-opacity: 1; - border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; } - .\32xl\:focus\:border-gray-300:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + .\32xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; } - .\32xl\:focus\:border-gray-400:focus { - --tw-border-opacity: 1; - border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; } - .\32xl\:focus\:border-gray-500:focus { - --tw-border-opacity: 1; - border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; } - .\32xl\:focus\:border-gray-600:focus { - --tw-border-opacity: 1; - border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; } - .\32xl\:focus\:border-gray-700:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; } - .\32xl\:focus\:border-gray-800:focus { - --tw-border-opacity: 1; - border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; } - .\32xl\:focus\:border-gray-900:focus { - --tw-border-opacity: 1; - border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; } - .\32xl\:focus\:border-red-50:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 242, 242, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; } - .\32xl\:focus\:border-red-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 226, 226, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; } - .\32xl\:focus\:border-red-200:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 202, 202, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; } - .\32xl\:focus\:border-red-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 165, 165, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; } - .\32xl\:focus\:border-red-400:focus { - --tw-border-opacity: 1; - border-color: rgba(248, 113, 113, var(--tw-border-opacity)); + .\32xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; } - .\32xl\:focus\:border-red-500:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 68, 68, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; } - .\32xl\:focus\:border-red-600:focus { - --tw-border-opacity: 1; - border-color: rgba(220, 38, 38, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; } - .\32xl\:focus\:border-red-700:focus { - --tw-border-opacity: 1; - border-color: rgba(185, 28, 28, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; } - .\32xl\:focus\:border-red-800:focus { - --tw-border-opacity: 1; - border-color: rgba(153, 27, 27, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; } - .\32xl\:focus\:border-red-900:focus { - --tw-border-opacity: 1; - border-color: rgba(127, 29, 29, var(--tw-border-opacity)); + .\32xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; } - .\32xl\:focus\:border-yellow-50:focus { - --tw-border-opacity: 1; - border-color: rgba(255, 251, 235, var(--tw-border-opacity)); + .\32xl\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:focus\:border-yellow-100:focus { - --tw-border-opacity: 1; - border-color: rgba(254, 243, 199, var(--tw-border-opacity)); + .\32xl\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:focus\:border-yellow-200:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 230, 138, var(--tw-border-opacity)); + .\32xl\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:focus\:border-yellow-300:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 211, 77, var(--tw-border-opacity)); + .\32xl\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:focus\:border-yellow-400:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 191, 36, var(--tw-border-opacity)); + .\32xl\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:focus\:border-yellow-500:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + .\32xl\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:focus\:border-yellow-600:focus { - --tw-border-opacity: 1; - border-color: rgba(217, 119, 6, var(--tw-border-opacity)); + .\32xl\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:focus\:border-yellow-700:focus { - --tw-border-opacity: 1; - border-color: rgba(180, 83, 9, var(--tw-border-opacity)); + .\32xl\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:focus\:border-yellow-800:focus { - --tw-border-opacity: 1; - border-color: rgba(146, 64, 14, var(--tw-border-opacity)); + .\32xl\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:focus\:border-yellow-900:focus { - --tw-border-opacity: 1; - border-color: rgba(120, 53, 15, var(--tw-border-opacity)); + .\32xl\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:focus\:border-green-50:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 253, 245, var(--tw-border-opacity)); + .\32xl\:scale-x-0 { + --tw-scale-x: 0; } - .\32xl\:focus\:border-green-100:focus { - --tw-border-opacity: 1; - border-color: rgba(209, 250, 229, var(--tw-border-opacity)); + .\32xl\:scale-x-50 { + --tw-scale-x: .5; } - .\32xl\:focus\:border-green-200:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 243, 208, var(--tw-border-opacity)); + .\32xl\:scale-x-75 { + --tw-scale-x: .75; } - .\32xl\:focus\:border-green-300:focus { - --tw-border-opacity: 1; - border-color: rgba(110, 231, 183, var(--tw-border-opacity)); + .\32xl\:scale-x-90 { + --tw-scale-x: .9; } - .\32xl\:focus\:border-green-400:focus { - --tw-border-opacity: 1; - border-color: rgba(52, 211, 153, var(--tw-border-opacity)); + .\32xl\:scale-x-95 { + --tw-scale-x: .95; } - .\32xl\:focus\:border-green-500:focus { - --tw-border-opacity: 1; - border-color: rgba(16, 185, 129, var(--tw-border-opacity)); + .\32xl\:scale-x-100 { + --tw-scale-x: 1; } - .\32xl\:focus\:border-green-600:focus { - --tw-border-opacity: 1; - border-color: rgba(5, 150, 105, var(--tw-border-opacity)); + .\32xl\:scale-x-105 { + --tw-scale-x: 1.05; } - .\32xl\:focus\:border-green-700:focus { - --tw-border-opacity: 1; - border-color: rgba(4, 120, 87, var(--tw-border-opacity)); + .\32xl\:scale-x-110 { + --tw-scale-x: 1.1; } - .\32xl\:focus\:border-green-800:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 95, 70, var(--tw-border-opacity)); + .\32xl\:scale-x-125 { + --tw-scale-x: 1.25; } - .\32xl\:focus\:border-green-900:focus { - --tw-border-opacity: 1; - border-color: rgba(6, 78, 59, var(--tw-border-opacity)); + .\32xl\:scale-x-150 { + --tw-scale-x: 1.5; } - .\32xl\:focus\:border-blue-50:focus { - --tw-border-opacity: 1; - border-color: rgba(239, 246, 255, var(--tw-border-opacity)); + .\32xl\:scale-y-0 { + --tw-scale-y: 0; } - .\32xl\:focus\:border-blue-100:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 234, 254, var(--tw-border-opacity)); + .\32xl\:scale-y-50 { + --tw-scale-y: .5; } - .\32xl\:focus\:border-blue-200:focus { - --tw-border-opacity: 1; - border-color: rgba(191, 219, 254, var(--tw-border-opacity)); + .\32xl\:scale-y-75 { + --tw-scale-y: .75; } - .\32xl\:focus\:border-blue-300:focus { - --tw-border-opacity: 1; - border-color: rgba(147, 197, 253, var(--tw-border-opacity)); + .\32xl\:scale-y-90 { + --tw-scale-y: .9; } - .\32xl\:focus\:border-blue-400:focus { - --tw-border-opacity: 1; - border-color: rgba(96, 165, 250, var(--tw-border-opacity)); + .\32xl\:scale-y-95 { + --tw-scale-y: .95; } - .\32xl\:focus\:border-blue-500:focus { - --tw-border-opacity: 1; - border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + .\32xl\:scale-y-100 { + --tw-scale-y: 1; } - .\32xl\:focus\:border-blue-600:focus { - --tw-border-opacity: 1; - border-color: rgba(37, 99, 235, var(--tw-border-opacity)); + .\32xl\:scale-y-105 { + --tw-scale-y: 1.05; } - .\32xl\:focus\:border-blue-700:focus { - --tw-border-opacity: 1; - border-color: rgba(29, 78, 216, var(--tw-border-opacity)); + .\32xl\:scale-y-110 { + --tw-scale-y: 1.1; } - .\32xl\:focus\:border-blue-800:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 64, 175, var(--tw-border-opacity)); + .\32xl\:scale-y-125 { + --tw-scale-y: 1.25; } - .\32xl\:focus\:border-blue-900:focus { - --tw-border-opacity: 1; - border-color: rgba(30, 58, 138, var(--tw-border-opacity)); + .\32xl\:scale-y-150 { + --tw-scale-y: 1.5; } - .\32xl\:focus\:border-indigo-50:focus { - --tw-border-opacity: 1; - border-color: rgba(238, 242, 255, var(--tw-border-opacity)); + .\32xl\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:focus\:border-indigo-100:focus { - --tw-border-opacity: 1; - border-color: rgba(224, 231, 255, var(--tw-border-opacity)); + .\32xl\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:focus\:border-indigo-200:focus { - --tw-border-opacity: 1; - border-color: rgba(199, 210, 254, var(--tw-border-opacity)); + .\32xl\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:focus\:border-indigo-300:focus { - --tw-border-opacity: 1; - border-color: rgba(165, 180, 252, var(--tw-border-opacity)); + .\32xl\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:focus\:border-indigo-400:focus { - --tw-border-opacity: 1; - border-color: rgba(129, 140, 248, var(--tw-border-opacity)); + .\32xl\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:focus\:border-indigo-500:focus { - --tw-border-opacity: 1; - border-color: rgba(99, 102, 241, var(--tw-border-opacity)); + .\32xl\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:focus\:border-indigo-600:focus { - --tw-border-opacity: 1; - border-color: rgba(79, 70, 229, var(--tw-border-opacity)); + .\32xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:focus\:border-indigo-700:focus { - --tw-border-opacity: 1; - border-color: rgba(67, 56, 202, var(--tw-border-opacity)); + .\32xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:focus\:border-indigo-800:focus { - --tw-border-opacity: 1; - border-color: rgba(55, 48, 163, var(--tw-border-opacity)); + .\32xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:focus\:border-indigo-900:focus { - --tw-border-opacity: 1; - border-color: rgba(49, 46, 129, var(--tw-border-opacity)); + .\32xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:focus\:border-purple-50:focus { - --tw-border-opacity: 1; - border-color: rgba(245, 243, 255, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0; } - .\32xl\:focus\:border-purple-100:focus { - --tw-border-opacity: 1; - border-color: rgba(237, 233, 254, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5; } - .\32xl\:focus\:border-purple-200:focus { - --tw-border-opacity: 1; - border-color: rgba(221, 214, 254, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75; } - .\32xl\:focus\:border-purple-300:focus { - --tw-border-opacity: 1; - border-color: rgba(196, 181, 253, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9; } - .\32xl\:focus\:border-purple-400:focus { - --tw-border-opacity: 1; - border-color: rgba(167, 139, 250, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95; } - .\32xl\:focus\:border-purple-500:focus { - --tw-border-opacity: 1; - border-color: rgba(139, 92, 246, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1; } - .\32xl\:focus\:border-purple-600:focus { - --tw-border-opacity: 1; - border-color: rgba(124, 58, 237, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; } - .\32xl\:focus\:border-purple-700:focus { - --tw-border-opacity: 1; - border-color: rgba(109, 40, 217, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; } - .\32xl\:focus\:border-purple-800:focus { - --tw-border-opacity: 1; - border-color: rgba(91, 33, 182, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; } - .\32xl\:focus\:border-purple-900:focus { - --tw-border-opacity: 1; - border-color: rgba(76, 29, 149, var(--tw-border-opacity)); + .\32xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; } - .\32xl\:focus\:border-pink-50:focus { - --tw-border-opacity: 1; - border-color: rgba(253, 242, 248, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0; } - .\32xl\:focus\:border-pink-100:focus { - --tw-border-opacity: 1; - border-color: rgba(252, 231, 243, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5; } - .\32xl\:focus\:border-pink-200:focus { - --tw-border-opacity: 1; - border-color: rgba(251, 207, 232, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75; } - .\32xl\:focus\:border-pink-300:focus { - --tw-border-opacity: 1; - border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9; } - .\32xl\:focus\:border-pink-400:focus { - --tw-border-opacity: 1; - border-color: rgba(244, 114, 182, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95; } - .\32xl\:focus\:border-pink-500:focus { - --tw-border-opacity: 1; - border-color: rgba(236, 72, 153, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1; } - .\32xl\:focus\:border-pink-600:focus { - --tw-border-opacity: 1; - border-color: rgba(219, 39, 119, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; } - .\32xl\:focus\:border-pink-700:focus { - --tw-border-opacity: 1; - border-color: rgba(190, 24, 93, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; } - .\32xl\:focus\:border-pink-800:focus { - --tw-border-opacity: 1; - border-color: rgba(157, 23, 77, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; } - .\32xl\:focus\:border-pink-900:focus { - --tw-border-opacity: 1; - border-color: rgba(131, 24, 67, var(--tw-border-opacity)); + .\32xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; } - .\32xl\:border-opacity-0 { - --tw-border-opacity: 0; + .\32xl\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:border-opacity-5 { - --tw-border-opacity: 0.05; + .\32xl\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:border-opacity-10 { - --tw-border-opacity: 0.1; + .\32xl\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:border-opacity-20 { - --tw-border-opacity: 0.2; + .\32xl\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:border-opacity-25 { - --tw-border-opacity: 0.25; + .\32xl\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:border-opacity-30 { - --tw-border-opacity: 0.3; + .\32xl\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:border-opacity-40 { - --tw-border-opacity: 0.4; + .\32xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:border-opacity-50 { - --tw-border-opacity: 0.5; + .\32xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:border-opacity-60 { - --tw-border-opacity: 0.6; + .\32xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:border-opacity-70 { - --tw-border-opacity: 0.7; + .\32xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:border-opacity-75 { - --tw-border-opacity: 0.75; + .\32xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0; } - .\32xl\:border-opacity-80 { - --tw-border-opacity: 0.8; + .\32xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5; } - .\32xl\:border-opacity-90 { - --tw-border-opacity: 0.9; + .\32xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75; } - .\32xl\:border-opacity-95 { - --tw-border-opacity: 0.95; + .\32xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9; } - .\32xl\:border-opacity-100 { - --tw-border-opacity: 1; + .\32xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95; } - .group:hover .\32xl\:group-hover\:border-opacity-0 { - --tw-border-opacity: 0; + .\32xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1; } - .group:hover .\32xl\:group-hover\:border-opacity-5 { - --tw-border-opacity: 0.05; + .\32xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; } - .group:hover .\32xl\:group-hover\:border-opacity-10 { - --tw-border-opacity: 0.1; + .\32xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; } - .group:hover .\32xl\:group-hover\:border-opacity-20 { - --tw-border-opacity: 0.2; + .\32xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; } - .group:hover .\32xl\:group-hover\:border-opacity-25 { - --tw-border-opacity: 0.25; + .\32xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; } - .group:hover .\32xl\:group-hover\:border-opacity-30 { - --tw-border-opacity: 0.3; + .\32xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0; } - .group:hover .\32xl\:group-hover\:border-opacity-40 { - --tw-border-opacity: 0.4; + .\32xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5; } - .group:hover .\32xl\:group-hover\:border-opacity-50 { - --tw-border-opacity: 0.5; + .\32xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75; } - .group:hover .\32xl\:group-hover\:border-opacity-60 { - --tw-border-opacity: 0.6; + .\32xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9; } - .group:hover .\32xl\:group-hover\:border-opacity-70 { - --tw-border-opacity: 0.7; + .\32xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95; } - .group:hover .\32xl\:group-hover\:border-opacity-75 { - --tw-border-opacity: 0.75; + .\32xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1; } - .group:hover .\32xl\:group-hover\:border-opacity-80 { - --tw-border-opacity: 0.8; + .\32xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; } - .group:hover .\32xl\:group-hover\:border-opacity-90 { - --tw-border-opacity: 0.9; + .\32xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; } - .group:hover .\32xl\:group-hover\:border-opacity-95 { - --tw-border-opacity: 0.95; + .\32xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; } - .group:hover .\32xl\:group-hover\:border-opacity-100 { - --tw-border-opacity: 1; + .\32xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; } - .\32xl\:focus-within\:border-opacity-0:focus-within { - --tw-border-opacity: 0; + .\32xl\:animate-none { + animation: none; } - .\32xl\:focus-within\:border-opacity-5:focus-within { - --tw-border-opacity: 0.05; + .\32xl\:animate-spin { + animation: spin 1s linear infinite; } - .\32xl\:focus-within\:border-opacity-10:focus-within { - --tw-border-opacity: 0.1; + .\32xl\:animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } - .\32xl\:focus-within\:border-opacity-20:focus-within { - --tw-border-opacity: 0.2; + .\32xl\:animate-pulse { + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } - .\32xl\:focus-within\:border-opacity-25:focus-within { - --tw-border-opacity: 0.25; + .\32xl\:animate-bounce { + animation: bounce 1s infinite; } - .\32xl\:focus-within\:border-opacity-30:focus-within { - --tw-border-opacity: 0.3; + .\32xl\:cursor-auto { + cursor: auto; } - .\32xl\:focus-within\:border-opacity-40:focus-within { - --tw-border-opacity: 0.4; + .\32xl\:cursor-default { + cursor: default; } - .\32xl\:focus-within\:border-opacity-50:focus-within { - --tw-border-opacity: 0.5; + .\32xl\:cursor-pointer { + cursor: pointer; } - .\32xl\:focus-within\:border-opacity-60:focus-within { - --tw-border-opacity: 0.6; + .\32xl\:cursor-wait { + cursor: wait; } - .\32xl\:focus-within\:border-opacity-70:focus-within { - --tw-border-opacity: 0.7; + .\32xl\:cursor-text { + cursor: text; } - .\32xl\:focus-within\:border-opacity-75:focus-within { - --tw-border-opacity: 0.75; + .\32xl\:cursor-move { + cursor: move; } - .\32xl\:focus-within\:border-opacity-80:focus-within { - --tw-border-opacity: 0.8; + .\32xl\:cursor-help { + cursor: help; } - .\32xl\:focus-within\:border-opacity-90:focus-within { - --tw-border-opacity: 0.9; + .\32xl\:cursor-not-allowed { + cursor: not-allowed; } - .\32xl\:focus-within\:border-opacity-95:focus-within { - --tw-border-opacity: 0.95; + .\32xl\:select-none { + user-select: none; } - .\32xl\:focus-within\:border-opacity-100:focus-within { - --tw-border-opacity: 1; + .\32xl\:select-text { + user-select: text; } - .\32xl\:hover\:border-opacity-0:hover { - --tw-border-opacity: 0; + .\32xl\:select-all { + user-select: all; } - .\32xl\:hover\:border-opacity-5:hover { - --tw-border-opacity: 0.05; + .\32xl\:select-auto { + user-select: auto; } - .\32xl\:hover\:border-opacity-10:hover { - --tw-border-opacity: 0.1; + .\32xl\:resize-none { + resize: none; } - .\32xl\:hover\:border-opacity-20:hover { - --tw-border-opacity: 0.2; + .\32xl\:resize-y { + resize: vertical; } - .\32xl\:hover\:border-opacity-25:hover { - --tw-border-opacity: 0.25; + .\32xl\:resize-x { + resize: horizontal; } - .\32xl\:hover\:border-opacity-30:hover { - --tw-border-opacity: 0.3; + .\32xl\:resize { + resize: both; } - .\32xl\:hover\:border-opacity-40:hover { - --tw-border-opacity: 0.4; + .\32xl\:list-inside { + list-style-position: inside; } - .\32xl\:hover\:border-opacity-50:hover { - --tw-border-opacity: 0.5; + .\32xl\:list-outside { + list-style-position: outside; } - .\32xl\:hover\:border-opacity-60:hover { - --tw-border-opacity: 0.6; + .\32xl\:list-none { + list-style-type: none; } - .\32xl\:hover\:border-opacity-70:hover { - --tw-border-opacity: 0.7; + .\32xl\:list-disc { + list-style-type: disc; } - .\32xl\:hover\:border-opacity-75:hover { - --tw-border-opacity: 0.75; + .\32xl\:list-decimal { + list-style-type: decimal; } - .\32xl\:hover\:border-opacity-80:hover { - --tw-border-opacity: 0.8; + .\32xl\:appearance-none { + appearance: none; } - .\32xl\:hover\:border-opacity-90:hover { - --tw-border-opacity: 0.9; + .\32xl\:auto-cols-auto { + grid-auto-columns: auto; } - .\32xl\:hover\:border-opacity-95:hover { - --tw-border-opacity: 0.95; + .\32xl\:auto-cols-min { + grid-auto-columns: min-content; } - .\32xl\:hover\:border-opacity-100:hover { - --tw-border-opacity: 1; + .\32xl\:auto-cols-max { + grid-auto-columns: max-content; } - .\32xl\:focus\:border-opacity-0:focus { - --tw-border-opacity: 0; + .\32xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); } - .\32xl\:focus\:border-opacity-5:focus { - --tw-border-opacity: 0.05; + .\32xl\:grid-flow-row { + grid-auto-flow: row; } - .\32xl\:focus\:border-opacity-10:focus { - --tw-border-opacity: 0.1; + .\32xl\:grid-flow-col { + grid-auto-flow: column; } - .\32xl\:focus\:border-opacity-20:focus { - --tw-border-opacity: 0.2; + .\32xl\:grid-flow-row-dense { + grid-auto-flow: row dense; } - .\32xl\:focus\:border-opacity-25:focus { - --tw-border-opacity: 0.25; + .\32xl\:grid-flow-col-dense { + grid-auto-flow: column dense; } - .\32xl\:focus\:border-opacity-30:focus { - --tw-border-opacity: 0.3; + .\32xl\:auto-rows-auto { + grid-auto-rows: auto; } - .\32xl\:focus\:border-opacity-40:focus { - --tw-border-opacity: 0.4; + .\32xl\:auto-rows-min { + grid-auto-rows: min-content; } - .\32xl\:focus\:border-opacity-50:focus { - --tw-border-opacity: 0.5; + .\32xl\:auto-rows-max { + grid-auto-rows: max-content; } - .\32xl\:focus\:border-opacity-60:focus { - --tw-border-opacity: 0.6; + .\32xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); } - .\32xl\:focus\:border-opacity-70:focus { - --tw-border-opacity: 0.7; + .\32xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); } - .\32xl\:focus\:border-opacity-75:focus { - --tw-border-opacity: 0.75; + .\32xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } - .\32xl\:focus\:border-opacity-80:focus { - --tw-border-opacity: 0.8; + .\32xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); } - .\32xl\:focus\:border-opacity-90:focus { - --tw-border-opacity: 0.9; + .\32xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); } - .\32xl\:focus\:border-opacity-95:focus { - --tw-border-opacity: 0.95; + .\32xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); } - .\32xl\:focus\:border-opacity-100:focus { - --tw-border-opacity: 1; + .\32xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); } - .\32xl\:rounded-none { - border-radius: 0px; + .\32xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); } - .\32xl\:rounded-sm { - border-radius: 0.125rem; + .\32xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); } - .\32xl\:rounded { - border-radius: 0.25rem; + .\32xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); } - .\32xl\:rounded-md { - border-radius: 0.375rem; + .\32xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); } - .\32xl\:rounded-lg { - border-radius: 0.5rem; + .\32xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); } - .\32xl\:rounded-xl { - border-radius: 0.75rem; + .\32xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); } - .\32xl\:rounded-2xl { - border-radius: 1rem; + .\32xl\:grid-cols-none { + grid-template-columns: none; } - .\32xl\:rounded-3xl { - border-radius: 1.5rem; + .\32xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); } - .\32xl\:rounded-full { - border-radius: 9999px; + .\32xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); } - .\32xl\:rounded-t-none { - border-top-left-radius: 0px; - border-top-right-radius: 0px; + .\32xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); } - .\32xl\:rounded-r-none { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + .\32xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); } - .\32xl\:rounded-b-none { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; + .\32xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); } - .\32xl\:rounded-l-none { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; + .\32xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); } - .\32xl\:rounded-t-sm { - border-top-left-radius: 0.125rem; - border-top-right-radius: 0.125rem; + .\32xl\:grid-rows-none { + grid-template-rows: none; } - .\32xl\:rounded-r-sm { - border-top-right-radius: 0.125rem; - border-bottom-right-radius: 0.125rem; + .\32xl\:flex-row { + flex-direction: row; } - .\32xl\:rounded-b-sm { - border-bottom-right-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .\32xl\:flex-row-reverse { + flex-direction: row-reverse; } - .\32xl\:rounded-l-sm { - border-top-left-radius: 0.125rem; - border-bottom-left-radius: 0.125rem; + .\32xl\:flex-col { + flex-direction: column; } - .\32xl\:rounded-t { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; + .\32xl\:flex-col-reverse { + flex-direction: column-reverse; } - .\32xl\:rounded-r { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; + .\32xl\:flex-wrap { + flex-wrap: wrap; } - .\32xl\:rounded-b { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .\32xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse; } - .\32xl\:rounded-l { - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; + .\32xl\:flex-nowrap { + flex-wrap: nowrap; } - .\32xl\:rounded-t-md { - border-top-left-radius: 0.375rem; - border-top-right-radius: 0.375rem; + .\32xl\:place-content-center { + place-content: center; } - .\32xl\:rounded-r-md { - border-top-right-radius: 0.375rem; - border-bottom-right-radius: 0.375rem; + .\32xl\:place-content-start { + place-content: start; } - .\32xl\:rounded-b-md { - border-bottom-right-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .\32xl\:place-content-end { + place-content: end; } - .\32xl\:rounded-l-md { - border-top-left-radius: 0.375rem; - border-bottom-left-radius: 0.375rem; + .\32xl\:place-content-between { + place-content: space-between; } - .\32xl\:rounded-t-lg { - border-top-left-radius: 0.5rem; - border-top-right-radius: 0.5rem; + .\32xl\:place-content-around { + place-content: space-around; } - .\32xl\:rounded-r-lg { - border-top-right-radius: 0.5rem; - border-bottom-right-radius: 0.5rem; + .\32xl\:place-content-evenly { + place-content: space-evenly; } - .\32xl\:rounded-b-lg { - border-bottom-right-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .\32xl\:place-content-stretch { + place-content: stretch; } - .\32xl\:rounded-l-lg { - border-top-left-radius: 0.5rem; - border-bottom-left-radius: 0.5rem; + .\32xl\:place-items-start { + place-items: start; } - .\32xl\:rounded-t-xl { - border-top-left-radius: 0.75rem; - border-top-right-radius: 0.75rem; + .\32xl\:place-items-end { + place-items: end; } - .\32xl\:rounded-r-xl { - border-top-right-radius: 0.75rem; - border-bottom-right-radius: 0.75rem; + .\32xl\:place-items-center { + place-items: center; } - .\32xl\:rounded-b-xl { - border-bottom-right-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .\32xl\:place-items-stretch { + place-items: stretch; } - .\32xl\:rounded-l-xl { - border-top-left-radius: 0.75rem; - border-bottom-left-radius: 0.75rem; + .\32xl\:content-center { + align-content: center; } - .\32xl\:rounded-t-2xl { - border-top-left-radius: 1rem; - border-top-right-radius: 1rem; + .\32xl\:content-start { + align-content: flex-start; } - .\32xl\:rounded-r-2xl { - border-top-right-radius: 1rem; - border-bottom-right-radius: 1rem; + .\32xl\:content-end { + align-content: flex-end; } - .\32xl\:rounded-b-2xl { - border-bottom-right-radius: 1rem; - border-bottom-left-radius: 1rem; + .\32xl\:content-between { + align-content: space-between; } - .\32xl\:rounded-l-2xl { - border-top-left-radius: 1rem; - border-bottom-left-radius: 1rem; + .\32xl\:content-around { + align-content: space-around; } - .\32xl\:rounded-t-3xl { - border-top-left-radius: 1.5rem; - border-top-right-radius: 1.5rem; + .\32xl\:content-evenly { + align-content: space-evenly; } - .\32xl\:rounded-r-3xl { - border-top-right-radius: 1.5rem; - border-bottom-right-radius: 1.5rem; + .\32xl\:items-start { + align-items: flex-start; } - .\32xl\:rounded-b-3xl { - border-bottom-right-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .\32xl\:items-end { + align-items: flex-end; } - .\32xl\:rounded-l-3xl { - border-top-left-radius: 1.5rem; - border-bottom-left-radius: 1.5rem; + .\32xl\:items-center { + align-items: center; } - .\32xl\:rounded-t-full { - border-top-left-radius: 9999px; - border-top-right-radius: 9999px; + .\32xl\:items-baseline { + align-items: baseline; } - .\32xl\:rounded-r-full { - border-top-right-radius: 9999px; - border-bottom-right-radius: 9999px; + .\32xl\:items-stretch { + align-items: stretch; } - .\32xl\:rounded-b-full { - border-bottom-right-radius: 9999px; - border-bottom-left-radius: 9999px; + .\32xl\:justify-start { + justify-content: flex-start; } - .\32xl\:rounded-l-full { - border-top-left-radius: 9999px; - border-bottom-left-radius: 9999px; + .\32xl\:justify-end { + justify-content: flex-end; } - .\32xl\:rounded-tl-none { - border-top-left-radius: 0px; + .\32xl\:justify-center { + justify-content: center; } - .\32xl\:rounded-tr-none { - border-top-right-radius: 0px; + .\32xl\:justify-between { + justify-content: space-between; + } + + .\32xl\:justify-around { + justify-content: space-around; } - .\32xl\:rounded-br-none { - border-bottom-right-radius: 0px; + .\32xl\:justify-evenly { + justify-content: space-evenly; } - .\32xl\:rounded-bl-none { - border-bottom-left-radius: 0px; + .\32xl\:justify-items-start { + justify-items: start; } - .\32xl\:rounded-tl-sm { - border-top-left-radius: 0.125rem; + .\32xl\:justify-items-end { + justify-items: end; } - .\32xl\:rounded-tr-sm { - border-top-right-radius: 0.125rem; + .\32xl\:justify-items-center { + justify-items: center; } - .\32xl\:rounded-br-sm { - border-bottom-right-radius: 0.125rem; + .\32xl\:justify-items-stretch { + justify-items: stretch; } - .\32xl\:rounded-bl-sm { - border-bottom-left-radius: 0.125rem; + .\32xl\:gap-0 { + gap: 0px; } - .\32xl\:rounded-tl { - border-top-left-radius: 0.25rem; + .\32xl\:gap-1 { + gap: 0.25rem; } - .\32xl\:rounded-tr { - border-top-right-radius: 0.25rem; + .\32xl\:gap-2 { + gap: 0.5rem; } - .\32xl\:rounded-br { - border-bottom-right-radius: 0.25rem; + .\32xl\:gap-3 { + gap: 0.75rem; } - .\32xl\:rounded-bl { - border-bottom-left-radius: 0.25rem; + .\32xl\:gap-4 { + gap: 1rem; } - .\32xl\:rounded-tl-md { - border-top-left-radius: 0.375rem; + .\32xl\:gap-5 { + gap: 1.25rem; } - .\32xl\:rounded-tr-md { - border-top-right-radius: 0.375rem; + .\32xl\:gap-6 { + gap: 1.5rem; } - .\32xl\:rounded-br-md { - border-bottom-right-radius: 0.375rem; + .\32xl\:gap-7 { + gap: 1.75rem; } - .\32xl\:rounded-bl-md { - border-bottom-left-radius: 0.375rem; + .\32xl\:gap-8 { + gap: 2rem; } - .\32xl\:rounded-tl-lg { - border-top-left-radius: 0.5rem; + .\32xl\:gap-9 { + gap: 2.25rem; } - .\32xl\:rounded-tr-lg { - border-top-right-radius: 0.5rem; + .\32xl\:gap-10 { + gap: 2.5rem; } - .\32xl\:rounded-br-lg { - border-bottom-right-radius: 0.5rem; + .\32xl\:gap-11 { + gap: 2.75rem; } - .\32xl\:rounded-bl-lg { - border-bottom-left-radius: 0.5rem; + .\32xl\:gap-12 { + gap: 3rem; } - .\32xl\:rounded-tl-xl { - border-top-left-radius: 0.75rem; + .\32xl\:gap-14 { + gap: 3.5rem; } - .\32xl\:rounded-tr-xl { - border-top-right-radius: 0.75rem; + .\32xl\:gap-16 { + gap: 4rem; } - .\32xl\:rounded-br-xl { - border-bottom-right-radius: 0.75rem; + .\32xl\:gap-20 { + gap: 5rem; } - .\32xl\:rounded-bl-xl { - border-bottom-left-radius: 0.75rem; + .\32xl\:gap-24 { + gap: 6rem; } - .\32xl\:rounded-tl-2xl { - border-top-left-radius: 1rem; + .\32xl\:gap-28 { + gap: 7rem; } - .\32xl\:rounded-tr-2xl { - border-top-right-radius: 1rem; + .\32xl\:gap-32 { + gap: 8rem; } - .\32xl\:rounded-br-2xl { - border-bottom-right-radius: 1rem; + .\32xl\:gap-36 { + gap: 9rem; } - .\32xl\:rounded-bl-2xl { - border-bottom-left-radius: 1rem; + .\32xl\:gap-40 { + gap: 10rem; } - .\32xl\:rounded-tl-3xl { - border-top-left-radius: 1.5rem; + .\32xl\:gap-44 { + gap: 11rem; } - .\32xl\:rounded-tr-3xl { - border-top-right-radius: 1.5rem; + .\32xl\:gap-48 { + gap: 12rem; } - .\32xl\:rounded-br-3xl { - border-bottom-right-radius: 1.5rem; + .\32xl\:gap-52 { + gap: 13rem; } - .\32xl\:rounded-bl-3xl { - border-bottom-left-radius: 1.5rem; + .\32xl\:gap-56 { + gap: 14rem; } - .\32xl\:rounded-tl-full { - border-top-left-radius: 9999px; + .\32xl\:gap-60 { + gap: 15rem; } - .\32xl\:rounded-tr-full { - border-top-right-radius: 9999px; + .\32xl\:gap-64 { + gap: 16rem; } - .\32xl\:rounded-br-full { - border-bottom-right-radius: 9999px; + .\32xl\:gap-72 { + gap: 18rem; } - .\32xl\:rounded-bl-full { - border-bottom-left-radius: 9999px; + .\32xl\:gap-80 { + gap: 20rem; } - .\32xl\:border-solid { - border-style: solid; + .\32xl\:gap-96 { + gap: 24rem; } - .\32xl\:border-dashed { - border-style: dashed; + .\32xl\:gap-px { + gap: 1px; } - .\32xl\:border-dotted { - border-style: dotted; + .\32xl\:gap-0\.5 { + gap: 0.125rem; } - .\32xl\:border-double { - border-style: double; + .\32xl\:gap-1\.5 { + gap: 0.375rem; } - .\32xl\:border-none { - border-style: none; + .\32xl\:gap-2\.5 { + gap: 0.625rem; } - .\32xl\:border-0 { - border-width: 0px; + .\32xl\:gap-3\.5 { + gap: 0.875rem; } - .\32xl\:border-2 { - border-width: 2px; + .\32xl\:gap-x-0 { + column-gap: 0px; } - .\32xl\:border-4 { - border-width: 4px; + .\32xl\:gap-x-1 { + column-gap: 0.25rem; } - .\32xl\:border-8 { - border-width: 8px; + .\32xl\:gap-x-2 { + column-gap: 0.5rem; } - .\32xl\:border { - border-width: 1px; + .\32xl\:gap-x-3 { + column-gap: 0.75rem; } - .\32xl\:border-t-0 { - border-top-width: 0px; + .\32xl\:gap-x-4 { + column-gap: 1rem; } - .\32xl\:border-r-0 { - border-right-width: 0px; + .\32xl\:gap-x-5 { + column-gap: 1.25rem; } - .\32xl\:border-b-0 { - border-bottom-width: 0px; + .\32xl\:gap-x-6 { + column-gap: 1.5rem; } - .\32xl\:border-l-0 { - border-left-width: 0px; + .\32xl\:gap-x-7 { + column-gap: 1.75rem; } - .\32xl\:border-t-2 { - border-top-width: 2px; + .\32xl\:gap-x-8 { + column-gap: 2rem; } - .\32xl\:border-r-2 { - border-right-width: 2px; + .\32xl\:gap-x-9 { + column-gap: 2.25rem; } - .\32xl\:border-b-2 { - border-bottom-width: 2px; + .\32xl\:gap-x-10 { + column-gap: 2.5rem; } - .\32xl\:border-l-2 { - border-left-width: 2px; + .\32xl\:gap-x-11 { + column-gap: 2.75rem; } - .\32xl\:border-t-4 { - border-top-width: 4px; + .\32xl\:gap-x-12 { + column-gap: 3rem; } - .\32xl\:border-r-4 { - border-right-width: 4px; + .\32xl\:gap-x-14 { + column-gap: 3.5rem; } - .\32xl\:border-b-4 { - border-bottom-width: 4px; + .\32xl\:gap-x-16 { + column-gap: 4rem; } - .\32xl\:border-l-4 { - border-left-width: 4px; + .\32xl\:gap-x-20 { + column-gap: 5rem; } - .\32xl\:border-t-8 { - border-top-width: 8px; + .\32xl\:gap-x-24 { + column-gap: 6rem; } - .\32xl\:border-r-8 { - border-right-width: 8px; + .\32xl\:gap-x-28 { + column-gap: 7rem; } - .\32xl\:border-b-8 { - border-bottom-width: 8px; + .\32xl\:gap-x-32 { + column-gap: 8rem; } - .\32xl\:border-l-8 { - border-left-width: 8px; + .\32xl\:gap-x-36 { + column-gap: 9rem; } - .\32xl\:border-t { - border-top-width: 1px; + .\32xl\:gap-x-40 { + column-gap: 10rem; } - .\32xl\:border-r { - border-right-width: 1px; + .\32xl\:gap-x-44 { + column-gap: 11rem; } - .\32xl\:border-b { - border-bottom-width: 1px; + .\32xl\:gap-x-48 { + column-gap: 12rem; } - .\32xl\:border-l { - border-left-width: 1px; + .\32xl\:gap-x-52 { + column-gap: 13rem; } - .\32xl\:decoration-slice { - box-decoration-break: slice; + .\32xl\:gap-x-56 { + column-gap: 14rem; } - .\32xl\:decoration-clone { - box-decoration-break: clone; + .\32xl\:gap-x-60 { + column-gap: 15rem; } - .\32xl\:box-border { - box-sizing: border-box; + .\32xl\:gap-x-64 { + column-gap: 16rem; } - .\32xl\:box-content { - box-sizing: content-box; + .\32xl\:gap-x-72 { + column-gap: 18rem; } - .\32xl\:cursor-auto { - cursor: auto; + .\32xl\:gap-x-80 { + column-gap: 20rem; } - .\32xl\:cursor-default { - cursor: default; + .\32xl\:gap-x-96 { + column-gap: 24rem; } - .\32xl\:cursor-pointer { - cursor: pointer; + .\32xl\:gap-x-px { + column-gap: 1px; } - .\32xl\:cursor-wait { - cursor: wait; + .\32xl\:gap-x-0\.5 { + column-gap: 0.125rem; } - .\32xl\:cursor-text { - cursor: text; + .\32xl\:gap-x-1\.5 { + column-gap: 0.375rem; } - .\32xl\:cursor-move { - cursor: move; + .\32xl\:gap-x-2\.5 { + column-gap: 0.625rem; } - .\32xl\:cursor-help { - cursor: help; + .\32xl\:gap-x-3\.5 { + column-gap: 0.875rem; } - .\32xl\:cursor-not-allowed { - cursor: not-allowed; + .\32xl\:gap-y-0 { + row-gap: 0px; } - .\32xl\:block { - display: block; + .\32xl\:gap-y-1 { + row-gap: 0.25rem; } - .\32xl\:inline-block { - display: inline-block; + .\32xl\:gap-y-2 { + row-gap: 0.5rem; } - .\32xl\:inline { - display: inline; + .\32xl\:gap-y-3 { + row-gap: 0.75rem; } - .\32xl\:flex { - display: flex; + .\32xl\:gap-y-4 { + row-gap: 1rem; } - .\32xl\:inline-flex { - display: inline-flex; + .\32xl\:gap-y-5 { + row-gap: 1.25rem; } - .\32xl\:table { - display: table; + .\32xl\:gap-y-6 { + row-gap: 1.5rem; } - .\32xl\:inline-table { - display: inline-table; + .\32xl\:gap-y-7 { + row-gap: 1.75rem; } - .\32xl\:table-caption { - display: table-caption; + .\32xl\:gap-y-8 { + row-gap: 2rem; } - .\32xl\:table-cell { - display: table-cell; + .\32xl\:gap-y-9 { + row-gap: 2.25rem; } - .\32xl\:table-column { - display: table-column; + .\32xl\:gap-y-10 { + row-gap: 2.5rem; } - .\32xl\:table-column-group { - display: table-column-group; + .\32xl\:gap-y-11 { + row-gap: 2.75rem; } - .\32xl\:table-footer-group { - display: table-footer-group; + .\32xl\:gap-y-12 { + row-gap: 3rem; } - .\32xl\:table-header-group { - display: table-header-group; + .\32xl\:gap-y-14 { + row-gap: 3.5rem; } - .\32xl\:table-row-group { - display: table-row-group; + .\32xl\:gap-y-16 { + row-gap: 4rem; } - .\32xl\:table-row { - display: table-row; + .\32xl\:gap-y-20 { + row-gap: 5rem; } - .\32xl\:flow-root { - display: flow-root; + .\32xl\:gap-y-24 { + row-gap: 6rem; } - .\32xl\:grid { - display: grid; + .\32xl\:gap-y-28 { + row-gap: 7rem; } - .\32xl\:inline-grid { - display: inline-grid; + .\32xl\:gap-y-32 { + row-gap: 8rem; } - .\32xl\:contents { - display: contents; + .\32xl\:gap-y-36 { + row-gap: 9rem; } - .\32xl\:list-item { - display: list-item; + .\32xl\:gap-y-40 { + row-gap: 10rem; } - .\32xl\:hidden { - display: none; + .\32xl\:gap-y-44 { + row-gap: 11rem; } - .\32xl\:flex-row { - flex-direction: row; + .\32xl\:gap-y-48 { + row-gap: 12rem; } - .\32xl\:flex-row-reverse { - flex-direction: row-reverse; + .\32xl\:gap-y-52 { + row-gap: 13rem; } - .\32xl\:flex-col { - flex-direction: column; + .\32xl\:gap-y-56 { + row-gap: 14rem; } - .\32xl\:flex-col-reverse { - flex-direction: column-reverse; + .\32xl\:gap-y-60 { + row-gap: 15rem; } - .\32xl\:flex-wrap { - flex-wrap: wrap; + .\32xl\:gap-y-64 { + row-gap: 16rem; } - .\32xl\:flex-wrap-reverse { - flex-wrap: wrap-reverse; + .\32xl\:gap-y-72 { + row-gap: 18rem; } - .\32xl\:flex-nowrap { - flex-wrap: nowrap; + .\32xl\:gap-y-80 { + row-gap: 20rem; } - .\32xl\:place-items-start { - place-items: start; + .\32xl\:gap-y-96 { + row-gap: 24rem; } - .\32xl\:place-items-end { - place-items: end; + .\32xl\:gap-y-px { + row-gap: 1px; } - .\32xl\:place-items-center { - place-items: center; + .\32xl\:gap-y-0\.5 { + row-gap: 0.125rem; } - .\32xl\:place-items-stretch { - place-items: stretch; + .\32xl\:gap-y-1\.5 { + row-gap: 0.375rem; } - .\32xl\:place-content-center { - place-content: center; + .\32xl\:gap-y-2\.5 { + row-gap: 0.625rem; } - .\32xl\:place-content-start { - place-content: start; + .\32xl\:gap-y-3\.5 { + row-gap: 0.875rem; } - .\32xl\:place-content-end { - place-content: end; + .\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\:place-content-between { - place-content: space-between; + .\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\:place-content-around { - place-content: space-around; + .\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\:place-content-evenly { - place-content: space-evenly; + .\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\:place-content-stretch { - place-content: stretch; + .\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\:place-self-auto { - place-self: auto; + .\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\:place-self-start { - place-self: start; + .\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\:place-self-end { - place-self: end; + .\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\:place-self-center { - place-self: center; + .\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\:place-self-stretch { - place-self: stretch; + .\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\:items-start { - align-items: flex-start; + .\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\:items-end { - align-items: flex-end; + .\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\:items-center { - align-items: center; + .\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\:items-baseline { - align-items: baseline; + .\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\:items-stretch { - align-items: stretch; + .\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\:content-center { - align-content: center; + .\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\:content-start { - align-content: flex-start; + .\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\:content-end { - align-content: flex-end; + .\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\:content-between { - align-content: space-between; + .\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\:content-around { - align-content: space-around; + .\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\:content-evenly { - align-content: space-evenly; + .\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\:self-auto { - align-self: auto; + .\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\:self-start { - align-self: flex-start; + .\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\:self-end { - align-self: flex-end; + .\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\:self-center { - align-self: center; + .\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\:self-stretch { - align-self: stretch; + .\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\:justify-items-start { - justify-items: start; + .\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\:justify-items-end { - justify-items: end; + .\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\:justify-items-center { - justify-items: center; + .\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\:justify-items-stretch { - justify-items: stretch; + .\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\:justify-start { - justify-content: flex-start; + .\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\:justify-end { - justify-content: flex-end; + .\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\:justify-center { - justify-content: center; + .\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\:justify-between { - justify-content: space-between; + .\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\:justify-around { - justify-content: space-around; + .\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\:justify-evenly { - justify-content: space-evenly; + .\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\:justify-self-auto { - justify-self: auto; + .\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\:justify-self-start { - justify-self: start; + .\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\:justify-self-end { - justify-self: end; + .\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\:justify-self-center { - justify-self: center; + .\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\:justify-self-stretch { - justify-self: stretch; + .\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\:flex-1 { - flex: 1 1 0%; + .\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\:flex-auto { - flex: 1 1 auto; + .\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\:flex-initial { - flex: 0 1 auto; + .\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\:flex-none { - flex: none; + .\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\:flex-grow-0 { - flex-grow: 0; + .\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\:flex-grow { - flex-grow: 1; + .\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\:flex-shrink-0 { - flex-shrink: 0; + .\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\:flex-shrink { - flex-shrink: 1; + .\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\:order-1 { - order: 1; + .\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\:order-2 { - order: 2; + .\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\:order-3 { - order: 3; + .\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\:order-4 { - order: 4; + .\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\:order-5 { - order: 5; + .\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\:order-6 { - order: 6; + .\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\:order-7 { - order: 7; + .\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\:order-8 { - order: 8; + .\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\:order-9 { - order: 9; + .\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\:order-10 { - order: 10; + .\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\:order-11 { - order: 11; + .\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\:order-12 { - order: 12; + .\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\:order-first { - order: -9999; + .\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\:order-last { - order: 9999; + .\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\:order-none { - order: 0; + .\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\:float-right { - float: right; + .\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\:float-left { - float: left; + .\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\:float-none { - float: none; + .\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\:clear-left { - clear: left; + .\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\:clear-right { - clear: right; + .\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\:clear-both { - clear: both; + .\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\:clear-none { - clear: none; + .\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\:font-sans { - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + .\32xl\:-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\:font-serif { - font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + .\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\:font-mono { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + .\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\:font-thin { - font-weight: 100; + .\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\:font-extralight { - font-weight: 200; + .\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\:font-light { - font-weight: 300; + .\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\:font-normal { - font-weight: 400; + .\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\:font-medium { - font-weight: 500; + .\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\:font-semibold { - font-weight: 600; + .\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\:font-bold { - font-weight: 700; + .\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\:font-extrabold { - font-weight: 800; + .\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\:font-black { - font-weight: 900; + .\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\:h-0 { - height: 0px; + .\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\:h-1 { - height: 0.25rem; + .\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\:h-2 { - height: 0.5rem; + .\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\:h-3 { - height: 0.75rem; + .\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\:h-4 { - height: 1rem; + .\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\:h-5 { - height: 1.25rem; + .\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\:h-6 { - height: 1.5rem; + .\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\:h-7 { - height: 1.75rem; + .\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\:h-8 { - height: 2rem; + .\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\:h-9 { - height: 2.25rem; + .\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\:h-10 { - height: 2.5rem; + .\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\:h-11 { - height: 2.75rem; + .\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\:h-12 { - height: 3rem; + .\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\:h-14 { - height: 3.5rem; + .\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\:h-16 { - height: 4rem; + .\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\:h-20 { - height: 5rem; + .\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\:h-24 { - height: 6rem; + .\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\:h-28 { - height: 7rem; + .\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\:h-32 { - height: 8rem; + .\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\:h-36 { - height: 9rem; + .\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\:h-40 { - height: 10rem; + .\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\:h-44 { - height: 11rem; + .\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\:h-48 { - height: 12rem; + .\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\:h-52 { - height: 13rem; + .\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\:h-56 { - height: 14rem; + .\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\:h-60 { - height: 15rem; + .\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\:h-64 { - height: 16rem; + .\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\:h-72 { - height: 18rem; + .\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\:h-80 { - height: 20rem; + .\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\:h-96 { - height: 24rem; + .\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\:h-auto { - height: auto; + .\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\:h-px { - height: 1px; + .\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\:h-0\.5 { - height: 0.125rem; + .\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\:h-1\.5 { - height: 0.375rem; + .\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\:h-2\.5 { - height: 0.625rem; + .\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\:h-3\.5 { - height: 0.875rem; + .\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\:h-1\/2 { - height: 50%; + .\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\:h-1\/3 { - height: 33.333333%; + .\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\:h-2\/3 { - height: 66.666667%; + .\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\:h-1\/4 { - height: 25%; + .\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\:h-2\/4 { - height: 50%; + .\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\:h-3\/4 { - height: 75%; + .\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\:h-1\/5 { - height: 20%; + .\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\:h-2\/5 { - height: 40%; + .\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\:h-3\/5 { - height: 60%; + .\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\:h-4\/5 { - height: 80%; + .\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\:h-1\/6 { - height: 16.666667%; + .\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\:h-2\/6 { - height: 33.333333%; + .\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\:h-3\/6 { - height: 50%; + .\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\:h-4\/6 { - height: 66.666667%; + .\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\:h-5\/6 { - height: 83.333333%; + .\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\:h-full { - height: 100%; + .\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\:h-screen { - height: 100vh; + .\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\:text-xs { - font-size: 0.75rem; - line-height: 1rem; + .\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\:text-sm { - font-size: 0.875rem; - line-height: 1.25rem; + .\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\:text-base { - font-size: 1rem; - line-height: 1.5rem; + .\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\:text-lg { - font-size: 1.125rem; - line-height: 1.75rem; + .\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\:text-xl { - font-size: 1.25rem; - line-height: 1.75rem; + .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; } - .\32xl\:text-2xl { - font-size: 1.5rem; - line-height: 2rem; + .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; } - .\32xl\:text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; + .\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\:text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; + .\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\:text-5xl { - font-size: 3rem; - line-height: 1; + .\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\:text-6xl { - font-size: 3.75rem; - line-height: 1; + .\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\:text-7xl { - font-size: 4.5rem; - line-height: 1; + .\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\:text-8xl { - font-size: 6rem; - line-height: 1; + .\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\:text-9xl { - font-size: 8rem; - line-height: 1; + .\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\:leading-3 { - line-height: .75rem; + .\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\:leading-4 { - line-height: 1rem; + .\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\:leading-5 { - line-height: 1.25rem; + .\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\:leading-6 { - line-height: 1.5rem; + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; } - .\32xl\:leading-7 { - line-height: 1.75rem; + .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; } - .\32xl\:leading-8 { - line-height: 2rem; + .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; } - .\32xl\:leading-9 { - line-height: 2.25rem; + .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; } - .\32xl\:leading-10 { - line-height: 2.5rem; + .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; } - .\32xl\:leading-none { - line-height: 1; + .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; } - .\32xl\:leading-tight { - line-height: 1.25; + .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; } - .\32xl\:leading-snug { - line-height: 1.375; + .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; } - .\32xl\:leading-normal { - line-height: 1.5; + .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; } - .\32xl\:leading-relaxed { - line-height: 1.625; + .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); } - .\32xl\:leading-loose { - line-height: 2; + .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); } - .\32xl\:list-inside { - list-style-position: inside; + .\32xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); } - .\32xl\:list-outside { - list-style-position: outside; + .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); } - .\32xl\:list-none { - list-style-type: none; + .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); } - .\32xl\:list-disc { - list-style-type: disc; + .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); } - .\32xl\:list-decimal { - list-style-type: decimal; + .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); } - .\32xl\:m-0 { - margin: 0px; + .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); } - .\32xl\:m-1 { - margin: 0.25rem; + .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); } - .\32xl\:m-2 { - margin: 0.5rem; + .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); } - .\32xl\:m-3 { - margin: 0.75rem; + .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); } - .\32xl\:m-4 { - margin: 1rem; + .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); } - .\32xl\:m-5 { - margin: 1.25rem; + .\32xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-divide-opacity)); } - .\32xl\:m-6 { - margin: 1.5rem; + .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-divide-opacity)); } - .\32xl\:m-7 { - margin: 1.75rem; + .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-divide-opacity)); } - .\32xl\:m-8 { - margin: 2rem; + .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-divide-opacity)); } - .\32xl\:m-9 { - margin: 2.25rem; + .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-divide-opacity)); } - .\32xl\:m-10 { - margin: 2.5rem; + .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-divide-opacity)); } - .\32xl\:m-11 { - margin: 2.75rem; + .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-divide-opacity)); } - .\32xl\:m-12 { - margin: 3rem; + .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-divide-opacity)); } - .\32xl\:m-14 { - margin: 3.5rem; + .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-divide-opacity)); } - .\32xl\:m-16 { - margin: 4rem; + .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-divide-opacity)); } - .\32xl\:m-20 { - margin: 5rem; + .\32xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-divide-opacity)); } - .\32xl\:m-24 { - margin: 6rem; + .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-divide-opacity)); } - .\32xl\:m-28 { - margin: 7rem; + .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-divide-opacity)); } - .\32xl\:m-32 { - margin: 8rem; + .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-divide-opacity)); } - .\32xl\:m-36 { - margin: 9rem; + .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-divide-opacity)); } - .\32xl\:m-40 { - margin: 10rem; + .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); } - .\32xl\:m-44 { - margin: 11rem; + .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-divide-opacity)); } - .\32xl\:m-48 { - margin: 12rem; + .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-divide-opacity)); } - .\32xl\:m-52 { - margin: 13rem; + .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-divide-opacity)); } - .\32xl\:m-56 { - margin: 14rem; + .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-divide-opacity)); } - .\32xl\:m-60 { - margin: 15rem; + .\32xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-divide-opacity)); } - .\32xl\:m-64 { - margin: 16rem; + .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-divide-opacity)); } - .\32xl\:m-72 { - margin: 18rem; + .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-divide-opacity)); } - .\32xl\:m-80 { - margin: 20rem; + .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-divide-opacity)); } - .\32xl\:m-96 { - margin: 24rem; + .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-divide-opacity)); } - .\32xl\:m-auto { - margin: auto; + .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-divide-opacity)); } - .\32xl\:m-px { - margin: 1px; + .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-divide-opacity)); } - .\32xl\:m-0\.5 { - margin: 0.125rem; + .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-divide-opacity)); } - .\32xl\:m-1\.5 { - margin: 0.375rem; + .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-divide-opacity)); } - .\32xl\:m-2\.5 { - margin: 0.625rem; + .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-divide-opacity)); } - .\32xl\:m-3\.5 { - margin: 0.875rem; + .\32xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-divide-opacity)); } - .\32xl\:-m-0 { - margin: 0px; + .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-divide-opacity)); } - .\32xl\:-m-1 { - margin: -0.25rem; + .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-divide-opacity)); } - .\32xl\:-m-2 { - margin: -0.5rem; + .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-divide-opacity)); } - .\32xl\:-m-3 { - margin: -0.75rem; + .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-divide-opacity)); } - .\32xl\:-m-4 { - margin: -1rem; + .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); } - .\32xl\:-m-5 { - margin: -1.25rem; + .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-divide-opacity)); } - .\32xl\:-m-6 { - margin: -1.5rem; + .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-divide-opacity)); } - .\32xl\:-m-7 { - margin: -1.75rem; + .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-divide-opacity)); } - .\32xl\:-m-8 { - margin: -2rem; + .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-divide-opacity)); } - .\32xl\:-m-9 { - margin: -2.25rem; + .\32xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-divide-opacity)); } - .\32xl\:-m-10 { - margin: -2.5rem; + .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-divide-opacity)); } - .\32xl\:-m-11 { - margin: -2.75rem; + .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-divide-opacity)); } - .\32xl\:-m-12 { - margin: -3rem; + .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-divide-opacity)); } - .\32xl\:-m-14 { - margin: -3.5rem; + .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-divide-opacity)); } - .\32xl\:-m-16 { - margin: -4rem; + .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-divide-opacity)); } - .\32xl\:-m-20 { - margin: -5rem; + .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-divide-opacity)); } - .\32xl\:-m-24 { - margin: -6rem; + .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-divide-opacity)); } - .\32xl\:-m-28 { - margin: -7rem; + .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-divide-opacity)); } - .\32xl\:-m-32 { - margin: -8rem; + .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-divide-opacity)); } - .\32xl\:-m-36 { - margin: -9rem; + .\32xl\:divide-purple-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-divide-opacity)); } - .\32xl\:-m-40 { - margin: -10rem; + .\32xl\:divide-purple-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-divide-opacity)); } - .\32xl\:-m-44 { - margin: -11rem; + .\32xl\:divide-purple-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-divide-opacity)); } - .\32xl\:-m-48 { - margin: -12rem; + .\32xl\:divide-purple-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-divide-opacity)); } - .\32xl\:-m-52 { - margin: -13rem; + .\32xl\:divide-purple-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-divide-opacity)); } - .\32xl\:-m-56 { - margin: -14rem; + .\32xl\:divide-purple-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-divide-opacity)); } - .\32xl\:-m-60 { - margin: -15rem; + .\32xl\:divide-purple-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-divide-opacity)); } - .\32xl\:-m-64 { - margin: -16rem; + .\32xl\:divide-purple-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-divide-opacity)); } - .\32xl\:-m-72 { - margin: -18rem; + .\32xl\:divide-purple-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-divide-opacity)); } - .\32xl\:-m-80 { - margin: -20rem; + .\32xl\:divide-purple-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-divide-opacity)); } - .\32xl\:-m-96 { - margin: -24rem; + .\32xl\:divide-pink-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-divide-opacity)); } - .\32xl\:-m-px { - margin: -1px; + .\32xl\:divide-pink-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-divide-opacity)); } - .\32xl\:-m-0\.5 { - margin: -0.125rem; + .\32xl\:divide-pink-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-divide-opacity)); } - .\32xl\:-m-1\.5 { - margin: -0.375rem; + .\32xl\:divide-pink-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-divide-opacity)); } - .\32xl\:-m-2\.5 { - margin: -0.625rem; + .\32xl\:divide-pink-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-divide-opacity)); } - .\32xl\:-m-3\.5 { - margin: -0.875rem; + .\32xl\:divide-pink-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-divide-opacity)); } - .\32xl\:my-0 { - margin-top: 0px; - margin-bottom: 0px; + .\32xl\:divide-pink-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-divide-opacity)); } - .\32xl\:mx-0 { - margin-left: 0px; - margin-right: 0px; + .\32xl\:divide-pink-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-divide-opacity)); } - .\32xl\:my-1 { - margin-top: 0.25rem; - margin-bottom: 0.25rem; + .\32xl\:divide-pink-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-divide-opacity)); } - .\32xl\:mx-1 { - margin-left: 0.25rem; - margin-right: 0.25rem; + .\32xl\:divide-pink-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-divide-opacity)); } - .\32xl\:my-2 { - margin-top: 0.5rem; - margin-bottom: 0.5rem; + .\32xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; } - .\32xl\:mx-2 { - margin-left: 0.5rem; - margin-right: 0.5rem; + .\32xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; } - .\32xl\:my-3 { - margin-top: 0.75rem; - margin-bottom: 0.75rem; + .\32xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; } - .\32xl\:mx-3 { - margin-left: 0.75rem; - margin-right: 0.75rem; + .\32xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; } - .\32xl\:my-4 { - margin-top: 1rem; - margin-bottom: 1rem; + .\32xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; } - .\32xl\:mx-4 { - margin-left: 1rem; - margin-right: 1rem; + .\32xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; } - .\32xl\:my-5 { - margin-top: 1.25rem; - margin-bottom: 1.25rem; + .\32xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; } - .\32xl\:mx-5 { - margin-left: 1.25rem; - margin-right: 1.25rem; + .\32xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; } - .\32xl\:my-6 { - margin-top: 1.5rem; - margin-bottom: 1.5rem; + .\32xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; } - .\32xl\:mx-6 { - margin-left: 1.5rem; - margin-right: 1.5rem; + .\32xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; } - .\32xl\:my-7 { - margin-top: 1.75rem; - margin-bottom: 1.75rem; + .\32xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; } - .\32xl\:mx-7 { - margin-left: 1.75rem; - margin-right: 1.75rem; + .\32xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; } - .\32xl\:my-8 { - margin-top: 2rem; - margin-bottom: 2rem; + .\32xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; } - .\32xl\:mx-8 { - margin-left: 2rem; - margin-right: 2rem; + .\32xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; } - .\32xl\:my-9 { - margin-top: 2.25rem; - margin-bottom: 2.25rem; + .\32xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; } - .\32xl\:mx-9 { - margin-left: 2.25rem; - margin-right: 2.25rem; + .\32xl\:place-self-auto { + place-self: auto; } - .\32xl\:my-10 { - margin-top: 2.5rem; - margin-bottom: 2.5rem; + .\32xl\:place-self-start { + place-self: start; } - .\32xl\:mx-10 { - margin-left: 2.5rem; - margin-right: 2.5rem; + .\32xl\:place-self-end { + place-self: end; } - .\32xl\:my-11 { - margin-top: 2.75rem; - margin-bottom: 2.75rem; + .\32xl\:place-self-center { + place-self: center; } - .\32xl\:mx-11 { - margin-left: 2.75rem; - margin-right: 2.75rem; + .\32xl\:place-self-stretch { + place-self: stretch; } - .\32xl\:my-12 { - margin-top: 3rem; - margin-bottom: 3rem; + .\32xl\:self-auto { + align-self: auto; } - .\32xl\:mx-12 { - margin-left: 3rem; - margin-right: 3rem; + .\32xl\:self-start { + align-self: flex-start; } - .\32xl\:my-14 { - margin-top: 3.5rem; - margin-bottom: 3.5rem; + .\32xl\:self-end { + align-self: flex-end; } - .\32xl\:mx-14 { - margin-left: 3.5rem; - margin-right: 3.5rem; + .\32xl\:self-center { + align-self: center; } - .\32xl\:my-16 { - margin-top: 4rem; - margin-bottom: 4rem; + .\32xl\:self-stretch { + align-self: stretch; } - .\32xl\:mx-16 { - margin-left: 4rem; - margin-right: 4rem; + .\32xl\:justify-self-auto { + justify-self: auto; } - .\32xl\:my-20 { - margin-top: 5rem; - margin-bottom: 5rem; + .\32xl\:justify-self-start { + justify-self: start; } - .\32xl\:mx-20 { - margin-left: 5rem; - margin-right: 5rem; + .\32xl\:justify-self-end { + justify-self: end; } - .\32xl\:my-24 { - margin-top: 6rem; - margin-bottom: 6rem; + .\32xl\:justify-self-center { + justify-self: center; } - .\32xl\:mx-24 { - margin-left: 6rem; - margin-right: 6rem; + .\32xl\:justify-self-stretch { + justify-self: stretch; } - .\32xl\:my-28 { - margin-top: 7rem; - margin-bottom: 7rem; + .\32xl\:overflow-auto { + overflow: auto; } - .\32xl\:mx-28 { - margin-left: 7rem; - margin-right: 7rem; + .\32xl\:overflow-hidden { + overflow: hidden; } - .\32xl\:my-32 { - margin-top: 8rem; - margin-bottom: 8rem; + .\32xl\:overflow-visible { + overflow: visible; } - .\32xl\:mx-32 { - margin-left: 8rem; - margin-right: 8rem; + .\32xl\:overflow-scroll { + overflow: scroll; } - .\32xl\:my-36 { - margin-top: 9rem; - margin-bottom: 9rem; + .\32xl\:overflow-x-auto { + overflow-x: auto; } - .\32xl\:mx-36 { - margin-left: 9rem; - margin-right: 9rem; + .\32xl\:overflow-y-auto { + overflow-y: auto; } - .\32xl\:my-40 { - margin-top: 10rem; - margin-bottom: 10rem; + .\32xl\:overflow-x-hidden { + overflow-x: hidden; } - .\32xl\:mx-40 { - margin-left: 10rem; - margin-right: 10rem; + .\32xl\:overflow-y-hidden { + overflow-y: hidden; } - .\32xl\:my-44 { - margin-top: 11rem; - margin-bottom: 11rem; + .\32xl\:overflow-x-visible { + overflow-x: visible; } - .\32xl\:mx-44 { - margin-left: 11rem; - margin-right: 11rem; + .\32xl\:overflow-y-visible { + overflow-y: visible; } - .\32xl\:my-48 { - margin-top: 12rem; - margin-bottom: 12rem; + .\32xl\:overflow-x-scroll { + overflow-x: scroll; } - .\32xl\:mx-48 { - margin-left: 12rem; - margin-right: 12rem; + .\32xl\:overflow-y-scroll { + overflow-y: scroll; } - .\32xl\:my-52 { - margin-top: 13rem; - margin-bottom: 13rem; + .\32xl\:overscroll-auto { + overscroll-behavior: auto; } - .\32xl\:mx-52 { - margin-left: 13rem; - margin-right: 13rem; + .\32xl\:overscroll-contain { + overscroll-behavior: contain; } - .\32xl\:my-56 { - margin-top: 14rem; - margin-bottom: 14rem; + .\32xl\:overscroll-none { + overscroll-behavior: none; } - .\32xl\:mx-56 { - margin-left: 14rem; - margin-right: 14rem; + .\32xl\:overscroll-y-auto { + overscroll-behavior-y: auto; } - .\32xl\:my-60 { - margin-top: 15rem; - margin-bottom: 15rem; + .\32xl\:overscroll-y-contain { + overscroll-behavior-y: contain; } - .\32xl\:mx-60 { - margin-left: 15rem; - margin-right: 15rem; + .\32xl\:overscroll-y-none { + overscroll-behavior-y: none; } - .\32xl\:my-64 { - margin-top: 16rem; - margin-bottom: 16rem; + .\32xl\:overscroll-x-auto { + overscroll-behavior-x: auto; } - .\32xl\:mx-64 { - margin-left: 16rem; - margin-right: 16rem; + .\32xl\:overscroll-x-contain { + overscroll-behavior-x: contain; } - .\32xl\:my-72 { - margin-top: 18rem; - margin-bottom: 18rem; + .\32xl\:overscroll-x-none { + overscroll-behavior-x: none; } - .\32xl\:mx-72 { - margin-left: 18rem; - margin-right: 18rem; + .\32xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - .\32xl\:my-80 { - margin-top: 20rem; - margin-bottom: 20rem; + .\32xl\:overflow-ellipsis { + text-overflow: ellipsis; } - .\32xl\:mx-80 { - margin-left: 20rem; - margin-right: 20rem; + .\32xl\:overflow-clip { + text-overflow: clip; } - .\32xl\:my-96 { - margin-top: 24rem; - margin-bottom: 24rem; + .\32xl\:whitespace-normal { + white-space: normal; } - .\32xl\:mx-96 { - margin-left: 24rem; - margin-right: 24rem; + .\32xl\:whitespace-nowrap { + white-space: nowrap; } - .\32xl\:my-auto { - margin-top: auto; - margin-bottom: auto; + .\32xl\:whitespace-pre { + white-space: pre; } - .\32xl\:mx-auto { - margin-left: auto; - margin-right: auto; + .\32xl\:whitespace-pre-line { + white-space: pre-line; } - .\32xl\:my-px { - margin-top: 1px; - margin-bottom: 1px; + .\32xl\:whitespace-pre-wrap { + white-space: pre-wrap; } - .\32xl\:mx-px { - margin-left: 1px; - margin-right: 1px; + .\32xl\:break-normal { + overflow-wrap: normal; + word-break: normal; } - .\32xl\:my-0\.5 { - margin-top: 0.125rem; - margin-bottom: 0.125rem; + .\32xl\:break-words { + overflow-wrap: break-word; } - .\32xl\:mx-0\.5 { - margin-left: 0.125rem; - margin-right: 0.125rem; + .\32xl\:break-all { + word-break: break-all; } - .\32xl\:my-1\.5 { - margin-top: 0.375rem; - margin-bottom: 0.375rem; + .\32xl\:rounded-none { + border-radius: 0px; } - .\32xl\:mx-1\.5 { - margin-left: 0.375rem; - margin-right: 0.375rem; + .\32xl\:rounded-sm { + border-radius: 0.125rem; } - .\32xl\:my-2\.5 { - margin-top: 0.625rem; - margin-bottom: 0.625rem; + .\32xl\:rounded { + border-radius: 0.25rem; } - .\32xl\:mx-2\.5 { - margin-left: 0.625rem; - margin-right: 0.625rem; + .\32xl\:rounded-md { + border-radius: 0.375rem; } - .\32xl\:my-3\.5 { - margin-top: 0.875rem; - margin-bottom: 0.875rem; + .\32xl\:rounded-lg { + border-radius: 0.5rem; } - .\32xl\:mx-3\.5 { - margin-left: 0.875rem; - margin-right: 0.875rem; + .\32xl\:rounded-xl { + border-radius: 0.75rem; } - .\32xl\:-my-0 { - margin-top: 0px; - margin-bottom: 0px; + .\32xl\:rounded-2xl { + border-radius: 1rem; } - .\32xl\:-mx-0 { - margin-left: 0px; - margin-right: 0px; + .\32xl\:rounded-3xl { + border-radius: 1.5rem; } - .\32xl\:-my-1 { - margin-top: -0.25rem; - margin-bottom: -0.25rem; + .\32xl\:rounded-full { + border-radius: 9999px; } - .\32xl\:-mx-1 { - margin-left: -0.25rem; - margin-right: -0.25rem; + .\32xl\:rounded-t-none { + border-top-left-radius: 0px; + border-top-right-radius: 0px; } - .\32xl\:-my-2 { - margin-top: -0.5rem; - margin-bottom: -0.5rem; + .\32xl\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; } - .\32xl\:-mx-2 { - margin-left: -0.5rem; - margin-right: -0.5rem; + .\32xl\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; } - .\32xl\:-my-3 { - margin-top: -0.75rem; - margin-bottom: -0.75rem; + .\32xl\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; } - .\32xl\:-mx-3 { - margin-left: -0.75rem; - margin-right: -0.75rem; + .\32xl\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; } - .\32xl\:-my-4 { - margin-top: -1rem; - margin-bottom: -1rem; + .\32xl\:rounded-t-xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; } - .\32xl\:-mx-4 { - margin-left: -1rem; - margin-right: -1rem; + .\32xl\:rounded-t-2xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; } - .\32xl\:-my-5 { - margin-top: -1.25rem; - margin-bottom: -1.25rem; + .\32xl\:rounded-t-3xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; } - .\32xl\:-mx-5 { - margin-left: -1.25rem; - margin-right: -1.25rem; + .\32xl\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; } - .\32xl\:-my-6 { - margin-top: -1.5rem; - margin-bottom: -1.5rem; + .\32xl\:rounded-r-none { + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; } - .\32xl\:-mx-6 { - margin-left: -1.5rem; - margin-right: -1.5rem; + .\32xl\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; } - .\32xl\:-my-7 { - margin-top: -1.75rem; - margin-bottom: -1.75rem; + .\32xl\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } - .\32xl\:-mx-7 { - margin-left: -1.75rem; - margin-right: -1.75rem; + .\32xl\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; } - .\32xl\:-my-8 { - margin-top: -2rem; - margin-bottom: -2rem; + .\32xl\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; } - .\32xl\:-mx-8 { - margin-left: -2rem; - margin-right: -2rem; + .\32xl\:rounded-r-xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; } - .\32xl\:-my-9 { - margin-top: -2.25rem; - margin-bottom: -2.25rem; + .\32xl\:rounded-r-2xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; } - .\32xl\:-mx-9 { - margin-left: -2.25rem; - margin-right: -2.25rem; + .\32xl\:rounded-r-3xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; } - .\32xl\:-my-10 { - margin-top: -2.5rem; - margin-bottom: -2.5rem; + .\32xl\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; } - .\32xl\:-mx-10 { - margin-left: -2.5rem; - margin-right: -2.5rem; + .\32xl\:rounded-b-none { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } - .\32xl\:-my-11 { - margin-top: -2.75rem; - margin-bottom: -2.75rem; + .\32xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .\32xl\:-mx-11 { - margin-left: -2.75rem; - margin-right: -2.75rem; + .\32xl\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .\32xl\:-my-12 { - margin-top: -3rem; - margin-bottom: -3rem; + .\32xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .\32xl\:-mx-12 { - margin-left: -3rem; - margin-right: -3rem; + .\32xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .\32xl\:-my-14 { - margin-top: -3.5rem; - margin-bottom: -3.5rem; + .\32xl\:rounded-b-xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .\32xl\:-mx-14 { - margin-left: -3.5rem; - margin-right: -3.5rem; + .\32xl\:rounded-b-2xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; } - .\32xl\:-my-16 { - margin-top: -4rem; - margin-bottom: -4rem; + .\32xl\:rounded-b-3xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .\32xl\:-mx-16 { - margin-left: -4rem; - margin-right: -4rem; + .\32xl\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; } - .\32xl\:-my-20 { - margin-top: -5rem; - margin-bottom: -5rem; + .\32xl\:rounded-l-none { + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; } - .\32xl\:-mx-20 { - margin-left: -5rem; - margin-right: -5rem; + .\32xl\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; } - .\32xl\:-my-24 { - margin-top: -6rem; - margin-bottom: -6rem; + .\32xl\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } - .\32xl\:-mx-24 { - margin-left: -6rem; - margin-right: -6rem; + .\32xl\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; } - .\32xl\:-my-28 { - margin-top: -7rem; - margin-bottom: -7rem; + .\32xl\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; } - .\32xl\:-mx-28 { - margin-left: -7rem; - margin-right: -7rem; + .\32xl\:rounded-l-xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; } - .\32xl\:-my-32 { - margin-top: -8rem; - margin-bottom: -8rem; + .\32xl\:rounded-l-2xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; } - .\32xl\:-mx-32 { - margin-left: -8rem; - margin-right: -8rem; + .\32xl\:rounded-l-3xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; } - .\32xl\:-my-36 { - margin-top: -9rem; - margin-bottom: -9rem; + .\32xl\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; } - .\32xl\:-mx-36 { - margin-left: -9rem; - margin-right: -9rem; + .\32xl\:rounded-tl-none { + border-top-left-radius: 0px; } - .\32xl\:-my-40 { - margin-top: -10rem; - margin-bottom: -10rem; + .\32xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem; } - .\32xl\:-mx-40 { - margin-left: -10rem; - margin-right: -10rem; + .\32xl\:rounded-tl { + border-top-left-radius: 0.25rem; } - .\32xl\:-my-44 { - margin-top: -11rem; - margin-bottom: -11rem; + .\32xl\:rounded-tl-md { + border-top-left-radius: 0.375rem; } - .\32xl\:-mx-44 { - margin-left: -11rem; - margin-right: -11rem; + .\32xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem; } - .\32xl\:-my-48 { - margin-top: -12rem; - margin-bottom: -12rem; + .\32xl\:rounded-tl-xl { + border-top-left-radius: 0.75rem; } - .\32xl\:-mx-48 { - margin-left: -12rem; - margin-right: -12rem; + .\32xl\:rounded-tl-2xl { + border-top-left-radius: 1rem; } - .\32xl\:-my-52 { - margin-top: -13rem; - margin-bottom: -13rem; + .\32xl\:rounded-tl-3xl { + border-top-left-radius: 1.5rem; } - .\32xl\:-mx-52 { - margin-left: -13rem; - margin-right: -13rem; + .\32xl\:rounded-tl-full { + border-top-left-radius: 9999px; } - .\32xl\:-my-56 { - margin-top: -14rem; - margin-bottom: -14rem; + .\32xl\:rounded-tr-none { + border-top-right-radius: 0px; } - .\32xl\:-mx-56 { - margin-left: -14rem; - margin-right: -14rem; + .\32xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem; } - .\32xl\:-my-60 { - margin-top: -15rem; - margin-bottom: -15rem; + .\32xl\:rounded-tr { + border-top-right-radius: 0.25rem; } - .\32xl\:-mx-60 { - margin-left: -15rem; - margin-right: -15rem; + .\32xl\:rounded-tr-md { + border-top-right-radius: 0.375rem; } - .\32xl\:-my-64 { - margin-top: -16rem; - margin-bottom: -16rem; + .\32xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem; } - .\32xl\:-mx-64 { - margin-left: -16rem; - margin-right: -16rem; + .\32xl\:rounded-tr-xl { + border-top-right-radius: 0.75rem; } - .\32xl\:-my-72 { - margin-top: -18rem; - margin-bottom: -18rem; + .\32xl\:rounded-tr-2xl { + border-top-right-radius: 1rem; } - .\32xl\:-mx-72 { - margin-left: -18rem; - margin-right: -18rem; + .\32xl\:rounded-tr-3xl { + border-top-right-radius: 1.5rem; } - .\32xl\:-my-80 { - margin-top: -20rem; - margin-bottom: -20rem; + .\32xl\:rounded-tr-full { + border-top-right-radius: 9999px; } - .\32xl\:-mx-80 { - margin-left: -20rem; - margin-right: -20rem; + .\32xl\:rounded-br-none { + border-bottom-right-radius: 0px; } - .\32xl\:-my-96 { - margin-top: -24rem; - margin-bottom: -24rem; + .\32xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; } - .\32xl\:-mx-96 { - margin-left: -24rem; - margin-right: -24rem; + .\32xl\:rounded-br { + border-bottom-right-radius: 0.25rem; } - .\32xl\:-my-px { - margin-top: -1px; - margin-bottom: -1px; + .\32xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem; } - .\32xl\:-mx-px { - margin-left: -1px; - margin-right: -1px; + .\32xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; } - .\32xl\:-my-0\.5 { - margin-top: -0.125rem; - margin-bottom: -0.125rem; + .\32xl\:rounded-br-xl { + border-bottom-right-radius: 0.75rem; } - .\32xl\:-mx-0\.5 { - margin-left: -0.125rem; - margin-right: -0.125rem; + .\32xl\:rounded-br-2xl { + border-bottom-right-radius: 1rem; } - .\32xl\:-my-1\.5 { - margin-top: -0.375rem; - margin-bottom: -0.375rem; + .\32xl\:rounded-br-3xl { + border-bottom-right-radius: 1.5rem; } - .\32xl\:-mx-1\.5 { - margin-left: -0.375rem; - margin-right: -0.375rem; + .\32xl\:rounded-br-full { + border-bottom-right-radius: 9999px; } - .\32xl\:-my-2\.5 { - margin-top: -0.625rem; - margin-bottom: -0.625rem; + .\32xl\:rounded-bl-none { + border-bottom-left-radius: 0px; } - .\32xl\:-mx-2\.5 { - margin-left: -0.625rem; - margin-right: -0.625rem; + .\32xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; } - .\32xl\:-my-3\.5 { - margin-top: -0.875rem; - margin-bottom: -0.875rem; + .\32xl\:rounded-bl { + border-bottom-left-radius: 0.25rem; } - .\32xl\:-mx-3\.5 { - margin-left: -0.875rem; - margin-right: -0.875rem; + .\32xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; } - .\32xl\:mt-0 { - margin-top: 0px; + .\32xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; } - .\32xl\:mr-0 { - margin-right: 0px; + .\32xl\:rounded-bl-xl { + border-bottom-left-radius: 0.75rem; } - .\32xl\:mb-0 { - margin-bottom: 0px; + .\32xl\:rounded-bl-2xl { + border-bottom-left-radius: 1rem; } - .\32xl\:ml-0 { - margin-left: 0px; + .\32xl\:rounded-bl-3xl { + border-bottom-left-radius: 1.5rem; } - .\32xl\:mt-1 { - margin-top: 0.25rem; + .\32xl\:rounded-bl-full { + border-bottom-left-radius: 9999px; } - .\32xl\:mr-1 { - margin-right: 0.25rem; + .\32xl\:border-0 { + border-width: 0px; } - .\32xl\:mb-1 { - margin-bottom: 0.25rem; + .\32xl\:border-2 { + border-width: 2px; } - .\32xl\:ml-1 { - margin-left: 0.25rem; + .\32xl\:border-4 { + border-width: 4px; } - .\32xl\:mt-2 { - margin-top: 0.5rem; + .\32xl\:border-8 { + border-width: 8px; } - .\32xl\:mr-2 { - margin-right: 0.5rem; + .\32xl\:border { + border-width: 1px; } - .\32xl\:mb-2 { - margin-bottom: 0.5rem; + .\32xl\:border-t-0 { + border-top-width: 0px; } - .\32xl\:ml-2 { - margin-left: 0.5rem; + .\32xl\:border-t-2 { + border-top-width: 2px; } - .\32xl\:mt-3 { - margin-top: 0.75rem; + .\32xl\:border-t-4 { + border-top-width: 4px; } - .\32xl\:mr-3 { - margin-right: 0.75rem; + .\32xl\:border-t-8 { + border-top-width: 8px; } - .\32xl\:mb-3 { - margin-bottom: 0.75rem; + .\32xl\:border-t { + border-top-width: 1px; } - .\32xl\:ml-3 { - margin-left: 0.75rem; + .\32xl\:border-r-0 { + border-right-width: 0px; } - .\32xl\:mt-4 { - margin-top: 1rem; + .\32xl\:border-r-2 { + border-right-width: 2px; } - .\32xl\:mr-4 { - margin-right: 1rem; + .\32xl\:border-r-4 { + border-right-width: 4px; } - .\32xl\:mb-4 { - margin-bottom: 1rem; + .\32xl\:border-r-8 { + border-right-width: 8px; } - .\32xl\:ml-4 { - margin-left: 1rem; + .\32xl\:border-r { + border-right-width: 1px; } - .\32xl\:mt-5 { - margin-top: 1.25rem; + .\32xl\:border-b-0 { + border-bottom-width: 0px; } - .\32xl\:mr-5 { - margin-right: 1.25rem; + .\32xl\:border-b-2 { + border-bottom-width: 2px; } - .\32xl\:mb-5 { - margin-bottom: 1.25rem; + .\32xl\:border-b-4 { + border-bottom-width: 4px; } - .\32xl\:ml-5 { - margin-left: 1.25rem; + .\32xl\:border-b-8 { + border-bottom-width: 8px; } - .\32xl\:mt-6 { - margin-top: 1.5rem; + .\32xl\:border-b { + border-bottom-width: 1px; } - .\32xl\:mr-6 { - margin-right: 1.5rem; + .\32xl\:border-l-0 { + border-left-width: 0px; } - .\32xl\:mb-6 { - margin-bottom: 1.5rem; + .\32xl\:border-l-2 { + border-left-width: 2px; } - .\32xl\:ml-6 { - margin-left: 1.5rem; + .\32xl\:border-l-4 { + border-left-width: 4px; } - .\32xl\:mt-7 { - margin-top: 1.75rem; + .\32xl\:border-l-8 { + border-left-width: 8px; } - .\32xl\:mr-7 { - margin-right: 1.75rem; + .\32xl\:border-l { + border-left-width: 1px; } - .\32xl\:mb-7 { - margin-bottom: 1.75rem; + .\32xl\:border-solid { + border-style: solid; } - .\32xl\:ml-7 { - margin-left: 1.75rem; + .\32xl\:border-dashed { + border-style: dashed; } - .\32xl\:mt-8 { - margin-top: 2rem; + .\32xl\:border-dotted { + border-style: dotted; } - .\32xl\:mr-8 { - margin-right: 2rem; + .\32xl\:border-double { + border-style: double; } - .\32xl\:mb-8 { - margin-bottom: 2rem; + .\32xl\:border-none { + border-style: none; } - .\32xl\:ml-8 { - margin-left: 2rem; + .\32xl\:border-transparent { + border-color: transparent; } - .\32xl\:mt-9 { - margin-top: 2.25rem; + .\32xl\:border-current { + border-color: currentColor; } - .\32xl\:mr-9 { - margin-right: 2.25rem; + .\32xl\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .\32xl\:mb-9 { - margin-bottom: 2.25rem; + .\32xl\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .\32xl\:ml-9 { - margin-left: 2.25rem; + .\32xl\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .\32xl\:mt-10 { - margin-top: 2.5rem; + .\32xl\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .\32xl\:mr-10 { - margin-right: 2.5rem; + .\32xl\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .\32xl\:mb-10 { - margin-bottom: 2.5rem; + .\32xl\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .\32xl\:ml-10 { - margin-left: 2.5rem; + .\32xl\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .\32xl\:mt-11 { - margin-top: 2.75rem; + .\32xl\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .\32xl\:mr-11 { - margin-right: 2.75rem; + .\32xl\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .\32xl\:mb-11 { - margin-bottom: 2.75rem; + .\32xl\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .\32xl\:ml-11 { - margin-left: 2.75rem; + .\32xl\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .\32xl\:mt-12 { - margin-top: 3rem; + .\32xl\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .\32xl\:mr-12 { - margin-right: 3rem; + .\32xl\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .\32xl\:mb-12 { - margin-bottom: 3rem; + .\32xl\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .\32xl\:ml-12 { - margin-left: 3rem; + .\32xl\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .\32xl\:mt-14 { - margin-top: 3.5rem; + .\32xl\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .\32xl\:mr-14 { - margin-right: 3.5rem; + .\32xl\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .\32xl\:mb-14 { - margin-bottom: 3.5rem; + .\32xl\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .\32xl\:ml-14 { - margin-left: 3.5rem; + .\32xl\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .\32xl\:mt-16 { - margin-top: 4rem; + .\32xl\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .\32xl\:mr-16 { - margin-right: 4rem; + .\32xl\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .\32xl\:mb-16 { - margin-bottom: 4rem; + .\32xl\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .\32xl\:ml-16 { - margin-left: 4rem; + .\32xl\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .\32xl\:mt-20 { - margin-top: 5rem; + .\32xl\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .\32xl\:mr-20 { - margin-right: 5rem; + .\32xl\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .\32xl\:mb-20 { - margin-bottom: 5rem; + .\32xl\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .\32xl\:ml-20 { - margin-left: 5rem; + .\32xl\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .\32xl\:mt-24 { - margin-top: 6rem; + .\32xl\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .\32xl\:mr-24 { - margin-right: 6rem; + .\32xl\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .\32xl\:mb-24 { - margin-bottom: 6rem; + .\32xl\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .\32xl\:ml-24 { - margin-left: 6rem; + .\32xl\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .\32xl\:mt-28 { - margin-top: 7rem; + .\32xl\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .\32xl\:mr-28 { - margin-right: 7rem; + .\32xl\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .\32xl\:mb-28 { - margin-bottom: 7rem; + .\32xl\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .\32xl\:ml-28 { - margin-left: 7rem; + .\32xl\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .\32xl\:mt-32 { - margin-top: 8rem; + .\32xl\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .\32xl\:mr-32 { - margin-right: 8rem; + .\32xl\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .\32xl\:mb-32 { - margin-bottom: 8rem; + .\32xl\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .\32xl\:ml-32 { - margin-left: 8rem; + .\32xl\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .\32xl\:mt-36 { - margin-top: 9rem; + .\32xl\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .\32xl\:mr-36 { - margin-right: 9rem; + .\32xl\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .\32xl\:mb-36 { - margin-bottom: 9rem; + .\32xl\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .\32xl\:ml-36 { - margin-left: 9rem; + .\32xl\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .\32xl\:mt-40 { - margin-top: 10rem; + .\32xl\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .\32xl\:mr-40 { - margin-right: 10rem; + .\32xl\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .\32xl\:mb-40 { - margin-bottom: 10rem; + .\32xl\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .\32xl\:ml-40 { - margin-left: 10rem; + .\32xl\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .\32xl\:mt-44 { - margin-top: 11rem; + .\32xl\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .\32xl\:mr-44 { - margin-right: 11rem; + .\32xl\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .\32xl\:mb-44 { - margin-bottom: 11rem; + .\32xl\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .\32xl\:ml-44 { - margin-left: 11rem; + .\32xl\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .\32xl\:mt-48 { - margin-top: 12rem; + .\32xl\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .\32xl\:mr-48 { - margin-right: 12rem; + .\32xl\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .\32xl\:mb-48 { - margin-bottom: 12rem; + .\32xl\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .\32xl\:ml-48 { - margin-left: 12rem; + .\32xl\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .\32xl\:mt-52 { - margin-top: 13rem; + .\32xl\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .\32xl\:mr-52 { - margin-right: 13rem; + .\32xl\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .\32xl\:mb-52 { - margin-bottom: 13rem; + .\32xl\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .\32xl\:ml-52 { - margin-left: 13rem; + .\32xl\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .\32xl\:mt-56 { - margin-top: 14rem; + .\32xl\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .\32xl\:mr-56 { - margin-right: 14rem; + .\32xl\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .\32xl\:mb-56 { - margin-bottom: 14rem; + .\32xl\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .\32xl\:ml-56 { - margin-left: 14rem; + .\32xl\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .\32xl\:mt-60 { - margin-top: 15rem; + .\32xl\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .\32xl\:mr-60 { - margin-right: 15rem; + .\32xl\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .\32xl\:mb-60 { - margin-bottom: 15rem; + .\32xl\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .\32xl\:ml-60 { - margin-left: 15rem; + .\32xl\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .\32xl\:mt-64 { - margin-top: 16rem; + .\32xl\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .\32xl\:mr-64 { - margin-right: 16rem; + .\32xl\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .\32xl\:mb-64 { - margin-bottom: 16rem; + .\32xl\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .\32xl\:ml-64 { - margin-left: 16rem; + .\32xl\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .\32xl\:mt-72 { - margin-top: 18rem; + .\32xl\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .\32xl\:mr-72 { - margin-right: 18rem; + .\32xl\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .\32xl\:mb-72 { - margin-bottom: 18rem; + .\32xl\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .\32xl\:ml-72 { - margin-left: 18rem; + .\32xl\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .\32xl\:mt-80 { - margin-top: 20rem; + .\32xl\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); + } + + .\32xl\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .\32xl\:mr-80 { - margin-right: 20rem; + .\32xl\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .\32xl\:mb-80 { - margin-bottom: 20rem; + .\32xl\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .\32xl\:ml-80 { - margin-left: 20rem; + .\32xl\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .\32xl\:mt-96 { - margin-top: 24rem; + .\32xl\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .\32xl\:mr-96 { - margin-right: 24rem; + .\32xl\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .\32xl\:mb-96 { - margin-bottom: 24rem; + .group:hover .\32xl\:group-hover\:border-transparent { + border-color: transparent; } - .\32xl\:ml-96 { - margin-left: 24rem; + .group:hover .\32xl\:group-hover\:border-current { + border-color: currentColor; } - .\32xl\:mt-auto { - margin-top: auto; + .group:hover .\32xl\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .\32xl\:mr-auto { - margin-right: auto; + .group:hover .\32xl\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .\32xl\:mb-auto { - margin-bottom: auto; + .group:hover .\32xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .\32xl\:ml-auto { - margin-left: auto; + .group:hover .\32xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .\32xl\:mt-px { - margin-top: 1px; + .group:hover .\32xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .\32xl\:mr-px { - margin-right: 1px; + .group:hover .\32xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .\32xl\:mb-px { - margin-bottom: 1px; + .group:hover .\32xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .\32xl\:ml-px { - margin-left: 1px; + .group:hover .\32xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .\32xl\:mt-0\.5 { - margin-top: 0.125rem; + .group:hover .\32xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .\32xl\:mr-0\.5 { - margin-right: 0.125rem; + .group:hover .\32xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .\32xl\:mb-0\.5 { - margin-bottom: 0.125rem; + .group:hover .\32xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .\32xl\:ml-0\.5 { - margin-left: 0.125rem; + .group:hover .\32xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .\32xl\:mt-1\.5 { - margin-top: 0.375rem; + .group:hover .\32xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .\32xl\:mr-1\.5 { - margin-right: 0.375rem; + .group:hover .\32xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .\32xl\:mb-1\.5 { - margin-bottom: 0.375rem; + .group:hover .\32xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .\32xl\:ml-1\.5 { - margin-left: 0.375rem; + .group:hover .\32xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .\32xl\:mt-2\.5 { - margin-top: 0.625rem; + .group:hover .\32xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .\32xl\:mr-2\.5 { - margin-right: 0.625rem; + .group:hover .\32xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .\32xl\:mb-2\.5 { - margin-bottom: 0.625rem; + .group:hover .\32xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .\32xl\:ml-2\.5 { - margin-left: 0.625rem; + .group:hover .\32xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .\32xl\:mt-3\.5 { - margin-top: 0.875rem; + .group:hover .\32xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .\32xl\:mr-3\.5 { - margin-right: 0.875rem; + .group:hover .\32xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .\32xl\:mb-3\.5 { - margin-bottom: 0.875rem; + .group:hover .\32xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .\32xl\:ml-3\.5 { - margin-left: 0.875rem; + .group:hover .\32xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .\32xl\:-mt-0 { - margin-top: 0px; + .group:hover .\32xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .\32xl\:-mr-0 { - margin-right: 0px; + .group:hover .\32xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .\32xl\:-mb-0 { - margin-bottom: 0px; + .group:hover .\32xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .\32xl\:-ml-0 { - margin-left: 0px; + .group:hover .\32xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .\32xl\:-mt-1 { - margin-top: -0.25rem; + .group:hover .\32xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .\32xl\:-mr-1 { - margin-right: -0.25rem; + .group:hover .\32xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .\32xl\:-mb-1 { - margin-bottom: -0.25rem; + .group:hover .\32xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .\32xl\:-ml-1 { - margin-left: -0.25rem; + .group:hover .\32xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .\32xl\:-mt-2 { - margin-top: -0.5rem; + .group:hover .\32xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .\32xl\:-mr-2 { - margin-right: -0.5rem; + .group:hover .\32xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .\32xl\:-mb-2 { - margin-bottom: -0.5rem; + .group:hover .\32xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .\32xl\:-ml-2 { - margin-left: -0.5rem; + .group:hover .\32xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .\32xl\:-mt-3 { - margin-top: -0.75rem; + .group:hover .\32xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .\32xl\:-mr-3 { - margin-right: -0.75rem; + .group:hover .\32xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .\32xl\:-mb-3 { - margin-bottom: -0.75rem; + .group:hover .\32xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .\32xl\:-ml-3 { - margin-left: -0.75rem; + .group:hover .\32xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .\32xl\:-mt-4 { - margin-top: -1rem; + .group:hover .\32xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .\32xl\:-mr-4 { - margin-right: -1rem; + .group:hover .\32xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .\32xl\:-mb-4 { - margin-bottom: -1rem; + .group:hover .\32xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .\32xl\:-ml-4 { - margin-left: -1rem; + .group:hover .\32xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .\32xl\:-mt-5 { - margin-top: -1.25rem; + .group:hover .\32xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .\32xl\:-mr-5 { - margin-right: -1.25rem; + .group:hover .\32xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .\32xl\:-mb-5 { - margin-bottom: -1.25rem; + .group:hover .\32xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .\32xl\:-ml-5 { - margin-left: -1.25rem; + .group:hover .\32xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .\32xl\:-mt-6 { - margin-top: -1.5rem; + .group:hover .\32xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .\32xl\:-mr-6 { - margin-right: -1.5rem; + .group:hover .\32xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .\32xl\:-mb-6 { - margin-bottom: -1.5rem; + .group:hover .\32xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .\32xl\:-ml-6 { - margin-left: -1.5rem; + .group:hover .\32xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .\32xl\:-mt-7 { - margin-top: -1.75rem; + .group:hover .\32xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .\32xl\:-mr-7 { - margin-right: -1.75rem; + .group:hover .\32xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .\32xl\:-mb-7 { - margin-bottom: -1.75rem; + .group:hover .\32xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .\32xl\:-ml-7 { - margin-left: -1.75rem; + .group:hover .\32xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .\32xl\:-mt-8 { - margin-top: -2rem; + .group:hover .\32xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .\32xl\:-mr-8 { - margin-right: -2rem; + .group:hover .\32xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .\32xl\:-mb-8 { - margin-bottom: -2rem; + .group:hover .\32xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .\32xl\:-ml-8 { - margin-left: -2rem; + .group:hover .\32xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .\32xl\:-mt-9 { - margin-top: -2.25rem; + .group:hover .\32xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .\32xl\:-mr-9 { - margin-right: -2.25rem; + .group:hover .\32xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .\32xl\:-mb-9 { - margin-bottom: -2.25rem; + .group:hover .\32xl\:group-hover\:border-purple-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .\32xl\:-ml-9 { - margin-left: -2.25rem; + .group:hover .\32xl\:group-hover\:border-purple-100 { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .\32xl\:-mt-10 { - margin-top: -2.5rem; + .group:hover .\32xl\:group-hover\:border-purple-200 { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .\32xl\:-mr-10 { - margin-right: -2.5rem; + .group:hover .\32xl\:group-hover\:border-purple-300 { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .\32xl\:-mb-10 { - margin-bottom: -2.5rem; + .group:hover .\32xl\:group-hover\:border-purple-400 { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .\32xl\:-ml-10 { - margin-left: -2.5rem; + .group:hover .\32xl\:group-hover\:border-purple-500 { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .\32xl\:-mt-11 { - margin-top: -2.75rem; + .group:hover .\32xl\:group-hover\:border-purple-600 { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .\32xl\:-mr-11 { - margin-right: -2.75rem; + .group:hover .\32xl\:group-hover\:border-purple-700 { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .\32xl\:-mb-11 { - margin-bottom: -2.75rem; + .group:hover .\32xl\:group-hover\:border-purple-800 { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .\32xl\:-ml-11 { - margin-left: -2.75rem; + .group:hover .\32xl\:group-hover\:border-purple-900 { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .\32xl\:-mt-12 { - margin-top: -3rem; + .group:hover .\32xl\:group-hover\:border-pink-50 { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .\32xl\:-mr-12 { - margin-right: -3rem; + .group:hover .\32xl\:group-hover\:border-pink-100 { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .\32xl\:-mb-12 { - margin-bottom: -3rem; + .group:hover .\32xl\:group-hover\:border-pink-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .\32xl\:-ml-12 { - margin-left: -3rem; + .group:hover .\32xl\:group-hover\:border-pink-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .\32xl\:-mt-14 { - margin-top: -3.5rem; + .group:hover .\32xl\:group-hover\:border-pink-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .\32xl\:-mr-14 { - margin-right: -3.5rem; + .group:hover .\32xl\:group-hover\:border-pink-500 { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .\32xl\:-mb-14 { - margin-bottom: -3.5rem; + .group:hover .\32xl\:group-hover\:border-pink-600 { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .\32xl\:-ml-14 { - margin-left: -3.5rem; + .group:hover .\32xl\:group-hover\:border-pink-700 { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .\32xl\:-mt-16 { - margin-top: -4rem; + .group:hover .\32xl\:group-hover\:border-pink-800 { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .\32xl\:-mr-16 { - margin-right: -4rem; + .group:hover .\32xl\:group-hover\:border-pink-900 { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .\32xl\:-mb-16 { - margin-bottom: -4rem; + .\32xl\:focus-within\:border-transparent:focus-within { + border-color: transparent; } - .\32xl\:-ml-16 { - margin-left: -4rem; + .\32xl\:focus-within\:border-current:focus-within { + border-color: currentColor; } - .\32xl\:-mt-20 { - margin-top: -5rem; + .\32xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .\32xl\:-mr-20 { - margin-right: -5rem; + .\32xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .\32xl\:-mb-20 { - margin-bottom: -5rem; + .\32xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .\32xl\:-ml-20 { - margin-left: -5rem; + .\32xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .\32xl\:-mt-24 { - margin-top: -6rem; + .\32xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .\32xl\:-mr-24 { - margin-right: -6rem; + .\32xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .\32xl\:-mb-24 { - margin-bottom: -6rem; + .\32xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .\32xl\:-ml-24 { - margin-left: -6rem; + .\32xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .\32xl\:-mt-28 { - margin-top: -7rem; + .\32xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .\32xl\:-mr-28 { - margin-right: -7rem; + .\32xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .\32xl\:-mb-28 { - margin-bottom: -7rem; + .\32xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .\32xl\:-ml-28 { - margin-left: -7rem; + .\32xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .\32xl\:-mt-32 { - margin-top: -8rem; + .\32xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .\32xl\:-mr-32 { - margin-right: -8rem; + .\32xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .\32xl\:-mb-32 { - margin-bottom: -8rem; + .\32xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .\32xl\:-ml-32 { - margin-left: -8rem; + .\32xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .\32xl\:-mt-36 { - margin-top: -9rem; + .\32xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .\32xl\:-mr-36 { - margin-right: -9rem; + .\32xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .\32xl\:-mb-36 { - margin-bottom: -9rem; + .\32xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .\32xl\:-ml-36 { - margin-left: -9rem; + .\32xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .\32xl\:-mt-40 { - margin-top: -10rem; + .\32xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .\32xl\:-mr-40 { - margin-right: -10rem; + .\32xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .\32xl\:-mb-40 { - margin-bottom: -10rem; + .\32xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .\32xl\:-ml-40 { - margin-left: -10rem; + .\32xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .\32xl\:-mt-44 { - margin-top: -11rem; + .\32xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .\32xl\:-mr-44 { - margin-right: -11rem; + .\32xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .\32xl\:-mb-44 { - margin-bottom: -11rem; + .\32xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .\32xl\:-ml-44 { - margin-left: -11rem; + .\32xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .\32xl\:-mt-48 { - margin-top: -12rem; + .\32xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .\32xl\:-mr-48 { - margin-right: -12rem; + .\32xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .\32xl\:-mb-48 { - margin-bottom: -12rem; + .\32xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .\32xl\:-ml-48 { - margin-left: -12rem; + .\32xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .\32xl\:-mt-52 { - margin-top: -13rem; + .\32xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .\32xl\:-mr-52 { - margin-right: -13rem; + .\32xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .\32xl\:-mb-52 { - margin-bottom: -13rem; + .\32xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .\32xl\:-ml-52 { - margin-left: -13rem; + .\32xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .\32xl\:-mt-56 { - margin-top: -14rem; + .\32xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .\32xl\:-mr-56 { - margin-right: -14rem; + .\32xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .\32xl\:-mb-56 { - margin-bottom: -14rem; + .\32xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .\32xl\:-ml-56 { - margin-left: -14rem; + .\32xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .\32xl\:-mt-60 { - margin-top: -15rem; + .\32xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .\32xl\:-mr-60 { - margin-right: -15rem; + .\32xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .\32xl\:-mb-60 { - margin-bottom: -15rem; + .\32xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .\32xl\:-ml-60 { - margin-left: -15rem; + .\32xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .\32xl\:-mt-64 { - margin-top: -16rem; + .\32xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .\32xl\:-mr-64 { - margin-right: -16rem; + .\32xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .\32xl\:-mb-64 { - margin-bottom: -16rem; + .\32xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .\32xl\:-ml-64 { - margin-left: -16rem; + .\32xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .\32xl\:-mt-72 { - margin-top: -18rem; + .\32xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .\32xl\:-mr-72 { - margin-right: -18rem; + .\32xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .\32xl\:-mb-72 { - margin-bottom: -18rem; + .\32xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .\32xl\:-ml-72 { - margin-left: -18rem; + .\32xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .\32xl\:-mt-80 { - margin-top: -20rem; + .\32xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .\32xl\:-mr-80 { - margin-right: -20rem; + .\32xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .\32xl\:-mb-80 { - margin-bottom: -20rem; + .\32xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .\32xl\:-ml-80 { - margin-left: -20rem; + .\32xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .\32xl\:-mt-96 { - margin-top: -24rem; + .\32xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .\32xl\:-mr-96 { - margin-right: -24rem; + .\32xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .\32xl\:-mb-96 { - margin-bottom: -24rem; + .\32xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .\32xl\:-ml-96 { - margin-left: -24rem; + .\32xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .\32xl\:-mt-px { - margin-top: -1px; + .\32xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .\32xl\:-mr-px { - margin-right: -1px; + .\32xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .\32xl\:-mb-px { - margin-bottom: -1px; + .\32xl\:focus-within\:border-purple-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .\32xl\:-ml-px { - margin-left: -1px; + .\32xl\:focus-within\:border-purple-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .\32xl\:-mt-0\.5 { - margin-top: -0.125rem; + .\32xl\:focus-within\:border-purple-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .\32xl\:-mr-0\.5 { - margin-right: -0.125rem; + .\32xl\:focus-within\:border-purple-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .\32xl\:-mb-0\.5 { - margin-bottom: -0.125rem; + .\32xl\:focus-within\:border-purple-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .\32xl\:-ml-0\.5 { - margin-left: -0.125rem; + .\32xl\:focus-within\:border-purple-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .\32xl\:-mt-1\.5 { - margin-top: -0.375rem; + .\32xl\:focus-within\:border-purple-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .\32xl\:-mr-1\.5 { - margin-right: -0.375rem; + .\32xl\:focus-within\:border-purple-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .\32xl\:-mb-1\.5 { - margin-bottom: -0.375rem; + .\32xl\:focus-within\:border-purple-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .\32xl\:-ml-1\.5 { - margin-left: -0.375rem; + .\32xl\:focus-within\:border-purple-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .\32xl\:-mt-2\.5 { - margin-top: -0.625rem; + .\32xl\:focus-within\:border-pink-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .\32xl\:-mr-2\.5 { - margin-right: -0.625rem; + .\32xl\:focus-within\:border-pink-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .\32xl\:-mb-2\.5 { - margin-bottom: -0.625rem; + .\32xl\:focus-within\:border-pink-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .\32xl\:-ml-2\.5 { - margin-left: -0.625rem; + .\32xl\:focus-within\:border-pink-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .\32xl\:-mt-3\.5 { - margin-top: -0.875rem; + .\32xl\:focus-within\:border-pink-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .\32xl\:-mr-3\.5 { - margin-right: -0.875rem; + .\32xl\:focus-within\:border-pink-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .\32xl\:-mb-3\.5 { - margin-bottom: -0.875rem; + .\32xl\:focus-within\:border-pink-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .\32xl\:-ml-3\.5 { - margin-left: -0.875rem; + .\32xl\:focus-within\:border-pink-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .\32xl\:max-h-0 { - max-height: 0px; + .\32xl\:focus-within\:border-pink-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .\32xl\:max-h-1 { - max-height: 0.25rem; + .\32xl\:focus-within\:border-pink-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .\32xl\:max-h-2 { - max-height: 0.5rem; + .\32xl\:hover\:border-transparent:hover { + border-color: transparent; } - .\32xl\:max-h-3 { - max-height: 0.75rem; + .\32xl\:hover\:border-current:hover { + border-color: currentColor; } - .\32xl\:max-h-4 { - max-height: 1rem; + .\32xl\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .\32xl\:max-h-5 { - max-height: 1.25rem; + .\32xl\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .\32xl\:max-h-6 { - max-height: 1.5rem; + .\32xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .\32xl\:max-h-7 { - max-height: 1.75rem; + .\32xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .\32xl\:max-h-8 { - max-height: 2rem; + .\32xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .\32xl\:max-h-9 { - max-height: 2.25rem; + .\32xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .\32xl\:max-h-10 { - max-height: 2.5rem; + .\32xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .\32xl\:max-h-11 { - max-height: 2.75rem; + .\32xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .\32xl\:max-h-12 { - max-height: 3rem; + .\32xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .\32xl\:max-h-14 { - max-height: 3.5rem; + .\32xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .\32xl\:max-h-16 { - max-height: 4rem; + .\32xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .\32xl\:max-h-20 { - max-height: 5rem; + .\32xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .\32xl\:max-h-24 { - max-height: 6rem; + .\32xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .\32xl\:max-h-28 { - max-height: 7rem; + .\32xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .\32xl\:max-h-32 { - max-height: 8rem; + .\32xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .\32xl\:max-h-36 { - max-height: 9rem; + .\32xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .\32xl\:max-h-40 { - max-height: 10rem; + .\32xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .\32xl\:max-h-44 { - max-height: 11rem; + .\32xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .\32xl\:max-h-48 { - max-height: 12rem; + .\32xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .\32xl\:max-h-52 { - max-height: 13rem; + .\32xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .\32xl\:max-h-56 { - max-height: 14rem; + .\32xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .\32xl\:max-h-60 { - max-height: 15rem; + .\32xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .\32xl\:max-h-64 { - max-height: 16rem; + .\32xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .\32xl\:max-h-72 { - max-height: 18rem; + .\32xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .\32xl\:max-h-80 { - max-height: 20rem; + .\32xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .\32xl\:max-h-96 { - max-height: 24rem; + .\32xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .\32xl\:max-h-px { - max-height: 1px; + .\32xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .\32xl\:max-h-0\.5 { - max-height: 0.125rem; + .\32xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .\32xl\:max-h-1\.5 { - max-height: 0.375rem; + .\32xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .\32xl\:max-h-2\.5 { - max-height: 0.625rem; + .\32xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .\32xl\:max-h-3\.5 { - max-height: 0.875rem; + .\32xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .\32xl\:max-h-full { - max-height: 100%; + .\32xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .\32xl\:max-h-screen { - max-height: 100vh; + .\32xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .\32xl\:max-w-0 { - max-width: 0rem; + .\32xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .\32xl\:max-w-none { - max-width: none; + .\32xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .\32xl\:max-w-xs { - max-width: 20rem; + .\32xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .\32xl\:max-w-sm { - max-width: 24rem; + .\32xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .\32xl\:max-w-md { - max-width: 28rem; + .\32xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .\32xl\:max-w-lg { - max-width: 32rem; + .\32xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .\32xl\:max-w-xl { - max-width: 36rem; + .\32xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .\32xl\:max-w-2xl { - max-width: 42rem; + .\32xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .\32xl\:max-w-3xl { - max-width: 48rem; + .\32xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .\32xl\:max-w-4xl { - max-width: 56rem; + .\32xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .\32xl\:max-w-5xl { - max-width: 64rem; + .\32xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .\32xl\:max-w-6xl { - max-width: 72rem; + .\32xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .\32xl\:max-w-7xl { - max-width: 80rem; + .\32xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .\32xl\:max-w-full { - max-width: 100%; + .\32xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .\32xl\:max-w-min { - max-width: min-content; + .\32xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .\32xl\:max-w-max { - max-width: max-content; + .\32xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .\32xl\:max-w-prose { - max-width: 65ch; + .\32xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .\32xl\:max-w-screen-sm { - max-width: 640px; + .\32xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .\32xl\:max-w-screen-md { - max-width: 768px; + .\32xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .\32xl\:max-w-screen-lg { - max-width: 1024px; + .\32xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .\32xl\:max-w-screen-xl { - max-width: 1280px; + .\32xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .\32xl\:max-w-screen-2xl { - max-width: 1536px; + .\32xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .\32xl\:min-h-0 { - min-height: 0px; + .\32xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .\32xl\:min-h-full { - min-height: 100%; + .\32xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .\32xl\:min-h-screen { - min-height: 100vh; + .\32xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .\32xl\:min-w-0 { - min-width: 0px; + .\32xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .\32xl\:min-w-full { - min-width: 100%; + .\32xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .\32xl\:min-w-min { - min-width: min-content; + .\32xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .\32xl\:min-w-max { - min-width: max-content; + .\32xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .\32xl\:object-contain { - object-fit: contain; + .\32xl\:hover\:border-purple-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .\32xl\:object-cover { - object-fit: cover; + .\32xl\:hover\:border-purple-100:hover { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .\32xl\:object-fill { - object-fit: fill; + .\32xl\:hover\:border-purple-200:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .\32xl\:object-none { - object-fit: none; + .\32xl\:hover\:border-purple-300:hover { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .\32xl\:object-scale-down { - object-fit: scale-down; + .\32xl\:hover\:border-purple-400:hover { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .\32xl\:object-bottom { - object-position: bottom; + .\32xl\:hover\:border-purple-500:hover { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .\32xl\:object-center { - object-position: center; + .\32xl\:hover\:border-purple-600:hover { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .\32xl\:object-left { - object-position: left; + .\32xl\:hover\:border-purple-700:hover { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .\32xl\:object-left-bottom { - object-position: left bottom; + .\32xl\:hover\:border-purple-800:hover { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .\32xl\:object-left-top { - object-position: left top; + .\32xl\:hover\:border-purple-900:hover { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .\32xl\:object-right { - object-position: right; + .\32xl\:hover\:border-pink-50:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .\32xl\:object-right-bottom { - object-position: right bottom; + .\32xl\:hover\:border-pink-100:hover { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .\32xl\:object-right-top { - object-position: right top; + .\32xl\:hover\:border-pink-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .\32xl\:object-top { - object-position: top; + .\32xl\:hover\:border-pink-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .\32xl\:opacity-0 { - opacity: 0; + .\32xl\:hover\:border-pink-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .\32xl\:opacity-5 { - opacity: 0.05; + .\32xl\:hover\:border-pink-500:hover { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .\32xl\:opacity-10 { - opacity: 0.1; + .\32xl\:hover\:border-pink-600:hover { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .\32xl\:opacity-20 { - opacity: 0.2; + .\32xl\:hover\:border-pink-700:hover { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .\32xl\:opacity-25 { - opacity: 0.25; + .\32xl\:hover\:border-pink-800:hover { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .\32xl\:opacity-30 { - opacity: 0.3; + .\32xl\:hover\:border-pink-900:hover { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .\32xl\:opacity-40 { - opacity: 0.4; + .\32xl\:focus\:border-transparent:focus { + border-color: transparent; } - .\32xl\:opacity-50 { - opacity: 0.5; + .\32xl\:focus\:border-current:focus { + border-color: currentColor; } - .\32xl\:opacity-60 { - opacity: 0.6; + .\32xl\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); } - .\32xl\:opacity-70 { - opacity: 0.7; + .\32xl\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); } - .\32xl\:opacity-75 { - opacity: 0.75; + .\32xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); } - .\32xl\:opacity-80 { - opacity: 0.8; + .\32xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); } - .\32xl\:opacity-90 { - opacity: 0.9; + .\32xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); } - .\32xl\:opacity-95 { - opacity: 0.95; + .\32xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } - .\32xl\:opacity-100 { - opacity: 1; + .\32xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-0 { - opacity: 0; + .\32xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-5 { - opacity: 0.05; + .\32xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-10 { - opacity: 0.1; + .\32xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-20 { - opacity: 0.2; + .\32xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-25 { - opacity: 0.25; + .\32xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-30 { - opacity: 0.3; + .\32xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 242, 242, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-40 { - opacity: 0.4; + .\32xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 226, 226, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-50 { - opacity: 0.5; + .\32xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 202, 202, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-60 { - opacity: 0.6; + .\32xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-70 { - opacity: 0.7; + .\32xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 113, 113, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-75 { - opacity: 0.75; + .\32xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 68, 68, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-80 { - opacity: 0.8; + .\32xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 38, 38, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-90 { - opacity: 0.9; + .\32xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(185, 28, 28, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-95 { - opacity: 0.95; + .\32xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(153, 27, 27, var(--tw-border-opacity)); } - .group:hover .\32xl\:group-hover\:opacity-100 { - opacity: 1; + .\32xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(127, 29, 29, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-0:focus-within { - opacity: 0; + .\32xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 251, 235, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-5:focus-within { - opacity: 0.05; + .\32xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 243, 199, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-10:focus-within { - opacity: 0.1; + .\32xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 230, 138, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-20:focus-within { - opacity: 0.2; + .\32xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 211, 77, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-25:focus-within { - opacity: 0.25; + .\32xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 191, 36, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-30:focus-within { - opacity: 0.3; + .\32xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-40:focus-within { - opacity: 0.4; + .\32xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(217, 119, 6, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-50:focus-within { - opacity: 0.5; + .\32xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(180, 83, 9, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-60:focus-within { - opacity: 0.6; + .\32xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(146, 64, 14, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-70:focus-within { - opacity: 0.7; + .\32xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 53, 15, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-75:focus-within { - opacity: 0.75; + .\32xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 253, 245, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-80:focus-within { - opacity: 0.8; + .\32xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 250, 229, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-90:focus-within { - opacity: 0.9; + .\32xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 243, 208, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-95:focus-within { - opacity: 0.95; + .\32xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(110, 231, 183, var(--tw-border-opacity)); } - .\32xl\:focus-within\:opacity-100:focus-within { - opacity: 1; + .\32xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 211, 153, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-0:hover { - opacity: 0; + .\32xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(16, 185, 129, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-5:hover { - opacity: 0.05; + .\32xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(5, 150, 105, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-10:hover { - opacity: 0.1; + .\32xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(4, 120, 87, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-20:hover { - opacity: 0.2; + .\32xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 95, 70, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-25:hover { - opacity: 0.25; + .\32xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(6, 78, 59, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-30:hover { - opacity: 0.3; + .\32xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 246, 255, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-40:hover { - opacity: 0.4; + .\32xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 234, 254, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-50:hover { - opacity: 0.5; + .\32xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(191, 219, 254, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-60:hover { - opacity: 0.6; + .\32xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 197, 253, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-70:hover { - opacity: 0.7; + .\32xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(96, 165, 250, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-75:hover { - opacity: 0.75; + .\32xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-80:hover { - opacity: 0.8; + .\32xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(37, 99, 235, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-90:hover { - opacity: 0.9; + .\32xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 78, 216, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-95:hover { - opacity: 0.95; + .\32xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 64, 175, var(--tw-border-opacity)); } - .\32xl\:hover\:opacity-100:hover { - opacity: 1; + .\32xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(30, 58, 138, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-0:focus { - opacity: 0; + .\32xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 242, 255, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-5:focus { - opacity: 0.05; + .\32xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(224, 231, 255, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-10:focus { - opacity: 0.1; + .\32xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(199, 210, 254, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-20:focus { - opacity: 0.2; + .\32xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(165, 180, 252, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-25:focus { - opacity: 0.25; + .\32xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(129, 140, 248, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-30:focus { - opacity: 0.3; + .\32xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(99, 102, 241, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-40:focus { - opacity: 0.4; + .\32xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 70, 229, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-50:focus { - opacity: 0.5; + .\32xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(67, 56, 202, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-60:focus { - opacity: 0.6; + .\32xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 48, 163, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-70:focus { - opacity: 0.7; + .\32xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(49, 46, 129, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-75:focus { - opacity: 0.75; + .\32xl\:focus\:border-purple-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 243, 255, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-80:focus { - opacity: 0.8; + .\32xl\:focus\:border-purple-100:focus { + --tw-border-opacity: 1; + border-color: rgba(237, 233, 254, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-90:focus { - opacity: 0.9; + .\32xl\:focus\:border-purple-200:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 214, 254, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-95:focus { - opacity: 0.95; + .\32xl\:focus\:border-purple-300:focus { + --tw-border-opacity: 1; + border-color: rgba(196, 181, 253, var(--tw-border-opacity)); } - .\32xl\:focus\:opacity-100:focus { - opacity: 1; + .\32xl\:focus\:border-purple-400:focus { + --tw-border-opacity: 1; + border-color: rgba(167, 139, 250, var(--tw-border-opacity)); } - .\32xl\:outline-none { - outline: 2px solid transparent; - outline-offset: 2px; + .\32xl\:focus\:border-purple-500:focus { + --tw-border-opacity: 1; + border-color: rgba(139, 92, 246, var(--tw-border-opacity)); } - .\32xl\:outline-white { - outline: 2px dotted white; - outline-offset: 2px; + .\32xl\:focus\:border-purple-600:focus { + --tw-border-opacity: 1; + border-color: rgba(124, 58, 237, var(--tw-border-opacity)); } - .\32xl\:outline-black { - outline: 2px dotted black; - outline-offset: 2px; + .\32xl\:focus\:border-purple-700:focus { + --tw-border-opacity: 1; + border-color: rgba(109, 40, 217, var(--tw-border-opacity)); } - .\32xl\:focus-within\:outline-none:focus-within { - outline: 2px solid transparent; - outline-offset: 2px; + .\32xl\:focus\:border-purple-800:focus { + --tw-border-opacity: 1; + border-color: rgba(91, 33, 182, var(--tw-border-opacity)); } - .\32xl\:focus-within\:outline-white:focus-within { - outline: 2px dotted white; - outline-offset: 2px; + .\32xl\:focus\:border-purple-900:focus { + --tw-border-opacity: 1; + border-color: rgba(76, 29, 149, var(--tw-border-opacity)); } - .\32xl\:focus-within\:outline-black:focus-within { - outline: 2px dotted black; - outline-offset: 2px; + .\32xl\:focus\:border-pink-50:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 242, 248, var(--tw-border-opacity)); } - .\32xl\:focus\:outline-none:focus { - outline: 2px solid transparent; - outline-offset: 2px; + .\32xl\:focus\:border-pink-100:focus { + --tw-border-opacity: 1; + border-color: rgba(252, 231, 243, var(--tw-border-opacity)); } - .\32xl\:focus\:outline-white:focus { - outline: 2px dotted white; - outline-offset: 2px; + .\32xl\:focus\:border-pink-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 207, 232, var(--tw-border-opacity)); } - .\32xl\:focus\:outline-black:focus { - outline: 2px dotted black; - outline-offset: 2px; + .\32xl\:focus\:border-pink-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 168, 212, var(--tw-border-opacity)); } - .\32xl\:overflow-auto { - overflow: auto; + .\32xl\:focus\:border-pink-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 114, 182, var(--tw-border-opacity)); } - .\32xl\:overflow-hidden { - overflow: hidden; + .\32xl\:focus\:border-pink-500:focus { + --tw-border-opacity: 1; + border-color: rgba(236, 72, 153, var(--tw-border-opacity)); } - .\32xl\:overflow-visible { - overflow: visible; + .\32xl\:focus\:border-pink-600:focus { + --tw-border-opacity: 1; + border-color: rgba(219, 39, 119, var(--tw-border-opacity)); } - .\32xl\:overflow-scroll { - overflow: scroll; + .\32xl\:focus\:border-pink-700:focus { + --tw-border-opacity: 1; + border-color: rgba(190, 24, 93, var(--tw-border-opacity)); } - .\32xl\:overflow-x-auto { - overflow-x: auto; + .\32xl\:focus\:border-pink-800:focus { + --tw-border-opacity: 1; + border-color: rgba(157, 23, 77, var(--tw-border-opacity)); } - .\32xl\:overflow-y-auto { - overflow-y: auto; + .\32xl\:focus\:border-pink-900:focus { + --tw-border-opacity: 1; + border-color: rgba(131, 24, 67, var(--tw-border-opacity)); } - .\32xl\:overflow-x-hidden { - overflow-x: hidden; + .\32xl\:border-opacity-0 { + --tw-border-opacity: 0; } - .\32xl\:overflow-y-hidden { - overflow-y: hidden; + .\32xl\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .\32xl\:overflow-x-visible { - overflow-x: visible; + .\32xl\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .\32xl\:overflow-y-visible { - overflow-y: visible; + .\32xl\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .\32xl\:overflow-x-scroll { - overflow-x: scroll; + .\32xl\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .\32xl\:overflow-y-scroll { - overflow-y: scroll; + .\32xl\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .\32xl\:overscroll-auto { - overscroll-behavior: auto; + .\32xl\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .\32xl\:overscroll-contain { - overscroll-behavior: contain; + .\32xl\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .\32xl\:overscroll-none { - overscroll-behavior: none; + .\32xl\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .\32xl\:overscroll-y-auto { - overscroll-behavior-y: auto; + .\32xl\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .\32xl\:overscroll-y-contain { - overscroll-behavior-y: contain; + .\32xl\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .\32xl\:overscroll-y-none { - overscroll-behavior-y: none; + .\32xl\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .\32xl\:overscroll-x-auto { - overscroll-behavior-x: auto; + .\32xl\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .\32xl\:overscroll-x-contain { - overscroll-behavior-x: contain; + .\32xl\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .\32xl\:overscroll-x-none { - overscroll-behavior-x: none; + .\32xl\:border-opacity-100 { + --tw-border-opacity: 1; } - .\32xl\:p-0 { - padding: 0px; + .group:hover .\32xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; } - .\32xl\:p-1 { - padding: 0.25rem; + .group:hover .\32xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; } - .\32xl\:p-2 { - padding: 0.5rem; + .group:hover .\32xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; } - .\32xl\:p-3 { - padding: 0.75rem; + .group:hover .\32xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; } - .\32xl\:p-4 { - padding: 1rem; + .group:hover .\32xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; } - .\32xl\:p-5 { - padding: 1.25rem; + .group:hover .\32xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; } - .\32xl\:p-6 { - padding: 1.5rem; + .group:hover .\32xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; } - .\32xl\:p-7 { - padding: 1.75rem; + .group:hover .\32xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; } - .\32xl\:p-8 { - padding: 2rem; + .group:hover .\32xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; } - .\32xl\:p-9 { - padding: 2.25rem; + .group:hover .\32xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; } - .\32xl\:p-10 { - padding: 2.5rem; + .group:hover .\32xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; } - .\32xl\:p-11 { - padding: 2.75rem; + .group:hover .\32xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; } - .\32xl\:p-12 { - padding: 3rem; + .group:hover .\32xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; } - .\32xl\:p-14 { - padding: 3.5rem; + .group:hover .\32xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; } - .\32xl\:p-16 { - padding: 4rem; + .group:hover .\32xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; } - .\32xl\:p-20 { - padding: 5rem; + .\32xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; } - .\32xl\:p-24 { - padding: 6rem; + .\32xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; } - .\32xl\:p-28 { - padding: 7rem; + .\32xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; } - .\32xl\:p-32 { - padding: 8rem; + .\32xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; } - .\32xl\:p-36 { - padding: 9rem; + .\32xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; } - .\32xl\:p-40 { - padding: 10rem; + .\32xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; } - .\32xl\:p-44 { - padding: 11rem; + .\32xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; } - .\32xl\:p-48 { - padding: 12rem; + .\32xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; } - .\32xl\:p-52 { - padding: 13rem; + .\32xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; } - .\32xl\:p-56 { - padding: 14rem; + .\32xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; } - .\32xl\:p-60 { - padding: 15rem; + .\32xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; } - .\32xl\:p-64 { - padding: 16rem; + .\32xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; } - .\32xl\:p-72 { - padding: 18rem; + .\32xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; } - .\32xl\:p-80 { - padding: 20rem; + .\32xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; } - .\32xl\:p-96 { - padding: 24rem; + .\32xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; } - .\32xl\:p-px { - padding: 1px; + .\32xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; } - .\32xl\:p-0\.5 { - padding: 0.125rem; + .\32xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; } - .\32xl\:p-1\.5 { - padding: 0.375rem; + .\32xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; } - .\32xl\:p-2\.5 { - padding: 0.625rem; + .\32xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; } - .\32xl\:p-3\.5 { - padding: 0.875rem; + .\32xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; } - .\32xl\:py-0 { - padding-top: 0px; - padding-bottom: 0px; + .\32xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; } - .\32xl\:px-0 { - padding-left: 0px; - padding-right: 0px; + .\32xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; } - .\32xl\:py-1 { - padding-top: 0.25rem; - padding-bottom: 0.25rem; + .\32xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; } - .\32xl\:px-1 { - padding-left: 0.25rem; - padding-right: 0.25rem; + .\32xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; } - .\32xl\:py-2 { - padding-top: 0.5rem; - padding-bottom: 0.5rem; + .\32xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; } - .\32xl\:px-2 { - padding-left: 0.5rem; - padding-right: 0.5rem; + .\32xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; } - .\32xl\:py-3 { - padding-top: 0.75rem; - padding-bottom: 0.75rem; + .\32xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; } - .\32xl\:px-3 { - padding-left: 0.75rem; - padding-right: 0.75rem; + .\32xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; } - .\32xl\:py-4 { - padding-top: 1rem; - padding-bottom: 1rem; + .\32xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; } - .\32xl\:px-4 { - padding-left: 1rem; - padding-right: 1rem; + .\32xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; } - .\32xl\:py-5 { - padding-top: 1.25rem; - padding-bottom: 1.25rem; + .\32xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; } - .\32xl\:px-5 { - padding-left: 1.25rem; - padding-right: 1.25rem; + .\32xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; } - .\32xl\:py-6 { - padding-top: 1.5rem; - padding-bottom: 1.5rem; + .\32xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; } - .\32xl\:px-6 { - padding-left: 1.5rem; - padding-right: 1.5rem; + .\32xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; } - .\32xl\:py-7 { - padding-top: 1.75rem; - padding-bottom: 1.75rem; + .\32xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; } - .\32xl\:px-7 { - padding-left: 1.75rem; - padding-right: 1.75rem; + .\32xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; } - .\32xl\:py-8 { - padding-top: 2rem; - padding-bottom: 2rem; + .\32xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; } - .\32xl\:px-8 { - padding-left: 2rem; - padding-right: 2rem; + .\32xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; } - .\32xl\:py-9 { - padding-top: 2.25rem; - padding-bottom: 2.25rem; + .\32xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; } - .\32xl\:px-9 { - padding-left: 2.25rem; - padding-right: 2.25rem; + .\32xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; } - .\32xl\:py-10 { - padding-top: 2.5rem; - padding-bottom: 2.5rem; + .\32xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; } - .\32xl\:px-10 { - padding-left: 2.5rem; - padding-right: 2.5rem; + .\32xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; } - .\32xl\:py-11 { - padding-top: 2.75rem; - padding-bottom: 2.75rem; + .\32xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; } - .\32xl\:px-11 { - padding-left: 2.75rem; - padding-right: 2.75rem; + .\32xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; } - .\32xl\:py-12 { - padding-top: 3rem; - padding-bottom: 3rem; + .\32xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; } - .\32xl\:px-12 { - padding-left: 3rem; - padding-right: 3rem; + .\32xl\:bg-transparent { + background-color: transparent; } - .\32xl\:py-14 { - padding-top: 3.5rem; - padding-bottom: 3.5rem; + .\32xl\:bg-current { + background-color: currentColor; } - .\32xl\:px-14 { - padding-left: 3.5rem; - padding-right: 3.5rem; + .\32xl\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .\32xl\:py-16 { - padding-top: 4rem; - padding-bottom: 4rem; + .\32xl\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .\32xl\:px-16 { - padding-left: 4rem; - padding-right: 4rem; + .\32xl\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .\32xl\:py-20 { - padding-top: 5rem; - padding-bottom: 5rem; + .\32xl\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .\32xl\:px-20 { - padding-left: 5rem; - padding-right: 5rem; + .\32xl\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .\32xl\:py-24 { - padding-top: 6rem; - padding-bottom: 6rem; + .\32xl\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .\32xl\:px-24 { - padding-left: 6rem; - padding-right: 6rem; + .\32xl\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .\32xl\:py-28 { - padding-top: 7rem; - padding-bottom: 7rem; + .\32xl\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .\32xl\:px-28 { - padding-left: 7rem; - padding-right: 7rem; + .\32xl\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .\32xl\:py-32 { - padding-top: 8rem; - padding-bottom: 8rem; + .\32xl\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .\32xl\:px-32 { - padding-left: 8rem; - padding-right: 8rem; + .\32xl\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .\32xl\:py-36 { - padding-top: 9rem; - padding-bottom: 9rem; + .\32xl\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .\32xl\:px-36 { - padding-left: 9rem; - padding-right: 9rem; + .\32xl\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .\32xl\:py-40 { - padding-top: 10rem; - padding-bottom: 10rem; + .\32xl\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .\32xl\:px-40 { - padding-left: 10rem; - padding-right: 10rem; + .\32xl\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .\32xl\:py-44 { - padding-top: 11rem; - padding-bottom: 11rem; + .\32xl\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .\32xl\:px-44 { - padding-left: 11rem; - padding-right: 11rem; + .\32xl\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .\32xl\:py-48 { - padding-top: 12rem; - padding-bottom: 12rem; + .\32xl\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .\32xl\:px-48 { - padding-left: 12rem; - padding-right: 12rem; + .\32xl\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .\32xl\:py-52 { - padding-top: 13rem; - padding-bottom: 13rem; + .\32xl\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .\32xl\:px-52 { - padding-left: 13rem; - padding-right: 13rem; + .\32xl\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .\32xl\:py-56 { - padding-top: 14rem; - padding-bottom: 14rem; + .\32xl\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .\32xl\:px-56 { - padding-left: 14rem; - padding-right: 14rem; + .\32xl\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .\32xl\:py-60 { - padding-top: 15rem; - padding-bottom: 15rem; + .\32xl\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .\32xl\:px-60 { - padding-left: 15rem; - padding-right: 15rem; + .\32xl\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .\32xl\:py-64 { - padding-top: 16rem; - padding-bottom: 16rem; + .\32xl\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .\32xl\:px-64 { - padding-left: 16rem; - padding-right: 16rem; + .\32xl\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .\32xl\:py-72 { - padding-top: 18rem; - padding-bottom: 18rem; + .\32xl\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .\32xl\:px-72 { - padding-left: 18rem; - padding-right: 18rem; + .\32xl\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .\32xl\:py-80 { - padding-top: 20rem; - padding-bottom: 20rem; + .\32xl\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .\32xl\:px-80 { - padding-left: 20rem; - padding-right: 20rem; + .\32xl\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .\32xl\:py-96 { - padding-top: 24rem; - padding-bottom: 24rem; + .\32xl\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .\32xl\:px-96 { - padding-left: 24rem; - padding-right: 24rem; + .\32xl\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .\32xl\:py-px { - padding-top: 1px; - padding-bottom: 1px; + .\32xl\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .\32xl\:px-px { - padding-left: 1px; - padding-right: 1px; + .\32xl\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .\32xl\:py-0\.5 { - padding-top: 0.125rem; - padding-bottom: 0.125rem; + .\32xl\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .\32xl\:px-0\.5 { - padding-left: 0.125rem; - padding-right: 0.125rem; + .\32xl\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .\32xl\:py-1\.5 { - padding-top: 0.375rem; - padding-bottom: 0.375rem; + .\32xl\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .\32xl\:px-1\.5 { - padding-left: 0.375rem; - padding-right: 0.375rem; + .\32xl\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .\32xl\:py-2\.5 { - padding-top: 0.625rem; - padding-bottom: 0.625rem; + .\32xl\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .\32xl\:px-2\.5 { - padding-left: 0.625rem; - padding-right: 0.625rem; + .\32xl\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .\32xl\:py-3\.5 { - padding-top: 0.875rem; - padding-bottom: 0.875rem; + .\32xl\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .\32xl\:px-3\.5 { - padding-left: 0.875rem; - padding-right: 0.875rem; + .\32xl\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .\32xl\:pt-0 { - padding-top: 0px; + .\32xl\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .\32xl\:pr-0 { - padding-right: 0px; + .\32xl\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .\32xl\:pb-0 { - padding-bottom: 0px; + .\32xl\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .\32xl\:pl-0 { - padding-left: 0px; + .\32xl\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .\32xl\:pt-1 { - padding-top: 0.25rem; + .\32xl\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-1 { - padding-right: 0.25rem; + .\32xl\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .\32xl\:pb-1 { - padding-bottom: 0.25rem; + .\32xl\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .\32xl\:pl-1 { - padding-left: 0.25rem; + .\32xl\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .\32xl\:pt-2 { - padding-top: 0.5rem; + .\32xl\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .\32xl\:pr-2 { - padding-right: 0.5rem; + .\32xl\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .\32xl\:pb-2 { - padding-bottom: 0.5rem; + .\32xl\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .\32xl\:pl-2 { - padding-left: 0.5rem; + .\32xl\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .\32xl\:pt-3 { - padding-top: 0.75rem; + .\32xl\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .\32xl\:pr-3 { - padding-right: 0.75rem; + .\32xl\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .\32xl\:pb-3 { - padding-bottom: 0.75rem; + .\32xl\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .\32xl\:pl-3 { - padding-left: 0.75rem; + .\32xl\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .\32xl\:pt-4 { - padding-top: 1rem; + .\32xl\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .\32xl\:pr-4 { - padding-right: 1rem; + .\32xl\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .\32xl\:pb-4 { - padding-bottom: 1rem; + .\32xl\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .\32xl\:pl-4 { - padding-left: 1rem; + .\32xl\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .\32xl\:pt-5 { - padding-top: 1.25rem; + .\32xl\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .\32xl\:pr-5 { - padding-right: 1.25rem; + .\32xl\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .\32xl\:pb-5 { - padding-bottom: 1.25rem; + .\32xl\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .\32xl\:pl-5 { - padding-left: 1.25rem; + .\32xl\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .\32xl\:pt-6 { - padding-top: 1.5rem; + .\32xl\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-6 { - padding-right: 1.5rem; + .\32xl\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .\32xl\:pb-6 { - padding-bottom: 1.5rem; + .\32xl\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .\32xl\:pl-6 { - padding-left: 1.5rem; + .\32xl\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .\32xl\:pt-7 { - padding-top: 1.75rem; + .\32xl\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .\32xl\:pr-7 { - padding-right: 1.75rem; + .\32xl\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .\32xl\:pb-7 { - padding-bottom: 1.75rem; + .\32xl\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .\32xl\:pl-7 { - padding-left: 1.75rem; + .\32xl\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .\32xl\:pt-8 { - padding-top: 2rem; + .\32xl\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .\32xl\:pr-8 { - padding-right: 2rem; + .\32xl\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .\32xl\:pb-8 { - padding-bottom: 2rem; + .\32xl\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .\32xl\:pl-8 { - padding-left: 2rem; + .\32xl\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .\32xl\:pt-9 { - padding-top: 2.25rem; + .\32xl\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .\32xl\:pr-9 { - padding-right: 2.25rem; + .\32xl\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .\32xl\:pb-9 { - padding-bottom: 2.25rem; + .\32xl\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .\32xl\:pl-9 { - padding-left: 2.25rem; + .group:hover .\32xl\:group-hover\:bg-transparent { + background-color: transparent; } - .\32xl\:pt-10 { - padding-top: 2.5rem; + .group:hover .\32xl\:group-hover\:bg-current { + background-color: currentColor; } - .\32xl\:pr-10 { - padding-right: 2.5rem; + .group:hover .\32xl\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .\32xl\:pb-10 { - padding-bottom: 2.5rem; + .group:hover .\32xl\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .\32xl\:pl-10 { - padding-left: 2.5rem; + .group:hover .\32xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .\32xl\:pt-11 { - padding-top: 2.75rem; + .group:hover .\32xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-11 { - padding-right: 2.75rem; + .group:hover .\32xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .\32xl\:pb-11 { - padding-bottom: 2.75rem; + .group:hover .\32xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .\32xl\:pl-11 { - padding-left: 2.75rem; + .group:hover .\32xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .\32xl\:pt-12 { - padding-top: 3rem; + .group:hover .\32xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .\32xl\:pr-12 { - padding-right: 3rem; + .group:hover .\32xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .\32xl\:pb-12 { - padding-bottom: 3rem; + .group:hover .\32xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .\32xl\:pl-12 { - padding-left: 3rem; + .group:hover .\32xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .\32xl\:pt-14 { - padding-top: 3.5rem; + .group:hover .\32xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .\32xl\:pr-14 { - padding-right: 3.5rem; + .group:hover .\32xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .\32xl\:pb-14 { - padding-bottom: 3.5rem; + .group:hover .\32xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .\32xl\:pl-14 { - padding-left: 3.5rem; + .group:hover .\32xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .\32xl\:pt-16 { - padding-top: 4rem; + .group:hover .\32xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .\32xl\:pr-16 { - padding-right: 4rem; + .group:hover .\32xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .\32xl\:pb-16 { - padding-bottom: 4rem; + .group:hover .\32xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .\32xl\:pl-16 { - padding-left: 4rem; + .group:hover .\32xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .\32xl\:pt-20 { - padding-top: 5rem; + .group:hover .\32xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .\32xl\:pr-20 { - padding-right: 5rem; + .group:hover .\32xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .\32xl\:pb-20 { - padding-bottom: 5rem; + .group:hover .\32xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .\32xl\:pl-20 { - padding-left: 5rem; + .group:hover .\32xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .\32xl\:pt-24 { - padding-top: 6rem; + .group:hover .\32xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .\32xl\:pr-24 { - padding-right: 6rem; + .group:hover .\32xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .\32xl\:pb-24 { - padding-bottom: 6rem; + .group:hover .\32xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .\32xl\:pl-24 { - padding-left: 6rem; + .group:hover .\32xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .\32xl\:pt-28 { - padding-top: 7rem; + .group:hover .\32xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .\32xl\:pr-28 { - padding-right: 7rem; + .group:hover .\32xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .\32xl\:pb-28 { - padding-bottom: 7rem; + .group:hover .\32xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .\32xl\:pl-28 { - padding-left: 7rem; + .group:hover .\32xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .\32xl\:pt-32 { - padding-top: 8rem; + .group:hover .\32xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .\32xl\:pr-32 { - padding-right: 8rem; + .group:hover .\32xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .\32xl\:pb-32 { - padding-bottom: 8rem; + .group:hover .\32xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .\32xl\:pl-32 { - padding-left: 8rem; + .group:hover .\32xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .\32xl\:pt-36 { - padding-top: 9rem; + .group:hover .\32xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .\32xl\:pr-36 { - padding-right: 9rem; + .group:hover .\32xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .\32xl\:pb-36 { - padding-bottom: 9rem; + .group:hover .\32xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .\32xl\:pl-36 { - padding-left: 9rem; + .group:hover .\32xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .\32xl\:pt-40 { - padding-top: 10rem; + .group:hover .\32xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .\32xl\:pr-40 { - padding-right: 10rem; + .group:hover .\32xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .\32xl\:pb-40 { - padding-bottom: 10rem; + .group:hover .\32xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .\32xl\:pl-40 { - padding-left: 10rem; + .group:hover .\32xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .\32xl\:pt-44 { - padding-top: 11rem; + .group:hover .\32xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .\32xl\:pr-44 { - padding-right: 11rem; + .group:hover .\32xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .\32xl\:pb-44 { - padding-bottom: 11rem; + .group:hover .\32xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .\32xl\:pl-44 { - padding-left: 11rem; + .group:hover .\32xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .\32xl\:pt-48 { - padding-top: 12rem; + .group:hover .\32xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-48 { - padding-right: 12rem; + .group:hover .\32xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .\32xl\:pb-48 { - padding-bottom: 12rem; + .group:hover .\32xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .\32xl\:pl-48 { - padding-left: 12rem; + .group:hover .\32xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .\32xl\:pt-52 { - padding-top: 13rem; + .group:hover .\32xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .\32xl\:pr-52 { - padding-right: 13rem; + .group:hover .\32xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .\32xl\:pb-52 { - padding-bottom: 13rem; + .group:hover .\32xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .\32xl\:pl-52 { - padding-left: 13rem; + .group:hover .\32xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .\32xl\:pt-56 { - padding-top: 14rem; + .group:hover .\32xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .\32xl\:pr-56 { - padding-right: 14rem; + .group:hover .\32xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .\32xl\:pb-56 { - padding-bottom: 14rem; + .group:hover .\32xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .\32xl\:pl-56 { - padding-left: 14rem; + .group:hover .\32xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .\32xl\:pt-60 { - padding-top: 15rem; + .group:hover .\32xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .\32xl\:pr-60 { - padding-right: 15rem; + .group:hover .\32xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .\32xl\:pb-60 { - padding-bottom: 15rem; + .group:hover .\32xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .\32xl\:pl-60 { - padding-left: 15rem; + .group:hover .\32xl\:group-hover\:bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .\32xl\:pt-64 { - padding-top: 16rem; + .group:hover .\32xl\:group-hover\:bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .\32xl\:pr-64 { - padding-right: 16rem; + .group:hover .\32xl\:group-hover\:bg-purple-200 { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .\32xl\:pb-64 { - padding-bottom: 16rem; + .group:hover .\32xl\:group-hover\:bg-purple-300 { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .\32xl\:pl-64 { - padding-left: 16rem; + .group:hover .\32xl\:group-hover\:bg-purple-400 { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .\32xl\:pt-72 { - padding-top: 18rem; + .group:hover .\32xl\:group-hover\:bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-72 { - padding-right: 18rem; + .group:hover .\32xl\:group-hover\:bg-purple-600 { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .\32xl\:pb-72 { - padding-bottom: 18rem; + .group:hover .\32xl\:group-hover\:bg-purple-700 { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .\32xl\:pl-72 { - padding-left: 18rem; + .group:hover .\32xl\:group-hover\:bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .\32xl\:pt-80 { - padding-top: 20rem; + .group:hover .\32xl\:group-hover\:bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .\32xl\:pr-80 { - padding-right: 20rem; + .group:hover .\32xl\:group-hover\:bg-pink-50 { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .\32xl\:pb-80 { - padding-bottom: 20rem; + .group:hover .\32xl\:group-hover\:bg-pink-100 { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .\32xl\:pl-80 { - padding-left: 20rem; + .group:hover .\32xl\:group-hover\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .\32xl\:pt-96 { - padding-top: 24rem; + .group:hover .\32xl\:group-hover\:bg-pink-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .\32xl\:pr-96 { - padding-right: 24rem; + .group:hover .\32xl\:group-hover\:bg-pink-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .\32xl\:pb-96 { - padding-bottom: 24rem; + .group:hover .\32xl\:group-hover\:bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .\32xl\:pl-96 { - padding-left: 24rem; + .group:hover .\32xl\:group-hover\:bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .\32xl\:pt-px { - padding-top: 1px; + .group:hover .\32xl\:group-hover\:bg-pink-700 { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .\32xl\:pr-px { - padding-right: 1px; + .group:hover .\32xl\:group-hover\:bg-pink-800 { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .\32xl\:pb-px { - padding-bottom: 1px; + .group:hover .\32xl\:group-hover\:bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .\32xl\:pl-px { - padding-left: 1px; + .\32xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent; } - .\32xl\:pt-0\.5 { - padding-top: 0.125rem; + .\32xl\:focus-within\:bg-current:focus-within { + background-color: currentColor; } - .\32xl\:pr-0\.5 { - padding-right: 0.125rem; + .\32xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .\32xl\:pb-0\.5 { - padding-bottom: 0.125rem; + .\32xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .\32xl\:pl-0\.5 { - padding-left: 0.125rem; + .\32xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .\32xl\:pt-1\.5 { - padding-top: 0.375rem; + .\32xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .\32xl\:pr-1\.5 { - padding-right: 0.375rem; + .\32xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .\32xl\:pb-1\.5 { - padding-bottom: 0.375rem; + .\32xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .\32xl\:pl-1\.5 { - padding-left: 0.375rem; + .\32xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .\32xl\:pt-2\.5 { - padding-top: 0.625rem; + .\32xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .\32xl\:pr-2\.5 { - padding-right: 0.625rem; + .\32xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .\32xl\:pb-2\.5 { - padding-bottom: 0.625rem; + .\32xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .\32xl\:pl-2\.5 { - padding-left: 0.625rem; + .\32xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .\32xl\:pt-3\.5 { - padding-top: 0.875rem; + .\32xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .\32xl\:pr-3\.5 { - padding-right: 0.875rem; + .\32xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .\32xl\:pb-3\.5 { - padding-bottom: 0.875rem; + .\32xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .\32xl\:pl-3\.5 { - padding-left: 0.875rem; + .\32xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .\32xl\:placeholder-transparent::placeholder { - color: transparent; + .\32xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .\32xl\:placeholder-current::placeholder { - color: currentColor; + .\32xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .\32xl\:placeholder-black::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .\32xl\:placeholder-white::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .\32xl\:placeholder-gray-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .\32xl\:placeholder-red-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .\32xl\:placeholder-yellow-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .\32xl\:placeholder-green-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .\32xl\:placeholder-blue-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-purple-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .\32xl\:placeholder-indigo-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .\32xl\:focus-within\:bg-pink-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-transparent:hover { + background-color: transparent; } - .\32xl\:placeholder-purple-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-current:hover { + background-color: currentColor; } - .\32xl\:placeholder-purple-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .\32xl\:placeholder-purple-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-50::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-100::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-200::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-300::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-400::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-500::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-600::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-700::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-800::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .\32xl\:placeholder-pink-900::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-transparent:focus::placeholder { - color: transparent; + .\32xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-current:focus::placeholder { - color: currentColor; + .\32xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-black:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-white:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-gray-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-red-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-yellow-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-green-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-blue-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-indigo-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); + .\32xl\:hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-transparent:focus { + background-color: transparent; } - .\32xl\:focus\:placeholder-purple-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-current:focus { + background-color: currentColor; } - .\32xl\:focus\:placeholder-purple-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-purple-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-50:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-100:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-200:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-300:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-400:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-500:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-600:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-700:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 242, 242, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-800:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 226, 226, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-pink-900:focus::placeholder { - --tw-placeholder-opacity: 1; - color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); + .\32xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 202, 202, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-0::placeholder { - --tw-placeholder-opacity: 0; + .\32xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 165, 165, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-5::placeholder { - --tw-placeholder-opacity: 0.05; + .\32xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 113, 113, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-10::placeholder { - --tw-placeholder-opacity: 0.1; + .\32xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-20::placeholder { - --tw-placeholder-opacity: 0.2; + .\32xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 38, 38, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-25::placeholder { - --tw-placeholder-opacity: 0.25; + .\32xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(185, 28, 28, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-30::placeholder { - --tw-placeholder-opacity: 0.3; + .\32xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(153, 27, 27, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-40::placeholder { - --tw-placeholder-opacity: 0.4; + .\32xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(127, 29, 29, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-50::placeholder { - --tw-placeholder-opacity: 0.5; + .\32xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 251, 235, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-60::placeholder { - --tw-placeholder-opacity: 0.6; + .\32xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 243, 199, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-70::placeholder { - --tw-placeholder-opacity: 0.7; + .\32xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 230, 138, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-75::placeholder { - --tw-placeholder-opacity: 0.75; + .\32xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 211, 77, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-80::placeholder { - --tw-placeholder-opacity: 0.8; + .\32xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 191, 36, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-90::placeholder { - --tw-placeholder-opacity: 0.9; + .\32xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-95::placeholder { - --tw-placeholder-opacity: 0.95; + .\32xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(217, 119, 6, var(--tw-bg-opacity)); } - .\32xl\:placeholder-opacity-100::placeholder { - --tw-placeholder-opacity: 1; + .\32xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(180, 83, 9, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-0:focus::placeholder { - --tw-placeholder-opacity: 0; + .\32xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(146, 64, 14, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-5:focus::placeholder { - --tw-placeholder-opacity: 0.05; + .\32xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 53, 15, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-10:focus::placeholder { - --tw-placeholder-opacity: 0.1; + .\32xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 253, 245, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-20:focus::placeholder { - --tw-placeholder-opacity: 0.2; + .\32xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 250, 229, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-25:focus::placeholder { - --tw-placeholder-opacity: 0.25; + .\32xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 243, 208, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-30:focus::placeholder { - --tw-placeholder-opacity: 0.3; + .\32xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(110, 231, 183, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-40:focus::placeholder { - --tw-placeholder-opacity: 0.4; + .\32xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 211, 153, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-50:focus::placeholder { - --tw-placeholder-opacity: 0.5; + .\32xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(16, 185, 129, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-60:focus::placeholder { - --tw-placeholder-opacity: 0.6; + .\32xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(5, 150, 105, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-70:focus::placeholder { - --tw-placeholder-opacity: 0.7; + .\32xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(4, 120, 87, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-75:focus::placeholder { - --tw-placeholder-opacity: 0.75; + .\32xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 95, 70, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-80:focus::placeholder { - --tw-placeholder-opacity: 0.8; + .\32xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(6, 78, 59, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-90:focus::placeholder { - --tw-placeholder-opacity: 0.9; + .\32xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-95:focus::placeholder { - --tw-placeholder-opacity: 0.95; + .\32xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); } - .\32xl\:focus\:placeholder-opacity-100:focus::placeholder { - --tw-placeholder-opacity: 1; + .\32xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); } - .\32xl\:pointer-events-none { - pointer-events: none; + .\32xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 197, 253, var(--tw-bg-opacity)); } - .\32xl\:pointer-events-auto { - pointer-events: auto; + .\32xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(96, 165, 250, var(--tw-bg-opacity)); } - .\32xl\:static { - position: static; + .\32xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); } - .\32xl\:fixed { - position: fixed; + .\32xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); } - .\32xl\:absolute { - position: absolute; + .\32xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); } - .\32xl\:relative { - position: relative; + .\32xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 64, 175, var(--tw-bg-opacity)); } - .\32xl\:sticky { - position: sticky; + .\32xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(30, 58, 138, var(--tw-bg-opacity)); } - .\32xl\:inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .\32xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 242, 255, var(--tw-bg-opacity)); } - .\32xl\:inset-1 { - top: 0.25rem; - right: 0.25rem; - bottom: 0.25rem; - left: 0.25rem; + .\32xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } - .\32xl\:inset-2 { - top: 0.5rem; - right: 0.5rem; - bottom: 0.5rem; - left: 0.5rem; + .\32xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(199, 210, 254, var(--tw-bg-opacity)); } - .\32xl\:inset-3 { - top: 0.75rem; - right: 0.75rem; - bottom: 0.75rem; - left: 0.75rem; + .\32xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(165, 180, 252, var(--tw-bg-opacity)); } - .\32xl\:inset-4 { - top: 1rem; - right: 1rem; - bottom: 1rem; - left: 1rem; + .\32xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(129, 140, 248, var(--tw-bg-opacity)); } - .\32xl\:inset-5 { - top: 1.25rem; - right: 1.25rem; - bottom: 1.25rem; - left: 1.25rem; + .\32xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(99, 102, 241, var(--tw-bg-opacity)); } - .\32xl\:inset-6 { - top: 1.5rem; - right: 1.5rem; - bottom: 1.5rem; - left: 1.5rem; + .\32xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 70, 229, var(--tw-bg-opacity)); } - .\32xl\:inset-7 { - top: 1.75rem; - right: 1.75rem; - bottom: 1.75rem; - left: 1.75rem; + .\32xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(67, 56, 202, var(--tw-bg-opacity)); } - .\32xl\:inset-8 { - top: 2rem; - right: 2rem; - bottom: 2rem; - left: 2rem; + .\32xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 48, 163, var(--tw-bg-opacity)); } - .\32xl\:inset-9 { - top: 2.25rem; - right: 2.25rem; - bottom: 2.25rem; - left: 2.25rem; + .\32xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(49, 46, 129, var(--tw-bg-opacity)); } - .\32xl\:inset-10 { - top: 2.5rem; - right: 2.5rem; - bottom: 2.5rem; - left: 2.5rem; + .\32xl\:focus\:bg-purple-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 243, 255, var(--tw-bg-opacity)); } - .\32xl\:inset-11 { - top: 2.75rem; - right: 2.75rem; - bottom: 2.75rem; - left: 2.75rem; + .\32xl\:focus\:bg-purple-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(237, 233, 254, var(--tw-bg-opacity)); } - .\32xl\:inset-12 { - top: 3rem; - right: 3rem; - bottom: 3rem; - left: 3rem; + .\32xl\:focus\:bg-purple-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 214, 254, var(--tw-bg-opacity)); } - .\32xl\:inset-14 { - top: 3.5rem; - right: 3.5rem; - bottom: 3.5rem; - left: 3.5rem; + .\32xl\:focus\:bg-purple-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(196, 181, 253, var(--tw-bg-opacity)); } - .\32xl\:inset-16 { - top: 4rem; - right: 4rem; - bottom: 4rem; - left: 4rem; + .\32xl\:focus\:bg-purple-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(167, 139, 250, var(--tw-bg-opacity)); } - .\32xl\:inset-20 { - top: 5rem; - right: 5rem; - bottom: 5rem; - left: 5rem; + .\32xl\:focus\:bg-purple-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(139, 92, 246, var(--tw-bg-opacity)); } - .\32xl\:inset-24 { - top: 6rem; - right: 6rem; - bottom: 6rem; - left: 6rem; + .\32xl\:focus\:bg-purple-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(124, 58, 237, var(--tw-bg-opacity)); } - .\32xl\:inset-28 { - top: 7rem; - right: 7rem; - bottom: 7rem; - left: 7rem; + .\32xl\:focus\:bg-purple-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(109, 40, 217, var(--tw-bg-opacity)); } - .\32xl\:inset-32 { - top: 8rem; - right: 8rem; - bottom: 8rem; - left: 8rem; + .\32xl\:focus\:bg-purple-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(91, 33, 182, var(--tw-bg-opacity)); } - .\32xl\:inset-36 { - top: 9rem; - right: 9rem; - bottom: 9rem; - left: 9rem; + .\32xl\:focus\:bg-purple-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(76, 29, 149, var(--tw-bg-opacity)); } - .\32xl\:inset-40 { - top: 10rem; - right: 10rem; - bottom: 10rem; - left: 10rem; + .\32xl\:focus\:bg-pink-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 242, 248, var(--tw-bg-opacity)); } - .\32xl\:inset-44 { - top: 11rem; - right: 11rem; - bottom: 11rem; - left: 11rem; + .\32xl\:focus\:bg-pink-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(252, 231, 243, var(--tw-bg-opacity)); } - .\32xl\:inset-48 { - top: 12rem; - right: 12rem; - bottom: 12rem; - left: 12rem; + .\32xl\:focus\:bg-pink-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 207, 232, var(--tw-bg-opacity)); } - .\32xl\:inset-52 { - top: 13rem; - right: 13rem; - bottom: 13rem; - left: 13rem; + .\32xl\:focus\:bg-pink-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 168, 212, var(--tw-bg-opacity)); } - .\32xl\:inset-56 { - top: 14rem; - right: 14rem; - bottom: 14rem; - left: 14rem; + .\32xl\:focus\:bg-pink-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 114, 182, var(--tw-bg-opacity)); } - .\32xl\:inset-60 { - top: 15rem; - right: 15rem; - bottom: 15rem; - left: 15rem; + .\32xl\:focus\:bg-pink-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(236, 72, 153, var(--tw-bg-opacity)); } - .\32xl\:inset-64 { - top: 16rem; - right: 16rem; - bottom: 16rem; - left: 16rem; + .\32xl\:focus\:bg-pink-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(219, 39, 119, var(--tw-bg-opacity)); } - .\32xl\:inset-72 { - top: 18rem; - right: 18rem; - bottom: 18rem; - left: 18rem; + .\32xl\:focus\:bg-pink-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(190, 24, 93, var(--tw-bg-opacity)); } - .\32xl\:inset-80 { - top: 20rem; - right: 20rem; - bottom: 20rem; - left: 20rem; + .\32xl\:focus\:bg-pink-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(157, 23, 77, var(--tw-bg-opacity)); } - .\32xl\:inset-96 { - top: 24rem; - right: 24rem; - bottom: 24rem; - left: 24rem; + .\32xl\:focus\:bg-pink-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(131, 24, 67, var(--tw-bg-opacity)); } - .\32xl\:inset-auto { - top: auto; - right: auto; - bottom: auto; - left: auto; + .\32xl\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .\32xl\:inset-px { - top: 1px; - right: 1px; - bottom: 1px; - left: 1px; + .\32xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .\32xl\:inset-0\.5 { - top: 0.125rem; - right: 0.125rem; - bottom: 0.125rem; - left: 0.125rem; + .\32xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .\32xl\:inset-1\.5 { - top: 0.375rem; - right: 0.375rem; - bottom: 0.375rem; - left: 0.375rem; + .\32xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .\32xl\:inset-2\.5 { - top: 0.625rem; - right: 0.625rem; - bottom: 0.625rem; - left: 0.625rem; + .\32xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .\32xl\:inset-3\.5 { - top: 0.875rem; - right: 0.875rem; - bottom: 0.875rem; - left: 0.875rem; + .\32xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .\32xl\:-inset-0 { - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; + .\32xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .\32xl\:-inset-1 { - top: -0.25rem; - right: -0.25rem; - bottom: -0.25rem; - left: -0.25rem; + .\32xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .\32xl\:-inset-2 { - top: -0.5rem; - right: -0.5rem; - bottom: -0.5rem; - left: -0.5rem; + .\32xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .\32xl\:-inset-3 { - top: -0.75rem; - right: -0.75rem; - bottom: -0.75rem; - left: -0.75rem; + .\32xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .\32xl\:-inset-4 { - top: -1rem; - right: -1rem; - bottom: -1rem; - left: -1rem; + .\32xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .\32xl\:-inset-5 { - top: -1.25rem; - right: -1.25rem; - bottom: -1.25rem; - left: -1.25rem; + .\32xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .\32xl\:-inset-6 { - top: -1.5rem; - right: -1.5rem; - bottom: -1.5rem; - left: -1.5rem; + .\32xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .\32xl\:-inset-7 { - top: -1.75rem; - right: -1.75rem; - bottom: -1.75rem; - left: -1.75rem; + .\32xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .\32xl\:-inset-8 { - top: -2rem; - right: -2rem; - bottom: -2rem; - left: -2rem; + .\32xl\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .\32xl\:-inset-9 { - top: -2.25rem; - right: -2.25rem; - bottom: -2.25rem; - left: -2.25rem; + .group:hover .\32xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; } - .\32xl\:-inset-10 { - top: -2.5rem; - right: -2.5rem; - bottom: -2.5rem; - left: -2.5rem; + .group:hover .\32xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; } - .\32xl\:-inset-11 { - top: -2.75rem; - right: -2.75rem; - bottom: -2.75rem; - left: -2.75rem; + .group:hover .\32xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; } - .\32xl\:-inset-12 { - top: -3rem; - right: -3rem; - bottom: -3rem; - left: -3rem; + .group:hover .\32xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; } - .\32xl\:-inset-14 { - top: -3.5rem; - right: -3.5rem; - bottom: -3.5rem; - left: -3.5rem; + .group:hover .\32xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; } - .\32xl\:-inset-16 { - top: -4rem; - right: -4rem; - bottom: -4rem; - left: -4rem; + .group:hover .\32xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; } - .\32xl\:-inset-20 { - top: -5rem; - right: -5rem; - bottom: -5rem; - left: -5rem; + .group:hover .\32xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; } - .\32xl\:-inset-24 { - top: -6rem; - right: -6rem; - bottom: -6rem; - left: -6rem; + .group:hover .\32xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; } - .\32xl\:-inset-28 { - top: -7rem; - right: -7rem; - bottom: -7rem; - left: -7rem; + .group:hover .\32xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; } - .\32xl\:-inset-32 { - top: -8rem; - right: -8rem; - bottom: -8rem; - left: -8rem; + .group:hover .\32xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; } - .\32xl\:-inset-36 { - top: -9rem; - right: -9rem; - bottom: -9rem; - left: -9rem; + .group:hover .\32xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; } - .\32xl\:-inset-40 { - top: -10rem; - right: -10rem; - bottom: -10rem; - left: -10rem; + .group:hover .\32xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; } - .\32xl\:-inset-44 { - top: -11rem; - right: -11rem; - bottom: -11rem; - left: -11rem; + .group:hover .\32xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; } - .\32xl\:-inset-48 { - top: -12rem; - right: -12rem; - bottom: -12rem; - left: -12rem; + .group:hover .\32xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; } - .\32xl\:-inset-52 { - top: -13rem; - right: -13rem; - bottom: -13rem; - left: -13rem; + .group:hover .\32xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; } - .\32xl\:-inset-56 { - top: -14rem; - right: -14rem; - bottom: -14rem; - left: -14rem; + .\32xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; } - .\32xl\:-inset-60 { - top: -15rem; - right: -15rem; - bottom: -15rem; - left: -15rem; + .\32xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; } - .\32xl\:-inset-64 { - top: -16rem; - right: -16rem; - bottom: -16rem; - left: -16rem; + .\32xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; } - .\32xl\:-inset-72 { - top: -18rem; - right: -18rem; - bottom: -18rem; - left: -18rem; + .\32xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; } - .\32xl\:-inset-80 { - top: -20rem; - right: -20rem; - bottom: -20rem; - left: -20rem; + .\32xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; } - .\32xl\:-inset-96 { - top: -24rem; - right: -24rem; - bottom: -24rem; - left: -24rem; + .\32xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; } - .\32xl\:-inset-px { - top: -1px; - right: -1px; - bottom: -1px; - left: -1px; + .\32xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; } - .\32xl\:-inset-0\.5 { - top: -0.125rem; - right: -0.125rem; - bottom: -0.125rem; - left: -0.125rem; + .\32xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; } - .\32xl\:-inset-1\.5 { - top: -0.375rem; - right: -0.375rem; - bottom: -0.375rem; - left: -0.375rem; + .\32xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; } - .\32xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; - left: -0.625rem; + .\32xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; } - .\32xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; - left: -0.875rem; + .\32xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; } - .\32xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .\32xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; } - .\32xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; - left: 33.333333%; + .\32xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; } - .\32xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; - left: 66.666667%; + .\32xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; } - .\32xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; - left: 25%; + .\32xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; } - .\32xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; - left: 50%; + .\32xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; } - .\32xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; - left: 75%; + .\32xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; } - .\32xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; - left: 100%; + .\32xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; } - .\32xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .\32xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; } - .\32xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; - left: -33.333333%; + .\32xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; } - .\32xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; - left: -66.666667%; + .\32xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; } - .\32xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; - left: -25%; + .\32xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; } - .\32xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; - left: -50%; + .\32xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; } - .\32xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; - left: -75%; + .\32xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; } - .\32xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; - left: -100%; + .\32xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; } - .\32xl\:inset-y-0 { - top: 0px; - bottom: 0px; + .\32xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; } - .\32xl\:inset-x-0 { - right: 0px; - left: 0px; + .\32xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; } - .\32xl\:inset-y-1 { - top: 0.25rem; - bottom: 0.25rem; + .\32xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; } - .\32xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; + .\32xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; } - .\32xl\:inset-y-2 { - top: 0.5rem; - bottom: 0.5rem; + .\32xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; } - .\32xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; + .\32xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; } - .\32xl\:inset-y-3 { - top: 0.75rem; - bottom: 0.75rem; + .\32xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; } - .\32xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; + .\32xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; } - .\32xl\:inset-y-4 { - top: 1rem; - bottom: 1rem; + .\32xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; } - .\32xl\:inset-x-4 { - right: 1rem; - left: 1rem; + .\32xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; } - .\32xl\:inset-y-5 { - top: 1.25rem; - bottom: 1.25rem; + .\32xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; } - .\32xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; + .\32xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; } - .\32xl\:inset-y-6 { - top: 1.5rem; - bottom: 1.5rem; + .\32xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; } - .\32xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; + .\32xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; } - .\32xl\:inset-y-7 { - top: 1.75rem; - bottom: 1.75rem; + .\32xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; } - .\32xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; + .\32xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; } - .\32xl\:inset-y-8 { - top: 2rem; - bottom: 2rem; + .\32xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; } - .\32xl\:inset-x-8 { - right: 2rem; - left: 2rem; + .\32xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; } - .\32xl\:inset-y-9 { - top: 2.25rem; - bottom: 2.25rem; + .\32xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; } - .\32xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; + .\32xl\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; } - .\32xl\:inset-y-10 { - top: 2.5rem; - bottom: 2.5rem; + .\32xl\:bg-none { + background-image: none; } - .\32xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; + .\32xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); } - .\32xl\:inset-y-11 { - top: 2.75rem; - bottom: 2.75rem; + .\32xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); } - .\32xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; + .\32xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); } - .\32xl\:inset-y-12 { - top: 3rem; - bottom: 3rem; + .\32xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } - .\32xl\:inset-x-12 { - right: 3rem; - left: 3rem; + .\32xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } - .\32xl\:inset-y-14 { - top: 3.5rem; - bottom: 3.5rem; + .\32xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); } - .\32xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; + .\32xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); } - .\32xl\:inset-y-16 { - top: 4rem; - bottom: 4rem; + .\32xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } - .\32xl\:inset-x-16 { - right: 4rem; - left: 4rem; + .\32xl\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:inset-y-20 { - top: 5rem; - bottom: 5rem; + .\32xl\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:inset-x-20 { - right: 5rem; - left: 5rem; + .\32xl\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:inset-y-24 { - top: 6rem; - bottom: 6rem; + .\32xl\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:inset-x-24 { - right: 6rem; - left: 6rem; + .\32xl\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:inset-y-28 { - top: 7rem; - bottom: 7rem; + .\32xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:inset-x-28 { - right: 7rem; - left: 7rem; + .\32xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:inset-y-32 { - top: 8rem; - bottom: 8rem; + .\32xl\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:inset-x-32 { - right: 8rem; - left: 8rem; + .\32xl\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:inset-y-36 { - top: 9rem; - bottom: 9rem; + .\32xl\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:inset-x-36 { - right: 9rem; - left: 9rem; + .\32xl\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:inset-y-40 { - top: 10rem; - bottom: 10rem; + .\32xl\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:inset-x-40 { - right: 10rem; - left: 10rem; + .\32xl\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:inset-y-44 { - top: 11rem; - bottom: 11rem; + .\32xl\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:inset-x-44 { - right: 11rem; - left: 11rem; + .\32xl\:from-red-50 { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:inset-y-48 { - top: 12rem; - bottom: 12rem; + .\32xl\:from-red-100 { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:inset-x-48 { - right: 12rem; - left: 12rem; + .\32xl\:from-red-200 { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:inset-y-52 { - top: 13rem; - bottom: 13rem; + .\32xl\:from-red-300 { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:inset-x-52 { - right: 13rem; - left: 13rem; + .\32xl\:from-red-400 { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:inset-y-56 { - top: 14rem; - bottom: 14rem; + .\32xl\:from-red-500 { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:inset-x-56 { - right: 14rem; - left: 14rem; + .\32xl\:from-red-600 { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:inset-y-60 { - top: 15rem; - bottom: 15rem; + .\32xl\:from-red-700 { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:inset-x-60 { - right: 15rem; - left: 15rem; + .\32xl\:from-red-800 { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:inset-y-64 { - top: 16rem; - bottom: 16rem; + .\32xl\:from-red-900 { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:inset-x-64 { - right: 16rem; - left: 16rem; + .\32xl\:from-yellow-50 { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:inset-y-72 { - top: 18rem; - bottom: 18rem; + .\32xl\:from-yellow-100 { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:inset-x-72 { - right: 18rem; - left: 18rem; + .\32xl\:from-yellow-200 { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:inset-y-80 { - top: 20rem; - bottom: 20rem; + .\32xl\:from-yellow-300 { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:inset-x-80 { - right: 20rem; - left: 20rem; + .\32xl\:from-yellow-400 { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:inset-y-96 { - top: 24rem; - bottom: 24rem; + .\32xl\:from-yellow-500 { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:inset-x-96 { - right: 24rem; - left: 24rem; + .\32xl\:from-yellow-600 { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:inset-y-auto { - top: auto; - bottom: auto; + .\32xl\:from-yellow-700 { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:inset-x-auto { - right: auto; - left: auto; + .\32xl\:from-yellow-800 { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:inset-y-px { - top: 1px; - bottom: 1px; + .\32xl\:from-yellow-900 { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:inset-x-px { - right: 1px; - left: 1px; + .\32xl\:from-green-50 { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:inset-y-0\.5 { - top: 0.125rem; - bottom: 0.125rem; + .\32xl\:from-green-100 { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; + .\32xl\:from-green-200 { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:inset-y-1\.5 { - top: 0.375rem; - bottom: 0.375rem; + .\32xl\:from-green-300 { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; + .\32xl\:from-green-400 { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:inset-y-2\.5 { - top: 0.625rem; - bottom: 0.625rem; + .\32xl\:from-green-500 { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; + .\32xl\:from-green-600 { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:inset-y-3\.5 { - top: 0.875rem; - bottom: 0.875rem; + .\32xl\:from-green-700 { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; + .\32xl\:from-green-800 { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:-inset-y-0 { - top: 0px; - bottom: 0px; + .\32xl\:from-green-900 { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:-inset-x-0 { - right: 0px; - left: 0px; + .\32xl\:from-blue-50 { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:-inset-y-1 { - top: -0.25rem; - bottom: -0.25rem; + .\32xl\:from-blue-100 { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; + .\32xl\:from-blue-200 { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:-inset-y-2 { - top: -0.5rem; - bottom: -0.5rem; + .\32xl\:from-blue-300 { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; + .\32xl\:from-blue-400 { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:-inset-y-3 { - top: -0.75rem; - bottom: -0.75rem; + .\32xl\:from-blue-500 { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; + .\32xl\:from-blue-600 { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:-inset-y-4 { - top: -1rem; - bottom: -1rem; + .\32xl\:from-blue-700 { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:-inset-x-4 { - right: -1rem; - left: -1rem; + .\32xl\:from-blue-800 { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:-inset-y-5 { - top: -1.25rem; - bottom: -1.25rem; + .\32xl\:from-blue-900 { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; + .\32xl\:from-indigo-50 { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:-inset-y-6 { - top: -1.5rem; - bottom: -1.5rem; + .\32xl\:from-indigo-100 { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; + .\32xl\:from-indigo-200 { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:-inset-y-7 { - top: -1.75rem; - bottom: -1.75rem; + .\32xl\:from-indigo-300 { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; + .\32xl\:from-indigo-400 { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:-inset-y-8 { - top: -2rem; - bottom: -2rem; + .\32xl\:from-indigo-500 { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:-inset-x-8 { - right: -2rem; - left: -2rem; + .\32xl\:from-indigo-600 { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:-inset-y-9 { - top: -2.25rem; - bottom: -2.25rem; + .\32xl\:from-indigo-700 { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; + .\32xl\:from-indigo-800 { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:-inset-y-10 { - top: -2.5rem; - bottom: -2.5rem; + .\32xl\:from-indigo-900 { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; + .\32xl\:from-purple-50 { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:-inset-y-11 { - top: -2.75rem; - bottom: -2.75rem; + .\32xl\:from-purple-100 { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; + .\32xl\:from-purple-200 { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:-inset-y-12 { - top: -3rem; - bottom: -3rem; + .\32xl\:from-purple-300 { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:-inset-x-12 { - right: -3rem; - left: -3rem; + .\32xl\:from-purple-400 { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:-inset-y-14 { - top: -3.5rem; - bottom: -3.5rem; + .\32xl\:from-purple-500 { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; + .\32xl\:from-purple-600 { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:-inset-y-16 { - top: -4rem; - bottom: -4rem; + .\32xl\:from-purple-700 { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:-inset-x-16 { - right: -4rem; - left: -4rem; + .\32xl\:from-purple-800 { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:-inset-y-20 { - top: -5rem; - bottom: -5rem; + .\32xl\:from-purple-900 { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:-inset-x-20 { - right: -5rem; - left: -5rem; + .\32xl\:from-pink-50 { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:-inset-y-24 { - top: -6rem; - bottom: -6rem; + .\32xl\:from-pink-100 { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:-inset-x-24 { - right: -6rem; - left: -6rem; + .\32xl\:from-pink-200 { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:-inset-y-28 { - top: -7rem; - bottom: -7rem; + .\32xl\:from-pink-300 { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:-inset-x-28 { - right: -7rem; - left: -7rem; + .\32xl\:from-pink-400 { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:-inset-y-32 { - top: -8rem; - bottom: -8rem; + .\32xl\:from-pink-500 { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:-inset-x-32 { - right: -8rem; - left: -8rem; + .\32xl\:from-pink-600 { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:-inset-y-36 { - top: -9rem; - bottom: -9rem; + .\32xl\:from-pink-700 { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:-inset-x-36 { - right: -9rem; - left: -9rem; + .\32xl\:from-pink-800 { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:-inset-y-40 { - top: -10rem; - bottom: -10rem; + .\32xl\:from-pink-900 { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:-inset-x-40 { - right: -10rem; - left: -10rem; + .\32xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-inset-y-44 { - top: -11rem; - bottom: -11rem; + .\32xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-inset-x-44 { - right: -11rem; - left: -11rem; + .\32xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-inset-y-48 { - top: -12rem; - bottom: -12rem; + .\32xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-inset-x-48 { - right: -12rem; - left: -12rem; + .\32xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:-inset-y-52 { - top: -13rem; - bottom: -13rem; + .\32xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:-inset-x-52 { - right: -13rem; - left: -13rem; + .\32xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:-inset-y-56 { - top: -14rem; - bottom: -14rem; + .\32xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:-inset-x-56 { - right: -14rem; - left: -14rem; + .\32xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:-inset-y-60 { - top: -15rem; - bottom: -15rem; + .\32xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:-inset-x-60 { - right: -15rem; - left: -15rem; + .\32xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:-inset-y-64 { - top: -16rem; - bottom: -16rem; + .\32xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:-inset-x-64 { - right: -16rem; - left: -16rem; + .\32xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:-inset-y-72 { - top: -18rem; - bottom: -18rem; + .\32xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:-inset-x-72 { - right: -18rem; - left: -18rem; + .\32xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:-inset-y-80 { - top: -20rem; - bottom: -20rem; + .\32xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:-inset-x-80 { - right: -20rem; - left: -20rem; + .\32xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:-inset-y-96 { - top: -24rem; - bottom: -24rem; + .\32xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:-inset-x-96 { - right: -24rem; - left: -24rem; + .\32xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:-inset-y-px { - top: -1px; - bottom: -1px; + .\32xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:-inset-x-px { - right: -1px; - left: -1px; + .\32xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:-inset-y-0\.5 { - top: -0.125rem; - bottom: -0.125rem; + .\32xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; + .\32xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:-inset-y-1\.5 { - top: -0.375rem; - bottom: -0.375rem; + .\32xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; + .\32xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:-inset-y-2\.5 { - top: -0.625rem; - bottom: -0.625rem; + .\32xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; + .\32xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:-inset-y-3\.5 { - top: -0.875rem; - bottom: -0.875rem; + .\32xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; + .\32xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:inset-y-1\/2 { - top: 50%; - bottom: 50%; + .\32xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:inset-x-1\/2 { - right: 50%; - left: 50%; + .\32xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:inset-y-1\/3 { - top: 33.333333%; - bottom: 33.333333%; + .\32xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; + .\32xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:inset-y-2\/3 { - top: 66.666667%; - bottom: 66.666667%; + .\32xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; + .\32xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:inset-y-1\/4 { - top: 25%; - bottom: 25%; + .\32xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:inset-x-1\/4 { - right: 25%; - left: 25%; + .\32xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:inset-y-2\/4 { - top: 50%; - bottom: 50%; + .\32xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:inset-x-2\/4 { - right: 50%; - left: 50%; + .\32xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:inset-y-3\/4 { - top: 75%; - bottom: 75%; + .\32xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:inset-x-3\/4 { - right: 75%; - left: 75%; + .\32xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:inset-y-full { - top: 100%; - bottom: 100%; + .\32xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:inset-x-full { - right: 100%; - left: 100%; + .\32xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:-inset-y-1\/2 { - top: -50%; - bottom: -50%; + .\32xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; + .\32xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:-inset-y-1\/3 { - top: -33.333333%; - bottom: -33.333333%; + .\32xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; + .\32xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:-inset-y-2\/3 { - top: -66.666667%; - bottom: -66.666667%; + .\32xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; + .\32xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:-inset-y-1\/4 { - top: -25%; - bottom: -25%; + .\32xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; + .\32xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:-inset-y-2\/4 { - top: -50%; - bottom: -50%; + .\32xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; + .\32xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:-inset-y-3\/4 { - top: -75%; - bottom: -75%; + .\32xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; + .\32xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:-inset-y-full { - top: -100%; - bottom: -100%; + .\32xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:-inset-x-full { - right: -100%; - left: -100%; + .\32xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:top-0 { - top: 0px; + .\32xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:right-0 { - right: 0px; + .\32xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:bottom-0 { - bottom: 0px; + .\32xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:left-0 { - left: 0px; + .\32xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:top-1 { - top: 0.25rem; + .\32xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:right-1 { - right: 0.25rem; + .\32xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:bottom-1 { - bottom: 0.25rem; + .\32xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:left-1 { - left: 0.25rem; + .\32xl\:via-purple-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:top-2 { - top: 0.5rem; + .\32xl\:via-purple-100 { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:right-2 { - right: 0.5rem; + .\32xl\:via-purple-200 { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:bottom-2 { - bottom: 0.5rem; + .\32xl\:via-purple-300 { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:left-2 { - left: 0.5rem; + .\32xl\:via-purple-400 { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:top-3 { - top: 0.75rem; + .\32xl\:via-purple-500 { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:right-3 { - right: 0.75rem; + .\32xl\:via-purple-600 { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:bottom-3 { - bottom: 0.75rem; + .\32xl\:via-purple-700 { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:left-3 { - left: 0.75rem; + .\32xl\:via-purple-800 { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:top-4 { - top: 1rem; + .\32xl\:via-purple-900 { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:right-4 { - right: 1rem; + .\32xl\:via-pink-50 { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:bottom-4 { - bottom: 1rem; + .\32xl\:via-pink-100 { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:left-4 { - left: 1rem; + .\32xl\:via-pink-200 { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:top-5 { - top: 1.25rem; + .\32xl\:via-pink-300 { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:right-5 { - right: 1.25rem; + .\32xl\:via-pink-400 { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:bottom-5 { - bottom: 1.25rem; + .\32xl\:via-pink-500 { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:left-5 { - left: 1.25rem; + .\32xl\:via-pink-600 { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:top-6 { - top: 1.5rem; + .\32xl\:via-pink-700 { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:right-6 { - right: 1.5rem; + .\32xl\:via-pink-800 { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:bottom-6 { - bottom: 1.5rem; + .\32xl\:via-pink-900 { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:left-6 { - left: 1.5rem; + .\32xl\:to-transparent { + --tw-gradient-to: transparent; } - .\32xl\:top-7 { - top: 1.75rem; + .\32xl\:to-current { + --tw-gradient-to: currentColor; } - .\32xl\:right-7 { - right: 1.75rem; + .\32xl\:to-black { + --tw-gradient-to: #000; } - .\32xl\:bottom-7 { - bottom: 1.75rem; + .\32xl\:to-white { + --tw-gradient-to: #fff; } - .\32xl\:left-7 { - left: 1.75rem; + .\32xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; } - .\32xl\:top-8 { - top: 2rem; + .\32xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; } - .\32xl\:right-8 { - right: 2rem; + .\32xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; } - .\32xl\:bottom-8 { - bottom: 2rem; + .\32xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; } - .\32xl\:left-8 { - left: 2rem; + .\32xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; } - .\32xl\:top-9 { - top: 2.25rem; + .\32xl\:to-gray-500 { + --tw-gradient-to: #6b7280; } - .\32xl\:right-9 { - right: 2.25rem; + .\32xl\:to-gray-600 { + --tw-gradient-to: #4b5563; } - .\32xl\:bottom-9 { - bottom: 2.25rem; + .\32xl\:to-gray-700 { + --tw-gradient-to: #374151; } - .\32xl\:left-9 { - left: 2.25rem; + .\32xl\:to-gray-800 { + --tw-gradient-to: #1f2937; } - .\32xl\:top-10 { - top: 2.5rem; + .\32xl\:to-gray-900 { + --tw-gradient-to: #111827; } - .\32xl\:right-10 { - right: 2.5rem; + .\32xl\:to-red-50 { + --tw-gradient-to: #fef2f2; } - .\32xl\:bottom-10 { - bottom: 2.5rem; + .\32xl\:to-red-100 { + --tw-gradient-to: #fee2e2; } - .\32xl\:left-10 { - left: 2.5rem; + .\32xl\:to-red-200 { + --tw-gradient-to: #fecaca; } - .\32xl\:top-11 { - top: 2.75rem; + .\32xl\:to-red-300 { + --tw-gradient-to: #fca5a5; } - .\32xl\:right-11 { - right: 2.75rem; + .\32xl\:to-red-400 { + --tw-gradient-to: #f87171; } - .\32xl\:bottom-11 { - bottom: 2.75rem; + .\32xl\:to-red-500 { + --tw-gradient-to: #ef4444; } - .\32xl\:left-11 { - left: 2.75rem; + .\32xl\:to-red-600 { + --tw-gradient-to: #dc2626; } - .\32xl\:top-12 { - top: 3rem; + .\32xl\:to-red-700 { + --tw-gradient-to: #b91c1c; } - .\32xl\:right-12 { - right: 3rem; + .\32xl\:to-red-800 { + --tw-gradient-to: #991b1b; } - .\32xl\:bottom-12 { - bottom: 3rem; + .\32xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; } - .\32xl\:left-12 { - left: 3rem; + .\32xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; } - .\32xl\:top-14 { - top: 3.5rem; + .\32xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; } - .\32xl\:right-14 { - right: 3.5rem; + .\32xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; } - .\32xl\:bottom-14 { - bottom: 3.5rem; + .\32xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; } - .\32xl\:left-14 { - left: 3.5rem; + .\32xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; } - .\32xl\:top-16 { - top: 4rem; + .\32xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; } - .\32xl\:right-16 { - right: 4rem; + .\32xl\:to-yellow-600 { + --tw-gradient-to: #d97706; } - .\32xl\:bottom-16 { - bottom: 4rem; + .\32xl\:to-yellow-700 { + --tw-gradient-to: #b45309; } - .\32xl\:left-16 { - left: 4rem; + .\32xl\:to-yellow-800 { + --tw-gradient-to: #92400e; } - .\32xl\:top-20 { - top: 5rem; + .\32xl\:to-yellow-900 { + --tw-gradient-to: #78350f; } - .\32xl\:right-20 { - right: 5rem; + .\32xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; } - .\32xl\:bottom-20 { - bottom: 5rem; + .\32xl\:to-green-100 { + --tw-gradient-to: #d1fae5; } - .\32xl\:left-20 { - left: 5rem; + .\32xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; } - .\32xl\:top-24 { - top: 6rem; + .\32xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; } - .\32xl\:right-24 { - right: 6rem; + .\32xl\:to-green-400 { + --tw-gradient-to: #34d399; } - .\32xl\:bottom-24 { - bottom: 6rem; + .\32xl\:to-green-500 { + --tw-gradient-to: #10b981; } - .\32xl\:left-24 { - left: 6rem; + .\32xl\:to-green-600 { + --tw-gradient-to: #059669; } - .\32xl\:top-28 { - top: 7rem; + .\32xl\:to-green-700 { + --tw-gradient-to: #047857; } - .\32xl\:right-28 { - right: 7rem; + .\32xl\:to-green-800 { + --tw-gradient-to: #065f46; } - .\32xl\:bottom-28 { - bottom: 7rem; + .\32xl\:to-green-900 { + --tw-gradient-to: #064e3b; } - .\32xl\:left-28 { - left: 7rem; + .\32xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; } - .\32xl\:top-32 { - top: 8rem; + .\32xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; } - .\32xl\:right-32 { - right: 8rem; + .\32xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; } - .\32xl\:bottom-32 { - bottom: 8rem; + .\32xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; } - .\32xl\:left-32 { - left: 8rem; + .\32xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; } - .\32xl\:top-36 { - top: 9rem; + .\32xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; } - .\32xl\:right-36 { - right: 9rem; + .\32xl\:to-blue-600 { + --tw-gradient-to: #2563eb; } - .\32xl\:bottom-36 { - bottom: 9rem; + .\32xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; } - .\32xl\:left-36 { - left: 9rem; + .\32xl\:to-blue-800 { + --tw-gradient-to: #1e40af; } - .\32xl\:top-40 { - top: 10rem; + .\32xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; } - .\32xl\:right-40 { - right: 10rem; + .\32xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; } - .\32xl\:bottom-40 { - bottom: 10rem; + .\32xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; } - .\32xl\:left-40 { - left: 10rem; + .\32xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; } - .\32xl\:top-44 { - top: 11rem; + .\32xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; } - .\32xl\:right-44 { - right: 11rem; + .\32xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; } - .\32xl\:bottom-44 { - bottom: 11rem; + .\32xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; } - .\32xl\:left-44 { - left: 11rem; + .\32xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; } - .\32xl\:top-48 { - top: 12rem; + .\32xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; } - .\32xl\:right-48 { - right: 12rem; + .\32xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; } - .\32xl\:bottom-48 { - bottom: 12rem; + .\32xl\:to-indigo-900 { + --tw-gradient-to: #312e81; } - .\32xl\:left-48 { - left: 12rem; + .\32xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; } - .\32xl\:top-52 { - top: 13rem; + .\32xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; } - .\32xl\:right-52 { - right: 13rem; + .\32xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; } - .\32xl\:bottom-52 { - bottom: 13rem; + .\32xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; } - .\32xl\:left-52 { - left: 13rem; + .\32xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; } - .\32xl\:top-56 { - top: 14rem; + .\32xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; } - .\32xl\:right-56 { - right: 14rem; + .\32xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; } - .\32xl\:bottom-56 { - bottom: 14rem; + .\32xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; } - .\32xl\:left-56 { - left: 14rem; + .\32xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; } - .\32xl\:top-60 { - top: 15rem; + .\32xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; } - .\32xl\:right-60 { - right: 15rem; + .\32xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; } - .\32xl\:bottom-60 { - bottom: 15rem; + .\32xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; } - .\32xl\:left-60 { - left: 15rem; + .\32xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; } - .\32xl\:top-64 { - top: 16rem; + .\32xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; } - .\32xl\:right-64 { - right: 16rem; + .\32xl\:to-pink-400 { + --tw-gradient-to: #f472b6; } - .\32xl\:bottom-64 { - bottom: 16rem; + .\32xl\:to-pink-500 { + --tw-gradient-to: #ec4899; } - .\32xl\:left-64 { - left: 16rem; + .\32xl\:to-pink-600 { + --tw-gradient-to: #db2777; } - .\32xl\:top-72 { - top: 18rem; + .\32xl\:to-pink-700 { + --tw-gradient-to: #be185d; } - .\32xl\:right-72 { - right: 18rem; + .\32xl\:to-pink-800 { + --tw-gradient-to: #9d174d; } - .\32xl\:bottom-72 { - bottom: 18rem; + .\32xl\:to-pink-900 { + --tw-gradient-to: #831843; } - .\32xl\:left-72 { - left: 18rem; + .\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\:top-80 { - top: 20rem; + .\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\:right-80 { - right: 20rem; + .\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\:bottom-80 { - bottom: 20rem; + .\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\:left-80 { - left: 20rem; + .\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\:top-96 { - top: 24rem; + .\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\:right-96 { - right: 24rem; + .\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\:bottom-96 { - bottom: 24rem; + .\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\:left-96 { - left: 24rem; + .\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\:top-auto { - top: auto; + .\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\:right-auto { - right: auto; + .\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\:bottom-auto { - bottom: auto; + .\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\:left-auto { - left: auto; + .\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\:top-px { - top: 1px; + .\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\:right-px { - right: 1px; + .\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\:bottom-px { - bottom: 1px; + .\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\:left-px { - left: 1px; + .\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\:top-0\.5 { - top: 0.125rem; + .\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\:right-0\.5 { - right: 0.125rem; + .\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\:bottom-0\.5 { - bottom: 0.125rem; + .\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\:left-0\.5 { - left: 0.125rem; + .\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\:top-1\.5 { - top: 0.375rem; + .\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\:right-1\.5 { - right: 0.375rem; + .\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\:bottom-1\.5 { - bottom: 0.375rem; + .\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\:left-1\.5 { - left: 0.375rem; + .\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\:top-2\.5 { - top: 0.625rem; + .\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\:right-2\.5 { - right: 0.625rem; + .\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\:bottom-2\.5 { - bottom: 0.625rem; + .\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\:left-2\.5 { - left: 0.625rem; + .\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\:top-3\.5 { - top: 0.875rem; + .\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\:right-3\.5 { - right: 0.875rem; + .\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\:bottom-3\.5 { - bottom: 0.875rem; + .\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\:left-3\.5 { - left: 0.875rem; + .\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\:-top-0 { - top: 0px; + .\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\:-right-0 { - right: 0px; + .\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\:-bottom-0 { - bottom: 0px; + .\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\:-left-0 { - left: 0px; + .\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\:-top-1 { - top: -0.25rem; + .\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\:-right-1 { - right: -0.25rem; + .\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\:-bottom-1 { - bottom: -0.25rem; + .\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\:-left-1 { - left: -0.25rem; + .\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\:-top-2 { - top: -0.5rem; + .\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\:-right-2 { - right: -0.5rem; + .\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\:-bottom-2 { - bottom: -0.5rem; + .\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\:-left-2 { - left: -0.5rem; + .\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\:-top-3 { - top: -0.75rem; + .\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\:-right-3 { - right: -0.75rem; + .\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\:-bottom-3 { - bottom: -0.75rem; + .\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\:-left-3 { - left: -0.75rem; + .\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\:-top-4 { - top: -1rem; + .\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\:-right-4 { - right: -1rem; + .\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\:-bottom-4 { - bottom: -1rem; + .\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\:-left-4 { - left: -1rem; + .\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\:-top-5 { - top: -1.25rem; + .\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\:-right-5 { - right: -1.25rem; + .\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\:-bottom-5 { - bottom: -1.25rem; + .\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\:-left-5 { - left: -1.25rem; + .\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\:-top-6 { - top: -1.5rem; + .\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\:-right-6 { - right: -1.5rem; + .\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\:-bottom-6 { - bottom: -1.5rem; + .\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\:-left-6 { - left: -1.5rem; + .\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\:-top-7 { - top: -1.75rem; + .\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\:-right-7 { - right: -1.75rem; + .\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\:-bottom-7 { - bottom: -1.75rem; + .\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\:-left-7 { - left: -1.75rem; + .\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\:-top-8 { - top: -2rem; + .\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\:-right-8 { - right: -2rem; + .\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\:-bottom-8 { - bottom: -2rem; + .\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\:-left-8 { - left: -2rem; + .\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\:-top-9 { - top: -2.25rem; + .\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\:-right-9 { - right: -2.25rem; + .\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\:-bottom-9 { - bottom: -2.25rem; + .\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\:-left-9 { - left: -2.25rem; + .\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\:-top-10 { - top: -2.5rem; + .\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\:-right-10 { - right: -2.5rem; + .\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\:-bottom-10 { - bottom: -2.5rem; + .\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\:-left-10 { - left: -2.5rem; + .\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\:-top-11 { - top: -2.75rem; + .\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\:-right-11 { - right: -2.75rem; + .\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\:-bottom-11 { - bottom: -2.75rem; + .\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\:-left-11 { - left: -2.75rem; + .\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\:-top-12 { - top: -3rem; + .\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\:-right-12 { - right: -3rem; + .\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\:-bottom-12 { - bottom: -3rem; + .\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\:-left-12 { - left: -3rem; + .\32xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-top-14 { - top: -3.5rem; + .\32xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-right-14 { - right: -3.5rem; + .\32xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:-bottom-14 { - bottom: -3.5rem; + .\32xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:-left-14 { - left: -3.5rem; + .\32xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:-top-16 { - top: -4rem; + .\32xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:-right-16 { - right: -4rem; + .\32xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:-bottom-16 { - bottom: -4rem; + .\32xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:-left-16 { - left: -4rem; + .\32xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:-top-20 { - top: -5rem; + .\32xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:-right-20 { - right: -5rem; + .\32xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:-bottom-20 { - bottom: -5rem; + .\32xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:-left-20 { - left: -5rem; + .\32xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:-top-24 { - top: -6rem; + .\32xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:-right-24 { - right: -6rem; + .\32xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:-bottom-24 { - bottom: -6rem; + .\32xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:-left-24 { - left: -6rem; + .\32xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:-top-28 { - top: -7rem; + .\32xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:-right-28 { - right: -7rem; + .\32xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:-bottom-28 { - bottom: -7rem; + .\32xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:-left-28 { - left: -7rem; + .\32xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:-top-32 { - top: -8rem; + .\32xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:-right-32 { - right: -8rem; + .\32xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:-bottom-32 { - bottom: -8rem; + .\32xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:-left-32 { - left: -8rem; + .\32xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:-top-36 { - top: -9rem; + .\32xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:-right-36 { - right: -9rem; + .\32xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:-bottom-36 { - bottom: -9rem; + .\32xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:-left-36 { - left: -9rem; + .\32xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:-top-40 { - top: -10rem; + .\32xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:-right-40 { - right: -10rem; + .\32xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:-bottom-40 { - bottom: -10rem; + .\32xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:-left-40 { - left: -10rem; + .\32xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:-top-44 { - top: -11rem; + .\32xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:-right-44 { - right: -11rem; + .\32xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:-bottom-44 { - bottom: -11rem; + .\32xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:-left-44 { - left: -11rem; + .\32xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:-top-48 { - top: -12rem; + .\32xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:-right-48 { - right: -12rem; + .\32xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:-bottom-48 { - bottom: -12rem; + .\32xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:-left-48 { - left: -12rem; + .\32xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:-top-52 { - top: -13rem; + .\32xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:-right-52 { - right: -13rem; + .\32xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:-bottom-52 { - bottom: -13rem; + .\32xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:-left-52 { - left: -13rem; + .\32xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:-top-56 { - top: -14rem; + .\32xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:-right-56 { - right: -14rem; + .\32xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:-bottom-56 { - bottom: -14rem; + .\32xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:-left-56 { - left: -14rem; + .\32xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:-top-60 { - top: -15rem; + .\32xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:-right-60 { - right: -15rem; + .\32xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:-bottom-60 { - bottom: -15rem; + .\32xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:-left-60 { - left: -15rem; + .\32xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:-top-64 { - top: -16rem; + .\32xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:-right-64 { - right: -16rem; + .\32xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:-bottom-64 { - bottom: -16rem; + .\32xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:-left-64 { - left: -16rem; + .\32xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:-top-72 { - top: -18rem; + .\32xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:-right-72 { - right: -18rem; + .\32xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:-bottom-72 { - bottom: -18rem; + .\32xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:-left-72 { - left: -18rem; + .\32xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:-top-80 { - top: -20rem; + .\32xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:-right-80 { - right: -20rem; + .\32xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:-bottom-80 { - bottom: -20rem; + .\32xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:-left-80 { - left: -20rem; + .\32xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:-top-96 { - top: -24rem; + .\32xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:-right-96 { - right: -24rem; + .\32xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:-bottom-96 { - bottom: -24rem; + .\32xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:-left-96 { - left: -24rem; + .\32xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:-top-px { - top: -1px; + .\32xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:-right-px { - right: -1px; + .\32xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:-bottom-px { - bottom: -1px; + .\32xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:-left-px { - left: -1px; + .\32xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:-top-0\.5 { - top: -0.125rem; + .\32xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:-right-0\.5 { - right: -0.125rem; + .\32xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:-bottom-0\.5 { - bottom: -0.125rem; + .\32xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:-left-0\.5 { - left: -0.125rem; + .\32xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:-top-1\.5 { - top: -0.375rem; + .\32xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:-right-1\.5 { - right: -0.375rem; + .\32xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:-bottom-1\.5 { - bottom: -0.375rem; + .\32xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:-left-1\.5 { - left: -0.375rem; + .\32xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:-top-2\.5 { - top: -0.625rem; + .\32xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:-right-2\.5 { - right: -0.625rem; + .\32xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:-bottom-2\.5 { - bottom: -0.625rem; + .\32xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:-left-2\.5 { - left: -0.625rem; + .\32xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; } - .\32xl\:-top-3\.5 { - top: -0.875rem; + .\32xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; } - .\32xl\:-right-3\.5 { - right: -0.875rem; + .\32xl\:hover\:to-black:hover { + --tw-gradient-to: #000; } - .\32xl\:-bottom-3\.5 { - bottom: -0.875rem; + .\32xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; } - .\32xl\:-left-3\.5 { - left: -0.875rem; + .\32xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; } - .\32xl\:top-1\/2 { - top: 50%; + .\32xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; } - .\32xl\:right-1\/2 { - right: 50%; + .\32xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; } - .\32xl\:bottom-1\/2 { - bottom: 50%; + .\32xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; } - .\32xl\:left-1\/2 { - left: 50%; + .\32xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; } - .\32xl\:top-1\/3 { - top: 33.333333%; + .\32xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; } - .\32xl\:right-1\/3 { - right: 33.333333%; + .\32xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; } - .\32xl\:bottom-1\/3 { - bottom: 33.333333%; + .\32xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; } - .\32xl\:left-1\/3 { - left: 33.333333%; + .\32xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; } - .\32xl\:top-2\/3 { - top: 66.666667%; + .\32xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; } - .\32xl\:right-2\/3 { - right: 66.666667%; + .\32xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; } - .\32xl\:bottom-2\/3 { - bottom: 66.666667%; + .\32xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; } - .\32xl\:left-2\/3 { - left: 66.666667%; + .\32xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; } - .\32xl\:top-1\/4 { - top: 25%; + .\32xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; } - .\32xl\:right-1\/4 { - right: 25%; + .\32xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; } - .\32xl\:bottom-1\/4 { - bottom: 25%; + .\32xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; } - .\32xl\:left-1\/4 { - left: 25%; + .\32xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; } - .\32xl\:top-2\/4 { - top: 50%; + .\32xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; } - .\32xl\:right-2\/4 { - right: 50%; + .\32xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; } - .\32xl\:bottom-2\/4 { - bottom: 50%; + .\32xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; } - .\32xl\:left-2\/4 { - left: 50%; + .\32xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; } - .\32xl\:top-3\/4 { - top: 75%; + .\32xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; } - .\32xl\:right-3\/4 { - right: 75%; + .\32xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; } - .\32xl\:bottom-3\/4 { - bottom: 75%; + .\32xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; } - .\32xl\:left-3\/4 { - left: 75%; + .\32xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; } - .\32xl\:top-full { - top: 100%; + .\32xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; } - .\32xl\:right-full { - right: 100%; + .\32xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; } - .\32xl\:bottom-full { - bottom: 100%; + .\32xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; } - .\32xl\:left-full { - left: 100%; + .\32xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; } - .\32xl\:-top-1\/2 { - top: -50%; + .\32xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; } - .\32xl\:-right-1\/2 { - right: -50%; + .\32xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; } - .\32xl\:-bottom-1\/2 { - bottom: -50%; + .\32xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; } - .\32xl\:-left-1\/2 { - left: -50%; + .\32xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; } - .\32xl\:-top-1\/3 { - top: -33.333333%; + .\32xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; } - .\32xl\:-right-1\/3 { - right: -33.333333%; + .\32xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; } - .\32xl\:-bottom-1\/3 { - bottom: -33.333333%; + .\32xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; } - .\32xl\:-left-1\/3 { - left: -33.333333%; + .\32xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; } - .\32xl\:-top-2\/3 { - top: -66.666667%; + .\32xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; } - .\32xl\:-right-2\/3 { - right: -66.666667%; + .\32xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; } - .\32xl\:-bottom-2\/3 { - bottom: -66.666667%; + .\32xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; } - .\32xl\:-left-2\/3 { - left: -66.666667%; + .\32xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; } - .\32xl\:-top-1\/4 { - top: -25%; + .\32xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; } - .\32xl\:-right-1\/4 { - right: -25%; + .\32xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; } - .\32xl\:-bottom-1\/4 { - bottom: -25%; + .\32xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; } - .\32xl\:-left-1\/4 { - left: -25%; + .\32xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; } - .\32xl\:-top-2\/4 { - top: -50%; + .\32xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; } - .\32xl\:-right-2\/4 { - right: -50%; + .\32xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; } - .\32xl\:-bottom-2\/4 { - bottom: -50%; + .\32xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; } - .\32xl\:-left-2\/4 { - left: -50%; + .\32xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; } - .\32xl\:-top-3\/4 { - top: -75%; + .\32xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; } - .\32xl\:-right-3\/4 { - right: -75%; + .\32xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; } - .\32xl\:-bottom-3\/4 { - bottom: -75%; + .\32xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; } - .\32xl\:-left-3\/4 { - left: -75%; + .\32xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; } - .\32xl\:-top-full { - top: -100%; + .\32xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; } - .\32xl\:-right-full { - right: -100%; + .\32xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; } - .\32xl\:-bottom-full { - bottom: -100%; + .\32xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; } - .\32xl\:-left-full { - left: -100%; + .\32xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; } - .\32xl\:resize-none { - resize: none; + .\32xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; } - .\32xl\:resize-y { - resize: vertical; + .\32xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; } - .\32xl\:resize-x { - resize: horizontal; + .\32xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; } - .\32xl\:resize { - resize: both; + .\32xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; } - .\32xl\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; } - .\32xl\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; } - .\32xl\: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); + .\32xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; } - .\32xl\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; } - .\32xl\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; } - .\32xl\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; } - .\32xl\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; } - .\32xl\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; } - .group:hover .\32xl\:group-hover\:shadow-sm { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; } - .group:hover .\32xl\:group-hover\:shadow { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; } - .group:hover .\32xl\:group-hover\: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); + .\32xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; } - .group:hover .\32xl\:group-hover\:shadow-lg { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; } - .group:hover .\32xl\:group-hover\:shadow-xl { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; } - .group:hover .\32xl\:group-hover\:shadow-2xl { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; } - .group:hover .\32xl\:group-hover\:shadow-inner { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; } - .group:hover .\32xl\:group-hover\:shadow-none { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; } - .\32xl\:focus-within\:shadow-sm:focus-within { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; } - .\32xl\:focus-within\:shadow:focus-within { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; } - .\32xl\:focus-within\:shadow-md:focus-within { - --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); + .\32xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; } - .\32xl\:focus-within\:shadow-lg:focus-within { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus-within\:shadow-xl:focus-within { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus-within\:shadow-2xl:focus-within { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus-within\:shadow-inner:focus-within { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus-within\:shadow-none:focus-within { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:shadow-sm:hover { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:shadow:hover { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:shadow-md:hover { - --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); + .\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\:shadow-lg:hover { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:shadow-xl:hover { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:shadow-2xl:hover { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:shadow-inner:hover { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:shadow-none:hover { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:focus\:shadow-sm:focus { - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:focus\:shadow:focus { - --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:focus\:shadow-md:focus { - --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); + .\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\:focus\:shadow-lg:focus { - --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:focus\:shadow-xl:focus { - --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:focus\:shadow-2xl:focus { - --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\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\:focus\:shadow-inner:focus { - --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\:focus\: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\:focus\:shadow-none:focus { - --tw-shadow: 0 0 #0000; - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + .\32xl\: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\:ring-0 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-1 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-2 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-4 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-8 { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\: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\:ring-inset { - --tw-ring-inset: inset; + .\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\:focus-within\:ring-0:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-1:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:focus-within\:ring-2:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-4:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-8:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring:focus-within { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; + .\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\:focus\:ring-0:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-1:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-2:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-4:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-8:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring:focus { - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + .\32xl\:focus\: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\:focus\:ring-inset:focus { - --tw-ring-inset: inset; + .\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\:ring-offset-transparent { - --tw-ring-offset-color: transparent; + .\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\:ring-offset-current { - --tw-ring-offset-color: currentColor; + .\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\:ring-offset-black { - --tw-ring-offset-color: #000; + .\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\:ring-offset-white { - --tw-ring-offset-color: #fff; + .\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\:ring-offset-gray-50 { - --tw-ring-offset-color: #f9fafb; + .\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\:ring-offset-gray-100 { - --tw-ring-offset-color: #f3f4f6; + .\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\:ring-offset-gray-200 { - --tw-ring-offset-color: #e5e7eb; + .\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\:ring-offset-gray-300 { - --tw-ring-offset-color: #d1d5db; + .\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\:ring-offset-gray-400 { - --tw-ring-offset-color: #9ca3af; + .\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\:ring-offset-gray-500 { - --tw-ring-offset-color: #6b7280; + .\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\:ring-offset-gray-600 { - --tw-ring-offset-color: #4b5563; + .\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\:ring-offset-gray-700 { - --tw-ring-offset-color: #374151; + .\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\:ring-offset-gray-800 { - --tw-ring-offset-color: #1f2937; + .\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\:ring-offset-gray-900 { - --tw-ring-offset-color: #111827; + .\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\:ring-offset-red-50 { - --tw-ring-offset-color: #fef2f2; + .\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\:ring-offset-red-100 { - --tw-ring-offset-color: #fee2e2; + .\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\:ring-offset-red-200 { - --tw-ring-offset-color: #fecaca; + .\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\:ring-offset-red-300 { - --tw-ring-offset-color: #fca5a5; + .\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\:ring-offset-red-400 { - --tw-ring-offset-color: #f87171; + .\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\:ring-offset-red-500 { - --tw-ring-offset-color: #ef4444; + .\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\:ring-offset-red-600 { - --tw-ring-offset-color: #dc2626; + .\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\:ring-offset-red-700 { - --tw-ring-offset-color: #b91c1c; + .\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\:ring-offset-red-800 { - --tw-ring-offset-color: #991b1b; + .\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\:ring-offset-red-900 { - --tw-ring-offset-color: #7f1d1d; + .\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\:ring-offset-yellow-50 { - --tw-ring-offset-color: #fffbeb; + .\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\:ring-offset-yellow-100 { - --tw-ring-offset-color: #fef3c7; + .\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\:ring-offset-yellow-200 { - --tw-ring-offset-color: #fde68a; + .\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\:ring-offset-yellow-300 { - --tw-ring-offset-color: #fcd34d; + .\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\:ring-offset-yellow-400 { - --tw-ring-offset-color: #fbbf24; + .\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\:ring-offset-yellow-500 { - --tw-ring-offset-color: #f59e0b; + .\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\:ring-offset-yellow-600 { - --tw-ring-offset-color: #d97706; + .\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\:ring-offset-yellow-700 { - --tw-ring-offset-color: #b45309; + .\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\:ring-offset-yellow-800 { - --tw-ring-offset-color: #92400e; + .\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\:ring-offset-yellow-900 { - --tw-ring-offset-color: #78350f; + .\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\:ring-offset-green-50 { - --tw-ring-offset-color: #ecfdf5; + .\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\:ring-offset-green-100 { - --tw-ring-offset-color: #d1fae5; + .\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\:ring-offset-green-200 { - --tw-ring-offset-color: #a7f3d0; + .\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\:ring-offset-green-300 { - --tw-ring-offset-color: #6ee7b7; + .\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\:ring-offset-green-400 { - --tw-ring-offset-color: #34d399; + .\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\:ring-offset-green-500 { - --tw-ring-offset-color: #10b981; + .\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\:ring-offset-green-600 { - --tw-ring-offset-color: #059669; + .\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\:ring-offset-green-700 { - --tw-ring-offset-color: #047857; + .\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\:ring-offset-green-800 { - --tw-ring-offset-color: #065f46; + .\32xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:ring-offset-green-900 { - --tw-ring-offset-color: #064e3b; + .\32xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:ring-offset-blue-50 { - --tw-ring-offset-color: #eff6ff; + .\32xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:ring-offset-blue-100 { - --tw-ring-offset-color: #dbeafe; + .\32xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:ring-offset-blue-200 { - --tw-ring-offset-color: #bfdbfe; + .\32xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:ring-offset-blue-300 { - --tw-ring-offset-color: #93c5fd; + .\32xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:ring-offset-blue-400 { - --tw-ring-offset-color: #60a5fa; + .\32xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:ring-offset-blue-500 { - --tw-ring-offset-color: #3b82f6; + .\32xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:ring-offset-blue-600 { - --tw-ring-offset-color: #2563eb; + .\32xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:ring-offset-blue-700 { - --tw-ring-offset-color: #1d4ed8; + .\32xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:ring-offset-blue-800 { - --tw-ring-offset-color: #1e40af; + .\32xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:ring-offset-blue-900 { - --tw-ring-offset-color: #1e3a8a; + .\32xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:ring-offset-indigo-50 { - --tw-ring-offset-color: #eef2ff; + .\32xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:ring-offset-indigo-100 { - --tw-ring-offset-color: #e0e7ff; + .\32xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:ring-offset-indigo-200 { - --tw-ring-offset-color: #c7d2fe; + .\32xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:ring-offset-indigo-300 { - --tw-ring-offset-color: #a5b4fc; + .\32xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:ring-offset-indigo-400 { - --tw-ring-offset-color: #818cf8; + .\32xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:ring-offset-indigo-500 { - --tw-ring-offset-color: #6366f1; + .\32xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:ring-offset-indigo-600 { - --tw-ring-offset-color: #4f46e5; + .\32xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:ring-offset-indigo-700 { - --tw-ring-offset-color: #4338ca; + .\32xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:ring-offset-indigo-800 { - --tw-ring-offset-color: #3730a3; + .\32xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:ring-offset-indigo-900 { - --tw-ring-offset-color: #312e81; + .\32xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:ring-offset-purple-50 { - --tw-ring-offset-color: #f5f3ff; + .\32xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:ring-offset-purple-100 { - --tw-ring-offset-color: #ede9fe; + .\32xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:ring-offset-purple-200 { - --tw-ring-offset-color: #ddd6fe; + .\32xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:ring-offset-purple-300 { - --tw-ring-offset-color: #c4b5fd; + .\32xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:ring-offset-purple-400 { - --tw-ring-offset-color: #a78bfa; + .\32xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:ring-offset-purple-500 { - --tw-ring-offset-color: #8b5cf6; + .\32xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:ring-offset-purple-600 { - --tw-ring-offset-color: #7c3aed; + .\32xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:ring-offset-purple-700 { - --tw-ring-offset-color: #6d28d9; + .\32xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:ring-offset-purple-800 { - --tw-ring-offset-color: #5b21b6; + .\32xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:ring-offset-purple-900 { - --tw-ring-offset-color: #4c1d95; + .\32xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:ring-offset-pink-50 { - --tw-ring-offset-color: #fdf2f8; + .\32xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:ring-offset-pink-100 { - --tw-ring-offset-color: #fce7f3; + .\32xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:ring-offset-pink-200 { - --tw-ring-offset-color: #fbcfe8; + .\32xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:ring-offset-pink-300 { - --tw-ring-offset-color: #f9a8d4; + .\32xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:ring-offset-pink-400 { - --tw-ring-offset-color: #f472b6; + .\32xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:ring-offset-pink-500 { - --tw-ring-offset-color: #ec4899; + .\32xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:ring-offset-pink-600 { - --tw-ring-offset-color: #db2777; + .\32xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:ring-offset-pink-700 { - --tw-ring-offset-color: #be185d; + .\32xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:ring-offset-pink-800 { - --tw-ring-offset-color: #9d174d; + .\32xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:ring-offset-pink-900 { - --tw-ring-offset-color: #831843; + .\32xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:focus-within\:ring-offset-transparent:focus-within { - --tw-ring-offset-color: transparent; + .\32xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:focus-within\:ring-offset-current:focus-within { - --tw-ring-offset-color: currentColor; + .\32xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:focus-within\:ring-offset-black:focus-within { - --tw-ring-offset-color: #000; + .\32xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:focus-within\:ring-offset-white:focus-within { - --tw-ring-offset-color: #fff; + .\32xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:focus-within\:ring-offset-gray-50:focus-within { - --tw-ring-offset-color: #f9fafb; + .\32xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:focus-within\:ring-offset-gray-100:focus-within { - --tw-ring-offset-color: #f3f4f6; + .\32xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:focus-within\:ring-offset-gray-200:focus-within { - --tw-ring-offset-color: #e5e7eb; + .\32xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:focus-within\:ring-offset-gray-300:focus-within { - --tw-ring-offset-color: #d1d5db; + .\32xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:focus-within\:ring-offset-gray-400:focus-within { - --tw-ring-offset-color: #9ca3af; + .\32xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:focus-within\:ring-offset-gray-500:focus-within { - --tw-ring-offset-color: #6b7280; + .\32xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:focus-within\:ring-offset-gray-600:focus-within { - --tw-ring-offset-color: #4b5563; + .\32xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:focus-within\:ring-offset-gray-700:focus-within { - --tw-ring-offset-color: #374151; + .\32xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:focus-within\:ring-offset-gray-800:focus-within { - --tw-ring-offset-color: #1f2937; + .\32xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:focus-within\:ring-offset-gray-900:focus-within { - --tw-ring-offset-color: #111827; + .\32xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:focus-within\:ring-offset-red-50:focus-within { - --tw-ring-offset-color: #fef2f2; + .\32xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:focus-within\:ring-offset-red-100:focus-within { - --tw-ring-offset-color: #fee2e2; + .\32xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:focus-within\:ring-offset-red-200:focus-within { - --tw-ring-offset-color: #fecaca; + .\32xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:focus-within\:ring-offset-red-300:focus-within { - --tw-ring-offset-color: #fca5a5; + .\32xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:focus-within\:ring-offset-red-400:focus-within { - --tw-ring-offset-color: #f87171; + .\32xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:focus-within\:ring-offset-red-500:focus-within { - --tw-ring-offset-color: #ef4444; + .\32xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:focus-within\:ring-offset-red-600:focus-within { - --tw-ring-offset-color: #dc2626; + .\32xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:focus-within\:ring-offset-red-700:focus-within { - --tw-ring-offset-color: #b91c1c; + .\32xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:focus-within\:ring-offset-red-800:focus-within { - --tw-ring-offset-color: #991b1b; + .\32xl\:focus\:via-purple-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:focus-within\:ring-offset-red-900:focus-within { - --tw-ring-offset-color: #7f1d1d; + .\32xl\:focus\:via-purple-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-50:focus-within { - --tw-ring-offset-color: #fffbeb; + .\32xl\:focus\:via-purple-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-100:focus-within { - --tw-ring-offset-color: #fef3c7; + .\32xl\:focus\:via-purple-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-200:focus-within { - --tw-ring-offset-color: #fde68a; + .\32xl\:focus\:via-purple-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-300:focus-within { - --tw-ring-offset-color: #fcd34d; + .\32xl\:focus\:via-purple-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-400:focus-within { - --tw-ring-offset-color: #fbbf24; + .\32xl\:focus\:via-purple-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-500:focus-within { - --tw-ring-offset-color: #f59e0b; + .\32xl\:focus\:via-purple-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-600:focus-within { - --tw-ring-offset-color: #d97706; + .\32xl\:focus\:via-purple-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-700:focus-within { - --tw-ring-offset-color: #b45309; + .\32xl\:focus\:via-purple-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-800:focus-within { - --tw-ring-offset-color: #92400e; + .\32xl\:focus\:via-pink-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:focus-within\:ring-offset-yellow-900:focus-within { - --tw-ring-offset-color: #78350f; + .\32xl\:focus\:via-pink-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:focus-within\:ring-offset-green-50:focus-within { - --tw-ring-offset-color: #ecfdf5; + .\32xl\:focus\:via-pink-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:focus-within\:ring-offset-green-100:focus-within { - --tw-ring-offset-color: #d1fae5; + .\32xl\:focus\:via-pink-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:focus-within\:ring-offset-green-200:focus-within { - --tw-ring-offset-color: #a7f3d0; + .\32xl\:focus\:via-pink-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:focus-within\:ring-offset-green-300:focus-within { - --tw-ring-offset-color: #6ee7b7; + .\32xl\:focus\:via-pink-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:focus-within\:ring-offset-green-400:focus-within { - --tw-ring-offset-color: #34d399; + .\32xl\:focus\:via-pink-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:focus-within\:ring-offset-green-500:focus-within { - --tw-ring-offset-color: #10b981; + .\32xl\:focus\:via-pink-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:focus-within\:ring-offset-green-600:focus-within { - --tw-ring-offset-color: #059669; + .\32xl\:focus\:via-pink-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:focus-within\:ring-offset-green-700:focus-within { - --tw-ring-offset-color: #047857; + .\32xl\:focus\:via-pink-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:focus-within\:ring-offset-green-800:focus-within { - --tw-ring-offset-color: #065f46; + .\32xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; } - .\32xl\:focus-within\:ring-offset-green-900:focus-within { - --tw-ring-offset-color: #064e3b; + .\32xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor; } - .\32xl\:focus-within\:ring-offset-blue-50:focus-within { - --tw-ring-offset-color: #eff6ff; + .\32xl\:focus\:to-black:focus { + --tw-gradient-to: #000; } - .\32xl\:focus-within\:ring-offset-blue-100:focus-within { - --tw-ring-offset-color: #dbeafe; + .\32xl\:focus\:to-white:focus { + --tw-gradient-to: #fff; } - .\32xl\:focus-within\:ring-offset-blue-200:focus-within { - --tw-ring-offset-color: #bfdbfe; + .\32xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; } - .\32xl\:focus-within\:ring-offset-blue-300:focus-within { - --tw-ring-offset-color: #93c5fd; + .\32xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; } - .\32xl\:focus-within\:ring-offset-blue-400:focus-within { - --tw-ring-offset-color: #60a5fa; + .\32xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; } - .\32xl\:focus-within\:ring-offset-blue-500:focus-within { - --tw-ring-offset-color: #3b82f6; + .\32xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; } - .\32xl\:focus-within\:ring-offset-blue-600:focus-within { - --tw-ring-offset-color: #2563eb; + .\32xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; } - .\32xl\:focus-within\:ring-offset-blue-700:focus-within { - --tw-ring-offset-color: #1d4ed8; + .\32xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; } - .\32xl\:focus-within\:ring-offset-blue-800:focus-within { - --tw-ring-offset-color: #1e40af; + .\32xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; } - .\32xl\:focus-within\:ring-offset-blue-900:focus-within { - --tw-ring-offset-color: #1e3a8a; + .\32xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; } - .\32xl\:focus-within\:ring-offset-indigo-50:focus-within { - --tw-ring-offset-color: #eef2ff; + .\32xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; } - .\32xl\:focus-within\:ring-offset-indigo-100:focus-within { - --tw-ring-offset-color: #e0e7ff; + .\32xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; } - .\32xl\:focus-within\:ring-offset-indigo-200:focus-within { - --tw-ring-offset-color: #c7d2fe; + .\32xl\:focus\:to-red-50:focus { + --tw-gradient-to: #fef2f2; } - .\32xl\:focus-within\:ring-offset-indigo-300:focus-within { - --tw-ring-offset-color: #a5b4fc; + .\32xl\:focus\:to-red-100:focus { + --tw-gradient-to: #fee2e2; } - .\32xl\:focus-within\:ring-offset-indigo-400:focus-within { - --tw-ring-offset-color: #818cf8; + .\32xl\:focus\:to-red-200:focus { + --tw-gradient-to: #fecaca; } - .\32xl\:focus-within\:ring-offset-indigo-500:focus-within { - --tw-ring-offset-color: #6366f1; + .\32xl\:focus\:to-red-300:focus { + --tw-gradient-to: #fca5a5; } - .\32xl\:focus-within\:ring-offset-indigo-600:focus-within { - --tw-ring-offset-color: #4f46e5; + .\32xl\:focus\:to-red-400:focus { + --tw-gradient-to: #f87171; } - .\32xl\:focus-within\:ring-offset-indigo-700:focus-within { - --tw-ring-offset-color: #4338ca; + .\32xl\:focus\:to-red-500:focus { + --tw-gradient-to: #ef4444; } - .\32xl\:focus-within\:ring-offset-indigo-800:focus-within { - --tw-ring-offset-color: #3730a3; + .\32xl\:focus\:to-red-600:focus { + --tw-gradient-to: #dc2626; } - .\32xl\:focus-within\:ring-offset-indigo-900:focus-within { - --tw-ring-offset-color: #312e81; + .\32xl\:focus\:to-red-700:focus { + --tw-gradient-to: #b91c1c; } - .\32xl\:focus-within\:ring-offset-purple-50:focus-within { - --tw-ring-offset-color: #f5f3ff; + .\32xl\:focus\:to-red-800:focus { + --tw-gradient-to: #991b1b; } - .\32xl\:focus-within\:ring-offset-purple-100:focus-within { - --tw-ring-offset-color: #ede9fe; + .\32xl\:focus\:to-red-900:focus { + --tw-gradient-to: #7f1d1d; } - .\32xl\:focus-within\:ring-offset-purple-200:focus-within { - --tw-ring-offset-color: #ddd6fe; + .\32xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #fffbeb; } - .\32xl\:focus-within\:ring-offset-purple-300:focus-within { - --tw-ring-offset-color: #c4b5fd; + .\32xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #fef3c7; } - .\32xl\:focus-within\:ring-offset-purple-400:focus-within { - --tw-ring-offset-color: #a78bfa; + .\32xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #fde68a; } - .\32xl\:focus-within\:ring-offset-purple-500:focus-within { - --tw-ring-offset-color: #8b5cf6; + .\32xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #fcd34d; } - .\32xl\:focus-within\:ring-offset-purple-600:focus-within { - --tw-ring-offset-color: #7c3aed; + .\32xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #fbbf24; } - .\32xl\:focus-within\:ring-offset-purple-700:focus-within { - --tw-ring-offset-color: #6d28d9; + .\32xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #f59e0b; } - .\32xl\:focus-within\:ring-offset-purple-800:focus-within { - --tw-ring-offset-color: #5b21b6; + .\32xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #d97706; } - .\32xl\:focus-within\:ring-offset-purple-900:focus-within { - --tw-ring-offset-color: #4c1d95; + .\32xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #b45309; } - .\32xl\:focus-within\:ring-offset-pink-50:focus-within { - --tw-ring-offset-color: #fdf2f8; + .\32xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #92400e; } - .\32xl\:focus-within\:ring-offset-pink-100:focus-within { - --tw-ring-offset-color: #fce7f3; + .\32xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #78350f; } - .\32xl\:focus-within\:ring-offset-pink-200:focus-within { - --tw-ring-offset-color: #fbcfe8; + .\32xl\:focus\:to-green-50:focus { + --tw-gradient-to: #ecfdf5; } - .\32xl\:focus-within\:ring-offset-pink-300:focus-within { - --tw-ring-offset-color: #f9a8d4; + .\32xl\:focus\:to-green-100:focus { + --tw-gradient-to: #d1fae5; } - .\32xl\:focus-within\:ring-offset-pink-400:focus-within { - --tw-ring-offset-color: #f472b6; + .\32xl\:focus\:to-green-200:focus { + --tw-gradient-to: #a7f3d0; } - .\32xl\:focus-within\:ring-offset-pink-500:focus-within { - --tw-ring-offset-color: #ec4899; + .\32xl\:focus\:to-green-300:focus { + --tw-gradient-to: #6ee7b7; } - .\32xl\:focus-within\:ring-offset-pink-600:focus-within { - --tw-ring-offset-color: #db2777; + .\32xl\:focus\:to-green-400:focus { + --tw-gradient-to: #34d399; } - .\32xl\:focus-within\:ring-offset-pink-700:focus-within { - --tw-ring-offset-color: #be185d; + .\32xl\:focus\:to-green-500:focus { + --tw-gradient-to: #10b981; } - .\32xl\:focus-within\:ring-offset-pink-800:focus-within { - --tw-ring-offset-color: #9d174d; + .\32xl\:focus\:to-green-600:focus { + --tw-gradient-to: #059669; } - .\32xl\:focus-within\:ring-offset-pink-900:focus-within { - --tw-ring-offset-color: #831843; + .\32xl\:focus\:to-green-700:focus { + --tw-gradient-to: #047857; } - .\32xl\:focus\:ring-offset-transparent:focus { - --tw-ring-offset-color: transparent; + .\32xl\:focus\:to-green-800:focus { + --tw-gradient-to: #065f46; } - .\32xl\:focus\:ring-offset-current:focus { - --tw-ring-offset-color: currentColor; + .\32xl\:focus\:to-green-900:focus { + --tw-gradient-to: #064e3b; } - .\32xl\:focus\:ring-offset-black:focus { - --tw-ring-offset-color: #000; + .\32xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #eff6ff; } - .\32xl\:focus\:ring-offset-white:focus { - --tw-ring-offset-color: #fff; + .\32xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #dbeafe; } - .\32xl\:focus\:ring-offset-gray-50:focus { - --tw-ring-offset-color: #f9fafb; + .\32xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #bfdbfe; } - .\32xl\:focus\:ring-offset-gray-100:focus { - --tw-ring-offset-color: #f3f4f6; + .\32xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #93c5fd; } - .\32xl\:focus\:ring-offset-gray-200:focus { - --tw-ring-offset-color: #e5e7eb; + .\32xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #60a5fa; } - .\32xl\:focus\:ring-offset-gray-300:focus { - --tw-ring-offset-color: #d1d5db; + .\32xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3b82f6; } - .\32xl\:focus\:ring-offset-gray-400:focus { - --tw-ring-offset-color: #9ca3af; + .\32xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #2563eb; } - .\32xl\:focus\:ring-offset-gray-500:focus { - --tw-ring-offset-color: #6b7280; + .\32xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #1d4ed8; } - .\32xl\:focus\:ring-offset-gray-600:focus { - --tw-ring-offset-color: #4b5563; + .\32xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #1e40af; } - .\32xl\:focus\:ring-offset-gray-700:focus { - --tw-ring-offset-color: #374151; + .\32xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1e3a8a; } - .\32xl\:focus\:ring-offset-gray-800:focus { - --tw-ring-offset-color: #1f2937; + .\32xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #eef2ff; } - .\32xl\:focus\:ring-offset-gray-900:focus { - --tw-ring-offset-color: #111827; + .\32xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #e0e7ff; } - .\32xl\:focus\:ring-offset-red-50:focus { - --tw-ring-offset-color: #fef2f2; + .\32xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #c7d2fe; } - .\32xl\:focus\:ring-offset-red-100:focus { - --tw-ring-offset-color: #fee2e2; + .\32xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #a5b4fc; } - .\32xl\:focus\:ring-offset-red-200:focus { - --tw-ring-offset-color: #fecaca; + .\32xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #818cf8; } - .\32xl\:focus\:ring-offset-red-300:focus { - --tw-ring-offset-color: #fca5a5; + .\32xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6366f1; } - .\32xl\:focus\:ring-offset-red-400:focus { - --tw-ring-offset-color: #f87171; + .\32xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #4f46e5; } - .\32xl\:focus\:ring-offset-red-500:focus { - --tw-ring-offset-color: #ef4444; + .\32xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4338ca; } - .\32xl\:focus\:ring-offset-red-600:focus { - --tw-ring-offset-color: #dc2626; + .\32xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3730a3; } - .\32xl\:focus\:ring-offset-red-700:focus { - --tw-ring-offset-color: #b91c1c; + .\32xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #312e81; } - .\32xl\:focus\:ring-offset-red-800:focus { - --tw-ring-offset-color: #991b1b; + .\32xl\:focus\:to-purple-50:focus { + --tw-gradient-to: #f5f3ff; } - .\32xl\:focus\:ring-offset-red-900:focus { - --tw-ring-offset-color: #7f1d1d; + .\32xl\:focus\:to-purple-100:focus { + --tw-gradient-to: #ede9fe; } - .\32xl\:focus\:ring-offset-yellow-50:focus { - --tw-ring-offset-color: #fffbeb; + .\32xl\:focus\:to-purple-200:focus { + --tw-gradient-to: #ddd6fe; } - .\32xl\:focus\:ring-offset-yellow-100:focus { - --tw-ring-offset-color: #fef3c7; + .\32xl\:focus\:to-purple-300:focus { + --tw-gradient-to: #c4b5fd; } - .\32xl\:focus\:ring-offset-yellow-200:focus { - --tw-ring-offset-color: #fde68a; + .\32xl\:focus\:to-purple-400:focus { + --tw-gradient-to: #a78bfa; } - .\32xl\:focus\:ring-offset-yellow-300:focus { - --tw-ring-offset-color: #fcd34d; + .\32xl\:focus\:to-purple-500:focus { + --tw-gradient-to: #8b5cf6; } - .\32xl\:focus\:ring-offset-yellow-400:focus { - --tw-ring-offset-color: #fbbf24; + .\32xl\:focus\:to-purple-600:focus { + --tw-gradient-to: #7c3aed; } - .\32xl\:focus\:ring-offset-yellow-500:focus { - --tw-ring-offset-color: #f59e0b; + .\32xl\:focus\:to-purple-700:focus { + --tw-gradient-to: #6d28d9; } - .\32xl\:focus\:ring-offset-yellow-600:focus { - --tw-ring-offset-color: #d97706; + .\32xl\:focus\:to-purple-800:focus { + --tw-gradient-to: #5b21b6; } - .\32xl\:focus\:ring-offset-yellow-700:focus { - --tw-ring-offset-color: #b45309; + .\32xl\:focus\:to-purple-900:focus { + --tw-gradient-to: #4c1d95; } - .\32xl\:focus\:ring-offset-yellow-800:focus { - --tw-ring-offset-color: #92400e; + .\32xl\:focus\:to-pink-50:focus { + --tw-gradient-to: #fdf2f8; } - .\32xl\:focus\:ring-offset-yellow-900:focus { - --tw-ring-offset-color: #78350f; + .\32xl\:focus\:to-pink-100:focus { + --tw-gradient-to: #fce7f3; } - .\32xl\:focus\:ring-offset-green-50:focus { - --tw-ring-offset-color: #ecfdf5; + .\32xl\:focus\:to-pink-200:focus { + --tw-gradient-to: #fbcfe8; } - .\32xl\:focus\:ring-offset-green-100:focus { - --tw-ring-offset-color: #d1fae5; + .\32xl\:focus\:to-pink-300:focus { + --tw-gradient-to: #f9a8d4; } - .\32xl\:focus\:ring-offset-green-200:focus { - --tw-ring-offset-color: #a7f3d0; + .\32xl\:focus\:to-pink-400:focus { + --tw-gradient-to: #f472b6; } - .\32xl\:focus\:ring-offset-green-300:focus { - --tw-ring-offset-color: #6ee7b7; + .\32xl\:focus\:to-pink-500:focus { + --tw-gradient-to: #ec4899; } - .\32xl\:focus\:ring-offset-green-400:focus { - --tw-ring-offset-color: #34d399; + .\32xl\:focus\:to-pink-600:focus { + --tw-gradient-to: #db2777; } - .\32xl\:focus\:ring-offset-green-500:focus { - --tw-ring-offset-color: #10b981; + .\32xl\:focus\:to-pink-700:focus { + --tw-gradient-to: #be185d; } - .\32xl\:focus\:ring-offset-green-600:focus { - --tw-ring-offset-color: #059669; + .\32xl\:focus\:to-pink-800:focus { + --tw-gradient-to: #9d174d; } - .\32xl\:focus\:ring-offset-green-700:focus { - --tw-ring-offset-color: #047857; + .\32xl\:focus\:to-pink-900:focus { + --tw-gradient-to: #831843; } - .\32xl\:focus\:ring-offset-green-800:focus { - --tw-ring-offset-color: #065f46; + .\32xl\:decoration-slice { + box-decoration-break: slice; } - .\32xl\:focus\:ring-offset-green-900:focus { - --tw-ring-offset-color: #064e3b; + .\32xl\:decoration-clone { + box-decoration-break: clone; } - .\32xl\:focus\:ring-offset-blue-50:focus { - --tw-ring-offset-color: #eff6ff; + .\32xl\:bg-auto { + background-size: auto; } - .\32xl\:focus\:ring-offset-blue-100:focus { - --tw-ring-offset-color: #dbeafe; + .\32xl\:bg-cover { + background-size: cover; } - .\32xl\:focus\:ring-offset-blue-200:focus { - --tw-ring-offset-color: #bfdbfe; + .\32xl\:bg-contain { + background-size: contain; } - .\32xl\:focus\:ring-offset-blue-300:focus { - --tw-ring-offset-color: #93c5fd; + .\32xl\:bg-fixed { + background-attachment: fixed; } - .\32xl\:focus\:ring-offset-blue-400:focus { - --tw-ring-offset-color: #60a5fa; + .\32xl\:bg-local { + background-attachment: local; } - .\32xl\:focus\:ring-offset-blue-500:focus { - --tw-ring-offset-color: #3b82f6; + .\32xl\:bg-scroll { + background-attachment: scroll; } - .\32xl\:focus\:ring-offset-blue-600:focus { - --tw-ring-offset-color: #2563eb; + .\32xl\:bg-clip-border { + background-clip: border-box; } - .\32xl\:focus\:ring-offset-blue-700:focus { - --tw-ring-offset-color: #1d4ed8; + .\32xl\:bg-clip-padding { + background-clip: padding-box; } - .\32xl\:focus\:ring-offset-blue-800:focus { - --tw-ring-offset-color: #1e40af; + .\32xl\:bg-clip-content { + background-clip: content-box; } - .\32xl\:focus\:ring-offset-blue-900:focus { - --tw-ring-offset-color: #1e3a8a; + .\32xl\:bg-clip-text { + background-clip: text; } - .\32xl\:focus\:ring-offset-indigo-50:focus { - --tw-ring-offset-color: #eef2ff; + .\32xl\:bg-bottom { + background-position: bottom; } - .\32xl\:focus\:ring-offset-indigo-100:focus { - --tw-ring-offset-color: #e0e7ff; + .\32xl\:bg-center { + background-position: center; } - .\32xl\:focus\:ring-offset-indigo-200:focus { - --tw-ring-offset-color: #c7d2fe; + .\32xl\:bg-left { + background-position: left; } - .\32xl\:focus\:ring-offset-indigo-300:focus { - --tw-ring-offset-color: #a5b4fc; + .\32xl\:bg-left-bottom { + background-position: left bottom; } - .\32xl\:focus\:ring-offset-indigo-400:focus { - --tw-ring-offset-color: #818cf8; + .\32xl\:bg-left-top { + background-position: left top; } - .\32xl\:focus\:ring-offset-indigo-500:focus { - --tw-ring-offset-color: #6366f1; + .\32xl\:bg-right { + background-position: right; } - .\32xl\:focus\:ring-offset-indigo-600:focus { - --tw-ring-offset-color: #4f46e5; + .\32xl\:bg-right-bottom { + background-position: right bottom; } - .\32xl\:focus\:ring-offset-indigo-700:focus { - --tw-ring-offset-color: #4338ca; + .\32xl\:bg-right-top { + background-position: right top; } - .\32xl\:focus\:ring-offset-indigo-800:focus { - --tw-ring-offset-color: #3730a3; + .\32xl\:bg-top { + background-position: top; } - .\32xl\:focus\:ring-offset-indigo-900:focus { - --tw-ring-offset-color: #312e81; + .\32xl\:bg-repeat { + background-repeat: repeat; } - .\32xl\:focus\:ring-offset-purple-50:focus { - --tw-ring-offset-color: #f5f3ff; + .\32xl\:bg-no-repeat { + background-repeat: no-repeat; } - .\32xl\:focus\:ring-offset-purple-100:focus { - --tw-ring-offset-color: #ede9fe; + .\32xl\:bg-repeat-x { + background-repeat: repeat-x; } - .\32xl\:focus\:ring-offset-purple-200:focus { - --tw-ring-offset-color: #ddd6fe; + .\32xl\:bg-repeat-y { + background-repeat: repeat-y; } - .\32xl\:focus\:ring-offset-purple-300:focus { - --tw-ring-offset-color: #c4b5fd; + .\32xl\:bg-repeat-round { + background-repeat: round; } - .\32xl\:focus\:ring-offset-purple-400:focus { - --tw-ring-offset-color: #a78bfa; + .\32xl\:bg-repeat-space { + background-repeat: space; } - .\32xl\:focus\:ring-offset-purple-500:focus { - --tw-ring-offset-color: #8b5cf6; + .\32xl\:bg-origin-border { + background-origin: border-box; } - .\32xl\:focus\:ring-offset-purple-600:focus { - --tw-ring-offset-color: #7c3aed; + .\32xl\:bg-origin-padding { + background-origin: padding-box; } - .\32xl\:focus\:ring-offset-purple-700:focus { - --tw-ring-offset-color: #6d28d9; + .\32xl\:bg-origin-content { + background-origin: content-box; } - .\32xl\:focus\:ring-offset-purple-800:focus { - --tw-ring-offset-color: #5b21b6; + .\32xl\:fill-current { + fill: currentColor; } - .\32xl\:focus\:ring-offset-purple-900:focus { - --tw-ring-offset-color: #4c1d95; + .\32xl\:stroke-current { + stroke: currentColor; } - .\32xl\:focus\:ring-offset-pink-50:focus { - --tw-ring-offset-color: #fdf2f8; + .\32xl\:stroke-0 { + stroke-width: 0; } - .\32xl\:focus\:ring-offset-pink-100:focus { - --tw-ring-offset-color: #fce7f3; + .\32xl\:stroke-1 { + stroke-width: 1; } - .\32xl\:focus\:ring-offset-pink-200:focus { - --tw-ring-offset-color: #fbcfe8; + .\32xl\:stroke-2 { + stroke-width: 2; } - .\32xl\:focus\:ring-offset-pink-300:focus { - --tw-ring-offset-color: #f9a8d4; + .\32xl\:object-contain { + object-fit: contain; } - .\32xl\:focus\:ring-offset-pink-400:focus { - --tw-ring-offset-color: #f472b6; + .\32xl\:object-cover { + object-fit: cover; } - .\32xl\:focus\:ring-offset-pink-500:focus { - --tw-ring-offset-color: #ec4899; + .\32xl\:object-fill { + object-fit: fill; } - .\32xl\:focus\:ring-offset-pink-600:focus { - --tw-ring-offset-color: #db2777; + .\32xl\:object-none { + object-fit: none; } - .\32xl\:focus\:ring-offset-pink-700:focus { - --tw-ring-offset-color: #be185d; + .\32xl\:object-scale-down { + object-fit: scale-down; } - .\32xl\:focus\:ring-offset-pink-800:focus { - --tw-ring-offset-color: #9d174d; + .\32xl\:object-bottom { + object-position: bottom; } - .\32xl\:focus\:ring-offset-pink-900:focus { - --tw-ring-offset-color: #831843; + .\32xl\:object-center { + object-position: center; } - .\32xl\:ring-offset-0 { - --tw-ring-offset-width: 0px; + .\32xl\:object-left { + object-position: left; } - .\32xl\:ring-offset-1 { - --tw-ring-offset-width: 1px; + .\32xl\:object-left-bottom { + object-position: left bottom; } - .\32xl\:ring-offset-2 { - --tw-ring-offset-width: 2px; + .\32xl\:object-left-top { + object-position: left top; } - .\32xl\:ring-offset-4 { - --tw-ring-offset-width: 4px; + .\32xl\:object-right { + object-position: right; } - .\32xl\:ring-offset-8 { - --tw-ring-offset-width: 8px; + .\32xl\:object-right-bottom { + object-position: right bottom; } - .\32xl\:focus-within\:ring-offset-0:focus-within { - --tw-ring-offset-width: 0px; + .\32xl\:object-right-top { + object-position: right top; } - .\32xl\:focus-within\:ring-offset-1:focus-within { - --tw-ring-offset-width: 1px; + .\32xl\:object-top { + object-position: top; } - .\32xl\:focus-within\:ring-offset-2:focus-within { - --tw-ring-offset-width: 2px; + .\32xl\:p-0 { + padding: 0px; } - .\32xl\:focus-within\:ring-offset-4:focus-within { - --tw-ring-offset-width: 4px; + .\32xl\:p-1 { + padding: 0.25rem; } - .\32xl\:focus-within\:ring-offset-8:focus-within { - --tw-ring-offset-width: 8px; + .\32xl\:p-2 { + padding: 0.5rem; } - .\32xl\:focus\:ring-offset-0:focus { - --tw-ring-offset-width: 0px; + .\32xl\:p-3 { + padding: 0.75rem; } - .\32xl\:focus\:ring-offset-1:focus { - --tw-ring-offset-width: 1px; + .\32xl\:p-4 { + padding: 1rem; } - .\32xl\:focus\:ring-offset-2:focus { - --tw-ring-offset-width: 2px; + .\32xl\:p-5 { + padding: 1.25rem; } - .\32xl\:focus\:ring-offset-4:focus { - --tw-ring-offset-width: 4px; + .\32xl\:p-6 { + padding: 1.5rem; } - .\32xl\:focus\:ring-offset-8:focus { - --tw-ring-offset-width: 8px; + .\32xl\:p-7 { + padding: 1.75rem; } - .\32xl\:ring-transparent { - --tw-ring-color: transparent; + .\32xl\:p-8 { + padding: 2rem; } - .\32xl\:ring-current { - --tw-ring-color: currentColor; + .\32xl\:p-9 { + padding: 2.25rem; } - .\32xl\:ring-black { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .\32xl\:p-10 { + padding: 2.5rem; } - .\32xl\:ring-white { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .\32xl\:p-11 { + padding: 2.75rem; } - .\32xl\:ring-gray-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .\32xl\:p-12 { + padding: 3rem; } - .\32xl\:ring-gray-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .\32xl\:p-14 { + padding: 3.5rem; } - .\32xl\:ring-gray-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .\32xl\:p-16 { + padding: 4rem; } - .\32xl\:ring-gray-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .\32xl\:p-20 { + padding: 5rem; } - .\32xl\:ring-gray-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .\32xl\:p-24 { + padding: 6rem; } - .\32xl\:ring-gray-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .\32xl\:p-28 { + padding: 7rem; } - .\32xl\:ring-gray-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .\32xl\:p-32 { + padding: 8rem; } - .\32xl\:ring-gray-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .\32xl\:p-36 { + padding: 9rem; } - .\32xl\:ring-gray-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .\32xl\:p-40 { + padding: 10rem; } - .\32xl\:ring-gray-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .\32xl\:p-44 { + padding: 11rem; } - .\32xl\:ring-red-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .\32xl\:p-48 { + padding: 12rem; } - .\32xl\:ring-red-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .\32xl\:p-52 { + padding: 13rem; } - .\32xl\:ring-red-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .\32xl\:p-56 { + padding: 14rem; } - .\32xl\:ring-red-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .\32xl\:p-60 { + padding: 15rem; } - .\32xl\:ring-red-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .\32xl\:p-64 { + padding: 16rem; } - .\32xl\:ring-red-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .\32xl\:p-72 { + padding: 18rem; } - .\32xl\:ring-red-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .\32xl\:p-80 { + padding: 20rem; } - .\32xl\:ring-red-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .\32xl\:p-96 { + padding: 24rem; } - .\32xl\:ring-red-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .\32xl\:p-px { + padding: 1px; } - .\32xl\:ring-red-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .\32xl\:p-0\.5 { + padding: 0.125rem; } - .\32xl\:ring-yellow-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .\32xl\:p-1\.5 { + padding: 0.375rem; } - .\32xl\:ring-yellow-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .\32xl\:p-2\.5 { + padding: 0.625rem; } - .\32xl\:ring-yellow-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .\32xl\:p-3\.5 { + padding: 0.875rem; } - .\32xl\:ring-yellow-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .\32xl\:px-0 { + padding-left: 0px; + padding-right: 0px; } - .\32xl\:ring-yellow-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .\32xl\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; } - .\32xl\:ring-yellow-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .\32xl\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; } - .\32xl\:ring-yellow-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .\32xl\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; } - .\32xl\:ring-yellow-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .\32xl\:px-4 { + padding-left: 1rem; + padding-right: 1rem; } - .\32xl\:ring-yellow-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .\32xl\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; } - .\32xl\:ring-yellow-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .\32xl\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; } - .\32xl\:ring-green-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .\32xl\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; } - .\32xl\:ring-green-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .\32xl\:px-8 { + padding-left: 2rem; + padding-right: 2rem; } - .\32xl\:ring-green-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .\32xl\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; } - .\32xl\:ring-green-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .\32xl\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; } - .\32xl\:ring-green-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .\32xl\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; } - .\32xl\:ring-green-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .\32xl\:px-12 { + padding-left: 3rem; + padding-right: 3rem; } - .\32xl\:ring-green-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .\32xl\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; } - .\32xl\:ring-green-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .\32xl\:px-16 { + padding-left: 4rem; + padding-right: 4rem; } - .\32xl\:ring-green-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .\32xl\:px-20 { + padding-left: 5rem; + padding-right: 5rem; } - .\32xl\:ring-green-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .\32xl\:px-24 { + padding-left: 6rem; + padding-right: 6rem; } - .\32xl\:ring-blue-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .\32xl\:px-28 { + padding-left: 7rem; + padding-right: 7rem; } - .\32xl\:ring-blue-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .\32xl\:px-32 { + padding-left: 8rem; + padding-right: 8rem; } - .\32xl\:ring-blue-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .\32xl\:px-36 { + padding-left: 9rem; + padding-right: 9rem; } - .\32xl\:ring-blue-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .\32xl\:px-40 { + padding-left: 10rem; + padding-right: 10rem; } - .\32xl\:ring-blue-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .\32xl\:px-44 { + padding-left: 11rem; + padding-right: 11rem; } - .\32xl\:ring-blue-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .\32xl\:px-48 { + padding-left: 12rem; + padding-right: 12rem; } - .\32xl\:ring-blue-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .\32xl\:px-52 { + padding-left: 13rem; + padding-right: 13rem; } - .\32xl\:ring-blue-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .\32xl\:px-56 { + padding-left: 14rem; + padding-right: 14rem; } - .\32xl\:ring-blue-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .\32xl\:px-60 { + padding-left: 15rem; + padding-right: 15rem; } - .\32xl\:ring-blue-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .\32xl\:px-64 { + padding-left: 16rem; + padding-right: 16rem; } - .\32xl\:ring-indigo-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .\32xl\:px-72 { + padding-left: 18rem; + padding-right: 18rem; } - .\32xl\:ring-indigo-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .\32xl\:px-80 { + padding-left: 20rem; + padding-right: 20rem; } - .\32xl\:ring-indigo-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .\32xl\:px-96 { + padding-left: 24rem; + padding-right: 24rem; } - .\32xl\:ring-indigo-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .\32xl\:px-px { + padding-left: 1px; + padding-right: 1px; } - .\32xl\:ring-indigo-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .\32xl\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; } - .\32xl\:ring-indigo-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .\32xl\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; } - .\32xl\:ring-indigo-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .\32xl\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; } - .\32xl\:ring-indigo-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .\32xl\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; } - .\32xl\:ring-indigo-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .\32xl\:py-0 { + padding-top: 0px; + padding-bottom: 0px; } - .\32xl\:ring-indigo-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .\32xl\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; } - .\32xl\:ring-purple-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .\32xl\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; } - .\32xl\:ring-purple-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .\32xl\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; } - .\32xl\:ring-purple-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .\32xl\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; } - .\32xl\:ring-purple-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .\32xl\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; } - .\32xl\:ring-purple-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .\32xl\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; } - .\32xl\:ring-purple-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .\32xl\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; } - .\32xl\:ring-purple-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .\32xl\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; } - .\32xl\:ring-purple-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .\32xl\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; } - .\32xl\:ring-purple-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .\32xl\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; } - .\32xl\:ring-purple-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .\32xl\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; } - .\32xl\:ring-pink-50 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .\32xl\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; } - .\32xl\:ring-pink-100 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .\32xl\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; } - .\32xl\:ring-pink-200 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .\32xl\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; } - .\32xl\:ring-pink-300 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .\32xl\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; } - .\32xl\:ring-pink-400 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .\32xl\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; } - .\32xl\:ring-pink-500 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .\32xl\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; } - .\32xl\:ring-pink-600 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .\32xl\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; } - .\32xl\:ring-pink-700 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .\32xl\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; } - .\32xl\:ring-pink-800 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .\32xl\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; } - .\32xl\:ring-pink-900 { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .\32xl\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; } - .\32xl\:focus-within\:ring-transparent:focus-within { - --tw-ring-color: transparent; + .\32xl\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; } - .\32xl\:focus-within\:ring-current:focus-within { - --tw-ring-color: currentColor; + .\32xl\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; } - .\32xl\:focus-within\:ring-black:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .\32xl\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; } - .\32xl\:focus-within\:ring-white:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .\32xl\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; } - .\32xl\:focus-within\:ring-gray-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .\32xl\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; } - .\32xl\:focus-within\:ring-gray-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .\32xl\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; } - .\32xl\:focus-within\:ring-gray-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .\32xl\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; } - .\32xl\:focus-within\:ring-gray-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .\32xl\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; } - .\32xl\:focus-within\:ring-gray-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .\32xl\:py-px { + padding-top: 1px; + padding-bottom: 1px; } - .\32xl\:focus-within\:ring-gray-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .\32xl\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; } - .\32xl\:focus-within\:ring-gray-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .\32xl\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; } - .\32xl\:focus-within\:ring-gray-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .\32xl\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; } - .\32xl\:focus-within\:ring-gray-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .\32xl\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; } - .\32xl\:focus-within\:ring-gray-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .\32xl\:pt-0 { + padding-top: 0px; } - .\32xl\:focus-within\:ring-red-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .\32xl\:pt-1 { + padding-top: 0.25rem; } - .\32xl\:focus-within\:ring-red-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .\32xl\:pt-2 { + padding-top: 0.5rem; } - .\32xl\:focus-within\:ring-red-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .\32xl\:pt-3 { + padding-top: 0.75rem; } - .\32xl\:focus-within\:ring-red-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .\32xl\:pt-4 { + padding-top: 1rem; } - .\32xl\:focus-within\:ring-red-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .\32xl\:pt-5 { + padding-top: 1.25rem; } - .\32xl\:focus-within\:ring-red-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .\32xl\:pt-6 { + padding-top: 1.5rem; } - .\32xl\:focus-within\:ring-red-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .\32xl\:pt-7 { + padding-top: 1.75rem; } - .\32xl\:focus-within\:ring-red-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .\32xl\:pt-8 { + padding-top: 2rem; } - .\32xl\:focus-within\:ring-red-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .\32xl\:pt-9 { + padding-top: 2.25rem; } - .\32xl\:focus-within\:ring-red-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .\32xl\:pt-10 { + padding-top: 2.5rem; } - .\32xl\:focus-within\:ring-yellow-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .\32xl\:pt-11 { + padding-top: 2.75rem; } - .\32xl\:focus-within\:ring-yellow-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .\32xl\:pt-12 { + padding-top: 3rem; } - .\32xl\:focus-within\:ring-yellow-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .\32xl\:pt-14 { + padding-top: 3.5rem; } - .\32xl\:focus-within\:ring-yellow-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .\32xl\:pt-16 { + padding-top: 4rem; } - .\32xl\:focus-within\:ring-yellow-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .\32xl\:pt-20 { + padding-top: 5rem; } - .\32xl\:focus-within\:ring-yellow-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .\32xl\:pt-24 { + padding-top: 6rem; } - .\32xl\:focus-within\:ring-yellow-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .\32xl\:pt-28 { + padding-top: 7rem; } - .\32xl\:focus-within\:ring-yellow-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .\32xl\:pt-32 { + padding-top: 8rem; } - .\32xl\:focus-within\:ring-yellow-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .\32xl\:pt-36 { + padding-top: 9rem; } - .\32xl\:focus-within\:ring-yellow-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .\32xl\:pt-40 { + padding-top: 10rem; } - .\32xl\:focus-within\:ring-green-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .\32xl\:pt-44 { + padding-top: 11rem; } - .\32xl\:focus-within\:ring-green-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .\32xl\:pt-48 { + padding-top: 12rem; } - .\32xl\:focus-within\:ring-green-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .\32xl\:pt-52 { + padding-top: 13rem; } - .\32xl\:focus-within\:ring-green-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .\32xl\:pt-56 { + padding-top: 14rem; } - .\32xl\:focus-within\:ring-green-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .\32xl\:pt-60 { + padding-top: 15rem; } - .\32xl\:focus-within\:ring-green-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .\32xl\:pt-64 { + padding-top: 16rem; } - .\32xl\:focus-within\:ring-green-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .\32xl\:pt-72 { + padding-top: 18rem; } - .\32xl\:focus-within\:ring-green-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .\32xl\:pt-80 { + padding-top: 20rem; } - .\32xl\:focus-within\:ring-green-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .\32xl\:pt-96 { + padding-top: 24rem; } - .\32xl\:focus-within\:ring-green-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .\32xl\:pt-px { + padding-top: 1px; } - .\32xl\:focus-within\:ring-blue-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .\32xl\:pt-0\.5 { + padding-top: 0.125rem; } - .\32xl\:focus-within\:ring-blue-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .\32xl\:pt-1\.5 { + padding-top: 0.375rem; } - .\32xl\:focus-within\:ring-blue-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .\32xl\:pt-2\.5 { + padding-top: 0.625rem; } - .\32xl\:focus-within\:ring-blue-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .\32xl\:pt-3\.5 { + padding-top: 0.875rem; } - .\32xl\:focus-within\:ring-blue-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .\32xl\:pr-0 { + padding-right: 0px; } - .\32xl\:focus-within\:ring-blue-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .\32xl\:pr-1 { + padding-right: 0.25rem; } - .\32xl\:focus-within\:ring-blue-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .\32xl\:pr-2 { + padding-right: 0.5rem; } - .\32xl\:focus-within\:ring-blue-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .\32xl\:pr-3 { + padding-right: 0.75rem; } - .\32xl\:focus-within\:ring-blue-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .\32xl\:pr-4 { + padding-right: 1rem; } - .\32xl\:focus-within\:ring-blue-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .\32xl\:pr-5 { + padding-right: 1.25rem; } - .\32xl\:focus-within\:ring-indigo-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .\32xl\:pr-6 { + padding-right: 1.5rem; } - .\32xl\:focus-within\:ring-indigo-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .\32xl\:pr-7 { + padding-right: 1.75rem; } - .\32xl\:focus-within\:ring-indigo-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .\32xl\:pr-8 { + padding-right: 2rem; } - .\32xl\:focus-within\:ring-indigo-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .\32xl\:pr-9 { + padding-right: 2.25rem; } - .\32xl\:focus-within\:ring-indigo-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .\32xl\:pr-10 { + padding-right: 2.5rem; } - .\32xl\:focus-within\:ring-indigo-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .\32xl\:pr-11 { + padding-right: 2.75rem; } - .\32xl\:focus-within\:ring-indigo-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .\32xl\:pr-12 { + padding-right: 3rem; } - .\32xl\:focus-within\:ring-indigo-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .\32xl\:pr-14 { + padding-right: 3.5rem; } - .\32xl\:focus-within\:ring-indigo-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .\32xl\:pr-16 { + padding-right: 4rem; } - .\32xl\:focus-within\:ring-indigo-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .\32xl\:pr-20 { + padding-right: 5rem; } - .\32xl\:focus-within\:ring-purple-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .\32xl\:pr-24 { + padding-right: 6rem; } - .\32xl\:focus-within\:ring-purple-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .\32xl\:pr-28 { + padding-right: 7rem; } - .\32xl\:focus-within\:ring-purple-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .\32xl\:pr-32 { + padding-right: 8rem; } - .\32xl\:focus-within\:ring-purple-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .\32xl\:pr-36 { + padding-right: 9rem; } - .\32xl\:focus-within\:ring-purple-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .\32xl\:pr-40 { + padding-right: 10rem; } - .\32xl\:focus-within\:ring-purple-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .\32xl\:pr-44 { + padding-right: 11rem; } - .\32xl\:focus-within\:ring-purple-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .\32xl\:pr-48 { + padding-right: 12rem; } - .\32xl\:focus-within\:ring-purple-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .\32xl\:pr-52 { + padding-right: 13rem; } - .\32xl\:focus-within\:ring-purple-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .\32xl\:pr-56 { + padding-right: 14rem; } - .\32xl\:focus-within\:ring-purple-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .\32xl\:pr-60 { + padding-right: 15rem; } - .\32xl\:focus-within\:ring-pink-50:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .\32xl\:pr-64 { + padding-right: 16rem; } - .\32xl\:focus-within\:ring-pink-100:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .\32xl\:pr-72 { + padding-right: 18rem; } - .\32xl\:focus-within\:ring-pink-200:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .\32xl\:pr-80 { + padding-right: 20rem; } - .\32xl\:focus-within\:ring-pink-300:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .\32xl\:pr-96 { + padding-right: 24rem; } - .\32xl\:focus-within\:ring-pink-400:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .\32xl\:pr-px { + padding-right: 1px; } - .\32xl\:focus-within\:ring-pink-500:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .\32xl\:pr-0\.5 { + padding-right: 0.125rem; } - .\32xl\:focus-within\:ring-pink-600:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .\32xl\:pr-1\.5 { + padding-right: 0.375rem; } - .\32xl\:focus-within\:ring-pink-700:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .\32xl\:pr-2\.5 { + padding-right: 0.625rem; } - .\32xl\:focus-within\:ring-pink-800:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .\32xl\:pr-3\.5 { + padding-right: 0.875rem; } - .\32xl\:focus-within\:ring-pink-900:focus-within { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .\32xl\:pb-0 { + padding-bottom: 0px; } - .\32xl\:focus\:ring-transparent:focus { - --tw-ring-color: transparent; + .\32xl\:pb-1 { + padding-bottom: 0.25rem; } - .\32xl\:focus\:ring-current:focus { - --tw-ring-color: currentColor; + .\32xl\:pb-2 { + padding-bottom: 0.5rem; } - .\32xl\:focus\:ring-black:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + .\32xl\:pb-3 { + padding-bottom: 0.75rem; } - .\32xl\:focus\:ring-white:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + .\32xl\:pb-4 { + padding-bottom: 1rem; } - .\32xl\:focus\:ring-gray-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + .\32xl\:pb-5 { + padding-bottom: 1.25rem; } - .\32xl\:focus\:ring-gray-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + .\32xl\:pb-6 { + padding-bottom: 1.5rem; } - .\32xl\:focus\:ring-gray-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + .\32xl\:pb-7 { + padding-bottom: 1.75rem; } - .\32xl\:focus\:ring-gray-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + .\32xl\:pb-8 { + padding-bottom: 2rem; } - .\32xl\:focus\:ring-gray-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + .\32xl\:pb-9 { + padding-bottom: 2.25rem; } - .\32xl\:focus\:ring-gray-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + .\32xl\:pb-10 { + padding-bottom: 2.5rem; } - .\32xl\:focus\:ring-gray-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + .\32xl\:pb-11 { + padding-bottom: 2.75rem; } - .\32xl\:focus\:ring-gray-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + .\32xl\:pb-12 { + padding-bottom: 3rem; } - .\32xl\:focus\:ring-gray-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + .\32xl\:pb-14 { + padding-bottom: 3.5rem; } - .\32xl\:focus\:ring-gray-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + .\32xl\:pb-16 { + padding-bottom: 4rem; } - .\32xl\:focus\:ring-red-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); + .\32xl\:pb-20 { + padding-bottom: 5rem; } - .\32xl\:focus\:ring-red-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); + .\32xl\:pb-24 { + padding-bottom: 6rem; } - .\32xl\:focus\:ring-red-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); + .\32xl\:pb-28 { + padding-bottom: 7rem; } - .\32xl\:focus\:ring-red-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); + .\32xl\:pb-32 { + padding-bottom: 8rem; } - .\32xl\:focus\:ring-red-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); + .\32xl\:pb-36 { + padding-bottom: 9rem; } - .\32xl\:focus\:ring-red-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); + .\32xl\:pb-40 { + padding-bottom: 10rem; } - .\32xl\:focus\:ring-red-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); + .\32xl\:pb-44 { + padding-bottom: 11rem; } - .\32xl\:focus\:ring-red-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); + .\32xl\:pb-48 { + padding-bottom: 12rem; } - .\32xl\:focus\:ring-red-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); + .\32xl\:pb-52 { + padding-bottom: 13rem; } - .\32xl\:focus\:ring-red-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); + .\32xl\:pb-56 { + padding-bottom: 14rem; } - .\32xl\:focus\:ring-yellow-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); + .\32xl\:pb-60 { + padding-bottom: 15rem; } - .\32xl\:focus\:ring-yellow-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); + .\32xl\:pb-64 { + padding-bottom: 16rem; } - .\32xl\:focus\:ring-yellow-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); + .\32xl\:pb-72 { + padding-bottom: 18rem; } - .\32xl\:focus\:ring-yellow-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); + .\32xl\:pb-80 { + padding-bottom: 20rem; } - .\32xl\:focus\:ring-yellow-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); + .\32xl\:pb-96 { + padding-bottom: 24rem; } - .\32xl\:focus\:ring-yellow-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + .\32xl\:pb-px { + padding-bottom: 1px; } - .\32xl\:focus\:ring-yellow-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); + .\32xl\:pb-0\.5 { + padding-bottom: 0.125rem; } - .\32xl\:focus\:ring-yellow-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); + .\32xl\:pb-1\.5 { + padding-bottom: 0.375rem; } - .\32xl\:focus\:ring-yellow-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); + .\32xl\:pb-2\.5 { + padding-bottom: 0.625rem; } - .\32xl\:focus\:ring-yellow-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); + .\32xl\:pb-3\.5 { + padding-bottom: 0.875rem; } - .\32xl\:focus\:ring-green-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); + .\32xl\:pl-0 { + padding-left: 0px; } - .\32xl\:focus\:ring-green-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); + .\32xl\:pl-1 { + padding-left: 0.25rem; } - .\32xl\:focus\:ring-green-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); + .\32xl\:pl-2 { + padding-left: 0.5rem; } - .\32xl\:focus\:ring-green-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); + .\32xl\:pl-3 { + padding-left: 0.75rem; } - .\32xl\:focus\:ring-green-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); + .\32xl\:pl-4 { + padding-left: 1rem; } - .\32xl\:focus\:ring-green-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); + .\32xl\:pl-5 { + padding-left: 1.25rem; } - .\32xl\:focus\:ring-green-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); + .\32xl\:pl-6 { + padding-left: 1.5rem; } - .\32xl\:focus\:ring-green-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); + .\32xl\:pl-7 { + padding-left: 1.75rem; } - .\32xl\:focus\:ring-green-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); + .\32xl\:pl-8 { + padding-left: 2rem; } - .\32xl\:focus\:ring-green-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); + .\32xl\:pl-9 { + padding-left: 2.25rem; } - .\32xl\:focus\:ring-blue-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); + .\32xl\:pl-10 { + padding-left: 2.5rem; } - .\32xl\:focus\:ring-blue-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); + .\32xl\:pl-11 { + padding-left: 2.75rem; } - .\32xl\:focus\:ring-blue-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); + .\32xl\:pl-12 { + padding-left: 3rem; } - .\32xl\:focus\:ring-blue-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); + .\32xl\:pl-14 { + padding-left: 3.5rem; } - .\32xl\:focus\:ring-blue-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); + .\32xl\:pl-16 { + padding-left: 4rem; } - .\32xl\:focus\:ring-blue-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + .\32xl\:pl-20 { + padding-left: 5rem; } - .\32xl\:focus\:ring-blue-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); + .\32xl\:pl-24 { + padding-left: 6rem; } - .\32xl\:focus\:ring-blue-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); + .\32xl\:pl-28 { + padding-left: 7rem; } - .\32xl\:focus\:ring-blue-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); + .\32xl\:pl-32 { + padding-left: 8rem; } - .\32xl\:focus\:ring-blue-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); + .\32xl\:pl-36 { + padding-left: 9rem; } - .\32xl\:focus\:ring-indigo-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); + .\32xl\:pl-40 { + padding-left: 10rem; } - .\32xl\:focus\:ring-indigo-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); + .\32xl\:pl-44 { + padding-left: 11rem; } - .\32xl\:focus\:ring-indigo-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); + .\32xl\:pl-48 { + padding-left: 12rem; } - .\32xl\:focus\:ring-indigo-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); + .\32xl\:pl-52 { + padding-left: 13rem; } - .\32xl\:focus\:ring-indigo-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); + .\32xl\:pl-56 { + padding-left: 14rem; } - .\32xl\:focus\:ring-indigo-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); + .\32xl\:pl-60 { + padding-left: 15rem; } - .\32xl\:focus\:ring-indigo-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); + .\32xl\:pl-64 { + padding-left: 16rem; } - .\32xl\:focus\:ring-indigo-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); + .\32xl\:pl-72 { + padding-left: 18rem; } - .\32xl\:focus\:ring-indigo-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); + .\32xl\:pl-80 { + padding-left: 20rem; } - .\32xl\:focus\:ring-indigo-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); + .\32xl\:pl-96 { + padding-left: 24rem; } - .\32xl\:focus\:ring-purple-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); + .\32xl\:pl-px { + padding-left: 1px; } - .\32xl\:focus\:ring-purple-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); + .\32xl\:pl-0\.5 { + padding-left: 0.125rem; } - .\32xl\:focus\:ring-purple-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); + .\32xl\:pl-1\.5 { + padding-left: 0.375rem; } - .\32xl\:focus\:ring-purple-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); + .\32xl\:pl-2\.5 { + padding-left: 0.625rem; } - .\32xl\:focus\:ring-purple-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); + .\32xl\:pl-3\.5 { + padding-left: 0.875rem; } - .\32xl\:focus\:ring-purple-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); + .\32xl\:text-left { + text-align: left; } - .\32xl\:focus\:ring-purple-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); + .\32xl\:text-center { + text-align: center; } - .\32xl\:focus\:ring-purple-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); + .\32xl\:text-right { + text-align: right; } - .\32xl\:focus\:ring-purple-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); + .\32xl\:text-justify { + text-align: justify; } - .\32xl\:focus\:ring-purple-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); + .\32xl\:align-baseline { + vertical-align: baseline; } - .\32xl\:focus\:ring-pink-50:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); + .\32xl\:align-top { + vertical-align: top; } - .\32xl\:focus\:ring-pink-100:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); + .\32xl\:align-middle { + vertical-align: middle; } - .\32xl\:focus\:ring-pink-200:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); + .\32xl\:align-bottom { + vertical-align: bottom; } - .\32xl\:focus\:ring-pink-300:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); + .\32xl\:align-text-top { + vertical-align: text-top; } - .\32xl\:focus\:ring-pink-400:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); + .\32xl\:align-text-bottom { + vertical-align: text-bottom; } - .\32xl\:focus\:ring-pink-500:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); + .\32xl\:font-sans { + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } - .\32xl\:focus\:ring-pink-600:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); + .\32xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; } - .\32xl\:focus\:ring-pink-700:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); + .\32xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } - .\32xl\:focus\:ring-pink-800:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); + .\32xl\:text-xs { + font-size: 0.75rem; + line-height: 1rem; } - .\32xl\:focus\:ring-pink-900:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); + .\32xl\:text-sm { + font-size: 0.875rem; + line-height: 1.25rem; } - .\32xl\:ring-opacity-0 { - --tw-ring-opacity: 0; + .\32xl\:text-base { + font-size: 1rem; + line-height: 1.5rem; } - .\32xl\:ring-opacity-5 { - --tw-ring-opacity: 0.05; + .\32xl\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; } - .\32xl\:ring-opacity-10 { - --tw-ring-opacity: 0.1; + .\32xl\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; } - .\32xl\:ring-opacity-20 { - --tw-ring-opacity: 0.2; + .\32xl\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; } - .\32xl\:ring-opacity-25 { - --tw-ring-opacity: 0.25; + .\32xl\:text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; } - .\32xl\:ring-opacity-30 { - --tw-ring-opacity: 0.3; + .\32xl\:text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } - .\32xl\:ring-opacity-40 { - --tw-ring-opacity: 0.4; + .\32xl\:text-5xl { + font-size: 3rem; + line-height: 1; } - .\32xl\:ring-opacity-50 { - --tw-ring-opacity: 0.5; + .\32xl\:text-6xl { + font-size: 3.75rem; + line-height: 1; } - .\32xl\:ring-opacity-60 { - --tw-ring-opacity: 0.6; + .\32xl\:text-7xl { + font-size: 4.5rem; + line-height: 1; } - .\32xl\:ring-opacity-70 { - --tw-ring-opacity: 0.7; + .\32xl\:text-8xl { + font-size: 6rem; + line-height: 1; } - .\32xl\:ring-opacity-75 { - --tw-ring-opacity: 0.75; + .\32xl\:text-9xl { + font-size: 8rem; + line-height: 1; } - .\32xl\:ring-opacity-80 { - --tw-ring-opacity: 0.8; + .\32xl\:font-thin { + font-weight: 100; } - .\32xl\:ring-opacity-90 { - --tw-ring-opacity: 0.9; + .\32xl\:font-extralight { + font-weight: 200; } - .\32xl\:ring-opacity-95 { - --tw-ring-opacity: 0.95; + .\32xl\:font-light { + font-weight: 300; } - .\32xl\:ring-opacity-100 { - --tw-ring-opacity: 1; + .\32xl\:font-normal { + font-weight: 400; } - .\32xl\:focus-within\:ring-opacity-0:focus-within { - --tw-ring-opacity: 0; + .\32xl\:font-medium { + font-weight: 500; } - .\32xl\:focus-within\:ring-opacity-5:focus-within { - --tw-ring-opacity: 0.05; + .\32xl\:font-semibold { + font-weight: 600; } - .\32xl\:focus-within\:ring-opacity-10:focus-within { - --tw-ring-opacity: 0.1; + .\32xl\:font-bold { + font-weight: 700; } - .\32xl\:focus-within\:ring-opacity-20:focus-within { - --tw-ring-opacity: 0.2; + .\32xl\:font-extrabold { + font-weight: 800; } - .\32xl\:focus-within\:ring-opacity-25:focus-within { - --tw-ring-opacity: 0.25; + .\32xl\:font-black { + font-weight: 900; } - .\32xl\:focus-within\:ring-opacity-30:focus-within { - --tw-ring-opacity: 0.3; + .\32xl\:uppercase { + text-transform: uppercase; } - .\32xl\:focus-within\:ring-opacity-40:focus-within { - --tw-ring-opacity: 0.4; + .\32xl\:lowercase { + text-transform: lowercase; } - .\32xl\:focus-within\:ring-opacity-50:focus-within { - --tw-ring-opacity: 0.5; + .\32xl\:capitalize { + text-transform: capitalize; } - .\32xl\:focus-within\:ring-opacity-60:focus-within { - --tw-ring-opacity: 0.6; + .\32xl\:normal-case { + text-transform: none; } - .\32xl\:focus-within\:ring-opacity-70:focus-within { - --tw-ring-opacity: 0.7; + .\32xl\:italic { + font-style: italic; } - .\32xl\:focus-within\:ring-opacity-75:focus-within { - --tw-ring-opacity: 0.75; + .\32xl\:not-italic { + font-style: normal; } - .\32xl\:focus-within\:ring-opacity-80:focus-within { - --tw-ring-opacity: 0.8; + .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); } - .\32xl\:focus-within\:ring-opacity-90:focus-within { - --tw-ring-opacity: 0.9; + .\32xl\:normal-nums { + font-variant-numeric: normal; } - .\32xl\:focus-within\:ring-opacity-95:focus-within { - --tw-ring-opacity: 0.95; + .\32xl\:ordinal { + --tw-ordinal: ordinal; } - .\32xl\:focus-within\:ring-opacity-100:focus-within { - --tw-ring-opacity: 1; + .\32xl\:slashed-zero { + --tw-slashed-zero: slashed-zero; } - .\32xl\:focus\:ring-opacity-0:focus { - --tw-ring-opacity: 0; + .\32xl\:lining-nums { + --tw-numeric-figure: lining-nums; } - .\32xl\:focus\:ring-opacity-5:focus { - --tw-ring-opacity: 0.05; + .\32xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; } - .\32xl\:focus\:ring-opacity-10:focus { - --tw-ring-opacity: 0.1; + .\32xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums; } - .\32xl\:focus\:ring-opacity-20:focus { - --tw-ring-opacity: 0.2; + .\32xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums; } - .\32xl\:focus\:ring-opacity-25:focus { - --tw-ring-opacity: 0.25; + .\32xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; } - .\32xl\:focus\:ring-opacity-30:focus { - --tw-ring-opacity: 0.3; + .\32xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; } - .\32xl\:focus\:ring-opacity-40:focus { - --tw-ring-opacity: 0.4; + .\32xl\:leading-3 { + line-height: .75rem; } - .\32xl\:focus\:ring-opacity-50:focus { - --tw-ring-opacity: 0.5; + .\32xl\:leading-4 { + line-height: 1rem; } - .\32xl\:focus\:ring-opacity-60:focus { - --tw-ring-opacity: 0.6; + .\32xl\:leading-5 { + line-height: 1.25rem; } - .\32xl\:focus\:ring-opacity-70:focus { - --tw-ring-opacity: 0.7; + .\32xl\:leading-6 { + line-height: 1.5rem; } - .\32xl\:focus\:ring-opacity-75:focus { - --tw-ring-opacity: 0.75; + .\32xl\:leading-7 { + line-height: 1.75rem; } - .\32xl\:focus\:ring-opacity-80:focus { - --tw-ring-opacity: 0.8; + .\32xl\:leading-8 { + line-height: 2rem; } - .\32xl\:focus\:ring-opacity-90:focus { - --tw-ring-opacity: 0.9; + .\32xl\:leading-9 { + line-height: 2.25rem; } - .\32xl\:focus\:ring-opacity-95:focus { - --tw-ring-opacity: 0.95; + .\32xl\:leading-10 { + line-height: 2.5rem; } - .\32xl\:focus\:ring-opacity-100:focus { - --tw-ring-opacity: 1; + .\32xl\:leading-none { + line-height: 1; } - .\32xl\:fill-current { - fill: currentColor; + .\32xl\:leading-tight { + line-height: 1.25; } - .\32xl\:stroke-current { - stroke: currentColor; + .\32xl\:leading-snug { + line-height: 1.375; } - .\32xl\:stroke-0 { - stroke-width: 0; + .\32xl\:leading-normal { + line-height: 1.5; } - .\32xl\:stroke-1 { - stroke-width: 1; + .\32xl\:leading-relaxed { + line-height: 1.625; } - .\32xl\:stroke-2 { - stroke-width: 2; + .\32xl\:leading-loose { + line-height: 2; } - .\32xl\:table-auto { - table-layout: auto; + .\32xl\:tracking-tighter { + letter-spacing: -0.05em; } - .\32xl\:table-fixed { - table-layout: fixed; + .\32xl\:tracking-tight { + letter-spacing: -0.025em; } - .\32xl\:text-left { - text-align: left; + .\32xl\:tracking-normal { + letter-spacing: 0em; } - .\32xl\:text-center { - text-align: center; + .\32xl\:tracking-wide { + letter-spacing: 0.025em; } - .\32xl\:text-right { - text-align: right; + .\32xl\:tracking-wider { + letter-spacing: 0.05em; } - .\32xl\:text-justify { - text-align: justify; + .\32xl\:tracking-widest { + letter-spacing: 0.1em; } .\32xl\:text-transparent { @@ -169737,5258 +169926,4949 @@ video { } .\32xl\:focus\:text-red-500:focus { - --tw-text-opacity: 1; - color: rgba(239, 68, 68, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-red-600:focus { - --tw-text-opacity: 1; - color: rgba(220, 38, 38, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-red-700:focus { - --tw-text-opacity: 1; - color: rgba(185, 28, 28, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-red-800:focus { - --tw-text-opacity: 1; - color: rgba(153, 27, 27, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-red-900:focus { - --tw-text-opacity: 1; - color: rgba(127, 29, 29, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-50:focus { - --tw-text-opacity: 1; - color: rgba(255, 251, 235, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-100:focus { - --tw-text-opacity: 1; - color: rgba(254, 243, 199, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-200:focus { - --tw-text-opacity: 1; - color: rgba(253, 230, 138, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-300:focus { - --tw-text-opacity: 1; - color: rgba(252, 211, 77, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-400:focus { - --tw-text-opacity: 1; - color: rgba(251, 191, 36, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-500:focus { - --tw-text-opacity: 1; - color: rgba(245, 158, 11, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-600:focus { - --tw-text-opacity: 1; - color: rgba(217, 119, 6, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-700:focus { - --tw-text-opacity: 1; - color: rgba(180, 83, 9, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-800:focus { - --tw-text-opacity: 1; - color: rgba(146, 64, 14, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-yellow-900:focus { - --tw-text-opacity: 1; - color: rgba(120, 53, 15, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-50:focus { - --tw-text-opacity: 1; - color: rgba(236, 253, 245, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-100:focus { - --tw-text-opacity: 1; - color: rgba(209, 250, 229, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-200:focus { - --tw-text-opacity: 1; - color: rgba(167, 243, 208, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-300:focus { - --tw-text-opacity: 1; - color: rgba(110, 231, 183, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-400:focus { - --tw-text-opacity: 1; - color: rgba(52, 211, 153, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-500:focus { - --tw-text-opacity: 1; - color: rgba(16, 185, 129, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-600:focus { - --tw-text-opacity: 1; - color: rgba(5, 150, 105, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-700:focus { - --tw-text-opacity: 1; - color: rgba(4, 120, 87, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-800:focus { - --tw-text-opacity: 1; - color: rgba(6, 95, 70, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-green-900:focus { - --tw-text-opacity: 1; - color: rgba(6, 78, 59, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-50:focus { - --tw-text-opacity: 1; - color: rgba(239, 246, 255, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-100:focus { - --tw-text-opacity: 1; - color: rgba(219, 234, 254, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-200:focus { - --tw-text-opacity: 1; - color: rgba(191, 219, 254, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-300:focus { - --tw-text-opacity: 1; - color: rgba(147, 197, 253, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-400:focus { - --tw-text-opacity: 1; - color: rgba(96, 165, 250, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-500:focus { - --tw-text-opacity: 1; - color: rgba(59, 130, 246, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-600:focus { - --tw-text-opacity: 1; - color: rgba(37, 99, 235, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-700:focus { - --tw-text-opacity: 1; - color: rgba(29, 78, 216, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-800:focus { - --tw-text-opacity: 1; - color: rgba(30, 64, 175, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-blue-900:focus { - --tw-text-opacity: 1; - color: rgba(30, 58, 138, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-50:focus { - --tw-text-opacity: 1; - color: rgba(238, 242, 255, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-100:focus { - --tw-text-opacity: 1; - color: rgba(224, 231, 255, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-200:focus { - --tw-text-opacity: 1; - color: rgba(199, 210, 254, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-300:focus { - --tw-text-opacity: 1; - color: rgba(165, 180, 252, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-400:focus { - --tw-text-opacity: 1; - color: rgba(129, 140, 248, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-500:focus { - --tw-text-opacity: 1; - color: rgba(99, 102, 241, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-600:focus { - --tw-text-opacity: 1; - color: rgba(79, 70, 229, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-700:focus { - --tw-text-opacity: 1; - color: rgba(67, 56, 202, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-800:focus { - --tw-text-opacity: 1; - color: rgba(55, 48, 163, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-indigo-900:focus { - --tw-text-opacity: 1; - color: rgba(49, 46, 129, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-50:focus { - --tw-text-opacity: 1; - color: rgba(245, 243, 255, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-100:focus { - --tw-text-opacity: 1; - color: rgba(237, 233, 254, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-200:focus { - --tw-text-opacity: 1; - color: rgba(221, 214, 254, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-300:focus { - --tw-text-opacity: 1; - color: rgba(196, 181, 253, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-400:focus { - --tw-text-opacity: 1; - color: rgba(167, 139, 250, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-500:focus { - --tw-text-opacity: 1; - color: rgba(139, 92, 246, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-600:focus { - --tw-text-opacity: 1; - color: rgba(124, 58, 237, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-700:focus { - --tw-text-opacity: 1; - color: rgba(109, 40, 217, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-800:focus { - --tw-text-opacity: 1; - color: rgba(91, 33, 182, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-purple-900:focus { - --tw-text-opacity: 1; - color: rgba(76, 29, 149, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-50:focus { - --tw-text-opacity: 1; - color: rgba(253, 242, 248, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-100:focus { - --tw-text-opacity: 1; - color: rgba(252, 231, 243, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-200:focus { - --tw-text-opacity: 1; - color: rgba(251, 207, 232, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-300:focus { - --tw-text-opacity: 1; - color: rgba(249, 168, 212, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-400:focus { - --tw-text-opacity: 1; - color: rgba(244, 114, 182, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-500:focus { - --tw-text-opacity: 1; - color: rgba(236, 72, 153, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-600:focus { - --tw-text-opacity: 1; - color: rgba(219, 39, 119, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-700:focus { - --tw-text-opacity: 1; - color: rgba(190, 24, 93, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-800:focus { - --tw-text-opacity: 1; - color: rgba(157, 23, 77, var(--tw-text-opacity)); - } - - .\32xl\:focus\:text-pink-900:focus { - --tw-text-opacity: 1; - color: rgba(131, 24, 67, var(--tw-text-opacity)); - } - - .\32xl\:text-opacity-0 { - --tw-text-opacity: 0; - } - - .\32xl\:text-opacity-5 { - --tw-text-opacity: 0.05; - } - - .\32xl\:text-opacity-10 { - --tw-text-opacity: 0.1; - } - - .\32xl\:text-opacity-20 { - --tw-text-opacity: 0.2; - } - - .\32xl\:text-opacity-25 { - --tw-text-opacity: 0.25; - } - - .\32xl\:text-opacity-30 { - --tw-text-opacity: 0.3; - } - - .\32xl\:text-opacity-40 { - --tw-text-opacity: 0.4; - } - - .\32xl\:text-opacity-50 { - --tw-text-opacity: 0.5; - } - - .\32xl\:text-opacity-60 { - --tw-text-opacity: 0.6; - } - - .\32xl\:text-opacity-70 { - --tw-text-opacity: 0.7; - } - - .\32xl\:text-opacity-75 { - --tw-text-opacity: 0.75; - } - - .\32xl\:text-opacity-80 { - --tw-text-opacity: 0.8; - } - - .\32xl\:text-opacity-90 { - --tw-text-opacity: 0.9; - } - - .\32xl\:text-opacity-95 { - --tw-text-opacity: 0.95; - } - - .\32xl\:text-opacity-100 { - --tw-text-opacity: 1; - } - - .group:hover .\32xl\:group-hover\:text-opacity-0 { - --tw-text-opacity: 0; - } - - .group:hover .\32xl\:group-hover\:text-opacity-5 { - --tw-text-opacity: 0.05; - } - - .group:hover .\32xl\:group-hover\:text-opacity-10 { - --tw-text-opacity: 0.1; - } - - .group:hover .\32xl\:group-hover\:text-opacity-20 { - --tw-text-opacity: 0.2; - } - - .group:hover .\32xl\:group-hover\:text-opacity-25 { - --tw-text-opacity: 0.25; - } - - .group:hover .\32xl\:group-hover\:text-opacity-30 { - --tw-text-opacity: 0.3; - } - - .group:hover .\32xl\:group-hover\:text-opacity-40 { - --tw-text-opacity: 0.4; - } - - .group:hover .\32xl\:group-hover\:text-opacity-50 { - --tw-text-opacity: 0.5; - } - - .group:hover .\32xl\:group-hover\:text-opacity-60 { - --tw-text-opacity: 0.6; - } - - .group:hover .\32xl\:group-hover\:text-opacity-70 { - --tw-text-opacity: 0.7; - } - - .group:hover .\32xl\:group-hover\:text-opacity-75 { - --tw-text-opacity: 0.75; - } - - .group:hover .\32xl\:group-hover\:text-opacity-80 { - --tw-text-opacity: 0.8; - } - - .group:hover .\32xl\:group-hover\:text-opacity-90 { - --tw-text-opacity: 0.9; - } - - .group:hover .\32xl\:group-hover\:text-opacity-95 { - --tw-text-opacity: 0.95; - } - - .group:hover .\32xl\:group-hover\:text-opacity-100 { - --tw-text-opacity: 1; - } - - .\32xl\:focus-within\:text-opacity-0:focus-within { - --tw-text-opacity: 0; - } - - .\32xl\:focus-within\:text-opacity-5:focus-within { - --tw-text-opacity: 0.05; - } - - .\32xl\:focus-within\:text-opacity-10:focus-within { - --tw-text-opacity: 0.1; - } - - .\32xl\:focus-within\:text-opacity-20:focus-within { - --tw-text-opacity: 0.2; - } - - .\32xl\:focus-within\:text-opacity-25:focus-within { - --tw-text-opacity: 0.25; - } - - .\32xl\:focus-within\:text-opacity-30:focus-within { - --tw-text-opacity: 0.3; - } - - .\32xl\:focus-within\:text-opacity-40:focus-within { - --tw-text-opacity: 0.4; - } - - .\32xl\:focus-within\:text-opacity-50:focus-within { - --tw-text-opacity: 0.5; - } - - .\32xl\:focus-within\:text-opacity-60:focus-within { - --tw-text-opacity: 0.6; - } - - .\32xl\:focus-within\:text-opacity-70:focus-within { - --tw-text-opacity: 0.7; - } - - .\32xl\:focus-within\:text-opacity-75:focus-within { - --tw-text-opacity: 0.75; - } - - .\32xl\:focus-within\:text-opacity-80:focus-within { - --tw-text-opacity: 0.8; - } - - .\32xl\:focus-within\:text-opacity-90:focus-within { - --tw-text-opacity: 0.9; - } - - .\32xl\:focus-within\:text-opacity-95:focus-within { - --tw-text-opacity: 0.95; - } - - .\32xl\:focus-within\:text-opacity-100:focus-within { - --tw-text-opacity: 1; - } - - .\32xl\:hover\:text-opacity-0:hover { - --tw-text-opacity: 0; - } - - .\32xl\:hover\:text-opacity-5:hover { - --tw-text-opacity: 0.05; - } - - .\32xl\:hover\:text-opacity-10:hover { - --tw-text-opacity: 0.1; - } - - .\32xl\:hover\:text-opacity-20:hover { - --tw-text-opacity: 0.2; - } - - .\32xl\:hover\:text-opacity-25:hover { - --tw-text-opacity: 0.25; - } - - .\32xl\:hover\:text-opacity-30:hover { - --tw-text-opacity: 0.3; - } - - .\32xl\:hover\:text-opacity-40:hover { - --tw-text-opacity: 0.4; - } - - .\32xl\:hover\:text-opacity-50:hover { - --tw-text-opacity: 0.5; - } - - .\32xl\:hover\:text-opacity-60:hover { - --tw-text-opacity: 0.6; - } - - .\32xl\:hover\:text-opacity-70:hover { - --tw-text-opacity: 0.7; - } - - .\32xl\:hover\:text-opacity-75:hover { - --tw-text-opacity: 0.75; - } - - .\32xl\:hover\:text-opacity-80:hover { - --tw-text-opacity: 0.8; - } - - .\32xl\:hover\:text-opacity-90:hover { - --tw-text-opacity: 0.9; - } - - .\32xl\:hover\:text-opacity-95:hover { - --tw-text-opacity: 0.95; - } - - .\32xl\:hover\:text-opacity-100:hover { - --tw-text-opacity: 1; - } - - .\32xl\:focus\:text-opacity-0:focus { - --tw-text-opacity: 0; - } - - .\32xl\:focus\:text-opacity-5:focus { - --tw-text-opacity: 0.05; - } - - .\32xl\:focus\:text-opacity-10:focus { - --tw-text-opacity: 0.1; - } - - .\32xl\:focus\:text-opacity-20:focus { - --tw-text-opacity: 0.2; - } - - .\32xl\:focus\:text-opacity-25:focus { - --tw-text-opacity: 0.25; - } - - .\32xl\:focus\:text-opacity-30:focus { - --tw-text-opacity: 0.3; - } - - .\32xl\:focus\:text-opacity-40:focus { - --tw-text-opacity: 0.4; - } - - .\32xl\:focus\:text-opacity-50:focus { - --tw-text-opacity: 0.5; - } - - .\32xl\:focus\:text-opacity-60:focus { - --tw-text-opacity: 0.6; - } - - .\32xl\:focus\:text-opacity-70:focus { - --tw-text-opacity: 0.7; - } - - .\32xl\:focus\:text-opacity-75:focus { - --tw-text-opacity: 0.75; - } - - .\32xl\:focus\:text-opacity-80:focus { - --tw-text-opacity: 0.8; - } - - .\32xl\:focus\:text-opacity-90:focus { - --tw-text-opacity: 0.9; - } - - .\32xl\:focus\:text-opacity-95:focus { - --tw-text-opacity: 0.95; - } - - .\32xl\:focus\:text-opacity-100:focus { - --tw-text-opacity: 1; - } - - .\32xl\:truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - .\32xl\:overflow-ellipsis { - text-overflow: ellipsis; - } - - .\32xl\:overflow-clip { - text-overflow: clip; - } - - .\32xl\:italic { - font-style: italic; - } - - .\32xl\:not-italic { - font-style: normal; - } - - .\32xl\:uppercase { - text-transform: uppercase; - } - - .\32xl\:lowercase { - text-transform: lowercase; - } - - .\32xl\:capitalize { - text-transform: capitalize; - } - - .\32xl\:normal-case { - text-transform: none; - } - - .\32xl\:underline { - text-decoration: underline; - } - - .\32xl\:line-through { - text-decoration: line-through; - } - - .\32xl\:no-underline { - text-decoration: none; - } - - .group:hover .\32xl\:group-hover\:underline { - text-decoration: underline; - } - - .group:hover .\32xl\:group-hover\:line-through { - text-decoration: line-through; - } - - .group:hover .\32xl\:group-hover\:no-underline { - text-decoration: none; - } - - .\32xl\:focus-within\:underline:focus-within { - text-decoration: underline; - } - - .\32xl\:focus-within\:line-through:focus-within { - text-decoration: line-through; - } - - .\32xl\:focus-within\:no-underline:focus-within { - text-decoration: none; - } - - .\32xl\:hover\:underline:hover { - text-decoration: underline; - } - - .\32xl\:hover\:line-through:hover { - text-decoration: line-through; - } - - .\32xl\:hover\:no-underline:hover { - text-decoration: none; - } - - .\32xl\:focus\:underline:focus { - text-decoration: underline; - } - - .\32xl\:focus\:line-through:focus { - text-decoration: line-through; - } - - .\32xl\:focus\:no-underline:focus { - text-decoration: none; - } - - .\32xl\:antialiased { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - } - - .\32xl\:subpixel-antialiased { - -webkit-font-smoothing: auto; - -moz-osx-font-smoothing: auto; - } - - .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions { - --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); - --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); - --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); - font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); - } - - .\32xl\:normal-nums { - font-variant-numeric: normal; - } - - .\32xl\:ordinal { - --tw-ordinal: ordinal; - } - - .\32xl\:slashed-zero { - --tw-slashed-zero: slashed-zero; - } - - .\32xl\:lining-nums { - --tw-numeric-figure: lining-nums; - } - - .\32xl\:oldstyle-nums { - --tw-numeric-figure: oldstyle-nums; - } - - .\32xl\:proportional-nums { - --tw-numeric-spacing: proportional-nums; - } - - .\32xl\:tabular-nums { - --tw-numeric-spacing: tabular-nums; - } - - .\32xl\:diagonal-fractions { - --tw-numeric-fraction: diagonal-fractions; - } - - .\32xl\:stacked-fractions { - --tw-numeric-fraction: stacked-fractions; - } - - .\32xl\:tracking-tighter { - letter-spacing: -0.05em; - } - - .\32xl\:tracking-tight { - letter-spacing: -0.025em; - } - - .\32xl\:tracking-normal { - letter-spacing: 0em; - } - - .\32xl\:tracking-wide { - letter-spacing: 0.025em; - } - - .\32xl\:tracking-wider { - letter-spacing: 0.05em; - } - - .\32xl\:tracking-widest { - letter-spacing: 0.1em; - } - - .\32xl\:select-none { - user-select: none; - } - - .\32xl\:select-text { - user-select: text; - } - - .\32xl\:select-all { - user-select: all; - } - - .\32xl\:select-auto { - user-select: auto; + --tw-text-opacity: 1; + color: rgba(239, 68, 68, var(--tw-text-opacity)); } - .\32xl\:align-baseline { - vertical-align: baseline; + .\32xl\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(220, 38, 38, var(--tw-text-opacity)); } - .\32xl\:align-top { - vertical-align: top; + .\32xl\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(185, 28, 28, var(--tw-text-opacity)); } - .\32xl\:align-middle { - vertical-align: middle; + .\32xl\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(153, 27, 27, var(--tw-text-opacity)); } - .\32xl\:align-bottom { - vertical-align: bottom; + .\32xl\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(127, 29, 29, var(--tw-text-opacity)); } - .\32xl\:align-text-top { - vertical-align: text-top; + .\32xl\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 251, 235, var(--tw-text-opacity)); } - .\32xl\:align-text-bottom { - vertical-align: text-bottom; + .\32xl\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 243, 199, var(--tw-text-opacity)); } - .\32xl\:visible { - visibility: visible; + .\32xl\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 230, 138, var(--tw-text-opacity)); } - .\32xl\:invisible { - visibility: hidden; + .\32xl\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(252, 211, 77, var(--tw-text-opacity)); } - .\32xl\:whitespace-normal { - white-space: normal; + .\32xl\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(251, 191, 36, var(--tw-text-opacity)); } - .\32xl\:whitespace-nowrap { - white-space: nowrap; + .\32xl\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); } - .\32xl\:whitespace-pre { - white-space: pre; + .\32xl\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(217, 119, 6, var(--tw-text-opacity)); } - .\32xl\:whitespace-pre-line { - white-space: pre-line; + .\32xl\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(180, 83, 9, var(--tw-text-opacity)); } - .\32xl\:whitespace-pre-wrap { - white-space: pre-wrap; + .\32xl\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(146, 64, 14, var(--tw-text-opacity)); } - .\32xl\:break-normal { - overflow-wrap: normal; - word-break: normal; + .\32xl\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 53, 15, var(--tw-text-opacity)); } - .\32xl\:break-words { - overflow-wrap: break-word; + .\32xl\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(236, 253, 245, var(--tw-text-opacity)); } - .\32xl\:break-all { - word-break: break-all; + .\32xl\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(209, 250, 229, var(--tw-text-opacity)); } - .\32xl\:w-0 { - width: 0px; + .\32xl\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(167, 243, 208, var(--tw-text-opacity)); } - .\32xl\:w-1 { - width: 0.25rem; + .\32xl\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(110, 231, 183, var(--tw-text-opacity)); } - .\32xl\:w-2 { - width: 0.5rem; + .\32xl\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(52, 211, 153, var(--tw-text-opacity)); } - .\32xl\:w-3 { - width: 0.75rem; + .\32xl\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(16, 185, 129, var(--tw-text-opacity)); } - .\32xl\:w-4 { - width: 1rem; + .\32xl\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(5, 150, 105, var(--tw-text-opacity)); } - .\32xl\:w-5 { - width: 1.25rem; + .\32xl\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(4, 120, 87, var(--tw-text-opacity)); } - .\32xl\:w-6 { - width: 1.5rem; + .\32xl\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(6, 95, 70, var(--tw-text-opacity)); } - .\32xl\:w-7 { - width: 1.75rem; + .\32xl\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(6, 78, 59, var(--tw-text-opacity)); } - .\32xl\:w-8 { - width: 2rem; + .\32xl\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(239, 246, 255, var(--tw-text-opacity)); } - .\32xl\:w-9 { - width: 2.25rem; + .\32xl\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(219, 234, 254, var(--tw-text-opacity)); } - .\32xl\:w-10 { - width: 2.5rem; + .\32xl\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(191, 219, 254, var(--tw-text-opacity)); } - .\32xl\:w-11 { - width: 2.75rem; + .\32xl\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(147, 197, 253, var(--tw-text-opacity)); } - .\32xl\:w-12 { - width: 3rem; + .\32xl\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(96, 165, 250, var(--tw-text-opacity)); } - .\32xl\:w-14 { - width: 3.5rem; + .\32xl\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); } - .\32xl\:w-16 { - width: 4rem; + .\32xl\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(37, 99, 235, var(--tw-text-opacity)); } - .\32xl\:w-20 { - width: 5rem; + .\32xl\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(29, 78, 216, var(--tw-text-opacity)); } - .\32xl\:w-24 { - width: 6rem; + .\32xl\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(30, 64, 175, var(--tw-text-opacity)); } - .\32xl\:w-28 { - width: 7rem; + .\32xl\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(30, 58, 138, var(--tw-text-opacity)); } - .\32xl\:w-32 { - width: 8rem; + .\32xl\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(238, 242, 255, var(--tw-text-opacity)); } - .\32xl\:w-36 { - width: 9rem; + .\32xl\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(224, 231, 255, var(--tw-text-opacity)); } - .\32xl\:w-40 { - width: 10rem; + .\32xl\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(199, 210, 254, var(--tw-text-opacity)); } - .\32xl\:w-44 { - width: 11rem; + .\32xl\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(165, 180, 252, var(--tw-text-opacity)); } - .\32xl\:w-48 { - width: 12rem; + .\32xl\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(129, 140, 248, var(--tw-text-opacity)); } - .\32xl\:w-52 { - width: 13rem; + .\32xl\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(99, 102, 241, var(--tw-text-opacity)); } - .\32xl\:w-56 { - width: 14rem; + .\32xl\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(79, 70, 229, var(--tw-text-opacity)); } - .\32xl\:w-60 { - width: 15rem; + .\32xl\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(67, 56, 202, var(--tw-text-opacity)); } - .\32xl\:w-64 { - width: 16rem; + .\32xl\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(55, 48, 163, var(--tw-text-opacity)); } - .\32xl\:w-72 { - width: 18rem; + .\32xl\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(49, 46, 129, var(--tw-text-opacity)); } - .\32xl\:w-80 { - width: 20rem; + .\32xl\:focus\:text-purple-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 243, 255, var(--tw-text-opacity)); } - .\32xl\:w-96 { - width: 24rem; + .\32xl\:focus\:text-purple-100:focus { + --tw-text-opacity: 1; + color: rgba(237, 233, 254, var(--tw-text-opacity)); } - .\32xl\:w-auto { - width: auto; + .\32xl\:focus\:text-purple-200:focus { + --tw-text-opacity: 1; + color: rgba(221, 214, 254, var(--tw-text-opacity)); } - .\32xl\:w-px { - width: 1px; + .\32xl\:focus\:text-purple-300:focus { + --tw-text-opacity: 1; + color: rgba(196, 181, 253, var(--tw-text-opacity)); } - .\32xl\:w-0\.5 { - width: 0.125rem; + .\32xl\:focus\:text-purple-400:focus { + --tw-text-opacity: 1; + color: rgba(167, 139, 250, var(--tw-text-opacity)); } - .\32xl\:w-1\.5 { - width: 0.375rem; + .\32xl\:focus\:text-purple-500:focus { + --tw-text-opacity: 1; + color: rgba(139, 92, 246, var(--tw-text-opacity)); } - .\32xl\:w-2\.5 { - width: 0.625rem; + .\32xl\:focus\:text-purple-600:focus { + --tw-text-opacity: 1; + color: rgba(124, 58, 237, var(--tw-text-opacity)); } - .\32xl\:w-3\.5 { - width: 0.875rem; + .\32xl\:focus\:text-purple-700:focus { + --tw-text-opacity: 1; + color: rgba(109, 40, 217, var(--tw-text-opacity)); } - .\32xl\:w-1\/2 { - width: 50%; + .\32xl\:focus\:text-purple-800:focus { + --tw-text-opacity: 1; + color: rgba(91, 33, 182, var(--tw-text-opacity)); } - .\32xl\:w-1\/3 { - width: 33.333333%; + .\32xl\:focus\:text-purple-900:focus { + --tw-text-opacity: 1; + color: rgba(76, 29, 149, var(--tw-text-opacity)); } - .\32xl\:w-2\/3 { - width: 66.666667%; + .\32xl\:focus\:text-pink-50:focus { + --tw-text-opacity: 1; + color: rgba(253, 242, 248, var(--tw-text-opacity)); } - .\32xl\:w-1\/4 { - width: 25%; + .\32xl\:focus\:text-pink-100:focus { + --tw-text-opacity: 1; + color: rgba(252, 231, 243, var(--tw-text-opacity)); } - .\32xl\:w-2\/4 { - width: 50%; + .\32xl\:focus\:text-pink-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 207, 232, var(--tw-text-opacity)); } - .\32xl\:w-3\/4 { - width: 75%; + .\32xl\:focus\:text-pink-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 168, 212, var(--tw-text-opacity)); } - .\32xl\:w-1\/5 { - width: 20%; + .\32xl\:focus\:text-pink-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 114, 182, var(--tw-text-opacity)); } - .\32xl\:w-2\/5 { - width: 40%; + .\32xl\:focus\:text-pink-500:focus { + --tw-text-opacity: 1; + color: rgba(236, 72, 153, var(--tw-text-opacity)); } - .\32xl\:w-3\/5 { - width: 60%; + .\32xl\:focus\:text-pink-600:focus { + --tw-text-opacity: 1; + color: rgba(219, 39, 119, var(--tw-text-opacity)); } - .\32xl\:w-4\/5 { - width: 80%; + .\32xl\:focus\:text-pink-700:focus { + --tw-text-opacity: 1; + color: rgba(190, 24, 93, var(--tw-text-opacity)); } - .\32xl\:w-1\/6 { - width: 16.666667%; + .\32xl\:focus\:text-pink-800:focus { + --tw-text-opacity: 1; + color: rgba(157, 23, 77, var(--tw-text-opacity)); } - .\32xl\:w-2\/6 { - width: 33.333333%; + .\32xl\:focus\:text-pink-900:focus { + --tw-text-opacity: 1; + color: rgba(131, 24, 67, var(--tw-text-opacity)); } - .\32xl\:w-3\/6 { - width: 50%; + .\32xl\:text-opacity-0 { + --tw-text-opacity: 0; } - .\32xl\:w-4\/6 { - width: 66.666667%; + .\32xl\:text-opacity-5 { + --tw-text-opacity: 0.05; } - .\32xl\:w-5\/6 { - width: 83.333333%; + .\32xl\:text-opacity-10 { + --tw-text-opacity: 0.1; } - .\32xl\:w-1\/12 { - width: 8.333333%; + .\32xl\:text-opacity-20 { + --tw-text-opacity: 0.2; } - .\32xl\:w-2\/12 { - width: 16.666667%; + .\32xl\:text-opacity-25 { + --tw-text-opacity: 0.25; } - .\32xl\:w-3\/12 { - width: 25%; + .\32xl\:text-opacity-30 { + --tw-text-opacity: 0.3; } - .\32xl\:w-4\/12 { - width: 33.333333%; + .\32xl\:text-opacity-40 { + --tw-text-opacity: 0.4; } - .\32xl\:w-5\/12 { - width: 41.666667%; + .\32xl\:text-opacity-50 { + --tw-text-opacity: 0.5; } - .\32xl\:w-6\/12 { - width: 50%; + .\32xl\:text-opacity-60 { + --tw-text-opacity: 0.6; } - .\32xl\:w-7\/12 { - width: 58.333333%; + .\32xl\:text-opacity-70 { + --tw-text-opacity: 0.7; } - .\32xl\:w-8\/12 { - width: 66.666667%; + .\32xl\:text-opacity-75 { + --tw-text-opacity: 0.75; } - .\32xl\:w-9\/12 { - width: 75%; + .\32xl\:text-opacity-80 { + --tw-text-opacity: 0.8; } - .\32xl\:w-10\/12 { - width: 83.333333%; + .\32xl\:text-opacity-90 { + --tw-text-opacity: 0.9; } - .\32xl\:w-11\/12 { - width: 91.666667%; + .\32xl\:text-opacity-95 { + --tw-text-opacity: 0.95; } - .\32xl\:w-full { - width: 100%; + .\32xl\:text-opacity-100 { + --tw-text-opacity: 1; } - .\32xl\:w-screen { - width: 100vw; + .group:hover .\32xl\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; } - .\32xl\:w-min { - width: min-content; + .group:hover .\32xl\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; } - .\32xl\:w-max { - width: max-content; + .group:hover .\32xl\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; } - .\32xl\:z-0 { - z-index: 0; + .group:hover .\32xl\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; } - .\32xl\:z-10 { - z-index: 10; + .group:hover .\32xl\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; } - .\32xl\:z-20 { - z-index: 20; + .group:hover .\32xl\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; } - .\32xl\:z-30 { - z-index: 30; + .group:hover .\32xl\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; } - .\32xl\:z-40 { - z-index: 40; + .group:hover .\32xl\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; } - .\32xl\:z-50 { - z-index: 50; + .group:hover .\32xl\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; } - .\32xl\:z-auto { - z-index: auto; + .group:hover .\32xl\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; } - .\32xl\:focus-within\:z-0:focus-within { - z-index: 0; + .group:hover .\32xl\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; } - .\32xl\:focus-within\:z-10:focus-within { - z-index: 10; + .group:hover .\32xl\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; } - .\32xl\:focus-within\:z-20:focus-within { - z-index: 20; + .group:hover .\32xl\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; } - .\32xl\:focus-within\:z-30:focus-within { - z-index: 30; + .group:hover .\32xl\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; } - .\32xl\:focus-within\:z-40:focus-within { - z-index: 40; + .group:hover .\32xl\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; } - .\32xl\:focus-within\:z-50:focus-within { - z-index: 50; + .\32xl\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; } - .\32xl\:focus-within\:z-auto:focus-within { - z-index: auto; + .\32xl\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; } - .\32xl\:focus\:z-0:focus { - z-index: 0; + .\32xl\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; } - .\32xl\:focus\:z-10:focus { - z-index: 10; + .\32xl\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; } - .\32xl\:focus\:z-20:focus { - z-index: 20; + .\32xl\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; } - .\32xl\:focus\:z-30:focus { - z-index: 30; + .\32xl\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; } - .\32xl\:focus\:z-40:focus { - z-index: 40; + .\32xl\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; } - .\32xl\:focus\:z-50:focus { - z-index: 50; + .\32xl\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; } - .\32xl\:focus\:z-auto:focus { - z-index: auto; + .\32xl\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; } - .\32xl\:isolate { - isolation: isolate; + .\32xl\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; } - .\32xl\:isolation-auto { - isolation: auto; + .\32xl\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; } - .\32xl\:gap-0 { - gap: 0px; + .\32xl\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; } - .\32xl\:gap-1 { - gap: 0.25rem; + .\32xl\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; } - .\32xl\:gap-2 { - gap: 0.5rem; + .\32xl\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; } - .\32xl\:gap-3 { - gap: 0.75rem; + .\32xl\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; } - .\32xl\:gap-4 { - gap: 1rem; + .\32xl\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; } - .\32xl\:gap-5 { - gap: 1.25rem; + .\32xl\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; } - .\32xl\:gap-6 { - gap: 1.5rem; + .\32xl\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; } - .\32xl\:gap-7 { - gap: 1.75rem; + .\32xl\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; } - .\32xl\:gap-8 { - gap: 2rem; + .\32xl\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; } - .\32xl\:gap-9 { - gap: 2.25rem; + .\32xl\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; } - .\32xl\:gap-10 { - gap: 2.5rem; + .\32xl\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; } - .\32xl\:gap-11 { - gap: 2.75rem; + .\32xl\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; } - .\32xl\:gap-12 { - gap: 3rem; + .\32xl\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; } - .\32xl\:gap-14 { - gap: 3.5rem; + .\32xl\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; } - .\32xl\:gap-16 { - gap: 4rem; + .\32xl\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; } - .\32xl\:gap-20 { - gap: 5rem; + .\32xl\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; } - .\32xl\:gap-24 { - gap: 6rem; + .\32xl\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; } - .\32xl\:gap-28 { - gap: 7rem; + .\32xl\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; } - .\32xl\:gap-32 { - gap: 8rem; + .\32xl\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; } - .\32xl\:gap-36 { - gap: 9rem; + .\32xl\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; } - .\32xl\:gap-40 { - gap: 10rem; + .\32xl\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; } - .\32xl\:gap-44 { - gap: 11rem; + .\32xl\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; } - .\32xl\:gap-48 { - gap: 12rem; + .\32xl\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; } - .\32xl\:gap-52 { - gap: 13rem; + .\32xl\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; } - .\32xl\:gap-56 { - gap: 14rem; + .\32xl\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; } - .\32xl\:gap-60 { - gap: 15rem; + .\32xl\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; } - .\32xl\:gap-64 { - gap: 16rem; + .\32xl\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; } - .\32xl\:gap-72 { - gap: 18rem; + .\32xl\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; } - .\32xl\:gap-80 { - gap: 20rem; + .\32xl\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; } - .\32xl\:gap-96 { - gap: 24rem; + .\32xl\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; } - .\32xl\:gap-px { - gap: 1px; + .\32xl\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; } - .\32xl\:gap-0\.5 { - gap: 0.125rem; + .\32xl\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; } - .\32xl\:gap-1\.5 { - gap: 0.375rem; + .\32xl\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; } - .\32xl\:gap-2\.5 { - gap: 0.625rem; + .\32xl\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; } - .\32xl\:gap-3\.5 { - gap: 0.875rem; + .\32xl\:underline { + text-decoration: underline; } - .\32xl\:gap-x-0 { - column-gap: 0px; + .\32xl\:line-through { + text-decoration: line-through; } - .\32xl\:gap-x-1 { - column-gap: 0.25rem; + .\32xl\:no-underline { + text-decoration: none; } - .\32xl\:gap-x-2 { - column-gap: 0.5rem; + .group:hover .\32xl\:group-hover\:underline { + text-decoration: underline; } - .\32xl\:gap-x-3 { - column-gap: 0.75rem; + .group:hover .\32xl\:group-hover\:line-through { + text-decoration: line-through; } - .\32xl\:gap-x-4 { - column-gap: 1rem; + .group:hover .\32xl\:group-hover\:no-underline { + text-decoration: none; } - .\32xl\:gap-x-5 { - column-gap: 1.25rem; + .\32xl\:focus-within\:underline:focus-within { + text-decoration: underline; } - .\32xl\:gap-x-6 { - column-gap: 1.5rem; + .\32xl\:focus-within\:line-through:focus-within { + text-decoration: line-through; } - .\32xl\:gap-x-7 { - column-gap: 1.75rem; + .\32xl\:focus-within\:no-underline:focus-within { + text-decoration: none; } - .\32xl\:gap-x-8 { - column-gap: 2rem; + .\32xl\:hover\:underline:hover { + text-decoration: underline; } - .\32xl\:gap-x-9 { - column-gap: 2.25rem; + .\32xl\:hover\:line-through:hover { + text-decoration: line-through; } - .\32xl\:gap-x-10 { - column-gap: 2.5rem; + .\32xl\:hover\:no-underline:hover { + text-decoration: none; } - .\32xl\:gap-x-11 { - column-gap: 2.75rem; + .\32xl\:focus\:underline:focus { + text-decoration: underline; } - .\32xl\:gap-x-12 { - column-gap: 3rem; + .\32xl\:focus\:line-through:focus { + text-decoration: line-through; } - .\32xl\:gap-x-14 { - column-gap: 3.5rem; + .\32xl\:focus\:no-underline:focus { + text-decoration: none; } - .\32xl\:gap-x-16 { - column-gap: 4rem; + .\32xl\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } - .\32xl\:gap-x-20 { - column-gap: 5rem; + .\32xl\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; } - .\32xl\:gap-x-24 { - column-gap: 6rem; + .\32xl\:placeholder-transparent::placeholder { + color: transparent; } - .\32xl\:gap-x-28 { - column-gap: 7rem; + .\32xl\:placeholder-current::placeholder { + color: currentColor; } - .\32xl\:gap-x-32 { - column-gap: 8rem; + .\32xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-36 { - column-gap: 9rem; + .\32xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-40 { - column-gap: 10rem; + .\32xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-44 { - column-gap: 11rem; + .\32xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-48 { - column-gap: 12rem; + .\32xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-52 { - column-gap: 13rem; + .\32xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-56 { - column-gap: 14rem; + .\32xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-60 { - column-gap: 15rem; + .\32xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-64 { - column-gap: 16rem; + .\32xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-72 { - column-gap: 18rem; + .\32xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-80 { - column-gap: 20rem; + .\32xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-96 { - column-gap: 24rem; + .\32xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-px { - column-gap: 1px; + .\32xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-0\.5 { - column-gap: 0.125rem; + .\32xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-1\.5 { - column-gap: 0.375rem; + .\32xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-2\.5 { - column-gap: 0.625rem; + .\32xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .\32xl\:gap-x-3\.5 { - column-gap: 0.875rem; + .\32xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-0 { - row-gap: 0px; + .\32xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-1 { - row-gap: 0.25rem; + .\32xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-2 { - row-gap: 0.5rem; + .\32xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-3 { - row-gap: 0.75rem; + .\32xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-4 { - row-gap: 1rem; + .\32xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-5 { - row-gap: 1.25rem; + .\32xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-6 { - row-gap: 1.5rem; + .\32xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-7 { - row-gap: 1.75rem; + .\32xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-8 { - row-gap: 2rem; + .\32xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-9 { - row-gap: 2.25rem; + .\32xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-10 { - row-gap: 2.5rem; + .\32xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-11 { - row-gap: 2.75rem; + .\32xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-12 { - row-gap: 3rem; + .\32xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-14 { - row-gap: 3.5rem; + .\32xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-16 { - row-gap: 4rem; + .\32xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-20 { - row-gap: 5rem; + .\32xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-24 { - row-gap: 6rem; + .\32xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-28 { - row-gap: 7rem; + .\32xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-32 { - row-gap: 8rem; + .\32xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-36 { - row-gap: 9rem; + .\32xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-40 { - row-gap: 10rem; + .\32xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-44 { - row-gap: 11rem; + .\32xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-48 { - row-gap: 12rem; + .\32xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-52 { - row-gap: 13rem; + .\32xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-56 { - row-gap: 14rem; + .\32xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-60 { - row-gap: 15rem; + .\32xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-64 { - row-gap: 16rem; + .\32xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-72 { - row-gap: 18rem; + .\32xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-80 { - row-gap: 20rem; + .\32xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-96 { - row-gap: 24rem; + .\32xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-px { - row-gap: 1px; + .\32xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-0\.5 { - row-gap: 0.125rem; + .\32xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-1\.5 { - row-gap: 0.375rem; + .\32xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-2\.5 { - row-gap: 0.625rem; + .\32xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .\32xl\:gap-y-3\.5 { - row-gap: 0.875rem; + .\32xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .\32xl\:grid-flow-row { - grid-auto-flow: row; + .\32xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .\32xl\:grid-flow-col { - grid-auto-flow: column; + .\32xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .\32xl\:grid-flow-row-dense { - grid-auto-flow: row dense; + .\32xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .\32xl\:grid-flow-col-dense { - grid-auto-flow: column dense; + .\32xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-1 { - grid-template-columns: repeat(1, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-2 { - grid-template-columns: repeat(2, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-3 { - grid-template-columns: repeat(3, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-4 { - grid-template-columns: repeat(4, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-5 { - grid-template-columns: repeat(5, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-6 { - grid-template-columns: repeat(6, minmax(0, 1fr)); + .\32xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-7 { - grid-template-columns: repeat(7, minmax(0, 1fr)); + .\32xl\:placeholder-purple-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-8 { - grid-template-columns: repeat(8, minmax(0, 1fr)); + .\32xl\:placeholder-purple-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-9 { - grid-template-columns: repeat(9, minmax(0, 1fr)); + .\32xl\:placeholder-purple-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-10 { - grid-template-columns: repeat(10, minmax(0, 1fr)); + .\32xl\:placeholder-purple-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-11 { - grid-template-columns: repeat(11, minmax(0, 1fr)); + .\32xl\:placeholder-purple-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-12 { - grid-template-columns: repeat(12, minmax(0, 1fr)); + .\32xl\:placeholder-purple-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .\32xl\:grid-cols-none { - grid-template-columns: none; + .\32xl\:placeholder-purple-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .\32xl\:auto-cols-auto { - grid-auto-columns: auto; + .\32xl\:placeholder-purple-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .\32xl\:auto-cols-min { - grid-auto-columns: min-content; + .\32xl\:placeholder-purple-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .\32xl\:auto-cols-max { - grid-auto-columns: max-content; + .\32xl\:placeholder-purple-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .\32xl\:auto-cols-fr { - grid-auto-columns: minmax(0, 1fr); + .\32xl\:placeholder-pink-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .\32xl\:col-auto { - grid-column: auto; + .\32xl\:placeholder-pink-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-1 { - grid-column: span 1 / span 1; + .\32xl\:placeholder-pink-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-2 { - grid-column: span 2 / span 2; + .\32xl\:placeholder-pink-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-3 { - grid-column: span 3 / span 3; + .\32xl\:placeholder-pink-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-4 { - grid-column: span 4 / span 4; + .\32xl\:placeholder-pink-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-5 { - grid-column: span 5 / span 5; + .\32xl\:placeholder-pink-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-6 { - grid-column: span 6 / span 6; + .\32xl\:placeholder-pink-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-7 { - grid-column: span 7 / span 7; + .\32xl\:placeholder-pink-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-8 { - grid-column: span 8 / span 8; + .\32xl\:placeholder-pink-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-9 { - grid-column: span 9 / span 9; + .\32xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; } - .\32xl\:col-span-10 { - grid-column: span 10 / span 10; + .\32xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor; } - .\32xl\:col-span-11 { - grid-column: span 11 / span 11; + .\32xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-12 { - grid-column: span 12 / span 12; + .\32xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); } - .\32xl\:col-span-full { - grid-column: 1 / -1; + .\32xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-1 { - grid-column-start: 1; + .\32xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-2 { - grid-column-start: 2; + .\32xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-3 { - grid-column-start: 3; + .\32xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-4 { - grid-column-start: 4; + .\32xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-5 { - grid-column-start: 5; + .\32xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-6 { - grid-column-start: 6; + .\32xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-7 { - grid-column-start: 7; + .\32xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-8 { - grid-column-start: 8; + .\32xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-9 { - grid-column-start: 9; + .\32xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-10 { - grid-column-start: 10; + .\32xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 242, 242, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-11 { - grid-column-start: 11; + .\32xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 226, 226, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-12 { - grid-column-start: 12; + .\32xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 202, 202, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-13 { - grid-column-start: 13; + .\32xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 165, 165, var(--tw-placeholder-opacity)); } - .\32xl\:col-start-auto { - grid-column-start: auto; + .\32xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 113, 113, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-1 { - grid-column-end: 1; + .\32xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 68, 68, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-2 { - grid-column-end: 2; + .\32xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 38, 38, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-3 { - grid-column-end: 3; + .\32xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(185, 28, 28, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-4 { - grid-column-end: 4; + .\32xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(153, 27, 27, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-5 { - grid-column-end: 5; + .\32xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(127, 29, 29, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-6 { - grid-column-end: 6; + .\32xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 251, 235, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-7 { - grid-column-end: 7; + .\32xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 243, 199, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-8 { - grid-column-end: 8; + .\32xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 230, 138, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-9 { - grid-column-end: 9; + .\32xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 211, 77, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-10 { - grid-column-end: 10; + .\32xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 191, 36, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-11 { - grid-column-end: 11; + .\32xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-12 { - grid-column-end: 12; + .\32xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(217, 119, 6, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-13 { - grid-column-end: 13; + .\32xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(180, 83, 9, var(--tw-placeholder-opacity)); } - .\32xl\:col-end-auto { - grid-column-end: auto; + .\32xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(146, 64, 14, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-1 { - grid-template-rows: repeat(1, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 53, 15, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 253, 245, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-3 { - grid-template-rows: repeat(3, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 250, 229, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-4 { - grid-template-rows: repeat(4, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 243, 208, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-5 { - grid-template-rows: repeat(5, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(110, 231, 183, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-6 { - grid-template-rows: repeat(6, minmax(0, 1fr)); + .\32xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 211, 153, var(--tw-placeholder-opacity)); } - .\32xl\:grid-rows-none { - grid-template-rows: none; + .\32xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(16, 185, 129, var(--tw-placeholder-opacity)); } - .\32xl\:auto-rows-auto { - grid-auto-rows: auto; + .\32xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(5, 150, 105, var(--tw-placeholder-opacity)); } - .\32xl\:auto-rows-min { - grid-auto-rows: min-content; + .\32xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(4, 120, 87, var(--tw-placeholder-opacity)); } - .\32xl\:auto-rows-max { - grid-auto-rows: max-content; + .\32xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 95, 70, var(--tw-placeholder-opacity)); } - .\32xl\:auto-rows-fr { - grid-auto-rows: minmax(0, 1fr); + .\32xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(6, 78, 59, var(--tw-placeholder-opacity)); } - .\32xl\:row-auto { - grid-row: auto; + .\32xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 246, 255, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-1 { - grid-row: span 1 / span 1; + .\32xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 234, 254, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-2 { - grid-row: span 2 / span 2; + .\32xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(191, 219, 254, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-3 { - grid-row: span 3 / span 3; + .\32xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 197, 253, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-4 { - grid-row: span 4 / span 4; + .\32xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(96, 165, 250, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-5 { - grid-row: span 5 / span 5; + .\32xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-6 { - grid-row: span 6 / span 6; + .\32xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(37, 99, 235, var(--tw-placeholder-opacity)); } - .\32xl\:row-span-full { - grid-row: 1 / -1; + .\32xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 78, 216, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-1 { - grid-row-start: 1; + .\32xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 64, 175, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-2 { - grid-row-start: 2; + .\32xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(30, 58, 138, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-3 { - grid-row-start: 3; + .\32xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 242, 255, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-4 { - grid-row-start: 4; + .\32xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(224, 231, 255, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-5 { - grid-row-start: 5; + .\32xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(199, 210, 254, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-6 { - grid-row-start: 6; + .\32xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(165, 180, 252, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-7 { - grid-row-start: 7; + .\32xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(129, 140, 248, var(--tw-placeholder-opacity)); } - .\32xl\:row-start-auto { - grid-row-start: auto; + .\32xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(99, 102, 241, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-1 { - grid-row-end: 1; + .\32xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 70, 229, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-2 { - grid-row-end: 2; + .\32xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(67, 56, 202, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-3 { - grid-row-end: 3; + .\32xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 48, 163, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-4 { - grid-row-end: 4; + .\32xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(49, 46, 129, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-5 { - grid-row-end: 5; + .\32xl\:focus\:placeholder-purple-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 243, 255, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-6 { - grid-row-end: 6; + .\32xl\:focus\:placeholder-purple-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(237, 233, 254, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-7 { - grid-row-end: 7; + .\32xl\:focus\:placeholder-purple-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 214, 254, var(--tw-placeholder-opacity)); } - .\32xl\:row-end-auto { - grid-row-end: auto; + .\32xl\:focus\:placeholder-purple-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(196, 181, 253, var(--tw-placeholder-opacity)); } - .\32xl\:transform { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .\32xl\:focus\:placeholder-purple-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(167, 139, 250, var(--tw-placeholder-opacity)); } - .\32xl\:transform-gpu { - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + .\32xl\:focus\:placeholder-purple-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(139, 92, 246, var(--tw-placeholder-opacity)); } - .\32xl\:transform-none { - transform: none; + .\32xl\:focus\:placeholder-purple-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(124, 58, 237, var(--tw-placeholder-opacity)); } - .\32xl\:origin-center { - transform-origin: center; + .\32xl\:focus\:placeholder-purple-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(109, 40, 217, var(--tw-placeholder-opacity)); } - .\32xl\:origin-top { - transform-origin: top; + .\32xl\:focus\:placeholder-purple-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(91, 33, 182, var(--tw-placeholder-opacity)); } - .\32xl\:origin-top-right { - transform-origin: top right; + .\32xl\:focus\:placeholder-purple-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(76, 29, 149, var(--tw-placeholder-opacity)); } - .\32xl\:origin-right { - transform-origin: right; + .\32xl\:focus\:placeholder-pink-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 242, 248, var(--tw-placeholder-opacity)); } - .\32xl\:origin-bottom-right { - transform-origin: bottom right; + .\32xl\:focus\:placeholder-pink-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(252, 231, 243, var(--tw-placeholder-opacity)); } - .\32xl\:origin-bottom { - transform-origin: bottom; + .\32xl\:focus\:placeholder-pink-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 207, 232, var(--tw-placeholder-opacity)); } - .\32xl\:origin-bottom-left { - transform-origin: bottom left; + .\32xl\:focus\:placeholder-pink-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 168, 212, var(--tw-placeholder-opacity)); } - .\32xl\:origin-left { - transform-origin: left; + .\32xl\:focus\:placeholder-pink-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 114, 182, var(--tw-placeholder-opacity)); } - .\32xl\:origin-top-left { - transform-origin: top left; + .\32xl\:focus\:placeholder-pink-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(236, 72, 153, var(--tw-placeholder-opacity)); } - .\32xl\:scale-0 { - --tw-scale-x: 0; - --tw-scale-y: 0; + .\32xl\:focus\:placeholder-pink-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(219, 39, 119, var(--tw-placeholder-opacity)); } - .\32xl\:scale-50 { - --tw-scale-x: .5; - --tw-scale-y: .5; + .\32xl\:focus\:placeholder-pink-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(190, 24, 93, var(--tw-placeholder-opacity)); } - .\32xl\:scale-75 { - --tw-scale-x: .75; - --tw-scale-y: .75; + .\32xl\:focus\:placeholder-pink-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(157, 23, 77, var(--tw-placeholder-opacity)); } - .\32xl\:scale-90 { - --tw-scale-x: .9; - --tw-scale-y: .9; + .\32xl\:focus\:placeholder-pink-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(131, 24, 67, var(--tw-placeholder-opacity)); } - .\32xl\:scale-95 { - --tw-scale-x: .95; - --tw-scale-y: .95; + .\32xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; } - .\32xl\:scale-100 { - --tw-scale-x: 1; - --tw-scale-y: 1; + .\32xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; } - .\32xl\:scale-105 { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .\32xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; } - .\32xl\:scale-110 { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .\32xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; } - .\32xl\:scale-125 { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .\32xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; } - .\32xl\:scale-150 { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .\32xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; } - .\32xl\:scale-x-0 { - --tw-scale-x: 0; + .\32xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; } - .\32xl\:scale-x-50 { - --tw-scale-x: .5; + .\32xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; } - .\32xl\:scale-x-75 { - --tw-scale-x: .75; + .\32xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; } - .\32xl\:scale-x-90 { - --tw-scale-x: .9; + .\32xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; } - .\32xl\:scale-x-95 { - --tw-scale-x: .95; + .\32xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; } - .\32xl\:scale-x-100 { - --tw-scale-x: 1; + .\32xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; } - .\32xl\:scale-x-105 { - --tw-scale-x: 1.05; + .\32xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; } - .\32xl\:scale-x-110 { - --tw-scale-x: 1.1; + .\32xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; } - .\32xl\:scale-x-125 { - --tw-scale-x: 1.25; + .\32xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; } - .\32xl\:scale-x-150 { - --tw-scale-x: 1.5; + .\32xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; } - .\32xl\:scale-y-0 { - --tw-scale-y: 0; + .\32xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; } - .\32xl\:scale-y-50 { - --tw-scale-y: .5; + .\32xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; } - .\32xl\:scale-y-75 { - --tw-scale-y: .75; + .\32xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; } - .\32xl\:scale-y-90 { - --tw-scale-y: .9; + .\32xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; } - .\32xl\:scale-y-95 { - --tw-scale-y: .95; + .\32xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; } - .\32xl\:scale-y-100 { - --tw-scale-y: 1; + .\32xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; } - .\32xl\:scale-y-105 { - --tw-scale-y: 1.05; + .\32xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; } - .\32xl\:scale-y-110 { - --tw-scale-y: 1.1; + .\32xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; } - .\32xl\:scale-y-125 { - --tw-scale-y: 1.25; + .\32xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; } - .\32xl\:scale-y-150 { - --tw-scale-y: 1.5; + .\32xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; } - .\32xl\:hover\:scale-0:hover { - --tw-scale-x: 0; - --tw-scale-y: 0; + .\32xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; } - .\32xl\:hover\:scale-50:hover { - --tw-scale-x: .5; - --tw-scale-y: .5; + .\32xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; } - .\32xl\:hover\:scale-75:hover { - --tw-scale-x: .75; - --tw-scale-y: .75; + .\32xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; } - .\32xl\:hover\:scale-90:hover { - --tw-scale-x: .9; - --tw-scale-y: .9; + .\32xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; } - .\32xl\:hover\:scale-95:hover { - --tw-scale-x: .95; - --tw-scale-y: .95; + .\32xl\:opacity-0 { + opacity: 0; } - .\32xl\:hover\:scale-100:hover { - --tw-scale-x: 1; - --tw-scale-y: 1; + .\32xl\:opacity-5 { + opacity: 0.05; } - .\32xl\:hover\:scale-105:hover { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .\32xl\:opacity-10 { + opacity: 0.1; } - .\32xl\:hover\:scale-110:hover { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .\32xl\:opacity-20 { + opacity: 0.2; } - .\32xl\:hover\:scale-125:hover { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .\32xl\:opacity-25 { + opacity: 0.25; } - .\32xl\:hover\:scale-150:hover { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .\32xl\:opacity-30 { + opacity: 0.3; } - .\32xl\:hover\:scale-x-0:hover { - --tw-scale-x: 0; + .\32xl\:opacity-40 { + opacity: 0.4; } - .\32xl\:hover\:scale-x-50:hover { - --tw-scale-x: .5; + .\32xl\:opacity-50 { + opacity: 0.5; } - .\32xl\:hover\:scale-x-75:hover { - --tw-scale-x: .75; + .\32xl\:opacity-60 { + opacity: 0.6; } - .\32xl\:hover\:scale-x-90:hover { - --tw-scale-x: .9; + .\32xl\:opacity-70 { + opacity: 0.7; } - .\32xl\:hover\:scale-x-95:hover { - --tw-scale-x: .95; + .\32xl\:opacity-75 { + opacity: 0.75; } - .\32xl\:hover\:scale-x-100:hover { - --tw-scale-x: 1; + .\32xl\:opacity-80 { + opacity: 0.8; } - .\32xl\:hover\:scale-x-105:hover { - --tw-scale-x: 1.05; + .\32xl\:opacity-90 { + opacity: 0.9; } - .\32xl\:hover\:scale-x-110:hover { - --tw-scale-x: 1.1; + .\32xl\:opacity-95 { + opacity: 0.95; } - .\32xl\:hover\:scale-x-125:hover { - --tw-scale-x: 1.25; + .\32xl\:opacity-100 { + opacity: 1; } - .\32xl\:hover\:scale-x-150:hover { - --tw-scale-x: 1.5; + .group:hover .\32xl\:group-hover\:opacity-0 { + opacity: 0; } - .\32xl\:hover\:scale-y-0:hover { - --tw-scale-y: 0; + .group:hover .\32xl\:group-hover\:opacity-5 { + opacity: 0.05; } - .\32xl\:hover\:scale-y-50:hover { - --tw-scale-y: .5; + .group:hover .\32xl\:group-hover\:opacity-10 { + opacity: 0.1; } - .\32xl\:hover\:scale-y-75:hover { - --tw-scale-y: .75; + .group:hover .\32xl\:group-hover\:opacity-20 { + opacity: 0.2; } - .\32xl\:hover\:scale-y-90:hover { - --tw-scale-y: .9; + .group:hover .\32xl\:group-hover\:opacity-25 { + opacity: 0.25; } - .\32xl\:hover\:scale-y-95:hover { - --tw-scale-y: .95; + .group:hover .\32xl\:group-hover\:opacity-30 { + opacity: 0.3; } - .\32xl\:hover\:scale-y-100:hover { - --tw-scale-y: 1; + .group:hover .\32xl\:group-hover\:opacity-40 { + opacity: 0.4; } - .\32xl\:hover\:scale-y-105:hover { - --tw-scale-y: 1.05; + .group:hover .\32xl\:group-hover\:opacity-50 { + opacity: 0.5; } - .\32xl\:hover\:scale-y-110:hover { - --tw-scale-y: 1.1; + .group:hover .\32xl\:group-hover\:opacity-60 { + opacity: 0.6; } - .\32xl\:hover\:scale-y-125:hover { - --tw-scale-y: 1.25; + .group:hover .\32xl\:group-hover\:opacity-70 { + opacity: 0.7; } - .\32xl\:hover\:scale-y-150:hover { - --tw-scale-y: 1.5; + .group:hover .\32xl\:group-hover\:opacity-75 { + opacity: 0.75; } - .\32xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; + .group:hover .\32xl\:group-hover\:opacity-80 { + opacity: 0.8; } - .\32xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; + .group:hover .\32xl\:group-hover\:opacity-90 { + opacity: 0.9; } - .\32xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; + .group:hover .\32xl\:group-hover\:opacity-95 { + opacity: 0.95; } - .\32xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; + .group:hover .\32xl\:group-hover\:opacity-100 { + opacity: 1; } - .\32xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; + .\32xl\:focus-within\:opacity-0:focus-within { + opacity: 0; } - .\32xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; + .\32xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05; } - .\32xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; + .\32xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1; } - .\32xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; + .\32xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2; } - .\32xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; + .\32xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25; } - .\32xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; + .\32xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3; } - .\32xl\:focus\:scale-x-0:focus { - --tw-scale-x: 0; + .\32xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4; } - .\32xl\:focus\:scale-x-50:focus { - --tw-scale-x: .5; + .\32xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5; } - .\32xl\:focus\:scale-x-75:focus { - --tw-scale-x: .75; + .\32xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6; } - .\32xl\:focus\:scale-x-90:focus { - --tw-scale-x: .9; + .\32xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7; } - .\32xl\:focus\:scale-x-95:focus { - --tw-scale-x: .95; + .\32xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75; } - .\32xl\:focus\:scale-x-100:focus { - --tw-scale-x: 1; + .\32xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8; } - .\32xl\:focus\:scale-x-105:focus { - --tw-scale-x: 1.05; + .\32xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9; } - .\32xl\:focus\:scale-x-110:focus { - --tw-scale-x: 1.1; + .\32xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95; } - .\32xl\:focus\:scale-x-125:focus { - --tw-scale-x: 1.25; + .\32xl\:focus-within\:opacity-100:focus-within { + opacity: 1; } - .\32xl\:focus\:scale-x-150:focus { - --tw-scale-x: 1.5; + .\32xl\:hover\:opacity-0:hover { + opacity: 0; } - .\32xl\:focus\:scale-y-0:focus { - --tw-scale-y: 0; + .\32xl\:hover\:opacity-5:hover { + opacity: 0.05; } - .\32xl\:focus\:scale-y-50:focus { - --tw-scale-y: .5; + .\32xl\:hover\:opacity-10:hover { + opacity: 0.1; } - .\32xl\:focus\:scale-y-75:focus { - --tw-scale-y: .75; + .\32xl\:hover\:opacity-20:hover { + opacity: 0.2; } - .\32xl\:focus\:scale-y-90:focus { - --tw-scale-y: .9; + .\32xl\:hover\:opacity-25:hover { + opacity: 0.25; } - .\32xl\:focus\:scale-y-95:focus { - --tw-scale-y: .95; + .\32xl\:hover\:opacity-30:hover { + opacity: 0.3; } - .\32xl\:focus\:scale-y-100:focus { - --tw-scale-y: 1; + .\32xl\:hover\:opacity-40:hover { + opacity: 0.4; } - .\32xl\:focus\:scale-y-105:focus { - --tw-scale-y: 1.05; + .\32xl\:hover\:opacity-50:hover { + opacity: 0.5; } - .\32xl\:focus\:scale-y-110:focus { - --tw-scale-y: 1.1; + .\32xl\:hover\:opacity-60:hover { + opacity: 0.6; } - .\32xl\:focus\:scale-y-125:focus { - --tw-scale-y: 1.25; + .\32xl\:hover\:opacity-70:hover { + opacity: 0.7; } - .\32xl\:focus\:scale-y-150:focus { - --tw-scale-y: 1.5; + .\32xl\:hover\:opacity-75:hover { + opacity: 0.75; } - .\32xl\:rotate-0 { - --tw-rotate: 0deg; + .\32xl\:hover\:opacity-80:hover { + opacity: 0.8; } - .\32xl\:rotate-1 { - --tw-rotate: 1deg; + .\32xl\:hover\:opacity-90:hover { + opacity: 0.9; } - .\32xl\:rotate-2 { - --tw-rotate: 2deg; + .\32xl\:hover\:opacity-95:hover { + opacity: 0.95; } - .\32xl\:rotate-3 { - --tw-rotate: 3deg; + .\32xl\:hover\:opacity-100:hover { + opacity: 1; } - .\32xl\:rotate-6 { - --tw-rotate: 6deg; + .\32xl\:focus\:opacity-0:focus { + opacity: 0; } - .\32xl\:rotate-12 { - --tw-rotate: 12deg; + .\32xl\:focus\:opacity-5:focus { + opacity: 0.05; } - .\32xl\:rotate-45 { - --tw-rotate: 45deg; + .\32xl\:focus\:opacity-10:focus { + opacity: 0.1; } - .\32xl\:rotate-90 { - --tw-rotate: 90deg; + .\32xl\:focus\:opacity-20:focus { + opacity: 0.2; } - .\32xl\:rotate-180 { - --tw-rotate: 180deg; + .\32xl\:focus\:opacity-25:focus { + opacity: 0.25; } - .\32xl\:-rotate-180 { - --tw-rotate: -180deg; + .\32xl\:focus\:opacity-30:focus { + opacity: 0.3; } - .\32xl\:-rotate-90 { - --tw-rotate: -90deg; + .\32xl\:focus\:opacity-40:focus { + opacity: 0.4; } - .\32xl\:-rotate-45 { - --tw-rotate: -45deg; + .\32xl\:focus\:opacity-50:focus { + opacity: 0.5; } - .\32xl\:-rotate-12 { - --tw-rotate: -12deg; + .\32xl\:focus\:opacity-60:focus { + opacity: 0.6; } - .\32xl\:-rotate-6 { - --tw-rotate: -6deg; + .\32xl\:focus\:opacity-70:focus { + opacity: 0.7; } - .\32xl\:-rotate-3 { - --tw-rotate: -3deg; + .\32xl\:focus\:opacity-75:focus { + opacity: 0.75; } - .\32xl\:-rotate-2 { - --tw-rotate: -2deg; + .\32xl\:focus\:opacity-80:focus { + opacity: 0.8; } - .\32xl\:-rotate-1 { - --tw-rotate: -1deg; + .\32xl\:focus\:opacity-90:focus { + opacity: 0.9; } - .\32xl\:hover\:rotate-0:hover { - --tw-rotate: 0deg; + .\32xl\:focus\:opacity-95:focus { + opacity: 0.95; } - .\32xl\:hover\:rotate-1:hover { - --tw-rotate: 1deg; + .\32xl\:focus\:opacity-100:focus { + opacity: 1; } - .\32xl\:hover\:rotate-2:hover { - --tw-rotate: 2deg; + .\32xl\:bg-blend-normal { + background-blend-mode: normal; } - .\32xl\:hover\:rotate-3:hover { - --tw-rotate: 3deg; + .\32xl\:bg-blend-multiply { + background-blend-mode: multiply; } - .\32xl\:hover\:rotate-6:hover { - --tw-rotate: 6deg; + .\32xl\:bg-blend-screen { + background-blend-mode: screen; } - .\32xl\:hover\:rotate-12:hover { - --tw-rotate: 12deg; + .\32xl\:bg-blend-overlay { + background-blend-mode: overlay; } - .\32xl\:hover\:rotate-45:hover { - --tw-rotate: 45deg; + .\32xl\:bg-blend-darken { + background-blend-mode: darken; } - .\32xl\:hover\:rotate-90:hover { - --tw-rotate: 90deg; + .\32xl\:bg-blend-lighten { + background-blend-mode: lighten; } - .\32xl\:hover\:rotate-180:hover { - --tw-rotate: 180deg; + .\32xl\:bg-blend-color-dodge { + background-blend-mode: color-dodge; } - .\32xl\:hover\:-rotate-180:hover { - --tw-rotate: -180deg; + .\32xl\:bg-blend-color-burn { + background-blend-mode: color-burn; } - .\32xl\:hover\:-rotate-90:hover { - --tw-rotate: -90deg; + .\32xl\:bg-blend-hard-light { + background-blend-mode: hard-light; } - .\32xl\:hover\:-rotate-45:hover { - --tw-rotate: -45deg; + .\32xl\:bg-blend-soft-light { + background-blend-mode: soft-light; } - .\32xl\:hover\:-rotate-12:hover { - --tw-rotate: -12deg; + .\32xl\:bg-blend-difference { + background-blend-mode: difference; } - .\32xl\:hover\:-rotate-6:hover { - --tw-rotate: -6deg; + .\32xl\:bg-blend-exclusion { + background-blend-mode: exclusion; } - .\32xl\:hover\:-rotate-3:hover { - --tw-rotate: -3deg; + .\32xl\:bg-blend-hue { + background-blend-mode: hue; } - .\32xl\:hover\:-rotate-2:hover { - --tw-rotate: -2deg; + .\32xl\:bg-blend-saturation { + background-blend-mode: saturation; } - .\32xl\:hover\:-rotate-1:hover { - --tw-rotate: -1deg; + .\32xl\:bg-blend-color { + background-blend-mode: color; } - .\32xl\:focus\:rotate-0:focus { - --tw-rotate: 0deg; + .\32xl\:bg-blend-luminosity { + background-blend-mode: luminosity; } - .\32xl\:focus\:rotate-1:focus { - --tw-rotate: 1deg; + .\32xl\:mix-blend-normal { + mix-blend-mode: normal; } - .\32xl\:focus\:rotate-2:focus { - --tw-rotate: 2deg; + .\32xl\:mix-blend-multiply { + mix-blend-mode: multiply; } - .\32xl\:focus\:rotate-3:focus { - --tw-rotate: 3deg; + .\32xl\:mix-blend-screen { + mix-blend-mode: screen; } - .\32xl\:focus\:rotate-6:focus { - --tw-rotate: 6deg; + .\32xl\:mix-blend-overlay { + mix-blend-mode: overlay; } - .\32xl\:focus\:rotate-12:focus { - --tw-rotate: 12deg; + .\32xl\:mix-blend-darken { + mix-blend-mode: darken; } - .\32xl\:focus\:rotate-45:focus { - --tw-rotate: 45deg; + .\32xl\:mix-blend-lighten { + mix-blend-mode: lighten; } - .\32xl\:focus\:rotate-90:focus { - --tw-rotate: 90deg; + .\32xl\:mix-blend-color-dodge { + mix-blend-mode: color-dodge; } - .\32xl\:focus\:rotate-180:focus { - --tw-rotate: 180deg; + .\32xl\:mix-blend-color-burn { + mix-blend-mode: color-burn; } - .\32xl\:focus\:-rotate-180:focus { - --tw-rotate: -180deg; + .\32xl\:mix-blend-hard-light { + mix-blend-mode: hard-light; } - .\32xl\:focus\:-rotate-90:focus { - --tw-rotate: -90deg; + .\32xl\:mix-blend-soft-light { + mix-blend-mode: soft-light; } - .\32xl\:focus\:-rotate-45:focus { - --tw-rotate: -45deg; + .\32xl\:mix-blend-difference { + mix-blend-mode: difference; } - .\32xl\:focus\:-rotate-12:focus { - --tw-rotate: -12deg; + .\32xl\:mix-blend-exclusion { + mix-blend-mode: exclusion; } - .\32xl\:focus\:-rotate-6:focus { - --tw-rotate: -6deg; + .\32xl\:mix-blend-hue { + mix-blend-mode: hue; } - .\32xl\:focus\:-rotate-3:focus { - --tw-rotate: -3deg; + .\32xl\:mix-blend-saturation { + mix-blend-mode: saturation; } - .\32xl\:focus\:-rotate-2:focus { - --tw-rotate: -2deg; + .\32xl\:mix-blend-color { + mix-blend-mode: color; } - .\32xl\:focus\:-rotate-1:focus { - --tw-rotate: -1deg; + .\32xl\:mix-blend-luminosity { + mix-blend-mode: luminosity; } - .\32xl\:translate-x-0 { - --tw-translate-x: 0px; + .\32xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-1 { - --tw-translate-x: 0.25rem; + .\32xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-2 { - --tw-translate-x: 0.5rem; + .\32xl\: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); } - .\32xl\:translate-x-3 { - --tw-translate-x: 0.75rem; + .\32xl\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-4 { - --tw-translate-x: 1rem; + .\32xl\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-5 { - --tw-translate-x: 1.25rem; + .\32xl\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-6 { - --tw-translate-x: 1.5rem; + .\32xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-7 { - --tw-translate-x: 1.75rem; + .\32xl\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-8 { - --tw-translate-x: 2rem; + .group:hover .\32xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-9 { - --tw-translate-x: 2.25rem; + .group:hover .\32xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-10 { - --tw-translate-x: 2.5rem; + .group:hover .\32xl\:group-hover\: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); } - .\32xl\:translate-x-11 { - --tw-translate-x: 2.75rem; + .group:hover .\32xl\:group-hover\:shadow-lg { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-12 { - --tw-translate-x: 3rem; + .group:hover .\32xl\:group-hover\:shadow-xl { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-14 { - --tw-translate-x: 3.5rem; + .group:hover .\32xl\:group-hover\:shadow-2xl { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-16 { - --tw-translate-x: 4rem; + .group:hover .\32xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-20 { - --tw-translate-x: 5rem; + .group:hover .\32xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-24 { - --tw-translate-x: 6rem; + .\32xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-28 { - --tw-translate-x: 7rem; + .\32xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-32 { - --tw-translate-x: 8rem; + .\32xl\:focus-within\:shadow-md:focus-within { + --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); } - .\32xl\:translate-x-36 { - --tw-translate-x: 9rem; + .\32xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-40 { - --tw-translate-x: 10rem; + .\32xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-44 { - --tw-translate-x: 11rem; + .\32xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-48 { - --tw-translate-x: 12rem; + .\32xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-52 { - --tw-translate-x: 13rem; + .\32xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-56 { - --tw-translate-x: 14rem; + .\32xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-60 { - --tw-translate-x: 15rem; + .\32xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-64 { - --tw-translate-x: 16rem; + .\32xl\:hover\:shadow-md:hover { + --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); } - .\32xl\:translate-x-72 { - --tw-translate-x: 18rem; + .\32xl\:hover\:shadow-lg:hover { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-80 { - --tw-translate-x: 20rem; + .\32xl\:hover\:shadow-xl:hover { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-96 { - --tw-translate-x: 24rem; + .\32xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-px { - --tw-translate-x: 1px; + .\32xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-0\.5 { - --tw-translate-x: 0.125rem; + .\32xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-1\.5 { - --tw-translate-x: 0.375rem; + .\32xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-2\.5 { - --tw-translate-x: 0.625rem; + .\32xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:translate-x-3\.5 { - --tw-translate-x: 0.875rem; + .\32xl\:focus\:shadow-md:focus { + --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); } - .\32xl\:-translate-x-0 { - --tw-translate-x: 0px; + .\32xl\:focus\:shadow-lg:focus { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-1 { - --tw-translate-x: -0.25rem; + .\32xl\:focus\:shadow-xl:focus { + --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-2 { - --tw-translate-x: -0.5rem; + .\32xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-3 { - --tw-translate-x: -0.75rem; + .\32xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-4 { - --tw-translate-x: -1rem; + .\32xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } - .\32xl\:-translate-x-5 { - --tw-translate-x: -1.25rem; + .\32xl\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; } - .\32xl\:-translate-x-6 { - --tw-translate-x: -1.5rem; + .\32xl\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; } - .\32xl\:-translate-x-7 { - --tw-translate-x: -1.75rem; + .\32xl\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; } - .\32xl\:-translate-x-8 { - --tw-translate-x: -2rem; + .\32xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; } - .\32xl\:-translate-x-9 { - --tw-translate-x: -2.25rem; + .\32xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; } - .\32xl\:-translate-x-10 { - --tw-translate-x: -2.5rem; + .\32xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; } - .\32xl\:-translate-x-11 { - --tw-translate-x: -2.75rem; + .\32xl\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; } - .\32xl\:-translate-x-12 { - --tw-translate-x: -3rem; + .\32xl\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; } - .\32xl\:-translate-x-14 { - --tw-translate-x: -3.5rem; + .\32xl\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; } - .\32xl\:-translate-x-16 { - --tw-translate-x: -4rem; + .\32xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-20 { - --tw-translate-x: -5rem; + .\32xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-24 { - --tw-translate-x: -6rem; + .\32xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-28 { - --tw-translate-x: -7rem; + .\32xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-32 { - --tw-translate-x: -8rem; + .\32xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-36 { - --tw-translate-x: -9rem; + .\32xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-40 { - --tw-translate-x: -10rem; + .\32xl\:ring-inset { + --tw-ring-inset: inset; } - .\32xl\:-translate-x-44 { - --tw-translate-x: -11rem; + .\32xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-48 { - --tw-translate-x: -12rem; + .\32xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-52 { - --tw-translate-x: -13rem; + .\32xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-56 { - --tw-translate-x: -14rem; + .\32xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-60 { - --tw-translate-x: -15rem; + .\32xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-64 { - --tw-translate-x: -16rem; + .\32xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-72 { - --tw-translate-x: -18rem; + .\32xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; } - .\32xl\:-translate-x-80 { - --tw-translate-x: -20rem; + .\32xl\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-96 { - --tw-translate-x: -24rem; + .\32xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-px { - --tw-translate-x: -1px; + .\32xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-0\.5 { - --tw-translate-x: -0.125rem; + .\32xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-1\.5 { - --tw-translate-x: -0.375rem; + .\32xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-2\.5 { - --tw-translate-x: -0.625rem; + .\32xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:-translate-x-3\.5 { - --tw-translate-x: -0.875rem; + .\32xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset; } - .\32xl\:translate-x-1\/2 { - --tw-translate-x: 50%; + .\32xl\:ring-transparent { + --tw-ring-color: transparent; } - .\32xl\:translate-x-1\/3 { - --tw-translate-x: 33.333333%; + .\32xl\:ring-current { + --tw-ring-color: currentColor; } - .\32xl\:translate-x-2\/3 { - --tw-translate-x: 66.666667%; + .\32xl\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .\32xl\:translate-x-1\/4 { - --tw-translate-x: 25%; + .\32xl\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .\32xl\:translate-x-2\/4 { - --tw-translate-x: 50%; + .\32xl\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .\32xl\:translate-x-3\/4 { - --tw-translate-x: 75%; + .\32xl\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .\32xl\:translate-x-full { - --tw-translate-x: 100%; + .\32xl\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-1\/2 { - --tw-translate-x: -50%; + .\32xl\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-1\/3 { - --tw-translate-x: -33.333333%; + .\32xl\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-2\/3 { - --tw-translate-x: -66.666667%; + .\32xl\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-1\/4 { - --tw-translate-x: -25%; + .\32xl\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-2\/4 { - --tw-translate-x: -50%; + .\32xl\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-3\/4 { - --tw-translate-x: -75%; + .\32xl\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .\32xl\:-translate-x-full { - --tw-translate-x: -100%; + .\32xl\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .\32xl\:translate-y-0 { - --tw-translate-y: 0px; + .\32xl\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1 { - --tw-translate-y: 0.25rem; + .\32xl\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .\32xl\:translate-y-2 { - --tw-translate-y: 0.5rem; + .\32xl\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .\32xl\:translate-y-3 { - --tw-translate-y: 0.75rem; + .\32xl\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .\32xl\:translate-y-4 { - --tw-translate-y: 1rem; + .\32xl\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .\32xl\:translate-y-5 { - --tw-translate-y: 1.25rem; + .\32xl\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .\32xl\:translate-y-6 { - --tw-translate-y: 1.5rem; + .\32xl\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .\32xl\:translate-y-7 { - --tw-translate-y: 1.75rem; + .\32xl\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .\32xl\:translate-y-8 { - --tw-translate-y: 2rem; + .\32xl\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .\32xl\:translate-y-9 { - --tw-translate-y: 2.25rem; + .\32xl\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .\32xl\:translate-y-10 { - --tw-translate-y: 2.5rem; + .\32xl\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .\32xl\:translate-y-11 { - --tw-translate-y: 2.75rem; + .\32xl\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .\32xl\:translate-y-12 { - --tw-translate-y: 3rem; + .\32xl\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .\32xl\:translate-y-14 { - --tw-translate-y: 3.5rem; + .\32xl\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .\32xl\:translate-y-16 { - --tw-translate-y: 4rem; + .\32xl\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .\32xl\:translate-y-20 { - --tw-translate-y: 5rem; + .\32xl\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .\32xl\:translate-y-24 { - --tw-translate-y: 6rem; + .\32xl\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .\32xl\:translate-y-28 { - --tw-translate-y: 7rem; + .\32xl\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .\32xl\:translate-y-32 { - --tw-translate-y: 8rem; + .\32xl\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .\32xl\:translate-y-36 { - --tw-translate-y: 9rem; + .\32xl\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .\32xl\:translate-y-40 { - --tw-translate-y: 10rem; + .\32xl\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .\32xl\:translate-y-44 { - --tw-translate-y: 11rem; + .\32xl\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .\32xl\:translate-y-48 { - --tw-translate-y: 12rem; + .\32xl\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .\32xl\:translate-y-52 { - --tw-translate-y: 13rem; + .\32xl\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .\32xl\:translate-y-56 { - --tw-translate-y: 14rem; + .\32xl\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .\32xl\:translate-y-60 { - --tw-translate-y: 15rem; + .\32xl\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .\32xl\:translate-y-64 { - --tw-translate-y: 16rem; + .\32xl\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .\32xl\:translate-y-72 { - --tw-translate-y: 18rem; + .\32xl\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .\32xl\:translate-y-80 { - --tw-translate-y: 20rem; + .\32xl\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .\32xl\:translate-y-96 { - --tw-translate-y: 24rem; + .\32xl\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .\32xl\:translate-y-px { - --tw-translate-y: 1px; + .\32xl\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .\32xl\:translate-y-0\.5 { - --tw-translate-y: 0.125rem; + .\32xl\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1\.5 { - --tw-translate-y: 0.375rem; + .\32xl\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .\32xl\:translate-y-2\.5 { - --tw-translate-y: 0.625rem; + .\32xl\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .\32xl\:translate-y-3\.5 { - --tw-translate-y: 0.875rem; + .\32xl\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-0 { - --tw-translate-y: 0px; + .\32xl\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1 { - --tw-translate-y: -0.25rem; + .\32xl\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2 { - --tw-translate-y: -0.5rem; + .\32xl\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-3 { - --tw-translate-y: -0.75rem; + .\32xl\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-4 { - --tw-translate-y: -1rem; + .\32xl\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-5 { - --tw-translate-y: -1.25rem; + .\32xl\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-6 { - --tw-translate-y: -1.5rem; + .\32xl\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-7 { - --tw-translate-y: -1.75rem; + .\32xl\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-8 { - --tw-translate-y: -2rem; + .\32xl\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-9 { - --tw-translate-y: -2.25rem; + .\32xl\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-10 { - --tw-translate-y: -2.5rem; + .\32xl\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-11 { - --tw-translate-y: -2.75rem; + .\32xl\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-12 { - --tw-translate-y: -3rem; + .\32xl\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-14 { - --tw-translate-y: -3.5rem; + .\32xl\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-16 { - --tw-translate-y: -4rem; + .\32xl\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-20 { - --tw-translate-y: -5rem; + .\32xl\:ring-purple-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-24 { - --tw-translate-y: -6rem; + .\32xl\:ring-purple-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-28 { - --tw-translate-y: -7rem; + .\32xl\:ring-purple-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-32 { - --tw-translate-y: -8rem; + .\32xl\:ring-purple-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-36 { - --tw-translate-y: -9rem; + .\32xl\:ring-purple-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-40 { - --tw-translate-y: -10rem; + .\32xl\:ring-purple-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-44 { - --tw-translate-y: -11rem; + .\32xl\:ring-purple-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-48 { - --tw-translate-y: -12rem; + .\32xl\:ring-purple-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-52 { - --tw-translate-y: -13rem; + .\32xl\:ring-purple-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-56 { - --tw-translate-y: -14rem; + .\32xl\:ring-purple-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-60 { - --tw-translate-y: -15rem; + .\32xl\:ring-pink-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-64 { - --tw-translate-y: -16rem; + .\32xl\:ring-pink-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-72 { - --tw-translate-y: -18rem; + .\32xl\:ring-pink-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-80 { - --tw-translate-y: -20rem; + .\32xl\:ring-pink-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-96 { - --tw-translate-y: -24rem; + .\32xl\:ring-pink-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-px { - --tw-translate-y: -1px; + .\32xl\:ring-pink-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-0\.5 { - --tw-translate-y: -0.125rem; + .\32xl\:ring-pink-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\.5 { - --tw-translate-y: -0.375rem; + .\32xl\:ring-pink-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2\.5 { - --tw-translate-y: -0.625rem; + .\32xl\:ring-pink-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-3\.5 { - --tw-translate-y: -0.875rem; + .\32xl\:ring-pink-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1\/2 { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; } - .\32xl\:translate-y-1\/3 { - --tw-translate-y: 33.333333%; + .\32xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; } - .\32xl\:translate-y-2\/3 { - --tw-translate-y: 66.666667%; + .\32xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .\32xl\:translate-y-1\/4 { - --tw-translate-y: 25%; + .\32xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .\32xl\:translate-y-2\/4 { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .\32xl\:translate-y-3\/4 { - --tw-translate-y: 75%; + .\32xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .\32xl\:translate-y-full { - --tw-translate-y: 100%; + .\32xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\/2 { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\/3 { - --tw-translate-y: -33.333333%; + .\32xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2\/3 { - --tw-translate-y: -66.666667%; + .\32xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-1\/4 { - --tw-translate-y: -25%; + .\32xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-2\/4 { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-3\/4 { - --tw-translate-y: -75%; + .\32xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .\32xl\:-translate-y-full { - --tw-translate-y: -100%; + .\32xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-0:hover { - --tw-translate-x: 0px; + .\32xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1:hover { - --tw-translate-x: 0.25rem; + .\32xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-2:hover { - --tw-translate-x: 0.5rem; + .\32xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-3:hover { - --tw-translate-x: 0.75rem; + .\32xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-4:hover { - --tw-translate-x: 1rem; + .\32xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-5:hover { - --tw-translate-x: 1.25rem; + .\32xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-6:hover { - --tw-translate-x: 1.5rem; + .\32xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-7:hover { - --tw-translate-x: 1.75rem; + .\32xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-8:hover { - --tw-translate-x: 2rem; + .\32xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-9:hover { - --tw-translate-x: 2.25rem; + .\32xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-10:hover { - --tw-translate-x: 2.5rem; + .\32xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-11:hover { - --tw-translate-x: 2.75rem; + .\32xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-12:hover { - --tw-translate-x: 3rem; + .\32xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-14:hover { - --tw-translate-x: 3.5rem; + .\32xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-16:hover { - --tw-translate-x: 4rem; + .\32xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-20:hover { - --tw-translate-x: 5rem; + .\32xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-24:hover { - --tw-translate-x: 6rem; + .\32xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-28:hover { - --tw-translate-x: 7rem; + .\32xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-32:hover { - --tw-translate-x: 8rem; + .\32xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-36:hover { - --tw-translate-x: 9rem; + .\32xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-40:hover { - --tw-translate-x: 10rem; + .\32xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-44:hover { - --tw-translate-x: 11rem; + .\32xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-48:hover { - --tw-translate-x: 12rem; + .\32xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-52:hover { - --tw-translate-x: 13rem; + .\32xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-56:hover { - --tw-translate-x: 14rem; + .\32xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-60:hover { - --tw-translate-x: 15rem; + .\32xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-64:hover { - --tw-translate-x: 16rem; + .\32xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-72:hover { - --tw-translate-x: 18rem; + .\32xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-80:hover { - --tw-translate-x: 20rem; + .\32xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-96:hover { - --tw-translate-x: 24rem; + .\32xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-px:hover { - --tw-translate-x: 1px; + .\32xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-0\.5:hover { - --tw-translate-x: 0.125rem; + .\32xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1\.5:hover { - --tw-translate-x: 0.375rem; + .\32xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-2\.5:hover { - --tw-translate-x: 0.625rem; + .\32xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-3\.5:hover { - --tw-translate-x: 0.875rem; + .\32xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-0:hover { - --tw-translate-x: 0px; + .\32xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1:hover { - --tw-translate-x: -0.25rem; + .\32xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2:hover { - --tw-translate-x: -0.5rem; + .\32xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-3:hover { - --tw-translate-x: -0.75rem; + .\32xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-4:hover { - --tw-translate-x: -1rem; + .\32xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-5:hover { - --tw-translate-x: -1.25rem; + .\32xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-6:hover { - --tw-translate-x: -1.5rem; + .\32xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-7:hover { - --tw-translate-x: -1.75rem; + .\32xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-8:hover { - --tw-translate-x: -2rem; + .\32xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-9:hover { - --tw-translate-x: -2.25rem; + .\32xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-10:hover { - --tw-translate-x: -2.5rem; + .\32xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-11:hover { - --tw-translate-x: -2.75rem; + .\32xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-12:hover { - --tw-translate-x: -3rem; + .\32xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-14:hover { - --tw-translate-x: -3.5rem; + .\32xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-16:hover { - --tw-translate-x: -4rem; + .\32xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-20:hover { - --tw-translate-x: -5rem; + .\32xl\:focus-within\:ring-purple-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-24:hover { - --tw-translate-x: -6rem; + .\32xl\:focus-within\:ring-purple-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-28:hover { - --tw-translate-x: -7rem; + .\32xl\:focus-within\:ring-purple-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-32:hover { - --tw-translate-x: -8rem; + .\32xl\:focus-within\:ring-purple-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-36:hover { - --tw-translate-x: -9rem; + .\32xl\:focus-within\:ring-purple-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-40:hover { - --tw-translate-x: -10rem; + .\32xl\:focus-within\:ring-purple-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-44:hover { - --tw-translate-x: -11rem; + .\32xl\:focus-within\:ring-purple-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-48:hover { - --tw-translate-x: -12rem; + .\32xl\:focus-within\:ring-purple-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-52:hover { - --tw-translate-x: -13rem; + .\32xl\:focus-within\:ring-purple-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-56:hover { - --tw-translate-x: -14rem; + .\32xl\:focus-within\:ring-purple-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-60:hover { - --tw-translate-x: -15rem; + .\32xl\:focus-within\:ring-pink-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-64:hover { - --tw-translate-x: -16rem; + .\32xl\:focus-within\:ring-pink-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-72:hover { - --tw-translate-x: -18rem; + .\32xl\:focus-within\:ring-pink-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-80:hover { - --tw-translate-x: -20rem; + .\32xl\:focus-within\:ring-pink-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-96:hover { - --tw-translate-x: -24rem; + .\32xl\:focus-within\:ring-pink-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-px:hover { - --tw-translate-x: -1px; + .\32xl\:focus-within\:ring-pink-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-0\.5:hover { - --tw-translate-x: -0.125rem; + .\32xl\:focus-within\:ring-pink-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\.5:hover { - --tw-translate-x: -0.375rem; + .\32xl\:focus-within\:ring-pink-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2\.5:hover { - --tw-translate-x: -0.625rem; + .\32xl\:focus-within\:ring-pink-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-3\.5:hover { - --tw-translate-x: -0.875rem; + .\32xl\:focus-within\:ring-pink-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1\/2:hover { - --tw-translate-x: 50%; + .\32xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; } - .\32xl\:hover\:translate-x-1\/3:hover { - --tw-translate-x: 33.333333%; + .\32xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor; } - .\32xl\:hover\:translate-x-2\/3:hover { - --tw-translate-x: 66.666667%; + .\32xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-1\/4:hover { - --tw-translate-x: 25%; + .\32xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-2\/4:hover { - --tw-translate-x: 50%; + .\32xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-3\/4:hover { - --tw-translate-x: 75%; + .\32xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-x-full:hover { - --tw-translate-x: 100%; + .\32xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\/2:hover { - --tw-translate-x: -50%; + .\32xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\/3:hover { - --tw-translate-x: -33.333333%; + .\32xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2\/3:hover { - --tw-translate-x: -66.666667%; + .\32xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-1\/4:hover { - --tw-translate-x: -25%; + .\32xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-2\/4:hover { - --tw-translate-x: -50%; + .\32xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-3\/4:hover { - --tw-translate-x: -75%; + .\32xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-x-full:hover { - --tw-translate-x: -100%; + .\32xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-0:hover { - --tw-translate-y: 0px; + .\32xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-1:hover { - --tw-translate-y: 0.25rem; + .\32xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-2:hover { - --tw-translate-y: 0.5rem; + .\32xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-3:hover { - --tw-translate-y: 0.75rem; + .\32xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-4:hover { - --tw-translate-y: 1rem; + .\32xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-5:hover { - --tw-translate-y: 1.25rem; + .\32xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-6:hover { - --tw-translate-y: 1.5rem; + .\32xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-7:hover { - --tw-translate-y: 1.75rem; + .\32xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-8:hover { - --tw-translate-y: 2rem; + .\32xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-9:hover { - --tw-translate-y: 2.25rem; + .\32xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-10:hover { - --tw-translate-y: 2.5rem; + .\32xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-11:hover { - --tw-translate-y: 2.75rem; + .\32xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-12:hover { - --tw-translate-y: 3rem; + .\32xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-14:hover { - --tw-translate-y: 3.5rem; + .\32xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-16:hover { - --tw-translate-y: 4rem; + .\32xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-20:hover { - --tw-translate-y: 5rem; + .\32xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-24:hover { - --tw-translate-y: 6rem; + .\32xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-28:hover { - --tw-translate-y: 7rem; + .\32xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-32:hover { - --tw-translate-y: 8rem; + .\32xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-36:hover { - --tw-translate-y: 9rem; + .\32xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-40:hover { - --tw-translate-y: 10rem; + .\32xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-44:hover { - --tw-translate-y: 11rem; + .\32xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-48:hover { - --tw-translate-y: 12rem; + .\32xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-52:hover { - --tw-translate-y: 13rem; + .\32xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-56:hover { - --tw-translate-y: 14rem; + .\32xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-60:hover { - --tw-translate-y: 15rem; + .\32xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-64:hover { - --tw-translate-y: 16rem; + .\32xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-72:hover { - --tw-translate-y: 18rem; + .\32xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-80:hover { - --tw-translate-y: 20rem; + .\32xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-96:hover { - --tw-translate-y: 24rem; + .\32xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-px:hover { - --tw-translate-y: 1px; + .\32xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-0\.5:hover { - --tw-translate-y: 0.125rem; + .\32xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-1\.5:hover { - --tw-translate-y: 0.375rem; + .\32xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-2\.5:hover { - --tw-translate-y: 0.625rem; + .\32xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-3\.5:hover { - --tw-translate-y: 0.875rem; + .\32xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-0:hover { - --tw-translate-y: 0px; + .\32xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-1:hover { - --tw-translate-y: -0.25rem; + .\32xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-2:hover { - --tw-translate-y: -0.5rem; + .\32xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-3:hover { - --tw-translate-y: -0.75rem; + .\32xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-4:hover { - --tw-translate-y: -1rem; + .\32xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-5:hover { - --tw-translate-y: -1.25rem; + .\32xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-6:hover { - --tw-translate-y: -1.5rem; + .\32xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-7:hover { - --tw-translate-y: -1.75rem; + .\32xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-8:hover { - --tw-translate-y: -2rem; + .\32xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-9:hover { - --tw-translate-y: -2.25rem; + .\32xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-10:hover { - --tw-translate-y: -2.5rem; + .\32xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-11:hover { - --tw-translate-y: -2.75rem; + .\32xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-12:hover { - --tw-translate-y: -3rem; + .\32xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-14:hover { - --tw-translate-y: -3.5rem; + .\32xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-16:hover { - --tw-translate-y: -4rem; + .\32xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-20:hover { - --tw-translate-y: -5rem; + .\32xl\:focus\:ring-purple-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-24:hover { - --tw-translate-y: -6rem; + .\32xl\:focus\:ring-purple-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-28:hover { - --tw-translate-y: -7rem; + .\32xl\:focus\:ring-purple-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-32:hover { - --tw-translate-y: -8rem; + .\32xl\:focus\:ring-purple-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-36:hover { - --tw-translate-y: -9rem; + .\32xl\:focus\:ring-purple-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-40:hover { - --tw-translate-y: -10rem; + .\32xl\:focus\:ring-purple-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-44:hover { - --tw-translate-y: -11rem; + .\32xl\:focus\:ring-purple-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-48:hover { - --tw-translate-y: -12rem; + .\32xl\:focus\:ring-purple-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-52:hover { - --tw-translate-y: -13rem; + .\32xl\:focus\:ring-purple-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-56:hover { - --tw-translate-y: -14rem; + .\32xl\:focus\:ring-purple-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-60:hover { - --tw-translate-y: -15rem; + .\32xl\:focus\:ring-pink-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-64:hover { - --tw-translate-y: -16rem; + .\32xl\:focus\:ring-pink-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-72:hover { - --tw-translate-y: -18rem; + .\32xl\:focus\:ring-pink-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-80:hover { - --tw-translate-y: -20rem; + .\32xl\:focus\:ring-pink-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-96:hover { - --tw-translate-y: -24rem; + .\32xl\:focus\:ring-pink-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-px:hover { - --tw-translate-y: -1px; + .\32xl\:focus\:ring-pink-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-0\.5:hover { - --tw-translate-y: -0.125rem; + .\32xl\:focus\:ring-pink-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-1\.5:hover { - --tw-translate-y: -0.375rem; + .\32xl\:focus\:ring-pink-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-2\.5:hover { - --tw-translate-y: -0.625rem; + .\32xl\:focus\:ring-pink-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity)); } - .\32xl\:hover\:-translate-y-3\.5:hover { - --tw-translate-y: -0.875rem; + .\32xl\:focus\:ring-pink-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity)); } - .\32xl\:hover\:translate-y-1\/2:hover { - --tw-translate-y: 50%; + .\32xl\:ring-opacity-0 { + --tw-ring-opacity: 0; } - .\32xl\:hover\:translate-y-1\/3:hover { - --tw-translate-y: 33.333333%; + .\32xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05; } - .\32xl\:hover\:translate-y-2\/3:hover { - --tw-translate-y: 66.666667%; + .\32xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1; } - .\32xl\:hover\:translate-y-1\/4:hover { - --tw-translate-y: 25%; + .\32xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2; } - .\32xl\:hover\:translate-y-2\/4:hover { - --tw-translate-y: 50%; + .\32xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25; } - .\32xl\:hover\:translate-y-3\/4:hover { - --tw-translate-y: 75%; + .\32xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3; } - .\32xl\:hover\:translate-y-full:hover { - --tw-translate-y: 100%; + .\32xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4; } - .\32xl\:hover\:-translate-y-1\/2:hover { - --tw-translate-y: -50%; + .\32xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5; } - .\32xl\:hover\:-translate-y-1\/3:hover { - --tw-translate-y: -33.333333%; + .\32xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6; } - .\32xl\:hover\:-translate-y-2\/3:hover { - --tw-translate-y: -66.666667%; + .\32xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7; } - .\32xl\:hover\:-translate-y-1\/4:hover { - --tw-translate-y: -25%; + .\32xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75; } - .\32xl\:hover\:-translate-y-2\/4:hover { - --tw-translate-y: -50%; + .\32xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8; } - .\32xl\:hover\:-translate-y-3\/4:hover { - --tw-translate-y: -75%; + .\32xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9; } - .\32xl\:hover\:-translate-y-full:hover { - --tw-translate-y: -100%; + .\32xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95; } - .\32xl\:focus\:translate-x-0:focus { - --tw-translate-x: 0px; + .\32xl\:ring-opacity-100 { + --tw-ring-opacity: 1; } - .\32xl\:focus\:translate-x-1:focus { - --tw-translate-x: 0.25rem; + .\32xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; } - .\32xl\:focus\:translate-x-2:focus { - --tw-translate-x: 0.5rem; + .\32xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; } - .\32xl\:focus\:translate-x-3:focus { - --tw-translate-x: 0.75rem; + .\32xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; } - .\32xl\:focus\:translate-x-4:focus { - --tw-translate-x: 1rem; + .\32xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; } - .\32xl\:focus\:translate-x-5:focus { - --tw-translate-x: 1.25rem; + .\32xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; } - .\32xl\:focus\:translate-x-6:focus { - --tw-translate-x: 1.5rem; + .\32xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; } - .\32xl\:focus\:translate-x-7:focus { - --tw-translate-x: 1.75rem; + .\32xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; } - .\32xl\:focus\:translate-x-8:focus { - --tw-translate-x: 2rem; + .\32xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; } - .\32xl\:focus\:translate-x-9:focus { - --tw-translate-x: 2.25rem; + .\32xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; } - .\32xl\:focus\:translate-x-10:focus { - --tw-translate-x: 2.5rem; + .\32xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; } - .\32xl\:focus\:translate-x-11:focus { - --tw-translate-x: 2.75rem; + .\32xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; } - .\32xl\:focus\:translate-x-12:focus { - --tw-translate-x: 3rem; + .\32xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; } - .\32xl\:focus\:translate-x-14:focus { - --tw-translate-x: 3.5rem; + .\32xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; } - .\32xl\:focus\:translate-x-16:focus { - --tw-translate-x: 4rem; + .\32xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; } - .\32xl\:focus\:translate-x-20:focus { - --tw-translate-x: 5rem; + .\32xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; } - .\32xl\:focus\:translate-x-24:focus { - --tw-translate-x: 6rem; + .\32xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; } - .\32xl\:focus\:translate-x-28:focus { - --tw-translate-x: 7rem; + .\32xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; } - .\32xl\:focus\:translate-x-32:focus { - --tw-translate-x: 8rem; + .\32xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; } - .\32xl\:focus\:translate-x-36:focus { - --tw-translate-x: 9rem; + .\32xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; } - .\32xl\:focus\:translate-x-40:focus { - --tw-translate-x: 10rem; + .\32xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; } - .\32xl\:focus\:translate-x-44:focus { - --tw-translate-x: 11rem; + .\32xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; } - .\32xl\:focus\:translate-x-48:focus { - --tw-translate-x: 12rem; + .\32xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; } - .\32xl\:focus\:translate-x-52:focus { - --tw-translate-x: 13rem; + .\32xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; } - .\32xl\:focus\:translate-x-56:focus { - --tw-translate-x: 14rem; + .\32xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; } - .\32xl\:focus\:translate-x-60:focus { - --tw-translate-x: 15rem; + .\32xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; } - .\32xl\:focus\:translate-x-64:focus { - --tw-translate-x: 16rem; + .\32xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; } - .\32xl\:focus\:translate-x-72:focus { - --tw-translate-x: 18rem; + .\32xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; } - .\32xl\:focus\:translate-x-80:focus { - --tw-translate-x: 20rem; + .\32xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; } - .\32xl\:focus\:translate-x-96:focus { - --tw-translate-x: 24rem; + .\32xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; } - .\32xl\:focus\:translate-x-px:focus { - --tw-translate-x: 1px; + .\32xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; } - .\32xl\:focus\:translate-x-0\.5:focus { - --tw-translate-x: 0.125rem; + .\32xl\:ring-offset-0 { + --tw-ring-offset-width: 0px; } - .\32xl\:focus\:translate-x-1\.5:focus { - --tw-translate-x: 0.375rem; + .\32xl\:ring-offset-1 { + --tw-ring-offset-width: 1px; } - .\32xl\:focus\:translate-x-2\.5:focus { - --tw-translate-x: 0.625rem; + .\32xl\:ring-offset-2 { + --tw-ring-offset-width: 2px; } - .\32xl\:focus\:translate-x-3\.5:focus { - --tw-translate-x: 0.875rem; + .\32xl\:ring-offset-4 { + --tw-ring-offset-width: 4px; } - .\32xl\:focus\:-translate-x-0:focus { - --tw-translate-x: 0px; + .\32xl\:ring-offset-8 { + --tw-ring-offset-width: 8px; } - .\32xl\:focus\:-translate-x-1:focus { - --tw-translate-x: -0.25rem; + .\32xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; } - .\32xl\:focus\:-translate-x-2:focus { - --tw-translate-x: -0.5rem; + .\32xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; } - .\32xl\:focus\:-translate-x-3:focus { - --tw-translate-x: -0.75rem; + .\32xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; } - .\32xl\:focus\:-translate-x-4:focus { - --tw-translate-x: -1rem; + .\32xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; } - .\32xl\:focus\:-translate-x-5:focus { - --tw-translate-x: -1.25rem; + .\32xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; } - .\32xl\:focus\:-translate-x-6:focus { - --tw-translate-x: -1.5rem; + .\32xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; } - .\32xl\:focus\:-translate-x-7:focus { - --tw-translate-x: -1.75rem; + .\32xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; } - .\32xl\:focus\:-translate-x-8:focus { - --tw-translate-x: -2rem; + .\32xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; } - .\32xl\:focus\:-translate-x-9:focus { - --tw-translate-x: -2.25rem; + .\32xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; } - .\32xl\:focus\:-translate-x-10:focus { - --tw-translate-x: -2.5rem; + .\32xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; } - .\32xl\:focus\:-translate-x-11:focus { - --tw-translate-x: -2.75rem; + .\32xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent; } - .\32xl\:focus\:-translate-x-12:focus { - --tw-translate-x: -3rem; + .\32xl\:ring-offset-current { + --tw-ring-offset-color: currentColor; } - .\32xl\:focus\:-translate-x-14:focus { - --tw-translate-x: -3.5rem; + .\32xl\:ring-offset-black { + --tw-ring-offset-color: #000; } - .\32xl\:focus\:-translate-x-16:focus { - --tw-translate-x: -4rem; + .\32xl\:ring-offset-white { + --tw-ring-offset-color: #fff; } - .\32xl\:focus\:-translate-x-20:focus { - --tw-translate-x: -5rem; + .\32xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; } - .\32xl\:focus\:-translate-x-24:focus { - --tw-translate-x: -6rem; + .\32xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; } - .\32xl\:focus\:-translate-x-28:focus { - --tw-translate-x: -7rem; + .\32xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; } - .\32xl\:focus\:-translate-x-32:focus { - --tw-translate-x: -8rem; + .\32xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; } - .\32xl\:focus\:-translate-x-36:focus { - --tw-translate-x: -9rem; + .\32xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; } - .\32xl\:focus\:-translate-x-40:focus { - --tw-translate-x: -10rem; + .\32xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; } - .\32xl\:focus\:-translate-x-44:focus { - --tw-translate-x: -11rem; + .\32xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; } - .\32xl\:focus\:-translate-x-48:focus { - --tw-translate-x: -12rem; + .\32xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; } - .\32xl\:focus\:-translate-x-52:focus { - --tw-translate-x: -13rem; + .\32xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; } - .\32xl\:focus\:-translate-x-56:focus { - --tw-translate-x: -14rem; + .\32xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; } - .\32xl\:focus\:-translate-x-60:focus { - --tw-translate-x: -15rem; + .\32xl\:ring-offset-red-50 { + --tw-ring-offset-color: #fef2f2; } - .\32xl\:focus\:-translate-x-64:focus { - --tw-translate-x: -16rem; + .\32xl\:ring-offset-red-100 { + --tw-ring-offset-color: #fee2e2; } - .\32xl\:focus\:-translate-x-72:focus { - --tw-translate-x: -18rem; + .\32xl\:ring-offset-red-200 { + --tw-ring-offset-color: #fecaca; } - .\32xl\:focus\:-translate-x-80:focus { - --tw-translate-x: -20rem; + .\32xl\:ring-offset-red-300 { + --tw-ring-offset-color: #fca5a5; } - .\32xl\:focus\:-translate-x-96:focus { - --tw-translate-x: -24rem; + .\32xl\:ring-offset-red-400 { + --tw-ring-offset-color: #f87171; } - .\32xl\:focus\:-translate-x-px:focus { - --tw-translate-x: -1px; + .\32xl\:ring-offset-red-500 { + --tw-ring-offset-color: #ef4444; } - .\32xl\:focus\:-translate-x-0\.5:focus { - --tw-translate-x: -0.125rem; + .\32xl\:ring-offset-red-600 { + --tw-ring-offset-color: #dc2626; } - .\32xl\:focus\:-translate-x-1\.5:focus { - --tw-translate-x: -0.375rem; + .\32xl\:ring-offset-red-700 { + --tw-ring-offset-color: #b91c1c; } - .\32xl\:focus\:-translate-x-2\.5:focus { - --tw-translate-x: -0.625rem; + .\32xl\:ring-offset-red-800 { + --tw-ring-offset-color: #991b1b; } - .\32xl\:focus\:-translate-x-3\.5:focus { - --tw-translate-x: -0.875rem; + .\32xl\:ring-offset-red-900 { + --tw-ring-offset-color: #7f1d1d; } - .\32xl\:focus\:translate-x-1\/2:focus { - --tw-translate-x: 50%; + .\32xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #fffbeb; } - .\32xl\:focus\:translate-x-1\/3:focus { - --tw-translate-x: 33.333333%; + .\32xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #fef3c7; } - .\32xl\:focus\:translate-x-2\/3:focus { - --tw-translate-x: 66.666667%; + .\32xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #fde68a; } - .\32xl\:focus\:translate-x-1\/4:focus { - --tw-translate-x: 25%; + .\32xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #fcd34d; } - .\32xl\:focus\:translate-x-2\/4:focus { - --tw-translate-x: 50%; + .\32xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #fbbf24; } - .\32xl\:focus\:translate-x-3\/4:focus { - --tw-translate-x: 75%; + .\32xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #f59e0b; } - .\32xl\:focus\:translate-x-full:focus { - --tw-translate-x: 100%; + .\32xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #d97706; } - .\32xl\:focus\:-translate-x-1\/2:focus { - --tw-translate-x: -50%; + .\32xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #b45309; } - .\32xl\:focus\:-translate-x-1\/3:focus { - --tw-translate-x: -33.333333%; + .\32xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #92400e; } - .\32xl\:focus\:-translate-x-2\/3:focus { - --tw-translate-x: -66.666667%; + .\32xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #78350f; } - .\32xl\:focus\:-translate-x-1\/4:focus { - --tw-translate-x: -25%; + .\32xl\:ring-offset-green-50 { + --tw-ring-offset-color: #ecfdf5; } - .\32xl\:focus\:-translate-x-2\/4:focus { - --tw-translate-x: -50%; + .\32xl\:ring-offset-green-100 { + --tw-ring-offset-color: #d1fae5; } - .\32xl\:focus\:-translate-x-3\/4:focus { - --tw-translate-x: -75%; + .\32xl\:ring-offset-green-200 { + --tw-ring-offset-color: #a7f3d0; } - .\32xl\:focus\:-translate-x-full:focus { - --tw-translate-x: -100%; + .\32xl\:ring-offset-green-300 { + --tw-ring-offset-color: #6ee7b7; } - .\32xl\:focus\:translate-y-0:focus { - --tw-translate-y: 0px; + .\32xl\:ring-offset-green-400 { + --tw-ring-offset-color: #34d399; } - .\32xl\:focus\:translate-y-1:focus { - --tw-translate-y: 0.25rem; + .\32xl\:ring-offset-green-500 { + --tw-ring-offset-color: #10b981; } - .\32xl\:focus\:translate-y-2:focus { - --tw-translate-y: 0.5rem; + .\32xl\:ring-offset-green-600 { + --tw-ring-offset-color: #059669; } - .\32xl\:focus\:translate-y-3:focus { - --tw-translate-y: 0.75rem; + .\32xl\:ring-offset-green-700 { + --tw-ring-offset-color: #047857; } - .\32xl\:focus\:translate-y-4:focus { - --tw-translate-y: 1rem; + .\32xl\:ring-offset-green-800 { + --tw-ring-offset-color: #065f46; } - .\32xl\:focus\:translate-y-5:focus { - --tw-translate-y: 1.25rem; + .\32xl\:ring-offset-green-900 { + --tw-ring-offset-color: #064e3b; } - .\32xl\:focus\:translate-y-6:focus { - --tw-translate-y: 1.5rem; + .\32xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #eff6ff; } - .\32xl\:focus\:translate-y-7:focus { - --tw-translate-y: 1.75rem; + .\32xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #dbeafe; } - .\32xl\:focus\:translate-y-8:focus { - --tw-translate-y: 2rem; + .\32xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #bfdbfe; } - .\32xl\:focus\:translate-y-9:focus { - --tw-translate-y: 2.25rem; + .\32xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #93c5fd; } - .\32xl\:focus\:translate-y-10:focus { - --tw-translate-y: 2.5rem; + .\32xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #60a5fa; } - .\32xl\:focus\:translate-y-11:focus { - --tw-translate-y: 2.75rem; + .\32xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3b82f6; } - .\32xl\:focus\:translate-y-12:focus { - --tw-translate-y: 3rem; + .\32xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #2563eb; } - .\32xl\:focus\:translate-y-14:focus { - --tw-translate-y: 3.5rem; + .\32xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #1d4ed8; } - .\32xl\:focus\:translate-y-16:focus { - --tw-translate-y: 4rem; + .\32xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #1e40af; } - .\32xl\:focus\:translate-y-20:focus { - --tw-translate-y: 5rem; + .\32xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1e3a8a; } - .\32xl\:focus\:translate-y-24:focus { - --tw-translate-y: 6rem; + .\32xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #eef2ff; } - .\32xl\:focus\:translate-y-28:focus { - --tw-translate-y: 7rem; + .\32xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #e0e7ff; } - .\32xl\:focus\:translate-y-32:focus { - --tw-translate-y: 8rem; + .\32xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #c7d2fe; } - .\32xl\:focus\:translate-y-36:focus { - --tw-translate-y: 9rem; + .\32xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #a5b4fc; } - .\32xl\:focus\:translate-y-40:focus { - --tw-translate-y: 10rem; + .\32xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #818cf8; } - .\32xl\:focus\:translate-y-44:focus { - --tw-translate-y: 11rem; + .\32xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6366f1; } - .\32xl\:focus\:translate-y-48:focus { - --tw-translate-y: 12rem; + .\32xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #4f46e5; } - .\32xl\:focus\:translate-y-52:focus { - --tw-translate-y: 13rem; + .\32xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4338ca; } - .\32xl\:focus\:translate-y-56:focus { - --tw-translate-y: 14rem; + .\32xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3730a3; } - .\32xl\:focus\:translate-y-60:focus { - --tw-translate-y: 15rem; + .\32xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #312e81; } - .\32xl\:focus\:translate-y-64:focus { - --tw-translate-y: 16rem; + .\32xl\:ring-offset-purple-50 { + --tw-ring-offset-color: #f5f3ff; } - .\32xl\:focus\:translate-y-72:focus { - --tw-translate-y: 18rem; + .\32xl\:ring-offset-purple-100 { + --tw-ring-offset-color: #ede9fe; } - .\32xl\:focus\:translate-y-80:focus { - --tw-translate-y: 20rem; + .\32xl\:ring-offset-purple-200 { + --tw-ring-offset-color: #ddd6fe; } - .\32xl\:focus\:translate-y-96:focus { - --tw-translate-y: 24rem; + .\32xl\:ring-offset-purple-300 { + --tw-ring-offset-color: #c4b5fd; } - .\32xl\:focus\:translate-y-px:focus { - --tw-translate-y: 1px; + .\32xl\:ring-offset-purple-400 { + --tw-ring-offset-color: #a78bfa; } - .\32xl\:focus\:translate-y-0\.5:focus { - --tw-translate-y: 0.125rem; + .\32xl\:ring-offset-purple-500 { + --tw-ring-offset-color: #8b5cf6; } - .\32xl\:focus\:translate-y-1\.5:focus { - --tw-translate-y: 0.375rem; + .\32xl\:ring-offset-purple-600 { + --tw-ring-offset-color: #7c3aed; } - .\32xl\:focus\:translate-y-2\.5:focus { - --tw-translate-y: 0.625rem; + .\32xl\:ring-offset-purple-700 { + --tw-ring-offset-color: #6d28d9; } - .\32xl\:focus\:translate-y-3\.5:focus { - --tw-translate-y: 0.875rem; + .\32xl\:ring-offset-purple-800 { + --tw-ring-offset-color: #5b21b6; } - .\32xl\:focus\:-translate-y-0:focus { - --tw-translate-y: 0px; + .\32xl\:ring-offset-purple-900 { + --tw-ring-offset-color: #4c1d95; } - .\32xl\:focus\:-translate-y-1:focus { - --tw-translate-y: -0.25rem; + .\32xl\:ring-offset-pink-50 { + --tw-ring-offset-color: #fdf2f8; } - .\32xl\:focus\:-translate-y-2:focus { - --tw-translate-y: -0.5rem; + .\32xl\:ring-offset-pink-100 { + --tw-ring-offset-color: #fce7f3; } - .\32xl\:focus\:-translate-y-3:focus { - --tw-translate-y: -0.75rem; + .\32xl\:ring-offset-pink-200 { + --tw-ring-offset-color: #fbcfe8; } - .\32xl\:focus\:-translate-y-4:focus { - --tw-translate-y: -1rem; + .\32xl\:ring-offset-pink-300 { + --tw-ring-offset-color: #f9a8d4; } - .\32xl\:focus\:-translate-y-5:focus { - --tw-translate-y: -1.25rem; + .\32xl\:ring-offset-pink-400 { + --tw-ring-offset-color: #f472b6; } - .\32xl\:focus\:-translate-y-6:focus { - --tw-translate-y: -1.5rem; + .\32xl\:ring-offset-pink-500 { + --tw-ring-offset-color: #ec4899; } - .\32xl\:focus\:-translate-y-7:focus { - --tw-translate-y: -1.75rem; + .\32xl\:ring-offset-pink-600 { + --tw-ring-offset-color: #db2777; } - .\32xl\:focus\:-translate-y-8:focus { - --tw-translate-y: -2rem; + .\32xl\:ring-offset-pink-700 { + --tw-ring-offset-color: #be185d; } - .\32xl\:focus\:-translate-y-9:focus { - --tw-translate-y: -2.25rem; + .\32xl\:ring-offset-pink-800 { + --tw-ring-offset-color: #9d174d; } - .\32xl\:focus\:-translate-y-10:focus { - --tw-translate-y: -2.5rem; + .\32xl\:ring-offset-pink-900 { + --tw-ring-offset-color: #831843; } - .\32xl\:focus\:-translate-y-11:focus { - --tw-translate-y: -2.75rem; + .\32xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; } - .\32xl\:focus\:-translate-y-12:focus { - --tw-translate-y: -3rem; + .\32xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; } - .\32xl\:focus\:-translate-y-14:focus { - --tw-translate-y: -3.5rem; + .\32xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; } - .\32xl\:focus\:-translate-y-16:focus { - --tw-translate-y: -4rem; + .\32xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; } - .\32xl\:focus\:-translate-y-20:focus { - --tw-translate-y: -5rem; + .\32xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; } - .\32xl\:focus\:-translate-y-24:focus { - --tw-translate-y: -6rem; + .\32xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; } - .\32xl\:focus\:-translate-y-28:focus { - --tw-translate-y: -7rem; + .\32xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; } - .\32xl\:focus\:-translate-y-32:focus { - --tw-translate-y: -8rem; + .\32xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; } - .\32xl\:focus\:-translate-y-36:focus { - --tw-translate-y: -9rem; + .\32xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; } - .\32xl\:focus\:-translate-y-40:focus { - --tw-translate-y: -10rem; + .\32xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; } - .\32xl\:focus\:-translate-y-44:focus { - --tw-translate-y: -11rem; + .\32xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; } - .\32xl\:focus\:-translate-y-48:focus { - --tw-translate-y: -12rem; + .\32xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; } - .\32xl\:focus\:-translate-y-52:focus { - --tw-translate-y: -13rem; + .\32xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; } - .\32xl\:focus\:-translate-y-56:focus { - --tw-translate-y: -14rem; + .\32xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; } - .\32xl\:focus\:-translate-y-60:focus { - --tw-translate-y: -15rem; + .\32xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #fef2f2; } - .\32xl\:focus\:-translate-y-64:focus { - --tw-translate-y: -16rem; + .\32xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #fee2e2; } - .\32xl\:focus\:-translate-y-72:focus { - --tw-translate-y: -18rem; + .\32xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #fecaca; } - .\32xl\:focus\:-translate-y-80:focus { - --tw-translate-y: -20rem; + .\32xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #fca5a5; } - .\32xl\:focus\:-translate-y-96:focus { - --tw-translate-y: -24rem; + .\32xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #f87171; } - .\32xl\:focus\:-translate-y-px:focus { - --tw-translate-y: -1px; + .\32xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #ef4444; } - .\32xl\:focus\:-translate-y-0\.5:focus { - --tw-translate-y: -0.125rem; + .\32xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #dc2626; } - .\32xl\:focus\:-translate-y-1\.5:focus { - --tw-translate-y: -0.375rem; + .\32xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #b91c1c; } - .\32xl\:focus\:-translate-y-2\.5:focus { - --tw-translate-y: -0.625rem; + .\32xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #991b1b; } - .\32xl\:focus\:-translate-y-3\.5:focus { - --tw-translate-y: -0.875rem; + .\32xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #7f1d1d; } - .\32xl\:focus\:translate-y-1\/2:focus { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #fffbeb; } - .\32xl\:focus\:translate-y-1\/3:focus { - --tw-translate-y: 33.333333%; + .\32xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #fef3c7; } - .\32xl\:focus\:translate-y-2\/3:focus { - --tw-translate-y: 66.666667%; + .\32xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #fde68a; } - .\32xl\:focus\:translate-y-1\/4:focus { - --tw-translate-y: 25%; + .\32xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #fcd34d; } - .\32xl\:focus\:translate-y-2\/4:focus { - --tw-translate-y: 50%; + .\32xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #fbbf24; } - .\32xl\:focus\:translate-y-3\/4:focus { - --tw-translate-y: 75%; + .\32xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #f59e0b; } - .\32xl\:focus\:translate-y-full:focus { - --tw-translate-y: 100%; + .\32xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #d97706; } - .\32xl\:focus\:-translate-y-1\/2:focus { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #b45309; } - .\32xl\:focus\:-translate-y-1\/3:focus { - --tw-translate-y: -33.333333%; + .\32xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #92400e; } - .\32xl\:focus\:-translate-y-2\/3:focus { - --tw-translate-y: -66.666667%; + .\32xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #78350f; } - .\32xl\:focus\:-translate-y-1\/4:focus { - --tw-translate-y: -25%; + .\32xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #ecfdf5; } - .\32xl\:focus\:-translate-y-2\/4:focus { - --tw-translate-y: -50%; + .\32xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #d1fae5; } - .\32xl\:focus\:-translate-y-3\/4:focus { - --tw-translate-y: -75%; + .\32xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #a7f3d0; } - .\32xl\:focus\:-translate-y-full:focus { - --tw-translate-y: -100%; + .\32xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #6ee7b7; } - .\32xl\:skew-x-0 { - --tw-skew-x: 0deg; + .\32xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #34d399; } - .\32xl\:skew-x-1 { - --tw-skew-x: 1deg; + .\32xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #10b981; } - .\32xl\:skew-x-2 { - --tw-skew-x: 2deg; + .\32xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #059669; } - .\32xl\:skew-x-3 { - --tw-skew-x: 3deg; + .\32xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #047857; } - .\32xl\:skew-x-6 { - --tw-skew-x: 6deg; + .\32xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #065f46; } - .\32xl\:skew-x-12 { - --tw-skew-x: 12deg; + .\32xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #064e3b; } - .\32xl\:-skew-x-12 { - --tw-skew-x: -12deg; + .\32xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #eff6ff; } - .\32xl\:-skew-x-6 { - --tw-skew-x: -6deg; + .\32xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #dbeafe; } - .\32xl\:-skew-x-3 { - --tw-skew-x: -3deg; + .\32xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #bfdbfe; } - .\32xl\:-skew-x-2 { - --tw-skew-x: -2deg; + .\32xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #93c5fd; } - .\32xl\:-skew-x-1 { - --tw-skew-x: -1deg; + .\32xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #60a5fa; } - .\32xl\:skew-y-0 { - --tw-skew-y: 0deg; + .\32xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3b82f6; } - .\32xl\:skew-y-1 { - --tw-skew-y: 1deg; + .\32xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #2563eb; } - .\32xl\:skew-y-2 { - --tw-skew-y: 2deg; + .\32xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #1d4ed8; } - .\32xl\:skew-y-3 { - --tw-skew-y: 3deg; + .\32xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #1e40af; } - .\32xl\:skew-y-6 { - --tw-skew-y: 6deg; + .\32xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1e3a8a; } - .\32xl\:skew-y-12 { - --tw-skew-y: 12deg; + .\32xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #eef2ff; } - .\32xl\:-skew-y-12 { - --tw-skew-y: -12deg; + .\32xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #e0e7ff; } - .\32xl\:-skew-y-6 { - --tw-skew-y: -6deg; + .\32xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #c7d2fe; } - .\32xl\:-skew-y-3 { - --tw-skew-y: -3deg; + .\32xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #a5b4fc; } - .\32xl\:-skew-y-2 { - --tw-skew-y: -2deg; + .\32xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #818cf8; } - .\32xl\:-skew-y-1 { - --tw-skew-y: -1deg; + .\32xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6366f1; } - .\32xl\:hover\:skew-x-0:hover { - --tw-skew-x: 0deg; + .\32xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #4f46e5; } - .\32xl\:hover\:skew-x-1:hover { - --tw-skew-x: 1deg; + .\32xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4338ca; } - .\32xl\:hover\:skew-x-2:hover { - --tw-skew-x: 2deg; + .\32xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3730a3; } - .\32xl\:hover\:skew-x-3:hover { - --tw-skew-x: 3deg; + .\32xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #312e81; } - .\32xl\:hover\:skew-x-6:hover { - --tw-skew-x: 6deg; + .\32xl\:focus-within\:ring-offset-purple-50:focus-within { + --tw-ring-offset-color: #f5f3ff; } - .\32xl\:hover\:skew-x-12:hover { - --tw-skew-x: 12deg; + .\32xl\:focus-within\:ring-offset-purple-100:focus-within { + --tw-ring-offset-color: #ede9fe; } - .\32xl\:hover\:-skew-x-12:hover { - --tw-skew-x: -12deg; + .\32xl\:focus-within\:ring-offset-purple-200:focus-within { + --tw-ring-offset-color: #ddd6fe; } - .\32xl\:hover\:-skew-x-6:hover { - --tw-skew-x: -6deg; + .\32xl\:focus-within\:ring-offset-purple-300:focus-within { + --tw-ring-offset-color: #c4b5fd; } - .\32xl\:hover\:-skew-x-3:hover { - --tw-skew-x: -3deg; + .\32xl\:focus-within\:ring-offset-purple-400:focus-within { + --tw-ring-offset-color: #a78bfa; } - .\32xl\:hover\:-skew-x-2:hover { - --tw-skew-x: -2deg; + .\32xl\:focus-within\:ring-offset-purple-500:focus-within { + --tw-ring-offset-color: #8b5cf6; } - .\32xl\:hover\:-skew-x-1:hover { - --tw-skew-x: -1deg; + .\32xl\:focus-within\:ring-offset-purple-600:focus-within { + --tw-ring-offset-color: #7c3aed; } - .\32xl\:hover\:skew-y-0:hover { - --tw-skew-y: 0deg; + .\32xl\:focus-within\:ring-offset-purple-700:focus-within { + --tw-ring-offset-color: #6d28d9; } - .\32xl\:hover\:skew-y-1:hover { - --tw-skew-y: 1deg; + .\32xl\:focus-within\:ring-offset-purple-800:focus-within { + --tw-ring-offset-color: #5b21b6; } - .\32xl\:hover\:skew-y-2:hover { - --tw-skew-y: 2deg; + .\32xl\:focus-within\:ring-offset-purple-900:focus-within { + --tw-ring-offset-color: #4c1d95; } - .\32xl\:hover\:skew-y-3:hover { - --tw-skew-y: 3deg; + .\32xl\:focus-within\:ring-offset-pink-50:focus-within { + --tw-ring-offset-color: #fdf2f8; } - .\32xl\:hover\:skew-y-6:hover { - --tw-skew-y: 6deg; + .\32xl\:focus-within\:ring-offset-pink-100:focus-within { + --tw-ring-offset-color: #fce7f3; } - .\32xl\:hover\:skew-y-12:hover { - --tw-skew-y: 12deg; + .\32xl\:focus-within\:ring-offset-pink-200:focus-within { + --tw-ring-offset-color: #fbcfe8; } - .\32xl\:hover\:-skew-y-12:hover { - --tw-skew-y: -12deg; + .\32xl\:focus-within\:ring-offset-pink-300:focus-within { + --tw-ring-offset-color: #f9a8d4; } - .\32xl\:hover\:-skew-y-6:hover { - --tw-skew-y: -6deg; + .\32xl\:focus-within\:ring-offset-pink-400:focus-within { + --tw-ring-offset-color: #f472b6; } - .\32xl\:hover\:-skew-y-3:hover { - --tw-skew-y: -3deg; + .\32xl\:focus-within\:ring-offset-pink-500:focus-within { + --tw-ring-offset-color: #ec4899; } - .\32xl\:hover\:-skew-y-2:hover { - --tw-skew-y: -2deg; + .\32xl\:focus-within\:ring-offset-pink-600:focus-within { + --tw-ring-offset-color: #db2777; } - .\32xl\:hover\:-skew-y-1:hover { - --tw-skew-y: -1deg; + .\32xl\:focus-within\:ring-offset-pink-700:focus-within { + --tw-ring-offset-color: #be185d; } - .\32xl\:focus\:skew-x-0:focus { - --tw-skew-x: 0deg; + .\32xl\:focus-within\:ring-offset-pink-800:focus-within { + --tw-ring-offset-color: #9d174d; } - .\32xl\:focus\:skew-x-1:focus { - --tw-skew-x: 1deg; + .\32xl\:focus-within\:ring-offset-pink-900:focus-within { + --tw-ring-offset-color: #831843; } - .\32xl\:focus\:skew-x-2:focus { - --tw-skew-x: 2deg; + .\32xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; } - .\32xl\:focus\:skew-x-3:focus { - --tw-skew-x: 3deg; + .\32xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; } - .\32xl\:focus\:skew-x-6:focus { - --tw-skew-x: 6deg; + .\32xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; } - .\32xl\:focus\:skew-x-12:focus { - --tw-skew-x: 12deg; + .\32xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; } - .\32xl\:focus\:-skew-x-12:focus { - --tw-skew-x: -12deg; + .\32xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; } - .\32xl\:focus\:-skew-x-6:focus { - --tw-skew-x: -6deg; + .\32xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; } - .\32xl\:focus\:-skew-x-3:focus { - --tw-skew-x: -3deg; + .\32xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; } - .\32xl\:focus\:-skew-x-2:focus { - --tw-skew-x: -2deg; + .\32xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; } - .\32xl\:focus\:-skew-x-1:focus { - --tw-skew-x: -1deg; + .\32xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; } - .\32xl\:focus\:skew-y-0:focus { - --tw-skew-y: 0deg; + .\32xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; } - .\32xl\:focus\:skew-y-1:focus { - --tw-skew-y: 1deg; + .\32xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; } - .\32xl\:focus\:skew-y-2:focus { - --tw-skew-y: 2deg; + .\32xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; } - .\32xl\:focus\:skew-y-3:focus { - --tw-skew-y: 3deg; + .\32xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; } - .\32xl\:focus\:skew-y-6:focus { - --tw-skew-y: 6deg; + .\32xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; } - .\32xl\:focus\:skew-y-12:focus { - --tw-skew-y: 12deg; + .\32xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #fef2f2; } - .\32xl\:focus\:-skew-y-12:focus { - --tw-skew-y: -12deg; + .\32xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #fee2e2; } - .\32xl\:focus\:-skew-y-6:focus { - --tw-skew-y: -6deg; + .\32xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #fecaca; } - .\32xl\:focus\:-skew-y-3:focus { - --tw-skew-y: -3deg; + .\32xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #fca5a5; } - .\32xl\:focus\:-skew-y-2:focus { - --tw-skew-y: -2deg; + .\32xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #f87171; } - .\32xl\:focus\:-skew-y-1:focus { - --tw-skew-y: -1deg; + .\32xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #ef4444; } - .\32xl\:transition-none { - transition-property: none; + .\32xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #dc2626; } - .\32xl\:transition-all { - transition-property: all; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #b91c1c; } - .\32xl\:transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #991b1b; } - .\32xl\:transition-colors { - transition-property: background-color, border-color, color, fill, stroke; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #7f1d1d; } - .\32xl\:transition-opacity { - transition-property: opacity; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #fffbeb; } - .\32xl\:transition-shadow { - transition-property: box-shadow; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #fef3c7; } - .\32xl\:transition-transform { - transition-property: transform; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #fde68a; } - .\32xl\:ease-linear { - transition-timing-function: linear; + .\32xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #fcd34d; } - .\32xl\:ease-in { - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + .\32xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #fbbf24; } - .\32xl\:ease-out { - transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + .\32xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #f59e0b; } - .\32xl\:ease-in-out { - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + .\32xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #d97706; } - .\32xl\:duration-75 { - transition-duration: 75ms; + .\32xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #b45309; } - .\32xl\:duration-100 { - transition-duration: 100ms; + .\32xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #92400e; } - .\32xl\:duration-150 { - transition-duration: 150ms; + .\32xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #78350f; } - .\32xl\:duration-200 { - transition-duration: 200ms; + .\32xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #ecfdf5; } - .\32xl\:duration-300 { - transition-duration: 300ms; + .\32xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #d1fae5; } - .\32xl\:duration-500 { - transition-duration: 500ms; + .\32xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #a7f3d0; } - .\32xl\:duration-700 { - transition-duration: 700ms; + .\32xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #6ee7b7; } - .\32xl\:duration-1000 { - transition-duration: 1000ms; + .\32xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #34d399; } - .\32xl\:delay-75 { - transition-delay: 75ms; + .\32xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #10b981; } - .\32xl\:delay-100 { - transition-delay: 100ms; + .\32xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #059669; } - .\32xl\:delay-150 { - transition-delay: 150ms; + .\32xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #047857; } - .\32xl\:delay-200 { - transition-delay: 200ms; + .\32xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #065f46; } - .\32xl\:delay-300 { - transition-delay: 300ms; + .\32xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #064e3b; } - .\32xl\:delay-500 { - transition-delay: 500ms; + .\32xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #eff6ff; } - .\32xl\:delay-700 { - transition-delay: 700ms; + .\32xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #dbeafe; } - .\32xl\:delay-1000 { - transition-delay: 1000ms; + .\32xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #bfdbfe; } - .\32xl\:animate-none { - animation: none; + .\32xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #93c5fd; } - .\32xl\:animate-spin { - animation: spin 1s linear infinite; + .\32xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #60a5fa; } - .\32xl\:animate-ping { - animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + .\32xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3b82f6; } - .\32xl\:animate-pulse { - animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + .\32xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #2563eb; } - .\32xl\:animate-bounce { - animation: bounce 1s infinite; + .\32xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #1d4ed8; } - .\32xl\:mix-blend-normal { - mix-blend-mode: normal; + .\32xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #1e40af; } - .\32xl\:mix-blend-multiply { - mix-blend-mode: multiply; + .\32xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1e3a8a; } - .\32xl\:mix-blend-screen { - mix-blend-mode: screen; + .\32xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #eef2ff; } - .\32xl\:mix-blend-overlay { - mix-blend-mode: overlay; + .\32xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #e0e7ff; } - .\32xl\:mix-blend-darken { - mix-blend-mode: darken; + .\32xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #c7d2fe; } - .\32xl\:mix-blend-lighten { - mix-blend-mode: lighten; + .\32xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #a5b4fc; } - .\32xl\:mix-blend-color-dodge { - mix-blend-mode: color-dodge; + .\32xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #818cf8; } - .\32xl\:mix-blend-color-burn { - mix-blend-mode: color-burn; + .\32xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6366f1; } - .\32xl\:mix-blend-hard-light { - mix-blend-mode: hard-light; + .\32xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #4f46e5; } - .\32xl\:mix-blend-soft-light { - mix-blend-mode: soft-light; + .\32xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4338ca; } - .\32xl\:mix-blend-difference { - mix-blend-mode: difference; + .\32xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3730a3; } - .\32xl\:mix-blend-exclusion { - mix-blend-mode: exclusion; + .\32xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #312e81; } - .\32xl\:mix-blend-hue { - mix-blend-mode: hue; + .\32xl\:focus\:ring-offset-purple-50:focus { + --tw-ring-offset-color: #f5f3ff; } - .\32xl\:mix-blend-saturation { - mix-blend-mode: saturation; + .\32xl\:focus\:ring-offset-purple-100:focus { + --tw-ring-offset-color: #ede9fe; } - .\32xl\:mix-blend-color { - mix-blend-mode: color; + .\32xl\:focus\:ring-offset-purple-200:focus { + --tw-ring-offset-color: #ddd6fe; } - .\32xl\:mix-blend-luminosity { - mix-blend-mode: luminosity; + .\32xl\:focus\:ring-offset-purple-300:focus { + --tw-ring-offset-color: #c4b5fd; } - .\32xl\:bg-blend-normal { - background-blend-mode: normal; + .\32xl\:focus\:ring-offset-purple-400:focus { + --tw-ring-offset-color: #a78bfa; } - .\32xl\:bg-blend-multiply { - background-blend-mode: multiply; + .\32xl\:focus\:ring-offset-purple-500:focus { + --tw-ring-offset-color: #8b5cf6; } - .\32xl\:bg-blend-screen { - background-blend-mode: screen; + .\32xl\:focus\:ring-offset-purple-600:focus { + --tw-ring-offset-color: #7c3aed; } - .\32xl\:bg-blend-overlay { - background-blend-mode: overlay; + .\32xl\:focus\:ring-offset-purple-700:focus { + --tw-ring-offset-color: #6d28d9; } - .\32xl\:bg-blend-darken { - background-blend-mode: darken; + .\32xl\:focus\:ring-offset-purple-800:focus { + --tw-ring-offset-color: #5b21b6; } - .\32xl\:bg-blend-lighten { - background-blend-mode: lighten; + .\32xl\:focus\:ring-offset-purple-900:focus { + --tw-ring-offset-color: #4c1d95; } - .\32xl\:bg-blend-color-dodge { - background-blend-mode: color-dodge; + .\32xl\:focus\:ring-offset-pink-50:focus { + --tw-ring-offset-color: #fdf2f8; } - .\32xl\:bg-blend-color-burn { - background-blend-mode: color-burn; + .\32xl\:focus\:ring-offset-pink-100:focus { + --tw-ring-offset-color: #fce7f3; } - .\32xl\:bg-blend-hard-light { - background-blend-mode: hard-light; + .\32xl\:focus\:ring-offset-pink-200:focus { + --tw-ring-offset-color: #fbcfe8; } - .\32xl\:bg-blend-soft-light { - background-blend-mode: soft-light; + .\32xl\:focus\:ring-offset-pink-300:focus { + --tw-ring-offset-color: #f9a8d4; } - .\32xl\:bg-blend-difference { - background-blend-mode: difference; + .\32xl\:focus\:ring-offset-pink-400:focus { + --tw-ring-offset-color: #f472b6; } - .\32xl\:bg-blend-exclusion { - background-blend-mode: exclusion; + .\32xl\:focus\:ring-offset-pink-500:focus { + --tw-ring-offset-color: #ec4899; } - .\32xl\:bg-blend-hue { - background-blend-mode: hue; + .\32xl\:focus\:ring-offset-pink-600:focus { + --tw-ring-offset-color: #db2777; } - .\32xl\:bg-blend-saturation { - background-blend-mode: saturation; + .\32xl\:focus\:ring-offset-pink-700:focus { + --tw-ring-offset-color: #be185d; } - .\32xl\:bg-blend-color { - background-blend-mode: color; + .\32xl\:focus\:ring-offset-pink-800:focus { + --tw-ring-offset-color: #9d174d; } - .\32xl\:bg-blend-luminosity { - background-blend-mode: luminosity; + .\32xl\:focus\:ring-offset-pink-900:focus { + --tw-ring-offset-color: #831843; } .\32xl\:filter { @@ -175405,6 +175285,126 @@ video { --tw-backdrop-sepia: sepia(100%); } + .\32xl\:transition-none { + transition-property: none; + } + + .\32xl\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:delay-75 { + transition-delay: 75ms; + } + + .\32xl\:delay-100 { + transition-delay: 100ms; + } + + .\32xl\:delay-150 { + transition-delay: 150ms; + } + + .\32xl\:delay-200 { + transition-delay: 200ms; + } + + .\32xl\:delay-300 { + transition-delay: 300ms; + } + + .\32xl\:delay-500 { + transition-delay: 500ms; + } + + .\32xl\:delay-700 { + transition-delay: 700ms; + } + + .\32xl\:delay-1000 { + transition-delay: 1000ms; + } + + .\32xl\:duration-75 { + transition-duration: 75ms; + } + + .\32xl\:duration-100 { + transition-duration: 100ms; + } + + .\32xl\:duration-150 { + transition-duration: 150ms; + } + + .\32xl\:duration-200 { + transition-duration: 200ms; + } + + .\32xl\:duration-300 { + transition-duration: 300ms; + } + + .\32xl\:duration-500 { + transition-duration: 500ms; + } + + .\32xl\:duration-700 { + transition-duration: 700ms; + } + + .\32xl\:duration-1000 { + transition-duration: 1000ms; + } + + .\32xl\:ease-linear { + transition-timing-function: linear; + } + + .\32xl\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .\32xl\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .\32xl\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + .\32xl\:example { font-weight: 700; color: #ef4444; diff --git a/__tests__/flattenColorPalette.test.js b/tests/flattenColorPalette.test.js similarity index 100% rename from __tests__/flattenColorPalette.test.js rename to tests/flattenColorPalette.test.js diff --git a/jit/tests/apply.test.css b/tests/jit/apply.test.css similarity index 100% rename from jit/tests/apply.test.css rename to tests/jit/apply.test.css diff --git a/jit/tests/apply.test.html b/tests/jit/apply.test.html similarity index 100% rename from jit/tests/apply.test.html rename to tests/jit/apply.test.html diff --git a/jit/tests/apply.test.js b/tests/jit/apply.test.js similarity index 97% rename from jit/tests/apply.test.js rename to tests/jit/apply.test.js index aef45ff96b8c..e14268d815ab 100644 --- a/jit/tests/apply.test.js +++ b/tests/jit/apply.test.js @@ -1,7 +1,7 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { const { currentTestName } = expect.getState() @@ -14,6 +14,7 @@ function run(input, config = {}) { test('@apply', () => { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './apply.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/arbitrary-values.test.css b/tests/jit/arbitrary-values.test.css similarity index 55% rename from jit/tests/arbitrary-values.test.css rename to tests/jit/arbitrary-values.test.css index 5301191a0c95..1bd64a6a531c 100644 --- a/jit/tests/arbitrary-values.test.css +++ b/tests/jit/arbitrary-values.test.css @@ -13,6 +13,47 @@ bottom: 11px; left: 11px; } +.col-\[7\] { + grid-column: 7; +} +.col-start-\[7\] { + grid-column-start: 7; +} +.col-end-\[7\] { + grid-column-end: 7; +} +.row-\[7\] { + grid-row: 7; +} +.row-start-\[7\] { + grid-row-start: 7; +} +.row-end-\[7\] { + grid-row-end: 7; +} +.m-\[7px\] { + margin: 7px; +} +.mx-\[7px\] { + margin-left: 7px; + margin-right: 7px; +} +.my-\[7px\] { + margin-top: 7px; + margin-bottom: 7px; +} +.mt-\[7px\] { + margin-top: 7px; +} +.mr-\[7px\] { + margin-right: 7px; +} +.mb-\[7px\] { + margin-bottom: 7px; +} +.ml-\[7px\] { + margin-left: 7px; +} .mt-\[clamp\(30px\2c 100px\)\] { margin-top: clamp(30px, 100px); } @@ -91,9 +132,18 @@ .rotate-\[1\.5turn\] { --tw-rotate: 1.5turn; } +.skew-x-\[3px\] { + --tw-skew-x: 3px; +} +.skew-y-\[3px\] { + --tw-skew-y: 3px; +} .grid-cols-\[200px\2c repeat\(auto-fill\2c minmax\(15\%\2c 100px\)\)\2c 300px\] { grid-template-columns: 200px repeat(auto-fill, minmax(15%, 100px)) 300px; } +.grid-rows-\[200px\2c repeat\(auto-fill\2c minmax\(15\%\2c 100px\)\)\2c 300px\] { + grid-template-rows: 200px repeat(auto-fill, minmax(15%, 100px)) 300px; +} .space-x-\[20cm\] > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20cm * var(--tw-space-x-reverse)); @@ -104,6 +154,37 @@ margin-right: calc(calc(20% - 1cm) * var(--tw-space-x-reverse)); margin-left: calc(calc(20% - 1cm) * calc(1 - var(--tw-space-x-reverse))); } +.rounded-\[11px\] { + border-radius: 11px; +} +.rounded-t-\[var\(--radius\)\] { + border-top-left-radius: var(--radius); + border-top-right-radius: var(--radius); +} +.rounded-r-\[var\(--radius\)\] { + border-top-right-radius: var(--radius); + border-bottom-right-radius: var(--radius); +} +.rounded-b-\[var\(--radius\)\] { + border-bottom-right-radius: var(--radius); + border-bottom-left-radius: var(--radius); +} +.rounded-l-\[var\(--radius\)\] { + border-top-left-radius: var(--radius); + border-bottom-left-radius: var(--radius); +} +.rounded-tr-\[var\(--radius\)\] { + border-top-right-radius: var(--radius); +} +.rounded-br-\[var\(--radius\)\] { + border-bottom-right-radius: var(--radius); +} +.rounded-bl-\[var\(--radius\)\] { + border-bottom-left-radius: var(--radius); +} +.rounded-tl-\[var\(--radius\)\] { + border-top-left-radius: var(--radius); +} .border-\[2\.5px\] { border-width: 2.5px; } @@ -131,7 +212,7 @@ } .bg-\[hsl\(0\2c 100\%\2c 50\%\)\] { --tw-bg-opacity: 1; - background-color: rgba(255, 0, 0, var(--tw-bg-opacity)); + background-color: hsla(0, 100%, 50%, var(--tw-bg-opacity)); } .bg-\[hsla\(0\2c 100\%\2c 50\%\2c 0\.3\)\] { background-color: hsla(0, 100%, 50%, 0.3); @@ -139,12 +220,88 @@ .bg-opacity-\[0\.11\] { --tw-bg-opacity: 0.11; } +.bg-opacity-\[var\(--value\)\] { + --tw-bg-opacity: var(--value); +} +.from-\[\#da5b66\] { + --tw-gradient-from: #da5b66; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 91, 102, 0)); +} +.from-\[var\(--color\)\] { + --tw-gradient-from: var(--color); + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} +.via-\[\#da5b66\] { + --tw-gradient-stops: var(--tw-gradient-from), #da5b66, + var(--tw-gradient-to, rgba(218, 91, 102, 0)); +} +.via-\[var\(--color\)\] { + --tw-gradient-stops: var(--tw-gradient-from), var(--color), + var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} +.to-\[\#da5b66\] { + --tw-gradient-to: #da5b66; +} +.to-\[var\(--color\)\] { + --tw-gradient-to: var(--color); +} +.fill-\[\#da5b66\] { + fill: #da5b66; +} +.fill-\[var\(--color\)\] { + fill: var(--color); +} +.stroke-\[\#da5b66\] { + stroke: #da5b66; +} .p-\[var\(--app-padding\)\] { padding: var(--app-padding); } .text-\[2\.23rem\] { font-size: 2.23rem; } +.leading-\[var\(--leading\)\] { + line-height: var(--leading); +} +.tracking-\[var\(--tracking\)\] { + letter-spacing: var(--tracking); +} +.placeholder-\[var\(--placeholder\)\]::placeholder { + color: var(--placeholder); +} +.placeholder-opacity-\[var\(--placeholder-opacity\)\]::placeholder { + --tw-placeholder-opacity: var(--placeholder-opacity); +} +.opacity-\[var\(--opacity\)\] { + opacity: var(--opacity); +} +.outline-\[var\(--outline\)\] { + outline: var(--outline); + outline-offset: 0; +} +.ring-\[10px\] { + --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(10px + 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-\[\#76ad65\] { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 173, 101, var(--tw-ring-opacity)); +} +.ring-opacity-\[var\(--ring-opacity\)\] { + --tw-ring-opacity: var(--ring-opacity); +} +.ring-offset-\[19rem\] { + --tw-ring-offset-width: 19rem; +} +.ring-offset-\[\#76ad65\] { + --tw-ring-offset-color: #76ad65; +} +.ring-offset-\[\#ad672f\] { + --tw-ring-offset-color: #ad672f; +} .blur-\[15px\] { --tw-blur: blur(15px); } @@ -196,6 +353,9 @@ .backdrop-sepia-\[0\.38\] { --tw-backdrop-sepia: sepia(0.38); } +.delay-\[var\(--delay\)\] { + transition-delay: var(--delay); +} .duration-\[2s\] { transition-duration: 2s; } diff --git a/jit/tests/arbitrary-values.test.html b/tests/jit/arbitrary-values.test.html similarity index 61% rename from jit/tests/arbitrary-values.test.html rename to tests/jit/arbitrary-values.test.html index 76d6a51cced2..4c7478f7f9f5 100644 --- a/jit/tests/arbitrary-values.test.html +++ b/tests/jit/arbitrary-values.test.html @@ -12,6 +12,7 @@
+
@@ -39,10 +40,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -63,5 +87,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/jit/tests/arbitrary-values.test.js b/tests/jit/arbitrary-values.test.js similarity index 83% rename from jit/tests/arbitrary-values.test.js rename to tests/jit/arbitrary-values.test.js index ad5683ce3c33..3eeaec4c5ffd 100644 --- a/jit/tests/arbitrary-values.test.js +++ b/tests/jit/arbitrary-values.test.js @@ -1,7 +1,7 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) diff --git a/jit/tests/basic-usage.test.css b/tests/jit/basic-usage.test.css similarity index 98% rename from jit/tests/basic-usage.test.css rename to tests/jit/basic-usage.test.css index 784da2da1d4b..a77b134f2a25 100644 --- a/jit/tests/basic-usage.test.css +++ b/tests/jit/basic-usage.test.css @@ -99,21 +99,21 @@ .col-span-3 { grid-column: span 3 / span 3; } -.col-end-4 { - grid-column-end: 4; -} .col-start-1 { grid-column-start: 1; } +.col-end-4 { + grid-column-end: 4; +} .row-span-2 { grid-row: span 2 / span 2; } -.row-end-5 { - grid-row-end: 5; -} .row-start-3 { grid-row-start: 3; } +.row-end-5 { + grid-row-end: 5; +} .float-right { float: right; } @@ -597,6 +597,11 @@ .mix-blend-saturation { mix-blend-mode: saturation; } +.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), diff --git a/jit/tests/basic-usage.test.html b/tests/jit/basic-usage.test.html similarity index 99% rename from jit/tests/basic-usage.test.html rename to tests/jit/basic-usage.test.html index ade6904419a5..1e97f5fdf4ce 100644 --- a/jit/tests/basic-usage.test.html +++ b/tests/jit/basic-usage.test.html @@ -31,6 +31,7 @@
+
diff --git a/jit/tests/basic-usage.test.js b/tests/jit/basic-usage.test.js similarity index 70% rename from jit/tests/basic-usage.test.js rename to tests/jit/basic-usage.test.js index 5984b1f4d5bc..7c75f71d9dd8 100644 --- a/jit/tests/basic-usage.test.js +++ b/tests/jit/basic-usage.test.js @@ -1,14 +1,17 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('basic usage', () => { let config = { + mode: 'jit', purge: [path.resolve(__dirname, './basic-usage.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/collapse-adjacent-rules.test.css b/tests/jit/collapse-adjacent-rules.test.css similarity index 100% rename from jit/tests/collapse-adjacent-rules.test.css rename to tests/jit/collapse-adjacent-rules.test.css diff --git a/jit/tests/collapse-adjacent-rules.test.html b/tests/jit/collapse-adjacent-rules.test.html similarity index 100% rename from jit/tests/collapse-adjacent-rules.test.html rename to tests/jit/collapse-adjacent-rules.test.html diff --git a/jit/tests/collapse-adjacent-rules.test.js b/tests/jit/collapse-adjacent-rules.test.js similarity index 85% rename from jit/tests/collapse-adjacent-rules.test.js rename to tests/jit/collapse-adjacent-rules.test.js index 455c48d9e8ff..e29c52a81456 100644 --- a/jit/tests/collapse-adjacent-rules.test.js +++ b/tests/jit/collapse-adjacent-rules.test.js @@ -1,14 +1,17 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('collapse adjacent rules', () => { let config = { + mode: 'jit', purge: [path.resolve(__dirname, './collapse-adjacent-rules.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/context-reuse.test.html b/tests/jit/context-reuse.test.html similarity index 100% rename from jit/tests/context-reuse.test.html rename to tests/jit/context-reuse.test.html diff --git a/jit/tests/context-reuse.test.js b/tests/jit/context-reuse.test.js similarity index 83% rename from jit/tests/context-reuse.test.js rename to tests/jit/context-reuse.test.js index 242bd15475f6..8a606a4d4a75 100644 --- a/jit/tests/context-reuse.test.js +++ b/tests/jit/context-reuse.test.js @@ -3,7 +3,7 @@ const process = require('child_process') const { promisify } = require('util') const exec = promisify(process.exec) -test('a build re-uses the context across multiple files with the same config', async () => { +test.skip('a build re-uses the context across multiple files with the same config', async () => { const filepath = path.resolve(__dirname, './context-reuse.worker.js') const { stdout } = await exec(`node ${filepath}`) diff --git a/jit/tests/context-reuse.worker.js b/tests/jit/context-reuse.worker.js similarity index 98% rename from jit/tests/context-reuse.worker.js rename to tests/jit/context-reuse.worker.js index dfa4687803fb..ddde30fe8b3a 100644 --- a/jit/tests/context-reuse.worker.js +++ b/tests/jit/context-reuse.worker.js @@ -16,6 +16,7 @@ async function runTest() { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './context-reuse.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/custom-extractors.test.css b/tests/jit/custom-extractors.test.css similarity index 100% rename from jit/tests/custom-extractors.test.css rename to tests/jit/custom-extractors.test.css diff --git a/jit/tests/custom-extractors.test.html b/tests/jit/custom-extractors.test.html similarity index 100% rename from jit/tests/custom-extractors.test.html rename to tests/jit/custom-extractors.test.html diff --git a/jit/tests/custom-extractors.test.js b/tests/jit/custom-extractors.test.js similarity index 83% rename from jit/tests/custom-extractors.test.js rename to tests/jit/custom-extractors.test.js index f208164237e1..09d0b0148055 100644 --- a/jit/tests/custom-extractors.test.js +++ b/tests/jit/custom-extractors.test.js @@ -1,11 +1,13 @@ -const postcss = require('postcss') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' function run(input, config = {}) { jest.resetModules() - const tailwind = require('../index.js') - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + const tailwind = require('../../src/jit/index.js').default + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } function customExtractor(content) { @@ -23,6 +25,7 @@ const expected = fs.readFileSync(expectedPath, 'utf8') test('defaultExtractor', () => { let config = { + mode: 'jit', purge: { content: [path.resolve(__dirname, './custom-extractors.test.html')], options: { @@ -52,6 +55,7 @@ test('extractors array', () => { ], }, }, + mode: 'jit', corePlugins: { preflight: false }, theme: {}, plugins: [], diff --git a/jit/tests/custom-separator.test.css b/tests/jit/custom-separator.test.css similarity index 100% rename from jit/tests/custom-separator.test.css rename to tests/jit/custom-separator.test.css diff --git a/jit/tests/custom-separator.test.html b/tests/jit/custom-separator.test.html similarity index 100% rename from jit/tests/custom-separator.test.html rename to tests/jit/custom-separator.test.html diff --git a/jit/tests/custom-separator.test.js b/tests/jit/custom-separator.test.js similarity index 70% rename from jit/tests/custom-separator.test.js rename to tests/jit/custom-separator.test.js index 1ef0caf3be60..3cd86d8e568d 100644 --- a/jit/tests/custom-separator.test.js +++ b/tests/jit/custom-separator.test.js @@ -1,15 +1,18 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('custom separator', () => { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './custom-separator.test.html')], separator: '_', corePlugins: {}, diff --git a/jit/tests/import-syntax.test.css b/tests/jit/import-syntax.test.css similarity index 100% rename from jit/tests/import-syntax.test.css rename to tests/jit/import-syntax.test.css diff --git a/jit/tests/import-syntax.test.html b/tests/jit/import-syntax.test.html similarity index 100% rename from jit/tests/import-syntax.test.html rename to tests/jit/import-syntax.test.html diff --git a/jit/tests/import-syntax.test.js b/tests/jit/import-syntax.test.js similarity index 76% rename from jit/tests/import-syntax.test.js rename to tests/jit/import-syntax.test.js index f48afc2a0959..fe457f5f3266 100644 --- a/jit/tests/import-syntax.test.js +++ b/tests/jit/import-syntax.test.js @@ -1,15 +1,18 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('using @import instead of @tailwind', () => { let config = { purge: [path.resolve(__dirname, './import-syntax.test.html')], + mode: 'jit', corePlugins: { preflight: false }, theme: {}, plugins: [ diff --git a/jit/tests/important-boolean.test.css b/tests/jit/important-boolean.test.css similarity index 100% rename from jit/tests/important-boolean.test.css rename to tests/jit/important-boolean.test.css diff --git a/jit/tests/important-boolean.test.html b/tests/jit/important-boolean.test.html similarity index 100% rename from jit/tests/important-boolean.test.html rename to tests/jit/important-boolean.test.html diff --git a/jit/tests/important-boolean.test.js b/tests/jit/important-boolean.test.js similarity index 86% rename from jit/tests/important-boolean.test.js rename to tests/jit/important-boolean.test.js index f8359c37fa43..bac3d9991ac3 100644 --- a/jit/tests/important-boolean.test.js +++ b/tests/jit/important-boolean.test.js @@ -1,16 +1,19 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('important boolean', () => { let config = { important: true, darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './important-boolean.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/important-modifier-prefix.test.css b/tests/jit/important-modifier-prefix.test.css similarity index 100% rename from jit/tests/important-modifier-prefix.test.css rename to tests/jit/important-modifier-prefix.test.css diff --git a/jit/tests/important-modifier-prefix.test.html b/tests/jit/important-modifier-prefix.test.html similarity index 100% rename from jit/tests/important-modifier-prefix.test.html rename to tests/jit/important-modifier-prefix.test.html diff --git a/jit/tests/important-modifier-prefix.test.js b/tests/jit/important-modifier-prefix.test.js similarity index 74% rename from jit/tests/important-modifier-prefix.test.js rename to tests/jit/important-modifier-prefix.test.js index 555d520a6adf..a69ffdf0c430 100644 --- a/jit/tests/important-modifier-prefix.test.js +++ b/tests/jit/important-modifier-prefix.test.js @@ -1,10 +1,12 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('important modifier with prefix', () => { @@ -12,6 +14,7 @@ test('important modifier with prefix', () => { important: false, prefix: 'tw-', darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './important-modifier-prefix.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/important-modifier.test.css b/tests/jit/important-modifier.test.css similarity index 100% rename from jit/tests/important-modifier.test.css rename to tests/jit/important-modifier.test.css diff --git a/jit/tests/important-modifier.test.html b/tests/jit/important-modifier.test.html similarity index 100% rename from jit/tests/important-modifier.test.html rename to tests/jit/important-modifier.test.html diff --git a/jit/tests/important-modifier.test.js b/tests/jit/important-modifier.test.js similarity index 72% rename from jit/tests/important-modifier.test.js rename to tests/jit/important-modifier.test.js index 92b444c66125..018cc2fe199e 100644 --- a/jit/tests/important-modifier.test.js +++ b/tests/jit/important-modifier.test.js @@ -1,16 +1,19 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('important modifier', () => { let config = { important: false, darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './important-modifier.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/important-selector.test.css b/tests/jit/important-selector.test.css similarity index 100% rename from jit/tests/important-selector.test.css rename to tests/jit/important-selector.test.css diff --git a/jit/tests/important-selector.test.html b/tests/jit/important-selector.test.html similarity index 100% rename from jit/tests/important-selector.test.html rename to tests/jit/important-selector.test.html diff --git a/jit/tests/important-selector.test.js b/tests/jit/important-selector.test.js similarity index 86% rename from jit/tests/important-selector.test.js rename to tests/jit/important-selector.test.js index c262df99bcd4..0c19e3bc4165 100644 --- a/jit/tests/important-selector.test.js +++ b/tests/jit/important-selector.test.js @@ -1,16 +1,19 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('important selector', () => { let config = { important: '#app', darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './important-selector.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/kitchen-sink.test.css b/tests/jit/kitchen-sink.test.css similarity index 100% rename from jit/tests/kitchen-sink.test.css rename to tests/jit/kitchen-sink.test.css diff --git a/jit/tests/kitchen-sink.test.html b/tests/jit/kitchen-sink.test.html similarity index 100% rename from jit/tests/kitchen-sink.test.html rename to tests/jit/kitchen-sink.test.html diff --git a/jit/tests/kitchen-sink.test.js b/tests/jit/kitchen-sink.test.js similarity index 93% rename from jit/tests/kitchen-sink.test.js rename to tests/jit/kitchen-sink.test.js index ae907ec87b69..6e6063858ece 100644 --- a/jit/tests/kitchen-sink.test.js +++ b/tests/jit/kitchen-sink.test.js @@ -1,15 +1,18 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('it works', () => { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './kitchen-sink.test.html')], corePlugins: { preflight: false }, theme: { diff --git a/jit/tests/modify-selectors.test.css b/tests/jit/modify-selectors.test.css similarity index 100% rename from jit/tests/modify-selectors.test.css rename to tests/jit/modify-selectors.test.css diff --git a/jit/tests/modify-selectors.test.html b/tests/jit/modify-selectors.test.html similarity index 100% rename from jit/tests/modify-selectors.test.html rename to tests/jit/modify-selectors.test.html diff --git a/jit/tests/modify-selectors.test.js b/tests/jit/modify-selectors.test.js similarity index 80% rename from jit/tests/modify-selectors.test.js rename to tests/jit/modify-selectors.test.js index ae3fede3d261..b2aa568b7160 100644 --- a/jit/tests/modify-selectors.test.js +++ b/tests/jit/modify-selectors.test.js @@ -1,16 +1,19 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') -const selectorParser = require('postcss-selector-parser') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' +import selectorParser from 'postcss-selector-parser' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('modify selectors', () => { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './modify-selectors.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/mutable.test.css b/tests/jit/mutable.test.css similarity index 100% rename from jit/tests/mutable.test.css rename to tests/jit/mutable.test.css diff --git a/jit/tests/mutable.test.html b/tests/jit/mutable.test.html similarity index 100% rename from jit/tests/mutable.test.html rename to tests/jit/mutable.test.html diff --git a/jit/tests/mutable.test.js b/tests/jit/mutable.test.js similarity index 78% rename from jit/tests/mutable.test.js rename to tests/jit/mutable.test.js index cecde6cdf7d5..32a62568c07e 100644 --- a/jit/tests/mutable.test.js +++ b/tests/jit/mutable.test.js @@ -1,7 +1,7 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function pluginThatMutatesRules() { return (root) => { @@ -18,12 +18,15 @@ function pluginThatMutatesRules() { } function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test.only('plugins mutating rules after tailwind doesnt break it', async () => { let config = { purge: [path.resolve(__dirname, './mutable.test.html')], + mode: 'jit', theme: { backgroundImage: { foo: 'url("./foo.png")', @@ -47,7 +50,9 @@ test.only('plugins mutating rules after tailwind doesnt break it', async () => { // Outside of the context of tailwind jit more postcss plugins may operate on the AST: // In this case we have a plugin that mutates rules directly - await postcss([pluginThatMutatesRules()]).process(firstRun, { from: path.resolve(__filename) }) + await postcss([pluginThatMutatesRules()]).process(firstRun, { + from: path.resolve(__filename), + }) // Verify subsequent runs don't produce mutated rules let secondRun = await run(css, config) diff --git a/jit/tests/opacity.test.css b/tests/jit/opacity.test.css similarity index 100% rename from jit/tests/opacity.test.css rename to tests/jit/opacity.test.css diff --git a/jit/tests/opacity.test.html b/tests/jit/opacity.test.html similarity index 100% rename from jit/tests/opacity.test.html rename to tests/jit/opacity.test.html diff --git a/jit/tests/opacity.test.js b/tests/jit/opacity.test.js similarity index 85% rename from jit/tests/opacity.test.js rename to tests/jit/opacity.test.js index c685307a0c6a..faffb9960d89 100644 --- a/jit/tests/opacity.test.js +++ b/tests/jit/opacity.test.js @@ -1,7 +1,7 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) @@ -9,14 +9,15 @@ function run(input, config = {}) { test('opacity', () => { let config = { + mode: 'jit', darkMode: 'class', purge: [path.resolve(__dirname, './opacity.test.html')], corePlugins: { + preflight: false, backgroundOpacity: false, borderOpacity: false, divideOpacity: false, placeholderOpacity: false, - preflight: false, textOpacity: false, }, theme: {}, diff --git a/jit/tests/prefix.fn.test.css b/tests/jit/prefix.fn.test.css similarity index 100% rename from jit/tests/prefix.fn.test.css rename to tests/jit/prefix.fn.test.css diff --git a/jit/tests/prefix.fn.test.html b/tests/jit/prefix.fn.test.html similarity index 100% rename from jit/tests/prefix.fn.test.html rename to tests/jit/prefix.fn.test.html diff --git a/jit/tests/prefix.fn.test.js b/tests/jit/prefix.fn.test.js similarity index 73% rename from jit/tests/prefix.fn.test.js rename to tests/jit/prefix.fn.test.js index 8e0b753182ba..53e87d454462 100644 --- a/jit/tests/prefix.fn.test.js +++ b/tests/jit/prefix.fn.test.js @@ -1,10 +1,12 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('prefix fn', () => { @@ -17,6 +19,7 @@ test('prefix fn', () => { return '' }, purge: [path.resolve(__dirname, './prefix.fn.test.html')], + mode: 'jit', corePlugins: { preflight: false }, theme: {}, } diff --git a/jit/tests/prefix.test.css b/tests/jit/prefix.test.css similarity index 100% rename from jit/tests/prefix.test.css rename to tests/jit/prefix.test.css diff --git a/jit/tests/prefix.test.html b/tests/jit/prefix.test.html similarity index 100% rename from jit/tests/prefix.test.html rename to tests/jit/prefix.test.html diff --git a/jit/tests/prefix.test.js b/tests/jit/prefix.test.js similarity index 85% rename from jit/tests/prefix.test.js rename to tests/jit/prefix.test.js index 2b4a0a5b7b4b..a88e783c9748 100644 --- a/jit/tests/prefix.test.js +++ b/tests/jit/prefix.test.js @@ -1,16 +1,19 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('prefix', () => { let config = { prefix: 'tw-', darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './prefix.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/jit/tests/responsive-and-variants-atrules.test.css b/tests/jit/responsive-and-variants-atrules.test.css similarity index 100% rename from jit/tests/responsive-and-variants-atrules.test.css rename to tests/jit/responsive-and-variants-atrules.test.css diff --git a/jit/tests/responsive-and-variants-atrules.test.html b/tests/jit/responsive-and-variants-atrules.test.html similarity index 100% rename from jit/tests/responsive-and-variants-atrules.test.html rename to tests/jit/responsive-and-variants-atrules.test.html diff --git a/jit/tests/responsive-and-variants-atrules.test.js b/tests/jit/responsive-and-variants-atrules.test.js similarity index 87% rename from jit/tests/responsive-and-variants-atrules.test.js rename to tests/jit/responsive-and-variants-atrules.test.js index b5cbffdd96e4..dc603b72f02f 100644 --- a/jit/tests/responsive-and-variants-atrules.test.js +++ b/tests/jit/responsive-and-variants-atrules.test.js @@ -1,15 +1,18 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('responsive and variants atrules', () => { let config = { purge: [path.resolve(__dirname, './responsive-and-variants-atrules.test.html')], + mode: 'jit', corePlugins: { preflight: false }, theme: {}, plugins: [], diff --git a/jit/tests/svelte-syntax.test.css b/tests/jit/svelte-syntax.test.css similarity index 100% rename from jit/tests/svelte-syntax.test.css rename to tests/jit/svelte-syntax.test.css diff --git a/jit/tests/svelte-syntax.test.js b/tests/jit/svelte-syntax.test.js similarity index 70% rename from jit/tests/svelte-syntax.test.js rename to tests/jit/svelte-syntax.test.js index d510ab6e9b8f..5648f1741d53 100644 --- a/jit/tests/svelte-syntax.test.js +++ b/tests/jit/svelte-syntax.test.js @@ -1,15 +1,18 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('basic usage', () => { let config = { purge: [path.resolve(__dirname, './svelte-syntax.test.svelte')], + mode: 'jit', corePlugins: { preflight: false }, theme: {}, plugins: [], diff --git a/jit/tests/svelte-syntax.test.svelte b/tests/jit/svelte-syntax.test.svelte similarity index 100% rename from jit/tests/svelte-syntax.test.svelte rename to tests/jit/svelte-syntax.test.svelte diff --git a/jit/tests/variants.test.css b/tests/jit/variants.test.css similarity index 100% rename from jit/tests/variants.test.css rename to tests/jit/variants.test.css diff --git a/jit/tests/variants.test.html b/tests/jit/variants.test.html similarity index 100% rename from jit/tests/variants.test.html rename to tests/jit/variants.test.html diff --git a/jit/tests/variants.test.js b/tests/jit/variants.test.js similarity index 71% rename from jit/tests/variants.test.js rename to tests/jit/variants.test.js index 2871b212b0ee..68a50cc2c1ca 100644 --- a/jit/tests/variants.test.js +++ b/tests/jit/variants.test.js @@ -1,15 +1,18 @@ -const postcss = require('postcss') -const tailwind = require('../index.js') -const fs = require('fs') -const path = require('path') +import postcss from 'postcss' +import fs from 'fs' +import path from 'path' +import tailwind from '../../src/jit/index.js' function run(input, config = {}) { - return postcss(tailwind(config)).process(input, { from: path.resolve(__filename) }) + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) } test('variants', () => { let config = { darkMode: 'class', + mode: 'jit', purge: [path.resolve(__dirname, './variants.test.html')], corePlugins: { preflight: false }, theme: {}, diff --git a/__tests__/layerAtRule.test.js b/tests/layerAtRule.test.js similarity index 100% rename from __tests__/layerAtRule.test.js rename to tests/layerAtRule.test.js diff --git a/__tests__/negateValue.test.js b/tests/negateValue.test.js similarity index 100% rename from __tests__/negateValue.test.js rename to tests/negateValue.test.js diff --git a/__tests__/parseAnimationValue.test.js b/tests/parseAnimationValue.test.js similarity index 100% rename from __tests__/parseAnimationValue.test.js rename to tests/parseAnimationValue.test.js diff --git a/__tests__/parseObjectStyles.test.js b/tests/parseObjectStyles.test.js similarity index 100% rename from __tests__/parseObjectStyles.test.js rename to tests/parseObjectStyles.test.js diff --git a/__tests__/plugins/animation.test.js b/tests/plugins/animation.test.js similarity index 100% rename from __tests__/plugins/animation.test.js rename to tests/plugins/animation.test.js diff --git a/__tests__/plugins/backgroundColor.test.js b/tests/plugins/backgroundColor.test.js similarity index 100% rename from __tests__/plugins/backgroundColor.test.js rename to tests/plugins/backgroundColor.test.js diff --git a/__tests__/plugins/borderColor.test.js b/tests/plugins/borderColor.test.js similarity index 100% rename from __tests__/plugins/borderColor.test.js rename to tests/plugins/borderColor.test.js diff --git a/__tests__/plugins/boxShadow.test.js b/tests/plugins/boxShadow.test.js similarity index 100% rename from __tests__/plugins/boxShadow.test.js rename to tests/plugins/boxShadow.test.js diff --git a/__tests__/plugins/divideColor.test.js b/tests/plugins/divideColor.test.js similarity index 100% rename from __tests__/plugins/divideColor.test.js rename to tests/plugins/divideColor.test.js diff --git a/__tests__/plugins/divideWidth.test.js b/tests/plugins/divideWidth.test.js similarity index 100% rename from __tests__/plugins/divideWidth.test.js rename to tests/plugins/divideWidth.test.js diff --git a/__tests__/plugins/fill.test.js b/tests/plugins/fill.test.js similarity index 100% rename from __tests__/plugins/fill.test.js rename to tests/plugins/fill.test.js diff --git a/__tests__/plugins/fontSize.test.js b/tests/plugins/fontSize.test.js similarity index 100% rename from __tests__/plugins/fontSize.test.js rename to tests/plugins/fontSize.test.js diff --git a/__tests__/plugins/gradientColorStops.test.js b/tests/plugins/gradientColorStops.test.js similarity index 100% rename from __tests__/plugins/gradientColorStops.test.js rename to tests/plugins/gradientColorStops.test.js diff --git a/__tests__/plugins/letterSpacing.test.js b/tests/plugins/letterSpacing.test.js similarity index 100% rename from __tests__/plugins/letterSpacing.test.js rename to tests/plugins/letterSpacing.test.js diff --git a/__tests__/plugins/placeholderColor.test.js b/tests/plugins/placeholderColor.test.js similarity index 100% rename from __tests__/plugins/placeholderColor.test.js rename to tests/plugins/placeholderColor.test.js diff --git a/__tests__/plugins/ringColor.test.js b/tests/plugins/ringColor.test.js similarity index 100% rename from __tests__/plugins/ringColor.test.js rename to tests/plugins/ringColor.test.js diff --git a/__tests__/plugins/ringOffsetColor.test.js b/tests/plugins/ringOffsetColor.test.js similarity index 100% rename from __tests__/plugins/ringOffsetColor.test.js rename to tests/plugins/ringOffsetColor.test.js diff --git a/__tests__/plugins/ringWidth.test.js b/tests/plugins/ringWidth.test.js similarity index 100% rename from __tests__/plugins/ringWidth.test.js rename to tests/plugins/ringWidth.test.js diff --git a/__tests__/plugins/space.test.js b/tests/plugins/space.test.js similarity index 100% rename from __tests__/plugins/space.test.js rename to tests/plugins/space.test.js diff --git a/__tests__/plugins/stroke.test.js b/tests/plugins/stroke.test.js similarity index 100% rename from __tests__/plugins/stroke.test.js rename to tests/plugins/stroke.test.js diff --git a/__tests__/plugins/textColor.test.js b/tests/plugins/textColor.test.js similarity index 100% rename from __tests__/plugins/textColor.test.js rename to tests/plugins/textColor.test.js diff --git a/__tests__/plugins/zIndex.test.js b/tests/plugins/zIndex.test.js similarity index 100% rename from __tests__/plugins/zIndex.test.js rename to tests/plugins/zIndex.test.js diff --git a/__tests__/prefixNegativeModifiers.test.js b/tests/prefixNegativeModifiers.test.js similarity index 100% rename from __tests__/prefixNegativeModifiers.test.js rename to tests/prefixNegativeModifiers.test.js diff --git a/__tests__/prefixSelector.test.js b/tests/prefixSelector.test.js similarity index 100% rename from __tests__/prefixSelector.test.js rename to tests/prefixSelector.test.js diff --git a/__tests__/processPlugins.test.js b/tests/processPlugins.test.js similarity index 100% rename from __tests__/processPlugins.test.js rename to tests/processPlugins.test.js diff --git a/__tests__/purgeUnusedStyles.test.js b/tests/purgeUnusedStyles.test.js similarity index 100% rename from __tests__/purgeUnusedStyles.test.js rename to tests/purgeUnusedStyles.test.js diff --git a/__tests__/resolveConfig.test.js b/tests/resolveConfig.test.js similarity index 99% rename from __tests__/resolveConfig.test.js rename to tests/resolveConfig.test.js index b36f8c8c0149..a4dc0ef78def 100644 --- a/__tests__/resolveConfig.test.js +++ b/tests/resolveConfig.test.js @@ -1,6 +1,8 @@ -import { corePluginList } from '../src/corePluginList' +import * as corePlugins from '../src/plugins' import resolveConfig from '../src/util/resolveConfig' +const corePluginList = Object.keys(corePlugins) + test('prefix key overrides default prefix', () => { const userConfig = { prefix: 'tw-', diff --git a/__tests__/responsiveAtRule.test.js b/tests/responsiveAtRule.test.js similarity index 100% rename from __tests__/responsiveAtRule.test.js rename to tests/responsiveAtRule.test.js diff --git a/__tests__/sanity.test.js b/tests/sanity.test.js similarity index 100% rename from __tests__/sanity.test.js rename to tests/sanity.test.js diff --git a/__tests__/screenAtRule.test.js b/tests/screenAtRule.test.js similarity index 100% rename from __tests__/screenAtRule.test.js rename to tests/screenAtRule.test.js diff --git a/__tests__/themeFunction.test.js b/tests/themeFunction.test.js similarity index 100% rename from __tests__/themeFunction.test.js rename to tests/themeFunction.test.js diff --git a/__tests__/util/invokePlugin.js b/tests/util/invokePlugin.js similarity index 100% rename from __tests__/util/invokePlugin.js rename to tests/util/invokePlugin.js diff --git a/__tests__/util/produce.js b/tests/util/produce.js similarity index 100% rename from __tests__/util/produce.js rename to tests/util/produce.js diff --git a/__tests__/variantsAtRule.test.js b/tests/variantsAtRule.test.js similarity index 100% rename from __tests__/variantsAtRule.test.js rename to tests/variantsAtRule.test.js diff --git a/__tests__/withAlphaVariable.test.js b/tests/withAlphaVariable.test.js similarity index 100% rename from __tests__/withAlphaVariable.test.js rename to tests/withAlphaVariable.test.js